lrslib-051/0000700000175300010010000000000012462606726012455 5ustar avisなしlrslib-051/2nash.c0000700000175300010010000000466412423577211013642 0ustar avisなし// 2nash.c v1.0 Jan 15, 2009 // Hack of nlrs.c by Conor Meagher to run lrs simultaneously on n processors for n input files // runs nash on input files A B in both orders simultaneously, terminating when first proc finishes // output goes in third argument if any, else in file: out #include #include #include #include int main(int argc, char *argv[]) { pid_t cpid[argc - 1], w; char buffer [250]; int status,l,j; if (argc < 3 || argc > 4) { printf("Usage: 2nash A B [outfile]\n"); return(0); } for(l = 1; l < 3; l++) { cpid[l -1] = fork(); if (cpid[l -1] == -1) { perror("fork"); exit(EXIT_FAILURE); } if(cpid[l-1] == 0) { //forked threads // n= sprintf(buffer, "lrs %s > out%i", argv[l], l); if(l==1) { int n= sprintf(buffer, "nash %s %s > out%i", argv[1], argv[2], l); } else { int n= sprintf(buffer, "nash %s %s > out%i", argv[2], argv[1], l); } int i=system(buffer); _exit(0); } } // main thread w = wait(&status); for(j = 1; j < 3; j++) { if(w == cpid[j-1]) { // this child finished first if(j==1) printf("nash %s %s finished first\n", argv[1], argv[2]); else { printf("nash %s %s finished first\n", argv[2], argv[1]); printf("player numbers will be reversed in output\n"); } if(argc == 4) { printf("output file: %s\n", argv[3]); int n = sprintf(buffer, "/bin/mv -f out%i %s", j, argv[3]); } else { printf("output file: out\n", argv[2], argv[1]); int n = sprintf(buffer, "/bin/mv -f out%i out", j); } int i = system(buffer); } else { int n = sprintf(buffer, "/bin/rm -f out%i", j); int i = system(buffer); } } printf("the other process will be "); /*...will be killed */ fflush(stdout); kill(0,9); exit(EXIT_SUCCESS); } lrslib-051/chdemo.c0000700000175300010010000000736612423577212014071 0ustar avisなし/* chdemo.c lrslib vertex enumeration demo */ /* last modified: May 29, 2001 */ /* Copyright: David Avis 2001, avis@cs.mcgill.ca */ /* Demo driver for convex hull computation using lrs */ /* This program computes facets of cyclic polytopes */ #include #include #include "lrslib.h" #define MAXCOL 1000 /* maximum number of colums */ void makecyclic (lrs_dic *P, lrs_dat *Q); int main (int argc, char *argv[]) { lrs_dic *P; /* structure for holding current dictionary and indices */ lrs_dat *Q; /* structure for holding static problem data */ lrs_mp_vector output; /* one line of output:ray,vertex,facet,linearity */ lrs_mp_matrix Lin; /* holds input linearities if any are found */ long i; long col; /* output column index for dictionary */ /* Global initialization - done once */ if ( !lrs_init ("\n*chdemo:")) return 1; /* compute the convex hull of a set of cyclic polytopes */ /* given by V-representations, dimension 2,...,7 */ for(i=1;i<=6;i++) { /* allocate and init structure for static problem data */ Q = lrs_alloc_dat ("LRS globals"); if (Q == NULL) return 1; /* now flags in lrs_dat can be set */ Q->m=i+3; /* number of input rows = number of vertices */ Q->n=i+2; /* number of input columns (dimension + 1 ) */ Q->hull = TRUE; /* convex hull problem: facet enumeration */ Q->polytope= TRUE; /* input is a polytope */ Q->getvolume= TRUE; /* compute the volume */ output = lrs_alloc_mp_vector (Q->n); P = lrs_alloc_dic (Q); /* allocate and initialize lrs_dic */ if (P == NULL) return 1; /* Build polyhedron: constraints and objective */ printf("\n\n*cyclic polytope: %ld vertices in R^%ld",Q->m,Q->n-1); makecyclic(P,Q); /* code from here is borrowed from lrs_main */ /* Pivot to a starting dictionary */ if (!lrs_getfirstbasis (&P, Q, &Lin, FALSE)) return 1; /* There may have been column redundancy */ /* (although not for this example of cyclic polytopes) */ /* If so the linearity space is obtained and redundant */ /* columns are removed. User can access linearity space */ /* from lrs_mp_matrix Lin dimensions nredundcol x d+1 */ for (col = 0L; col < Q->nredundcol; col++) /* print linearity space */ lrs_printoutput (Q, Lin[col]); /* Array Lin[][] holds the coeffs. */ /* We initiate reverse search from this dictionary */ /* getting new dictionaries until the search is complete */ /* User can access each output line from output which is */ /* vertex/ray/facet from the lrs_mp_vector output */ do { for (col = 0; col <= P->d; col++) if (lrs_getsolution (P, Q, output, col)) lrs_printoutput (Q, output); } while (lrs_getnextbasis (&P, Q, FALSE)); lrs_printtotals (P, Q); /* print final totals */ /* free space : do not change order of next 3 lines! */ lrs_clear_mp_vector (output, Q->n); lrs_free_dic (P,Q); /* deallocate lrs_dic */ lrs_free_dat (Q); /* deallocate lrs_dat */ } /* end of loop for i=3 ... */ lrs_close ("chdemo:"); printf("\n"); return 0; } /* end of main */ void makecyclic (lrs_dic *P, lrs_dat *Q) /* generate vertices of a cyclic polytope */ /* (t, t^2, ..., t^n-1 ), t=1..m */ { long num[MAXCOL]; long den[MAXCOL]; long row, j, t; long m=Q->m; long n=Q->n; for (row=1;row<=m;row++) { t=1; for(j=0;j Copyright (C) 19yy This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) 19yy name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. lrslib-051/cp5.ext0000700000175300010010000000112212423577212013657 0ustar avisなしcp5.ext V-representation begin 16 11 rational 1 1 0 1 0 1 0 1 1 0 1 1 0 1 0 1 1 0 1 1 0 1 1 1 0 1 1 1 0 0 1 1 0 1 1 1 1 0 0 0 1 0 1 1 1 0 1 1 0 1 1 0 0 1 1 1 1 1 0 1 0 1 0 1 0 1 1 0 1 1 1 1 1 1 0 0 0 1 1 1 0 0 0 1 1 1 1 0 1 0 0 1 1 0 1 1 1 1 0 1 1 1 1 1 0 0 0 0 0 0 1 0 1 0 0 1 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 1 1 0 0 0 1 0 0 1 0 0 1 0 1 0 1 1 0 0 0 1 0 0 1 0 1 1 1 1 0 0 1 1 1 0 0 1 1 end lrslib-051/cube.ext0000600000175300010010000000056712462102424014111 0ustar avisなし cube V-representation begin ***** 4 rational 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 end *Totals: vertices=8 rays=0 bases=8 integer_vertices=8 *Dictionary Cache: max size= 4 misses= 0/7 Tree Depth= 3 *lrs:lrslib v.5.1a 2015.1.21(32bit,lrsgmp.h) *0.000u 0.015s 3408Kb 872 flts 0 swaps 0 blks-in 0 blks-out lrslib-051/cube.ine0000700000175300010010000000020312462102146014051 0ustar avisなしcube *cube of side 2 centred at origin H-representation begin 6 4 rational 1 1 0 0 1 0 1 0 1 0 0 1 1 -1 0 0 1 0 -1 0 1 0 0 -1 end lrslib-051/cycle.ext0000700000175300010010000000602112423577212014272 0ustar avisなしic25_12.ine H-representation begin 25 13 integer 1 -156 1690 -22464 265018 -3234816 38683450 -465813504 5585476858 -67077144576 804783054010 -9659108818944 115904429355898 1 -143 1391 -17303 185783 -2093663 22895951 -253333223 2782380263 -30653319983 337043838911 -3709051717943 40794692425943 1 -130 1118 -13000 125450 -1300000 12865658 -130000000 1295714810 -13000000000 129857319098 -1300000000000 12995123528570 1 -117 871 -9477 80743 -767637 6774391 -62178597 555322183 -5036466357 45185516311 -407953774917 3666707502823 1 -104 650 -6656 48698 -425984 3273530 -27262976 213818618 -1744830464 13815962810 -111669149696 888476726138 1 -91 455 -4459 26663 -218491 1395095 -10706059 70657223 -524596891 3529497335 -25705247659 175060262183 1 -78 286 -2808 12298 -101088 472186 -3639168 17549818 -131010048 643379386 -4716361728 23421698938 1 -65 143 -1625 3575 -40625 68783 -1015625 792935 -25390625 -15727777 -634765625 -1702643305 1 -52 26 -832 -1222 -13312 -81094 -212992 -3433222 -3407872 -129049414 -54525952 -4658367622 1 -39 -65 -351 -3497 -3159 -124865 -28431 -4199897 -255879 -141913265 -2302911 -4869562697 1 -26 -130 -104 -4342 -416 -133510 -1664 -4281862 -6656 -142667590 -26624 -4876418182 1 -13 -169 -13 -4537 -13 -134329 -13 -4285177 -13 -142680889 -13 -4876471417 1 0 -182 0 -4550 0 -134342 0 -4285190 0 -142680902 0 -4876471430 1 13 -169 13 -4537 13 -134329 13 -4285177 13 -142680889 13 -4876471417 1 26 -130 104 -4342 416 -133510 1664 -4281862 6656 -142667590 26624 -4876418182 1 39 -65 351 -3497 3159 -124865 28431 -4199897 255879 -141913265 2302911 -4869562697 1 52 26 832 -1222 13312 -81094 212992 -3433222 3407872 -129049414 54525952 -4658367622 1 65 143 1625 3575 40625 68783 1015625 792935 25390625 -15727777 634765625 -1702643305 1 78 286 2808 12298 101088 472186 3639168 17549818 131010048 643379386 4716361728 23421698938 1 91 455 4459 26663 218491 1395095 10706059 70657223 524596891 3529497335 25705247659 175060262183 1 104 650 6656 48698 425984 3273530 27262976 213818618 1744830464 13815962810 111669149696 888476726138 1 117 871 9477 80743 767637 6774391 62178597 555322183 5036466357 45185516311 407953774917 3666707502823 1 130 1118 13000 125450 1300000 12865658 130000000 1295714810 13000000000 129857319098 1300000000000 12995123528570 1 143 1391 17303 185783 2093663 22895951 253333223 2782380263 30653319983 337043838911 3709051717943 40794692425943 1 156 1690 22464 265018 3234816 38683450 465813504 5585476858 67077144576 804783054010 9659108818944 115904429355898 end lrslib-051/ext/0000700000175300010010000000000012423577212013247 5ustar avisなしlrslib-051/ext/metric/0000700000175300010010000000000012423577212014532 5ustar avisなしlrslib-051/ext/metric/cp4.ext0000700000175300010010000000030512423577212015743 0ustar avisなしcp4.ext V-representation begin 8 7 integer 1 0 0 0 0 0 0 1 0 1 1 1 1 0 1 0 0 1 0 1 1 1 1 0 0 1 1 0 1 1 1 1 0 0 0 1 0 1 0 1 0 1 1 1 1 0 0 1 1 1 1 0 1 1 0 1 end startingcobasis 2 3 4 5 6 7 8 lrslib-051/ext/metric/cp5.ext0000700000175300010010000000114512423577212015747 0ustar avisなしcp5.ext V-representation *5 point cut polytope digits 40 begin 16 11 integer 1 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 0 1 1 1 1 1 1 0 0 0 1 1 0 1 1 1 0 0 1 1 0 1 1 1 0 1 0 1 0 1 0 1 1 1 1 1 0 0 0 1 0 1 1 1 0 0 1 1 0 1 1 1 1 0 1 0 1 0 1 1 0 1 1 0 1 1 0 1 1 0 1 1 0 0 1 1 1 1 0 0 1 1 1 0 0 1 1 1 1 0 1 0 1 0 1 1 0 1 1 1 1 0 0 0 1 1 1 1 0 1 0 0 0 1 0 0 1 0 1 1 1 0 0 1 0 0 1 0 1 0 1 1 0 1 0 0 1 0 0 1 1 0 1 1 0 0 0 1 1 1 0 0 0 end lrslib-051/ext/metric/cp6.ext0000700000175300010010000000306212423577212015750 0ustar avisなしcp6.ext digits 50 V-representation *6 point cut cone begin 32 16 integer 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 1 1 1 1 0 0 0 1 1 1 0 0 0 1 1 1 0 1 1 0 1 0 0 1 0 0 1 1 0 1 1 1 1 0 1 0 0 1 0 0 1 0 1 0 1 1 1 1 1 1 0 0 0 0 1 0 0 1 0 1 1 1 0 0 1 1 1 0 1 1 1 1 1 1 0 0 0 1 0 1 0 1 1 1 0 1 1 1 0 0 1 1 0 1 0 1 1 0 1 1 1 0 1 0 1 0 1 0 1 1 0 1 1 1 0 1 1 1 0 0 0 1 0 1 1 1 1 0 0 1 1 1 1 0 0 0 1 1 1 1 0 1 1 0 1 0 1 1 0 1 0 1 0 1 1 0 1 1 1 0 1 1 0 1 0 0 1 1 1 0 0 1 1 1 1 1 0 0 1 0 1 1 0 1 1 0 0 1 1 1 1 1 0 1 0 0 1 0 1 1 0 1 1 0 1 1 1 1 1 0 0 0 0 1 1 0 1 1 1 1 0 1 0 0 0 1 1 0 0 1 1 0 1 1 1 1 0 1 0 0 1 0 1 0 1 0 1 1 0 1 1 0 1 1 0 0 1 1 0 0 1 1 0 1 1 0 0 1 1 1 0 1 0 0 1 1 0 0 1 1 1 0 0 1 1 1 0 1 0 1 0 1 0 1 0 1 0 1 1 0 1 1 0 1 1 0 0 1 1 0 0 0 1 1 1 1 0 1 1 0 0 0 1 1 1 1 0 0 0 1 0 1 1 1 1 0 0 1 0 1 1 0 1 0 1 0 1 0 1 1 1 0 1 0 0 1 0 1 1 1 0 0 1 1 0 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 1 1 1 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 1 0 0 1 0 0 0 1 0 0 1 0 0 1 1 0 1 0 1 0 0 0 1 0 0 0 1 1 1 0 0 0 1 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 end lrslib-051/ext/metric/cp7.ext0000700000175300010010000000577612423577212015767 0ustar avisなしcp7.ext *Complete Cut Polytope on 7 vertices *The number of facets is 116,764. V-representation begin 64 22 integer 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 1 1 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 1 1 0 1 1 1 0 1 0 0 0 1 0 0 0 1 1 1 0 0 0 1 1 1 1 0 1 1 0 0 1 0 0 0 1 0 0 1 0 0 1 1 0 1 1 1 1 1 0 1 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 1 1 1 1 1 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 1 1 0 0 1 1 1 1 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 0 1 0 1 1 1 1 0 1 1 1 1 0 0 0 1 1 1 0 0 0 1 0 1 1 0 1 1 1 1 0 1 1 0 1 0 0 1 0 0 1 1 0 1 0 1 1 1 0 1 1 1 1 0 1 0 0 1 0 0 1 0 1 0 1 1 0 1 1 1 1 0 1 1 1 1 0 0 0 0 1 0 0 1 0 1 1 1 1 0 0 1 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 1 1 0 1 0 1 1 1 0 1 0 0 1 0 1 1 1 0 0 1 1 0 1 1 0 1 1 0 1 1 0 0 1 0 1 1 0 1 0 1 0 1 0 1 1 1 0 1 1 1 0 1 0 0 0 1 1 1 1 0 0 0 1 0 1 1 1 1 1 0 0 1 1 0 1 1 0 0 1 1 0 0 0 1 1 1 1 0 1 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 0 1 1 1 1 0 1 1 0 0 1 0 0 1 1 0 0 1 1 1 0 0 1 1 1 1 1 1 0 0 1 0 0 1 1 0 0 1 1 0 1 1 0 0 1 1 1 1 1 1 0 1 0 0 0 1 0 1 0 1 0 1 1 0 1 1 0 1 1 1 1 1 1 0 0 0 0 0 1 1 0 0 1 1 0 1 1 1 1 0 1 0 0 0 1 1 1 0 0 1 1 1 0 1 1 1 1 1 1 0 0 0 1 0 0 1 0 1 1 0 1 0 1 1 1 0 1 1 1 0 0 1 1 0 1 0 0 1 1 0 1 0 1 1 0 1 1 1 0 1 0 1 0 1 0 1 1 0 0 1 1 1 0 0 1 1 1 0 1 1 1 0 0 0 1 0 1 1 1 0 1 0 0 1 1 1 0 0 1 1 1 1 0 0 0 1 1 1 1 0 1 0 1 0 1 0 1 1 0 1 0 1 1 0 1 0 1 0 1 1 0 1 1 0 1 0 1 1 0 1 0 1 1 0 1 0 0 1 1 1 0 0 1 1 1 0 1 1 0 0 1 1 1 0 0 1 0 1 1 0 1 1 0 0 1 1 1 0 1 1 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 1 0 1 1 0 1 1 1 0 0 1 1 1 0 0 0 0 1 1 0 1 1 1 1 0 1 1 0 0 0 1 1 1 1 1 0 0 0 0 1 1 0 1 1 1 1 0 1 1 0 0 1 0 1 1 1 0 1 0 0 1 0 1 1 0 1 1 0 1 1 1 0 0 1 1 0 1 1 0 0 1 0 1 1 0 1 1 0 0 1 1 1 1 0 1 0 0 1 1 0 1 1 0 1 0 0 1 1 1 0 0 1 1 1 1 0 1 0 1 0 1 0 1 0 1 1 0 1 0 1 0 1 1 0 1 1 1 0 1 1 0 0 1 0 0 1 1 1 1 0 0 0 1 1 1 1 0 1 1 1 0 0 0 1 0 1 1 1 0 1 1 1 0 0 0 1 0 1 1 1 1 1 0 0 1 0 0 1 1 0 1 1 1 0 1 0 1 0 1 0 1 1 1 1 0 1 0 0 0 1 0 1 1 1 0 1 1 1 0 0 1 1 0 1 1 1 1 0 0 0 0 0 1 1 1 0 1 1 1 1 1 1 0 0 0 1 0 0 0 0 1 1 0 0 0 1 1 0 0 1 1 0 1 1 1 1 0 1 0 0 0 1 0 1 0 0 1 0 1 0 1 0 1 1 0 1 1 0 1 1 0 0 0 1 1 0 0 0 1 1 0 0 1 1 0 1 1 0 0 1 1 1 0 0 1 0 0 1 0 1 0 0 1 1 0 0 1 1 1 0 0 1 1 1 0 0 1 0 1 0 0 1 0 1 0 1 0 1 0 1 0 1 1 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 1 0 0 0 1 1 1 1 0 1 0 1 0 0 0 1 1 0 0 0 1 1 1 1 0 0 0 1 0 1 1 1 0 1 0 0 1 0 1 0 0 1 0 1 1 0 1 0 1 0 1 0 1 1 0 1 0 1 0 0 1 0 1 0 0 1 0 1 1 1 0 0 1 1 0 1 0 1 1 0 0 0 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 1 1 0 0 0 0 1 1 1 1 1 0 0 0 0 1 0 0 1 0 1 1 1 1 0 0 0 1 0 1 1 1 0 1 0 0 1 0 0 1 0 1 0 1 1 1 0 0 1 0 0 1 1 0 1 1 0 1 0 0 1 0 0 1 1 0 1 1 0 1 0 0 0 1 0 1 1 1 1 0 0 0 1 1 1 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 1 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 1 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 1 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 end lrslib-051/ext/metric/mp5.ext0000700000175300010010000000266212423577212015766 0ustar avisなしmp5.ext V-representation begin 32 11 rational 1 1 1 1 1 0 0 0 0 0 0 1 0 0 1 1 0 1 1 1 1 0 1 2/3 2/3 2/3 2/3 2/3 2/3 2/3 2/3 2/3 2/3 1 1 0 1 1 1 0 0 1 1 0 1 0 1 1 1 1 1 1 0 0 0 1 2/3 2/3 1/3 1/3 2/3 1/3 1/3 1/3 1/3 2/3 1 0 1 0 1 1 0 1 1 0 1 1 1 1 0 1 0 1 0 1 0 1 1 1/3 2/3 2/3 2/3 1/3 1/3 1/3 2/3 2/3 2/3 1 0 1 1 0 1 1 0 0 1 1 1 1 1 1 0 0 0 1 0 1 1 1 1/3 1/3 2/3 2/3 2/3 1/3 1/3 1/3 1/3 2/3 1 0 0 0 1 0 0 1 0 1 1 1 1 0 0 1 1 1 0 0 1 1 1 2/3 1/3 2/3 2/3 1/3 2/3 2/3 1/3 1/3 2/3 1 1/3 2/3 1/3 1/3 1/3 2/3 2/3 1/3 1/3 2/3 1 2/3 1/3 1/3 1/3 1/3 1/3 1/3 2/3 2/3 2/3 1 0 0 1 0 0 1 0 1 0 1 1 2/3 2/3 2/3 1/3 2/3 2/3 1/3 2/3 1/3 1/3 1 1 0 1 0 1 0 1 1 0 1 1 2/3 1/3 1/3 2/3 1/3 1/3 2/3 2/3 1/3 1/3 1 1/3 1/3 1/3 2/3 2/3 2/3 1/3 2/3 1/3 1/3 1 1/3 1/3 1/3 1/3 2/3 2/3 2/3 2/3 2/3 2/3 1 0 1 0 0 1 0 0 1 1 0 1 2/3 1/3 2/3 1/3 1/3 2/3 1/3 1/3 2/3 1/3 1 1/3 2/3 1/3 2/3 1/3 2/3 1/3 1/3 2/3 1/3 1 1/3 1/3 2/3 1/3 2/3 1/3 2/3 1/3 2/3 1/3 1 1 1 0 0 0 1 1 1 1 0 1 1/3 2/3 2/3 1/3 1/3 1/3 2/3 2/3 1/3 1/3 1 1 0 0 0 1 1 1 0 0 0 1 2/3 2/3 1/3 2/3 2/3 1/3 2/3 1/3 2/3 1/3 1 0 0 0 0 0 0 0 0 0 0 end lrslib-051/ext/test/0000700000175300010010000000000012423577212014226 5ustar avisなしlrslib-051/ext/test/cut16_11.ext0000700000175300010010000000101412423577212016212 0ustar avisなしcut16_11.ext V-representation *5 point cut polytope begin 16 11 integer 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 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 end lrslib-051/ext/test/cut32_16.ext0000700000175300010010000000343512423577212016226 0ustar avisなしcut32_16.ext digits 50 V-representation *6 point cut polytope begin 32 16 integer 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 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 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 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 end lrslib-051/ext/test/cyclic25_13.ext0000700000175300010010000000612012423577212016672 0ustar avisなしcyclic25_13.ine H-representation digits 300 begin 25 13 integer 1 -156 1690 -22464 265018 -3234816 38683450 -465813504 5585476858 -67077144576 804783054010 -9659108818944 115904429355898 1 -143 1391 -17303 185783 -2093663 22895951 -253333223 2782380263 -30653319983 337043838911 -3709051717943 40794692425943 1 -130 1118 -13000 125450 -1300000 12865658 -130000000 1295714810 -13000000000 129857319098 -1300000000000 12995123528570 1 -117 871 -9477 80743 -767637 6774391 -62178597 555322183 -5036466357 45185516311 -407953774917 3666707502823 1 -104 650 -6656 48698 -425984 3273530 -27262976 213818618 -1744830464 13815962810 -111669149696 888476726138 1 -91 455 -4459 26663 -218491 1395095 -10706059 70657223 -524596891 3529497335 -25705247659 175060262183 1 -78 286 -2808 12298 -101088 472186 -3639168 17549818 -131010048 643379386 -4716361728 23421698938 1 -65 143 -1625 3575 -40625 68783 -1015625 792935 -25390625 -15727777 -634765625 -1702643305 1 -52 26 -832 -1222 -13312 -81094 -212992 -3433222 -3407872 -129049414 -54525952 -4658367622 1 -39 -65 -351 -3497 -3159 -124865 -28431 -4199897 -255879 -141913265 -2302911 -4869562697 1 -26 -130 -104 -4342 -416 -133510 -1664 -4281862 -6656 -142667590 -26624 -4876418182 1 -13 -169 -13 -4537 -13 -134329 -13 -4285177 -13 -142680889 -13 -4876471417 1 0 -182 0 -4550 0 -134342 0 -4285190 0 -142680902 0 -4876471430 1 13 -169 13 -4537 13 -134329 13 -4285177 13 -142680889 13 -4876471417 1 26 -130 104 -4342 416 -133510 1664 -4281862 6656 -142667590 26624 -4876418182 1 39 -65 351 -3497 3159 -124865 28431 -4199897 255879 -141913265 2302911 -4869562697 1 52 26 832 -1222 13312 -81094 212992 -3433222 3407872 -129049414 54525952 -4658367622 1 65 143 1625 3575 40625 68783 1015625 792935 25390625 -15727777 634765625 -1702643305 1 78 286 2808 12298 101088 472186 3639168 17549818 131010048 643379386 4716361728 23421698938 1 91 455 4459 26663 218491 1395095 10706059 70657223 524596891 3529497335 25705247659 175060262183 1 104 650 6656 48698 425984 3273530 27262976 213818618 1744830464 13815962810 111669149696 888476726138 1 117 871 9477 80743 767637 6774391 62178597 555322183 5036466357 45185516311 407953774917 3666707502823 1 130 1118 13000 125450 1300000 12865658 130000000 1295714810 13000000000 129857319098 1300000000000 12995123528570 1 143 1391 17303 185783 2093663 22895951 253333223 2782380263 30653319983 337043838911 3709051717943 40794692425943 1 156 1690 22464 265018 3234816 38683450 465813504 5585476858 67077144576 804783054010 9659108818944 115904429355898 end lrslib-051/ext/test/tsp5.ext0000700000175300010010000000071312423577212015647 0ustar avisなしtsp5.ext V-representation begin 12 11 rational 1 0 0 1 1 1 1 0 0 1 0 1 1 0 0 1 0 1 0 1 1 0 1 0 1 0 1 0 1 1 1 0 0 1 0 1 0 1 1 1 0 0 0 1 1 0 1 1 0 0 1 1 0 1 0 1 0 1 1 0 1 0 1 0 0 1 1 1 1 0 0 0 0 1 1 0 1 1 1 1 0 0 0 1 0 0 1 1 1 1 0 1 0 0 0 1 1 1 0 1 1 0 1 0 1 0 0 0 1 1 1 0 0 1 1 1 0 1 1 0 0 1 1 0 0 1 1 0 0 1 0 1 end lrslib-051/float2rat.c0000700000175300010010000000457312423577212014525 0ustar avisなし/* * Reads a polyhedron file on stdin with rationals and outputs * an approximation in decimal floating point * * David Bremner. bremner@cs.mcgill.ca * */ /* Hacked by DA, April 20 2006 * * first argument overides stdin * if column 0=0 then column 1 scaled to 1 (otherwise big ugly integers come out) * since lrs does not define m (# of output lines) this is skipped * lines are converted until "end" is read */ static char rcsid[]="$Id: float2rat.c,v 1.1.1.1 2006/04/03 20:42:10 bremner Exp $"; #include #include #include #include FILE *lrs_ifp; /* input file pointer */ #define DOCSTRING "\n\ $Id: float2rat.ds,v 1.2 2006/04/03 21:15:39 bremner Exp $\n\ \n\ Converts floating point coefficent $f$ to rational by the \n\ simple expedient of outputing 10^k*f/10^k for appropriate \n\ $k$. Does no reduction of numbers. In particular this may cause overflow in \n\ old versions of lrs input (and I'm not about cdd).\n\ " int usage(){ fprintf(stderr,"\n%s\n",rcsid);fprintf(stderr,DOCSTRING); exit(1); } #define CHECK_HELP if (argc > 1 && argv[1][0]=='-' && argv[1][1]=='h') usage(); int main(argc,argv) int argc; char **argv; { long int m,n; int i,j; long atol(); char buf[BUFSIZ]; CHECK_HELP; if(argc > 1 ) /* command line argument overides stdin */ { if ((lrs_ifp = fopen (argv[1], "r")) == NULL) { printf ("\nBad input file name\n"); return(1); } } else lrs_ifp=stdin; while ( fgets(buf,BUFSIZ,lrs_ifp) !=NULL ) { fputs(buf,stdout); if (strncmp(buf,"begin",5)==0) break; } if (fscanf(lrs_ifp,"%ld %ld %s",&m,&n,buf)==EOF){ fprintf(stderr,"No begin line"); exit(1); } printf("%ld %ld rational\n",m,n); for (i=0;i #include #include "lrslib.h" #define MAXCOL 1000 /* maximum number of variables. */ /**************************************************************************/ void fel_abort(char str[]) { printf("%s\n", str ); exit(1); } /*************************************************************************/ /*******************************************************************/ /* Function to read all lines above the "matrix" in the input file.*/ /* Adapted from Prof. Avis' function in lrslib.c. */ /*******************************************************************/ long readHfile(lrs_dat *Q) { char line[100]; char ch; long firstline = TRUE; if(fscanf(lrs_ifp, "%s", line)==EOF) exit(1); while (strcmp(line, "begin") != 0) { if (strncmp(line, "*", 1) == 0) { ch = line[0]; while ((ch != EOF) && (ch != '\n')) ch = fgetc(lrs_ifp); } else if (strcmp(line, "H-representation") == 0) { Q->hull = FALSE; } else if (strcmp(line, "linearity")==0) { /* disabled 2009.2.5 due to bug in linearity handling */ /* if (!readlinearity(Q)) */ fprintf(lrs_ofp, "\nfourier does not handle linearity option:\n replace each linearity by two inequalities\n"); return (FALSE); } else if (firstline) { stringcpy(Q->fname, line); fprintf(lrs_ofp, "%s\n", Q->fname); firstline = FALSE; } if (fscanf(lrs_ifp, "%s", line) == EOF) { fprintf(lrs_ofp, "No begin line\n"); return (FALSE); } } /* end of while */ if (fscanf(lrs_ifp, "%ld %ld %s", &Q->m, &Q->n, line) == EOF) { fprintf(lrs_ofp, "No data in file\n"); return (FALSE); } if (!((strcmp(line, "rational") == 0) || (strcmp(line, "integer") == 0))) { fprintf(lrs_ofp, "Data type must be rational\n"); return (FALSE); } if (Q->m == 0) { fprintf(lrs_ofp, "No input given\n"); return (FALSE); } return (TRUE); } /***************************************************************/ /* Function to read in the dictionary from input file. */ /***************************************************************/ long readHmat(lrs_dic *P, lrs_dat *Q, long *project) { char line[100]; char ch; long p, i; if (!lrs_read_dic(P, Q)) { fprintf(lrs_ofp, "Data matrix not properly formatted\n"); return (FALSE); } /* "lrs_read_dic" doesn't handle option "project", so improvise */ if (fseek(lrs_ifp, 0L, 0) <= 0) /* rewind file. */ { while (fscanf(lrs_ifp, "%s", line) != EOF) { if (strncmp(line, "*", 1) == 0) { ch = line[0]; while ((ch != EOF) && (ch != '\n')) ch = fgetc(lrs_ifp); } if (strcmp(line, "project") == 0) { if(fscanf(lrs_ifp, "%ld", &p)==EOF) { fprintf(lrs_ofp, "No variables to project.\n"); return (FALSE); } project[0] = p; if (p <= 0) { fprintf(lrs_ofp, "No variables to project.\n"); return (FALSE); } for(i=1; i<=project[0]; i++) { if (fscanf(lrs_ifp, "%ld", &p) == EOF) { fprintf(lrs_ofp, "Missing variables in 'project' line.\n"); return (FALSE); } project[i] = p; } } } } else { fprintf(lrs_ofp, "Can't process input file\n"); return (FALSE); } return (TRUE); } /*******************************************************************************/ void linear_dep(lrs_dic *P, lrs_dat *Q, long *Dep) { long d; long nlinearity; lrs_mp_matrix A; long i, j, k, row, col,m; d = P->d; nlinearity = Q->nlinearity; A = lrs_alloc_mp_matrix(nlinearity+1, d+2); for(i=0;iA[i][j]); itomp(ZERO, A[i][d+1]); } for(col=1;col<=d;col++) { row = -1; for(i=1;i<=nlinearity;i++) if ((zero(A[i][d+1]))&& !zero(A[i][col])) { row = i; break; } if (row > 0) for(k=1;k<=nlinearity;k++) { if ((zero(A[k][d+1]))&&(!zero(A[k][col])) && (k!=row)) { printf("row=%ld k = %ld\n", row, k); if (sign(A[k][col])*sign(A[row][col]) < 0) { copy(A[0][0], A[k][col]); copy(A[0][1], A[row][col]); storesign(A[0][0], POS); storesign(A[0][1], POS); for(i=0;i<=d;i++) { mulint(A[0][0], A[row][i], A[0][2]); mulint(A[0][1], A[k][i], A[0][3]); addint(A[0][2], A[0][3], A[k][i]); } } else { copy(A[0][0], A[k][col]); copy(A[0][1], A[row][col]); storesign(A[0][0], NEG); storesign(A[0][1], POS); for(i=0;i<=d;i++) { mulint(A[0][0], A[row][i], A[0][2]); mulint(A[0][1], A[k][i], A[0][3]); addint(A[0][2], A[0][3], A[k][i]); } } itomp(ONE, A[row][d+1]); for(i=1;i<=nlinearity; i++) { for(m=0;m<=d;m++) pmp("", A[i][m]); fprintf(lrs_ofp, "\n"); } fprintf(lrs_ofp, "\n"); } } } for(row=1,i=0;row<=nlinearity;row++) { for(k=0,i=0;k<=d;k++) if(zero(A[row][k])) i++; if (i==d+1) Dep[row] =1; } } /********************************************************************************/ /* groups[i] = +1 if A[i][col] > 0, groups[i] = -1 if A[i][col] < 0, */ /* groups[i] = 0 if A[i][col] = 0, groups[m+1] = # of rows with <0 entry */ /* in column 'col', and groups[m+2] = # of rows with > 0 entry in column 'col' */ /********************************************************************************/ void lrs_compute_groups(lrs_dat *Q, lrs_dic *P, long col, long *groups) { long i, row; long m; m = Q->m; for(i=0;i<= m+2; i++) { groups[i] = 0; } for(row = 1; row <= Q->m; row++) { if (sign(P->A[row][col]) < 0) { groups[row] = -1; groups[m+1]++; } else if (zero(P->A[row][col])) { groups[0]++; } else { groups[row] = 1; groups[m+2]++; } } } /*******************************************************************/ /* Function to copy matrix A from dictionary P to dictionary P1. */ /* The column (variable) with index 'skip' is left out. */ /* Set skip to '-1' if no column is to be left out. */ /* Adapted from Prof. Avis' function in lrslib.c. */ /*******************************************************************/ void copydicA(lrs_dic *P1, lrs_dic *P, long skip_row, long skip_col) { long i, j; long d, m_A; d = P->d; /* dimension of space of variables */ m_A = P->m_A; if (skip_col > 0) { if (skip_row > 0) { for (i = 1; i < skip_row; i++) { for(j = 0; j < skip_col; j++) copy (P1->A[i][j], P->A[i][j]); for(j = skip_col+1; j <= d; j++) copy (P1->A[i][j-1], P->A[i][j]); } for (i = skip_row+1; i <= m_A; i++) { for(j = 0; j < skip_col; j++) copy (P1->A[i-1][j], P->A[i][j]); for(j = skip_col+1; j <= d; j++) copy (P1->A[i-1][j-1], P->A[i][j]); } } else { for (i = 1; i <= m_A; i++) { for(j = 0; j < skip_col; j++) copy (P1->A[i-1][j], P->A[i][j]); for(j = skip_col+1; j <= d; j++) copy (P1->A[i-1][j-1], P->A[i][j]); } } } else { if (skip_row > 0) { for (i = 1; i < skip_row; i++) for(j = 0; j <= d; j++) copy (P1->A[i][j], P->A[i][j]); for (i = skip_row+1; i <= m_A; i++) for(j = 0; j <= d; j++) copy (P1->A[i-1][j], P->A[i][j]); } else { for (i = 1; i <= m_A; i++) for(j = 0; j <= d; j++) copy (P1->A[i][j], P->A[i][j]); } } } /***************************************************************/ /* copy linearity from iQ to Q */ /***************************************************************/ void copy_linearity(lrs_dat *Q, lrs_dat *iQ) { long nlinearity; long i; nlinearity = iQ->nlinearity; if (nlinearity > 0) { Q->linearity = CALLOC ((nlinearity +1), sizeof (long)); for(i=0; i < nlinearity; i++) Q->linearity[i] = iQ->linearity[i]; Q->nlinearity = nlinearity; Q->polytope = FALSE; } } /***************************************************************/ void put_linearities_first(lrs_dat *Q, lrs_dic *P) { long nlinearity; long i, row; lrs_mp Temp; lrs_alloc_mp(Temp); nlinearity = Q->nlinearity; for(row=1; row <= nlinearity; row++) { if (Q->linearity[row-1] != row) { for(i=0;i<=P->d; i++) { copy(Temp, P->A[row][i]); copy(P->A[row][i], P->A[Q->linearity[row-1]][i]); copy(P->A[Q->linearity[row-1]][i], Temp); } copy(Temp, Q->Gcd[row]); copy(Q->Gcd[row], Q->Gcd[Q->linearity[row-1]]); copy(Q->Gcd[Q->linearity[row-1]], Temp); copy(Temp, Q->Lcm[row]); copy(Q->Lcm[row], Q->Lcm[Q->linearity[row-1]]); copy(Q->Lcm[Q->linearity[row-1]], Temp); Q->linearity[row-1] = row; } } lrs_clear_mp(Temp); } /***************************************************************/ /* Function to compute redundancies. redineq[i] = 1 if row i */ /* is redundant. Adapted from Prof. Avis' function in lrslib.c.*/ /***************************************************************/ long compute_redundancy(long *redineq, lrs_dic *P, lrs_dat *Q) { long ineq; long d, m; long nlinearity; long lastdv, index; lrs_mp_matrix Lin; m = P->m_A; d = P->d; if (!lrs_getfirstbasis(&P, Q, &Lin, TRUE)) { return (FALSE); } m = P->m_A; d = P->d; nlinearity = Q->nlinearity; lastdv = Q->lastdv; for(index = lastdv +1;index <= m+d; index++) { ineq = Q->inequality[index-lastdv]; redineq[ineq] = checkindex(P, Q, index); } return (TRUE); } /******************************************************************/ /* Function to project original space to space of variables */ /* contained in the array 'variables'. */ /******************************************************************/ void lrs_project_var(lrs_dic **iP, lrs_dat **iQ, long *variables, long stat) { lrs_dic *P1, *P2, *tP2, *P; lrs_dat *Q1, *Q2, *tQ2, *Q; long *redineq, *tgroups; long i, j, k, l, m, n, red, col, row; long empty_set; long *var_remove; /* variables to be removed */ long count; /* could do with less of these monsters */ lrs_mp Temp, Temp1, Lcm, div1, div2, Temp2, Temp3, Temp4, Temp5; lrs_alloc_mp(Temp); lrs_alloc_mp(Temp1);lrs_alloc_mp(Temp2); lrs_alloc_mp(Temp3); lrs_alloc_mp(Temp4);lrs_alloc_mp(Temp5); lrs_alloc_mp(Lcm); lrs_alloc_mp(div1);lrs_alloc_mp(div2); if (stat) { fprintf(lrs_ofp, "*Number of\t Number after\t Number of\n"); fprintf(lrs_ofp, "*Inequalties\t Removing Var.\t Redundancies\n"); fprintf(lrs_ofp, "*============================================\n"); } /* create a copy of iP, iQ */ if( (Q = lrs_alloc_dat("LRS GLOBALS")) == NULL) fel_abort("ERROR>Can't allocate memory for structures"); Q->m = (*iQ)->m; Q->n = (*iQ)->n; n = (*iQ)->n; if (( P = lrs_alloc_dic(Q)) == NULL) fel_abort("ERROR>Can't allocate dictionary space"); copydicA(P, (*iP),-1, -1); var_remove = CALLOC ((n + 2), sizeof (long)); if (var_remove == NULL) fel_abort("ERROR>Can't allocate memory."); var_remove[0]=0; for(l=1; l<=n-1; l++) { var_remove[0]++; var_remove[l] = l; } for(l=1;l<=variables[0];l++) { var_remove[variables[l]] = 0; var_remove[0]--; } for (i = 1; i <= n-1; i++) /* main loop */ { count = 0; if (var_remove[i]) { if (stat) fprintf(lrs_ofp, "*%11ld ", Q->m); /* create a copy of P, Q */ if( (Q1 = lrs_alloc_dat("LRS GLOBALS")) == NULL) fel_abort("ERROR>Can't allocate memory for structures"); Q1->m = Q->m; Q1->n = Q->n; if (( P1 = lrs_alloc_dic(Q1)) == NULL) fel_abort("ERROR>Can't allocate dictionary space"); copydicA(P1, P, -1, -1); col = var_remove[i]; /* column to be removed */ for(l=i+1;l<=n-1;l++) /* fix variables for second round */ { if ((var_remove[l]) && (var_remove[l] > col)) var_remove[l]--; } tgroups = CALLOC ((Q1->m+4), sizeof (long)); if (tgroups == NULL) fel_abort("ERROR>Can't allocate memory."); /* compute groupings tgroups[0] = # of rows with '0' in column 'col' */ lrs_compute_groups(Q1, P1, col, tgroups); /* check for overflow */ if (tgroups[Q1->m +1] > 0) if (tgroups[Q1->m + 2] > (MAXD/tgroups[Q1->m +1])) { fel_abort("ERROR>Overflow...too many rows produced."); } /* create P2, Q2 */ if( (Q2 = lrs_alloc_dat("LRS GLOBALS")) == NULL) fel_abort("ERROR>Can't allocate memory for structures"); empty_set = (!tgroups[Q1->m +1] && tgroups[Q1->m +2]) || (tgroups[Q1->m +1] && !tgroups[Q1->m +2]) || (!(tgroups[Q1->m +1] + tgroups[Q1->m +2])); if (empty_set) /* one of the sets is empty, just remove the variable */ { Q2->m = Q1->m; Q2->n = (Q1->n) - 1; if (( P2 = lrs_alloc_dic(Q2)) == NULL) fel_abort("ERROR>Can't allocate dictionary space"); copydicA(P2, P1,-1, col); if (stat) fprintf(lrs_ofp, "%13ld", Q2->m); } else { Q2->m = (tgroups[Q1->m + 1]*tgroups[Q1->m +2]) + tgroups[0]; Q2->n = (Q1->n)-1; if (stat) fprintf(lrs_ofp, "%13ld ", Q2->m); if (( P2 = lrs_alloc_dic(Q2)) == NULL) fel_abort("ERROR>Can't allocate dictionary space"); row = 1; for(j = 1; j <= Q1->m; j++) { if (tgroups[j] < 0) for(k=1; k <= Q1->m; k++) { if (tgroups[k] > 0) { copy(div1, P1->A[j][col]); copy(div2, P1->A[k][col]); storesign(div1, POS); copy(Lcm, div1); lcm(Lcm, div2); copy(Temp, Lcm); copy(Temp1, div1); divint(Temp, Temp1, Temp2); copy(Temp, Lcm); copy(Temp1, div2); divint(Temp, Temp1, Temp3); for(l=0;l< col; l++) { copy(Temp, P1->A[j][l]); copy(Temp1, P1->A[k][l]); mulint(Temp,Temp2 ,Temp4); mulint(Temp1,Temp3,Temp5); addint(Temp4, Temp5, P2->A[row][l]); } for(l=col+1;ln; l++) { copy(Temp, P1->A[j][l]); copy(Temp1, P1->A[k][l]); mulint(Temp,Temp2 ,Temp4); mulint(Temp1,Temp3,Temp5); addint(Temp4, Temp5, P2->A[row][l-1]); } reducearray(P2->A[row], Q2->n); row++; } /* end if (tgroups[k]) */ } /* end for k */ } /* end for j*/ for(j=1;j<=Q1->m;j++) { if (tgroups[j]==0) /* just copy row, coefficient was '0' */ { for(l=0;lA[row][l], P1->A[j][l]); for(l=col+1;ln;l++) copy(P2->A[row][l-1], P1->A[j][l]); reducearray(P2->A[row], Q2->n); row++; } } } /* end else */ /* create temp P2, Q2 */ lrs_free_dic(P1, Q1); lrs_free_dat(Q1); for(row=1;row<=Q2->m;row++) { l = 0; for(j=1;jn; j++) if (zero(P2->A[row][j])) l++; if (l==Q2->n -1 ) { count++; } } if( (tQ2 = lrs_alloc_dat("LRS GLOBALS")) == NULL) fel_abort("ERROR>Can't allocate memory for structures"); tQ2->m = Q2->m; tQ2->n = Q2->n; if (( tP2 = lrs_alloc_dic(tQ2)) == NULL) fel_abort("ERROR>Can't allocate dictionary space"); copydicA(tP2, P2, -1, -1); /* find redundacies */ m = tQ2->m; redineq = CALLOC ((m+1), sizeof (long)); if (redineq == NULL) fel_abort("ERROR>Can't allocate memory."); if (!compute_redundancy(redineq, tP2, tQ2)) fel_abort("ERROR>Can't pivot in redundancy LP"); red = 0; for(row=1;row<=Q2->m; row++) if (redineq[row] == 1L) { red++; } if (stat) fprintf(lrs_ofp, "%12ld%8ld\n", red, count); /* make new P, Q */ lrs_free_dic(P , Q ); lrs_free_dat(Q ); if( (Q = lrs_alloc_dat("LRS GLOBALS")) == NULL) fel_abort("ERROR>Can't allocate memory for structures"); Q->m = Q2->m - red; Q->n = Q2->n; if (( P = lrs_alloc_dic(Q)) == NULL) fel_abort("ERROR>Can't allocate dictionary space"); /* copy to P (from P2) nonredundant rows */ k = 0; for(row=1;row<=Q2->m; row++) if (redineq[row] != 1L) { k++; for(l=0;l<=(Q2->n)-1;l++) copy(P->A[k][l], P2->A[row][l]); } free(redineq); free(tgroups); lrs_free_dic(tP2, tQ2); lrs_free_dat(tQ2); lrs_free_dic(P2, Q2); lrs_free_dat(Q2); } /* end if (var_remove[i]) */ }/* end "for i " */ *iP = P; *iQ = Q; lrs_clear_mp(Temp); lrs_clear_mp(Temp1);lrs_clear_mp(Temp2); lrs_clear_mp(Temp3); lrs_clear_mp(Temp4);lrs_clear_mp(Temp5); lrs_clear_mp(Lcm); lrs_clear_mp(div1);lrs_clear_mp(div2); } /*********************************************************************/ void full_fel(lrs_dic *iP, lrs_dat *iQ, long *variables) { lrs_dic *P1, *P2, *P; lrs_dat *Q1, *Q2, *Q; long *proj, *redineq; /* for variables to project to */ long i, j, k, l, m, n, lindep, col, row, red; long *var_remove; /* variables to be removed */ long *Dep; /*Dep[0] not used, Dep[i] = 1 if eqn lin. dep., else 0 */ long nlinearity; long eqn; long last=0; /* =1 if equation used to remove var. =2 if FME used */ /* could do with less of these monsters */ lrs_mp Temp, Temp1, div1; /* create a copy of iP, iQ */ if( (Q = lrs_alloc_dat("LRS GLOBALS")) == NULL) fel_abort("ERROR>Can't allocate memory for structures"); Q->m = iQ->m; Q->n = iQ->n; copy_linearity(Q, iQ); n = iQ->n; if (( P = lrs_alloc_dic(Q)) == NULL) fel_abort("ERROR>Can't allocate dictionary space"); copydicA(P, iP,-1, -1); var_remove = CALLOC ((n + 2), sizeof (long)); if (var_remove == NULL) fel_abort("ERROR>Can't allocate memory."); var_remove[0]=0; for(l=1; l<=n-1; l++) { var_remove[0]++; var_remove[l] = l; } for(l=1;l<=variables[0];l++) { var_remove[variables[l]] = 0; var_remove[0]--; } nlinearity = iQ->nlinearity; for (i = 1; i <= n-1; i++) /* main loop */ { if (var_remove[i]) { /* create a copy of P, Q */ if( (Q1 = lrs_alloc_dat("LRS GLOBALS")) == NULL) fel_abort("ERROR>Can't allocate memory for structures"); Q1->m = Q->m; Q1->n = Q->n; copy_linearity(Q1, Q); if (( P1 = lrs_alloc_dic(Q1)) == NULL) fel_abort("ERROR>Can't allocate dictionary space"); copydicA(P1, P,-1, -1); col = var_remove[i]; /* column to be removed */ for(l=i+1;l<=n-1;l++) /* fix variables for second round */ { if ((var_remove[l]) && (var_remove[l] > col)) var_remove[l]--; } for(l=1, eqn=-1; l <= nlinearity; l++) if (!zero(P1->A[l][col])) { eqn = l; /* use this linearity row to eliminate col */ break; } if (eqn > 0) { last = 1; for(l=eqn-1;llinearity[l] = Q1->linearity[l+1] -1; } nlinearity--; Q1->nlinearity = nlinearity; for(j=0;j<=P1->d;j++) { if ((j!=col) && !zero(P1->A[eqn][j])) changesign(P1->A[eqn][j]); } copy(div1, P1->A[eqn][col]); for(k=1;k<=P1->m;k++) { if (k!=eqn) { for(j=0;j<=P1->d;j++) { if (j!=col) { if (zero(P1->A[k][col])) break; mulint(P1->A[k][col], P1->A[eqn][j], Temp); mulint(P1->A[k][j], div1, Temp1); addint(Temp, Temp1, P1->A[k][j]); if (negative(div1)) { if (!zero(P1->A[k][j])) { changesign(P1->A[k][j]); } } } } itomp(0L, P1->A[k][col]); reducearray(P1->A[k], Q1->n); } } /* make new P, Q */ lrs_free_dic(P , Q ); lrs_free_dat(Q ); if( (Q = lrs_alloc_dat("LRS GLOBALS")) == NULL) fel_abort("ERROR>Can't allocate memory for structures"); Q->m = Q1->m -1; Q->n = Q1->n -1; copy_linearity(Q, Q1); if (( P = lrs_alloc_dic(Q)) == NULL) fel_abort("ERROR>Can't allocate dictionary space"); copydicA(P, P1, eqn, col); lrs_free_dic(P1 , Q1 ); lrs_free_dat(Q1 ); } else { last = 2; if( (Q2 = lrs_alloc_dat("LRS GLOBALS")) == NULL) fel_abort("ERROR>Can't allocate memory for structures"); Q2->m = Q1->m - Q1->nlinearity; Q2->n = Q1->n; if (( P2 = lrs_alloc_dic(Q2)) == NULL) fel_abort("ERROR>Can't allocate dictionary space"); /* copy inequalities */ for(row=Q1->nlinearity+1;row<=Q1->m; row++) { for(l=0;l<=(Q1->n)-1;l++) copy(P2->A[row-Q1->nlinearity][l], P1->A[row][l]); } proj = CALLOC ((Q1->n +2), sizeof (long)); for(l=1;ln;l++) proj[l-1] = l; proj[0] = Q1->n-2; lrs_project_var(&P2, &Q2, proj, FALSE); /* make new P, Q */ lrs_free_dic(P , Q ); lrs_free_dat(Q ); if( (Q = lrs_alloc_dat("LRS GLOBALS")) == NULL) fel_abort("ERROR>Can't allocate memory for structures"); Q->m = Q1->nlinearity + P2->m_A;; Q->n = Q1->n - 1; copy_linearity(Q, Q1); if (( P = lrs_alloc_dic(Q)) == NULL) fel_abort("ERROR>Can't allocate dictionary space"); for(row=1;row<=Q1->nlinearity; row++) { for(l=0;lA[row][l], P1->A[row][l]); for(l=col+1;l<=(Q->n)-1;l++) copy(P->A[row][l-1], P1->A[row][l]); } for(row=1;row<=P2->m_A; row++) { for(l=0;l<=(Q->n)-1;l++) copy(P->A[row][l], P2->A[row][l]); } lrs_free_dic(P1 , Q1 ); lrs_free_dat(Q1 ); lrs_free_dic(P2 , Q2 ); lrs_free_dat(Q2 ); } } } /* remove linearly dependent linearities */ Dep = CALLOC ((Q->nlinearity+2), sizeof (long)); linear_dep(P, Q, Dep); for(l=1, lindep=0; l <= Q->nlinearity; l++) if (Dep[l]) lindep++; /*if (last==1) perform one last redundancy checking */ if( (Q1 = lrs_alloc_dat("LRS GLOBALS")) == NULL) fel_abort("ERROR>Can't allocate memory for structures"); Q1->m = Q->m - Q->nlinearity; Q1->n = Q->n; if (( P1 = lrs_alloc_dic(Q1)) == NULL) fel_abort("ERROR>Can't allocate dictionary space"); for(row=Q->nlinearity+1;row<=Q->m; row++) { for(l=0;l<=(Q->n)-1;l++) copy(P1->A[row-Q->nlinearity][l], P->A[row][l]); } m = Q1->m; redineq = CALLOC ((m+1), sizeof (long)); if (redineq == NULL) fel_abort("ERROR>Can't allocate memory."); if (!compute_redundancy(redineq, P1, Q1)) fel_abort("ERROR>Can't pivot in redundancy LP"); for(row=1,red=0;row<=m; row++) if (redineq[row] == 1L) { red++; } lrs_free_dic(P1 , Q1 ); lrs_free_dat(Q1 ); /* assemble final result */ if( (Q2 = lrs_alloc_dat("LRS GLOBALS")) == NULL) fel_abort("ERROR>Can't allocate memory for structures"); Q2->m = (m-red) + (Q->nlinearity - lindep); Q2->n = Q->n; Q2->nlinearity = 0L; if (( P2 = lrs_alloc_dic(Q2)) == NULL) fel_abort("ERROR>Can't allocate dictionary space"); for(l=1, row=1;l<=Q->nlinearity;l++) if (!Dep[l]) { for(i=0;i<=Q->n-1;i++) copy(P2->A[row][i], P->A[l][i]); row++; } for(l=Q->nlinearity+1;l<=Q->m;l++) if (redineq[l-Q->nlinearity]!=1L) { for(i=0;i<=Q->n-1;i++) copy(P2->A[row][i], P->A[l][i]); row++; } Q2->nlinearity = Q->nlinearity - lindep; for(l=1;l<=Q2->nlinearity;l++) Q2->linearity[l-1] = l; lrs_free_dic(P , Q ); lrs_free_dat(Q ); fprintf(lrs_ofp, "H-representation\n"); if (Q2->nlinearity > 0) { fprintf(lrs_ofp, "linearity %ld", Q2->nlinearity); for(row=0; rownlinearity;row++) fprintf(lrs_ofp, " %ld", Q2->linearity[row]); fprintf(lrs_ofp, "\n"); } fprintf(lrs_ofp, "begin\n"); fprintf(lrs_ofp, "%ld %ld %s", Q2->m, Q2->n, "rational"); for(row=1;row<=Q2->m; row++) lrs_printrow("", Q2, P2->A[row], Q2->inputd); fprintf(lrs_ofp, "\nend\n"); } /***************************************************************/ int main(int argc, char *argv[]) { lrs_dic *P; /* holds dictionary */ lrs_dat *Q; /* holds information about dictionary */ FILE *infile, *outfile; long *proj; /* try opening files */ if (argc < 2) fel_abort(USAGE); if ((infile = fopen(argv[1], "r")) == NULL) fel_abort("ERROR>Can't open input file"); if (argc == 2) outfile = stdout; else if ((outfile = fopen(argv[2], "a")) == NULL) fel_abort("ERROR>Can't open output file"); /* initialize lrs */ if (!lrs_init("Fourier Elimination\n")) fel_abort("ERROR>Can't initialize lrs"); /* set lrs global file pointers */ lrs_ifp = infile; lrs_ofp = outfile; /* allocate space for problem */ if( (Q = lrs_alloc_dat("LRS GLOBALS")) == NULL) fel_abort("ERROR>Can't allocate memory for structures"); if (!readHfile(Q)) /* get info about data from input file */ { fprintf(stderr, "Can't read input file\n"); exit(1); } if (( P = lrs_alloc_dic(Q)) == NULL) fel_abort("ERROR>Can't allocate dictionary space"); proj = CALLOC ((MAXCOL), sizeof (long)); /* variables to project to are stored here */ if (!readHmat(P, Q, proj)) /* read in the matrix/dictionary */ { fprintf(stderr, "Can't read input file\n"); exit(1); } /* lrs_project_var(P, Q, proj, TRUE); compute projection, TRUE means print statistics */ /* clean up */ put_linearities_first(Q, P); full_fel(P, Q, proj); /* fprintf(lrs_ofp, "H-representation\n"); if (Q->nlinearity > 0) { fprintf(lrs_ofp, "linearity %ld", Q->nlinearity); for(row=0; rownlinearity;row++) fprintf(lrs_ofp, " %ld", Q->linearity[row]); fprintf(lrs_ofp, "\n"); } fprintf(lrs_ofp, "begin\n"); fprintf(lrs_ofp, "%ld %ld %s", Q->m, Q->n, "rational"); for(row=1;row<=Q->m; row++) lrs_printrow("", Q, P->A[row], Q->inputd); fprintf(lrs_ofp, "\nend\n"); */ lrs_free_dic(P, Q); lrs_free_dat(Q); lrs_close("Fourier Elimination\n"); printf("\n"); return(0); } lrslib-051/game0000700000175300010010000000003612423577212013305 0ustar avisなし3 2 0 6 2 5 3 3 1 0 0 2 4 3 lrslib-051/game10000700000175300010010000000021712423577212013367 0ustar avisなし*game: player 1 H-representation linearity 1 6 begin 6 5 rational 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 -1 0 -4 1 0 0 -2 -3 1 -1 1 1 1 0 end lrslib-051/game20000700000175300010010000000020512423577212013365 0ustar avisなし*game: player 2 H-representation linearity 1 6 begin 6 4 rational 0 0 -6 1 0 -2 -5 1 0 -3 -3 1 0 1 0 0 0 0 1 0 -1 1 1 0 end lrslib-051/ine/0000700000175300010010000000000012423577213013223 5ustar avisなしlrslib-051/ine/cube.ine0000700000175300010010000000022212423577212014634 0ustar avisなしcube *cube of side 2 centred at origin H-representation begin 6 4 rational 1 1 0 0 1 0 1 0 1 0 0 1 1 -1 0 0 1 0 -1 0 1 0 0 -1 end printcobasis 1 lrslib-051/ine/cube2.ine0000700000175300010010000000022212423577212014716 0ustar avisなしcube *cube of side 2 centred at origin H-representation begin 6 4 rational 2 2 0 0 3 0 3 0 1 0 0 1 1 -1 0 0 1 0 -1 0 1 0 0 -1 end printcobasis 1 lrslib-051/ine/cubetop.ine0000700000175300010010000000025112423577212015361 0ustar avisなしcube *top facet of cube *nonnegative linearity 1 3 H-representation begin 6 4 integer 1 -1 0 0 1 0 -1 0 1 0 0 -1 0 1 0 0 0 0 1 0 0 0 0 1 end lrslib-051/ine/cyc.ine0000700000175300010010000000020212423577212014472 0ustar avisなしV-representation *cyclic polytope: 5 vertices in R^3 begin 5 4 integer 1 1 1 1 1 2 4 8 1 3 9 27 1 4 16 64 1 5 25 125 end *debug lrslib-051/ine/lp1.ine0000700000175300010010000000015112423577212014413 0ustar avisなしH-representation begin 5 3 integer 8 -1 -1 18 -1 -3 4 -1 1 0 1 0 0 0 1 end lponly maximize 0 1 1 verbose lrslib-051/ine/lp2.ine0000700000175300010010000000021212423577212014412 0ustar avisなしH-representation begin 7 3 integer 4 -1 -3 5 -5 -1 2 -3 -2 1 1 3 2 2 -1 0 1 0 0 0 1 end startingcobasis 2 5 lponly maximize 0 1 1 verbose lrslib-051/ine/metric/0000700000175300010010000000000012423577212014505 5ustar avisなしlrslib-051/ine/metric/cp4.ine0000700000175300010010000000062112423577212015672 0ustar avisなしcp4.ine H-representation begin 16 7 rational 2 0 -1 -1 0 0 -1 2 -1 -1 0 -1 0 0 2 0 0 0 -1 -1 -1 2 -1 0 -1 0 -1 0 0 0 0 0 1 1 -1 0 -1 0 1 0 1 0 0 0 1 1 0 0 -1 0 -1 1 0 1 0 0 0 1 0 -1 0 1 0 0 0 0 0 -1 1 1 0 1 1 0 -1 0 0 0 0 1 -1 0 0 1 0 1 -1 0 1 0 0 0 0 -1 1 0 0 1 0 1 0 1 0 -1 0 0 0 0 0 1 -1 1 end lrslib-051/ine/metric/cp5.ine0000700000175300010010000000367112423577212015703 0ustar avisなしcp5.ine *6 point cut polytope H-representation begin 56 11 rational 2 0 0 0 0 0 0 0 -1 -1 -1 2 0 0 0 0 0 -1 -1 0 0 -1 2 0 0 0 0 -1 0 -1 0 -1 0 0 1 0 0 1 0 0 -1 0 0 0 0 0 1 0 1 0 0 0 0 -1 0 0 0 0 1 1 0 0 0 0 0 -1 2 1 1 1 1 -1 -1 -1 -1 -1 -1 0 0 1 1 0 0 0 0 -1 0 0 0 -1 1 0 0 1 0 0 0 0 0 0 -1 1 1 1 1 1 1 -1 -1 -1 0 0 0 0 0 1 1 0 -1 0 0 0 0 0 0 0 1 0 -1 0 1 0 0 0 1 0 -1 0 0 0 0 1 0 2 -1 1 -1 -1 1 -1 -1 1 1 -1 2 -1 0 0 -1 0 0 -1 0 0 0 0 -1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 1 0 -1 1 1 -1 1 1 -1 -1 1 1 0 0 0 1 -1 0 0 0 0 0 1 2 -1 -1 1 -1 -1 1 -1 1 -1 1 0 1 0 1 0 0 -1 0 0 0 0 0 0 0 0 0 1 0 1 0 -1 0 0 0 0 0 0 1 -1 0 1 0 0 0 1 -1 0 0 1 0 0 0 0 0 0 1 -1 1 1 1 -1 -1 1 1 -1 0 1 0 0 -1 0 0 1 0 0 0 0 1 1 1 -1 -1 -1 1 -1 1 1 2 1 -1 -1 -1 1 1 1 -1 -1 -1 2 0 -1 0 -1 0 0 0 0 -1 0 0 0 -1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 -1 1 0 1 -1 1 -1 1 -1 1 1 -1 1 0 1 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -1 0 0 0 0 0 -1 1 0 1 0 0 0 1 0 -1 0 0 1 0 0 0 0 0 1 1 -1 1 -1 1 -1 1 -1 1 2 0 0 -1 -1 0 0 0 0 0 -1 0 0 1 -1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 -1 0 1 1 -1 -1 -1 1 1 1 1 -1 2 0 0 0 0 -1 -1 0 -1 0 0 2 -1 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 1 0 0 1 0 0 0 0 0 0 -1 1 0 0 0 0 0 1 2 -1 -1 -1 1 -1 -1 1 -1 1 1 0 0 0 0 0 0 -1 1 0 0 1 0 -1 1 -1 1 1 -1 1 1 -1 1 2 0 -1 -1 0 0 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 -1 1 1 0 1 -1 -1 1 1 1 -1 -1 1 1 0 0 0 0 0 -1 0 1 0 1 0 0 -1 -1 1 1 -1 1 1 1 1 -1 2 -1 -1 0 0 -1 0 0 0 0 0 6 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 end lrslib-051/ine/metric/cp6.ine0000700000175300010010000004330512423577212015702 0ustar avisなしcp6.ine *6 point cut polytope H-representation begin 368 16 integer 2 0 1 1 1 1 0 0 0 0 -1 -1 -1 -1 -1 -1 2 1 0 1 1 1 0 -1 -1 -1 0 0 0 -1 -1 -1 2 1 1 0 1 1 -1 0 -1 -1 0 -1 -1 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 -1 2 2 2 2 2 2 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 1 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 -2 2 2 2 2 1 1 1 1 -1 -1 -1 -1 -1 -1 0 -2 1 1 1 1 2 2 2 2 -1 -1 -1 -1 -1 -1 0 1 -1 2 -1 -1 1 -2 1 1 2 -1 -1 2 2 -1 0 1 -1 -1 2 -1 1 1 -2 1 -1 2 -1 2 -1 2 2 -2 1 1 -1 -1 2 2 -2 -2 -1 1 1 1 1 -1 0 -1 2 1 -1 -1 2 1 -1 -1 -2 2 2 1 1 -1 2 -2 1 -1 -1 1 2 -2 -2 2 1 1 -1 -1 1 1 0 -1 2 -1 -1 1 2 -1 -1 1 2 2 -2 -1 1 1 2 -1 2 1 1 1 2 1 1 1 -2 -2 -2 -1 -1 -1 2 -2 1 -1 1 -1 2 -2 2 -2 1 -1 1 1 -1 1 0 -1 2 -1 1 -1 2 -1 1 -1 2 -2 2 1 -1 1 0 1 -1 -1 -1 2 1 1 1 -2 -1 -1 2 -1 2 2 0 0 0 0 0 0 1 0 0 -1 0 0 1 0 0 0 0 -1 1 1 1 0 1 1 1 0 -1 -1 0 -1 0 0 2 1 -2 -1 -1 1 2 1 1 -1 -2 -2 2 -1 1 1 0 2 -1 -1 -1 1 2 2 2 -2 -1 -1 1 -1 1 1 0 0 1 1 1 -1 0 0 0 0 -1 -1 1 -1 1 1 0 -1 2 1 1 -1 2 1 1 -1 -2 -2 2 -1 1 1 0 0 0 0 0 0 1 1 1 -1 -1 -1 1 -1 1 1 0 1 2 -1 -1 -1 -2 1 1 1 2 2 2 -1 -1 -1 2 -2 2 -2 2 -2 1 -1 1 -1 1 -1 1 1 -1 1 2 -1 1 -1 1 -2 1 -1 1 -2 1 -1 2 1 -2 2 0 0 1 0 0 -1 0 0 0 0 0 0 1 0 0 0 2 -1 2 -1 -1 -1 2 -1 -1 -1 2 2 2 -1 -1 -1 6 -1 1 -1 -1 -2 1 -1 -1 -2 1 1 2 -1 -2 -2 2 0 1 -1 -1 -1 0 0 0 0 1 1 1 -1 -1 -1 2 -1 1 -1 0 -1 1 -1 0 -1 1 0 1 0 -1 0 2 -1 1 0 -1 -1 1 0 -1 -1 0 1 1 0 0 -1 2 0 0 0 0 0 1 -1 -1 -1 1 1 1 -1 -1 -1 2 1 -1 1 1 2 1 -1 -1 -2 1 1 2 -1 -2 -2 0 -2 1 1 1 -1 2 2 2 -2 -1 -1 1 -1 1 1 0 -1 1 0 1 -1 1 0 1 -1 0 -1 1 0 0 1 0 -1 1 1 0 -1 1 1 0 -1 -1 0 1 0 1 0 2 -1 0 0 0 -1 0 0 0 -1 0 0 0 0 0 0 0 -1 0 1 1 -1 0 1 1 -1 0 0 0 -1 1 1 0 -2 2 2 2 -2 1 1 1 -1 -1 -1 1 -1 1 1 2 -2 -2 2 2 -2 -1 1 1 -1 1 1 -1 -1 1 1 2 -1 -1 1 1 -2 -1 1 1 -2 1 1 -2 -1 2 2 12 -1 -1 -1 -1 -2 -1 -1 -1 -2 -1 -1 -2 -1 -2 -2 0 0 0 0 0 0 1 0 -1 0 0 1 0 0 0 0 0 -1 1 1 0 1 1 1 0 1 -1 0 -1 0 -1 0 2 1 -2 -1 1 -1 2 1 -1 1 -2 2 -2 1 -1 1 0 2 -1 -1 1 -1 2 2 -2 2 -1 1 -1 1 -1 1 0 0 1 1 -1 1 0 0 0 0 -1 1 -1 1 -1 1 0 -1 2 1 -1 1 2 1 -1 1 -2 2 -2 1 -1 1 0 0 0 0 0 0 1 1 -1 1 -1 1 -1 1 -1 1 0 0 0 0 0 0 1 1 0 0 -1 0 0 0 0 0 0 1 -1 0 1 1 1 0 -1 -1 0 1 1 0 0 -1 2 1 -1 -2 1 -1 1 2 -1 1 -2 1 -1 2 -2 1 2 -2 -1 1 -1 1 -2 2 -2 2 1 -1 1 1 -1 1 0 -1 -1 2 -1 1 -1 2 -1 1 2 -1 1 2 -2 1 2 -1 1 2 1 1 1 2 1 1 -2 -1 -1 -2 -2 -1 2 1 -1 1 2 1 1 -1 -2 -1 1 2 1 -2 -1 -2 0 0 0 0 0 0 0 0 0 0 -1 1 0 1 0 0 0 1 -1 -1 1 0 1 1 -1 0 -1 1 0 1 0 0 0 0 0 0 0 0 0 1 -1 0 0 0 0 1 0 0 0 1 0 -1 1 1 0 1 -1 -1 0 0 0 1 1 -1 0 2 -1 -1 1 1 2 2 -2 -2 -1 1 1 1 1 -1 2 1 1 -1 2 1 -1 1 -2 -1 1 -2 -1 2 1 -2 0 1 -1 -1 2 1 1 1 -2 -1 -1 2 1 2 1 -2 0 -1 1 2 -1 -1 1 2 -1 -1 -2 1 1 2 2 -1 0 -1 1 1 -1 0 1 1 -1 0 -1 1 0 1 0 0 0 -1 1 2 -1 1 1 2 -1 1 -2 1 -1 2 -2 1 0 0 0 0 0 0 1 1 -1 -1 -1 1 1 1 1 -1 2 -2 -1 1 1 -1 -2 2 2 -2 1 1 -1 -1 1 1 0 -1 -1 2 1 -1 -1 2 1 -1 2 1 -1 -2 2 1 0 0 1 0 -1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -1 0 -2 1 1 -1 1 2 2 -2 2 -1 1 -1 1 -1 1 0 -1 1 0 -1 1 1 0 -1 1 0 1 -1 0 0 1 0 0 0 0 0 0 0 0 0 0 -1 0 1 0 1 0 0 1 -2 -1 1 1 2 1 -1 -1 -2 2 2 1 1 -1 0 1 -1 -1 0 1 1 1 0 -1 -1 0 1 0 1 0 2 -2 2 -2 -2 2 1 -1 -1 1 1 1 -1 -1 1 1 2 -1 1 -1 -2 1 1 -1 -2 1 1 2 -1 -2 1 2 2 1 -1 -2 -1 1 1 2 1 -1 -2 -1 1 -2 2 1 6 -1 1 -1 -2 -1 1 -1 -2 -1 1 2 1 -2 -1 -2 2 -1 1 -1 -1 0 1 -1 -1 0 1 1 0 -1 0 0 0 1 -1 -2 1 1 1 2 -1 -1 -2 1 1 2 2 -1 0 -1 1 2 1 -1 1 2 1 -1 -2 -1 1 -2 2 1 6 -1 -1 1 -2 -1 -1 1 -2 -1 1 -2 -1 2 1 -2 2 -1 -1 1 -1 0 -1 1 -1 0 1 -1 0 1 0 0 2 -1 0 0 -1 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 1 -1 1 0 1 -1 1 0 0 0 1 -1 1 0 -2 2 2 -2 2 1 1 -1 1 -1 1 -1 1 -1 1 2 -2 -2 2 -2 2 -1 1 -1 1 1 -1 1 1 -1 1 2 -1 -1 1 -2 1 -1 1 -2 1 1 -2 1 2 -1 2 12 -1 -1 -1 -2 -1 -1 -1 -2 -1 -1 -2 -1 -2 -1 -2 0 1 -1 -1 1 2 1 1 -1 -2 -1 1 2 1 2 -2 2 0 0 0 0 0 0 0 -1 -1 0 0 0 0 0 -1 0 0 0 0 0 0 0 1 0 -1 0 0 0 0 1 0 0 -1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 0 0 0 0 0 0 0 0 1 0 2 -1 -1 2 -1 -1 -1 2 -1 -1 2 -1 -1 2 2 -1 6 -1 -1 1 -1 -2 -1 1 -1 -2 1 -1 -2 1 2 -2 2 0 -1 1 -1 -1 0 0 0 0 1 -1 -1 1 1 -1 2 -1 -1 1 0 -1 -1 1 0 -1 1 0 -1 0 1 0 2 -1 0 1 -1 -1 0 1 -1 -1 0 0 0 1 1 -1 2 0 0 0 0 0 -1 1 -1 -1 1 -1 -1 1 1 -1 2 1 1 -1 1 2 -1 1 -1 -2 1 -1 -2 1 2 -2 0 0 0 1 -1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 -1 0 1 0 1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 1 0 0 0 0 0 0 -1 1 0 1 1 1 0 1 1 0 -1 -1 0 0 -1 2 1 -2 1 -1 -1 2 -1 1 1 2 -2 -2 1 1 -1 0 2 -1 1 -1 -1 2 -2 2 2 1 -1 -1 1 1 -1 0 0 1 -1 1 1 0 0 0 0 1 -1 -1 1 1 -1 0 -1 2 -1 1 1 2 -1 1 1 2 -2 -2 1 1 -1 0 0 0 0 0 0 1 -1 1 1 1 -1 -1 1 1 -1 0 0 0 0 0 0 1 0 1 0 0 -1 0 0 0 0 0 1 -1 1 0 1 1 -1 0 -1 1 0 1 0 -1 0 2 1 -1 1 -2 -1 1 -1 2 1 1 -2 -1 2 1 -2 2 -2 -1 -1 1 1 -2 -2 2 2 -1 1 1 1 1 -1 0 -1 -1 -1 2 1 -1 -1 2 1 -1 2 1 2 1 -2 2 -2 2 2 -2 -2 1 1 -1 -1 -1 1 1 1 1 -1 2 1 -1 2 1 1 1 -2 -1 -1 2 1 1 -2 -2 -1 2 1 2 -1 1 1 -2 1 -1 -1 2 -2 -2 1 1 -1 2 -1 1 1 2 1 1 1 2 1 -1 -2 -1 -2 -1 -2 2 2 -2 -2 2 -2 1 1 -1 1 -1 1 -1 1 -1 1 2 -1 1 1 -1 -2 1 1 -1 -2 -1 1 2 1 2 -2 2 1 -1 -1 1 -2 1 1 -1 2 -1 1 -2 1 -2 2 0 0 0 0 0 0 0 -1 1 0 0 0 0 1 0 0 0 1 0 1 -1 1 0 -1 1 -1 0 0 0 1 -1 1 0 2 -1 1 -1 1 2 -2 2 -2 1 -1 1 1 -1 1 2 1 1 2 -1 1 -1 -2 1 -1 -2 1 -1 2 -2 1 0 1 -1 2 -1 1 1 -2 1 -1 2 -1 1 2 -2 1 0 -1 1 -1 2 -1 1 -1 2 -1 1 -2 1 2 -1 2 0 -1 1 -1 1 0 1 -1 1 0 1 -1 0 1 0 0 0 -1 1 -1 2 1 1 -1 2 1 1 -2 -1 2 1 -2 0 0 0 0 0 0 1 -1 1 -1 1 -1 1 1 -1 1 0 0 0 0 0 0 0 0 0 0 1 -1 0 1 0 0 0 1 -1 1 -1 0 1 -1 1 0 1 -1 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 -1 0 0 0 0 1 -1 1 1 0 1 -1 -1 0 1 1 0 -1 0 0 0 1 -1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 2 -2 2 2 2 1 -1 -1 -1 1 1 1 -1 -1 -1 0 1 -2 1 1 1 2 -1 -1 -1 2 2 2 -1 -1 -1 2 2 -1 1 1 1 2 -2 -2 -2 1 1 1 -1 -1 -1 0 1 0 0 0 -1 0 0 0 1 0 0 0 0 0 0 0 1 1 1 1 -2 -1 -1 -1 2 -1 -1 2 -1 2 2 0 2 2 2 2 -2 -1 -1 -1 1 -1 -1 1 -1 1 1 2 2 1 1 1 -1 -2 -2 -2 2 -1 -1 1 -1 1 1 2 2 2 -2 -2 -2 -1 1 1 1 1 1 1 -1 -1 -1 2 2 -1 -1 -1 -1 2 2 2 2 -1 -1 -1 -1 -1 -1 6 1 -1 -1 -1 -2 1 1 1 2 -1 -1 -2 -1 -2 -2 2 1 0 -1 -1 -1 0 1 1 1 0 0 0 -1 -1 -1 2 1 1 -1 -1 -2 -1 1 1 2 1 1 2 -1 -2 -2 2 1 -1 -1 0 -1 1 1 0 1 -1 0 -1 0 -1 0 6 1 -1 -1 -2 -1 1 1 2 1 -1 -2 -1 -2 -1 -2 2 1 -1 0 -1 -1 1 0 1 1 0 -1 -1 0 0 -1 2 2 -2 2 -2 -2 1 -1 1 1 1 -1 -1 1 1 -1 2 1 -1 1 -1 -2 1 -1 1 2 1 -1 -2 1 2 -2 2 -1 -2 1 1 -1 -2 1 1 -1 2 2 -2 -1 1 1 2 -1 1 1 -2 -1 1 1 -2 -1 -1 2 1 2 1 -2 2 -1 1 1 1 2 1 1 1 2 -1 -1 -2 -1 -2 -2 2 2 -2 -2 -2 2 1 1 1 -1 -1 -1 1 -1 1 1 2 -1 1 -2 1 -1 1 -2 1 -1 2 -1 1 2 -2 1 2 1 -1 -1 -1 0 1 1 1 0 -1 -1 0 -1 0 0 2 0 0 0 0 0 1 1 1 1 -1 -1 -1 -1 -1 -1 0 1 -2 1 1 -1 2 -1 -1 1 2 2 -2 -1 1 1 0 1 -1 0 1 -1 1 0 -1 1 0 1 -1 0 0 1 0 1 -1 1 0 -1 1 -1 0 1 1 0 -1 0 1 0 2 0 -1 0 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 -1 1 1 -1 0 0 0 0 1 1 -1 -1 1 1 0 2 -2 2 2 -2 1 -1 -1 1 1 1 -1 -1 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 -1 0 1 1 1 -1 0 -1 -1 1 0 -1 1 0 1 0 0 0 1 0 0 -1 0 0 0 1 0 0 0 0 0 0 0 2 2 1 1 -1 1 -2 -2 2 -2 -1 1 -1 1 -1 1 0 2 2 2 -2 2 -1 -1 1 -1 -1 1 -1 1 -1 1 0 1 1 1 -2 1 -1 -1 2 -1 -1 2 -1 2 -1 2 0 1 1 1 -2 -1 -1 -1 2 1 -1 2 1 2 1 -2 0 1 0 1 -1 -1 0 -1 1 1 0 0 0 1 1 -1 0 1 1 0 -1 -1 -1 0 1 1 0 1 1 0 0 -1 2 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 -1 0 0 1 1 -1 -1 0 0 0 0 -1 1 1 1 1 -1 0 2 2 2 -2 -2 -1 -1 1 1 -1 1 1 1 1 -1 2 1 1 -1 -2 -1 -1 1 2 1 1 2 1 -2 -1 -2 0 0 0 0 0 0 0 -1 0 1 0 0 0 0 1 0 2 1 1 2 1 -1 -1 -2 -1 1 -2 -1 1 -2 2 1 0 1 0 1 1 -1 0 -1 -1 1 0 0 0 -1 1 1 0 2 -1 1 1 -1 2 -2 -2 2 1 1 -1 -1 1 1 0 1 -1 2 1 -1 1 -2 -1 1 2 1 -1 -2 2 1 0 -1 1 -1 -1 2 1 -1 -1 2 1 1 -2 -1 2 2 0 -2 1 -1 1 1 2 -2 2 2 1 -1 -1 1 1 -1 0 -1 1 -1 0 1 1 -1 0 1 1 0 -1 0 1 0 0 -1 1 -2 1 1 1 -2 1 1 2 -1 -1 2 2 -1 0 -1 1 -1 1 2 1 -1 1 2 1 -1 -2 1 2 -2 0 0 0 0 0 0 1 -1 -1 1 1 1 -1 -1 1 1 0 1 -2 1 -1 1 2 -1 1 -1 2 -2 2 1 -1 1 0 1 -1 0 -1 1 1 0 1 -1 0 -1 1 0 0 1 0 0 0 0 0 0 -1 -1 1 1 -1 1 1 1 1 -1 0 1 1 2 -1 -1 -1 -2 1 1 -2 1 1 2 2 -1 2 -1 -2 1 -1 1 -2 1 -1 1 2 -2 2 1 -1 1 0 -1 -1 -1 1 2 -1 -1 1 2 -1 1 2 1 2 -2 2 1 -1 -1 -2 1 1 1 2 -1 -1 -2 1 -2 1 2 2 -1 1 -2 -1 1 1 -2 -1 1 2 1 -1 -2 2 1 2 0 -1 0 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 1 -1 1 0 0 0 0 1 -1 1 1 -1 1 0 2 -2 2 -2 2 1 -1 1 -1 1 -1 1 1 -1 1 2 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 0 0 1 0 -1 0 1 0 0 0 -1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 1 0 0 1 0 0 0 0 0 0 -1 0 1 1 1 0 1 1 1 0 0 0 -1 -1 -1 2 1 1 -2 -1 -1 -1 2 1 1 2 1 1 -2 -2 -1 0 2 1 -1 -1 -1 -2 2 2 2 1 1 1 -1 -1 -1 0 0 -1 1 1 1 0 0 0 0 1 1 1 -1 -1 -1 0 -1 -1 2 1 1 -1 2 1 1 2 1 1 -2 -2 -1 0 0 0 0 0 0 -1 1 1 1 1 1 1 -1 -1 -1 0 0 0 0 0 0 0 1 1 0 0 0 0 -1 0 0 0 1 1 -1 0 1 -1 1 0 -1 1 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 -1 0 0 0 1 1 -1 -1 0 -1 1 1 0 1 1 0 -1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 -1 0 0 1 1 -1 1 0 -1 1 -1 0 1 -1 0 1 0 0 0 1 0 -1 0 0 0 1 0 0 0 0 0 0 0 0 2 2 1 -1 1 1 -2 2 -2 -2 1 -1 -1 1 1 -1 0 2 2 -2 2 2 -1 1 -1 -1 1 -1 -1 1 1 -1 0 1 1 -2 1 1 -1 2 -1 -1 2 -1 -1 2 2 -1 0 1 1 -2 1 -1 -1 2 -1 1 2 -1 1 2 -2 1 0 1 0 -1 1 -1 0 1 -1 1 0 0 0 1 -1 1 0 1 1 -1 0 -1 -1 1 0 1 1 0 1 0 -1 0 2 0 0 -1 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 1 -1 1 -1 0 0 0 0 1 -1 1 1 -1 1 0 2 2 -2 2 -2 -1 1 -1 1 1 -1 1 1 -1 1 2 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 0 0 1 -1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 -1 0 2 1 1 1 1 0 -1 -1 -1 0 -1 -1 0 -1 0 0 2 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 1 0 0 0 0 0 1 0 -1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 -1 1 0 0 0 0 0 0 0 0 0 1 2 -1 -1 -1 -1 2 -1 -1 -1 2 -1 -1 2 -1 2 2 6 -1 -1 -1 -2 1 -1 -1 -2 1 -1 -2 1 -2 1 2 2 0 -1 -1 -1 1 0 0 0 0 -1 -1 1 -1 1 1 2 -1 -1 0 -1 1 -1 0 -1 1 0 -1 1 0 0 1 2 -1 0 -1 -1 1 0 -1 -1 1 0 0 0 -1 1 1 2 0 0 0 0 0 -1 -1 -1 1 -1 -1 1 -1 1 1 2 1 1 1 2 -1 -1 -1 -2 1 -1 -2 1 -2 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 1 1 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 1 0 2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 1 0 0 1 0 0 -1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 -1 0 0 1 0 0 1 0 0 0 2 1 2 1 1 -1 -2 -1 -1 1 -2 -2 2 -1 1 1 0 1 1 0 1 -1 -1 0 -1 1 0 -1 1 0 0 1 0 2 1 -1 1 -1 -2 2 -2 2 1 -1 1 1 -1 1 0 1 2 -1 1 -1 -2 1 -1 1 2 -2 2 1 -1 1 0 1 1 1 0 -1 -1 -1 0 1 -1 0 1 0 1 0 0 2 1 1 -1 -1 -2 -2 2 2 -1 1 1 1 1 -1 0 1 1 1 -1 -2 -1 -1 1 2 -1 1 2 1 2 -2 0 1 2 1 -1 -1 -2 -1 1 1 -2 2 2 1 1 -1 0 1 1 -1 1 -2 -1 1 -1 2 1 -1 2 1 -2 2 0 -2 -1 1 1 1 -2 2 2 2 1 1 1 -1 -1 -1 0 -1 -1 1 0 1 -1 1 0 1 1 0 1 0 -1 0 0 -1 -2 1 1 1 -2 1 1 1 2 2 2 -1 -1 -1 0 -1 -1 1 1 2 -1 1 1 2 1 1 2 -1 -2 -2 0 -1 -1 1 -1 2 -1 1 -1 2 1 -1 2 1 -2 2 0 1 1 -2 -1 1 -1 2 1 -1 2 1 -1 -2 2 1 0 1 0 -1 -1 1 0 1 1 -1 0 0 0 -1 1 1 2 0 0 -1 -1 0 0 0 0 0 0 0 0 -1 0 0 0 0 1 -1 -1 1 0 0 0 0 1 1 -1 -1 1 1 0 2 2 -2 -2 2 -1 1 1 -1 1 1 -1 -1 1 1 0 0 0 0 0 0 -1 1 -1 1 1 -1 1 1 -1 1 0 1 1 -1 2 -1 -1 1 -2 1 1 -2 1 2 -1 2 6 1 -1 -2 -1 -1 1 2 1 1 -2 -1 -1 -2 -2 -1 2 0 0 0 0 0 -1 0 -1 0 0 -1 0 0 0 0 6 1 1 1 2 1 -1 -1 -2 -1 -1 -2 -1 -2 -1 -2 2 1 1 1 0 1 -1 -1 0 -1 -1 0 -1 0 -1 0 2 0 0 0 0 0 0 -1 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 1 -1 0 0 0 0 0 1 0 -1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 0 0 0 0 0 0 0 1 2 -1 -1 -1 2 -1 -1 -1 2 -1 -1 2 -1 2 -1 2 6 -1 -1 -1 1 -2 -1 -1 1 -2 -1 1 -2 1 -2 2 2 0 -1 -1 1 -1 0 0 0 0 -1 1 -1 1 -1 1 2 -1 -1 0 1 -1 -1 0 1 -1 0 1 -1 0 0 1 2 -1 0 -1 1 -1 0 -1 1 -1 0 0 0 1 -1 1 2 0 0 0 0 0 -1 -1 1 -1 -1 1 -1 1 -1 1 2 1 1 1 -1 2 -1 -1 1 -2 -1 1 -2 1 -2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 1 0 0 0 -1 1 0 0 0 0 0 0 0 0 1 0 0 2 0 0 0 0 0 0 0 0 0 -1 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 1 0 0 -1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 -1 0 1 0 0 1 0 0 0 0 0 1 1 0 -1 1 -1 0 1 -1 0 1 -1 0 0 1 0 2 1 -1 -1 1 -2 2 2 -2 1 1 -1 -1 1 1 2 1 2 1 -1 1 -2 -1 1 -1 -2 2 -2 1 -1 1 0 1 2 -1 -1 1 -2 1 1 -1 2 2 -2 -1 1 1 0 -1 -1 1 1 0 -1 1 1 0 1 1 0 -1 0 0 0 -1 -1 1 2 1 -1 1 2 1 1 2 1 -2 -1 -2 0 -1 -1 1 2 -1 -1 1 2 -1 1 2 -1 -2 1 2 0 0 0 0 0 0 -1 1 1 -1 1 1 -1 -1 1 1 2 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 6 1 1 2 1 1 -1 -2 -1 -1 -2 -1 -1 -2 -2 -1 0 1 -1 1 1 -2 1 -1 -1 2 1 1 -2 -1 2 2 0 -1 1 1 -2 1 1 1 -2 1 -1 2 -1 2 -1 2 6 -1 -1 -2 -1 1 -1 -2 -1 1 -2 -1 1 -2 2 1 2 -1 -1 -1 0 1 -1 -1 0 1 -1 0 1 0 1 0 0 -1 1 1 -1 2 1 1 -1 2 -1 1 -2 1 -2 2 0 1 -1 1 2 -1 1 -1 -2 1 1 2 -1 -2 1 2 0 1 -1 1 -2 1 1 -1 2 -1 1 -2 1 2 -1 2 0 -1 1 1 1 -2 1 1 1 -2 -1 -1 2 -1 2 2 0 -1 1 1 2 -1 1 1 2 -1 -1 -2 1 -2 1 2 6 -1 -1 -2 1 -1 -1 -2 1 -1 -2 1 -1 2 -2 1 2 -1 -1 -1 1 0 -1 -1 1 0 -1 1 0 1 0 0 2 -2 -2 -2 2 2 -1 -1 1 1 -1 1 1 1 1 -1 0 -2 2 -2 2 2 1 -1 1 1 1 -1 -1 1 1 -1 0 -1 0 -1 1 1 0 -1 1 1 0 0 0 1 1 -1 2 -1 -1 -2 1 1 -1 -2 1 1 -2 1 1 2 2 -1 2 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 0 12 -2 -2 -2 -2 -2 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 12 -1 -1 -2 -1 -1 -1 -2 -1 -1 -2 -1 -1 -2 -2 -1 6 -1 1 -2 -1 -1 1 -2 -1 -1 2 1 1 -2 -2 -1 6 -1 0 -1 -1 -1 0 -1 -1 -1 0 0 0 -1 -1 -1 6 -2 1 -1 -1 -1 2 -2 -2 -2 1 1 1 -1 -1 -1 0 1 -1 1 -1 2 1 -1 1 -2 1 -1 2 1 -2 2 0 2 -2 -2 2 2 1 1 -1 -1 -1 1 1 1 1 -1 0 0 -1 -1 1 1 0 0 0 0 -1 1 1 1 1 -1 2 0 -1 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 1 1 -1 -2 1 -1 1 2 -1 1 2 -1 -2 1 2 0 -2 -2 2 2 2 -1 1 1 1 1 1 1 -1 -1 -1 0 -1 -1 0 1 1 -1 0 1 1 0 1 1 0 0 -1 2 -1 -2 -1 1 1 -2 -1 1 1 -2 2 2 1 1 -1 0 1 1 -1 -1 2 -1 1 1 -2 1 1 -2 -1 2 2 6 1 2 1 1 1 -2 -1 -1 -1 -2 -2 -2 -1 -1 -1 6 2 -2 -2 -2 -2 1 1 1 1 -1 -1 -1 -1 -1 -1 6 2 1 1 1 1 -2 -2 -2 -2 -1 -1 -1 -1 -1 -1 6 -2 2 -2 -2 -2 1 -1 -1 -1 1 1 1 -1 -1 -1 6 -2 -2 2 -2 -2 -1 1 -1 -1 1 -1 -1 1 1 -1 2 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 0 12 -1 -2 -1 -1 -1 -2 -1 -1 -1 -2 -2 -2 -1 -1 -1 6 -1 -2 1 -1 -1 -2 1 -1 -1 2 -2 -2 1 1 -1 6 -1 -1 0 -1 -1 -1 0 -1 -1 0 -1 -1 0 0 -1 6 -2 -1 1 -1 -1 -2 2 -2 -2 1 -1 -1 1 1 -1 6 -1 -2 -1 1 -1 -2 -1 1 -1 -2 2 -2 1 -1 1 6 -2 -2 -2 2 -2 -1 -1 1 -1 -1 1 -1 1 -1 1 6 -1 -1 -1 0 -1 -1 -1 0 -1 -1 0 -1 0 -1 0 6 -2 -1 -1 1 -1 -2 -2 2 -2 -1 1 -1 1 -1 1 12 -2 -1 -1 -1 -1 -2 -2 -2 -2 -1 -1 -1 -1 -1 -1 6 -1 -2 -1 -1 1 -2 -1 -1 1 -2 -2 2 -1 1 1 6 -2 -2 -2 -2 2 -1 -1 -1 1 -1 -1 1 -1 1 1 6 -1 -1 -1 -1 0 -1 -1 -1 0 -1 -1 0 -1 0 0 6 -2 -1 -1 -1 1 -2 -2 -2 2 -1 -1 1 -1 1 1 6 0 -1 -1 -1 -1 0 0 0 0 -1 -1 -1 -1 -1 -1 6 1 -2 -1 -1 -1 2 1 1 1 -2 -2 -2 -1 -1 -1 6 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 0 6 1 1 1 1 2 -1 -1 -1 -2 -1 -1 -2 -1 -2 -2 end lrslib-051/ine/metric/mp5.ine0000700000175300010010000000202112423577212015701 0ustar avisなしmp5.ine *metric polytope on 5 points begin 40 11 integer 2 -1 -1 0 0 -1 0 0 0 0 0 0 1 1 0 0 -1 0 0 0 0 0 0 -1 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 -1 0 0 0 0 0 -1 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 -1 0 0 0 0 0 -1 1 0 0 0 0 1 0 0 0 0 1 -1 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 1 0 0 0 1 0 -1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 -1 0 0 0 0 1 1 0 0 0 0 0 -1 0 0 0 1 -1 0 0 0 0 0 1 0 0 0 -1 1 0 0 0 0 0 1 2 0 0 0 0 -1 -1 0 -1 0 0 0 0 0 0 0 1 1 0 -1 0 0 0 0 0 0 0 -1 1 0 1 0 0 0 0 0 0 0 1 -1 0 1 0 0 2 0 0 0 0 -1 0 -1 0 -1 0 0 0 0 0 0 1 0 1 0 -1 0 0 0 0 0 0 -1 0 1 0 1 0 0 0 0 0 0 1 0 -1 0 1 0 2 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 -1 1 0 0 1 0 0 0 0 0 0 1 -1 0 0 1 0 0 0 0 0 0 1 1 0 0 -1 2 0 0 0 0 0 0 0 -1 -1 -1 0 0 0 0 0 0 0 0 1 -1 1 0 0 0 0 0 0 0 0 -1 1 1 0 0 0 0 0 0 0 0 1 1 -1 0 -1 1 0 0 1 0 0 0 0 0 0 1 -1 0 0 1 0 0 0 0 0 2 -1 0 -1 0 0 -1 0 0 0 0 0 1 0 -1 0 0 1 0 0 0 0 2 -1 0 0 -1 0 0 -1 0 0 0 0 1 0 0 -1 0 0 1 0 0 0 2 0 -1 -1 0 0 0 0 -1 0 0 2 0 -1 0 -1 0 0 0 0 -1 0 2 0 0 -1 -1 0 0 0 0 0 -1 end lrslib-051/ine/metric/mp6.ine0000700000175300010010000000540512423577212015713 0ustar avisなしmp6.ine *metric polytope on 6 points begin 80 16 integer 0 1 1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 -1 0 0 0 0 0 0 0 0 -1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 -1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 -1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 -1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 1 -1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 -1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 -1 0 0 0 0 1 0 -1 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 -1 0 0 0 0 0 0 0 0 0 1 2 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 -1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 1 0 0 0 0 0 2 0 0 0 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 -1 0 0 1 0 0 0 0 2 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 -1 0 0 0 0 0 0 0 0 0 1 0 0 -1 0 0 1 0 0 0 2 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 -1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 -1 0 0 2 0 0 0 0 0 0 -1 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 -1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 -1 0 2 0 0 0 0 0 0 0 -1 -1 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 -1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 -1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 -1 2 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 -1 1 0 1 0 0 2 0 0 0 0 0 0 0 0 0 -1 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 -1 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 1 0 1 0 2 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 1 0 0 1 2 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 1 1 2 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 0 1 0 0 0 0 0 0 0 0 0 2 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 0 0 1 0 -1 0 0 0 1 0 0 0 0 0 0 0 0 2 -1 0 0 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 0 -1 0 0 0 1 0 0 0 0 0 0 0 2 -1 0 0 0 -1 0 0 0 -1 0 0 0 0 0 0 0 1 0 0 0 -1 0 0 0 1 0 0 0 0 0 0 2 0 -1 -1 0 0 0 0 0 0 -1 0 0 0 0 0 2 0 -1 0 -1 0 0 0 0 0 0 -1 0 0 0 0 2 0 -1 0 0 -1 0 0 0 0 0 0 -1 0 0 0 2 0 0 -1 -1 0 0 0 0 0 0 0 0 -1 0 0 2 0 0 -1 0 -1 0 0 0 0 0 0 0 0 -1 0 2 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 -1 end lrslib-051/ine/mit/0000700000175300010010000000000012423577212014013 5ustar avisなしlrslib-051/ine/mit/mit.ine0000700000175300010010000005044712423577212015316 0ustar avisなしmit.ine begin 729 9 integer 72 0 0 -4 -4 -2 0 0 0 216 -2 -2 -10 -12 -6 0 0 0 192 -4 -2 -8 -8 -8 0 0 0 288 -12 6 8 -16 -8 0 0 0 96 -4 2 0 -4 -4 0 0 0 144 -5 1 -4 -6 -6 0 0 0 288 -8 -2 -10 -12 -12 0 0 0 96 -4 2 -4 -2 -4 0 0 0 240 -7 -1 -10 -8 -10 0 0 0 288 -8 -2 -12 -8 -12 0 0 0 288 -8 -2 -8 -16 -8 0 0 0 96 -4 2 -8 0 0 0 0 0 0 0 6 -8 4 8 0 0 0 0 4 6 -8 0 8 0 0 0 24 2 2 -4 -2 2 0 0 0 864 -24 -6 -40 -16 -32 0 0 0 24 0 0 -2 -2 2 0 0 0 0 4 10 -16 0 24 0 0 0 0 1 1 -4 0 12 0 0 0 0 0 6 -16 8 40 0 0 0 96 -4 2 -16 16 32 0 0 0 288 -8 -2 -16 0 0 0 0 0 96 -4 2 8 -8 8 0 0 0 288 -8 -2 8 -24 24 0 0 0 0 0 2 -8 8 24 0 0 0 96 -1 -1 -4 -8 8 0 0 0 576 -12 -6 -16 -40 16 0 0 0 192 -4 -2 0 -16 16 0 0 0 576 -8 -6 -24 -32 -16 0 0 0 576 -12 -6 -20 -32 -16 0 0 0 960 -16 -10 -40 -56 -16 0 0 0 160 0 0 -7 -7 -6 -1 0 -1 480 -4 -4 -21 -21 -18 -1 0 -3 192 -4 -4 -12 -4 -8 4 2 -4 640 -16 -8 -28 -28 -24 4 2 -4 640 -8 -6 -28 -28 -24 0 0 -4 192 -8 0 -8 -8 -8 4 2 0 384 -12 -4 -16 -16 -16 4 2 0 960 -20 -12 -42 -42 -36 4 2 -6 240 -9 -1 -11 -9 -10 3 2 -1 0 2 2 4 0 0 -4 -2 0 640 -22 -4 -24 -28 -24 8 4 -4 1920 -60 -20 -76 -84 -72 20 10 -12 1920 -32 -22 -84 -84 -72 4 2 -12 960 -28 -10 -44 -36 -40 8 4 -4 1152 -36 -12 -52 -44 -48 12 6 -4 720 -23 -7 -33 -27 -30 7 4 -3 1920 -48 -24 -88 -72 -80 12 6 -8 3456 -96 -40 -160 -128 -144 28 14 -16 576 -15 -7 -26 -20 -24 4 2 -4 384 -12 -4 -20 -12 -16 4 2 0 336 -11 -3 -17 -11 -14 3 2 -1 192 -8 0 -12 -4 -8 4 2 0 0 0 0 -4 4 0 4 2 0 0 0 2 -8 8 0 8 4 -2 192 -12 12 -28 12 -8 20 10 -4 192 -12 12 -20 4 -8 12 6 -2 1920 -48 -24 -92 -60 -80 12 6 -4 576 -15 -7 -28 -18 -24 4 2 -2 1536 -42 -18 -76 -40 -64 12 6 -8 384 -12 -4 -20 4 -16 4 2 -4 1920 -60 -20 -102 18 -76 14 10 -18 1920 -60 -20 -102 -46 -76 14 10 -2 672 -22 -6 -37 -17 -26 5 4 -1 640 -22 -4 -36 -16 -24 4 4 0 960 -40 0 -64 -16 -32 8 10 0 64 -4 4 -8 0 0 0 2 0 0 0 8 -6 2 4 -2 2 0 0 8 18 -8 0 8 -8 2 0 64 36 60 -28 -4 24 -28 6 -4 192 28 36 -20 -12 8 -20 2 -4 96 4 4 -5 -5 -2 -3 0 -1 64 4 6 -4 -4 0 -4 0 0 96 0 0 -5 -5 -2 -1 0 -1 16 0 0 -1 -1 0 0 0 0 192 -6 0 -8 12 -8 0 0 -4 192 -6 0 -8 -4 -8 0 0 0 960 -30 -8 -48 -20 -40 8 4 -4 960 -32 -8 -52 -20 -40 12 6 -4 960 -32 -8 -52 44 -40 12 6 -20 960 -30 -8 -48 12 -40 8 4 -12 576 -16 -6 -28 -12 -24 4 2 -4 208 -8 0 -8 -8 -8 4 2 -2 160 -7 1 -5 -7 -6 3 2 -1 192 -12 12 0 -8 -8 8 6 0 160 -9 7 -1 -7 -6 5 4 -1 640 -20 -4 -20 -28 -24 4 2 -4 96 -5 3 -2 -4 -4 2 2 0 192 -6 0 -4 -8 -8 0 0 0 480 -18 -2 -17 -21 -18 7 4 -3 528 -19 -3 -20 -22 -20 8 4 -4 960 -30 -4 -32 -36 -40 4 2 -4 1152 -36 -4 -32 -40 -48 0 2 -8 1152 -36 -12 -48 -40 -48 8 6 -8 192 -8 0 -4 -4 -8 4 2 -4 192 -6 0 0 -4 -8 0 0 -4 384 -12 -4 -8 -8 -16 4 2 -8 1920 -48 -24 -48 -40 -80 12 6 -40 384 -16 2 -20 -12 -16 4 4 0 576 -24 0 -32 -16 -24 8 6 0 432 -17 -1 -23 -13 -18 5 4 -1 576 -28 12 -36 -12 -24 12 10 -4 960 -52 36 -92 12 -40 52 26 -12 0 0 4 -14 10 4 6 6 -2 2688 -72 -32 -120 -104 -112 16 10 -8 0 0 8 -20 12 56 -12 2 -4 64 -4 4 -16 8 24 -4 2 0 192 -8 0 -16 0 0 0 2 0 64 8 16 -20 -4 24 -12 2 -4 0 2 4 -4 0 8 -4 0 0 288 -13 3 -12 -10 -12 6 4 -2 336 -14 2 -15 -11 -14 7 4 -3 96 3 1 -8 -6 4 0 0 -2 192 12 0 -20 -12 8 4 2 -4 0 4 8 -6 2 4 -2 2 -2 192 -12 12 -28 28 -8 20 10 -12 0 0 0 -4 16 0 4 2 -6 0 0 0 -4 40 0 4 2 -12 192 -8 0 -12 44 -8 4 2 -12 0 0 2 0 32 0 0 0 -8 192 -12 12 -20 300 -8 12 6 -76 960 -40 0 -64 208 -32 8 10 -56 2112 -72 -16 -120 120 -80 16 14 -48 512 -16 -4 -26 6 -20 2 2 -6 512 -16 -4 -26 -10 -20 2 2 -2 448 -16 0 -24 -8 -16 0 2 0 448 24 8 -68 -20 56 12 6 -20 192 8 2 -24 -8 16 4 2 -8 192 16 0 -36 -4 24 12 6 -12 448 -13 -5 -23 -13 -18 3 2 -1 64 -2 0 -4 0 0 0 0 0 0 2 -2 -4 4 0 4 2 -2 0 0 0 -22 22 4 14 10 0 0 0 0 -22 82 4 14 10 -30 0 0 4 -14 34 4 6 6 -14 480 -21 3 -20 -18 -20 8 6 -2 480 -19 1 -16 -18 -20 4 4 -2 1344 -52 0 -44 -52 -56 12 10 -4 576 -22 0 -12 -24 -24 4 4 0 768 -28 -4 -24 -32 -32 8 6 0 768 -28 -4 40 -32 -32 -8 6 0 576 -22 0 20 -24 -24 -4 4 0 320 -12 0 10 -14 -12 -2 2 -2 160 -7 1 3 -7 -6 1 2 -1 0 2 2 -12 8 16 4 2 -4 0 22 14 -52 16 80 12 6 -16 192 32 16 -68 -4 88 12 6 -20 128 18 10 -36 -8 48 4 2 -8 64 8 8 -20 -4 24 -4 2 -4 0 4 2 -4 4 8 0 0 -4 0 4 8 -14 2 20 -4 2 -2 0 1 7 -11 3 14 -3 2 -1 0 0 8 -12 4 16 -4 2 0 0 4 12 -20 4 32 -8 2 0 0 0 24 -44 20 64 -16 6 0 0 0 4 -10 6 12 -2 2 -2 0 14 22 -44 8 64 -12 6 -8 0 6 10 -18 2 28 -6 2 -2 192 28 36 -52 -12 72 -36 2 -12 96 3 3 -8 -6 4 -4 0 -2 0 1 1 -2 0 4 0 0 0 0 0 12 -10 6 12 -6 2 -2 48 0 0 -3 -3 2 -1 0 -1 192 16 24 -44 -12 72 -28 2 -12 0 4 12 -14 2 20 -8 2 -2 0 1 9 -11 3 14 -5 2 -1 192 32 40 -68 -4 88 -36 6 -20 16 1 1 -3 -1 6 -1 0 -1 64 4 6 -12 -4 24 -8 0 -4 0 4 12 -20 4 40 -12 2 -4 0 0 10 -16 8 24 -8 2 0 192 -12 12 -40 16 32 -8 6 0 0 0 24 -34 14 44 -14 6 -2 64 -4 4 -16 8 16 0 2 0 0 0 8 -20 12 32 0 2 0 0 0 4 -14 10 20 2 2 -2 0 0 2 -2 2 4 -2 0 0 0 0 24 -44 20 72 -20 6 -4 0 0 24 -60 36 104 -4 6 -4 0 6 10 -16 4 24 -8 2 -4 0 1 1 -1 1 2 -1 0 -1 0 6 18 -16 4 24 -12 2 -4 384 0 -2 -20 -20 -8 0 0 -4 384 -12 -4 -12 -20 -8 4 2 -4 640 -16 -8 -20 -36 -8 4 2 -4 960 -20 -12 -32 -56 -8 4 2 -4 96 -1 -1 -4 -6 0 0 0 0 1280 -6 -14 -60 -80 0 -4 2 0 1024 -2 -10 -52 -64 0 -4 2 0 1024 -12 -12 -48 -56 -16 0 2 -8 384 8 -4 -24 -24 0 0 2 0 256 4 -4 -16 -16 0 2 2 0 1024 0 -16 -56 -56 -16 8 6 -8 960 0 -16 -52 -52 -16 12 6 -8 6400 -96 -72 -280 -280 -240 8 6 -40 960 -16 -12 -42 -42 -36 2 2 -6 3840 -48 -40 -168 -168 -144 0 2 -24 4032 -72 -48 -178 -178 -148 10 6 -26 1152 -20 -14 -52 -52 -40 4 2 -8 0 2 -2 0 0 0 2 2 0 192 -6 0 12 -8 -8 -4 0 0 192 -4 -4 -8 -8 -8 4 2 0 6912 -176 -88 -288 -288 -288 40 26 0 1920 -48 -24 -80 -80 -80 10 6 0 576 -12 -10 -24 -24 -24 6 4 0 5760 -168 -64 -264 -216 -240 48 26 -24 960 -48 24 -36 -36 -40 20 18 -4 960 -44 12 -28 -36 -40 12 14 -4 192 -12 12 4 -4 -8 4 6 -4 960 -56 48 -20 -36 -40 28 26 -4 640 -20 0 -4 -28 -24 -2 0 -4 576 -24 0 -28 -12 -24 4 6 -4 0 0 0 4 8 0 -2 0 -4 192 -6 0 -4 12 -8 -4 0 -6 960 -30 0 -32 -12 -40 -8 0 -6 960 -32 0 -36 -20 -40 -4 2 -4 640 -20 0 -28 -4 -24 -4 0 -2 0 0 20 -4 12 8 -12 0 -2 16 0 0 -1 -1 6 -1 0 -1 720 -23 -3 -25 -27 -30 3 2 -3 624 -21 -1 -27 -17 -26 1 2 -1 768 -26 0 -32 -20 -32 0 2 0 1536 -62 0 -80 -44 -64 16 14 0 1344 -42 -12 -64 -44 -56 12 6 -4 2880 -90 -28 -128 -108 -120 28 14 -12 960 -30 0 -12 -32 -40 -6 0 -8 768 -30 0 -24 -28 -32 6 6 -4 576 -24 0 -20 -20 -24 8 6 -4 576 -24 0 -15 -23 -22 9 6 -5 192 -8 0 12 -4 -8 -4 2 -4 0 0 2 -4 4 8 0 0 0 0 0 0 -8 8 8 4 2 0 192 -12 12 -76 76 88 20 10 -12 0 0 6 -28 28 40 8 4 -6 576 -15 -7 -29 -15 -22 3 2 -1 448 -13 -5 -25 -7 -14 3 2 -1 512 -14 -6 -26 -14 -20 4 2 -2 448 -13 -5 -23 -5 -18 3 2 -3 384 -6 -4 -16 -20 -8 0 0 -4 0 6 8 -16 4 40 -4 0 -4 0 8 8 -24 8 48 0 2 -8 96 -1 -1 0 -6 36 -4 0 -6 192 -4 -4 12 -12 72 -4 2 -12 0 0 0 -6 6 4 2 2 0 384 -12 -4 -22 -6 -12 2 2 0 1216 -31 -15 -59 -37 -50 7 4 -3 960 -20 -16 -42 -42 -36 10 6 -6 2304 -72 -20 -112 -64 -96 16 10 -8 1344 -42 -12 -64 -36 -56 8 6 -6 1152 -36 -12 -56 -32 -48 8 6 -4 384 -12 -4 -16 -8 -16 0 2 0 192 -6 0 -4 0 -8 -4 0 0 912 -26 -10 -43 -31 -38 5 4 -1 960 -27 -11 -46 -32 -40 6 4 -2 1344 -39 -15 -66 -44 -56 10 6 -4 4224 -120 -48 -200 -152 -176 32 18 -16 4992 -132 -60 -240 -168 -208 32 18 -16 3456 -96 -40 -168 -104 -144 24 14 -16 2688 -76 -28 -128 -72 -112 16 10 -16 960 -29 -9 -46 -28 -40 6 4 -4 0 2 -2 12 0 0 -4 2 0 960 -20 -20 134 -42 -36 -38 10 -6 1920 -60 -20 148 -84 -72 -36 10 -12 1920 -68 -12 100 -84 -72 -20 14 -12 320 -12 0 -6 -14 -12 2 2 -2 960 -40 0 -26 -42 -36 18 10 -6 576 -12 -8 -22 -30 -12 2 2 -6 576 -12 -10 -8 -24 -24 -2 4 0 2304 -56 -32 -80 -96 -96 8 10 0 960 -20 -20 -38 -42 -36 20 10 -6 192 -6 0 -4 -4 -8 -2 0 -2 0 0 0 1 1 2 -1 0 -1 192 -8 0 -4 28 -8 -4 2 -12 192 -8 0 -4 60 -8 -4 2 -20 0 0 2 -4 4 16 -4 0 0 1792 -28 -20 -80 -88 -48 0 2 -16 384 -3 -3 -18 -20 -8 -2 0 -4 8064 -204 -100 -384 -264 -336 48 26 -24 1920 -48 -24 -88 -56 -80 8 6 -8 384 -12 -4 -16 8 -16 0 2 -8 192 -12 12 -12 -4 -8 4 6 0 192 -12 12 -12 12 -8 4 6 -8 192 -12 12 4 60 -8 -12 6 -28 0 0 0 -8 8 16 0 2 0 192 -4 -2 -4 -4 -8 0 0 -4 192 -4 -4 16 -12 0 -4 2 0 768 -20 -12 40 -48 0 -8 6 0 512 -14 -6 20 -32 0 -4 2 0 64 -2 0 0 -4 0 0 0 0 1344 -60 12 -68 -44 -56 20 18 -4 2112 -92 12 -116 -60 -88 28 26 -4 960 -44 12 -52 -28 -40 12 14 0 1920 -48 -24 -72 -56 -80 8 6 -24 96 -5 3 -4 -2 -4 0 2 0 0 0 2 -8 24 0 8 4 -10 0 4 4 -16 8 112 -16 2 -8 384 -12 -4 -24 0 0 0 2 0 0 2 -2 -4 16 0 4 2 -8 64 -4 4 -20 20 24 4 2 -2 128 -6 2 -20 16 16 4 2 -2 192 -8 0 -20 12 8 4 2 0 96 -4 0 -14 10 8 4 2 -2 448 -20 4 -76 60 56 20 10 -12 192 -4 -2 -4 -12 8 0 0 -4 384 -12 -4 0 -24 16 4 2 -8 192 -8 0 4 -12 8 4 2 -4 192 12 20 -20 -12 8 -12 2 -4 192 12 4 -20 -12 8 -4 2 -4 192 76 20 -84 -12 72 -4 18 -12 64 20 12 -28 -4 24 -4 6 -4 64 20 44 -28 -4 24 -20 6 -4 0 12 36 -22 2 20 -14 6 -2 0 4 10 -8 0 8 -4 2 0 0 4 6 -8 0 8 -2 2 0 0 4 0 -6 2 4 2 2 -2 0 0 4 -6 2 4 0 2 0 192 4 2 -12 -12 0 -4 0 0 0 8 8 -16 0 24 -4 2 0 64 20 4 -28 -4 24 4 6 -4 0 20 4 -24 0 24 4 6 0 0 8 0 -8 0 8 4 2 0 0 5 -1 -6 2 4 4 2 -2 64 24 0 -28 -4 24 12 6 -4 96 46 -10 -42 -6 36 18 14 -6 32 18 -6 -14 -2 12 10 6 -2 192 112 -40 -84 -12 72 76 38 -12 0 6 -2 -4 0 4 4 2 0 0 0 0 0 16 0 0 2 -8 192 -12 12 4 28 -8 4 6 -20 960 -40 0 38 -42 -36 2 10 -6 960 -40 8 -20 -36 -40 4 10 -4 192 -8 2 0 -8 -8 0 2 0 384 -18 6 -4 -16 -16 4 6 0 192 -8 0 8 -8 -8 0 2 0 320 -20 20 10 -14 -12 14 10 -2 576 -8 -6 -20 -36 24 -4 0 -12 96 -1 -1 -4 -6 4 0 0 -2 192 16 -8 -20 -12 8 12 6 -4 960 12 -20 -60 -52 -8 20 10 -12 576 -12 -8 -26 -26 -20 4 2 -4 1920 -48 -24 -68 -100 -40 12 6 -20 640 -16 -8 -32 -16 -24 4 2 0 384 -12 -4 -24 0 -8 4 2 0 192 -8 0 -36 44 24 12 6 -12 192 -8 0 -36 76 24 12 6 -20 128 -6 2 -20 40 16 4 2 -8 64 -4 4 -20 60 24 4 2 -12 0 0 2 -4 20 8 0 0 -4 624 -21 -5 -34 -16 -24 4 4 0 400 -12 -4 -20 -12 -16 2 2 0 192 1 -1 -10 -12 0 -2 0 0 640 -16 -8 -8 -40 48 0 2 -16 1920 -48 -24 -24 -120 80 8 6 -40 96 8 8 -22 -6 36 -10 2 -6 0 8 8 -16 0 32 -8 2 0 2112 -72 -16 -120 -40 -80 16 14 -8 3456 -100 -36 -160 -120 -144 24 14 -16 1152 -36 -12 -59 -27 -46 7 6 -3 1920 -48 -24 -96 -32 -64 8 6 0 640 -16 -8 -32 0 0 0 2 0 240 -2 -2 -11 -15 10 -3 0 -5 960 -20 -12 -32 -56 16 0 2 -16 1920 -48 -24 216 -80 -80 -64 6 0 384 -12 -4 32 -16 -16 -8 2 0 320 -10 0 18 -14 -12 -6 0 -2 192 -6 0 20 -4 -8 -8 0 -4 320 -10 0 -14 18 -12 -2 0 -6 32 -1 1 -4 6 20 -4 0 -2 192 -8 0 -16 32 0 0 2 -8 192 -8 0 -20 28 8 4 2 -4 0 0 0 -8 28 8 4 2 -8 0 0 0 -6 34 4 2 2 -10 384 -12 -4 -22 2 -12 2 2 -2 192 -12 12 28 -12 8 12 6 -4 576 -24 0 -8 -24 -16 8 6 -8 192 -8 0 -2 -10 -4 4 2 -2 768 0 -8 -40 -40 -16 0 2 -8 3840 0 -56 -200 -200 -80 24 18 -40 384 0 -6 -20 -20 -8 4 2 -4 768 -12 -10 -36 -36 -24 4 2 -6 192 -8 0 -20 28 88 -12 2 -4 64 -4 4 -20 52 200 -28 2 -12 0 0 8 -24 72 336 -48 2 -24 0 1 1 -2 4 40 -6 0 -4 0 0 2 -4 12 48 -8 0 -4 1792 -4 -20 -88 -112 0 -8 6 0 768 4 -12 -40 -48 0 0 6 0 192 0 -4 -10 -10 -4 2 2 -2 96 -5 3 1 -5 -2 3 2 -1 96 6 -2 -10 -6 4 2 2 -2 528 9 -11 -35 -29 -2 9 6 -7 480 38 -18 -50 -30 20 22 14 -10 640 12 -12 -40 -40 0 8 6 0 48 -3 3 -14 8 24 -4 2 0 384 2 -6 -20 -24 144 4 2 -24 192 -4 -2 -6 -10 -4 0 0 -2 1344 -24 -16 -56 -72 -16 0 2 -16 2880 -60 -36 -112 -152 -56 12 6 -28 1344 -24 -16 -56 -72 -24 4 2 -12 384 -6 -6 -12 -24 0 0 2 0 64 -4 4 4 -4 0 4 2 0 384 -12 -4 48 -8 -16 -16 2 -8 192 -6 0 12 -4 -8 -6 0 -4 576 -18 0 -23 -3 -22 -5 0 -3 0 0 0 -22 194 4 14 10 -58 64 -4 4 -8 96 0 0 2 -24 0 0 10 -2 154 4 -6 0 -38 384 -12 -4 16 -24 80 0 2 -16 64 -2 0 8 -4 24 0 0 -4 384 -12 -4 48 -24 144 0 2 -24 192 -8 0 4 -12 0 4 2 0 384 -12 -4 16 -24 16 0 2 -8 0 0 6 1 9 2 -5 0 -3 0 0 2 4 16 0 -4 0 -6 1344 -56 8 -60 -44 -56 12 14 -4 192 -4 -2 32 -4 -8 -12 0 -4 1920 -48 -24 296 -40 -80 -104 6 -40 192 -4 -2 24 -8 -8 -8 0 0 960 -20 -10 114 -42 -36 -38 0 -6 640 -16 -8 68 -28 -24 -20 2 -4 0 10 2 -12 0 160 -20 2 0 0 3 -1 -6 4 40 -2 2 -4 0 8 -8 -24 24 80 8 10 -8 0 116 -36 -80 0 80 64 38 0 0 136 -56 -120 40 80 104 58 -40 0 14 -6 -12 4 8 12 6 -4 0 10 -6 -12 8 16 12 6 -8 192 8 -8 -20 -4 88 12 6 -20 960 0 -16 -52 -52 248 12 6 -52 0 0 2 -4 20 80 -12 0 -4 64 -2 0 -4 8 24 -4 0 0 1920 -40 -20 -68 -84 -72 -2 0 -12 576 -12 -6 -19 -23 -22 -1 0 -5 1920 -48 -24 -72 -72 -80 4 6 -8 192 -4 -4 4 -4 -8 -4 2 -4 1920 -68 -12 -60 -84 -72 20 14 -12 0 1 1 -2 4 24 -4 0 -4 0 0 2 -4 12 32 -6 0 -4 64 -4 4 -20 52 72 -12 2 -12 192 -8 0 -20 28 24 -4 2 -4 448 -16 0 -36 28 56 -12 2 -4 288 -8 -4 -2 -18 12 2 2 -6 192 -4 -4 12 -12 8 -4 2 -4 192 -12 12 14 -10 -4 10 6 -2 192 -8 0 36 -12 72 4 2 -12 1344 -24 -16 -36 -84 120 -12 2 -36 960 -20 -12 -20 -60 72 -4 2 -24 640 -16 -8 -20 -36 0 4 2 -8 576 -12 -8 -18 -34 -4 2 2 -2 192 -4 -4 -4 -12 0 4 2 0 192 -4 -4 -6 -10 -4 4 2 -2 192 -4 -4 36 -4 -8 -12 2 -4 192 -4 -4 28 -8 -8 -8 2 0 192 -4 -4 4 -8 -8 -2 2 0 960 -20 -20 22 -42 -36 -10 10 -6 384 -12 -4 16 -8 -16 -8 2 -8 576 -12 -6 0 -16 -24 -10 0 -8 1920 -48 -24 -24 -56 -80 -16 6 -24 1920 -48 -24 72 -40 -80 -48 6 -40 192 -4 -2 8 -4 -8 -6 0 -4 576 -12 -6 -15 -23 -22 -3 0 -5 0 0 0 -8 24 80 -8 2 -8 64 -4 4 -20 20 72 -12 2 -4 192 -8 0 -20 12 24 -4 2 0 192 -6 0 -12 8 8 -4 0 0 0 0 0 -8 24 16 0 2 -8 0 0 2 -4 20 16 -4 0 -4 0 0 2 -4 12 24 -4 0 -4 96 -4 0 -14 10 20 -2 2 -2 64 -4 4 -20 52 40 -4 2 -12 192 -12 12 -60 188 152 -28 6 -36 192 -4 -2 -4 -12 0 0 0 0 0 16 24 -52 12 120 -12 2 -12 0 0 14 -18 6 20 -6 4 0 576 -8 -8 -20 -36 24 -4 2 -12 640 -16 -8 24 -40 48 -8 2 -16 192 -6 0 8 -12 8 0 0 -4 640 -20 -4 16 -40 48 0 2 -16 960 -20 -12 -4 -60 168 -12 2 -36 640 -16 -8 24 -40 176 -8 2 -32 640 -16 -8 56 -40 240 -8 2 -40 960 -20 -12 28 -60 296 -20 2 -52 192 -4 -2 12 -12 72 -4 0 -12 1920 -48 -24 156 -100 -40 -44 6 -20 384 -12 -4 20 -20 -8 -4 2 -4 192 -8 0 6 -10 -4 2 2 -2 0 0 0 8 4 0 -4 0 -2 192 -12 12 4 12 -8 -12 6 -4 192 -8 0 -4 4 -8 -4 2 0 192 -6 0 -4 20 -8 -4 0 -8 0 3 11 -9 1 10 -5 2 -1 576 -12 -6 -16 -16 -24 -2 0 -8 1920 -48 -24 -48 -112 32 8 6 -32 640 -16 -8 -8 -40 16 0 2 -8 1152 -12 -12 -52 -60 -24 -4 2 -12 2880 -60 -36 -112 -152 -48 8 6 -32 0 8 16 -36 12 120 -28 2 -12 0 2 4 -8 4 40 -8 0 -4 0 0 4 -16 16 48 -8 2 -4 0 4 4 -16 8 48 -8 2 -8 128 -6 2 -2 -6 -4 2 2 0 160 -7 1 1 -9 -2 3 2 -1 288 -8 -4 -2 -18 0 2 2 0 768 -20 -12 8 -48 0 0 6 0 0 8 0 0 0 96 -16 2 0 192 4 -4 12 -12 72 -20 2 -12 0 6 -2 12 0 48 -12 2 0 0 12 -4 -8 0 96 -8 6 0 192 16 -16 -12 -12 72 4 14 -12 0 14 -10 -4 0 48 4 10 0 640 -16 -8 32 -40 0 -8 2 0 1920 -48 -24 104 -120 80 -24 6 -40 1920 -48 -24 116 -108 8 -36 6 -28 640 -16 -8 24 -40 16 -8 2 -8 192 -4 -2 12 -12 8 -4 0 -4 192 -4 -2 13 -11 2 -5 0 -3 576 -12 -6 28 -36 16 -12 0 -8 192 -4 -2 12 -12 0 -4 0 0 192 -4 -2 18 -10 -4 -6 0 -2 384 -12 -4 16 -24 0 0 2 0 384 -12 -4 0 -24 0 4 2 0 1920 -48 -24 -56 -56 -80 -8 6 -8 0 20 4 -24 0 288 -40 6 0 0 2 0 4 0 8 -4 0 0 0 10 -6 -4 0 16 4 6 0 0 14 -6 -8 0 8 8 6 0 0 20 -4 -16 0 16 8 6 0 0 8 2 -8 0 8 0 2 0 0 32 0 -32 0 32 8 10 0 48 19 -1 -21 -3 18 5 6 -3 1152 -18 -14 -50 -62 -20 2 2 -10 0 2 -2 -2 2 4 2 2 -2 192 -4 -2 4 -12 40 -4 0 -8 192 -4 -2 4 -12 24 -4 0 -6 128 -3 -1 2 -8 16 -2 0 -4 64 -4 4 -20 20 40 -4 2 -4 192 -12 12 -52 36 104 -20 6 -4 0 0 6 -12 20 40 -8 0 -4 384 -12 -4 -24 32 64 -8 2 0 0 0 0 -6 18 4 2 2 -6 0 0 0 -8 20 8 4 2 -6 0 0 8 -24 40 208 -32 2 -16 0 0 8 -24 40 144 -24 2 -16 0 0 8 -24 40 112 -16 2 -16 192 -8 0 -20 60 152 -20 2 -4 64 -4 4 -20 84 264 -36 2 -12 960 -16 -12 -26 -42 -36 -6 2 -6 960 -20 -12 -34 -42 -36 0 2 -6 960 -20 -16 -18 -42 -36 -2 6 -6 576 -8 -8 -20 -36 88 -4 2 -20 192 132 -60 -84 -12 72 76 58 -12 192 20 -12 -20 -12 8 12 10 -4 96 3 -3 -6 -6 0 2 2 0 768 16 -16 -48 -48 0 8 10 0 96 -1 -1 0 -6 20 -4 0 -4 0 3 5 -10 8 72 -14 0 -8 0 4 12 -32 24 176 -32 2 -16 192 -12 12 -60 60 152 -28 6 -4 192 -12 12 -76 76 184 -28 10 -12 0 0 0 0 48 0 0 2 -16 576 -12 -8 -12 -36 24 0 2 -12 192 -4 -4 -4 -12 8 4 2 -4 0 0 12 -32 32 96 -16 2 -8 0 24 -8 -24 8 16 16 10 -8 0 52 -28 -64 40 80 48 30 -40 192 -12 12 20 156 -8 -28 6 -60 192 -12 12 20 380 -8 -28 6 -116 0 0 2 4 40 0 -4 0 -12 0 0 6 8 24 0 -8 0 -10 0 0 8 -36 28 152 -20 6 -4 32 -2 2 -12 8 32 -4 2 0 0 0 2 4 4 0 -4 0 0 0 0 6 8 8 0 -8 0 -2 0 0 6 1 5 2 -5 0 -1 1024 -16 -12 -48 -48 -32 4 2 -8 1248 -23 -15 -55 -57 -42 3 2 -9 1344 -24 -16 -58 -66 -36 2 2 -12 1056 -21 -13 -45 -51 -30 3 2 -9 960 -20 -12 -40 -48 -24 4 2 -8 0 0 8 -24 24 112 -20 2 -8 0 4 12 -32 24 144 -24 2 -16 0 0 8 -24 24 80 -12 2 -8 0 8 0 -8 24 80 -8 2 -24 0 6 -2 -4 16 48 4 2 -16 0 14 -10 -20 16 48 20 10 -16 0 20 -12 -32 24 80 16 14 -24 0 14 -2 -20 8 16 12 6 -8 0 12 -4 -16 8 16 8 6 -8 0 2 0 0 4 8 0 0 -4 192 4 -4 -12 -4 88 4 2 -20 96 1 -3 -4 -6 36 0 2 -6 192 4 -12 -4 -12 72 12 10 -12 192 -4 -4 22 -10 -4 -6 2 -2 1344 -28 -16 -54 -62 -44 2 2 -10 2688 -36 -28 -120 -144 -32 -8 2 -32 640 -8 -6 -28 -36 0 -4 0 -8 112 -1 -1 -5 -7 2 -1 0 -1 48 2 2 -7 -3 18 -5 0 -3 0 1 1 -2 0 8 -2 0 0 0 12 20 -48 24 240 -48 2 -24 4864 -80 -56 -216 -216 -176 8 6 -32 2304 -32 -24 -104 -104 -80 0 2 -16 1152 -24 -14 -44 -60 -24 4 2 -12 384 -6 -4 -12 -24 24 -4 0 -8 1728 -28 -20 -64 -104 48 -8 2 -32 1344 -24 -16 -36 -84 88 -12 2 -28 192 8 -8 -12 -12 8 4 6 -4 192 48 -32 -28 -12 72 20 30 -12 1920 -48 -24 -44 -108 8 4 6 -28 960 -20 -12 -20 -60 40 -4 2 -16 1344 -28 -16 -28 -84 40 -4 2 -20 768 -14 -8 -20 -48 24 -4 0 -12 2112 -32 -24 -68 -132 152 -20 2 -52 192 -4 -2 -3 -11 2 -1 0 -3 576 -12 -6 -4 -36 16 -4 0 -8 192 -4 -2 4 -12 16 -4 0 -4 1728 -36 -18 -59 -75 -62 -3 0 -13 192 4 -4 -12 -12 0 4 2 0 96 -1 -1 -3 -5 -2 -1 0 -1 192 0 -2 -4 -12 0 -4 0 0 2496 -36 -28 -96 -152 16 -8 2 -16 960 -12 -12 -36 -60 8 -4 2 -4 1920 -18 -26 -76 -120 0 -4 6 0 2688 -42 -34 -116 -144 -48 4 6 -24 864 -17 -11 -37 -43 -22 3 2 -7 2880 -60 -36 -118 -142 -76 10 6 -26 192 -6 0 -10 10 -4 -2 0 -2 192 -6 0 -10 2 -4 -2 0 0 0 0 2 -2 26 4 -2 0 -6 192 -12 12 -40 240 32 -8 6 -56 480 -7 -5 -12 -30 52 -8 0 -14 0 0 4 -16 16 80 -12 2 -4 0 4 6 -12 4 48 -12 0 -4 1152 -36 -12 -60 -20 -40 4 6 -4 0 2 8 -16 12 56 -12 0 -4 0 10 16 -32 12 120 -28 0 -12 96 9 -1 16 -6 36 -20 0 -6 96 1 -1 0 -6 4 -4 0 -2 416 -10 -6 -12 -24 16 4 2 -8 192 -4 -4 6 -10 -4 -2 2 -2 192 -4 -4 8 -12 0 -2 2 0 0 4 -2 -3 1 2 3 2 -1 960 -12 -12 -44 -52 -16 4 2 -8 576 -8 -8 -28 -28 -16 4 2 -4 0 3 5 -9 1 10 -1 2 -1 0 3 7 -9 1 10 -3 2 -1 1792 -16 -24 -88 -88 -48 8 6 -16 864 -15 -11 -39 -41 -26 3 2 -7 672 -11 -9 -31 -33 -18 3 2 -5 960 -16 -12 -42 -50 -20 2 2 -8 3200 -80 -40 -154 -90 -132 18 10 -6 1920 -48 -24 -94 -46 -76 10 6 -2 1056 -12 -12 -50 -58 -4 -2 2 -14 960 -12 -12 -44 -52 -8 4 2 -12 0 0 6 -20 20 56 -8 2 -6 192 8 8 -24 -8 16 -8 2 -8 0 3 1 -2 4 8 -2 0 -4 0 11 1 -2 20 40 -6 0 -20 0 0 18 -3 13 10 -13 0 -3 400 -6 -4 -16 -20 -8 -2 0 -4 3648 -64 -40 -144 -176 -96 -8 2 -32 624 -8 -6 -26 -34 -4 -4 0 -8 576 0 -6 -28 -36 0 -4 2 0 4608 -60 -52 -200 -240 -96 -8 6 -48 1152 -18 -14 -48 -60 -24 0 2 -12 1920 -34 -22 -80 -92 -56 0 2 -16 1728 -36 -22 -74 -82 -52 8 4 -14 1344 -28 -20 -40 -80 96 8 6 -32 576 -12 -8 -12 -36 56 0 2 -16 528 -13 -7 -16 -30 4 4 2 -8 192 -12 12 -48 40 80 -16 6 -8 192 -12 12 -48 200 80 -16 6 -48 0 0 6 -12 52 40 -8 0 -12 0 0 2 -3 21 10 -3 0 -5 256 -8 0 -12 12 -8 -2 0 -4 192 -6 0 -7 13 -6 -3 0 -5 512 -16 0 -24 0 -16 -4 0 -2 512 -14 -6 -4 -32 0 2 2 0 640 -16 -8 -8 -40 0 2 2 0 960 -20 -14 -20 -60 0 2 4 0 960 -20 -12 -4 -60 72 -12 2 -20 960 -20 -12 -4 -60 104 -12 2 -28 192 -12 12 20 36 -8 -28 6 0 0 0 2 -3 5 10 -3 0 -1 192 28 -4 -44 -4 24 20 10 -12 64 8 0 -12 -4 8 4 2 -2 256 14 6 -36 -16 32 4 2 -8 48 4 6 -10 -2 20 -8 0 -4 16 2 4 -4 0 8 -4 0 -2 0 12 36 -28 12 56 -28 2 -12 0 4 4 -8 0 8 0 2 0 64 4 8 -12 -4 8 -4 2 0 448 12 12 -36 -28 8 -12 2 -4 768 -10 -8 -28 -48 8 -4 0 -4 1536 -22 -16 -52 -96 56 -12 0 -28 1792 -16 -16 -88 -88 -48 0 2 -16 384 6 -10 -20 -24 0 4 6 0 2304 -12 -28 -104 -144 0 -8 6 0 3840 -48 -40 -168 -200 -80 -8 2 -40 0 0 8 -6 10 4 -2 2 -4 0 4 8 -6 18 4 -2 2 -10 768 -16 -10 -16 -48 24 -2 2 -12 2304 -56 -32 -32 -144 96 8 10 -48 1792 -48 -24 -16 -112 0 8 10 0 2304 -56 -32 -32 -144 0 8 10 0 192 -6 0 -7 5 -6 -3 0 -3 448 -14 0 -19 1 -14 -5 0 -3 576 -18 0 -24 4 -16 -8 0 -4 2880 -60 -36 -96 -168 -16 8 6 -16 192 -6 0 10 -10 -4 -2 0 -2 256 -8 0 12 -12 -8 -4 0 -2 512 -16 0 0 -24 -16 -2 0 -4 192 -6 0 2 -10 -4 0 0 -2 576 -18 0 4 -24 -16 -4 0 -8 448 -14 0 1 -19 -14 -3 0 -5 576 -18 0 -3 -23 -22 -3 0 -5 192 -6 0 5 -7 -6 -3 0 -3 192 -6 0 13 -7 -6 -5 0 -3 64 -4 4 20 -4 24 4 2 -4 2304 -56 -32 -96 -96 -96 16 10 0 768 -30 0 -32 -28 -32 8 6 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 end *maxdepth 4 *estimates 10 verbose lrslib-051/ine/mit/mit288-281.ine0000700000175300010010000057440712423577212016077 0ustar avisなしmit288.ine digits 1500 begin 288 281 rational 1 -3 0 10 -4 -8 8 4 -4 -4 4 4 2 4 8 -12 -4 4 0 -2 1 0 -8 -4 0 4 -4 0 -8 -16 2 -8 4 4 12 8 2 0 -8 16 0 0 -4 -4 -8 -4 -4 0 24 8 0 -4 -2 8 -2 0 -8 -1 -16 -10 -8 -4 -12 0 24 8 -12 2 4 -4 4 -8 12 0 -8 -8 16 8 0 0 -4 -8 0 0 0 8 0 8 0 0 0 0 -16 -24 10 16 16 -16 0 4 -16 4 16 4 -16 8 16 8 12 -8 -4 -8 0 8 -8 4 -12 0 -8 4 16 4 -24 -6 8 -4 -8 12 8 8 4 8 -16 0 16 0 -16 0 -24 0 8 0 0 4 -16 -8 -4 -8 16 12 8 -16 -16 16 16 8 16 -16 16 -16 8 4 -8 8 0 8 4 0 0 -12 -16 16 -8 -8 4 0 4 0 10 8 4 0 12 -4 4 -24 -6 8 0 8 0 8 24 -8 -4 0 8 4 8 -12 -8 -8 -4 -2 -4 12 -16 0 0 16 -4 -4 -4 8 -4 0 -10 0 -8 -2 -4 0 -12 4 -1 0 -4 0 24 6 -8 -8 -8 -2 0 1 12 0 0 8 -4 -8 4 4 0 -4 -8 2 16 0 0 -16 4 -8 -8 4 -4 0 0 2 4 8 0 8 4 8 4 2 4 -8 -12 -4 -4 -8 -4 8 2 0 -1 -2 1 1 -5 0 12 -2 -4 0 4 -8 0 2 0 4 8 8 -8 0 0 0 -4 -1 -8 -8 -8 8 0 -4 0 0 -8 2 0 0 4 8 0 -2 0 0 4 -4 -8 0 0 -8 0 0 8 8 8 0 0 -2 0 2 0 -8 1 -4 0 0 0 -4 -8 0 0 0 0 0 0 -4 0 0 0 0 -8 8 0 8 4 0 8 0 0 0 0 0 4 4 0 0 0 0 0 0 8 0 8 0 0 0 0 0 0 -8 -8 0 8 4 0 4 0 4 8 0 0 0 -4 4 0 -8 0 -8 0 0 0 -8 0 0 0 0 8 8 0 8 0 0 0 0 0 0 0 0 0 -8 0 -4 8 0 0 -8 -8 0 -8 0 0 -8 0 8 0 -4 0 -4 0 -4 0 0 4 0 0 8 0 0 0 0 0 0 0 0 -8 0 -4 -4 0 0 8 0 -8 0 8 0 0 0 0 0 0 0 4 -8 0 8 0 0 2 0 0 4 -4 0 -8 0 0 0 0 0 -8 0 0 8 -2 0 -8 4 0 -1 8 0 0 -8 0 0 8 -8 4 8 1 -8 -8 0 0 4 0 0 -4 0 0 8 -2 -4 4 0 8 0 0 0 0 8 8 0 2 0 -8 0 0 -8 -4 -4 -4 -2 8 8 0 4 4 2 -8 -4 0 1 4 -1 1 -7 4 14 0 0 -8 4 -12 4 0 -4 -2 4 8 -8 4 -4 0 2 1 0 -8 -4 0 -4 -4 0 24 0 -2 0 4 4 4 -8 -2 0 0 -8 -8 -16 4 4 8 4 4 0 -8 -8 0 -4 2 0 2 0 8 -1 8 2 -8 4 4 0 8 0 -4 -10 -4 -4 4 -8 12 0 8 8 0 8 16 8 4 8 -16 0 0 8 0 0 0 0 0 0 16 -8 -2 0 0 0 0 -4 0 -4 0 -4 -16 -8 -16 -8 -4 -8 -4 -8 0 -8 -4 -4 -12 0 0 -4 16 4 8 6 8 4 8 4 4 8 4 -8 0 0 0 0 0 0 -8 0 8 0 0 -4 0 -8 -4 8 0 4 -8 0 0 0 0 8 0 0 16 16 0 4 0 8 0 4 -4 0 0 -12 -16 -16 -8 -4 -4 0 -4 0 -2 -8 -4 0 -4 4 4 8 6 -8 0 -8 0 0 8 -8 4 0 8 4 -8 -4 8 -8 -4 2 4 12 8 8 0 0 4 4 4 0 -4 16 2 0 8 2 4 0 4 -4 -1 0 -4 -16 -8 -6 8 8 8 2 0 1 4 0 16 -8 -4 0 -4 4 0 4 -8 -2 -8 -8 0 0 -4 8 0 4 -4 -16 0 -2 -4 8 -4 -8 4 0 4 -2 0 -8 -4 4 -4 0 0 8 6 4 -1 -6 1 1 -7 0 18 0 0 0 4 -12 0 0 -12 6 12 0 -12 0 0 12 -6 -3 -24 0 -12 24 0 -4 0 0 -12 6 0 0 12 12 0 -6 0 0 0 0 -24 12 12 -24 12 0 24 0 24 -12 12 -6 0 6 0 0 3 0 6 0 -12 12 -24 0 0 0 6 0 -12 -12 0 -12 0 0 0 12 0 24 0 -12 24 0 -12 4 -12 0 0 0 0 12 0 -24 0 -6 -24 0 24 -4 12 0 -12 -24 -12 0 -24 24 24 -12 0 12 12 0 0 0 -12 12 0 0 12 0 12 0 -6 0 0 -24 0 0 0 -12 0 0 0 0 0 24 -12 0 0 0 0 0 -12 0 0 12 -24 -24 0 0 24 0 -24 0 0 0 24 0 -24 0 -12 0 -12 0 0 12 0 0 12 0 24 12 0 12 4 -12 -4 -6 0 -12 0 -12 0 12 0 -6 24 12 -24 0 0 0 0 12 0 0 -12 24 0 0 0 12 -6 -12 -12 0 0 -12 12 0 -12 12 0 0 24 6 0 0 6 12 24 12 0 3 -24 -12 0 0 6 0 -24 24 -6 -24 -3 12 24 0 0 -4 0 0 12 0 0 0 6 0 0 12 -12 0 0 0 0 -12 -24 0 -6 0 0 0 0 12 0 4 6 0 -12 -12 0 -12 0 0 12 6 0 -1 -6 1 1 -7 0 14 0 4 0 0 -12 -4 0 -4 6 4 0 -4 4 4 -8 -6 -3 -16 0 -4 0 0 0 -8 8 8 2 0 0 0 4 0 -2 -8 0 4 -4 0 4 -12 8 4 0 16 0 0 8 12 -2 0 2 8 0 3 -4 -2 0 12 0 0 0 0 4 -2 12 4 0 0 -4 8 0 0 -8 8 0 4 -4 -8 -8 4 -4 -8 0 4 0 0 -4 0 0 0 2 16 -8 -16 4 -12 8 12 0 -4 8 8 0 -8 0 -8 0 8 0 0 0 -4 4 0 -4 4 -8 -4 0 2 0 -12 0 -4 0 0 -12 0 -8 0 8 0 0 4 0 0 0 0 0 -4 -8 -8 0 0 0 -4 0 -16 8 16 -8 0 8 0 -8 0 4 -12 -4 -8 0 0 4 0 0 4 8 0 8 0 -12 -4 12 4 2 0 -4 0 0 -12 -4 0 2 -8 -4 8 0 0 0 0 4 8 8 0 0 4 0 0 12 -2 -4 -4 -4 4 8 -8 0 12 -12 0 0 0 -2 8 0 2 4 16 0 12 3 0 4 -8 0 -2 0 8 -8 -6 -16 -3 4 0 8 0 0 0 4 0 -8 4 0 2 4 -4 -8 8 0 0 0 0 -4 0 -8 -2 -4 0 0 0 4 -4 0 6 0 -8 -4 -4 0 4 0 8 6 0 -1 -6 1 1 -9 4 20 2 8 -8 0 -16 -4 -2 -16 0 0 -8 -12 4 4 4 0 -1 -8 8 0 8 0 0 0 24 4 2 0 0 8 8 0 -2 0 0 0 0 -8 8 0 0 8 0 8 -8 0 -4 8 -2 0 2 0 8 1 0 4 -8 0 8 -8 8 0 -4 -4 4 0 0 8 0 0 0 8 -4 8 8 0 -8 0 -16 0 0 -4 8 -8 -4 0 0 -8 8 -8 -4 -8 0 -8 0 0 0 0 -8 -8 0 0 8 0 -8 -8 0 -4 -4 -8 -4 -8 0 4 -8 8 0 0 8 4 8 -4 0 4 -4 -8 -8 -8 -16 0 -16 0 -8 0 8 8 -8 0 0 8 16 8 0 0 8 -4 8 8 0 8 0 8 16 8 0 -8 8 8 8 4 4 4 -8 -4 -8 0 0 -8 4 4 0 0 0 0 4 8 8 4 8 4 0 -8 -4 0 0 0 0 0 -8 8 -8 0 -8 0 0 4 -8 -8 -8 2 8 0 0 0 4 4 0 0 0 0 0 -8 -4 0 -8 -2 -8 -8 -8 -4 -1 8 0 16 8 4 0 0 0 0 8 1 -8 -8 -16 0 0 0 -4 -8 0 -4 -8 -2 0 0 -4 -4 0 -8 0 0 0 8 0 2 4 8 4 8 0 8 0 0 2 12 8 4 8 -8 -2 -12 -8 -4 1 8 -1 1 -11 8 26 4 16 -24 -4 -20 -12 -4 -28 -6 -12 -24 -20 4 12 8 6 1 16 24 12 16 4 4 16 40 8 2 8 4 12 12 8 2 16 8 8 8 16 -4 -4 -8 -4 -4 -16 -8 -8 -8 -4 -2 -8 -2 -16 -8 -1 -8 -2 -8 -4 -4 -16 -8 -8 -4 -6 -4 -4 -4 -8 -4 -16 -8 -8 -8 -8 -16 -8 -4 -8 -16 0 0 0 0 0 0 0 0 0 0 8 2 0 0 0 0 4 0 4 0 4 0 8 0 8 4 8 4 0 0 8 0 4 4 0 0 4 0 4 8 2 8 4 8 4 0 8 4 8 0 0 0 0 0 0 8 0 8 0 0 4 0 8 4 8 0 4 8 0 0 0 0 8 0 0 0 0 0 4 0 0 0 0 4 0 0 4 0 0 0 0 4 0 4 0 2 8 4 0 4 4 4 8 2 8 0 8 0 -8 -8 -8 -4 -16 -8 -4 -8 -4 -8 -8 -4 -2 -4 -4 -8 -8 -8 -8 -4 -4 -4 -8 -4 -16 -2 -16 -8 -2 -4 -16 -4 -4 -1 -16 -4 -16 -8 -2 -8 -8 -8 6 16 1 12 16 16 8 4 8 12 12 16 4 24 2 8 8 8 8 4 24 8 4 12 16 16 2 -4 -24 -8 -24 -12 -16 -4 -6 -4 -16 -12 -12 -12 16 4 16 10 8 -1 -10 1 1 -13 12 36 6 24 -48 -8 -32 -24 -6 -48 -12 -24 -48 -36 8 24 24 12 3 48 48 24 48 12 8 48 96 24 6 24 12 24 24 24 6 48 24 24 24 48 -24 -24 -48 -24 -12 -48 -48 -48 -24 -24 -6 -24 -6 -48 -48 -3 -24 -12 -48 -24 -24 -48 -48 -24 -24 -24 -24 -24 -24 -48 -24 -48 -24 -48 -24 -48 -48 -24 -24 -48 -48 12 4 24 24 24 12 48 12 24 48 48 12 48 48 48 4 24 48 24 48 24 48 48 48 48 24 48 24 24 12 48 12 24 24 12 24 24 48 24 48 12 48 24 48 24 12 48 24 48 48 16 48 48 48 -12 -48 -24 -48 -48 -16 -24 -48 -48 -24 -48 -48 -24 -48 -48 -48 -48 -48 -48 -48 -48 -48 -48 -24 -24 -24 -24 -12 -12 -24 -12 -24 -24 -48 -48 -24 -12 -24 -4 -24 -4 -12 -48 -24 -12 -24 -24 -24 -48 -12 -48 -12 -48 -48 24 48 48 24 48 48 24 48 24 48 48 24 6 24 24 24 24 24 24 12 24 24 24 12 48 12 48 48 6 24 48 24 24 3 48 24 48 48 12 24 48 48 -12 -48 -3 -24 -48 -48 -24 -8 -24 -24 -24 -48 -8 -48 -6 -24 -24 -24 -24 -12 -48 -24 -12 -24 -48 -48 -6 8 48 12 48 24 24 8 12 6 24 24 24 24 -24 -6 -24 -12 -12 1 12 -1 1 13 12 36 6 24 48 8 32 24 6 48 12 24 48 36 8 24 24 12 3 48 48 24 48 12 8 48 96 24 6 24 12 24 24 24 6 48 24 24 24 48 24 24 48 24 12 48 48 48 24 24 6 24 6 48 48 3 24 12 48 24 24 48 48 24 24 24 24 24 24 48 24 48 24 48 24 48 48 24 24 48 48 12 4 24 24 24 12 48 12 24 48 48 12 48 48 48 4 24 48 24 48 24 48 48 48 48 24 48 24 24 12 48 12 24 24 12 24 24 48 24 48 12 48 24 48 24 12 48 24 48 48 16 48 48 48 12 48 24 48 48 16 24 48 48 24 48 48 24 48 48 48 48 48 48 48 48 48 48 24 24 24 24 12 12 24 12 24 24 48 48 24 12 24 4 24 4 12 48 24 12 24 24 24 48 12 48 12 48 48 24 48 48 24 48 48 24 48 24 48 48 24 6 24 24 24 24 24 24 12 24 24 24 12 48 12 48 48 6 24 48 24 24 3 48 24 48 48 12 24 48 48 12 48 3 24 48 48 24 8 24 24 24 48 8 48 6 24 24 24 24 12 48 24 12 24 48 48 6 8 48 12 48 24 24 8 12 6 24 24 24 24 24 6 24 12 12 1 12 1 1 11 8 26 4 16 24 4 20 12 4 28 6 12 24 20 4 12 8 6 1 16 24 12 16 4 4 16 40 8 2 8 4 12 12 8 2 16 8 8 8 16 4 4 8 4 4 16 8 8 8 4 2 8 2 16 8 1 8 2 8 4 4 16 8 8 4 6 4 4 4 8 4 16 8 8 8 8 16 8 4 8 16 0 0 0 0 0 0 0 0 0 0 8 2 0 0 0 0 4 0 4 0 4 0 8 0 8 4 8 4 0 0 8 0 4 4 0 0 4 0 4 8 2 8 4 8 4 0 8 4 8 0 0 0 0 0 0 -8 0 -8 0 0 -4 0 -8 -4 -8 0 -4 -8 0 0 0 0 -8 0 0 0 0 0 -4 0 0 0 0 -4 0 0 -4 0 0 0 0 -4 0 -4 0 -2 -8 -4 0 -4 -4 -4 -8 -2 -8 0 -8 0 -8 -8 -8 -4 -16 -8 -4 -8 -4 -8 -8 -4 -2 -4 -4 -8 -8 -8 -8 -4 -4 -4 -8 -4 -16 -2 -16 -8 -2 -4 -16 -4 -4 -1 -16 -4 -16 -8 -2 -8 -8 -8 -6 -16 -1 -12 -16 -16 -8 -4 -8 -12 -12 -16 -4 -24 -2 -8 -8 -8 -8 -4 -24 -8 -4 -12 -16 -16 -2 -4 -24 -8 -24 -12 -16 -4 -6 -4 -16 -12 -12 -12 -16 -4 -16 -10 -8 -1 -10 -1 1 11 12 12 6 24 48 8 -16 24 -6 0 12 24 48 12 -8 -24 24 -12 3 48 -48 -24 48 12 -8 48 0 24 6 24 12 -24 -24 24 6 48 24 24 24 48 24 24 48 24 -12 -48 48 48 -24 24 -6 -24 -6 -48 48 -3 -24 12 48 24 24 -48 48 -24 24 0 24 24 24 48 24 -48 -24 48 -24 48 -48 -24 24 48 -48 12 4 24 24 24 12 48 12 24 48 -48 -12 48 48 48 4 -24 48 -24 48 -24 48 -48 48 -48 -24 -48 -24 24 12 -48 12 -24 -24 12 24 -24 48 -24 -48 -12 -48 -24 -48 -24 12 -48 -24 -48 48 16 48 48 48 -12 48 -24 48 -48 -16 24 -48 48 24 48 -48 24 48 -48 -48 -48 -48 48 -48 -48 -48 -48 -24 24 -24 -24 -12 -12 24 -12 -24 24 -48 -48 -24 -12 24 -4 24 -4 12 48 24 -12 24 24 24 48 12 48 -12 48 -48 24 -48 -48 -24 48 -48 -24 -48 -24 -48 -48 -24 6 -24 -24 24 24 24 24 12 -24 -24 24 12 48 -12 48 -48 6 -24 48 -24 -24 3 48 -24 48 -48 -12 24 -48 -48 12 -48 -3 24 -48 -48 -24 8 -24 24 24 -48 8 48 -6 -24 -24 -24 -24 -12 48 -24 -12 24 -48 -48 -6 -8 -48 12 -48 -24 24 -8 -12 6 24 -24 -24 -24 -24 -6 -24 12 -12 1 -12 -1 1 9 8 16 2 8 16 0 8 0 2 8 8 8 0 16 0 0 -8 8 3 16 0 8 0 -4 0 16 16 -8 2 8 4 0 8 0 2 0 0 -8 -8 0 8 -16 -16 0 -4 16 -16 0 -8 16 2 8 2 16 -16 3 -8 0 0 -16 0 0 0 0 0 4 0 0 0 16 8 0 0 0 -8 0 0 -8 0 -16 0 -4 -4 8 0 8 -4 -32 -4 0 0 0 0 -16 -16 -16 -4 -16 -16 -16 0 0 0 -16 0 -16 0 0 0 8 4 0 8 8 8 -4 8 0 0 0 -16 0 0 0 0 0 8 16 16 -16 0 0 0 -16 0 -4 0 0 0 -16 0 8 0 0 0 0 0 0 0 -16 -16 -16 -16 16 0 0 0 0 8 16 8 8 4 8 0 -4 0 8 0 0 8 8 -16 -4 -16 -4 0 -16 0 -4 0 0 0 -16 0 -16 -4 -16 -32 8 0 0 8 16 0 0 0 0 0 16 16 2 0 8 -8 -8 -8 -8 -4 -16 -16 0 4 0 0 0 -16 2 0 16 0 0 3 0 0 0 -16 0 0 -16 -16 8 16 3 8 0 0 0 0 8 0 0 16 0 0 2 -8 -8 -8 -8 -4 16 0 4 8 0 0 2 0 0 8 16 8 8 0 8 2 8 8 0 0 8 2 8 8 8 1 8 1 1 9 4 20 2 8 8 0 16 4 2 16 0 0 8 12 4 4 4 0 -1 -8 8 0 8 0 0 0 24 4 2 0 0 8 8 0 -2 0 0 0 0 -8 -8 0 0 -8 0 -8 8 0 4 -8 2 0 -2 0 -8 -1 0 -4 8 0 -8 8 -8 0 4 4 -4 0 0 -8 0 0 0 -8 4 -8 -8 0 8 0 16 0 0 -4 8 -8 -4 0 0 -8 8 -8 -4 -8 0 -8 0 0 0 0 -8 -8 0 0 8 0 -8 -8 0 -4 -4 -8 -4 -8 0 4 -8 8 0 0 8 4 8 -4 0 4 -4 -8 -8 -8 -16 0 -16 0 -8 0 -8 -8 8 0 0 -8 -16 -8 0 0 -8 4 -8 -8 0 -8 0 -8 -16 -8 0 8 -8 -8 -8 -4 -4 -4 8 4 8 0 0 8 -4 -4 0 0 0 0 -4 -8 -8 -4 -8 -4 0 8 4 0 0 0 0 0 -8 8 -8 0 -8 0 0 4 -8 -8 -8 2 8 0 0 0 4 4 0 0 0 0 0 -8 -4 0 -8 -2 -8 -8 -8 -4 -1 8 0 16 8 4 0 0 0 0 -8 -1 8 8 16 0 0 0 4 8 0 4 8 2 0 0 4 4 0 8 0 0 0 -8 0 -2 4 8 4 8 0 8 0 0 2 12 8 4 8 8 2 12 8 4 1 8 1 1 9 4 16 6 8 0 0 8 0 6 8 8 0 32 4 0 0 8 8 3 16 32 0 -16 12 0 16 -16 8 -2 -8 -4 0 0 8 -2 -16 8 8 8 -16 0 16 0 -16 12 16 0 0 8 16 -2 -8 -2 16 0 3 8 -8 -32 16 0 -16 -32 8 0 -12 0 -16 0 0 0 -16 8 32 8 0 -16 8 -16 0 -16 -4 4 8 -24 8 -4 16 -4 -24 -16 -32 -8 16 16 16 4 16 16 16 -16 -16 -16 0 -16 0 0 0 0 8 12 32 4 0 0 -4 8 -16 -16 -16 0 -8 -32 0 0 0 4 0 16 0 -16 -16 -16 -16 -16 -4 -32 -24 -32 -16 -16 0 -16 0 0 0 -16 0 32 16 16 16 16 0 -16 -16 -16 -16 8 16 8 8 12 4 -16 -4 -24 0 -16 -16 8 4 16 4 16 4 -8 0 -16 -4 0 0 -16 0 -8 0 -4 0 16 -8 -32 -32 0 16 0 0 0 0 32 0 16 -2 -16 0 8 8 8 8 12 16 16 8 -4 -16 -8 -16 0 -2 -16 16 0 0 3 -16 -16 -16 0 -8 8 0 0 8 16 3 0 -16 -16 8 0 -8 0 0 16 0 32 -2 8 8 8 8 12 0 8 -4 0 -16 -16 -2 0 32 4 0 0 8 0 8 6 8 0 0 0 8 6 8 8 4 1 8 1 1 9 4 16 2 12 8 4 8 8 2 16 0 8 8 4 0 8 0 0 -1 0 8 8 0 0 4 -8 0 0 -2 0 0 4 0 0 2 8 0 4 4 16 0 0 0 8 0 0 -8 -8 0 -8 -2 0 2 -8 8 -1 4 4 -8 0 4 0 8 0 -8 -4 0 0 -4 -8 -8 8 0 -8 0 0 16 4 -8 0 -8 0 0 -8 -8 -4 4 0 0 8 -16 8 4 0 -8 0 0 0 -8 0 0 8 -8 0 -16 0 4 0 -4 -8 -4 -8 -4 0 -8 -4 -4 -8 -8 0 -8 -4 -8 0 -8 -8 -4 -8 -8 8 8 0 8 0 0 0 8 8 -8 0 0 0 8 0 -4 -8 0 -8 -8 0 -8 0 -8 -8 8 0 -8 -16 -4 -8 -4 -8 -4 -4 -8 -4 -8 -8 -8 -16 -8 -4 0 0 0 0 4 8 8 4 4 0 0 -8 -4 0 0 0 0 0 8 -8 0 -8 0 -4 -8 -8 -8 -8 -8 -2 -8 -8 4 4 0 0 0 0 0 0 0 16 4 8 8 2 8 0 4 0 -1 0 0 -8 -8 -4 0 0 0 0 0 -1 0 0 -8 0 4 0 8 4 -8 0 8 -2 4 4 0 0 0 8 0 0 8 16 8 2 0 8 4 8 8 12 4 0 2 8 0 8 4 12 2 8 8 4 1 8 1 1 9 8 6 4 16 24 4 -12 12 -4 -4 6 12 24 4 -4 -12 8 -6 1 16 -24 -12 16 4 -4 16 -8 8 2 8 4 -12 -12 8 2 16 8 8 8 16 4 4 8 4 -4 -16 8 8 -8 4 -2 -8 -2 -16 8 -1 -8 2 8 4 4 -16 8 -8 4 -2 4 4 4 8 4 -16 -8 8 -8 8 -16 -8 4 8 -16 0 0 0 0 0 0 0 0 0 0 -8 -2 0 0 0 0 -4 0 -4 0 -4 0 -8 0 -8 -4 -8 -4 0 0 -8 0 -4 -4 0 0 -4 0 -4 -8 -2 -8 -4 -8 -4 0 -8 -4 -8 0 0 0 0 0 0 -8 0 -8 0 0 -4 0 -8 -4 -8 0 -4 -8 0 0 0 0 -8 0 0 0 0 0 -4 0 0 0 0 -4 0 0 -4 0 0 0 0 -4 0 -4 0 -2 -8 -4 0 -4 -4 -4 -8 -2 -8 0 -8 0 -8 8 8 4 -16 8 4 8 4 8 8 4 -2 4 4 -8 -8 -8 -8 -4 4 4 -8 -4 -16 2 -16 8 -2 4 -16 4 4 -1 -16 4 -16 8 2 -8 8 8 -6 16 1 -12 16 16 8 -4 8 -12 -12 16 -4 -24 2 8 8 8 8 4 -24 8 4 -12 16 16 2 4 24 -8 24 12 -16 4 6 -4 -16 12 12 12 16 4 16 -10 8 -1 10 1 1 7 4 14 0 0 8 -4 12 -4 0 4 2 -4 -8 8 4 -4 0 2 1 0 -8 -4 0 -4 -4 0 24 0 -2 0 4 4 4 -8 -2 0 0 -8 -8 -16 -4 -4 -8 -4 -4 0 8 8 0 4 -2 0 -2 0 -8 1 -8 -2 8 -4 -4 0 -8 0 4 10 4 4 -4 8 -12 0 -8 -8 0 -8 -16 -8 -4 -8 16 0 0 8 0 0 0 0 0 0 16 -8 -2 0 0 0 0 -4 0 -4 0 -4 -16 -8 -16 -8 -4 -8 -4 -8 0 -8 -4 -4 -12 0 0 -4 16 4 8 6 8 4 8 4 4 8 4 -8 0 0 0 0 0 0 8 0 -8 0 0 4 0 8 4 -8 0 -4 8 0 0 0 0 -8 0 0 -16 -16 0 -4 0 -8 0 -4 4 0 0 12 16 16 8 4 4 0 4 0 2 8 4 0 4 -4 -4 -8 -6 8 0 8 0 0 8 -8 4 0 8 4 -8 -4 8 -8 -4 2 4 12 8 8 0 0 4 4 4 0 -4 16 2 0 8 2 4 0 4 -4 -1 0 -4 -16 -8 -6 8 8 8 -2 0 -1 -4 0 -16 8 4 0 4 -4 0 -4 8 2 8 8 0 0 4 -8 0 -4 4 16 0 2 -4 8 -4 -8 4 0 4 -2 0 -8 -4 4 -4 0 0 -8 -6 -4 -1 -6 -1 1 7 8 6 4 0 8 -4 -4 -12 4 -12 10 4 8 12 -4 -12 -8 10 1 16 8 4 -16 4 -4 16 -8 -8 2 8 4 -12 4 8 2 -16 8 -8 -8 -16 12 -4 -8 -4 4 16 -8 -8 -8 -4 2 8 2 16 -8 1 -8 -2 -8 -4 -4 -16 -8 8 -4 2 -4 -4 -4 24 12 -16 8 24 -8 -8 -16 -8 -4 -8 -16 0 0 -16 0 16 0 0 0 0 0 -8 -2 0 0 0 0 -4 0 -4 0 -4 0 -8 0 -8 -4 -8 -4 16 0 24 0 12 12 0 -16 -4 0 -4 -8 -2 -8 -4 -8 -4 0 24 -4 -8 0 0 0 0 0 0 8 0 8 0 0 -12 0 8 4 8 0 4 -24 0 0 0 0 -24 0 0 0 0 -16 4 16 16 0 0 4 0 0 -12 0 0 -16 0 4 0 4 0 2 8 4 0 4 4 4 8 2 8 0 8 0 -8 8 8 -12 -16 8 4 8 4 -24 -24 4 -2 4 -12 8 8 8 8 -4 4 4 -8 -4 16 2 16 8 -2 4 -16 4 4 -1 16 4 16 8 2 -8 8 8 -10 -16 -1 -4 16 16 -8 4 -8 12 12 -16 4 -8 -2 8 8 8 8 -4 -8 -8 -4 -4 16 16 -2 4 -8 -8 -8 -4 0 4 -10 -4 0 -4 12 12 0 -4 0 -6 -8 -1 -6 -1 1 7 4 6 0 8 8 4 -4 4 0 4 2 4 -8 0 -4 4 -8 2 1 0 -8 4 0 -4 4 0 -8 -8 -2 0 4 -4 -4 -8 -2 0 0 0 0 16 -12 -4 -8 -4 -4 0 -8 -8 -8 4 -2 0 -2 0 8 1 0 6 -8 -4 4 0 8 0 -4 2 -4 4 4 8 -4 0 -8 -8 -8 8 16 0 -4 -8 -16 0 0 0 0 -8 0 0 0 0 0 8 6 0 0 0 0 -4 0 -4 -16 -4 0 -8 0 -8 4 8 4 0 0 -8 -4 -12 -4 0 8 -4 0 4 -8 -2 -8 -4 -8 -4 4 8 4 8 -16 0 16 0 16 0 -8 0 8 0 0 12 16 -8 -4 8 16 4 8 0 0 0 0 -8 -16 -16 0 0 8 -4 -8 0 0 -4 4 0 0 4 0 0 0 4 4 0 4 0 -6 -8 4 0 -4 4 -4 8 2 8 0 8 0 0 -8 8 12 0 -8 -4 8 4 8 -8 -4 2 4 4 0 0 8 8 4 4 4 0 -4 -16 -6 0 -8 2 4 0 -4 4 -1 0 -4 16 8 2 8 8 8 -2 0 -1 4 0 16 8 -4 0 -4 4 0 4 8 2 0 0 8 8 4 -8 0 -4 -4 -16 0 2 4 8 -4 -8 -4 -8 -4 -2 0 0 4 -4 4 -8 0 0 -6 -4 -1 -6 -1 1 7 4 10 0 4 0 0 4 0 0 4 2 4 -8 8 0 0 -4 2 1 0 -8 4 0 -4 0 0 0 -4 2 0 -4 0 4 0 2 0 -8 -4 -4 0 4 -4 0 4 -4 0 -8 0 -4 4 2 0 2 0 -8 1 -4 -2 0 -4 0 0 0 -8 0 -6 0 -4 0 -16 4 0 0 -8 -4 0 0 -4 4 0 0 0 0 4 0 -4 0 0 0 0 -8 0 -2 0 0 0 0 -4 0 -4 8 4 8 0 8 0 0 0 0 -4 0 -8 4 4 4 0 4 4 -8 -4 -8 -2 0 0 0 0 -4 -16 4 -8 8 0 -8 0 -8 0 0 0 0 0 0 -4 -8 0 0 0 -8 0 8 0 0 0 0 16 8 8 8 8 4 -4 -4 -4 0 4 -4 0 0 -4 -8 -8 4 -4 4 0 4 0 2 8 -4 0 0 0 4 8 2 0 0 0 0 0 0 0 -4 0 0 0 0 0 8 16 -4 -2 -4 -4 4 4 4 4 4 4 4 8 4 0 2 0 8 -2 -4 0 0 0 -1 0 4 0 8 2 0 0 0 -2 0 -1 -4 0 0 0 0 0 0 0 0 0 8 -2 4 4 4 4 4 0 8 4 -4 0 0 -2 0 8 -4 0 -4 -4 0 -2 0 -4 -4 0 0 -4 0 -4 -6 -4 -1 -6 -1 1 7 8 0 2 8 16 0 -8 0 -2 -8 8 8 0 0 0 0 -8 -8 3 16 0 -8 0 -4 0 16 -16 -8 2 8 4 0 -8 0 2 0 0 -8 -8 0 8 -16 -16 0 4 -16 -16 0 8 16 -2 -8 -2 -16 -16 -3 8 0 0 -16 0 0 0 0 0 -4 0 0 0 16 8 0 0 0 8 0 0 8 0 -16 0 -4 -4 8 0 8 -4 -32 -4 0 0 0 0 -16 -16 -16 -4 16 -16 16 0 0 0 16 0 16 0 0 0 8 4 0 8 -8 -8 -4 8 0 0 0 16 0 0 0 0 0 8 -16 -16 16 0 0 0 -16 0 4 0 0 0 16 0 8 0 0 0 0 0 0 0 16 16 16 16 16 0 0 0 0 -8 16 -8 -8 -4 -8 0 4 0 8 0 0 -8 -8 -16 4 -16 4 0 -16 0 4 0 0 0 -16 0 -16 4 -16 32 8 0 0 -8 16 0 0 0 0 0 -16 -16 2 0 -8 -8 -8 -8 -8 -4 16 16 0 4 0 0 0 16 2 0 16 0 0 3 0 0 0 16 0 0 16 16 8 -16 -3 8 0 0 0 0 -8 0 0 -16 0 0 -2 8 8 8 8 4 16 0 -4 8 0 0 -2 0 0 8 -16 -8 8 0 -8 2 8 -8 0 0 -8 -2 -8 8 -8 1 -8 -1 1 7 0 10 4 4 -8 0 4 0 4 4 2 -4 16 -4 0 0 4 2 1 0 16 -4 -8 4 0 0 -16 4 -2 -8 -4 0 -4 0 -2 -8 0 4 4 -8 -4 4 0 -4 4 0 0 0 4 4 -2 -8 -2 0 0 1 4 -2 -8 4 0 -8 -8 0 0 -6 0 -4 0 -8 -4 -8 0 0 4 0 -8 4 -4 0 -8 0 0 4 0 -4 0 0 0 0 0 -8 -2 0 0 0 0 4 0 4 0 -4 0 0 0 0 0 0 0 -4 0 0 0 -4 -4 0 4 -4 0 -4 0 -2 -8 0 0 0 0 -8 4 0 0 0 0 0 0 0 8 0 8 0 0 4 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 4 -4 -4 -4 0 0 4 0 0 4 0 0 4 0 -4 0 -4 0 2 0 4 0 0 0 4 0 2 0 0 0 0 8 8 8 4 0 0 0 0 0 0 8 -4 2 4 4 -4 -4 -4 -4 -4 -4 -4 0 4 8 2 8 0 2 4 0 0 0 -1 8 4 8 0 2 0 0 0 -2 0 -1 4 8 8 0 0 8 0 0 0 0 -16 2 -4 -4 -4 -4 -4 8 0 4 4 8 8 2 0 -16 0 8 4 -4 0 -2 -4 -4 4 0 0 -4 -4 -4 -6 0 -1 -6 -1 1 7 0 18 0 0 0 -4 12 0 0 12 -6 -12 0 12 0 0 12 -6 -3 -24 0 -12 24 0 -4 0 0 -12 6 0 0 12 12 0 -6 0 0 0 0 -24 -12 -12 24 -12 0 -24 0 -24 12 -12 6 0 -6 0 0 -3 0 -6 0 12 -12 24 0 0 0 -6 0 12 12 0 12 0 0 0 -12 0 -24 0 12 -24 0 -12 4 -12 0 0 0 0 12 0 -24 0 -6 -24 0 24 -4 12 0 -12 -24 -12 0 -24 24 24 -12 0 12 12 0 0 0 -12 12 0 0 12 0 12 0 -6 0 0 -24 0 0 0 -12 0 0 0 0 0 24 12 0 0 0 0 0 12 0 0 -12 24 24 0 0 -24 0 24 0 0 0 -24 0 24 0 12 0 12 0 0 -12 0 0 -12 0 -24 -12 0 -12 -4 12 4 6 0 12 0 12 0 -12 0 6 -24 -12 24 0 0 0 0 12 0 0 -12 24 0 0 0 12 -6 -12 -12 0 0 -12 12 0 -12 12 0 0 24 6 0 0 6 12 24 12 0 3 -24 -12 0 0 6 0 -24 24 6 24 3 -12 -24 0 0 4 0 0 -12 0 0 0 -6 0 0 -12 12 0 0 0 0 12 24 0 6 0 0 0 0 12 0 4 6 0 -12 -12 0 -12 0 0 -12 -6 0 -1 -6 -1 1 7 0 14 0 4 0 0 12 4 0 4 -6 -4 0 4 4 4 -8 -6 -3 -16 0 -4 0 0 0 -8 8 8 2 0 0 0 4 0 -2 -8 0 4 -4 0 -4 12 -8 -4 0 -16 0 0 -8 -12 2 0 -2 -8 0 -3 4 2 0 -12 0 0 0 0 -4 2 -12 -4 0 0 4 -8 0 0 8 -8 0 -4 4 8 8 4 -4 -8 0 4 0 0 -4 0 0 0 2 16 -8 -16 4 -12 8 12 0 -4 8 8 0 -8 0 -8 0 8 0 0 0 -4 4 0 -4 4 -8 -4 0 2 0 -12 0 -4 0 0 -12 0 -8 0 8 0 0 -4 0 0 0 0 0 4 8 8 0 0 0 4 0 16 -8 -16 8 0 -8 0 8 0 -4 12 4 8 0 0 -4 0 0 -4 -8 0 -8 0 12 4 -12 -4 -2 0 4 0 0 12 4 0 -2 8 4 -8 0 0 0 0 4 8 8 0 0 4 0 0 12 -2 -4 -4 -4 4 8 -8 0 12 -12 0 0 0 -2 8 0 2 4 16 0 12 3 0 4 -8 0 -2 0 8 -8 6 16 3 -4 0 -8 0 0 0 -4 0 8 -4 0 -2 -4 4 8 -8 0 0 0 0 4 0 8 2 -4 0 0 0 4 -4 0 6 0 -8 -4 -4 0 -4 0 -8 -6 0 -1 -6 -1 1 7 0 10 0 8 0 4 4 0 0 12 -6 4 0 -4 0 0 4 -6 -3 -8 0 4 -8 0 4 -16 0 -4 -2 0 0 4 -4 0 2 0 0 -8 8 8 4 -12 -8 4 0 -8 0 -8 4 -12 -2 0 2 -16 0 -3 -8 2 0 12 -4 -8 0 0 0 2 0 -4 -12 0 -4 0 0 0 -4 0 8 8 -4 8 0 4 4 -4 0 8 0 0 -4 0 8 0 2 -8 16 8 -4 12 -16 -12 8 4 0 8 -8 -8 -4 0 -12 4 0 0 0 4 -4 0 -8 -4 0 -4 0 2 0 0 -8 0 0 0 -12 0 0 0 0 0 -8 -4 0 0 0 0 0 -4 0 0 12 8 -8 0 0 -8 16 8 -16 0 0 8 0 -8 -8 12 8 4 0 0 4 0 0 4 0 8 -4 0 -12 -4 12 4 -2 0 -4 0 4 0 4 0 -2 8 4 -8 0 0 0 0 -4 16 0 12 8 0 0 0 12 2 4 4 8 -8 -4 4 0 -12 12 0 0 -8 -2 0 0 -2 -4 8 4 0 3 8 4 0 0 -2 0 8 -8 6 8 3 4 8 0 0 -4 0 0 -4 16 0 0 2 8 -8 -4 4 0 0 0 0 -4 -8 0 -2 0 0 0 0 -4 -8 -4 6 0 -4 4 0 -4 -8 0 -4 -6 0 -1 -6 -1 1 7 4 4 2 8 8 0 -8 4 -2 0 0 0 8 4 -4 -4 4 0 -1 -8 -8 0 8 0 0 0 8 4 2 0 0 -8 -8 0 -2 0 0 0 0 -8 -8 0 0 -8 0 8 8 0 -4 -8 -2 0 2 0 -8 1 0 -4 8 0 -8 -8 -8 0 4 4 -4 0 0 -8 0 0 0 -8 -4 -8 8 0 8 0 -16 0 0 -4 8 -8 -4 0 0 -8 8 8 4 -8 0 -8 0 0 0 0 -8 8 0 0 8 0 8 8 0 -4 -4 8 -4 8 0 4 -8 -8 0 0 -8 -4 -8 4 0 -4 -4 8 8 8 -16 0 -16 0 -8 0 -8 8 8 0 0 -8 16 -8 0 0 8 4 -8 8 0 8 0 -8 16 8 0 -8 8 -8 8 4 4 4 8 -4 -8 0 0 -8 4 4 0 0 0 0 -4 -8 -8 4 -8 -4 0 8 4 0 0 0 0 0 8 -8 8 0 8 0 0 -4 8 8 8 2 -8 0 0 0 4 4 0 0 0 0 0 -8 4 0 8 -2 8 -8 8 4 -1 8 0 16 -8 -4 0 0 0 0 8 1 8 -8 -16 0 0 0 4 8 0 4 8 -2 0 0 -4 -4 0 8 0 0 0 8 0 2 -4 -8 4 -8 0 8 0 0 2 12 -8 -4 -8 -8 -2 -12 8 -4 1 -8 -1 1 7 4 0 6 8 0 0 -8 0 -6 -8 8 0 32 -4 0 0 8 -8 3 16 -32 0 -16 12 0 16 -16 8 -2 -8 -4 0 0 8 -2 -16 8 8 8 -16 0 16 0 -16 -12 -16 0 0 -8 16 2 8 2 -16 0 -3 -8 -8 -32 16 0 16 -32 -8 0 -4 0 -16 0 0 0 16 -8 32 -8 0 16 -8 -16 0 16 -4 4 8 -24 8 -4 16 -4 -24 -16 32 8 16 16 16 4 -16 16 -16 -16 16 -16 0 -16 0 0 0 0 8 12 -32 4 0 0 -4 8 16 -16 16 0 8 32 0 0 0 4 0 -16 0 -16 -16 -16 -16 -16 4 -32 24 -32 16 16 0 16 0 0 0 16 0 32 -16 -16 -16 -16 0 16 16 16 16 -8 16 -8 -8 -12 -4 -16 4 24 0 16 16 -8 -4 16 -4 16 -4 -8 0 -16 4 0 0 -16 0 -8 0 4 0 -16 -8 32 32 0 16 0 0 0 0 -32 0 -16 -2 16 0 8 8 8 8 12 -16 -16 8 -4 -16 8 -16 0 -2 16 16 0 0 3 -16 16 -16 0 8 8 0 0 8 -16 -3 0 16 16 -8 0 8 0 0 -16 0 32 2 -8 -8 -8 -8 -12 0 -8 4 0 16 16 2 0 -32 4 0 0 8 0 -8 6 8 0 0 0 -8 -6 -8 8 -4 1 -8 -1 1 7 0 6 0 12 0 0 -4 12 0 12 -6 12 0 -12 -4 12 0 -6 -3 0 0 12 0 0 0 -24 -24 0 -6 0 0 0 -12 0 6 24 0 12 -12 0 12 12 24 12 0 0 0 0 0 -12 -6 0 6 -24 0 -3 12 -6 0 -12 0 0 0 0 -12 -6 12 12 0 0 -12 24 0 0 0 -24 0 -12 -12 -24 -24 -12 -4 0 0 12 0 0 12 0 0 0 -6 0 -24 0 4 -12 24 12 0 12 -24 -24 0 24 0 -24 0 0 0 0 0 12 -12 0 -12 -12 24 12 0 -6 0 12 0 -12 0 0 -12 0 24 0 -24 0 0 12 0 0 0 0 0 -12 -24 24 0 0 0 12 0 0 -24 0 24 0 24 0 -24 0 -12 12 12 0 0 0 12 0 0 12 24 0 0 0 12 4 -12 -4 6 0 -12 0 0 -12 -12 0 6 -24 -12 24 0 0 0 0 -12 24 24 0 0 12 0 0 12 6 12 12 -12 12 0 0 0 12 -12 0 0 0 6 -24 0 -6 -12 0 0 -12 3 0 -12 24 0 6 0 -24 24 6 0 3 12 0 24 0 0 0 -12 0 24 4 0 6 -12 12 0 0 0 0 0 0 -12 0 -24 -6 4 0 0 0 -12 -12 0 6 0 0 12 -12 0 -12 0 0 -6 0 -1 -6 -1 1 7 4 0 2 12 8 4 -8 8 -2 -8 0 8 8 -4 0 -8 0 0 -1 0 -8 -8 0 0 -4 -8 -16 0 -2 0 0 -4 0 0 2 8 0 4 4 16 0 0 0 8 0 0 -8 -8 0 -8 2 0 -2 8 8 1 -4 4 -8 0 4 0 8 0 -8 -4 0 0 -4 -8 -8 -8 0 -8 0 0 -16 -4 -8 0 8 0 0 -8 -8 -4 4 0 0 8 -16 -8 -4 0 -8 0 0 0 -8 0 0 -8 -8 0 -16 0 -4 0 4 -8 -4 8 -4 0 8 -4 -4 8 -8 0 8 4 8 0 8 8 -4 8 8 -8 8 0 8 0 0 0 8 -8 -8 0 0 0 -8 0 -4 -8 0 -8 -8 0 8 0 8 -8 -8 0 8 16 4 -8 4 8 4 4 -8 4 8 -8 8 16 8 4 0 0 0 0 4 8 8 -4 4 0 0 -8 -4 0 0 0 0 0 -8 8 0 -8 0 4 8 8 8 8 8 -2 8 8 4 4 0 0 0 0 0 0 0 16 -4 8 -8 2 -8 0 -4 0 -1 0 0 -8 8 4 0 0 0 0 0 1 0 0 8 0 4 0 8 4 8 0 8 2 -4 -4 0 0 0 8 0 0 8 -16 -8 -2 0 -8 4 -8 -8 12 -4 0 2 8 0 -8 -4 -12 -2 -8 8 -4 1 -8 -1 1 5 4 12 -2 -8 16 -8 16 -8 -2 0 4 -8 -16 -4 8 -8 8 4 3 16 -16 -8 -16 -4 -8 -16 32 8 -2 -8 12 8 -8 -24 -2 16 8 -8 -8 -16 -8 8 -16 8 -4 16 16 16 8 8 -2 -8 -2 -16 16 3 -8 4 -16 8 8 -16 -16 8 -8 16 24 8 -24 16 -8 16 -24 -16 8 -16 -16 -8 8 -16 16 -4 4 8 8 -8 12 16 -4 8 -16 -16 4 16 -16 16 4 8 -16 8 -16 8 16 -16 -16 -16 8 -16 -24 8 -4 -16 4 -8 -8 12 -8 8 16 8 16 4 -16 24 16 -8 4 16 8 16 16 -16 16 -16 -16 -4 -16 8 -16 -16 -16 -8 16 -16 -24 16 -16 -8 -16 16 -16 16 -16 16 16 -16 16 -16 -8 8 -8 8 -4 4 8 12 8 -8 16 -16 8 4 8 4 8 4 4 16 8 12 8 24 8 16 4 -16 -4 -16 16 -8 -16 -16 -8 -16 -16 -24 16 -8 -16 16 8 -2 8 -8 -8 -8 8 8 -4 8 8 8 12 -16 4 16 16 -2 8 16 8 24 3 -16 8 16 16 4 -24 -16 -16 4 16 3 -8 -16 16 -24 -8 -8 -8 8 -16 8 -16 -2 -8 -8 8 8 -4 16 8 12 -8 -16 16 -2 8 -16 4 16 -8 -8 -8 4 -2 8 -8 -8 8 -8 -2 8 4 4 1 4 1 1 5 4 4 2 -4 0 -4 0 -8 2 -8 4 0 0 4 0 -8 0 4 -1 0 0 0 -8 0 -4 8 0 0 -2 0 0 -4 0 0 2 0 0 -4 -4 -8 0 0 0 8 0 0 0 8 0 -8 -2 0 2 8 0 -1 -4 0 0 0 -4 -8 0 0 8 0 0 0 4 0 0 0 0 0 0 0 -8 -4 -8 0 0 0 0 0 -8 -4 4 0 0 8 8 0 0 0 8 0 0 0 8 0 8 8 0 0 8 0 -4 0 4 0 -4 0 -4 0 0 -4 -4 -8 0 0 0 0 0 0 8 8 -4 0 -8 0 0 0 0 0 8 0 0 8 0 0 0 0 0 0 4 8 8 8 0 0 8 0 8 0 0 8 0 8 -4 -8 -4 0 -4 -4 -8 -4 -8 0 0 8 0 -4 0 0 0 0 0 0 8 4 -4 0 0 0 0 0 0 0 0 0 0 0 0 8 0 4 8 8 0 0 -8 -2 -8 0 -4 -4 0 0 0 0 0 0 0 -8 0 0 0 2 8 0 -4 0 -1 -8 0 0 0 0 0 0 0 4 0 -1 0 -8 0 0 -4 0 -8 -4 8 0 0 -2 -4 -4 0 0 0 0 0 0 0 -8 0 2 0 0 4 0 0 -4 -4 4 2 0 0 -8 -4 -4 2 0 4 4 1 4 1 1 5 4 4 -2 0 0 0 0 0 -2 0 4 0 -16 4 0 0 0 4 3 0 -16 0 0 -4 0 0 0 0 -2 8 -4 0 0 -8 -2 0 -8 0 0 0 0 8 0 -8 -4 0 0 0 0 8 -2 8 -2 0 0 3 0 -4 16 8 0 0 16 -8 0 -8 0 -8 0 0 0 0 -8 -16 0 0 0 0 -8 0 0 -4 4 0 -8 0 -4 16 -4 -8 0 16 -4 0 0 0 4 8 0 8 0 -8 0 0 0 0 0 0 0 0 -4 -16 4 0 0 -4 0 -8 0 -8 0 -4 16 0 0 0 4 0 8 0 0 16 0 16 0 -4 16 -8 16 16 16 0 0 0 0 0 0 0 -16 0 0 0 0 0 0 0 0 0 0 8 0 0 -4 4 -8 -4 -8 0 0 0 0 4 8 4 8 4 -4 0 -8 -4 0 0 -8 0 -4 0 -4 0 16 8 16 16 0 0 0 0 0 0 -16 0 8 -2 -8 0 0 0 0 0 -4 8 8 -8 -4 0 -4 0 0 -2 -8 0 0 0 3 0 -8 0 0 -4 -8 0 0 4 0 3 0 0 0 -8 0 8 0 0 0 0 -16 -2 0 0 0 0 -4 0 -8 -4 0 0 0 -2 0 -16 4 0 0 0 0 4 -2 0 0 0 0 0 -2 0 4 4 1 4 1 1 5 0 4 2 0 0 0 0 0 2 0 4 -8 0 -8 0 0 0 4 3 0 0 -8 0 -4 0 0 0 0 -6 -8 4 0 -8 0 -6 0 0 0 0 0 -8 -8 16 -8 -4 0 0 0 0 8 -6 -8 -6 0 0 3 0 4 0 -8 0 0 0 0 0 8 0 8 0 0 -8 0 0 0 0 0 0 0 -8 16 0 12 -4 0 0 0 -4 0 12 0 0 0 4 0 0 0 -4 -8 0 -8 0 -8 0 16 0 16 0 0 0 0 4 0 0 -8 -8 -4 0 -8 0 8 0 4 0 0 0 0 0 0 8 0 0 0 0 16 0 12 0 0 0 16 0 -8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 4 0 -8 -4 0 -8 0 0 0 0 -8 -4 -8 -4 4 0 -8 -4 0 0 8 0 4 16 12 16 0 -8 0 0 -8 0 0 0 0 0 0 0 8 -6 -8 -8 0 0 0 0 -4 -8 -8 0 4 0 4 0 0 -6 -8 0 0 0 3 0 8 0 0 4 0 16 16 4 0 3 -8 0 0 0 0 -8 0 0 0 0 0 -6 0 0 0 0 -4 0 0 4 -8 0 0 -6 0 0 0 0 -8 0 0 4 2 0 -8 0 0 0 2 0 4 0 1 4 1 1 5 0 12 -2 -4 0 -4 8 0 -2 0 -4 -8 -8 8 0 0 0 -4 -1 -8 -8 -8 8 0 -4 0 0 -8 2 0 0 4 8 0 -2 0 0 4 -4 -8 0 0 8 0 0 -8 -8 -8 0 0 2 0 -2 0 8 -1 4 0 0 0 4 8 0 0 0 0 0 0 4 0 0 0 0 8 -8 0 -8 -4 0 -8 0 0 0 0 0 4 4 0 0 0 0 0 0 8 0 8 0 0 0 0 0 0 -8 -8 0 8 4 0 4 0 4 8 0 0 0 -4 4 0 -8 0 -8 0 0 0 -8 0 0 0 0 8 8 0 8 0 0 0 0 0 0 0 0 0 8 0 4 -8 0 0 8 8 0 8 0 0 8 0 -8 0 4 0 4 0 4 0 0 -4 0 0 -8 0 0 0 0 0 0 0 0 8 0 4 4 0 0 -8 0 8 0 -8 0 0 0 0 0 0 0 4 -8 0 8 0 0 2 0 0 4 -4 0 -8 0 0 0 0 0 -8 0 0 8 -2 0 -8 4 0 -1 8 0 0 -8 0 0 8 -8 -4 -8 -1 8 8 0 0 -4 0 0 4 0 0 -8 2 4 -4 0 -8 0 0 0 0 -8 -8 0 -2 0 -8 0 0 -8 -4 -4 -4 -2 8 8 0 4 -4 -2 8 4 0 1 4 1 1 5 0 8 -2 0 0 0 8 -4 -2 0 -4 0 -8 0 4 -4 -4 -4 -1 0 -8 0 0 0 0 -8 8 4 -2 0 0 0 0 0 2 -8 0 -8 0 0 8 0 -8 0 0 0 8 0 -4 0 -2 0 2 -8 -8 -1 -8 0 0 0 0 0 0 0 -4 0 -4 0 0 0 -8 -8 0 8 4 8 0 0 0 8 8 0 0 -4 0 8 -4 0 0 0 -8 0 0 0 8 0 0 0 8 0 8 0 0 8 -8 -8 0 8 0 -4 4 8 0 8 -8 4 8 0 0 0 8 0 0 -4 0 -4 0 0 0 -8 0 0 0 0 8 0 0 0 0 0 0 8 0 8 0 0 8 -4 8 0 8 0 8 0 0 8 0 -8 8 0 8 -4 4 0 0 4 0 -8 0 -8 -4 0 0 0 0 0 0 -8 0 -4 0 -4 0 8 0 -8 0 8 0 0 0 0 8 -8 8 0 0 -4 8 0 0 -2 0 -8 -8 0 -4 4 0 0 0 0 0 0 0 -8 -8 2 0 0 0 -4 -1 0 0 8 8 0 0 -8 8 -4 0 -1 0 0 8 0 0 0 -4 0 -8 4 -8 -2 -8 0 -4 4 0 0 0 0 0 0 -8 2 4 -8 0 0 0 0 0 -4 -2 4 0 -4 0 0 -2 4 4 0 1 4 1 1 5 4 2 0 0 8 -4 -4 -4 0 4 2 -4 -8 0 -4 4 0 -2 1 0 8 4 0 -4 4 0 8 0 -2 0 4 -4 -4 -8 -2 0 0 -8 -8 -16 -4 -4 -8 -4 4 0 8 8 0 4 2 0 2 0 -8 -1 8 -2 8 -4 -4 0 -8 0 4 2 4 4 -4 8 -12 0 8 -8 0 -8 16 8 -4 -8 -16 0 0 8 0 0 0 0 0 0 16 8 2 0 0 0 0 4 0 4 0 4 -16 8 -16 8 4 8 4 -8 0 8 -4 4 12 0 0 4 16 -4 -8 -6 -8 -4 -8 -4 4 -8 -4 8 0 0 0 0 0 0 8 0 -8 0 0 4 0 8 4 -8 0 -4 8 0 0 0 0 -8 0 0 16 16 0 -4 0 8 0 4 4 0 0 12 -16 -16 -8 -4 4 0 4 0 2 8 4 0 4 -4 -4 -8 -6 8 0 8 0 0 -8 8 -4 0 -8 -4 8 4 -8 8 4 2 -4 -12 8 8 0 0 4 -4 -4 0 -4 16 -2 0 -8 2 -4 0 -4 4 -1 0 4 -16 8 6 8 -8 -8 -2 0 1 -4 0 16 -8 4 0 4 -4 0 -4 8 -2 -8 -8 0 0 -4 -8 0 4 4 -16 0 -2 4 -8 -4 8 -4 0 -4 2 0 -8 4 -4 4 0 0 8 -6 4 -1 6 1 1 5 12 -4 6 -8 16 -8 -16 -24 6 -32 4 8 16 20 -8 -24 -8 4 3 -16 16 8 -16 12 -8 -16 0 -8 6 24 12 -24 8 24 6 -16 24 -8 -8 -16 8 8 16 8 12 -16 16 -48 -8 8 6 24 6 -16 16 3 -8 4 16 8 -24 -16 16 24 -24 16 -24 8 -24 16 8 -16 24 16 -8 -48 -16 -8 8 16 -16 12 4 -8 24 -8 12 48 12 24 -16 16 4 -16 -16 -16 4 8 -16 8 -16 8 -16 16 -16 16 -24 -48 -24 -8 12 16 12 8 8 12 -8 8 -16 8 16 4 16 -24 -48 -24 12 16 8 16 -16 16 -16 48 -16 12 16 24 16 48 16 8 -16 -48 -24 -48 -16 -24 16 -16 -16 -16 -16 16 -16 -16 -16 -16 -8 8 -8 -8 12 12 8 12 24 8 -16 -16 -8 12 8 4 8 4 4 16 8 12 -24 -24 8 16 4 16 12 16 48 24 16 16 8 -16 -48 -24 -48 -24 16 16 8 6 8 8 -8 -8 -8 -8 12 8 8 24 12 -16 4 -16 16 6 8 -16 -24 -24 3 -16 8 -16 16 4 24 16 16 4 -16 3 8 -16 -16 24 -8 24 -24 -24 -16 -8 16 6 -8 -8 -8 -8 12 16 24 12 8 -16 -16 6 -8 16 12 16 8 -8 -8 4 6 -8 8 -24 -24 -8 6 -8 4 12 1 4 1 1 5 4 0 2 0 0 0 -8 -4 2 -8 4 0 0 4 -4 -4 -4 4 -1 8 0 0 0 0 0 0 -8 -4 2 0 0 -8 0 0 -2 -8 0 0 0 0 0 0 0 -8 0 8 0 0 -4 -8 2 0 -2 0 0 -1 0 0 0 0 8 0 0 0 -4 0 4 0 0 0 0 -8 0 0 -4 8 0 0 8 0 -8 0 0 -4 8 0 -4 0 0 -8 0 0 0 8 0 8 0 0 0 0 0 -8 8 0 0 0 8 8 0 -4 -4 0 -4 0 0 4 0 8 8 0 0 0 0 4 0 -4 -4 0 -8 0 8 0 8 0 0 0 0 -8 0 0 0 0 8 8 0 0 0 -4 0 8 0 8 0 0 8 0 8 0 0 -8 0 -4 -4 -4 8 4 8 0 8 0 -4 -4 0 0 0 0 0 0 -8 -4 8 4 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 -4 0 0 -8 2 8 0 0 0 -4 -4 0 0 0 0 0 0 0 -8 0 -2 -8 8 8 4 -1 0 0 -8 0 0 0 0 0 4 8 -1 0 0 -8 0 0 0 -4 -8 0 -4 0 2 0 0 -4 -4 0 0 0 0 0 0 -8 -2 -4 0 4 0 0 0 0 4 2 -4 0 -4 -8 0 2 -4 4 4 1 4 1 1 5 8 -6 4 0 8 -4 -4 -12 -4 -12 10 4 8 -4 4 12 -8 -10 1 16 -8 -4 -16 4 4 16 -24 -8 2 8 4 12 -4 8 2 -16 8 -8 -8 -16 12 -4 -8 -4 -4 -16 -8 -8 8 -4 -2 -8 -2 -16 -8 -1 8 -2 -8 -4 -4 16 -8 -8 -4 -6 -4 -4 -4 24 12 16 -8 24 8 -8 16 8 -4 -8 16 0 0 -16 0 16 0 0 0 0 0 8 2 0 0 0 0 4 0 4 0 4 0 8 0 8 4 8 4 16 0 -24 0 -12 -12 0 -16 4 0 4 8 2 8 4 8 4 0 -24 4 8 0 0 0 0 0 0 8 0 8 0 0 -12 0 8 4 8 0 4 -24 0 0 0 0 -24 0 0 0 0 16 4 -16 -16 0 0 4 0 0 -12 0 0 16 0 4 0 4 0 2 8 4 0 4 4 4 8 2 8 0 8 0 -8 -8 -8 12 -16 -8 -4 -8 -4 24 24 -4 -2 -4 12 8 8 8 8 -4 -4 -4 -8 -4 16 -2 16 -8 -2 -4 -16 -4 -4 -1 16 -4 16 -8 -2 -8 -8 -8 -10 16 1 -4 -16 -16 8 4 8 12 12 16 4 -8 2 -8 -8 -8 -8 4 -8 8 4 -4 -16 -16 2 -4 8 -8 8 4 0 -4 10 -4 0 4 -12 -12 0 4 0 -6 8 -1 6 1 1 5 4 -4 -2 8 16 8 -16 8 -2 0 4 -8 -16 -4 -8 8 -8 4 3 -16 -16 -8 16 -4 8 16 0 -8 -2 -8 12 -8 -8 -24 -2 -16 8 8 8 16 -8 8 -16 8 -4 -16 16 -16 -8 8 -2 -8 -2 16 16 3 8 4 -16 8 -8 16 -16 8 8 16 -24 8 24 16 -8 -16 -24 -16 -8 16 16 8 8 -16 -16 -4 4 -8 8 8 12 16 -4 8 16 -16 4 -16 16 -16 4 8 16 8 16 8 -16 -16 16 -16 -8 16 24 -8 -4 -16 4 -8 -8 12 8 8 -16 8 16 4 -16 -24 -16 8 4 16 8 16 -16 -16 -16 -16 16 -4 -16 8 -16 -16 -16 -8 -16 16 24 -16 16 8 -16 -16 16 -16 16 16 -16 16 -16 16 8 8 8 -8 -4 4 8 12 8 -8 -16 16 -8 4 8 4 8 4 4 16 8 12 -8 -24 8 16 4 -16 -4 -16 16 -8 -16 -16 -8 16 16 24 -16 8 -16 16 8 -2 8 -8 8 8 -8 -8 -4 8 8 8 12 16 4 -16 16 -2 8 -16 -8 -24 3 16 8 -16 16 4 -24 -16 -16 4 -16 3 -8 16 -16 -24 8 -8 8 -8 16 -8 -16 -2 8 8 -8 -8 -4 16 8 12 -8 16 -16 -2 -8 -16 4 16 -8 8 8 4 -2 -8 -8 8 -8 8 -2 -8 4 4 1 4 1 1 5 0 4 -2 4 0 4 0 0 -2 0 -4 0 -8 0 0 0 -8 -4 -1 -8 -8 0 -8 0 4 0 0 0 2 0 0 -4 0 0 -2 0 0 -4 4 8 -8 0 -8 0 0 -8 -8 8 -8 0 2 0 -2 0 8 -1 -4 0 0 0 -4 -8 0 0 0 0 0 0 -4 0 8 0 0 8 0 0 8 4 0 8 0 0 0 8 0 -4 4 0 0 0 0 0 0 8 0 8 0 0 0 0 0 0 8 8 0 -8 -4 0 -4 8 4 8 0 -8 8 -4 -4 0 8 0 -8 0 0 0 8 0 0 0 0 8 -8 0 -8 0 0 0 0 0 0 0 0 -8 -8 0 -4 8 0 0 8 8 0 8 0 0 -8 0 8 0 -4 0 -4 8 4 0 0 -4 0 8 8 0 8 0 0 0 0 0 0 8 0 4 -4 0 0 -8 0 -8 0 8 0 0 0 0 -8 0 0 -4 8 0 8 0 0 2 0 8 -4 4 -8 0 0 0 0 0 0 8 0 0 8 -2 0 -8 -4 0 -1 -8 0 0 -8 0 0 -8 8 -4 -8 -1 0 -8 0 0 4 0 0 -4 0 0 -8 2 -4 4 -8 0 0 0 0 0 0 8 0 -2 0 -8 0 0 0 4 4 -4 -2 0 0 0 -4 4 -2 0 4 0 1 4 1 1 5 0 0 -2 8 0 0 -8 4 -2 8 -4 8 -8 -8 -4 4 4 -4 -1 0 -8 8 0 0 0 -8 -8 -4 -2 0 0 0 -8 0 2 8 0 0 -8 0 0 0 8 0 0 0 8 0 4 0 -2 0 2 -8 -8 -1 0 0 0 0 0 0 0 0 4 0 4 0 0 0 0 8 0 8 -4 -8 0 -8 0 -8 -8 0 0 4 0 0 -4 0 0 0 8 0 0 0 8 0 0 0 8 0 -8 0 0 -8 8 8 0 -8 0 4 4 8 0 0 0 4 0 0 0 0 8 0 0 4 0 4 0 0 0 -8 0 0 0 0 -8 0 0 0 0 0 0 0 0 -8 0 0 -8 4 8 0 8 0 8 0 0 -8 0 8 0 0 0 4 4 0 0 4 0 0 0 8 4 0 0 0 0 0 0 -8 0 -4 0 4 0 8 0 8 0 -8 0 0 0 0 0 -8 -8 0 0 4 8 0 0 -2 0 0 0 -8 4 -4 0 0 0 0 0 0 0 8 -8 2 0 0 0 4 -1 0 0 -8 8 0 0 8 -8 -4 0 -1 -8 0 -8 0 0 0 4 0 -8 -4 -8 -2 0 -8 4 -4 0 0 0 0 8 0 8 2 -4 -8 0 0 8 8 0 -4 -2 -4 -8 4 0 8 -2 -4 4 0 1 4 1 1 5 4 -6 0 8 8 4 -4 4 0 -12 2 4 -8 -8 4 -4 -8 -2 1 0 8 -4 0 -4 -4 0 -24 -8 -2 0 4 4 4 -8 -2 0 0 0 0 16 -12 -4 -8 -4 4 0 -8 -8 8 4 2 0 2 0 8 -1 0 6 -8 -4 4 0 8 0 -4 -6 -4 4 4 8 -4 0 8 -8 8 8 -16 0 -4 -8 16 0 0 0 0 -8 0 0 0 0 0 -8 -6 0 0 0 0 4 0 4 -16 4 0 8 0 8 -4 -8 -4 0 0 8 -4 12 4 0 8 4 0 -4 8 2 8 4 8 4 4 -8 -4 -8 -16 0 16 0 16 0 -8 0 8 0 0 12 -16 -8 -4 8 -16 4 8 0 0 0 0 -8 16 16 0 0 -8 -4 8 0 0 4 4 0 0 4 0 0 0 -4 4 0 4 0 -6 -8 4 0 -4 4 -4 8 2 8 0 8 0 0 8 -8 -12 0 8 4 -8 -4 -8 8 4 2 -4 -4 0 0 8 8 4 -4 -4 0 -4 -16 6 0 8 2 -4 0 4 -4 -1 0 4 16 -8 -2 8 -8 -8 -2 0 1 4 0 -16 -8 -4 0 -4 4 0 4 8 -2 0 0 -8 -8 -4 -8 0 4 -4 16 0 -2 -4 -8 -4 8 4 -8 4 2 0 0 -4 4 -4 8 0 0 -6 4 -1 6 1 1 5 4 4 -2 0 -16 0 0 0 -2 0 4 8 -16 12 0 0 0 4 3 0 -16 8 0 -4 0 0 -16 0 6 -8 -4 0 8 8 6 0 -24 0 0 0 8 8 16 8 -4 0 -16 0 0 8 6 -8 6 0 -16 3 0 4 -16 8 0 0 -16 -24 0 0 0 8 0 -16 8 0 8 -16 0 0 0 0 8 16 0 12 4 0 8 0 -4 16 12 8 0 -16 4 0 0 0 4 8 0 8 0 8 0 16 0 16 0 0 0 0 -4 -16 4 8 8 -4 0 8 0 8 -16 4 -16 0 0 0 4 -16 8 -16 0 -16 0 -16 0 12 -16 8 -16 -16 -16 8 0 0 0 0 0 0 -16 0 0 0 0 -16 0 0 0 0 0 8 0 0 -4 4 8 -4 8 8 0 0 0 4 8 4 8 4 4 -16 8 -4 0 0 8 -16 4 16 12 16 16 -8 -16 -16 8 0 0 0 0 0 -16 -16 8 6 8 8 0 0 0 0 -4 8 8 -24 -4 0 4 0 -16 6 8 0 0 0 3 0 8 0 -16 4 8 16 16 4 0 3 8 0 0 8 0 -8 0 0 0 0 -16 6 0 0 0 0 -4 -16 -24 -4 8 0 0 6 0 -16 4 -16 8 0 0 4 -2 0 8 0 0 0 -2 0 4 4 1 4 1 1 5 0 4 2 0 -16 0 0 0 2 0 4 0 0 0 0 0 0 4 3 0 0 0 0 -4 0 0 -16 0 2 -8 -12 0 0 0 2 0 0 0 0 0 0 -8 0 8 -4 0 16 0 0 8 2 -8 2 0 16 3 0 -4 0 -8 0 0 0 0 0 -16 0 -8 0 -16 0 0 0 0 0 0 0 0 8 0 0 -4 -4 0 0 0 12 0 -4 0 0 0 -4 0 0 0 -4 -8 0 -8 0 8 0 0 0 0 0 0 0 0 4 0 0 0 0 12 0 8 0 -8 16 -4 0 0 0 0 0 -16 8 16 0 0 0 16 0 -4 0 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 -16 0 0 0 0 0 8 0 0 4 0 8 12 0 0 0 0 0 0 -8 -4 -8 -4 -4 16 8 12 0 0 -8 16 -4 0 -4 0 0 -8 0 0 0 0 0 0 0 0 0 -16 8 2 8 0 0 0 0 0 -4 -8 -8 0 -12 0 -4 0 16 2 8 0 0 0 3 0 -8 0 16 -4 0 0 0 4 0 3 0 0 0 0 0 -8 0 0 0 0 0 2 0 0 0 0 -4 -16 0 -12 0 0 0 2 0 0 0 -16 0 0 0 4 2 0 0 0 0 0 2 0 4 0 1 4 1 1 5 4 -2 0 4 0 0 -4 0 0 -4 2 4 -8 0 0 0 -4 -2 1 0 8 -4 0 -4 0 0 0 -4 2 0 -4 0 -4 0 2 0 -8 -4 -4 0 4 -4 0 4 4 0 -8 0 4 4 -2 0 -2 0 -8 -1 4 -2 0 -4 0 0 0 8 0 2 0 -4 0 -16 4 0 0 -8 4 0 0 4 4 0 0 0 0 4 0 -4 0 0 0 0 -8 0 2 0 0 0 0 4 0 4 8 -4 8 0 8 0 0 0 0 -4 0 8 4 -4 -4 0 4 -4 -8 4 8 2 0 0 0 0 -4 16 -4 8 8 0 -8 0 -8 0 0 0 0 0 0 -4 8 0 0 0 8 0 8 0 0 0 0 16 -8 -8 -8 -8 -4 -4 4 4 0 -4 -4 0 0 -4 8 8 -4 4 4 0 4 0 2 8 -4 0 0 0 4 8 2 0 0 0 0 0 0 0 4 0 0 0 0 0 -8 -16 4 -2 4 4 4 4 4 4 4 -4 -4 8 4 0 -2 0 -8 -2 4 0 0 0 -1 0 -4 0 -8 -2 0 0 0 -2 0 1 -4 0 0 0 0 0 0 0 0 0 8 2 -4 -4 -4 -4 -4 0 -8 -4 -4 0 0 2 0 -8 -4 0 4 -4 0 2 0 -4 4 0 0 4 0 4 -6 4 -1 6 1 1 5 -4 4 6 0 -16 0 0 0 6 0 4 -8 16 -12 0 0 0 4 3 0 16 -8 0 12 0 0 -16 0 -2 -8 -4 0 -8 -8 -2 0 -8 0 0 0 -8 8 -16 8 12 0 -16 0 0 8 -2 -8 -2 0 -16 3 0 4 16 8 0 0 16 -8 0 0 0 8 0 -16 -8 0 -8 16 0 0 0 0 8 -16 0 -4 4 0 24 0 -4 -16 -4 24 0 16 4 0 0 0 4 8 0 8 0 8 0 -16 0 -16 0 0 0 0 12 16 -4 -8 -8 -4 0 8 0 8 -16 4 16 0 0 0 -4 -16 8 -16 0 16 0 -16 0 -4 16 24 16 -16 16 -8 0 0 0 0 0 0 16 0 0 0 0 -16 0 0 0 0 0 8 0 0 12 -4 8 -4 24 -8 0 0 0 -4 8 4 8 4 4 -16 8 -4 0 0 8 -16 4 -16 -4 -16 -16 -8 16 16 -8 0 0 0 0 0 16 -16 8 -2 8 -8 0 0 0 0 12 8 8 -8 -4 0 4 0 -16 -2 8 0 0 0 3 0 8 0 -16 4 -8 -16 -16 4 0 3 -8 0 0 -8 0 -8 0 0 0 0 16 -2 0 0 0 0 12 -16 -8 -4 -8 0 0 -2 0 16 -4 -16 -8 0 0 4 6 0 -8 0 0 0 6 0 4 -4 1 4 1 1 5 -4 8 2 0 -8 0 0 -4 2 8 -4 -8 8 -4 -4 -4 12 -4 -1 -8 8 -8 8 0 0 0 -24 -4 2 0 0 8 0 0 -2 0 0 -8 8 -8 0 -8 0 0 0 -8 8 0 12 0 2 0 -2 0 -8 -1 -8 0 -8 8 -8 8 8 0 -4 -8 4 8 0 8 8 0 0 -8 -4 8 -8 8 0 0 -16 0 0 4 -8 0 -4 0 0 8 -8 8 0 -8 0 -8 0 8 0 -8 8 0 16 0 -8 0 -8 8 0 4 -4 -8 4 0 8 4 0 0 16 8 8 -8 -8 4 0 -4 4 8 0 -8 0 0 0 0 8 0 8 8 -8 0 0 0 0 8 0 0 8 -4 -8 -8 0 -8 0 8 0 8 16 -8 0 0 0 4 -4 4 0 4 -8 8 16 -8 4 4 8 0 -8 0 0 -8 0 -4 -8 4 8 8 -8 0 0 0 0 0 8 -8 0 0 8 0 0 -4 -8 8 0 2 0 8 -8 8 12 -4 0 8 -8 0 0 -8 0 0 -8 -2 0 -8 -8 4 -1 8 8 -16 8 -8 0 0 0 -4 -8 -1 0 8 -16 0 0 0 -4 8 0 -4 8 2 -8 8 12 -4 0 -8 0 0 -8 -8 0 -2 -4 8 -4 -8 -8 0 0 -4 2 4 0 -4 8 0 2 4 4 -4 1 4 1 1 5 -4 8 2 0 -8 0 8 4 2 -8 -4 -8 8 -4 4 4 -4 -4 -1 -8 8 -8 -8 0 0 0 -8 12 2 0 0 -8 0 0 -2 -16 0 8 -8 8 0 8 0 0 0 -8 8 0 -4 0 2 0 -2 0 -8 -1 8 8 -8 -8 8 -8 8 0 4 0 -4 -8 0 8 8 -16 0 -8 12 -8 8 -8 0 0 0 0 0 4 -8 0 -4 0 0 8 8 8 8 -8 0 -8 0 -8 0 8 -8 0 0 0 8 0 8 -8 0 4 -4 -8 4 0 8 4 0 0 0 -8 8 0 -8 -4 0 4 4 8 0 -8 16 0 16 0 -8 0 8 8 -8 0 0 0 16 -8 0 0 -8 4 -8 -8 0 -8 0 8 16 -8 0 8 0 0 0 4 -4 4 0 4 -8 8 0 8 4 4 -8 0 8 0 8 -8 0 -4 8 -4 -8 8 0 0 0 0 0 0 8 -8 0 0 -8 0 0 4 -8 8 0 2 0 8 8 -8 -4 12 0 -8 8 0 0 8 8 -16 -8 -2 0 -8 8 -4 -1 -8 -8 0 8 0 0 0 0 -4 -8 -1 0 -8 0 0 0 0 4 -8 0 4 8 2 8 -8 -4 12 0 -8 0 0 -8 8 -16 -2 4 8 -4 -8 -8 0 0 -4 2 4 0 4 -8 0 2 4 4 -4 1 4 1 1 5 -4 4 2 4 -8 -4 0 8 2 0 -4 0 8 -12 0 8 -8 -4 -1 0 8 0 0 0 -4 -8 -16 8 -2 0 0 -4 -8 0 2 8 0 12 -4 -16 8 8 0 0 0 0 -8 8 -8 0 -2 0 2 -8 8 -1 12 -8 8 -8 -4 0 -8 0 -8 0 0 8 4 8 0 8 0 -8 8 0 -16 -4 0 0 -8 0 0 0 8 4 4 0 0 -8 0 -8 -8 0 -8 0 0 -8 -8 8 16 0 8 0 0 0 -4 0 4 0 -4 -8 4 8 0 -4 4 0 8 8 -8 0 8 0 8 -8 4 8 0 8 -8 0 -8 0 16 0 -8 -8 8 0 0 8 -8 0 4 8 16 -8 -8 0 -8 0 -8 8 -8 16 8 0 4 0 4 0 -4 4 0 -4 8 0 8 0 0 4 -8 0 8 0 -8 8 0 4 -4 0 8 -8 0 0 0 0 0 0 -8 8 8 -8 0 4 8 -8 -8 8 0 -2 0 0 12 -4 -8 8 0 -8 8 0 0 -16 -8 8 8 2 0 0 -4 0 -1 0 8 -8 -8 0 0 0 0 -4 0 -1 -8 0 -8 0 -4 0 8 -4 -8 0 8 -2 12 -4 -8 8 0 -8 0 0 0 -16 8 2 0 8 -4 -8 0 4 -4 -4 2 0 -8 8 -4 4 2 0 4 -4 1 4 1 1 5 -4 4 2 4 -8 4 0 -8 2 8 -4 0 8 -12 0 -8 8 -4 -1 0 8 0 -16 0 4 -8 0 -8 -2 0 0 4 -8 0 2 -8 0 -4 12 0 8 -8 0 0 0 0 -8 -8 8 0 -2 0 2 -8 8 -1 -4 0 8 8 4 -16 -8 0 8 8 0 -8 -4 8 0 -8 0 -8 -8 0 0 12 0 0 8 0 0 0 8 4 4 0 0 -8 16 -8 0 0 -8 0 0 8 -8 -8 0 0 -8 0 16 0 4 0 -4 0 -4 -8 4 8 0 -4 4 0 -8 -8 -8 8 8 0 -8 8 4 8 0 8 8 0 8 0 0 0 -8 -8 8 0 0 8 8 0 -4 -8 0 8 -8 0 -8 0 -8 8 8 0 -8 16 4 0 4 0 -4 4 0 -4 8 0 -8 16 0 4 8 0 -8 0 0 8 0 4 4 0 -8 -8 8 0 0 0 0 0 -8 8 8 -8 0 -4 -8 8 -8 8 0 -2 0 0 -4 12 8 -8 0 8 -8 0 0 0 0 -8 8 2 0 0 4 0 -1 -16 -8 8 -8 8 0 0 0 -4 0 -1 -8 -16 8 0 4 0 -8 4 -8 0 8 -2 -4 12 8 -8 0 -8 0 0 0 0 -8 2 0 8 -4 -8 0 4 4 -4 2 0 -8 -8 4 4 2 0 4 -4 1 4 1 1 5 0 -2 4 4 -8 0 -4 0 -4 -4 2 -4 16 -4 0 0 4 -2 1 0 -16 4 -8 4 0 0 0 4 -2 -8 -4 0 4 0 -2 -8 0 4 4 -8 -4 4 0 -4 -4 0 0 0 -4 4 2 8 2 0 0 -1 -4 -2 -8 4 0 8 -8 0 0 2 0 -4 0 -8 -4 8 0 0 -4 0 8 -4 -4 0 8 0 0 4 0 -4 0 0 0 0 0 8 2 0 0 0 0 -4 0 -4 0 4 0 0 0 0 0 0 0 -4 0 0 0 4 4 0 4 4 0 4 0 2 8 0 0 0 0 8 -4 0 0 0 0 0 0 0 8 0 8 0 0 4 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 -4 -4 4 4 0 0 4 0 0 4 0 0 -4 0 -4 0 -4 0 2 0 4 0 0 0 4 0 2 0 0 0 0 8 -8 -8 -4 0 0 0 0 0 0 -8 4 2 -4 -4 -4 -4 -4 -4 -4 4 4 0 4 8 -2 8 0 2 -4 0 0 0 -1 8 -4 8 0 -2 0 0 0 -2 0 1 4 -8 -8 0 0 -8 0 0 0 0 -16 -2 4 4 4 4 4 8 0 -4 4 -8 -8 -2 0 16 0 -8 -4 -4 0 2 -4 -4 -4 0 0 4 4 4 -6 0 -1 6 1 1 5 0 6 0 0 0 -4 -12 0 0 12 -6 -12 0 12 0 0 12 6 -3 -24 0 12 24 0 4 0 0 -12 6 0 0 -12 -12 0 -6 0 0 0 0 -24 -12 -12 24 -12 0 24 0 -24 -12 -12 -6 0 6 0 0 3 0 -6 0 12 -12 -24 0 0 0 -6 0 12 12 0 12 0 0 0 12 0 24 0 12 -24 0 -12 4 -12 0 0 0 0 12 0 -24 0 6 -24 0 24 -4 -12 0 12 -24 12 0 24 24 -24 12 0 -12 12 0 0 0 12 -12 0 0 -12 0 -12 0 6 0 0 24 0 0 0 12 0 0 0 0 0 24 -12 0 0 0 0 0 12 0 0 -12 24 -24 0 0 24 0 -24 0 0 0 24 0 -24 0 12 0 -12 0 0 -12 0 0 -12 0 24 12 0 -12 4 12 -4 6 0 12 0 12 0 -12 0 6 -24 12 24 0 0 0 0 -12 0 0 12 -24 0 0 0 -12 -6 12 12 0 0 -12 12 0 12 -12 0 0 24 -6 0 0 6 -12 24 -12 0 3 -24 12 0 0 -6 0 24 -24 6 -24 -3 -12 24 0 0 4 0 0 -12 0 0 0 6 0 0 12 -12 0 0 0 0 12 -24 0 -6 0 0 0 0 -12 0 -4 -6 0 -12 12 0 12 0 0 12 -6 0 -1 6 1 1 5 0 2 0 4 0 0 -4 4 0 -4 -6 -4 0 4 -4 -4 -8 6 -3 -16 0 4 0 0 0 -8 8 8 2 0 0 0 -4 0 -2 -8 0 4 -4 0 -4 12 -8 -4 0 16 0 0 8 -12 -2 0 2 8 0 3 -4 2 0 -12 0 0 0 0 -4 2 -12 -4 0 0 4 8 0 0 -8 -8 0 4 4 8 -8 4 -4 -8 0 4 0 0 -4 0 0 0 -2 16 -8 -16 4 12 8 -12 0 4 8 -8 0 8 0 8 0 8 0 0 0 4 -4 0 -4 -4 -8 4 0 -2 0 12 0 4 0 0 12 0 -8 0 8 0 0 4 0 0 0 0 0 4 -8 8 0 0 0 4 0 -16 8 16 -8 0 8 0 -8 0 4 12 -4 -8 0 0 -4 0 0 -4 8 0 8 0 12 -4 -12 4 -2 0 4 0 0 12 4 0 -2 8 -4 -8 0 0 0 0 -4 8 -8 0 0 -4 0 0 -12 -2 4 4 -4 4 8 -8 0 -12 12 0 0 0 2 8 0 2 -4 16 0 -12 3 0 -4 -8 0 2 0 -8 8 6 -16 -3 -4 0 8 0 0 0 -4 0 -8 -4 0 2 4 -4 -8 8 0 0 0 0 4 0 -8 -2 4 0 0 0 -4 -4 0 -6 0 -8 4 4 0 4 0 8 -6 0 -1 6 1 1 5 0 -2 0 8 0 4 -4 0 0 -4 -6 4 0 -4 0 0 4 6 -3 -8 0 -4 -8 0 -4 -16 0 -4 -2 0 0 -4 4 0 2 0 0 -8 8 8 4 -12 -8 4 0 8 0 -8 -4 -12 2 0 -2 16 0 3 8 2 0 12 -4 8 0 0 0 2 0 -4 -12 0 -4 0 0 0 4 0 -8 -8 -4 8 0 4 4 -4 0 8 0 0 -4 0 8 0 -2 -8 16 8 -4 -12 -16 12 8 -4 0 -8 -8 8 4 0 12 4 0 0 0 -4 4 0 -8 4 0 4 0 -2 0 0 8 0 0 0 12 0 0 0 0 0 -8 4 0 0 0 0 0 -4 0 0 12 8 8 0 0 8 -16 -8 16 0 0 -8 0 8 8 12 -8 -4 0 0 4 0 0 4 0 -8 4 0 -12 4 12 -4 -2 0 -4 0 4 0 4 0 -2 8 -4 -8 0 0 0 0 4 16 0 -12 -8 0 0 0 -12 2 -4 -4 8 -8 -4 4 0 12 -12 0 0 -8 2 0 0 -2 4 8 -4 0 3 8 -4 0 0 2 0 -8 8 6 -8 -3 4 -8 0 0 -4 0 0 -4 -16 0 0 -2 -8 8 4 -4 0 0 0 0 -4 8 0 2 0 0 0 0 4 -8 4 -6 0 -4 -4 0 4 8 0 4 -6 0 -1 6 1 1 5 0 -6 0 12 0 0 -4 12 0 -12 -6 12 0 -12 4 -12 0 6 -3 0 0 -12 0 0 0 -24 -24 0 -6 0 0 0 12 0 6 24 0 12 -12 0 12 12 24 12 0 0 0 0 0 -12 6 0 -6 24 0 3 -12 -6 0 -12 0 0 0 0 -12 -6 12 12 0 0 -12 -24 0 0 0 -24 0 12 -12 -24 24 -12 -4 0 0 12 0 0 12 0 0 0 6 0 -24 0 4 12 24 -12 0 -12 -24 24 0 -24 0 24 0 0 0 0 0 -12 12 0 -12 12 24 -12 0 6 0 -12 0 12 0 0 12 0 24 0 -24 0 0 -12 0 0 0 0 0 -12 24 24 0 0 0 12 0 0 24 0 -24 0 -24 0 24 0 12 12 -12 0 0 0 12 0 0 12 -24 0 0 0 12 -4 -12 4 6 0 -12 0 0 -12 -12 0 6 -24 12 24 0 0 0 0 12 24 -24 0 0 -12 0 0 -12 6 -12 -12 -12 12 0 0 0 -12 12 0 0 0 -6 -24 0 -6 12 0 0 12 3 0 12 24 0 -6 0 24 -24 6 0 -3 12 0 -24 0 0 0 -12 0 -24 4 0 -6 12 -12 0 0 0 0 0 0 -12 0 24 6 -4 0 0 0 12 -12 0 -6 0 0 -12 12 0 12 0 0 -6 0 -1 6 1 1 3 4 2 0 -8 8 -4 4 -4 0 -4 6 -4 -8 -8 4 -4 8 6 1 0 -8 -4 -16 -4 -4 0 8 8 -2 0 4 4 -12 -8 -2 16 0 0 0 0 -4 4 8 4 -4 0 -8 8 8 -4 -2 0 -2 0 8 1 0 2 -8 4 -4 -16 8 0 4 -2 4 -4 -4 8 4 16 -8 -8 8 -8 0 0 4 8 0 0 0 0 0 8 0 0 0 0 -16 8 2 0 0 0 0 4 0 4 0 4 16 8 16 8 -4 -8 -4 0 0 -8 -4 -4 4 0 -8 4 -16 -4 -8 -6 -8 4 8 4 4 8 -4 8 0 0 0 0 0 0 -8 0 8 0 0 4 0 8 4 -8 0 -4 8 0 0 0 0 -8 0 0 16 16 -8 4 8 0 0 -4 -4 0 0 -4 -16 -16 0 4 -4 0 -4 0 -2 -8 -4 0 4 -4 4 8 6 -8 0 -8 0 0 -8 8 4 0 8 4 -8 -4 8 -8 4 2 -4 -4 0 0 -8 -8 4 -4 -4 0 -4 0 -2 -16 -8 2 -4 0 4 -4 -1 16 4 0 8 6 8 -8 -8 -6 0 -1 12 16 0 8 4 0 4 -4 0 -4 8 2 0 0 -8 -8 4 -8 0 -4 4 0 -16 2 -4 8 -4 -8 4 8 4 -6 0 0 12 4 -4 8 0 0 -2 -4 -1 -2 -1 1 3 0 10 -4 -8 8 -4 12 -4 -4 -4 -2 -4 -8 -4 4 -4 0 -2 1 16 -8 -4 0 4 -4 -16 8 0 2 -8 4 4 -4 -8 2 0 8 0 0 0 4 4 -8 4 4 16 8 -8 0 4 2 -8 2 -16 8 1 0 2 -8 4 12 0 -8 8 -12 6 4 4 -4 -8 4 0 -8 8 0 8 0 0 4 -8 0 0 0 -8 0 -8 0 0 0 0 0 -8 2 0 0 0 0 4 0 4 0 4 0 -8 0 -8 12 8 -4 8 0 8 8 4 4 0 8 4 0 4 8 2 -8 4 -8 -12 -8 -8 4 8 0 0 0 0 0 0 8 0 8 0 0 -4 0 -8 4 8 0 12 -8 0 0 0 0 8 0 0 0 0 8 -4 -8 8 0 8 -4 0 0 -4 0 0 -8 -8 -4 0 -4 0 -2 -8 -4 0 -12 -4 -4 -8 -2 8 0 8 0 8 8 8 -4 16 -8 4 8 12 -8 8 -4 -2 -4 -4 0 0 0 0 -4 -4 -4 -8 -4 0 -2 0 -8 -2 -4 -16 -12 -4 -1 0 -4 0 -8 -2 8 8 8 2 -16 -1 4 0 0 8 4 8 4 -4 16 -4 8 -2 0 0 0 0 -4 -8 -8 -4 4 0 0 -2 -4 8 0 -8 4 8 4 2 4 -8 4 4 -4 8 4 -8 -2 0 -1 -2 -1 1 3 4 4 -2 -8 16 -8 0 -8 2 16 4 -8 -16 -12 -8 8 8 -4 3 16 16 8 -16 -4 8 -16 0 8 -2 -8 12 -8 8 -24 -2 16 8 -8 -8 -16 -8 8 -16 8 4 -16 16 16 -8 8 2 8 2 16 16 -3 8 4 -16 8 8 16 -16 -8 -8 -8 24 8 -24 16 -8 -16 24 -16 -8 -16 16 8 8 -16 -16 -4 4 8 8 -8 12 16 -4 8 -16 16 -4 16 -16 16 4 -8 -16 -8 -16 -8 16 16 -16 16 -8 16 24 8 -4 16 4 8 8 12 -8 -8 16 -8 -16 -4 16 -24 -16 8 4 -16 -8 -16 16 -16 16 -16 -16 4 -16 -8 -16 16 16 -8 -16 -16 -24 16 16 -8 -16 -16 16 -16 16 16 -16 16 -16 16 8 8 8 -8 4 -4 8 -12 -8 -8 -16 16 -8 -4 8 -4 8 -4 4 16 8 -12 8 24 8 16 4 -16 4 -16 -16 -8 16 16 8 -16 16 24 -16 8 16 -16 -8 -2 -8 8 -8 -8 8 8 -4 -8 -8 8 12 -16 -4 16 -16 -2 -8 16 -8 -24 3 -16 -8 16 -16 -4 -24 16 16 4 -16 -3 -8 16 -16 24 -8 8 -8 8 16 8 -16 2 8 8 -8 -8 4 16 -8 -12 -8 16 -16 2 -8 16 4 -16 8 -8 8 -4 -2 8 8 8 -8 8 2 -8 4 -4 1 -4 -1 1 3 8 -6 4 -8 8 -4 -12 -12 4 -20 -2 4 8 12 -4 -12 0 -2 1 -16 8 4 0 4 -4 -16 8 0 2 8 4 -12 4 8 2 0 8 0 0 0 -4 4 8 4 4 -16 8 -8 0 4 2 8 2 -16 8 1 0 2 8 4 -4 0 8 8 -4 6 -4 4 -4 -8 -4 0 8 -8 0 -8 0 0 4 8 0 0 0 8 0 -8 0 0 0 0 0 8 2 0 0 0 0 4 0 4 0 4 0 8 0 8 -4 -8 -4 -8 0 -8 0 -4 -4 0 8 4 0 4 8 2 8 -4 -8 -4 0 -8 4 8 0 0 0 0 0 0 -8 0 -8 0 0 4 0 8 4 8 0 4 8 0 0 0 0 8 0 0 0 0 8 -4 -8 -8 0 0 -4 0 0 4 0 0 8 0 -4 0 -4 0 -2 -8 -4 0 4 4 -4 -8 -2 -8 0 -8 0 -8 -8 -8 4 16 8 4 8 4 8 8 -4 -2 -4 4 0 0 0 0 -4 -4 -4 -8 -4 0 -2 0 -8 -2 -4 16 4 4 -1 0 -4 0 -8 -2 -8 -8 -8 2 16 -1 -4 0 0 -8 4 -8 12 12 16 4 -8 -2 0 0 0 0 -4 -8 -8 -4 -4 0 0 -2 4 -8 -8 -8 -4 8 4 2 -4 8 -4 12 12 8 -4 8 -2 -8 -1 -2 -1 1 3 4 -2 0 -4 -16 0 -4 0 0 -4 6 4 -8 8 0 0 4 6 1 0 -8 4 0 -4 0 0 -16 4 2 0 -4 0 4 0 2 0 -8 4 4 0 4 4 0 -4 -4 0 8 0 4 -4 2 0 2 0 8 1 4 2 0 4 0 0 0 -8 0 -2 0 4 0 0 4 0 0 -8 4 0 0 4 -4 0 0 0 0 -4 0 4 0 0 0 0 8 0 2 0 0 0 0 4 0 4 -8 -4 -8 0 -8 0 0 0 0 4 0 -8 4 4 4 0 -4 -4 8 4 8 2 0 0 0 0 -4 0 -4 8 -8 0 8 0 8 0 0 0 0 0 0 -4 8 0 0 0 8 0 8 0 0 0 0 0 -8 -8 -8 -8 -4 4 4 4 0 4 4 0 0 -4 8 8 -4 -4 -4 0 -4 0 -2 -8 4 0 0 0 -4 -8 -2 0 0 0 0 0 0 0 -4 0 0 0 0 0 8 0 4 -2 4 -4 -4 -4 -4 -4 4 -4 -4 8 4 0 -2 0 -8 -2 4 0 0 0 -1 0 -4 0 -8 -2 0 0 0 -6 0 -1 -4 0 0 0 0 0 0 0 0 0 8 -2 -4 -4 -4 -4 4 16 8 4 -4 0 0 -2 0 8 -4 16 -4 4 0 -6 0 4 -4 0 0 4 0 4 -2 -4 -1 -2 -1 1 3 0 -2 4 -4 -8 0 -4 0 4 -4 6 -4 0 -4 0 0 -4 6 1 0 0 -4 8 4 0 0 0 -4 -2 -8 -4 0 -4 0 -2 8 0 -4 -4 8 -4 -4 0 4 4 0 0 0 -4 -4 -2 -8 -2 0 0 1 -4 2 8 -4 0 8 8 0 0 -2 0 4 0 -8 -4 8 0 16 -4 0 8 -4 4 0 8 0 0 -4 0 4 0 0 0 0 0 8 2 0 0 0 0 -4 0 -4 0 4 0 0 0 0 0 0 0 4 0 16 0 -4 -4 0 -4 4 0 4 0 2 8 0 0 0 0 -8 -4 0 0 0 0 0 0 0 -8 0 -8 0 0 4 0 0 0 0 0 0 -16 0 0 0 0 8 0 0 0 0 -4 4 4 4 0 0 -4 0 0 4 0 0 -4 0 4 0 4 0 -2 0 -4 0 0 0 -4 0 -2 0 0 0 0 8 -8 -8 4 0 0 0 0 0 -16 8 4 2 -4 4 4 4 4 4 -4 4 4 0 4 -8 -2 -8 0 2 -4 0 0 0 -1 -8 -4 -8 0 -2 0 0 0 -6 0 -1 4 -8 -8 0 0 8 0 0 0 0 0 2 4 4 4 4 -4 8 0 4 4 -8 -8 2 0 0 0 8 4 4 0 -6 -4 4 4 0 0 4 -4 4 -2 0 -1 -2 -1 1 3 0 6 0 -8 0 -4 4 0 0 -12 -2 -4 0 4 0 0 4 -2 -3 -8 0 -4 -8 0 -4 16 0 -4 -2 0 0 -4 4 0 2 0 0 8 -8 8 -4 -4 8 12 0 -8 0 8 4 -4 -2 0 2 16 0 -3 8 6 0 4 4 -8 0 0 0 6 0 -12 12 0 4 0 0 0 -4 0 8 -8 -12 -8 0 4 4 -4 0 -8 0 0 -4 0 8 0 6 -8 -16 8 -4 4 16 -4 8 12 0 -8 -8 8 4 0 12 4 0 0 0 -4 4 0 8 -12 0 -12 0 6 0 0 8 0 0 0 -4 0 0 0 0 0 -8 -4 0 0 0 0 0 4 0 0 -12 -8 -8 0 0 -8 -16 8 16 0 0 8 0 -8 8 4 -8 4 0 0 12 0 0 -4 0 8 -4 0 -4 -4 4 4 -6 0 -12 0 -4 0 12 0 -6 -8 4 8 0 0 0 0 4 -16 0 -12 -8 0 0 0 4 2 12 -4 -8 8 -4 4 0 -4 4 0 0 -8 -6 0 0 -2 -12 8 -4 0 3 8 12 0 0 -6 0 -8 8 2 8 3 -4 8 0 0 4 0 0 4 -16 0 0 2 -8 8 -4 4 0 0 0 0 4 -8 0 -2 0 0 0 0 4 8 4 2 0 -4 -4 0 4 8 0 -4 -2 0 -1 -2 -1 1 3 0 2 0 -4 0 0 -4 -4 0 -4 -2 -4 0 4 -4 -4 0 -2 -3 0 0 -4 0 0 0 8 -8 0 2 0 0 0 4 0 -2 8 0 -4 4 0 -4 4 -8 4 0 0 0 0 0 -4 2 0 -2 8 0 -3 -4 -2 0 -4 0 0 0 0 4 -2 12 4 0 0 4 8 0 0 0 8 0 4 -4 8 -8 4 -4 0 0 -4 0 0 -4 0 0 0 -2 0 8 0 4 -4 -8 4 0 4 -8 8 0 -8 0 8 0 0 0 0 0 -4 4 0 4 -4 8 4 0 -2 0 12 0 4 0 0 -4 0 8 0 -8 0 0 -4 0 0 0 0 0 4 -8 -8 0 0 0 -4 0 0 8 0 -8 0 8 0 -8 0 4 4 -4 0 0 0 4 0 0 -4 8 0 0 0 4 4 -4 -4 2 0 -4 0 0 -12 -4 0 2 8 4 -8 0 0 0 0 4 -8 -8 0 0 -4 0 0 4 -2 4 -4 4 -4 0 0 0 4 -4 0 0 0 2 -8 0 2 -4 0 0 -12 3 0 -4 8 0 2 0 8 -8 2 0 3 -4 0 8 0 0 0 4 0 -8 4 0 -2 4 -4 0 0 0 0 0 0 4 0 -8 2 4 0 0 0 4 4 0 2 0 0 -4 4 0 4 0 0 -2 0 -1 -2 -1 1 3 0 2 0 -4 0 0 4 -12 0 -4 -2 4 0 -4 4 -12 0 -2 -3 0 0 4 0 0 0 8 8 0 -6 0 0 0 -4 0 6 -8 0 -4 4 0 4 4 8 4 0 0 0 0 0 -4 -6 0 6 8 0 -3 -4 -2 0 -4 0 0 0 0 12 -2 -12 4 0 0 -4 -8 0 0 0 24 0 4 -4 -8 8 -12 -4 0 0 -4 0 0 12 0 0 0 -2 0 8 0 4 -4 -8 4 0 4 8 -8 0 8 0 24 0 0 0 0 0 4 -4 0 4 -4 -8 4 0 -2 0 -12 0 12 0 0 -4 0 -8 0 8 0 0 12 0 0 0 0 0 -4 8 -24 0 0 0 -12 0 0 8 0 -8 0 -8 0 8 0 4 4 -4 0 0 0 4 0 0 4 -8 0 0 0 4 4 -4 -4 2 0 -4 0 0 12 -4 0 2 -8 -12 8 0 0 0 0 -4 -8 -24 0 0 -12 0 0 4 6 4 4 4 -4 0 0 0 4 -4 0 0 0 2 8 0 -6 -4 0 0 12 3 0 -4 -8 0 2 0 -8 8 2 0 3 4 0 -8 0 0 0 12 0 -8 -4 0 6 4 -4 0 0 0 0 0 0 -4 0 8 -6 -4 0 0 0 -4 4 0 2 0 0 4 12 0 4 0 0 -2 0 -1 -2 -1 1 3 0 -2 0 0 0 -4 -4 0 0 -4 -2 4 0 -4 0 0 -4 -2 -3 8 0 4 8 0 -4 0 0 4 -2 0 0 -4 -4 0 2 0 0 0 0 -8 4 -4 -8 -4 0 8 0 8 -4 -4 -2 0 2 0 0 -3 0 -2 0 4 4 8 0 0 0 -2 0 4 12 0 -4 0 0 0 4 0 -8 0 4 8 0 4 4 4 0 0 0 0 -4 0 -8 0 -2 8 0 -8 -4 4 0 -4 -8 -4 0 8 8 -8 4 0 12 -4 0 0 0 4 -4 0 0 4 0 4 0 -2 0 0 8 0 0 0 -4 0 0 0 0 0 8 -4 0 0 0 0 0 -4 0 0 -12 -8 8 0 0 8 0 -8 0 0 0 -8 0 8 0 4 0 -4 0 0 -4 0 0 4 0 -8 4 0 -4 -4 4 4 2 0 4 0 -4 0 -4 0 2 8 4 -8 0 0 0 0 -4 0 0 -12 -8 0 0 0 4 2 -4 4 0 0 4 -4 0 -4 4 0 0 8 2 0 0 -2 4 -8 -4 0 3 -8 -4 0 0 2 0 8 -8 2 -8 3 4 -8 0 0 4 0 0 4 0 0 0 2 0 0 4 -4 0 0 0 0 -4 8 0 -2 0 0 0 0 -4 0 4 2 0 4 4 0 4 0 0 4 -2 0 -1 -2 -1 1 3 4 -4 2 -4 0 -4 0 -8 -2 0 4 0 0 -4 0 8 0 -4 -1 0 0 0 -8 0 4 8 0 0 -2 0 0 4 0 0 2 0 0 -4 -4 -8 0 0 0 8 0 0 0 8 0 -8 2 0 -2 -8 0 1 4 0 0 0 -4 8 0 0 8 0 0 0 4 0 0 0 0 0 0 0 8 4 -8 0 0 0 0 0 -8 -4 4 0 0 8 8 0 0 0 8 0 0 0 8 0 8 -8 0 0 8 0 4 0 -4 0 -4 0 -4 0 0 -4 -4 8 0 0 0 0 0 0 -8 -8 -4 0 8 0 0 0 0 0 8 0 0 -8 0 0 0 0 0 0 4 8 -8 8 0 0 -8 0 -8 0 0 -8 0 -8 4 -8 4 0 4 4 -8 4 8 0 0 -8 0 4 0 0 0 0 0 0 8 -4 -4 0 0 0 0 0 0 0 0 0 0 0 0 8 0 -4 -8 -8 0 0 8 -2 8 0 -4 -4 0 0 0 0 0 0 0 -8 0 0 0 2 -8 0 4 0 -1 -8 0 0 0 0 0 0 0 4 0 1 0 8 0 0 -4 0 -8 -4 -8 0 0 2 4 4 0 0 0 0 0 0 0 8 0 -2 0 0 4 0 0 -4 4 -4 2 0 0 8 4 4 -2 0 4 -4 1 -4 -1 1 3 4 -6 0 0 8 4 -12 4 0 -4 6 -12 -8 0 -4 4 0 6 1 0 -8 -12 16 -4 4 0 8 0 -2 0 4 -4 -4 -8 -2 -16 0 8 8 0 4 4 8 4 -4 0 8 -8 0 -4 -2 0 -2 0 -8 1 8 -6 8 4 4 16 -8 0 -4 6 -4 -4 4 8 -4 -16 -8 -8 0 8 0 8 4 8 0 0 0 -8 0 0 0 0 0 0 0 -8 -6 0 0 0 0 4 0 4 16 4 0 8 0 8 4 8 4 8 0 -8 -4 4 -4 0 0 4 0 -4 8 2 8 -4 -8 -4 4 8 -4 -8 16 0 -16 0 -16 0 8 0 -8 0 0 -4 -16 -8 -4 8 -16 4 8 0 0 0 0 -8 16 16 0 0 0 4 0 8 0 -4 -4 0 0 4 0 0 -8 4 -4 0 -4 0 6 8 -4 0 -4 4 4 -8 -2 -8 0 -8 0 0 8 -8 -4 0 -8 -4 8 4 8 -8 4 2 -4 4 -8 -8 0 0 4 -4 -4 0 -4 0 6 16 8 2 -4 0 -4 4 -1 -16 4 0 -8 -2 8 -8 -8 -6 0 -1 4 -16 0 8 -4 0 -4 4 0 4 8 2 -8 -8 0 0 4 -8 0 -4 12 0 16 2 4 8 -4 -8 12 0 -4 -6 0 8 4 -4 4 0 0 8 -2 -4 -1 -2 -1 1 3 0 6 -4 -4 0 0 4 0 -4 -4 -2 -4 -8 4 0 0 -4 -2 1 0 -8 -4 0 4 0 0 0 -4 -2 8 -4 0 4 0 -2 0 0 4 4 0 4 4 0 -4 4 0 -8 0 -4 4 -2 8 -2 0 8 1 4 -6 0 4 0 0 16 0 0 -2 0 -4 0 0 -4 0 0 8 -4 0 0 4 -4 0 0 0 0 4 0 4 0 0 0 0 8 16 -6 0 0 0 0 4 0 4 -8 -4 8 0 -8 0 0 0 0 -4 0 8 0 4 -4 0 -4 -4 -8 -4 -8 2 0 0 0 0 0 0 4 8 8 0 -8 0 8 0 -16 0 0 0 0 -4 -8 0 0 0 8 0 -8 0 0 0 0 0 8 -8 8 -8 -4 -4 4 -4 0 0 4 0 0 4 -8 8 4 0 -4 0 -4 0 6 -8 4 0 0 0 4 8 -2 0 0 0 0 -8 -16 0 -4 0 0 0 0 0 -8 0 -4 2 4 4 -4 -4 4 4 -4 -4 -4 0 4 0 6 0 -8 2 4 0 0 0 -1 0 4 0 8 -2 0 0 0 2 0 -1 -4 0 0 0 0 -8 0 0 0 0 8 2 -4 -4 4 4 -4 0 0 4 4 0 0 2 0 8 0 0 4 4 0 2 4 -4 -4 0 0 4 4 -4 -2 0 -1 -2 -1 1 3 0 -2 -4 4 0 0 -4 0 -4 4 -2 4 -8 -4 0 0 4 -2 1 0 -8 4 0 4 0 0 0 4 -2 8 -4 0 -4 0 -2 0 0 -4 -4 0 -4 4 0 -4 4 0 8 0 4 4 -2 8 -2 0 -8 1 -4 2 16 4 0 0 0 0 0 -10 0 -4 0 0 4 0 0 8 4 0 0 -4 -4 0 0 0 0 -4 0 -4 0 0 0 0 -8 0 2 0 0 0 0 4 0 4 8 -4 -8 0 8 0 0 0 0 4 0 8 0 -4 4 0 4 -4 8 -4 8 -6 16 0 0 0 0 0 4 -8 -8 0 8 0 -8 0 0 0 -16 0 0 4 8 0 0 0 -8 0 -8 0 0 0 0 0 -8 8 -8 8 4 -4 -4 4 0 0 4 0 0 -4 8 -8 -4 0 -4 0 -4 0 -2 8 4 0 0 0 4 -8 6 0 0 0 0 -8 0 -16 4 0 0 0 0 0 -8 0 -4 2 4 -4 4 4 -4 -4 -4 -4 -4 0 4 0 -2 0 8 2 4 0 0 0 -1 0 4 0 -8 6 0 0 0 2 0 -1 4 0 0 0 0 -8 0 0 0 0 8 2 4 4 -4 -4 -4 0 0 4 -4 0 0 2 0 8 0 0 -4 -4 0 2 4 4 4 0 0 -4 4 4 -2 0 -1 -2 -1 1 3 4 -4 -2 0 0 0 0 0 2 0 4 0 -16 -4 0 0 0 -4 3 0 16 0 0 -4 0 0 0 0 -2 8 -4 0 0 -8 -2 0 -8 0 0 0 0 8 0 -8 4 0 0 0 0 8 2 -8 2 0 0 -3 0 -4 16 8 0 0 16 8 0 0 0 -8 0 0 0 0 8 -16 0 0 0 0 -8 0 0 -4 4 0 -8 0 -4 16 -4 -8 0 -16 4 0 0 0 4 -8 0 -8 0 8 0 0 0 0 0 0 0 0 -4 16 4 0 0 -4 0 8 0 8 0 4 -16 0 0 0 4 0 -8 0 0 16 0 16 0 4 16 8 16 -16 -16 0 0 0 0 0 0 0 -16 0 0 0 0 0 0 0 0 0 0 8 0 0 4 -4 -8 4 8 0 0 0 0 -4 8 -4 8 -4 -4 0 -8 4 0 0 -8 0 -4 0 4 0 -16 8 -16 -16 0 0 0 0 0 0 16 0 -8 -2 8 0 0 0 0 0 -4 -8 -8 -8 -4 0 4 0 0 -2 8 0 0 0 3 0 8 0 0 4 -8 0 0 4 0 -3 0 0 0 8 0 -8 0 0 0 0 -16 2 0 0 0 0 4 0 8 4 0 0 0 2 0 16 4 0 0 0 0 -4 -2 0 0 0 0 0 2 0 4 -4 1 -4 -1 1 3 -4 2 0 0 0 -4 -4 4 0 4 -2 -4 0 -8 -4 4 0 -2 1 0 0 -4 8 -4 -4 0 -8 0 -2 0 4 4 -4 8 -2 8 0 0 0 -8 4 -4 8 -4 -4 0 0 8 0 4 -2 0 -2 0 0 1 0 2 0 -4 -4 8 0 0 -4 6 -4 4 -4 0 4 8 8 0 0 8 -8 0 -4 8 -8 0 0 0 0 0 0 0 0 0 8 0 2 0 0 0 0 -4 0 -4 8 -4 8 8 -8 8 -4 8 -4 0 0 0 4 4 4 0 0 -4 -8 4 0 2 0 -4 8 -4 -4 0 4 0 -8 0 8 0 -8 0 0 0 0 0 0 -4 8 -8 4 -8 -8 4 0 0 0 0 0 0 -8 8 8 -8 0 -4 0 0 0 4 4 0 0 -4 -8 8 0 -4 4 0 4 0 -2 0 4 0 4 4 -4 0 -2 -8 0 -8 0 0 0 0 -4 0 -8 4 -8 4 0 0 -4 2 4 -4 0 0 0 0 4 4 4 0 -4 8 -2 -8 0 2 4 0 4 4 -1 -8 -4 8 0 -2 -8 -8 -8 2 0 -1 4 -8 8 -8 4 0 -4 -4 0 4 0 2 0 0 0 0 4 0 0 -4 4 8 -8 2 4 0 4 0 4 0 4 2 0 0 4 -4 -4 0 0 0 -2 4 -1 -2 -1 1 3 -4 2 0 0 0 4 4 -4 0 -4 -2 -4 0 -8 4 -4 0 -2 1 0 0 -4 -8 -4 4 0 8 0 -2 0 4 -4 -4 8 -2 -8 0 0 0 8 4 -4 8 -4 -4 0 0 -8 0 4 -2 0 -2 0 0 1 0 2 0 -4 4 -8 0 0 4 6 4 4 4 0 4 -8 8 0 0 -8 8 0 -4 8 8 0 0 0 0 0 0 0 0 0 -8 0 2 0 0 0 0 -4 0 -4 -8 -4 -8 8 8 8 4 -8 4 0 0 0 4 4 4 0 0 -4 8 4 0 2 0 4 -8 4 -4 0 4 0 8 0 -8 0 8 0 0 0 0 0 0 -4 -8 8 -4 8 8 -4 0 0 0 0 0 0 8 -8 -8 8 0 -4 0 0 0 4 4 0 0 -4 8 -8 0 -4 4 0 4 0 -2 0 4 0 -4 -4 -4 0 -2 -8 0 -8 0 0 0 0 -4 0 8 -4 8 -4 0 0 -4 2 4 -4 0 0 0 0 4 4 4 0 -4 -8 -2 8 0 2 4 0 -4 -4 -1 8 -4 -8 0 -2 -8 -8 -8 2 0 -1 4 8 -8 -8 -4 0 4 4 0 -4 0 2 0 0 0 0 4 0 0 -4 4 -8 8 2 -4 0 4 0 4 0 -4 2 0 0 4 4 4 0 0 0 -2 4 -1 -2 -1 1 3 0 -4 2 0 0 0 0 0 -2 0 4 -8 0 -8 0 0 0 -4 3 0 0 8 0 -4 0 0 0 0 -6 -8 4 0 8 0 -6 0 0 0 0 0 -8 -8 16 -8 4 0 0 0 0 8 6 8 6 0 0 -3 0 4 0 -8 0 0 0 0 0 0 0 8 0 0 -8 0 0 0 0 0 0 0 -8 16 0 12 -4 0 0 0 -4 0 12 0 0 0 -4 0 0 0 -4 8 0 8 0 8 0 -16 0 -16 0 0 0 0 4 0 0 8 8 -4 0 8 0 -8 0 -4 0 0 0 0 0 0 -8 0 0 0 0 16 0 -12 0 0 0 -16 0 -8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 -4 0 -8 4 0 -8 0 0 0 0 -8 4 -8 4 4 0 -8 4 0 0 8 0 4 16 -12 16 0 -8 0 0 8 0 0 0 0 0 0 0 -8 -6 8 8 0 0 0 0 -4 8 8 0 4 0 -4 0 0 -6 8 0 0 0 3 0 -8 0 0 -4 0 -16 -16 4 0 -3 -8 0 0 0 0 8 0 0 0 0 0 6 0 0 0 0 4 0 0 -4 -8 0 0 6 0 0 0 0 8 0 0 -4 2 0 8 0 0 0 -2 0 4 0 1 -4 -1 1 3 0 10 -4 -8 -8 -4 4 4 -4 -4 -2 -4 -8 12 -4 4 0 -2 1 0 -8 -4 0 4 -4 0 -8 -16 2 -8 4 4 12 8 2 0 -8 16 0 0 4 4 8 4 4 0 -24 -8 0 4 2 -8 2 0 8 1 16 10 8 4 12 0 -24 -8 12 -2 -4 4 -4 8 -12 0 8 8 -16 -8 0 0 4 8 0 0 0 8 0 8 0 0 0 0 -16 -24 10 16 16 -16 0 4 -16 4 16 4 -16 8 16 8 12 -8 -4 -8 0 8 -8 4 -12 0 -8 4 16 4 -24 -6 8 -4 -8 12 8 8 4 8 -16 0 16 0 -16 0 24 0 -8 0 0 -4 16 8 4 8 -16 -12 -8 16 16 -16 -16 -8 -16 16 -16 16 -8 -4 8 -8 0 -8 -4 0 0 12 16 -16 8 8 -4 0 -4 0 -10 -8 -4 0 -12 4 -4 24 6 -8 0 -8 0 8 24 -8 -4 0 8 4 8 -12 -8 -8 -4 -2 -4 12 -16 0 0 16 -4 -4 -4 8 -4 0 -10 0 -8 -2 -4 0 -12 4 -1 0 -4 0 24 6 -8 -8 -8 2 0 -1 -12 0 0 -8 4 8 -4 -4 0 4 8 -2 -16 0 0 16 -4 8 8 -4 4 0 0 -2 4 8 0 8 4 8 4 2 4 -8 -12 -4 -4 8 4 -8 -2 0 -1 -2 -1 1 3 -4 6 0 -4 -8 0 4 0 0 -4 -2 -4 0 0 0 0 4 -2 1 0 0 -4 8 -4 0 0 -16 4 2 0 -4 0 4 0 2 -8 8 -4 -4 8 4 -4 0 4 -4 0 16 0 4 4 2 0 2 0 0 1 -4 2 -8 -4 0 8 8 8 0 -10 0 -4 0 8 -4 -8 0 0 4 0 8 -4 4 0 -8 0 0 4 0 4 0 0 0 0 0 8 2 0 0 0 0 -4 0 -4 0 4 0 0 0 0 0 0 0 -4 0 0 -4 4 -4 0 -4 4 0 -4 16 -6 -8 0 0 0 4 8 4 0 0 0 0 0 0 0 -8 0 8 0 0 -4 0 0 0 0 0 0 0 0 0 0 0 -8 0 0 0 0 -4 -4 4 -4 0 -4 -4 0 0 4 0 0 4 4 4 0 4 0 -2 0 -4 0 0 0 4 -16 6 0 0 0 0 0 -8 8 -4 0 0 0 0 0 0 -8 -4 -2 -4 4 4 4 -4 -4 4 4 4 -8 4 -8 -2 8 0 -2 -4 0 0 0 -1 -8 4 8 -16 6 0 0 0 2 0 -1 -4 -8 8 0 0 0 0 0 0 0 0 -2 4 4 -4 -4 4 8 -8 4 4 -8 8 -2 0 0 4 8 4 4 0 2 0 -4 -4 0 0 4 0 -4 -2 4 -1 -2 -1 1 3 0 4 -2 -4 0 -4 -8 0 2 8 -4 -8 -8 8 0 0 0 4 -1 -8 8 8 8 0 4 0 0 -8 2 0 0 -4 -8 0 -2 0 0 4 -4 -8 0 0 8 0 0 8 -8 -8 0 0 -2 0 2 0 8 1 -4 0 0 0 4 -8 0 0 0 0 0 0 4 0 0 0 0 8 8 0 8 4 0 -8 0 0 0 0 0 4 4 0 0 0 0 0 0 8 0 8 0 0 0 0 0 0 -8 8 0 -8 -4 0 -4 0 4 -8 0 0 0 -4 4 0 -8 0 8 0 0 0 8 0 0 0 0 -8 8 0 8 0 0 0 0 0 0 0 0 0 -8 0 4 -8 0 0 8 -8 0 -8 0 0 -8 0 8 0 -4 0 -4 0 -4 0 0 4 0 0 8 0 0 0 0 0 0 0 0 8 0 -4 4 0 0 -8 0 8 0 -8 0 0 0 0 0 0 0 -4 8 0 -8 0 0 2 0 0 4 -4 0 -8 0 0 0 0 0 -8 0 0 -8 -2 0 -8 -4 0 -1 8 0 0 8 0 0 -8 8 -4 8 1 8 -8 0 0 -4 0 0 4 0 0 -8 -2 -4 4 0 8 0 0 0 0 -8 8 0 2 0 8 0 0 8 -4 4 4 -2 8 -8 0 -4 4 2 -8 4 0 1 -4 -1 1 3 0 2 -4 0 -8 4 4 -4 -4 -4 -2 4 -8 4 4 -4 -8 -2 1 0 -8 4 0 4 4 0 -8 8 2 -8 4 -4 4 8 2 0 -8 -8 8 0 -4 4 8 4 4 0 -8 8 -8 4 2 -8 2 0 -8 1 -8 2 -8 4 -12 0 -8 -8 -12 6 4 4 4 8 -4 0 8 8 8 8 0 8 4 8 0 0 0 0 0 0 0 0 0 0 0 -8 2 -16 -16 16 0 4 16 4 0 4 0 8 0 8 -12 8 4 0 0 8 -8 -4 -4 0 0 4 0 4 -8 2 -8 4 8 -12 8 8 4 -8 0 0 0 0 0 0 8 0 8 0 0 4 0 -8 -4 -8 0 12 -8 -16 -16 16 16 -8 0 0 0 0 0 -4 0 0 0 -8 -4 0 0 4 0 0 0 8 -4 0 -4 0 -2 8 -4 0 12 -4 -4 8 -2 -8 0 -8 0 8 8 8 4 0 -8 -4 -8 12 -8 -8 -4 -2 -4 4 8 -8 8 -8 -4 -4 -4 8 -4 0 -2 0 8 -2 -4 0 12 -4 -1 0 -4 0 8 -2 -8 -8 -8 2 0 -1 -4 0 0 -8 -4 8 4 4 0 -4 8 -2 8 -8 8 -8 -4 8 8 -4 -4 0 0 -2 -4 8 0 8 -4 0 -4 2 4 0 -4 4 4 0 4 0 -2 0 -1 -2 -1 1 3 0 0 -2 0 0 0 0 -4 2 0 -4 0 -8 0 -4 4 -4 4 -1 0 8 0 0 0 0 -8 8 4 -2 0 0 0 0 0 2 -8 0 -8 0 0 8 0 -8 0 0 0 8 0 4 0 2 0 -2 8 -8 1 8 0 0 0 0 0 0 0 -4 0 -4 0 0 0 -8 8 0 8 -4 8 0 0 0 8 -8 0 0 -4 0 8 -4 0 0 0 -8 0 0 0 8 0 0 0 8 0 8 0 0 -8 -8 8 0 -8 0 -4 4 -8 0 -8 8 4 8 0 0 0 -8 0 0 4 0 4 0 0 0 8 0 0 0 0 8 0 0 0 0 0 0 8 0 8 0 0 -8 -4 8 0 -8 0 -8 0 0 -8 0 8 -8 0 -8 4 -4 0 0 -4 0 -8 0 8 4 0 0 0 0 0 0 -8 0 4 0 -4 0 8 0 -8 0 8 0 0 0 0 -8 -8 -8 0 0 4 -8 0 0 -2 0 8 -8 0 -4 4 0 0 0 0 0 0 0 -8 8 2 0 0 0 4 -1 0 0 8 -8 0 0 8 -8 -4 0 1 0 0 -8 0 0 0 -4 0 8 4 -8 2 8 0 4 -4 0 0 0 0 0 0 8 -2 -4 8 0 0 0 0 0 4 -2 4 0 4 0 0 2 -4 4 0 1 -4 -1 1 3 12 -12 6 -8 16 -8 0 -24 -6 -16 4 8 16 -4 8 24 -8 -4 3 -16 -16 -8 -16 12 8 -16 -32 -8 6 24 12 24 -8 24 6 -16 24 -8 -8 -16 8 8 16 8 -12 16 16 -48 8 8 -6 -24 -6 16 16 -3 8 4 16 8 -24 16 16 -24 -24 -8 -24 8 -24 16 8 16 -24 16 8 -48 16 8 8 16 16 12 4 -8 24 -8 12 48 12 24 -16 -16 -4 -16 -16 -16 4 -8 -16 -8 -16 -8 -16 -16 -16 -16 24 48 24 -8 12 -16 12 -8 -8 12 -8 -8 -16 -8 -16 -4 -16 24 48 24 12 -16 -8 -16 -16 16 -16 48 -16 -12 16 -24 16 -48 -16 8 16 -48 -24 -48 16 -24 16 16 16 16 16 16 16 16 16 16 8 8 8 8 -12 -12 8 -12 -24 8 16 16 8 -12 8 -4 8 -4 4 16 8 -12 -24 -24 8 16 4 16 -12 16 -48 24 -16 -16 -8 -16 48 24 48 24 -16 -16 -8 6 -8 -8 -8 -8 -8 -8 12 -8 -8 24 12 -16 -4 -16 -16 6 -8 -16 24 24 3 -16 -8 -16 -16 -4 24 -16 -16 4 16 -3 8 16 16 -24 -8 -24 -24 -24 16 -8 16 -6 8 8 8 8 -12 16 -24 -12 8 16 16 -6 8 -16 12 -16 -8 -8 8 -4 6 -8 -8 24 24 8 -6 8 4 -12 1 -4 -1 1 3 0 -2 0 0 0 4 -4 0 0 -12 -2 -4 0 4 0 0 -4 -2 -3 8 0 -4 -8 0 4 0 0 4 6 0 0 -12 4 0 -6 0 0 0 0 8 -4 -4 8 -4 0 8 0 24 -4 -4 6 0 -6 0 0 -3 0 -2 0 4 12 -8 0 0 0 -2 0 4 -12 0 4 0 0 0 4 0 8 0 4 -8 0 -12 4 4 0 0 0 0 12 0 8 0 -2 8 0 -8 -4 4 0 -4 8 -4 0 -8 -8 8 12 0 -12 -4 0 0 0 -4 4 0 0 4 0 4 0 -2 0 0 24 0 0 0 -4 0 0 0 0 0 -8 12 0 0 0 0 0 4 0 0 12 -24 -8 0 0 8 0 -8 0 0 0 8 0 -8 0 4 0 -4 0 0 -4 0 0 -4 0 8 4 0 -4 -4 4 4 2 0 4 0 -12 0 -4 0 2 -8 -12 8 0 0 0 0 4 0 0 12 -24 0 0 0 4 -6 -4 -4 0 0 4 -4 0 -4 4 0 0 -8 2 0 0 6 4 -8 -12 0 3 8 -4 0 0 2 0 -8 8 2 -8 3 -4 8 0 0 -4 0 0 12 0 0 0 -6 0 0 4 -4 0 0 0 0 4 -8 0 6 0 0 0 0 4 0 -4 2 0 4 -4 0 12 0 0 4 -2 0 -1 -2 -1 1 3 0 -6 0 4 0 0 -12 -4 0 4 -2 4 0 -4 -4 -4 8 -2 -3 16 0 4 0 0 0 -8 8 -8 2 0 0 0 -4 0 -2 -8 0 4 -4 0 4 4 8 -12 0 16 0 0 8 -4 2 0 -2 -8 0 -3 4 6 0 -4 0 0 0 0 4 6 12 -12 0 0 -4 -8 0 0 -8 8 0 -4 12 -8 8 4 -4 8 0 4 0 0 -4 0 0 0 6 -16 -8 16 4 -4 8 4 0 -12 8 -8 0 8 0 8 0 -8 0 0 0 4 -4 0 -4 12 -8 -12 0 6 0 12 0 4 0 0 -4 0 -8 0 8 0 0 -4 0 0 0 0 0 -4 8 -8 0 0 0 -4 0 -16 -8 16 8 0 -8 0 8 0 -4 4 4 -8 0 0 -12 0 0 4 -8 0 8 0 4 4 -4 -4 -6 0 12 0 0 -12 12 0 -6 -8 4 8 0 0 0 0 -4 8 -8 0 0 -4 0 0 4 -2 -12 4 -4 4 -8 8 0 4 -4 0 0 0 -6 8 0 2 12 -16 0 -12 3 0 12 -8 0 -6 0 -8 8 2 -16 3 4 0 -8 0 0 0 4 0 8 4 0 -2 -4 4 -8 8 0 0 0 0 -4 0 8 2 4 0 0 0 -4 -4 0 2 0 8 4 4 0 -4 0 8 -2 0 -1 -2 -1 1 3 4 -8 2 0 0 0 0 -4 -2 -8 4 0 0 -4 4 4 -4 -4 -1 8 0 0 0 0 0 0 -8 -4 2 0 0 8 0 0 -2 -8 0 0 0 0 0 0 0 -8 0 -8 0 0 4 -8 -2 0 2 0 0 1 0 0 0 0 8 0 0 0 -4 0 4 0 0 0 0 8 0 0 4 8 0 0 8 0 8 0 0 -4 8 0 -4 0 0 -8 0 0 0 8 0 8 0 0 0 0 0 8 8 0 0 0 -8 -8 0 -4 -4 0 -4 0 0 4 0 -8 8 0 0 0 0 -4 0 4 -4 0 8 0 8 0 8 0 0 0 0 8 0 0 0 0 -8 8 0 0 0 -4 0 -8 0 -8 0 0 -8 0 -8 0 0 -8 0 4 4 4 8 -4 -8 0 -8 0 4 4 0 0 0 0 0 0 -8 4 8 4 0 0 0 0 0 0 0 0 0 0 0 0 -8 0 0 4 0 0 8 2 -8 0 0 0 -4 -4 0 0 0 0 0 0 0 -8 0 -2 8 8 -8 -4 -1 0 0 -8 0 0 0 0 0 4 -8 1 0 0 8 0 0 0 -4 -8 0 -4 0 -2 0 0 4 4 0 0 0 0 0 0 8 2 4 0 4 0 0 0 0 -4 2 -4 0 4 8 0 -2 4 4 -4 1 -4 -1 1 3 0 -6 -4 8 8 4 -12 4 -4 4 -2 -4 -8 -4 -4 4 0 -2 1 -16 -8 -4 0 4 4 16 8 0 2 -8 4 -4 -4 -8 2 0 8 0 0 0 4 4 -8 4 4 -16 8 8 0 4 2 -8 2 16 8 1 0 2 -8 4 -12 0 -8 8 12 6 -4 4 4 -8 4 0 -8 8 0 -8 0 0 4 -8 0 0 0 8 0 8 0 0 0 0 0 -8 2 0 0 0 0 4 0 4 0 4 0 -8 0 -8 -12 -8 4 -8 0 8 8 4 4 0 -8 4 0 4 8 2 -8 -4 8 12 -8 -8 4 8 0 0 0 0 0 0 8 0 8 0 0 -4 0 8 -4 -8 0 -12 -8 0 0 0 0 8 0 0 0 0 -8 -4 8 -8 0 8 -4 0 0 -4 0 0 8 -8 -4 0 -4 0 -2 -8 -4 0 12 4 -4 -8 -2 8 0 8 0 8 8 8 -4 -16 8 -4 -8 -12 -8 8 -4 -2 -4 -4 0 0 0 0 -4 -4 -4 -8 -4 0 -2 0 -8 -2 -4 16 12 4 -1 0 -4 0 -8 -2 8 8 8 2 16 -1 4 0 0 8 -4 8 -4 4 -16 4 8 -2 0 0 0 0 -4 -8 -8 -4 4 0 0 -2 4 8 0 -8 4 -8 -4 2 4 8 4 -4 4 -8 4 8 -2 0 -1 -2 -1 1 3 4 -12 -2 8 16 8 0 8 2 -16 4 -8 -16 -12 8 -8 -8 -4 3 -16 16 8 16 -4 -8 16 -32 -8 -2 -8 12 8 8 -24 -2 -16 8 8 8 16 -8 8 -16 8 4 16 16 -16 8 8 2 8 2 -16 16 -3 -8 4 -16 8 -8 -16 -16 -8 8 -8 -24 8 24 16 -8 16 24 -16 8 16 -16 -8 8 -16 16 -4 4 -8 8 8 12 16 -4 8 16 16 -4 -16 16 -16 4 -8 16 -8 16 -8 -16 16 16 16 8 -16 -24 -8 -4 16 4 8 8 12 8 -8 -16 -8 -16 -4 16 24 16 -8 4 -16 -8 -16 -16 -16 -16 -16 16 4 -16 -8 -16 16 16 -8 16 16 24 -16 -16 8 -16 16 -16 16 -16 16 16 -16 16 -16 -8 8 -8 8 4 -4 8 -12 -8 -8 16 -16 8 -4 8 -4 8 -4 4 16 8 -12 -8 -24 8 16 4 -16 4 -16 -16 -8 16 16 8 16 -16 -24 16 -8 16 -16 -8 -2 -8 8 8 8 -8 -8 -4 -8 -8 8 12 16 -4 -16 -16 -2 -8 -16 8 24 3 16 -8 -16 -16 -4 -24 16 16 4 16 -3 -8 -16 16 24 8 8 8 -8 -16 -8 -16 2 -8 -8 8 8 4 16 -8 -12 -8 -16 16 2 8 16 4 -16 8 8 -8 -4 -2 -8 8 -8 8 -8 2 8 4 -4 1 -4 -1 1 3 -4 -2 0 4 -8 0 -4 0 0 4 -2 4 0 -8 0 0 -4 -2 1 0 0 4 -8 -4 0 0 0 -4 2 0 -4 0 -4 0 2 8 8 4 4 -8 -4 -4 0 4 -4 0 0 0 -4 4 2 0 2 0 16 1 4 -6 8 -4 0 -8 -8 8 0 -2 0 -4 0 8 4 8 0 0 -4 0 -8 4 4 0 8 0 0 -4 0 -4 0 0 0 0 0 -8 -6 0 0 0 0 -4 0 -4 0 4 0 0 0 0 0 0 0 4 0 0 -4 -4 4 0 4 4 0 -4 0 2 8 0 0 0 4 8 4 16 0 0 0 0 0 0 8 0 -8 0 0 4 0 0 0 0 0 0 0 0 0 0 0 -8 0 0 0 0 4 -4 -4 4 0 -4 -4 0 0 -4 0 0 -4 4 4 0 4 0 6 -16 -4 0 0 0 4 0 -2 0 0 0 0 0 8 -8 4 0 0 0 0 0 0 -8 -4 -2 -4 -4 -4 -4 4 4 4 4 4 -8 4 8 6 -8 -16 -2 -4 0 0 0 -1 8 4 -8 0 -2 0 0 0 2 0 -1 4 8 -8 0 0 0 0 0 0 0 0 -2 -4 -4 4 4 4 8 -8 4 -4 8 -8 -2 0 0 4 8 -4 -4 0 2 0 4 4 0 0 -4 0 4 -2 4 -1 -2 -1 1 3 0 -4 -2 4 0 4 0 0 2 -8 -4 0 -8 0 0 0 -8 4 -1 -8 8 0 -8 0 -4 0 0 0 2 0 0 4 0 0 -2 0 0 -4 4 8 -8 0 -8 0 0 8 -8 8 8 0 -2 0 2 0 8 1 4 0 0 0 -4 8 0 0 0 0 0 0 -4 0 8 0 0 8 0 0 -8 -4 0 8 0 0 0 8 0 -4 4 0 0 0 0 0 0 8 0 8 0 0 0 0 0 0 8 -8 0 8 4 0 4 8 4 -8 0 8 -8 -4 -4 0 8 0 8 0 0 0 -8 0 0 0 0 -8 -8 0 -8 0 0 0 0 0 0 0 0 -8 8 0 -4 8 0 0 8 -8 0 -8 0 0 8 0 -8 0 4 0 4 -8 -4 0 0 4 0 8 -8 0 -8 0 0 0 0 0 0 8 0 -4 -4 0 0 -8 0 -8 0 8 0 0 0 0 8 0 0 4 -8 0 -8 0 0 2 0 -8 -4 4 -8 0 0 0 0 0 0 8 0 0 -8 -2 0 -8 4 0 -1 -8 0 0 8 0 0 8 -8 -4 8 1 0 8 0 0 4 0 0 -4 0 0 -8 -2 4 -4 8 0 0 0 0 0 0 -8 0 2 0 8 0 0 0 4 -4 4 -2 0 0 0 4 -4 2 0 4 0 1 -4 -1 1 3 0 -6 -4 8 -8 -4 -12 4 -4 12 -2 12 -8 -4 -4 4 16 -2 1 0 -8 12 0 4 -4 0 -8 0 2 -8 4 4 -4 8 2 0 -8 0 -16 0 -12 4 8 4 4 0 8 -8 16 4 2 -8 2 0 -24 1 0 -6 -24 4 12 0 8 -8 12 14 -4 4 -4 8 4 0 8 8 0 -8 0 -16 4 8 0 0 0 -8 0 -8 0 0 0 0 16 8 -6 16 16 -16 0 4 -16 4 -16 4 16 8 -16 8 12 -8 -4 8 0 8 -8 -12 4 0 8 4 -16 4 8 10 -24 -4 -8 12 8 8 4 -24 16 0 -16 0 16 0 -8 0 24 0 0 12 -16 8 4 8 16 -12 -8 16 16 -16 -16 -8 16 -16 16 -16 8 -4 -8 8 0 -8 -4 0 0 -4 -16 16 -8 8 -4 0 -4 0 6 24 -4 0 -12 4 -4 -8 -10 -8 0 -8 0 8 -8 24 12 0 8 4 8 -12 -8 -8 -4 -2 -4 -4 0 16 -16 0 -4 -4 -4 8 -4 0 6 0 24 -2 -4 0 -12 4 -1 0 -4 0 -8 -10 -8 -8 -8 2 0 -1 4 0 0 -8 4 8 -4 -4 0 4 8 -2 0 16 -16 0 -4 8 8 -4 -12 0 0 -2 4 8 0 8 -12 -8 4 2 4 8 4 -4 -4 -8 4 8 -2 0 -1 -2 -1 1 3 0 -8 -2 8 0 0 0 4 2 -8 -4 8 -8 -8 4 -4 4 4 -1 0 8 -8 0 0 0 -8 -8 -4 -2 0 0 0 8 0 2 8 0 0 -8 0 0 0 8 0 0 0 8 0 -4 0 2 0 -2 8 -8 1 0 0 0 0 0 0 0 0 4 0 4 0 0 0 0 -8 0 8 4 -8 0 8 0 -8 8 0 0 4 0 0 -4 0 0 0 8 0 0 0 8 0 0 0 8 0 -8 0 0 8 8 -8 0 8 0 4 4 -8 0 0 0 4 0 0 0 0 -8 0 0 -4 0 -4 0 0 0 8 0 0 0 0 -8 0 0 0 0 0 0 0 0 -8 0 0 8 4 8 0 -8 0 -8 0 0 8 0 -8 0 0 0 -4 -4 0 0 -4 0 0 0 -8 -4 0 0 0 0 0 0 -8 0 4 0 4 0 8 0 8 0 -8 0 0 0 0 0 -8 8 0 0 -4 -8 0 0 -2 0 0 0 -8 4 -4 0 0 0 0 0 0 0 8 8 2 0 0 0 -4 -1 0 0 -8 -8 0 0 -8 8 -4 0 1 -8 0 8 0 0 0 4 0 8 -4 -8 2 0 8 -4 4 0 0 0 0 8 0 -8 -2 4 8 0 0 -8 8 0 4 -2 -4 8 -4 0 -8 2 4 4 0 1 -4 -1 1 3 4 -4 -2 0 -16 0 0 0 2 0 4 8 -16 4 0 0 0 -4 3 0 16 -8 0 -4 0 0 16 0 6 -8 -4 0 -8 8 6 0 -24 0 0 0 8 8 16 8 4 0 -16 0 0 8 -6 8 -6 0 -16 -3 0 4 -16 8 0 0 -16 24 0 8 0 8 0 -16 8 0 -8 -16 0 0 0 0 8 16 0 12 4 0 8 0 -4 16 12 8 0 16 -4 0 0 0 4 -8 0 -8 0 -8 0 -16 0 -16 0 0 0 0 -4 16 4 -8 -8 -4 0 -8 0 -8 16 -4 16 0 0 0 4 16 -8 16 0 -16 0 -16 0 -12 -16 -8 -16 16 16 8 0 0 0 0 0 0 -16 0 0 0 0 -16 0 0 0 0 0 8 0 0 4 -4 8 4 -8 8 0 0 0 -4 8 -4 8 -4 4 -16 8 4 0 0 8 -16 4 16 -12 16 -16 -8 16 16 -8 0 0 0 0 0 16 16 -8 6 -8 -8 0 0 0 0 -4 -8 -8 -24 -4 0 -4 0 16 6 -8 0 0 0 3 0 -8 0 16 -4 8 -16 -16 4 0 -3 8 0 0 -8 0 8 0 0 0 0 -16 -6 0 0 0 0 4 -16 24 4 8 0 0 -6 0 16 4 16 -8 0 0 -4 -2 0 -8 0 0 0 2 0 4 -4 1 -4 -1 1 3 0 -4 2 0 -16 0 0 0 -2 0 4 0 0 0 0 0 0 -4 3 0 0 0 0 -4 0 0 16 0 2 -8 -12 0 0 0 2 0 0 0 0 0 0 -8 0 8 4 0 16 0 0 8 -2 8 -2 0 16 -3 0 -4 0 -8 0 0 0 0 0 8 0 -8 0 -16 0 0 0 0 0 0 0 0 8 0 0 -4 -4 0 0 0 12 0 -4 0 0 0 4 0 0 0 -4 8 0 8 0 -8 0 0 0 0 0 0 0 0 4 0 0 0 0 12 0 -8 0 8 -16 4 0 0 0 0 0 16 -8 -16 0 0 0 16 0 4 0 0 0 -16 0 0 0 0 0 0 0 0 0 0 0 0 0 -16 0 0 0 0 0 8 0 0 -4 0 8 -12 0 0 0 0 0 0 -8 4 -8 4 -4 16 8 -12 0 0 -8 16 -4 0 4 0 0 -8 0 0 0 0 0 0 0 0 0 16 -8 2 -8 0 0 0 0 0 -4 8 8 0 -12 0 4 0 -16 2 -8 0 0 0 3 0 8 0 -16 4 0 0 0 4 0 -3 0 0 0 0 0 8 0 0 0 0 0 -2 0 0 0 0 4 -16 0 12 0 0 0 -2 0 0 0 16 0 0 0 -4 2 0 0 0 0 0 -2 0 4 0 1 -4 -1 1 3 -8 2 4 0 -8 4 -4 -12 4 12 -2 -4 8 -12 -4 -12 8 -2 1 0 8 -4 0 4 4 0 -8 -8 2 8 4 12 -4 -8 2 0 -8 -8 8 0 4 4 -8 4 4 0 -8 8 8 4 2 8 2 0 -8 1 -8 2 8 4 4 0 8 -8 -4 6 -4 4 4 8 4 0 -8 -8 -8 -8 0 8 4 -8 0 0 0 0 0 0 0 0 0 0 0 8 2 16 -16 -16 0 4 16 4 0 4 0 -8 0 -8 4 -8 4 0 0 -8 0 4 4 0 0 4 0 4 -8 2 8 -4 8 -4 0 8 4 -8 0 0 0 0 0 0 -8 0 -8 0 0 -4 0 8 -4 -8 0 4 8 16 -16 -16 16 -8 0 0 0 0 0 -4 0 0 0 0 -4 0 0 -4 0 0 0 0 -4 0 -4 0 -2 8 -4 0 -4 4 -4 8 -2 8 0 8 0 -8 -8 -8 -4 0 8 -4 -8 4 8 -8 -4 -2 -4 -4 8 -8 -8 8 -4 -4 -4 8 -4 0 -2 0 8 -2 -4 0 -4 4 -1 0 -4 0 8 -2 8 8 8 2 0 -1 4 0 0 8 -4 -8 12 -12 0 4 -8 -2 8 -8 -8 8 -4 8 8 -4 4 0 0 -2 4 -8 8 8 4 0 -4 2 -4 0 4 12 -12 0 -4 0 -2 8 -1 -2 -1 1 3 -8 2 4 0 -8 -4 4 12 4 -12 -2 -4 8 -12 4 12 -8 -2 1 0 8 -4 0 4 -4 0 -8 8 2 8 4 -12 -4 -8 2 0 -8 8 -8 0 4 4 -8 4 4 0 -8 -8 -8 4 2 8 2 0 -8 1 8 2 8 4 -4 0 8 -8 4 6 4 4 -4 8 4 0 -8 -8 8 8 0 -8 4 -8 0 0 0 0 0 0 0 0 0 0 0 8 2 -16 16 16 0 4 -16 4 0 4 0 -8 0 -8 -4 8 -4 0 0 -8 0 4 4 0 0 4 0 4 -8 2 8 4 -8 4 0 8 4 -8 0 0 0 0 0 0 -8 0 -8 0 0 -4 0 -8 4 8 0 -4 8 -16 16 16 -16 -8 0 0 0 0 0 -4 0 0 0 0 -4 0 0 -4 0 0 0 0 -4 0 -4 0 -2 8 -4 0 4 -4 -4 8 -2 8 0 8 0 -8 -8 -8 -4 0 -8 4 8 -4 8 -8 -4 -2 -4 -4 -8 8 8 -8 -4 -4 -4 8 -4 0 -2 0 8 -2 -4 0 4 -4 -1 0 -4 0 8 -2 8 8 8 2 0 -1 4 0 0 8 4 -8 -12 12 0 -4 -8 -2 -8 8 8 -8 -4 8 8 -4 4 0 0 -2 -4 -8 8 8 4 0 4 2 -4 0 4 -12 12 0 -4 0 -2 8 -1 -2 -1 1 3 -4 -4 6 0 -16 0 0 0 -6 0 4 -8 16 -4 0 0 0 -4 3 0 -16 8 0 12 0 0 16 0 -2 -8 -4 0 8 -8 -2 0 -8 0 0 0 -8 8 -16 8 -12 0 -16 0 0 8 2 8 2 0 -16 -3 0 4 16 8 0 0 16 8 0 8 0 8 0 -16 -8 0 8 16 0 0 0 0 8 -16 0 -4 4 0 24 0 -4 -16 -4 24 0 -16 -4 0 0 0 4 -8 0 -8 0 -8 0 16 0 16 0 0 0 0 12 -16 -4 8 8 -4 0 -8 0 -8 16 -4 -16 0 0 0 -4 16 -8 16 0 16 0 -16 0 4 16 -24 16 16 -16 -8 0 0 0 0 0 0 16 0 0 0 0 -16 0 0 0 0 0 8 0 0 -12 4 8 4 -24 -8 0 0 0 4 8 -4 8 -4 4 -16 8 4 0 0 8 -16 4 -16 4 -16 16 -8 -16 -16 8 0 0 0 0 0 -16 16 -8 -2 -8 8 0 0 0 0 12 -8 -8 -8 -4 0 -4 0 16 -2 -8 0 0 0 3 0 -8 0 16 -4 -8 16 16 4 0 -3 -8 0 0 8 0 8 0 0 0 0 16 2 0 0 0 0 -12 -16 8 4 -8 0 0 2 0 -16 -4 16 8 0 0 -4 6 0 8 0 0 0 -6 0 4 4 1 -4 -1 1 3 -4 0 2 0 -8 0 -8 -4 -2 8 -4 -8 8 4 4 4 12 4 -1 -8 -8 8 8 0 0 0 -8 -4 2 0 0 -8 0 0 -2 0 0 -8 8 -8 0 -8 0 0 0 8 8 0 -12 0 -2 0 2 0 -8 1 8 0 -8 8 -8 -8 8 0 -4 -8 4 8 0 8 8 0 0 -8 4 8 8 -8 0 0 16 0 0 4 -8 0 -4 0 0 8 -8 -8 0 -8 0 -8 0 -8 0 8 8 0 16 0 -8 0 8 -8 0 4 -4 8 4 0 -8 4 0 0 16 -8 -8 8 8 -4 0 4 4 -8 0 8 0 0 0 0 8 0 8 -8 -8 0 0 0 0 8 0 0 -8 -4 -8 8 0 8 0 8 0 -8 -16 8 0 0 0 -4 4 -4 0 -4 8 8 -16 8 -4 -4 8 0 -8 0 0 -8 0 4 -8 4 8 8 -8 0 0 0 0 0 -8 8 0 0 -8 0 0 4 8 -8 0 2 0 -8 -8 8 12 -4 0 -8 8 0 0 -8 0 0 8 -2 0 -8 8 -4 -1 8 -8 -16 -8 8 0 0 0 -4 8 1 0 -8 16 0 0 0 -4 8 0 -4 8 -2 8 -8 -12 4 0 -8 0 0 -8 8 0 2 4 -8 -4 8 8 0 0 4 2 4 0 4 -8 0 -2 -4 4 4 1 -4 -1 1 3 -4 0 2 0 -8 0 0 4 -2 -8 -4 -8 8 4 -4 -4 -4 4 -1 -8 -8 8 -8 0 0 0 8 12 2 0 0 8 0 0 -2 -16 0 8 -8 8 0 8 0 0 0 8 8 0 4 0 -2 0 2 0 -8 1 -8 8 -8 -8 8 8 8 0 4 0 -4 -8 0 8 8 16 0 -8 -12 -8 -8 8 0 0 0 0 0 4 -8 0 -4 0 0 8 8 -8 -8 -8 0 -8 0 8 0 -8 -8 0 0 0 8 0 -8 8 0 4 -4 8 4 0 -8 4 0 0 0 8 -8 0 8 4 0 -4 4 -8 0 8 16 0 16 0 -8 0 8 -8 -8 0 0 0 -16 -8 0 0 8 4 -8 8 0 8 0 8 -16 8 0 -8 0 0 0 -4 4 -4 0 -4 8 8 0 -8 -4 -4 -8 0 8 0 8 -8 0 4 8 -4 -8 8 0 0 0 0 0 0 -8 8 0 0 8 0 0 -4 8 -8 0 2 0 -8 8 -8 -4 12 0 8 -8 0 0 8 -8 -16 8 -2 0 -8 -8 4 -1 -8 8 0 -8 0 0 0 0 -4 8 1 0 8 0 0 0 0 4 -8 0 4 8 -2 -8 8 4 -12 0 -8 0 0 -8 -8 16 2 -4 -8 -4 8 8 0 0 4 2 4 0 -4 8 0 -2 -4 4 4 1 -4 -1 1 3 -4 -4 2 4 -8 -4 0 8 -2 -8 -4 0 8 -4 0 -8 -8 4 -1 0 -8 0 0 0 4 -8 0 8 -2 0 0 4 8 0 2 8 0 12 -4 -16 8 8 0 0 0 0 -8 8 8 0 2 0 -2 8 8 1 -12 -8 8 -8 -4 0 -8 0 -8 0 0 8 4 8 0 -8 0 -8 -8 0 16 4 0 0 8 0 0 0 8 4 4 0 0 -8 0 8 8 0 -8 0 0 8 -8 -8 16 0 8 0 0 0 4 0 -4 0 -4 8 4 -8 0 -4 4 0 8 -8 8 0 -8 0 -8 8 4 -8 0 -8 -8 0 -8 0 16 0 -8 8 8 0 0 8 8 0 4 8 -16 -8 -8 0 8 0 8 8 8 -16 -8 0 -4 0 -4 0 4 -4 0 4 -8 0 -8 0 0 -4 -8 0 8 0 -8 8 0 -4 -4 0 8 -8 0 0 0 0 0 0 8 -8 -8 -8 0 -4 -8 8 8 -8 0 -2 0 0 12 -4 -8 8 0 8 -8 0 0 -16 8 8 -8 2 0 0 4 0 -1 0 -8 -8 8 0 0 0 0 -4 0 1 -8 0 8 0 -4 0 8 -4 8 0 8 2 -12 4 8 -8 0 -8 0 0 0 16 -8 -2 0 -8 -4 8 0 4 4 4 2 0 8 -8 4 -4 -2 0 4 4 1 -4 -1 1 3 -4 -4 2 4 -8 4 0 -8 -2 0 -4 0 8 -4 0 8 8 4 -1 0 -8 0 -16 0 -4 -8 16 -8 -2 0 0 -4 8 0 2 -8 0 -4 12 0 8 -8 0 0 0 0 -8 -8 -8 0 2 0 -2 8 8 1 4 0 8 8 4 16 -8 0 8 8 0 -8 -4 8 0 8 0 -8 8 0 0 -12 0 0 -8 0 0 0 8 4 4 0 0 -8 16 8 0 0 -8 0 0 -8 -8 8 0 0 -8 0 16 0 -4 0 4 0 -4 8 4 -8 0 -4 4 0 -8 8 8 -8 -8 0 8 -8 4 -8 0 -8 8 0 8 0 0 0 -8 8 8 0 0 8 -8 0 -4 -8 0 8 -8 0 8 0 8 8 -8 0 8 -16 -4 0 -4 0 4 -4 0 4 -8 0 8 -16 0 -4 8 0 -8 0 0 8 0 -4 4 0 -8 -8 8 0 0 0 0 0 8 -8 -8 -8 0 4 8 -8 8 -8 0 -2 0 0 -4 12 8 -8 0 -8 8 0 0 0 0 -8 -8 2 0 0 -4 0 -1 -16 8 8 8 -8 0 0 0 -4 0 1 -8 16 -8 0 4 0 -8 4 8 0 8 2 4 -12 -8 8 0 -8 0 0 0 0 8 -2 0 -8 -4 8 0 4 -4 4 2 0 8 8 -4 -4 -2 0 4 4 1 -4 -1 1 1 8 -8 2 -8 16 0 -8 0 2 -8 0 -8 0 0 0 0 8 0 3 -16 0 -8 0 -4 0 -16 16 8 2 8 4 0 -8 0 2 0 0 8 8 0 -8 0 16 16 -4 -16 -16 0 8 0 2 8 2 -16 -16 3 8 -8 0 0 0 0 0 0 0 -4 0 -16 0 16 -8 0 0 0 8 0 0 8 16 16 0 -4 -4 -8 0 -8 -4 -32 -4 0 0 0 -8 16 16 16 -4 0 16 0 0 16 0 16 0 16 0 0 0 -8 4 0 8 -8 -8 -4 -8 16 0 -16 -16 -8 0 0 0 0 8 16 0 -16 0 0 0 -16 0 -4 0 0 0 -16 0 -8 0 0 0 0 0 0 0 16 16 16 16 16 0 0 0 0 -8 0 -8 -8 4 8 16 -4 0 -8 0 0 -8 8 0 -4 0 -4 -8 -16 16 -4 0 0 -16 -16 -8 16 -4 16 -32 8 0 0 -8 -16 0 0 0 0 0 16 0 2 16 -8 8 8 8 8 -4 0 0 0 4 0 -8 0 -16 2 16 -16 0 0 3 0 -16 0 -16 -8 0 16 16 0 -16 3 -8 0 0 0 0 8 0 0 -16 0 0 2 8 8 8 8 -4 16 0 4 -8 0 0 2 0 0 8 16 -8 -8 0 0 2 -8 -8 0 0 -8 2 -8 0 8 1 0 1 1 1 4 -4 2 -8 -8 0 0 4 2 0 8 0 -8 -4 4 4 4 8 -1 -8 -8 0 -8 0 0 0 -8 4 2 0 0 8 -8 0 -2 16 0 0 0 8 8 0 0 -8 0 -8 -8 0 4 -8 2 0 -2 0 8 -1 0 4 -8 0 -8 -8 8 0 4 -4 -4 0 0 8 0 16 0 8 4 -8 8 0 8 0 0 0 0 12 8 8 -4 0 0 -8 -8 8 4 -8 0 -8 0 0 0 0 8 -8 -16 0 -8 0 -8 -8 0 12 -4 8 -4 8 0 4 8 8 -16 0 -8 -4 -8 -4 0 4 -4 8 -8 8 0 0 0 0 8 0 8 -8 -8 0 0 8 0 -8 0 0 8 4 8 -8 0 -8 0 8 0 8 -16 -8 8 -8 8 12 -4 -4 8 4 8 0 -16 -8 12 -4 0 0 0 0 4 8 -8 -4 -8 -4 0 -8 -4 0 0 0 0 0 8 -8 8 0 -8 0 0 4 8 8 -8 2 8 0 0 0 4 4 0 0 0 0 0 8 4 16 8 -2 -8 -8 -8 -4 -1 -8 0 0 -8 -4 0 0 0 8 -8 -1 -8 -8 0 0 0 0 4 8 0 4 -8 2 0 0 4 4 0 -8 0 0 0 8 16 -2 4 -8 4 -8 0 -8 0 8 2 -4 -8 4 8 -8 2 -4 0 4 1 0 1 1 1 0 4 -2 -8 8 0 8 -4 -2 -8 0 0 0 -8 4 -4 4 0 -1 0 0 0 -8 0 0 8 8 -4 -2 0 0 0 -8 0 2 0 0 8 0 8 0 0 8 0 0 0 0 0 4 0 -2 0 2 8 0 -1 8 -4 -8 0 0 -8 8 0 -4 4 -4 0 0 -8 8 0 0 0 -4 8 8 0 0 -8 0 0 0 -4 0 0 -4 0 0 0 0 8 -4 0 -8 0 0 0 -8 0 0 0 8 -8 0 8 0 8 0 -4 4 0 0 0 8 4 0 0 8 0 0 4 -8 -4 0 -4 0 -8 0 0 -8 0 -8 0 0 0 8 0 -8 0 0 0 -8 8 0 0 0 -4 0 0 -8 0 -8 -8 -8 0 8 0 0 0 0 -4 4 0 0 4 0 8 8 0 -4 0 0 0 0 0 -4 0 0 -4 0 -4 0 0 4 8 0 -8 0 0 8 -8 0 8 8 0 0 -4 0 -8 0 -2 0 8 8 0 4 -4 0 0 0 0 0 8 -4 0 0 2 0 0 0 -4 -1 -8 0 0 0 4 0 8 -8 0 0 -1 -8 -8 0 0 0 0 -4 0 8 4 0 -2 8 0 4 -4 0 8 0 0 0 8 0 2 4 0 0 8 0 -8 0 0 -2 4 -8 -4 0 -8 -2 4 0 0 1 0 1 1 1 0 0 -2 -4 8 -4 0 0 -2 0 0 0 0 -8 0 0 0 0 -1 8 0 0 0 0 -4 0 0 8 2 0 0 4 -8 0 -2 8 0 -4 4 0 0 0 -8 0 0 8 0 -8 0 0 2 0 -2 0 0 -1 -4 4 8 0 4 0 -8 0 0 -4 0 0 4 -8 8 8 0 0 8 0 0 4 0 8 -8 0 0 -8 0 4 4 0 0 0 8 -8 4 -8 0 -8 0 0 0 0 -8 0 0 8 8 -8 4 0 4 -8 4 0 0 0 8 -4 4 0 0 0 0 -4 8 0 -8 0 0 -8 0 0 0 0 0 0 -8 0 -8 0 8 0 0 0 0 0 4 -8 -8 0 0 -8 0 -8 0 -8 0 -8 0 8 4 0 4 -8 4 0 0 -4 0 8 0 8 -8 0 0 0 0 0 4 0 0 4 4 0 0 0 -4 -8 0 8 0 0 -8 8 0 0 0 4 -8 0 0 -8 0 2 0 8 -4 4 0 8 0 0 0 0 0 0 4 8 0 -2 0 8 4 0 -1 0 0 -8 0 -4 0 -8 8 0 8 -1 -8 0 -8 0 -4 0 0 4 0 0 0 2 -4 4 0 8 0 8 0 0 0 0 8 -2 0 0 0 8 0 -4 -4 0 -2 0 -8 0 4 -4 -2 0 0 0 1 0 1 1 1 4 -2 0 -8 8 -4 4 -4 0 12 6 -4 -8 -16 -4 4 8 -6 1 0 8 4 -16 -4 4 0 -8 8 -2 0 4 -4 12 -8 -2 16 0 0 0 0 -4 4 8 4 4 0 -8 8 -8 -4 2 0 2 0 8 -1 0 2 -8 4 -4 16 8 0 4 -10 4 -4 -4 8 4 -16 8 -8 -8 -8 0 0 4 8 0 0 0 0 0 8 0 0 0 0 -16 -8 -2 0 0 0 0 -4 0 -4 0 -4 16 -8 16 -8 4 8 4 0 0 8 -4 4 -4 0 -8 -4 -16 4 8 6 8 -4 -8 -4 4 -8 4 -8 0 0 0 0 0 0 -8 0 8 0 0 4 0 8 4 -8 0 -4 8 0 0 0 0 -8 0 0 -16 -16 8 4 -8 0 0 4 -4 0 0 -4 16 16 0 -4 -4 0 -4 0 -2 -8 -4 0 4 -4 4 8 6 -8 0 -8 0 0 8 -8 -4 0 -8 -4 8 4 -8 8 -4 2 4 4 0 0 -8 -8 4 4 4 0 -4 0 2 -16 8 2 4 0 -4 4 -1 16 -4 0 -8 -6 8 8 8 -6 0 1 12 -16 0 -8 4 0 4 -4 0 -4 8 -2 0 0 8 8 -4 -8 0 4 4 0 16 -2 4 -8 -4 8 -4 8 -4 6 0 0 -12 -4 4 -8 0 0 -2 4 -1 2 1 1 1 0 8 -6 -8 0 0 8 0 -6 -8 0 0 0 0 0 0 -8 0 3 16 0 0 0 12 0 -16 0 -8 2 -8 4 0 0 0 2 0 0 8 8 0 0 0 0 0 12 16 0 0 -8 0 2 -8 2 -16 0 3 8 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 -8 0 0 8 0 0 0 -4 -4 8 0 -8 -4 0 -4 0 0 0 0 -16 16 -16 -4 0 16 0 0 0 0 0 0 0 0 0 0 8 -12 0 0 0 0 -4 -8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 -4 0 0 0 16 0 0 0 0 0 0 0 0 0 -16 16 -16 16 0 0 0 0 0 -8 0 -8 8 -12 0 0 -4 0 0 0 0 8 0 0 -4 0 -4 0 0 0 -4 0 0 0 0 0 0 -4 0 0 -8 0 0 0 -16 0 0 0 0 0 0 0 2 0 0 8 8 -8 -8 12 0 0 0 4 0 0 0 0 2 0 16 0 0 3 0 0 0 0 0 0 0 0 0 16 3 0 0 0 0 0 -8 0 0 -16 0 0 2 8 8 -8 -8 12 0 0 4 0 0 0 2 0 0 0 0 0 -8 0 0 -6 8 0 0 0 -8 -6 8 0 0 1 0 1 1 1 -4 8 -2 -8 0 0 8 0 -2 -8 0 0 0 -4 0 0 8 0 3 16 0 0 16 -4 0 -16 -16 8 6 -8 -4 0 0 -8 6 -16 24 -8 -8 16 0 0 0 0 -4 16 0 0 8 0 6 -8 6 -16 0 3 -8 0 0 0 0 16 0 24 0 -4 0 0 0 0 0 -16 -8 0 8 0 16 -8 0 0 -16 12 4 8 -8 -8 -4 -16 12 -8 16 0 0 16 -16 16 4 0 -16 0 16 0 -16 0 16 0 0 0 0 8 -4 0 -4 0 0 -4 -8 0 -16 0 0 0 0 0 0 0 -4 0 0 0 -16 16 -16 -16 16 12 0 -8 0 -16 16 0 -16 0 0 0 16 0 0 16 -16 16 -16 0 -16 16 -16 16 -8 0 -8 8 -4 -4 0 -4 -8 0 -16 16 8 -4 0 4 0 4 0 0 0 -4 0 0 0 0 0 0 12 0 -16 -8 0 0 0 -16 0 0 0 0 0 0 0 6 0 0 -8 -8 8 8 -4 0 0 24 -4 16 0 -16 0 6 0 16 0 0 3 16 0 -16 0 0 -8 0 0 0 16 3 0 16 -16 -8 0 -8 0 0 -16 0 0 6 -8 -8 8 8 -4 0 24 -4 0 16 -16 6 0 0 -4 0 0 -8 0 0 -2 8 0 0 0 -8 -2 8 0 -4 1 0 1 1 1 0 6 -4 -8 8 -4 -4 -4 4 12 -2 -4 -8 -4 -4 4 0 2 1 16 8 4 0 4 4 -16 -8 0 2 -8 4 -4 4 -8 2 0 8 0 0 0 4 4 -8 4 -4 -16 8 -8 0 4 -2 8 -2 16 8 -1 0 2 -8 4 12 0 -8 -8 -12 -2 4 4 -4 -8 4 0 8 8 0 8 0 0 4 -8 0 0 0 -8 0 -8 0 0 0 0 0 8 -2 0 0 0 0 -4 0 -4 0 -4 0 8 0 8 -12 -8 4 8 0 -8 8 -4 -4 0 8 -4 0 -4 -8 -2 8 -4 8 12 -8 8 -4 -8 0 0 0 0 0 0 8 0 8 0 0 -4 0 -8 4 8 0 12 -8 0 0 0 0 8 0 0 0 0 -8 -4 8 -8 0 -8 -4 0 0 -4 0 0 8 8 -4 0 -4 0 -2 -8 -4 0 -12 -4 -4 -8 -2 8 0 8 0 8 -8 -8 4 16 8 -4 -8 -12 8 -8 4 -2 4 4 0 0 0 0 -4 4 4 -8 -4 0 2 0 8 -2 4 -16 12 4 -1 0 4 0 8 2 8 -8 -8 2 16 1 4 0 0 -8 4 -8 4 -4 -16 -4 8 2 0 0 0 0 4 -8 8 4 4 0 0 2 4 -8 0 8 -4 8 -4 -2 4 -8 -4 -4 4 -8 -4 8 -2 0 -1 2 1 1 1 8 -8 2 -8 -16 0 -8 0 2 -8 0 8 0 16 0 0 8 0 3 -16 0 8 0 -4 0 -16 -16 8 2 8 4 0 8 0 2 0 0 8 8 0 8 0 -16 -16 -4 -16 16 0 8 0 2 8 2 -16 16 3 8 8 0 0 0 0 0 0 0 12 0 16 0 -16 8 0 0 0 8 0 0 8 -16 -16 0 -4 -4 -8 0 -8 -4 -32 -4 0 0 0 8 16 16 16 -4 0 16 0 0 -16 0 -16 0 -16 0 0 0 -8 4 0 8 8 8 -4 -8 -16 0 16 16 8 0 0 0 0 8 -16 0 16 0 0 0 -16 0 -4 0 0 0 -16 0 8 0 0 0 0 0 0 0 16 16 16 16 -16 0 0 0 0 -8 0 -8 -8 4 8 -16 -4 0 8 0 0 -8 8 0 -4 0 -4 8 16 -16 -4 0 0 16 16 8 -16 -4 -16 -32 8 0 0 8 -16 0 0 0 0 0 -16 0 2 -16 8 8 8 8 8 -4 0 0 0 4 0 8 0 16 2 -16 -16 0 0 3 0 16 0 16 8 0 -16 -16 0 -16 3 8 0 0 0 0 8 0 0 -16 0 0 2 8 8 8 8 -4 -16 0 4 8 0 0 2 0 0 8 -16 8 -8 0 0 2 -8 8 0 0 -8 2 -8 0 8 1 0 1 1 1 4 -8 6 -8 0 0 -8 0 6 -8 0 0 0 4 0 0 -8 0 3 -16 0 0 16 12 0 -16 16 -8 -2 -8 -4 0 0 8 -2 16 8 -8 -8 16 0 0 0 0 12 -16 0 0 -8 0 -2 -8 -2 -16 0 3 -8 0 0 0 0 16 0 8 0 -4 0 0 0 0 0 16 8 0 -8 0 16 -8 0 0 16 -4 4 -8 -24 -8 -4 16 -4 -24 16 0 0 -16 -16 -16 4 0 -16 0 16 0 16 0 16 0 0 0 0 -8 12 0 4 0 0 -4 -8 0 16 0 0 0 0 0 0 0 4 0 0 0 16 -16 16 -16 16 -4 0 -24 0 -16 -16 0 16 0 0 0 16 0 0 -16 -16 -16 -16 0 16 16 16 16 -8 0 -8 -8 12 4 0 -4 -24 0 16 16 -8 4 0 4 0 4 0 0 0 -4 0 0 0 0 0 0 -4 0 16 -8 0 0 0 -16 0 0 0 0 0 0 0 -2 0 0 -8 -8 -8 -8 12 0 0 8 -4 16 0 16 0 -2 0 -16 0 0 3 16 0 16 0 0 8 0 0 0 -16 3 0 16 16 8 0 -8 0 0 -16 0 0 -2 -8 -8 -8 -8 12 0 8 -4 0 16 16 -2 0 0 4 0 0 -8 0 0 6 -8 0 0 0 -8 6 -8 0 4 1 0 1 1 1 4 -4 2 -8 8 0 -8 -4 2 -16 -8 0 8 12 -4 -4 4 -8 -1 -8 8 0 -8 0 0 0 8 4 2 0 0 -8 8 0 -2 16 0 0 0 8 -8 0 0 8 0 -8 8 0 4 8 2 0 -2 0 -8 -1 0 -4 8 0 8 -8 -8 0 -4 4 4 0 0 -8 0 16 0 -8 4 8 8 0 -8 0 0 0 0 12 8 8 -4 0 0 -8 -8 -8 -4 -8 0 -8 0 0 0 0 8 8 -16 0 -8 0 8 8 0 12 -4 -8 -4 -8 0 4 8 -8 -16 0 8 4 8 4 0 -4 -4 -8 8 -8 0 0 0 0 8 0 -8 -8 8 0 0 -8 0 8 0 0 8 -4 -8 -8 0 -8 0 -8 0 8 -16 -8 8 8 8 12 -4 -4 -8 4 8 0 -16 -8 12 -4 0 0 0 0 -4 -8 8 -4 8 4 0 8 4 0 0 0 0 0 -8 8 -8 0 8 0 0 -4 -8 -8 8 2 -8 0 0 0 4 4 0 0 0 0 0 8 -4 16 -8 -2 8 -8 8 4 -1 -8 0 0 8 4 0 0 0 -8 -8 -1 8 -8 0 0 0 0 -4 -8 0 -4 8 2 0 0 4 4 0 8 0 0 0 8 16 -2 -4 8 4 8 0 -8 0 -8 2 -4 8 -4 -8 -8 2 -4 0 4 1 0 1 1 1 4 -8 2 -4 8 -4 -8 -8 2 -8 -8 8 8 4 0 -8 0 -8 -1 0 8 8 16 0 -4 -8 16 0 -2 0 0 -4 0 0 2 -8 0 4 4 0 0 0 0 -8 0 0 -8 8 0 8 -2 0 2 -8 8 -1 4 4 -8 0 -4 16 8 0 8 -4 0 0 4 -8 -8 -8 0 -8 0 0 0 4 8 0 8 0 0 8 -8 12 4 0 0 8 0 8 4 0 -8 0 0 0 -8 0 -16 -8 8 0 0 0 -4 0 4 8 -4 -8 -4 0 -8 -4 12 8 8 0 -8 -4 -8 0 8 8 -4 -8 8 8 -8 0 -8 0 -16 0 8 8 -8 0 0 0 -8 0 4 8 -16 8 -8 0 -8 0 -8 -8 -8 -16 8 0 12 8 12 8 -4 -4 8 -4 -8 -8 8 0 8 -4 0 0 0 0 4 8 -8 4 -4 0 0 -8 -4 0 0 0 0 0 8 -8 0 -8 0 4 8 8 -8 -8 8 -2 8 -8 4 4 0 0 0 0 0 0 0 0 4 -8 8 2 -8 0 -4 0 -1 16 0 8 -8 -4 0 0 0 -8 0 -1 0 16 8 0 -4 0 -8 -4 -8 0 8 -2 4 4 0 0 0 8 0 0 8 0 -8 2 0 8 4 8 8 -4 -4 -8 2 -8 0 -8 -4 -4 2 -8 0 4 1 0 1 1 1 8 -10 4 -8 8 -4 4 -12 -4 -4 -2 4 8 -4 4 12 0 2 1 -16 -8 -4 0 4 4 -16 -8 0 2 8 4 12 -4 8 2 0 8 0 0 0 -4 4 8 4 -4 16 8 -8 0 4 -2 -8 -2 16 8 -1 0 2 8 4 -4 0 8 -8 -4 -2 -4 4 -4 -8 -4 0 -8 -8 0 -8 0 0 4 8 0 0 0 8 0 -8 0 0 0 0 0 -8 -2 0 0 0 0 -4 0 -4 0 -4 0 -8 0 -8 4 8 4 -8 0 8 0 4 4 0 8 -4 0 -4 -8 -2 -8 4 8 4 0 8 -4 -8 0 0 0 0 0 0 -8 0 -8 0 0 4 0 8 4 8 0 4 8 0 0 0 0 8 0 0 0 0 -8 -4 8 8 0 0 -4 0 0 4 0 0 -8 0 -4 0 -4 0 -2 -8 -4 0 4 4 -4 -8 -2 -8 0 -8 0 -8 8 8 -4 16 -8 -4 -8 -4 -8 -8 4 -2 4 -4 0 0 0 0 -4 4 4 -8 -4 0 2 0 8 -2 4 16 -4 -4 -1 0 4 0 8 2 -8 8 8 2 -16 1 -4 0 0 8 4 8 12 12 -16 4 -8 2 0 0 0 0 4 -8 8 4 -4 0 0 2 -4 8 -8 8 4 8 -4 -2 -4 8 4 -12 -12 -8 4 -8 -2 8 -1 2 1 1 1 4 -8 2 -4 -8 4 -8 8 2 0 8 -8 -8 4 0 8 0 8 -1 0 -8 -8 16 0 4 -8 0 0 -2 0 0 4 0 0 2 -8 0 4 4 0 0 0 0 8 0 0 8 -8 0 -8 -2 0 2 -8 -8 -1 4 -4 8 0 4 16 -8 0 -8 4 0 0 -4 8 8 -8 0 8 0 0 0 4 -8 0 8 0 0 8 -8 12 4 0 0 8 0 -8 -4 0 -8 0 0 0 -8 0 -16 8 8 0 0 0 4 0 -4 8 -4 8 -4 0 8 -4 12 -8 8 0 8 4 8 0 -8 -8 -4 8 -8 -8 -8 0 -8 0 -16 0 -8 8 8 0 0 0 -8 0 -4 -8 -16 -8 8 0 -8 0 -8 8 -8 -16 8 0 12 -8 12 8 -4 -4 -8 -4 -8 8 8 0 8 -4 0 0 0 0 -4 -8 8 4 4 0 0 8 4 0 0 0 0 0 -8 8 0 -8 0 -4 -8 -8 8 8 -8 -2 -8 8 4 4 0 0 0 0 0 0 0 0 -4 -8 -8 2 8 0 4 0 -1 16 0 8 8 4 0 0 0 8 0 -1 0 16 8 0 4 0 8 4 -8 0 -8 -2 4 4 0 0 0 -8 0 0 -8 0 -8 2 0 -8 4 -8 -8 -4 4 8 2 -8 0 8 4 -4 2 -8 0 4 1 0 1 1 1 0 4 -2 -8 -8 0 0 4 -2 -8 0 0 0 8 -4 4 4 0 -1 0 0 0 -8 0 0 8 -8 -4 -2 0 0 0 8 0 2 0 0 8 0 8 0 0 -8 0 0 0 0 0 4 0 -2 0 2 8 0 -1 8 4 8 0 0 -8 -8 0 4 -4 4 0 0 8 -8 0 0 0 -4 -8 8 0 0 8 0 0 0 -4 0 0 -4 0 0 0 0 -8 4 0 -8 0 0 0 -8 0 0 0 8 8 0 -8 0 -8 0 -4 4 0 0 0 -8 4 0 0 8 0 0 -4 8 4 0 4 0 8 0 0 -8 0 -8 0 0 0 -8 0 8 0 0 0 -8 -8 0 0 0 4 0 0 -8 0 -8 8 -8 0 8 0 0 0 0 -4 4 0 0 4 0 -8 8 0 -4 0 0 0 0 0 4 0 0 -4 0 4 0 0 -4 -8 0 8 0 0 -8 8 0 8 -8 0 0 4 0 8 0 -2 0 -8 8 0 4 -4 0 0 0 0 0 8 4 0 0 2 0 0 0 4 -1 -8 0 0 0 -4 0 -8 8 0 0 -1 8 -8 0 0 0 0 4 0 8 -4 0 -2 8 0 4 -4 0 -8 0 0 0 8 0 2 -4 0 0 -8 0 -8 0 0 -2 4 8 4 0 -8 -2 4 0 0 1 0 1 1 1 0 0 -2 -4 -8 4 0 0 -2 -8 0 0 0 8 0 0 0 0 -1 8 0 0 0 0 4 0 -16 8 2 0 0 -4 8 0 -2 8 0 -4 4 0 0 0 8 0 0 8 0 8 0 0 2 0 -2 0 0 -1 -4 -4 -8 0 -4 0 8 0 0 4 0 0 -4 8 -8 8 0 0 8 0 0 4 0 -8 -8 0 0 -8 0 4 4 0 0 0 8 8 -4 -8 0 -8 0 0 0 0 -8 0 0 -8 8 8 -4 0 -4 -8 4 0 0 0 -8 -4 4 0 0 0 0 4 -8 0 8 0 0 8 0 0 0 0 0 0 -8 0 8 0 -8 0 0 0 0 0 -4 8 -8 0 0 -8 0 -8 0 8 0 -8 0 8 4 0 4 -8 4 0 0 -4 0 -8 0 8 -8 0 0 0 0 0 -4 0 0 4 -4 0 0 0 4 8 0 -8 0 0 8 -8 0 0 0 -4 8 0 0 8 0 2 0 -8 -4 4 0 8 0 0 0 0 0 0 -4 8 0 -2 0 8 -4 0 -1 0 0 -8 0 4 0 8 -8 0 8 -1 8 0 -8 0 4 0 0 -4 0 0 0 2 -4 4 0 8 0 -8 0 0 0 0 8 -2 0 0 0 -8 0 -4 4 0 -2 0 8 0 -4 -4 -2 0 0 0 1 0 1 1 1 0 -4 -2 0 -8 0 0 -4 -2 0 0 8 0 0 4 -4 -4 0 -1 0 0 8 8 0 0 8 -8 4 -2 0 0 0 0 0 2 0 0 0 8 -8 -8 0 8 0 0 0 0 0 -4 0 -2 0 2 8 0 -1 0 4 8 0 0 8 -8 0 -4 -4 -4 0 0 8 0 0 0 0 4 8 -8 8 0 -8 0 0 0 4 0 -8 -4 0 0 0 0 -8 4 0 -8 0 0 0 -8 0 0 0 -8 -8 0 8 0 8 0 4 4 0 0 -8 0 4 -8 0 -8 0 0 -4 8 -4 0 -4 0 8 0 0 8 0 8 0 0 0 -8 0 8 0 0 -8 8 8 0 0 0 -4 0 0 -8 0 -8 8 8 0 -8 0 -8 0 -8 4 4 0 0 4 0 0 -8 0 4 0 0 0 0 0 4 0 0 -4 0 -4 0 0 -4 8 0 -8 0 0 -8 8 -8 8 8 0 0 -4 0 8 0 -2 0 0 0 8 -4 4 0 0 0 0 0 -8 4 0 0 2 0 0 0 -4 -1 8 0 0 0 -4 0 8 -8 0 0 -1 0 8 0 0 0 0 -4 0 8 4 0 -2 0 8 -4 4 0 -8 0 0 8 -8 0 2 4 0 0 -8 8 0 0 0 -2 -4 0 -4 0 0 -2 -4 0 0 1 0 1 1 1 0 -8 -2 4 -8 -4 -8 0 -2 8 0 8 0 0 0 0 8 0 -1 8 0 8 0 0 -4 0 0 0 2 0 0 4 0 0 -2 -8 0 4 -4 0 -8 0 -8 0 0 8 0 -8 8 0 2 0 -2 0 0 -1 4 -4 -8 0 4 0 8 0 0 4 0 0 4 8 0 -8 0 0 0 0 0 -4 0 8 8 0 0 0 0 -4 4 0 0 0 -8 8 -4 -8 0 -8 0 0 0 0 8 0 0 8 -8 -8 4 0 4 0 4 0 0 -8 0 -4 -4 0 0 0 0 4 -8 0 -8 0 0 8 0 0 0 0 0 0 8 0 8 0 -8 0 0 -8 0 0 4 -8 8 0 0 -8 0 -8 0 8 0 8 0 -8 -4 0 -4 0 4 0 0 -4 0 0 0 -8 0 0 0 0 0 0 -4 0 0 4 4 0 0 0 4 -8 0 8 0 0 8 -8 -8 0 0 4 -8 0 0 8 0 2 0 0 4 -4 8 0 0 0 0 0 0 0 -4 -8 0 -2 0 8 4 0 -1 0 0 8 0 4 0 -8 8 0 8 -1 0 0 8 0 -4 0 0 4 0 0 0 2 4 -4 8 0 0 -8 0 0 8 0 -8 -2 0 0 0 -8 8 4 -4 0 -2 -8 0 0 4 4 -2 -8 0 0 1 0 1 1 1 4 -6 0 -4 -16 0 4 0 0 4 6 4 -8 0 0 0 4 -6 1 0 8 -4 0 -4 0 0 16 4 2 0 -4 0 -4 0 2 0 -8 4 4 0 4 4 0 -4 4 0 8 0 -4 -4 -2 0 -2 0 8 -1 -4 2 0 4 0 0 0 8 0 6 0 4 0 0 4 0 0 -8 -4 0 0 -4 -4 0 0 0 0 -4 0 4 0 0 0 0 8 0 -2 0 0 0 0 -4 0 -4 -8 4 -8 0 -8 0 0 0 0 4 0 8 4 -4 -4 0 -4 4 8 -4 -8 -2 0 0 0 0 -4 0 4 -8 -8 0 8 0 8 0 0 0 0 0 0 -4 -8 0 0 0 -8 0 8 0 0 0 0 0 8 8 8 8 4 4 -4 -4 0 -4 4 0 0 -4 -8 -8 4 4 -4 0 -4 0 -2 -8 4 0 0 0 -4 -8 -2 0 0 0 0 0 0 0 4 0 0 0 0 0 -8 0 -4 -2 -4 4 -4 -4 -4 -4 4 4 4 8 4 0 2 0 8 -2 -4 0 0 0 -1 0 4 0 8 2 0 0 0 -6 0 1 -4 0 0 0 0 0 0 0 0 0 8 2 4 4 4 4 -4 16 -8 -4 -4 0 0 2 0 -8 -4 -16 4 4 0 6 0 4 4 0 0 -4 0 -4 -2 4 -1 2 1 1 1 -4 0 2 -4 0 -4 0 8 2 -8 0 0 0 -4 0 8 0 0 -1 0 0 0 8 0 -4 8 0 0 -2 0 0 -4 0 0 2 0 0 -4 -4 8 0 -8 0 0 0 0 0 8 0 0 -2 0 2 8 0 -1 -4 4 0 8 -4 8 0 0 -8 4 0 -8 4 0 0 0 0 0 0 0 8 -4 0 0 0 0 0 0 8 -4 4 0 0 -8 -8 0 4 0 8 0 0 8 8 -8 -8 0 0 0 -8 0 -4 0 4 0 -4 0 4 0 0 -4 -4 0 0 -8 0 4 0 0 8 -8 4 0 0 0 0 0 0 0 -8 0 0 -8 0 0 0 0 0 0 4 8 -8 -8 0 0 8 0 8 0 0 -8 0 -8 -4 0 -4 0 -4 4 0 -4 8 0 0 -8 0 4 8 0 -8 0 4 0 0 4 -4 0 -8 0 4 0 0 0 0 0 0 0 0 8 0 4 8 -8 0 0 0 -2 0 0 -4 -4 0 0 0 8 -8 0 0 8 4 0 0 2 0 0 -4 0 -1 8 -8 0 0 4 0 0 0 0 0 -1 0 8 0 0 -4 0 8 -4 8 0 0 -2 -4 -4 0 0 0 0 0 0 0 8 0 2 0 0 -4 0 0 -4 -4 0 2 0 0 8 -4 -4 2 0 0 -4 1 0 1 1 1 -4 -4 2 0 0 0 -8 -4 2 8 0 0 0 -4 -4 -4 -4 0 -1 8 0 0 0 0 0 0 8 -4 2 0 0 8 0 0 -2 8 0 0 0 0 0 8 0 0 0 8 0 0 -4 0 2 0 -2 0 0 -1 0 4 0 -8 -8 0 0 0 -4 4 4 -8 0 0 0 8 0 0 -4 8 0 0 0 0 8 0 0 -4 -8 0 -4 0 0 8 0 0 4 8 0 8 0 -8 0 8 0 0 -8 0 0 0 -8 8 0 -4 -4 0 4 0 0 4 0 0 -8 -8 0 4 0 4 0 -4 4 0 0 0 -8 0 -8 0 0 0 0 8 0 0 0 0 -8 8 0 0 0 -4 0 8 0 8 0 0 -8 0 -8 0 0 0 0 -4 -4 4 0 4 -8 0 -8 0 -4 4 -8 0 8 0 4 0 0 -4 -8 4 -8 0 4 0 0 0 0 0 0 0 0 0 8 0 0 -4 0 0 0 2 0 0 0 0 -4 -4 0 -8 8 0 0 0 4 8 0 -2 0 8 -8 4 -1 0 -8 8 0 4 0 0 0 0 8 -1 0 0 8 0 0 0 -4 8 0 -4 0 2 0 0 -4 -4 0 0 0 0 0 0 8 -2 -4 0 -4 0 0 0 0 0 2 -4 0 -4 8 0 2 -4 0 -4 1 0 1 1 1 -4 0 2 -4 0 4 0 -8 2 0 0 0 0 -4 0 -8 0 0 -1 0 0 0 8 0 4 8 0 0 -2 0 0 4 0 0 2 0 0 -4 -4 8 0 8 0 0 0 0 0 -8 0 0 -2 0 2 8 0 -1 -4 -4 0 -8 4 8 0 0 8 -4 0 8 -4 0 0 0 0 0 0 0 8 -4 0 0 0 0 0 0 8 -4 4 0 0 -8 -8 0 -4 0 8 0 0 -8 8 8 -8 0 0 0 -8 0 4 0 -4 0 -4 0 4 0 0 -4 -4 0 0 8 0 -4 0 0 -8 8 4 0 0 0 0 0 0 0 -8 0 0 -8 0 0 0 0 0 0 -4 -8 -8 8 0 0 8 0 8 0 0 -8 0 -8 -4 0 -4 0 -4 4 0 -4 8 0 0 -8 0 4 -8 0 8 0 -4 0 0 4 4 0 8 0 -4 0 0 0 0 0 0 0 0 8 0 -4 -8 8 0 0 0 -2 0 0 -4 -4 0 0 0 -8 8 0 0 8 -4 0 0 2 0 0 4 0 -1 8 8 0 0 -4 0 0 0 0 0 -1 0 8 0 0 4 0 -8 4 8 0 0 -2 -4 -4 0 0 0 0 0 0 0 8 0 2 0 0 -4 0 0 -4 4 0 2 0 0 -8 4 -4 2 0 0 -4 1 0 1 1 1 -4 -4 2 0 0 0 0 4 2 -8 0 0 0 -4 4 4 -4 0 -1 8 0 0 0 0 0 0 8 -4 2 0 0 -8 0 0 -2 8 0 0 0 0 0 -8 0 0 0 8 0 0 -4 0 2 0 -2 0 0 -1 0 -4 0 8 8 0 0 0 4 -4 -4 8 0 0 0 8 0 0 -4 -8 0 0 0 0 8 0 0 -4 -8 0 -4 0 0 8 0 0 -4 8 0 8 0 8 0 -8 0 0 -8 0 0 0 8 -8 0 -4 -4 0 4 0 0 4 0 0 -8 8 0 -4 0 -4 0 4 4 0 0 0 -8 0 -8 0 0 0 0 8 0 0 0 0 -8 -8 0 0 0 4 0 8 0 8 0 0 -8 0 -8 0 0 0 0 -4 -4 4 0 4 -8 0 -8 0 -4 4 8 0 -8 0 -4 0 0 -4 8 -4 8 0 -4 0 0 0 0 0 0 0 0 0 -8 0 0 4 0 0 0 2 0 0 0 0 -4 -4 0 8 -8 0 0 0 -4 8 0 -2 0 8 8 -4 -1 0 8 8 0 -4 0 0 0 0 8 -1 0 0 8 0 0 0 4 -8 0 4 0 2 0 0 -4 -4 0 0 0 0 0 0 8 -2 4 0 -4 0 0 0 0 0 2 -4 0 4 -8 0 2 -4 0 -4 1 0 1 1 1 0 -6 4 -4 -8 0 4 0 -4 4 6 -4 0 -4 0 0 -4 -6 1 0 0 4 8 4 0 0 16 -4 -2 -8 -4 0 4 0 -2 8 0 -4 -4 8 -4 -4 0 4 -4 0 0 0 4 -4 2 8 2 0 0 -1 4 2 8 -4 0 -8 8 0 0 6 0 4 0 -8 -4 -8 0 16 4 0 -8 4 4 0 -8 0 0 -4 0 4 0 0 0 0 0 -8 -2 0 0 0 0 4 0 4 0 -4 0 0 0 0 0 0 0 4 0 -16 0 4 4 0 -4 -4 0 -4 0 -2 -8 0 0 0 0 8 4 0 0 0 0 0 0 0 -8 0 -8 0 0 4 0 0 0 0 0 0 -16 0 0 0 0 8 0 0 0 0 4 4 -4 -4 0 0 -4 0 0 4 0 0 4 0 4 0 4 0 -2 0 -4 0 0 0 -4 0 -2 0 0 0 0 8 8 8 -4 0 0 0 0 0 16 -8 -4 2 4 -4 4 4 4 4 -4 -4 -4 0 4 -8 2 -8 0 2 4 0 0 0 -1 -8 4 -8 0 2 0 0 0 -6 0 1 4 8 8 0 0 -8 0 0 0 0 0 -2 -4 -4 -4 -4 4 8 0 -4 4 8 8 -2 0 0 0 -8 -4 4 0 6 -4 4 -4 0 0 -4 4 -4 -2 0 -1 2 1 1 1 0 2 0 -8 0 -4 -4 0 0 4 -2 -4 0 4 0 0 4 2 -3 -8 0 4 -8 0 4 16 0 -4 -2 0 0 4 -4 0 2 0 0 8 -8 8 -4 -4 8 12 0 8 0 8 -4 -4 2 0 -2 -16 0 3 -8 6 0 4 4 8 0 0 0 6 0 -12 12 0 4 0 0 0 4 0 -8 8 -12 -8 0 4 4 -4 0 -8 0 0 -4 0 8 0 -6 -8 -16 8 -4 -4 16 4 8 -12 0 8 -8 -8 -4 0 -12 4 0 0 0 4 -4 0 8 12 0 12 0 -6 0 0 -8 0 0 0 4 0 0 0 0 0 -8 4 0 0 0 0 0 4 0 0 -12 -8 8 0 0 8 16 -8 -16 0 0 -8 0 8 -8 4 8 -4 0 0 12 0 0 -4 0 -8 4 0 -4 4 4 -4 -6 0 -12 0 -4 0 12 0 -6 -8 -4 8 0 0 0 0 -4 -16 0 12 8 0 0 0 -4 2 -12 4 -8 8 -4 4 0 4 -4 0 0 -8 6 0 0 -2 12 8 4 0 3 8 -12 0 0 6 0 8 -8 2 -8 -3 -4 -8 0 0 4 0 0 4 16 0 0 -2 8 -8 4 -4 0 0 0 0 4 8 0 2 0 0 0 0 -4 8 -4 -2 0 -4 4 0 -4 -8 0 4 -2 0 -1 2 1 1 1 0 -4 -2 0 8 0 -8 4 -2 0 0 -8 0 0 -4 4 -4 0 -1 0 0 -8 8 0 0 8 8 4 -2 0 0 0 0 0 2 0 0 0 8 -8 8 0 -8 0 0 0 0 0 -4 0 -2 0 2 8 0 -1 0 -4 -8 0 0 8 8 0 4 4 4 0 0 -8 0 0 0 0 4 -8 -8 8 0 8 0 0 0 4 0 -8 -4 0 0 0 0 8 -4 0 -8 0 0 0 -8 0 0 0 -8 8 0 -8 0 -8 0 4 4 0 0 8 0 4 -8 0 -8 0 0 4 -8 4 0 4 0 -8 0 0 8 0 8 0 0 0 8 0 -8 0 0 8 8 -8 0 0 0 4 0 0 -8 0 -8 -8 8 0 -8 0 -8 0 -8 4 4 0 0 4 0 0 -8 0 4 0 0 0 0 0 -4 0 0 -4 0 4 0 0 4 -8 0 8 0 0 8 -8 8 8 -8 0 0 4 0 -8 0 -2 0 0 0 8 -4 4 0 0 0 0 0 -8 -4 0 0 2 0 0 0 4 -1 8 0 0 0 4 0 -8 8 0 0 -1 0 8 0 0 0 0 4 0 8 -4 0 -2 0 8 -4 4 0 8 0 0 -8 -8 0 2 -4 0 0 8 -8 0 0 0 -2 -4 0 4 0 0 -2 -4 0 0 1 0 1 1 1 0 -2 0 -4 0 0 -4 -4 0 4 -2 -4 0 4 4 4 0 2 -3 0 0 4 0 0 0 8 -8 0 2 0 0 0 -4 0 -2 8 0 -4 4 0 -4 4 -8 4 0 0 0 0 0 -4 -2 0 2 -8 0 3 4 -2 0 -4 0 0 0 0 4 -2 12 4 0 0 4 -8 0 0 0 8 0 -4 -4 8 8 4 -4 0 0 -4 0 0 -4 0 0 0 2 0 8 0 4 4 -8 -4 0 -4 -8 -8 0 8 0 -8 0 0 0 0 0 4 -4 0 4 4 8 -4 0 2 0 -12 0 -4 0 0 4 0 8 0 -8 0 0 4 0 0 0 0 0 4 8 -8 0 0 0 -4 0 0 -8 0 8 0 -8 0 8 0 -4 4 4 0 0 0 4 0 0 -4 -8 0 0 0 4 -4 -4 4 2 0 -4 0 0 -12 -4 0 2 8 -4 -8 0 0 0 0 -4 -8 8 0 0 4 0 0 -4 -2 -4 4 4 -4 0 0 0 -4 4 0 0 0 -2 -8 0 2 4 0 0 12 3 0 4 8 0 -2 0 -8 8 2 0 -3 -4 0 -8 0 0 0 4 0 8 4 0 2 -4 4 0 0 0 0 0 0 4 0 8 -2 -4 0 0 0 -4 4 0 -2 0 0 4 -4 0 -4 0 0 -2 0 -1 2 1 1 1 0 -2 0 -4 0 0 4 -12 0 4 -2 4 0 -4 -4 12 0 2 -3 0 0 -4 0 0 0 8 8 0 -6 0 0 0 4 0 6 -8 0 -4 4 0 4 4 8 4 0 0 0 0 0 -4 6 0 -6 -8 0 3 4 -2 0 -4 0 0 0 0 12 -2 -12 4 0 0 -4 8 0 0 0 24 0 -4 -4 -8 -8 -12 -4 0 0 -4 0 0 12 0 0 0 2 0 8 0 4 4 -8 -4 0 -4 8 8 0 -8 0 -24 0 0 0 0 0 -4 4 0 4 4 -8 -4 0 2 0 12 0 -12 0 0 4 0 -8 0 8 0 0 -12 0 0 0 0 0 -4 -8 -24 0 0 0 -12 0 0 -8 0 8 0 8 0 -8 0 -4 4 4 0 0 0 4 0 0 4 8 0 0 0 4 -4 -4 4 2 0 -4 0 0 12 -4 0 2 -8 12 8 0 0 0 0 4 -8 24 0 0 12 0 0 -4 6 -4 -4 4 -4 0 0 0 -4 4 0 0 0 -2 8 0 -6 4 0 0 -12 3 0 4 -8 0 -2 0 8 -8 2 0 -3 4 0 8 0 0 0 12 0 8 -4 0 -6 -4 4 0 0 0 0 0 0 -4 0 -8 6 4 0 0 0 4 4 0 -2 0 0 -4 -12 0 -4 0 0 -2 0 -1 2 1 1 1 0 -6 0 0 0 -4 4 0 0 -4 -2 4 0 -4 0 0 -4 2 -3 8 0 -4 8 0 4 0 0 4 -2 0 0 4 4 0 2 0 0 0 0 -8 4 -4 -8 -4 0 -8 0 8 4 -4 2 0 -2 0 0 3 0 -2 0 4 4 -8 0 0 0 -2 0 4 12 0 -4 0 0 0 -4 0 8 0 4 8 0 4 4 4 0 0 0 0 -4 0 -8 0 2 8 0 -8 -4 -4 0 4 -8 4 0 -8 8 8 -4 0 -12 -4 0 0 0 -4 4 0 0 -4 0 -4 0 2 0 0 -8 0 0 0 4 0 0 0 0 0 8 4 0 0 0 0 0 -4 0 0 -12 -8 -8 0 0 -8 0 8 0 0 0 8 0 -8 0 4 0 4 0 0 -4 0 0 4 0 8 -4 0 -4 4 4 -4 2 0 4 0 -4 0 -4 0 2 8 -4 -8 0 0 0 0 4 0 0 12 8 0 0 0 -4 2 4 -4 0 0 4 -4 0 4 -4 0 0 8 -2 0 0 -2 -4 -8 4 0 3 -8 4 0 0 -2 0 -8 8 2 8 -3 4 8 0 0 4 0 0 4 0 0 0 -2 0 0 -4 4 0 0 0 0 -4 -8 0 2 0 0 0 0 4 0 -4 -2 0 4 -4 0 -4 0 0 -4 -2 0 -1 2 1 1 1 0 -8 -2 4 8 4 -8 0 -2 0 0 -8 0 0 0 0 8 0 -1 8 0 -8 0 0 4 0 16 0 2 0 0 -4 0 0 -2 -8 0 4 -4 0 8 0 8 0 0 8 0 8 8 0 2 0 -2 0 0 -1 4 4 8 0 -4 0 -8 0 0 -4 0 0 -4 -8 0 -8 0 0 0 0 0 -4 0 -8 8 0 0 0 0 -4 4 0 0 0 -8 -8 4 -8 0 -8 0 0 0 0 8 0 0 -8 -8 8 -4 0 -4 0 4 0 0 8 0 -4 -4 0 0 0 0 -4 8 0 8 0 0 -8 0 0 0 0 0 0 8 0 -8 0 8 0 0 8 0 0 -4 8 8 0 0 -8 0 -8 0 -8 0 8 0 -8 -4 0 -4 0 4 0 0 -4 0 0 0 -8 0 0 0 0 0 0 4 0 0 4 -4 0 0 0 -4 8 0 -8 0 0 -8 8 8 0 0 -4 8 0 0 -8 0 2 0 0 4 -4 8 0 0 0 0 0 0 0 4 -8 0 -2 0 8 -4 0 -1 0 0 8 0 -4 0 8 -8 0 8 -1 0 0 8 0 4 0 0 -4 0 0 0 2 4 -4 8 0 0 8 0 0 -8 0 -8 -2 0 0 0 8 -8 4 4 0 -2 -8 0 0 -4 4 -2 -8 0 0 1 0 1 1 1 4 -10 0 0 8 4 4 4 0 -4 6 -12 -8 -8 4 -4 0 -6 1 0 8 12 16 -4 -4 0 -8 0 -2 0 4 4 4 -8 -2 -16 0 8 8 0 4 4 8 4 4 0 8 -8 0 -4 2 0 2 0 -8 -1 -8 -6 8 4 4 -16 -8 0 -4 -2 -4 -4 4 8 -4 16 8 -8 0 8 0 -8 4 8 0 0 0 -8 0 0 0 0 0 0 0 8 6 0 0 0 0 -4 0 -4 16 -4 0 -8 0 -8 -4 -8 -4 8 0 8 -4 -4 4 0 0 -4 0 4 -8 -2 -8 4 8 4 4 -8 4 8 16 0 -16 0 -16 0 8 0 -8 0 0 -4 16 -8 -4 8 16 4 8 0 0 0 0 -8 -16 -16 0 0 0 4 0 -8 0 4 -4 0 0 4 0 0 8 -4 -4 0 -4 0 6 8 -4 0 -4 4 4 -8 -2 -8 0 -8 0 0 -8 8 4 0 8 4 -8 -4 -8 8 -4 2 4 -4 -8 -8 0 0 4 4 4 0 -4 0 -6 16 -8 2 4 0 4 -4 -1 -16 -4 0 8 2 8 8 8 -6 0 1 4 16 0 -8 -4 0 -4 4 0 4 8 -2 8 8 0 0 -4 -8 0 4 12 0 -16 -2 -4 -8 -4 8 -12 0 4 6 0 8 -4 4 -4 0 0 -8 -2 4 -1 2 1 1 1 0 0 -6 0 0 0 0 0 -6 0 0 0 0 0 0 0 0 0 3 0 0 0 0 12 0 0 0 0 -6 24 -12 0 0 0 -6 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 -6 24 -6 0 0 3 0 0 0 0 0 0 0 0 0 -12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 -4 0 0 0 12 0 12 0 0 0 0 0 0 0 -4 0 0 0 0 0 0 0 0 0 0 0 0 0 -12 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -48 0 12 0 0 0 -48 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -12 0 0 12 0 0 0 0 0 0 0 -4 0 -4 0 0 0 12 0 0 0 0 0 0 12 0 0 24 0 0 0 0 0 0 0 0 0 0 0 -6 0 0 0 0 0 0 12 0 0 0 -12 0 0 0 0 -6 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 24 0 0 0 0 0 -6 0 0 0 0 12 0 0 -12 0 0 0 -6 0 0 0 0 0 0 0 0 -6 0 0 0 0 0 -6 0 0 0 1 0 1 1 1 -4 0 -2 0 0 0 0 0 -2 0 0 0 0 -4 0 0 0 0 3 0 0 0 0 -4 0 0 0 0 -2 8 -4 0 0 8 -2 0 8 0 0 0 0 0 0 0 -4 0 0 0 0 0 -2 8 -2 0 0 3 0 0 0 0 0 0 0 8 0 -4 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 -4 4 0 8 0 -4 -16 -4 8 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 -4 0 -4 0 0 -4 0 0 0 0 0 0 0 0 0 0 -4 0 0 0 0 -16 0 16 0 -4 0 8 0 16 -16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4 -4 0 -4 8 0 0 0 0 -4 0 4 0 4 0 0 0 -4 0 0 0 0 0 0 -4 0 -16 8 0 0 0 0 0 0 0 0 0 0 0 -2 0 0 0 0 0 0 -4 0 0 8 -4 0 0 0 0 -2 0 0 0 0 3 0 0 0 0 0 8 0 0 0 0 3 0 0 0 8 0 8 0 0 0 0 0 -2 0 0 0 0 -4 0 8 -4 0 0 0 -2 0 0 -4 0 0 0 0 0 -2 0 0 0 0 0 -2 0 0 -4 1 0 1 1 1 0 2 -4 -4 0 0 -4 0 4 4 -2 -4 -8 4 0 0 -4 2 1 0 8 4 0 4 0 0 0 -4 -2 8 -4 0 -4 0 -2 0 0 4 4 0 4 4 0 -4 -4 0 -8 0 4 4 2 -8 2 0 8 -1 -4 -6 0 4 0 0 16 0 0 6 0 -4 0 0 -4 0 0 8 4 0 0 -4 -4 0 0 0 0 4 0 4 0 0 0 0 8 -16 6 0 0 0 0 -4 0 -4 -8 4 8 0 -8 0 0 0 0 -4 0 -8 0 -4 4 0 -4 4 -8 4 8 -2 0 0 0 0 0 0 -4 -8 8 0 -8 0 8 0 -16 0 0 0 0 -4 8 0 0 0 -8 0 -8 0 0 0 0 0 -8 8 -8 8 4 -4 -4 4 0 0 4 0 0 4 8 -8 -4 0 -4 0 -4 0 6 -8 4 0 0 0 4 8 -2 0 0 0 0 -8 16 0 4 0 0 0 0 0 8 0 4 2 -4 -4 -4 -4 4 4 -4 4 4 0 4 0 -6 0 8 2 -4 0 0 0 -1 0 -4 0 -8 2 0 0 0 2 0 1 -4 0 0 0 0 8 0 0 0 0 8 -2 4 4 -4 -4 4 0 0 -4 4 0 0 -2 0 -8 0 0 -4 4 0 -2 4 -4 4 0 0 -4 -4 4 -2 0 -1 2 1 1 1 0 -8 -6 8 0 0 -8 0 -6 8 0 0 0 0 0 0 8 0 3 -16 0 0 0 12 0 16 0 8 2 -8 4 0 0 0 2 0 0 -8 -8 0 0 0 0 0 12 -16 0 0 8 0 2 -8 2 16 0 3 -8 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 8 0 0 -8 0 0 0 -4 -4 -8 0 8 -4 0 -4 0 0 0 0 16 -16 16 -4 0 -16 0 0 0 0 0 0 0 0 0 0 -8 -12 0 0 0 0 -4 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 -4 0 0 0 16 0 0 0 0 0 0 0 0 0 16 -16 16 -16 0 0 0 0 0 8 0 8 -8 -12 0 0 -4 0 0 0 0 -8 0 0 -4 0 -4 0 0 0 -4 0 0 0 0 0 0 -4 0 0 -8 0 0 0 16 0 0 0 0 0 0 0 2 0 0 -8 -8 8 8 12 0 0 0 4 0 0 0 0 2 0 -16 0 0 3 0 0 0 0 0 0 0 0 0 -16 3 0 0 0 0 0 -8 0 0 16 0 0 2 -8 -8 8 8 12 0 0 4 0 0 0 2 0 0 0 0 0 8 0 0 -6 -8 0 0 0 8 -6 -8 0 0 1 0 1 1 1 0 -6 -4 4 0 0 4 0 4 -4 -2 4 -8 -4 0 0 4 2 1 0 8 -4 0 4 0 0 0 4 -2 8 -4 0 4 0 -2 0 0 -4 -4 0 -4 4 0 -4 -4 0 8 0 -4 4 2 -8 2 0 -8 -1 4 2 16 4 0 0 0 0 0 -2 0 -4 0 0 4 0 0 8 -4 0 0 4 -4 0 0 0 0 -4 0 -4 0 0 0 0 -8 0 -2 0 0 0 0 -4 0 -4 8 4 -8 0 8 0 0 0 0 4 0 -8 0 4 -4 0 4 4 8 4 -8 6 -16 0 0 0 0 0 -4 8 -8 0 8 0 -8 0 0 0 -16 0 0 4 -8 0 0 0 8 0 -8 0 0 0 0 0 8 -8 8 -8 -4 -4 4 -4 0 0 4 0 0 -4 -8 8 4 0 -4 0 -4 0 -2 8 4 0 0 0 4 -8 6 0 0 0 0 -8 0 16 -4 0 0 0 0 0 8 0 4 2 -4 4 4 4 -4 -4 -4 4 4 0 4 0 2 0 -8 2 -4 0 0 0 -1 0 -4 0 8 -6 0 0 0 2 0 1 4 0 0 0 0 8 0 0 0 0 8 -2 -4 -4 4 4 4 0 0 -4 -4 0 0 -2 0 -8 0 0 4 -4 0 -2 4 4 -4 0 0 4 -4 -4 -2 0 -1 2 1 1 1 -4 0 -2 0 0 -8 -8 8 -2 8 0 0 0 -4 -8 8 0 0 3 0 0 0 0 -4 -8 0 0 0 -2 -8 12 8 0 24 -2 0 -8 0 0 0 0 0 0 0 -4 0 0 16 0 0 -2 -8 -2 0 0 3 0 0 0 0 8 0 0 -8 8 12 -24 0 -24 0 0 0 24 0 0 16 0 0 0 0 0 -4 4 0 -8 0 12 -16 -4 -8 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 8 16 -24 0 -4 0 -4 0 0 12 0 0 0 0 0 0 0 -24 16 8 -4 0 0 0 0 16 0 -16 0 -4 0 -8 0 -16 16 0 0 16 -24 16 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4 -4 0 12 -8 0 0 0 0 -4 0 4 0 4 0 0 0 12 8 -24 0 0 0 0 -4 0 -16 -8 0 0 0 0 16 -24 16 8 0 0 0 -2 0 0 0 0 0 0 -4 0 0 -8 12 0 0 0 0 -2 0 0 8 -24 3 0 0 0 0 0 24 0 0 0 0 3 0 0 0 24 -8 -8 8 8 0 -8 0 -2 0 0 0 0 -4 0 -8 12 0 0 0 -2 -8 0 -4 0 0 0 -8 0 -2 0 0 8 8 0 -2 0 0 -4 1 0 1 1 1 -8 0 2 0 0 0 0 0 2 0 0 0 0 -8 0 0 0 0 3 0 0 0 0 -4 0 0 0 0 2 8 4 0 0 0 2 0 0 0 0 0 0 0 0 0 -4 0 0 0 0 0 2 8 2 0 0 3 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4 -4 0 0 0 -4 32 -4 0 0 0 0 0 0 0 -4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 -8 0 0 -4 0 0 0 0 0 0 0 0 0 0 -8 0 0 0 0 0 0 -16 0 -4 0 0 0 -16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 -8 0 -4 0 0 0 0 0 -8 0 -4 0 -4 0 0 0 -4 0 0 0 0 0 0 -4 0 32 8 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 -4 0 0 0 4 0 0 0 0 2 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 8 0 0 0 0 0 2 0 0 0 0 -4 0 0 4 0 0 0 2 0 0 -8 0 0 0 0 0 2 0 0 0 0 0 2 0 0 -8 1 0 1 1 1 -4 -2 0 0 0 -4 -4 4 0 4 -2 -4 0 0 4 -4 0 2 1 0 0 4 8 -4 4 0 -8 0 -2 0 4 -4 4 8 -2 8 0 0 0 -8 4 -4 8 -4 4 0 0 8 0 4 2 0 2 0 0 -1 0 2 0 -4 -4 -8 0 0 -4 -2 -4 4 -4 0 4 -8 -8 0 0 8 8 0 -4 8 8 0 0 0 0 0 0 0 0 0 8 0 -2 0 0 0 0 4 0 4 8 4 8 -8 -8 -8 4 -8 4 0 0 0 4 -4 -4 0 0 4 -8 -4 0 -2 0 4 -8 4 -4 0 -4 0 -8 0 8 0 -8 0 0 0 0 0 0 -4 -8 -8 4 -8 8 4 0 0 0 0 0 0 8 -8 -8 8 0 -4 0 0 0 -4 4 0 0 -4 8 -8 0 4 4 0 4 0 -2 0 4 0 4 4 -4 0 -2 -8 0 -8 0 0 0 0 4 0 8 -4 8 -4 0 0 4 2 -4 4 0 0 0 0 4 -4 -4 0 -4 8 2 -8 0 2 -4 0 -4 -4 -1 -8 4 8 0 2 -8 8 8 2 0 1 4 8 -8 8 4 0 -4 -4 0 4 0 -2 0 0 0 0 -4 0 0 4 4 -8 8 -2 -4 0 4 0 -4 0 -4 -2 0 0 -4 4 4 0 0 0 -2 -4 -1 2 1 1 1 -4 0 -2 0 0 8 8 -8 -2 -8 0 0 0 -4 8 -8 0 0 3 0 0 0 0 -4 8 0 0 0 -2 -8 12 -8 0 24 -2 0 -8 0 0 0 0 0 0 0 -4 0 0 -16 0 0 -2 -8 -2 0 0 3 0 0 0 0 -8 0 0 -8 -8 12 24 0 24 0 0 0 24 0 0 -16 0 0 0 0 0 -4 4 0 -8 0 12 -16 -4 -8 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 -8 -16 24 0 -4 0 -4 0 0 12 0 0 0 0 0 0 0 24 -16 -8 -4 0 0 0 0 16 0 -16 0 -4 0 -8 0 -16 16 0 0 -16 24 -16 0 -8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4 -4 0 12 -8 0 0 0 0 -4 0 4 0 4 0 0 0 12 -8 24 0 0 0 0 -4 0 -16 -8 0 0 0 0 -16 24 -16 -8 0 0 0 -2 0 0 0 0 0 0 -4 0 0 -8 12 0 0 0 0 -2 0 0 -8 24 3 0 0 0 0 0 24 0 0 0 0 3 0 0 0 24 8 -8 -8 -8 0 8 0 -2 0 0 0 0 -4 0 -8 12 0 0 0 -2 8 0 -4 0 0 0 8 0 -2 0 0 -8 -8 0 -2 0 0 -4 1 0 1 1 1 -4 -2 0 0 0 4 4 -4 0 -4 -2 -4 0 0 -4 4 0 2 1 0 0 4 -8 -4 -4 0 8 0 -2 0 4 4 4 8 -2 -8 0 0 0 8 4 -4 8 -4 4 0 0 -8 0 4 2 0 2 0 0 -1 0 2 0 -4 4 8 0 0 4 -2 4 4 4 0 4 8 -8 0 0 -8 -8 0 -4 8 -8 0 0 0 0 0 0 0 0 0 -8 0 -2 0 0 0 0 4 0 4 -8 4 -8 -8 8 -8 -4 8 -4 0 0 0 4 -4 -4 0 0 4 8 -4 0 -2 0 -4 8 -4 -4 0 -4 0 8 0 -8 0 8 0 0 0 0 0 0 -4 8 8 -4 8 -8 -4 0 0 0 0 0 0 -8 8 8 -8 0 -4 0 0 0 -4 4 0 0 -4 -8 8 0 4 4 0 4 0 -2 0 4 0 -4 -4 -4 0 -2 -8 0 -8 0 0 0 0 4 0 -8 4 -8 4 0 0 4 2 -4 4 0 0 0 0 4 -4 -4 0 -4 -8 2 8 0 2 -4 0 4 4 -1 8 4 -8 0 2 -8 8 8 2 0 1 4 -8 8 8 -4 0 4 4 0 -4 0 -2 0 0 0 0 -4 0 0 4 4 8 -8 -2 4 0 4 0 -4 0 4 -2 0 0 -4 -4 -4 0 0 0 -2 -4 -1 2 1 1 1 0 6 -4 -8 -8 -4 -12 4 4 12 -2 -4 -8 12 4 -4 0 2 1 0 8 4 0 4 4 0 8 -16 2 -8 4 -4 -12 8 2 0 -8 16 0 0 4 4 8 4 -4 0 -24 -8 0 4 -2 8 -2 0 8 -1 -16 10 8 4 12 0 -24 8 12 -10 -4 4 -4 8 -12 0 -8 8 16 -8 0 0 4 8 0 0 0 8 0 8 0 0 0 0 -16 24 -10 16 16 -16 0 -4 -16 -4 16 -4 -16 -8 16 -8 -12 8 4 -8 0 -8 -8 -4 12 0 -8 -4 16 -4 24 6 -8 4 8 -12 8 -8 -4 -8 -16 0 16 0 -16 0 24 0 -8 0 0 -4 -16 8 4 8 16 -12 -8 -16 -16 16 16 -8 16 -16 16 -16 8 -4 -8 8 0 8 -4 0 0 12 -16 16 -8 -8 -4 0 -4 0 -10 -8 -4 0 -12 4 -4 24 6 -8 0 -8 0 8 -24 8 4 0 -8 -4 -8 12 8 8 4 -2 4 -12 -16 0 0 16 -4 4 4 8 -4 0 10 0 8 -2 4 0 12 -4 -1 0 4 0 -24 -6 -8 8 8 2 0 1 -12 0 0 8 4 -8 -4 -4 0 4 8 2 16 0 0 -16 4 8 -8 4 4 0 0 2 -4 -8 0 -8 -4 8 -4 -2 4 -8 12 4 4 -8 -4 8 -2 0 -1 2 1 1 1 -4 2 0 -4 -8 0 -4 0 0 4 -2 -4 0 8 0 0 4 2 1 0 0 4 8 -4 0 0 0 4 2 0 -4 0 -4 0 2 -8 8 -4 -4 8 4 -4 0 4 4 0 16 0 -4 4 -2 0 -2 0 0 -1 4 2 -8 -4 0 -8 8 -8 0 -2 0 -4 0 8 -4 8 0 0 -4 0 -8 4 4 0 8 0 0 4 0 4 0 0 0 0 0 -8 -2 0 0 0 0 4 0 4 0 -4 0 0 0 0 0 0 0 -4 0 0 -4 -4 4 0 -4 -4 0 4 -16 6 8 0 0 0 4 -8 -4 0 0 0 0 0 0 0 -8 0 8 0 0 -4 0 0 0 0 0 0 0 0 0 0 0 -8 0 0 0 0 4 -4 -4 4 0 4 -4 0 0 4 0 0 -4 -4 4 0 4 0 -2 0 -4 0 0 0 4 -16 6 0 0 0 0 0 8 -8 4 0 0 0 0 0 0 8 4 -2 4 -4 4 4 -4 -4 4 -4 -4 -8 4 -8 2 8 0 -2 4 0 0 0 -1 -8 -4 8 16 -6 0 0 0 2 0 1 -4 8 -8 0 0 0 0 0 0 0 0 2 -4 -4 4 4 -4 8 8 -4 4 8 -8 2 0 0 4 -8 -4 4 0 -2 0 -4 4 0 0 -4 0 4 -2 -4 -1 2 1 1 1 0 -2 -4 0 -8 4 4 -4 4 -4 -2 4 -8 4 -4 4 -8 2 1 0 8 -4 0 4 -4 0 8 8 2 -8 4 4 -4 8 2 0 -8 -8 8 0 -4 4 8 4 -4 0 -8 8 8 4 -2 8 -2 0 -8 -1 8 2 -8 4 -12 0 -8 8 -12 -2 4 4 4 8 -4 0 -8 8 -8 8 0 -8 4 8 0 0 0 0 0 0 0 0 0 0 0 8 -2 -16 -16 16 0 -4 16 -4 0 -4 0 -8 0 -8 12 -8 -4 0 0 -8 -8 4 4 0 0 -4 0 -4 8 -2 8 -4 -8 12 8 -8 -4 8 0 0 0 0 0 0 8 0 8 0 0 4 0 -8 -4 -8 0 12 -8 16 16 -16 -16 -8 0 0 0 0 0 -4 0 0 0 8 -4 0 0 4 0 0 0 -8 -4 0 -4 0 -2 8 -4 0 12 -4 -4 8 -2 -8 0 -8 0 8 -8 -8 -4 0 8 4 8 -12 8 8 4 -2 4 -4 8 -8 8 -8 -4 4 4 8 -4 0 2 0 -8 -2 4 0 -12 4 -1 0 4 0 -8 2 -8 8 8 2 0 1 -4 0 0 8 -4 -8 4 4 0 -4 8 2 -8 8 -8 8 4 8 -8 4 -4 0 0 2 4 -8 0 -8 4 0 4 -2 4 0 4 -4 -4 0 -4 0 -2 0 -1 2 1 1 1 0 -6 0 0 0 4 4 0 0 -12 -2 -4 0 4 0 0 -4 2 -3 8 0 4 -8 0 -4 0 0 4 6 0 0 12 -4 0 -6 0 0 0 0 8 -4 -4 8 -4 0 -8 0 24 4 -4 -6 0 6 0 0 3 0 -2 0 4 12 8 0 0 0 -2 0 4 -12 0 4 0 0 0 -4 0 -8 0 4 -8 0 -12 4 4 0 0 0 0 12 0 8 0 2 8 0 -8 -4 -4 0 4 8 4 0 8 -8 -8 -12 0 12 -4 0 0 0 4 -4 0 0 -4 0 -4 0 2 0 0 -24 0 0 0 4 0 0 0 0 0 -8 -12 0 0 0 0 0 4 0 0 12 -24 8 0 0 -8 0 8 0 0 0 -8 0 8 0 4 0 4 0 0 -4 0 0 -4 0 -8 -4 0 -4 4 4 -4 2 0 4 0 -12 0 -4 0 2 -8 12 8 0 0 0 0 -4 0 0 -12 24 0 0 0 -4 -6 4 4 0 0 4 -4 0 4 -4 0 0 -8 -2 0 0 6 -4 -8 12 0 3 8 4 0 0 -2 0 8 -8 2 8 -3 -4 -8 0 0 -4 0 0 12 0 0 0 6 0 0 -4 4 0 0 0 0 4 8 0 -6 0 0 0 0 -4 0 4 -2 0 4 4 0 -12 0 0 -4 -2 0 -1 2 1 1 1 0 -10 0 4 0 0 4 -4 0 -4 -2 4 0 -4 4 4 8 2 -3 16 0 -4 0 0 0 -8 8 -8 2 0 0 0 4 0 -2 -8 0 4 -4 0 4 4 8 -12 0 -16 0 0 -8 -4 -2 0 2 8 0 3 -4 6 0 -4 0 0 0 0 4 6 12 -12 0 0 -4 8 0 0 8 8 0 4 12 -8 -8 4 -4 8 0 4 0 0 -4 0 0 0 -6 -16 -8 16 4 4 8 -4 0 12 8 8 0 -8 0 -8 0 -8 0 0 0 -4 4 0 -4 -12 -8 12 0 -6 0 -12 0 -4 0 0 4 0 -8 0 8 0 0 4 0 0 0 0 0 -4 -8 -8 0 0 0 -4 0 16 8 -16 -8 0 8 0 -8 0 4 4 -4 8 0 0 -12 0 0 4 8 0 -8 0 4 -4 -4 4 -6 0 12 0 0 -12 12 0 -6 -8 -4 8 0 0 0 0 4 8 8 0 0 4 0 0 -4 -2 12 -4 -4 4 -8 8 0 -4 4 0 0 0 6 8 0 2 -12 -16 0 12 3 0 -12 -8 0 6 0 8 -8 2 16 -3 4 0 8 0 0 0 4 0 -8 4 0 2 4 -4 8 -8 0 0 0 0 -4 0 -8 -2 -4 0 0 0 4 -4 0 -2 0 8 -4 -4 0 4 0 -8 -2 0 -1 2 1 1 1 -4 -8 -2 8 0 0 -8 0 -2 8 0 0 0 -4 0 0 -8 0 3 -16 0 0 -16 -4 0 16 16 -8 6 -8 -4 0 0 -8 6 16 24 8 8 -16 0 0 0 0 -4 -16 0 0 -8 0 6 -8 6 16 0 3 8 0 0 0 0 -16 0 24 0 -4 0 0 0 0 0 16 -8 0 -8 0 -16 8 0 0 16 12 4 -8 -8 8 -4 -16 12 -8 -16 0 0 -16 16 -16 4 0 16 0 -16 0 16 0 -16 0 0 0 0 -8 -4 0 -4 0 0 -4 8 0 16 0 0 0 0 0 0 0 -4 0 0 0 16 16 16 -16 -16 12 0 -8 0 -16 16 0 16 0 0 0 -16 0 0 -16 16 -16 16 0 16 -16 16 -16 8 0 8 -8 -4 -4 0 -4 -8 0 16 -16 -8 -4 0 4 0 4 0 0 0 -4 0 0 0 0 0 0 12 0 -16 -8 0 0 0 16 0 0 0 0 0 0 0 6 0 0 8 8 -8 -8 -4 0 0 24 -4 -16 0 16 0 6 0 -16 0 0 3 -16 0 16 0 0 -8 0 0 0 -16 3 0 -16 16 -8 0 -8 0 0 16 0 0 6 8 8 -8 -8 -4 0 24 -4 0 -16 16 6 0 0 -4 0 0 8 0 0 -2 -8 0 0 0 8 -2 -8 0 -4 1 0 1 1 1 0 -10 -4 8 8 4 4 4 4 -12 -2 -4 -8 -4 4 -4 0 2 1 -16 8 4 0 4 -4 16 -8 0 2 -8 4 4 4 -8 2 0 8 0 0 0 4 4 -8 4 -4 16 8 8 0 4 -2 8 -2 -16 8 -1 0 2 -8 4 -12 0 -8 -8 12 -2 -4 4 4 -8 4 0 8 8 0 -8 0 0 4 -8 0 0 0 8 0 8 0 0 0 0 0 8 -2 0 0 0 0 -4 0 -4 0 -4 0 8 0 8 12 8 -4 -8 0 -8 8 -4 -4 0 -8 -4 0 -4 -8 -2 8 4 -8 -12 -8 8 -4 -8 0 0 0 0 0 0 8 0 8 0 0 -4 0 8 -4 -8 0 -12 -8 0 0 0 0 8 0 0 0 0 8 -4 -8 8 0 -8 -4 0 0 -4 0 0 -8 8 -4 0 -4 0 -2 -8 -4 0 12 4 -4 -8 -2 8 0 8 0 8 -8 -8 4 -16 -8 4 8 12 8 -8 4 -2 4 4 0 0 0 0 -4 4 4 -8 -4 0 2 0 8 -2 4 16 -12 -4 -1 0 4 0 8 2 8 -8 -8 2 -16 1 4 0 0 -8 -4 -8 -4 4 16 4 8 2 0 0 0 0 4 -8 8 4 4 0 0 2 -4 -8 0 8 -4 -8 4 -2 4 8 -4 4 -4 8 -4 -8 -2 0 -1 2 1 1 1 -4 -6 0 4 -8 0 4 0 0 -4 -2 4 0 0 0 0 -4 2 1 0 0 -4 -8 -4 0 0 16 -4 2 0 -4 0 4 0 2 8 8 4 4 -8 -4 -4 0 4 4 0 0 0 4 4 -2 0 -2 0 16 -1 -4 -6 8 -4 0 8 -8 -8 0 6 0 -4 0 8 4 -8 0 0 4 0 8 -4 4 0 -8 0 0 -4 0 -4 0 0 0 0 0 8 6 0 0 0 0 4 0 4 0 -4 0 0 0 0 0 0 0 4 0 0 -4 4 -4 0 4 -4 0 4 0 -2 -8 0 0 0 4 -8 -4 -16 0 0 0 0 0 0 8 0 -8 0 0 4 0 0 0 0 0 0 0 0 0 0 0 -8 0 0 0 0 -4 -4 4 -4 0 4 -4 0 0 -4 0 0 4 -4 4 0 4 0 6 -16 -4 0 0 0 4 0 -2 0 0 0 0 0 -8 8 -4 0 0 0 0 0 0 8 4 -2 4 4 -4 -4 4 4 4 -4 -4 -8 4 8 -6 -8 16 -2 4 0 0 0 -1 8 -4 -8 0 2 0 0 0 2 0 1 4 -8 8 0 0 0 0 0 0 0 0 2 4 4 -4 -4 -4 8 8 -4 -4 -8 8 2 0 0 4 -8 4 -4 0 -2 0 4 -4 0 0 4 0 -4 -2 -4 -1 2 1 1 1 0 -10 -4 8 -8 -4 4 4 4 -4 -2 12 -8 -4 4 -4 16 2 1 0 8 -12 0 4 4 0 8 0 2 -8 4 -4 4 8 2 0 -8 0 -16 0 -12 4 8 4 -4 0 8 -8 -16 4 -2 8 -2 0 -24 -1 0 -6 -24 4 12 0 8 8 12 6 -4 4 -4 8 4 0 -8 8 0 -8 0 16 4 8 0 0 0 -8 0 -8 0 0 0 0 16 -8 6 16 16 -16 0 -4 -16 -4 -16 -4 16 -8 -16 -8 -12 8 4 8 0 -8 -8 12 -4 0 8 -4 -16 -4 -8 -10 24 4 8 -12 8 -8 -4 24 16 0 -16 0 16 0 -8 0 24 0 0 12 16 8 4 8 -16 -12 -8 -16 -16 16 16 -8 -16 16 -16 16 -8 -4 8 -8 0 8 -4 0 0 -4 16 -16 8 -8 -4 0 -4 0 6 24 -4 0 -12 4 -4 -8 -10 -8 0 -8 0 8 8 -24 -12 0 -8 -4 -8 12 8 8 4 -2 4 4 0 16 -16 0 -4 4 4 8 -4 0 -6 0 -24 -2 4 0 12 -4 -1 0 4 0 8 10 -8 8 8 2 0 1 4 0 0 8 4 -8 -4 -4 0 4 8 2 0 -16 16 0 4 8 -8 4 -12 0 0 2 -4 -8 0 -8 12 -8 -4 -2 4 8 -4 4 4 8 -4 -8 -2 0 -1 2 1 1 1 -12 0 6 0 0 8 -8 -24 6 24 0 0 0 -12 -8 -24 0 0 3 0 0 0 0 12 8 0 0 0 6 24 12 24 0 -24 6 0 -24 0 0 0 0 0 0 0 12 0 0 48 0 0 6 24 6 0 0 3 0 0 0 0 24 0 0 -24 -24 12 -24 0 24 0 0 0 -24 0 0 -48 0 0 0 0 0 12 4 0 -24 0 12 -48 12 -24 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 24 -48 24 0 12 0 -12 0 0 12 0 0 0 0 0 0 0 -24 48 -24 -12 0 0 0 0 -16 0 48 0 12 0 -24 0 48 -16 0 0 -48 24 48 0 -24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 -12 0 12 -24 0 0 0 0 -12 0 4 0 4 0 0 0 12 24 -24 0 0 0 0 12 0 -48 24 0 0 0 0 -48 24 48 -24 0 0 0 6 0 0 0 0 0 0 12 0 0 -24 12 0 0 0 0 6 0 0 24 -24 3 0 0 0 0 0 -24 0 0 0 0 3 0 0 0 -24 8 24 -24 24 0 -8 0 6 0 0 0 0 12 0 -24 12 0 0 0 6 -8 0 -12 0 0 0 8 0 6 0 0 -24 24 0 6 0 0 -12 1 0 1 1 1 -8 -2 4 0 -8 4 -4 -12 -4 12 -2 -4 8 4 4 12 8 2 1 0 -8 4 0 4 -4 0 8 -8 2 8 4 -12 4 -8 2 0 -8 -8 8 0 4 4 -8 4 -4 0 -8 8 -8 4 -2 -8 -2 0 -8 -1 8 2 8 4 4 0 8 8 -4 -2 -4 4 4 8 4 0 8 -8 8 -8 0 -8 4 -8 0 0 0 0 0 0 0 0 0 0 0 -8 -2 16 -16 -16 0 -4 16 -4 0 -4 0 8 0 8 -4 8 -4 0 0 8 0 -4 -4 0 0 -4 0 -4 8 -2 -8 4 -8 4 0 -8 -4 8 0 0 0 0 0 0 -8 0 -8 0 0 -4 0 8 -4 -8 0 4 8 -16 16 16 -16 -8 0 0 0 0 0 -4 0 0 0 0 -4 0 0 -4 0 0 0 0 -4 0 -4 0 -2 8 -4 0 -4 4 -4 8 -2 8 0 8 0 -8 8 8 4 0 -8 4 8 -4 -8 8 4 -2 4 4 8 -8 -8 8 -4 4 4 8 -4 0 2 0 -8 -2 4 0 4 -4 -1 0 4 0 -8 2 8 -8 -8 2 0 1 4 0 0 -8 -4 8 12 -12 0 4 -8 2 -8 8 8 -8 4 8 -8 4 4 0 0 2 -4 8 8 -8 -4 0 4 -2 -4 0 -4 -12 12 0 4 0 -2 -8 -1 2 1 1 1 -12 0 6 0 0 -8 8 24 6 -24 0 0 0 -12 8 24 0 0 3 0 0 0 0 12 -8 0 0 0 6 24 12 -24 0 -24 6 0 -24 0 0 0 0 0 0 0 12 0 0 -48 0 0 6 24 6 0 0 3 0 0 0 0 -24 0 0 -24 24 12 24 0 -24 0 0 0 -24 0 0 48 0 0 0 0 0 12 4 0 -24 0 12 -48 12 -24 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 -24 48 -24 0 12 0 -12 0 0 12 0 0 0 0 0 0 0 24 -48 24 -12 0 0 0 0 -16 0 48 0 12 0 -24 0 48 -16 0 0 48 -24 -48 0 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 -12 0 12 -24 0 0 0 0 -12 0 4 0 4 0 0 0 12 -24 24 0 0 0 0 12 0 -48 24 0 0 0 0 48 -24 -48 24 0 0 0 6 0 0 0 0 0 0 12 0 0 -24 12 0 0 0 0 6 0 0 -24 24 3 0 0 0 0 0 -24 0 0 0 0 3 0 0 0 -24 -8 24 24 -24 0 8 0 6 0 0 0 0 12 0 -24 12 0 0 0 6 8 0 -12 0 0 0 -8 0 6 0 0 24 -24 0 6 0 0 -12 1 0 1 1 1 -8 -2 4 0 -8 -4 4 12 -4 -12 -2 -4 8 4 -4 -12 -8 2 1 0 -8 4 0 4 4 0 8 8 2 8 4 12 4 -8 2 0 -8 8 -8 0 4 4 -8 4 -4 0 -8 -8 8 4 -2 -8 -2 0 -8 -1 -8 2 8 4 -4 0 8 8 4 -2 4 4 -4 8 4 0 8 -8 -8 8 0 8 4 -8 0 0 0 0 0 0 0 0 0 0 0 -8 -2 -16 16 16 0 -4 -16 -4 0 -4 0 8 0 8 4 -8 4 0 0 8 0 -4 -4 0 0 -4 0 -4 8 -2 -8 -4 8 -4 0 -8 -4 8 0 0 0 0 0 0 -8 0 -8 0 0 -4 0 -8 4 8 0 -4 8 16 -16 -16 16 -8 0 0 0 0 0 -4 0 0 0 0 -4 0 0 -4 0 0 0 0 -4 0 -4 0 -2 8 -4 0 4 -4 -4 8 -2 8 0 8 0 -8 8 8 4 0 8 -4 -8 4 -8 8 4 -2 4 4 -8 8 8 -8 -4 4 4 8 -4 0 2 0 -8 -2 4 0 -4 4 -1 0 4 0 -8 2 8 -8 -8 2 0 1 4 0 0 -8 4 8 -12 12 0 -4 -8 2 8 -8 -8 8 4 8 -8 4 4 0 0 2 4 8 8 -8 -4 0 -4 -2 -4 0 -4 12 -12 0 4 0 -2 -8 -1 2 1 1 -1 8 -10 4 -8 -8 4 -4 12 4 4 2 -4 -8 4 4 12 0 2 1 -16 -8 -4 0 4 4 -16 -8 0 2 8 4 12 -4 8 2 0 8 0 0 0 4 -4 -8 -4 4 -16 -8 8 0 -4 2 8 2 -16 -8 1 0 -2 -8 -4 4 0 -8 8 4 2 4 -4 4 8 4 0 8 8 0 8 0 0 -4 -8 0 0 0 8 0 -8 0 0 0 0 0 -8 -2 0 0 0 0 -4 0 -4 0 -4 0 -8 0 -8 4 8 4 -8 0 8 0 4 4 0 8 -4 0 -4 -8 -2 -8 4 8 4 0 8 -4 -8 0 0 0 0 0 0 8 0 8 0 0 -4 0 -8 -4 -8 0 -4 -8 0 0 0 0 -8 0 0 0 0 8 4 -8 -8 0 0 4 0 0 -4 0 0 8 0 4 0 4 0 2 8 4 0 -4 -4 4 8 2 8 0 8 0 -8 8 8 -4 16 -8 -4 -8 -4 -8 -8 4 -2 4 -4 0 0 0 0 -4 4 4 -8 -4 0 2 0 8 -2 4 16 -4 -4 -1 0 4 0 8 2 -8 8 8 -2 16 -1 4 0 0 -8 -4 -8 -12 -12 16 -4 8 -2 0 0 0 0 -4 8 -8 -4 4 0 0 -2 -4 8 -8 8 4 8 -4 -2 -4 8 4 -12 -12 8 -4 8 2 -8 -1 2 -1 1 -1 4 -6 0 -4 16 0 -4 0 0 -4 -6 -4 8 0 0 0 4 -6 1 0 8 -4 0 -4 0 0 16 4 2 0 -4 0 -4 0 2 0 -8 4 4 0 -4 -4 0 4 -4 0 -8 0 4 4 2 0 2 0 -8 1 4 -2 0 -4 0 0 0 -8 0 -6 0 -4 0 0 -4 0 0 8 4 0 0 4 4 0 0 0 0 -4 0 4 0 0 0 0 8 0 -2 0 0 0 0 -4 0 -4 -8 4 -8 0 -8 0 0 0 0 4 0 8 4 -4 -4 0 -4 4 8 -4 -8 -2 0 0 0 0 -4 0 4 -8 -8 0 8 0 8 0 0 0 0 0 0 4 8 0 0 0 8 0 -8 0 0 0 0 0 -8 -8 -8 -8 -4 -4 4 4 0 4 -4 0 0 4 8 8 -4 -4 4 0 4 0 2 8 -4 0 0 0 4 8 2 0 0 0 0 0 0 0 4 0 0 0 0 0 -8 0 -4 -2 -4 4 -4 -4 -4 -4 4 4 4 8 4 0 2 0 8 -2 -4 0 0 0 -1 0 4 0 8 2 0 0 0 6 0 -1 4 0 0 0 0 0 0 0 0 0 -8 -2 -4 -4 -4 -4 4 -16 8 4 4 0 0 -2 0 -8 -4 -16 4 4 0 6 0 4 4 0 0 4 0 4 2 -4 -1 2 -1 1 -1 8 -8 2 -8 16 0 8 0 -2 8 0 -8 0 -16 0 0 8 0 3 -16 0 8 0 -4 0 -16 -16 8 2 8 4 0 8 0 2 0 0 8 8 0 -8 0 16 16 4 16 -16 0 -8 0 -2 -8 -2 16 -16 -3 -8 -8 0 0 0 0 0 0 0 -12 0 -16 0 16 -8 0 0 0 -8 0 0 -8 16 16 0 -4 -4 -8 0 -8 -4 -32 -4 0 0 0 8 16 16 16 -4 0 16 0 0 -16 0 -16 0 -16 0 0 0 -8 4 0 8 8 8 -4 -8 -16 0 16 16 8 0 0 0 0 8 -16 0 16 0 0 0 -16 0 4 0 0 0 16 0 -8 0 0 0 0 0 0 0 -16 -16 -16 -16 16 0 0 0 0 8 0 8 8 -4 -8 16 4 0 -8 0 0 8 -8 0 4 0 4 -8 -16 16 4 0 0 -16 -16 -8 16 4 16 32 8 0 0 8 -16 0 0 0 0 0 -16 0 2 -16 8 8 8 8 8 -4 0 0 0 4 0 8 0 16 2 -16 -16 0 0 3 0 16 0 16 8 0 -16 -16 0 16 -3 -8 0 0 0 0 -8 0 0 16 0 0 -2 -8 -8 -8 -8 4 16 0 -4 -8 0 0 -2 0 0 8 -16 8 -8 0 0 2 -8 8 0 0 8 -2 8 0 -8 1 0 -1 1 -1 0 2 0 -8 0 4 4 0 0 -4 2 4 0 -4 0 0 4 2 -3 -8 0 4 -8 0 4 16 0 -4 -2 0 0 4 -4 0 2 0 0 8 -8 8 4 4 -8 -12 0 -8 0 -8 4 4 -2 0 2 16 0 -3 8 -6 0 -4 -4 -8 0 0 0 -6 0 12 -12 0 -4 0 0 0 -4 0 8 -8 12 8 0 4 4 -4 0 -8 0 0 -4 0 8 0 -6 -8 -16 8 -4 -4 16 4 8 -12 0 8 -8 -8 -4 0 -12 4 0 0 0 4 -4 0 8 12 0 12 0 -6 0 0 -8 0 0 0 4 0 0 0 0 0 -8 -4 0 0 0 0 0 -4 0 0 12 8 -8 0 0 -8 -16 8 16 0 0 8 0 -8 8 -4 -8 4 0 0 -12 0 0 4 0 8 -4 0 4 -4 -4 4 6 0 12 0 4 0 -12 0 6 8 4 -8 0 0 0 0 -4 -16 0 12 8 0 0 0 -4 2 -12 4 -8 8 -4 4 0 4 -4 0 0 -8 6 0 0 -2 12 8 4 0 3 8 -12 0 0 6 0 8 -8 -2 8 3 4 8 0 0 -4 0 0 -4 -16 0 0 2 -8 8 -4 4 0 0 0 0 -4 -8 0 -2 0 0 0 0 -4 8 -4 -2 0 -4 4 0 -4 8 0 -4 2 0 -1 2 -1 1 -1 0 -2 0 -4 0 0 4 4 0 -4 2 4 0 -4 4 4 0 2 -3 0 0 4 0 0 0 8 -8 0 2 0 0 0 -4 0 -2 8 0 -4 4 0 4 -4 8 -4 0 0 0 0 0 4 2 0 -2 8 0 -3 -4 2 0 4 0 0 0 0 -4 2 -12 -4 0 0 -4 8 0 0 0 -8 0 4 4 -8 -8 4 -4 0 0 -4 0 0 -4 0 0 0 2 0 8 0 4 4 -8 -4 0 -4 -8 -8 0 8 0 -8 0 0 0 0 0 4 -4 0 4 4 8 -4 0 2 0 -12 0 -4 0 0 4 0 8 0 -8 0 0 -4 0 0 0 0 0 -4 -8 8 0 0 0 4 0 0 8 0 -8 0 8 0 -8 0 4 -4 -4 0 0 0 -4 0 0 4 8 0 0 0 -4 4 4 -4 -2 0 4 0 0 12 4 0 -2 -8 4 8 0 0 0 0 -4 -8 8 0 0 4 0 0 -4 -2 -4 4 4 -4 0 0 0 -4 4 0 0 0 -2 -8 0 2 4 0 0 12 3 0 4 8 0 -2 0 -8 8 -2 0 3 4 0 8 0 0 0 -4 0 -8 -4 0 -2 4 -4 0 0 0 0 0 0 -4 0 -8 2 -4 0 0 0 -4 4 0 -2 0 0 4 -4 0 4 0 0 2 0 -1 2 -1 1 -1 0 -6 0 0 0 -4 -4 0 0 12 2 4 0 -4 0 0 -4 2 -3 8 0 4 -8 0 -4 0 0 4 6 0 0 12 -4 0 -6 0 0 0 0 8 4 4 -8 4 0 8 0 -24 -4 4 6 0 -6 0 0 -3 0 2 0 -4 -12 -8 0 0 0 2 0 -4 12 0 -4 0 0 0 4 0 8 0 -4 8 0 -12 4 4 0 0 0 0 12 0 8 0 2 8 0 -8 -4 -4 0 4 8 4 0 8 -8 -8 -12 0 12 -4 0 0 0 4 -4 0 0 -4 0 -4 0 2 0 0 -24 0 0 0 4 0 0 0 0 0 -8 12 0 0 0 0 0 -4 0 0 -12 24 -8 0 0 8 0 -8 0 0 0 8 0 -8 0 -4 0 -4 0 0 4 0 0 4 0 8 4 0 4 -4 -4 4 -2 0 -4 0 12 0 4 0 -2 8 -12 -8 0 0 0 0 -4 0 0 -12 24 0 0 0 -4 -6 4 4 0 0 4 -4 0 4 -4 0 0 -8 -2 0 0 6 -4 -8 12 0 3 8 4 0 0 -2 0 8 -8 -2 -8 3 4 8 0 0 4 0 0 -12 0 0 0 -6 0 0 4 -4 0 0 0 0 -4 -8 0 6 0 0 0 0 -4 0 4 -2 0 4 4 0 -12 0 0 4 2 0 -1 2 -1 1 -1 4 -4 2 -8 -8 0 8 4 -2 16 8 0 -8 -12 -4 -4 4 -8 -1 -8 8 0 -8 0 0 0 8 4 2 0 0 -8 8 0 -2 16 0 0 0 8 8 0 0 -8 0 8 -8 0 -4 -8 -2 0 2 0 8 1 0 4 -8 0 -8 8 8 0 4 -4 -4 0 0 8 0 -16 0 8 -4 -8 -8 0 8 0 0 0 0 12 8 8 -4 0 0 -8 -8 -8 -4 -8 0 -8 0 0 0 0 8 8 -16 0 -8 0 8 8 0 12 -4 -8 -4 -8 0 4 8 -8 -16 0 8 4 8 4 0 -4 -4 -8 8 -8 0 0 0 0 8 0 8 8 -8 0 0 8 0 -8 0 0 -8 4 8 8 0 8 0 8 0 -8 16 8 -8 -8 -8 -12 4 4 8 -4 -8 0 16 8 -12 4 0 0 0 0 4 8 -8 4 -8 -4 0 -8 -4 0 0 0 0 0 -8 8 -8 0 8 0 0 -4 -8 -8 8 2 -8 0 0 0 4 4 0 0 0 0 0 8 -4 16 -8 -2 8 -8 8 4 -1 -8 0 0 8 4 0 0 0 8 8 1 -8 8 0 0 0 0 4 8 0 4 -8 -2 0 0 -4 -4 0 -8 0 0 0 -8 -16 2 -4 8 4 8 0 -8 0 -8 2 -4 8 -4 -8 8 -2 4 0 -4 1 0 -1 1 -1 0 2 -4 -4 0 0 4 0 -4 -4 2 4 8 -4 0 0 -4 2 1 0 8 4 0 4 0 0 0 -4 -2 8 -4 0 -4 0 -2 0 0 4 4 0 -4 -4 0 4 4 0 8 0 -4 -4 -2 8 -2 0 -8 1 4 6 0 -4 0 0 -16 0 0 -6 0 4 0 0 4 0 0 -8 -4 0 0 4 4 0 0 0 0 4 0 4 0 0 0 0 8 -16 6 0 0 0 0 -4 0 -4 -8 4 8 0 -8 0 0 0 0 -4 0 -8 0 -4 4 0 -4 4 -8 4 8 -2 0 0 0 0 0 0 -4 -8 8 0 -8 0 8 0 16 0 0 0 0 4 -8 0 0 0 8 0 8 0 0 0 0 0 8 -8 8 -8 -4 4 4 -4 0 0 -4 0 0 -4 -8 8 4 0 4 0 4 0 -6 8 -4 0 0 0 -4 -8 2 0 0 0 0 -8 16 0 4 0 0 0 0 0 8 0 4 2 -4 -4 -4 -4 4 4 -4 4 4 0 4 0 -6 0 8 2 -4 0 0 0 -1 0 -4 0 -8 2 0 0 0 -2 0 -1 4 0 0 0 0 -8 0 0 0 0 -8 2 -4 -4 4 4 -4 0 0 4 -4 0 0 2 0 -8 0 0 -4 4 0 -2 4 -4 4 0 0 4 4 -4 2 0 -1 2 -1 1 -1 0 6 -4 -8 8 4 12 -4 -4 -12 2 4 8 -12 4 -4 0 2 1 0 8 4 0 4 4 0 8 -16 2 -8 4 -4 -12 8 2 0 -8 16 0 0 -4 -4 -8 -4 4 0 24 8 0 -4 2 -8 2 0 -8 1 16 -10 -8 -4 -12 0 24 -8 -12 10 4 -4 4 -8 12 0 8 -8 -16 8 0 0 -4 -8 0 0 0 8 0 8 0 0 0 0 -16 24 -10 16 16 -16 0 -4 -16 -4 16 -4 -16 -8 16 -8 -12 8 4 -8 0 -8 -8 -4 12 0 -8 -4 16 -4 24 6 -8 4 8 -12 8 -8 -4 -8 -16 0 16 0 -16 0 -24 0 8 0 0 4 16 -8 -4 -8 -16 12 8 16 16 -16 -16 8 -16 16 -16 16 -8 4 8 -8 0 -8 4 0 0 -12 16 -16 8 8 4 0 4 0 10 8 4 0 12 -4 4 -24 -6 8 0 8 0 8 -24 8 4 0 -8 -4 -8 12 8 8 4 -2 4 -12 -16 0 0 16 -4 4 4 8 -4 0 10 0 8 -2 4 0 12 -4 -1 0 4 0 -24 -6 -8 8 8 -2 0 -1 12 0 0 -8 -4 8 4 4 0 -4 -8 -2 -16 0 0 16 -4 -8 8 -4 -4 0 0 -2 -4 -8 0 -8 -4 8 -4 -2 4 -8 12 4 4 8 4 -8 2 0 -1 2 -1 1 -1 -4 2 0 -4 8 0 4 0 0 -4 2 4 0 -8 0 0 4 2 1 0 0 4 8 -4 0 0 0 4 2 0 -4 0 -4 0 2 -8 8 -4 -4 8 -4 4 0 -4 -4 0 -16 0 4 -4 2 0 2 0 0 1 -4 -2 8 4 0 8 -8 8 0 2 0 4 0 -8 4 -8 0 0 4 0 8 -4 -4 0 -8 0 0 4 0 4 0 0 0 0 0 -8 -2 0 0 0 0 4 0 4 0 -4 0 0 0 0 0 0 0 -4 0 0 -4 -4 4 0 -4 -4 0 4 -16 6 8 0 0 0 4 -8 -4 0 0 0 0 0 0 0 8 0 -8 0 0 4 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 -4 4 4 -4 0 -4 4 0 0 -4 0 0 4 4 -4 0 -4 0 2 0 4 0 0 0 -4 16 -6 0 0 0 0 0 8 -8 4 0 0 0 0 0 0 8 4 -2 4 -4 4 4 -4 -4 4 -4 -4 -8 4 -8 2 8 0 -2 4 0 0 0 -1 -8 -4 8 16 -6 0 0 0 -2 0 -1 4 -8 8 0 0 0 0 0 0 0 0 -2 4 4 -4 -4 4 -8 -8 4 -4 -8 8 -2 0 0 4 -8 -4 4 0 -2 0 -4 4 0 0 4 0 -4 2 4 -1 2 -1 1 -1 0 4 -2 -8 8 0 0 -4 2 8 0 0 0 -8 -4 4 4 0 -1 0 0 0 -8 0 0 8 -8 -4 -2 0 0 0 8 0 2 0 0 8 0 8 0 0 8 0 0 0 0 0 -4 0 2 0 -2 -8 0 1 -8 -4 -8 0 0 8 8 0 -4 4 -4 0 0 -8 8 0 0 0 4 8 -8 0 0 -8 0 0 0 -4 0 0 -4 0 0 0 0 -8 4 0 -8 0 0 0 -8 0 0 0 8 8 0 -8 0 -8 0 -4 4 0 0 0 -8 4 0 0 8 0 0 -4 8 4 0 4 0 8 0 0 -8 0 -8 0 0 0 8 0 -8 0 0 0 8 8 0 0 0 -4 0 0 8 0 8 -8 8 0 -8 0 0 0 0 4 -4 0 0 -4 0 8 -8 0 4 0 0 0 0 0 -4 0 0 4 0 -4 0 0 4 8 0 -8 0 0 -8 8 0 8 -8 0 0 4 0 8 0 -2 0 -8 8 0 4 -4 0 0 0 0 0 8 4 0 0 2 0 0 0 4 -1 -8 0 0 0 -4 0 -8 8 0 0 1 -8 8 0 0 0 0 -4 0 -8 4 0 2 -8 0 -4 4 0 8 0 0 0 -8 0 -2 -4 0 0 -8 0 -8 0 0 -2 4 8 4 0 8 2 -4 0 0 1 0 -1 1 -1 0 -2 -4 0 8 -4 -4 4 -4 4 2 -4 8 -4 -4 4 -8 2 1 0 8 -4 0 4 -4 0 8 8 2 -8 4 4 -4 8 2 0 -8 -8 8 0 4 -4 -8 -4 4 0 8 -8 -8 -4 2 -8 2 0 8 1 -8 -2 8 -4 12 0 8 -8 12 2 -4 -4 -4 -8 4 0 8 -8 8 -8 0 8 -4 -8 0 0 0 0 0 0 0 0 0 0 0 8 -2 -16 -16 16 0 -4 16 -4 0 -4 0 -8 0 -8 12 -8 -4 0 0 -8 -8 4 4 0 0 -4 0 -4 8 -2 8 -4 -8 12 8 -8 -4 8 0 0 0 0 0 0 -8 0 -8 0 0 -4 0 8 4 8 0 -12 8 -16 -16 16 16 8 0 0 0 0 0 4 0 0 0 -8 4 0 0 -4 0 0 0 8 4 0 4 0 2 -8 4 0 -12 4 4 -8 2 8 0 8 0 8 -8 -8 -4 0 8 4 8 -12 8 8 4 -2 4 -4 8 -8 8 -8 -4 4 4 8 -4 0 2 0 -8 -2 4 0 -12 4 -1 0 4 0 -8 2 -8 8 8 -2 0 -1 4 0 0 -8 4 8 -4 -4 0 4 -8 -2 8 -8 8 -8 -4 -8 8 -4 4 0 0 -2 4 -8 0 -8 4 0 4 -2 4 0 4 -4 -4 0 4 0 2 0 -1 2 -1 1 -1 0 0 -2 -4 8 -4 0 0 2 8 0 0 0 -8 0 0 0 0 -1 8 0 0 0 0 4 0 -16 8 2 0 0 -4 8 0 -2 8 0 -4 4 0 0 0 -8 0 0 -8 0 -8 0 0 -2 0 2 0 0 1 4 4 8 0 4 0 -8 0 0 -4 0 0 4 -8 8 -8 0 0 -8 0 0 -4 0 8 8 0 0 -8 0 4 4 0 0 0 8 8 -4 -8 0 -8 0 0 0 0 -8 0 0 -8 8 8 -4 0 -4 -8 4 0 0 0 -8 -4 4 0 0 0 0 4 -8 0 8 0 0 8 0 0 0 0 0 0 -8 0 -8 0 8 0 0 0 0 0 4 -8 8 0 0 8 0 8 0 -8 0 8 0 -8 -4 0 -4 8 -4 0 0 4 0 8 0 -8 8 0 0 0 0 0 4 0 0 -4 4 0 0 0 -4 -8 0 8 0 0 8 -8 0 0 0 -4 8 0 0 8 0 2 0 -8 -4 4 0 8 0 0 0 0 0 0 -4 8 0 -2 0 8 -4 0 -1 0 0 -8 0 4 0 8 -8 0 -8 1 -8 0 8 0 -4 0 0 4 0 0 0 -2 4 -4 0 -8 0 8 0 0 0 0 -8 2 0 0 0 -8 0 -4 4 0 -2 0 8 0 -4 4 2 0 0 0 1 0 -1 1 -1 0 6 -4 -8 -8 4 4 4 -4 -12 2 4 8 4 -4 4 0 2 1 16 8 4 0 4 4 -16 -8 0 2 -8 4 -4 4 -8 2 0 8 0 0 0 -4 -4 8 -4 4 16 -8 8 0 -4 2 -8 2 -16 -8 1 0 -2 8 -4 -12 0 8 8 12 2 -4 -4 4 8 -4 0 -8 -8 0 -8 0 0 -4 8 0 0 0 -8 0 -8 0 0 0 0 0 8 -2 0 0 0 0 -4 0 -4 0 -4 0 8 0 8 -12 -8 4 8 0 -8 8 -4 -4 0 8 -4 0 -4 -8 -2 8 -4 8 12 -8 8 -4 -8 0 0 0 0 0 0 -8 0 -8 0 0 4 0 8 -4 -8 0 -12 8 0 0 0 0 -8 0 0 0 0 8 4 -8 8 0 8 4 0 0 4 0 0 -8 -8 4 0 4 0 2 8 4 0 12 4 4 8 2 -8 0 -8 0 8 -8 -8 4 16 8 -4 -8 -12 8 -8 4 -2 4 4 0 0 0 0 -4 4 4 -8 -4 0 2 0 8 -2 4 -16 12 4 -1 0 4 0 8 2 8 -8 -8 -2 -16 -1 -4 0 0 8 -4 8 -4 4 16 4 -8 -2 0 0 0 0 -4 8 -8 -4 -4 0 0 -2 4 -8 0 8 -4 8 -4 -2 4 -8 -4 -4 4 8 4 -8 2 0 -1 2 -1 1 -1 0 8 -6 -8 0 0 -8 0 6 8 0 0 0 0 0 0 -8 0 3 16 0 0 0 12 0 -16 0 -8 2 -8 4 0 0 0 2 0 0 8 8 0 0 0 0 0 -12 -16 0 0 8 0 -2 8 -2 16 0 -3 -8 0 0 0 0 0 0 0 0 -4 0 0 0 0 0 0 0 0 8 0 0 -8 0 0 0 -4 -4 8 0 -8 -4 0 -4 0 0 0 0 -16 16 -16 -4 0 16 0 0 0 0 0 0 0 0 0 0 8 -12 0 0 0 0 -4 -8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 4 0 0 0 -16 0 0 0 0 0 0 0 0 0 16 -16 16 -16 0 0 0 0 0 8 0 8 -8 12 0 0 4 0 0 0 0 -8 0 0 4 0 4 0 0 0 4 0 0 0 0 0 0 4 0 0 -8 0 0 0 -16 0 0 0 0 0 0 0 2 0 0 8 8 -8 -8 12 0 0 0 4 0 0 0 0 2 0 16 0 0 3 0 0 0 0 0 0 0 0 0 -16 -3 0 0 0 0 0 8 0 0 16 0 0 -2 -8 -8 8 8 -12 0 0 -4 0 0 0 -2 0 0 0 0 0 -8 0 0 -6 8 0 0 0 8 6 -8 0 0 1 0 -1 1 -1 -4 8 -2 -8 0 0 -8 0 2 8 0 0 0 4 0 0 8 0 3 16 0 0 16 -4 0 -16 -16 8 6 -8 -4 0 0 -8 6 -16 24 -8 -8 16 0 0 0 0 4 -16 0 0 -8 0 -6 8 -6 16 0 -3 8 0 0 0 0 -16 0 -24 0 4 0 0 0 0 0 16 8 0 -8 0 -16 8 0 0 16 12 4 8 -8 -8 -4 -16 12 -8 16 0 0 16 -16 16 4 0 -16 0 16 0 -16 0 16 0 0 0 0 8 -4 0 -4 0 0 -4 -8 0 -16 0 0 0 0 0 0 0 -4 0 0 0 -16 16 -16 -16 16 -12 0 8 0 16 -16 0 16 0 0 0 -16 0 0 -16 16 -16 16 0 16 -16 16 -16 8 0 8 -8 4 4 0 4 8 0 16 -16 -8 4 0 -4 0 -4 0 0 0 4 0 0 0 0 0 0 -12 0 16 -8 0 0 0 -16 0 0 0 0 0 0 0 6 0 0 -8 -8 8 8 -4 0 0 24 -4 16 0 -16 0 6 0 16 0 0 3 16 0 -16 0 0 -8 0 0 0 -16 -3 0 -16 16 8 0 8 0 0 16 0 0 -6 8 8 -8 -8 4 0 -24 4 0 -16 16 -6 0 0 -4 0 0 -8 0 0 -2 8 0 0 0 8 2 -8 0 4 1 0 -1 1 -1 4 -2 0 -8 -8 4 -4 4 0 -12 -6 4 8 16 -4 4 8 -6 1 0 8 4 -16 -4 4 0 -8 8 -2 0 4 -4 12 -8 -2 16 0 0 0 0 4 -4 -8 -4 -4 0 8 -8 8 4 -2 0 -2 0 -8 1 0 -2 8 -4 4 -16 -8 0 -4 10 -4 4 4 -8 -4 16 -8 8 8 8 0 0 -4 -8 0 0 0 0 0 8 0 0 0 0 -16 -8 -2 0 0 0 0 -4 0 -4 0 -4 16 -8 16 -8 4 8 4 0 0 8 -4 4 -4 0 -8 -4 -16 4 8 6 8 -4 -8 -4 4 -8 4 -8 0 0 0 0 0 0 8 0 -8 0 0 -4 0 -8 -4 8 0 4 -8 0 0 0 0 8 0 0 16 16 -8 -4 8 0 0 -4 4 0 0 4 -16 -16 0 4 4 0 4 0 2 8 4 0 -4 4 -4 -8 -6 8 0 8 0 0 8 -8 -4 0 -8 -4 8 4 -8 8 -4 2 4 4 0 0 -8 -8 4 4 4 0 -4 0 2 -16 8 2 4 0 -4 4 -1 16 -4 0 -8 -6 8 8 8 6 0 -1 -12 16 0 8 -4 0 -4 4 0 4 -8 2 0 0 -8 -8 4 8 0 -4 -4 0 -16 2 4 -8 -4 8 -4 8 -4 6 0 0 -12 -4 4 8 0 0 2 -4 -1 2 -1 1 -1 4 -10 0 0 -8 -4 -4 -4 0 4 -6 12 8 8 4 -4 0 -6 1 0 8 12 16 -4 -4 0 -8 0 -2 0 4 4 4 -8 -2 -16 0 8 8 0 -4 -4 -8 -4 -4 0 -8 8 0 4 -2 0 -2 0 8 1 8 6 -8 -4 -4 16 8 0 4 2 4 4 -4 -8 4 -16 -8 8 0 -8 0 8 -4 -8 0 0 0 -8 0 0 0 0 0 0 0 8 6 0 0 0 0 -4 0 -4 16 -4 0 -8 0 -8 -4 -8 -4 8 0 8 -4 -4 4 0 0 -4 0 4 -8 -2 -8 4 8 4 4 -8 4 8 16 0 -16 0 -16 0 -8 0 8 0 0 4 -16 8 4 -8 -16 -4 -8 0 0 0 0 8 16 16 0 0 0 -4 0 8 0 -4 4 0 0 -4 0 0 -8 4 4 0 4 0 -6 -8 4 0 4 -4 -4 8 2 8 0 8 0 0 -8 8 4 0 8 4 -8 -4 -8 8 -4 2 4 -4 -8 -8 0 0 4 4 4 0 -4 0 -6 16 -8 2 4 0 4 -4 -1 -16 -4 0 8 2 8 8 8 6 0 -1 -4 -16 0 8 4 0 4 -4 0 -4 -8 2 -8 -8 0 0 4 8 0 -4 -12 0 16 2 -4 -8 -4 8 -12 0 4 6 0 8 -4 4 -4 0 0 8 2 -4 -1 2 -1 1 -1 8 -8 2 -8 -16 0 8 0 -2 8 0 8 0 0 0 0 8 0 3 -16 0 -8 0 -4 0 -16 16 8 2 8 4 0 -8 0 2 0 0 8 8 0 8 0 -16 -16 4 16 16 0 -8 0 -2 -8 -2 16 16 -3 -8 8 0 0 0 0 0 0 0 4 0 16 0 -16 8 0 0 0 -8 0 0 -8 -16 -16 0 -4 -4 -8 0 -8 -4 -32 -4 0 0 0 -8 16 16 16 -4 0 16 0 0 16 0 16 0 16 0 0 0 -8 4 0 8 -8 -8 -4 -8 16 0 -16 -16 -8 0 0 0 0 8 16 0 -16 0 0 0 -16 0 4 0 0 0 16 0 8 0 0 0 0 0 0 0 -16 -16 -16 -16 -16 0 0 0 0 8 0 8 8 -4 -8 -16 4 0 8 0 0 8 -8 0 4 0 4 8 16 -16 4 0 0 16 16 8 -16 4 -16 32 8 0 0 -8 -16 0 0 0 0 0 16 0 2 16 -8 8 8 8 8 -4 0 0 0 4 0 -8 0 -16 2 16 -16 0 0 3 0 -16 0 -16 -8 0 16 16 0 16 -3 8 0 0 0 0 -8 0 0 16 0 0 -2 -8 -8 -8 -8 4 -16 0 -4 8 0 0 -2 0 0 8 16 -8 -8 0 0 2 -8 -8 0 0 8 -2 8 0 -8 1 0 -1 1 -1 0 -6 4 -4 8 0 -4 0 4 -4 -6 4 0 4 0 0 -4 -6 1 0 0 4 8 4 0 0 16 -4 -2 -8 -4 0 4 0 -2 8 0 -4 -4 8 4 4 0 -4 4 0 0 0 -4 4 -2 -8 -2 0 0 1 -4 -2 -8 4 0 8 -8 0 0 -6 0 -4 0 8 4 8 0 -16 -4 0 8 -4 -4 0 8 0 0 -4 0 4 0 0 0 0 0 -8 -2 0 0 0 0 4 0 4 0 -4 0 0 0 0 0 0 0 4 0 -16 0 4 4 0 -4 -4 0 -4 0 -2 -8 0 0 0 0 8 4 0 0 0 0 0 0 0 8 0 8 0 0 -4 0 0 0 0 0 0 16 0 0 0 0 -8 0 0 0 0 -4 -4 4 4 0 0 4 0 0 -4 0 0 -4 0 -4 0 -4 0 2 0 4 0 0 0 4 0 2 0 0 0 0 8 8 8 -4 0 0 0 0 0 16 -8 -4 2 4 -4 4 4 4 4 -4 -4 -4 0 4 -8 2 -8 0 2 4 0 0 0 -1 -8 4 -8 0 2 0 0 0 6 0 -1 -4 -8 -8 0 0 8 0 0 0 0 0 2 4 4 4 4 -4 -8 0 4 -4 -8 -8 2 0 0 0 -8 -4 4 0 6 -4 4 -4 0 0 4 -4 4 2 0 -1 2 -1 1 -1 4 -8 6 -8 0 0 8 0 -6 8 0 0 0 -4 0 0 -8 0 3 -16 0 0 16 12 0 -16 16 -8 -2 -8 -4 0 0 8 -2 16 8 -8 -8 16 0 0 0 0 -12 16 0 0 8 0 2 8 2 16 0 -3 8 0 0 0 0 -16 0 -8 0 4 0 0 0 0 0 -16 -8 0 8 0 -16 8 0 0 -16 -4 4 -8 -24 -8 -4 16 -4 -24 16 0 0 -16 -16 -16 4 0 -16 0 16 0 16 0 16 0 0 0 0 -8 12 0 4 0 0 -4 -8 0 16 0 0 0 0 0 0 0 4 0 0 0 16 -16 16 -16 16 4 0 24 0 16 16 0 -16 0 0 0 -16 0 0 16 16 16 16 0 -16 -16 -16 -16 8 0 8 8 -12 -4 0 4 24 0 -16 -16 8 -4 0 -4 0 -4 0 0 0 4 0 0 0 0 0 0 4 0 -16 -8 0 0 0 -16 0 0 0 0 0 0 0 -2 0 0 -8 -8 -8 -8 12 0 0 8 -4 16 0 16 0 -2 0 -16 0 0 3 16 0 16 0 0 8 0 0 0 16 -3 0 -16 -16 -8 0 8 0 0 16 0 0 2 8 8 8 8 -12 0 -8 4 0 -16 -16 2 0 0 4 0 0 -8 0 0 6 -8 0 0 0 8 -6 8 0 -4 1 0 -1 1 -1 4 -4 2 -8 8 0 0 -4 -2 0 -8 0 8 4 4 4 4 8 -1 -8 -8 0 -8 0 0 0 -8 4 2 0 0 8 -8 0 -2 16 0 0 0 8 -8 0 0 8 0 8 8 0 -4 8 -2 0 2 0 -8 1 0 -4 8 0 8 8 -8 0 -4 4 4 0 0 -8 0 -16 0 -8 -4 8 -8 0 -8 0 0 0 0 12 8 8 -4 0 0 -8 -8 8 4 -8 0 -8 0 0 0 0 8 -8 -16 0 -8 0 -8 -8 0 12 -4 8 -4 8 0 4 8 8 -16 0 -8 -4 -8 -4 0 4 -4 8 -8 8 0 0 0 0 8 0 -8 8 8 0 0 -8 0 8 0 0 -8 -4 -8 8 0 8 0 -8 0 -8 16 8 -8 8 -8 -12 4 4 -8 -4 -8 0 16 8 -12 4 0 0 0 0 -4 -8 8 4 8 4 0 8 4 0 0 0 0 0 8 -8 8 0 -8 0 0 4 8 8 -8 2 8 0 0 0 4 4 0 0 0 0 0 8 4 16 8 -2 -8 -8 -8 -4 -1 -8 0 0 -8 -4 0 0 0 -8 8 1 8 8 0 0 0 0 -4 -8 0 -4 8 -2 0 0 -4 -4 0 8 0 0 0 -8 -16 2 4 -8 4 -8 0 -8 0 8 2 -4 -8 4 8 8 -2 4 0 -4 1 0 -1 1 -1 4 -8 2 -4 8 -4 8 -8 -2 0 -8 8 8 -4 0 8 0 8 -1 0 -8 -8 16 0 4 -8 0 0 -2 0 0 4 0 0 2 -8 0 4 4 0 0 0 0 -8 0 0 -8 8 0 8 2 0 -2 8 8 1 -4 4 -8 0 -4 -16 8 0 8 -4 0 0 4 -8 -8 8 0 -8 0 0 0 -4 8 0 -8 0 0 8 -8 12 4 0 0 8 0 -8 -4 0 -8 0 0 0 -8 0 -16 8 8 0 0 0 4 0 -4 8 -4 8 -4 0 8 -4 12 -8 8 0 8 4 8 0 -8 -8 -4 8 -8 -8 -8 0 -8 0 -16 0 8 -8 -8 0 0 0 8 0 4 8 16 8 -8 0 8 0 8 -8 8 16 -8 0 -12 8 -12 -8 4 4 8 4 8 -8 -8 0 -8 4 0 0 0 0 4 8 -8 -4 -4 0 0 -8 -4 0 0 0 0 0 -8 8 0 -8 0 -4 -8 -8 8 8 -8 -2 -8 8 4 4 0 0 0 0 0 0 0 0 -4 -8 -8 2 8 0 4 0 -1 16 0 8 8 4 0 0 0 -8 0 1 0 -16 -8 0 -4 0 -8 -4 8 0 8 2 -4 -4 0 0 0 8 0 0 8 0 8 -2 0 -8 4 -8 -8 -4 4 8 2 -8 0 8 4 4 -2 8 0 -4 1 0 -1 1 -1 0 -2 0 -4 0 0 -4 12 0 -4 2 -4 0 4 -4 12 0 2 -3 0 0 -4 0 0 0 8 8 0 -6 0 0 0 4 0 6 -8 0 -4 4 0 -4 -4 -8 -4 0 0 0 0 0 4 -6 0 6 8 0 -3 -4 2 0 4 0 0 0 0 -12 2 12 -4 0 0 4 -8 0 0 0 -24 0 4 4 8 8 -12 -4 0 0 -4 0 0 12 0 0 0 2 0 8 0 4 4 -8 -4 0 -4 8 8 0 -8 0 -24 0 0 0 0 0 -4 4 0 4 4 -8 -4 0 2 0 12 0 -12 0 0 4 0 -8 0 8 0 0 12 0 0 0 0 0 4 8 24 0 0 0 12 0 0 8 0 -8 0 -8 0 8 0 4 -4 -4 0 0 0 -4 0 0 -4 -8 0 0 0 -4 4 4 -4 -2 0 4 0 0 -12 4 0 -2 8 -12 -8 0 0 0 0 4 -8 24 0 0 12 0 0 -4 6 -4 -4 4 -4 0 0 0 -4 4 0 0 0 -2 8 0 -6 4 0 0 -12 3 0 4 -8 0 -2 0 8 -8 -2 0 3 -4 0 -8 0 0 0 -12 0 -8 4 0 6 4 -4 0 0 0 0 0 0 4 0 8 -6 4 0 0 0 4 4 0 -2 0 0 -4 -12 0 4 0 0 2 0 -1 2 -1 1 -1 0 -6 0 0 0 4 -4 0 0 4 2 -4 0 4 0 0 -4 2 -3 8 0 -4 8 0 4 0 0 4 -2 0 0 4 4 0 2 0 0 0 0 -8 -4 4 8 4 0 8 0 -8 -4 4 -2 0 2 0 0 -3 0 2 0 -4 -4 8 0 0 0 2 0 -4 -12 0 4 0 0 0 4 0 -8 0 -4 -8 0 4 4 4 0 0 0 0 -4 0 -8 0 2 8 0 -8 -4 -4 0 4 -8 4 0 -8 8 8 -4 0 -12 -4 0 0 0 -4 4 0 0 -4 0 -4 0 2 0 0 -8 0 0 0 4 0 0 0 0 0 8 -4 0 0 0 0 0 4 0 0 12 8 8 0 0 8 0 -8 0 0 0 -8 0 8 0 -4 0 -4 0 0 4 0 0 -4 0 -8 4 0 4 -4 -4 4 -2 0 -4 0 4 0 4 0 -2 -8 4 8 0 0 0 0 4 0 0 12 8 0 0 0 -4 2 4 -4 0 0 4 -4 0 4 -4 0 0 8 -2 0 0 -2 -4 -8 4 0 3 -8 4 0 0 -2 0 -8 8 -2 -8 3 -4 -8 0 0 -4 0 0 -4 0 0 0 2 0 0 4 -4 0 0 0 0 4 8 0 -2 0 0 0 0 4 0 -4 -2 0 4 -4 0 -4 0 0 4 2 0 -1 2 -1 1 -1 0 -10 0 4 0 0 -4 4 0 4 2 -4 0 4 4 4 8 2 -3 16 0 -4 0 0 0 -8 8 -8 2 0 0 0 4 0 -2 -8 0 4 -4 0 -4 -4 -8 12 0 16 0 0 8 4 2 0 -2 -8 0 -3 4 -6 0 4 0 0 0 0 -4 -6 -12 12 0 0 4 -8 0 0 -8 -8 0 -4 -12 8 8 4 -4 8 0 4 0 0 -4 0 0 0 -6 -16 -8 16 4 4 8 -4 0 12 8 8 0 -8 0 -8 0 -8 0 0 0 -4 4 0 -4 -12 -8 12 0 -6 0 -12 0 -4 0 0 4 0 -8 0 8 0 0 -4 0 0 0 0 0 4 8 8 0 0 0 4 0 -16 -8 16 8 0 -8 0 8 0 -4 -4 4 -8 0 0 12 0 0 -4 -8 0 8 0 -4 4 4 -4 6 0 -12 0 0 12 -12 0 6 8 4 -8 0 0 0 0 4 8 8 0 0 4 0 0 -4 -2 12 -4 -4 4 -8 8 0 -4 4 0 0 0 6 8 0 2 -12 -16 0 12 3 0 -12 -8 0 6 0 8 -8 -2 -16 3 -4 0 -8 0 0 0 -4 0 8 -4 0 -2 -4 4 -8 8 0 0 0 0 4 0 8 2 -4 0 0 0 4 -4 0 -2 0 8 -4 -4 0 -4 0 8 2 0 -1 2 -1 1 -1 4 -8 2 -4 -8 4 8 8 -2 8 8 -8 -8 -4 0 -8 0 -8 -1 0 8 8 16 0 -4 -8 16 0 -2 0 0 -4 0 0 2 -8 0 4 4 0 0 0 0 8 0 0 8 -8 0 -8 2 0 -2 8 -8 1 -4 -4 8 0 4 -16 -8 0 -8 4 0 0 -4 8 8 8 0 8 0 0 0 -4 -8 0 -8 0 0 8 -8 12 4 0 0 8 0 8 4 0 -8 0 0 0 -8 0 -16 -8 8 0 0 0 -4 0 4 8 -4 -8 -4 0 -8 -4 12 8 8 0 -8 -4 -8 0 8 8 -4 -8 8 8 -8 0 -8 0 -16 0 -8 -8 8 0 0 0 8 0 -4 -8 16 -8 8 0 8 0 8 8 8 16 -8 0 -12 -8 -12 -8 4 4 -8 4 8 8 -8 0 -8 4 0 0 0 0 -4 -8 8 -4 4 0 0 8 4 0 0 0 0 0 8 -8 0 -8 0 4 8 8 -8 -8 8 -2 8 -8 4 4 0 0 0 0 0 0 0 0 4 -8 8 2 -8 0 -4 0 -1 16 0 8 -8 -4 0 0 0 8 0 1 0 -16 -8 0 4 0 8 4 8 0 -8 2 -4 -4 0 0 0 -8 0 0 -8 0 8 -2 0 8 4 8 8 -4 -4 -8 2 -8 0 -8 -4 4 -2 8 0 -4 1 0 -1 1 -1 -4 -2 0 0 0 -4 -4 4 0 4 2 4 0 0 -4 4 0 2 1 0 0 4 -8 -4 -4 0 8 0 -2 0 4 4 4 8 -2 -8 0 0 0 8 -4 4 -8 4 -4 0 0 8 0 -4 -2 0 -2 0 0 1 0 -2 0 4 -4 -8 0 0 -4 2 -4 -4 -4 0 -4 -8 8 0 0 8 8 0 4 -8 8 0 0 0 0 0 0 0 0 0 -8 0 -2 0 0 0 0 4 0 4 -8 4 -8 -8 8 -8 -4 8 -4 0 0 0 4 -4 -4 0 0 4 8 -4 0 -2 0 -4 8 -4 -4 0 -4 0 8 0 -8 0 8 0 0 0 0 0 0 4 -8 -8 4 -8 8 4 0 0 0 0 0 0 8 -8 -8 8 0 4 0 0 0 4 -4 0 0 4 8 -8 0 -4 -4 0 -4 0 2 0 -4 0 4 4 4 0 2 8 0 8 0 0 0 0 4 0 -8 4 -8 4 0 0 4 2 -4 4 0 0 0 0 4 -4 -4 0 -4 -8 2 8 0 2 -4 0 4 4 -1 8 4 -8 0 2 -8 8 8 -2 0 -1 -4 8 -8 -8 4 0 -4 -4 0 4 0 2 0 0 0 0 4 0 0 -4 -4 -8 8 2 4 0 4 0 -4 0 4 -2 0 0 -4 -4 -4 0 0 0 2 4 -1 2 -1 1 -1 0 4 -2 -8 -8 0 -8 4 2 8 0 0 0 8 4 -4 4 0 -1 0 0 0 -8 0 0 8 8 -4 -2 0 0 0 -8 0 2 0 0 8 0 8 0 0 -8 0 0 0 0 0 -4 0 2 0 -2 -8 0 1 -8 4 8 0 0 8 -8 0 4 -4 4 0 0 8 -8 0 0 0 4 -8 -8 0 0 8 0 0 0 -4 0 0 -4 0 0 0 0 8 -4 0 -8 0 0 0 -8 0 0 0 8 -8 0 8 0 8 0 -4 4 0 0 0 8 4 0 0 8 0 0 4 -8 -4 0 -4 0 -8 0 0 -8 0 -8 0 0 0 -8 0 8 0 0 0 8 -8 0 0 0 4 0 0 8 0 8 8 8 0 -8 0 0 0 0 4 -4 0 0 -4 0 -8 -8 0 4 0 0 0 0 0 4 0 0 4 0 4 0 0 -4 -8 0 8 0 0 8 -8 0 8 8 0 0 -4 0 -8 0 -2 0 8 8 0 4 -4 0 0 0 0 0 8 -4 0 0 2 0 0 0 -4 -1 -8 0 0 0 4 0 8 -8 0 0 1 8 8 0 0 0 0 4 0 -8 -4 0 2 -8 0 -4 4 0 -8 0 0 0 -8 0 -2 4 0 0 8 0 -8 0 0 -2 4 -8 -4 0 8 2 -4 0 0 1 0 -1 1 -1 -4 -2 0 0 0 4 4 -4 0 -4 2 4 0 0 4 -4 0 2 1 0 0 4 8 -4 4 0 -8 0 -2 0 4 -4 4 8 -2 8 0 0 0 -8 -4 4 -8 4 -4 0 0 -8 0 -4 -2 0 -2 0 0 1 0 -2 0 4 4 8 0 0 4 2 4 -4 4 0 -4 8 8 0 0 -8 -8 0 4 -8 -8 0 0 0 0 0 0 0 0 0 8 0 -2 0 0 0 0 4 0 4 8 4 8 -8 -8 -8 4 -8 4 0 0 0 4 -4 -4 0 0 4 -8 -4 0 -2 0 4 -8 4 -4 0 -4 0 -8 0 8 0 -8 0 0 0 0 0 0 4 8 8 -4 8 -8 -4 0 0 0 0 0 0 -8 8 8 -8 0 4 0 0 0 4 -4 0 0 4 -8 8 0 -4 -4 0 -4 0 2 0 -4 0 -4 -4 4 0 2 8 0 8 0 0 0 0 4 0 8 -4 8 -4 0 0 4 2 -4 4 0 0 0 0 4 -4 -4 0 -4 8 2 -8 0 2 -4 0 -4 -4 -1 -8 4 8 0 2 -8 8 8 -2 0 -1 -4 -8 8 -8 -4 0 4 4 0 -4 0 2 0 0 0 0 4 0 0 -4 -4 8 -8 2 -4 0 4 0 -4 0 -4 -2 0 0 -4 4 4 0 0 0 2 4 -1 2 -1 1 -1 0 -6 -4 4 0 0 -4 0 -4 4 2 -4 8 4 0 0 4 2 1 0 8 -4 0 4 0 0 0 4 -2 8 -4 0 4 0 -2 0 0 -4 -4 0 4 -4 0 4 4 0 -8 0 4 -4 -2 8 -2 0 8 1 -4 -2 -16 -4 0 0 0 0 0 2 0 4 0 0 -4 0 0 -8 4 0 0 -4 4 0 0 0 0 -4 0 -4 0 0 0 0 -8 0 -2 0 0 0 0 -4 0 -4 8 4 -8 0 8 0 0 0 0 4 0 -8 0 4 -4 0 4 4 8 4 -8 6 -16 0 0 0 0 0 -4 8 -8 0 8 0 -8 0 0 0 16 0 0 -4 8 0 0 0 -8 0 8 0 0 0 0 0 -8 8 -8 8 4 4 -4 4 0 0 -4 0 0 4 8 -8 -4 0 4 0 4 0 2 -8 -4 0 0 0 -4 8 -6 0 0 0 0 -8 0 16 -4 0 0 0 0 0 8 0 4 2 -4 4 4 4 -4 -4 -4 4 4 0 4 0 2 0 -8 2 -4 0 0 0 -1 0 -4 0 8 -6 0 0 0 -2 0 -1 -4 0 0 0 0 -8 0 0 0 0 -8 2 4 4 -4 -4 -4 0 0 4 4 0 0 2 0 -8 0 0 4 -4 0 -2 4 4 -4 0 0 -4 4 4 2 0 -1 2 -1 1 -1 0 0 -2 -4 -8 4 0 0 2 0 0 0 0 8 0 0 0 0 -1 8 0 0 0 0 -4 0 0 8 2 0 0 4 -8 0 -2 8 0 -4 4 0 0 0 8 0 0 -8 0 8 0 0 -2 0 2 0 0 1 4 -4 -8 0 -4 0 8 0 0 4 0 0 -4 8 -8 -8 0 0 -8 0 0 -4 0 -8 8 0 0 -8 0 4 4 0 0 0 8 -8 4 -8 0 -8 0 0 0 0 -8 0 0 8 8 -8 4 0 4 -8 4 0 0 0 8 -4 4 0 0 0 0 -4 8 0 -8 0 0 -8 0 0 0 0 0 0 -8 0 8 0 -8 0 0 0 0 0 -4 8 8 0 0 8 0 8 0 8 0 8 0 -8 -4 0 -4 8 -4 0 0 4 0 -8 0 -8 8 0 0 0 0 0 -4 0 0 -4 -4 0 0 0 4 8 0 -8 0 0 -8 8 0 0 0 4 -8 0 0 -8 0 2 0 8 -4 4 0 8 0 0 0 0 0 0 4 8 0 -2 0 8 4 0 -1 0 0 -8 0 -4 0 -8 8 0 -8 1 8 0 8 0 4 0 0 -4 0 0 0 -2 4 -4 0 -8 0 -8 0 0 0 0 -8 2 0 0 0 8 0 -4 -4 0 -2 0 -8 0 4 4 2 0 0 0 1 0 -1 1 -1 0 -10 -4 8 -8 -4 -4 -4 -4 12 2 4 8 4 4 -4 0 2 1 -16 8 4 0 4 -4 16 -8 0 2 -8 4 4 4 -8 2 0 8 0 0 0 -4 -4 8 -4 4 -16 -8 -8 0 -4 2 -8 2 16 -8 1 0 -2 8 -4 12 0 8 8 -12 2 4 -4 -4 8 -4 0 -8 -8 0 8 0 0 -4 8 0 0 0 8 0 8 0 0 0 0 0 8 -2 0 0 0 0 -4 0 -4 0 -4 0 8 0 8 12 8 -4 -8 0 -8 8 -4 -4 0 -8 -4 0 -4 -8 -2 8 4 -8 -12 -8 8 -4 -8 0 0 0 0 0 0 -8 0 -8 0 0 4 0 -8 4 8 0 12 8 0 0 0 0 -8 0 0 0 0 -8 4 8 -8 0 8 4 0 0 4 0 0 8 -8 4 0 4 0 2 8 4 0 -12 -4 4 8 2 -8 0 -8 0 8 -8 -8 4 -16 -8 4 8 12 8 -8 4 -2 4 4 0 0 0 0 -4 4 4 -8 -4 0 2 0 8 -2 4 16 -12 -4 -1 0 4 0 8 2 8 -8 -8 -2 16 -1 -4 0 0 8 4 8 4 -4 -16 -4 -8 -2 0 0 0 0 -4 8 -8 -4 -4 0 0 -2 -4 -8 0 8 -4 -8 4 -2 4 8 -4 4 -4 -8 4 8 2 0 -1 2 -1 1 -1 0 -4 -2 0 -8 0 8 -4 2 0 0 8 0 0 -4 4 -4 0 -1 0 0 -8 8 0 0 8 8 4 -2 0 0 0 0 0 2 0 0 0 8 -8 -8 0 8 0 0 0 0 0 4 0 2 0 -2 -8 0 1 0 4 8 0 0 -8 -8 0 -4 -4 -4 0 0 8 0 0 0 0 -4 8 8 -8 0 -8 0 0 0 4 0 -8 -4 0 0 0 0 8 -4 0 -8 0 0 0 -8 0 0 0 -8 8 0 -8 0 -8 0 4 4 0 0 8 0 4 -8 0 -8 0 0 4 -8 4 0 4 0 -8 0 0 8 0 8 0 0 0 -8 0 8 0 0 -8 -8 8 0 0 0 -4 0 0 8 0 8 8 -8 0 8 0 8 0 8 -4 -4 0 0 -4 0 0 8 0 -4 0 0 0 0 0 4 0 0 4 0 -4 0 0 -4 8 0 -8 0 0 8 -8 8 8 -8 0 0 4 0 -8 0 -2 0 0 0 8 -4 4 0 0 0 0 0 -8 -4 0 0 2 0 0 0 4 -1 8 0 0 0 4 0 -8 8 0 0 1 0 -8 0 0 0 0 -4 0 -8 4 0 2 0 -8 4 -4 0 -8 0 0 8 8 0 -2 -4 0 0 8 -8 0 0 0 -2 -4 0 4 0 0 2 4 0 0 1 0 -1 1 -1 0 -8 -2 4 -8 -4 8 0 2 0 0 8 0 0 0 0 8 0 -1 8 0 -8 0 0 4 0 16 0 2 0 0 -4 0 0 -2 -8 0 4 -4 0 -8 0 -8 0 0 -8 0 -8 -8 0 -2 0 2 0 0 1 -4 -4 -8 0 4 0 8 0 0 4 0 0 4 8 0 8 0 0 0 0 0 4 0 8 -8 0 0 0 0 -4 4 0 0 0 -8 -8 4 -8 0 -8 0 0 0 0 8 0 0 -8 -8 8 -4 0 -4 0 4 0 0 8 0 -4 -4 0 0 0 0 -4 8 0 8 0 0 -8 0 0 0 0 0 0 8 0 8 0 -8 0 0 -8 0 0 4 -8 -8 0 0 8 0 8 0 8 0 -8 0 8 4 0 4 0 -4 0 0 4 0 0 0 8 0 0 0 0 0 0 -4 0 0 -4 4 0 0 0 4 -8 0 8 0 0 -8 8 8 0 0 -4 8 0 0 -8 0 2 0 0 4 -4 8 0 0 0 0 0 0 0 4 -8 0 -2 0 8 -4 0 -1 0 0 8 0 -4 0 8 -8 0 -8 1 0 0 -8 0 -4 0 0 4 0 0 0 -2 -4 4 -8 0 0 -8 0 0 8 0 8 2 0 0 0 8 -8 4 4 0 -2 -8 0 0 -4 -4 2 8 0 0 1 0 -1 1 -1 -8 -2 4 0 8 -4 4 12 4 -12 2 4 -8 -4 4 12 8 2 1 0 -8 4 0 4 -4 0 8 -8 2 8 4 -12 4 -8 2 0 -8 -8 8 0 -4 -4 8 -4 4 0 8 -8 8 -4 2 8 2 0 8 1 -8 -2 -8 -4 -4 0 -8 -8 4 2 4 -4 -4 -8 -4 0 -8 8 -8 8 0 8 -4 8 0 0 0 0 0 0 0 0 0 0 0 -8 -2 16 -16 -16 0 -4 16 -4 0 -4 0 8 0 8 -4 8 -4 0 0 8 0 -4 -4 0 0 -4 0 -4 8 -2 -8 4 -8 4 0 -8 -4 8 0 0 0 0 0 0 8 0 8 0 0 4 0 -8 4 8 0 -4 -8 16 -16 -16 16 8 0 0 0 0 0 4 0 0 0 0 4 0 0 4 0 0 0 0 4 0 4 0 2 -8 4 0 4 -4 4 -8 2 -8 0 -8 0 -8 8 8 4 0 -8 4 8 -4 -8 8 4 -2 4 4 8 -8 -8 8 -4 4 4 8 -4 0 2 0 -8 -2 4 0 4 -4 -1 0 4 0 -8 2 8 -8 -8 -2 0 -1 -4 0 0 8 4 -8 -12 12 0 -4 8 -2 8 -8 -8 8 -4 -8 8 -4 -4 0 0 -2 -4 8 8 -8 -4 0 4 -2 -4 0 -4 -12 12 0 -4 0 2 8 -1 2 -1 1 -1 -4 0 2 -4 0 -4 0 8 -2 0 0 0 0 4 0 -8 0 0 -1 0 0 0 8 0 4 8 0 0 -2 0 0 4 0 0 2 0 0 -4 -4 8 0 -8 0 0 0 0 0 8 0 0 2 0 -2 -8 0 1 4 4 0 8 -4 -8 0 0 -8 4 0 -8 4 0 0 0 0 0 0 0 -8 4 0 0 0 0 0 0 8 -4 4 0 0 -8 -8 0 -4 0 8 0 0 -8 8 8 -8 0 0 0 -8 0 4 0 -4 0 -4 0 4 0 0 -4 -4 0 0 8 0 -4 0 0 -8 8 4 0 0 0 0 0 0 0 -8 0 0 8 0 0 0 0 0 0 4 8 8 -8 0 0 -8 0 -8 0 0 8 0 8 4 0 4 0 4 -4 0 4 -8 0 0 8 0 -4 8 0 -8 0 4 0 0 -4 -4 0 -8 0 4 0 0 0 0 0 0 0 0 8 0 -4 -8 8 0 0 0 -2 0 0 -4 -4 0 0 0 -8 8 0 0 8 -4 0 0 2 0 0 4 0 -1 8 8 0 0 -4 0 0 0 0 0 1 0 -8 0 0 -4 0 8 -4 -8 0 0 2 4 4 0 0 0 0 0 0 0 -8 0 -2 0 0 -4 0 0 -4 4 0 2 0 0 -8 4 4 -2 0 0 4 1 0 -1 1 -1 -8 -2 4 0 8 4 -4 -12 4 12 2 4 -8 -4 -4 -12 -8 2 1 0 -8 4 0 4 4 0 8 8 2 8 4 12 4 -8 2 0 -8 8 -8 0 -4 -4 8 -4 4 0 8 8 -8 -4 2 8 2 0 8 1 8 -2 -8 -4 4 0 -8 -8 -4 2 -4 -4 4 -8 -4 0 -8 8 8 -8 0 -8 -4 8 0 0 0 0 0 0 0 0 0 0 0 -8 -2 -16 16 16 0 -4 -16 -4 0 -4 0 8 0 8 4 -8 4 0 0 8 0 -4 -4 0 0 -4 0 -4 8 -2 -8 -4 8 -4 0 -8 -4 8 0 0 0 0 0 0 8 0 8 0 0 4 0 8 -4 -8 0 4 -8 -16 16 16 -16 8 0 0 0 0 0 4 0 0 0 0 4 0 0 4 0 0 0 0 4 0 4 0 2 -8 4 0 -4 4 4 -8 2 -8 0 -8 0 -8 8 8 4 0 8 -4 -8 4 -8 8 4 -2 4 4 -8 8 8 -8 -4 4 4 8 -4 0 2 0 -8 -2 4 0 -4 4 -1 0 4 0 -8 2 8 -8 -8 -2 0 -1 -4 0 0 8 -4 -8 12 -12 0 4 8 -2 -8 8 8 -8 -4 -8 8 -4 -4 0 0 -2 4 8 8 -8 -4 0 -4 -2 -4 0 -4 12 -12 0 -4 0 2 8 -1 2 -1 1 -1 -4 -6 0 4 8 0 -4 0 0 4 2 -4 0 0 0 0 -4 2 1 0 0 -4 -8 -4 0 0 16 -4 2 0 -4 0 4 0 2 8 8 4 4 -8 4 4 0 -4 -4 0 0 0 -4 -4 2 0 2 0 -16 1 4 6 -8 4 0 -8 8 8 0 -6 0 4 0 -8 -4 8 0 0 -4 0 -8 4 -4 0 8 0 0 -4 0 -4 0 0 0 0 0 8 6 0 0 0 0 4 0 4 0 -4 0 0 0 0 0 0 0 4 0 0 -4 4 -4 0 4 -4 0 4 0 -2 -8 0 0 0 4 -8 -4 -16 0 0 0 0 0 0 -8 0 8 0 0 -4 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 4 4 -4 4 0 -4 4 0 0 4 0 0 -4 4 -4 0 -4 0 -6 16 4 0 0 0 -4 0 2 0 0 0 0 0 -8 8 -4 0 0 0 0 0 0 8 4 -2 4 4 -4 -4 4 4 4 -4 -4 -8 4 8 -6 -8 16 -2 4 0 0 0 -1 8 -4 -8 0 2 0 0 0 -2 0 -1 -4 8 -8 0 0 0 0 0 0 0 0 -2 -4 -4 4 4 4 -8 -8 4 4 8 -8 -2 0 0 4 -8 4 -4 0 -2 0 4 -4 0 0 -4 0 4 2 4 -1 2 -1 1 -1 -4 -4 2 0 0 0 0 -4 -2 8 0 0 0 4 4 4 -4 0 -1 8 0 0 0 0 0 0 8 -4 2 0 0 -8 0 0 -2 8 0 0 0 0 0 8 0 0 0 -8 0 0 4 0 -2 0 2 0 0 1 0 4 0 -8 -8 0 0 0 -4 4 4 -8 0 0 0 -8 0 0 4 8 0 0 0 0 -8 0 0 -4 -8 0 -4 0 0 8 0 0 -4 8 0 8 0 8 0 -8 0 0 -8 0 0 0 8 -8 0 -4 -4 0 4 0 0 4 0 0 -8 8 0 -4 0 -4 0 4 4 0 0 0 -8 0 -8 0 0 0 0 -8 0 0 0 0 8 8 0 0 0 -4 0 -8 0 -8 0 0 8 0 8 0 0 0 0 4 4 -4 0 -4 8 0 8 0 4 -4 -8 0 8 0 4 0 0 4 -8 4 -8 0 4 0 0 0 0 0 0 0 0 0 -8 0 0 4 0 0 0 2 0 0 0 0 -4 -4 0 8 -8 0 0 0 -4 8 0 -2 0 8 8 -4 -1 0 8 8 0 -4 0 0 0 0 -8 1 0 0 -8 0 0 0 -4 8 0 -4 0 -2 0 0 4 4 0 0 0 0 0 0 -8 2 4 0 -4 0 0 0 0 0 2 -4 0 4 -8 0 -2 4 0 4 1 0 -1 1 -1 -4 0 2 -4 0 4 0 -8 -2 8 0 0 0 4 0 8 0 0 -1 0 0 0 8 0 -4 8 0 0 -2 0 0 -4 0 0 2 0 0 -4 -4 8 0 8 0 0 0 0 0 -8 0 0 2 0 -2 -8 0 1 4 -4 0 -8 4 -8 0 0 8 -4 0 8 -4 0 0 0 0 0 0 0 -8 4 0 0 0 0 0 0 8 -4 4 0 0 -8 -8 0 4 0 8 0 0 8 8 -8 -8 0 0 0 -8 0 -4 0 4 0 -4 0 4 0 0 -4 -4 0 0 -8 0 4 0 0 8 -8 4 0 0 0 0 0 0 0 -8 0 0 8 0 0 0 0 0 0 -4 -8 8 8 0 0 -8 0 -8 0 0 8 0 8 4 0 4 0 4 -4 0 4 -8 0 0 8 0 -4 -8 0 8 0 -4 0 0 -4 4 0 8 0 -4 0 0 0 0 0 0 0 0 8 0 4 8 -8 0 0 0 -2 0 0 -4 -4 0 0 0 8 -8 0 0 8 4 0 0 2 0 0 -4 0 -1 8 -8 0 0 4 0 0 0 0 0 1 0 -8 0 0 4 0 -8 4 -8 0 0 2 4 4 0 0 0 0 0 0 0 -8 0 -2 0 0 -4 0 0 -4 -4 0 2 0 0 8 -4 4 -2 0 0 4 1 0 -1 1 -1 -4 -4 2 0 0 0 8 4 -2 -8 0 0 0 4 -4 -4 -4 0 -1 8 0 0 0 0 0 0 8 -4 2 0 0 8 0 0 -2 8 0 0 0 0 0 -8 0 0 0 -8 0 0 4 0 -2 0 2 0 0 1 0 -4 0 8 8 0 0 0 4 -4 -4 8 0 0 0 -8 0 0 4 -8 0 0 0 0 -8 0 0 -4 -8 0 -4 0 0 8 0 0 4 8 0 8 0 -8 0 8 0 0 -8 0 0 0 -8 8 0 -4 -4 0 4 0 0 4 0 0 -8 -8 0 4 0 4 0 -4 4 0 0 0 -8 0 -8 0 0 0 0 -8 0 0 0 0 8 -8 0 0 0 4 0 -8 0 -8 0 0 8 0 8 0 0 0 0 4 4 -4 0 -4 8 0 8 0 4 -4 8 0 -8 0 -4 0 0 4 8 -4 8 0 -4 0 0 0 0 0 0 0 0 0 8 0 0 -4 0 0 0 2 0 0 0 0 -4 -4 0 -8 8 0 0 0 4 8 0 -2 0 8 -8 4 -1 0 -8 8 0 4 0 0 0 0 -8 1 0 0 -8 0 0 0 4 -8 0 4 0 -2 0 0 4 4 0 0 0 0 0 0 -8 2 -4 0 -4 0 0 0 0 0 2 -4 0 -4 8 0 -2 4 0 4 1 0 -1 1 -1 0 -4 -2 0 8 0 0 4 2 0 0 -8 0 0 4 -4 -4 0 -1 0 0 8 8 0 0 8 -8 4 -2 0 0 0 0 0 2 0 0 0 8 -8 8 0 -8 0 0 0 0 0 4 0 2 0 -2 -8 0 1 0 -4 -8 0 0 -8 8 0 4 4 4 0 0 -8 0 0 0 0 -4 -8 8 -8 0 8 0 0 0 4 0 -8 -4 0 0 0 0 -8 4 0 -8 0 0 0 -8 0 0 0 -8 -8 0 8 0 8 0 4 4 0 0 -8 0 4 -8 0 -8 0 0 -4 8 -4 0 -4 0 8 0 0 8 0 8 0 0 0 8 0 -8 0 0 8 -8 -8 0 0 0 4 0 0 8 0 8 -8 -8 0 8 0 8 0 8 -4 -4 0 0 -4 0 0 8 0 -4 0 0 0 0 0 -4 0 0 4 0 4 0 0 4 -8 0 8 0 0 -8 8 -8 8 8 0 0 -4 0 8 0 -2 0 0 0 8 -4 4 0 0 0 0 0 -8 4 0 0 2 0 0 0 -4 -1 8 0 0 0 -4 0 8 -8 0 0 1 0 -8 0 0 0 0 4 0 -8 -4 0 2 0 -8 4 -4 0 8 0 0 -8 8 0 -2 4 0 0 -8 8 0 0 0 -2 -4 0 -4 0 0 2 4 0 0 1 0 -1 1 -1 0 -10 -4 8 8 4 -4 -4 -4 4 2 -12 8 4 4 -4 16 2 1 0 8 -12 0 4 4 0 8 0 2 -8 4 -4 4 8 2 0 -8 0 -16 0 12 -4 -8 -4 4 0 -8 8 16 -4 2 -8 2 0 24 1 0 6 24 -4 -12 0 -8 -8 -12 -6 4 -4 4 -8 -4 0 8 -8 0 8 0 -16 -4 -8 0 0 0 -8 0 -8 0 0 0 0 16 -8 6 16 16 -16 0 -4 -16 -4 -16 -4 16 -8 -16 -8 -12 8 4 8 0 -8 -8 12 -4 0 8 -4 -16 -4 -8 -10 24 4 8 -12 8 -8 -4 24 16 0 -16 0 16 0 8 0 -24 0 0 -12 -16 -8 -4 -8 16 12 8 16 16 -16 -16 8 16 -16 16 -16 8 4 -8 8 0 -8 4 0 0 4 -16 16 -8 8 4 0 4 0 -6 -24 4 0 12 -4 4 8 10 8 0 8 0 8 8 -24 -12 0 -8 -4 -8 12 8 8 4 -2 4 4 0 16 -16 0 -4 4 4 8 -4 0 -6 0 -24 -2 4 0 12 -4 -1 0 4 0 8 10 -8 8 8 -2 0 -1 -4 0 0 -8 -4 8 4 4 0 -4 -8 -2 0 16 -16 0 -4 -8 8 -4 12 0 0 -2 -4 -8 0 -8 12 -8 -4 -2 4 8 -4 4 4 -8 4 8 2 0 -1 2 -1 1 -1 0 -8 -2 4 8 4 8 0 2 -8 0 -8 0 0 0 0 8 0 -1 8 0 8 0 0 -4 0 0 0 2 0 0 4 0 0 -2 -8 0 4 -4 0 8 0 8 0 0 -8 0 8 -8 0 -2 0 2 0 0 1 -4 4 8 0 -4 0 -8 0 0 -4 0 0 -4 -8 0 8 0 0 0 0 0 4 0 -8 -8 0 0 0 0 -4 4 0 0 0 -8 8 -4 -8 0 -8 0 0 0 0 8 0 0 8 -8 -8 4 0 4 0 4 0 0 -8 0 -4 -4 0 0 0 0 4 -8 0 -8 0 0 8 0 0 0 0 0 0 8 0 -8 0 8 0 0 8 0 0 -4 8 -8 0 0 8 0 8 0 -8 0 -8 0 8 4 0 4 0 -4 0 0 4 0 0 0 8 0 0 0 0 0 0 4 0 0 -4 -4 0 0 0 -4 8 0 -8 0 0 8 -8 -8 0 0 4 -8 0 0 8 0 2 0 0 4 -4 8 0 0 0 0 0 0 0 -4 -8 0 -2 0 8 4 0 -1 0 0 8 0 4 0 -8 8 0 -8 1 0 0 -8 0 4 0 0 -4 0 0 0 -2 -4 4 -8 0 0 8 0 0 -8 0 8 2 0 0 0 -8 8 4 -4 0 -2 -8 0 0 4 -4 2 8 0 0 1 0 -1 1 -1 0 0 -6 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 3 0 0 0 0 12 0 0 0 0 -6 24 -12 0 0 0 -6 0 0 0 0 0 0 0 0 0 -12 0 0 0 0 0 6 -24 6 0 0 -3 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 -4 0 0 0 12 0 12 0 0 0 0 0 0 0 -4 0 0 0 0 0 0 0 0 0 0 0 0 0 -12 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -48 0 -12 0 0 0 48 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 -12 0 0 0 0 0 0 0 4 0 4 0 0 0 -12 0 0 0 0 0 0 -12 0 0 24 0 0 0 0 0 0 0 0 0 0 0 -6 0 0 0 0 0 0 12 0 0 0 -12 0 0 0 0 -6 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 -3 0 0 0 0 0 -24 0 0 0 0 0 6 0 0 0 0 -12 0 0 12 0 0 0 6 0 0 0 0 0 0 0 0 -6 0 0 0 0 0 6 0 0 0 1 0 -1 1 -1 -4 0 -2 0 0 0 0 0 2 0 0 0 0 4 0 0 0 0 3 0 0 0 0 -4 0 0 0 0 -2 8 -4 0 0 8 -2 0 8 0 0 0 0 0 0 0 4 0 0 0 0 0 2 -8 2 0 0 -3 0 0 0 0 0 0 0 -8 0 4 0 0 0 0 0 0 -8 0 0 0 0 0 0 0 0 -4 4 0 8 0 -4 -16 -4 8 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 -4 0 -4 0 0 -4 0 0 0 0 0 0 0 0 0 0 -4 0 0 0 0 -16 0 16 0 4 0 -8 0 -16 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 4 -8 0 0 0 0 4 0 -4 0 -4 0 0 0 4 0 0 0 0 0 0 4 0 16 8 0 0 0 0 0 0 0 0 0 0 0 -2 0 0 0 0 0 0 -4 0 0 8 -4 0 0 0 0 -2 0 0 0 0 3 0 0 0 0 0 8 0 0 0 0 -3 0 0 0 -8 0 -8 0 0 0 0 0 2 0 0 0 0 4 0 -8 4 0 0 0 2 0 0 -4 0 0 0 0 0 -2 0 0 0 0 0 2 0 0 4 1 0 -1 1 -1 0 -8 -6 8 0 0 8 0 6 -8 0 0 0 0 0 0 8 0 3 -16 0 0 0 12 0 16 0 8 2 -8 4 0 0 0 2 0 0 -8 -8 0 0 0 0 0 -12 16 0 0 -8 0 -2 8 -2 -16 0 -3 8 0 0 0 0 0 0 0 0 -4 0 0 0 0 0 0 0 0 -8 0 0 8 0 0 0 -4 -4 -8 0 8 -4 0 -4 0 0 0 0 16 -16 16 -4 0 -16 0 0 0 0 0 0 0 0 0 0 -8 -12 0 0 0 0 -4 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 4 0 0 0 -16 0 0 0 0 0 0 0 0 0 -16 16 -16 16 0 0 0 0 0 -8 0 -8 8 12 0 0 4 0 0 0 0 8 0 0 4 0 4 0 0 0 4 0 0 0 0 0 0 4 0 0 -8 0 0 0 16 0 0 0 0 0 0 0 2 0 0 -8 -8 8 8 12 0 0 0 4 0 0 0 0 2 0 -16 0 0 3 0 0 0 0 0 0 0 0 0 16 -3 0 0 0 0 0 8 0 0 -16 0 0 -2 8 8 -8 -8 -12 0 0 -4 0 0 0 -2 0 0 0 0 0 8 0 0 -6 -8 0 0 0 -8 6 8 0 0 1 0 -1 1 -1 -4 0 -2 0 0 -8 -8 8 2 8 0 0 0 4 8 -8 0 0 3 0 0 0 0 -4 8 0 0 0 -2 -8 12 -8 0 24 -2 0 -8 0 0 0 0 0 0 0 4 0 0 16 0 0 2 8 2 0 0 -3 0 0 0 0 8 0 0 8 8 -12 -24 0 -24 0 0 0 -24 0 0 16 0 0 0 0 0 -4 4 0 -8 0 12 -16 -4 -8 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 -8 -16 24 0 -4 0 -4 0 0 12 0 0 0 0 0 0 0 24 -16 -8 -4 0 0 0 0 16 0 -16 0 4 0 8 0 16 -16 0 0 16 -24 16 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 -12 8 0 0 0 0 4 0 -4 0 -4 0 0 0 -12 8 -24 0 0 0 0 4 0 16 -8 0 0 0 0 -16 24 -16 -8 0 0 0 -2 0 0 0 0 0 0 -4 0 0 -8 12 0 0 0 0 -2 0 0 -8 24 3 0 0 0 0 0 24 0 0 0 0 -3 0 0 0 -24 -8 8 8 8 0 -8 0 2 0 0 0 0 4 0 8 -12 0 0 0 2 8 0 -4 0 0 0 8 0 -2 0 0 -8 -8 0 2 0 0 4 1 0 -1 1 -1 -8 0 2 0 0 0 0 0 -2 0 0 0 0 8 0 0 0 0 3 0 0 0 0 -4 0 0 0 0 2 8 4 0 0 0 2 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 -2 -8 -2 0 0 -3 0 0 0 0 0 0 0 0 0 -4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4 -4 0 0 0 -4 32 -4 0 0 0 0 0 0 0 -4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 -8 0 0 -4 0 0 0 0 0 0 0 0 0 0 -8 0 0 0 0 0 0 -16 0 4 0 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4 8 0 4 0 0 0 0 0 8 0 4 0 4 0 0 0 4 0 0 0 0 0 0 4 0 -32 8 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 -4 0 0 0 4 0 0 0 0 2 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 -3 0 0 0 0 0 -8 0 0 0 0 0 -2 0 0 0 0 4 0 0 -4 0 0 0 -2 0 0 -8 0 0 0 0 0 2 0 0 0 0 0 -2 0 0 8 1 0 -1 1 -1 -4 0 -2 0 0 8 8 -8 2 -8 0 0 0 4 -8 8 0 0 3 0 0 0 0 -4 -8 0 0 0 -2 -8 12 8 0 24 -2 0 -8 0 0 0 0 0 0 0 4 0 0 -16 0 0 2 8 2 0 0 -3 0 0 0 0 -8 0 0 8 -8 -12 24 0 24 0 0 0 -24 0 0 -16 0 0 0 0 0 -4 4 0 -8 0 12 -16 -4 -8 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 8 16 -24 0 -4 0 -4 0 0 12 0 0 0 0 0 0 0 -24 16 8 -4 0 0 0 0 16 0 -16 0 4 0 8 0 16 -16 0 0 -16 24 -16 0 -8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 -12 8 0 0 0 0 4 0 -4 0 -4 0 0 0 -12 -8 24 0 0 0 0 4 0 16 -8 0 0 0 0 16 -24 16 8 0 0 0 -2 0 0 0 0 0 0 -4 0 0 -8 12 0 0 0 0 -2 0 0 8 -24 3 0 0 0 0 0 24 0 0 0 0 -3 0 0 0 -24 8 8 -8 -8 0 8 0 2 0 0 0 0 4 0 8 -12 0 0 0 2 -8 0 -4 0 0 0 -8 0 -2 0 0 8 8 0 2 0 0 4 1 0 -1 1 -1 -4 -8 -2 8 0 0 8 0 2 -8 0 0 0 4 0 0 -8 0 3 -16 0 0 -16 -4 0 16 16 -8 6 -8 -4 0 0 -8 6 16 24 8 8 -16 0 0 0 0 4 16 0 0 8 0 -6 8 -6 -16 0 -3 -8 0 0 0 0 16 0 -24 0 4 0 0 0 0 0 -16 8 0 8 0 16 -8 0 0 -16 12 4 -8 -8 8 -4 -16 12 -8 -16 0 0 -16 16 -16 4 0 16 0 -16 0 16 0 -16 0 0 0 0 -8 -4 0 -4 0 0 -4 8 0 16 0 0 0 0 0 0 0 -4 0 0 0 16 16 16 -16 -16 -12 0 8 0 16 -16 0 -16 0 0 0 16 0 0 16 -16 16 -16 0 -16 16 -16 16 -8 0 -8 8 4 4 0 4 8 0 -16 16 8 4 0 -4 0 -4 0 0 0 4 0 0 0 0 0 0 -12 0 16 -8 0 0 0 16 0 0 0 0 0 0 0 6 0 0 8 8 -8 -8 -4 0 0 24 -4 -16 0 16 0 6 0 -16 0 0 3 -16 0 16 0 0 -8 0 0 0 16 -3 0 16 -16 8 0 8 0 0 -16 0 0 -6 -8 -8 8 8 4 0 -24 4 0 16 -16 -6 0 0 -4 0 0 8 0 0 -2 -8 0 0 0 -8 2 8 0 4 1 0 -1 1 -1 -12 0 6 0 0 8 -8 -24 -6 24 0 0 0 12 8 24 0 0 3 0 0 0 0 12 -8 0 0 0 6 24 12 -24 0 -24 6 0 -24 0 0 0 0 0 0 0 -12 0 0 48 0 0 -6 -24 -6 0 0 -3 0 0 0 0 24 0 0 24 -24 -12 -24 0 24 0 0 0 24 0 0 -48 0 0 0 0 0 12 4 0 -24 0 12 -48 12 -24 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 -24 48 -24 0 12 0 -12 0 0 12 0 0 0 0 0 0 0 24 -48 24 -12 0 0 0 0 -16 0 48 0 -12 0 24 0 -48 16 0 0 -48 24 48 0 -24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -12 12 0 -12 24 0 0 0 0 12 0 -4 0 -4 0 0 0 -12 24 -24 0 0 0 0 -12 0 48 24 0 0 0 0 48 -24 -48 24 0 0 0 6 0 0 0 0 0 0 12 0 0 -24 12 0 0 0 0 6 0 0 -24 24 3 0 0 0 0 0 -24 0 0 0 0 -3 0 0 0 24 8 -24 -24 24 0 -8 0 -6 0 0 0 0 -12 0 24 -12 0 0 0 -6 8 0 -12 0 0 0 -8 0 6 0 0 24 -24 0 -6 0 0 12 1 0 -1 1 -1 -12 0 6 0 0 -8 8 24 -6 -24 0 0 0 12 -8 -24 0 0 3 0 0 0 0 12 8 0 0 0 6 24 12 24 0 -24 6 0 -24 0 0 0 0 0 0 0 -12 0 0 -48 0 0 -6 -24 -6 0 0 -3 0 0 0 0 -24 0 0 24 24 -12 24 0 -24 0 0 0 24 0 0 48 0 0 0 0 0 12 4 0 -24 0 12 -48 12 -24 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 24 -48 24 0 12 0 -12 0 0 12 0 0 0 0 0 0 0 -24 48 -24 -12 0 0 0 0 -16 0 48 0 -12 0 24 0 -48 16 0 0 48 -24 -48 0 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -12 12 0 -12 24 0 0 0 0 12 0 -4 0 -4 0 0 0 -12 -24 24 0 0 0 0 -12 0 48 24 0 0 0 0 -48 24 48 -24 0 0 0 6 0 0 0 0 0 0 12 0 0 -24 12 0 0 0 0 6 0 0 24 -24 3 0 0 0 0 0 -24 0 0 0 0 -3 0 0 0 24 -8 -24 24 -24 0 8 0 -6 0 0 0 0 -12 0 24 -12 0 0 0 -6 -8 0 -12 0 0 0 8 0 6 0 0 -24 24 0 -6 0 0 12 1 0 -1 1 -3 12 -12 6 -8 -16 8 0 24 6 16 -4 -8 -16 4 8 24 -8 -4 3 -16 -16 -8 -16 12 8 -16 -32 -8 6 24 12 24 -8 24 6 -16 24 -8 -8 -16 -8 -8 -16 -8 12 -16 -16 48 -8 -8 6 24 6 -16 -16 3 -8 -4 -16 -8 24 -16 -16 24 24 8 24 -8 24 -16 -8 -16 24 -16 -8 48 -16 -8 -8 -16 -16 12 4 -8 24 -8 12 48 12 24 -16 -16 -4 -16 -16 -16 4 -8 -16 -8 -16 -8 -16 -16 -16 -16 24 48 24 -8 12 -16 12 -8 -8 12 -8 -8 -16 -8 -16 -4 -16 24 48 24 12 -16 -8 -16 -16 16 -16 48 -16 12 -16 24 -16 48 16 -8 -16 48 24 48 -16 24 -16 -16 -16 -16 -16 -16 -16 -16 -16 -16 -8 -8 -8 -8 12 12 -8 12 24 -8 -16 -16 -8 12 -8 4 -8 4 -4 -16 -8 12 24 24 -8 -16 -4 -16 12 -16 48 24 -16 -16 -8 -16 48 24 48 24 -16 -16 -8 6 -8 -8 -8 -8 -8 -8 12 -8 -8 24 12 -16 -4 -16 -16 6 -8 -16 24 24 3 -16 -8 -16 -16 -4 24 -16 -16 -4 -16 3 -8 -16 -16 24 8 24 24 24 -16 8 -16 6 -8 -8 -8 -8 12 -16 24 12 -8 -16 -16 6 8 -16 12 -16 -8 -8 8 -4 6 -8 -8 24 24 -8 6 -8 -4 12 1 -4 1 1 -3 4 -4 2 -4 0 4 0 8 2 0 -4 0 0 4 0 8 0 -4 -1 0 0 0 -8 0 4 8 0 0 -2 0 0 4 0 0 2 0 0 -4 -4 -8 0 0 0 -8 0 0 0 -8 0 8 -2 0 2 8 0 -1 -4 0 0 0 4 -8 0 0 -8 0 0 0 -4 0 0 0 0 0 0 0 -8 -4 8 0 0 0 0 0 -8 -4 4 0 0 8 8 0 0 0 8 0 0 0 8 0 8 -8 0 0 8 0 4 0 -4 0 -4 0 -4 0 0 -4 -4 8 0 0 0 0 0 0 -8 -8 -4 0 8 0 0 0 0 0 8 0 0 8 0 0 0 0 0 0 -4 -8 8 -8 0 0 8 0 8 0 0 8 0 8 -4 8 -4 0 -4 -4 8 -4 -8 0 0 8 0 -4 0 0 0 0 0 0 -8 4 4 0 0 0 0 0 0 0 0 0 0 0 0 8 0 -4 -8 -8 0 0 8 -2 8 0 -4 -4 0 0 0 0 0 0 0 -8 0 0 0 2 -8 0 4 0 -1 -8 0 0 0 0 0 0 0 -4 0 -1 0 -8 0 0 4 0 8 4 8 0 0 -2 -4 -4 0 0 0 0 0 0 0 -8 0 2 0 0 4 0 0 -4 4 -4 2 0 0 8 4 -4 2 0 -4 4 1 -4 1 1 -3 4 -8 2 0 0 0 0 4 2 8 -4 0 0 4 4 4 -4 -4 -1 8 0 0 0 0 0 0 -8 -4 2 0 0 8 0 0 -2 -8 0 0 0 0 0 0 0 8 0 8 0 0 -4 8 2 0 -2 0 0 -1 0 0 0 0 -8 0 0 0 4 0 -4 0 0 0 0 -8 0 0 -4 -8 0 0 -8 0 -8 0 0 -4 8 0 -4 0 0 -8 0 0 0 8 0 8 0 0 0 0 0 8 8 0 0 0 -8 -8 0 -4 -4 0 -4 0 0 4 0 -8 8 0 0 0 0 -4 0 4 -4 0 8 0 8 0 8 0 0 0 0 -8 0 0 0 0 8 -8 0 0 0 4 0 8 0 8 0 0 8 0 8 0 0 8 0 -4 -4 -4 -8 4 8 0 8 0 -4 -4 0 0 0 0 0 0 8 -4 -8 -4 0 0 0 0 0 0 0 0 0 0 0 0 -8 0 0 4 0 0 8 2 -8 0 0 0 -4 -4 0 0 0 0 0 0 0 -8 0 -2 8 8 -8 -4 -1 0 0 -8 0 0 0 0 0 -4 8 -1 0 0 -8 0 0 0 4 8 0 4 0 2 0 0 -4 -4 0 0 0 0 0 0 -8 -2 4 0 4 0 0 0 0 -4 2 -4 0 4 8 0 2 -4 -4 4 1 -4 1 1 -3 8 -6 4 -8 -8 4 12 12 -4 20 2 -4 -8 -12 -4 -12 0 -2 1 -16 8 4 0 4 -4 -16 8 0 2 8 4 -12 4 8 2 0 8 0 0 0 4 -4 -8 -4 -4 16 -8 8 0 -4 -2 -8 -2 16 -8 -1 0 -2 -8 -4 4 0 -8 -8 4 -6 4 -4 4 8 4 0 -8 8 0 8 0 0 -4 -8 0 0 0 8 0 -8 0 0 0 0 0 8 2 0 0 0 0 4 0 4 0 4 0 8 0 8 -4 -8 -4 -8 0 -8 0 -4 -4 0 8 4 0 4 8 2 8 -4 -8 -4 0 -8 4 8 0 0 0 0 0 0 8 0 8 0 0 -4 0 -8 -4 -8 0 -4 -8 0 0 0 0 -8 0 0 0 0 -8 4 8 8 0 0 4 0 0 -4 0 0 -8 0 4 0 4 0 2 8 4 0 -4 -4 4 8 2 8 0 8 0 -8 -8 -8 4 16 8 4 8 4 8 8 -4 -2 -4 4 0 0 0 0 -4 -4 -4 -8 -4 0 -2 0 -8 -2 -4 16 4 4 -1 0 -4 0 -8 -2 -8 -8 -8 -2 -16 1 4 0 0 8 -4 8 -12 -12 -16 -4 8 2 0 0 0 0 4 8 8 4 4 0 0 2 4 -8 -8 -8 -4 8 4 2 -4 8 -4 12 12 -8 4 -8 2 8 -1 -2 1 1 -3 4 -4 -2 0 0 0 0 0 -2 0 -4 0 16 4 0 0 0 -4 3 0 16 0 0 -4 0 0 0 0 -2 8 -4 0 0 -8 -2 0 -8 0 0 0 0 -8 0 8 -4 0 0 0 0 -8 -2 8 -2 0 0 3 0 4 -16 -8 0 0 -16 -8 0 0 0 8 0 0 0 0 -8 16 0 0 0 0 8 0 0 -4 4 0 -8 0 -4 16 -4 -8 0 -16 4 0 0 0 4 -8 0 -8 0 8 0 0 0 0 0 0 0 0 -4 16 4 0 0 -4 0 8 0 8 0 4 -16 0 0 0 4 0 -8 0 0 16 0 16 0 -4 -16 -8 -16 16 16 0 0 0 0 0 0 0 16 0 0 0 0 0 0 0 0 0 0 -8 0 0 -4 4 8 -4 -8 0 0 0 0 4 -8 4 -8 4 4 0 8 -4 0 0 8 0 4 0 -4 0 16 8 -16 -16 0 0 0 0 0 0 16 0 -8 -2 8 0 0 0 0 0 -4 -8 -8 -8 -4 0 4 0 0 -2 8 0 0 0 3 0 8 0 0 4 -8 0 0 -4 0 3 0 0 0 -8 0 8 0 0 0 0 16 -2 0 0 0 0 -4 0 -8 -4 0 0 0 -2 0 16 4 0 0 0 0 -4 -2 0 0 0 0 0 -2 0 -4 4 1 -4 1 1 -3 4 -4 -2 0 16 0 0 0 -2 0 -4 -8 16 -4 0 0 0 -4 3 0 16 -8 0 -4 0 0 16 0 6 -8 -4 0 -8 8 6 0 -24 0 0 0 -8 -8 -16 -8 -4 0 16 0 0 -8 6 -8 6 0 16 3 0 -4 16 -8 0 0 16 -24 0 -8 0 -8 0 16 -8 0 8 16 0 0 0 0 -8 -16 0 12 4 0 8 0 -4 16 12 8 0 16 -4 0 0 0 4 -8 0 -8 0 -8 0 -16 0 -16 0 0 0 0 -4 16 4 -8 -8 -4 0 -8 0 -8 16 -4 16 0 0 0 4 16 -8 16 0 -16 0 -16 0 12 16 8 16 -16 -16 -8 0 0 0 0 0 0 16 0 0 0 0 16 0 0 0 0 0 -8 0 0 -4 4 -8 -4 8 -8 0 0 0 4 -8 4 -8 4 -4 16 -8 -4 0 0 -8 16 -4 -16 12 -16 16 -8 16 16 -8 0 0 0 0 0 16 16 -8 6 -8 -8 0 0 0 0 -4 -8 -8 -24 -4 0 -4 0 16 6 -8 0 0 0 3 0 -8 0 16 -4 8 -16 -16 -4 0 3 -8 0 0 8 0 -8 0 0 0 0 16 6 0 0 0 0 -4 16 -24 -4 -8 0 0 6 0 16 4 16 -8 0 0 -4 -2 0 -8 0 0 0 -2 0 -4 4 1 -4 1 1 -3 0 -4 2 0 16 0 0 0 2 0 -4 0 0 0 0 0 0 -4 3 0 0 0 0 -4 0 0 16 0 2 -8 -12 0 0 0 2 0 0 0 0 0 0 8 0 -8 -4 0 -16 0 0 -8 2 -8 2 0 -16 3 0 4 0 8 0 0 0 0 0 -8 0 8 0 16 0 0 0 0 0 0 0 0 -8 0 0 -4 -4 0 0 0 12 0 -4 0 0 0 4 0 0 0 -4 8 0 8 0 -8 0 0 0 0 0 0 0 0 4 0 0 0 0 12 0 -8 0 8 -16 4 0 0 0 0 0 16 -8 -16 0 0 0 16 0 -4 0 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 0 0 0 0 -8 0 0 4 0 -8 12 0 0 0 0 0 0 8 -4 8 -4 4 -16 -8 12 0 0 8 -16 4 0 -4 0 0 -8 0 0 0 0 0 0 0 0 0 16 -8 2 -8 0 0 0 0 0 -4 8 8 0 -12 0 4 0 -16 2 -8 0 0 0 3 0 8 0 -16 4 0 0 0 -4 0 3 0 0 0 0 0 -8 0 0 0 0 0 2 0 0 0 0 -4 16 0 -12 0 0 0 2 0 0 0 16 0 0 0 -4 2 0 0 0 0 0 2 0 -4 0 1 -4 1 1 -3 4 -2 0 -4 16 0 4 0 0 4 -6 -4 8 -8 0 0 4 6 1 0 -8 4 0 -4 0 0 -16 4 2 0 -4 0 4 0 2 0 -8 4 4 0 -4 -4 0 4 4 0 -8 0 -4 4 -2 0 -2 0 -8 -1 -4 -2 0 -4 0 0 0 8 0 2 0 -4 0 0 -4 0 0 8 -4 0 0 -4 4 0 0 0 0 -4 0 4 0 0 0 0 8 0 2 0 0 0 0 4 0 4 -8 -4 -8 0 -8 0 0 0 0 4 0 -8 4 4 4 0 -4 -4 8 4 8 2 0 0 0 0 -4 0 -4 8 -8 0 8 0 8 0 0 0 0 0 0 4 -8 0 0 0 -8 0 -8 0 0 0 0 0 8 8 8 8 4 -4 -4 -4 0 -4 -4 0 0 4 -8 -8 4 4 4 0 4 0 2 8 -4 0 0 0 4 8 2 0 0 0 0 0 0 0 -4 0 0 0 0 0 8 0 4 -2 4 -4 -4 -4 -4 -4 4 -4 -4 8 4 0 -2 0 -8 -2 4 0 0 0 -1 0 -4 0 -8 -2 0 0 0 6 0 1 4 0 0 0 0 0 0 0 0 0 -8 2 4 4 4 4 -4 -16 -8 -4 4 0 0 2 0 8 -4 16 -4 4 0 -6 0 4 -4 0 0 -4 0 -4 2 4 -1 -2 1 1 -3 0 4 -2 -4 0 4 8 0 -2 -8 4 8 8 -8 0 0 0 4 -1 -8 8 8 8 0 4 0 0 -8 2 0 0 -4 -8 0 -2 0 0 4 -4 -8 0 0 -8 0 0 -8 8 8 0 0 2 0 -2 0 -8 -1 4 0 0 0 -4 8 0 0 0 0 0 0 -4 0 0 0 0 -8 -8 0 -8 -4 0 8 0 0 0 0 0 4 4 0 0 0 0 0 0 8 0 8 0 0 0 0 0 0 -8 8 0 -8 -4 0 -4 0 4 -8 0 0 0 -4 4 0 -8 0 8 0 0 0 8 0 0 0 0 -8 8 0 8 0 0 0 0 0 0 0 0 0 8 0 -4 8 0 0 -8 8 0 8 0 0 8 0 -8 0 4 0 4 0 4 0 0 -4 0 0 -8 0 0 0 0 0 0 0 0 -8 0 4 -4 0 0 8 0 -8 0 8 0 0 0 0 0 0 0 -4 8 0 -8 0 0 2 0 0 4 -4 0 -8 0 0 0 0 0 -8 0 0 -8 -2 0 -8 -4 0 -1 8 0 0 8 0 0 -8 8 4 -8 -1 -8 8 0 0 4 0 0 -4 0 0 8 2 4 -4 0 -8 0 0 0 0 8 -8 0 -2 0 8 0 0 8 -4 4 4 -2 8 -8 0 -4 -4 -2 8 -4 0 1 -4 1 1 -3 -4 0 2 0 8 0 0 -4 2 8 4 8 -8 -4 -4 -4 -4 4 -1 -8 -8 8 -8 0 0 0 8 12 2 0 0 8 0 0 -2 -16 0 8 -8 8 0 -8 0 0 0 -8 -8 0 -4 0 2 0 -2 0 8 -1 8 -8 8 8 -8 -8 -8 0 -4 0 4 8 0 -8 -8 -16 0 8 12 8 8 -8 0 0 0 0 0 4 -8 0 -4 0 0 8 8 -8 -8 -8 0 -8 0 8 0 -8 -8 0 0 0 8 0 -8 8 0 4 -4 8 4 0 -8 4 0 0 0 8 -8 0 8 4 0 -4 4 -8 0 8 16 0 16 0 -8 0 -8 8 8 0 0 0 16 8 0 0 -8 -4 8 -8 0 -8 0 -8 16 -8 0 8 0 0 0 4 -4 4 0 4 -8 -8 0 8 4 4 8 0 -8 0 -8 8 0 -4 -8 4 8 -8 0 0 0 0 0 0 -8 8 0 0 8 0 0 -4 8 -8 0 2 0 -8 8 -8 -4 12 0 8 -8 0 0 8 -8 -16 8 -2 0 -8 -8 4 -1 -8 8 0 -8 0 0 0 0 4 -8 -1 0 -8 0 0 0 0 -4 8 0 -4 -8 2 8 -8 -4 12 0 8 0 0 8 8 -16 -2 -4 -8 -4 8 8 0 0 4 2 4 0 -4 8 0 2 4 -4 -4 1 -4 1 1 -3 0 6 0 -8 0 4 -4 0 0 12 2 4 0 -4 0 0 4 -2 -3 -8 0 -4 -8 0 -4 16 0 -4 -2 0 0 -4 4 0 2 0 0 8 -8 8 4 4 -8 -12 0 8 0 -8 -4 4 2 0 -2 -16 0 3 -8 -6 0 -4 -4 8 0 0 0 -6 0 12 -12 0 -4 0 0 0 4 0 -8 8 12 8 0 4 4 -4 0 -8 0 0 -4 0 8 0 6 -8 -16 8 -4 4 16 -4 8 12 0 -8 -8 8 4 0 12 4 0 0 0 -4 4 0 8 -12 0 -12 0 6 0 0 8 0 0 0 -4 0 0 0 0 0 -8 4 0 0 0 0 0 -4 0 0 12 8 8 0 0 8 16 -8 -16 0 0 -8 0 8 -8 -4 8 -4 0 0 -12 0 0 4 0 -8 4 0 4 4 -4 -4 6 0 12 0 4 0 -12 0 6 8 -4 -8 0 0 0 0 4 -16 0 -12 -8 0 0 0 4 2 12 -4 -8 8 -4 4 0 -4 4 0 0 -8 -6 0 0 -2 -12 8 -4 0 3 8 12 0 0 -6 0 -8 8 -2 -8 -3 4 -8 0 0 -4 0 0 -4 16 0 0 -2 8 -8 4 -4 0 0 0 0 -4 8 0 2 0 0 0 0 4 8 4 2 0 -4 -4 0 4 -8 0 4 2 0 -1 -2 1 1 -3 -4 0 2 0 8 0 8 4 2 -8 4 8 -8 -4 4 4 12 4 -1 -8 -8 8 8 0 0 0 -8 -4 2 0 0 -8 0 0 -2 0 0 -8 8 -8 0 8 0 0 0 -8 -8 0 12 0 2 0 -2 0 8 -1 -8 0 8 -8 8 8 -8 0 4 8 -4 -8 0 -8 -8 0 0 8 -4 -8 -8 8 0 0 -16 0 0 4 -8 0 -4 0 0 8 -8 -8 0 -8 0 -8 0 -8 0 8 8 0 16 0 -8 0 8 -8 0 4 -4 8 4 0 -8 4 0 0 16 -8 -8 8 8 -4 0 4 4 -8 0 8 0 0 0 0 8 0 -8 8 8 0 0 0 0 -8 0 0 8 4 8 -8 0 -8 0 -8 0 8 16 -8 0 0 0 4 -4 4 0 4 -8 -8 16 -8 4 4 -8 0 8 0 0 8 0 -4 8 -4 -8 -8 8 0 0 0 0 0 -8 8 0 0 -8 0 0 4 8 -8 0 2 0 -8 -8 8 12 -4 0 -8 8 0 0 -8 0 0 8 -2 0 -8 8 -4 -1 8 -8 -16 -8 8 0 0 0 4 -8 -1 0 8 -16 0 0 0 4 -8 0 4 -8 2 -8 8 12 -4 0 8 0 0 8 -8 0 -2 4 -8 -4 8 8 0 0 4 2 4 0 4 -8 0 2 4 -4 -4 1 -4 1 1 -3 0 -4 -2 4 0 -4 0 0 -2 8 4 0 8 0 0 0 -8 4 -1 -8 8 0 -8 0 -4 0 0 0 2 0 0 4 0 0 -2 0 0 -4 4 8 8 0 8 0 0 -8 8 -8 -8 0 2 0 -2 0 -8 -1 -4 0 0 0 4 -8 0 0 0 0 0 0 4 0 -8 0 0 -8 0 0 8 4 0 -8 0 0 0 8 0 -4 4 0 0 0 0 0 0 8 0 8 0 0 0 0 0 0 8 -8 0 8 4 0 4 8 4 -8 0 8 -8 -4 -4 0 8 0 8 0 0 0 -8 0 0 0 0 -8 -8 0 -8 0 0 0 0 0 0 0 0 8 -8 0 4 -8 0 0 -8 8 0 8 0 0 -8 0 8 0 -4 0 -4 8 4 0 0 -4 0 -8 8 0 8 0 0 0 0 0 0 -8 0 4 4 0 0 8 0 8 0 -8 0 0 0 0 8 0 0 4 -8 0 -8 0 0 2 0 -8 -4 4 -8 0 0 0 0 0 0 8 0 0 -8 -2 0 -8 4 0 -1 -8 0 0 8 0 0 8 -8 4 -8 -1 0 -8 0 0 -4 0 0 4 0 0 8 2 -4 4 -8 0 0 0 0 0 0 8 0 -2 0 8 0 0 0 4 -4 4 -2 0 0 0 4 4 -2 0 -4 0 1 -4 1 1 -3 0 2 0 -4 0 0 4 4 0 4 2 4 0 -4 -4 -4 0 -2 -3 0 0 -4 0 0 0 8 -8 0 2 0 0 0 4 0 -2 8 0 -4 4 0 4 -4 8 -4 0 0 0 0 0 4 -2 0 2 -8 0 3 4 2 0 4 0 0 0 0 -4 2 -12 -4 0 0 -4 -8 0 0 0 -8 0 -4 4 -8 8 4 -4 0 0 -4 0 0 -4 0 0 0 -2 0 8 0 4 -4 -8 4 0 4 -8 8 0 -8 0 8 0 0 0 0 0 -4 4 0 4 -4 8 4 0 -2 0 12 0 4 0 0 -4 0 8 0 -8 0 0 4 0 0 0 0 0 -4 8 8 0 0 0 4 0 0 -8 0 8 0 -8 0 8 0 -4 -4 4 0 0 0 -4 0 0 4 -8 0 0 0 -4 -4 4 4 -2 0 4 0 0 12 4 0 -2 -8 -4 8 0 0 0 0 4 -8 -8 0 0 -4 0 0 4 -2 4 -4 4 -4 0 0 0 4 -4 0 0 0 2 -8 0 2 -4 0 0 -12 3 0 -4 8 0 2 0 8 -8 -2 0 -3 4 0 -8 0 0 0 -4 0 8 -4 0 2 -4 4 0 0 0 0 0 0 -4 0 8 -2 4 0 0 0 4 4 0 2 0 0 -4 4 0 -4 0 0 2 0 -1 -2 1 1 -3 0 -2 0 0 0 -4 4 0 0 12 2 4 0 -4 0 0 -4 -2 -3 8 0 -4 -8 0 4 0 0 4 6 0 0 -12 4 0 -6 0 0 0 0 8 4 4 -8 4 0 -8 0 -24 4 4 -6 0 6 0 0 3 0 2 0 -4 -12 8 0 0 0 2 0 -4 12 0 -4 0 0 0 -4 0 -8 0 -4 8 0 -12 4 4 0 0 0 0 12 0 8 0 -2 8 0 -8 -4 4 0 -4 8 -4 0 -8 -8 8 12 0 -12 -4 0 0 0 -4 4 0 0 4 0 4 0 -2 0 0 24 0 0 0 -4 0 0 0 0 0 -8 -12 0 0 0 0 0 -4 0 0 -12 24 8 0 0 -8 0 8 0 0 0 -8 0 8 0 -4 0 4 0 0 4 0 0 4 0 -8 -4 0 4 4 -4 -4 -2 0 -4 0 12 0 4 0 -2 8 12 -8 0 0 0 0 4 0 0 12 -24 0 0 0 4 -6 -4 -4 0 0 4 -4 0 -4 4 0 0 -8 2 0 0 6 4 -8 -12 0 3 8 -4 0 0 2 0 -8 8 -2 8 -3 4 -8 0 0 4 0 0 -12 0 0 0 6 0 0 -4 4 0 0 0 0 -4 8 0 -6 0 0 0 0 4 0 -4 2 0 4 -4 0 12 0 0 -4 2 0 -1 -2 1 1 -3 0 0 -2 0 0 0 0 4 -2 0 4 0 8 0 -4 4 -4 4 -1 0 8 0 0 0 0 -8 8 4 -2 0 0 0 0 0 2 -8 0 -8 0 0 -8 0 8 0 0 0 -8 0 -4 0 -2 0 2 -8 8 -1 -8 0 0 0 0 0 0 0 4 0 4 0 0 0 8 -8 0 -8 4 -8 0 0 0 -8 8 0 0 -4 0 8 -4 0 0 0 -8 0 0 0 8 0 0 0 8 0 8 0 0 -8 -8 8 0 -8 0 -4 4 -8 0 -8 8 4 8 0 0 0 -8 0 0 4 0 4 0 0 0 8 0 0 0 0 8 0 0 0 0 0 0 -8 0 -8 0 0 8 4 -8 0 8 0 8 0 0 8 0 -8 8 0 8 -4 4 0 0 4 0 8 0 -8 -4 0 0 0 0 0 0 8 0 -4 0 4 0 -8 0 8 0 -8 0 0 0 0 -8 -8 -8 0 0 4 -8 0 0 -2 0 8 -8 0 -4 4 0 0 0 0 0 0 0 -8 8 2 0 0 0 4 -1 0 0 8 -8 0 0 8 -8 4 0 -1 0 0 8 0 0 0 4 0 -8 -4 8 -2 -8 0 -4 4 0 0 0 0 0 0 -8 2 -4 8 0 0 0 0 0 4 -2 4 0 4 0 0 -2 4 -4 0 1 -4 1 1 -3 0 6 -4 -4 0 0 -4 0 4 4 2 4 8 -4 0 0 -4 -2 1 0 -8 -4 0 4 0 0 0 -4 -2 8 -4 0 4 0 -2 0 0 4 4 0 -4 -4 0 4 -4 0 8 0 4 -4 2 -8 2 0 -8 -1 -4 6 0 -4 0 0 -16 0 0 2 0 4 0 0 4 0 0 -8 4 0 0 -4 4 0 0 0 0 4 0 4 0 0 0 0 8 16 -6 0 0 0 0 4 0 4 -8 -4 8 0 -8 0 0 0 0 -4 0 8 0 4 -4 0 -4 -4 -8 -4 -8 2 0 0 0 0 0 0 4 8 8 0 -8 0 8 0 16 0 0 0 0 4 8 0 0 0 -8 0 8 0 0 0 0 0 -8 8 -8 8 4 4 -4 4 0 0 -4 0 0 -4 8 -8 -4 0 4 0 4 0 -6 8 -4 0 0 0 -4 -8 2 0 0 0 0 -8 -16 0 -4 0 0 0 0 0 -8 0 -4 2 4 4 -4 -4 4 4 -4 -4 -4 0 4 0 6 0 -8 2 4 0 0 0 -1 0 4 0 8 -2 0 0 0 -2 0 1 4 0 0 0 0 8 0 0 0 0 -8 -2 4 4 -4 -4 4 0 0 -4 -4 0 0 -2 0 8 0 0 4 4 0 2 4 -4 -4 0 0 -4 -4 4 2 0 -1 -2 1 1 -3 -4 6 0 -4 8 0 -4 0 0 4 2 4 0 0 0 0 4 -2 1 0 0 -4 8 -4 0 0 -16 4 2 0 -4 0 4 0 2 -8 8 -4 -4 8 -4 4 0 -4 4 0 -16 0 -4 -4 -2 0 -2 0 0 -1 4 -2 8 4 0 -8 -8 -8 0 10 0 4 0 -8 4 8 0 0 -4 0 -8 4 -4 0 8 0 0 4 0 4 0 0 0 0 0 8 2 0 0 0 0 -4 0 -4 0 4 0 0 0 0 0 0 0 -4 0 0 -4 4 -4 0 -4 4 0 -4 16 -6 -8 0 0 0 4 8 4 0 0 0 0 0 0 0 8 0 -8 0 0 4 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 4 4 -4 4 0 4 4 0 0 -4 0 0 -4 -4 -4 0 -4 0 2 0 4 0 0 0 -4 16 -6 0 0 0 0 0 -8 8 -4 0 0 0 0 0 0 -8 -4 -2 -4 4 4 4 -4 -4 4 4 4 -8 4 -8 -2 8 0 -2 -4 0 0 0 -1 -8 4 8 -16 6 0 0 0 -2 0 1 4 8 -8 0 0 0 0 0 0 0 0 2 -4 -4 4 4 -4 -8 8 -4 -4 8 -8 2 0 0 4 8 4 4 0 2 0 -4 -4 0 0 -4 0 4 2 -4 -1 -2 1 1 -3 0 2 -4 0 8 -4 -4 4 4 4 2 -4 8 -4 4 -4 -8 -2 1 0 -8 4 0 4 4 0 -8 8 2 -8 4 -4 4 8 2 0 -8 -8 8 0 4 -4 -8 -4 -4 0 8 -8 8 -4 -2 8 -2 0 8 -1 8 -2 8 -4 12 0 8 8 12 -6 -4 -4 -4 -8 4 0 -8 -8 -8 -8 0 -8 -4 -8 0 0 0 0 0 0 0 0 0 0 0 -8 2 -16 -16 16 0 4 16 4 0 4 0 8 0 8 -12 8 4 0 0 8 -8 -4 -4 0 0 4 0 4 -8 2 -8 4 8 -12 8 8 4 -8 0 0 0 0 0 0 -8 0 -8 0 0 -4 0 8 4 8 0 -12 8 16 16 -16 -16 8 0 0 0 0 0 4 0 0 0 8 4 0 0 -4 0 0 0 -8 4 0 4 0 2 -8 4 0 -12 4 4 -8 2 8 0 8 0 8 8 8 4 0 -8 -4 -8 12 -8 -8 -4 -2 -4 4 8 -8 8 -8 -4 -4 -4 8 -4 0 -2 0 8 -2 -4 0 12 -4 -1 0 -4 0 8 -2 -8 -8 -8 -2 0 1 4 0 0 8 4 -8 -4 -4 0 4 -8 2 -8 8 -8 8 4 -8 -8 4 4 0 0 2 -4 8 0 8 -4 0 -4 2 4 0 -4 4 4 0 -4 0 2 0 -1 -2 1 1 -3 4 4 -2 -8 -16 8 0 8 -2 -16 -4 8 16 12 -8 8 8 -4 3 16 16 8 -16 -4 8 -16 0 8 -2 -8 12 -8 8 -24 -2 16 8 -8 -8 -16 8 -8 16 -8 -4 16 -16 -16 8 -8 -2 -8 -2 -16 -16 3 -8 -4 16 -8 -8 -16 16 8 8 8 -24 -8 24 -16 8 16 -24 16 8 16 -16 -8 -8 16 16 -4 4 8 8 -8 12 16 -4 8 -16 16 -4 16 -16 16 4 -8 -16 -8 -16 -8 16 16 -16 16 -8 16 24 8 -4 16 4 8 8 12 -8 -8 16 -8 -16 -4 16 -24 -16 8 4 -16 -8 -16 16 -16 16 -16 -16 -4 16 8 16 -16 -16 8 16 16 24 -16 -16 8 16 16 -16 16 -16 -16 16 -16 16 -16 -8 -8 -8 8 -4 4 -8 12 8 8 16 -16 8 4 -8 4 -8 4 -4 -16 -8 12 -8 -24 -8 -16 -4 16 -4 16 16 -8 16 16 8 -16 16 24 -16 8 16 -16 -8 -2 -8 8 -8 -8 8 8 -4 -8 -8 8 12 -16 -4 16 -16 -2 -8 16 -8 -24 3 -16 -8 16 -16 -4 -24 16 16 -4 16 3 8 -16 16 -24 8 -8 8 -8 -16 -8 16 -2 -8 -8 8 8 -4 -16 8 12 8 -16 16 -2 -8 16 4 -16 8 -8 8 -4 -2 8 8 8 -8 -8 -2 8 -4 4 1 -4 1 1 -3 0 10 -4 -8 -8 4 -12 4 4 4 2 4 8 4 4 -4 0 -2 1 16 -8 -4 0 4 -4 -16 8 0 2 -8 4 4 -4 -8 2 0 8 0 0 0 -4 -4 8 -4 -4 -16 -8 8 0 -4 -2 8 -2 16 -8 -1 0 -2 8 -4 -12 0 8 -8 12 -6 -4 -4 4 8 -4 0 8 -8 0 -8 0 0 -4 8 0 0 0 -8 0 -8 0 0 0 0 0 -8 2 0 0 0 0 4 0 4 0 4 0 -8 0 -8 12 8 -4 8 0 8 8 4 4 0 8 4 0 4 8 2 -8 4 -8 -12 -8 -8 4 8 0 0 0 0 0 0 -8 0 -8 0 0 4 0 8 -4 -8 0 -12 8 0 0 0 0 -8 0 0 0 0 -8 4 8 -8 0 -8 4 0 0 4 0 0 8 8 4 0 4 0 2 8 4 0 12 4 4 8 2 -8 0 -8 0 8 8 8 -4 16 -8 4 8 12 -8 8 -4 -2 -4 -4 0 0 0 0 -4 -4 -4 -8 -4 0 -2 0 -8 -2 -4 -16 -12 -4 -1 0 -4 0 -8 -2 8 8 8 -2 16 1 -4 0 0 -8 -4 -8 -4 4 -16 4 -8 2 0 0 0 0 4 8 8 4 -4 0 0 2 -4 8 0 -8 4 8 4 2 4 -8 4 4 -4 -8 -4 8 2 0 -1 -2 1 1 -3 0 -4 2 0 0 0 0 0 2 0 -4 8 0 8 0 0 0 -4 3 0 0 8 0 -4 0 0 0 0 -6 -8 4 0 8 0 -6 0 0 0 0 0 8 8 -16 8 -4 0 0 0 0 -8 -6 -8 -6 0 0 3 0 -4 0 8 0 0 0 0 0 0 0 -8 0 0 8 0 0 0 0 0 0 0 8 -16 0 12 -4 0 0 0 -4 0 12 0 0 0 -4 0 0 0 -4 8 0 8 0 8 0 -16 0 -16 0 0 0 0 4 0 0 8 8 -4 0 8 0 -8 0 -4 0 0 0 0 0 0 -8 0 0 0 0 16 0 12 0 0 0 16 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -8 0 0 4 0 8 -4 0 8 0 0 0 0 8 -4 8 -4 -4 0 8 -4 0 0 -8 0 -4 -16 12 -16 0 -8 0 0 8 0 0 0 0 0 0 0 -8 -6 8 8 0 0 0 0 -4 8 8 0 4 0 -4 0 0 -6 8 0 0 0 3 0 -8 0 0 -4 0 -16 -16 -4 0 3 8 0 0 0 0 -8 0 0 0 0 0 -6 0 0 0 0 -4 0 0 4 8 0 0 -6 0 0 0 0 8 0 0 -4 2 0 8 0 0 0 2 0 -4 0 1 -4 1 1 -3 4 2 0 -8 -8 4 -4 4 0 4 -6 4 8 8 4 -4 8 6 1 0 -8 -4 -16 -4 -4 0 8 8 -2 0 4 4 -12 -8 -2 16 0 0 0 0 4 -4 -8 -4 4 0 8 -8 -8 4 2 0 2 0 -8 -1 0 -2 8 -4 4 16 -8 0 -4 2 -4 4 4 -8 -4 -16 8 8 -8 8 0 0 -4 -8 0 0 0 0 0 8 0 0 0 0 -16 8 2 0 0 0 0 4 0 4 0 4 16 8 16 8 -4 -8 -4 0 0 -8 -4 -4 4 0 -8 4 -16 -4 -8 -6 -8 4 8 4 4 8 -4 8 0 0 0 0 0 0 8 0 -8 0 0 -4 0 -8 -4 8 0 4 -8 0 0 0 0 8 0 0 -16 -16 8 -4 -8 0 0 4 4 0 0 4 16 16 0 -4 4 0 4 0 2 8 4 0 -4 4 -4 -8 -6 8 0 8 0 0 -8 8 4 0 8 4 -8 -4 8 -8 4 2 -4 -4 0 0 -8 -8 4 -4 -4 0 -4 0 -2 -16 -8 2 -4 0 4 -4 -1 16 4 0 8 6 8 -8 -8 6 0 1 -12 -16 0 -8 -4 0 -4 4 0 4 -8 -2 0 0 8 8 -4 8 0 4 -4 0 16 -2 -4 8 -4 -8 4 8 4 -6 0 0 12 4 -4 -8 0 0 2 4 -1 -2 1 1 -3 4 -12 -2 8 -16 -8 0 -8 -2 16 -4 8 16 12 8 -8 -8 -4 3 -16 16 8 16 -4 -8 16 -32 -8 -2 -8 12 8 8 -24 -2 -16 8 8 8 16 8 -8 16 -8 -4 -16 -16 16 -8 -8 -2 -8 -2 16 -16 3 8 -4 16 -8 8 16 16 8 -8 8 24 -8 -24 -16 8 -16 -24 16 -8 -16 16 8 -8 16 -16 -4 4 -8 8 8 12 16 -4 8 16 16 -4 -16 16 -16 4 -8 16 -8 16 -8 -16 16 16 16 8 -16 -24 -8 -4 16 4 8 8 12 8 -8 -16 -8 -16 -4 16 24 16 -8 4 -16 -8 -16 -16 -16 -16 -16 16 -4 16 8 16 -16 -16 8 -16 -16 -24 16 16 -8 16 -16 16 -16 16 -16 -16 16 -16 16 8 -8 8 -8 -4 4 -8 12 8 8 -16 16 -8 4 -8 4 -8 4 -4 -16 -8 12 8 24 -8 -16 -4 16 -4 16 16 -8 16 16 8 16 -16 -24 16 -8 16 -16 -8 -2 -8 8 8 8 -8 -8 -4 -8 -8 8 12 16 -4 -16 -16 -2 -8 -16 8 24 3 16 -8 -16 -16 -4 -24 16 16 -4 -16 3 8 16 -16 -24 -8 -8 -8 8 16 8 16 -2 8 8 -8 -8 -4 -16 8 12 8 16 -16 -2 8 16 4 -16 8 8 -8 -4 -2 -8 8 -8 8 8 -2 -8 -4 4 1 -4 1 1 -3 4 -6 0 0 -8 -4 12 -4 0 4 -6 12 8 0 -4 4 0 6 1 0 -8 -12 16 -4 4 0 8 0 -2 0 4 -4 -4 -8 -2 -16 0 8 8 0 -4 -4 -8 -4 4 0 -8 8 0 4 2 0 2 0 8 -1 -8 6 -8 -4 -4 -16 8 0 4 -6 4 4 -4 -8 4 16 8 8 0 -8 0 -8 -4 -8 0 0 0 -8 0 0 0 0 0 0 0 -8 -6 0 0 0 0 4 0 4 16 4 0 8 0 8 4 8 4 8 0 -8 -4 4 -4 0 0 4 0 -4 8 2 8 -4 -8 -4 4 8 -4 -8 16 0 -16 0 -16 0 -8 0 8 0 0 4 16 8 4 -8 16 -4 -8 0 0 0 0 8 -16 -16 0 0 0 -4 0 -8 0 4 4 0 0 -4 0 0 8 -4 4 0 4 0 -6 -8 4 0 4 -4 -4 8 2 8 0 8 0 0 8 -8 -4 0 -8 -4 8 4 8 -8 4 2 -4 4 -8 -8 0 0 4 -4 -4 0 -4 0 6 16 8 2 -4 0 -4 4 -1 -16 4 0 -8 -2 8 -8 -8 6 0 1 -4 16 0 -8 4 0 4 -4 0 -4 -8 -2 8 8 0 0 -4 8 0 4 -12 0 -16 -2 4 8 -4 -8 12 0 -4 -6 0 8 4 -4 4 0 0 -8 2 4 -1 -2 1 1 -3 -4 -4 6 0 16 0 0 0 6 0 -4 8 -16 4 0 0 0 -4 3 0 -16 8 0 12 0 0 16 0 -2 -8 -4 0 8 -8 -2 0 -8 0 0 0 8 -8 16 -8 12 0 16 0 0 -8 -2 -8 -2 0 16 3 0 -4 -16 -8 0 0 -16 -8 0 -8 0 -8 0 16 8 0 -8 -16 0 0 0 0 -8 16 0 -4 4 0 24 0 -4 -16 -4 24 0 -16 -4 0 0 0 4 -8 0 -8 0 -8 0 16 0 16 0 0 0 0 12 -16 -4 8 8 -4 0 -8 0 -8 16 -4 -16 0 0 0 -4 16 -8 16 0 16 0 -16 0 -4 -16 24 -16 -16 16 8 0 0 0 0 0 0 -16 0 0 0 0 16 0 0 0 0 0 -8 0 0 12 -4 -8 -4 24 8 0 0 0 -4 -8 4 -8 4 -4 16 -8 -4 0 0 -8 16 -4 16 -4 16 -16 -8 -16 -16 8 0 0 0 0 0 -16 16 -8 -2 -8 8 0 0 0 0 12 -8 -8 -8 -4 0 -4 0 16 -2 -8 0 0 0 3 0 -8 0 16 -4 -8 16 16 -4 0 3 8 0 0 -8 0 -8 0 0 0 0 -16 -2 0 0 0 0 12 16 -8 -4 8 0 0 -2 0 -16 -4 16 8 0 0 -4 6 0 8 0 0 0 6 0 -4 -4 1 -4 1 1 -3 0 -2 4 -4 8 0 4 0 -4 4 -6 4 0 4 0 0 -4 6 1 0 0 -4 8 4 0 0 0 -4 -2 -8 -4 0 -4 0 -2 8 0 -4 -4 8 4 4 0 -4 -4 0 0 0 4 4 2 8 2 0 0 -1 4 -2 -8 4 0 -8 -8 0 0 2 0 -4 0 8 4 -8 0 -16 4 0 -8 4 -4 0 -8 0 0 -4 0 4 0 0 0 0 0 8 2 0 0 0 0 -4 0 -4 0 4 0 0 0 0 0 0 0 4 0 16 0 -4 -4 0 -4 4 0 4 0 2 8 0 0 0 0 -8 -4 0 0 0 0 0 0 0 8 0 8 0 0 -4 0 0 0 0 0 0 16 0 0 0 0 -8 0 0 0 0 4 -4 -4 -4 0 0 4 0 0 -4 0 0 4 0 -4 0 -4 0 2 0 4 0 0 0 4 0 2 0 0 0 0 8 -8 -8 4 0 0 0 0 0 -16 8 4 2 -4 4 4 4 4 4 -4 4 4 0 4 -8 -2 -8 0 2 -4 0 0 0 -1 -8 -4 -8 0 -2 0 0 0 6 0 1 -4 8 8 0 0 -8 0 0 0 0 0 -2 -4 -4 -4 -4 4 -8 0 -4 -4 8 8 -2 0 0 0 8 4 4 0 -6 -4 4 4 0 0 -4 4 -4 2 0 -1 -2 1 1 -3 -4 -4 2 4 8 -4 0 8 2 0 4 0 -8 4 0 8 8 4 -1 0 -8 0 -16 0 -4 -8 16 -8 -2 0 0 -4 8 0 2 -8 0 -4 12 0 -8 8 0 0 0 0 8 8 8 0 -2 0 2 -8 -8 -1 -4 0 -8 -8 -4 -16 8 0 -8 -8 0 8 4 -8 0 -8 0 8 -8 0 0 12 0 0 8 0 0 0 8 4 4 0 0 -8 16 8 0 0 -8 0 0 -8 -8 8 0 0 -8 0 16 0 -4 0 4 0 -4 8 4 -8 0 -4 4 0 -8 8 8 -8 -8 0 8 -8 4 -8 0 -8 8 0 8 0 0 0 8 -8 -8 0 0 -8 8 0 4 8 0 -8 8 0 -8 0 -8 -8 8 0 -8 16 4 0 4 0 -4 4 0 -4 8 0 -8 16 0 4 -8 0 8 0 0 -8 0 4 -4 0 8 8 -8 0 0 0 0 0 8 -8 -8 -8 0 4 8 -8 8 -8 0 -2 0 0 -4 12 8 -8 0 -8 8 0 0 0 0 -8 -8 2 0 0 -4 0 -1 -16 8 8 8 -8 0 0 0 4 0 -1 8 -16 8 0 -4 0 8 -4 -8 0 -8 -2 -4 12 8 -8 0 8 0 0 0 0 -8 2 0 -8 -4 8 0 4 -4 4 2 0 8 8 -4 4 2 0 -4 -4 1 -4 1 1 -3 0 2 0 -4 0 0 -4 12 0 4 2 -4 0 4 4 -12 0 -2 -3 0 0 4 0 0 0 8 8 0 -6 0 0 0 -4 0 6 -8 0 -4 4 0 -4 -4 -8 -4 0 0 0 0 0 4 6 0 -6 -8 0 3 4 2 0 4 0 0 0 0 -12 2 12 -4 0 0 4 8 0 0 0 -24 0 -4 4 8 -8 -12 -4 0 0 -4 0 0 12 0 0 0 -2 0 8 0 4 -4 -8 4 0 4 8 -8 0 8 0 24 0 0 0 0 0 4 -4 0 4 -4 -8 4 0 -2 0 -12 0 12 0 0 -4 0 -8 0 8 0 0 -12 0 0 0 0 0 4 -8 24 0 0 0 12 0 0 -8 0 8 0 8 0 -8 0 -4 -4 4 0 0 0 -4 0 0 -4 8 0 0 0 -4 -4 4 4 -2 0 4 0 0 -12 4 0 -2 8 12 -8 0 0 0 0 -4 -8 -24 0 0 -12 0 0 4 6 4 4 4 -4 0 0 0 4 -4 0 0 0 2 8 0 -6 -4 0 0 12 3 0 -4 -8 0 2 0 -8 8 -2 0 -3 -4 0 8 0 0 0 -12 0 8 4 0 -6 -4 4 0 0 0 0 0 0 4 0 -8 6 -4 0 0 0 -4 4 0 2 0 0 4 12 0 -4 0 0 2 0 -1 -2 1 1 -3 -4 -4 2 4 8 4 0 -8 2 8 4 0 -8 4 0 -8 -8 4 -1 0 -8 0 0 0 4 -8 0 8 -2 0 0 4 8 0 2 8 0 12 -4 -16 -8 -8 0 0 0 0 8 -8 -8 0 -2 0 2 -8 -8 -1 12 8 -8 8 4 0 8 0 8 0 0 -8 -4 -8 0 8 0 8 8 0 -16 -4 0 0 -8 0 0 0 8 4 4 0 0 -8 0 8 8 0 -8 0 0 8 -8 -8 16 0 8 0 0 0 4 0 -4 0 -4 8 4 -8 0 -4 4 0 8 -8 8 0 -8 0 -8 8 4 -8 0 -8 -8 0 -8 0 16 0 8 -8 -8 0 0 -8 -8 0 -4 -8 16 8 8 0 -8 0 -8 -8 -8 16 8 0 4 0 4 0 -4 4 0 -4 8 0 8 0 0 4 8 0 -8 0 8 -8 0 4 4 0 -8 8 0 0 0 0 0 0 8 -8 -8 -8 0 -4 -8 8 8 -8 0 -2 0 0 12 -4 -8 8 0 8 -8 0 0 -16 8 8 -8 2 0 0 4 0 -1 0 -8 -8 8 0 0 0 0 4 0 -1 8 0 -8 0 4 0 -8 4 -8 0 -8 -2 12 -4 -8 8 0 8 0 0 0 -16 8 2 0 -8 -4 8 0 4 4 4 2 0 8 -8 4 4 2 0 -4 -4 1 -4 1 1 -3 0 -8 -2 8 0 0 0 -4 -2 8 4 -8 8 8 4 -4 4 4 -1 0 8 -8 0 0 0 -8 -8 -4 -2 0 0 0 8 0 2 8 0 0 -8 0 0 0 -8 0 0 0 -8 0 4 0 -2 0 2 -8 8 -1 0 0 0 0 0 0 0 0 -4 0 -4 0 0 0 0 8 0 -8 -4 8 0 -8 0 8 -8 0 0 4 0 0 -4 0 0 0 8 0 0 0 8 0 0 0 8 0 -8 0 0 8 8 -8 0 8 0 4 4 -8 0 0 0 4 0 0 0 0 -8 0 0 -4 0 -4 0 0 0 8 0 0 0 0 -8 0 0 0 0 0 0 0 0 8 0 0 -8 -4 -8 0 8 0 8 0 0 -8 0 8 0 0 0 4 4 0 0 4 0 0 0 8 4 0 0 0 0 0 0 8 0 -4 0 -4 0 -8 0 -8 0 8 0 0 0 0 0 -8 8 0 0 -4 -8 0 0 -2 0 0 0 -8 4 -4 0 0 0 0 0 0 0 8 8 2 0 0 0 -4 -1 0 0 -8 -8 0 0 -8 8 4 0 -1 8 0 -8 0 0 0 -4 0 -8 4 8 -2 0 -8 4 -4 0 0 0 0 -8 0 8 2 4 8 0 0 -8 8 0 4 -2 -4 8 -4 0 8 -2 -4 -4 0 1 -4 1 1 -3 0 -2 0 0 0 4 4 0 0 4 2 -4 0 4 0 0 -4 -2 -3 8 0 4 8 0 -4 0 0 4 -2 0 0 -4 -4 0 2 0 0 0 0 -8 -4 4 8 4 0 -8 0 -8 4 4 2 0 -2 0 0 3 0 2 0 -4 -4 -8 0 0 0 2 0 -4 -12 0 4 0 0 0 -4 0 8 0 -4 -8 0 4 4 4 0 0 0 0 -4 0 -8 0 -2 8 0 -8 -4 4 0 -4 -8 -4 0 8 8 -8 4 0 12 -4 0 0 0 4 -4 0 0 4 0 4 0 -2 0 0 8 0 0 0 -4 0 0 0 0 0 8 4 0 0 0 0 0 4 0 0 12 8 -8 0 0 -8 0 8 0 0 0 8 0 -8 0 -4 0 4 0 0 4 0 0 -4 0 8 -4 0 4 4 -4 -4 -2 0 -4 0 4 0 4 0 -2 -8 -4 8 0 0 0 0 -4 0 0 -12 -8 0 0 0 4 2 -4 4 0 0 4 -4 0 -4 4 0 0 8 2 0 0 -2 4 -8 -4 0 3 -8 -4 0 0 2 0 8 -8 -2 8 -3 -4 8 0 0 -4 0 0 -4 0 0 0 -2 0 0 -4 4 0 0 0 0 4 -8 0 2 0 0 0 0 -4 0 4 2 0 4 4 0 4 0 0 -4 2 0 -1 -2 1 1 -3 0 -6 0 4 0 0 12 4 0 -4 2 -4 0 4 -4 -4 8 -2 -3 16 0 4 0 0 0 -8 8 -8 2 0 0 0 -4 0 -2 -8 0 4 -4 0 -4 -4 -8 12 0 -16 0 0 -8 4 -2 0 2 8 0 3 -4 -6 0 4 0 0 0 0 -4 -6 -12 12 0 0 4 8 0 0 8 -8 0 4 -12 8 -8 4 -4 8 0 4 0 0 -4 0 0 0 6 -16 -8 16 4 -4 8 4 0 -12 8 -8 0 8 0 8 0 -8 0 0 0 4 -4 0 -4 12 -8 -12 0 6 0 12 0 4 0 0 -4 0 -8 0 8 0 0 4 0 0 0 0 0 4 -8 8 0 0 0 4 0 16 8 -16 -8 0 8 0 -8 0 4 -4 -4 8 0 0 12 0 0 -4 8 0 -8 0 -4 -4 4 4 6 0 -12 0 0 12 -12 0 6 8 -4 -8 0 0 0 0 -4 8 -8 0 0 -4 0 0 4 -2 -12 4 -4 4 -8 8 0 4 -4 0 0 0 -6 8 0 2 12 -16 0 -12 3 0 12 -8 0 -6 0 -8 8 -2 16 -3 -4 0 8 0 0 0 -4 0 -8 -4 0 2 4 -4 8 -8 0 0 0 0 4 0 -8 -2 4 0 0 0 -4 -4 0 2 0 8 4 4 0 4 0 -8 2 0 -1 -2 1 1 -3 -4 2 0 0 0 -4 -4 4 0 4 2 4 0 8 4 -4 0 -2 1 0 0 -4 -8 -4 4 0 8 0 -2 0 4 -4 -4 8 -2 -8 0 0 0 8 -4 4 -8 4 4 0 0 8 0 -4 2 0 2 0 0 -1 0 -2 0 4 -4 8 0 0 -4 -6 -4 -4 -4 0 -4 8 -8 0 0 8 -8 0 4 -8 -8 0 0 0 0 0 0 0 0 0 -8 0 2 0 0 0 0 -4 0 -4 -8 -4 -8 8 8 8 4 -8 4 0 0 0 4 4 4 0 0 -4 8 4 0 2 0 4 -8 4 -4 0 4 0 8 0 -8 0 8 0 0 0 0 0 0 4 8 -8 4 -8 -8 4 0 0 0 0 0 0 -8 8 8 -8 0 4 0 0 0 -4 -4 0 0 4 -8 8 0 4 -4 0 -4 0 2 0 -4 0 4 4 4 0 2 8 0 8 0 0 0 0 -4 0 8 -4 8 -4 0 0 -4 2 4 -4 0 0 0 0 4 4 4 0 -4 -8 -2 8 0 2 4 0 -4 -4 -1 8 -4 -8 0 -2 -8 -8 -8 -2 0 1 -4 -8 8 8 4 0 -4 -4 0 4 0 -2 0 0 0 0 -4 0 0 4 -4 8 -8 -2 -4 0 4 0 4 0 -4 2 0 0 4 4 4 0 0 0 2 -4 -1 -2 1 1 -3 -4 2 0 0 0 4 4 -4 0 -4 2 4 0 8 -4 4 0 -2 1 0 0 -4 8 -4 -4 0 -8 0 -2 0 4 4 -4 8 -2 8 0 0 0 -8 -4 4 -8 4 4 0 0 -8 0 -4 2 0 2 0 0 -1 0 -2 0 4 4 -8 0 0 4 -6 4 -4 4 0 -4 -8 -8 0 0 -8 8 0 4 -8 8 0 0 0 0 0 0 0 0 0 8 0 2 0 0 0 0 -4 0 -4 8 -4 8 8 -8 8 -4 8 -4 0 0 0 4 4 4 0 0 -4 -8 4 0 2 0 -4 8 -4 -4 0 4 0 -8 0 8 0 -8 0 0 0 0 0 0 4 -8 8 -4 8 8 -4 0 0 0 0 0 0 8 -8 -8 8 0 4 0 0 0 -4 -4 0 0 4 8 -8 0 4 -4 0 -4 0 2 0 -4 0 -4 -4 4 0 2 8 0 8 0 0 0 0 -4 0 -8 4 -8 4 0 0 -4 2 4 -4 0 0 0 0 4 4 4 0 -4 8 -2 -8 0 2 4 0 4 4 -1 -8 -4 8 0 -2 -8 -8 -8 -2 0 1 -4 8 -8 8 -4 0 4 4 0 -4 0 -2 0 0 0 0 -4 0 0 4 -4 -8 8 -2 4 0 4 0 4 0 4 2 0 0 4 -4 -4 0 0 0 2 -4 -1 -2 1 1 -3 0 -2 -4 4 0 0 4 0 4 -4 2 -4 8 4 0 0 4 -2 1 0 -8 4 0 4 0 0 0 4 -2 8 -4 0 -4 0 -2 0 0 -4 -4 0 4 -4 0 4 -4 0 -8 0 -4 -4 2 -8 2 0 8 -1 4 -2 -16 -4 0 0 0 0 0 10 0 4 0 0 -4 0 0 -8 -4 0 0 4 4 0 0 0 0 -4 0 -4 0 0 0 0 -8 0 2 0 0 0 0 4 0 4 8 -4 -8 0 8 0 0 0 0 4 0 8 0 -4 4 0 4 -4 8 -4 8 -6 16 0 0 0 0 0 4 -8 -8 0 8 0 -8 0 0 0 16 0 0 -4 -8 0 0 0 8 0 8 0 0 0 0 0 8 -8 8 -8 -4 4 4 -4 0 0 -4 0 0 4 -8 8 4 0 4 0 4 0 2 -8 -4 0 0 0 -4 8 -6 0 0 0 0 -8 0 -16 4 0 0 0 0 0 -8 0 -4 2 4 -4 4 4 -4 -4 -4 -4 -4 0 4 0 -2 0 8 2 4 0 0 0 -1 0 4 0 -8 6 0 0 0 -2 0 1 -4 0 0 0 0 8 0 0 0 0 -8 -2 -4 -4 4 4 4 0 0 -4 4 0 0 -2 0 8 0 0 -4 -4 0 2 4 4 4 0 0 4 -4 -4 2 0 -1 -2 1 1 -3 0 -6 -4 8 -8 -4 12 -4 4 -4 2 4 8 4 -4 4 0 -2 1 -16 -8 -4 0 4 4 16 8 0 2 -8 4 -4 -4 -8 2 0 8 0 0 0 -4 -4 8 -4 -4 16 -8 -8 0 -4 -2 8 -2 -16 -8 -1 0 -2 8 -4 12 0 8 -8 -12 -6 4 -4 -4 8 -4 0 8 -8 0 8 0 0 -4 8 0 0 0 8 0 8 0 0 0 0 0 -8 2 0 0 0 0 4 0 4 0 4 0 -8 0 -8 -12 -8 4 -8 0 8 8 4 4 0 -8 4 0 4 8 2 -8 -4 8 12 -8 -8 4 8 0 0 0 0 0 0 -8 0 -8 0 0 4 0 -8 4 8 0 12 8 0 0 0 0 -8 0 0 0 0 8 4 -8 8 0 -8 4 0 0 4 0 0 -8 8 4 0 4 0 2 8 4 0 -12 -4 4 8 2 -8 0 -8 0 8 8 8 -4 -16 8 -4 -8 -12 -8 8 -4 -2 -4 -4 0 0 0 0 -4 -4 -4 -8 -4 0 -2 0 -8 -2 -4 16 12 4 -1 0 -4 0 -8 -2 8 8 8 -2 -16 1 -4 0 0 -8 4 -8 4 -4 16 -4 -8 2 0 0 0 0 4 8 8 4 -4 0 0 2 4 8 0 -8 4 -8 -4 2 4 8 4 -4 4 8 -4 -8 2 0 -1 -2 1 1 -3 -8 2 4 0 8 -4 4 12 -4 -12 2 4 -8 12 -4 -12 8 -2 1 0 8 -4 0 4 4 0 -8 -8 2 8 4 12 -4 -8 2 0 -8 -8 8 0 -4 -4 8 -4 -4 0 8 -8 -8 -4 -2 -8 -2 0 8 -1 8 -2 -8 -4 -4 0 -8 8 4 -6 4 -4 -4 -8 -4 0 8 8 8 8 0 -8 -4 8 0 0 0 0 0 0 0 0 0 0 0 8 2 16 -16 -16 0 4 16 4 0 4 0 -8 0 -8 4 -8 4 0 0 -8 0 4 4 0 0 4 0 4 -8 2 8 -4 8 -4 0 8 4 -8 0 0 0 0 0 0 8 0 8 0 0 4 0 -8 4 8 0 -4 -8 -16 16 16 -16 8 0 0 0 0 0 4 0 0 0 0 4 0 0 4 0 0 0 0 4 0 4 0 2 -8 4 0 4 -4 4 -8 2 -8 0 -8 0 -8 -8 -8 -4 0 8 -4 -8 4 8 -8 -4 -2 -4 -4 8 -8 -8 8 -4 -4 -4 8 -4 0 -2 0 8 -2 -4 0 -4 4 -1 0 -4 0 8 -2 8 8 8 -2 0 1 -4 0 0 -8 4 8 -12 12 0 -4 8 2 -8 8 8 -8 4 -8 -8 4 -4 0 0 2 4 -8 8 8 4 0 -4 2 -4 0 4 12 -12 0 4 0 2 -8 -1 -2 1 1 -3 -8 2 4 0 8 4 -4 -12 -4 12 2 4 -8 12 4 12 -8 -2 1 0 8 -4 0 4 -4 0 -8 8 2 8 4 -12 -4 -8 2 0 -8 8 -8 0 -4 -4 8 -4 -4 0 8 8 8 -4 -2 -8 -2 0 8 -1 -8 -2 -8 -4 4 0 -8 8 -4 -6 -4 -4 4 -8 -4 0 8 8 -8 -8 0 8 -4 8 0 0 0 0 0 0 0 0 0 0 0 8 2 -16 16 16 0 4 -16 4 0 4 0 -8 0 -8 -4 8 -4 0 0 -8 0 4 4 0 0 4 0 4 -8 2 8 4 -8 4 0 8 4 -8 0 0 0 0 0 0 8 0 8 0 0 4 0 8 -4 -8 0 4 -8 16 -16 -16 16 8 0 0 0 0 0 4 0 0 0 0 4 0 0 4 0 0 0 0 4 0 4 0 2 -8 4 0 -4 4 4 -8 2 -8 0 -8 0 -8 -8 -8 -4 0 -8 4 8 -4 8 -8 -4 -2 -4 -4 -8 8 8 -8 -4 -4 -4 8 -4 0 -2 0 8 -2 -4 0 4 -4 -1 0 -4 0 8 -2 8 8 8 -2 0 1 -4 0 0 -8 -4 8 12 -12 0 4 8 2 8 -8 -8 8 4 -8 -8 4 -4 0 0 2 -4 -8 8 8 4 0 4 2 -4 0 4 -12 12 0 4 0 2 -8 -1 -2 1 1 -3 -4 -2 0 4 8 0 4 0 0 -4 2 -4 0 8 0 0 -4 -2 1 0 0 4 -8 -4 0 0 0 -4 2 0 -4 0 -4 0 2 8 8 4 4 -8 4 4 0 -4 4 0 0 0 4 -4 -2 0 -2 0 -16 -1 -4 6 -8 4 0 8 8 -8 0 2 0 4 0 -8 -4 -8 0 0 4 0 8 -4 -4 0 -8 0 0 -4 0 -4 0 0 0 0 0 -8 -6 0 0 0 0 -4 0 -4 0 4 0 0 0 0 0 0 0 4 0 0 -4 -4 4 0 4 4 0 -4 0 2 8 0 0 0 4 8 4 16 0 0 0 0 0 0 -8 0 8 0 0 -4 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 -4 4 4 -4 0 4 4 0 0 4 0 0 4 -4 -4 0 -4 0 -6 16 4 0 0 0 -4 0 2 0 0 0 0 0 8 -8 4 0 0 0 0 0 0 -8 -4 -2 -4 -4 -4 -4 4 4 4 4 4 -8 4 8 6 -8 -16 -2 -4 0 0 0 -1 8 4 -8 0 -2 0 0 0 -2 0 1 -4 -8 8 0 0 0 0 0 0 0 0 2 4 4 -4 -4 -4 -8 8 -4 4 -8 8 2 0 0 4 8 -4 -4 0 2 0 4 4 0 0 4 0 -4 2 -4 -1 -2 1 1 -3 0 -6 -4 8 8 4 12 -4 4 -12 2 -12 8 4 -4 4 16 -2 1 0 -8 12 0 4 -4 0 -8 0 2 -8 4 4 -4 8 2 0 -8 0 -16 0 12 -4 -8 -4 -4 0 -8 8 -16 -4 -2 8 -2 0 24 -1 0 6 24 -4 -12 0 -8 8 -12 -14 4 -4 4 -8 -4 0 -8 -8 0 8 0 16 -4 -8 0 0 0 -8 0 -8 0 0 0 0 16 8 -6 16 16 -16 0 4 -16 4 -16 4 16 8 -16 8 12 -8 -4 8 0 8 -8 -12 4 0 8 4 -16 4 8 10 -24 -4 -8 12 8 8 4 -24 16 0 -16 0 16 0 8 0 -24 0 0 -12 16 -8 -4 -8 -16 12 8 -16 -16 16 16 8 -16 16 -16 16 -8 4 8 -8 0 8 4 0 0 4 16 -16 8 -8 4 0 4 0 -6 -24 4 0 12 -4 4 8 10 8 0 8 0 8 -8 24 12 0 8 4 8 -12 -8 -8 -4 -2 -4 -4 0 16 -16 0 -4 -4 -4 8 -4 0 6 0 24 -2 -4 0 -12 4 -1 0 -4 0 -8 -10 -8 -8 -8 -2 0 1 -4 0 0 8 -4 -8 4 4 0 -4 -8 2 0 -16 16 0 4 -8 -8 4 12 0 0 2 4 8 0 8 -12 -8 4 2 4 8 4 -4 -4 8 -4 -8 2 0 -1 -2 1 1 -5 8 -6 4 0 -8 4 4 12 4 12 -10 -4 -8 4 4 12 -8 -10 1 16 -8 -4 -16 4 4 16 -24 -8 2 8 4 12 -4 8 2 -16 8 -8 -8 -16 -12 4 8 4 4 16 8 8 -8 4 2 8 2 16 8 1 -8 2 8 4 4 -16 8 8 4 6 4 4 4 -24 -12 -16 8 -24 -8 8 -16 -8 4 8 -16 0 0 -16 0 16 0 0 0 0 0 8 2 0 0 0 0 4 0 4 0 4 0 8 0 8 4 8 4 16 0 -24 0 -12 -12 0 -16 4 0 4 8 2 8 4 8 4 0 -24 4 8 0 0 0 0 0 0 -8 0 -8 0 0 12 0 -8 -4 -8 0 -4 24 0 0 0 0 24 0 0 0 0 -16 -4 16 16 0 0 -4 0 0 12 0 0 -16 0 -4 0 -4 0 -2 -8 -4 0 -4 -4 -4 -8 -2 -8 0 -8 0 -8 -8 -8 12 -16 -8 -4 -8 -4 24 24 -4 -2 -4 12 8 8 8 8 -4 -4 -4 -8 -4 16 -2 16 -8 -2 -4 -16 -4 -4 -1 16 -4 16 -8 -2 -8 -8 -8 10 -16 -1 4 16 16 -8 -4 -8 -12 -12 -16 -4 8 -2 8 8 8 8 -4 8 -8 -4 4 16 16 -2 -4 8 -8 8 4 0 -4 10 -4 0 4 -12 -12 0 -4 0 6 -8 -1 6 -1 1 -5 12 -4 6 -8 -16 8 16 24 -6 32 -4 -8 -16 -20 -8 -24 -8 4 3 -16 16 8 -16 12 -8 -16 0 -8 6 24 12 -24 8 24 6 -16 24 -8 -8 -16 -8 -8 -16 -8 -12 16 -16 48 8 -8 -6 -24 -6 16 -16 -3 8 -4 -16 -8 24 16 -16 -24 24 -16 24 -8 24 -16 -8 16 -24 -16 8 48 16 8 -8 -16 16 12 4 -8 24 -8 12 48 12 24 -16 16 4 -16 -16 -16 4 8 -16 8 -16 8 -16 16 -16 16 -24 -48 -24 -8 12 16 12 8 8 12 -8 8 -16 8 16 4 16 -24 -48 -24 12 16 8 16 -16 16 -16 48 -16 -12 -16 -24 -16 -48 -16 -8 16 48 24 48 16 24 -16 16 16 16 16 -16 16 16 16 16 8 -8 8 8 -12 -12 -8 -12 -24 -8 16 16 8 -12 -8 -4 -8 -4 -4 -16 -8 -12 24 24 -8 -16 -4 -16 -12 -16 -48 24 16 16 8 -16 -48 -24 -48 -24 16 16 8 6 8 8 -8 -8 -8 -8 12 8 8 24 12 -16 4 -16 16 6 8 -16 -24 -24 3 -16 8 -16 16 4 24 16 16 -4 16 -3 -8 16 16 -24 8 -24 24 24 16 8 -16 -6 8 8 8 8 -12 -16 -24 -12 -8 16 16 -6 -8 16 12 16 8 -8 -8 4 6 -8 8 -24 -24 8 -6 8 -4 -12 1 4 -1 1 -5 4 2 0 0 -8 4 4 4 0 -4 -2 4 8 0 -4 4 0 -2 1 0 8 4 0 -4 4 0 8 0 -2 0 4 -4 -4 -8 -2 0 0 -8 -8 -16 4 4 8 4 -4 0 -8 -8 0 -4 -2 0 -2 0 8 1 -8 2 -8 4 4 0 8 0 -4 -2 -4 -4 4 -8 12 0 -8 8 0 8 -16 -8 4 8 16 0 0 8 0 0 0 0 0 0 16 8 2 0 0 0 0 4 0 4 0 4 -16 8 -16 8 4 8 4 -8 0 8 -4 4 12 0 0 4 16 -4 -8 -6 -8 -4 -8 -4 4 -8 -4 8 0 0 0 0 0 0 -8 0 8 0 0 -4 0 -8 -4 8 0 4 -8 0 0 0 0 8 0 0 -16 -16 0 4 0 -8 0 -4 -4 0 0 -12 16 16 8 4 -4 0 -4 0 -2 -8 -4 0 -4 4 4 8 6 -8 0 -8 0 0 -8 8 -4 0 -8 -4 8 4 -8 8 4 2 -4 -12 8 8 0 0 4 -4 -4 0 -4 16 -2 0 -8 2 -4 0 -4 4 -1 0 4 -16 8 6 8 -8 -8 2 0 -1 4 0 -16 8 -4 0 -4 4 0 4 -8 2 8 8 0 0 4 8 0 -4 -4 16 0 2 4 -8 -4 8 -4 0 -4 2 0 -8 4 -4 4 0 0 -8 6 -4 -1 6 -1 1 -5 4 -2 0 4 0 0 4 0 0 4 -2 -4 8 0 0 0 -4 -2 1 0 8 -4 0 -4 0 0 0 -4 2 0 -4 0 -4 0 2 0 -8 -4 -4 0 -4 4 0 -4 -4 0 8 0 -4 -4 2 0 2 0 8 1 -4 2 0 4 0 0 0 -8 0 -2 0 4 0 16 -4 0 0 8 -4 0 0 -4 -4 0 0 0 0 4 0 -4 0 0 0 0 -8 0 2 0 0 0 0 4 0 4 8 -4 8 0 8 0 0 0 0 -4 0 8 4 -4 -4 0 4 -4 -8 4 8 2 0 0 0 0 -4 16 -4 8 8 0 -8 0 -8 0 0 0 0 0 0 4 -8 0 0 0 -8 0 -8 0 0 0 0 -16 8 8 8 8 4 4 -4 -4 0 4 4 0 0 4 -8 -8 4 -4 -4 0 -4 0 -2 -8 4 0 0 0 -4 -8 -2 0 0 0 0 0 0 0 4 0 0 0 0 0 -8 -16 4 -2 4 4 4 4 4 4 4 -4 -4 8 4 0 -2 0 -8 -2 4 0 0 0 -1 0 -4 0 -8 -2 0 0 0 2 0 -1 4 0 0 0 0 0 0 0 0 0 -8 -2 4 4 4 4 4 0 8 4 4 0 0 -2 0 -8 -4 0 4 -4 0 2 0 -4 4 0 0 -4 0 -4 6 -4 -1 6 -1 1 -5 0 -2 4 4 8 0 4 0 4 4 -2 4 -16 4 0 0 4 -2 1 0 -16 4 -8 4 0 0 0 4 -2 -8 -4 0 4 0 -2 -8 0 4 4 -8 4 -4 0 4 4 0 0 0 4 -4 -2 -8 -2 0 0 1 4 2 8 -4 0 -8 8 0 0 -2 0 4 0 8 4 -8 0 0 4 0 -8 4 4 0 -8 0 0 4 0 -4 0 0 0 0 0 8 2 0 0 0 0 -4 0 -4 0 4 0 0 0 0 0 0 0 -4 0 0 0 4 4 0 4 4 0 4 0 2 8 0 0 0 0 8 -4 0 0 0 0 0 0 0 -8 0 -8 0 0 -4 0 0 0 0 0 0 0 0 0 0 0 -8 0 0 0 0 4 4 -4 -4 0 0 -4 0 0 -4 0 0 4 0 4 0 4 0 -2 0 -4 0 0 0 -4 0 -2 0 0 0 0 8 -8 -8 -4 0 0 0 0 0 0 -8 4 2 -4 -4 -4 -4 -4 -4 -4 4 4 0 4 8 -2 8 0 2 -4 0 0 0 -1 8 -4 8 0 -2 0 0 0 2 0 -1 -4 8 8 0 0 8 0 0 0 0 16 2 -4 -4 -4 -4 -4 -8 0 4 -4 8 8 2 0 16 0 -8 -4 -4 0 2 -4 -4 -4 0 0 -4 -4 -4 6 0 -1 6 -1 1 -5 4 4 2 -4 0 4 0 8 -2 8 -4 0 0 -4 0 -8 0 4 -1 0 0 0 -8 0 -4 8 0 0 -2 0 0 -4 0 0 2 0 0 -4 -4 -8 0 0 0 -8 0 0 0 -8 0 8 2 0 -2 -8 0 1 4 0 0 0 4 8 0 0 -8 0 0 0 -4 0 0 0 0 0 0 0 8 4 8 0 0 0 0 0 -8 -4 4 0 0 8 8 0 0 0 8 0 0 0 8 0 8 8 0 0 8 0 -4 0 4 0 -4 0 -4 0 0 -4 -4 -8 0 0 0 0 0 0 8 8 -4 0 -8 0 0 0 0 0 8 0 0 -8 0 0 0 0 0 0 -4 -8 -8 -8 0 0 -8 0 -8 0 0 -8 0 -8 4 8 4 0 4 4 8 4 8 0 0 -8 0 4 0 0 0 0 0 0 -8 -4 4 0 0 0 0 0 0 0 0 0 0 0 0 8 0 4 8 8 0 0 -8 -2 -8 0 -4 -4 0 0 0 0 0 0 0 -8 0 0 0 2 8 0 -4 0 -1 -8 0 0 0 0 0 0 0 -4 0 1 0 8 0 0 4 0 8 4 -8 0 0 2 4 4 0 0 0 0 0 0 0 8 0 -2 0 0 4 0 0 -4 -4 4 2 0 0 -8 -4 4 -2 0 -4 -4 1 4 -1 1 -5 4 -6 0 8 -8 -4 4 -4 0 12 -2 -4 8 8 4 -4 -8 -2 1 0 8 -4 0 -4 -4 0 -24 -8 -2 0 4 4 4 -8 -2 0 0 0 0 16 12 4 8 4 -4 0 8 8 -8 -4 -2 0 -2 0 -8 1 0 -6 8 4 -4 0 -8 0 4 6 4 -4 -4 -8 4 0 -8 8 -8 -8 16 0 4 8 -16 0 0 0 0 -8 0 0 0 0 0 -8 -6 0 0 0 0 4 0 4 -16 4 0 8 0 8 -4 -8 -4 0 0 8 -4 12 4 0 8 4 0 -4 8 2 8 4 8 4 4 -8 -4 -8 -16 0 16 0 16 0 8 0 -8 0 0 -12 16 8 4 -8 16 -4 -8 0 0 0 0 8 -16 -16 0 0 8 4 -8 0 0 -4 -4 0 0 -4 0 0 0 4 -4 0 -4 0 6 8 -4 0 4 -4 4 -8 -2 -8 0 -8 0 0 8 -8 -12 0 8 4 -8 -4 -8 8 4 2 -4 -4 0 0 8 8 4 -4 -4 0 -4 -16 6 0 8 2 -4 0 4 -4 -1 0 4 16 -8 -2 8 -8 -8 2 0 -1 -4 0 16 8 4 0 4 -4 0 -4 -8 2 0 0 8 8 4 8 0 -4 4 -16 0 2 -4 -8 -4 8 4 -8 4 2 0 0 -4 4 -4 -8 0 0 6 -4 -1 6 -1 1 -5 4 0 2 0 0 0 8 4 -2 8 -4 0 0 -4 -4 -4 -4 4 -1 8 0 0 0 0 0 0 -8 -4 2 0 0 -8 0 0 -2 -8 0 0 0 0 0 0 0 8 0 -8 0 0 4 8 -2 0 2 0 0 1 0 0 0 0 -8 0 0 0 4 0 -4 0 0 0 0 8 0 0 4 -8 0 0 -8 0 8 0 0 -4 8 0 -4 0 0 -8 0 0 0 8 0 8 0 0 0 0 0 -8 8 0 0 0 8 8 0 -4 -4 0 -4 0 0 4 0 8 8 0 0 0 0 4 0 -4 -4 0 -8 0 8 0 8 0 0 0 0 8 0 0 0 0 -8 -8 0 0 0 4 0 -8 0 -8 0 0 -8 0 -8 0 0 8 0 4 4 4 -8 -4 -8 0 -8 0 4 4 0 0 0 0 0 0 8 4 -8 -4 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 -4 0 0 -8 2 8 0 0 0 -4 -4 0 0 0 0 0 0 0 -8 0 -2 -8 8 8 4 -1 0 0 -8 0 0 0 0 0 -4 -8 1 0 0 8 0 0 0 4 8 0 4 0 -2 0 0 4 4 0 0 0 0 0 0 8 2 -4 0 4 0 0 0 0 4 2 -4 0 -4 -8 0 -2 4 -4 -4 1 4 -1 1 -5 4 4 -2 0 0 0 0 0 2 0 -4 0 16 -4 0 0 0 4 3 0 -16 0 0 -4 0 0 0 0 -2 8 -4 0 0 -8 -2 0 -8 0 0 0 0 -8 0 8 4 0 0 0 0 -8 2 -8 2 0 0 -3 0 4 -16 -8 0 0 -16 8 0 8 0 8 0 0 0 0 8 16 0 0 0 0 8 0 0 -4 4 0 -8 0 -4 16 -4 -8 0 16 -4 0 0 0 4 8 0 8 0 -8 0 0 0 0 0 0 0 0 -4 -16 4 0 0 -4 0 -8 0 -8 0 -4 16 0 0 0 4 0 8 0 0 16 0 16 0 4 -16 8 -16 -16 -16 0 0 0 0 0 0 0 16 0 0 0 0 0 0 0 0 0 0 -8 0 0 4 -4 8 4 8 0 0 0 0 -4 -8 -4 -8 -4 4 0 8 4 0 0 8 0 4 0 4 0 -16 8 16 16 0 0 0 0 0 0 -16 0 8 -2 -8 0 0 0 0 0 -4 8 8 -8 -4 0 -4 0 0 -2 -8 0 0 0 3 0 -8 0 0 -4 -8 0 0 -4 0 -3 0 0 0 8 0 -8 0 0 0 0 16 2 0 0 0 0 4 0 8 4 0 0 0 2 0 -16 4 0 0 0 0 4 -2 0 0 0 0 0 2 0 -4 -4 1 4 -1 1 -5 4 4 -2 0 16 0 0 0 2 0 -4 -8 16 -12 0 0 0 4 3 0 -16 8 0 -4 0 0 -16 0 6 -8 -4 0 8 8 6 0 -24 0 0 0 -8 -8 -16 -8 4 0 16 0 0 -8 -6 8 -6 0 16 -3 0 -4 16 -8 0 0 16 24 0 0 0 -8 0 16 -8 0 -8 16 0 0 0 0 -8 -16 0 12 4 0 8 0 -4 16 12 8 0 -16 4 0 0 0 4 8 0 8 0 8 0 16 0 16 0 0 0 0 -4 -16 4 8 8 -4 0 8 0 8 -16 4 -16 0 0 0 4 -16 8 -16 0 -16 0 -16 0 -12 16 -8 16 16 16 -8 0 0 0 0 0 0 16 0 0 0 0 16 0 0 0 0 0 -8 0 0 4 -4 -8 4 -8 -8 0 0 0 -4 -8 -4 -8 -4 -4 16 -8 4 0 0 -8 16 -4 -16 -12 -16 -16 -8 -16 -16 8 0 0 0 0 0 -16 -16 8 6 8 8 0 0 0 0 -4 8 8 -24 -4 0 4 0 -16 6 8 0 0 0 3 0 8 0 -16 4 8 16 16 -4 0 -3 -8 0 0 -8 0 8 0 0 0 0 16 -6 0 0 0 0 4 16 24 4 -8 0 0 -6 0 -16 4 -16 8 0 0 4 -2 0 8 0 0 0 2 0 -4 -4 1 4 -1 1 -5 0 4 2 0 16 0 0 0 -2 0 -4 0 0 0 0 0 0 4 3 0 0 0 0 -4 0 0 -16 0 2 -8 -12 0 0 0 2 0 0 0 0 0 0 8 0 -8 4 0 -16 0 0 -8 -2 8 -2 0 -16 -3 0 4 0 8 0 0 0 0 0 16 0 8 0 16 0 0 0 0 0 0 0 0 -8 0 0 -4 -4 0 0 0 12 0 -4 0 0 0 -4 0 0 0 -4 -8 0 -8 0 8 0 0 0 0 0 0 0 0 4 0 0 0 0 12 0 8 0 -8 16 -4 0 0 0 0 0 -16 8 16 0 0 0 16 0 4 0 0 0 -16 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 0 0 0 0 -8 0 0 -4 0 -8 -12 0 0 0 0 0 0 8 4 8 4 4 -16 -8 -12 0 0 8 -16 4 0 4 0 0 -8 0 0 0 0 0 0 0 0 0 -16 8 2 8 0 0 0 0 0 -4 -8 -8 0 -12 0 -4 0 16 2 8 0 0 0 3 0 -8 0 16 -4 0 0 0 -4 0 -3 0 0 0 0 0 8 0 0 0 0 0 -2 0 0 0 0 4 16 0 12 0 0 0 -2 0 0 0 -16 0 0 0 4 2 0 0 0 0 0 -2 0 -4 0 1 4 -1 1 -5 0 6 0 0 0 4 12 0 0 -12 6 12 0 -12 0 0 12 6 -3 -24 0 12 24 0 4 0 0 -12 6 0 0 -12 -12 0 -6 0 0 0 0 -24 12 12 -24 12 0 -24 0 24 12 12 6 0 -6 0 0 -3 0 6 0 -12 12 24 0 0 0 6 0 -12 -12 0 -12 0 0 0 -12 0 -24 0 -12 24 0 -12 4 -12 0 0 0 0 12 0 -24 0 6 -24 0 24 -4 -12 0 12 -24 12 0 24 24 -24 12 0 -12 12 0 0 0 12 -12 0 0 -12 0 -12 0 6 0 0 24 0 0 0 12 0 0 0 0 0 24 12 0 0 0 0 0 -12 0 0 12 -24 24 0 0 -24 0 24 0 0 0 -24 0 24 0 -12 0 12 0 0 12 0 0 12 0 -24 -12 0 12 -4 -12 4 -6 0 -12 0 -12 0 12 0 -6 24 -12 -24 0 0 0 0 -12 0 0 12 -24 0 0 0 -12 -6 12 12 0 0 -12 12 0 12 -12 0 0 24 -6 0 0 6 -12 24 -12 0 3 -24 12 0 0 -6 0 24 -24 -6 24 3 12 -24 0 0 -4 0 0 12 0 0 0 -6 0 0 -12 12 0 0 0 0 -12 24 0 6 0 0 0 0 -12 0 -4 -6 0 -12 12 0 12 0 0 -12 6 0 -1 6 -1 1 -5 0 2 0 4 0 0 4 -4 0 4 6 4 0 -4 -4 -4 -8 6 -3 -16 0 4 0 0 0 -8 8 8 2 0 0 0 -4 0 -2 -8 0 4 -4 0 4 -12 8 4 0 -16 0 0 -8 12 2 0 -2 -8 0 -3 4 -2 0 12 0 0 0 0 4 -2 12 4 0 0 -4 -8 0 0 8 8 0 -4 -4 -8 8 4 -4 -8 0 4 0 0 -4 0 0 0 -2 16 -8 -16 4 12 8 -12 0 4 8 -8 0 8 0 8 0 8 0 0 0 4 -4 0 -4 -4 -8 4 0 -2 0 12 0 4 0 0 12 0 -8 0 8 0 0 -4 0 0 0 0 0 -4 8 -8 0 0 0 -4 0 16 -8 -16 8 0 -8 0 8 0 -4 -12 4 8 0 0 4 0 0 4 -8 0 -8 0 -12 4 12 -4 2 0 -4 0 0 -12 -4 0 2 -8 4 8 0 0 0 0 -4 8 -8 0 0 -4 0 0 -12 -2 4 4 -4 4 8 -8 0 -12 12 0 0 0 2 8 0 2 -4 16 0 -12 3 0 -4 -8 0 2 0 -8 8 -6 16 3 4 0 -8 0 0 0 4 0 8 4 0 -2 -4 4 8 -8 0 0 0 0 -4 0 8 2 4 0 0 0 -4 -4 0 -6 0 -8 4 4 0 -4 0 -8 6 0 -1 6 -1 1 -5 -4 8 2 0 8 0 -8 -4 -2 8 4 8 -8 4 4 4 -4 -4 -1 -8 8 -8 -8 0 0 0 -8 12 2 0 0 -8 0 0 -2 -16 0 8 -8 8 0 -8 0 0 0 8 -8 0 4 0 -2 0 2 0 8 1 -8 -8 8 8 -8 8 -8 0 -4 0 4 8 0 -8 -8 16 0 8 -12 8 -8 8 0 0 0 0 0 4 -8 0 -4 0 0 8 8 8 8 -8 0 -8 0 -8 0 8 -8 0 0 0 8 0 8 -8 0 4 -4 -8 4 0 8 4 0 0 0 -8 8 0 -8 -4 0 4 4 8 0 -8 16 0 16 0 -8 0 -8 -8 8 0 0 0 -16 8 0 0 8 -4 8 8 0 8 0 -8 -16 8 0 -8 0 0 0 -4 4 -4 0 -4 8 -8 0 -8 -4 -4 8 0 -8 0 -8 8 0 4 -8 4 8 -8 0 0 0 0 0 0 8 -8 0 0 -8 0 0 4 -8 8 0 2 0 8 8 -8 -4 12 0 -8 8 0 0 8 8 -16 -8 -2 0 -8 8 -4 -1 -8 -8 0 8 0 0 0 0 4 8 1 0 8 0 0 0 0 -4 8 0 -4 -8 -2 -8 8 4 -12 0 8 0 0 8 -8 16 2 4 8 -4 -8 -8 0 0 -4 2 4 0 4 -8 0 -2 -4 -4 4 1 4 -1 1 -5 0 -2 0 8 0 -4 4 0 0 4 6 -4 0 4 0 0 4 6 -3 -8 0 -4 -8 0 -4 -16 0 -4 -2 0 0 -4 4 0 2 0 0 -8 8 8 -4 12 8 -4 0 -8 0 8 4 12 -2 0 2 -16 0 -3 -8 -2 0 -12 4 -8 0 0 0 -2 0 4 12 0 4 0 0 0 -4 0 8 8 4 -8 0 4 4 -4 0 8 0 0 -4 0 8 0 -2 -8 16 8 -4 -12 -16 12 8 -4 0 -8 -8 8 4 0 12 4 0 0 0 -4 4 0 -8 4 0 4 0 -2 0 0 8 0 0 0 12 0 0 0 0 0 -8 -4 0 0 0 0 0 4 0 0 -12 -8 -8 0 0 -8 16 8 -16 0 0 8 0 -8 -8 -12 8 4 0 0 -4 0 0 -4 0 8 -4 0 12 -4 -12 4 2 0 4 0 -4 0 -4 0 2 -8 4 8 0 0 0 0 4 16 0 -12 -8 0 0 0 -12 2 -4 -4 8 -8 -4 4 0 12 -12 0 0 -8 2 0 0 -2 4 8 -4 0 3 8 -4 0 0 2 0 -8 8 -6 8 3 -4 8 0 0 4 0 0 4 16 0 0 2 8 -8 -4 4 0 0 0 0 4 -8 0 -2 0 0 0 0 4 -8 4 -6 0 -4 -4 0 4 -8 0 -4 6 0 -1 6 -1 1 -5 -4 8 2 0 8 0 0 4 -2 -8 4 8 -8 4 -4 -4 12 -4 -1 -8 8 -8 8 0 0 0 -24 -4 2 0 0 8 0 0 -2 0 0 -8 8 -8 0 8 0 0 0 8 -8 0 -12 0 -2 0 2 0 8 1 8 0 8 -8 8 -8 -8 0 4 8 -4 -8 0 -8 -8 0 0 8 4 -8 8 -8 0 0 16 0 0 4 -8 0 -4 0 0 8 -8 8 0 -8 0 -8 0 8 0 -8 8 0 16 0 -8 0 -8 8 0 4 -4 -8 4 0 8 4 0 0 16 8 8 -8 -8 4 0 -4 4 8 0 -8 0 0 0 0 8 0 -8 -8 8 0 0 0 0 -8 0 0 -8 4 8 8 0 8 0 -8 0 -8 -16 8 0 0 0 -4 4 -4 0 -4 8 -8 -16 8 -4 -4 -8 0 8 0 0 8 0 4 8 -4 -8 -8 8 0 0 0 0 0 8 -8 0 0 8 0 0 -4 -8 8 0 2 0 8 -8 8 12 -4 0 8 -8 0 0 -8 0 0 -8 -2 0 -8 -8 4 -1 8 8 -16 8 -8 0 0 0 4 8 1 0 -8 16 0 0 0 4 -8 0 4 -8 -2 8 -8 -12 4 0 8 0 0 8 8 0 2 -4 8 -4 -8 -8 0 0 -4 2 4 0 -4 8 0 -2 -4 -4 4 1 4 -1 1 -5 0 4 -2 4 0 -4 0 0 2 0 4 0 8 0 0 0 -8 -4 -1 -8 -8 0 -8 0 4 0 0 0 2 0 0 -4 0 0 -2 0 0 -4 4 8 8 0 8 0 0 8 8 -8 8 0 -2 0 2 0 -8 1 4 0 0 0 4 8 0 0 0 0 0 0 4 0 -8 0 0 -8 0 0 -8 -4 0 -8 0 0 0 8 0 -4 4 0 0 0 0 0 0 8 0 8 0 0 0 0 0 0 8 8 0 -8 -4 0 -4 8 4 8 0 -8 8 -4 -4 0 8 0 -8 0 0 0 8 0 0 0 0 8 -8 0 -8 0 0 0 0 0 0 0 0 8 8 0 4 -8 0 0 -8 -8 0 -8 0 0 8 0 -8 0 4 0 4 -8 -4 0 0 4 0 -8 -8 0 -8 0 0 0 0 0 0 -8 0 -4 4 0 0 8 0 8 0 -8 0 0 0 0 -8 0 0 -4 8 0 8 0 0 2 0 8 -4 4 -8 0 0 0 0 0 0 8 0 0 8 -2 0 -8 -4 0 -1 -8 0 0 -8 0 0 -8 8 4 8 1 0 8 0 0 -4 0 0 4 0 0 8 -2 4 -4 8 0 0 0 0 0 0 -8 0 2 0 -8 0 0 0 4 4 -4 -2 0 0 0 -4 -4 2 0 -4 0 1 4 -1 1 -5 0 8 -2 0 0 0 -8 4 2 0 4 0 8 0 4 -4 -4 -4 -1 0 -8 0 0 0 0 -8 8 4 -2 0 0 0 0 0 2 -8 0 -8 0 0 -8 0 8 0 0 0 -8 0 4 0 2 0 -2 8 8 1 8 0 0 0 0 0 0 0 4 0 4 0 0 0 8 8 0 -8 -4 -8 0 0 0 -8 -8 0 0 -4 0 8 -4 0 0 0 -8 0 0 0 8 0 0 0 8 0 8 0 0 8 -8 -8 0 8 0 -4 4 8 0 8 -8 4 8 0 0 0 8 0 0 -4 0 -4 0 0 0 -8 0 0 0 0 8 0 0 0 0 0 0 -8 0 -8 0 0 -8 4 -8 0 -8 0 -8 0 0 -8 0 8 -8 0 -8 4 -4 0 0 -4 0 8 0 8 4 0 0 0 0 0 0 8 0 4 0 4 0 -8 0 8 0 -8 0 0 0 0 8 -8 8 0 0 -4 8 0 0 -2 0 -8 -8 0 -4 4 0 0 0 0 0 0 0 -8 -8 2 0 0 0 -4 -1 0 0 8 8 0 0 -8 8 4 0 1 0 0 -8 0 0 0 4 0 8 -4 8 2 8 0 4 -4 0 0 0 0 0 0 8 -2 4 -8 0 0 0 0 0 -4 -2 4 0 -4 0 0 2 -4 -4 0 1 4 -1 1 -5 4 12 -2 -8 -16 8 -16 8 2 0 -4 8 16 4 8 -8 8 4 3 16 -16 -8 -16 -4 -8 -16 32 8 -2 -8 12 8 -8 -24 -2 16 8 -8 -8 -16 8 -8 16 -8 4 -16 -16 -16 -8 -8 2 8 2 16 -16 -3 8 -4 16 -8 -8 16 16 -8 8 -16 -24 -8 24 -16 8 -16 24 16 -8 16 16 8 -8 16 -16 -4 4 8 8 -8 12 16 -4 8 -16 -16 4 16 -16 16 4 8 -16 8 -16 8 16 -16 -16 -16 8 -16 -24 8 -4 -16 4 -8 -8 12 -8 8 16 8 16 4 -16 24 16 -8 4 16 8 16 16 -16 16 -16 -16 4 16 -8 16 16 16 8 -16 16 24 -16 16 8 16 -16 16 -16 16 -16 -16 16 -16 16 8 -8 8 -8 4 -4 -8 -12 -8 8 -16 16 -8 -4 -8 -4 -8 -4 -4 -16 -8 -12 -8 -24 -8 -16 -4 16 4 16 -16 -8 -16 -16 -8 -16 -16 -24 16 -8 -16 16 8 -2 8 -8 -8 -8 8 8 -4 8 8 8 12 -16 4 16 16 -2 8 16 8 24 3 -16 8 16 16 4 -24 -16 -16 -4 -16 -3 8 16 -16 24 8 8 8 -8 16 -8 16 2 8 8 -8 -8 4 -16 -8 -12 8 16 -16 2 8 -16 4 16 -8 -8 -8 4 -2 8 -8 -8 8 8 2 -8 -4 -4 1 4 -1 1 -5 0 4 2 0 0 0 0 0 -2 0 -4 8 0 8 0 0 0 4 3 0 0 -8 0 -4 0 0 0 0 -6 -8 4 0 -8 0 -6 0 0 0 0 0 8 8 -16 8 4 0 0 0 0 -8 6 8 6 0 0 -3 0 -4 0 8 0 0 0 0 0 -8 0 -8 0 0 8 0 0 0 0 0 0 0 8 -16 0 12 -4 0 0 0 -4 0 12 0 0 0 4 0 0 0 -4 -8 0 -8 0 -8 0 16 0 16 0 0 0 0 4 0 0 -8 -8 -4 0 -8 0 8 0 4 0 0 0 0 0 0 8 0 0 0 0 16 0 -12 0 0 0 -16 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -8 0 0 -4 0 8 4 0 8 0 0 0 0 8 4 8 4 -4 0 8 4 0 0 -8 0 -4 -16 -12 -16 0 -8 0 0 -8 0 0 0 0 0 0 0 8 -6 -8 -8 0 0 0 0 -4 -8 -8 0 4 0 4 0 0 -6 -8 0 0 0 3 0 8 0 0 4 0 16 16 -4 0 -3 8 0 0 0 0 8 0 0 0 0 0 6 0 0 0 0 4 0 0 -4 8 0 0 6 0 0 0 0 -8 0 0 4 2 0 -8 0 0 0 -2 0 -4 0 1 4 -1 1 -5 4 -4 -2 8 -16 -8 16 -8 2 0 -4 8 16 4 -8 8 -8 4 3 -16 -16 -8 16 -4 8 16 0 -8 -2 -8 12 -8 -8 -24 -2 -16 8 8 8 16 8 -8 16 -8 4 16 -16 16 8 -8 2 8 2 -16 -16 -3 -8 -4 16 -8 8 -16 16 -8 -8 -16 24 -8 -24 -16 8 16 24 16 8 -16 -16 -8 -8 16 16 -4 4 -8 8 8 12 16 -4 8 16 -16 4 -16 16 -16 4 8 16 8 16 8 -16 -16 16 -16 -8 16 24 -8 -4 -16 4 -8 -8 12 8 8 -16 8 16 4 -16 -24 -16 8 4 16 8 16 -16 -16 -16 -16 16 4 16 -8 16 16 16 8 16 -16 -24 16 -16 -8 16 16 -16 16 -16 -16 16 -16 16 -16 -8 -8 -8 8 4 -4 -8 -12 -8 8 16 -16 8 -4 -8 -4 -8 -4 -4 -16 -8 -12 8 24 -8 -16 -4 16 4 16 -16 -8 -16 -16 -8 16 16 24 -16 8 -16 16 8 -2 8 -8 8 8 -8 -8 -4 8 8 8 12 16 4 -16 16 -2 8 -16 -8 -24 3 16 8 -16 16 4 -24 -16 -16 -4 16 -3 8 -16 16 24 -8 8 -8 8 -16 8 16 2 -8 -8 8 8 4 -16 -8 -12 8 -16 16 2 -8 -16 4 16 -8 8 8 4 -2 -8 -8 8 -8 -8 2 8 -4 -4 1 4 -1 1 -5 -4 4 6 0 16 0 0 0 -6 0 -4 8 -16 12 0 0 0 4 3 0 16 -8 0 12 0 0 -16 0 -2 -8 -4 0 -8 -8 -2 0 -8 0 0 0 8 -8 16 -8 -12 0 16 0 0 -8 2 8 2 0 16 -3 0 -4 -16 -8 0 0 -16 8 0 0 0 -8 0 16 8 0 8 -16 0 0 0 0 -8 16 0 -4 4 0 24 0 -4 -16 -4 24 0 16 4 0 0 0 4 8 0 8 0 8 0 -16 0 -16 0 0 0 0 12 16 -4 -8 -8 -4 0 8 0 8 -16 4 16 0 0 0 -4 -16 8 -16 0 16 0 -16 0 4 -16 -24 -16 16 -16 8 0 0 0 0 0 0 -16 0 0 0 0 16 0 0 0 0 0 -8 0 0 -12 4 -8 4 -24 8 0 0 0 4 -8 -4 -8 -4 -4 16 -8 4 0 0 -8 16 -4 16 4 16 16 -8 16 16 -8 0 0 0 0 0 16 -16 8 -2 8 -8 0 0 0 0 12 8 8 -8 -4 0 4 0 -16 -2 8 0 0 0 3 0 8 0 -16 4 -8 -16 -16 -4 0 -3 8 0 0 8 0 8 0 0 0 0 -16 2 0 0 0 0 -12 16 8 4 8 0 0 2 0 16 -4 -16 -8 0 0 4 6 0 -8 0 0 0 -6 0 -4 4 1 4 -1 1 -5 -4 4 2 4 8 -4 0 8 -2 -8 4 0 -8 12 0 -8 8 -4 -1 0 8 0 -16 0 4 -8 0 -8 -2 0 0 4 -8 0 2 -8 0 -4 12 0 -8 8 0 0 0 0 8 8 -8 0 2 0 -2 8 -8 1 4 0 -8 -8 -4 16 8 0 -8 -8 0 8 4 -8 0 8 0 8 8 0 0 -12 0 0 -8 0 0 0 8 4 4 0 0 -8 16 -8 0 0 -8 0 0 8 -8 -8 0 0 -8 0 16 0 4 0 -4 0 -4 -8 4 8 0 -4 4 0 -8 -8 -8 8 8 0 -8 8 4 8 0 8 8 0 8 0 0 0 8 8 -8 0 0 -8 -8 0 4 8 0 -8 8 0 8 0 8 -8 -8 0 8 -16 -4 0 -4 0 4 -4 0 4 -8 0 8 -16 0 -4 -8 0 8 0 0 -8 0 -4 -4 0 8 8 -8 0 0 0 0 0 -8 8 8 -8 0 -4 -8 8 -8 8 0 -2 0 0 -4 12 8 -8 0 8 -8 0 0 0 0 -8 8 2 0 0 4 0 -1 -16 -8 8 -8 8 0 0 0 4 0 1 8 16 -8 0 -4 0 8 -4 8 0 -8 2 4 -12 -8 8 0 8 0 0 0 0 8 -2 0 8 -4 -8 0 4 4 -4 2 0 -8 -8 4 -4 -2 0 -4 4 1 4 -1 1 -5 0 -6 0 12 0 0 4 -12 0 12 6 -12 0 12 4 -12 0 6 -3 0 0 -12 0 0 0 -24 -24 0 -6 0 0 0 12 0 6 24 0 12 -12 0 -12 -12 -24 -12 0 0 0 0 0 12 -6 0 6 -24 0 -3 12 6 0 12 0 0 0 0 12 6 -12 -12 0 0 12 24 0 0 0 24 0 -12 12 24 -24 -12 -4 0 0 12 0 0 12 0 0 0 6 0 -24 0 4 12 24 -12 0 -12 -24 24 0 -24 0 24 0 0 0 0 0 -12 12 0 -12 12 24 -12 0 6 0 -12 0 12 0 0 12 0 24 0 -24 0 0 12 0 0 0 0 0 12 -24 -24 0 0 0 -12 0 0 -24 0 24 0 24 0 -24 0 -12 -12 12 0 0 0 -12 0 0 -12 24 0 0 0 -12 4 12 -4 -6 0 12 0 0 12 12 0 -6 24 -12 -24 0 0 0 0 12 24 -24 0 0 -12 0 0 -12 6 -12 -12 -12 12 0 0 0 -12 12 0 0 0 -6 -24 0 -6 12 0 0 12 3 0 12 24 0 -6 0 24 -24 -6 0 3 -12 0 24 0 0 0 12 0 24 -4 0 6 -12 12 0 0 0 0 0 0 12 0 -24 -6 -4 0 0 0 12 -12 0 -6 0 0 -12 12 0 -12 0 0 6 0 -1 6 -1 1 -5 -4 4 2 4 8 4 0 -8 -2 0 4 0 -8 12 0 8 -8 -4 -1 0 8 0 0 0 -4 -8 -16 8 -2 0 0 -4 -8 0 2 8 0 12 -4 -16 -8 -8 0 0 0 0 8 -8 8 0 2 0 -2 8 -8 1 -12 8 -8 8 4 0 8 0 8 0 0 -8 -4 -8 0 -8 0 8 -8 0 16 4 0 0 8 0 0 0 8 4 4 0 0 -8 0 -8 -8 0 -8 0 0 -8 -8 8 16 0 8 0 0 0 -4 0 4 0 -4 -8 4 8 0 -4 4 0 8 8 -8 0 8 0 8 -8 4 8 0 8 -8 0 -8 0 16 0 8 8 -8 0 0 -8 8 0 -4 -8 -16 8 8 0 8 0 8 -8 8 -16 -8 0 -4 0 -4 0 4 -4 0 4 -8 0 -8 0 0 -4 8 0 -8 0 8 -8 0 -4 4 0 -8 8 0 0 0 0 0 0 -8 8 8 -8 0 4 8 -8 -8 8 0 -2 0 0 12 -4 -8 8 0 -8 8 0 0 -16 -8 8 8 2 0 0 -4 0 -1 0 8 -8 -8 0 0 0 0 4 0 1 8 0 8 0 4 0 -8 4 8 0 -8 2 -12 4 8 -8 0 8 0 0 0 16 -8 -2 0 8 -4 -8 0 4 -4 -4 2 0 -8 8 -4 -4 -2 0 -4 4 1 4 -1 1 -5 0 0 -2 8 0 0 8 -4 2 -8 4 -8 8 8 -4 4 4 -4 -1 0 -8 8 0 0 0 -8 -8 -4 -2 0 0 0 -8 0 2 8 0 0 -8 0 0 0 -8 0 0 0 -8 0 -4 0 2 0 -2 8 8 1 0 0 0 0 0 0 0 0 -4 0 -4 0 0 0 0 -8 0 -8 4 8 0 8 0 8 8 0 0 4 0 0 -4 0 0 0 8 0 0 0 8 0 0 0 8 0 -8 0 0 -8 8 8 0 -8 0 4 4 8 0 0 0 4 0 0 0 0 8 0 0 4 0 4 0 0 0 -8 0 0 0 0 -8 0 0 0 0 0 0 0 0 8 0 0 8 -4 -8 0 -8 0 -8 0 0 8 0 -8 0 0 0 -4 -4 0 0 -4 0 0 0 -8 -4 0 0 0 0 0 0 8 0 4 0 -4 0 -8 0 -8 0 8 0 0 0 0 0 -8 -8 0 0 4 8 0 0 -2 0 0 0 -8 4 -4 0 0 0 0 0 0 0 8 -8 2 0 0 0 4 -1 0 0 -8 8 0 0 8 -8 4 0 1 8 0 8 0 0 0 -4 0 8 4 8 2 0 8 -4 4 0 0 0 0 -8 0 -8 -2 -4 -8 0 0 8 8 0 -4 -2 -4 -8 4 0 -8 2 4 -4 0 1 4 -1 1 -7 8 0 2 8 -16 0 8 0 2 8 -8 -8 0 0 0 0 -8 -8 3 16 0 -8 0 -4 0 16 -16 -8 2 8 4 0 -8 0 2 0 0 -8 -8 0 -8 16 16 0 -4 16 16 0 -8 -16 2 8 2 16 16 3 -8 0 0 16 0 0 0 0 0 4 0 0 0 -16 -8 0 0 0 -8 0 0 -8 0 16 0 -4 -4 8 0 8 -4 -32 -4 0 0 0 0 -16 -16 -16 -4 16 -16 16 0 0 0 16 0 16 0 0 0 8 4 0 8 -8 -8 -4 8 0 0 0 16 0 0 0 0 0 8 -16 -16 16 0 0 0 -16 0 -4 0 0 0 -16 0 -8 0 0 0 0 0 0 0 -16 -16 -16 -16 -16 0 0 0 0 8 -16 8 8 4 8 0 -4 0 -8 0 0 8 8 16 -4 16 -4 0 16 0 -4 0 0 0 16 0 16 -4 16 -32 8 0 0 -8 16 0 0 0 0 0 -16 -16 2 0 -8 -8 -8 -8 -8 -4 16 16 0 4 0 0 0 16 2 0 16 0 0 3 0 0 0 16 0 0 16 16 -8 16 3 -8 0 0 0 0 8 0 0 16 0 0 2 -8 -8 -8 -8 -4 -16 0 4 -8 0 0 2 0 0 8 -16 -8 8 0 -8 2 8 -8 0 0 8 2 8 -8 8 1 -8 1 1 -7 4 0 6 8 0 0 8 0 6 8 -8 0 -32 4 0 0 8 -8 3 16 -32 0 -16 12 0 16 -16 8 -2 -8 -4 0 0 8 -2 -16 8 8 8 -16 0 -16 0 16 12 16 0 0 8 -16 -2 -8 -2 16 0 3 8 8 32 -16 0 -16 32 8 0 4 0 16 0 0 0 -16 8 -32 8 0 -16 8 16 0 -16 -4 4 8 -24 8 -4 16 -4 -24 -16 32 8 16 16 16 4 -16 16 -16 -16 16 -16 0 -16 0 0 0 0 8 12 -32 4 0 0 -4 8 16 -16 16 0 8 32 0 0 0 4 0 -16 0 -16 -16 -16 -16 -16 -4 32 -24 32 -16 -16 0 -16 0 0 0 -16 0 -32 16 16 16 16 0 -16 -16 -16 -16 8 -16 8 8 12 4 16 -4 -24 0 -16 -16 8 4 -16 4 -16 4 8 0 16 -4 0 0 16 0 8 0 -4 0 16 -8 32 32 0 16 0 0 0 0 -32 0 -16 -2 16 0 8 8 8 8 12 -16 -16 8 -4 -16 8 -16 0 -2 16 16 0 0 3 -16 16 -16 0 8 8 0 0 -8 16 3 0 -16 -16 8 0 -8 0 0 16 0 -32 -2 8 8 8 8 12 0 8 -4 0 -16 -16 -2 0 -32 4 0 0 8 0 -8 6 8 0 0 0 8 6 8 -8 4 1 -8 1 1 -7 8 6 4 0 -8 4 4 12 -4 12 -10 -4 -8 -12 -4 -12 -8 10 1 16 8 4 -16 4 -4 16 -8 -8 2 8 4 -12 4 8 2 -16 8 -8 -8 -16 -12 4 8 4 -4 -16 8 8 8 4 -2 -8 -2 -16 8 -1 8 2 8 4 4 16 8 -8 4 -2 4 4 4 -24 -12 16 -8 -24 8 8 16 8 4 8 16 0 0 -16 0 16 0 0 0 0 0 -8 -2 0 0 0 0 -4 0 -4 0 -4 0 -8 0 -8 -4 -8 -4 16 0 24 0 12 12 0 -16 -4 0 -4 -8 -2 -8 -4 -8 -4 0 24 -4 -8 0 0 0 0 0 0 -8 0 -8 0 0 12 0 -8 -4 -8 0 -4 24 0 0 0 0 24 0 0 0 0 16 -4 -16 -16 0 0 -4 0 0 12 0 0 16 0 -4 0 -4 0 -2 -8 -4 0 -4 -4 -4 -8 -2 -8 0 -8 0 -8 8 8 -12 -16 8 4 8 4 -24 -24 4 -2 4 -12 8 8 8 8 -4 4 4 -8 -4 16 2 16 8 -2 4 -16 4 4 -1 16 4 16 8 2 -8 8 8 10 16 1 4 -16 -16 8 -4 8 -12 -12 16 -4 8 2 -8 -8 -8 -8 4 8 8 4 4 -16 -16 2 4 -8 -8 -8 -4 0 4 -10 -4 0 -4 12 12 0 4 0 6 8 -1 -6 1 1 -7 4 4 2 8 -8 0 8 -4 2 0 0 0 -8 -4 -4 -4 4 0 -1 -8 -8 0 8 0 0 0 8 4 2 0 0 -8 -8 0 -2 0 0 0 0 -8 8 0 0 8 0 -8 -8 0 4 8 2 0 -2 0 8 -1 0 4 -8 0 8 8 8 0 -4 -4 4 0 0 8 0 0 0 8 4 8 -8 0 -8 0 16 0 0 -4 8 -8 -4 0 0 -8 8 8 4 -8 0 -8 0 0 0 0 -8 8 0 0 8 0 8 8 0 -4 -4 8 -4 8 0 4 -8 -8 0 0 -8 -4 -8 4 0 -4 -4 8 8 8 -16 0 -16 0 -8 0 8 -8 -8 0 0 8 -16 8 0 0 -8 -4 8 -8 0 -8 0 8 -16 -8 0 8 -8 8 -8 -4 -4 -4 -8 4 8 0 0 8 -4 -4 0 0 0 0 4 8 8 -4 8 4 0 -8 -4 0 0 0 0 0 8 -8 8 0 8 0 0 -4 8 8 8 2 -8 0 0 0 4 4 0 0 0 0 0 -8 4 0 8 -2 8 -8 8 4 -1 8 0 16 -8 -4 0 0 0 0 -8 -1 -8 8 16 0 0 0 -4 -8 0 -4 -8 2 0 0 4 4 0 -8 0 0 0 -8 0 -2 -4 -8 4 -8 0 8 0 0 2 12 -8 -4 -8 8 2 12 -8 4 1 -8 1 1 -7 4 0 2 12 -8 -4 8 -8 2 8 0 -8 -8 4 0 -8 0 0 -1 0 -8 -8 0 0 -4 -8 -16 0 -2 0 0 -4 0 0 2 8 0 4 4 16 0 0 0 -8 0 0 8 8 0 8 -2 0 2 -8 -8 -1 4 -4 8 0 -4 0 -8 0 8 4 0 0 4 8 8 8 0 8 0 0 16 4 8 0 -8 0 0 -8 -8 -4 4 0 0 8 -16 -8 -4 0 -8 0 0 0 -8 0 0 -8 -8 0 -16 0 -4 0 4 -8 -4 8 -4 0 8 -4 -4 8 -8 0 8 4 8 0 8 8 -4 8 8 -8 8 0 8 0 0 0 -8 8 8 0 0 0 8 0 4 8 0 8 8 0 -8 0 -8 8 8 0 -8 -16 -4 8 -4 -8 -4 -4 8 -4 -8 8 -8 -16 -8 -4 0 0 0 0 -4 -8 -8 4 -4 0 0 8 4 0 0 0 0 0 -8 8 0 -8 0 4 8 8 8 8 8 -2 8 8 4 4 0 0 0 0 0 0 0 16 -4 8 -8 2 -8 0 -4 0 -1 0 0 -8 8 4 0 0 0 0 0 -1 0 0 -8 0 -4 0 -8 -4 -8 0 -8 -2 4 4 0 0 0 -8 0 0 -8 16 8 2 0 -8 4 -8 -8 12 -4 0 2 8 0 -8 -4 12 2 8 -8 4 1 -8 1 1 -7 4 10 0 4 0 0 -4 0 0 -4 -2 -4 8 -8 0 0 -4 2 1 0 -8 4 0 -4 0 0 0 -4 2 0 -4 0 4 0 2 0 -8 -4 -4 0 -4 4 0 -4 4 0 8 0 4 -4 -2 0 -2 0 8 -1 4 2 0 4 0 0 0 8 0 6 0 4 0 16 -4 0 0 8 4 0 0 4 -4 0 0 0 0 4 0 -4 0 0 0 0 -8 0 -2 0 0 0 0 -4 0 -4 8 4 8 0 8 0 0 0 0 -4 0 -8 4 4 4 0 4 4 -8 -4 -8 -2 0 0 0 0 -4 -16 4 -8 8 0 -8 0 -8 0 0 0 0 0 0 4 8 0 0 0 8 0 -8 0 0 0 0 -16 -8 -8 -8 -8 -4 4 4 4 0 -4 4 0 0 4 8 8 -4 4 -4 0 -4 0 -2 -8 4 0 0 0 -4 -8 -2 0 0 0 0 0 0 0 -4 0 0 0 0 0 8 16 -4 -2 -4 -4 4 4 4 4 4 4 4 8 4 0 2 0 8 -2 -4 0 0 0 -1 0 4 0 8 2 0 0 0 2 0 1 4 0 0 0 0 0 0 0 0 0 -8 2 -4 -4 -4 -4 -4 0 -8 -4 4 0 0 2 0 8 -4 0 -4 -4 0 -2 0 -4 -4 0 0 4 0 4 6 4 -1 -6 1 1 -7 0 10 4 4 8 0 -4 0 -4 -4 -2 4 -16 4 0 0 4 2 1 0 16 -4 -8 4 0 0 -16 4 -2 -8 -4 0 -4 0 -2 -8 0 4 4 -8 4 -4 0 4 -4 0 0 0 -4 -4 2 8 2 0 0 -1 -4 2 8 -4 0 8 8 0 0 6 0 4 0 8 4 8 0 0 -4 0 8 -4 4 0 8 0 0 4 0 -4 0 0 0 0 0 -8 -2 0 0 0 0 4 0 4 0 -4 0 0 0 0 0 0 0 -4 0 0 0 -4 -4 0 4 -4 0 -4 0 -2 -8 0 0 0 0 -8 4 0 0 0 0 0 0 0 -8 0 -8 0 0 -4 0 0 0 0 0 0 0 0 0 0 0 -8 0 0 0 0 -4 4 4 4 0 0 -4 0 0 -4 0 0 -4 0 4 0 4 0 -2 0 -4 0 0 0 -4 0 -2 0 0 0 0 8 8 8 4 0 0 0 0 0 0 8 -4 2 4 4 -4 -4 -4 -4 -4 -4 -4 0 4 8 2 8 0 2 4 0 0 0 -1 8 4 8 0 2 0 0 0 2 0 1 -4 -8 -8 0 0 -8 0 0 0 0 16 -2 4 4 4 4 4 -8 0 -4 -4 -8 -8 -2 0 -16 0 8 4 -4 0 -2 -4 -4 4 0 0 4 4 4 6 0 -1 -6 1 1 -7 4 6 0 8 -8 -4 4 -4 0 -4 -2 -4 8 0 -4 4 -8 2 1 0 -8 4 0 -4 4 0 -8 -8 -2 0 4 -4 -4 -8 -2 0 0 0 0 16 12 4 8 4 4 0 8 8 8 -4 2 0 2 0 -8 -1 0 -6 8 4 -4 0 -8 0 4 -2 4 -4 -4 -8 4 0 8 8 8 -8 -16 0 4 8 16 0 0 0 0 -8 0 0 0 0 0 8 6 0 0 0 0 -4 0 -4 -16 -4 0 -8 0 -8 4 8 4 0 0 -8 -4 -12 -4 0 8 -4 0 4 -8 -2 -8 -4 -8 -4 4 8 4 8 -16 0 16 0 16 0 8 0 -8 0 0 -12 -16 8 4 -8 -16 -4 -8 0 0 0 0 8 16 16 0 0 -8 4 8 0 0 4 -4 0 0 -4 0 0 0 -4 -4 0 -4 0 6 8 -4 0 4 -4 4 -8 -2 -8 0 -8 0 0 -8 8 12 0 -8 -4 8 4 8 -8 -4 2 4 4 0 0 8 8 4 4 4 0 -4 -16 -6 0 -8 2 4 0 -4 4 -1 0 -4 16 8 2 8 8 8 2 0 1 -4 0 -16 -8 4 0 4 -4 0 -4 -8 -2 0 0 -8 -8 -4 8 0 4 4 16 0 -2 4 8 -4 -8 -4 -8 -4 -2 0 0 4 -4 4 8 0 0 6 4 -1 -6 1 1 -7 0 10 0 8 0 -4 -4 0 0 -12 6 -4 0 4 0 0 4 -6 -3 -8 0 4 -8 0 4 -16 0 -4 -2 0 0 4 -4 0 2 0 0 -8 8 8 -4 12 8 -4 0 8 0 8 -4 12 2 0 -2 16 0 3 8 -2 0 -12 4 8 0 0 0 -2 0 4 12 0 4 0 0 0 4 0 -8 -8 4 -8 0 4 4 -4 0 8 0 0 -4 0 8 0 2 -8 16 8 -4 12 -16 -12 8 4 0 8 -8 -8 -4 0 -12 4 0 0 0 4 -4 0 -8 -4 0 -4 0 2 0 0 -8 0 0 0 -12 0 0 0 0 0 -8 4 0 0 0 0 0 4 0 0 -12 -8 8 0 0 8 -16 -8 16 0 0 -8 0 8 8 -12 -8 -4 0 0 -4 0 0 -4 0 -8 4 0 12 4 -12 -4 2 0 4 0 -4 0 -4 0 2 -8 -4 8 0 0 0 0 -4 16 0 12 8 0 0 0 12 2 4 4 8 -8 -4 4 0 -12 12 0 0 -8 -2 0 0 -2 -4 8 4 0 3 8 4 0 0 -2 0 8 -8 -6 -8 -3 -4 -8 0 0 4 0 0 4 -16 0 0 -2 -8 8 4 -4 0 0 0 0 4 8 0 2 0 0 0 0 -4 -8 -4 6 0 -4 4 0 -4 8 0 4 6 0 -1 -6 1 1 -7 0 6 0 12 0 0 4 -12 0 -12 6 -12 0 12 -4 12 0 -6 -3 0 0 12 0 0 0 -24 -24 0 -6 0 0 0 -12 0 6 24 0 12 -12 0 -12 -12 -24 -12 0 0 0 0 0 12 6 0 -6 24 0 3 -12 6 0 12 0 0 0 0 12 6 -12 -12 0 0 12 -24 0 0 0 24 0 12 12 24 24 -12 -4 0 0 12 0 0 12 0 0 0 -6 0 -24 0 4 -12 24 12 0 12 -24 -24 0 24 0 -24 0 0 0 0 0 12 -12 0 -12 -12 24 12 0 -6 0 12 0 -12 0 0 -12 0 24 0 -24 0 0 -12 0 0 0 0 0 12 24 -24 0 0 0 -12 0 0 24 0 -24 0 -24 0 24 0 12 -12 -12 0 0 0 -12 0 0 -12 -24 0 0 0 -12 -4 12 4 -6 0 12 0 0 12 12 0 -6 24 12 -24 0 0 0 0 -12 24 24 0 0 12 0 0 12 6 12 12 -12 12 0 0 0 12 -12 0 0 0 6 -24 0 -6 -12 0 0 -12 3 0 -12 24 0 6 0 -24 24 -6 0 -3 -12 0 -24 0 0 0 12 0 -24 -4 0 -6 12 -12 0 0 0 0 0 0 12 0 24 6 4 0 0 0 -12 -12 0 6 0 0 12 -12 0 12 0 0 6 0 -1 -6 1 1 -9 8 6 4 16 -24 -4 12 -12 4 4 -6 -12 -24 -4 -4 -12 8 -6 1 16 -24 -12 16 4 -4 16 -8 8 2 8 4 -12 -12 8 2 16 8 8 8 16 -4 -4 -8 -4 4 16 -8 -8 8 -4 2 8 2 16 -8 1 8 -2 -8 -4 -4 16 -8 8 -4 2 -4 -4 -4 -8 -4 16 8 -8 8 -8 16 8 -4 -8 16 0 0 0 0 0 0 0 0 0 0 -8 -2 0 0 0 0 -4 0 -4 0 -4 0 -8 0 -8 -4 -8 -4 0 0 -8 0 -4 -4 0 0 -4 0 -4 -8 -2 -8 -4 -8 -4 0 -8 -4 -8 0 0 0 0 0 0 8 0 8 0 0 4 0 8 4 8 0 4 8 0 0 0 0 8 0 0 0 0 0 4 0 0 0 0 4 0 0 4 0 0 0 0 4 0 4 0 2 8 4 0 4 4 4 8 2 8 0 8 0 -8 8 8 4 -16 8 4 8 4 8 8 4 -2 4 4 -8 -8 -8 -8 -4 4 4 -8 -4 -16 2 -16 8 -2 4 -16 4 4 -1 -16 4 -16 8 2 -8 8 8 6 -16 -1 12 -16 -16 -8 4 -8 12 12 -16 4 24 -2 -8 -8 -8 -8 -4 24 -8 -4 12 -16 -16 -2 4 24 -8 24 12 -16 4 6 -4 -16 12 12 12 -16 -4 -16 10 -8 -1 10 -1 1 -9 8 16 2 8 -16 0 -8 0 -2 -8 -8 -8 0 -16 0 0 -8 8 3 16 0 8 0 -4 0 16 16 -8 2 8 4 0 8 0 2 0 0 -8 -8 0 -8 16 16 0 4 -16 16 0 8 -16 -2 -8 -2 -16 16 -3 8 0 0 16 0 0 0 0 0 -4 0 0 0 -16 -8 0 0 0 8 0 0 8 0 16 0 -4 -4 8 0 8 -4 -32 -4 0 0 0 0 -16 -16 -16 -4 -16 -16 -16 0 0 0 -16 0 -16 0 0 0 8 4 0 8 8 8 -4 8 0 0 0 -16 0 0 0 0 0 8 16 16 -16 0 0 0 -16 0 4 0 0 0 16 0 -8 0 0 0 0 0 0 0 16 16 16 16 -16 0 0 0 0 -8 -16 -8 -8 -4 -8 0 4 0 -8 0 0 -8 -8 16 4 16 4 0 16 0 4 0 0 0 16 0 16 4 16 32 8 0 0 8 16 0 0 0 0 0 16 16 2 0 8 -8 -8 -8 -8 -4 -16 -16 0 4 0 0 0 -16 2 0 16 0 0 3 0 0 0 -16 0 0 -16 -16 -8 -16 -3 -8 0 0 0 0 -8 0 0 -16 0 0 -2 8 8 8 8 4 -16 0 -4 -8 0 0 -2 0 0 8 16 8 8 0 8 2 8 8 0 0 -8 -2 -8 -8 -8 1 8 -1 1 -9 4 16 6 8 0 0 -8 0 -6 -8 -8 0 -32 -4 0 0 8 8 3 16 32 0 -16 12 0 16 -16 8 -2 -8 -4 0 0 8 -2 -16 8 8 8 -16 0 -16 0 16 -12 -16 0 0 -8 -16 2 8 2 -16 0 -3 -8 8 32 -16 0 16 32 -8 0 12 0 16 0 0 0 16 -8 -32 -8 0 16 -8 16 0 16 -4 4 8 -24 8 -4 16 -4 -24 -16 -32 -8 16 16 16 4 16 16 16 -16 -16 -16 0 -16 0 0 0 0 8 12 32 4 0 0 -4 8 -16 -16 -16 0 -8 -32 0 0 0 4 0 16 0 -16 -16 -16 -16 -16 4 32 24 32 16 16 0 16 0 0 0 16 0 -32 -16 -16 -16 -16 0 16 16 16 16 -8 -16 -8 -8 -12 -4 16 4 24 0 16 16 -8 -4 -16 -4 -16 -4 8 0 16 4 0 0 16 0 8 0 4 0 -16 -8 -32 -32 0 16 0 0 0 0 32 0 16 -2 -16 0 8 8 8 8 12 16 16 8 -4 -16 -8 -16 0 -2 -16 16 0 0 3 -16 -16 -16 0 -8 8 0 0 -8 -16 -3 0 16 16 -8 0 8 0 0 -16 0 -32 2 -8 -8 -8 -8 -12 0 -8 4 0 16 16 2 0 32 4 0 0 8 0 8 6 8 0 0 0 -8 -6 -8 -8 -4 1 8 -1 1 -9 4 16 2 12 -8 -4 -8 -8 -2 -16 0 -8 -8 -4 0 8 0 0 -1 0 8 8 0 0 4 -8 0 0 -2 0 0 4 0 0 2 8 0 4 4 16 0 0 0 -8 0 0 8 8 0 8 2 0 -2 8 -8 1 -4 -4 8 0 -4 0 -8 0 8 4 0 0 4 8 8 -8 0 8 0 0 -16 -4 8 0 8 0 0 -8 -8 -4 4 0 0 8 -16 8 4 0 -8 0 0 0 -8 0 0 8 -8 0 -16 0 4 0 -4 -8 -4 -8 -4 0 -8 -4 -4 -8 -8 0 -8 -4 -8 0 -8 -8 -4 -8 -8 8 8 0 8 0 0 0 -8 -8 8 0 0 0 -8 0 4 8 0 8 8 0 8 0 8 8 -8 0 8 16 4 8 4 8 4 4 8 4 8 8 8 16 8 4 0 0 0 0 -4 -8 -8 -4 -4 0 0 8 4 0 0 0 0 0 8 -8 0 -8 0 -4 -8 -8 -8 -8 -8 -2 -8 -8 4 4 0 0 0 0 0 0 0 16 4 8 8 2 8 0 4 0 -1 0 0 -8 -8 -4 0 0 0 0 0 1 0 0 8 0 -4 0 -8 -4 8 0 -8 2 -4 -4 0 0 0 -8 0 0 -8 -16 -8 -2 0 8 4 8 8 12 4 0 2 8 0 8 4 -12 -2 -8 -8 -4 1 8 -1 1 -11 12 12 6 24 -48 -8 16 -24 6 0 -12 -24 -48 -12 -8 -24 24 -12 3 48 -48 -24 48 12 -8 48 0 24 6 24 12 -24 -24 24 6 48 24 24 24 48 -24 -24 -48 -24 12 48 -48 -48 24 -24 6 24 6 48 -48 3 24 -12 -48 -24 -24 48 -48 24 -24 0 -24 -24 -24 -48 -24 48 24 -48 24 -48 48 24 -24 -48 48 12 4 24 24 24 12 48 12 24 48 -48 -12 48 48 48 4 -24 48 -24 48 -24 48 -48 48 -48 -24 -48 -24 24 12 -48 12 -24 -24 12 24 -24 48 -24 -48 -12 -48 -24 -48 -24 12 -48 -24 -48 48 16 48 48 48 12 -48 24 -48 48 16 -24 48 -48 -24 -48 48 -24 -48 48 48 48 48 -48 48 48 48 48 24 -24 24 24 12 12 -24 12 24 -24 48 48 24 12 -24 4 -24 4 -12 -48 -24 12 -24 -24 -24 -48 -12 -48 12 -48 48 24 -48 -48 -24 48 -48 -24 -48 -24 -48 -48 -24 6 -24 -24 24 24 24 24 12 -24 -24 24 12 48 -12 48 -48 6 -24 48 -24 -24 3 48 -24 48 -48 -12 24 -48 -48 -12 48 3 -24 48 48 24 -8 24 -24 -24 48 -8 -48 6 24 24 24 24 12 -48 24 12 -24 48 48 6 -8 -48 12 -48 -24 24 -8 -12 6 24 -24 -24 -24 24 6 24 -12 12 1 -12 1 end lrslib-051/ine/mit/mit31-20.ine0000700000175300010010000000271112423577212015670 0ustar avisなしmit31-20.ine begin 31 20 integer 1 -6 12 3 0 0 0 -12 -8 0 0 12 3 0 0 0 -6 0 1 0 1 2 -1 2 -2 0 -4 4 -4 -2 0 2 0 1 -2 2 0 0 0 1 1 0 -3 0 0 2 0 0 -2 0 4 0 0 -1 0 -2 0 2 0 -1 1 0 1 -2 -2 0 0 0 0 2 0 2 0 1 -2 0 0 0 0 -1 1 0 -3 2 -2 0 0 0 0 2 0 -2 0 1 2 0 0 0 0 -1 1 -2 -1 0 0 2 0 0 2 0 0 0 0 -1 0 0 0 -2 0 1 1 -2 -5 2 2 -4 4 4 0 2 -8 2 0 1 2 2 0 -4 0 1 1 -2 3 -2 -2 0 4 4 -4 -2 0 -2 0 1 2 -2 0 0 0 1 1 -2 -1 2 -2 0 4 -4 4 -2 0 2 0 1 -2 -2 0 0 0 1 1 -4 1 2 2 -4 0 0 4 -2 0 -2 0 1 -2 0 0 4 0 -1 1 -4 5 0 0 2 0 0 -2 0 -4 0 0 -1 0 2 0 2 0 -1 1 -6 11 2 2 -4 -4 -4 -8 2 8 2 0 1 2 -2 0 -4 0 1 1 6 12 3 0 0 0 12 8 0 0 12 3 0 0 0 6 0 1 0 1 4 4 1 0 0 0 0 0 0 0 -4 -1 0 0 0 -4 0 -1 0 1 2 0 -1 0 0 0 -4 0 0 0 0 -1 0 0 0 2 0 1 0 1 2 -4 3 0 0 0 4 -8 0 0 -4 3 0 0 0 2 0 1 0 1 0 -4 1 0 0 0 0 0 0 0 4 -1 0 0 0 0 0 -1 0 1 0 0 -3 0 0 0 0 0 0 0 0 3 0 0 0 0 0 -1 0 1 -2 -4 3 0 0 0 -4 8 0 0 -4 3 0 0 0 -2 0 1 0 1 -2 0 -1 0 0 0 4 0 0 0 0 -1 0 0 0 -2 0 1 0 1 -4 4 1 0 0 0 0 0 0 0 -4 -1 0 0 0 4 0 -1 0 1 6 11 2 2 4 4 4 8 2 8 2 0 1 2 2 0 4 0 1 1 4 5 0 0 -2 0 0 2 0 -4 0 0 -1 0 -2 0 -2 0 -1 1 4 1 2 2 4 0 0 -4 -2 0 -2 0 1 -2 0 0 -4 0 -1 1 2 3 -2 -2 0 -4 -4 4 -2 0 -2 0 1 2 2 0 0 0 1 1 2 -1 0 0 -2 0 0 -2 0 0 0 0 -1 0 0 0 2 0 1 1 2 -1 -2 2 0 4 -4 -4 2 0 -2 0 1 -2 2 0 0 0 1 1 2 -5 2 2 4 -4 -4 0 2 -8 2 0 1 2 -2 0 4 0 1 1 0 -3 -2 2 0 0 0 0 -2 0 2 0 1 2 0 0 0 0 -1 1 0 -3 0 0 -2 0 0 2 0 4 0 0 -1 0 2 0 -2 0 -1 1 -2 -1 -2 2 0 -4 4 4 2 0 -2 0 1 -2 -2 0 0 0 1 end maxdepth 2 estimates 10 lrslib-051/ine/mit/mit41-16.ine0000700000175300010010000000271612423577212015703 0ustar avisなしmit41-16.ine begin 41 16 rational 1 -1 0 0 -1 0 1 0 0 0 0 0 0 0 0 0 1 -3 2 0 1 0 -1 0 0 0 0 0 0 0 0 0 1 1 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 1 -1 0 -1 0 0 0 0 1 0 0 0 0 0 0 0 1 -1 -2 1 0 0 0 0 1 0 0 0 0 0 0 0 1 -3 2 1 0 0 0 0 -1 0 0 0 0 0 0 0 1 1 -1 1 -1 0 0 0 0 -1 0 0 0 0 0 0 1 1 -1 -1 1 0 0 0 0 -1 0 0 0 0 0 0 1 1 1 -1 -1 0 0 0 0 -1 0 0 0 0 0 0 1 -1 1 -1 -1 0 0 0 0 1 0 0 0 0 0 0 1 -1 -1 -1 1 0 0 0 0 1 0 0 0 0 0 0 1 -1 -1 1 -1 0 0 0 0 1 0 0 0 0 0 0 1 -3 1 1 1 0 0 0 0 -1 0 0 0 0 0 0 1 1 -1 0 0 0 0 0 0 0 -1 0 0 0 0 0 1 1 1 0 -2 0 0 0 0 0 -1 0 0 0 0 0 1 -1 -1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 -1 1 0 -2 0 0 0 0 0 1 0 0 0 0 0 1 -3 1 0 2 0 0 0 0 0 -1 0 0 0 0 0 1 0 0 0 -2 0 0 0 0 0 0 0 1 0 0 0 1 -2 0 0 0 2 0 0 0 0 0 0 -1 0 0 0 1 -4 0 0 6 -4 0 0 0 0 0 0 1 0 0 0 1 0 0 -3 0 0 0 0 0 0 0 0 0 3 0 -1 1 -2 0 3 -4 8 0 -4 0 0 0 -4 0 3 -2 1 1 -2 0 -1 0 0 0 4 0 0 0 0 0 -1 -2 1 1 -4 0 1 4 0 0 0 0 0 0 -4 0 -1 4 -1 1 -6 0 3 12 -8 0 -12 0 0 0 12 0 3 -6 1 1 3 2 0 1 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 -1 0 -1 0 0 0 0 0 0 0 0 0 1 1 -2 0 1 0 -1 0 0 0 0 0 0 0 0 0 1 -1 -2 0 1 0 1 0 0 0 0 0 0 0 0 0 1 3 2 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 -2 1 0 0 0 0 -1 0 0 0 0 0 0 0 1 3 1 1 1 0 0 0 0 1 0 0 0 0 0 0 1 3 1 0 2 0 0 0 0 0 1 0 0 0 0 0 1 4 0 0 6 4 0 0 0 0 0 0 1 0 0 0 1 2 0 0 0 -2 0 0 0 0 0 0 -1 0 0 0 1 6 0 3 12 8 0 12 0 0 0 12 0 3 6 1 1 4 0 1 4 0 0 0 0 0 0 -4 0 -1 -4 -1 1 2 0 -1 0 0 0 -4 0 0 0 0 0 -1 2 1 1 2 0 3 -4 -8 0 4 0 0 0 -4 0 3 2 1 1 0 0 1 -4 0 0 0 0 0 0 4 0 -1 0 -1 end lrslib-051/ine/mit/mit708-9.ine0000700000175300010010000004604112423577212015716 0ustar avisなしmit708-9.ine begin 708 9 rational 72 0 0 -4 -4 -2 0 0 0 216 -2 -2 -10 -12 -6 0 0 0 192 -4 -2 -8 -8 -8 0 0 0 288 -12 6 8 -16 -8 0 0 0 96 -4 2 0 -4 -4 0 0 0 144 -5 1 -4 -6 -6 0 0 0 288 -8 -2 -10 -12 -12 0 0 0 96 -4 2 -4 -2 -4 0 0 0 240 -7 -1 -10 -8 -10 0 0 0 288 -8 -2 -12 -8 -12 0 0 0 288 -8 -2 -8 -16 -8 0 0 0 96 -4 2 -8 0 0 0 0 0 0 0 6 -8 4 8 0 0 0 0 4 6 -8 0 8 0 0 0 24 2 2 -4 -2 2 0 0 0 864 -24 -6 -40 -16 -32 0 0 0 24 0 0 -2 -2 2 0 0 0 0 4 10 -16 0 24 0 0 0 0 1 1 -4 0 12 0 0 0 0 0 6 -16 8 40 0 0 0 96 -4 2 -16 16 32 0 0 0 288 -8 -2 -16 0 0 0 0 0 96 -4 2 8 -8 8 0 0 0 288 -8 -2 8 -24 24 0 0 0 0 0 2 -8 8 24 0 0 0 96 -1 -1 -4 -8 8 0 0 0 576 -12 -6 -16 -40 16 0 0 0 192 -4 -2 0 -16 16 0 0 0 576 -8 -6 -24 -32 -16 0 0 0 576 -12 -6 -20 -32 -16 0 0 0 960 -16 -10 -40 -56 -16 0 0 0 160 0 0 -7 -7 -6 -1 0 -1 480 -4 -4 -21 -21 -18 -1 0 -3 192 -4 -4 -12 -4 -8 4 2 -4 640 -16 -8 -28 -28 -24 4 2 -4 640 -8 -6 -28 -28 -24 0 0 -4 192 -8 0 -8 -8 -8 4 2 0 384 -12 -4 -16 -16 -16 4 2 0 960 -20 -12 -42 -42 -36 4 2 -6 240 -9 -1 -11 -9 -10 3 2 -1 0 2 2 4 0 0 -4 -2 0 640 -22 -4 -24 -28 -24 8 4 -4 1920 -60 -20 -76 -84 -72 20 10 -12 1920 -32 -22 -84 -84 -72 4 2 -12 960 -28 -10 -44 -36 -40 8 4 -4 1152 -36 -12 -52 -44 -48 12 6 -4 720 -23 -7 -33 -27 -30 7 4 -3 1920 -48 -24 -88 -72 -80 12 6 -8 3456 -96 -40 -160 -128 -144 28 14 -16 576 -15 -7 -26 -20 -24 4 2 -4 384 -12 -4 -20 -12 -16 4 2 0 336 -11 -3 -17 -11 -14 3 2 -1 192 -8 0 -12 -4 -8 4 2 0 0 0 0 -4 4 0 4 2 0 0 0 2 -8 8 0 8 4 -2 192 -12 12 -28 12 -8 20 10 -4 192 -12 12 -20 4 -8 12 6 -2 1920 -48 -24 -92 -60 -80 12 6 -4 576 -15 -7 -28 -18 -24 4 2 -2 1536 -42 -18 -76 -40 -64 12 6 -8 384 -12 -4 -20 4 -16 4 2 -4 1920 -60 -20 -102 18 -76 14 10 -18 1920 -60 -20 -102 -46 -76 14 10 -2 672 -22 -6 -37 -17 -26 5 4 -1 640 -22 -4 -36 -16 -24 4 4 0 960 -40 0 -64 -16 -32 8 10 0 64 -4 4 -8 0 0 0 2 0 0 0 8 -6 2 4 -2 2 0 0 8 18 -8 0 8 -8 2 0 64 36 60 -28 -4 24 -28 6 -4 192 28 36 -20 -12 8 -20 2 -4 96 4 4 -5 -5 -2 -3 0 -1 64 4 6 -4 -4 0 -4 0 0 96 0 0 -5 -5 -2 -1 0 -1 192 -6 0 -8 12 -8 0 0 -4 960 -30 -8 -48 -20 -40 8 4 -4 960 -32 -8 -52 -20 -40 12 6 -4 960 -32 -8 -52 44 -40 12 6 -20 960 -30 -8 -48 12 -40 8 4 -12 576 -16 -6 -28 -12 -24 4 2 -4 208 -8 0 -8 -8 -8 4 2 -2 160 -7 1 -5 -7 -6 3 2 -1 192 -12 12 0 -8 -8 8 6 0 160 -9 7 -1 -7 -6 5 4 -1 640 -20 -4 -20 -28 -24 4 2 -4 96 -5 3 -2 -4 -4 2 2 0 480 -18 -2 -17 -21 -18 7 4 -3 528 -19 -3 -20 -22 -20 8 4 -4 1152 -36 -4 -32 -40 -48 0 2 -8 1152 -36 -12 -48 -40 -48 8 6 -8 192 -8 0 -4 -4 -8 4 2 -4 192 -6 0 0 -4 -8 0 0 -4 384 -12 -4 -8 -8 -16 4 2 -8 1920 -48 -24 -48 -40 -80 12 6 -40 384 -16 2 -20 -12 -16 4 4 0 576 -24 0 -32 -16 -24 8 6 0 432 -17 -1 -23 -13 -18 5 4 -1 576 -28 12 -36 -12 -24 12 10 -4 960 -52 36 -92 12 -40 52 26 -12 0 0 4 -14 10 4 6 6 -2 2688 -72 -32 -120 -104 -112 16 10 -8 0 0 8 -20 12 56 -12 2 -4 64 -4 4 -16 8 24 -4 2 0 192 -8 0 -16 0 0 0 2 0 64 8 16 -20 -4 24 -12 2 -4 0 2 4 -4 0 8 -4 0 0 288 -13 3 -12 -10 -12 6 4 -2 336 -14 2 -15 -11 -14 7 4 -3 96 3 1 -8 -6 4 0 0 -2 192 12 0 -20 -12 8 4 2 -4 0 4 8 -6 2 4 -2 2 -2 192 -12 12 -28 28 -8 20 10 -12 0 0 0 -4 16 0 4 2 -6 0 0 0 -4 40 0 4 2 -12 192 -8 0 -12 44 -8 4 2 -12 0 0 2 0 32 0 0 0 -8 192 -12 12 -20 300 -8 12 6 -76 960 -40 0 -64 208 -32 8 10 -56 2112 -72 -16 -120 120 -80 16 14 -48 512 -16 -4 -26 6 -20 2 2 -6 512 -16 -4 -26 -10 -20 2 2 -2 448 -16 0 -24 -8 -16 0 2 0 448 24 8 -68 -20 56 12 6 -20 192 8 2 -24 -8 16 4 2 -8 192 16 0 -36 -4 24 12 6 -12 448 -13 -5 -23 -13 -18 3 2 -1 0 2 -2 -4 4 0 4 2 -2 0 0 0 -22 22 4 14 10 0 0 0 0 -22 82 4 14 10 -30 0 0 4 -14 34 4 6 6 -14 480 -21 3 -20 -18 -20 8 6 -2 480 -19 1 -16 -18 -20 4 4 -2 1344 -52 0 -44 -52 -56 12 10 -4 576 -22 0 -12 -24 -24 4 4 0 768 -28 -4 -24 -32 -32 8 6 0 768 -28 -4 40 -32 -32 -8 6 0 576 -22 0 20 -24 -24 -4 4 0 320 -12 0 10 -14 -12 -2 2 -2 160 -7 1 3 -7 -6 1 2 -1 0 2 2 -12 8 16 4 2 -4 0 22 14 -52 16 80 12 6 -16 192 32 16 -68 -4 88 12 6 -20 128 18 10 -36 -8 48 4 2 -8 64 8 8 -20 -4 24 -4 2 -4 0 4 2 -4 4 8 0 0 -4 0 4 8 -14 2 20 -4 2 -2 0 1 7 -11 3 14 -3 2 -1 0 0 8 -12 4 16 -4 2 0 0 4 12 -20 4 32 -8 2 0 0 0 24 -44 20 64 -16 6 0 0 0 4 -10 6 12 -2 2 -2 0 14 22 -44 8 64 -12 6 -8 0 6 10 -18 2 28 -6 2 -2 192 28 36 -52 -12 72 -36 2 -12 96 3 3 -8 -6 4 -4 0 -2 0 0 12 -10 6 12 -6 2 -2 48 0 0 -3 -3 2 -1 0 -1 192 16 24 -44 -12 72 -28 2 -12 0 4 12 -14 2 20 -8 2 -2 0 1 9 -11 3 14 -5 2 -1 192 32 40 -68 -4 88 -36 6 -20 16 1 1 -3 -1 6 -1 0 -1 64 4 6 -12 -4 24 -8 0 -4 0 4 12 -20 4 40 -12 2 -4 0 0 10 -16 8 24 -8 2 0 192 -12 12 -40 16 32 -8 6 0 0 0 24 -34 14 44 -14 6 -2 64 -4 4 -16 8 16 0 2 0 0 0 4 -14 10 20 2 2 -2 0 0 2 -2 2 4 -2 0 0 0 0 24 -44 20 72 -20 6 -4 0 6 10 -16 4 24 -8 2 -4 0 1 1 -1 1 2 -1 0 -1 0 6 18 -16 4 24 -12 2 -4 384 0 -2 -20 -20 -8 0 0 -4 384 -12 -4 -12 -20 -8 4 2 -4 640 -16 -8 -20 -36 -8 4 2 -4 1280 -6 -14 -60 -80 0 -4 2 0 1024 -2 -10 -52 -64 0 -4 2 0 1024 -12 -12 -48 -56 -16 0 2 -8 384 8 -4 -24 -24 0 0 2 0 256 4 -4 -16 -16 0 2 2 0 1024 0 -16 -56 -56 -16 8 6 -8 960 0 -16 -52 -52 -16 12 6 -8 6400 -96 -72 -280 -280 -240 8 6 -40 960 -16 -12 -42 -42 -36 2 2 -6 3840 -48 -40 -168 -168 -144 0 2 -24 4032 -72 -48 -178 -178 -148 10 6 -26 1152 -20 -14 -52 -52 -40 4 2 -8 0 2 -2 0 0 0 2 2 0 192 -6 0 12 -8 -8 -4 0 0 192 -4 -4 -8 -8 -8 4 2 0 6912 -176 -88 -288 -288 -288 40 26 0 1920 -48 -24 -80 -80 -80 10 6 0 576 -12 -10 -24 -24 -24 6 4 0 5760 -168 -64 -264 -216 -240 48 26 -24 960 -48 24 -36 -36 -40 20 18 -4 960 -44 12 -28 -36 -40 12 14 -4 192 -12 12 4 -4 -8 4 6 -4 960 -56 48 -20 -36 -40 28 26 -4 640 -20 0 -4 -28 -24 -2 0 -4 576 -24 0 -28 -12 -24 4 6 -4 0 0 0 4 8 0 -2 0 -4 192 -6 0 -4 12 -8 -4 0 -6 960 -30 0 -32 -12 -40 -8 0 -6 960 -32 0 -36 -20 -40 -4 2 -4 640 -20 0 -28 -4 -24 -4 0 -2 0 0 20 -4 12 8 -12 0 -2 16 0 0 -1 -1 6 -1 0 -1 1536 -62 0 -80 -44 -64 16 14 0 1344 -42 -12 -64 -44 -56 12 6 -4 2880 -90 -28 -128 -108 -120 28 14 -12 960 -30 0 -12 -32 -40 -6 0 -8 768 -30 0 -24 -28 -32 6 6 -4 576 -24 0 -20 -20 -24 8 6 -4 576 -24 0 -15 -23 -22 9 6 -5 192 -8 0 12 -4 -8 -4 2 -4 0 0 0 -8 8 8 4 2 0 192 -12 12 -76 76 88 20 10 -12 0 0 6 -28 28 40 8 4 -6 576 -15 -7 -29 -15 -22 3 2 -1 448 -13 -5 -25 -7 -14 3 2 -1 512 -14 -6 -26 -14 -20 4 2 -2 448 -13 -5 -23 -5 -18 3 2 -3 384 -6 -4 -16 -20 -8 0 0 -4 0 8 8 -24 8 48 0 2 -8 96 -1 -1 0 -6 36 -4 0 -6 192 -4 -4 12 -12 72 -4 2 -12 0 0 0 -6 6 4 2 2 0 384 -12 -4 -22 -6 -12 2 2 0 1216 -31 -15 -59 -37 -50 7 4 -3 960 -20 -16 -42 -42 -36 10 6 -6 2304 -72 -20 -112 -64 -96 16 10 -8 1344 -42 -12 -64 -36 -56 8 6 -6 1152 -36 -12 -56 -32 -48 8 6 -4 384 -12 -4 -16 -8 -16 0 2 0 192 -6 0 -4 0 -8 -4 0 0 912 -26 -10 -43 -31 -38 5 4 -1 960 -27 -11 -46 -32 -40 6 4 -2 1344 -39 -15 -66 -44 -56 10 6 -4 4224 -120 -48 -200 -152 -176 32 18 -16 4992 -132 -60 -240 -168 -208 32 18 -16 3456 -96 -40 -168 -104 -144 24 14 -16 2688 -76 -28 -128 -72 -112 16 10 -16 960 -29 -9 -46 -28 -40 6 4 -4 0 2 -2 12 0 0 -4 2 0 960 -20 -20 134 -42 -36 -38 10 -6 1920 -60 -20 148 -84 -72 -36 10 -12 1920 -68 -12 100 -84 -72 -20 14 -12 320 -12 0 -6 -14 -12 2 2 -2 960 -40 0 -26 -42 -36 18 10 -6 576 -12 -8 -22 -30 -12 2 2 -6 576 -12 -10 -8 -24 -24 -2 4 0 2304 -56 -32 -80 -96 -96 8 10 0 960 -20 -20 -38 -42 -36 20 10 -6 192 -6 0 -4 -4 -8 -2 0 -2 0 0 0 1 1 2 -1 0 -1 192 -8 0 -4 28 -8 -4 2 -12 192 -8 0 -4 60 -8 -4 2 -20 0 0 2 -4 4 16 -4 0 0 1792 -28 -20 -80 -88 -48 0 2 -16 384 -3 -3 -18 -20 -8 -2 0 -4 8064 -204 -100 -384 -264 -336 48 26 -24 1920 -48 -24 -88 -56 -80 8 6 -8 384 -12 -4 -16 8 -16 0 2 -8 192 -12 12 -12 -4 -8 4 6 0 192 -12 12 -12 12 -8 4 6 -8 192 -12 12 4 60 -8 -12 6 -28 0 0 0 -8 8 16 0 2 0 192 -4 -2 -4 -4 -8 0 0 -4 192 -4 -4 16 -12 0 -4 2 0 768 -20 -12 40 -48 0 -8 6 0 512 -14 -6 20 -32 0 -4 2 0 1344 -60 12 -68 -44 -56 20 18 -4 2112 -92 12 -116 -60 -88 28 26 -4 960 -44 12 -52 -28 -40 12 14 0 1920 -48 -24 -72 -56 -80 8 6 -24 96 -5 3 -4 -2 -4 0 2 0 0 0 2 -8 24 0 8 4 -10 0 4 4 -16 8 112 -16 2 -8 384 -12 -4 -24 0 0 0 2 0 0 2 -2 -4 16 0 4 2 -8 64 -4 4 -20 20 24 4 2 -2 128 -6 2 -20 16 16 4 2 -2 192 -8 0 -20 12 8 4 2 0 96 -4 0 -14 10 8 4 2 -2 448 -20 4 -76 60 56 20 10 -12 192 -4 -2 -4 -12 8 0 0 -4 384 -12 -4 0 -24 16 4 2 -8 192 -8 0 4 -12 8 4 2 -4 192 12 20 -20 -12 8 -12 2 -4 192 12 4 -20 -12 8 -4 2 -4 192 76 20 -84 -12 72 -4 18 -12 64 20 12 -28 -4 24 -4 6 -4 64 20 44 -28 -4 24 -20 6 -4 0 12 36 -22 2 20 -14 6 -2 0 4 10 -8 0 8 -4 2 0 0 4 6 -8 0 8 -2 2 0 0 4 0 -6 2 4 2 2 -2 0 0 4 -6 2 4 0 2 0 192 4 2 -12 -12 0 -4 0 0 0 8 8 -16 0 24 -4 2 0 64 20 4 -28 -4 24 4 6 -4 0 20 4 -24 0 24 4 6 0 0 8 0 -8 0 8 4 2 0 0 5 -1 -6 2 4 4 2 -2 64 24 0 -28 -4 24 12 6 -4 96 46 -10 -42 -6 36 18 14 -6 32 18 -6 -14 -2 12 10 6 -2 192 112 -40 -84 -12 72 76 38 -12 0 6 -2 -4 0 4 4 2 0 0 0 0 0 16 0 0 2 -8 192 -12 12 4 28 -8 4 6 -20 960 -40 0 38 -42 -36 2 10 -6 960 -40 8 -20 -36 -40 4 10 -4 192 -8 2 0 -8 -8 0 2 0 384 -18 6 -4 -16 -16 4 6 0 192 -8 0 8 -8 -8 0 2 0 320 -20 20 10 -14 -12 14 10 -2 576 -8 -6 -20 -36 24 -4 0 -12 96 -1 -1 -4 -6 4 0 0 -2 192 16 -8 -20 -12 8 12 6 -4 960 12 -20 -60 -52 -8 20 10 -12 576 -12 -8 -26 -26 -20 4 2 -4 1920 -48 -24 -68 -100 -40 12 6 -20 640 -16 -8 -32 -16 -24 4 2 0 384 -12 -4 -24 0 -8 4 2 0 192 -8 0 -36 44 24 12 6 -12 192 -8 0 -36 76 24 12 6 -20 128 -6 2 -20 40 16 4 2 -8 64 -4 4 -20 60 24 4 2 -12 0 0 2 -4 20 8 0 0 -4 624 -21 -5 -34 -16 -24 4 4 0 400 -12 -4 -20 -12 -16 2 2 0 192 1 -1 -10 -12 0 -2 0 0 640 -16 -8 -8 -40 48 0 2 -16 1920 -48 -24 -24 -120 80 8 6 -40 96 8 8 -22 -6 36 -10 2 -6 0 8 8 -16 0 32 -8 2 0 2112 -72 -16 -120 -40 -80 16 14 -8 3456 -100 -36 -160 -120 -144 24 14 -16 1152 -36 -12 -59 -27 -46 7 6 -3 1920 -48 -24 -96 -32 -64 8 6 0 640 -16 -8 -32 0 0 0 2 0 240 -2 -2 -11 -15 10 -3 0 -5 960 -20 -12 -32 -56 16 0 2 -16 1920 -48 -24 216 -80 -80 -64 6 0 384 -12 -4 32 -16 -16 -8 2 0 320 -10 0 18 -14 -12 -6 0 -2 192 -6 0 20 -4 -8 -8 0 -4 320 -10 0 -14 18 -12 -2 0 -6 32 -1 1 -4 6 20 -4 0 -2 192 -8 0 -16 32 0 0 2 -8 192 -8 0 -20 28 8 4 2 -4 0 0 0 -8 28 8 4 2 -8 0 0 0 -6 34 4 2 2 -10 384 -12 -4 -22 2 -12 2 2 -2 192 -12 12 28 -12 8 12 6 -4 576 -24 0 -8 -24 -16 8 6 -8 192 -8 0 -2 -10 -4 4 2 -2 768 0 -8 -40 -40 -16 0 2 -8 3840 0 -56 -200 -200 -80 24 18 -40 384 0 -6 -20 -20 -8 4 2 -4 768 -12 -10 -36 -36 -24 4 2 -6 192 -8 0 -20 28 88 -12 2 -4 64 -4 4 -20 52 200 -28 2 -12 0 0 8 -24 72 336 -48 2 -24 0 1 1 -2 4 40 -6 0 -4 0 0 2 -4 12 48 -8 0 -4 1792 -4 -20 -88 -112 0 -8 6 0 768 4 -12 -40 -48 0 0 6 0 192 0 -4 -10 -10 -4 2 2 -2 96 -5 3 1 -5 -2 3 2 -1 96 6 -2 -10 -6 4 2 2 -2 528 9 -11 -35 -29 -2 9 6 -7 480 38 -18 -50 -30 20 22 14 -10 640 12 -12 -40 -40 0 8 6 0 48 -3 3 -14 8 24 -4 2 0 384 2 -6 -20 -24 144 4 2 -24 192 -4 -2 -6 -10 -4 0 0 -2 1344 -24 -16 -56 -72 -16 0 2 -16 2880 -60 -36 -112 -152 -56 12 6 -28 1344 -24 -16 -56 -72 -24 4 2 -12 384 -6 -6 -12 -24 0 0 2 0 64 -4 4 4 -4 0 4 2 0 384 -12 -4 48 -8 -16 -16 2 -8 192 -6 0 12 -4 -8 -6 0 -4 576 -18 0 -23 -3 -22 -5 0 -3 0 0 0 -22 194 4 14 10 -58 64 -4 4 -8 96 0 0 2 -24 0 0 10 -2 154 4 -6 0 -38 384 -12 -4 16 -24 80 0 2 -16 64 -2 0 8 -4 24 0 0 -4 384 -12 -4 48 -24 144 0 2 -24 192 -8 0 4 -12 0 4 2 0 384 -12 -4 16 -24 16 0 2 -8 0 0 6 1 9 2 -5 0 -3 0 0 2 4 16 0 -4 0 -6 1344 -56 8 -60 -44 -56 12 14 -4 192 -4 -2 32 -4 -8 -12 0 -4 1920 -48 -24 296 -40 -80 -104 6 -40 192 -4 -2 24 -8 -8 -8 0 0 960 -20 -10 114 -42 -36 -38 0 -6 640 -16 -8 68 -28 -24 -20 2 -4 0 10 2 -12 0 160 -20 2 0 0 3 -1 -6 4 40 -2 2 -4 0 8 -8 -24 24 80 8 10 -8 0 116 -36 -80 0 80 64 38 0 0 136 -56 -120 40 80 104 58 -40 0 14 -6 -12 4 8 12 6 -4 0 10 -6 -12 8 16 12 6 -8 192 8 -8 -20 -4 88 12 6 -20 960 0 -16 -52 -52 248 12 6 -52 0 0 2 -4 20 80 -12 0 -4 64 -2 0 -4 8 24 -4 0 0 1920 -40 -20 -68 -84 -72 -2 0 -12 576 -12 -6 -19 -23 -22 -1 0 -5 1920 -48 -24 -72 -72 -80 4 6 -8 192 -4 -4 4 -4 -8 -4 2 -4 1920 -68 -12 -60 -84 -72 20 14 -12 0 1 1 -2 4 24 -4 0 -4 0 0 2 -4 12 32 -6 0 -4 64 -4 4 -20 52 72 -12 2 -12 192 -8 0 -20 28 24 -4 2 -4 448 -16 0 -36 28 56 -12 2 -4 288 -8 -4 -2 -18 12 2 2 -6 192 -4 -4 12 -12 8 -4 2 -4 192 -12 12 14 -10 -4 10 6 -2 192 -8 0 36 -12 72 4 2 -12 1344 -24 -16 -36 -84 120 -12 2 -36 960 -20 -12 -20 -60 72 -4 2 -24 640 -16 -8 -20 -36 0 4 2 -8 576 -12 -8 -18 -34 -4 2 2 -2 192 -4 -4 -4 -12 0 4 2 0 192 -4 -4 -6 -10 -4 4 2 -2 192 -4 -4 36 -4 -8 -12 2 -4 192 -4 -4 28 -8 -8 -8 2 0 192 -4 -4 4 -8 -8 -2 2 0 960 -20 -20 22 -42 -36 -10 10 -6 384 -12 -4 16 -8 -16 -8 2 -8 576 -12 -6 0 -16 -24 -10 0 -8 1920 -48 -24 -24 -56 -80 -16 6 -24 1920 -48 -24 72 -40 -80 -48 6 -40 192 -4 -2 8 -4 -8 -6 0 -4 576 -12 -6 -15 -23 -22 -3 0 -5 0 0 0 -8 24 80 -8 2 -8 64 -4 4 -20 20 72 -12 2 -4 192 -8 0 -20 12 24 -4 2 0 192 -6 0 -12 8 8 -4 0 0 0 0 0 -8 24 16 0 2 -8 0 0 2 -4 20 16 -4 0 -4 0 0 2 -4 12 24 -4 0 -4 96 -4 0 -14 10 20 -2 2 -2 64 -4 4 -20 52 40 -4 2 -12 192 -12 12 -60 188 152 -28 6 -36 0 0 14 -18 6 20 -6 4 0 576 -8 -8 -20 -36 24 -4 2 -12 640 -16 -8 24 -40 48 -8 2 -16 192 -6 0 8 -12 8 0 0 -4 640 -20 -4 16 -40 48 0 2 -16 960 -20 -12 -4 -60 168 -12 2 -36 640 -16 -8 24 -40 176 -8 2 -32 640 -16 -8 56 -40 240 -8 2 -40 960 -20 -12 28 -60 296 -20 2 -52 192 -4 -2 12 -12 72 -4 0 -12 1920 -48 -24 156 -100 -40 -44 6 -20 384 -12 -4 20 -20 -8 -4 2 -4 192 -8 0 6 -10 -4 2 2 -2 0 0 0 8 4 0 -4 0 -2 192 -12 12 4 12 -8 -12 6 -4 192 -8 0 -4 4 -8 -4 2 0 192 -6 0 -4 20 -8 -4 0 -8 0 3 11 -9 1 10 -5 2 -1 576 -12 -6 -16 -16 -24 -2 0 -8 1920 -48 -24 -48 -112 32 8 6 -32 640 -16 -8 -8 -40 16 0 2 -8 1152 -12 -12 -52 -60 -24 -4 2 -12 2880 -60 -36 -112 -152 -48 8 6 -32 0 8 16 -36 12 120 -28 2 -12 0 2 4 -8 4 40 -8 0 -4 0 0 4 -16 16 48 -8 2 -4 0 4 4 -16 8 48 -8 2 -8 128 -6 2 -2 -6 -4 2 2 0 160 -7 1 1 -9 -2 3 2 -1 288 -8 -4 -2 -18 0 2 2 0 768 -20 -12 8 -48 0 0 6 0 0 8 0 0 0 96 -16 2 0 192 4 -4 12 -12 72 -20 2 -12 0 6 -2 12 0 48 -12 2 0 0 12 -4 -8 0 96 -8 6 0 192 16 -16 -12 -12 72 4 14 -12 0 14 -10 -4 0 48 4 10 0 640 -16 -8 32 -40 0 -8 2 0 1920 -48 -24 104 -120 80 -24 6 -40 1920 -48 -24 116 -108 8 -36 6 -28 640 -16 -8 24 -40 16 -8 2 -8 192 -4 -2 12 -12 8 -4 0 -4 192 -4 -2 13 -11 2 -5 0 -3 576 -12 -6 28 -36 16 -12 0 -8 192 -4 -2 12 -12 0 -4 0 0 192 -4 -2 18 -10 -4 -6 0 -2 384 -12 -4 16 -24 0 0 2 0 384 -12 -4 0 -24 0 4 2 0 1920 -48 -24 -56 -56 -80 -8 6 -8 0 20 4 -24 0 288 -40 6 0 0 2 0 4 0 8 -4 0 0 0 10 -6 -4 0 16 4 6 0 0 14 -6 -8 0 8 8 6 0 0 20 -4 -16 0 16 8 6 0 0 8 2 -8 0 8 0 2 0 0 32 0 -32 0 32 8 10 0 48 19 -1 -21 -3 18 5 6 -3 1152 -18 -14 -50 -62 -20 2 2 -10 0 2 -2 -2 2 4 2 2 -2 192 -4 -2 4 -12 40 -4 0 -8 192 -4 -2 4 -12 24 -4 0 -6 128 -3 -1 2 -8 16 -2 0 -4 64 -4 4 -20 20 40 -4 2 -4 192 -12 12 -52 36 104 -20 6 -4 0 0 6 -12 20 40 -8 0 -4 384 -12 -4 -24 32 64 -8 2 0 0 0 0 -6 18 4 2 2 -6 0 0 0 -8 20 8 4 2 -6 0 0 8 -24 40 208 -32 2 -16 0 0 8 -24 40 144 -24 2 -16 0 0 8 -24 40 112 -16 2 -16 192 -8 0 -20 60 152 -20 2 -4 64 -4 4 -20 84 264 -36 2 -12 960 -16 -12 -26 -42 -36 -6 2 -6 960 -20 -12 -34 -42 -36 0 2 -6 960 -20 -16 -18 -42 -36 -2 6 -6 576 -8 -8 -20 -36 88 -4 2 -20 192 132 -60 -84 -12 72 76 58 -12 192 20 -12 -20 -12 8 12 10 -4 96 3 -3 -6 -6 0 2 2 0 768 16 -16 -48 -48 0 8 10 0 96 -1 -1 0 -6 20 -4 0 -4 0 3 5 -10 8 72 -14 0 -8 0 4 12 -32 24 176 -32 2 -16 192 -12 12 -60 60 152 -28 6 -4 192 -12 12 -76 76 184 -28 10 -12 0 0 0 0 48 0 0 2 -16 576 -12 -8 -12 -36 24 0 2 -12 192 -4 -4 -4 -12 8 4 2 -4 0 0 12 -32 32 96 -16 2 -8 0 24 -8 -24 8 16 16 10 -8 0 52 -28 -64 40 80 48 30 -40 192 -12 12 20 156 -8 -28 6 -60 192 -12 12 20 380 -8 -28 6 -116 0 0 2 4 40 0 -4 0 -12 0 0 6 8 24 0 -8 0 -10 0 0 8 -36 28 152 -20 6 -4 32 -2 2 -12 8 32 -4 2 0 0 0 2 4 4 0 -4 0 0 0 0 6 8 8 0 -8 0 -2 0 0 6 1 5 2 -5 0 -1 1024 -16 -12 -48 -48 -32 4 2 -8 1248 -23 -15 -55 -57 -42 3 2 -9 1344 -24 -16 -58 -66 -36 2 2 -12 1056 -21 -13 -45 -51 -30 3 2 -9 960 -20 -12 -40 -48 -24 4 2 -8 0 0 8 -24 24 112 -20 2 -8 0 4 12 -32 24 144 -24 2 -16 0 0 8 -24 24 80 -12 2 -8 0 8 0 -8 24 80 -8 2 -24 0 6 -2 -4 16 48 4 2 -16 0 14 -10 -20 16 48 20 10 -16 0 20 -12 -32 24 80 16 14 -24 0 14 -2 -20 8 16 12 6 -8 0 12 -4 -16 8 16 8 6 -8 0 2 0 0 4 8 0 0 -4 192 4 -4 -12 -4 88 4 2 -20 96 1 -3 -4 -6 36 0 2 -6 192 4 -12 -4 -12 72 12 10 -12 192 -4 -4 22 -10 -4 -6 2 -2 1344 -28 -16 -54 -62 -44 2 2 -10 2688 -36 -28 -120 -144 -32 -8 2 -32 640 -8 -6 -28 -36 0 -4 0 -8 112 -1 -1 -5 -7 2 -1 0 -1 48 2 2 -7 -3 18 -5 0 -3 0 1 1 -2 0 8 -2 0 0 0 12 20 -48 24 240 -48 2 -24 4864 -80 -56 -216 -216 -176 8 6 -32 2304 -32 -24 -104 -104 -80 0 2 -16 1152 -24 -14 -44 -60 -24 4 2 -12 384 -6 -4 -12 -24 24 -4 0 -8 1728 -28 -20 -64 -104 48 -8 2 -32 1344 -24 -16 -36 -84 88 -12 2 -28 192 8 -8 -12 -12 8 4 6 -4 192 48 -32 -28 -12 72 20 30 -12 1920 -48 -24 -44 -108 8 4 6 -28 960 -20 -12 -20 -60 40 -4 2 -16 1344 -28 -16 -28 -84 40 -4 2 -20 768 -14 -8 -20 -48 24 -4 0 -12 2112 -32 -24 -68 -132 152 -20 2 -52 192 -4 -2 -3 -11 2 -1 0 -3 576 -12 -6 -4 -36 16 -4 0 -8 192 -4 -2 4 -12 16 -4 0 -4 1728 -36 -18 -59 -75 -62 -3 0 -13 192 4 -4 -12 -12 0 4 2 0 96 -1 -1 -3 -5 -2 -1 0 -1 192 0 -2 -4 -12 0 -4 0 0 960 -12 -12 -36 -60 8 -4 2 -4 1920 -18 -26 -76 -120 0 -4 6 0 2688 -42 -34 -116 -144 -48 4 6 -24 864 -17 -11 -37 -43 -22 3 2 -7 2880 -60 -36 -118 -142 -76 10 6 -26 192 -6 0 -10 10 -4 -2 0 -2 192 -6 0 -10 2 -4 -2 0 0 0 0 2 -2 26 4 -2 0 -6 192 -12 12 -40 240 32 -8 6 -56 480 -7 -5 -12 -30 52 -8 0 -14 0 0 4 -16 16 80 -12 2 -4 0 4 6 -12 4 48 -12 0 -4 1152 -36 -12 -60 -20 -40 4 6 -4 0 2 8 -16 12 56 -12 0 -4 0 10 16 -32 12 120 -28 0 -12 96 9 -1 16 -6 36 -20 0 -6 96 1 -1 0 -6 4 -4 0 -2 416 -10 -6 -12 -24 16 4 2 -8 192 -4 -4 6 -10 -4 -2 2 -2 192 -4 -4 8 -12 0 -2 2 0 0 4 -2 -3 1 2 3 2 -1 960 -12 -12 -44 -52 -16 4 2 -8 576 -8 -8 -28 -28 -16 4 2 -4 0 3 5 -9 1 10 -1 2 -1 0 3 7 -9 1 10 -3 2 -1 1792 -16 -24 -88 -88 -48 8 6 -16 864 -15 -11 -39 -41 -26 3 2 -7 672 -11 -9 -31 -33 -18 3 2 -5 960 -16 -12 -42 -50 -20 2 2 -8 3200 -80 -40 -154 -90 -132 18 10 -6 1920 -48 -24 -94 -46 -76 10 6 -2 1056 -12 -12 -50 -58 -4 -2 2 -14 960 -12 -12 -44 -52 -8 4 2 -12 0 0 6 -20 20 56 -8 2 -6 192 8 8 -24 -8 16 -8 2 -8 0 3 1 -2 4 8 -2 0 -4 0 11 1 -2 20 40 -6 0 -20 0 0 18 -3 13 10 -13 0 -3 400 -6 -4 -16 -20 -8 -2 0 -4 3648 -64 -40 -144 -176 -96 -8 2 -32 624 -8 -6 -26 -34 -4 -4 0 -8 576 0 -6 -28 -36 0 -4 2 0 4608 -60 -52 -200 -240 -96 -8 6 -48 1152 -18 -14 -48 -60 -24 0 2 -12 1920 -34 -22 -80 -92 -56 0 2 -16 1728 -36 -22 -74 -82 -52 8 4 -14 1344 -28 -20 -40 -80 96 8 6 -32 576 -12 -8 -12 -36 56 0 2 -16 528 -13 -7 -16 -30 4 4 2 -8 192 -12 12 -48 40 80 -16 6 -8 192 -12 12 -48 200 80 -16 6 -48 0 0 6 -12 52 40 -8 0 -12 0 0 2 -3 21 10 -3 0 -5 256 -8 0 -12 12 -8 -2 0 -4 192 -6 0 -7 13 -6 -3 0 -5 512 -16 0 -24 0 -16 -4 0 -2 512 -14 -6 -4 -32 0 2 2 0 640 -16 -8 -8 -40 0 2 2 0 960 -20 -14 -20 -60 0 2 4 0 960 -20 -12 -4 -60 72 -12 2 -20 960 -20 -12 -4 -60 104 -12 2 -28 192 -12 12 20 36 -8 -28 6 0 0 0 2 -3 5 10 -3 0 -1 192 28 -4 -44 -4 24 20 10 -12 64 8 0 -12 -4 8 4 2 -2 256 14 6 -36 -16 32 4 2 -8 48 4 6 -10 -2 20 -8 0 -4 16 2 4 -4 0 8 -4 0 -2 0 12 36 -28 12 56 -28 2 -12 0 4 4 -8 0 8 0 2 0 64 4 8 -12 -4 8 -4 2 0 448 12 12 -36 -28 8 -12 2 -4 1536 -22 -16 -52 -96 56 -12 0 -28 1792 -16 -16 -88 -88 -48 0 2 -16 384 6 -10 -20 -24 0 4 6 0 2304 -12 -28 -104 -144 0 -8 6 0 3840 -48 -40 -168 -200 -80 -8 2 -40 0 0 8 -6 10 4 -2 2 -4 0 4 8 -6 18 4 -2 2 -10 768 -16 -10 -16 -48 24 -2 2 -12 2304 -56 -32 -32 -144 96 8 10 -48 1792 -48 -24 -16 -112 0 8 10 0 2304 -56 -32 -32 -144 0 8 10 0 192 -6 0 -7 5 -6 -3 0 -3 448 -14 0 -19 1 -14 -5 0 -3 576 -18 0 -24 4 -16 -8 0 -4 192 -6 0 10 -10 -4 -2 0 -2 256 -8 0 12 -12 -8 -4 0 -2 512 -16 0 0 -24 -16 -2 0 -4 192 -6 0 2 -10 -4 0 0 -2 576 -18 0 4 -24 -16 -4 0 -8 448 -14 0 1 -19 -14 -3 0 -5 576 -18 0 -3 -23 -22 -3 0 -5 192 -6 0 5 -7 -6 -3 0 -3 192 -6 0 13 -7 -6 -5 0 -3 64 -4 4 20 -4 24 4 2 -4 2304 -56 -32 -96 -96 -96 16 10 0 768 -30 0 -32 -28 -32 8 6 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 end nonnegative lrslib-051/ine/mit/mit71-61.ine0000700000175300010010000002272512423577212015710 0ustar avisなしmit71.ine begin 71 61 rational 64 -384 0 192 0 0 768 0 0 -512 0 0 0 -768 0 0 0 0 0 768 0 0 0 0 0 0 0 0 0 0 0 0 0 192 0 0 0 0 0 -384 0 0 0 0 0 0 0 0 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 -6 6 -2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2 6 -6 2 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2 2 2 -2 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2 -2 2 2 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 6 6 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2 -6 -6 -2 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 4 -8 4 -8 16 -8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 -8 4 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 4 0 -4 -8 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 -4 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 4 8 4 -8 -16 -8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 8 4 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 8 -8 0 0 0 -24 24 0 24 -24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -8 8 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 8 8 0 0 0 -24 -24 0 24 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -8 -8 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 16 -64 0 0 0 0 96 0 0 -64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -6 12 3 -12 -8 3 12 -6 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 1 -4 4 1 0 0 -1 -4 4 -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 1 -2 0 -1 4 0 -1 0 -2 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 1 -2 -4 3 -4 8 3 -4 -2 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 1 0 -4 1 0 0 -1 4 0 -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 1 0 0 -3 0 0 3 0 0 -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 1 2 -4 3 4 -8 3 -4 2 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 1 2 0 -1 -4 0 -1 0 2 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 1 4 4 1 0 0 -1 -4 -4 -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 1 6 12 3 12 8 3 12 6 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 2 -8 -2 8 4 8 -4 -8 -8 8 2 -2 -2 10 -16 -4 12 8 -2 -8 2 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 -4 -2 4 0 0 0 0 4 -4 -2 2 -2 6 -4 0 -4 0 2 4 -2 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 -8 2 -8 4 8 4 8 -8 -8 2 2 -2 6 0 -4 4 -8 -2 8 -2 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 -4 2 -4 0 0 0 0 4 4 -2 -2 -2 2 4 0 -4 0 2 -4 2 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 0 -2 0 4 -8 -4 8 0 0 2 -2 -2 2 8 -4 4 -8 -2 0 2 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 0 -2 0 -4 0 4 0 0 0 2 -2 -2 2 0 4 -4 0 -2 0 2 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 0 2 0 4 -8 4 -8 0 0 2 2 -2 -2 8 -4 -4 8 -2 0 -2 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 0 2 0 -4 0 -4 0 0 0 2 2 -2 -2 0 4 4 0 -2 0 -2 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 4 -2 -4 0 0 0 0 -4 4 -2 2 -2 -2 4 0 4 0 2 -4 -2 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 4 2 4 0 0 0 0 -4 -4 -2 -2 -2 -6 -4 0 4 0 2 4 2 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 8 -2 -8 4 8 -4 -8 8 -8 2 -2 -2 -6 0 -4 -4 8 -2 8 2 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 8 2 8 4 8 4 8 8 8 2 2 -2 -10 -16 -4 -12 -8 -2 -8 -2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 -8 -8 4 16 4 -8 -8 4 0 0 0 0 0 0 0 0 0 0 0 -8 24 8 -24 -8 -16 8 16 8 -8 0 0 4 -16 20 4 -8 -8 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 -8 -4 0 4 8 0 -4 0 0 0 0 0 0 0 0 0 0 0 -8 16 0 8 -8 0 0 -16 0 8 0 0 4 -8 -4 4 0 8 0 -4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 -8 0 4 0 -4 0 8 -4 0 0 0 0 0 0 0 0 0 0 0 -8 8 8 -8 8 0 -8 0 -8 8 0 0 4 -8 4 -4 8 0 0 -4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 8 -8 4 -16 4 -8 8 4 0 0 0 0 0 0 0 0 0 0 0 -8 8 -8 8 -8 16 -8 16 -8 -8 0 0 4 0 -12 4 8 -8 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 -4 0 -4 0 0 4 0 0 0 0 0 0 0 0 0 0 0 -8 0 0 8 8 0 0 0 0 -8 0 0 4 0 -4 -4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 -8 8 4 -16 4 8 -8 4 0 0 0 0 0 0 0 0 0 0 0 -8 -8 8 8 -8 16 8 -16 8 -8 0 0 4 0 -12 4 -8 8 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 8 0 4 0 -4 0 -8 -4 0 0 0 0 0 0 0 0 0 0 0 -8 -8 -8 -8 8 0 8 0 8 8 0 0 4 8 4 -4 -8 0 0 -4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 8 -4 0 4 -8 0 -4 0 0 0 0 0 0 0 0 0 0 0 -8 -16 0 8 -8 0 0 16 0 8 0 0 4 8 -4 4 0 -8 0 -4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 8 8 4 16 4 8 8 4 0 0 0 0 0 0 0 0 0 0 0 -8 -24 -8 -24 -8 -16 -8 -16 -8 -8 0 0 4 16 20 4 8 8 0 4 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 4 -16 8 16 -16 4 -8 32 0 0 -16 -32 0 0 32 0 -8 0 4 -16 16 8 -16 0 4 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 4 -8 0 0 8 -4 -8 16 0 0 0 0 0 0 -16 0 8 0 4 -8 0 0 8 0 -4 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 4 0 8 -16 0 4 -8 0 0 0 -16 32 0 0 0 0 -8 0 4 0 -16 8 0 0 4 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 4 0 -8 0 0 4 -8 0 0 0 16 0 0 0 0 0 -8 0 4 0 0 -8 0 0 4 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 4 8 0 0 -8 -4 -8 -16 0 0 0 0 0 0 16 0 8 0 4 8 0 0 -8 0 -4 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 4 16 8 16 16 4 -8 -32 0 0 -16 -32 0 0 -32 0 -8 0 4 16 16 8 16 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 -8 -16 16 8 -8 -16 16 32 0 -32 -16 0 16 0 0 0 0 0 0 -8 24 -8 -16 8 0 24 -64 -8 16 24 32 -8 0 -16 0 0 0 -8 24 -16 -8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 8 -16 -16 8 8 -16 -16 32 0 32 -16 0 -16 0 0 0 0 0 0 -8 8 -8 16 -8 0 24 -32 8 -16 24 -32 8 0 16 0 0 0 -8 8 16 -8 -8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 -8 0 0 -8 8 -16 16 0 0 0 16 0 -16 0 0 0 0 0 0 -8 8 8 0 -8 0 24 -16 -8 0 -24 0 8 0 16 0 0 0 -8 8 0 8 -8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 8 0 0 -8 -8 -16 -16 0 0 0 16 0 16 0 0 0 0 0 0 -8 -8 8 0 8 0 24 16 8 0 -24 0 -8 0 -16 0 0 0 -8 -8 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 -8 16 -16 8 -8 -16 16 -32 0 32 -16 0 16 0 0 0 0 0 0 -8 -8 -8 16 8 0 24 32 -8 -16 24 -32 -8 0 -16 0 0 0 -8 -8 16 -8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 8 16 16 8 8 -16 -16 -32 0 -32 -16 0 -16 0 0 0 0 0 0 -8 -24 -8 -16 -8 0 24 64 8 16 24 32 8 0 16 0 0 0 -8 -24 -16 -8 -8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 -24 24 -8 0 0 0 0 0 0 -24 48 24 -24 -48 0 24 0 0 0 0 0 0 0 0 0 0 0 0 0 24 -48 -24 48 0 24 0 -24 0 0 0 0 -8 24 -24 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 8 -8 -8 8 0 0 0 0 0 0 -24 16 8 8 16 0 -24 0 0 0 0 0 0 0 0 0 0 0 0 0 24 -16 -8 -16 0 -8 0 24 0 0 0 0 -8 8 8 0 0 -8 0 0 0 0 0 0 0 0 0 0 0 0 0 8 8 -8 -8 0 0 0 0 0 0 -24 -16 -8 8 16 0 24 0 0 0 0 0 0 0 0 0 0 0 0 0 24 16 8 -16 0 -8 0 -24 0 0 0 0 -8 -8 8 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 8 24 24 8 0 0 0 0 0 0 -24 -48 -24 -24 -48 0 -24 0 0 0 0 0 0 0 0 0 0 0 0 0 24 48 24 48 0 24 0 24 0 0 0 0 -8 -24 -24 0 0 -8 0 0 0 0 0 0 0 16 -32 16 0 0 0 0 0 0 0 -64 0 128 0 -64 0 64 0 -128 0 0 64 0 0 0 0 0 0 0 0 32 -64 32 0 0 0 -64 128 0 0 -64 0 0 0 0 0 0 0 16 -32 0 16 0 0 0 0 0 0 0 0 0 16 0 -16 0 0 0 0 0 0 0 -64 0 0 0 64 0 64 0 0 0 0 -64 0 0 0 0 0 0 0 0 32 0 -32 0 0 0 -64 0 0 0 64 0 0 0 0 0 0 0 16 0 0 -16 0 0 0 0 0 0 0 0 0 16 32 16 0 0 0 0 0 0 0 -64 0 -128 0 -64 0 64 0 128 0 0 64 0 0 0 0 0 0 0 0 32 64 32 0 0 0 -64 -128 0 0 -64 0 0 0 0 0 0 0 16 32 0 16 0 0 0 0 0 0 0 0 0 0 0 0 16 -32 16 -32 64 -32 0 -32 32 32 -32 0 0 80 -96 -64 16 64 0 0 0 0 0 0 0 0 0 16 -32 0 16 0 0 -64 96 32 -32 0 -32 0 0 0 0 0 0 16 -32 16 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 -16 -32 0 32 0 -32 0 0 32 0 0 80 0 0 -16 -64 0 0 0 0 0 0 0 0 0 16 0 0 -16 0 0 -64 0 0 32 0 32 0 0 0 0 0 0 16 0 -16 0 0 0 0 0 0 0 0 0 0 0 0 0 16 32 16 -32 -64 -32 0 -32 -32 -32 -32 0 0 80 96 64 16 64 0 0 0 0 0 0 0 0 0 16 32 0 16 0 0 -64 -96 -32 -32 0 -32 0 0 0 0 0 0 16 32 16 0 0 0 0 0 0 0 0 32 -32 -32 32 0 -128 128 0 128 -128 0 0 192 -64 -128 0 0 0 -256 128 128 0 0 0 0 0 0 0 0 0 0 0 -64 64 0 0 0 0 160 -128 -32 0 0 0 0 0 0 0 0 0 -32 32 0 0 0 0 0 0 0 0 0 32 32 -32 -32 0 -128 -128 0 128 128 0 0 192 64 128 0 0 0 -256 -128 -128 0 0 0 0 0 0 0 0 0 0 0 -64 -64 0 0 0 0 160 128 32 0 0 0 0 0 0 0 0 0 -32 -32 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 1 -4 6 -4 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 1 -2 0 2 -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 1 0 -2 0 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 1 2 0 -2 -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 1 4 6 4 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 end lrslib-051/ine/mit/mit90-86.ine0000700000175300010010000004436112423577212015720 0ustar avisなしmit90-86.ine digits 300 begin 90 86 rational 1 -4 6 0 -3 0 0 12 0 0 0 0 0 0 -4 0 -4 0 4 0 -12 0 0 12 1 0 0 3 -6 0 -12 0 0 0 0 -12 0 12 0 0 0 0 -12 0 0 0 12 0 -12 12 12 0 0 0 12 0 0 4 -12 6 0 0 -1 -3 -4 0 0 -4 4 -12 0 0 0 4 0 0 0 0 3 0 0 -6 0 4 0 -1 1 -4 6 0 -3 0 0 12 0 0 0 0 0 0 -4 0 4 0 -4 0 -12 0 0 -12 1 0 0 3 -6 0 12 0 0 0 0 12 0 12 0 0 0 0 -12 0 0 0 -12 0 12 -12 12 0 0 0 -12 0 0 -4 12 6 0 0 -1 -3 4 0 0 4 -4 -12 0 0 0 4 0 0 0 0 3 0 0 -6 0 4 0 -1 1 -6 6 4 -1 4 0 4 -2 -8 0 4 0 -2 -4 0 0 0 0 0 -4 0 -8 0 1 4 4 -1 -2 0 0 -8 -2 4 0 0 8 4 0 0 0 -2 4 0 8 0 0 4 0 0 -4 0 -8 0 0 0 -8 0 0 -2 4 0 1 -1 0 0 4 0 0 4 -8 0 0 -4 -2 -2 0 4 -1 4 0 6 4 -4 -2 1 1 -8 6 8 1 12 -4 -4 -4 -16 -4 0 -8 -4 -4 4 0 8 0 8 4 -4 0 0 1 8 8 -1 2 4 0 0 -4 0 4 0 0 -4 -4 -8 -4 4 4 8 0 4 0 0 0 0 -4 -8 0 -4 0 -4 0 0 0 -2 -8 -8 -1 1 0 4 -8 0 0 4 16 8 4 4 4 4 4 0 -1 -8 -4 -6 -8 4 4 -1 1 -10 6 12 3 24 -12 -12 -6 -24 -20 -12 -24 -6 -4 12 4 24 4 24 12 12 24 12 1 12 12 3 6 12 12 24 -6 -12 -12 -12 -24 -12 -12 -24 -12 -6 -12 -24 -24 -12 -12 -12 -12 -12 12 24 24 12 12 12 24 4 12 6 12 24 1 3 4 12 12 -4 -4 -12 -24 -24 -12 -4 -6 -6 -12 -12 3 12 12 6 12 -4 -6 1 1 10 6 12 3 24 12 12 6 24 20 12 24 6 4 12 4 24 4 24 12 12 24 12 1 12 12 3 6 12 12 24 6 12 12 12 24 12 12 24 12 6 12 24 24 12 12 12 12 12 12 24 24 12 12 12 24 4 12 6 12 24 1 3 4 12 12 4 4 12 24 24 12 4 6 6 12 12 3 12 12 6 12 4 6 1 1 8 6 8 1 12 4 4 4 16 4 0 8 4 4 4 0 8 0 8 4 -4 0 0 1 8 8 -1 2 4 0 0 4 0 -4 0 0 4 4 8 4 -4 -4 -8 0 -4 0 0 0 0 -4 -8 0 -4 0 -4 0 0 0 -2 -8 -8 -1 1 0 4 -8 0 0 -4 -16 -8 -4 -4 -4 -4 -4 0 -1 -8 -4 -6 -8 -4 -4 -1 1 8 0 6 3 18 6 6 0 0 14 12 12 0 -2 0 2 0 2 0 0 12 12 6 -1 -6 -6 3 0 0 6 12 -6 0 6 0 0 -6 -6 -12 -6 6 6 12 0 6 0 0 0 0 0 0 -12 0 -6 0 -12 -2 -6 0 6 0 1 -3 -2 -12 6 -4 -4 -6 0 -12 -6 2 0 0 -6 -12 -3 -6 -12 0 -6 -2 -6 -1 1 6 0 2 1 10 -2 2 2 0 6 0 4 -2 -2 0 2 8 -2 -8 0 -4 4 2 -1 -6 -2 -1 0 0 -2 -4 -4 -4 -6 -4 0 -2 -6 -4 2 -4 -2 -4 0 2 -4 4 4 4 0 -8 -4 0 -2 0 4 2 2 0 -2 8 -1 -1 -2 -4 -6 0 0 2 0 4 6 -2 -2 2 -2 0 1 2 4 0 6 2 4 1 1 6 6 4 -1 4 0 -4 2 8 0 -4 0 2 4 0 0 0 0 0 -4 0 -8 0 1 4 4 -1 -2 0 0 -8 2 -4 0 0 -8 -4 0 0 0 2 -4 0 -8 0 0 -4 0 0 -4 0 -8 0 0 0 -8 0 0 -2 4 0 1 -1 0 0 4 0 0 -4 8 0 0 4 2 2 0 -4 -1 4 0 6 4 4 2 1 1 6 0 6 1 6 6 2 -2 0 -2 0 4 2 -2 0 -2 -8 2 8 0 -4 -4 -2 -1 -2 -6 -1 0 0 2 4 -4 4 2 4 0 -2 2 -4 -6 -4 -2 -4 0 -6 4 -4 -4 -4 0 8 4 0 2 0 -4 -2 -2 0 -6 -8 -1 -1 2 -4 -2 0 0 2 0 4 -2 -2 2 -2 6 0 1 6 4 0 2 2 4 1 1 6 6 4 3 0 -4 12 2 8 -12 4 -8 2 4 -4 -4 -8 -4 -8 12 -4 8 -12 1 4 4 3 6 -4 -12 8 2 4 -4 -12 8 12 -4 -8 -4 2 12 -8 8 -4 -12 4 -12 -12 12 -8 8 -4 -12 -4 8 -4 -12 6 4 -8 1 3 -4 -4 4 -4 -4 12 8 -8 -4 4 2 2 -4 4 3 4 -4 6 4 4 2 1 1 6 -2 0 3 12 0 0 -2 -8 8 12 0 -2 0 -4 0 -8 0 -8 -4 12 0 0 1 0 0 3 -2 -4 0 0 6 -4 0 -4 -8 0 0 0 0 6 0 0 -8 0 -4 -4 -4 -4 -4 -8 0 -4 0 -4 0 0 0 -2 0 -8 1 3 0 12 0 4 4 0 -8 0 0 0 -2 -2 0 12 3 0 12 -2 0 0 6 1 1 4 -2 -4 1 8 -8 0 -4 0 8 0 0 -4 0 4 4 -8 -4 -8 4 -4 8 4 1 4 -4 -1 -6 4 -4 -8 4 0 -8 0 -16 0 8 0 -8 -4 0 0 16 8 0 0 0 0 -4 8 8 -4 4 -4 -8 -4 -4 6 4 8 -1 1 4 4 -4 0 0 0 0 0 -8 0 4 4 8 0 -1 4 -4 2 -4 0 -4 -1 1 4 0 -2 -1 6 -6 -2 4 0 2 -4 4 -4 -2 -4 -2 8 -2 -8 0 0 -4 2 -1 -6 2 -1 0 4 2 -4 -2 0 2 -4 0 2 -2 -4 6 2 -2 4 0 -6 4 0 4 -4 0 8 4 -4 -2 4 4 2 -2 0 -2 -8 1 1 2 0 6 0 0 2 0 -4 -2 2 4 -4 6 4 1 2 0 0 -6 -2 -2 -1 1 4 0 2 -1 2 2 -2 0 0 2 -4 -4 0 -2 4 2 0 2 0 0 0 -4 -2 -1 -2 -2 -1 0 -4 -2 -4 -2 0 2 4 0 2 -2 4 -2 2 -2 -4 0 2 -4 0 -4 4 0 0 4 4 2 -4 4 -2 2 0 2 0 1 1 -2 0 2 0 0 2 0 4 -2 2 0 0 -2 4 1 -2 0 0 -2 -2 -2 -1 1 4 -2 0 1 4 0 0 0 -8 0 0 0 0 0 -4 0 0 0 0 -4 -4 0 0 1 0 0 -1 2 -4 0 0 4 0 0 0 8 0 0 0 0 -4 0 0 -8 0 0 0 0 0 4 0 0 4 0 4 0 0 0 -2 0 0 -1 1 0 4 0 0 0 0 8 0 0 0 0 0 0 0 -1 0 -4 2 0 0 -4 -1 1 4 0 2 3 -2 -2 6 0 0 -10 4 -4 0 -2 0 -2 0 -2 0 0 -4 4 -6 -1 -2 -2 3 0 0 -6 4 -2 0 -2 0 0 -6 2 4 2 2 6 -4 0 -2 0 0 0 0 0 0 -4 0 6 0 -4 2 6 0 2 0 1 -3 2 4 2 4 4 -6 0 4 2 2 0 0 2 -4 -3 -2 4 0 -2 -2 -2 -1 1 4 6 0 -3 0 0 -12 0 0 0 0 0 0 4 0 4 0 -4 0 -12 0 0 -12 1 0 0 3 -6 0 12 0 0 0 0 -12 0 -12 0 0 0 0 12 0 0 0 12 0 -12 12 12 0 0 0 -12 0 0 -4 12 6 0 0 -1 -3 4 0 0 -4 4 12 0 0 0 -4 0 0 0 0 3 0 0 -6 0 -4 0 -1 1 4 6 0 -3 0 0 -12 0 0 0 0 0 0 4 0 -4 0 4 0 -12 0 0 12 1 0 0 3 -6 0 -12 0 0 0 0 12 0 -12 0 0 0 0 12 0 0 0 -12 0 12 -12 12 0 0 0 12 0 0 4 -12 6 0 0 -1 -3 -4 0 0 4 -4 12 0 0 0 -4 0 0 0 0 3 0 0 -6 0 -4 0 -1 1 4 6 0 1 -4 -4 4 0 0 -4 0 -8 0 4 -4 0 -8 0 -8 4 4 0 0 1 0 0 -1 2 -4 0 0 0 0 4 0 0 4 -4 -8 -4 0 -4 8 0 4 0 0 0 0 -4 8 0 4 0 4 0 0 0 -2 0 8 -1 1 0 -4 0 0 0 -4 0 8 4 -4 0 0 4 0 -1 0 4 -6 0 -4 0 -1 1 4 0 6 -1 -2 2 -2 -4 0 -6 -4 4 4 -2 -4 -2 -8 -2 8 0 0 -4 2 -1 2 -6 -1 0 4 2 -4 -2 0 -6 -4 0 2 6 -4 -2 2 -2 4 0 2 4 0 4 -4 0 -8 4 -4 -2 4 4 2 -2 0 6 8 1 1 2 0 -2 0 0 2 0 -4 6 2 -4 4 -2 4 1 -6 0 0 2 -2 -2 -1 1 4 -2 4 1 0 8 0 -4 0 -8 0 0 -4 0 4 -4 -8 4 -8 4 -4 -8 -4 1 -4 4 -1 -6 4 4 8 4 0 8 0 -16 0 -8 0 8 -4 0 0 16 -8 0 0 0 0 -4 8 -8 -4 -4 -4 8 4 4 6 -4 8 -1 1 -4 4 4 0 0 0 0 0 8 0 4 4 -8 0 -1 -4 -4 2 4 0 -4 -1 1 4 0 -6 3 6 -6 -6 0 0 2 12 -12 0 2 0 -2 0 -2 0 0 12 -12 -6 -1 6 6 3 0 0 -6 -12 -6 0 -6 0 0 6 6 12 6 6 -6 -12 0 -6 0 0 0 0 0 0 12 0 6 0 12 2 6 0 -6 0 1 -3 2 -12 -6 -4 -4 6 0 12 6 -2 0 0 6 -12 -3 6 -12 0 6 2 -6 -1 1 2 -2 -4 -1 4 -4 0 -2 0 4 -4 0 -2 0 0 0 0 0 0 4 0 0 0 1 4 -4 -1 -2 0 0 0 2 4 4 0 0 0 4 0 -4 2 0 0 0 -4 0 4 0 0 4 0 0 0 0 0 0 0 0 -2 -4 0 1 -1 0 0 4 0 0 0 0 0 4 0 -2 -2 -4 -4 -1 -4 0 -2 4 0 2 1 1 2 0 -6 1 2 -6 -2 -2 0 2 0 -4 2 2 0 2 -8 -2 8 0 -4 4 2 -1 2 6 -1 0 0 -2 -4 -4 4 -2 4 0 2 -2 4 6 -4 2 4 0 6 4 -4 -4 -4 0 8 -4 0 -2 0 4 2 2 0 6 -8 -1 -1 -2 -4 2 0 0 -2 0 -4 2 2 2 -2 -6 0 1 -6 4 0 -2 -2 4 1 1 2 -2 0 3 -4 0 0 -6 8 -8 4 0 -6 0 12 0 -8 0 -8 -4 -4 0 0 1 0 0 3 -2 12 0 0 2 -12 0 4 8 0 0 0 0 2 0 0 8 0 4 -12 4 4 -4 -8 0 12 0 12 0 0 0 -2 0 -8 1 3 0 -4 0 -4 -4 0 8 0 0 0 -6 -6 0 4 3 0 -4 -2 0 0 2 1 1 2 0 -2 -3 2 2 -6 2 0 2 0 -4 -2 -2 4 2 0 -2 0 0 0 -4 -6 -1 -2 2 3 0 -4 6 4 0 4 -2 0 0 6 -2 4 -2 0 6 4 0 -2 0 -4 0 0 0 0 4 -4 6 4 -4 2 -6 0 2 0 -1 3 -2 0 -2 4 -4 -6 0 -4 2 -2 -2 2 2 0 -3 -2 0 0 2 2 0 1 1 2 0 -6 -3 6 -6 -6 6 0 -6 0 12 -6 -2 -12 -2 0 2 0 0 0 -12 6 -1 -6 6 3 0 12 -6 12 0 12 6 0 0 6 6 -12 6 0 6 -12 0 6 0 -12 0 0 0 0 12 12 -6 -12 -12 -2 6 0 6 0 -1 3 2 0 -6 -4 4 -6 0 12 -6 -2 -6 6 -6 0 -3 -6 0 0 6 2 0 1 1 2 0 -2 1 -2 -2 2 2 0 -2 0 -4 -2 -2 0 -2 0 2 0 0 4 4 -2 -1 -2 2 -1 0 0 2 -4 0 -4 2 4 0 -2 2 4 2 0 -2 4 0 2 4 4 -4 -4 0 0 -4 0 2 0 4 -2 -2 0 2 0 -1 -1 2 4 -2 0 0 2 0 -4 -2 -2 -2 2 -2 0 1 -2 -4 0 2 2 0 1 1 2 -2 0 -1 0 -4 0 2 -8 -4 -4 8 2 0 0 -4 0 -4 0 -4 0 0 4 1 0 0 -1 6 0 4 0 2 -4 -4 0 8 0 -4 8 -4 2 0 8 8 -4 0 -4 0 0 -4 0 0 0 4 0 0 -4 4 6 0 0 1 -1 -4 0 0 0 0 0 -8 8 -4 0 2 2 -4 -4 -1 0 0 -2 0 0 2 1 1 2 0 2 -3 -2 2 -6 -2 0 2 0 -4 2 -2 4 -2 0 2 0 0 0 4 6 -1 2 -2 3 0 -4 -6 -4 0 -4 -2 0 0 6 -2 4 -2 0 6 4 0 -2 0 4 0 0 0 0 -4 -4 -6 4 4 -2 6 0 -2 0 -1 3 2 0 2 -4 4 -6 0 -4 2 -2 2 -2 2 0 -3 2 0 0 -2 2 0 1 1 2 -2 0 -1 0 4 0 2 -8 4 -4 -8 2 0 0 4 0 4 0 -4 0 0 -4 1 0 0 -1 6 0 -4 0 2 -4 4 0 8 0 4 -8 4 2 0 -8 8 4 0 -4 0 0 -4 0 0 0 -4 0 0 4 -4 6 0 0 1 -1 4 0 0 0 0 0 -8 -8 4 0 2 2 4 -4 -1 0 0 -2 0 0 2 1 1 2 0 2 1 -6 -2 2 -2 0 -2 0 -4 2 -2 0 2 0 -2 0 0 4 -4 2 -1 2 -2 -1 0 0 -2 4 0 4 2 -4 0 -2 2 4 2 0 -2 4 0 2 -4 -4 4 4 0 0 4 0 -2 0 -4 2 2 0 -2 0 -1 -1 -2 4 2 0 0 2 0 -4 -2 -2 2 -2 -2 0 1 2 -4 0 -2 2 0 1 1 2 -2 4 -1 -4 4 0 -2 0 -4 -4 0 -2 0 0 0 0 0 0 4 0 0 0 1 -4 4 -1 -2 0 0 0 2 4 -4 0 0 0 -4 0 4 2 0 0 0 4 0 4 0 0 4 0 0 0 0 0 0 0 0 -2 4 0 1 -1 0 0 -4 0 0 0 0 0 -4 0 -2 -2 4 -4 -1 4 0 -2 -4 0 2 1 1 2 -2 0 3 -4 0 0 2 -8 -8 4 0 2 0 -4 0 8 0 8 -4 -4 0 0 1 0 0 3 -2 -4 0 0 2 4 0 4 -8 0 0 0 0 2 0 0 -8 0 4 4 4 4 -4 8 0 -4 0 -4 0 0 0 -2 0 8 1 3 0 -4 0 -4 -4 0 -8 0 0 0 2 2 0 4 3 0 -4 -2 0 0 2 1 1 2 0 -2 1 -2 2 -2 2 0 -6 0 -4 -2 2 0 -2 8 2 -8 0 -4 -4 -2 -1 6 2 -1 0 0 2 4 -4 -4 6 -4 0 2 6 4 -2 -4 2 4 0 -2 -4 4 4 4 0 -8 4 0 2 0 -4 -2 -2 0 2 8 -1 -1 2 -4 6 0 0 -2 0 -4 -6 2 -2 2 2 0 1 -2 4 0 -6 -2 4 1 1 2 6 -4 -1 -4 0 -4 -2 -8 0 4 0 -2 4 0 0 0 0 0 -4 0 8 0 1 -4 -4 -1 -2 0 0 8 -2 4 0 0 8 -4 0 0 0 -2 -4 0 8 0 0 4 0 0 -4 0 8 0 0 0 8 0 0 -2 -4 0 1 -1 0 0 -4 0 0 -4 -8 0 0 4 -2 -2 0 4 -1 -4 0 6 -4 4 -2 1 1 2 0 6 -3 -6 -6 -6 -6 0 -6 0 12 6 -2 -12 2 0 -2 0 0 0 12 -6 -1 6 -6 3 0 12 6 -12 0 -12 6 0 0 6 6 -12 6 0 6 -12 0 6 0 12 0 0 0 0 -12 12 6 -12 12 2 -6 0 -6 0 -1 3 -2 0 6 4 -4 -6 0 12 -6 -2 6 -6 -6 0 -3 6 0 0 -6 2 0 1 1 2 6 -4 3 -8 -4 12 -2 -8 4 -4 -8 -2 4 -4 4 -8 4 -8 12 -4 -8 12 1 -4 -4 3 6 -4 12 -8 -2 -4 -4 12 -8 12 -4 -8 -4 -2 12 -8 -8 -4 12 -4 12 12 12 -8 -8 -4 12 -4 -8 4 12 6 -4 -8 1 3 4 -4 -4 4 4 12 -8 -8 -4 4 -2 -2 -4 -4 3 -4 -4 6 -4 4 -2 1 1 2 6 -12 3 0 -12 -12 6 24 -4 12 -24 6 -4 12 -4 24 -4 24 12 12 -24 -12 1 -12 -12 3 6 12 -12 -24 6 12 -12 12 24 -12 -12 -24 -12 6 -12 -24 24 -12 12 12 12 12 12 24 -24 12 -12 12 -24 -4 -12 6 -12 24 1 3 -4 12 -12 4 4 -12 24 -24 -12 -4 6 6 -12 12 3 -12 12 6 -12 -4 6 1 1 0 -2 -4 -3 4 4 0 0 0 4 0 -8 0 0 0 0 0 0 0 4 0 -8 0 1 4 -4 3 2 0 0 8 0 0 -4 4 0 0 4 -8 4 0 0 8 0 -4 -4 0 4 -4 -4 0 -8 0 0 0 8 0 0 -2 4 0 -1 -3 0 0 -4 -4 4 0 0 8 -4 0 0 0 -4 0 3 4 0 2 -4 0 0 -1 1 0 -2 -4 -3 4 -4 0 0 0 -4 0 8 0 0 0 0 0 0 0 4 0 -8 0 1 4 -4 3 2 0 0 8 0 0 4 -4 0 0 -4 8 -4 0 0 -8 0 4 4 0 -4 4 -4 0 -8 0 0 0 8 0 0 -2 4 0 -1 -3 0 0 -4 4 -4 0 0 -8 4 0 0 0 4 0 3 4 0 2 -4 0 0 -1 1 0 -2 -4 1 0 0 0 0 0 0 0 0 0 0 -4 -4 8 4 8 4 4 8 -4 1 4 -4 -1 -6 -4 4 -8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4 -8 8 4 -4 4 -8 4 4 6 4 -8 -1 1 -4 -4 -4 0 0 0 0 0 0 0 0 0 0 0 -1 4 4 2 -4 0 0 -1 1 0 0 -6 -1 2 -2 2 -4 0 6 -4 -4 4 2 -4 2 -8 2 8 0 0 4 -2 -1 -2 6 -1 0 4 -2 4 -2 0 6 -4 0 -2 -6 4 2 2 2 -4 0 -2 4 0 4 -4 0 -8 -4 -4 2 4 -4 -2 2 0 -6 8 1 1 -2 0 2 0 0 -2 0 4 -6 -2 -4 4 2 4 1 6 0 0 -2 2 -2 -1 1 0 -2 0 1 -4 0 0 -4 8 0 0 0 -4 0 4 0 0 0 0 -4 4 0 0 1 0 0 -1 2 4 0 0 0 0 0 0 8 0 0 0 0 0 0 0 -8 0 0 0 0 0 4 0 0 -4 0 -4 0 0 0 -2 0 0 -1 1 0 -4 0 0 0 0 -8 0 0 0 4 4 0 0 -1 0 4 2 0 0 0 -1 1 0 0 -2 -1 -2 -2 2 0 0 -2 -4 4 0 2 4 -2 0 -2 0 0 0 4 2 -1 2 2 -1 0 -4 2 4 -2 0 -2 4 0 -2 2 -4 2 2 2 4 0 -2 -4 0 -4 4 0 0 -4 4 -2 -4 -4 2 -2 0 -2 0 1 1 2 0 -2 0 0 -2 0 -4 2 -2 0 0 2 4 1 2 0 0 2 2 -2 -1 1 0 0 -2 3 -6 2 -6 0 0 -6 4 4 0 2 0 2 0 2 0 0 -4 -4 6 -1 2 2 3 0 0 6 -4 -2 0 2 0 0 6 -2 -4 -2 2 -6 4 0 2 0 0 0 0 0 0 4 0 -6 0 4 -2 -6 0 -2 0 1 -3 -2 4 -2 4 4 6 0 -4 -2 -2 0 0 -2 -4 -3 2 4 0 2 2 -2 -1 1 0 6 -8 1 -4 -4 -4 4 16 -4 0 -8 4 -4 4 0 8 0 8 4 -4 0 0 1 -8 -8 -1 2 4 0 0 4 0 4 0 0 -4 -4 -8 -4 -4 4 8 0 4 0 0 0 0 -4 -8 0 -4 0 -4 0 0 0 -2 8 -8 -1 1 0 4 8 0 0 4 -16 8 4 4 -4 -4 4 0 -1 8 -4 -6 8 4 -4 -1 1 0 0 -6 -1 2 2 -2 4 0 -6 4 4 -4 -2 -4 2 -8 2 8 0 0 4 -2 -1 -2 6 -1 0 4 -2 4 2 0 -6 4 0 2 6 -4 -2 -2 -2 4 0 2 -4 0 -4 4 0 -8 -4 -4 2 4 -4 -2 2 0 -6 8 1 1 -2 0 2 0 0 2 0 -4 6 2 4 -4 -2 -4 1 6 0 0 -2 -2 2 -1 1 0 0 -2 -1 -2 2 -2 0 0 2 4 -4 0 -2 4 -2 0 -2 0 0 0 4 2 -1 2 2 -1 0 -4 2 4 2 0 2 -4 0 2 -2 4 -2 -2 -2 -4 0 2 4 0 4 -4 0 0 -4 4 -2 -4 -4 2 -2 0 -2 0 1 1 2 0 -2 0 0 2 0 4 -2 2 0 0 -2 -4 1 2 0 0 2 -2 2 -1 1 0 -2 4 -3 -4 -4 0 0 0 -4 0 8 0 0 0 0 0 0 0 4 0 8 0 1 -4 4 3 2 0 0 -8 0 0 4 4 0 0 -4 8 -4 0 0 -8 0 4 -4 0 4 -4 -4 0 8 0 0 0 -8 0 0 -2 -4 0 -1 -3 0 0 4 -4 4 0 0 -8 4 0 0 0 4 0 3 -4 0 2 4 0 0 -1 1 0 0 -2 3 -6 -2 6 0 0 6 -4 -4 0 -2 0 2 0 2 0 0 -4 -4 6 -1 2 2 3 0 0 6 -4 2 0 -2 0 0 -6 2 4 2 -2 6 -4 0 -2 0 0 0 0 0 0 4 0 -6 0 4 -2 -6 0 -2 0 1 -3 -2 4 -2 -4 -4 -6 0 4 2 2 0 0 2 4 -3 2 4 0 2 -2 2 -1 1 0 -2 0 1 -4 0 0 4 -8 0 0 0 4 0 4 0 0 0 0 -4 4 0 0 1 0 0 -1 2 4 0 0 0 0 0 0 -8 0 0 0 0 0 0 0 8 0 0 0 0 0 4 0 0 -4 0 -4 0 0 0 -2 0 0 -1 1 0 -4 0 0 0 0 8 0 0 0 -4 -4 0 0 -1 0 4 2 0 0 0 -1 1 0 -2 4 -3 -4 4 0 0 0 4 0 -8 0 0 0 0 0 0 0 4 0 8 0 1 -4 4 3 2 0 0 -8 0 0 -4 -4 0 0 4 -8 4 0 0 8 0 -4 4 0 -4 4 -4 0 8 0 0 0 -8 0 0 -2 -4 0 -1 -3 0 0 4 4 -4 0 0 8 -4 0 0 0 -4 0 3 -4 0 2 4 0 0 -1 1 0 0 2 -1 -6 -6 -2 -4 0 2 4 4 4 -2 -4 2 8 2 -8 0 0 4 -2 -1 6 -2 -1 0 4 -2 4 2 0 2 4 0 2 -2 -4 6 -2 -2 4 0 -6 -4 0 -4 4 0 8 -4 -4 2 4 -4 -2 2 0 2 -8 1 1 -2 0 -6 0 0 2 0 -4 -2 2 -4 4 6 -4 1 -2 0 0 6 -2 2 -1 1 0 0 2 -1 -6 6 2 4 0 -2 -4 -4 -4 2 -4 2 8 2 -8 0 0 4 -2 -1 6 -2 -1 0 4 -2 4 -2 0 -2 -4 0 -2 2 4 -6 2 2 -4 0 6 4 0 4 -4 0 8 -4 -4 2 4 -4 -2 2 0 2 -8 1 1 -2 0 -6 0 0 -2 0 4 2 -2 4 -4 -6 4 1 -2 0 0 6 2 -2 -1 1 0 -2 4 1 -8 0 0 0 0 0 0 0 0 0 -4 4 8 -4 8 4 4 -8 4 1 -4 4 -1 -6 -4 -4 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4 -8 -8 4 4 4 8 -4 -4 6 -4 -8 -1 1 4 -4 4 0 0 0 0 0 0 0 0 0 0 0 -1 -4 4 2 4 0 0 -1 1 0 6 -8 1 -4 4 4 -4 -16 4 0 8 -4 4 4 0 8 0 8 4 -4 0 0 1 -8 -8 -1 2 4 0 0 -4 0 -4 0 0 4 4 8 4 4 -4 -8 0 -4 0 0 0 0 -4 -8 0 -4 0 -4 0 0 0 -2 8 -8 -1 1 0 4 8 0 0 -4 16 -8 -4 -4 4 4 -4 0 -1 8 -4 -6 8 -4 4 -1 1 -2 -2 -4 -1 4 4 0 2 0 -4 4 0 2 0 0 0 0 0 0 4 0 0 0 1 4 -4 -1 -2 0 0 0 -2 -4 -4 0 0 0 -4 0 4 -2 0 0 0 4 0 -4 0 0 4 0 0 0 0 0 0 0 0 -2 -4 0 1 -1 0 0 4 0 0 0 0 0 -4 0 2 2 4 4 -1 -4 0 -2 4 0 -2 1 1 -2 0 -6 -3 6 6 6 -6 0 6 0 -12 6 2 -12 -2 0 2 0 0 0 -12 6 -1 -6 6 3 0 12 -6 12 0 -12 -6 0 0 -6 -6 12 -6 0 -6 12 0 -6 0 12 0 0 0 0 12 12 -6 -12 -12 -2 6 0 6 0 -1 3 2 0 -6 4 -4 6 0 -12 6 2 6 -6 6 0 -3 -6 0 0 6 -2 0 1 1 -2 -2 0 -1 0 4 0 -2 8 4 4 -8 -2 0 0 -4 0 -4 0 -4 0 0 4 1 0 0 -1 6 0 4 0 -2 4 4 0 -8 0 4 -8 4 -2 0 -8 -8 4 0 4 0 0 -4 0 0 0 4 0 0 -4 4 6 0 0 1 -1 -4 0 0 0 0 0 8 -8 4 0 -2 -2 4 4 -1 0 0 -2 0 0 -2 1 1 -2 0 2 -3 -2 -2 6 2 0 -2 0 4 -2 2 4 -2 0 2 0 0 0 4 6 -1 2 -2 3 0 -4 -6 -4 0 4 2 0 0 -6 2 -4 2 0 -6 -4 0 2 0 -4 0 0 0 0 -4 -4 -6 4 4 -2 6 0 -2 0 -1 3 2 0 2 4 -4 6 0 4 -2 2 -2 2 -2 0 -3 2 0 0 -2 -2 0 1 1 -2 0 -2 -3 2 -2 6 -2 0 -2 0 4 2 2 4 2 0 -2 0 0 0 -4 -6 -1 -2 2 3 0 -4 6 4 0 -4 2 0 0 -6 2 -4 2 0 -6 -4 0 2 0 4 0 0 0 0 4 -4 6 4 -4 2 -6 0 2 0 -1 3 -2 0 -2 -4 4 6 0 4 -2 2 2 -2 -2 0 -3 -2 0 0 2 -2 0 1 1 -2 -2 0 -1 0 -4 0 -2 8 -4 4 8 -2 0 0 4 0 4 0 -4 0 0 -4 1 0 0 -1 6 0 -4 0 -2 4 -4 0 -8 0 -4 8 -4 -2 0 8 -8 -4 0 4 0 0 -4 0 0 0 -4 0 0 4 -4 6 0 0 1 -1 4 0 0 0 0 0 8 8 -4 0 -2 -2 -4 4 -1 0 0 -2 0 0 -2 1 1 -2 0 -2 1 -2 2 -2 -2 0 2 0 4 2 2 0 -2 0 2 0 0 4 4 -2 -1 -2 2 -1 0 0 2 -4 0 4 -2 -4 0 2 -2 -4 -2 0 2 -4 0 -2 -4 -4 4 4 0 0 -4 0 2 0 4 -2 -2 0 2 0 -1 -1 2 4 -2 0 0 -2 0 4 2 2 2 -2 2 0 1 -2 -4 0 2 -2 0 1 1 -2 -2 0 3 -4 0 0 -2 8 8 -4 0 -2 0 -4 0 8 0 8 -4 -4 0 0 1 0 0 3 -2 -4 0 0 -2 -4 0 -4 8 0 0 0 0 -2 0 0 8 0 -4 -4 -4 -4 -4 8 0 -4 0 -4 0 0 0 -2 0 8 1 3 0 -4 0 4 4 0 8 0 0 0 -2 -2 0 -4 3 0 -4 -2 0 0 -2 1 1 -2 6 -4 -1 -4 0 4 2 8 0 -4 0 2 -4 0 0 0 0 0 -4 0 8 0 1 -4 -4 -1 -2 0 0 8 2 -4 0 0 -8 4 0 0 0 2 4 0 -8 0 0 -4 0 0 -4 0 8 0 0 0 8 0 0 -2 -4 0 1 -1 0 0 -4 0 0 4 8 0 0 -4 2 2 0 -4 -1 -4 0 6 -4 -4 2 1 1 -2 0 2 1 -6 2 -2 2 0 2 0 4 -2 2 0 2 0 -2 0 0 4 -4 2 -1 2 -2 -1 0 0 -2 4 0 -4 -2 4 0 2 -2 -4 -2 0 2 -4 0 -2 4 4 -4 -4 0 0 4 0 -2 0 -4 2 2 0 -2 0 -1 -1 -2 4 2 0 0 -2 0 4 2 2 -2 2 2 0 1 2 -4 0 -2 -2 0 1 1 -2 6 -4 3 -8 4 -12 2 8 -4 4 8 2 -4 -4 4 -8 4 -8 12 -4 -8 12 1 -4 -4 3 6 -4 12 -8 2 4 4 -12 8 -12 4 8 4 2 -12 8 8 4 -12 4 -12 -12 12 -8 -8 -4 12 -4 -8 4 12 6 -4 -8 1 3 4 -4 -4 -4 -4 -12 8 8 4 -4 2 2 4 4 3 -4 -4 6 -4 -4 2 1 1 -2 0 -6 1 2 6 2 2 0 -2 0 4 -2 -2 0 2 -8 -2 8 0 -4 4 2 -1 2 6 -1 0 0 -2 -4 4 -4 2 -4 0 -2 2 -4 -6 4 -2 -4 0 -6 -4 4 4 4 0 8 -4 0 -2 0 4 2 2 0 6 -8 -1 -1 -2 -4 2 0 0 2 0 4 -2 -2 -2 2 6 0 1 -6 4 0 -2 2 -4 1 1 -2 0 -2 1 -2 -2 2 -2 0 6 0 4 2 -2 0 -2 8 2 -8 0 -4 -4 -2 -1 6 2 -1 0 0 2 4 4 4 -6 4 0 -2 -6 -4 2 4 -2 -4 0 2 4 -4 -4 -4 0 -8 4 0 2 0 -4 -2 -2 0 2 8 -1 -1 2 -4 6 0 0 2 0 4 6 -2 2 -2 -2 0 1 -2 4 0 -6 2 -4 1 1 -2 -2 4 -1 -4 -4 0 2 0 4 4 0 2 0 0 0 0 0 0 4 0 0 0 1 -4 4 -1 -2 0 0 0 -2 -4 4 0 0 0 4 0 -4 -2 0 0 0 -4 0 -4 0 0 4 0 0 0 0 0 0 0 0 -2 4 0 1 -1 0 0 -4 0 0 0 0 0 4 0 2 2 -4 4 -1 4 0 -2 -4 0 -2 1 1 -2 -2 0 3 -4 0 0 6 -8 8 -4 0 6 0 12 0 -8 0 -8 -4 -4 0 0 1 0 0 3 -2 12 0 0 -2 12 0 -4 -8 0 0 0 0 -2 0 0 -8 0 -4 12 -4 -4 -4 -8 0 12 0 12 0 0 0 -2 0 -8 1 3 0 -4 0 4 4 0 -8 0 0 0 6 6 0 -4 3 0 -4 -2 0 0 -2 1 1 -2 0 6 -3 -6 6 6 6 0 6 0 -12 -6 2 -12 2 0 -2 0 0 0 12 -6 -1 6 -6 3 0 12 6 -12 0 12 -6 0 0 -6 -6 12 -6 0 -6 12 0 -6 0 -12 0 0 0 0 -12 12 6 -12 12 2 -6 0 -6 0 -1 3 -2 0 6 -4 4 6 0 -12 6 2 -6 6 6 0 -3 6 0 0 -6 -2 0 1 1 -2 6 -12 3 0 12 12 -6 -24 4 -12 24 -6 4 12 -4 24 -4 24 12 12 -24 -12 1 -12 -12 3 6 12 -12 -24 -6 -12 12 -12 -24 12 12 24 12 -6 12 24 -24 12 -12 -12 -12 -12 12 24 -24 12 -12 12 -24 -4 -12 6 -12 24 1 3 -4 12 -12 -4 -4 12 -24 24 12 4 -6 -6 12 -12 3 -12 12 6 -12 4 -6 1 1 -4 -2 -4 1 8 8 0 4 0 -8 0 0 4 0 4 4 -8 -4 -8 4 -4 8 4 1 4 -4 -1 -6 4 -4 -8 -4 0 8 0 16 0 -8 0 8 4 0 0 -16 -8 0 0 0 0 -4 8 8 -4 4 -4 -8 -4 -4 6 4 8 -1 1 4 4 -4 0 0 0 0 0 8 0 -4 -4 -8 0 -1 4 -4 2 -4 0 4 -1 1 -4 0 -2 -1 6 6 2 -4 0 -2 4 -4 4 2 -4 -2 8 -2 -8 0 0 -4 2 -1 -6 2 -1 0 4 2 -4 2 0 -2 4 0 -2 2 4 -6 -2 2 -4 0 6 -4 0 -4 4 0 8 4 -4 -2 4 4 2 -2 0 -2 -8 1 1 2 0 6 0 0 -2 0 4 2 -2 -4 4 -6 -4 1 2 0 0 -6 2 2 -1 1 -4 -2 0 1 4 0 0 0 8 0 0 0 0 0 -4 0 0 0 0 -4 -4 0 0 1 0 0 -1 2 -4 0 0 -4 0 0 0 -8 0 0 0 0 4 0 0 8 0 0 0 0 0 4 0 0 4 0 4 0 0 0 -2 0 0 -1 1 0 4 0 0 0 0 -8 0 0 0 0 0 0 0 -1 0 -4 2 0 0 4 -1 1 -4 0 2 -1 2 -2 2 0 0 -2 4 4 0 2 4 2 0 2 0 0 0 -4 -2 -1 -2 -2 -1 0 -4 -2 -4 2 0 -2 -4 0 -2 2 -4 2 -2 2 4 0 -2 4 0 4 -4 0 0 4 4 2 -4 4 -2 2 0 2 0 1 1 -2 0 2 0 0 -2 0 -4 2 -2 0 0 2 -4 1 -2 0 0 -2 2 2 -1 1 -4 0 6 -1 -2 -2 2 4 0 6 4 -4 -4 2 -4 -2 -8 -2 8 0 0 -4 2 -1 2 -6 -1 0 4 2 -4 2 0 6 4 0 -2 -6 4 2 -2 2 -4 0 -2 -4 0 -4 4 0 -8 4 -4 -2 4 4 2 -2 0 6 8 1 1 2 0 -2 0 0 -2 0 4 -6 -2 4 -4 2 -4 1 -6 0 0 2 2 2 -1 1 -4 0 2 3 -2 2 -6 0 0 10 -4 4 0 2 0 -2 0 -2 0 0 -4 4 -6 -1 -2 -2 3 0 0 -6 4 2 0 2 0 0 6 -2 -4 -2 -2 -6 4 0 2 0 0 0 0 0 0 -4 0 6 0 -4 2 6 0 2 0 1 -3 2 4 2 -4 -4 6 0 -4 -2 -2 0 0 -2 4 -3 -2 4 0 -2 2 2 -1 1 -4 6 0 1 -4 4 -4 0 0 4 0 8 0 -4 -4 0 -8 0 -8 4 4 0 0 1 0 0 -1 2 -4 0 0 0 0 -4 0 0 -4 4 8 4 0 4 -8 0 -4 0 0 0 0 -4 8 0 4 0 4 0 0 0 -2 0 8 -1 1 0 -4 0 0 0 4 0 -8 -4 4 0 0 -4 0 -1 0 4 -6 0 4 0 -1 1 -4 0 -6 3 6 6 6 0 0 -2 -12 12 0 -2 0 -2 0 -2 0 0 12 -12 -6 -1 6 6 3 0 0 -6 -12 6 0 6 0 0 -6 -6 -12 -6 -6 6 12 0 6 0 0 0 0 0 0 12 0 6 0 12 2 6 0 -6 0 1 -3 2 -12 -6 4 4 -6 0 -12 -6 2 0 0 -6 12 -3 6 -12 0 6 -2 6 -1 1 -4 -2 4 1 0 -8 0 4 0 8 0 0 4 0 4 -4 -8 4 -8 4 -4 -8 -4 1 -4 4 -1 -6 4 4 8 -4 0 -8 0 16 0 8 0 -8 4 0 0 -16 8 0 0 0 0 -4 8 -8 -4 -4 -4 8 4 4 6 -4 8 -1 1 -4 4 4 0 0 0 0 0 -8 0 -4 -4 8 0 -1 -4 -4 2 4 0 4 -1 1 -6 0 2 1 10 2 -2 -2 0 -6 0 -4 2 2 0 2 8 -2 -8 0 -4 4 2 -1 -6 -2 -1 0 0 -2 -4 4 4 6 4 0 2 6 4 -2 4 2 4 0 -2 4 -4 -4 -4 0 -8 -4 0 -2 0 4 2 2 0 -2 8 -1 -1 -2 -4 -6 0 0 -2 0 -4 -6 2 2 -2 2 0 1 2 4 0 6 -2 -4 1 1 -6 -2 0 3 12 0 0 2 8 -8 -12 0 2 0 -4 0 -8 0 -8 -4 12 0 0 1 0 0 3 -2 -4 0 0 -6 4 0 4 8 0 0 0 0 -6 0 0 8 0 4 4 4 4 -4 -8 0 -4 0 -4 0 0 0 -2 0 -8 1 3 0 12 0 -4 -4 0 8 0 0 0 2 2 0 -12 3 0 12 -2 0 0 -6 1 1 -6 0 6 1 6 -6 -2 2 0 2 0 -4 -2 2 0 -2 -8 2 8 0 -4 -4 -2 -1 -2 -6 -1 0 0 2 4 4 -4 -2 -4 0 2 -2 4 6 4 2 4 0 6 -4 4 4 4 0 8 4 0 2 0 -4 -2 -2 0 -6 -8 -1 -1 2 -4 -2 0 0 -2 0 -4 2 2 -2 2 -6 0 1 6 4 0 2 -2 -4 1 1 -6 6 4 3 0 4 -12 -2 -8 12 -4 8 -2 -4 -4 -4 -8 -4 -8 12 -4 8 -12 1 4 4 3 6 -4 -12 8 -2 -4 4 12 -8 -12 4 8 4 -2 -12 8 -8 4 12 -4 12 12 12 -8 8 -4 -12 -4 8 -4 -12 6 4 -8 1 3 -4 -4 4 4 4 -12 -8 8 4 -4 -2 -2 4 -4 3 4 -4 6 4 -4 -2 1 1 -8 0 6 3 18 -6 -6 0 0 -14 -12 -12 0 2 0 2 0 2 0 0 12 12 6 -1 -6 -6 3 0 0 6 12 6 0 -6 0 0 6 6 12 6 -6 -6 -12 0 -6 0 0 0 0 0 0 -12 0 -6 0 -12 -2 -6 0 6 0 1 -3 -2 -12 6 4 4 6 0 12 6 -2 0 0 6 12 -3 -6 -12 0 -6 2 6 -1 end lrslib-051/ine/test/0000700000175300010010000000000012423577213014202 5ustar avisなしlrslib-051/ine/test/cross4.ine0000700000175300010010000000040312423577212016113 0ustar avisなしcross4.ine H-representation begin 16 5 integer 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 end lrslib-051/ine/test/cyclic17_8.ine0000700000175300010010000000210012423577212016537 0ustar avisなしcylic17-8.ine begin 17 9 integer 1 -72 516 -4608 36156 -294912 2349516 -18874368 150850236 1 -63 381 -3087 20901 -151263 1049061 -7411887 51738501 1 -54 264 -1944 10956 -69984 410124 -2519424 14971836 1 -45 165 -1125 4917 -28125 130845 -703125 3370917 1 -36 84 -576 1596 -9216 27084 -147456 445116 1 -27 21 -243 21 -2187 -3219 -19683 -85659 1 -18 -24 -72 -564 -288 -9204 -1152 -142404 1 -9 -51 -9 -699 -9 -9771 -9 -144699 1 0 -60 0 -708 0 -9780 0 -144708 1 9 -51 9 -699 9 -9771 9 -144699 1 18 -24 72 -564 288 -9204 1152 -142404 1 27 21 243 21 2187 -3219 19683 -85659 1 36 84 576 1596 9216 27084 147456 445116 1 45 165 1125 4917 28125 130845 703125 3370917 1 54 264 1944 10956 69984 410124 2519424 14971836 1 63 381 3087 20901 151263 1049061 7411887 51738501 1 72 516 4608 36156 294912 2349516 18874368 150850236 end lrslib-051/ine/test/diamond.ine0000700000175300010010000000023712423577212016316 0ustar avisなしdiamond.ine 93.7.6 Unit diamond centred at origin Last two inequalities define vertex (-1/2,0) begin 4 3 rational 1/2 -1 -1 1/2 -1 1 1/2 1 -1 1/2 1 1 end lrslib-051/ine/test/in0.ine0000700000175300010010000000023412423577212015366 0ustar avisなしin0.ine begin 8 6 integer 9 -2 -3 -3 -2 -2 9 -2 0 0 2 0 9 -2 -1 -1 -1 -3 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 end nonegative lrslib-051/ine/test/in1.ine0000700000175300010010000000133112423577212015366 0ustar avisなしin1.ine begin 34 5 integer 1 -299 -534 815 807 1 -887 -399 -867 -543 1 683 632 958 -181 1 -756 681 -658 470 1 -99 135 -921 -825 1 -795 -874 -286 732 1 43 -567 588 -143 1 -955 414 -159 -378 1 -235 -695 947 166 1 957 853 -194 -258 1 487 -914 -100 -991 1 -515 -786 -169 200 1 954 -758 -178 985 1 505 -970 400 -211 1 714 997 401 661 1 -475 618 459 775 1 -219 704 -111 -876 1 152 -390 -629 984 1 -240 -621 -62 583 1 -76 531 -606 -676 1 490 -519 -240 -109 1 -635 860 -798 825 1 5 49 781 895 1 495 490 -774 866 1 -78 69 853 861 1 -340 228 -374 498 1 390 -12 -524 -408 1 -382 -42 -376 264 1 -299 -731 -283 -518 1 892 -581 654 -439 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 end nonnegative printcobasis 10 lrslib-051/ine/test/in2.ine0000700000175300010010000000041712423577212015373 0ustar avisなしin2.ine begin 16 6 integer 1 -1 0 -1 0 0 1 -1 0 0 0 -1 1 0 -1 -1 0 0 1 0 -1 0 -1 0 1 0 0 0 -1 -1 0 -1 1 0 0 1 0 1 -1 0 1 0 0 0 0 -1 1 1 0 0 1 1 -1 0 0 1 0 1 0 -1 2 -1 -1 -1 -1 -1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 end nonnegative lrslib-051/ine/test/in3.ine0000700000175300010010000000036512423577212015376 0ustar avisなしin3.ine begin 13 7 integer 0 1 -1 0 1 0 0 0 0 -1 1 0 0 1 0 -1 1 0 1 0 0 0 -1 0 1 0 1 0 0 0 1 -1 0 0 1 0 1 1 0 -1 0 0 0 0 0 0 -1 1 1 0 1 0 1 0 -1 0 0 0 0 0 1 -1 1 0 0 1 1 0 0 -1 0 0 0 0 1 1 -1 0 1 0 -1 0 1 0 12 -1 -1 -1 -1 -1 -1 end lrslib-051/ine/test/in4.ine0000700000175300010010000000042412423577212015373 0ustar avisなしin4.ine begin 12 8 integer 10 -8 -1 -2 -3 -3 -2 -2 10 8 -2 -2 0 0 2 0 10 -11 3 -2 -1 -1 -1 -3 5 23 -4 -2 -3 0 0 1 27 5 -4 -1 3 9 11 -12 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 end nonnegative lrslib-051/ine/test/in5.ine0000700000175300010010000000057612423577212015404 0ustar avisなしin5.ine begin 14 10 integer 10 2 3 -8 -1 -2 -3 -3 -2 -2 10 -6 33 8 -2 -2 0 0 2 0 10 93 3 -11 3 -2 -1 -1 -1 -3 5 -9 21 23 -4 -2 -3 0 0 1 27 31 23 5 -4 -1 3 9 11 -12 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 end nonnegative verbose lrslib-051/ine/test/in6.ine0000700000175300010010000000120512423577212015373 0ustar avisなしin6.ine begin 23 11 integer 1 1 1 1 1 1 1 1 1 1 0 2 -2 -3 8 1 2 3 3 2 2 -9 3 6 -3 -8 2 2 0 0 -2 0 -9 4 -9 -3 1 -3 2 1 1 1 3 -9 5 9 -2 -2 4 2 3 0 0 -1 -5 6 -3 -2 -5 4 1 -3 -9 -1 2 -7 7 -9 -3 -5 -2 2 4 -2 4 -1 -7 8 -8 -4 5 -2 2 4 -2 4 -1 -7 9 -7 -5 -5 -2 2 4 -2 4 -1 -7 10 -6 -6 5 -2 2 4 -2 4 -1 -7 11 -5 -7 -5 -2 2 4 -2 4 -1 -7 12 -4 -8 5 -2 2 4 -2 4 -1 -7 13 -3 -9 -5 -2 2 4 -2 4 -1 -7 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 end nonnegative lrslib-051/ine/test/in7.ine0000700000175300010010000000150612423577212015400 0ustar avisなしin7.ine begin 20 11 integer 10000 -915 -828 -303 -632 -786 -231 -12 -568 -351 -308 10000 -930 -217 -480 -704 -700 -91 -441 -927 -33 -330 10000 -765 -616 -962 -274 -276 -39 -924 -541 -444 -838 10000 -747 -470 -506 -329 -481 -425 -679 -140 -764 -960 10000 -243 -664 -760 -333 -456 -686 -717 -137 -721 -833 10000 -682 -107 -380 -720 -382 -920 -164 -220 -640 -262 10000 -145 -942 -873 -570 -973 -365 -685 -932 -424 -928 10000 -183 -612 -402 -869 -681 -539 -941 -513 -290 -622 10000 -669 -694 -353 -941 -209 -572 -580 -822 -964 -725 10000 -188 -646 -87 -552 -330 -19 -976 -609 -965 -158 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 end nonnegative lrslib-051/ine/test/kkd38_6.ine0000700000175300010010000000453712423577212016063 0ustar avisなしkkd38_6.ine digits 120 begin 38 7 integer 2919394390774395218459334 -4379091595292464054287507 -36492430237104184038520181 -253987324572060483286422939 -1691789494531258045567157717 -11149182918946980113429731347 -73511950112254277868261780941 7 -21 -133 -777 -4669 -29001 -184813 7 -14 -112 -728 -4564 -28784 -184372 7 -7 -77 -595 -4109 -27307 -179717 7 0 -28 -336 -2884 -21840 -156148 7 7 35 91 -301 -7133 -75445 7 14 112 728 4396 25424 141772 7 21 203 1617 12131 88641 638723 7 28 308 2800 23996 200368 1650188 7 35 427 4319 41251 384335 3535267 7 42 560 6216 65324 670992 6815180 7 49 707 8533 97811 1098349 12216107 7 56 868 11312 140476 1712816 20717068 7 63 1043 14595 195251 2570043 33602843 7 70 1232 18424 264236 3735760 52521932 7 77 1435 22841 349699 5286617 79549555 7 84 1652 27888 454076 7311024 117255692 7 91 1883 33607 579971 9909991 168778163 7 98 2128 40040 730156 13197968 237900748 7 105 2387 47229 907571 17303685 329136347 7 112 2660 55216 1115324 22370992 447815180 7 119 2947 64043 1356691 28559699 600178027 7 126 3248 73752 1635116 36046416 793474508 7 133 3563 84385 1954211 45025393 1036066403 7 140 3892 95984 2317756 55709360 1337536012 7 147 4235 108591 2729699 68330367 1708799555 7 154 4592 122248 3194156 83140624 2162225612 7 161 4963 136997 3715411 100413341 2711758603 7 168 5348 152880 4297916 120443568 3373047308 7 175 5747 169939 4946291 143549035 4163578427 7 182 6160 188216 5665324 170070992 5102815180 7 189 6587 207753 6459971 200375049 6212340947 7 196 7028 228592 7335356 234852016 7516007948 7 203 7483 250775 8296771 273918743 9040090963 7 210 7952 274344 9349676 318018960 10813446092 7 217 8435 299341 10499699 367624117 12867674555 7 224 8932 325808 11752636 423234224 15237291532 -2919394390774395218459333 4379091595292464054287507 36492430237104184038520181 253987324572060483286422939 1691789494531258045567157717 11149182918946980113429731347 73511950112254277868261780941 end lrslib-051/ine/test/kq20_11.ine0000700000175300010010000000153312423577212015761 0ustar avisなしkq20_11.ine H-representation nonnegative begin 10 11 integer 10000 -915 -828 -303 -632 -786 -231 -12 -568 -351 -308 10000 -930 -217 -480 -704 -700 -91 -441 -927 -33 -330 10000 -765 -616 -962 -274 -276 -39 -924 -541 -444 -838 10000 -747 -470 -506 -329 -481 -425 -679 -140 -764 -960 10000 -243 -664 -760 -333 -456 -686 -717 -137 -721 -833 10000 -682 -107 -380 -720 -382 -920 -164 -220 -640 -262 10000 -145 -942 -873 -570 -973 -365 -685 -932 -424 -928 10000 -183 -612 -402 -869 -681 -539 -941 -513 -290 -622 10000 -669 -694 -353 -941 -209 -572 -580 -822 -964 -725 10000 -188 -646 -87 -552 -330 -19 -976 -609 -965 -158 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 end lrslib-051/ine/test/kq20_11a.ine0000700000175300010010000000153312423577212016122 0ustar avisなしkq20_11.ine H-representation nonnegative begin 10 11 integer 10000 -915 -828 -303 -632 -786 -231 -12 -568 -351 -308 10000 -930 -217 -480 -704 -700 -91 -441 -927 -33 -330 10000 -765 -616 -962 -274 -276 -39 -924 -541 -444 -838 10000 -747 -470 -506 -329 -481 -425 -679 -140 -764 -960 10000 -243 -664 -760 -333 -456 -686 -717 -137 -721 -833 10000 -682 -107 -380 -720 -382 -920 -164 -220 -640 -262 10000 -145 -942 -873 -570 -973 -365 -685 -932 -424 -928 10000 -183 -612 -402 -869 -681 -539 -941 -513 -290 -622 10000 -669 -694 -353 -941 -209 -572 -580 -822 -964 -725 10000 -188 -646 -87 -552 -330 -19 -976 -609 -965 -158 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 end lrslib-051/ine/test/metric40_11.ine0000700000175300010010000000205212423577213016631 0ustar avisなしmetric40-11.ine *metric polytope on 5 points H-representation begin 40 11 integer 0 0 0 1 1 0 0 0 0 0 -1 0 0 1 0 1 0 0 0 0 -1 0 0 0 1 1 0 0 0 0 -1 0 0 0 1 0 0 1 0 0 -1 0 0 0 0 1 0 1 0 0 -1 0 0 0 0 0 1 1 0 0 -1 0 0 0 0 0 0 -1 0 0 1 0 0 1 0 0 0 0 0 0 -1 1 0 0 0 0 0 1 0 0 0 0 0 0 -1 1 0 0 1 0 0 -1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 -1 1 1 0 0 0 0 0 -1 0 1 0 1 0 2 0 0 0 0 -1 -1 0 -1 0 0 0 -1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 1 0 0 0 1 -1 0 0 0 0 0 1 0 0 -1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 -1 1 0 0 0 0 0 -1 1 0 1 0 0 2 -1 -1 0 0 -1 0 0 0 0 0 2 0 0 0 0 -1 0 -1 0 -1 0 0 -1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 -1 0 1 0 0 0 1 0 -1 0 0 0 0 1 0 2 -1 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 1 -1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 -1 0 0 1 -1 0 0 0 0 1 0 0 2 -1 0 -1 0 0 -1 0 0 0 0 2 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 1 1 0 -1 0 0 0 0 0 0 0 1 0 1 0 -1 0 0 1 -1 0 0 1 0 0 0 0 0 0 1 0 0 -1 0 0 1 0 0 0 2 0 -1 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 1 1 0 0 -1 0 1 0 -1 0 0 1 0 0 0 0 2 0 0 -1 -1 0 0 0 0 0 -1 2 0 -1 -1 0 0 0 0 -1 0 0 2 0 0 0 0 0 0 0 -1 -1 -1 end lrslib-051/ine/test/metric80_16.ine0000700000175300010010000000546012423577213016650 0ustar avisなしmetric80_16.ine H-representation *metric polytope on 6 points linearity 3 1 2 3 begin 80 16 integer 0 1 1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 -1 0 0 0 0 0 0 0 0 -1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 -1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 -1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 -1 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 -1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 -1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 -1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 -1 0 0 0 0 0 1 -1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 -1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 -1 0 0 0 0 1 0 -1 0 0 0 0 0 0 0 0 1 0 0 0 0 -1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 -1 0 0 0 0 -1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 -1 0 0 0 0 0 0 0 0 0 1 6 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 -1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 1 0 0 0 0 0 6 0 0 0 0 0 -1 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 -1 0 0 1 0 0 0 0 6 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 0 0 0 0 -1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 -1 0 0 0 0 0 0 0 0 0 1 0 0 -1 0 0 1 0 0 0 6 0 0 0 0 0 0 -1 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 -1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 -1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 -1 0 0 6 0 0 0 0 0 0 -1 0 -1 0 0 0 0 -1 0 0 0 0 0 0 0 0 -1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 -1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 -1 0 6 0 0 0 0 0 0 0 -1 -1 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 1 -1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 -1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 -1 6 0 0 0 0 0 0 0 0 0 -1 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 -1 1 0 1 0 0 6 0 0 0 0 0 0 0 0 0 -1 0 -1 0 -1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 -1 0 0 0 0 0 0 0 0 0 0 0 1 0 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 0 1 0 1 0 6 0 0 0 0 0 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 -1 1 0 0 1 6 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 1 1 6 -1 -1 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 -1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 -1 0 0 0 1 0 0 0 0 0 0 0 0 0 6 -1 0 -1 0 0 0 -1 0 0 0 0 0 0 0 0 0 1 0 -1 0 0 0 1 0 0 0 0 0 0 0 0 6 -1 0 0 -1 0 0 0 -1 0 0 0 0 0 0 0 0 1 0 0 -1 0 0 0 1 0 0 0 0 0 0 0 6 -1 0 0 0 -1 0 0 0 -1 0 0 0 0 0 0 0 1 0 0 0 -1 0 0 0 1 0 0 0 0 0 0 6 0 -1 -1 0 0 0 0 0 0 -1 0 0 0 0 0 6 0 -1 0 -1 0 0 0 0 0 0 -1 0 0 0 0 6 0 -1 0 0 -1 0 0 0 0 0 0 -1 0 0 0 6 0 0 -1 -1 0 0 0 0 0 0 0 0 -1 0 0 6 0 0 -1 0 -1 0 0 0 0 0 0 0 0 -1 0 6 0 0 0 -1 -1 0 0 0 0 0 0 0 0 0 -1 end lrslib-051/ine/test/mit31_20.ine0000700000175300010010000000274512423577213016150 0ustar avisなしmit31-20.ine H-representation digits 80 begin 31 20 integer 1 6 -12 -3 0 0 0 12 8 0 0 -12 -3 0 0 0 6 0 -1 0 1 -2 1 -2 2 0 4 -4 4 2 0 -2 0 -1 2 -2 0 0 0 -1 1 0 3 0 0 -2 0 0 2 0 -4 0 0 1 0 2 0 -2 0 1 1 0 -1 2 2 0 0 0 0 -2 0 -2 0 -1 2 0 0 0 0 1 1 0 3 -2 2 0 0 0 0 -2 0 2 0 -1 -2 0 0 0 0 1 1 2 1 0 0 -2 0 0 -2 0 0 0 0 1 0 0 0 2 0 -1 1 2 5 -2 -2 4 -4 -4 0 -2 8 -2 0 -1 -2 -2 0 4 0 -1 1 2 -3 2 2 0 -4 -4 4 2 0 2 0 -1 -2 2 0 0 0 -1 1 2 1 -2 2 0 -4 4 -4 2 0 -2 0 -1 2 2 0 0 0 -1 1 4 -1 -2 -2 4 0 0 -4 2 0 2 0 -1 2 0 0 -4 0 1 1 4 -5 0 0 -2 0 0 2 0 4 0 0 1 0 -2 0 -2 0 1 1 6 -11 -2 -2 4 4 4 8 -2 -8 -2 0 -1 -2 2 0 4 0 -1 1 -6 -12 -3 0 0 0 -12 -8 0 0 -12 -3 0 0 0 -6 0 -1 0 1 -4 -4 -1 0 0 0 0 0 0 0 4 1 0 0 0 4 0 1 0 1 -2 0 1 0 0 0 4 0 0 0 0 1 0 0 0 -2 0 -1 0 1 -2 4 -3 0 0 0 -4 8 0 0 4 -3 0 0 0 -2 0 -1 0 1 0 4 -1 0 0 0 0 0 0 0 -4 1 0 0 0 0 0 1 0 1 0 0 3 0 0 0 0 0 0 0 0 -3 0 0 0 0 0 1 0 1 2 4 -3 0 0 0 4 -8 0 0 4 -3 0 0 0 2 0 -1 0 1 2 0 1 0 0 0 -4 0 0 0 0 1 0 0 0 2 0 -1 0 1 4 -4 -1 0 0 0 0 0 0 0 4 1 0 0 0 -4 0 1 0 1 -6 -11 -2 -2 -4 -4 -4 -8 -2 -8 -2 0 -1 -2 -2 0 -4 0 -1 1 -4 -5 0 0 2 0 0 -2 0 4 0 0 1 0 2 0 2 0 1 1 -4 -1 -2 -2 -4 0 0 4 2 0 2 0 -1 2 0 0 4 0 1 1 -2 -3 2 2 0 4 4 -4 2 0 2 0 -1 -2 -2 0 0 0 -1 1 -2 1 0 0 2 0 0 2 0 0 0 0 1 0 0 0 -2 0 -1 1 -2 1 2 -2 0 -4 4 4 -2 0 2 0 -1 2 -2 0 0 0 -1 1 -2 5 -2 -2 -4 4 4 0 -2 8 -2 0 -1 -2 2 0 -4 0 -1 1 0 3 2 -2 0 0 0 0 2 0 -2 0 -1 -2 0 0 0 0 1 1 0 3 0 0 2 0 0 -2 0 -4 0 0 1 0 -2 0 2 0 1 1 2 1 2 -2 0 4 -4 -4 -2 0 2 0 -1 2 2 0 0 0 -1 end lrslib-051/ine/test/trunc10.ine0000700000175300010010000000601712423577213016202 0ustar avisなしtrunc10.ine * delta= 1/10 eps0=1/20 scut=1/40 pcut=1/40 * begin 112 11 integer 3 5 -5 -5 -5 -5 -5 -5 -5 -5 20 3 -5 -5 -5 -5 -5 -5 -5 -5 -5 20 3 0 10 0 0 0 0 0 0 0 20 3 0 20 0 0 0 0 0 0 0 10 3 5 20 -5 -5 -5 -5 -5 -5 -5 -5 3 -5 20 -5 -5 -5 -5 -5 -5 -5 -5 3 0 20 10 0 0 0 0 0 0 0 3 0 20 0 10 0 0 0 0 0 0 3 0 20 0 0 10 0 0 0 0 0 3 0 20 0 0 0 10 0 0 0 0 3 0 20 0 0 0 0 10 0 0 0 3 0 20 0 0 0 0 0 10 0 0 3 0 20 0 0 0 0 0 0 10 0 3 0 0 10 0 0 0 0 0 0 20 3 0 0 20 0 0 0 0 0 0 10 3 5 -5 20 -5 -5 -5 -5 -5 -5 -5 3 -5 -5 20 -5 -5 -5 -5 -5 -5 -5 3 0 10 20 0 0 0 0 0 0 0 3 0 0 20 10 0 0 0 0 0 0 3 0 0 20 0 10 0 0 0 0 0 3 0 0 20 0 0 10 0 0 0 0 3 0 0 20 0 0 0 10 0 0 0 3 0 0 20 0 0 0 0 10 0 0 3 0 0 20 0 0 0 0 0 10 0 3 0 0 0 10 0 0 0 0 0 20 3 0 0 0 20 0 0 0 0 0 10 3 5 -5 -5 20 -5 -5 -5 -5 -5 -5 3 -5 -5 -5 20 -5 -5 -5 -5 -5 -5 3 0 10 0 20 0 0 0 0 0 0 3 0 0 10 20 0 0 0 0 0 0 3 0 0 0 20 10 0 0 0 0 0 3 0 0 0 20 0 10 0 0 0 0 3 0 0 0 20 0 0 10 0 0 0 3 0 0 0 20 0 0 0 10 0 0 3 0 0 0 20 0 0 0 0 10 0 3 0 0 0 0 10 0 0 0 0 20 3 0 0 0 0 20 0 0 0 0 10 3 5 -5 -5 -5 20 -5 -5 -5 -5 -5 3 -5 -5 -5 -5 20 -5 -5 -5 -5 -5 3 0 10 0 0 20 0 0 0 0 0 3 0 0 10 0 20 0 0 0 0 0 3 0 0 0 10 20 0 0 0 0 0 3 0 0 0 0 20 10 0 0 0 0 3 0 0 0 0 20 0 10 0 0 0 3 0 0 0 0 20 0 0 10 0 0 3 0 0 0 0 20 0 0 0 10 0 3 0 0 0 0 0 10 0 0 0 20 3 0 0 0 0 0 20 0 0 0 10 3 5 -5 -5 -5 -5 20 -5 -5 -5 -5 3 -5 -5 -5 -5 -5 20 -5 -5 -5 -5 3 0 10 0 0 0 20 0 0 0 0 3 0 0 10 0 0 20 0 0 0 0 3 0 0 0 10 0 20 0 0 0 0 3 0 0 0 0 10 20 0 0 0 0 3 0 0 0 0 0 20 10 0 0 0 3 0 0 0 0 0 20 0 10 0 0 3 0 0 0 0 0 20 0 0 10 0 3 0 0 0 0 0 0 10 0 0 20 3 0 0 0 0 0 0 20 0 0 10 3 5 -5 -5 -5 -5 -5 20 -5 -5 -5 3 -5 -5 -5 -5 -5 -5 20 -5 -5 -5 3 0 10 0 0 0 0 20 0 0 0 3 0 0 10 0 0 0 20 0 0 0 3 0 0 0 10 0 0 20 0 0 0 3 0 0 0 0 10 0 20 0 0 0 3 0 0 0 0 0 10 20 0 0 0 3 0 0 0 0 0 0 20 10 0 0 3 0 0 0 0 0 0 20 0 10 0 3 0 0 0 0 0 0 0 10 0 20 3 0 0 0 0 0 0 0 20 0 10 3 5 -5 -5 -5 -5 -5 -5 20 -5 -5 3 -5 -5 -5 -5 -5 -5 -5 20 -5 -5 3 0 10 0 0 0 0 0 20 0 0 3 0 0 10 0 0 0 0 20 0 0 3 0 0 0 10 0 0 0 20 0 0 3 0 0 0 0 10 0 0 20 0 0 3 0 0 0 0 0 10 0 20 0 0 3 0 0 0 0 0 0 10 20 0 0 3 0 0 0 0 0 0 0 20 10 0 3 0 0 0 0 0 0 0 0 10 20 3 0 0 0 0 0 0 0 0 20 10 3 5 -5 -5 -5 -5 -5 -5 -5 20 -5 3 -5 -5 -5 -5 -5 -5 -5 -5 20 -5 3 0 10 0 0 0 0 0 0 20 0 3 0 0 10 0 0 0 0 0 20 0 3 0 0 0 10 0 0 0 0 20 0 3 0 0 0 0 10 0 0 0 20 0 3 0 0 0 0 0 10 0 0 20 0 3 0 0 0 0 0 0 10 0 20 0 3 0 0 0 0 0 0 0 10 20 0 1 10 -10 -10 -10 -10 -10 -10 -10 -10 -10 1 -10 -10 -10 -10 -10 -10 -10 -10 -10 -10 39 40 0 0 0 0 0 0 0 0 0 39 -40 0 0 0 0 0 0 0 0 0 1 0 8 0 0 0 0 0 0 0 0 1 0 0 8 0 0 0 0 0 0 0 1 0 0 0 8 0 0 0 0 0 0 1 0 0 0 0 8 0 0 0 0 0 1 0 0 0 0 0 8 0 0 0 0 1 0 0 0 0 0 0 8 0 0 0 1 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 0 0 0 8 0 1 0 0 0 0 0 0 0 0 0 8 7 0 -8 0 0 0 0 0 0 0 0 7 0 0 -8 0 0 0 0 0 0 0 7 0 0 0 -8 0 0 0 0 0 0 7 0 0 0 0 -8 0 0 0 0 0 7 0 0 0 0 0 -8 0 0 0 0 7 0 0 0 0 0 0 -8 0 0 0 7 0 0 0 0 0 0 0 -8 0 0 7 0 0 0 0 0 0 0 0 -8 0 7 0 0 0 0 0 0 0 0 0 -8 end printcobasis startingcobasis 82 83 84 85 86 87 88 89 90 112 lrslib-051/ine/test/trunc7.ine0000700000175300010010000000230012423577213016117 0ustar avisなしtrunc7.ine * delta= 1/7 eps0=1/14 scut=1/28 pcut=1/28 * begin 58 8 integer 6 7 -7 -7 -7 -7 -7 28 6 -7 -7 -7 -7 -7 -7 28 3 0 7 0 0 0 0 14 3 0 14 0 0 0 0 7 6 7 28 -7 -7 -7 -7 -7 6 -7 28 -7 -7 -7 -7 -7 3 0 14 7 0 0 0 0 3 0 14 0 7 0 0 0 3 0 14 0 0 7 0 0 3 0 14 0 0 0 7 0 3 0 0 7 0 0 0 14 3 0 0 14 0 0 0 7 6 7 -7 28 -7 -7 -7 -7 6 -7 -7 28 -7 -7 -7 -7 3 0 7 14 0 0 0 0 3 0 0 14 7 0 0 0 3 0 0 14 0 7 0 0 3 0 0 14 0 0 7 0 3 0 0 0 7 0 0 14 3 0 0 0 14 0 0 7 6 7 -7 -7 28 -7 -7 -7 6 -7 -7 -7 28 -7 -7 -7 3 0 7 0 14 0 0 0 3 0 0 7 14 0 0 0 3 0 0 0 14 7 0 0 3 0 0 0 14 0 7 0 3 0 0 0 0 7 0 14 3 0 0 0 0 14 0 7 6 7 -7 -7 -7 28 -7 -7 6 -7 -7 -7 -7 28 -7 -7 3 0 7 0 0 14 0 0 3 0 0 7 0 14 0 0 3 0 0 0 7 14 0 0 3 0 0 0 0 14 7 0 3 0 0 0 0 0 7 14 3 0 0 0 0 0 14 7 6 7 -7 -7 -7 -7 28 -7 6 -7 -7 -7 -7 -7 28 -7 3 0 7 0 0 0 14 0 3 0 0 7 0 0 14 0 3 0 0 0 7 0 14 0 3 0 0 0 0 7 14 0 1 7 -7 -7 -7 -7 -7 -7 1 -7 -7 -7 -7 -7 -7 -7 27 28 0 0 0 0 0 0 27 -28 0 0 0 0 0 0 5 0 28 0 0 0 0 0 5 0 0 28 0 0 0 0 5 0 0 0 28 0 0 0 5 0 0 0 0 28 0 0 5 0 0 0 0 0 28 0 5 0 0 0 0 0 0 28 23 0 -28 0 0 0 0 0 23 0 0 -28 0 0 0 0 23 0 0 0 -28 0 0 0 23 0 0 0 0 -28 0 0 23 0 0 0 0 0 -28 0 23 0 0 0 0 0 0 -28 end lrslib-051/ine/test/tsp5.ine0000700000175300010010000000163412423577213015601 0ustar avisなしtsp5.ine H-representation linearity 5 1 2 3 4 5 begin 25 11 rational -2 1 1 1 1 0 0 0 0 0 0 -2 1 0 0 0 1 1 1 0 0 0 -3 1 1 1 0 1 1 0 1 0 0 1 -1 0 -1 0 0 -1 0 0 1 0 1 -1 -1 0 0 -1 0 0 0 0 1 1 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 -1 -1 0 0 -1 0 0 0 0 0 1 0 0 0 0 -1 0 0 0 0 0 2 -1 0 0 0 -1 -1 0 0 0 0 -1 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 -1 1 1 1 0 0 0 0 0 0 0 -2 1 1 1 0 1 1 0 0 0 0 2 -1 -1 -1 0 0 0 0 0 0 0 1 0 0 -1 0 0 0 0 0 0 0 2 -1 0 -1 0 0 -1 0 0 0 0 3 -1 -1 -1 0 -1 -1 0 0 0 0 -1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 -1 1 1 0 0 1 0 0 0 0 0 1 0 -1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 -1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 end lrslib-051/ine/truss2.ine0000700000175300010010000000363712423577213015176 0ustar avisなしtruss *example H-representation begin 12 7 rational 0 -1107121100 -7094932300 -509288900 1581271400 -2991877000 121979199 0 -1107129000 7032470300 34962123 1920391300 -2980227600 193723910 0 1475107100 151545650 -3894269700 384905410 5325424500 -2983380400 0 990727340 29341662 -1558120400 283839350 961245970 4544466400 0 -1839194200 389088800 -7787625500 -3393884800 -3104674100 -993856820 0 990727340 29341662 -1558120400 283839350 961245970 4544466400 0 105491630 -60552183 -2291864200 6864742100 1279634800 -3346341200 0 -1223784100 35749168 -1440369600 930993540 -3004955300 -25679281 0 -935892200 -129544890 1528908700 2954193399 -2958306400 427239050 0 29586836 -16982840 -642790400 1925328000 358894280 -938535540 0 0 0 0 0 0 0 0 990727340 29341662 -1558120400 283839350 961245970 4544466400 end lrslib-051/lpdemo.c0000700000175300010010000000577212423577213014112 0ustar avisなし/* lpdemo.c lrslib lp demo code */ /* last modified: June 20, 2001 */ /* Copyright: David Avis 2001, avis@cs.mcgill.ca */ /* Demo driver for lp code using lrs */ /* This program does lps on a set of generated cubes */ #include #include #include "lrslib.h" #define MAXCOL 1000 /* maximum number of colums */ long num[MAXCOL]; long den[MAXCOL]; void makecube (lrs_dic *P, lrs_dat *Q); int main (int argc, char *argv[]) { lrs_dic *P; /* structure for holding current dictionary and indices */ lrs_dat *Q; /* structure for holding static problem data */ lrs_mp_vector output; /* one line of output:ray,vertex,facet,linearity */ long i; long m; /* number of constraints in the problem */ long n; /* number of variables in the problem + 1 */ long col; /* output column index for dictionary */ /* Global initialization - done once */ if ( !lrs_init ("\n*lpdemo:")) return 1; /* generate cubes with dimension d */ for(i=1;i<=2;i++) { n=10; m=18; /* number of rows for cube dimension d */ /* allocate and init structure for static problem data */ Q = lrs_alloc_dat ("LRS globals"); if (Q == NULL) return 1; Q->m=m; Q->n=n; Q->lponly=TRUE; /* we do not want all vertices generated! */ output = lrs_alloc_mp_vector (Q->n); P = lrs_alloc_dic (Q); /* allocate and initialize lrs_dic */ if (P == NULL) return 1; /* Build polyhedron: constraints and objective */ makecube(P,Q); /* Solve the LP */ if (!lrs_solve_lp(P,Q)) return 1; /* Print output */ prat ("\nObjective value = ", Q->objnum, Q->objden); for (col = 0; col < Q->n; col++) if (lrs_getsolution (P, Q, output, col)) lrs_printoutput (Q, output); /* free space : do not change order of next lines! */ lrs_clear_mp_vector (output, Q->n); lrs_free_dic (P,Q); /* deallocate lrs_dic */ lrs_free_dat (Q); /* deallocate lrs_dat */ } /* end of loop for i=1 ... */ lrs_close ("lpdemo:"); printf("\n"); return 0; } /* end of main */ /* code to generate unit cube and objective function */ void makecube (lrs_dic *P, lrs_dat *Q) /* generate H-representation of a unit hypercube */ /* with dimension n-1 */ { long num[MAXCOL]; long den[MAXCOL]; long row, j; long m=Q->m; long n=Q->n; for (row=1;row<=m;row++) { /* set up a cube */ for(j=0;j #include #include "lrslib.h" int main (int argc, char *argv[]) { lrs_main(argc,argv); printf("\n"); return 0; } lrslib-051/lrs.cpp0000700000175300010010000000025712423577213013763 0ustar avisなし#include #include #include "lrslib.h" #include int main (int argc, char *argv[]) { lrs_main(argc,argv); printf("\n"); return 0; } lrslib-051/lrsgmp.c0000700000175300010010000002770312423577213014134 0ustar avisなし/* lrsgmp.c library code for lrs extended precision arithmetic */ /* Version 4.1, April 3, 2001 */ /* Copyright: David Avis 2001, avis@cs.mcgill.ca */ /* For gmp package */ /* derived from lrslong.c and lrsmp.c */ #ifdef PLRS #include #include #endif #include #include #include #include "lrsgmp.h" long lrs_digits; /* max permitted no. of digits */ long lrs_record_digits; /* this is the biggest acheived so far. */ #define MAXINPUT 1000 /*max length of any input rational */ void lcm (lrs_mp a, lrs_mp b) /* a = least common multiple of a, b; b is preserved */ { lrs_mp temp1,temp2; lrs_alloc_mp(temp1); lrs_alloc_mp(temp2); copy (temp1, a); copy (temp2, b); gcd (temp1,temp2); exactdivint (a, temp1, temp2); /* temp2=a/temp1 there is no remainder */ mulint (temp2, b, a); lrs_clear_mp(temp1); lrs_clear_mp(temp2); } /* end of lcm */ /***************************************************************/ /* */ /* Package of routines for rational arithmetic */ /* (Built on top of package for multiprecision arithmetic */ /* */ /***************************************************************/ void reduce (lrs_mp Na, lrs_mp Da) /* reduces Na/Da by gcd(Na,Da) */ { lrs_mp Nb, Db, Nc, Dc; lrs_alloc_mp(Nb); lrs_alloc_mp(Db); lrs_alloc_mp(Nc); lrs_alloc_mp(Dc); copy (Nb, Na); copy (Db, Da); storesign (Nb, POS); storesign (Db, POS); copy (Nc, Na); copy (Dc, Da); gcd (Nb, Db); /* Nb is the gcd(Na,Da) */ exactdivint (Nc, Nb, Na); exactdivint (Dc, Nb, Da); lrs_clear_mp(Nb); lrs_clear_mp(Db); lrs_clear_mp(Nc); lrs_clear_mp(Dc); } void reduceint (lrs_mp Na, lrs_mp Da) /* divide Na by Da and return */ { lrs_mp temp1; lrs_alloc_mp(temp1); copy (temp1, Na); exactdivint (temp1, Da, Na); lrs_clear_mp(temp1); } long comprod (lrs_mp Na, lrs_mp Nb, lrs_mp Nc, lrs_mp Nd) /* +1 if Na*Nb > Nc*Nd */ /* -1 if Na*Nb < Nc*Nd */ /* 0 if Na*Nb = Nc*Nd */ { long i; lrs_mp temp1,temp2; lrs_alloc_mp(temp1); lrs_alloc_mp(temp2); mulint (Na, Nb, temp1); mulint (Nc, Nd, temp2); i=mpz_cmp(temp1,temp2); lrs_clear_mp(temp1); lrs_clear_mp(temp2); if (i > 0) return (ONE); else if (i < 0) return (-ONE); else return (ZERO); } void linrat (lrs_mp Na, lrs_mp Da, long ka, lrs_mp Nb, lrs_mp Db, long kb, lrs_mp Nc, lrs_mp Dc) /* computes Nc/Dc = ka*Na/Da +kb* Nb/Db and reduces answer by gcd(Nc,Dc) */ { lrs_mp temp1; lrs_alloc_mp(temp1); mulint (Na, Db, Nc); mulint (Da, Nb, temp1); linint (Nc, ka, temp1, kb); /* Nc = (ka*Na*Db)+(kb*Da*Nb) */ mulint (Da, Db, Dc); /* Dc = Da*Db */ reduce (Nc, Dc); lrs_clear_mp(temp1); } void divrat (lrs_mp Na, lrs_mp Da, lrs_mp Nb, lrs_mp Db, lrs_mp Nc, lrs_mp Dc) /* computes Nc/Dc = (Na/Da) /( Nb/Db ) and reduce */ { mulint (Na, Db, Nc); mulint (Da, Nb, Dc); reduce (Nc, Dc); } void mulrat (lrs_mp Na, lrs_mp Da, lrs_mp Nb, lrs_mp Db, lrs_mp Nc, lrs_mp Dc) /* computes Nc/Dc=(Na/Da)*(Nb/Db) and reduce */ { mulint (Na, Nb, Nc); mulint (Da, Db, Dc); reduce (Nc, Dc); } /***************************************************************/ /* */ /* Conversion and I/O functions */ /* */ /***************************************************************/ void atomp (const char *s, lrs_mp a) /*convert string to lrs_mp integer */ /* based on atoi KR p.58 */ { long diff, ten, i, sig; lrs_mp mpone; lrs_alloc_mp (mpone); itomp (ONE, mpone); ten = 10L; for (i = 0; s[i] == ' ' || s[i] == '\n' || s[i] == '\t'; i++); /*skip white space */ sig = POS; if (s[i] == '+' || s[i] == '-') /* sign */ sig = (s[i++] == '+') ? POS : NEG; itomp (0L, a); while (s[i] >= '0' && s[i] <= '9') { diff = s[i] - '0'; linint (a, ten, mpone, diff); i++; } storesign (a, sig); if (s[i]) { fprintf (stderr, "\nIllegal character in number: '%s'\n", s + i); exit (1); } lrs_clear_mp (mpone); } /* end of atomp */ void atoaa (const char *in, char *num, char *den) /* convert rational string in to num/den strings */ { long i, j; for (i = 0; in[i] != '\0' && in[i] != '/'; i++) num[i] = in[i]; num[i] = '\0'; den[0] = '\0'; if (in[i] == '/') { for (j = 0; in[j + i + 1] != '\0'; j++) den[j] = in[i + j + 1]; den[j] = '\0'; } } /* end of atoaa */ void rattodouble (lrs_mp a, lrs_mp b, double *x) /* convert lrs_mp rati onal to double */ { double y; y=mpz_get_d (a); (*x)=mpz_get_d (b); (*x) = y / (*x); } #ifdef PLRS /* read a rational or integer and convert to lrs_mp with base BASE */ /* returns true if denominator is not one */ /* returns 999 if premature end of file */ long plrs_readrat (lrs_mp Na, lrs_mp Da, const char* rat) { char in[MAXINPUT], num[MAXINPUT], den[MAXINPUT]; strcpy(in, rat); atoaa (in, num, den); /*convert rational to num/dem strings */ atomp (num, Na); if (den[0] == '\0') { itomp (1L, Da); return (FALSE); } atomp (den, Da); return (TRUE); } #endif long readrat (lrs_mp Na, lrs_mp Da) /* read a rational or integer and convert to lrs_mp */ /* returns true if denominator is not one */ { char in[MAXINPUT], num[MAXINPUT], den[MAXINPUT]; if(fscanf (lrs_ifp, "%s", in)==EOF) { fprintf (lrs_ofp, "\nInvalid rational input"); exit(1); } if(!strcmp(in,"end")) /*premature end of input file */ { return (999L); } atoaa (in, num, den); /*convert rational to num/dem strings */ atomp (num, Na); if (den[0] == '\0') { itomp (1L, Da); return (FALSE); } atomp (den, Da); return (TRUE); } #ifdef PLRS string prat (char name[], lrs_mp Nin, lrs_mp Din) /*reduce and print Nin/Din */ { //create stream to collect output stringstream ss; string str; char * buff; lrs_mp temp1, temp2; lrs_alloc_mp(temp1); lrs_alloc_mp(temp2); copy (temp1, Nin); copy (temp2, Din); reduce (temp1, temp2); ss< using namespace std; #endif #include "gmp.h" /***********/ /* defines */ /***********/ /* this is number of longwords. Increasing this won't cost you that much since only variables other than the A matrix are allocated this size. Changing affects running time in small but not very predictable ways. */ #define MAX_DIGITS 255L /* this is in decimal digits, you pay in memory if you increase this, unless you override by a line with digits n before the begin line of your file. */ #define DEFAULT_DIGITS 100L #ifndef B64 /*32 bit machines */ #define FORMAT "%4.4u" #define MAXD 2147483647L #define BASE 10000L #define BASE_DIG 4 #define INTSIZE 8L #define BIT "32bit" #else /* 64 bit machines */ #define MAXD 9223372036854775807L #define BASE 1000000000L #define FORMAT "%9.9u" #define BASE_DIG 9 #define INTSIZE 16L #define BIT "64bit" #endif #define MAXINPUT 1000 /*max length of any input rational */ #define POS 1L #define NEG -1L #ifndef TRUE #define TRUE 1L #endif #ifndef FALSE #define FALSE 0L #endif #define ONE 1L #define TWO 2L #define ZERO 0L /**********************************/ /* MACROS */ /* dependent on mp implementation */ /**********************************/ #define addint(a, b, c) mpz_add((c),(a),(b)) #define changesign(a) mpz_neg((a),(a)) #define copy(a, b) mpz_set(a,b) #define decint(a, b) mpz_sub((a),(a),(b)) #define divint(a, b, c) mpz_tdiv_qr((c),(a),(a),(b)) #define exactdivint(a, b, c) mpz_divexact((c),(a),(b)) /*known there is no remainder */ #define getfactorial(a, b) mpz_fac_ui( (a), (b)) #define mp_greater(a, b) (mpz_cmp((a),(b))>0 ? ONE : ZERO) #define gcd(a,b) mpz_gcd((a),(a),(b)) #define itomp(in, a) mpz_set_si( (a) , (in) ) #define mptoi(a) mpz_get_si( (a) ) #define mptodouble(a) mpz_get_d ( (a) ) #define mulint(a, b, c) mpz_mul((c),(a),(b)) #define one(a) (mpz_cmp_si((a),ONE) == 0 ? ONE : ZERO) #define negative(a) (mpz_sgn(a) < 0 ? ONE : ZERO) #define normalize(a) (void) 0 #define positive(a) (mpz_sgn(a) > 0 ? ONE : ZERO) #define sign(a) (mpz_sgn(a) < 0 ? NEG : POS) #define subint(a, b, c) mpz_sub((c),(a),(b)) #define zero(a) (mpz_sgn(a) == 0 ? ONE : ZERO) /* * convert between decimal and machine (longword digits). Notice lovely * implementation of ceiling function :-) */ #define DEC2DIG(d) ( (d) % BASE_DIG ? (d)/BASE_DIG+1 : (d)/BASE_DIG) #define DIG2DEC(d) ((d)*BASE_DIG) #ifndef OMIT_SIGNALS #include #include /* labs */ #include #define errcheck(s,e) if ((long)(e)==-1L){ perror(s);exit(1);} #endif #define CALLOC(n,s) xcalloc(n,s,__LINE__,__FILE__) /*************/ /* typedefs */ /*************/ typedef mpz_t lrs_mp; /* type lrs_mp holds one long integer */ typedef mpz_t lrs_mp_t; /* for GMP same as lrs_mp for MP *lrs_mp */ typedef mpz_t *lrs_mp_vector; typedef mpz_t **lrs_mp_matrix; /*********************/ /*global variables */ /*********************/ extern long lrs_digits; /* max permitted no. of digits */ extern long lrs_record_digits; /* this is the biggest acheived so far. */ #include extern FILE *lrs_ifp; /* input file pointer */ extern FILE *lrs_ofp; /* output file pointer */ /*********************************************************/ /* Initialization and allocation procedures - must use! */ /******************************************************* */ long lrs_mp_init (long dec_digits, FILE * lrs_ifp, FILE * lrs_ofp); /* max number of decimal digits, fps */ #define lrs_alloc_mp(a) (mpz_init (a) ) #define lrs_clear_mp(a) (mpz_clear (a) ) lrs_mp_vector lrs_alloc_mp_vector (long n); /* allocate lrs_mp_vector for n+1 lrs_mp numbers */ lrs_mp_matrix lrs_alloc_mp_matrix (long m, long n); /* allocate lrs_mp_matrix for m+1 x n+1 lrs_mp */ void lrs_clear_mp_vector (lrs_mp_vector p, long n); /* clear lrs_mp_vector for n+1 lrs_mp numbers */ void lrs_clear_mp_matrix (lrs_mp_matrix p, long m, long n); /* clear m by n lrs_mp_matrix */ /*********************************************************/ /* Core library functions - depend on mp implementation */ /******************************************************* */ void atomp (const char s[], lrs_mp a); /* convert string to lrs_mp integer */ long compare (lrs_mp a, lrs_mp b); /* a ? b and returns -1,0,1 for <,=,> */ void linint (lrs_mp a, long ka, lrs_mp b, long kb); /* compute a*ka+b*kb --> a */ #ifdef PLRS string pmp (char name[], lrs_mp a); /* print the long precision integer a */ string prat (char name[], lrs_mp Nt, lrs_mp Dt); /* reduce and print Nt/Dt */ long plrs_readrat (lrs_mp Na, lrs_mp Da, const char * rat); /* take a rational number and convert to lrs_mp */ #else void pmp (char name[], lrs_mp a); /* print the long precision integer a */ void prat (char name[], lrs_mp Nt, lrs_mp Dt); /* reduce and print Nt/Dt */ #endif void readmp (lrs_mp a); /* read an integer and convert to lrs_mp */ long readrat (lrs_mp Na, lrs_mp Da); /* read a rational or int and convert to lrs_mp */ void reduce (lrs_mp Na, lrs_mp Da); /* reduces Na Da by gcd(Na,Da) */ void storesign(lrs_mp Na, long sa); /* change sign of Na to sa=POS/NEG */ /*********************************************************/ /* Standard arithmetic & misc. functions */ /* should be independent of mp implementation */ /******************************************************* */ void atoaa (const char in[], char num[], char den[]); /* convert rational string in to num/den strings */ long atos (char s[]); /* convert s to integer */ long comprod (lrs_mp Na, lrs_mp Nb, lrs_mp Nc, lrs_mp Nd); /* +1 if Na*Nb > Nc*Nd,-1 if Na*Nb > Nc*Nd else 0 */ void divrat (lrs_mp Na, lrs_mp Da, lrs_mp Nb, lrs_mp Db, lrs_mp Nc, lrs_mp Dc); /* computes Nc/Dc = (Na/Da) /( Nb/Db ) and reduce */ void linrat (lrs_mp Na, lrs_mp Da, long ka, lrs_mp Nb, lrs_mp Db, long kb, lrs_mp Nc, lrs_mp Dc); void lcm (lrs_mp a, lrs_mp b); /* a = least common multiple of a, b; b is saved */ void mulrat (lrs_mp Na, lrs_mp Da, lrs_mp Nb, lrs_mp Db, lrs_mp Nc, lrs_mp Dc); /* computes Nc/Dc=(Na/Da)*(Nb/Db) and reduce */ long myrandom (long num, long nrange); /* return a random number in range 0..nrange-1 */ void notimpl (char s[]); /* bail out - help! */ void rattodouble (lrs_mp a, lrs_mp b, double *x); /* convert lrs_mp rational to double */ void reduceint (lrs_mp Na, lrs_mp Da); /* divide Na by Da and return it */ void reducearray (lrs_mp_vector p, long n); /* find gcd of p[0]..p[n-1] and divide through by */ void scalerat (lrs_mp Na, lrs_mp Da, long ka); /* scales rational by ka */ /**********************************/ /* Miscellaneous functions */ /******************************** */ void lrs_getdigits (long *a, long *b); /* send digit information to user */ void stringcpy (char *s, char *t); /* copy t to s pointer version */ #ifndef __STDC__ void *calloc (); void *malloc (); #endif void *xcalloc (long n, long s, long l, char *f); void lrs_default_digits_overflow (); /* end of lrs_mp.h (vertex enumeration using lexicographic reverse search) */ lrslib-051/lrslib.c0000700000175300010010000043464412457656005014131 0ustar avisなし/* lrslib.c library code for lrs */ /* last modified: 2012.10.23 */ /* modified by Gary Roumanis for multithread plrs compatability */ /* truncate needs mod to supress last pivot */ /* need to add a test for non-degenerate pivot step in reverse I guess */ /* Copyright: David Avis 2003,2011 avis@cs.mcgill.ca */ /* This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include #include #include "lrslib.h" /* Globals; these need to be here, rather than lrslib.h, so they are not multiply defined. */ FILE *lrs_cfp; /* output file for checkpoint information */ FILE *lrs_ifp; /* input file pointer */ FILE *lrs_ofp; /* output file pointer */ static unsigned long dict_count, dict_limit, cache_tries, cache_misses; /* Variables and functions global to this file only */ static long lrs_checkpoint_seconds = 0; static long lrs_global_count = 0; /* Track how many lrs_dat records are allocated */ static lrs_dat_p *lrs_global_list[MAX_LRS_GLOBALS + 1]; static lrs_dic *new_lrs_dic (long m, long d, long m_A); static void cache_dict (lrs_dic ** D_p, lrs_dat * global, long i, long j); static long check_cache (lrs_dic ** D_p, lrs_dat * global, long *i_p, long *j_p); static void save_basis (lrs_dic * D, lrs_dat * Q); static void lrs_dump_state (); static void pushQ (lrs_dat * global, long m, long d, long m_A); #ifdef TIMES static void ptimes (); static double get_time(); #endif /*******************************/ /* signals handling */ /*******************************/ #ifdef SIGNALS static void checkpoint (); static void die_gracefully (); static void setup_signals (); static void timecheck (); #endif /*******************************/ /* functions for external use */ /*******************************/ /*******************************************************/ /* lrs_main is driver for lrs.c does H/V enumeration */ /* showing function calls intended for public use */ /*******************************************************/ long lrs_main (int argc, char *argv[]) { lrs_dic *P; /* structure for holding current dictionary and indices */ lrs_dat *Q; /* structure for holding static problem data */ lrs_mp_vector output; /* holds one line of output; ray,vertex,facet,linearity */ lrs_mp_matrix Lin; /* holds input linearities if any are found */ long col; /* output column index for dictionary */ long startcol = 0; long prune = FALSE; /* if TRUE, getnextbasis will prune tree and backtrack */ /* global variables lrs_ifp and lrs_ofp are file pointers for input and output */ /* they default to stdin and stdout, but may be overidden by command line parms. */ /*************************************************** Step 0: Do some global initialization that should only be done once, no matter how many lrs_dat records are allocated. db ***************************************************/ #ifdef PLRS if (!lrs_mp_init (ZERO, stdin, stdout)) /* initialize arithmetic */ exit(1); #else if ( !lrs_init ("\n*lrs:")) return 1; printf("\n%s",AUTHOR); #endif /*********************************************************************************/ /* Step 1: Allocate lrs_dat, lrs_dic and set up the problem */ /*********************************************************************************/ #ifdef PLRS Q = lrs_alloc_dat (""); /* allocate and init structure for static problem data */ std::ifstream input_file; input_file.open(argv[0]); /* Open input file */ plrs_read_dat(Q, input_file); /* read first part of problem data to get dimensions and problem type: H- or V- input representation */ P = lrs_alloc_dic (Q); /* allocate and initialize lrs_dic */ if (P == NULL) return 1; plrs_read_dic (P, Q, input_file); /* read remainder of input to setup P and Q */ #else Q = lrs_alloc_dat ("LRS globals"); /* allocate and init structure for static problem data */ if (Q == NULL) return 1; if (!lrs_read_dat (Q, argc, argv)) /* read first part of problem data to get dimensions */ return 1; /* and problem type: H- or V- input representation */ P = lrs_alloc_dic (Q); /* allocate and initialize lrs_dic */ if (P == NULL) return 1; if (!lrs_read_dic (P, Q)) /* read remainder of input to setup P and Q */ return 1; #endif output = lrs_alloc_mp_vector (Q->n); /* output holds one line of output from dictionary */ /*********************************************************************************/ /* Step 2: Find a starting cobasis from default of specified order */ /* P is created to hold active dictionary data and may be cached */ /* Lin is created if necessary to hold linearity space */ /* Print linearity space if any, and retrieve output from first dict. */ /*********************************************************************************/ if (!lrs_getfirstbasis (&P, Q, &Lin, FALSE)) return 1; /* Pivot to a starting dictionary */ /* There may have been column redundancy */ /* If so the linearity space is obtained and redundant */ /* columns are removed. User can access linearity space */ /* from lrs_mp_matrix Lin dimensions nredundcol x d+1 */ if (Q->homogeneous && Q->hull) startcol++; /* col zero not treated as redundant */ if(!Q->restart) for (col = startcol; col < Q->nredundcol; col++) /* print linearity space */ lrs_printoutput (Q, Lin[col]); /* Array Lin[][] holds the coeffs. */ /*********************************************************************************/ /* Step 3: Terminate if lponly option set, otherwise initiate a reverse */ /* search from the starting dictionary. Get output for each new dict. */ /*********************************************************************************/ /* We initiate reverse search from this dictionary */ /* getting new dictionaries until the search is complete */ /* User can access each output line from output which is */ /* vertex/ray/facet from the lrs_mp_vector output */ /* prune is TRUE if tree should be pruned at current node */ do { prune=lrs_checkbound(P,Q); //2015.1.21 // LRS only: after maxbases reached, generate subtrees that have not been enumerated if ((Q->maxbases > 0) && (Q->count[2] > Q->maxbases)) { prune=TRUE; lrs_printcobasis(P,Q,ZERO); fprintf (lrs_ofp,"*unexplored"); } if (!prune) for (col = 0; col <= P->d; col++) if (lrs_getsolution (P, Q, output, col)) lrs_printoutput (Q, output); } while (!Q->lponly && lrs_getnextbasis (&P, Q, prune)); if (Q->lponly) lrs_lpoutput(P,Q,output); else lrs_printtotals (P, Q); /* print final totals, including estimates */ lrs_clear_mp_vector(output, Q->n); lrs_free_dic (P,Q); /* deallocate lrs_dic */ lrs_free_dat (Q); /* deallocate lrs_dat */ #ifndef PLRS lrs_close ("lrs:"); #endif return 0; } /*********************************************/ /* end of model test program for lrs library */ /*********************************************/ /***********************************/ /* PLRS */ /***********************************/ #ifdef PLRS boost::mutex consume_mutex; boost::condition_variable consume; boost::atomic output_list; void plrs_read_dat (lrs_dat * Q, std::ifstream &input_file) { string line; bool begin = false; if(input_file.is_open()){ while(input_file.good()){ getline(input_file, line); if(line.find("*") == 0){ //Ignore lines starting with * }else if (line.find("H-representation") != string::npos){ Q->hull = FALSE; }else if(line.find("hull")!= string::npos || line.find("V-representation")!= string::npos){ Q->hull = TRUE; Q->polytope = TRUE; }else if(line.find("digits")!= string::npos){ long dec_digits; istringstream ss(line); if(!(ss>>dec_digits) && !lrs_set_digits(dec_digits)){ cout<<"Error reading digits data!"<nonnegative = TRUE; }else if(line.find("linearity") != string::npos){ //Remove the following characters char chars[] = "linearity"; for(unsigned int i = 0; i < sizeof(chars); ++i){ line.erase(remove(line.begin(), line.end(), chars[i]), line.end()); } plrs_readlinearity (Q, line); }else if(line.find("begin")!= string::npos){ begin = true; break; }else{ //Q->name = line.c_str(); } } if(Q->hull) Q->getvolume=TRUE; if(!begin){ cout<<"No begin line!"<> Q->m >> Q->n >> type)){ cout<<"No data in file!"<m == 0) { cout<<"No input given!"<hull; long m, d; lrs_alloc_mp(Temp); lrs_alloc_mp(mpone); lrs_alloc_mp(Tempn); lrs_alloc_mp(Tempd); lrs_alloc_mp(mpten); A = P->A; m = Q->m; d = Q->inputd; Gcd = Q->Gcd; Lcm = Q->Lcm; oD = lrs_alloc_mp_vector (d); itomp (ONE, mpone); itomp (ONE, A[0][0]); itomp (ONE, Lcm[0]); itomp (ONE, Gcd[0]); for (i = 1; i <= m; i++) /* read in input matrix row by row */ { itomp (ONE, Lcm[i]); /* Lcm of denominators */ itomp (ZERO, Gcd[i]); /* Gcd of numerators */ if(!input_file.good()){ cout<<"Input data incorrectly formatted"<>rat; ptr1=rat.c_str(); string_length=strlen(ptr1); if (string_length!=0) { if (plrs_readrat (A[i][j], A[0][j], ptr1)) lcm (Lcm[i], A[0][j]); /* update lcm of denominators */ copy (Temp, A[i][j]); gcd (Gcd[i], Temp); /* update gcd of numerators */ j++; } } ss.clear(); } if (hull) { itomp (ZERO, A[i][0]); /*for hull, we have to append an extra column of zeroes */ if (!one (A[i][1]) || !one (A[0][1])) /* all rows must have a one in column one */ Q->polytope = FALSE; } if (!zero (A[i][hull])) /* for H-rep, are zero in column 0 */ Q->homogeneous = FALSE; /* for V-rep, all zero in column 1 */ storesign (Gcd[i], POS); storesign (Lcm[i], POS); if (mp_greater (Gcd[i], mpone) || mp_greater (Lcm[i], mpone)) for (j = 0; j <= d; j++) { divint (A[i][j], Gcd[i], Temp); /*reduce numerators by Gcd */ mulint (Lcm[i], Temp, Temp); /*remove denominators */ divint (Temp, A[0][j], A[i][j]); /*reduce by former denominator */ } } /* 2010.4.26 patch */ if(Q->nonnegative) /* set up Gcd and Lcm for nonexistent nongative inequalities */ for (i=m+1;i<=m+d;i++) { itomp (ONE, Lcm[i]); itomp (ONE, Gcd[i]); } //Make new output node for nonfatal option errors plrs_output* out = new plrs_output; out->type = "options warning"; //Make stream to collect prat / pmp data stringstream out_stream; if (Q->homogeneous && Q->verbose) { out_stream<<"*Input is homogeneous, column 1 not treated as redundant"<nonnegative){ out_stream<<"*Starting cobasis incompatible with nonegative option:skipped"<givenstart = TRUE; istringstream ss(line); //Trim first word string str; ss >>str; //make string out of facts stringstream facets; facets << ss.rdbuf(); //Readfacets plrs_readfacets(Q, Q->inequality,facets.str()); } }else if(line.find("restart") != string::npos){ Q->restart = TRUE; istringstream ss(line); //Trim first word string str; ss >>str; //Pipe restart data from string stream if(Q->voronoi){ if(!(ss>>Q->count[1]>>Q->count[0]>>Q->count[2]>>P->depth)){ cout<<"Error reading restart data!"<>Q->count[0]>>Q->count[2]>>P->depth)){ cout<<"Error reading restart data!"<>Q->count[1]>>Q->count[0]>>Q->count[2]>>P->depth)){ cout<<"Error reading restart data!"<startcount[i] = Q->count[i]; } //Make string out of facets stringstream facets; facets << ss.rdbuf(); plrs_readfacets(Q,Q->facet,facets.str()); }else if(line.find("geometric") != string::npos){ if(hull && !Q->voronoi) out_stream<<"*Geometric option for H-representation or voronoi only, skipped"<geometric = TRUE; }else if(line.find("allbases") != string::npos){ Q->allbases = TRUE; }else if(line.find("incidence") != string::npos){ Q->incidence = TRUE; }else if(line.find("#incidence") != string::npos){ Q->printcobasis = TRUE; }else if(line.find("printcobasis") != string::npos){ istringstream ss(line); //Trim first word string str; ss >>str; if(!(ss>>Q->frequency)) Q->frequency = 0; Q->printcobasis = TRUE; }else if(line.find("printslack") != string::npos){ Q->printslack = TRUE; }else if(line.find("maxdepth") != string::npos){ istringstream ss(line); //Trim first word string str; ss >>str; if(!(ss>>Q->maxdepth)){ Q->maxdepth = 1; } }else if(line.find("maxoutput") != string::npos){ istringstream ss(line); //Trim first word string str; ss >>str; if(!(ss>>Q->maxoutput)){ Q->maxoutput = 100; } }else if(line.find("maxbases") != string::npos){ istringstream ss(line); //Trim first word string str; ss >>str; if(!(ss>>Q->maxbases)){ Q->maxbases = 1000; } Q->maxbases = 0; //2015.1.21 disable feature for plrs }else if(line.find("mindepth") != string::npos){ istringstream ss(line); //Trim first word string str; ss >>str; if(!(ss>>Q->mindepth)){ Q->mindepth = 0; } }else if(line.find("truncate") != string::npos){ if(!hull) Q->truncate = TRUE; else out_stream<<"*Truncate option for H-representation only, skipped"<verbose = TRUE; }else if(line.find("bound") != string::npos){ istringstream ss(line); //Trim first word string str; ss>>str; //get rational number ss>>str; plrs_readrat(Q->boundn, Q->boundd, str.c_str()); Q->bound = TRUE; }else if(line.find("nonnegative") != string::npos){ out_stream<<"*Nonnegative option must come before begin line, skipped"<>Q->seed)){ Q->seed = 3142; } }else if(line.find("voronoi") != string::npos || line.find("Voronoi") != string::npos){ if(!hull) out_stream<<"*voronoi requires V-representation - option skipped"<voronoi = TRUE; Q->polytope = FALSE; } } } if (Q->incidence) { Q->printcobasis = TRUE; /* 2010.5.7 No need to reset this, as it may have been set by printcobasis */ /* Q->frequency = ZERO; */ } lrs_clear_mp(Temp); lrs_clear_mp(mpone); lrs_clear_mp(Tempn); lrs_clear_mp(Tempd); lrs_clear_mp(mpten); lrs_clear_mp_vector (oD,d); //pipe stream into output node out->data = out_stream.str(); //post output in a nonblocking manner (a consumer thread will manage output) post_output(out); } /* read and check facet list for obvious errors during start/restart */ /* this must be done after linearity option is processed!! */ void plrs_readfacets (lrs_dat * Q, long facet[], string facets) { long i, j; /* assign local variables to structures */ long m, d; long *linearity = Q->linearity; m = Q->m; d = Q->inputd; istringstream ss(facets); for (j = Q->nlinearity; j < d; j++) /* note we place these after the linearity indices */ { if(!(ss>>facet[j])) { return; /*2012.9.26 disable error checking cout<<"Restart facet list missing indices."<nonnegative) if (facet[j] < 1 || facet[j] > m+d) { cout<<"Start/Restart cobasic indices must be in range 1 .. "<nonnegative) if (facet[j] < 1 || facet[j] > m) { cout<<"Start/Restart cobasic indices must be in range 1 .. "<nlinearity; i++) if (linearity[i] == facet[j]) { cout<<"Start/Restart cobasic indices should not include linearities"<nlinearity; i < j; i++) /* end bug fix 2011.8.1 */ if (facet[i] == facet[j]) { cout<<"Sart/Restart cobasic indices must be distinct"<next = stale_head; }while( !output_list.compare_exchange_weak( stale_head, o, boost::memory_order_release ) ); // Because only one thread can post the 'first output', only that thread will attempt // to aquire the lock and therefore there should be no contention on this lock except // when *this thread is about to block on a wait condition. if( !stale_head ) { boost::unique_lock lock(consume_mutex); consume.notify_one(); } } #endif /*******************************************************/ /* redund_main is driver for redund.c, removes all */ /* redundant rows from an H or V-representation */ /* showing function calls intended for public use */ /*******************************************************/ long redund_main (int argc, char *argv[]) { lrs_mp_matrix Ain; /* holds a copy of the input matrix to output at the end */ long *redineq; /* redineq[i]=0 if ineq i non-red,1 if red,2 linearity */ long ineq; /* input inequality number of current index */ lrs_dic *P; /* structure for holding current dictionary and indices */ lrs_dat *Q; /* structure for holding static problem data */ lrs_mp_matrix Lin; /* holds input linearities if any are found */ long i, j, d, m; long nlinearity; /* number of linearities in input file */ long nredund; /* number of redundant rows in input file */ long lastdv; long debug; long index; /* basic index for redundancy test */ /* global variables lrs_ifp and lrs_ofp are file pointers for input and output */ /* they default to stdin and stdout, but may be overidden by command line parms. */ /* Lin is global 2-d array for linearity space if it is found (redund columns) */ lrs_ifp = stdin; lrs_ofp = stdout; /*************************************************** Step 0: Do some global initialization that should only be done once, no matter how many lrs_dat records are allocated. db ***************************************************/ if ( !lrs_init ("\n*redund:")) return 1; printf ("\n"); printf (AUTHOR); /*********************************************************************************/ /* Step 1: Allocate lrs_dat, lrs_dic and set up the problem */ /*********************************************************************************/ Q = lrs_alloc_dat ("LRS globals"); /* allocate and init structure for static problem data */ if (Q == NULL) return 1; if (!lrs_read_dat (Q, argc, argv)) /* read first part of problem data to get dimensions */ return 1; /* and problem type: H- or V- input representation */ P = lrs_alloc_dic (Q); /* allocate and initialize lrs_dic */ if (P == NULL) return 1; if (!lrs_read_dic (P, Q)) /* read remainder of input to setup P and Q */ return 1; /* if non-negative flag is set, non-negative constraints are not input */ /* explicitly, and are not checked for redundancy */ m = P->m_A; /* number of rows of A matrix */ d = P->d; debug = Q->debug; redineq = (long *) calloc ((m + 1), sizeof (long)); Ain = lrs_alloc_mp_matrix (m, d); /* make a copy of A matrix for output later */ for (i = 1; i <= m; i++) { for (j = 0; j <= d; j++) copy (Ain[i][j], P->A[i][j]); if (debug) lrs_printrow ("*", Q, Ain[i], d); } /*********************************************************************************/ /* Step 2: Find a starting cobasis from default of specified order */ /* Lin is created if necessary to hold linearity space */ /*********************************************************************************/ if (!lrs_getfirstbasis (&P, Q, &Lin, TRUE)) return 1; /* Pivot to a starting dictionary */ /* There may have been column redundancy */ /* If so the linearity space is obtained and redundant */ /* columns are removed. User can access linearity space */ /* from lrs_mp_matrix Lin dimensions nredundcol x d+1 */ /*********************************************************************************/ /* Step 3: Test each row of the dictionary to see if it is redundant */ /*********************************************************************************/ /* note some of these may have been changed in getting initial dictionary */ m = P->m_A; d = P->d; nlinearity = Q->nlinearity; lastdv = Q->lastdv; if (debug) fprintf (lrs_ofp, "\ncheckindex m=%ld, n=%ld, nlinearity=%ld lastdv=%ld", m,d,nlinearity,lastdv); /* linearities are not considered for redundancy */ for (i = 0; i < nlinearity; i++) redineq[Q->linearity[i]] = 2L; /* rows 0..lastdv are cost, decision variables, or linearities */ /* other rows need to be tested */ for (index = lastdv + 1; index <= m + d; index++) { ineq = Q->inequality[index - lastdv]; /* the input inequality number corr. to this index */ redineq[ineq] = checkindex (P, Q, index); if (debug) fprintf (lrs_ofp, "\ncheck index=%ld, inequality=%ld, redineq=%ld", index, ineq, redineq[ineq]); if (redineq[ineq] == ONE) { fprintf (lrs_ofp, "\n*row %ld was redundant and removed", ineq); fflush (lrs_ofp); } } /* end for index ..... */ if (debug) { fprintf (lrs_ofp, "\n*redineq:"); for (i = 1; i <= m; i++) fprintf (lrs_ofp, " %ld", redineq[i]); } if (!Q->hull) fprintf (lrs_ofp, "\nH-representation"); else fprintf (lrs_ofp, "\nV-representation"); /* linearities will be printed first in output */ if (nlinearity > 0) { fprintf (lrs_ofp, "\nlinearity %ld", nlinearity); for (i = 1; i <= nlinearity; i++) fprintf (lrs_ofp, " %ld", i); } nredund = nlinearity; /* count number of non-redundant inequalities */ for (i = 1; i <= m; i++) if (redineq[i] == 0) nredund++; fprintf (lrs_ofp, "\nbegin"); fprintf (lrs_ofp, "\n%ld %ld rational", nredund, Q->n); /* print the linearities first */ for (i = 0; i < nlinearity; i++) lrs_printrow ("", Q, Ain[Q->linearity[i]], Q->inputd); for (i = 1; i <= m; i++) if (redineq[i] == 0) lrs_printrow ("", Q, Ain[i], Q->inputd); fprintf (lrs_ofp, "\nend"); fprintf (lrs_ofp, "\n*Input had %ld rows and %ld columns", m, Q->n); fprintf (lrs_ofp, ": %ld row(s) redundant", m - nredund); lrs_free_dic (P,Q); /* deallocate lrs_dic */ lrs_free_dat (Q); /* deallocate lrs_dat */ lrs_close ("redund:"); return 0; } /*********************************************/ /* end of redund.c */ /*********************************************/ /*******************/ /* lrs_printoutput */ /*******************/ void lrs_printoutput (lrs_dat * Q, lrs_mp_vector output) { #ifdef PLRS //Make new output node plrs_output* out = new plrs_output; //Make stream to collect prat / pmp data stringstream ss; if (Q->hull || zero (output[0])){ /*non vertex */ out->type = "ray"; for (int i = 0; i < Q->n; i++) ss<type = "vertex"; /* vertex */ ss<<" 1 "; for (int i = 1; i < Q->n; i++) ss<data = ss.str(); //post output in a nonblocking manner (a consumer thread will manage output) post_output(out); #else long i; fprintf (lrs_ofp, "\n"); if (Q->hull || zero (output[0])) /*non vertex */ { for (i = 0; i < Q->n; i++) pmp ("", output[i]); } else { /* vertex */ fprintf (lrs_ofp, " 1 "); for (i = 1; i < Q->n; i++) prat ("", output[i], output[0]); } fflush(lrs_ofp); #endif } /**************************/ /* end of lrs_printoutput */ /**************************/ /****************/ /* lrs_lpoutput */ /****************/ void lrs_lpoutput(lrs_dic * P,lrs_dat * Q, lrs_mp_vector output) { #ifndef LRS_QUIET lrs_mp Temp1, Temp2; long i; lrs_alloc_mp (Temp1); lrs_alloc_mp (Temp2); fprintf (lrs_ofp, "\n*LP solution only requested"); prat ("\n\n*Objective function has value ", P->objnum, P->objden); fprintf (lrs_ofp, "\n\n*Primal: "); for (i = 1; i < Q->n; i++) { fprintf(lrs_ofp,"x_%ld=",i); prat ("", output[i], output[0]); } if(Q->nlinearity > 0) fprintf (lrs_ofp, "\n\n*Linearities in input file - partial dual solution only"); fprintf (lrs_ofp, "\n\n*Dual: "); for (i = 0; i < P->d; i++) { fprintf(lrs_ofp,"y_%ld=",Q->inequality[P->C[i]-Q->lastdv]); changesign(P->A[0][P->Col[i]]); mulint(Q->Lcm[P->Col[i]],P->A[0][P->Col[i]],Temp1); mulint(Q->Gcd[P->Col[i]],P->det,Temp2); prat("",Temp1,Temp2); changesign(P->A[0][P->Col[i]]); } fprintf (lrs_ofp, "\n"); lrs_clear_mp (Temp1); lrs_clear_mp (Temp2); #endif } /***********************/ /* end of lrs_lpoutput */ /***********************/ void lrs_printrow (char name[], lrs_dat * Q, lrs_mp_vector output, long rowd) /* print a row of A matrix in output in "original" form */ /* rowd+1 is the dimension of output vector */ /* if input is H-rep. output[0] contains the RHS */ /* if input is V-rep. vertices are scaled by 1/output[1] */ { long i; fprintf (lrs_ofp, "\n%s", name); if (!Q->hull) /* input was inequalities, print directly */ { for (i = 0; i <= rowd; i++) pmp ("", output[i]); return; } /* input was vertex/ray */ if (zero (output[1])) /*non-vertex */ { for (i = 1; i <= rowd; i++) pmp ("", output[i]); } else { /* vertex */ fprintf (lrs_ofp, " 1 "); for (i = 2; i <= rowd; i++) prat ("", output[i], output[1]); } return; } /* end of lrs_printrow */ long lrs_getsolution (lrs_dic * P, lrs_dat * Q, lrs_mp_vector output, long col) /* check if column indexed by col in this dictionary */ /* contains output */ /* col=0 for vertex 1....d for ray/facet */ { long j; /* cobasic index */ lrs_mp_matrix A = P->A; long *Row = P->Row; if (col == ZERO) /* check for lexmin vertex */ return lrs_getvertex (P, Q, output); /* check for rays: negative in row 0 , positive if lponly */ if (Q->lponly) { if (!positive (A[0][col])) return FALSE; } else if (!negative (A[0][col])) return FALSE; /* and non-negative for all basic non decision variables */ j = Q->lastdv + 1; while (j <= P->m && !negative (A[Row[j]][col])) j++; if (j <= P->m) return FALSE; if (Q->geometric || Q->allbases || lexmin (P, Q, col) || Q->lponly) return lrs_getray (P, Q, col, Q->n, output); return FALSE; /* no more output in this dictionary */ } /* end of lrs_getsolution */ long lrs_init (char *name) /* returns TRUE if successful, else FALSE */ { printf ("%s", name); printf (TITLE); printf (VERSION); printf ("("); /* printf (BIT); */ /* printf (","); */ printf (ARITH); if (!lrs_mp_init (ZERO, stdin, stdout)) /* initialize arithmetic */ return FALSE; printf (")"); lrs_global_count = 0; lrs_checkpoint_seconds = 0; #ifdef SIGNALS setup_signals (); #endif return TRUE; } void lrs_close (char *name) { fprintf (lrs_ofp, "\n*%s", name); fprintf (lrs_ofp, TITLE); fprintf (lrs_ofp, VERSION); fprintf (lrs_ofp, "("); fprintf (lrs_ofp, BIT); fprintf (lrs_ofp, ","); fprintf (lrs_ofp, ARITH); fprintf (lrs_ofp, ")"); #ifdef MP fprintf (lrs_ofp, " max digits=%ld/%ld", DIG2DEC (lrs_record_digits), DIG2DEC (lrs_digits)); #endif #ifdef TIMES ptimes (); #endif fprintf (lrs_ofp, "\n"); fclose (lrs_ifp); if (lrs_ofp != stdout) fclose (lrs_ofp); } /***********************************/ /* allocate and initialize lrs_dat */ /***********************************/ lrs_dat * lrs_alloc_dat (const char *name) { lrs_dat *Q; long i; if (lrs_global_count >= MAX_LRS_GLOBALS) { fprintf (stderr, "Fatal: Attempt to allocate more than %ld global data blocks\n", MAX_LRS_GLOBALS); exit (1); } Q = (lrs_dat *) malloc (sizeof (lrs_dat)); if (Q == NULL) return Q; /* failure to allocate */ lrs_global_list[lrs_global_count] = Q; Q->id = lrs_global_count; lrs_global_count++; Q->name=(char *) CALLOC ((unsigned) strlen(name)+1, sizeof (char)); strcpy(Q->name,name); /* initialize variables */ Q->m = 0L; Q->n = 0L; Q->inputd = 0L; Q->deepest = 0L; Q->nlinearity = 0L; Q->nredundcol = 0L; Q->runs = 0L; Q->seed = 1234L; Q->totalnodes = 0L; for (i = 0; i < 10; i++) { Q->count[i] = 0L; Q->cest[i] = 0.0; if(i < 5) Q->startcount[i] = 0L; } Q->count[2] = 1L; /* basis counter */ /* initialize flags */ Q->allbases = FALSE; Q->bound = FALSE; /* upper/lower bound on objective function given */ Q->debug = FALSE; Q->frequency = 0L; Q->dualdeg = FALSE; /* TRUE if dual degenerate starting dictionary */ Q->geometric = FALSE; Q->getvolume = FALSE; Q->homogeneous = TRUE; Q->polytope = FALSE; Q->hull = FALSE; Q->incidence = FALSE; Q->lponly = FALSE; Q->maxdepth = MAXD; Q->mindepth = -MAXD; Q->maxoutput = 0L; Q->maxbases = 0L; /* after maxbases have been found unexplored subtrees reported */ Q->nash = FALSE; Q->nonnegative = FALSE; Q->printcobasis = FALSE; Q->printslack = FALSE; Q->truncate = FALSE; /* truncate tree when moving from opt vertex */ Q->verbose=FALSE; Q->voronoi = FALSE; Q->maximize = FALSE; /*flag for LP maximization */ Q->minimize = FALSE; /*flag for LP minimization */ Q->restart = FALSE; /* TRUE if restarting from some cobasis */ Q->givenstart = FALSE; /* TRUE if a starting cobasis is given */ Q->strace = -1L; /* turn on debug at basis # strace */ Q->etrace = -1L; /* turn off debug at basis # etrace */ Q->saved_flag = 0; /* no cobasis saved initially, db */ lrs_alloc_mp (Q->Nvolume); lrs_alloc_mp (Q->Dvolume); lrs_alloc_mp (Q->sumdet); lrs_alloc_mp (Q->saved_det); lrs_alloc_mp (Q->boundn); lrs_alloc_mp (Q->boundd); itomp (ZERO, Q->Nvolume); itomp (ONE, Q->Dvolume); itomp (ZERO, Q->sumdet); /* 2012.6.1 */ Q->unbounded = FALSE; return Q; } /* end of allocate and initialize lrs_dat */ /*******************************/ /* lrs_read_dat */ /*******************************/ long lrs_read_dat (lrs_dat * Q, int argc, char *argv[]) { char name[100]; long dec_digits = 0; long infile=0; /*input file number to open if any */ long firstline = TRUE; /*flag for picking off name at line 1 */ int c; /* for fgetc */ if(argc > 1 ) infile=1; if(Q->nash && argc == 2) /* open second nash input file */ infile=2; if (infile > 0) /* command line argument overides stdin */ { if ((lrs_ifp = fopen (argv[infile], "r")) == NULL) { printf ("\nBad input file name\n"); return (FALSE); } else { if (infile==1) printf ("\n*Input taken from file %s", argv[infile]); } } /* command line argument overides stdout */ if ((!Q->nash && argc == 3) || (Q->nash && argc == 4)) { if ((lrs_ofp = fopen (argv[argc-1], "w")) == NULL) { printf ("\nBad output file name\n"); return (FALSE); } else printf ("\n*Output sent to file %s\n", argv[argc-1]); } /* process input file */ if( fscanf (lrs_ifp, "%s", name) == EOF) { fprintf (lrs_ofp, "\nNo begin line"); return (FALSE); } while (strcmp (name, "begin") != 0) /*skip until "begin" found processing options */ { if (strncmp (name, "*", 1) == 0) /* skip any line beginning with * */ { c = name[0]; while (c != EOF && c != '\n') c = fgetc (lrs_ifp); } else if (strcmp (name, "H-representation") == 0) Q->hull = FALSE; else if ((strcmp (name, "hull") == 0) || (strcmp (name, "V-representation") == 0)) { Q->hull = TRUE; Q->polytope = TRUE; /* will be updated as input read */ } else if (strcmp (name, "digits") == 0) { if (fscanf (lrs_ifp, "%ld", &dec_digits) == EOF) { fprintf (lrs_ofp, "\nNo begin line"); return (FALSE); } if (!lrs_set_digits(dec_digits)) return (FALSE); } else if (strcmp (name, "linearity") == 0) { if (!readlinearity (Q)) return FALSE; } else if (strcmp (name, "nonnegative") == 0) { if(Q->nash) fprintf (lrs_ofp, "\nNash incompatibile with nonnegative option - skipped"); else Q->nonnegative = TRUE; } else if (firstline) { stringcpy (Q->fname, name); fprintf (lrs_ofp, "\n%s", Q->fname); firstline = FALSE; } if (fscanf (lrs_ifp, "%s", name) == EOF) { fprintf (lrs_ofp, "\nNo begin line"); return (FALSE); } } /* end of while */ if (fscanf (lrs_ifp, "%ld %ld %s", &Q->m, &Q->n, name) == EOF) { fprintf (lrs_ofp, "\nNo data in file"); return (FALSE); } if (strcmp (name, "integer") != 0 && strcmp (name, "rational") != 0) { fprintf (lrs_ofp, "\nData type must be integer of rational"); return (FALSE); } if (Q->m == 0) { fprintf (lrs_ofp, "\nNo input given"); /* program dies ungracefully */ return (FALSE); } /* inputd may be reduced in preprocessing of linearities and redund cols */ return TRUE; } /* end of lrs_read_dat */ /****************************/ /* set up lrs_dic structure */ /****************************/ long lrs_read_dic (lrs_dic * P, lrs_dat * Q) /* read constraint matrix and set up problem and dictionary */ { lrs_mp Temp,Tempn,Tempd, mpone, mpten; lrs_mp_vector oD; /* Denom for objective function */ long i, j; char name[100]; int c; /* fgetc actually returns an int. db */ /* assign local variables to structures */ lrs_mp_matrix A; lrs_mp_vector Gcd, Lcm; long hull = Q->hull; long m, d; long dualperturb=FALSE; /* dualperturb=TRUE: objective function perturbed */ lrs_alloc_mp(Temp); lrs_alloc_mp(mpone); lrs_alloc_mp(Tempn); lrs_alloc_mp(Tempd); lrs_alloc_mp(mpten); A = P->A; m = Q->m; d = Q->inputd; Gcd = Q->Gcd; Lcm = Q->Lcm; oD = lrs_alloc_mp_vector (d); itomp (ONE, mpone); itomp(10L,mpten); itomp (ONE, A[0][0]); itomp (ONE, Lcm[0]); itomp (ONE, Gcd[0]); for (i = 1; i <= m; i++) /* read in input matrix row by row */ { itomp (ONE, Lcm[i]); /* Lcm of denominators */ itomp (ZERO, Gcd[i]); /* Gcd of numerators */ for (j = hull; j <= d; j++) /* hull data copied to cols 1..d */ { if (readrat (A[i][j], A[0][j])) lcm (Lcm[i], A[0][j]); /* update lcm of denominators */ copy (Temp, A[i][j]); gcd (Gcd[i], Temp); /* update gcd of numerators */ } if (hull) { itomp (ZERO, A[i][0]); /*for hull, we have to append an extra column of zeroes */ if (!one (A[i][1]) || !one (A[0][1])) /* all rows must have a one in column one */ Q->polytope = FALSE; } if (!zero (A[i][hull])) /* for H-rep, are zero in column 0 */ Q->homogeneous = FALSE; /* for V-rep, all zero in column 1 */ storesign (Gcd[i], POS); storesign (Lcm[i], POS); if (mp_greater (Gcd[i], mpone) || mp_greater (Lcm[i], mpone)) for (j = 0; j <= d; j++) { exactdivint (A[i][j], Gcd[i], Temp); /*reduce numerators by Gcd */ mulint (Lcm[i], Temp, Temp); /*remove denominators */ exactdivint (Temp, A[0][j], A[i][j]); /*reduce by former denominator */ } } /* end of for i= */ /* 2010.4.26 patch */ if(Q->nonnegative) /* set up Gcd and Lcm for nonexistent nongative inequalities */ for (i=m+1;i<=m+d;i++) { itomp (ONE, Lcm[i]); itomp (ONE, Gcd[i]); } if (Q->homogeneous && Q->verbose) { fprintf (lrs_ofp, "\n*Input is homogeneous, column 1 not treated as redundant"); } /* read in flags */ while (fscanf (lrs_ifp, "%s", name) != EOF) { if (strncmp (name, "*", 1) == 0) /* skip any line beginning with * */ { c = name[0]; while (c != EOF && c != '\n') c = fgetc (lrs_ifp); } if (strcmp (name, "checkpoint") == 0) { long seconds; if(fscanf (lrs_ifp, "%ld", &seconds) == EOF) { fprintf (lrs_ofp, "\nInvalid checkpoint option"); return (FALSE); } #ifdef SIGNALS if (seconds > 0) { lrs_checkpoint_seconds = seconds; errcheck ("signal", signal (SIGALRM, timecheck)); alarm (lrs_checkpoint_seconds); } #endif } if (strcmp (name, "debug") == 0) { Q->etrace =0; if(fscanf (lrs_ifp, "%ld %ld", &Q->strace, &Q->etrace)==EOF) Q->strace =0; fprintf (lrs_ofp, "\n*%s from B#%ld to B#%ld", name, Q->strace, Q->etrace); Q->verbose=TRUE; if (Q->strace <= 1) Q->debug = TRUE; } if (strcmp (name, "startingcobasis") == 0) { if(Q->nonnegative) fprintf (lrs_ofp, "\n*startingcobasis incompatible with nonnegative option:skipped"); else { fprintf (lrs_ofp, "\n*startingcobasis"); Q->givenstart = TRUE; if (!readfacets (Q, Q->inequality)) return FALSE; } } if (strcmp (name, "restart") == 0) { Q->restart = TRUE; if(Q->voronoi) { if(fscanf (lrs_ifp, "%ld %ld %ld %ld", &Q->count[1], &Q->count[0], &Q->count[2], &P->depth)==EOF) return FALSE; fprintf (lrs_ofp, "\n*%s V#%ld R#%ld B#%ld h=%ld data points", name, Q->count[1], Q->count[0], Q->count[2], P->depth); } else if(hull) { if( fscanf (lrs_ifp, "%ld %ld %ld", &Q->count[0], &Q->count[2], &P->depth)==EOF) fprintf (lrs_ofp, "\n*%s F#%ld B#%ld h=%ld vertices/rays", name, Q->count[0], Q->count[2], P->depth); } else { if(fscanf (lrs_ifp, "%ld %ld %ld %ld", &Q->count[1], &Q->count[0], &Q->count[2], &P->depth)==EOF) return FALSE; fprintf (lrs_ofp, "\n*%s V#%ld R#%ld B#%ld h=%ld facets", name, Q->count[1], Q->count[0], Q->count[2], P->depth); } if (!readfacets (Q, Q->facet)) return FALSE; } /* end of restart */ /* The next flag request a LP solution only */ if (strcmp (name, "lponly") == 0) { if (Q->hull) fprintf (lrs_ofp, "\n*lponly option not valid for V-representation-skipped"); else Q->lponly = TRUE; } /* The LP will be solved after initialization to get starting vertex */ /* Used also with lponly flag */ if (strcmp (name, "maximize") == 0 || strcmp (name, "minimize") == 0) { if (Q->hull) fprintf (lrs_ofp, "\n*%s option not valid for V-representation-skipped", name); else { { if (strcmp (name, "maximize") == 0) Q->maximize = TRUE; else Q->minimize = TRUE; } fprintf (lrs_ofp,"\n*%s", name); if(dualperturb) /* apply a perturbation to objective function */ { fprintf (lrs_ofp, " - Objective function perturbed"); copy(Temp,mpten); for (j = 0; j <= 10; j++) mulint(mpten,Temp,Temp); } fprintf (lrs_ofp, ": "); for (j = 0; j <= d; j++) { if (readrat (A[0][j], oD[j]) || dualperturb ) { if(dualperturb && j > 0 && j < d ) { if (Q->maximize) linrat(A[0][j], oD[j],ONE,mpone,Temp,ONE,Tempn,Tempd); else linrat(A[0][j], oD[j],ONE,mpone,Temp,-1L,Tempn,Tempd); copy(A[0][j],Tempn); copy(oD[j],Tempd); mulint(mpten,Temp,Temp); } reduce (A[0][j], oD[j]); lcm (Q->Lcm[0], oD[j]); /* update lcm of denominators */ } prat ("", A[0][j], oD[j]); if (!Q->maximize) changesign (A[0][j]); } storesign (Q->Lcm[0], POS); if (mp_greater (Q->Lcm[0], mpone)) for (j = 0; j <= d; j++) { mulint (Q->Lcm[0], A[0][j], A[0][j]); /*remove denominators */ copy (Temp, A[0][j]); exactdivint (Temp, oD[j], A[0][j]); } if (Q->debug) printA (P, Q); } } /* end of LP setup */ if (strcmp (name, "volume") == 0) { fprintf (lrs_ofp, "\n*%s", name); Q->getvolume = TRUE; } if (strcmp (name, "geometric") == 0) { fprintf (lrs_ofp, "\n*%s", name); if (hull & !Q->voronoi) fprintf (lrs_ofp, " - option for H-representation or voronoi only, skipped"); else Q->geometric = TRUE; } if (strcmp (name, "allbases") == 0) { fprintf (lrs_ofp, "\n*%s", name); Q->allbases = TRUE; } if (strcmp (name, "dualperturb") == 0) { dualperturb = TRUE; } if (strcmp (name, "incidence") == 0) { fprintf (lrs_ofp, "\n*%s", name); Q->incidence = TRUE; } if (strcmp (name, "#incidence") == 0) /* number of incident inequalities only */ { Q->printcobasis = TRUE; } if (strcmp (name, "printcobasis") == 0) { if(fscanf (lrs_ifp, "%ld", &Q->frequency)==EOF) /*2010.7.7 set default to zero = print only when outputting vertex/ray/facet */ Q->frequency=0; fprintf (lrs_ofp, "\n*%s", name); if (Q->frequency > 0) fprintf(lrs_ofp," %ld", Q->frequency); Q->printcobasis = TRUE; } if (strcmp (name, "printslack") == 0) { Q->printslack = TRUE; } if (strcmp (name, "cache") == 0) { if(fscanf (lrs_ifp, "%ld", &dict_limit)==EOF) dict_limit=1; fprintf (lrs_ofp, "\n*cache %ld", dict_limit); if (dict_limit < 1) dict_limit = 1; } if (strcmp (name, "linearity") == 0) { if (!readlinearity (Q)) return FALSE; } if (strcmp (name, "maxdepth") == 0) { if(fscanf (lrs_ifp, "%ld", &Q->maxdepth)==EOF) Q->maxdepth=1; fprintf (lrs_ofp, "\n*%s %ld", name, Q->maxdepth); } if (strcmp (name, "maxoutput") == 0) { if(fscanf (lrs_ifp, "%ld", &Q->maxoutput)==EOF) Q->maxoutput = 100; fprintf (lrs_ofp, "\n*%s %ld", name, Q->maxoutput); } if (strcmp (name, "maxbases") == 0) { if(fscanf (lrs_ifp, "%ld", &Q->maxbases)==EOF) Q->maxbases = 1000; fprintf (lrs_ofp, "\n*%s %ld", name, Q->maxbases); } if (strcmp (name, "mindepth") == 0) { if( fscanf (lrs_ifp, "%ld", &Q->mindepth)==EOF) Q->mindepth = 0; fprintf (lrs_ofp, "\n*%s %ld", name, Q->mindepth); } if (strcmp (name, "truncate") == 0) { fprintf (lrs_ofp, "\n*%s", name); if (!hull) Q->truncate = TRUE; else fprintf (lrs_ofp, " - option for H-representation only, skipped"); } if (strcmp (name, "verbose") == 0) Q->verbose = TRUE; if (strcmp (name, "bound") == 0) { readrat(Q->boundn,Q->boundd); Q->bound = TRUE; } if (strcmp (name, "nonnegative") == 0) { fprintf (lrs_ofp, "\n*%s", name); fprintf (lrs_ofp, " - option must come before begin line - skipped"); } if (strcmp (name, "seed") == 0) { if(fscanf (lrs_ifp, "%ld", &Q->seed)==EOF) Q->seed = 3142; fprintf (lrs_ofp, "\n*seed= %ld ", Q->seed); } if (strcmp (name, "estimates") == 0) { if(fscanf (lrs_ifp, "%ld", &Q->runs)==EOF) Q->runs=1; fprintf (lrs_ofp, "\n*%ld %s", Q->runs, name); } if ((strcmp (name, "voronoi") == 0) || (strcmp (name, "Voronoi") == 0)) { if (!hull) fprintf (lrs_ofp, "\n*voronoi requires V-representation - option skipped"); else { Q->voronoi = TRUE; Q->polytope = FALSE; } } } /* end of while for reading flags */ if (Q->polytope) Q->getvolume = TRUE; /* might as well get volume, it doesn't cost much */ if (Q->bound && Q->maximize) prat("\n*Lower bound on objective function:",Q->boundn,Q->boundd); if (Q->bound && Q->minimize) prat("\n*Upper bound on objective function:",Q->boundn,Q->boundd); /* Certain options are incompatible, this is fixed here */ if (Q->restart) Q->getvolume = FALSE; /* otherwise incorrect volume reported */ if (Q->incidence) { Q->printcobasis = TRUE; /* 2010.5.7 No need to reset this, as it may have been set by printcobasis */ /* Q->frequency = ZERO; */ } if (Q->debug) { printA (P, Q); fprintf (lrs_ofp, "\nexiting lrs_read_dic"); } lrs_clear_mp(Temp); lrs_clear_mp(mpone); lrs_clear_mp(Tempn); lrs_clear_mp(Tempd); lrs_clear_mp(mpten); lrs_clear_mp_vector (oD,d); return TRUE; } /* end of if(voronoi) */ /* In lrs_getfirstbasis and lrs_getnextbasis we use D instead of P */ /* since the dictionary P may change, ie. &P in calling routine */ #define D (*D_p) long lrs_getfirstbasis (lrs_dic ** D_p, lrs_dat * Q, lrs_mp_matrix * Lin, long no_output) /* gets first basis, FALSE if none */ /* P may get changed if lin. space Lin found */ /* no_output is TRUE supresses output headers */ { lrs_mp scale, Temp; long i, j, k; /* assign local variables to structures */ lrs_mp_matrix A; long *B, *C, *Col; long *inequality; long *linearity; long hull = Q->hull; long m, d, lastdv, nlinearity, nredundcol; lrs_alloc_mp(Temp); lrs_alloc_mp(scale); if (Q->lponly) no_output = TRUE; m = D->m; d = D->d; lastdv = Q->lastdv; nredundcol = 0L; /* will be set after getabasis */ nlinearity = Q->nlinearity; /* may be reset if new linearity read or in getabasis*/ linearity = Q->linearity; A = D->A; B = D->B; C = D->C; Col = D->Col; inequality = Q->inequality; if (Q->nlinearity > 0 && Q->nonnegative) { #ifdef PLRS cout<<"*Linearity and nonnegative options incompatible - all linearities are skipped"<nlinearity && Q->voronoi){ #ifdef PLRS cout<<"*Linearity and Voronoi options set - results unpredictable"<lponly && !Q->maximize && !Q->minimize){ #ifdef PLRS cout<<"LP's are not supported with PLRS"<runs > 0) /* arrays for estimator */ { Q->isave = (long *) CALLOC ((unsigned) (m * d), sizeof (long)); Q->jsave = (long *) CALLOC ((unsigned) (m * d), sizeof (long)); } /* default is to look for starting cobasis using linearies first, then */ /* filling in from last rows of input as necessary */ /* linearity array is assumed sorted here */ /* note if restart/given start inequality indices already in place */ /* from nlinearity..d-1 */ for (i = 0; i < nlinearity; i++) /* put linearities first in the order */ inequality[i] = linearity[i]; k = 0; /* index for linearity array */ if (Q->givenstart) k = d; else k = nlinearity; for (i = m; i >= 1; i--) { j = 0; while (j < k && inequality[j] != i) j++; /* see if i is in inequality */ if (j == k) inequality[k++] = i; } #ifndef PLRS if (Q->debug) { fprintf (lrs_ofp, "\n*Starting cobasis uses input row order"); for (i = 0; i < m; i++) fprintf (lrs_ofp, " %ld", inequality[i]); } #endif /* for voronoi convert to h-description using the transform */ /* a_0 .. a_d-1 -> (a_0^2 + ... a_d-1 ^2)-2a_0x_0-...-2a_d-1x_d-1 + x_d >= 0 */ /* note constant term is stored in column d, and column d-1 is all ones */ /* the other coefficients are multiplied by -2 and shifted one to the right */ if (Q->debug) printA (D, Q); if (Q->voronoi) { Q->hull = FALSE; hull = FALSE; for (i = 1; i <= m; i++) { if (zero (A[i][1])) { #ifdef PLRS cout<<"With voronoi option column one must be all one"<debug) printA (D, Q); #endif } /* end of if(voronoi) */ if (!Q->maximize && !Q->minimize) for (j = 0; j <= d; j++) itomp (ZERO, A[0][j]); /* Now we pivot to standard form, and then find a primal feasible basis */ /* Note these steps MUST be done, even if restarting, in order to get */ /* the same index/inequality correspondance we had for the original prob. */ /* The inequality array is used to give the insertion order */ /* and is defaulted to the last d rows when givenstart=FALSE */ if(Q->nonnegative) { /* no need for initial pivots here, labelling already done */ Q->lastdv = d; Q->nredundcol = 0; } else { if (!getabasis (D, Q, inequality)) return FALSE; /* bug fix 2009.12.2 */ nlinearity=Q->nlinearity; /*may have been reset if some lins are redundant*/ } #ifndef PLRS if(Q->debug) { fprintf(lrs_ofp,"\nafter getabasis"); printA(D, Q); } #endif nredundcol = Q->nredundcol; lastdv = Q->lastdv; d = D->d; /********************************************************************/ /* now we start printing the output file unless no output requested */ /********************************************************************/ if (!no_output || Q->debug) { if (Q->voronoi){ #ifndef PLRS fprintf (lrs_ofp, "\n*Voronoi Diagram: Voronoi vertices and rays are output"); #else plrs_output* out = new plrs_output; out->type = "header"; out->data = "*Voronoi Diagram: Voronoi vertices and rays are output"; //post output in a nonblocking manner (a consumer thread will manage output) post_output(out); #endif } if (hull){ #ifndef PLRS fprintf (lrs_ofp, "\nH-representation"); #else plrs_output* out = new plrs_output; out->type = "header"; out->data = "H-representation"; //post output in a nonblocking manner (a consumer thread will manage output) post_output(out); #endif } else{ #ifndef PLRS fprintf (lrs_ofp, "\nV-representation"); #else plrs_output* out = new plrs_output; out->type = "header"; out->data = "V-representation"; //post output in a nonblocking manner (a consumer thread will manage output) post_output(out); #endif } /* Print linearity space */ /* Don't print linearity if first column zero in hull computation */ if (hull && Q->homogeneous) k = 1; /* 0 normally, 1 for homogeneous case */ else k = 0; if (nredundcol > k) { #ifndef PLRS fprintf (lrs_ofp, "\nlinearity %ld ", nredundcol - k); /*adjust nredundcol for homog. */ #else plrs_output* out = new plrs_output; stringstream ss; out->type = "header"; ss<<"linearity "<<(nredundcol -k); #endif for (i = 1; i <= nredundcol - k; i++){ #ifndef PLRS fprintf (lrs_ofp, " %ld", i); #else ss<<" "<data = ss.str(); //post output in a nonblocking manner (a consumer thread will manage output) post_output(out); #endif } /* end print of linearity space */ #ifndef PLRS fprintf (lrs_ofp, "\nbegin"); fprintf (lrs_ofp, "\n***** %ld rational", Q->n); #else plrs_output* out = new plrs_output; out->type = "header"; stringstream ss; ss<<"begin"<n<<" rational"; out->data = ss.str(); post_output(out); #endif } /* end of if !no_output ....... */ /* Reset up the inequality array to remember which index is which input inequality */ /* inequality[B[i]-lastdv] is row number of the inequality with index B[i] */ /* inequality[C[i]-lastdv] is row number of the inequality with index C[i] */ for (i = 1; i <= m; i++) inequality[i] = i; if (nlinearity > 0) /* some cobasic indices will be removed */ { for (i = 0; i < nlinearity; i++) /* remove input linearity indices */ inequality[linearity[i]] = 0; k = 1; /* counter for linearities */ for (i = 1; i <= m - nlinearity; i++) { while (k <= m && inequality[k] == 0) k++; /* skip zeroes in corr. to linearity */ inequality[i] = inequality[k++]; } } /* end if linearity */ #ifndef PLRS if (Q->debug) { fprintf (lrs_ofp, "\ninequality array initialization:"); for (i = 1; i <= m - nlinearity; i++) fprintf (lrs_ofp, " %ld", inequality[i]); } #endif if (nredundcol > 0) { const unsigned int Qn = Q->n; *Lin = lrs_alloc_mp_matrix (nredundcol, Qn); for (i = 0; i < nredundcol; i++) { if (!(Q->homogeneous && Q->hull && i == 0)) /* skip redund col 1 for homog. hull */ { lrs_getray (D, Q, Col[0], D->C[0] + i - hull, (*Lin)[i]); /* adjust index for deletions */ } if (!removecobasicindex (D, Q, 0L)) { lrs_clear_mp_matrix (*Lin, nredundcol, Qn); return FALSE; } } } /* end if nredundcol > 0 */ #ifndef PLRS if (Q->lponly || Q->nash ) if (Q->verbose) { fprintf (lrs_ofp, "\nNumber of pivots for starting dictionary: %ld",Q->count[3]); if(Q->lponly) printA (D, Q); } #endif /* Do dual pivots to get primal feasibility */ if (!primalfeasible (D, Q)) { #ifndef LRS_QUIET fprintf (lrs_ofp, "\nNo feasible solution"); #endif if (Q->nash && Q->verbose ) { fprintf (lrs_ofp, "\nNumber of pivots for feasible solution: %ld",Q->count[3]); fprintf (lrs_ofp, " - No feasible solution"); } return FALSE; } if (Q->lponly || Q->nash ) if (Q->verbose) { fprintf (lrs_ofp, "\nNumber of pivots for feasible solution: %ld",Q->count[3]); if(Q->lponly) printA (D, Q); } /* Now solve LP if objective function was given */ if (Q->maximize || Q->minimize) { Q->unbounded = !lrs_solvelp (D, Q, Q->maximize); if (Q->lponly) { #ifndef PLRS if (Q->verbose) { fprintf (lrs_ofp, "\nNumber of pivots for optimum solution: %ld",Q->count[3]); printA (D, Q); } #endif lrs_clear_mp(Temp); lrs_clear_mp(scale); return TRUE; } else /* check to see if objective is dual degenerate */ { j = 1; while (j <= d && !zero (A[0][j])) j++; if (j <= d) Q->dualdeg = TRUE; } } else /* re-initialize cost row to -det */ { for (j = 1; j <= d; j++) { copy (A[0][j], D->det); storesign (A[0][j], NEG); } itomp (ZERO, A[0][0]); /* zero optimum objective value */ } /* reindex basis to 0..m if necessary */ /* we use the fact that cobases are sorted by index value */ #ifndef PLRS if (Q->debug) printA (D, Q); #endif while (C[0] <= m) { i = C[0]; j = inequality[B[i] - lastdv]; inequality[B[i] - lastdv] = inequality[C[0] - lastdv]; inequality[C[0] - lastdv] = j; C[0] = B[i]; B[i] = i; reorder1 (C, Col, ZERO, d); } #ifndef PLRS if (Q->debug) { fprintf (lrs_ofp, "\n*Inequality numbers for indices %ld .. %ld : ", lastdv + 1, m + d); for (i = 1; i <= m - nlinearity; i++) fprintf (lrs_ofp, " %ld ", inequality[i]); printA (D, Q); } #endif if (Q->restart) { #ifndef PLRS if (Q->debug) fprintf (lrs_ofp, "\nPivoting to restart co-basis"); #endif if (!restartpivots (D, Q)) return FALSE; D->lexflag = lexmin (D, Q, ZERO); /* see if lexmin basis */ #ifndef PLRS if (Q->debug) printA (D, Q); #endif } /* Check to see if necessary to resize */ if (Q->inputd > d) *D_p = resize (D, Q); lrs_clear_mp(Temp); lrs_clear_mp(scale); return TRUE; } /********* end of lrs_getfirstbasis ***************/ /*****************************************/ /* getnextbasis in reverse search order */ /*****************************************/ long lrs_getnextbasis (lrs_dic ** D_p, lrs_dat * Q, long backtrack) /* gets next reverse search tree basis, FALSE if none */ /* switches to estimator if maxdepth set */ /* backtrack TRUE means backtrack from here */ { /* assign local variables to structures */ long i = 0L, j = 0L; long m = D->m; long d = D->d; long cob_est=0; /* estimated number of cobases in subtree from current node */ if (backtrack && D->depth == 0) return FALSE; /* cannot backtrack from root */ if (Q->maxoutput > 0 && Q->count[0]+Q->count[1]-Q->hull >= Q->maxoutput) return FALSE; /* output limit reached */ while ((j < d) || (D->B[m] != m)) /*main while loop for getnextbasis */ { if (D->depth >= Q->maxdepth) { backtrack = TRUE; if (Q->runs > 0) /*get an estimate of remaining tree */ { cob_est=lrs_estimate (D, Q); lrs_printcobasis(D,Q,ZERO); fprintf(lrs_ofp,"\ncob_est= %ld",cob_est); } if (Q->maxdepth == 0) /* estimate only */ return FALSE; /* no nextbasis */ } /* if ( Q->truncate && negative(D->A[0][0]))*/ /* truncate when moving from opt. vertex */ /* backtrack = TRUE; 2011.7.14 */ if (backtrack) /* go back to prev. dictionary, restore i,j */ { backtrack = FALSE; if (check_cache (D_p, Q, &i, &j)) { if (Q->debug) fprintf (lrs_ofp, "\n Cached Dict. restored to depth %ld\n", D->depth); } else { D->depth--; selectpivot (D, Q, &i, &j); pivot (D, Q, i, j); update (D, Q, &i, &j); /*Update B,C,i,j */ } if (Q->debug) { fprintf (lrs_ofp, "\n Backtrack Pivot: indices i=%ld j=%ld depth=%ld", i, j, D->depth); printA (D, Q); }; j++; /* go to next column */ } /* end of if backtrack */ if (D->depth < Q->mindepth) break; /* try to go down tree */ /* 2011.7.14 patch */ while ((j < d) && (!reverse (D, Q, &i, j) || (Q->truncate && Q->minratio[D->m]==1))) j++; if (j == d ) backtrack = TRUE; else /*reverse pivot found */ { cache_dict (D_p, Q, i, j); /* Note that the next two lines must come _after_ the call to cache_dict */ D->depth++; if (D->depth > Q->deepest) Q->deepest++; pivot (D, Q, i, j); update (D, Q, &i, &j); /*Update B,C,i,j */ D->lexflag = lexmin (D, Q, ZERO); /* see if lexmin basis */ Q->count[2]++; Q->totalnodes++; save_basis (*D_p, Q); if (Q->strace == Q->count[2]) Q->debug = TRUE; if (Q->etrace == Q->count[2]) Q->debug = FALSE; return TRUE; /*return new dictionary */ } } /* end of main while loop for getnextbasis */ return FALSE; /* done, no more bases */ } /*end of lrs_getnextbasis */ /*************************************/ /* print out one line of output file */ /*************************************/ long lrs_getvertex (lrs_dic * P, lrs_dat * Q, lrs_mp_vector output) /*Print out current vertex if it is lexmin and return it in output */ /* return FALSE if no output generated */ { lrs_mp_matrix A = P->A; long i; long ind; /* output index */ long ired; /* counts number of redundant columns */ /* assign local variables to structures */ long *redundcol = Q->redundcol; long *count = Q->count; long *B = P->B; long *Row = P->Row; long lastdv = Q->lastdv; long hull; long lexflag; hull = Q->hull; lexflag = P->lexflag; if (lexflag || Q->allbases) ++(Q->count[1]); #ifdef PLRS // do not print vertex again in PLRS at root if(P->depth == Q->mindepth ){ return FALSE; } #else //If we are at minimum depth and not at root do not print vertex if(P->depth == Q->mindepth && Q->mindepth != 0){ return FALSE; } #endif if (Q->debug) printA (P, Q); linint (Q->sumdet, 1, P->det, 1); if (Q->getvolume) { updatevolume (P, Q); if(Q->verbose) /* this will print out a triangulation */ lrs_printcobasis(P,Q,ZERO); } /*print cobasis if printcobasis=TRUE and count[2] a multiple of frequency */ /* or for lexmin basis, except origin for hull computation - ugly! */ if (Q->printcobasis) if ((lexflag && !hull) || ((Q->frequency > 0) && (count[2] == (count[2] / Q->frequency) * Q->frequency))) if(P->depth != Q->mindepth || Q->mindepth == 0) //Don't print cobasis if this is a restart cobasis lrs_printcobasis(P,Q,ZERO); if (hull) return FALSE; /* skip printing the origin */ if (!lexflag && !Q->allbases && !Q->lponly) /* not lexmin, and not printing forced */ return FALSE; /* copy column 0 to output */ i = 1; ired = 0; copy (output[0], P->det); for (ind = 1; ind < Q->n; ind++) /* extract solution */ if ((ired < Q->nredundcol) && (redundcol[ired] == ind)) /* column was deleted as redundant */ { itomp (ZERO, output[ind]); ired++; } else /* column not deleted as redundant */ { getnextoutput (P, Q, i, ZERO, output[ind]); i++; } reducearray (output, Q->n); if (lexflag && one(output[0])) ++Q->count[4]; /* integer vertex */ /* uncomment to print nonzero basic variables printf("\n nonzero basis: vars"); for(i=1;i<=lastdv; i++) { if ( !zero(A[Row[i]][0]) ) printf(" %ld ",B[i]); } */ /* printslack inequality indices */ if (Q->printslack) { fprintf(lrs_ofp,"\nslack ineq:"); for(i=lastdv+1;i<=P->m; i++) { if (!zero(A[Row[i]][0])) fprintf(lrs_ofp," %ld ", Q->inequality[B[i]-lastdv]); } } return TRUE; } /* end of lrs_getvertex */ long lrs_getray (lrs_dic * P, lrs_dat * Q, long col, long redcol, lrs_mp_vector output) /*Print out solution in col and return it in output */ /*redcol =n for ray/facet 0..n-1 for linearity column */ /*hull=1 implies facets will be recovered */ /* return FALSE if no output generated in column col */ { long i; long ind; /* output index */ long ired; /* counts number of redundant columns */ /* assign local variables to structures */ long *redundcol = Q->redundcol; long *count = Q->count; long hull = Q->hull; long n = Q->n; long *B = P->B; long *Row = P->Row; long lastdv = Q->lastdv; #ifdef PLRS // do not print vertex again in PLRS at root if(P->depth == Q->mindepth ){ return FALSE; } #else //If we are at minimum depth and not at origin do not print ray if(P->depth == Q->mindepth && Q->mindepth != 0){ return FALSE; } #endif if (Q->debug) { printA (P, Q); for (i = 0; i < Q->nredundcol; i++) fprintf (lrs_ofp, " %ld", redundcol[i]); fflush(lrs_ofp); } if (redcol == n) { ++count[0]; if (Q->printcobasis) if(P->depth != Q->mindepth || Q->mindepth == 0) //Don't print cobasis if this is a restart cobasis lrs_printcobasis(P,Q,col); } i = 1; ired = 0; for (ind = 0; ind < n; ind++) /* print solution */ { if (ind == 0 && !hull) /* must have a ray, set first column to zero */ itomp (ZERO, output[0]); else if ((ired < Q->nredundcol) && (redundcol[ired] == ind)) /* column was deleted as redundant */ { if (redcol == ind) /* true for linearity on this cobasic index */ /* we print reduced determinant instead of zero */ copy (output[ind], P->det); else itomp (ZERO, output[ind]); ired++; } else /* column not deleted as redundant */ { getnextoutput (P, Q, i, col, output[ind]); i++; } } reducearray (output, n); /* printslack for rays: 2006.10.10 */ /* printslack inequality indices */ if (Q->printslack) { fprintf(lrs_ofp,"\nslack ineq:"); for(i=lastdv+1;i<=P->m; i++) { if (!zero(P->A[Row[i]][col])) fprintf(lrs_ofp," %ld ", Q->inequality[B[i]-lastdv]); } } return TRUE; } /* end of lrs_getray */ void getnextoutput (lrs_dic * P, lrs_dat * Q, long i, long col, lrs_mp out) /* get A[B[i][col] and copy to out */ { long row; long m = P->m; long d = P->d; long lastdv = Q->lastdv; lrs_mp_matrix A = P->A; long *B = P->B; long *Row = P->Row; long j; if (i == d && Q->voronoi) return; /* skip last column if voronoi set */ row = Row[i]; if (Q->nonnegative) /* if m+i basic get correct value from dictionary */ /* the slack for the inequality m-d+i contains decision */ /* variable x_i. We first see if this is in the basis */ /* otherwise the value of x_i is zero, except for a ray */ /* when it is one (det/det) for the actual column it is in */ { for (j = lastdv+ 1; j <= m; j++) { if ( Q->inequality[B[j]-lastdv] == m-d+i ) { copy (out, A[Row[j]][col]); return; } } /* did not find inequality m-d+i in basis */ if ( i == col ) copy(out,P->det); else itomp(ZERO,out); } else copy (out, A[row][col]); } /* end of getnextoutput */ void lrs_printcobasis (lrs_dic * P, lrs_dat * Q, long col) /* col is output column being printed */ { #ifdef PLRS long i; long rflag;/* used to find inequality number for ray column */ /* assign local variables to structures */ lrs_mp_matrix A = P->A; lrs_mp Nvol, Dvol; /* hold rescaled det of current basis */ long *B = P->B; long *C = P->C; long *Col = P->Col; long *Row = P->Row; long *inequality = Q->inequality; long *temparray = Q->temparray; long *count = Q->count; long hull = Q->hull; long d = P->d; long lastdv = Q->lastdv; long m=P->m; long firstime=TRUE; long nincidence; /* count number of tight inequalities */ //Make new output node plrs_output* out = new plrs_output; out->type = "cobasis"; //Make stream to collect prat / pmp data stringstream ss; lrs_alloc_mp(Nvol); lrs_alloc_mp(Dvol); if (hull) ss<<"F#"<voronoi) ss<<"V#"<type = "V cobasis"; } } /* get and print incidence information */ if ( col == 0 ) nincidence = d; else nincidence = d-1; for(i=lastdv+1;i<=m;i++) if ( zero (A[Row[i]][0] )) if( ( col == ZERO ) || zero (A[Row[i]] [col]) ){ nincidence++; if( Q->incidence ){ if (firstime){ ss<<" :"; firstime = FALSE; } ss<depth); else if (Q->voronoi) fprintf (lrs_ofp, "\nV#%ld R#%ld B#%ld h=%ld data points ", count[1], count[0], count[2], P->depth); else fprintf (lrs_ofp, "\nV#%ld R#%ld B#%ld h=%ld facets ", count[1], count[0], count[2], P->depth); rflag = (-1); for (i = 0; i < d; i++) { temparray[i] = inequality[C[i] - lastdv]; if (Col[i] == col) rflag = temparray[i]; /* look for ray index */ } for (i = 0; i < d; i++) reorder (temparray, d); for (i = 0; i < d; i++) { fprintf (lrs_ofp, " %ld", temparray[i]); if (!(col == ZERO) && (rflag == temparray[i])) /* missing cobasis element for ray */ fprintf (lrs_ofp, "*"); } /* get and print incidence information */ if ( col == 0 ) nincidence = d; else nincidence = d-1; for(i=lastdv+1;i<=m;i++) if ( zero (A[Row[i]][0] )) if( ( col == ZERO ) || zero (A[Row[i]] [col]) ) { nincidence++; if( Q->incidence ) { if (firstime) { fprintf (lrs_ofp," :"); firstime = FALSE; } fprintf(lrs_ofp," %ld",inequality[B[i] - lastdv ] ); } } fprintf(lrs_ofp," I#%ld",nincidence); pmp (" det=", P->det); fflush (lrs_ofp); rescaledet (P, Q, Nvol, Dvol); /* scales determinant in case input rational */ prat(" in_det=",Nvol,Dvol); prat (" z=", P->objnum, P->objden); lrs_clear_mp(Nvol); lrs_clear_mp(Dvol); #endif } /* end of lrs_printcobasis */ /*********************/ /* print final totals */ /*********************/ void lrs_printtotals (lrs_dic * P, lrs_dat * Q) { #ifdef PLRS long *count = Q->count; long *startcount = Q->startcount; plrs_output* out; std::stringstream ss; //output node number of basis out = new plrs_output; out->type = "basis count"; ss.str(""); ss<data = ss.str(); post_output(out); if(Q->hull){ //output node for number of facets out = new plrs_output; out->type = "facet count"; ss.str(""); ss<data = ss.str(); post_output(out); rescalevolume (P, Q, Q->Nvolume, Q->Dvolume); out = new plrs_output; out->type = "volume"; ss.str(""); string str1 = prat("",Q->Nvolume,Q->Dvolume); //strip trailing blank introduced by prat //for some reason next line fails for mp library ! 2014.12.3 so no volume is reported! #if (defined(LONG) || defined(GMP)) ss << str1.substr (0,str1.length()-1); #endif out->data = ss.str(); post_output(out); }else{ //output node for number of vertices out = new plrs_output; out->type = "vertex count"; ss.str(""); ss<data = ss.str(); post_output(out); //output node for number of rays out = new plrs_output; out->type = "ray count"; ss.str(""); ss<data = ss.str(); post_output(out); //output node for number of integer vertices /* inaccurate for plrs as restart command does not contain number of integer vertices : an overcount is produced */ out = new plrs_output; out->type = "integer vertex count"; ss.str(""); ss<data = ss.str(); post_output(out); } #else long i; double x; /* local assignments */ double *cest = Q->cest; long *count = Q->count; long *inequality = Q->inequality; long *linearity = Q->linearity; long *temparray = Q->temparray; long *C = P->C; long hull = Q->hull; long homogeneous = Q->homogeneous; long nlinearity = Q->nlinearity; long nredundcol = Q->nredundcol; long d, lastdv; d = P->d; lastdv = Q->lastdv; fprintf (lrs_ofp, "\nend"); if (Q->dualdeg) { fprintf (lrs_ofp, "\n*Warning: Starting dictionary is dual degenerate"); fprintf (lrs_ofp, "\n*Complete enumeration may not have been produced"); if (Q->maximize) fprintf(lrs_ofp,"\n*Recommendation: Add dualperturb option before maximize in input file\n"); else fprintf(lrs_ofp,"\n*Recommendation: Add dualperturb option before minimize in input file\n"); } if (Q->unbounded) { fprintf (lrs_ofp, "\n*Warning: Starting dictionary contains rays"); fprintf (lrs_ofp, "\n*Complete enumeration may not have been produced"); if (Q->maximize) fprintf(lrs_ofp,"\n*Recommendation: Change or remove maximize option or add bounds\n"); else fprintf(lrs_ofp,"\n*Recommendation: Change or remove minimize option or add bounds\n"); } if (Q->truncate) fprintf(lrs_ofp,"\n*Tree truncated at each new vertex"); if (Q->maxdepth < MAXD) fprintf (lrs_ofp, "\n*Tree truncated at depth %ld", Q->maxdepth); if (Q->maxoutput > 0L) fprintf (lrs_ofp, "\n*Maximum number of output lines = %ld", Q->maxoutput); #ifdef LONG fprintf (lrs_ofp, "\n*Caution: no overflow checking with long integer arithemtic"); #else if( Q->verbose) { fprintf (lrs_ofp, "\n*Sum of det(B)="); pmp ("", Q->sumdet); } #endif /* next block with volume rescaling must come before estimates are printed */ if (Q->getvolume) { rescalevolume (P, Q, Q->Nvolume, Q->Dvolume); if (Q->polytope) prat ("\n*Volume=", Q->Nvolume, Q->Dvolume); else prat ("\n*Pseudovolume=", Q->Nvolume, Q->Dvolume); } if (hull) /* output things that are specific to hull computation */ { fprintf (lrs_ofp, "\n*Totals: facets=%ld bases=%ld", count[0], count[2]); if (nredundcol > homogeneous) /* don't count column 1 as redundant if homogeneous */ { fprintf (lrs_ofp, " linearities=%ld", nredundcol - homogeneous); fprintf (lrs_ofp, " facets+linearities=%ld",nredundcol-homogeneous+count[0]); } if(lrs_ofp != stdout) { printf ("\n*Totals: facets=%ld bases=%ld", count[0], count[2]); if (nredundcol > homogeneous) /* don't count column 1 as redundant if homogeneous */ { printf (" linearities=%ld", nredundcol - homogeneous); printf (" facets+linearities=%ld",nredundcol-homogeneous+count[0]); } } if ((cest[2] > 0) || (cest[0] > 0)) { fprintf (lrs_ofp, "\n*Estimates: facets=%.0f bases=%.0f", count[0] + cest[0], count[2] + cest[2]); if (Q->getvolume) { rattodouble (Q->Nvolume, Q->Dvolume, &x); for (i = 2; i < d; i++) cest[3] = cest[3] / i; /*adjust for dimension */ fprintf (lrs_ofp, " volume=%g", cest[3] + x); } fprintf (lrs_ofp, "\n*Total number of tree nodes evaluated: %ld", Q->totalnodes); #ifdef TIMES fprintf (lrs_ofp, "\n*Estimated total running time=%.1f secs ",(count[2]+cest[2])/Q->totalnodes*get_time () ); #endif } /* Should not happen since we homogenize */ /* if ( Q-> restart || Q->allbases || (count[0] > 1 && !Q->homogeneous && !Q->polytope)) fprintf (lrs_ofp, "\n*Note! Duplicate facets may be present"); */ } else /* output things specific to vertex/ray computation */ { fprintf (lrs_ofp, "\n*Totals: vertices=%ld rays=%ld bases=%ld", count[1], count[0], count[2]); fprintf (lrs_ofp, " integer_vertices=%ld ",count[4]); if (nredundcol > 0) fprintf (lrs_ofp, " linearities=%ld", nredundcol); if ( count[0] + nredundcol > 0 ) { fprintf (lrs_ofp, " vertices+rays"); if ( nredundcol > 0 ) fprintf (lrs_ofp, "+linearities"); fprintf (lrs_ofp, "=%ld",nredundcol+count[0]+count[1]); } if(lrs_ofp != stdout) { printf ("\n*Totals: vertices=%ld rays=%ld bases=%ld", count[1], count[0], count[2]); printf (" integer_vertices=%ld ",count[4]); if (nredundcol > 0) printf (" linearities=%ld", nredundcol); if ( count[0] + nredundcol > 0 ) { printf (" vertices+rays"); if ( nredundcol > 0 ) printf ("+linearities"); printf ("=%ld",nredundcol+count[0]+count[1]); } } /* end lrs_ofp != stdout */ if ((cest[2] > 0) || (cest[0] > 0)) { fprintf (lrs_ofp, "\n*Estimates: vertices=%.0f rays=%.0f", count[1]+cest[1], count[0]+cest[0]); fprintf (lrs_ofp, " bases=%.0f integer_vertices=%.0f ",count[2]+cest[2], count[4]+cest[4]); if (Q->getvolume) { rattodouble (Q->Nvolume, Q->Dvolume, &x); for (i = 2; i <= d-homogeneous; i++) cest[3] = cest[3] / i; /*adjust for dimension */ fprintf (lrs_ofp, " pseudovolume=%g", cest[3] + x); } fprintf (lrs_ofp, "\n*Total number of tree nodes evaluated: %ld", Q->totalnodes); #ifdef TIMES fprintf (lrs_ofp, "\n*Estimated total running time=%.1f secs ",(count[2]+cest[2])/Q->totalnodes*get_time () ); #endif } if (Q->restart || Q->allbases) /* print warning */ fprintf (lrs_ofp, "\n*Note! Duplicate vertices/rays may be present"); else if ( (count[0] > 1 && !Q->homogeneous)) fprintf (lrs_ofp, "\n*Note! Duplicate rays may be present"); } /* end of output for vertices/rays */ fprintf (lrs_ofp, "\n*Dictionary Cache: max size= %ld misses= %ld/%ld Tree Depth= %ld", dict_count, cache_misses, cache_tries, Q->deepest); if(lrs_ofp != stdout) printf ("\n*Dictionary Cache: max size= %ld misses= %ld/%ld Tree Depth= %ld", dict_count, cache_misses, cache_tries, Q->deepest); if(!Q->verbose) return; fprintf (lrs_ofp, "\n*Input size m=%ld rows n=%ld columns", P->m, Q->n); if (hull) fprintf (lrs_ofp, " working dimension=%ld", d - 1 + homogeneous); else fprintf (lrs_ofp, " working dimension=%ld", d); fprintf (lrs_ofp, "\n*Starting cobasis defined by input rows"); for (i = 0; i < nlinearity; i++) temparray[i] = linearity[i]; for (i = nlinearity; i < lastdv; i++) temparray[i] = inequality[C[i - nlinearity] - lastdv]; for (i = 0; i < lastdv; i++) reorder (temparray, lastdv); for (i = 0; i < lastdv; i++) fprintf (lrs_ofp, " %ld", temparray[i]); #endif } /* end of lrs_printtotals */ /************************/ /* Estimation function */ /************************/ long lrs_estimate (lrs_dic * P, lrs_dat * Q) /*returns estimate of subtree size (no. cobases) from current node */ /*current node is not counted. */ /*cest[0]rays [1]vertices [2]bases [3]volume */ /* [4] integer vertices */ { lrs_mp_vector output; /* holds one line of output; ray,vertex,facet,linearity */ lrs_mp Nvol, Dvol; /* hold volume of current basis */ long estdepth = 0; /* depth of basis/vertex in subtree for estimate */ long i = 0, j = 0, k, nchild, runcount, col; double prod = 0.0; double cave[] = {0.0, 0.0, 0.0, 0.0, 0.0}; double nvertices, nbases, nrays, nvol, nivertices; long rays = 0; double newvol = 0.0; /* assign local variables to structures */ lrs_mp_matrix A = P->A; long *isave = Q->isave; long *jsave = Q->jsave; double *cest = Q->cest; long d = P->d; lrs_alloc_mp(Nvol); lrs_alloc_mp(Dvol); /* Main Loop of Estimator */ output = lrs_alloc_mp_vector (Q->n); /* output holds one line of output from dictionary */ for (runcount = 1; runcount <= Q->runs; runcount++) { /* runcount counts number of random probes */ j = 0; nchild = 1; prod = 1; nvertices = 0.0; nbases = 0.0; nrays = 0.0; nvol = 0.0; nivertices =0.0; while (nchild != 0) /* while not finished yet */ { nchild = 0; while (j < d) { if (reverse (P, Q, &i, j)) { isave[nchild] = i; jsave[nchild] = j; nchild++; } j++; } if (estdepth == 0 && nchild == 0) { cest[0] = cest[0] + rays; /* may be some rays here */ lrs_clear_mp(Nvol); lrs_clear_mp(Dvol); return(0L); /*subtree is a leaf */ } prod = prod * nchild; nbases = nbases + prod; if (Q->debug) { fprintf (lrs_ofp, " degree= %ld ", nchild); fprintf (lrs_ofp, "\nPossible reverse pivots: i,j="); for (k = 0; k < nchild; k++) fprintf (lrs_ofp, "%ld,%ld ", isave[k], jsave[k]); } if (nchild > 0) /*reverse pivot found choose random child */ { k = myrandom (Q->seed, nchild); Q->seed = myrandom (Q->seed, 977L); i = isave[k]; j = jsave[k]; if (Q->debug) fprintf (lrs_ofp, " selected pivot k=%ld seed=%ld ", k, Q->seed); estdepth++; Q->totalnodes++; /* calculate total number of nodes evaluated */ pivot (P, Q, i, j); update (P, Q, &i, &j); /*Update B,C,i,j */ if (lexmin (P, Q, ZERO)) /* see if lexmin basis for vertex */ { nvertices = nvertices + prod; /* integer vertex estimate */ if( lrs_getvertex(P,Q,output)) { --Q->count[1]; if (one(output[0] )) { --Q->count[4]; nivertices = nivertices + prod; } } } rays = 0; for (col = 1; col <= d; col++) if (negative (A[0][col]) && (ratio (P, Q, col) == 0) && lexmin (P, Q, col)) rays++; nrays = nrays + prod * rays; /* update ray info */ if (Q->getvolume) { rescaledet (P, Q, Nvol, Dvol); /* scales determinant in case input rational */ rattodouble (Nvol, Dvol, &newvol); nvol = nvol + newvol * prod; /* adjusts volume for degree */ } j = 0; } } cave[0] = cave[0] + nrays; cave[1] = cave[1] + nvertices; cave[2] = cave[2] + nbases; cave[3] = cave[3] + nvol; cave[4] = cave[4] + nivertices; /* backtrack to root and do it again */ while (estdepth > 0) { estdepth = estdepth - 1; selectpivot (P, Q, &i, &j); pivot (P, Q, i, j); update (P, Q, &i, &j); /*Update B,C,i,j */ /*fprintf(lrs_ofp,"\n0 +++"); */ if (Q->debug) { fprintf (lrs_ofp, "\n Backtrack Pivot: indices i,j %ld %ld ", i, j); printA (P, Q); } j++; } } /* end of for loop on runcount */ for (i = 0; i < 5; i++) cest[i] = cave[i] / Q->runs + cest[i]; i=(long) cave[2]/Q->runs; lrs_clear_mp(Nvol); lrs_clear_mp(Dvol); lrs_clear_mp_vector(output, Q->n); return(i); } /* end of lrs_estimate */ /*********************************/ /* Internal functions */ /*********************************/ /* Basic Dictionary functions */ /******************************* */ long reverse (lrs_dic * P, lrs_dat * Q, long *r, long s) /* find reverse indices */ /* TRUE if B[*r] C[s] is a reverse lexicographic pivot */ { long i, j, enter, row, col; /* assign local variables to structures */ lrs_mp_matrix A = P->A; long *B = P->B; long *C = P->C; long *Row = P->Row; long *Col = P->Col; long d = P->d; enter = C[s]; col = Col[s]; if (Q->debug) { fprintf (lrs_ofp, "\n+reverse: col index %ld C %ld Col %ld ", s, enter, col); fflush (lrs_ofp); } if (!negative (A[0][col])) { if (Q->debug) fprintf (lrs_ofp, " Pos/Zero Cost Coeff"); Q->minratio[P->m]=0; /* 2011.7.14 */ return (FALSE); } *r = ratio (P, Q, col); if (*r == 0) /* we have a ray */ { if (Q->debug) fprintf (lrs_ofp, " Pivot col non-negative: ray found"); Q->minratio[P->m]=0; /* 2011.7.14 */ return (FALSE); } row = Row[*r]; /* check cost row after "pivot" for smaller leaving index */ /* ie. j s.t. A[0][j]*A[row][col] < A[0][col]*A[row][j] */ /* note both A[row][col] and A[0][col] are negative */ for (i = 0; i < d && C[i] < B[*r]; i++) if (i != s) { j = Col[i]; if (positive (A[0][j]) || negative (A[row][j])) /*or else sign test fails trivially */ if ((!negative (A[0][j]) && !positive (A[row][j])) || comprod (A[0][j], A[row][col], A[0][col], A[row][j]) == -1) { /*+ve cost found */ if (Q->debug) { fprintf (lrs_ofp, "\nPositive cost found: index %ld C %ld Col %ld", i, C[i], j); fflush(lrs_ofp); } Q->minratio[P->m]=0; /* 2011.7.14 */ return (FALSE); } } if (Q->debug) { fprintf (lrs_ofp, "\n+end of reverse : indices r %ld s %ld \n", *r, s); fflush (stdout); } return (TRUE); } /* end of reverse */ long selectpivot (lrs_dic * P, lrs_dat * Q, long *r, long *s) /* select pivot indices using lexicographic rule */ /* returns TRUE if pivot found else FALSE */ /* pivot variables are B[*r] C[*s] in locations Row[*r] Col[*s] */ { long j, col; /* assign local variables to structures */ lrs_mp_matrix A = P->A; long *Col = P->Col; long d = P->d; *r = 0; *s = d; j = 0; /*find positive cost coef */ while ((j < d) && (!positive (A[0][Col[j]]))) j++; if (j < d) /* pivot column found! */ { *s = j; col = Col[j]; /*find min index ratio */ *r = ratio (P, Q, col); if (*r != 0) return (TRUE); /* unbounded */ } return (FALSE); } /* end of selectpivot */ /******************************************************* */ void pivot (lrs_dic * P, lrs_dat * Q, long bas, long cob) /* Qpivot routine for array A */ /* indices bas, cob are for Basis B and CoBasis C */ /* corresponding to row Row[bas] and column */ /* Col[cob] respectively */ { long r, s; long i, j; lrs_mp Ns, Nt, Ars; /* assign local variables to structures */ lrs_mp_matrix A = P->A; long *B = P->B; long *C = P->C; long *Row = P->Row; long *Col = P->Col; long d, m_A; lrs_alloc_mp(Ns); lrs_alloc_mp(Nt); lrs_alloc_mp(Ars); d = P->d; m_A = P->m_A; Q->count[3]++; /* count the pivot */ r = Row[bas]; s = Col[cob]; /* Ars=A[r][s] */ if (Q->debug) { fprintf (lrs_ofp, "\n pivot B[%ld]=%ld C[%ld]=%ld ", bas, B[bas], cob, C[cob]); printA(P,Q); fflush (stdout); } copy (Ars, A[r][s]); storesign (P->det, sign (Ars)); /*adjust determinant to new sign */ for (i = 0; i <= m_A; i++) if (i != r) for (j = 0; j <= d; j++) if (j != s) { /* A[i][j]=(A[i][j]*Ars-A[i][s]*A[r][j])/P->det; */ mulint (A[i][j], Ars, Nt); mulint (A[i][s], A[r][j], Ns); decint (Nt, Ns); exactdivint (Nt, P->det, A[i][j]); } /* end if j .... */ if (sign (Ars) == POS) { for (j = 0; j <= d; j++) /* no need to change sign if Ars neg */ /* A[r][j]=-A[r][j]; */ if (!zero (A[r][j])) changesign (A[r][j]); } /* watch out for above "if" when removing this "}" ! */ else for (i = 0; i <= m_A; i++) if (!zero (A[i][s])) changesign (A[i][s]); /* A[r][s]=P->det; */ copy (A[r][s], P->det); /* restore old determinant */ copy (P->det, Ars); storesign (P->det, POS); /* always keep positive determinant */ if (Q->debug) { fprintf (lrs_ofp, " depth=%ld ", P->depth); pmp ("det=", P->det); fflush(stdout); } /* set the new rescaled objective function value */ mulint (P->det, Q->Lcm[0], P->objden); mulint (Q->Gcd[0], A[0][0], P->objnum); if (!Q->maximize) changesign (P->objnum); if (zero (P->objnum)) storesign (P->objnum, POS); else reduce (P->objnum,P->objden); lrs_clear_mp(Ns); lrs_clear_mp(Nt); lrs_clear_mp(Ars); } /* end of pivot */ long primalfeasible (lrs_dic * P, lrs_dat * Q) /* Do dual pivots to get primal feasibility */ /* Note that cost row is all zero, so no ratio test needed for Dual Bland's rule */ { long primalinfeasible = TRUE; long i, j; /* assign local variables to structures */ lrs_mp_matrix A = P->A; long *Row = P->Row; long *Col = P->Col; long m, d, lastdv; m = P->m; d = P->d; lastdv = Q->lastdv; /*temporary: try to get new start after linearity */ while (primalinfeasible) { i=lastdv+1; while (i <= m && !negative (A[Row[i]][0]) ) i++; if (i <= m ) { j = 0; /*find a positive entry for in row */ while (j < d && !positive (A[Row[i]][Col[j]])) j++; if (j >= d) return (FALSE); /* no positive entry */ pivot (P, Q, i, j); update (P, Q, &i, &j); } else primalinfeasible = FALSE; } /* end of while primalinfeasibile */ return (TRUE); } /* end of primalfeasible */ long lrs_solvelp (lrs_dic * P, lrs_dat * Q, long maximize) /* Solve primal feasible lp by Dantzig`s rule and lexicographic ratio test */ /* return TRUE if bounded, FALSE if unbounded */ { long i, j; /* assign local variables to structures */ long d = P->d; while (dan_selectpivot (P, Q, &i, &j)) { Q->count[3]++; pivot (P, Q, i, j); update (P, Q, &i, &j); /*Update B,C,i,j */ } if (Q->debug) printA (P, Q); if (j < d && i == 0) /* selectpivot gives information on unbounded solution */ { #ifndef LRS_QUIET if (Q->lponly) fprintf (lrs_ofp, "\n*Unbounded solution"); #endif return FALSE; } return TRUE; } /* end of lrs_solvelp */ long getabasis (lrs_dic * P, lrs_dat * Q, long order[]) /* Pivot Ax<=b to standard form */ /*Try to find a starting basis by pivoting in the variables x[1]..x[d] */ /*If there are any input linearities, these appear first in order[] */ /* Steps: (a) Try to pivot out basic variables using order */ /* Stop if some linearity cannot be made to leave basis */ /* (b) Permanently remove the cobasic indices of linearities */ /* (c) If some decision variable cobasic, it is a linearity, */ /* and will be removed. */ { long i, j, k; /* assign local variables to structures */ lrs_mp_matrix A = P->A; long *B = P->B; long *C = P->C; long *Row = P->Row; long *Col = P->Col; long *linearity = Q->linearity; long *redundcol = Q->redundcol; long m, d, nlinearity; long nredundcol = 0L; /* will be calculated here */ m = P->m; d = P->d; nlinearity = Q->nlinearity; if (Q->debug) { fprintf (lrs_ofp, "\ngetabasis from inequalities given in order"); for (i = 0l; i < m; i++) fprintf (lrs_ofp, " %ld", order[i]); } for (j = 0l; j < m; j++) { i = 0l; while (i <= m && B[i] != d + order[j]) i++; /* find leaving basis index i */ if (j < nlinearity && i > m) /* cannot pivot linearity to cobasis */ { if (Q->debug) printA (P, Q); #ifndef LRS_QUIET fprintf (lrs_ofp, "\nCannot find linearity in the basis"); #endif return FALSE; } if (i <= m) { /* try to do a pivot */ k = 0l; while (C[k] <= d && zero (A[Row[i]][Col[k]])){ k++; } if (C[k] <= d) { pivot (P, Q, i, k); update (P, Q, &i, &k); } else if (j < nlinearity) { /* cannot pivot linearity to cobasis */ if (zero (A[Row[i]][0])) { #ifndef LRS_QUIET fprintf (lrs_ofp, "\n*Input linearity in row %ld is redundant--converted to inequality", order[j]); #endif linearity[j]=0l; } else { if (Q->debug) printA (P, Q); #ifndef LRS_QUIET fprintf (lrs_ofp, "\n*Input linearity in row %ld is inconsistent with earlier linearities", order[j]); fprintf (lrs_ofp, "\n*No feasible solution"); #endif return FALSE; } } } } /* update linearity array to get rid of redundancies */ i = 0; k = 0; /* counters for linearities */ while (k < nlinearity) { while (k < nlinearity && linearity[k] == 0) k++; if (k < nlinearity) linearity[i++] = linearity[k++]; } nlinearity = i; /* bug fix, 2009.6.27 */ Q->nlinearity = i; /* column dependencies now can be recorded */ /* redundcol contains input column number 0..n-1 where redundancy is */ k = 0; while (k < d && C[k] <= d) { if (C[k] <= d){ /* decision variable still in cobasis */ redundcol[nredundcol++] = C[k] - Q->hull; /* adjust for hull indices */ } k++; } /* now we know how many decision variables remain in problem */ Q->nredundcol = nredundcol; Q->lastdv = d - nredundcol; if (Q->debug) { fprintf (lrs_ofp, "\nend of first phase of getabasis: "); fprintf (lrs_ofp, "lastdv=%ld nredundcol=%ld", Q->lastdv, Q->nredundcol); fprintf (lrs_ofp, "\nredundant cobases:"); for (i = 0; i < nredundcol; i++) fprintf (lrs_ofp, " %ld", redundcol[i]); printA (P, Q); } /* Remove linearities from cobasis for rest of computation */ /* This is done in order so indexing is not screwed up */ for (i = 0; i < nlinearity; i++) { /* find cobasic index */ k = 0; while (k < d && C[k] != linearity[i] + d) k++; if (k >= d) { fprintf (lrs_ofp, "\nError removing linearity"); return FALSE; } if (!removecobasicindex (P, Q, k)) return FALSE; d = P->d; } if (Q->debug && nlinearity > 0) printA (P, Q); /* set index value for first slack variable */ /* Check feasability */ if (Q->givenstart) { i = Q->lastdv + 1; while (i <= m && !negative (A[Row[i]][0])) i++; if (i <= m) fprintf (lrs_ofp, "\n*Infeasible startingcobasis - will be modified"); } return TRUE; } /* end of getabasis */ long removecobasicindex (lrs_dic * P, lrs_dat * Q, long k) /* remove the variable C[k] from the problem */ /* used after detecting column dependency */ { long i, j, cindex, deloc; /* assign local variables to structures */ lrs_mp_matrix A = P->A; long *B = P->B; long *C = P->C; long *Col = P->Col; long m, d; m = P->m; d = P->d; if (Q->debug) fprintf (lrs_ofp, "\nremoving cobasic index k=%ld C[k]=%ld", k, C[k]); cindex = C[k]; /* cobasic index to remove */ deloc = Col[k]; /* matrix column location to remove */ for (i = 1; i <= m; i++) /* reduce basic indices by 1 after index */ if (B[i] > cindex) B[i]--; for (j = k; j < d; j++) /* move down other cobasic variables */ { C[j] = C[j + 1] - 1; /* cobasic index reduced by 1 */ Col[j] = Col[j + 1]; } if (deloc != d) { /* copy col d to deloc */ for (i = 0; i <= m; i++) copy (A[i][deloc], A[i][d]); /* reassign location for moved column */ j = 0; while (Col[j] != d) j++; Col[j] = deloc; } P->d--; if (Q->debug) printA (P, Q); return TRUE; } /* end of removecobasicindex */ lrs_dic * resize (lrs_dic * P, lrs_dat * Q) /* resize the dictionary after some columns are deleted, ie. inputd>d */ /* a new lrs_dic record is created with reduced size, and items copied over */ { lrs_dic *P1; /* to hold new dictionary in case of resizing */ long i, j; long m, d, m_A; m = P->m; d = P->d; m_A = P->m_A; /* get new dictionary record */ P1 = new_lrs_dic (m, d, m_A); /* copy data from P to P1 */ P1->i = P->i; P1->j = P->j; P1->depth = P->depth; P1->m = P->m; P1->d = P1->d_orig = d; P1->lexflag = P->lexflag; P1->m_A = P->m_A; copy (P1->det, P->det); copy (P1->objnum, P->objnum); copy (P1->objden, P->objden); for (i = 0; i <= m; i++) { P1->B[i] = P->B[i]; P1->Row[i] = P->Row[i]; } for (i = 0; i <= m_A; i++) { for (j = 0; j <= d; j++) copy (P1->A[i][j], P->A[i][j]); } for (j = 0; j <= d; j++) { P1->Col[j] = P->Col[j]; P1->C[j] = P->C[j]; } if (Q->debug) { fprintf (lrs_ofp, "\nDictionary resized from d=%ld to d=%ld", Q->inputd, P->d); printA (P1, Q); } lrs_free_dic (P,Q); /* Reassign cache pointers */ Q->Qhead = P1; Q->Qtail = P1; P1->next = P1; P1->prev = P1; return P1; } /********* resize ***************/ long restartpivots (lrs_dic * P, lrs_dat * Q) /* facet contains a list of the inequalities in the cobasis for the restart */ /* inequality contains the relabelled inequalities after initialization */ { long i, j, k; long *Cobasic; /* when restarting, Cobasic[j]=1 if j is in cobasis */ /* assign local variables to structures */ lrs_mp_matrix A = P->A; long *B = P->B; long *C = P->C; long *Row = P->Row; long *Col = P->Col; long *inequality = Q->inequality; long *facet = Q->facet; long nlinearity = Q->nlinearity; long m, d, lastdv; m = P->m; d = P->d; lastdv = Q->lastdv; Cobasic = (long *) CALLOC ((unsigned) m + d + 2, sizeof (long)); if (Q->debug) fprintf(lrs_ofp,"\nCobasic flags in restartpivots"); /* set Cobasic flags */ for (i = 0; i < m + d + 1; i++) Cobasic[i] = 0; for (i = 0; i < d; i++) /* find index corresponding to facet[i] */ { j = 1; while (facet[i + nlinearity] != inequality[j]) j++; Cobasic[j + lastdv] = 1; if (Q->debug) fprintf(lrs_ofp," %ld %ld;",facet[i+nlinearity],j+lastdv); } /* Note that the order of doing the pivots is important, as */ /* the B and C vectors are reordered after each pivot */ /* code below replaced 2006.10.30 */ /* for (i = m; i >= d + 1; i--) if (Cobasic[B[i]]) { k = d - 1; while ((k >= 0) && (zero (A[Row[i]][Col[k]]) || Cobasic[C[k]])) k--; if (k >= 0) { pivot (P, Q, i, k); update (P, Q, &i, &k); } else { fprintf (lrs_ofp, "\nInvalid Co-basis - does not have correct rank"); free(Cobasic); return FALSE; } } */ /*end of code that was replaced */ /* Suggested new code from db starts */ i=m; while (i>d){ while(Cobasic[B[i]]){ k = d - 1; while ((k >= 0) && (zero (A[Row[i]][Col[k]]) || Cobasic[C[k]])){ k--; } if (k >= 0) { /*db asks: should i really be modified here? (see old code) */ /*da replies: modifying i only makes is larger, and so */ /*the second while loop will put it back where it was */ /*faster (and safer) as done below */ long ii=i; pivot (P, Q, ii, k); update (P, Q, &ii, &k); } else { fprintf (lrs_ofp, "\nInvalid Co-basis - does not have correct rank"); free(Cobasic); return FALSE; } } i--; } /* Suggested new code from db ends */ if (lexmin (P, Q, ZERO)) --Q->count[1]; /* decrement vertex count if lexmin */ /* check restarting from a primal feasible dictionary */ for (i = lastdv + 1; i <= m; i++) if (negative (A[Row[i]][0])) { fprintf (lrs_ofp, "\nTrying to restart from infeasible dictionary"); free(Cobasic); return FALSE; } free(Cobasic); return TRUE; } /* end of restartpivots */ long ratio (lrs_dic * P, lrs_dat * Q, long col) /*find lex min. ratio */ /* find min index ratio -aig/ais, ais<0 */ /* if multiple, checks successive basis columns */ /* recoded Dec 1997 */ { long i, j, comp, ratiocol, basicindex, start, nstart, cindex, bindex; long firstime; /*For ratio test, true on first pass,else false */ lrs_mp Nmin, Dmin; long degencount, ndegencount; /* assign local variables to structures */ lrs_mp_matrix A = P->A; long *B = P->B; long *Row = P->Row; long *Col = P->Col; long *minratio = Q->minratio; long m, d, lastdv; m = P->m; d = P->d; lastdv = Q->lastdv; nstart=0; ndegencount=0; degencount = 0; minratio[P->m]=1; /*2011.7.14 non-degenerate pivot flag */ for (j = lastdv + 1; j <= m; j++) { /* search rows with negative coefficient in dictionary */ /* minratio contains indices of min ratio cols */ if (negative (A[Row[j]][col])) { minratio[degencount++] = j; if(zero (A[Row[j]][0])) minratio[P->m]=0; /*2011.7.14 degenerate pivot flag */ } } /* end of for loop */ if (Q->debug) { fprintf (lrs_ofp, " Min ratios: "); for (i = 0; i < degencount; i++) fprintf (lrs_ofp, " %ld ", B[minratio[i]]); } if (degencount == 0) return (degencount); /* non-negative pivot column */ lrs_alloc_mp(Nmin); lrs_alloc_mp(Dmin); ratiocol = 0; /* column being checked, initially rhs */ start = 0; /* starting location in minratio array */ bindex = d + 1; /* index of next basic variable to consider */ cindex = 0; /* index of next cobasic variable to consider */ basicindex = d; /* index of basis inverse for current ratio test, except d=rhs test */ while (degencount > 1) /*keep going until unique min ratio found */ { if (B[bindex] == basicindex) /* identity col in basis inverse */ { if (minratio[start] == bindex) /* remove this index, all others stay */ { start++; degencount--; } bindex++; } else /* perform ratio test on rhs or column of basis inverse */ { firstime = TRUE; /*get next ratio column and increment cindex */ if (basicindex != d) ratiocol = Col[cindex++]; for (j = start; j < start + degencount; j++) { i = Row[minratio[j]]; /* i is the row location of the next basic variable */ comp = 1; /* 1: lhs>rhs; 0:lhs=rhs; -1: lhsdebug) { fprintf (lrs_ofp, " ratiocol=%ld degencount=%ld ", ratiocol, degencount); fprintf (lrs_ofp, " Min ratios: "); for (i = start; i < start + degencount; i++) fprintf (lrs_ofp, " %ld ", B[minratio[i]]); } } /*end of while loop */ lrs_clear_mp(Nmin); lrs_clear_mp(Dmin); return (minratio[start]); } /* end of ratio */ long lexmin (lrs_dic * P, lrs_dat * Q, long col) /*test if basis is lex-min for vertex or ray, if so TRUE */ /* FALSE if a_r,g=0, a_rs !=0, r > s */ { /*do lexmin test for vertex if col=0, otherwise for ray */ long r, s, i, j; /* assign local variables to structures */ lrs_mp_matrix A = P->A; long *B = P->B; long *C = P->C; long *Row = P->Row; long *Col = P->Col; long m = P->m; long d = P->d; for (i = Q->lastdv + 1; i <= m; i++) { r = Row[i]; if (zero (A[r][col])) /* necessary for lexmin to fail */ for (j = 0; j < d; j++) { s = Col[j]; if (B[i] > C[j]) /* possible pivot to reduce basis */ { if (zero (A[r][0])) /* no need for ratio test, any pivot feasible */ { if (!zero (A[r][s])) return (FALSE); } else if (negative (A[r][s]) && ismin (P, Q, r, s)) { return (FALSE); } } /* end of if B[i] ... */ } } if ((col != ZERO) && Q->debug) { fprintf (lrs_ofp, "\n lexmin ray in col=%ld ", col); printA (P, Q); } return (TRUE); } /* end of lexmin */ long ismin (lrs_dic * P, lrs_dat * Q, long r, long s) /*test if A[r][s] is a min ratio for col s */ { long i; /* assign local variables to structures */ lrs_mp_matrix A = P->A; long m_A = P->m_A; for (i = 1; i <= m_A; i++) if ((i != r) && negative (A[i][s]) && comprod (A[i][0], A[r][s], A[i][s], A[r][0])) { return (FALSE); } return (TRUE); } void update (lrs_dic * P, lrs_dat * Q, long *i, long *j) /*update the B,C arrays after a pivot */ /* involving B[bas] and C[cob] */ { long leave, enter; /* assign local variables to structures */ long *B = P->B; long *C = P->C; long *Row = P->Row; long *Col = P->Col; long m = P->m; long d = P->d; leave = B[*i]; enter = C[*j]; B[*i] = enter; reorder1 (B, Row, *i, m + 1); C[*j] = leave; reorder1 (C, Col, *j, d); /* restore i and j to new positions in basis */ for (*i = 1; B[*i] != enter; (*i)++); /*Find basis index */ for (*j = 0; C[*j] != leave; (*j)++); /*Find co-basis index */ } /* end of update */ long lrs_degenerate (lrs_dic * P, lrs_dat * Q) /* TRUE if the current dictionary is primal degenerate */ /* not thoroughly tested 2000/02/15 */ { long i; long *Row; lrs_mp_matrix A = P->A; long d = P->d; long m = P->m; Row = P->Row; for (i = d + 1; i <= m; i++) if (zero (A[Row[i]][0])) return TRUE; return FALSE; } /*********************************************************/ /* Miscellaneous */ /******************************************************* */ void reorder (long a[], long range) /*reorder array in increasing order with one misplaced element */ { long i, temp; for (i = 0; i < range - 1; i++) if (a[i] > a[i + 1]) { temp = a[i]; a[i] = a[i + 1]; a[i + 1] = temp; } for (i = range - 2; i >= 0; i--) if (a[i] > a[i + 1]) { temp = a[i]; a[i] = a[i + 1]; a[i + 1] = temp; } } /* end of reorder */ void reorder1 (long a[], long b[], long newone, long range) /*reorder array a in increasing order with one misplaced element at index newone */ /*elements of array b are updated to stay aligned with a */ { long temp; while (newone > 0 && a[newone] < a[newone - 1]) { temp = a[newone]; a[newone] = a[newone - 1]; a[newone - 1] = temp; temp = b[newone]; b[newone] = b[newone - 1]; b[--newone] = temp; } while (newone < range - 1 && a[newone] > a[newone + 1]) { temp = a[newone]; a[newone] = a[newone + 1]; a[newone + 1] = temp; temp = b[newone]; b[newone] = b[newone + 1]; b[++newone] = temp; } } /* end of reorder1 */ void rescaledet (lrs_dic * P, lrs_dat * Q, lrs_mp Vnum, lrs_mp Vden) /* rescale determinant to get its volume */ /* Vnum/Vden is volume of current basis */ { lrs_mp gcdprod; /* to hold scale factors */ long i; /* assign local variables to structures */ long *B = P->B; long *C = P->C; long m, d, lastdv; lrs_alloc_mp(gcdprod); m = P->m; d = P->d; lastdv = Q->lastdv; itomp (ONE, gcdprod); itomp (ONE, Vden); for (i = 0; i < d; i++) if (B[i] <= m) { mulint (Q->Gcd[Q->inequality[C[i] - lastdv]], gcdprod, gcdprod); mulint (Q->Lcm[Q->inequality[C[i] - lastdv]], Vden, Vden); } mulint (P->det, gcdprod, Vnum); reduce (Vnum, Vden); lrs_clear_mp(gcdprod); } /* end rescaledet */ void rescalevolume (lrs_dic * P, lrs_dat * Q, lrs_mp Vnum, lrs_mp Vden) /* adjust volume for dimension */ { lrs_mp temp, dfactorial; /* assign local variables to structures */ long lastdv = Q->lastdv; lrs_alloc_mp(temp); lrs_alloc_mp(dfactorial); /*reduce Vnum by d factorial */ getfactorial (dfactorial, lastdv); mulint (dfactorial, Vden, Vden); if (Q->hull && !Q->homogeneous) { /* For hull option multiply by d to correct for lifting */ itomp (lastdv, temp); mulint (temp, Vnum, Vnum); } reduce (Vnum, Vden); lrs_clear_mp(temp); lrs_clear_mp(dfactorial); } void updatevolume (lrs_dic * P, lrs_dat * Q) /* rescale determinant and update the volume */ { lrs_mp tN, tD, Vnum, Vden; lrs_alloc_mp(tN); lrs_alloc_mp(tD); lrs_alloc_mp(Vnum); lrs_alloc_mp(Vden); rescaledet (P, Q, Vnum, Vden); copy (tN, Q->Nvolume); copy (tD, Q->Dvolume); linrat (tN, tD, ONE, Vnum, Vden, ONE, Q->Nvolume, Q->Dvolume); if (Q->debug) { prat ("\n*Volume=", Q->Nvolume, Q->Dvolume); pmp (" Vnum=", Vnum); pmp (" Vden=", Vden); } lrs_clear_mp(tN); lrs_clear_mp(tD); lrs_clear_mp(Vnum); lrs_clear_mp(Vden); } /* end of updatevolume */ /***************************************************/ /* Routines for redundancy checking */ /***************************************************/ long checkredund (lrs_dic * P, lrs_dat * Q) /* Solve primal feasible lp by least subscript and lex min basis method */ /* to check redundancy of a row in objective function */ /* returns TRUE if redundant, else FALSE */ { lrs_mp Ns, Nt; long i, j; long r, s; /* assign local variables to structures */ lrs_mp_matrix A = P->A; long *Row, *Col; long d = P->d; lrs_alloc_mp(Ns); lrs_alloc_mp(Nt); Row = P->Row; Col = P->Col; while (selectpivot (P, Q, &i, &j)) { Q->count[2]++; /* sign of new value of A[0][0] */ /* is A[0][s]*A[r][0]-A[0][0]*A[r][s] */ r = Row[i]; s = Col[j]; mulint (A[0][s], A[r][0], Ns); mulint (A[0][0], A[r][s], Nt); if (mp_greater (Ns, Nt)) { lrs_clear_mp(Ns); lrs_clear_mp(Nt); return FALSE; /* non-redundant */ } pivot (P, Q, i, j); update (P, Q, &i, &j); /*Update B,C,i,j */ } lrs_clear_mp(Ns); lrs_clear_mp(Nt); return !(j < d && i == 0); /* unbounded is also non-redundant */ } /* end of checkredund */ long checkcobasic (lrs_dic * P, lrs_dat * Q, long index) /* TRUE if index is cobasic and nonredundant */ /* FALSE if basic, or degen. cobasic, where it will get pivoted out */ { /* assign local variables to structures */ lrs_mp_matrix A = P->A; long *B, *C, *Row, *Col; long d = P->d; long m = P->m; long debug = Q->debug; long i = 0; long j = 0; long s; B = P->B; C = P->C; Row = P->Row; Col = P->Col; while ((j < d) && C[j] != index) j++; if (j == d) return FALSE; /* not cobasic index */ /* index is cobasic */ if (debug) fprintf (lrs_ofp, "\nindex=%ld cobasic", index); /* not debugged for new LOC s=LOC[index]; */ s = Col[j]; i = Q->lastdv + 1; while ((i <= m) && (zero (A[Row[i]][s]) || !zero (A[Row[i]][0]))) i++; if (i > m) { if (debug) fprintf (lrs_ofp, " is non-redundant"); return TRUE; } if (debug) fprintf (lrs_ofp, " is degenerate B[i]=%ld", B[i]); pivot (P, Q, i, j); update (P, Q, &i, &j); /*Update B,C,i,j */ return FALSE; /*index is no longer cobasic */ } /* end of checkcobasic */ long checkindex (lrs_dic * P, lrs_dat * Q, long index) /* 0 if index is non-redundant inequality */ /* 1 if index is redundant inequality */ /* 2 if index is input linearity */ /*NOTE: row is returned all zero if redundant!! */ { long i, j; lrs_mp_matrix A = P->A; long *Row = P->Row; long *B = P->B; long d = P->d; long m = P->m; if (Q->debug) printA (P, Q); /* each slack index must be checked for redundancy */ /* if in cobasis, it is pivoted out if degenerate */ /* else it is non-redundant */ if (checkcobasic (P, Q, index)) return ZERO; /* index is basic */ /* not debugged for new LOC i=LOC[index]; */ j = 1; while ((j <= m) && (B[j] != index)) j++; i = Row[j]; /* copy row i to cost row, and set it to zero */ for (j = 0; j <= d; j++) { copy (A[0][j], A[i][j]); changesign (A[0][j]); itomp (ZERO, A[i][j]); } if (checkredund (P, Q)) return ONE; /* non-redundant, copy back and change sign */ for (j = 0; j <= d; j++) { copy (A[i][j], A[0][j]); changesign (A[i][j]); } return ZERO; } /* end of checkindex */ /***************************************************************/ /* */ /* Package of I/O routines */ /* */ /***************************************************************/ void lprat (const char *name, long Nt, long Dt) /*print the long precision rational Nt/Dt without reducing */ { if ( Nt > 0 ) fprintf (lrs_ofp, " "); fprintf (lrs_ofp, "%s%ld", name, Nt); if (Dt != 1) fprintf (lrs_ofp, "/%ld", Dt); fprintf (lrs_ofp, " "); } /* lprat */ long lreadrat (long *Num, long *Den) /* read a rational string and convert to long */ /* returns true if denominator is not one */ { char in[MAXINPUT], num[MAXINPUT], den[MAXINPUT]; if(fscanf (lrs_ifp, "%s", in) == EOF) return(FALSE); atoaa (in, num, den); /*convert rational to num/dem strings */ *Num = atol (num); if (den[0] == '\0') { *Den = 1L; return (FALSE); } *Den = atol (den); return (TRUE); } void lrs_getinput(lrs_dic *P,lrs_dat *Q,long *num,long *den, long m, long d) /* code for reading data matrix in lrs/cdd format */ { long j,row; printf("\nEnter each row: b_i a_ij j=1..%ld",d); for (row=1;row<=m;row++) { printf("\nEnter row %ld: ",row ); for(j=0;j<=d;j++) { lreadrat(&num[j],&den[j]); lprat(" ",num[j],den[j]); } lrs_set_row(P,Q,row,num,den,GE); } printf("\nEnter objective row c_j j=1..%ld: ",d); num[0]=0; den[0]=1; for(j=1;j<=d;j++) { lreadrat(&num[j],&den[j]); lprat(" ",num[j],den[j]); } lrs_set_obj(P,Q,num,den,MAXIMIZE); } long readlinearity (lrs_dat * Q) /* read in and check linearity list */ { long i, j; long nlinearity; if(fscanf (lrs_ifp, "%ld", &nlinearity)==EOF ) { fprintf (lrs_ofp, "\nLinearity option invalid, no indices "); return (FALSE); } if (nlinearity < 1) { fprintf (lrs_ofp, "\nLinearity option invalid, indices must be positive"); return (FALSE); } Q->linearity = (long int*) CALLOC ((nlinearity + 1), sizeof (long)); for (i = 0; i < nlinearity; i++) { if(fscanf (lrs_ifp, "%ld", &j)==EOF) { fprintf (lrs_ofp, "\nLinearity option invalid, missing indices"); return (FALSE); } Q->linearity[i] = j; } for (i = 1; i < nlinearity; i++) /*sort in order */ reorder (Q->linearity, nlinearity); Q->nlinearity = nlinearity; Q->polytope = FALSE; return TRUE; } /* end readlinearity */ #ifdef PLRS void plrs_readlinearity(lrs_dat *Q, string line){ istringstream ss(line); long nlinearity; if(!(ss>>nlinearity)){ cout<<"Linearity option invalid, no indices"<linearity = (long int*) CALLOC ((nlinearity + 1), sizeof (long)); for (int i = 0; i < nlinearity; i++) { if(!(ss>>Q->linearity[i])){ cout<<"Linearity option invalid, missing indices"<linearity, nlinearity); Q->nlinearity = nlinearity; Q->polytope = FALSE; } #endif long readfacets (lrs_dat * Q, long facet[]) /* read and check facet list for obvious errors during start/restart */ /* this must be done after linearity option is processed!! */ { long i, j; /* assign local variables to structures */ long m, d; long *linearity = Q->linearity; m = Q->m; d = Q->inputd; for (j = Q->nlinearity; j < d; j++) /* note we place these after the linearity indices */ { if(fscanf (lrs_ifp, "%ld", &facet[j])==EOF) { fprintf (lrs_ofp, "\nrestart: facet list missing indices"); return (FALSE); } fprintf (lrs_ofp, " %ld", facet[j]); /* 2010.4.26 nonnegative option needs larger range of indices */ if(Q->nonnegative) if (facet[j] < 1 || facet[j] > m+d) { fprintf (lrs_ofp, "\n Start/Restart cobasic indices must be in range 1 .. %ld ", m+d); return FALSE; } if(!Q->nonnegative) if (facet[j] < 1 || facet[j] > m) { fprintf (lrs_ofp, "\n Start/Restart cobasic indices must be in range 1 .. %ld ", m); return FALSE; } for (i = 0; i < Q->nlinearity; i++) if (linearity[i] == facet[j]) { fprintf (lrs_ofp, "\n Start/Restart cobasic indices should not include linearities"); return FALSE; } /* bug fix 2011.8.1 reported by Steven Wu*/ for (i = Q->nlinearity; i < j; i++) /* end bug fix 2011.8.1 */ if (facet[i] == facet[j]) { fprintf (lrs_ofp, "\n Start/Restart cobasic indices must be distinct"); return FALSE; } } return TRUE; } /* end of readfacets */ void printA (lrs_dic * P, lrs_dat * Q) /* print the integer m by n array A with B,C,Row,Col vectors */ { long i, j; /* assign local variables to structures */ lrs_mp_matrix A = P->A; long *B = P->B; long *C = P->C; long *Row = P->Row; long *Col = P->Col; long m, d; m = P->m; d = P->d; fprintf (lrs_ofp, "\n Basis "); for (i = 0; i <= m; i++) fprintf (lrs_ofp, "%ld ", B[i]); fprintf (lrs_ofp, " Row "); for (i = 0; i <= m; i++) fprintf (lrs_ofp, "%ld ", Row[i]); fprintf (lrs_ofp, "\n Co-Basis "); for (i = 0; i <= d; i++) fprintf (lrs_ofp, "%ld ", C[i]); fprintf (lrs_ofp, " Column "); for (i = 0; i <= d; i++) fprintf (lrs_ofp, "%ld ", Col[i]); pmp (" det=", P->det); fprintf (lrs_ofp, "\n"); i=0; while ( i<= m ) { for (j = 0; j <= d; j++) pimat (P, i, j, A[Row[i]][Col[j]], "A"); fprintf (lrs_ofp, "\n"); if (i==0 && Q->nonnegative) /* skip basic rows - don't exist! */ i=d; i++; fflush (stdout); } fflush (stdout); } void pimat (lrs_dic * P, long r, long s, lrs_mp Nt, char name[]) /*print the long precision integer in row r col s of matrix A */ { long *B = P->B; long *C = P->C; if (s == 0) fprintf (lrs_ofp, "%s[%ld][%ld]=", name, B[r], C[s]); else fprintf (lrs_ofp, "[%ld]=", C[s]); pmp ("", Nt); } /***************************************************************/ /* */ /* Routines for caching, allocating etc. */ /* */ /***************************************************************/ /* From here mostly Bremner's handiwork */ static void cache_dict (lrs_dic ** D_p, lrs_dat * global, long i, long j) { if (dict_limit > 1) { /* save row, column indicies */ (*D_p)->i = i; (*D_p)->j = j; /* Make a new, blank spot at the end of the queue to copy into */ pushQ (global, (*D_p)->m, (*D_p)->d, (*D_p)->m_A); copy_dict (global, global->Qtail, *D_p); /* Copy current dictionary */ } *D_p = global->Qtail; } void copy_dict (lrs_dat * global, lrs_dic * dest, lrs_dic * src) { long m = src->m; long m_A = src->m_A; /* number of rows in A */ long d = src->d; long r,s; #ifdef GMP for ( r=0;r<=m_A;r++) for( s=0;s<=d;s++) copy(dest->A[r][s],src->A[r][s]); #else /* fast copy for MP and LONG arithmetic */ /* Note that the "A" pointer trees need not be copied, since they always point to the same places within the corresponding space */ /* I wish I understood the above remark. For the time being, do it the easy way for Nash */ if(global->nash) { for ( r=0;r<=m_A;r++) for( s=0;s<=d;s++) copy(dest->A[r][s],src->A[r][s]); } else memcpy (dest->A[0][0], (global->Qtail->prev)->A[0][0], (d + 1) * (lrs_digits + 1) * (m_A + 1) * sizeof (long)); #endif dest->i = src->i; dest->j = src->j; dest->m = m; dest->d = d; dest->m_A = src->m_A; dest->depth = src->depth; dest->lexflag = src->lexflag; copy (dest->det, src->det); copy (dest->objnum, src->objnum); copy (dest->objden, src->objden); if (global->debug) fprintf (lrs_ofp, "\nSaving dict at depth %ld\n", src->depth); memcpy (dest->B, src->B, (m + 1) * sizeof (long)); memcpy (dest->C, src->C, (d + 1) * sizeof (long)); memcpy (dest->Row, src->Row, (m + 1) * sizeof (long)); memcpy (dest->Col, src->Col, (d + 1) * sizeof (long)); } /* * pushQ(lrs_dat *globals,m,d): * this routine ensures that Qtail points to a record that * may be copied into. * * It may create a new record, or it may just move the head pointer * forward so that know that the old record has been overwritten. */ #if 0 #define TRACE(s) fprintf(stderr,"\n%s %p %p\n",s,global->Qhead,global->Qtail); #else #define TRACE(s) #endif static void pushQ (lrs_dat * global, long m, long d ,long m_A) { if ((global->Qtail->next) == global->Qhead) { /* the Queue is full */ if (dict_count < dict_limit) { /* but we are allowed to create more */ lrs_dic *p; p = new_lrs_dic (m, d, m_A); if (p) { /* we successfully created another record */ p->next = global->Qtail->next; (global->Qtail->next)->prev = p; (global->Qtail->next) = p; p->prev = global->Qtail; dict_count++; global->Qtail = p; TRACE ("Added new record to Q"); } else { /* virtual memory exhausted. bummer */ global->Qhead = global->Qhead->next; global->Qtail = global->Qtail->next; TRACE ("VM exhausted"); } } else { /* * user defined limit reached. start overwriting the * beginning of Q */ global->Qhead = global->Qhead->next; global->Qtail = global->Qtail->next; TRACE ("User limit"); } } else { global->Qtail = global->Qtail->next; TRACE ("Reusing"); } } lrs_dic * lrs_getdic(lrs_dat *Q) /* create another dictionary for Q without copying any values */ /* derived from lrs_alloc_dic, used by nash.c */ { lrs_dic *p; long m; m = Q->m; /* nonnegative flag set means that problem is d rows "bigger" */ /* since nonnegative constraints are not kept explicitly */ if(Q->nonnegative) m = m+Q->inputd; p = new_lrs_dic (m, Q->inputd, Q->m); if (!p) return NULL; p->next = p; p->prev = p; Q->Qhead = p; Q->Qtail = p; return p; } #define NULLRETURN(e) if (!(e)) return NULL; static lrs_dic * new_lrs_dic (long m, long d, long m_A) { lrs_dic *p; NULLRETURN (p = (lrs_dic *) malloc (sizeof (lrs_dic))); NULLRETURN (p->B = (long int*) calloc ((m + 1), sizeof (long))); NULLRETURN (p->Row = (long int*) calloc ((m + 1), sizeof (long))); NULLRETURN (p->C = (long int*) calloc ((d + 1), sizeof (long))); NULLRETURN (p->Col = (long int*) calloc ((d + 1), sizeof (long))); #ifdef GMP lrs_alloc_mp(p->det); lrs_alloc_mp(p->objnum); lrs_alloc_mp(p->objden); #endif p->d_orig=d; p->A=lrs_alloc_mp_matrix(m_A,d); return p; } void lrs_free_dic (lrs_dic * P, lrs_dat *Q) { /* do the same steps as for allocation, but backwards */ /* gmp variables cannot be cleared using free: use lrs_clear_mp* */ lrs_dic *P1; /* repeat until cache is empty */ do { /* I moved these here because I'm not certain the cached dictionaries need to be the same size. Well, it doesn't cost anything to be safe. db */ long d = P->d_orig; long m_A = P->m_A; lrs_clear_mp_matrix (P->A,m_A,d); /* "it is a ghastly error to free something not assigned my malloc" KR167 */ /* so don't try: free (P->det); */ lrs_clear_mp (P->det); lrs_clear_mp (P->objnum); lrs_clear_mp (P->objden); free (P->Row); free (P->Col); free (P->C); free (P->B); /* go to next record in cache if any */ P1 =P->next; free (P); P=P1; } while (Q->Qhead != P ); } void lrs_free_dat ( lrs_dat *Q ) { long m=Q->m; /* most of these items were allocated in lrs_alloc_dic */ lrs_clear_mp_vector (Q->Gcd,m); lrs_clear_mp_vector (Q->Lcm,m); lrs_clear_mp (Q->sumdet); lrs_clear_mp (Q->Nvolume); lrs_clear_mp (Q->Dvolume); lrs_clear_mp (Q->saved_det); lrs_clear_mp (Q->boundd); lrs_clear_mp (Q->boundn); free (Q->inequality); free (Q->facet); free (Q->redundcol); free (Q->linearity); free (Q->minratio); free (Q->temparray); free (Q->name); free (Q->saved_C); lrs_global_count--; free(Q); } static long check_cache (lrs_dic ** D_p, lrs_dat * global, long *i_p, long *j_p) { /* assign local variables to structures */ cache_tries++; if (global->Qtail == global->Qhead) { TRACE ("cache miss"); /* Q has only one element */ cache_misses++; return 0; } else { global->Qtail = global->Qtail->prev; *D_p = global->Qtail; *i_p = global->Qtail->i; *j_p = global->Qtail->j; TRACE ("restoring dict"); return 1; } } lrs_dic * lrs_alloc_dic (lrs_dat * Q) /* allocate and initialize lrs_dic */ { lrs_dic *p; long i, j; long m, d, m_A; if (Q->hull) /* d=col dimension of A */ Q->inputd = Q->n; /* extra column for hull */ else Q->inputd = Q->n - 1; m = Q->m; d = Q->inputd; m_A = m; /* number of rows in A */ /* nonnegative flag set means that problem is d rows "bigger" */ /* since nonnegative constraints are not kept explicitly */ if(Q->nonnegative) m = m+d; p = new_lrs_dic (m, d, m_A); if (!p) return NULL; p->next = p; p->prev = p; Q->Qhead = p; Q->Qtail = p; dict_count = 1; dict_limit = 10; cache_tries = 0; cache_misses = 0; /* Initializations */ p->d = p->d_orig = d; p->m = m; p->m_A = m_A; p->depth = 0L; p->lexflag = TRUE; itomp (ONE, p->det); itomp (ZERO, p->objnum); itomp (ONE, p->objden); /*m+d+1 is the number of variables, labelled 0,1,2,...,m+d */ /* initialize array to zero */ for (i = 0; i <= m_A; i++) for (j = 0; j <= d; j++) itomp (ZERO, p->A[i][j]); Q->inequality = (long int*) CALLOC ((m + 1), sizeof (long)); if (Q->nlinearity == ZERO) /* linearity may already be allocated */ Q->linearity = (long int*) CALLOC ((m + 1), sizeof (long)); Q->facet = (long int*) CALLOC ((unsigned) d + 1, sizeof (long)); Q->redundcol = (long int*) CALLOC ((d + 1), sizeof (long)); Q->minratio = (long int*) CALLOC ((m + 1), sizeof (long)); /* 2011.7.14 minratio[m]=0 for degen =1 for nondegen pivot*/ Q->temparray = (long int*) CALLOC ((unsigned) d + 1, sizeof (long)); Q->inequality[0] = 2L; Q->Gcd = lrs_alloc_mp_vector(m); Q->Lcm = lrs_alloc_mp_vector(m); Q->saved_C = (long int*) CALLOC (d + 1, sizeof (long)); Q->lastdv = d; /* last decision variable may be decreased */ /* if there are redundant columns */ /*initialize basis and co-basis indices, and row col locations */ /*if nonnegative, we label differently to avoid initial pivots */ /* set basic indices and rows */ if(Q->nonnegative) for (i = 0; i <= m; i++) { p->B[i] = i; if (i <= d ) p->Row[i]=0; /* no row for decision variables */ else p->Row[i]=i-d; } else for (i = 0; i <= m; i++) { if (i == 0 ) p->B[0]=0; else p->B[i] = d + i; p->Row[i] = i; } for (j = 0; j < d; j++) { if(Q->nonnegative) p->C[j] = m+j+1; else p->C[j] = j + 1; p->Col[j] = j + 1; } p->C[d] = m + d + 1; p->Col[d] = 0; return p; } /* end of lrs_alloc_dic */ /* this routine makes a copy of the information needed to restart, so that we can guarantee that if a signal is received, we can guarantee that nobody is messing with it. This as opposed to adding all kinds of critical regions in the main line code. It is also used to make sure that in case of overflow, we have a valid cobasis to restart from. */ static void save_basis (lrs_dic * P, lrs_dat * Q) { int i; /* assign local variables to structures */ long *C = P->C; long d; #ifdef SIGNALS sigset_t oset, blockset; sigemptyset (&blockset); sigaddset (&blockset, SIGTERM); sigaddset (&blockset, SIGHUP); sigaddset (&blockset, SIGUSR1); errcheck ("sigprocmask", sigprocmask (SIG_BLOCK, &blockset, &oset)); #endif d = P->d; Q->saved_flag = 1; for (i = 0; i < 3; i++) Q->saved_count[i] = Q->count[i]; for (i = 0; i < d + 1; i++) Q->saved_C[i] = C[i]; copy (Q->saved_det, P->det); Q->saved_d = P->d; Q->saved_depth = P->depth; #ifdef SIGNALS errcheck ("sigprocmask", sigprocmask (SIG_SETMASK, &oset, 0)); #endif } /* digits overflow is a call from lrs_mp package */ void digits_overflow () { fprintf (lrs_ofp, "\nOverflow at digits=%ld", DIG2DEC (lrs_digits)); fprintf (lrs_ofp, "\nRerun with option: digits n, where n > %ld\n", DIG2DEC (lrs_digits)); lrs_dump_state (); notimpl(""); } static void lrs_dump_state () { long i; fprintf (stderr, "\n\nlrs_lib: checkpointing:\n"); fprintf (stderr, "lrs_lib: Current digits at %ld out of %ld\n", DIG2DEC (lrs_record_digits), DIG2DEC (lrs_digits)); for (i = 0; i < lrs_global_count; i++) { print_basis (stderr, lrs_global_list[i]); } fprintf (stderr, "lrs_lib: checkpoint finished\n"); } /* print out the saved copy of the basis */ void print_basis (FILE * fp, lrs_dat * global) { int i; /* assign local variables to structures */ fprintf (fp, "lrs_lib: State #%ld: (%s)\t", global->id, global->name); if (global->saved_flag) { fprintf (fp, "V#%ld R#%ld B#%ld h=%ld facets ", global->saved_count[1], global->saved_count[0], global->saved_count[2], global->saved_depth); for (i = 0; i < global->saved_d; i++) fprintf (fp, "%ld ", global->inequality[global->saved_C[i] - global->lastdv]); pmp (" det=", global->saved_det); fprintf (fp, "\n"); } else { fprintf (fp, "lrs_lib: Computing initial basis\n"); } fflush (fp); } #ifdef SIGNALS /* If given a signal USR1 print current cobasis and continue TERM print current cobasis and terminate INT (ctrl-C) ditto HUP ditto */ static void setup_signals () { errcheck ("signal", signal (SIGTERM, die_gracefully)); errcheck ("signal", signal (SIGALRM, timecheck)); errcheck ("signal", signal (SIGHUP, die_gracefully)); errcheck ("signal", signal (SIGINT, die_gracefully)); errcheck ("signal", signal (SIGUSR1, checkpoint)); } static void timecheck () { lrs_dump_state (); errcheck ("signal", signal (SIGALRM, timecheck)); alarm (lrs_checkpoint_seconds); } static void checkpoint () { lrs_dump_state (); errcheck ("signal", signal (SIGUSR1, checkpoint)); } static void die_gracefully () { lrs_dump_state (); exit (1); } #endif #ifdef TIMES /* * Not sure about the portability of this yet, * - db */ #include #define double_time(t) ((double)(t.tv_sec)+(double)(t.tv_usec)/1000000) static void ptimes () { struct rusage rusage; getrusage (RUSAGE_SELF, &rusage); fprintf (lrs_ofp, "\n*%0.3fu %0.3fs %ldKb %ld flts %ld swaps %ld blks-in %ld blks-out \n", double_time (rusage.ru_utime), double_time (rusage.ru_stime), rusage.ru_maxrss, rusage.ru_majflt, rusage.ru_nswap, rusage.ru_inblock, rusage.ru_oublock); if(lrs_ofp != stdout) printf ("\n*%0.3fu %0.3fs %ldKb %ld flts %ld swaps %ld blks-in %ld blks-out \n", double_time (rusage.ru_utime), double_time (rusage.ru_stime), rusage.ru_maxrss, rusage.ru_majflt, rusage.ru_nswap, rusage.ru_inblock, rusage.ru_oublock); } static double get_time() { struct rusage rusage; getrusage (RUSAGE_SELF, &rusage); return ( double_time (rusage.ru_utime)); } #endif /* Routines based on lp_solve */ void lrs_set_row(lrs_dic *P, lrs_dat *Q, long row, long num[], long den[], long ineq) /* convert to lrs_mp then call lrs_set_row */ { lrs_mp_vector Num, Den; long d; long j; d = P->d; Num=lrs_alloc_mp_vector(d+1); Den=lrs_alloc_mp_vector(d+1); for (j=0;j<=d;j++) { itomp(num[j],Num[j]); itomp(den[j],Den[j]); } lrs_set_row_mp(P,Q,row,Num,Den,ineq); lrs_clear_mp_vector(Num,d+1); lrs_clear_mp_vector(Den,d+1); } void lrs_set_row_mp(lrs_dic *P, lrs_dat *Q, long row, lrs_mp_vector num, lrs_mp_vector den, long ineq) /* set row of dictionary using num and den arrays for rational input */ /* ineq = 1 (GE) - ordinary row */ /* = 0 (EQ) - linearity */ { lrs_mp Temp, mpone; lrs_mp_vector oD; /* denominator for row */ long i, j; /* assign local variables to structures */ lrs_mp_matrix A; lrs_mp_vector Gcd, Lcm; long hull; long m, d; lrs_alloc_mp(Temp); lrs_alloc_mp(mpone); hull = Q->hull; A = P->A; m = P->m; d = P->d; Gcd = Q->Gcd; Lcm = Q->Lcm; oD = lrs_alloc_mp_vector (d); itomp (ONE, mpone); itomp (ONE, oD[0]); i=row; itomp (ONE, Lcm[i]); /* Lcm of denominators */ itomp (ZERO, Gcd[i]); /* Gcd of numerators */ for (j = hull; j <= d; j++) /* hull data copied to cols 1..d */ { copy( A[i][j],num[j-hull]); copy(oD[j],den[j-hull]); if (!one(oD[j])) lcm (Lcm[i], oD[j]); /* update lcm of denominators */ copy (Temp, A[i][j]); gcd (Gcd[i], Temp); /* update gcd of numerators */ } if (hull) { itomp (ZERO, A[i][0]); /*for hull, we have to append an extra column of zeroes */ if (!one (A[i][1]) || !one (oD[1])) /* all rows must have a one in column one */ Q->polytope = FALSE; } if (!zero (A[i][hull])) /* for H-rep, are zero in column 0 */ Q->homogeneous = FALSE; /* for V-rep, all zero in column 1 */ storesign (Gcd[i], POS); storesign (Lcm[i], POS); if (mp_greater (Gcd[i], mpone) || mp_greater (Lcm[i], mpone)) for (j = 0; j <= d; j++) { exactdivint (A[i][j], Gcd[i], Temp); /*reduce numerators by Gcd */ mulint (Lcm[i], Temp, Temp); /*remove denominators */ exactdivint (Temp, oD[j], A[i][j]); /*reduce by former denominator */ } if ( ineq == EQ ) /* input is linearity */ { Q->linearity[Q->nlinearity]=row; Q->nlinearity++; } /* 2010.4.26 Set Gcd and Lcm for the non-existant rows when nonnegative set */ if(Q->nonnegative && row==m) for(j=1;j<=d;j++) { itomp (ONE, Lcm[m+j]); itomp (ONE, Gcd[m+j]); } lrs_clear_mp_vector (oD,d); lrs_clear_mp(Temp); lrs_clear_mp(mpone); } /* end of lrs_set_row_mp */ void lrs_set_obj(lrs_dic *P, lrs_dat *Q, long num[], long den[], long max) { long i; if (max == MAXIMIZE) Q->maximize=TRUE; else { Q->minimize=TRUE; for(i=0;i<=P->d;i++) num[i]=-num[i]; } lrs_set_row(P,Q,0L,num,den,GE); } void lrs_set_obj_mp(lrs_dic *P, lrs_dat *Q, lrs_mp_vector num, lrs_mp_vector den, long max) { long i; if (max == MAXIMIZE) Q->maximize=TRUE; else { Q->minimize=TRUE; for(i=0;i<=P->d;i++) changesign(num[i]); } lrs_set_row_mp(P,Q,0L,num,den,GE); } long lrs_solve_lp(lrs_dic *P, lrs_dat *Q) /* user callable function to solve lp only */ { lrs_mp_matrix Lin; /* holds input linearities if any are found */ long col; Q->lponly = TRUE; if (!lrs_getfirstbasis (&P, Q, &Lin, FALSE)) return FALSE; /* There may have been column redundancy */ /* If so the linearity space is obtained and redundant */ /* columns are removed. User can access linearity space */ /* from lrs_mp_matrix Lin dimensions nredundcol x d+1 */ for (col = 0; col < Q->nredundcol; col++) /* print linearity space */ lrs_printoutput (Q, Lin[col]); /* Array Lin[][] holds the coeffs. */ return TRUE; } /* end of lrs_solve_lp */ long dan_selectpivot (lrs_dic * P, lrs_dat * Q, long *r, long *s) /* select pivot indices using dantzig simplex method */ /* largest coefficient with lexicographic rule to avoid cycling */ /* Bohdan Kaluzny's handiwork */ /* returns TRUE if pivot found else FALSE */ /* pivot variables are B[*r] C[*s] in locations Row[*r] Col[*s] */ { long j,k,col; lrs_mp coeff; /* assign local variables to structures */ lrs_mp_matrix A = P->A; long *Col = P->Col; long d = P->d; lrs_alloc_mp (coeff); *r = 0; *s = d; j = 0; k = 0; itomp(0,coeff); /*find positive cost coef */ while (k < d) { if(mp_greater(A[0][Col[k]],coeff)) { j = k; copy(coeff,A[0][Col[j]]); } k++; } if (positive(coeff)) /* pivot column found! */ { *s = j; col = Col[j]; /*find min index ratio */ *r = ratio (P, Q, col); if (*r != 0) { lrs_clear_mp(coeff); return (TRUE); /* unbounded */ } } lrs_clear_mp(coeff); return (FALSE); } /* end of dan_selectpivot */ long phaseone (lrs_dic * P, lrs_dat * Q) /* Do a dual pivot to get primal feasibility (pivot in X_0)*/ /* Bohdan Kaluzny's handiwork */ { long i, j, k; /* assign local variables to structures */ lrs_mp_matrix A = P->A; long *Row = P->Row; long *Col = P->Col; long m, d; lrs_mp b_vector; lrs_alloc_mp (b_vector); m = P->m; d = P->d; i = 0; k = d+1; itomp(0,b_vector); fprintf (lrs_ofp, "\nLP: Phase One: Dual pivot on artificial variable"); /*find most negative b vector */ while (k <= m) { if(mp_greater(b_vector,A[Row[k]][0])) { i = k; copy(b_vector,A[Row[i]][0]); } k++; } if (negative(b_vector)) /* pivot row found! */ { j = 0; /*find a positive entry for in row */ while (j < d && !positive (A[Row[i]][Col[j]])) j++; if (j >= d) { lrs_clear_mp (b_vector); return (FALSE); /* no positive entry */ } pivot (P, Q, i, j); update (P, Q, &i, &j); } lrs_clear_mp (b_vector); return (TRUE); } long lrs_set_digits(long dec_digits) { /* convert user specified decimal digits to mp digits */ fprintf (lrs_ofp, "\n*digits %ld", dec_digits); if (dec_digits > 0) lrs_digits = DEC2DIG (dec_digits); if (lrs_digits > MAX_DIGITS) { fprintf (lrs_ofp, "\nDigits must be at most %ld\nChange MAX_DIGITS and recompile", DIG2DEC (MAX_DIGITS)); fflush(stdout); return (FALSE); } return (TRUE); } long lrs_checkbound(lrs_dic *P, lrs_dat *Q) { /* check bound on objective and return TRUE if exceeded */ if(!Q->bound) return FALSE; if( Q->maximize && comprod(Q->boundn,P->objden,P->objnum,Q->boundd) == 1 ) { #ifndef PLRS if(Q->verbose) { prat(" \nObj value: ",P->objnum,P->objden); fprintf(lrs_ofp," Pruning "); } #endif return TRUE; } if( Q->minimize && comprod(Q->boundn,P->objden,P->objnum,Q->boundd) == -1 ) { #ifndef PLRS if(Q->verbose) { prat(" \nObj value: ",P->objnum,P->objden); fprintf(lrs_ofp," Pruning "); } #endif return TRUE; } return FALSE; } lrslib-051/lrslib.h0000700000175300010010000004403412462102252014106 0ustar avisなし/* lrslib.hpp (vertex enumeration using lexicographic reverse search) */ #define TITLE "lrslib " #define VERSION "v.5.1 2015.1.28" #define AUTHOR "*Copyright (C) 1995,2015, David Avis avis@cs.mcgill.ca " /* This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ /*Ver 5.0 major change is plrs wrapper for multithreading coded by Gary Roumanis */ /*Ver 4.2* library version */ /******************************************************************************/ /* See http://cgm.cs.mcgill.ca/~avis/C/lrs.html for usage instructions */ /******************************************************************************/ #ifdef PLRS #include #include #include #include #include #include #endif #ifdef LONG #define ARITH "lrslong.h" /* lrs long integer arithmetic package */ #else #ifdef GMP #define ARITH "lrsgmp.h" /* lrs wrapper for gmp multiple precsion arithmetic */ #else #define ARITH "lrsmp.h" /* lrs multiple precsion arithmetic */ #define MP #endif #endif #include ARITH #ifdef SIGNALS #include #include #define errcheck(s,e) if ((long)(e)==-1L){ perror(s);exit(1);} #endif #define CALLOC(n,s) xcalloc(n,s,__LINE__,__FILE__) /*********************/ /*global constants */ /*********************/ #define MAX_LRS_GLOBALS 10000L /* number of allocated dictionaries */ #define MAXIMIZE 1L /* maximize the lp */ #define MINIMIZE 0L /* maximize the lp */ #define GE 1L /* constraint is >= */ #define EQ 0L /* constraint is linearity */ /*************/ /* typedefs */ /*************/ /******************************************************************************/ /* Indexing after initialization */ /* Basis Cobasis */ /* --------------------------------------- ----------------------------- */ /* | i |0|1| .... |lastdv|lastdv+1|...|m| | j | 0 | 1 | ... |d-1| d | */ /* |-----|+|+|++++++|++++++|--------|---|-| |----|---|---|-----|---|+++++| */ /* |B[i] |0|1| .... |lastdv|lastdv+1|...|m| |C[j]|m+1|m+2| ... |m+d|m+d+1| */ /* -----|+|+|++++++|++++++|????????|???|?| ----|???|???|-----|???|+++++| */ /* */ /* Row[i] is row location for B[i] Col[j] is column location for C[j] */ /* ----------------------------- ----------------------------- */ /* | i |0|1| ..........|m-1|m| | j | 0 | 1 | ... |d-1| d | */ /* |-------|+|-|-----------|---|-| |------|---|---|--- |---|++++| */ /* |Row[i] |0|1|...........|m-1|m| |Col[j]| 1 | 2 | ... | d | 0 | */ /* --------|+|*|***********|***|*| ------|***|***|*****|***|++++| */ /* */ /* + = remains invariant * = indices may be permuted ? = swapped by pivot */ /* */ /* m = number of input rows n= number of input columns */ /* input dimension inputd = n-1 (H-rep) or n (V-rep) */ /* lastdv = inputd-nredundcol (each redundant column removes a dec. var) */ /* working dimension d=lastdv-nlinearity (an input linearity removes a slack) */ /* obj function in row 0, index 0=B[0] col 0 has index m+d+1=C[d] */ /* H-rep: b-vector in col 0, A matrix in columns 1..n-1 */ /* V-rep: col 0 all zero, b-vector in col 1, A matrix in columns 1..n */ /******************************************************************************/ typedef struct lrs_dic_struct /* dynamic dictionary data */ { lrs_mp_matrix A; long m; /* A has m+1 rows, row 0 is cost row */ long m_A; /* =m or m-d if nonnegative flag set */ long d; /* A has d+1 columns, col 0 is b-vector */ long d_orig; /* value of d as A was allocated (E.G.) */ long lexflag; /* true if lexmin basis for this vertex */ long depth; /* depth of basis/vertex in reverse search tree */ long i, j; /* last pivot row and column pivot indices */ lrs_mp det; /* current determinant of basis */ lrs_mp objnum; /* objective numerator value */ lrs_mp objden; /* objective denominator value */ long *B, *Row; /* basis, row location indices */ long *C, *Col; /* cobasis, column location indices */ struct lrs_dic_struct *prev, *next; } lrs_dic; typedef struct lrs_dat /* global problem data */ { lrs_mp_vector Gcd; /* Gcd of each row of numerators */ lrs_mp_vector Lcm; /* Lcm for each row of input denominators */ lrs_mp sumdet; /* sum of determinants */ lrs_mp Nvolume; /* volume numerator */ lrs_mp Dvolume; /* volume denominator */ lrs_mp boundn; /* objective bound numerator */ lrs_mp boundd; /* objective bound denominator */ long unbounded; /* lp unbounded */ char fname[100]; /* input file name from line 1 of input */ long *inequality; /* indices of inequalities corr. to cobasic ind */ /* initially holds order used to find starting */ /* basis, default: m,m-1,...,2,1 */ long *facet; /* cobasic indices for restart in needed */ long *redundcol; /* holds columns which are redundant */ long *linearity; /* holds cobasic indices of input linearities */ long *minratio; /* used for lexicographic ratio test */ long *temparray; /* for sorting indices, dimensioned to d */ long *isave, *jsave; /* arrays for estimator, malloc'ed at start */ long inputd; /* input dimension: n-1 for H-rep, n for V-rep */ long m; /* number of rows in input file */ long n; /* number of columns in input file */ long lastdv; /* index of last dec. variable after preproc */ /* given by inputd-nredundcol */ long count[10]; /* count[0]=rays [1]=verts. [2]=base [3]=pivots */ /* count[4]=integer vertices */ long startcount[5]; long deepest; /* max depth ever reached in search */ long nredundcol; /* number of redundant columns */ long nlinearity; /* number of input linearities */ long totalnodes; /* count total number of tree nodes evaluated */ long runs; /* probes for estimate function */ long seed; /* seed for random number generator */ double cest[10]; /* ests: 0=rays,1=vert,2=bases,3=vol,4=int vert */ /**** flags ********** */ long allbases; /* TRUE if all bases should be printed */ long bound; /* TRUE if upper/lower bound on objective given */ long debug; long dualdeg; /* TRUE if start dictionary is dual degenerate */ long etrace; /* turn off debug at basis # strace */ long frequency; /* frequency to print cobasis indices */ long geometric; /* TRUE if incident vertex prints after each ray */ long getvolume; /* do volume calculation */ long givenstart; /* TRUE if a starting cobasis is given */ long homogeneous; /* TRUE if all entries in column one are zero */ long hull; /* do convex hull computation if TRUE */ long incidence; /* print all tight inequalities (vertices/rays) */ long lponly; /* true if only lp solution wanted */ long maxdepth; /* max depth to search to in treee */ long maximize; /* flag for LP maximization */ long maxoutput; /* if positive, maximum number of output lines */ long maxbases; /* if positive, after maxbases unexplored subtrees reported */ long minimize; /* flag for LP minimization */ long mindepth; /* do not backtrack above mindepth */ long nash; /* TRUE for computing nash equilibria */ long nonnegative; /* TRUE if last d constraints are nonnegativity */ long polytope; /* TRUE for facet computation of a polytope */ long printcobasis; /* TRUE if all cobasis should be printed */ long printslack; /* TRUE if indices of slack inequal. printed */ long truncate; /* TRUE: truncate tree when moving from opt vert*/ long verbose; /* FALSE for minimalist output */ long restart; /* TRUE if restarting from some cobasis */ long strace; /* turn on debug at basis # strace */ long voronoi; /* compute voronoi vertices by transformation */ /* Variables for saving/restoring cobasis, db */ long id; /* numbered sequentially */ char *name; /* passed by user */ long saved_count[3]; /* How often to print out current cobasis */ long *saved_C; lrs_mp saved_det; long saved_depth; long saved_d; long saved_flag; /* There is something in the saved cobasis */ /* Variables for cacheing dictionaries, db */ lrs_dic *Qhead, *Qtail; }lrs_dat, lrs_dat_p; #ifdef PLRS /****************/ /* PLRS */ /****************/ struct plrs_output { std::string type; std::string data; plrs_output* next; }; extern boost::mutex consume_mutex; extern boost::condition_variable consume; extern boost::atomic output_list; void post_output(plrs_output *); void plrs_read_dat (lrs_dat * Q, std::ifstream &ff); void plrs_read_dic (lrs_dic * P, lrs_dat * Q, std::ifstream &ff); void plrs_readfacets (lrs_dat * Q, long facet[], string facets); void plrs_readlinearity(lrs_dat *Q, string line); #endif /*******************************/ /* functions for external use */ /*******************************/ extern FILE *lrs_cfp; /* output file for checkpoint information */ long lrs_main (int argc, char *argv[]); /* lrs driver, argv[1]=input file, [argc-1]=output file */ long redund_main (int argc, char *argv[]); /* redund driver, argv[1]=input file, [2]=output file */ lrs_dat *lrs_alloc_dat (const char *name); /* allocate for lrs_dat structure "name" */ lrs_dic *lrs_alloc_dic (lrs_dat * Q); /* allocate for lrs_dic structure corr. to Q */ long lrs_estimate (lrs_dic * P, lrs_dat * Q); /* get estimates only and returns est number of cobases in subtree */ long lrs_read_dat (lrs_dat * Q, int argc, char *argv[]); /* read header and set up lrs_dat */ long lrs_read_dic (lrs_dic * P, lrs_dat * Q); /* read input and set up problem and lrs_dic */ long lrs_checkbound (lrs_dic *P, lrs_dat * Q); /* TRUE if current objective value exceeds specified bound */ long lrs_getfirstbasis (lrs_dic ** P_p, lrs_dat * Q, lrs_mp_matrix * Lin,long no_output); /* gets first basis, FALSE if none,P may get changed if lin. space Lin found no_output is TRUE supresses output headers P may get changed if lin. space Lin found */ void lrs_getinput(lrs_dic *P,lrs_dat *Q,long *num,long *den, long m, long d); /* reads input matrix b A in lrs/cdd format */ long lrs_getnextbasis (lrs_dic ** dict_p, lrs_dat * Q, long prune); /* gets next lrs tree basis, FALSE if none backtrack if prune is TRUE */ long lrs_getsolution (lrs_dic * P, lrs_dat * Q, lrs_mp_vector output, long col); long lrs_getray (lrs_dic * P, lrs_dat * Q, long col, long comment, lrs_mp_vector output); long lrs_getvertex (lrs_dic * P, lrs_dat * Q, lrs_mp_vector output); void lrs_close (char *name); /* close lrs lib program "name" */ long lrs_init (char *name); /* initialize lrslib and arithmetic package for prog "name" */ void lrs_lpoutput(lrs_dic * P,lrs_dat * Q, lrs_mp_vector output); /* print LP primal and dual solutions */ void lrs_printcobasis (lrs_dic * P, lrs_dat * Q, long col); /* print cobasis for column col(verted or ray) */ void lrs_printoutput (lrs_dat * Q, lrs_mp_vector output); /* print output array */ void lrs_printrow (char name[], lrs_dat * Q, lrs_mp_vector output, long rowd); /*print row of A matrix in output[0..rowd] */ void lrs_printsol (lrs_dic * P, lrs_dat * Q, long col, long comment); /* print out solution from col, comment= 0=normal,-1=geometric ray,1..inputd=linearity */ void lrs_printtotals (lrs_dic * P, lrs_dat * Q);/* print final totals for lrs */ long lrs_set_digits (long dec_digits ); /* set lrsmp digits to equiv. of decimal dec_digits */ long lrs_solvelp (lrs_dic * P, lrs_dat * Q, long maximize);/* solve primal feas LP:TRUE bounded else FALSE */ /*******************************/ /* functions for internal use */ /*******************************/ /*******************************/ /* basic dictionary functions */ /*******************************/ long getabasis (lrs_dic * P, lrs_dat * Q, long order[]); /* Try to find a starting basis */ void getnextoutput (lrs_dic * P, lrs_dat * Q, long i, long col, lrs_mp out); /* get A[B[i][col] and copy to out */ long ismin (lrs_dic * P, lrs_dat * Q, long r, long s); /* test if A[r][s] is a min ratio for col s */ long lexmin (lrs_dic * P, lrs_dat * Q, long col); /* test A to see if current basis is lexmin */ void pivot (lrs_dic * P, lrs_dat * Q, long bas, long cob); /* Qpivot routine for array A */ long primalfeasible (lrs_dic * P, lrs_dat * Q); /* Do dual pivots to get primal feasibility */ long ratio (lrs_dic * P, lrs_dat * Q, long col); /* find lex min. ratio */ long removecobasicindex (lrs_dic * P, lrs_dat * Q, long k); /* remove C[k] from problem */ long restartpivots (lrs_dic * P, lrs_dat * Q); /* restart problem from given cobasis */ long reverse (lrs_dic * P, lrs_dat * Q, long *r, long s); /* TRUE if B[*r] C[s] is a reverse lex-pos pivot */ long selectpivot (lrs_dic * P, lrs_dat * Q, long *r, long *s); /* select pivot indices using lexicographic rule */ long dan_selectpivot (lrs_dic * P, lrs_dat * Q, long *r, long *s); /* select pivot indices using dantzig-lex rule */ void update (lrs_dic * P, lrs_dat * Q, long *i, long *j); /* update the B,C, LOC arrays after a pivot */ void updatevolume (lrs_dic * P, lrs_dat * Q); /* rescale determinant and update the volume */ /*******************************/ /* other functions using P,Q */ /*******************************/ long lrs_degenerate (lrs_dic * P, lrs_dat * Q); /* TRUE if the dictionary is primal degenerate */ void print_basis (FILE * fp, lrs_dat * Q); void printA (lrs_dic * P, lrs_dat * Q); /* raw print of dictionary, bases for debugging */ void pimat (lrs_dic * P, long r, long s, lrs_mp Nt, char name[]); /* print the row r col s of A */ long readfacets (lrs_dat * Q, long facet[]); /* read and check facet list */ long readlinearity (lrs_dat * Q); /* read and check linearity list */ void rescaledet (lrs_dic * P, lrs_dat * Q, lrs_mp Vnum, lrs_mp Vden); /* rescale determinant to get its volume */ void rescalevolume (lrs_dic * P, lrs_dat * Q, lrs_mp Vnum, lrs_mp Vden); /* adjust volume for dimension */ /***************************************************/ /* Routines for redundancy checking */ /***************************************************/ long checkredund (lrs_dic * P, lrs_dat * Q);/* solve primal lp to check redund of obj fun. returns TRUE if redundant, else FALSE */ long checkcobasic (lrs_dic * P, lrs_dat * Q, long index); /* TRUE if index is cobasic and nondegenerate FALSE if basic, or degen. cobasic, where it will get pivoted out */ long checkindex (lrs_dic * P, lrs_dat * Q, long index); /* index=0 non-red.,1 red., 2 input linearity NOTE: row is returned all zero if redundant!! */ /***************************************************/ /* Routines for caching and restoring dictionaries */ /***************************************************/ void lrs_free_dic ( lrs_dic *P, lrs_dat *Q); void lrs_free_dat ( lrs_dat *Q); void copy_dict (lrs_dat * global, lrs_dic * dest, lrs_dic * src); lrs_dic *alloc_memory (lrs_dat * Q); lrs_dic * lrs_getdic(lrs_dat *Q); lrs_dic *resize (lrs_dic * P, lrs_dat * Q); /*******************************/ /* utilities */ /*******************************/ void lprat (const char *name, long Num, long Den); /* Print Num/Den without reducing */ long lreadrat (long *Num, long *Den); /* read a rational string and convert to long integers */ void reorder (long a[], long range); /* reorder array in increasing order with one misplaced element */ void reorder1 (long a[], long b[], long newone, long range); /* reorder array a in increasing order with misplaced element newone elements of b go along for the ride */ /***************************/ /* lp_solve like functions */ /***************************/ long lrs_solve_lp(lrs_dic *P, lrs_dat *Q);/* solve lp only for given dictionary */ void lrs_set_row(lrs_dic *P, lrs_dat *Q, long row, long num[], long den[], long ineq);/* load row i of dictionary from num[]/den[] ineq=GE */ void lrs_set_row_mp(lrs_dic *P, lrs_dat *Q, long row, lrs_mp_vector num, lrs_mp_vector den, long ineq);/* same as lrs_set_row except num/den is lrs_mp type */ void lrs_set_obj(lrs_dic *P, lrs_dat *Q, long num[], long den[], long max); /* set up objective function with coeffs num[]/den[] max=MAXIMIZE or MINIMIZE */ void lrs_set_obj_mp(lrs_dic *P, lrs_dat *Q, lrs_mp_vector num, lrs_mp_vector den, long max);/* same as lrs_set_obj but num/den has lrs_mp type */ lrslib-051/lrslong.c0000700000175300010010000002660512423577213014310 0ustar avisなし/* lrslong.c library code for lrs extended precision arithmetic */ /* Version 4.0, April 13, 2000 */ /* Copyright: David Avis 1999, avis@cs.mcgill.ca */ /* Derived from prs_single.c ( rational arithmetic for lrs and prs) */ /* authored by Ambros Marzetta Revision 1.2 1998/05/27 */ #ifdef PLRS #include #include #endif #include #include #include #include "lrslong.h" long lrs_digits; /* max permitted no. of digits */ long lrs_record_digits; /* this is the biggest acheived so far. */ #define MAXINPUT 1000 /*max length of any input rational */ void gcd (lrs_mp u, lrs_mp v) /* Returns u=gcd(u,v) using classic Euclid's algorithm. v is destroyed. Knuth, II, p.320 */ { unsigned long ul, vl, r; ul = labs (*u); vl = labs (*v); if (ul == 0) { *u = vl; return; } while (vl != 0) { r = ul % vl; ul = vl; vl = r; } *u = ul; } /* gcd */ void lcm (lrs_mp a, lrs_mp b) /* a = least common multiple of a, b; b is preserved */ { lrs_mp u, v; copy (u, a); copy (v, b); gcd (u, v); exactdivint (a, u, v); /* v=a/u a contains remainder = 0 */ mulint (v, b, a); } /* end of lcm */ /***************************************************************/ /* */ /* Package of routines for rational arithmetic */ /* (Built on top of package for multiprecision arithmetic */ /* */ /***************************************************************/ void reduce (lrs_mp Na, lrs_mp Da) /* reduces Na/Da by gcd(Na,Da) */ { lrs_mp Nb, Db, Nc, Dc; copy (Nb, Na); copy (Db, Da); storesign (Nb, POS); storesign (Db, POS); copy (Nc, Na); copy (Dc, Da); gcd (Nb, Db); /* Nb is the gcd(Na,Da) */ exactdivint (Nc, Nb, Na); exactdivint (Dc, Nb, Da); } void reduceint (lrs_mp Na, lrs_mp Da) /* divide Na by Da and return */ { lrs_mp Temp; copy (Temp, Na); exactdivint (Temp, Da, Na); } long comprod (lrs_mp Na, lrs_mp Nb, lrs_mp Nc, lrs_mp Nd) /* +1 if Na*Nb > Nc*Nd */ /* -1 if Na*Nb < Nc*Nd */ /* 0 if Na*Nb = Nc*Nd */ { long mc; mc = *Na * *Nb - *Nc * *Nd; if (mc > 0) return 1; if (mc < 0) return -1; return 0; } void linrat (lrs_mp Na, lrs_mp Da, long ka, lrs_mp Nb, lrs_mp Db, long kb, lrs_mp Nc, lrs_mp Dc) /* computes Nc/Dc = ka*Na/Da +kb* Nb/Db and reduces answer by gcd(Nc,Dc) */ { lrs_mp c; mulint (Na, Db, Nc); mulint (Da, Nb, c); linint (Nc, ka, c, kb); /* Nc = (ka*Na*Db)+(kb*Da*Nb) */ mulint (Da, Db, Dc); /* Dc = Da*Db */ reduce (Nc, Dc); } void divrat (lrs_mp Na, lrs_mp Da, lrs_mp Nb, lrs_mp Db, lrs_mp Nc, lrs_mp Dc) /* computes Nc/Dc = (Na/Da) / ( Nb/Db ) and reduces answer by gcd(Nc,Dc) */ { mulint (Na, Db, Nc); mulint (Da, Nb, Dc); reduce (Nc, Dc); } void mulrat (lrs_mp Na, lrs_mp Da, lrs_mp Nb, lrs_mp Db, lrs_mp Nc, lrs_mp Dc) /* computes Nc/Dc = Na/Da * Nb/Db and reduces answer by gcd(Nc,Dc) */ { mulint (Na, Nb, Nc); mulint (Da, Db, Dc); reduce (Nc, Dc); } /***************************************************************/ /* */ /* Conversion and I/O functions */ /* */ /***************************************************************/ void atomp (const char *s, lrs_mp a) /*convert string to lrs_mp integer */ /* based on atoi KR p.58 */ { long diff, ten, i, sig; lrs_mp mpone; itomp (ONE, mpone); ten = 10L; for (i = 0; s[i] == ' ' || s[i] == '\n' || s[i] == '\t'; i++); /*skip white space */ sig = POS; if (s[i] == '+' || s[i] == '-') /* sign */ sig = (s[i++] == '+') ? POS : NEG; itomp (0L, a); while (s[i] >= '0' && s[i] <= '9') { diff = s[i] - '0'; linint (a, ten, mpone, diff); i++; } storesign (a, sig); if (s[i]) { fprintf (stderr, "\nIllegal character in number: '%s'\n", s + i); exit (1); } } /* end of atomp */ void atoaa (const char *in, char *num, char *den) /* convert rational string in to num/den strings */ { long i, j; for (i = 0; in[i] != '\0' && in[i] != '/'; i++) num[i] = in[i]; num[i] = '\0'; den[0] = '\0'; if (in[i] == '/') { for (j = 0; in[j + i + 1] != '\0'; j++) den[j] = in[i + j + 1]; den[j] = '\0'; } } /* end of atoaa */ void mptodouble (lrs_mp a, double *x) /* convert lrs_mp to double */ { (*x) = (*a); } long mptoi (lrs_mp a) /* convert lrs_mp to long */ { return (*a); } void rattodouble (lrs_mp a, lrs_mp b, double *x) /* convert lrs_mp rati onal to double */ { double y; mptodouble (a, &y); mptodouble (b, x); *x = y / (*x); } long readrat (lrs_mp Na, lrs_mp Da) /* read a rational or integer and convert to lrs_mp */ /* returns true if denominator is not one */ { char in[MAXINPUT], num[MAXINPUT], den[MAXINPUT]; if(fscanf (lrs_ifp, "%s", in)==EOF) { fprintf (lrs_ofp, "\nInvalid rational input"); exit(1); } if(!strcmp(in,"end")) /*premature end of input file */ { return (999L); } atoaa (in, num, den); /*convert rational to num/dem strings */ atomp (num, Na); if (den[0] == '\0') { itomp (1L, Da); return (FALSE); } atomp (den, Da); return (TRUE); } #ifdef PLRS /* read a rational or integer and convert to lrs_mp with base BASE */ /* returns true if denominator is not one */ long plrs_readrat (lrs_mp Na, lrs_mp Da, const char* rat) { char in[MAXINPUT], num[MAXINPUT], den[MAXINPUT]; strcpy(in, rat); atoaa (in, num, den); /*convert rational to num/dem strings */ atomp (num, Na); if (den[0] == '\0') { itomp (1L, Da); return (FALSE); } atomp (den, Da); return (TRUE); } #endif void readmp (lrs_mp a) /* read an integer and convert to lrs_mp */ { long in; if(fscanf (lrs_ifp, "%ld", &in)==EOF) { fprintf (lrs_ofp, "\nInvalid integer input"); exit(1); } itomp (in, a); } #ifdef PLRS string prat (char name[], lrs_mp Nin, lrs_mp Din) /*reduce and print Nin/Din */ { //create stream to collect output stringstream ss; string str; lrs_mp Nt, Dt; copy (Nt, Nin); copy (Dt, Din); reduce (Nt, Dt); if (sign (Nt) != NEG) ss<<" "; ss< using namespace std; #endif /***********/ /* defines */ /***********/ /* this is number of longwords. Increasing this won't cost you that much since only variables other than the A matrix are allocated this size. Changing affects running time in small but not very predictable ways. */ #define MAX_DIGITS 255L /* this is in decimal digits, you pay in memory if you increase this, unless you override by a line with digits n before the begin line of your file. */ #define DEFAULT_DIGITS 100L /**********MACHINE DEPENDENT CONSTANTS***********/ /* MAXD is 2^(k-1)-1 where k=16,32,64 word size */ /* MAXD must be at least 2*BASE^2 */ /* If BASE is 10^k, use "%k.ku" for FORMAT */ /* INTSIZE is number of bytes for integer */ /* 32/64 bit machines */ /***********************************************/ #ifndef B64 /*32 bit machines */ #define FORMAT "%4.4u" #define MAXD 2147483647L #define BASE 10000L #define BASE_DIG 4 #define INTSIZE 8L #define BIT "32bit" #else /* 64 bit machines */ #define MAXD 9223372036854775807L #define BASE 1000000000L #define FORMAT "%9.9u" #define BASE_DIG 9 #define INTSIZE 16L #define BIT "64bit" #endif #define MAXINPUT 1000 /*max length of any input rational */ #define POS 1L #define NEG -1L #ifndef TRUE #define TRUE 1L #endif #ifndef FALSE #define FALSE 0L #endif #define ONE 1L #define TWO 2L #define ZERO 0L /**********************************/ /* MACROS */ /* dependent on mp implementation */ /**********************************/ #define addint(a, b, c) *(c) = *(a) + *(b) #define changesign(a) (*(a) = - *(a)) #define copy(a, b) ((a)[0] = (b)[0]) #define decint(a, b) *(a) = *(a) - *(b) #define divint(a, b, c) *(c) = *(a) / *(b); *(a) = *(a) % *(b) #define exactdivint(a,b,c) *(c) = *(a) / *(b); #define mp_greater(a, b) (*(a) > *(b) ) #define itomp(in, a) *(a) = in #define linint(a, ka, b, kb) *(a) = *(a) * ka + *(b) * kb #define mulint(a, b, c) *(c) = *(a) * *(b) #define one(a) (*(a) == 1) #define negative(a) (*(a) < 0) #define normalize(a) (void) 0 #define positive(a) (*(a) > 0) #define sign(a) (*(a) < 0 ? NEG : POS) #define storesign(a, sa) (*(a) = labs(*(a)) * sa) #define subint(a, b, c) *(c) = *(a) - *(b) #define zero(a) (*(a) == 0) /* * convert between decimal and machine (longword digits). Notice lovely * implementation of ceiling function :-) */ #define DEC2DIG(d) ( (d) % BASE_DIG ? (d)/BASE_DIG+1 : (d)/BASE_DIG) #define DIG2DEC(d) ((d)*BASE_DIG) #ifndef OMIT_SIGNALS #include #include /* labs */ #include #define errcheck(s,e) if ((long)(e)==-1L){ perror(s);exit(1);} #endif #define CALLOC(n,s) xcalloc(n,s,__LINE__,__FILE__) /*************/ /* typedefs */ /*************/ typedef long lrs_mp[1]; /* type lrs_mp holds one long integer */ typedef long *lrs_mp_t; typedef long **lrs_mp_vector; typedef long ***lrs_mp_matrix; /*********************/ /*global variables */ /*********************/ extern long lrs_digits; /* max permitted no. of digits */ extern long lrs_record_digits; /* this is the biggest acheived so far. */ extern FILE *lrs_ifp; /* input file pointer */ extern FILE *lrs_ofp; /* output file pointer */ /*********************************************************/ /* Initialization and allocation procedures - must use! */ /******************************************************* */ long lrs_mp_init (long dec_digits, FILE * lrs_ifp, FILE * lrs_ofp); /* max number of decimal digits, fps */ #define lrs_alloc_mp(a) #define lrs_clear_mp(a) lrs_mp_t lrs_alloc_mp_t(); /* dynamic allocation of lrs_mp */ lrs_mp_vector lrs_alloc_mp_vector (long n); /* allocate lrs_mp_vector for n+1 lrs_mp numbers */ lrs_mp_matrix lrs_alloc_mp_matrix (long m, long n); /* allocate lrs_mp_matrix for m+1 x n+1 lrs_mp */ void lrs_clear_mp_vector (lrs_mp_vector a, long n); void lrs_clear_mp_matrix (lrs_mp_matrix a, long m, long n); /*********************************************************/ /* Core library functions - depend on mp implementation */ /******************************************************* */ void atomp (const char s[], lrs_mp a); /* convert string to lrs_mp integer */ long compare (lrs_mp a, lrs_mp b); /* a ? b and returns -1,0,1 for <,=,> */ void gcd (lrs_mp u, lrs_mp v); /* returns u=gcd(u,v) destroying v */ void mptodouble (lrs_mp a, double *x); /* convert lrs_mp to double */ long mptoi (lrs_mp a); /* convert lrs_mp to long integer */ #ifdef PLRS string pmp (char name[], lrs_mp a); /* print the long precision integer a */ string prat (char name[], lrs_mp Nt, lrs_mp Dt); /* reduce and print Nt/Dt */ long plrs_readrat (lrs_mp Na, lrs_mp Da, const char * rat); /* take a rational number and convert to lrs_mp */ #else void pmp (char name[], lrs_mp a); /* print the long precision integer a */ void prat (char name[], lrs_mp Nt, lrs_mp Dt); /* reduce and print Nt/Dt */ #endif void readmp (lrs_mp a); /* read an integer and convert to lrs_mp */ long readrat (lrs_mp Na, lrs_mp Da); /* read a rational or int and convert to lrs_mp */ void reduce (lrs_mp Na, lrs_mp Da); /* reduces Na Da by gcd(Na,Da) */ /*********************************************************/ /* Standard arithmetic & misc. functions */ /* should be independent of mp implementation */ /******************************************************* */ void atoaa (const char in[], char num[], char den[]); /* convert rational string in to num/den strings */ long atos (char s[]); /* convert s to integer */ long comprod (lrs_mp Na, lrs_mp Nb, lrs_mp Nc, lrs_mp Nd); /* +1 if Na*Nb > Nc*Nd,-1 if Na*Nb > Nc*Nd else 0 */ void divrat (lrs_mp Na, lrs_mp Da, lrs_mp Nb, lrs_mp Db, lrs_mp Nc, lrs_mp Dc); /* computes Nc/Dc = (Na/Da) /( Nb/Db ) and reduce */ void getfactorial (lrs_mp factorial, long k); /* compute k factorial in lrs_mp */ void linrat (lrs_mp Na, lrs_mp Da, long ka, lrs_mp Nb, lrs_mp Db, long kb, lrs_mp Nc, lrs_mp Dc); void lcm (lrs_mp a, lrs_mp b); /* a = least common multiple of a, b; b is saved */ void mulrat (lrs_mp Na, lrs_mp Da, lrs_mp Nb, lrs_mp Db, lrs_mp Nc, lrs_mp Dc); /* computes Nc/Dc=(Na/Da)*(Nb/Db) and reduce */ long myrandom (long num, long nrange); /* return a random number in range 0..nrange-1 */ void notimpl (char s[]); /* bail out - help! */ void rattodouble (lrs_mp a, lrs_mp b, double *x); /* convert lrs_mp rational to double */ void reduceint (lrs_mp Na, lrs_mp Da); /* divide Na by Da and return it */ void reducearray (lrs_mp_vector p, long n); /* find gcd of p[0]..p[n-1] and divide through by */ void scalerat (lrs_mp Na, lrs_mp Da, long ka); /* scales rational by ka */ /**********************************/ /* Miscellaneous functions */ /******************************** */ void lrs_getdigits (long *a, long *b); /* send digit information to user */ void stringcpy (char *s, char *t); /* copy t to s pointer version */ void *calloc (); void *malloc (); void *xcalloc (long n, long s, long l, char *f); void lrs_default_digits_overflow (); /* end of lrs_mp.h (vertex enumeration using lexicographic reverse search) */ lrslib-051/lrsmp.c0000700000175300010010000005644712437743717014005 0ustar avisなし/* lrsmp.c library code for lrs extended precision arithmetic */ /* Version 4.0c, August 26, 2009 */ /* minor change to check result of fscanf */ /* Copyright: David Avis 1999, avis@cs.mcgill.ca */ /* This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifdef PLRS #include #include #endif #include #include #include #include "lrsmp.h" long lrs_digits; /* max permitted no. of digits */ long lrs_record_digits; /* this is the biggest acheived so far. */ /******************************************************************/ /* digit overflow is caught by digits_overflow at the end of this */ /* file, make sure it is either user supplied or uncomment */ /* the define below */ /******************************************************************/ #define digits_overflow() lrs_default_digits_overflow() /*********************************************************/ /* Initialization and allocation procedures - must use! */ /******************************************************* */ long lrs_mp_init (long dec_digits, FILE * fpin, FILE * fpout) /* max number of decimal digits for the computation */ { /* global variables lrs_ifp and lrs_ofp are file pointers for input and output */ lrs_ifp = fpin; lrs_ofp = fpout; lrs_record_digits = 0; if (dec_digits <= 0) dec_digits = DEFAULT_DIGITS; lrs_digits = DEC2DIG (dec_digits); /* max permitted no. of digits */ if (lrs_digits > MAX_DIGITS) { #ifdef PLRS cout<<"Digits must be at most "< 0; i--) { cy = cy * BASE + a[i]; a[i] = 0; cy -= (c[i] = cy / t) * t; } a[1] = cy; storesign (a, (cy == 0) ? POS : sign (a)); storelength (a, TWO); /* set sign of c to sig (**mod**) */ storesign (c, sig); normalize (c); return; } else { /* mp's are actually DIGITS+1 in length, so if length of a or b = */ /* DIGITS, there will still be room after normalization. */ /****************************************************/ /* Step D1 - normalize numbers so b > floor(BASE/2) */ d1 = BASE / (b[lb - 1] + 1); if (d1 > 1) { cy = 0; for (i = 1; i < la; i++) { cy = (a[i] = a[i] * d1 + cy) / BASE; a[i] %= BASE; } a[i] = cy; cy = 0; for (i = 1; i < lb; i++) { cy = (b[i] = b[i] * d1 + cy) / BASE; b[i] %= BASE; } b[i] = cy; } else { a[la] = 0; /* if la or lb = DIGITS this won't work */ b[lb] = 0; } /*********************************************/ /* Steps D2 & D7 - start and end of the loop */ for (j = 0; j <= la - lb; j++) { /*************************************/ /* Step D3 - determine trial divisor */ if (a[la - j] == b[lb - 1]) qh = BASE - 1; else { s = (a[la - j] * BASE + a[la - j - 1]); qh = s / b[lb - 1]; while (qh * b[lb - 2] > (s - qh * b[lb - 1]) * BASE + a[la - j - 2]) qh--; } /*******************************************************/ /* Step D4 - divide through using qh as quotient digit */ cy = 0; for (i = 1; i <= lb; i++) { s = qh * b[i] + cy; a[la - j - lb + i] -= s % BASE; cy = s / BASE; if (a[la - j - lb + i] < 0) { a[la - j - lb + i] += BASE; cy++; } } /*****************************************************/ /* Step D6 - adjust previous step if qh is 1 too big */ if (cy) { qh--; cy = 0; for (i = 1; i <= lb; i++) /* add a back in */ { a[la - j - lb + i] += b[i] + cy; cy = a[la - j - lb + i] / BASE; a[la - j - lb + i] %= BASE; } } /***********************************************************************/ /* Step D5 - write final value of qh. Saves calculating array indices */ /* to do it here instead of before D6 */ c[la - lb - j + 1] = qh; } /**********************************************************************/ /* Step D8 - unnormalize a and b to get correct remainder and divisor */ for (i = lc; c[i - 1] == 0 && i > 2; i--); /* strip excess 0's from quotient */ storelength (c, i); if (i == 2 && c[1] == 0) storesign (c, POS); cy = 0; for (i = lb - 1; i >= 1; i--) { cy = (a[i] += cy * BASE) % d1; a[i] /= d1; } for (i = la; a[i - 1] == 0 && i > 2; i--); /* strip excess 0's from quotient */ storelength (a, i); if (i == 2 && a[1] == 0) storesign (a, POS); if (cy){ fprintf (stdout, "divide error"); exit(1); } for (i = lb - 1; i >= 1; i--) { cy = (b[i] += cy * BASE) % d1; b[i] /= d1; } } } /* end of divint */ void gcd (lrs_mp u, lrs_mp v) /*returns u=gcd(u,v) destroying v */ /*Euclid's algorithm. Knuth, II, p.320 modified to avoid copies r=u,u=v,v=r Switches to single precision when possible for greater speed */ { lrs_mp r; unsigned long ul, vl; long i; static unsigned long maxspval = MAXD; /* Max value for the last digit to guarantee */ /* fitting into a single long integer. */ static long maxsplen; /* Maximum digits for a number that will fit */ /* into a single long integer. */ static long firstime = TRUE; if (firstime) /* initialize constants */ { for (maxsplen = 2; maxspval >= BASE; maxsplen++) maxspval /= BASE; firstime = FALSE; } if (mp_greater (v, u)) goto bigv; bigu: if (zero (v)) return; if ((i = length (u)) < maxsplen || (i == maxsplen && u[maxsplen - 1] < maxspval)) goto quickfinish; divint (u, v, r); normalize (u); bigv: if (zero (u)) { copy (u, v); return; } if ((i = length (v)) < maxsplen || (i == maxsplen && v[maxsplen - 1] < maxspval)) goto quickfinish; divint (v, u, r); normalize (v); goto bigu; /* Base 10000 only at the moment */ /* when u and v are small enough, transfer to single precision integers */ /* and finish with euclid's algorithm, then transfer back to lrs_mp */ quickfinish: ul = vl = 0; for (i = length (u) - 1; i > 0; i--) ul = BASE * ul + u[i]; for (i = length (v) - 1; i > 0; i--) vl = BASE * vl + v[i]; if (ul > vl) goto qv; qu: if (!vl) { for (i = 1; ul; i++) { u[i] = ul % BASE; ul = ul / BASE; } storelength (u, i); return; } ul %= vl; qv: if (!ul) { for (i = 1; vl; i++) { u[i] = vl % BASE; vl = vl / BASE; } storelength (u, i); return; } vl %= ul; goto qu; } long compare (lrs_mp a, lrs_mp b) /* a ? b and returns -1,0,1 for <,=,> */ { long i; if (a[0] > b[0]) return 1L; if (a[0] < b[0]) return -1L; for (i = length (a) - 1; i >= 1; i--) { if (a[i] < b[i]) { if (sign (a) == POS) return -1L; else return 1L; } if (a[i] > b[i]) { if (sign (a) == NEG) return -1L; else return 1L; } } return 0L; } long mp_greater (lrs_mp a, lrs_mp b) /* tests if a > b and returns (TRUE=POS) */ { long i; if (a[0] > b[0]) return (TRUE); if (a[0] < b[0]) return (FALSE); for (i = length (a) - 1; i >= 1; i--) { if (a[i] < b[i]) { if (sign (a) == POS) return (0); else return (1); } if (a[i] > b[i]) { if (sign (a) == NEG) return (0); else return (1); } } return (0); } void itomp (long in, lrs_mp a) /* convert integer i to multiple precision with base BASE */ { long i; a[0] = 2; /* initialize to zero */ for (i = 1; i < lrs_digits; i++) a[i] = 0; if (in < 0) { storesign (a, NEG); in = in * (-1); } i = 0; while (in != 0) { i++; a[i] = in - BASE * (in / BASE); in = in / BASE; storelength (a, i + 1); } } /* end of itomp */ void linint (lrs_mp a, long ka, lrs_mp b, long kb) /*compute a*ka+b*kb --> a */ /***Handbook of Algorithms and Data Structures P.239 ***/ { long i, la, lb; la = length (a); lb = length (b); for (i = 1; i < la; i++) a[i] *= ka; if (sign (a) != sign (b)) kb = (-kb); if (lb > la) { storelength (a, lb); for (i = la; i < lb; i++) a[i] = 0; } for (i = 1; i < lb; i++) a[i] += kb * b[i]; normalize (a); } /***end of linint***/ void mptodouble (lrs_mp a, double *x) /* convert lrs_mp to double */ { long i, la; double y = 1.0; (*x) = 0; la = length (a); for (i = 1; i < la; i++) { (*x) = (*x) + y * a[i]; y = y * BASE; } if (negative (a)) (*x)= -(*x); } void mulint (lrs_mp a, lrs_mp b, lrs_mp c) /* multiply two integers a*b --> c */ /***Handbook of Algorithms and Data Structures, p239 ***/ { long nlength, i, j, la, lb; /*** b and c may coincide ***/ la = length (a); lb = length (b); nlength = la + lb - 2; if (nlength > lrs_digits) digits_overflow (); for (i = 0; i < la - 2; i++) c[lb + i] = 0; for (i = lb - 1; i > 0; i--) { for (j = 2; j < la; j++) if ((c[i + j - 1] += b[i] * a[j]) > MAXD - (BASE - 1) * (BASE - 1) - MAXD / BASE) { c[i + j - 1] -= (MAXD / BASE) * BASE; c[i + j] += MAXD / BASE; } c[i] = b[i] * a[1]; } storelength (c, nlength); storesign (c, sign (a) == sign (b) ? POS : NEG); normalize (c); } /***end of mulint ***/ void normalize (lrs_mp a) { long cy, i, la; la = length (a); start: cy = 0; for (i = 1; i < la; i++) { cy = (a[i] += cy) / BASE; a[i] -= cy * BASE; if (a[i] < 0) { a[i] += BASE; cy--; } } while (cy > 0) { a[i++] = cy % BASE; cy /= BASE; } if (cy < 0) { a[la - 1] += cy * BASE; for (i = 1; i < la; i++) a[i] = (-a[i]); storesign (a, sign (a) == POS ? NEG : POS); goto start; } while (a[i - 1] == 0 && i > 2) i--; if (i > lrs_record_digits) { if ((lrs_record_digits = i) > lrs_digits) digits_overflow (); }; storelength (a, i); if (i == 2 && a[1] == 0) storesign (a, POS); } /* end of normalize */ long length (lrs_mp a) { /* formerly a macro but conflicts with string length */ return ((a[0] > 0) ? a[0] : -a[0]); } long mptoi (lrs_mp a) /* convert lrs_mp to long integer */ { long len = length (a); if (len == 2) return sign (a) * a[1]; if (len == 3) return sign (a) * (a[1] + BASE * a[2]); notimpl ("mp to large for conversion to long"); return 0; /* never executed */ } #ifdef PLRS string prat (char name[], lrs_mp Nin, lrs_mp Din) /*reduce and print Nin/Din */ { lrs_mp Nt, Dt; long i; //create stream to collect output stringstream ss; string str; ss<= 1; i--) ss<= 1; i--) ss<= 1; i--) ss<= 1; i--) fprintf (lrs_ofp, FORMAT, Nt[i]); if (!(Dt[0] == 2 && Dt[1] == 1)) /* rational */ { fprintf (lrs_ofp, "/"); fprintf (lrs_ofp, "%lu", Dt[length (Dt) - 1]); for (i = length (Dt) - 2; i >= 1; i--) fprintf (lrs_ofp, FORMAT, Dt[i]); } fprintf (lrs_ofp, " "); } void pmp (char name[], lrs_mp a) /*print the long precision integer a */ { long i; fprintf (lrs_ofp, "%s", name); if (sign (a) == NEG) fprintf (lrs_ofp, "-"); else fprintf (lrs_ofp, " "); fprintf (lrs_ofp, "%lu", a[length (a) - 1]); for (i = length (a) - 2; i >= 1; i--) fprintf (lrs_ofp, FORMAT, a[i]); fprintf (lrs_ofp, " "); } #endif long readrat (lrs_mp Na, lrs_mp Da) /* read a rational or integer and convert to lrs_mp with base BASE */ /* returns true if denominator is not one */ /* returns 999 if premature end of file */ { char in[MAXINPUT], num[MAXINPUT], den[MAXINPUT]; if(fscanf (lrs_ifp, "%s", in)==EOF) { fprintf (lrs_ofp, "\nInvalid rational input"); exit(1); } if(!strcmp(in,"end")) /*premature end of input file */ { return (999L); } atoaa (in, num, den); /*convert rational to num/dem strings */ atomp (num, Na); if (den[0] == '\0') { itomp (1L, Da); return (FALSE); } atomp (den, Da); return (TRUE); } void addint (lrs_mp a, lrs_mp b, lrs_mp c) /* compute c=a+b */ { copy (c, a); linint (c, 1, b, 1); } void atomp (char s[], lrs_mp a) /*convert string to lrs_mp integer */ { lrs_mp mpone; long diff, ten, i, sig; itomp (1L, mpone); ten = 10L; for (i = 0; s[i] == ' ' || s[i] == '\n' || s[i] == '\t'; i++); /*skip white space */ sig = POS; if (s[i] == '+' || s[i] == '-') /* sign */ sig = (s[i++] == '+') ? POS : NEG; itomp (0L, a); while (s[i] >= '0' && s[i] <= '9') { diff = s[i] - '0'; linint (a, ten, mpone, diff); i++; } storesign (a, sig); if (s[i]) { fprintf (stderr, "\nIllegal character in number: '%s'\n", s + i); exit (1); } } /* end of atomp */ void subint (lrs_mp a, lrs_mp b, lrs_mp c) /* compute c=a-b */ { copy (c, a); linint (a, 1, b, -1); } void decint (lrs_mp a, lrs_mp b) /* compute a=a-b */ { linint (a, 1, b, -1); } long myrandom (long num, long nrange) /* return a random number in range 0..nrange-1 */ { long i; i = (num * 401 + 673) % nrange; return (i); } long atos (char s[]) /* convert s to integer */ { long i, j; j = 0; for (i = 0; s[i] >= '0' && s[i] <= '9'; ++i) j = 10 * j + s[i] - '0'; return (j); } void stringcpy (char *s, char *t) /*copy t to s pointer version */ { while (((*s++) = (*t++)) != '\0'); } void rattodouble (lrs_mp a, lrs_mp b, double *x) /* convert lrs_mp rational to double */ { double y; mptodouble (a, &y); mptodouble (b, x); *x = y / (*x); } void atoaa (char in[], char num[], char den[]) /* convert rational string in to num/den strings */ { long i, j; for (i = 0; in[i] != '\0' && in[i] != '/'; i++) num[i] = in[i]; num[i] = '\0'; den[0] = '\0'; if (in[i] == '/') { for (j = 0; in[j + i + 1] != '\0'; j++) den[j] = in[i + j + 1]; den[j] = '\0'; } } /* end of atoaa */ void lcm (lrs_mp a, lrs_mp b) /* a = least common multiple of a, b; b is preserved */ { lrs_mp u, v; copy (u, a); copy (v, b); gcd (u, v); exactdivint (a, u, v); /* v=a/u no remainder*/ mulint (v, b, a); } /* end of lcm */ void reducearray (lrs_mp_vector p, long n) /* find largest gcd of p[0]..p[n-1] and divide through */ { lrs_mp divisor; lrs_mp Temp; long i = 0L; while ((i < n) && zero (p[i])) i++; if (i == n) return; copy (divisor, p[i]); storesign (divisor, POS); i++; while (i < n) { if (!zero (p[i])) { copy (Temp, p[i]); storesign (Temp, POS); gcd (divisor, Temp); } i++; } /* reduce by divisor */ for (i = 0; i < n; i++) if (!zero (p[i])) reduceint (p[i], divisor); } /* end of reducearray */ void reduceint (lrs_mp Na, lrs_mp Da) /* divide Na by Da and return */ { lrs_mp Temp; copy (Temp, Na); exactdivint (Temp, Da, Na); } void reduce (lrs_mp Na, lrs_mp Da) /* reduces Na Da by gcd(Na,Da) */ { lrs_mp Nb, Db, Nc, Dc; copy (Nb, Na); copy (Db, Da); storesign (Nb, POS); storesign (Db, POS); copy (Nc, Na); copy (Dc, Da); gcd (Nb, Db); /* Nb is the gcd(Na,Da) */ exactdivint (Nc, Nb, Na); exactdivint (Dc, Nb, Da); } long comprod (lrs_mp Na, lrs_mp Nb, lrs_mp Nc, lrs_mp Nd) /* +1 if Na*Nb > Nc*Nd */ /* -1 if Na*Nb < Nc*Nd */ /* 0 if Na*Nb = Nc*Nd */ { lrs_mp mc, md; mulint (Na, Nb, mc); mulint (Nc, Nd, md); linint (mc, ONE, md, -ONE); if (positive (mc)) return (1); if (negative (mc)) return (-1); return (0); } void notimpl (char s[]) { fflush (stdout); fprintf (stderr, "\nAbnormal Termination %s\n", s); exit (1); } void getfactorial (lrs_mp factorial, long k) /* compute k factorial in lrs_mp */ { lrs_mp temp; long i; itomp (ONE, factorial); for (i = 2; i <= k; i++) { itomp (i, temp); mulint (temp, factorial, factorial); } } /* end of getfactorial */ /***************************************************************/ /* Package of routines for rational arithmetic */ /***************************************************************/ void scalerat (lrs_mp Na, lrs_mp Da, long ka) /* scales rational by ka */ { lrs_mp Nt; copy (Nt, Na); itomp (ZERO, Na); linint (Na, ZERO, Nt, ka); reduce (Na, Da); } void linrat (lrs_mp Na, lrs_mp Da, long ka, lrs_mp Nb, lrs_mp Db, long kb, lrs_mp Nc, lrs_mp Dc) /* computes Nc/Dc = ka*Na/Da +kb* Nb/Db and reduces answer by gcd(Nc,Dc) */ { lrs_mp c; mulint (Na, Db, Nc); mulint (Da, Nb, c); linint (Nc, ka, c, kb); /* Nc = (ka*Na*Db)+(kb*Da*Nb) */ mulint (Da, Db, Dc); /* Dc = Da*Db */ reduce (Nc, Dc); } void divrat (lrs_mp Na, lrs_mp Da, lrs_mp Nb, lrs_mp Db, lrs_mp Nc, lrs_mp Dc) /* computes Nc/Dc = (Na/Da) / ( Nb/Db ) and reduces answer by gcd(Nc,Dc) */ { mulint (Na, Db, Nc); mulint (Da, Nb, Dc); reduce (Nc, Dc); } void mulrat (lrs_mp Na, lrs_mp Da, lrs_mp Nb, lrs_mp Db, lrs_mp Nc, lrs_mp Dc) /* computes Nc/Dc = Na/Da * Nb/Db and reduces by gcd(Nc,Dc) */ { mulint (Na, Nb, Nc); mulint (Da, Db, Dc); reduce (Nc, Dc); } /* End package of routines for rational arithmetic */ /***************************************************************/ /* */ /* End of package for multiple precision arithmetic */ /* */ /***************************************************************/ void * xcalloc (long n, long s, long l, char *f) { void *tmp; tmp = calloc (n, s); if (tmp == 0) { char buf[200]; sprintf (buf, "\n\nFatal error on line %ld of %s", l, f); perror (buf); exit (1); } return tmp; } void lrs_getdigits (long *a, long *b) { /* send digit information to user */ *a = DIG2DEC (lrs_digits); *b = DIG2DEC (lrs_record_digits); return; } void lrs_default_digits_overflow () { fprintf (stdout, "\nOverflow at digits=%ld", DIG2DEC (lrs_digits)); fprintf (stdout, "\nInitialize lrs_mp_init with n > %ldL\n", DIG2DEC (lrs_digits)); exit (1); } #ifdef PLRS /* read a rational or integer and convert to lrs_mp with base BASE */ /* returns true if denominator is not one */ /* returns 999 if premature end of file */ long plrs_readrat (lrs_mp Na, lrs_mp Da, const char* rat) { char in[MAXINPUT], num[MAXINPUT], den[MAXINPUT]; strcpy(in, rat); atoaa (in, num, den); /*convert rational to num/dem strings */ atomp (num, Na); if (den[0] == '\0') { itomp (1L, Da); return (FALSE); } atomp (den, Da); return (TRUE); } #endif /* end of lrsmp.c */ lrslib-051/lrsmp.h0000700000175300010010000002366612457644376014012 0ustar avisなし/* lrsmp.h (lrs extended precision arithmetic library) */ /* Copyright: David Avis 2000, avis@cs.mcgill.ca */ /* Version 4.1, February 17, 2000 */ /* This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ /******************************************************************************/ /* See http://cgm.cs.mcgill.ca/~avis/C/lrs.html for lrs usage instructions */ /******************************************************************************/ /* This package contains the extended precision routines used by lrs and some other miscellaneous routines. The maximum precision depends on the parameter MAX_DIGITS defined below, with usual default of 255L. This gives a maximum of 1020 decimal digits on 32 bit machines. The procedure lrs_mp_init(dec_digits) may set a smaller number of dec_digits, and this is useful if arrays or matrices will be used. */ #ifdef PLRS #include using namespace std; #endif /***********/ /* defines */ /***********/ /* this is number of longwords. Increasing this won't cost you that much since only variables other than the A matrix are allocated this size. Changing affects running time in small but not very predictable ways. */ #define MAX_DIGITS 255L /* this is in decimal digits, you pay in memory if you increase this, unless you override by a line with digits n before the begin line of your file. */ #define DEFAULT_DIGITS 100L /**********MACHINE DEPENDENT CONSTANTS***********/ /* MAXD is 2^(k-1)-1 where k=16,32,64 word size */ /* MAXD must be at least 2*BASE^2 */ /* If BASE is 10^k, use "%k.ku" for FORMAT */ /* INTSIZE is number of bytes for integer */ /* 32/64 bit machines */ /***********************************************/ #ifndef B64 /*32 bit machines */ #define FORMAT "%4.4lu" #define MAXD 2147483647L #define BASE 10000L #define BASE_DIG 4 #define INTSIZE 8L #define BIT "32bit" #else /* 64 bit machines */ #define MAXD 9223372036854775807L #define BASE 1000000000L #define FORMAT "%9.9lu" #define BASE_DIG 9 #define INTSIZE 16L #define BIT "64bit" #endif #define MAXINPUT 1000 /*max length of any input rational */ #define POS 1L #define NEG -1L #ifndef TRUE #define TRUE 1L #endif #ifndef FALSE #define FALSE 0L #endif #define ONE 1L #define TWO 2L #define ZERO 0L /**********************************/ /* MACROS */ /* dependent on mp implementation */ /**********************************/ #define exactdivint(a,b,c) divint((a),(b),(c)) /*should use special code here */ #define positive(a) (((a)[0] < 2 || ((a)[0]==2 && (a)[1]==0))?FALSE:TRUE) #define negative(a) (((a)[0] > -2 || ((a)[0]==-2 && (a)[1]==0))?FALSE:TRUE) #define zero(a) ((((a)[0]==2 || (a)[0]==-2) && (a)[1]==0)?TRUE:FALSE) #define one(a) (((a)[0]==2 && (a)[1]==1)?TRUE:FALSE) //#define length(a) (((a)[0] > 0) ? (a)[0] : -(a)[0]) #define sign(a) (((a)[0] < 0) ? NEG : POS) #define storesign(a,sa) a[0]=((a)[0] > 0) ? (sa)*((a)[0]) : -(sa)*((a)[0]) #define changesign(a) a[0]= -(a)[0] #define storelength(a,la) a[0]=((a)[0] > 0) ? (la) : -(la) /* * convert between decimal and machine (longword digits). Notice lovely * implementation of ceiling function :-) */ #define DEC2DIG(d) ( (d) % BASE_DIG ? (d)/BASE_DIG+1 : (d)/BASE_DIG) #define DIG2DEC(d) ((d)*BASE_DIG) #include #ifdef SIGNALS #include #include #define errcheck(s,e) if ((long)(e)==-1L){ perror(s);exit(1);} #endif #define CALLOC(n,s) xcalloc(n,s,__LINE__,__FILE__) extern long lrs_digits; /* max permitted no. of digits */ extern long lrs_record_digits; /* this is the biggest acheived so far. */ extern FILE* lrs_ifp; /* input file pointer */ extern FILE* lrs_ofp; /* output file pointer */ /*************/ /* typedefs */ /*************/ typedef long lrs_mp[MAX_DIGITS + 1]; /* type lrs_mp holds one multi-precision integer */ typedef long *lrs_mp_t; typedef long **lrs_mp_vector; typedef long ***lrs_mp_matrix; /*********************************************************/ /* Initialization and allocation procedures - must use! */ /******************************************************* */ /* next two functions are not used by lrsmp, but are for lrsgmp compatability */ #define lrs_alloc_mp(a) #define lrs_clear_mp(a) lrs_mp_t lrs_alloc_mp_t(); /* dynamic allocation of lrs_mp */ lrs_mp_vector lrs_alloc_mp_vector (long n); /* allocate lrs_mp_vector for n+1 lrs_mp numbers */ lrs_mp_matrix lrs_alloc_mp_matrix (long m, long n); /* allocate lrs_mp_matrix for m+1 x n+1 lrs_mp */ long lrs_mp_init (long dec_digits, FILE * lrs_ifp, FILE * lrs_ofp); /* max number of decimal digits, fps */ void lrs_clear_mp_vector (lrs_mp_vector a, long n); void lrs_clear_mp_matrix (lrs_mp_matrix a, long m, long n); /*********************************************************/ /* Core library functions - depend on mp implementation */ /******************************************************* */ long length (lrs_mp a); /* return length of lrs_mp integer */ void atomp (char s[], lrs_mp a); /* convert string to lrs_mp integer */ long compare (lrs_mp a, lrs_mp b); /* a ? b and returns -1,0,1 for <,=,> */ void copy (lrs_mp a, lrs_mp b); /* assigns a=b */ void divint (lrs_mp a, lrs_mp b, lrs_mp c); /* c=a/b, a contains remainder on return */ void gcd (lrs_mp u, lrs_mp v); /* returns u=gcd(u,v) destroying v */ long mp_greater (lrs_mp a, lrs_mp b); /* tests if a > b and returns (TRUE=POS) */ void itomp (long in, lrs_mp a); /* convert integer i to lrs_mp */ void linint (lrs_mp a, long ka, lrs_mp b, long kb); /* compute a*ka+b*kb --> a */ void mptodouble (lrs_mp a, double *x); /* convert lrs_mp to double */ long mptoi (lrs_mp a); /* convert lrs_mp to long integer */ void mulint (lrs_mp a, lrs_mp b, lrs_mp c); /* multiply two integers a*b --> c */ void normalize (lrs_mp a); /* normalize lrs_mp after computation */ #ifdef PLRS string pmp (char name[], lrs_mp a); /* print the long precision integer a */ string prat (char name[], lrs_mp Nt, lrs_mp Dt); /* reduce and print Nt/Dt */ long plrs_readrat (lrs_mp Na, lrs_mp Da, const char * rat); /* take a rational number and convert to lrs_mp */ #else void pmp (char name[], lrs_mp a); /* print the long precision integer a */ void prat (char name[], lrs_mp Nt, lrs_mp Dt); /* reduce and print Nt/Dt */ #endif long readrat (lrs_mp Na, lrs_mp Da); /* read a rational or int and convert to lrs_mp */ void reduce (lrs_mp Na, lrs_mp Da); /* reduces Na Da by gcd(Na,Da) */ /*********************************************************/ /* Standard arithmetic & misc. functions */ /* should be independent of mp implementation */ /******************************************************* */ void atoaa (char in[], char num[], char den[]); /* convert rational string in to num/den strings */ void addint (lrs_mp a, lrs_mp b, lrs_mp c); /* compute c=a+b */ long atos (char s[]); /* convert s to integer */ long comprod (lrs_mp Na, lrs_mp Nb, lrs_mp Nc, lrs_mp Nd); /* +1 if Na*Nb > Nc*Nd,-1 if Na*Nb > Nc*Nd else 0 */ void decint (lrs_mp a, lrs_mp b); /* compute a=a-b */ void divrat (lrs_mp Na, lrs_mp Da, lrs_mp Nb, lrs_mp Db, lrs_mp Nc, lrs_mp Dc); /* computes Nc/Dc = (Na/Da) /( Nb/Db ) and reduce */ void getfactorial (lrs_mp factorial, long k); /* compute k factorial in lrs_mp */ /* NC/DC = ka*Na/Da + kb*Nb/Db */ void linrat (lrs_mp Na, lrs_mp Da, long ka, lrs_mp Nb, lrs_mp Db, long kb, lrs_mp Nc, lrs_mp Dc); void lcm (lrs_mp a, lrs_mp b); /* a = least common multiple of a, b; b is saved */ void mulrat (lrs_mp Na, lrs_mp Da, lrs_mp Nb, lrs_mp Db, lrs_mp Nc, lrs_mp Dc); /* computes Nc/Dc=(Na/Da)*(Nb/Db) and reduce */ long myrandom (long num, long nrange); /* return a random number in range 0..nrange-1 */ void notimpl (char s[]); /* bail out - help! */ void rattodouble (lrs_mp a, lrs_mp b, double *x); /* convert lrs_mp rational to double */ void reduceint (lrs_mp Na, lrs_mp Da); /* divide Na by Da and return it */ void reducearray (lrs_mp_vector p, long n); /* find gcd of p[0]..p[n-1] and divide through by */ void scalerat (lrs_mp Na, lrs_mp Da, long ka); /* scales rational by ka */ void subint (lrs_mp a, lrs_mp b, lrs_mp c); /* compute c=a-b */ /**********************************/ /* Miscellaneous functions */ /******************************** */ void free (void *); void lrs_getdigits (long *a, long *b); /* send digit information to user */ void stringcpy (char *s, char *t); /* copy t to s pointer version */ void *xcalloc (long n, long s, long l, char *f); void lrs_default_digits_overflow (); void digits_overflow (); /* end of lrsmp.h (vertex enumeration using lexicographic reverse search) */ lrslib-051/makefile0000600000175300010010000001157312457644376014175 0ustar avisなし#new makefile for lrslib-050 2012.9.27 #contains multithread version of lrs called plrs, wrapper written by Gary Roumanis #if Boost libraries are not available, comment out plrs compiles http://www.boost.org/ #make all uses gmp and long arithmetic #make allmp uses native mp and long arithmetic #Select a path below to give location of boost atomic library # versions of gcc since at least 4.6.4 include boost atomic library # sony, mune BOOSTINC = /usr/include BOOSTLIB = /usr/lib #mai64 mai12 #BOOSTINC = /usr/include/boost_1_57_0 #BOOSTLIB = /usr/include/boost_1_57_0/stage/lib # cgm-server.mcgill.ca #BOOSTINC = /home/cgm/avis/C/ve/boost/cgm/boost_1_57_0/ #BOOSTLIB = /home/cgm/avis/C/ve/boost/cgm/boost_1_57_0/stage/lib # obsolete version for cgm #BOOSTINC = /usr/include/boost151/boost/include/ #BOOSTLIB = /usr/include/boost151/boost/lib/ #Select a path below to give location of gmp library #cygwin INCLUDEDIR = /usr/include LIBDIR = /usr/lib #linux at mcgill with gmp version 3 #INCLUDEDIR = /usr/local/include #LIBDIR = /usr/local/lib CFLAGS=-O3 # These flags should *not* include the arithmetic selecting define. CPPFLAGS=-DLRS_QUIET -DTIMES -DSIGNALS # set to something more useful if your system has a ranlib command RANLIB ?= /bin/true # default set of executables to build BINARIES=2nash lrs lrs1 nash redund redund1 setnash setnash2 # default set of libraries to build LIB=liblrsgmp.a LIBRARIES=$(LIB) $(SHLIB) $(SHLINK) # where to install binaries, libraries, include files prefix := /usr/local # Shared library SONAME ?=liblrsgmp.so.0 SOMINOR ?=.0.0 SHLIB ?=$(SONAME)$(SOMINOR) SHLINK ?=liblrsgmp.so LRSGMPLIB=$(LIB) # rule to build gmp arithmetic using object files. %-GMP.o: %.c lrsgmp.h $(CC) -c $(CFLAGS) $(CPPFLAGS) -DGMP -o $@ $< # rule to build gmp arithmetic and relocatable object files. %-GMP-SHR.o: %.c lrsgmp.h $(CC) -c -fPIC $(CFLAGS) $(CPPFLAGS) -DGMP -o $@ $< # Cancel built in rules %: %.c %: %.cpp # How to build a gmp arithmetic using tool %: %-GMP.o $(LRSGMPLIB) $(CC) $< -L. -llrsgmp -L${LIBDIR} -lgmp -o $@ all: $(BINARIES) all-static: $(LIB) $(MAKE) LRSGMPLIB=$(LIB) all all-shared: $(SHLINK) $(MAKE) LRSGMPLIB=$(SHLINK) $(BINARIES): $(LRSGMPLIB) liblrsgmp.a: lrslib-GMP.o lrsgmp-GMP.o ar r $@ $^ $(RANLIB) $@ $(SHLIB): lrslib-GMP-SHR.o lrsgmp-GMP-SHR.o $(CC) -shared -Wl,-soname=$(SONAME) $(SHLIBFLAGS) -o $@ $^ -lgmp $(SHLINK): $(SHLIB) ln -sf $< $@ lrs1: lrs.c lrslib.c lrslib.c lrslong.c $(CC) $(CFLAGS) $(CPPFLAGS) -DLONG -o lrs1 lrs.c lrslib.c lrslong.c redund1: redund.c lrslib.c lrslib.c lrslong.c $(CC) $(CFLAGS) $(CPPFLAGS) -DLONG -o redund1 redund.c lrslib.c lrslong.c setnash: setupnash.c lrslib.c lrsmp.c $(CC) $(CFLAGS) $(CPPFLAGS) -o setnash setupnash.c lrslib.c lrsmp.c setnash2: setupnash2.c lrslib.c lrsmp.c $(CC) $(CFLAGS) $(CPPFLAGS) -o setnash2 setupnash2.c lrslib.c lrsmp.c install: install-static install-shared: all-shared install-common mkdir -p $(DESTDIR)${prefix}/lib install -t $(DESTDIR)${prefix}/lib $(SHLIB) cd $(DESTDIR)${prefix}/lib && ln -sf $(SHLIB) $(SHLINK) cd $(DESTDIR)${prefix}/lib && ln -sf $(SHLIB) $(SONAME) install-static: all-static install-common mkdir -p $(DESTDIR)${prefix}/lib install -t $(DESTDIR)${prefix}/lib $(LIB) install-common: mkdir -p $(DESTDIR)${prefix}/bin install -t $(DESTDIR)${prefix}/bin $(BINARIES) mkdir -p $(DESTDIR)${prefix}/include install -t $(DESTDIR)${prefix}/include lrslib.h lrsgmp.h fourier: fourier.c lrslib.h lrslib.c lrsgmp.h lrsgmp.c gcc -O3 -DTIMES -DSIGNALS -DGMP -I${INCLUDEDIR} fourier.c lrslib.c lrsgmp.c -L${LIBDIR} -lgmp -o fourier plrs: plrs.cpp plrs.hpp lrslib.c lrslib.h lrsmp.c lrsmp.h g++ -DGMP -Wall -Wno-write-strings -Wno-sign-compare -I${BOOSTINC} -Wl,-rpath=${BOOSTLIB} -O3 -DPLRS -DGMP -o plrs plrs.cpp lrslib.c lrsgmp.c -L${BOOSTLIB} -lboost_thread -lboost_system -lgmp plrsmp: plrs.cpp plrs.hpp lrslib.c lrslib.h lrsmp.c lrsmp.h g++ -Wall -Wno-write-strings -Wno-sign-compare -Wno-unused-variable -I${BOOSTINC} -L${BOOSTLIB} -Wl,-rpath=${BOOSTLIB} -O3 -DPLRS -DLONG -o plrs1 plrs.cpp lrslib.c lrslong.c -lboost_thread -lboost_system g++ -Wall -Wno-write-strings -Wno-sign-compare -Wno-unused-variable -I${BOOSTINC} -L${BOOSTLIB} -Wl,-rpath=${BOOSTLIB} -O3 -DPLRS -o plrsmp plrs.cpp lrslib.c lrsmp.c -lboost_thread -lboost_system allmp: lrs.c lrslib.c lrslib.h lrsmp.c lrsmp.h gcc -Wall -O3 -DTIMES -DSIGNALS -o lrs lrs.c lrslib.c lrsmp.c gcc -Wall -O3 -DTIMES -DSIGNALS -DLONG -o lrs1 lrs.c lrslib.c lrslong.c gcc -O3 -DTIMES -DSIGNALS -o redund redund.c lrslib.c lrsmp.c gcc -O3 -DTIMES -DSIGNALS -DLONG -o redund1 redund.c lrslib.c lrslong.c gcc -O3 -DLRS_QUIET -DTIMES -DSIGNALS -o nash nash.c lrslib.c lrsmp.c gcc -O3 -o setnash setupnash.c lrslib.c lrsmp.c gcc -O3 -o setnash2 setupnash2.c lrslib.c lrsmp.c gcc -O3 -o 2nash 2nash.c clean: rm -f $(BINARIES) $(LIBRARIES) plrs *.o *.exe lrslib-051/mit.ine0000700000175300010010000005040512423577213013745 0ustar avisなしmit.ine begin 729 9 integer 72 0 0 -4 -4 -2 0 0 0 216 -2 -2 -10 -12 -6 0 0 0 192 -4 -2 -8 -8 -8 0 0 0 288 -12 6 8 -16 -8 0 0 0 96 -4 2 0 -4 -4 0 0 0 144 -5 1 -4 -6 -6 0 0 0 288 -8 -2 -10 -12 -12 0 0 0 96 -4 2 -4 -2 -4 0 0 0 240 -7 -1 -10 -8 -10 0 0 0 288 -8 -2 -12 -8 -12 0 0 0 288 -8 -2 -8 -16 -8 0 0 0 96 -4 2 -8 0 0 0 0 0 0 0 6 -8 4 8 0 0 0 0 4 6 -8 0 8 0 0 0 24 2 2 -4 -2 2 0 0 0 864 -24 -6 -40 -16 -32 0 0 0 24 0 0 -2 -2 2 0 0 0 0 4 10 -16 0 24 0 0 0 0 1 1 -4 0 12 0 0 0 0 0 6 -16 8 40 0 0 0 96 -4 2 -16 16 32 0 0 0 288 -8 -2 -16 0 0 0 0 0 96 -4 2 8 -8 8 0 0 0 288 -8 -2 8 -24 24 0 0 0 0 0 2 -8 8 24 0 0 0 96 -1 -1 -4 -8 8 0 0 0 576 -12 -6 -16 -40 16 0 0 0 192 -4 -2 0 -16 16 0 0 0 576 -8 -6 -24 -32 -16 0 0 0 576 -12 -6 -20 -32 -16 0 0 0 960 -16 -10 -40 -56 -16 0 0 0 160 0 0 -7 -7 -6 -1 0 -1 480 -4 -4 -21 -21 -18 -1 0 -3 192 -4 -4 -12 -4 -8 4 2 -4 640 -16 -8 -28 -28 -24 4 2 -4 640 -8 -6 -28 -28 -24 0 0 -4 192 -8 0 -8 -8 -8 4 2 0 384 -12 -4 -16 -16 -16 4 2 0 960 -20 -12 -42 -42 -36 4 2 -6 240 -9 -1 -11 -9 -10 3 2 -1 0 2 2 4 0 0 -4 -2 0 640 -22 -4 -24 -28 -24 8 4 -4 1920 -60 -20 -76 -84 -72 20 10 -12 1920 -32 -22 -84 -84 -72 4 2 -12 960 -28 -10 -44 -36 -40 8 4 -4 1152 -36 -12 -52 -44 -48 12 6 -4 720 -23 -7 -33 -27 -30 7 4 -3 1920 -48 -24 -88 -72 -80 12 6 -8 3456 -96 -40 -160 -128 -144 28 14 -16 576 -15 -7 -26 -20 -24 4 2 -4 384 -12 -4 -20 -12 -16 4 2 0 336 -11 -3 -17 -11 -14 3 2 -1 192 -8 0 -12 -4 -8 4 2 0 0 0 0 -4 4 0 4 2 0 0 0 2 -8 8 0 8 4 -2 192 -12 12 -28 12 -8 20 10 -4 192 -12 12 -20 4 -8 12 6 -2 1920 -48 -24 -92 -60 -80 12 6 -4 576 -15 -7 -28 -18 -24 4 2 -2 1536 -42 -18 -76 -40 -64 12 6 -8 384 -12 -4 -20 4 -16 4 2 -4 1920 -60 -20 -102 18 -76 14 10 -18 1920 -60 -20 -102 -46 -76 14 10 -2 672 -22 -6 -37 -17 -26 5 4 -1 640 -22 -4 -36 -16 -24 4 4 0 960 -40 0 -64 -16 -32 8 10 0 64 -4 4 -8 0 0 0 2 0 0 0 8 -6 2 4 -2 2 0 0 8 18 -8 0 8 -8 2 0 64 36 60 -28 -4 24 -28 6 -4 192 28 36 -20 -12 8 -20 2 -4 96 4 4 -5 -5 -2 -3 0 -1 64 4 6 -4 -4 0 -4 0 0 96 0 0 -5 -5 -2 -1 0 -1 16 0 0 -1 -1 0 0 0 0 192 -6 0 -8 12 -8 0 0 -4 192 -6 0 -8 -4 -8 0 0 0 960 -30 -8 -48 -20 -40 8 4 -4 960 -32 -8 -52 -20 -40 12 6 -4 960 -32 -8 -52 44 -40 12 6 -20 960 -30 -8 -48 12 -40 8 4 -12 576 -16 -6 -28 -12 -24 4 2 -4 208 -8 0 -8 -8 -8 4 2 -2 160 -7 1 -5 -7 -6 3 2 -1 192 -12 12 0 -8 -8 8 6 0 160 -9 7 -1 -7 -6 5 4 -1 640 -20 -4 -20 -28 -24 4 2 -4 96 -5 3 -2 -4 -4 2 2 0 192 -6 0 -4 -8 -8 0 0 0 480 -18 -2 -17 -21 -18 7 4 -3 528 -19 -3 -20 -22 -20 8 4 -4 960 -30 -4 -32 -36 -40 4 2 -4 1152 -36 -4 -32 -40 -48 0 2 -8 1152 -36 -12 -48 -40 -48 8 6 -8 192 -8 0 -4 -4 -8 4 2 -4 192 -6 0 0 -4 -8 0 0 -4 384 -12 -4 -8 -8 -16 4 2 -8 1920 -48 -24 -48 -40 -80 12 6 -40 384 -16 2 -20 -12 -16 4 4 0 576 -24 0 -32 -16 -24 8 6 0 432 -17 -1 -23 -13 -18 5 4 -1 576 -28 12 -36 -12 -24 12 10 -4 960 -52 36 -92 12 -40 52 26 -12 0 0 4 -14 10 4 6 6 -2 2688 -72 -32 -120 -104 -112 16 10 -8 0 0 8 -20 12 56 -12 2 -4 64 -4 4 -16 8 24 -4 2 0 192 -8 0 -16 0 0 0 2 0 64 8 16 -20 -4 24 -12 2 -4 0 2 4 -4 0 8 -4 0 0 288 -13 3 -12 -10 -12 6 4 -2 336 -14 2 -15 -11 -14 7 4 -3 96 3 1 -8 -6 4 0 0 -2 192 12 0 -20 -12 8 4 2 -4 0 4 8 -6 2 4 -2 2 -2 192 -12 12 -28 28 -8 20 10 -12 0 0 0 -4 16 0 4 2 -6 0 0 0 -4 40 0 4 2 -12 192 -8 0 -12 44 -8 4 2 -12 0 0 2 0 32 0 0 0 -8 192 -12 12 -20 300 -8 12 6 -76 960 -40 0 -64 208 -32 8 10 -56 2112 -72 -16 -120 120 -80 16 14 -48 512 -16 -4 -26 6 -20 2 2 -6 512 -16 -4 -26 -10 -20 2 2 -2 448 -16 0 -24 -8 -16 0 2 0 448 24 8 -68 -20 56 12 6 -20 192 8 2 -24 -8 16 4 2 -8 192 16 0 -36 -4 24 12 6 -12 448 -13 -5 -23 -13 -18 3 2 -1 64 -2 0 -4 0 0 0 0 0 0 2 -2 -4 4 0 4 2 -2 0 0 0 -22 22 4 14 10 0 0 0 0 -22 82 4 14 10 -30 0 0 4 -14 34 4 6 6 -14 480 -21 3 -20 -18 -20 8 6 -2 480 -19 1 -16 -18 -20 4 4 -2 1344 -52 0 -44 -52 -56 12 10 -4 576 -22 0 -12 -24 -24 4 4 0 768 -28 -4 -24 -32 -32 8 6 0 768 -28 -4 40 -32 -32 -8 6 0 576 -22 0 20 -24 -24 -4 4 0 320 -12 0 10 -14 -12 -2 2 -2 160 -7 1 3 -7 -6 1 2 -1 0 2 2 -12 8 16 4 2 -4 0 22 14 -52 16 80 12 6 -16 192 32 16 -68 -4 88 12 6 -20 128 18 10 -36 -8 48 4 2 -8 64 8 8 -20 -4 24 -4 2 -4 0 4 2 -4 4 8 0 0 -4 0 4 8 -14 2 20 -4 2 -2 0 1 7 -11 3 14 -3 2 -1 0 0 8 -12 4 16 -4 2 0 0 4 12 -20 4 32 -8 2 0 0 0 24 -44 20 64 -16 6 0 0 0 4 -10 6 12 -2 2 -2 0 14 22 -44 8 64 -12 6 -8 0 6 10 -18 2 28 -6 2 -2 192 28 36 -52 -12 72 -36 2 -12 96 3 3 -8 -6 4 -4 0 -2 0 1 1 -2 0 4 0 0 0 0 0 12 -10 6 12 -6 2 -2 48 0 0 -3 -3 2 -1 0 -1 192 16 24 -44 -12 72 -28 2 -12 0 4 12 -14 2 20 -8 2 -2 0 1 9 -11 3 14 -5 2 -1 192 32 40 -68 -4 88 -36 6 -20 16 1 1 -3 -1 6 -1 0 -1 64 4 6 -12 -4 24 -8 0 -4 0 4 12 -20 4 40 -12 2 -4 0 0 10 -16 8 24 -8 2 0 192 -12 12 -40 16 32 -8 6 0 0 0 24 -34 14 44 -14 6 -2 64 -4 4 -16 8 16 0 2 0 0 0 8 -20 12 32 0 2 0 0 0 4 -14 10 20 2 2 -2 0 0 2 -2 2 4 -2 0 0 0 0 24 -44 20 72 -20 6 -4 0 0 24 -60 36 104 -4 6 -4 0 6 10 -16 4 24 -8 2 -4 0 1 1 -1 1 2 -1 0 -1 0 6 18 -16 4 24 -12 2 -4 384 0 -2 -20 -20 -8 0 0 -4 384 -12 -4 -12 -20 -8 4 2 -4 640 -16 -8 -20 -36 -8 4 2 -4 960 -20 -12 -32 -56 -8 4 2 -4 96 -1 -1 -4 -6 0 0 0 0 1280 -6 -14 -60 -80 0 -4 2 0 1024 -2 -10 -52 -64 0 -4 2 0 1024 -12 -12 -48 -56 -16 0 2 -8 384 8 -4 -24 -24 0 0 2 0 256 4 -4 -16 -16 0 2 2 0 1024 0 -16 -56 -56 -16 8 6 -8 960 0 -16 -52 -52 -16 12 6 -8 6400 -96 -72 -280 -280 -240 8 6 -40 960 -16 -12 -42 -42 -36 2 2 -6 3840 -48 -40 -168 -168 -144 0 2 -24 4032 -72 -48 -178 -178 -148 10 6 -26 1152 -20 -14 -52 -52 -40 4 2 -8 0 2 -2 0 0 0 2 2 0 192 -6 0 12 -8 -8 -4 0 0 192 -4 -4 -8 -8 -8 4 2 0 6912 -176 -88 -288 -288 -288 40 26 0 1920 -48 -24 -80 -80 -80 10 6 0 576 -12 -10 -24 -24 -24 6 4 0 5760 -168 -64 -264 -216 -240 48 26 -24 960 -48 24 -36 -36 -40 20 18 -4 960 -44 12 -28 -36 -40 12 14 -4 192 -12 12 4 -4 -8 4 6 -4 960 -56 48 -20 -36 -40 28 26 -4 640 -20 0 -4 -28 -24 -2 0 -4 576 -24 0 -28 -12 -24 4 6 -4 0 0 0 4 8 0 -2 0 -4 192 -6 0 -4 12 -8 -4 0 -6 960 -30 0 -32 -12 -40 -8 0 -6 960 -32 0 -36 -20 -40 -4 2 -4 640 -20 0 -28 -4 -24 -4 0 -2 0 0 20 -4 12 8 -12 0 -2 16 0 0 -1 -1 6 -1 0 -1 720 -23 -3 -25 -27 -30 3 2 -3 624 -21 -1 -27 -17 -26 1 2 -1 768 -26 0 -32 -20 -32 0 2 0 1536 -62 0 -80 -44 -64 16 14 0 1344 -42 -12 -64 -44 -56 12 6 -4 2880 -90 -28 -128 -108 -120 28 14 -12 960 -30 0 -12 -32 -40 -6 0 -8 768 -30 0 -24 -28 -32 6 6 -4 576 -24 0 -20 -20 -24 8 6 -4 576 -24 0 -15 -23 -22 9 6 -5 192 -8 0 12 -4 -8 -4 2 -4 0 0 2 -4 4 8 0 0 0 0 0 0 -8 8 8 4 2 0 192 -12 12 -76 76 88 20 10 -12 0 0 6 -28 28 40 8 4 -6 576 -15 -7 -29 -15 -22 3 2 -1 448 -13 -5 -25 -7 -14 3 2 -1 512 -14 -6 -26 -14 -20 4 2 -2 448 -13 -5 -23 -5 -18 3 2 -3 384 -6 -4 -16 -20 -8 0 0 -4 0 6 8 -16 4 40 -4 0 -4 0 8 8 -24 8 48 0 2 -8 96 -1 -1 0 -6 36 -4 0 -6 192 -4 -4 12 -12 72 -4 2 -12 0 0 0 -6 6 4 2 2 0 384 -12 -4 -22 -6 -12 2 2 0 1216 -31 -15 -59 -37 -50 7 4 -3 960 -20 -16 -42 -42 -36 10 6 -6 2304 -72 -20 -112 -64 -96 16 10 -8 1344 -42 -12 -64 -36 -56 8 6 -6 1152 -36 -12 -56 -32 -48 8 6 -4 384 -12 -4 -16 -8 -16 0 2 0 192 -6 0 -4 0 -8 -4 0 0 912 -26 -10 -43 -31 -38 5 4 -1 960 -27 -11 -46 -32 -40 6 4 -2 1344 -39 -15 -66 -44 -56 10 6 -4 4224 -120 -48 -200 -152 -176 32 18 -16 4992 -132 -60 -240 -168 -208 32 18 -16 3456 -96 -40 -168 -104 -144 24 14 -16 2688 -76 -28 -128 -72 -112 16 10 -16 960 -29 -9 -46 -28 -40 6 4 -4 0 2 -2 12 0 0 -4 2 0 960 -20 -20 134 -42 -36 -38 10 -6 1920 -60 -20 148 -84 -72 -36 10 -12 1920 -68 -12 100 -84 -72 -20 14 -12 320 -12 0 -6 -14 -12 2 2 -2 960 -40 0 -26 -42 -36 18 10 -6 576 -12 -8 -22 -30 -12 2 2 -6 576 -12 -10 -8 -24 -24 -2 4 0 2304 -56 -32 -80 -96 -96 8 10 0 960 -20 -20 -38 -42 -36 20 10 -6 192 -6 0 -4 -4 -8 -2 0 -2 0 0 0 1 1 2 -1 0 -1 192 -8 0 -4 28 -8 -4 2 -12 192 -8 0 -4 60 -8 -4 2 -20 0 0 2 -4 4 16 -4 0 0 1792 -28 -20 -80 -88 -48 0 2 -16 384 -3 -3 -18 -20 -8 -2 0 -4 8064 -204 -100 -384 -264 -336 48 26 -24 1920 -48 -24 -88 -56 -80 8 6 -8 384 -12 -4 -16 8 -16 0 2 -8 192 -12 12 -12 -4 -8 4 6 0 192 -12 12 -12 12 -8 4 6 -8 192 -12 12 4 60 -8 -12 6 -28 0 0 0 -8 8 16 0 2 0 192 -4 -2 -4 -4 -8 0 0 -4 192 -4 -4 16 -12 0 -4 2 0 768 -20 -12 40 -48 0 -8 6 0 512 -14 -6 20 -32 0 -4 2 0 64 -2 0 0 -4 0 0 0 0 1344 -60 12 -68 -44 -56 20 18 -4 2112 -92 12 -116 -60 -88 28 26 -4 960 -44 12 -52 -28 -40 12 14 0 1920 -48 -24 -72 -56 -80 8 6 -24 96 -5 3 -4 -2 -4 0 2 0 0 0 2 -8 24 0 8 4 -10 0 4 4 -16 8 112 -16 2 -8 384 -12 -4 -24 0 0 0 2 0 0 2 -2 -4 16 0 4 2 -8 64 -4 4 -20 20 24 4 2 -2 128 -6 2 -20 16 16 4 2 -2 192 -8 0 -20 12 8 4 2 0 96 -4 0 -14 10 8 4 2 -2 448 -20 4 -76 60 56 20 10 -12 192 -4 -2 -4 -12 8 0 0 -4 384 -12 -4 0 -24 16 4 2 -8 192 -8 0 4 -12 8 4 2 -4 192 12 20 -20 -12 8 -12 2 -4 192 12 4 -20 -12 8 -4 2 -4 192 76 20 -84 -12 72 -4 18 -12 64 20 12 -28 -4 24 -4 6 -4 64 20 44 -28 -4 24 -20 6 -4 0 12 36 -22 2 20 -14 6 -2 0 4 10 -8 0 8 -4 2 0 0 4 6 -8 0 8 -2 2 0 0 4 0 -6 2 4 2 2 -2 0 0 4 -6 2 4 0 2 0 192 4 2 -12 -12 0 -4 0 0 0 8 8 -16 0 24 -4 2 0 64 20 4 -28 -4 24 4 6 -4 0 20 4 -24 0 24 4 6 0 0 8 0 -8 0 8 4 2 0 0 5 -1 -6 2 4 4 2 -2 64 24 0 -28 -4 24 12 6 -4 96 46 -10 -42 -6 36 18 14 -6 32 18 -6 -14 -2 12 10 6 -2 192 112 -40 -84 -12 72 76 38 -12 0 6 -2 -4 0 4 4 2 0 0 0 0 0 16 0 0 2 -8 192 -12 12 4 28 -8 4 6 -20 960 -40 0 38 -42 -36 2 10 -6 960 -40 8 -20 -36 -40 4 10 -4 192 -8 2 0 -8 -8 0 2 0 384 -18 6 -4 -16 -16 4 6 0 192 -8 0 8 -8 -8 0 2 0 320 -20 20 10 -14 -12 14 10 -2 576 -8 -6 -20 -36 24 -4 0 -12 96 -1 -1 -4 -6 4 0 0 -2 192 16 -8 -20 -12 8 12 6 -4 960 12 -20 -60 -52 -8 20 10 -12 576 -12 -8 -26 -26 -20 4 2 -4 1920 -48 -24 -68 -100 -40 12 6 -20 640 -16 -8 -32 -16 -24 4 2 0 384 -12 -4 -24 0 -8 4 2 0 192 -8 0 -36 44 24 12 6 -12 192 -8 0 -36 76 24 12 6 -20 128 -6 2 -20 40 16 4 2 -8 64 -4 4 -20 60 24 4 2 -12 0 0 2 -4 20 8 0 0 -4 624 -21 -5 -34 -16 -24 4 4 0 400 -12 -4 -20 -12 -16 2 2 0 192 1 -1 -10 -12 0 -2 0 0 640 -16 -8 -8 -40 48 0 2 -16 1920 -48 -24 -24 -120 80 8 6 -40 96 8 8 -22 -6 36 -10 2 -6 0 8 8 -16 0 32 -8 2 0 2112 -72 -16 -120 -40 -80 16 14 -8 3456 -100 -36 -160 -120 -144 24 14 -16 1152 -36 -12 -59 -27 -46 7 6 -3 1920 -48 -24 -96 -32 -64 8 6 0 640 -16 -8 -32 0 0 0 2 0 240 -2 -2 -11 -15 10 -3 0 -5 960 -20 -12 -32 -56 16 0 2 -16 1920 -48 -24 216 -80 -80 -64 6 0 384 -12 -4 32 -16 -16 -8 2 0 320 -10 0 18 -14 -12 -6 0 -2 192 -6 0 20 -4 -8 -8 0 -4 320 -10 0 -14 18 -12 -2 0 -6 32 -1 1 -4 6 20 -4 0 -2 192 -8 0 -16 32 0 0 2 -8 192 -8 0 -20 28 8 4 2 -4 0 0 0 -8 28 8 4 2 -8 0 0 0 -6 34 4 2 2 -10 384 -12 -4 -22 2 -12 2 2 -2 192 -12 12 28 -12 8 12 6 -4 576 -24 0 -8 -24 -16 8 6 -8 192 -8 0 -2 -10 -4 4 2 -2 768 0 -8 -40 -40 -16 0 2 -8 3840 0 -56 -200 -200 -80 24 18 -40 384 0 -6 -20 -20 -8 4 2 -4 768 -12 -10 -36 -36 -24 4 2 -6 192 -8 0 -20 28 88 -12 2 -4 64 -4 4 -20 52 200 -28 2 -12 0 0 8 -24 72 336 -48 2 -24 0 1 1 -2 4 40 -6 0 -4 0 0 2 -4 12 48 -8 0 -4 1792 -4 -20 -88 -112 0 -8 6 0 768 4 -12 -40 -48 0 0 6 0 192 0 -4 -10 -10 -4 2 2 -2 96 -5 3 1 -5 -2 3 2 -1 96 6 -2 -10 -6 4 2 2 -2 528 9 -11 -35 -29 -2 9 6 -7 480 38 -18 -50 -30 20 22 14 -10 640 12 -12 -40 -40 0 8 6 0 48 -3 3 -14 8 24 -4 2 0 384 2 -6 -20 -24 144 4 2 -24 192 -4 -2 -6 -10 -4 0 0 -2 1344 -24 -16 -56 -72 -16 0 2 -16 2880 -60 -36 -112 -152 -56 12 6 -28 1344 -24 -16 -56 -72 -24 4 2 -12 384 -6 -6 -12 -24 0 0 2 0 64 -4 4 4 -4 0 4 2 0 384 -12 -4 48 -8 -16 -16 2 -8 192 -6 0 12 -4 -8 -6 0 -4 576 -18 0 -23 -3 -22 -5 0 -3 0 0 0 -22 194 4 14 10 -58 64 -4 4 -8 96 0 0 2 -24 0 0 10 -2 154 4 -6 0 -38 384 -12 -4 16 -24 80 0 2 -16 64 -2 0 8 -4 24 0 0 -4 384 -12 -4 48 -24 144 0 2 -24 192 -8 0 4 -12 0 4 2 0 384 -12 -4 16 -24 16 0 2 -8 0 0 6 1 9 2 -5 0 -3 0 0 2 4 16 0 -4 0 -6 1344 -56 8 -60 -44 -56 12 14 -4 192 -4 -2 32 -4 -8 -12 0 -4 1920 -48 -24 296 -40 -80 -104 6 -40 192 -4 -2 24 -8 -8 -8 0 0 960 -20 -10 114 -42 -36 -38 0 -6 640 -16 -8 68 -28 -24 -20 2 -4 0 10 2 -12 0 160 -20 2 0 0 3 -1 -6 4 40 -2 2 -4 0 8 -8 -24 24 80 8 10 -8 0 116 -36 -80 0 80 64 38 0 0 136 -56 -120 40 80 104 58 -40 0 14 -6 -12 4 8 12 6 -4 0 10 -6 -12 8 16 12 6 -8 192 8 -8 -20 -4 88 12 6 -20 960 0 -16 -52 -52 248 12 6 -52 0 0 2 -4 20 80 -12 0 -4 64 -2 0 -4 8 24 -4 0 0 1920 -40 -20 -68 -84 -72 -2 0 -12 576 -12 -6 -19 -23 -22 -1 0 -5 1920 -48 -24 -72 -72 -80 4 6 -8 192 -4 -4 4 -4 -8 -4 2 -4 1920 -68 -12 -60 -84 -72 20 14 -12 0 1 1 -2 4 24 -4 0 -4 0 0 2 -4 12 32 -6 0 -4 64 -4 4 -20 52 72 -12 2 -12 192 -8 0 -20 28 24 -4 2 -4 448 -16 0 -36 28 56 -12 2 -4 288 -8 -4 -2 -18 12 2 2 -6 192 -4 -4 12 -12 8 -4 2 -4 192 -12 12 14 -10 -4 10 6 -2 192 -8 0 36 -12 72 4 2 -12 1344 -24 -16 -36 -84 120 -12 2 -36 960 -20 -12 -20 -60 72 -4 2 -24 640 -16 -8 -20 -36 0 4 2 -8 576 -12 -8 -18 -34 -4 2 2 -2 192 -4 -4 -4 -12 0 4 2 0 192 -4 -4 -6 -10 -4 4 2 -2 192 -4 -4 36 -4 -8 -12 2 -4 192 -4 -4 28 -8 -8 -8 2 0 192 -4 -4 4 -8 -8 -2 2 0 960 -20 -20 22 -42 -36 -10 10 -6 384 -12 -4 16 -8 -16 -8 2 -8 576 -12 -6 0 -16 -24 -10 0 -8 1920 -48 -24 -24 -56 -80 -16 6 -24 1920 -48 -24 72 -40 -80 -48 6 -40 192 -4 -2 8 -4 -8 -6 0 -4 576 -12 -6 -15 -23 -22 -3 0 -5 0 0 0 -8 24 80 -8 2 -8 64 -4 4 -20 20 72 -12 2 -4 192 -8 0 -20 12 24 -4 2 0 192 -6 0 -12 8 8 -4 0 0 0 0 0 -8 24 16 0 2 -8 0 0 2 -4 20 16 -4 0 -4 0 0 2 -4 12 24 -4 0 -4 96 -4 0 -14 10 20 -2 2 -2 64 -4 4 -20 52 40 -4 2 -12 192 -12 12 -60 188 152 -28 6 -36 192 -4 -2 -4 -12 0 0 0 0 0 16 24 -52 12 120 -12 2 -12 0 0 14 -18 6 20 -6 4 0 576 -8 -8 -20 -36 24 -4 2 -12 640 -16 -8 24 -40 48 -8 2 -16 192 -6 0 8 -12 8 0 0 -4 640 -20 -4 16 -40 48 0 2 -16 960 -20 -12 -4 -60 168 -12 2 -36 640 -16 -8 24 -40 176 -8 2 -32 640 -16 -8 56 -40 240 -8 2 -40 960 -20 -12 28 -60 296 -20 2 -52 192 -4 -2 12 -12 72 -4 0 -12 1920 -48 -24 156 -100 -40 -44 6 -20 384 -12 -4 20 -20 -8 -4 2 -4 192 -8 0 6 -10 -4 2 2 -2 0 0 0 8 4 0 -4 0 -2 192 -12 12 4 12 -8 -12 6 -4 192 -8 0 -4 4 -8 -4 2 0 192 -6 0 -4 20 -8 -4 0 -8 0 3 11 -9 1 10 -5 2 -1 576 -12 -6 -16 -16 -24 -2 0 -8 1920 -48 -24 -48 -112 32 8 6 -32 640 -16 -8 -8 -40 16 0 2 -8 1152 -12 -12 -52 -60 -24 -4 2 -12 2880 -60 -36 -112 -152 -48 8 6 -32 0 8 16 -36 12 120 -28 2 -12 0 2 4 -8 4 40 -8 0 -4 0 0 4 -16 16 48 -8 2 -4 0 4 4 -16 8 48 -8 2 -8 128 -6 2 -2 -6 -4 2 2 0 160 -7 1 1 -9 -2 3 2 -1 288 -8 -4 -2 -18 0 2 2 0 768 -20 -12 8 -48 0 0 6 0 0 8 0 0 0 96 -16 2 0 192 4 -4 12 -12 72 -20 2 -12 0 6 -2 12 0 48 -12 2 0 0 12 -4 -8 0 96 -8 6 0 192 16 -16 -12 -12 72 4 14 -12 0 14 -10 -4 0 48 4 10 0 640 -16 -8 32 -40 0 -8 2 0 1920 -48 -24 104 -120 80 -24 6 -40 1920 -48 -24 116 -108 8 -36 6 -28 640 -16 -8 24 -40 16 -8 2 -8 192 -4 -2 12 -12 8 -4 0 -4 192 -4 -2 13 -11 2 -5 0 -3 576 -12 -6 28 -36 16 -12 0 -8 192 -4 -2 12 -12 0 -4 0 0 192 -4 -2 18 -10 -4 -6 0 -2 384 -12 -4 16 -24 0 0 2 0 384 -12 -4 0 -24 0 4 2 0 1920 -48 -24 -56 -56 -80 -8 6 -8 0 20 4 -24 0 288 -40 6 0 0 2 0 4 0 8 -4 0 0 0 10 -6 -4 0 16 4 6 0 0 14 -6 -8 0 8 8 6 0 0 20 -4 -16 0 16 8 6 0 0 8 2 -8 0 8 0 2 0 0 32 0 -32 0 32 8 10 0 48 19 -1 -21 -3 18 5 6 -3 1152 -18 -14 -50 -62 -20 2 2 -10 0 2 -2 -2 2 4 2 2 -2 192 -4 -2 4 -12 40 -4 0 -8 192 -4 -2 4 -12 24 -4 0 -6 128 -3 -1 2 -8 16 -2 0 -4 64 -4 4 -20 20 40 -4 2 -4 192 -12 12 -52 36 104 -20 6 -4 0 0 6 -12 20 40 -8 0 -4 384 -12 -4 -24 32 64 -8 2 0 0 0 0 -6 18 4 2 2 -6 0 0 0 -8 20 8 4 2 -6 0 0 8 -24 40 208 -32 2 -16 0 0 8 -24 40 144 -24 2 -16 0 0 8 -24 40 112 -16 2 -16 192 -8 0 -20 60 152 -20 2 -4 64 -4 4 -20 84 264 -36 2 -12 960 -16 -12 -26 -42 -36 -6 2 -6 960 -20 -12 -34 -42 -36 0 2 -6 960 -20 -16 -18 -42 -36 -2 6 -6 576 -8 -8 -20 -36 88 -4 2 -20 192 132 -60 -84 -12 72 76 58 -12 192 20 -12 -20 -12 8 12 10 -4 96 3 -3 -6 -6 0 2 2 0 768 16 -16 -48 -48 0 8 10 0 96 -1 -1 0 -6 20 -4 0 -4 0 3 5 -10 8 72 -14 0 -8 0 4 12 -32 24 176 -32 2 -16 192 -12 12 -60 60 152 -28 6 -4 192 -12 12 -76 76 184 -28 10 -12 0 0 0 0 48 0 0 2 -16 576 -12 -8 -12 -36 24 0 2 -12 192 -4 -4 -4 -12 8 4 2 -4 0 0 12 -32 32 96 -16 2 -8 0 24 -8 -24 8 16 16 10 -8 0 52 -28 -64 40 80 48 30 -40 192 -12 12 20 156 -8 -28 6 -60 192 -12 12 20 380 -8 -28 6 -116 0 0 2 4 40 0 -4 0 -12 0 0 6 8 24 0 -8 0 -10 0 0 8 -36 28 152 -20 6 -4 32 -2 2 -12 8 32 -4 2 0 0 0 2 4 4 0 -4 0 0 0 0 6 8 8 0 -8 0 -2 0 0 6 1 5 2 -5 0 -1 1024 -16 -12 -48 -48 -32 4 2 -8 1248 -23 -15 -55 -57 -42 3 2 -9 1344 -24 -16 -58 -66 -36 2 2 -12 1056 -21 -13 -45 -51 -30 3 2 -9 960 -20 -12 -40 -48 -24 4 2 -8 0 0 8 -24 24 112 -20 2 -8 0 4 12 -32 24 144 -24 2 -16 0 0 8 -24 24 80 -12 2 -8 0 8 0 -8 24 80 -8 2 -24 0 6 -2 -4 16 48 4 2 -16 0 14 -10 -20 16 48 20 10 -16 0 20 -12 -32 24 80 16 14 -24 0 14 -2 -20 8 16 12 6 -8 0 12 -4 -16 8 16 8 6 -8 0 2 0 0 4 8 0 0 -4 192 4 -4 -12 -4 88 4 2 -20 96 1 -3 -4 -6 36 0 2 -6 192 4 -12 -4 -12 72 12 10 -12 192 -4 -4 22 -10 -4 -6 2 -2 1344 -28 -16 -54 -62 -44 2 2 -10 2688 -36 -28 -120 -144 -32 -8 2 -32 640 -8 -6 -28 -36 0 -4 0 -8 112 -1 -1 -5 -7 2 -1 0 -1 48 2 2 -7 -3 18 -5 0 -3 0 1 1 -2 0 8 -2 0 0 0 12 20 -48 24 240 -48 2 -24 4864 -80 -56 -216 -216 -176 8 6 -32 2304 -32 -24 -104 -104 -80 0 2 -16 1152 -24 -14 -44 -60 -24 4 2 -12 384 -6 -4 -12 -24 24 -4 0 -8 1728 -28 -20 -64 -104 48 -8 2 -32 1344 -24 -16 -36 -84 88 -12 2 -28 192 8 -8 -12 -12 8 4 6 -4 192 48 -32 -28 -12 72 20 30 -12 1920 -48 -24 -44 -108 8 4 6 -28 960 -20 -12 -20 -60 40 -4 2 -16 1344 -28 -16 -28 -84 40 -4 2 -20 768 -14 -8 -20 -48 24 -4 0 -12 2112 -32 -24 -68 -132 152 -20 2 -52 192 -4 -2 -3 -11 2 -1 0 -3 576 -12 -6 -4 -36 16 -4 0 -8 192 -4 -2 4 -12 16 -4 0 -4 1728 -36 -18 -59 -75 -62 -3 0 -13 192 4 -4 -12 -12 0 4 2 0 96 -1 -1 -3 -5 -2 -1 0 -1 192 0 -2 -4 -12 0 -4 0 0 2496 -36 -28 -96 -152 16 -8 2 -16 960 -12 -12 -36 -60 8 -4 2 -4 1920 -18 -26 -76 -120 0 -4 6 0 2688 -42 -34 -116 -144 -48 4 6 -24 864 -17 -11 -37 -43 -22 3 2 -7 2880 -60 -36 -118 -142 -76 10 6 -26 192 -6 0 -10 10 -4 -2 0 -2 192 -6 0 -10 2 -4 -2 0 0 0 0 2 -2 26 4 -2 0 -6 192 -12 12 -40 240 32 -8 6 -56 480 -7 -5 -12 -30 52 -8 0 -14 0 0 4 -16 16 80 -12 2 -4 0 4 6 -12 4 48 -12 0 -4 1152 -36 -12 -60 -20 -40 4 6 -4 0 2 8 -16 12 56 -12 0 -4 0 10 16 -32 12 120 -28 0 -12 96 9 -1 16 -6 36 -20 0 -6 96 1 -1 0 -6 4 -4 0 -2 416 -10 -6 -12 -24 16 4 2 -8 192 -4 -4 6 -10 -4 -2 2 -2 192 -4 -4 8 -12 0 -2 2 0 0 4 -2 -3 1 2 3 2 -1 960 -12 -12 -44 -52 -16 4 2 -8 576 -8 -8 -28 -28 -16 4 2 -4 0 3 5 -9 1 10 -1 2 -1 0 3 7 -9 1 10 -3 2 -1 1792 -16 -24 -88 -88 -48 8 6 -16 864 -15 -11 -39 -41 -26 3 2 -7 672 -11 -9 -31 -33 -18 3 2 -5 960 -16 -12 -42 -50 -20 2 2 -8 3200 -80 -40 -154 -90 -132 18 10 -6 1920 -48 -24 -94 -46 -76 10 6 -2 1056 -12 -12 -50 -58 -4 -2 2 -14 960 -12 -12 -44 -52 -8 4 2 -12 0 0 6 -20 20 56 -8 2 -6 192 8 8 -24 -8 16 -8 2 -8 0 3 1 -2 4 8 -2 0 -4 0 11 1 -2 20 40 -6 0 -20 0 0 18 -3 13 10 -13 0 -3 400 -6 -4 -16 -20 -8 -2 0 -4 3648 -64 -40 -144 -176 -96 -8 2 -32 624 -8 -6 -26 -34 -4 -4 0 -8 576 0 -6 -28 -36 0 -4 2 0 4608 -60 -52 -200 -240 -96 -8 6 -48 1152 -18 -14 -48 -60 -24 0 2 -12 1920 -34 -22 -80 -92 -56 0 2 -16 1728 -36 -22 -74 -82 -52 8 4 -14 1344 -28 -20 -40 -80 96 8 6 -32 576 -12 -8 -12 -36 56 0 2 -16 528 -13 -7 -16 -30 4 4 2 -8 192 -12 12 -48 40 80 -16 6 -8 192 -12 12 -48 200 80 -16 6 -48 0 0 6 -12 52 40 -8 0 -12 0 0 2 -3 21 10 -3 0 -5 256 -8 0 -12 12 -8 -2 0 -4 192 -6 0 -7 13 -6 -3 0 -5 512 -16 0 -24 0 -16 -4 0 -2 512 -14 -6 -4 -32 0 2 2 0 640 -16 -8 -8 -40 0 2 2 0 960 -20 -14 -20 -60 0 2 4 0 960 -20 -12 -4 -60 72 -12 2 -20 960 -20 -12 -4 -60 104 -12 2 -28 192 -12 12 20 36 -8 -28 6 0 0 0 2 -3 5 10 -3 0 -1 192 28 -4 -44 -4 24 20 10 -12 64 8 0 -12 -4 8 4 2 -2 256 14 6 -36 -16 32 4 2 -8 48 4 6 -10 -2 20 -8 0 -4 16 2 4 -4 0 8 -4 0 -2 0 12 36 -28 12 56 -28 2 -12 0 4 4 -8 0 8 0 2 0 64 4 8 -12 -4 8 -4 2 0 448 12 12 -36 -28 8 -12 2 -4 768 -10 -8 -28 -48 8 -4 0 -4 1536 -22 -16 -52 -96 56 -12 0 -28 1792 -16 -16 -88 -88 -48 0 2 -16 384 6 -10 -20 -24 0 4 6 0 2304 -12 -28 -104 -144 0 -8 6 0 3840 -48 -40 -168 -200 -80 -8 2 -40 0 0 8 -6 10 4 -2 2 -4 0 4 8 -6 18 4 -2 2 -10 768 -16 -10 -16 -48 24 -2 2 -12 2304 -56 -32 -32 -144 96 8 10 -48 1792 -48 -24 -16 -112 0 8 10 0 2304 -56 -32 -32 -144 0 8 10 0 192 -6 0 -7 5 -6 -3 0 -3 448 -14 0 -19 1 -14 -5 0 -3 576 -18 0 -24 4 -16 -8 0 -4 2880 -60 -36 -96 -168 -16 8 6 -16 192 -6 0 10 -10 -4 -2 0 -2 256 -8 0 12 -12 -8 -4 0 -2 512 -16 0 0 -24 -16 -2 0 -4 192 -6 0 2 -10 -4 0 0 -2 576 -18 0 4 -24 -16 -4 0 -8 448 -14 0 1 -19 -14 -3 0 -5 576 -18 0 -3 -23 -22 -3 0 -5 192 -6 0 5 -7 -6 -3 0 -3 192 -6 0 13 -7 -6 -5 0 -3 64 -4 4 20 -4 24 4 2 -4 2304 -56 -32 -96 -96 -96 16 10 0 768 -30 0 -32 -28 -32 8 6 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 end lrslib-051/mit31-20.ine0000700000175300010010000000266412423577213014334 0ustar avisなしmit31-20.ine begin 31 20 integer 1 -6 12 3 0 0 0 -12 -8 0 0 12 3 0 0 0 -6 0 1 0 1 2 -1 2 -2 0 -4 4 -4 -2 0 2 0 1 -2 2 0 0 0 1 1 0 -3 0 0 2 0 0 -2 0 4 0 0 -1 0 -2 0 2 0 -1 1 0 1 -2 -2 0 0 0 0 2 0 2 0 1 -2 0 0 0 0 -1 1 0 -3 2 -2 0 0 0 0 2 0 -2 0 1 2 0 0 0 0 -1 1 -2 -1 0 0 2 0 0 2 0 0 0 0 -1 0 0 0 -2 0 1 1 -2 -5 2 2 -4 4 4 0 2 -8 2 0 1 2 2 0 -4 0 1 1 -2 3 -2 -2 0 4 4 -4 -2 0 -2 0 1 2 -2 0 0 0 1 1 -2 -1 2 -2 0 4 -4 4 -2 0 2 0 1 -2 -2 0 0 0 1 1 -4 1 2 2 -4 0 0 4 -2 0 -2 0 1 -2 0 0 4 0 -1 1 -4 5 0 0 2 0 0 -2 0 -4 0 0 -1 0 2 0 2 0 -1 1 -6 11 2 2 -4 -4 -4 -8 2 8 2 0 1 2 -2 0 -4 0 1 1 6 12 3 0 0 0 12 8 0 0 12 3 0 0 0 6 0 1 0 1 4 4 1 0 0 0 0 0 0 0 -4 -1 0 0 0 -4 0 -1 0 1 2 0 -1 0 0 0 -4 0 0 0 0 -1 0 0 0 2 0 1 0 1 2 -4 3 0 0 0 4 -8 0 0 -4 3 0 0 0 2 0 1 0 1 0 -4 1 0 0 0 0 0 0 0 4 -1 0 0 0 0 0 -1 0 1 0 0 -3 0 0 0 0 0 0 0 0 3 0 0 0 0 0 -1 0 1 -2 -4 3 0 0 0 -4 8 0 0 -4 3 0 0 0 -2 0 1 0 1 -2 0 -1 0 0 0 4 0 0 0 0 -1 0 0 0 -2 0 1 0 1 -4 4 1 0 0 0 0 0 0 0 -4 -1 0 0 0 4 0 -1 0 1 6 11 2 2 4 4 4 8 2 8 2 0 1 2 2 0 4 0 1 1 4 5 0 0 -2 0 0 2 0 -4 0 0 -1 0 -2 0 -2 0 -1 1 4 1 2 2 4 0 0 -4 -2 0 -2 0 1 -2 0 0 -4 0 -1 1 2 3 -2 -2 0 -4 -4 4 -2 0 -2 0 1 2 2 0 0 0 1 1 2 -1 0 0 -2 0 0 -2 0 0 0 0 -1 0 0 0 2 0 1 1 2 -1 -2 2 0 4 -4 -4 2 0 -2 0 1 -2 2 0 0 0 1 1 2 -5 2 2 4 -4 -4 0 2 -8 2 0 1 2 -2 0 4 0 1 1 0 -3 -2 2 0 0 0 0 -2 0 2 0 1 2 0 0 0 0 -1 1 0 -3 0 0 -2 0 0 2 0 4 0 0 -1 0 2 0 -2 0 -1 1 -2 -1 -2 2 0 -4 4 4 2 0 -2 0 1 -2 -2 0 0 0 1 end lrslib-051/mp5.ext0000600000175300010010000000266212437767317013716 0ustar avisなしmp5.ine V-representation begin 32 11 rational 1 1 1 1 1 0 0 0 0 0 0 1 0 0 1 1 0 1 1 1 1 0 1 2/3 2/3 2/3 2/3 2/3 2/3 2/3 2/3 2/3 2/3 1 1 0 1 1 1 0 0 1 1 0 1 0 1 1 1 1 1 1 0 0 0 1 2/3 2/3 1/3 1/3 2/3 1/3 1/3 1/3 1/3 2/3 1 0 1 0 1 1 0 1 1 0 1 1 1 1 0 1 0 1 0 1 0 1 1 1/3 2/3 2/3 2/3 1/3 1/3 1/3 2/3 2/3 2/3 1 0 1 1 0 1 1 0 0 1 1 1 1 1 1 0 0 0 1 0 1 1 1 1/3 1/3 2/3 2/3 2/3 1/3 1/3 1/3 1/3 2/3 1 0 0 0 1 0 0 1 0 1 1 1 1 0 0 1 1 1 0 0 1 1 1 2/3 1/3 2/3 2/3 1/3 2/3 2/3 1/3 1/3 2/3 1 1/3 2/3 1/3 1/3 1/3 2/3 2/3 1/3 1/3 2/3 1 2/3 1/3 1/3 1/3 1/3 1/3 1/3 2/3 2/3 2/3 1 0 0 1 0 0 1 0 1 0 1 1 2/3 2/3 2/3 1/3 2/3 2/3 1/3 2/3 1/3 1/3 1 1 0 1 0 1 0 1 1 0 1 1 2/3 1/3 1/3 2/3 1/3 1/3 2/3 2/3 1/3 1/3 1 1/3 1/3 1/3 2/3 2/3 2/3 1/3 2/3 1/3 1/3 1 1/3 1/3 1/3 1/3 2/3 2/3 2/3 2/3 2/3 2/3 1 0 1 0 0 1 0 0 1 1 0 1 2/3 1/3 2/3 1/3 1/3 2/3 1/3 1/3 2/3 1/3 1 1/3 2/3 1/3 2/3 1/3 2/3 1/3 1/3 2/3 1/3 1 1/3 1/3 2/3 1/3 2/3 1/3 2/3 1/3 2/3 1/3 1 1 1 0 0 0 1 1 1 1 0 1 1/3 2/3 2/3 1/3 1/3 1/3 2/3 2/3 1/3 1/3 1 1 0 0 0 1 1 1 0 0 0 1 2/3 2/3 1/3 2/3 2/3 1/3 2/3 1/3 2/3 1/3 1 0 0 0 0 0 0 0 0 0 0 end lrslib-051/mp5.ine0000700000175300010010000000204112457656255013661 0ustar avisなしmp5.ine *metric polytope on 5 points H-representation begin 40 11 integer 2 -1 -1 0 0 -1 0 0 0 0 0 0 1 1 0 0 -1 0 0 0 0 0 0 -1 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 -1 0 0 0 0 0 -1 0 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 -1 0 0 0 0 0 -1 1 0 0 0 0 1 0 0 0 0 1 -1 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 -1 0 0 0 0 -1 0 1 0 0 0 0 1 0 0 0 1 0 -1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 -1 0 0 0 0 1 1 0 0 0 0 0 -1 0 0 0 1 -1 0 0 0 0 0 1 0 0 0 -1 1 0 0 0 0 0 1 2 0 0 0 0 -1 -1 0 -1 0 0 0 0 0 0 0 1 1 0 -1 0 0 0 0 0 0 0 -1 1 0 1 0 0 0 0 0 0 0 1 -1 0 1 0 0 2 0 0 0 0 -1 0 -1 0 -1 0 0 0 0 0 0 1 0 1 0 -1 0 0 0 0 0 0 -1 0 1 0 1 0 0 0 0 0 0 1 0 -1 0 1 0 2 0 0 0 0 0 -1 -1 0 0 -1 0 0 0 0 0 0 -1 1 0 0 1 0 0 0 0 0 0 1 -1 0 0 1 0 0 0 0 0 0 1 1 0 0 -1 2 0 0 0 0 0 0 0 -1 -1 -1 0 0 0 0 0 0 0 0 1 -1 1 0 0 0 0 0 0 0 0 -1 1 1 0 0 0 0 0 0 0 0 1 1 -1 0 -1 1 0 0 1 0 0 0 0 0 0 1 -1 0 0 1 0 0 0 0 0 2 -1 0 -1 0 0 -1 0 0 0 0 0 1 0 -1 0 0 1 0 0 0 0 2 -1 0 0 -1 0 0 -1 0 0 0 0 1 0 0 -1 0 0 1 0 0 0 2 0 -1 -1 0 0 0 0 -1 0 0 2 0 -1 0 -1 0 0 0 0 -1 0 2 0 0 -1 -1 0 0 0 0 0 -1 end lrslib-051/nash.c0000700000175300010010000006631412423577213013562 0ustar avisなし/*******************************************************/ /* nash is driver for computing all nash equilibria */ /* for two person games given by payoff matrices A,B */ /* Usage: nash game1 game2 [gameout] */ /* (use setupnash.c to create game1 game2 from A,B */ /* Options available to limit the search based on */ /* objective function value (see USERGUIDE.html */ /* June 1, 2005 */ /*******************************************************/ #include #include #include "lrslib.h" long nash2_main (int argc, char *argv[], lrs_dic *P1, lrs_dat *Q1, lrs_dic *P2orig, lrs_dat *Q2, long *numequilib, lrs_mp_vector output); /* lrs driver, argv[2]= 2nd input file for nash equilibria */ long lrs_getfirstbasis2 (lrs_dic ** D_p, lrs_dat * Q, lrs_dic *P2orig, lrs_mp_matrix * Lin, long no_output); long getabasis2 (lrs_dic * P, lrs_dat * Q, lrs_dic * P2orig, long order[]); long lrs_nashoutput (lrs_dat * Q, lrs_mp_vector output, long player); /* returns TRUE and prints output if not the origin */ int main (int argc, char *argv[]) { lrs_dic *P1,*P2; /* structure for holding current dictionary and indices */ lrs_dat *Q1,*Q2; /* structure for holding static problem data */ lrs_mp_vector output1; /* holds one line of output; ray,vertex,facet,linearity */ lrs_mp_vector output2; /* holds one line of output; ray,vertex,facet,linearity */ lrs_mp_matrix Lin; /* holds input linearities if any are found */ lrs_dic *P2orig; /* we will save player 2's dictionary in getabasis */ long col; /* output column index for dictionary */ long startcol = 0; long prune = FALSE; /* if TRUE, getnextbasis will prune tree and backtrack */ long numequilib=0; /* number of nash equilibria found */ long oldnum=0; /* global variables lrs_ifp and lrs_ofp are file pointers for input and output */ /* they default to stdin and stdout, but may be overidden by command line parms. */ if(argc <= 2 ) { printf("Usage: nash input1 input2 [outputfile] \n"); return 1; } /*************************************************** Step 0: Do some global initialization that should only be done once, no matter how many lrs_dat records are allocated. db ***************************************************/ if ( !lrs_init ("\n*nash:")) return 1; printf("\n"); printf(AUTHOR); /*********************************************************************************/ /* Step 1: Allocate lrs_dat, lrs_dic and set up the problem */ /*********************************************************************************/ Q1 = lrs_alloc_dat ("LRS globals"); /* allocate and init structure for static problem data */ if (Q1 == NULL) return 1; Q1->nash=TRUE; if (!lrs_read_dat (Q1, argc, argv)) /* read first part of problem data to get dimensions */ return 1; /* and problem type: H- or V- input representation */ P1 = lrs_alloc_dic (Q1); /* allocate and initialize lrs_dic */ if (P1 == NULL) return 1; if (!lrs_read_dic (P1, Q1)) /* read remainder of input to setup P1 and Q1 */ return 1; output1 = lrs_alloc_mp_vector (Q1->n + Q1->m); /* output holds one line of output from dictionary */ fclose(lrs_ifp); /* allocate and init structure for player 2's problem data */ printf ("\n*Second input taken from file %s\n", argv[2]); Q2 = lrs_alloc_dat ("LRS globals"); if (Q2 == NULL) return 1; Q2->nash=TRUE; if (!lrs_read_dat (Q2, 2, argv)) /* read first part of problem data to get dimensions */ return 1; /* and problem type: H- or V- input representation */ if (Q2->nlinearity > 0) free(Q2->linearity); /* we will start again */ Q2->linearity = CALLOC ((Q2->m + 2), sizeof (long)); P2 = lrs_alloc_dic (Q2); /* allocate and initialize lrs_dic */ if (P2 == NULL) return 1; if (!lrs_read_dic (P2, Q2)) /* read remainder of input to setup P2 and Q2 */ return 1; output2 = lrs_alloc_mp_vector (Q1->n + Q1->m); /* output holds one line of output from dictionary */ P2orig = lrs_getdic(Q2); /* allocate and initialize lrs_dic */ if (P2orig == NULL) return 1; copy_dict(Q2,P2orig,P2); fprintf (lrs_ofp, "\n***** %ld %ld rational", Q1->n, Q2->n); /*********************************************************************************/ /* Step 2: Find a starting cobasis from default of specified order */ /* P1 is created to hold active dictionary data and may be cached */ /* Lin is created if necessary to hold linearity space */ /* Print linearity space if any, and retrieve output from first dict. */ /*********************************************************************************/ if (!lrs_getfirstbasis (&P1, Q1, &Lin, TRUE)) return 1; if (Q1->dualdeg) { printf("\n*Warning! Dual degenerate, ouput may be incomplete"); printf("\n*Recommendation: Add dualperturb option before maximize in first input file\n"); } if (Q1->unbounded) { printf("\n*Warning! Unbounded starting dictionary for p1, output may be incomplete"); printf("\n*Recommendation: Change/remove maximize option, or include bounds \n"); } /* Pivot to a starting dictionary */ /* There may have been column redundancy */ /* If so the linearity space is obtained and redundant */ /* columns are removed. User can access linearity space */ /* from lrs_mp_matrix Lin dimensions nredundcol x d+1 */ if (Q1->homogeneous && Q1->hull) startcol++; /* col zero not treated as redundant */ for (col = startcol; col < Q1->nredundcol; col++) /* print linearity space */ lrs_printoutput (Q1, Lin[col]); /* Array Lin[][] holds the coeffs. */ /*********************************************************************************/ /* Step 3: Terminate if lponly option set, otherwise initiate a reverse */ /* search from the starting dictionary. Get output for each new dict. */ /*********************************************************************************/ /* We initiate reverse search from this dictionary */ /* getting new dictionaries until the search is complete */ /* User can access each output line from output which is */ /* vertex/ray/facet from the lrs_mp_vector output */ /* prune is TRUE if tree should be pruned at current node */ do { prune=lrs_checkbound(P1,Q1); if (!prune && lrs_getsolution (P1, Q1, output1, col)) { oldnum=numequilib; nash2_main(argc,argv,P1,Q1,P2orig,Q2,&numequilib,output2); if (numequilib > oldnum || Q1->verbose) { if(Q1->verbose) prat(" \np2's obj value: ",P1->objnum,P1->objden); lrs_nashoutput (Q1, output1, 1L); fprintf (lrs_ofp, "\n"); } } } while (lrs_getnextbasis (&P1, Q1, prune)); fprintf(lrs_ofp,"\n*Number of equilibria found: %ld",numequilib); fprintf (lrs_ofp,"\n*Player 1: vertices=%ld bases=%ld pivots=%ld", Q1->count[1], Q1->count[2],Q1->count[3]); fprintf (lrs_ofp,"\n*Player 2: vertices=%ld bases=%ld pivots=%ld", Q2->count[1], Q2->count[2],Q2->count[3]); lrs_clear_mp_vector(output1, Q1->m + Q1->n); lrs_clear_mp_vector(output2, Q1->m + Q1->n); lrs_free_dic (P1,Q1); /* deallocate lrs_dic */ lrs_free_dat (Q1); /* deallocate lrs_dat */ /* 2006.10.10 not sure what is going on with three lines below - sometimes crashes */ /* Q2->Qhead = P2; */ /* reset this or you crash free_dic */ /* lrs_free_dic (P2,Q2); */ /* deallocate lrs_dic */ /* lrs_free_dat (Q2); */ /* deallocate lrs_dat */ lrs_close ("nash:"); return 0; } /*********************************************/ /* end of nash driver */ /*********************************************/ /**********************************************************/ /* nash2_main is a second driver used in computing nash */ /* equilibria on a second polytope interleaved with first */ /**********************************************************/ long nash2_main (int argc, char *argv[], lrs_dic *P1, lrs_dat *Q1, lrs_dic *P2orig, lrs_dat *Q2, long *numequilib, lrs_mp_vector output) { lrs_dic *P2; /* This can get resized, cached etc. Loaded from P2orig */ lrs_mp_matrix Lin; /* holds input linearities if any are found */ long col; /* output column index for dictionary */ long startcol = 0; long prune = FALSE; /* if TRUE, getnextbasis will prune tree and backtrack */ long nlinearity; long *linearity; static long firstwarning=TRUE; /* FALSE if dual deg warning for Q2 already given */ static long firstunbounded=TRUE; /* FALSE if dual deg warning for Q2 already given */ long i,j; /* global variables lrs_ifp and lrs_ofp are file pointers for input and output */ /* they default to stdin and stdout, but may be overidden by command line parms. */ /*********************************************************************************/ /* Step 1: Allocate lrs_dat, lrs_dic and set up the problem */ /*********************************************************************************/ P2=lrs_getdic(Q2); copy_dict(Q2,P2,P2orig); /* Here we take the linearities generated by the current vertex of player 1*/ /* and append them to the linearity in player 2's input matrix */ /* next is the key magic linking player 1 and 2 */ /* be careful if you mess with this! */ linearity=Q2->linearity; nlinearity=0; for(i=Q1->lastdv+1;i <= P1->m; i++) { if (!zero(P1->A[P1->Row[i]][0])) { j = Q1->inequality[P1->B[i]-Q1->lastdv]; if (Q1->nlinearity ==0 || j < Q1->linearity[0]) linearity[nlinearity++]= j; } } /* add back in the linearity for probs summing to one */ if (Q1->nlinearity > 0) linearity[nlinearity++]= Q1->linearity[0]; /*sort linearities */ for (i = 1; i < nlinearity; i++) reorder (linearity, nlinearity); if(Q2->verbose) { fprintf(lrs_ofp,"\np2: linearities %ld",nlinearity); for (i=0;i < nlinearity; i++) fprintf(lrs_ofp," %ld",linearity[i]); } Q2->nlinearity = nlinearity; Q2->polytope = FALSE; /*********************************************************************************/ /* Step 2: Find a starting cobasis from default of specified order */ /* P2 is created to hold active dictionary data and may be cached */ /* Lin is created if necessary to hold linearity space */ /* Print linearity space if any, and retrieve output from first dict. */ /*********************************************************************************/ if (!lrs_getfirstbasis2 (&P2, Q2, P2orig, &Lin, TRUE)) goto sayonara; if (firstwarning && Q2->dualdeg) { firstwarning=FALSE; printf("\n*Warning! Dual degenerate, ouput may be incomplete"); printf("\n*Recommendation: Add dualperturb option before maximize in second input file\n"); } if (firstunbounded && Q2->unbounded) { firstunbounded=FALSE; printf("\n*Warning! Unbounded starting dictionary for p2, output may be incomplete"); printf("\n*Recommendation: Change/remove maximize option, or include bounds \n"); } /* Pivot to a starting dictionary */ /* There may have been column redundancy */ /* If so the linearity space is obtained and redundant */ /* columns are removed. User can access linearity space */ /* from lrs_mp_matrix Lin dimensions nredundcol x d+1 */ if (Q2->homogeneous && Q2->hull) startcol++; /* col zero not treated as redundant */ /* for (col = startcol; col < Q2->nredundcol; col++)*/ /* print linearity space */ /*lrs_printoutput (Q2, Lin[col]);*/ /* Array Lin[][] holds the coeffs. */ /*********************************************************************************/ /* Step 3: Terminate if lponly option set, otherwise initiate a reverse */ /* search from the starting dictionary. Get output for each new dict. */ /*********************************************************************************/ /* We initiate reverse search from this dictionary */ /* getting new dictionaries until the search is complete */ /* User can access each output line from output which is */ /* vertex/ray/facet from the lrs_mp_vector output */ /* prune is TRUE if tree should be pruned at current node */ do { prune=lrs_checkbound(P2,Q2); col=0; if (!prune && lrs_getsolution (P2, Q2, output, col)) { if (Q2->verbose) prat(" \np1's obj value: ",P2->objnum,P2->objden); if (lrs_nashoutput (Q2, output, 2L)) (*numequilib)++; } } while (lrs_getnextbasis (&P2, Q2, prune)); sayonara: lrs_free_dic(P2,Q2); return 0; } /*********************************************/ /* end of nash2_main */ /*********************************************/ /* In lrs_getfirstbasis and lrs_getnextbasis we use D instead of P */ /* since the dictionary P may change, ie. &P in calling routine */ #define D (*D_p) long lrs_getfirstbasis2 (lrs_dic ** D_p, lrs_dat * Q, lrs_dic * P2orig, lrs_mp_matrix * Lin, long no_output) /* gets first basis, FALSE if none */ /* P may get changed if lin. space Lin found */ /* no_output is TRUE supresses output headers */ { long i, j, k; /* assign local variables to structures */ lrs_mp_matrix A; long *B, *C, *Row, *Col; long *inequality; long *linearity; long hull = Q->hull; long m, d, lastdv, nlinearity, nredundcol; static long ocount=0; m = D->m; d = D->d; lastdv = Q->lastdv; nredundcol = 0L; /* will be set after getabasis */ nlinearity = Q->nlinearity; /* may be reset if new linearity read */ linearity = Q->linearity; A = D->A; B = D->B; C = D->C; Row = D->Row; Col = D->Col; inequality = Q->inequality; /* default is to look for starting cobasis using linearies first, then */ /* filling in from last rows of input as necessary */ /* linearity array is assumed sorted here */ /* note if restart/given start inequality indices already in place */ /* from nlinearity..d-1 */ for (i = 0; i < nlinearity; i++) /* put linearities first in the order */ inequality[i] = linearity[i]; k = 0; /* index for linearity array */ if (Q->givenstart) k = d; else k = nlinearity; for (i = m; i >= 1; i--) { j = 0; while (j < k && inequality[j] != i) j++; /* see if i is in inequality */ if (j == k) inequality[k++] = i; } if (Q->debug) { fprintf (lrs_ofp, "\n*Starting cobasis uses input row order"); for (i = 0; i < m; i++) fprintf (lrs_ofp, " %ld", inequality[i]); } if (!Q->maximize && !Q->minimize) for (j = 0; j <= d; j++) itomp (ZERO, A[0][j]); /* Now we pivot to standard form, and then find a primal feasible basis */ /* Note these steps MUST be done, even if restarting, in order to get */ /* the same index/inequality correspondance we had for the original prob. */ /* The inequality array is used to give the insertion order */ /* and is defaulted to the last d rows when givenstart=FALSE */ if (!getabasis2 (D, Q,P2orig, inequality)) return FALSE; if(Q->debug) { fprintf(lrs_ofp,"\nafter getabasis2"); printA(D, Q); } nredundcol = Q->nredundcol; lastdv = Q->lastdv; d = D->d; /********************************************************************/ /* now we start printing the output file unless no output requested */ /********************************************************************/ if (!no_output || Q->debug) { fprintf (lrs_ofp, "\nV-representation"); /* Print linearity space */ /* Don't print linearity if first column zero in hull computation */ k = 0; if (nredundcol > k) { fprintf (lrs_ofp, "\nlinearity %ld ", nredundcol - k); /*adjust nredundcol for homog. */ for (i = 1; i <= nredundcol - k; i++) fprintf (lrs_ofp, " %ld", i); } /* end print of linearity space */ fprintf (lrs_ofp, "\nbegin"); fprintf (lrs_ofp, "\n***** %ld rational", Q->n); } /* end of if !no_output ....... */ /* Reset up the inequality array to remember which index is which input inequality */ /* inequality[B[i]-lastdv] is row number of the inequality with index B[i] */ /* inequality[C[i]-lastdv] is row number of the inequality with index C[i] */ for (i = 1; i <= m; i++) inequality[i] = i; if (nlinearity > 0) /* some cobasic indices will be removed */ { for (i = 0; i < nlinearity; i++) /* remove input linearity indices */ inequality[linearity[i]] = 0; k = 1; /* counter for linearities */ for (i = 1; i <= m - nlinearity; i++) { while (k <= m && inequality[k] == 0) k++; /* skip zeroes in corr. to linearity */ inequality[i] = inequality[k++]; } } /* end if linearity */ if (Q->debug) { fprintf (lrs_ofp, "\ninequality array initialization:"); for (i = 1; i <= m - nlinearity; i++) fprintf (lrs_ofp, " %ld", inequality[i]); } if (nredundcol > 0) { const unsigned int Qn = Q->n; *Lin = lrs_alloc_mp_matrix (nredundcol, Qn); for (i = 0; i < nredundcol; i++) { if (!(Q->homogeneous && Q->hull && i == 0)) /* skip redund col 1 for homog. hull */ { lrs_getray (D, Q, Col[0], D->C[0] + i - hull, (*Lin)[i]); /* adjust index for deletions */ } if (!removecobasicindex (D, Q, 0L)) { lrs_clear_mp_matrix (*Lin, nredundcol, Qn); return FALSE; } } } /* end if nredundcol > 0 */ if (Q->verbose) { fprintf (lrs_ofp, "\nNumber of pivots for starting dictionary: %ld",Q->count[3]); ocount=Q->count[3]; } /* Do dual pivots to get primal feasibility */ if (!primalfeasible (D, Q)) { if ( Q->verbose ) { fprintf (lrs_ofp, "\nNumber of pivots for feasible solution: %ld",Q->count[3]); fprintf (lrs_ofp, " - No feasible solution"); ocount=Q->count[3]; } return FALSE; } if (Q->verbose) { fprintf (lrs_ofp, "\nNumber of pivots for feasible solution: %ld",Q->count[3]); ocount=Q->count[3]; } /* Now solve LP if objective function was given */ if (Q->maximize || Q->minimize) { Q->unbounded = !lrs_solvelp (D, Q, Q->maximize); /* check to see if objective is dual degenerate */ j = 1; while (j <= d && !zero (A[0][j])) j++; if (j <= d) Q->dualdeg = TRUE; } else /* re-initialize cost row to -det */ { for (j = 1; j <= d; j++) { copy (A[0][j], D->det); storesign (A[0][j], NEG); } itomp (ZERO, A[0][0]); /* zero optimum objective value */ } /* reindex basis to 0..m if necessary */ /* we use the fact that cobases are sorted by index value */ if (Q->debug) printA (D, Q); while (C[0] <= m) { i = C[0]; j = inequality[B[i] - lastdv]; inequality[B[i] - lastdv] = inequality[C[0] - lastdv]; inequality[C[0] - lastdv] = j; C[0] = B[i]; B[i] = i; reorder1 (C, Col, ZERO, d); } if (Q->debug) { fprintf (lrs_ofp, "\n*Inequality numbers for indices %ld .. %ld : ", lastdv + 1, m + d); for (i = 1; i <= m - nlinearity; i++) fprintf (lrs_ofp, " %ld ", inequality[i]); printA (D, Q); } if (Q->restart) { if (Q->debug) fprintf (lrs_ofp, "\nPivoting to restart co-basis"); if (!restartpivots (D, Q)) return FALSE; D->lexflag = lexmin (D, Q, ZERO); /* see if lexmin basis */ if (Q->debug) printA (D, Q); } /* Check to see if necessary to resize */ if (Q->inputd > D->d) *D_p = resize (D, Q); return TRUE; } /********* end of lrs_getfirstbasis ***************/ long getabasis2 (lrs_dic * P, lrs_dat * Q, lrs_dic * P2orig, long order[]) /* Pivot Ax<=b to standard form */ /*Try to find a starting basis by pivoting in the variables x[1]..x[d] */ /*If there are any input linearities, these appear first in order[] */ /* Steps: (a) Try to pivot out basic variables using order */ /* Stop if some linearity cannot be made to leave basis */ /* (b) Permanently remove the cobasic indices of linearities */ /* (c) If some decision variable cobasic, it is a linearity, */ /* and will be removed. */ { long i, j, k; /* assign local variables to structures */ lrs_mp_matrix A = P->A; long *B = P->B; long *C = P->C; long *Row = P->Row; long *Col = P->Col; long *linearity = Q->linearity; long *redundcol = Q->redundcol; long m, d, nlinearity; long nredundcol = 0L; /* will be calculated here */ static long firsttime=TRUE; static long *linindex; m = P->m; d = P->d; nlinearity = Q->nlinearity; if(firsttime) { firsttime = FALSE; linindex = calloc ((m + d + 2), sizeof (long)); } else /* after first time we update the change in linearities from the last time, saving many pivots */ { for(i=1;i<=m+d;i++) linindex[i]=FALSE; if(Q->debug) fprintf(lrs_ofp,"\nlindex ="); for(i=0;idebug) fprintf(lrs_ofp," %ld",d+linearity[i]); } for(i=1;i<=m;i++) { if(linindex[B[i]]) /* pivot out unwanted linearities */ { k=0; while(k B[j]) /* decrease i or we may skip a linearity */ i--; pivot (P, Q, j, k); update (P, Q, &j, &k); } else { /* this is not necessarily an error, eg. two identical rows/cols in payoff matrix */ if(! zero(A[Row[i]][0])) /* error condition */ { if(Q->debug || Q->verbose) { fprintf(lrs_ofp,"\n*Infeasible linearity i=%ld B[i]=%ld",i,B[i]); if (Q->debug) printA(P,Q); } return(FALSE); } if(Q->debug || Q->verbose) { fprintf(lrs_ofp,"\n*Couldn't remove linearity i=%ld B[i]=%ld",i,B[i]); } } } /* if linindex */ } /* for i ..*/ goto hotstart; } /* standard lrs processing is done on only the first call to getabasis2 */ if (Q->debug) { fprintf (lrs_ofp, "\ngetabasis from inequalities given in order"); for (i = 0; i < m; i++) fprintf (lrs_ofp, " %ld", order[i]); } for (j = 0; j < m; j++) { i = 0; while (i <= m && B[i] != d + order[j]) i++; /* find leaving basis index i */ if (j < nlinearity && i > m) /* cannot pivot linearity to cobasis */ { if (Q->debug) printA (P, Q); #ifndef LRS_QUIET fprintf (lrs_ofp, "\nCannot find linearity in the basis"); #endif return FALSE; } if (i <= m) { /* try to do a pivot */ k = 0; while (C[k] <= d && zero (A[Row[i]][Col[k]])) k++; if (C[k] <= d) { pivot (P, Q, i, k); update (P, Q, &i, &k); } else if (j < nlinearity) { /* cannot pivot linearity to cobasis */ if (zero (A[Row[i]][0])) { #ifndef LRS_QUIET fprintf (lrs_ofp, "\n*Input linearity in row %ld is redundant--skipped", order[j]); #endif linearity[j] = 0; } else { if (Q->debug) printA (P, Q); if (Q->verbose) fprintf (lrs_ofp, "\nInconsistent linearities"); return FALSE; } } /* end if j < nlinearity */ } /* end of if i <= m .... */ } /* end of for */ /* update linearity array to get rid of redundancies */ i = 0; k = 0; /* counters for linearities */ while (k < nlinearity) { while (k < nlinearity && linearity[k] == 0) k++; if (k < nlinearity) linearity[i++] = linearity[k++]; } nlinearity = i; /* column dependencies now can be recorded */ /* redundcol contains input column number 0..n-1 where redundancy is */ k = 0; while (k < d && C[k] <= d) { if (C[k] <= d) /* decision variable still in cobasis */ redundcol[nredundcol++] = C[k] - Q->hull; /* adjust for hull indices */ k++; } /* now we know how many decision variables remain in problem */ Q->nredundcol = nredundcol; Q->lastdv = d - nredundcol; /* if not first time we continue from here after loading dictionary */ hotstart: if (Q->debug) { fprintf (lrs_ofp, "\nend of first phase of getabasis2: "); fprintf (lrs_ofp, "lastdv=%ld nredundcol=%ld", Q->lastdv, Q->nredundcol); fprintf (lrs_ofp, "\nredundant cobases:"); for (i = 0; i < nredundcol; i++) fprintf (lrs_ofp, " %ld", redundcol[i]); printA (P, Q); } /* here we save dictionary for use next time, *before* we resize */ copy_dict(Q,P2orig,P); /* Remove linearities from cobasis for rest of computation */ /* This is done in order so indexing is not screwed up */ for (i = 0; i < nlinearity; i++) { /* find cobasic index */ k = 0; while (k < d && C[k] != linearity[i] + d) k++; if (k >= d) { if(Q->debug || Q->verbose) { fprintf (lrs_ofp, "\nCould not remove cobasic index"); } /* not neccesarily an error as eg., could be repeated row/col in payoff */ } else { removecobasicindex (P, Q, k); d = P->d; } } if (Q->debug && nlinearity > 0) printA (P, Q); /* set index value for first slack variable */ /* Check feasability */ if (Q->givenstart) { i = Q->lastdv + 1; while (i <= m && !negative (A[Row[i]][0])) i++; if (i <= m) fprintf (lrs_ofp, "\n*Infeasible startingcobasis - will be modified"); } return TRUE; } /* end of getabasis2 */ long lrs_nashoutput (lrs_dat * Q, lrs_mp_vector output, long player) { long i; long origin=TRUE; /* do not print the origin for either player */ for (i = 1; i < Q->n; i++) if(!zero(output[i])) origin=FALSE; if (origin) return FALSE; fprintf (lrs_ofp, "\n%ld ",player); for (i = 1; i < Q->n; i++) prat ("", output[i], output[0]); fflush(lrs_ofp); return TRUE; } /* end lrs_nashoutput */ lrslib-051/plrs.cpp0000700000175300010010000003232312457654562014154 0ustar avisなし#include #include #include #include #include #include "lrslib.h" #include "plrs.hpp" #include using namespace std; //Synynchrochronization Variables boost::atomic producers_finished(false); boost::atomic initializing(true); boost::mutex cobasis_list_mutex; //List of starting cobasis queue cobasis_list; //Total counts int RAYS = 0; int VERTICIES = 0; int BASIS = 0; int FACETS = 0; int INTVERTICIES = 0; lrs_mp Tnum, Tden, tN, tD, Vnum, Vden; int INITDEPTH = 5; int MAXTHREADS = 12; int SETUP = FALSE; // generate threads but do not run them int cobasislistsize = 0; string INPUTFILE; ofstream OUTSTREAM; plrs_output * reverseList(plrs_output* head){ plrs_output * last = head, * new_head = NULL; while(last) { plrs_output * tmp = last; last = last->next; tmp->next = new_head; new_head = tmp; } return new_head; } void processCobasis(string cobasis){ stringstream ss(cobasis); string height; //split string after h= and retreive height value getline(ss, height, '='); getline(ss, height, ' '); //Check if the cobasis is a leaf node if(atoi(height.c_str()) == INITDEPTH){ //Remove the following characters char chars[] = "#VRBh=facetsFvertices/rays"; unsigned hull = FALSE; if (cobasis.compare(0,2,"F#")==0) hull = TRUE; for(unsigned int i = 0; i < sizeof(chars); ++i){ cobasis.erase(remove(cobasis.begin(), cobasis.end(), chars[i]), cobasis.end()); } //Split the string after facets (do not need det, indet etc. for restart) ss.str(cobasis); getline(ss, cobasis, 'I'); /* 2013.2.14 set depth to zero: hull=F between 3rd and 4th spaces in cobasis; hull=T 2nd and 3rd*/ unsigned found = cobasis.find(" "); found = cobasis.find(" ",found+1); if (hull == FALSE) found = cobasis.find(" ",found+1); unsigned found1 = cobasis.find(" ",found+1); cobasis.replace(found+1,found1-found-1,"0"); //Save in cobasis list as a starting point for a thread cobasis_list.push(cobasis); } } void copyFile(string infile, string outfile){ ifstream input_file (infile.c_str()); ofstream output_file (outfile.c_str()); string line; if(output_file.is_open()){ if(input_file.is_open()){ while(input_file.good()){ getline(input_file, line); output_file< lock(cobasis_list_mutex); //check if starting cobasis left if(!cobasis_list.size()) break; //There is a cobasis left store and pop from list string starting_cobasis = cobasis_list.front(); cobasis_list.pop(); //Release cobasis list lock lock.unlock(); //Begin searching tree with starting cobasis doWork(thread_number, starting_cobasis); } } void findInitCobasis(){ char * argv[] = {"init_temp.ine"}; lrs_main(1, argv); //No longer need temporary ine file so delete it if(remove("init_temp.ine") != 0) cout<<"Error deleting init file!"<type == "vertex"){ OUTSTREAM == NULL ? cout<data<data<type == "ray"){ OUTSTREAM == NULL ? cout<data<data<type =="cobasis"){ if(initializing){ //Initializing so process cobasis - if leaf node store in starting cobasis list //Note that we will not be piping initial cobasis to output processCobasis(consume_list->data); }else{ OUTSTREAM == NULL ? cout<data<data<type =="V cobasis"){ if(!initializing){ OUTSTREAM == NULL ? cout<data<data<type == "facet count"){ FACETS += atoi(consume_list->data.c_str()); }else if(consume_list->type == "ray count"){ RAYS += atoi(consume_list->data.c_str()); }else if(consume_list->type == "basis count"){ BASIS += atoi(consume_list->data.c_str()); }else if(consume_list->type == "vertex count"){ VERTICIES += atoi(consume_list->data.c_str()); }else if(consume_list->type == "integer vertex count"){ INTVERTICIES += atoi(consume_list->data.c_str()); }else if(consume_list->type == "volume"){ const char * c = consume_list->data.c_str(); plrs_readrat(Tnum,Tden,c); copy(tN,Vnum); copy(tD,Vden); linrat(tN,tD,1L,Tnum,Tden,1L,Vnum,Vden); // cout << "volume " << prat("",Tnum,Tden) << endl; // cout << "tvolume " << prat("",Vnum,Vden) << endl; }else if(consume_list->type == "options warning"){ //Only pipe warnings if initializing otherwise they are displayed multiple times if(initializing){ OUTSTREAM == NULL ? cout<data<data<type == "header"){ //Only pipe headers if initializing otherwise they are displayed multiple times if(initializing){ OUTSTREAM == NULL ? cout<data<data<next; delete consume_list; consume_list = temp; } } void consumeOutput() { while(!producers_finished) { processOutput(); boost::unique_lock lock(consume_mutex); // check one last time while holding the lock before blocking. if(!output_list && !producers_finished) consume.wait(lock); } //Producer thread(s) have finished searching so manage output_list one last time processOutput(); } void notifyProducerFinished(){ //Get consumer lock boost::unique_lock lock(consume_mutex); producers_finished = true; //notify consumer thread in case it is waiting for producer consume.notify_one(); } void initializeStartingCobasis(){ cout<<"*Max depth of "<0){ string starting_cobasis = cobasis_list.front(); cobasis_list.pop(); //Create .ine file char * thread_file = new char[256]; int threadnumber = cobasis_list.size(); sprintf(thread_file, "%s_%d.ine", INPUTFILE.c_str(),threadnumber); copyFile(INPUTFILE, thread_file); ofstream out_file (thread_file, ios::app); out_file<<"mindepth "<< 0 < 0){ cout< or plrs or plrs -in -out -mt -id -set" plrs_output * reverseList(plrs_output* head); void processCobasis(string cobasis); void findInitCobasis(); void copyFile(string infile, string outfile); void doWork(int thread_number, string starting_cobasis); void startThread(int thread_number); void processOutput(); void consumeOutput(); void notifyProducerFinished(); void initializeStartingCobasis(); #endif lrslib-051/rat2float.c0000700000175300010010000000741112423577213014520 0ustar avisなし/* * Reads a polyhedron file on stdin , with rationals and outputs * an approximation in decimal floating point * * David Bremner. bremner@cs.mcgill.ca * */ /* Hacked by DA, April 20 2006 * * first argument overides stdin * if column 0=0 then first non zero column scaled to +/-1 (otherwise big ugly integers come out) */ static char rcsid[]="$Id: rat2float.c,v 1.2 2006/04/04 12:33:38 bremner Exp $"; #include #include #include #include FILE *lrs_ifp; /* input file pointer */ #define DOCSTRING "\n\ $Id: rat2float.ds,v 1.3 2006/04/04 12:34:35 bremner Exp $ \n\ \n\ float takes a polytope file with rational or integer coefficents, \n\ and outputs an approximately equivelent one with floating point \n\ coefficents.\n\ \n\ WARNING: Assumes that numerator and denominator will fit in long integer,\n\ unless compiled with multiprecision support.\n\ \n\ \n\ \n\ " int usage(){ fprintf(stderr,"\n%s\n",rcsid);fprintf(stderr,DOCSTRING); exit(1); } #define CHECK_HELP if (argc > 1 && argv[1][0]=='-' && argv[1][1]=='h') usage(); #ifdef LRSMP #include "lrsmp.h" #endif #ifndef LRSMP typedef long integer_t; #define zero(n) (n==0) #define one(n) (n==1) #define pmp(s,n) printf("%s %d ",s,n) #define readrat(n,d) my_readrat(&n,&d); void my_readrat(long *num_p, long * denom_p) { char buf[BUFSIZ]; char *p; fscanf(lrs_ifp,"%s",buf); if (p=index(buf,'/')){ *p=0; *denom_p=atol(&p[1]); } else { *denom_p=1; } *num_p=atol(buf); } void rattodouble(integer_t num, integer_t denom, double *out_p){ *out_p=(double)num/(double)denom; } #else typedef lrs_mp integer_t; #define MP_DIGITS 1000L #endif int main(argc,argv) int argc; char **argv; { long int n; int j; integer_t num,denom,sdenom; double out; int scale; /* if column 0 is zero, scale column 1 to 1 */ char format[BUFSIZ]; char buf[BUFSIZ]; char inputm[BUFSIZ]; CHECK_HELP; if(argc > 1 ) /* command line argument overides stdin */ { if ((lrs_ifp = fopen (argv[1], "r")) == NULL) { printf ("\nBad input file name\n"); return(1); } } else lrs_ifp=stdin; #ifdef LRSMP lrs_mp_init (MP_DIGITS,lrs_ifp,stdout); #endif sprintf(format,"%%.%dlf ",DBL_DIG); while ( fgets(buf,BUFSIZ,lrs_ifp) !=NULL ) { fputs(buf,stdout); if (strncmp(buf,"begin",5)==0) break; } /* in lrs output m is undefined */ if (fscanf(lrs_ifp,"%s %ld %s",inputm,&n,buf)==EOF){ fprintf(stderr,"No begin line"); exit(1); } printf("%s %ld real\n",inputm,n); /* for (i=0;i [ ] [ -mt ] [ -id ] -mt specifies the number parallel threads calling lrs (default 12) -id specifies the initial depth of the RS tree to generate before parallelization (default 5) Setup instructions for plrs. Use version 1.57.0 or later of the boost libary 1. Install boost library from http://www.boost.org/ into prefix/boost157 If you have root permission, prefix=/usr/include (or just do not specify it) However you can install boost locally wherever you like. Instructions for installing the library are located here http://www.boost.org/doc/libs/1_57_0/more/getting_started/unix-variants.html. Look at section 5 for an easy install. ***Important: make a note of the path given at the end of the install process **** 2. Update the makefile to include the paths you recorded in step 1. "make plrs" will make plrs with the gmp library (assuming the gmp library is already installed on that machine). "make plrsmp" will make plrs with the standard lrsmp arithmetic library and plrs1 with the long integer library. ------------------------------------------------------------------------------- 2013.5.22 modification to printcobasis so that the objective value is printed ------------------------------------------------------------------------------ 2012.9.27 initial release of multithread version of lrs called plrs that uses a wrapper written by Gary Roumanis. It needs the Boost libraries at http://www.boost.org plrs setup instructions are in the file readme_plrs I regret that I cannot give any additional support for the correct installation of boost libraries. Note: makefile has now changed so that make all gives gmp arithmetic library make allmp uses native mp arithmetic if gmp not available ----------------------------------------------------------------------------- 2010.5.7 incidence no longer resets printcobasis frequency to zero. If the printcobasis n option is used, the frequency will be n. Otherwise the default n=0 is used, and cobasis is printed only for lexmin bases. ----------------------------------------------------------------------------- 2010.4.26 bug when incidence and nonnegative options used together reported by Jochen Koenemannkfix was fixed. Bug in fourier reported by Laszlo David for input which is not full dimensional. I am temporarily removing fourier from distribution. ----------------------------------------------------------------------------- 2009.12.2 bug fix for redund caused problems in nash, reported by James Heather. Hopefully this new version solves both issues. ----------------------------------------------------------------------------- 2009.9.10 bug in redund reported by Alden Walker, when linearities are redundant, has been fixed. It is now under test, so please report any bugs! this bug also can cause printcobasis option to be incorrect for lrs under this condition. Problems still seem to arise in fourier from time to time, so please report any anomalities. ----------------------------------------------------------------------------- 2009.2.5 bug in fourier when using linearity option pointed out by Conor Meagher. Option disabled. 2nash driver uses two processors to run nash with input files in both orders. terminates when first process terminates. Thanks again to Conor for this. ----------------------------------------------------------------------------- 2007.6.6 printcobasis output line modified to give also in_det det= the determinant of the current basis, which is always integer. in_det= the determinant of the input rows corresponding to the current basis. lrs rescales input rows if they are rational or have a common divisor, so in these cases det and in_det are different. For V-representation, the volume will be the sum of the in_det of each basis, divided by the dimension (n-1)! ------------------------------------------------------------------- 2006.10.31 Modified code for restartpivots, to allow DB to do something. Estimator now provides estimate of running time=time*bases/tree nodes Triangulation printed if getvolume and verbose options used ----------------------------------------------------------------------------- 2006.10.11 Bug fix for nash, and inclusion of polytope version ----------------------------------------------------------------------------- available by using setupnash2 ----------------------------------------------------------------------------- 2006.3.1 incidence option now can be used compatibly with printcobasis n ----------------------------------------------------------------------------- 2006.2.14 Version 4.2b Bug fixed related to memory allocation for linearity reported by David Haws. If you use the linearity option, you should upgrade to this version. In the case of inconsistent linearities, the first inconsistent linearity is now reported before termination. ---------------------------------------------------------------------------- 2005.11.20 Version 4.2a Bug fixed relating to miscaled lp dual variables output when lponly set maxoutput n Option limits output lines to n: either rays+vertices, or facets ---------------------------------------------------------------------------- 2005.6.1 Version 4.2 with two new drivers: nash.c which computes all Nash equilibria of a two person non-cooperative game, and uses setupnash.c to create the input files. fourier.c which does Fourier elimination on an H-representation to project it to a lower dimensional space. Contributed by Tallman Nkgau. Other changes: lrs with the lponly option now provides dual variables for the optimum solution. Bug fix to mpdouble (reported by several users.) _____________________________________________________________________________ 2004.9.23 Version 4.2 updated with a patch from Bremner that has something to do with C++. 2003.10.24 Version 4.2 which appears here is a prerelease version, is not fully tested, and will be modified frequently. However you are more than welcome to try it - please report any bugs! Merci beaucoup. 2002.10.28 lrslib v.4.2 minor modifications to v.4.1 This is a pre-release for test purposes. Please report bugs! Nonnegative option was fixed to allow input where origin is not necessarily a vertex. A memory leak was fixed. A quiet mode is added - compile with LRS_QUIET set. ------------------------------------------------------------------------------ 2001.6.20 lrslib v.4.1 lpsolve like procedures to build input data added. Demo programs are: vedemo.c vertex enumeration chdemo.c facet enumeration lpdemo.c linear programs They can be build using: make demo Proper garbage collection implemented to clean up after each problem has been solved. See http://cgm.cs.mcgill.ca/~avis/C/lrslib/lrslib.html for documentation. ------------------------------------------------------------------------------- 2000.6.14 Various binaries are available in the directory binaries. Currently available: binaries/debian Debian Linux binaries/sun Sun Ultra Sparc binaries/win98 Windows 95/98 ------------------------------------------------------------------------------ 2000.6.14 lrslib v.4.0 which supercedes all previous versions of the programs lrs and redund. New Features: ------------ 1. Library version allows customization of the search function, access to the output as it is produced, and access to lrs from other programs. 2. Problems need no longer be in full dimension. This allows the input of equations, partial enumeration on facets, ridges etc. 3. Choice of arithmetic packages. Currently available are: lrsmp Extended precision arithmetic used in previous releases lrslong Fixed length long integer arithmetic. No overflow checking but 5-10 times faster. lrsgmp Requires preinstallation of GNU GMP package, available at http://www.swox.com/gmp/ The standard "make all" gives lrs/redund with lrsmp, and lrs1/redund1 with lrslong. 4. redund was completely rewritten and is faster than before. The previous version did not remove redundancy in the starting basis and should be discarded. Installation: ------------ 1. From website go to "Download" and retrieve the file lrslib-040.tar.gz 2. Unpack with: % gunzip lrslib-040.tar.gz % tar xvf lrslib-040.tar 3. Go to the new directory % cd lrslib-040 4. make binaries by typing % make all (most 32 bit unix machines) or % make all64 (64 bit integer machines such as DEC Alpha) If the make fails, it is usually due to timing and/or interrupt handling routines. In this case try: % make nosigs 5. If successful you should get binaries: lrs redund lrs1 redund1 6. Test the program lrs by typing: lrs cube.ine and you should get output resembling the file cube.ext 7. You will find additional test files in the directories: ine and ext 8. For GNU gmp library, edit the makefile to set the INCLUDE and LIB paths for the location of the gmp libarary, and type: %make gmp You should get binaries glrs and gredund lrslib-051/redund.c0000700000175300010010000000023012423577213014073 0ustar avisなし#include #include #include "lrslib.h" int main (int argc, char *argv[]) { redund_main(argc,argv); printf("\n"); return 0; } lrslib-051/runp0000700000175300010010000000070212423577213013361 0ustar avisなし#!/bin/sh # mkdir out_$1 cp $1 $1.ext out_$1 i=0 while [ $i -le $5 ] do mkdir out_$1/tmp$i mv $1_$i.ine out_$1/tmp$i i=`expr $i + 1` # i count by 1 done cd out_$1 i=0 while [ $i -le $5 ] do cd tmp$i plrs $1_$i.ine $1_$i.ext -id $3 -mt $4 & i=`expr $i + 1` # i count by 1 cd .. done lrslib-051/runp20000700000175300010010000000033312423577213013443 0ustar avisなし#!/bin/sh # cd out_$1 i=0 while [ $i -le $2 ] do cat tmp$i/$1_$i.ext >> $1.ext i=`expr $i + 1` # i count by 1 done sort -u $1.ext > $1.out lrslib-051/setupnash.c0000700000175300010010000000663412423577213014642 0ustar avisなし#include #include #include "lrslib.h" #define MAXLINE 1000 /* Usage: setupnash game game1.ine game2.ine */ /* Reads input file game containing */ /* m n */ /* A matrix (m by n rationals ) */ /* B matrix (m by n rationals ) */ /* Outputs: two files game1.ine game2.ine */ /* that are used by nash */ int main (int argc, char *argv[]) { long m,n,i,j; long Anum[100][100], Bnum[100][100]; long Aden[100][100], Bden[100][100]; if ( argc < 3 ) { printf ("\nUsage: setupnash infile outfile1 outfile2\n"); return(FALSE); } if ((lrs_ifp = fopen (argv[1], "r")) == NULL) { printf ("\nBad input file name\n"); return (FALSE); } else printf ("\n*Input taken from file %s", argv[1]); if(fscanf(lrs_ifp,"%ld %ld",&m,&n)==EOF) { printf("\nInvalid m,n"); return(FALSE); } if( m > 1000 || n > 1000) { printf ("\nm=%ld n=%ld",m,n); printf ("\nBoth m and n must at most 1000\n"); return(FALSE); } /* process input file */ /* read A matrix */ for (i=0;i #include #include "lrslib.h" #define MAXLINE 1000 /* Usage: setupnash2 game game1.ine game2.ine */ /* Reads input file game containing */ /* m n */ /* A matrix (m by n rationals ) */ /* B matrix (m by n rationals ) */ /* Outputs: two files game1.ine game2.ine */ /* that are used by nash */ /* This program builds polytope form: */ /* Bx<=1, x>=0; Ay <=1, y>=0 */ /* MATRICES SHOULD HAVE POSITIVE ENTRIES */ int main (int argc, char *argv[]) { long m,n,i,j; long Anum[100][100], Bnum[100][100]; long Aden[100][100], Bden[100][100]; if ( argc < 3 ) { printf ("\nUsage: setupnash2 infile outfile1 outfile2\n"); return(FALSE); } if ((lrs_ifp = fopen (argv[1], "r")) == NULL) { printf ("\nBad input file name\n"); return (FALSE); } else printf ("\n*Input taken from file %s", argv[1]); if(fscanf(lrs_ifp,"%ld %ld",&m,&n)==EOF) { printf("\nInvalid m,n"); return(FALSE); } if( m > 1000 || n > 1000) { printf ("\nm=%ld n=%ld",m,n); printf ("\nBoth m and n must be at most 1000\n"); return(FALSE); } /* process input file */ /* read A matrix */ for (i=0;i #include #include "lrslib.h" #define MAXCOL 1000 /* maximum number of colums */ void makecube (lrs_dic *P, lrs_dat *Q); int main (int argc, char *argv[]) { lrs_dic *P; /* structure for holding current dictionary and indices */ lrs_dat *Q; /* structure for holding static problem data */ lrs_mp_vector output; /* one line of output:ray,vertex,facet,linearity */ lrs_mp_matrix Lin; /* holds input linearities if any are found */ long i; long col; /* output column index for dictionary */ /* Global initialization - done once */ if ( !lrs_init ("\n*vedemo:")) return 1; /* compute the vertices of a set of hypercubes given by */ /* their H-representations. */ for(i=1;i<=3;i++) { /* allocate and init structure for static problem data */ Q = lrs_alloc_dat ("LRS globals"); if (Q == NULL) return 1; /* now flags in lrs_dat can be set */ Q->n=i+2; /* number of input columns (dimension + 1 ) */ Q->m=2*i+2; /* number of input rows = number of inequalities */ output = lrs_alloc_mp_vector (Q->n); P = lrs_alloc_dic (Q); /* allocate and initialize lrs_dic */ if (P == NULL) return 1; /* Build polyhedron: constraints and objective */ makecube(P,Q); /* code from here is borrowed from lrs_main */ /* Pivot to a starting dictionary */ if (!lrs_getfirstbasis (&P, Q, &Lin, FALSE)) return 1; /* There may have been column redundancy */ /* (although not for this example of hypercubes) */ /* If so the linearity space is obtained and redundant */ /* columns are removed. User can access linearity space */ /* from lrs_mp_matrix Lin dimensions nredundcol x d+1 */ for (col = 0L; col < Q->nredundcol; col++) /* print linearity space */ lrs_printoutput (Q, Lin[col]); /* Array Lin[][] holds the coeffs. */ /* We initiate reverse search from this dictionary */ /* getting new dictionaries until the search is complete */ /* User can access each output line from output which is */ /* a vertex/ray/facet from the lrs_mp_vector output */ do { for (col = 0; col <= P->d; col++) if (lrs_getsolution (P, Q, output, col)) lrs_printoutput (Q, output); } while (lrs_getnextbasis (&P, Q, FALSE)); lrs_printtotals (P, Q); /* print final totals */ /* free space : do not change order of next 3 lines! */ lrs_clear_mp_vector (output, Q->n); lrs_free_dic (P,Q); /* deallocate lrs_dic */ lrs_free_dat (Q); /* deallocate lrs_dat */ } /* end of loop for i= ... */ lrs_close ("vedemo:"); printf("\n"); return 0; } /* end of main */ void makecube (lrs_dic *P, lrs_dat *Q) /* generate H-representation of a unit hypercube */ { long num[MAXCOL]; long den[MAXCOL]; long row, j; long m=Q->m; /* number of inequalities */ long n=Q->n; /* hypercube has dimension n-1 */ for (row=1;row<=m;row++) { for(j=0;j