gbutils-5.7.1/0000755000175000017500000000000013246772655010217 500000000000000gbutils-5.7.1/gbtest.c0000644000175000017500000021667713246754720011607 00000000000000/* gbtest (ver. 5.6) -- Compute statistical tests on data Copyright (C) 2011-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "tools.h" #include #include #include #define NAME(x) !strcmp(test_name,(x)) /* Global variable accessed by different routines */ /* ---------------------------------------------- */ /* options */ char Is_Data_Sorted = 0; char Is_Data_Denan = 0; char O_Verbose = 0; char O_Significance = 0; /* requirement of the test */ char Need_Sorted=0; /* data must be sorted */ char Need_Distrib=0; /* data are from a distribution function, between 0 and 1 */ /* variables related to "ties" counting */ size_t tgroups=0; /* number of tied groups */ size_t *tgroup=NULL; /* size of tied groups */ /* degree of freedoms of the T tests with hetero variances */ double TdiffV_dof; /* Utility functions and structures */ /* ------------------------------- */ /* common ordering of joint samples */ typedef struct indexed { size_t sample; double data; } Indexed; int sort_indexed_by_value(const void *a, const void *b){ const Indexed *da = (const Indexed *) a; const Indexed *db = (const Indexed *) b; return (da->data > db->data) - (da->data < db->data); } /* One sample tests */ /* ---------------- */ /* the following is special. the first column contains the observations in each bin and the second column the theoretical probability of each bin */ double chi2_onesample(double ** const data, const size_t size) { size_t i; double N=0.0; double res=0.0; /* compute total number of observations */ for(i=0;i0) res+=(data[0][i]-N*data[1][i])*(data[0][i]-N*data[1][i])/(N*data[1][i]); else if(data[1][i] == 0 && data[0][i] >0 ){ res=NAN; break; } } return res; } size_t WILCOsize=0; /* number of non-zero entries */ double WILCO_test(double * data, const size_t size){ size_t i,j; double res=0.0; Indexed *alldata = (Indexed *) my_alloc(sizeof(Indexed)*size); /* zero entries are discarded */ j=0; for(i=0;i0){ /* positive entry */ alldata[j].sample = 1; alldata[j].data = data[i]; j++; } } WILCOsize=j; alldata = (Indexed *) my_realloc(alldata,WILCOsize*sizeof(Indexed)); /* sort pooled data */ qsort(alldata,WILCOsize,sizeof(Indexed),sort_indexed_by_value); /* for(i=0;i0){ tgroups++; tgroup = (size_t *) my_realloc((void *) tgroup,tgroups*sizeof(size_t)); tgroup[tgroups-1] = equals+1; for(j=i;j1){ if(WILCOsize0) fprintf(stderr,"# Number of ties group(s) %zd\n",tgroups); fprintf(stderr,"# Observed Wilcoxon W %g\n", statistic); fprintf(stderr,"# Large sample mean %g\n",mean); fprintf(stderr,"# Large sample std. dev. %g\n",stdev); fprintf(stderr,"# Standardized W %g\n",stat); fprintf(stderr,"# Asymptotic inference:\n"); fprintf(stderr,"# One-sided P-value: Pr{statW} %g\n", gsl_cdf_ugaussian_Q (stat)); fprintf(stderr,"# Two-sided P-value: Pr{|stat|>|W|} %g\n", 2*gsl_cdf_ugaussian_Q (fabs(stat))); } /* +++++++++++++++++++++++++++++++++++++ */ return 2.0*gsl_cdf_ugaussian_Q (fabs(stat)); } double TRTP_test(double * data, const size_t size){ double res=0; size_t i; for(i=1;idata[i+1]) || (data[i-1]>data[i] && data[i]1){ fprintf(stderr,"# Observed Turning Points %g\n", statistic); fprintf(stderr,"# Expected mean %g\n",mean); fprintf(stderr,"# Expected std. dev. %g\n",stdev); fprintf(stderr,"# Standardized score %g\n",stat); fprintf(stderr,"# Asymptotic inference:\n"); fprintf(stderr,"# One-sided P-value: Pr{statobs.} %g\n", gsl_cdf_ugaussian_Q (stat)); fprintf(stderr,"# Two-sided P-value: Pr{|stat|>|obs.|} %g\n", 2*gsl_cdf_ugaussian_Q (fabs(stat))); } /* +++++++++++++++++++++++++++++++++++++ */ return 2.0*gsl_cdf_ugaussian_Q (fabs(stat)); } double TRDS_test(double * data, const size_t size){ double res=0; size_t i; for(i=1;idata[i-1]) res=res+1.; return res; } double TRDS_pscore(const double statistic, const size_t size){ const double mean=(size-1.)/2.; const double stdev=sqrt((size+1.)/12.); const double stat =(statistic-mean)/stdev; /* +++++++++++++++++++++++++++++++++++++ */ if(O_Verbose>1){ fprintf(stderr,"# Observed Positive Differences %g\n", statistic); fprintf(stderr,"# Expected mean %g\n",mean); fprintf(stderr,"# Expected std. dev. %g\n",stdev); fprintf(stderr,"# Standardized score %g\n",stat); fprintf(stderr,"# Asymptotic inference:\n"); fprintf(stderr,"# One-sided P-value: Pr{statobs.} %g\n", gsl_cdf_ugaussian_Q (stat)); fprintf(stderr,"# Two-sided P-value: Pr{|stat|>|obs.|} %g\n", 2*gsl_cdf_ugaussian_Q (fabs(stat))); } /* +++++++++++++++++++++++++++++++++++++ */ return 2.0*gsl_cdf_ugaussian_Q (fabs(stat)); } double TRRT_test(double * data, const size_t size){ double res=0; size_t i,j; for(i=0;idata[i]) res=res+1.; return res; } double TRRT_pscore(const double statistic, const size_t size){ const double mean=size*(size-1.)/4.; /* const double stdev=sqrt(size*(size-1.)*(2.*size+5.)/8.); */ const double stdev=sqrt(size*(size-1.)*(2.*size+5.)/72.); const double stat =(statistic-mean)/stdev; /* +++++++++++++++++++++++++++++++++++++ */ if(O_Verbose>1){ fprintf(stderr,"# Observed increasing couples %g\n", statistic); fprintf(stderr,"# Expected mean %g\n",mean); fprintf(stderr,"# Expected std. dev. %g\n",stdev); fprintf(stderr,"# Standardized score %g\n",stat); fprintf(stderr,"# Asymptotic inference:\n"); fprintf(stderr,"# One-sided P-value: Pr{statobs.} %g\n", gsl_cdf_ugaussian_Q (stat)); fprintf(stderr,"# Two-sided P-value: Pr{|stat|>|obs.|} %g\n", 2*gsl_cdf_ugaussian_Q (fabs(stat))); } /* +++++++++++++++++++++++++++++++++++++ */ return 2.0*gsl_cdf_ugaussian_Q (fabs(stat)); } double Dplus_test(double * data, const size_t size) { size_t i; double result=0; /* sort data if needed */ if(Is_Data_Sorted==0) qsort(data,size,sizeof(double),sort_by_value); /* check that data are from a distribution function */ if(data[0]<0 || data[size-1]>1){ fprintf(stderr,"WARNING (%s): data not from a distribution function, NAN is returned.\n",GB_PROGNAME); result=NAN; } else{ for(i=0;iresult) result = dtmp1; } } return result; } double Dplus_pscore(const double statistic, const size_t size) { const size_t maxindex = (size_t) floor(size*(1-statistic)); const double N = (double) size; const double stat = statistic*sqrt(N); const double Gasy=1-exp(-2.*stat*stat); size_t i; double G=0; double G_smallcontrib=0; for(i=0;i1){ fprintf(stderr,"# Observed D+ %g\n",statistic); fprintf(stderr,"# Sample size %zd\n",size); fprintf(stderr,"# Standardized score %g\n",stat); fprintf(stderr,"# Exact inference:\n"); fprintf(stderr,"# One-sided P-value: Pr{stat>D+} %g\n",1-G); fprintf(stderr,"# One-sided P-value: Pr{statD+} %g\n",1-Gasy); fprintf(stderr,"# One-sided P-value: Pr{stat1){ fprintf(stderr,"WARNING (%s): data not from a distribution function, NAN is returned.\n",GB_PROGNAME); result=NAN; } else{ for(i=0;iresult) result = dtmp1; } } return result; } double Dminus_pscore(const double statistic, const size_t size) { const size_t maxindex = (size_t) floor(size*(1-statistic)); const double N = (double) size; const double stat = statistic*sqrt(N); const double Gasy=1-exp(-2.*stat*stat); size_t i; double G=0; double G_smallcontrib=0; for(i=0;i1){ fprintf(stderr,"# Observed D- %g\n",statistic); fprintf(stderr,"# Sample size %zd\n",size); fprintf(stderr,"# Standardized score %g\n",stat); fprintf(stderr,"# Exact inference:\n"); fprintf(stderr,"# One-sided P-value: Pr{stat>D-} %g\n",1-G); fprintf(stderr,"# One-sided P-value: Pr{statD-} %g\n",1-Gasy); fprintf(stderr,"# One-sided P-value: Pr{stat1){ fprintf(stderr,"WARNING (%s): data not from a distribution function, NAN is returned.\n",GB_PROGNAME); result=NAN; } else{ for(i=0;idtmp2 && dtmp1>result) result = dtmp1; else if(dtmp2>result) result = dtmp2; } } return result; } double Qks(double x){ /* computation of Qks(x) */ const double x2 = -2.0*x*x; double const eps1=10*DBL_EPSILON; double const eps2=DBL_EPSILON; int i=1; double fac=2.0,sum=0.0,term=0.0,absterm=0.0; do{ absterm=fabs(term); /* previous term absolute value */ term=fac*exp(x2*i*i); /* new term */ sum += term; /* terms sum */ fac = -fac; /* change sign of the next term */ i++; } while(fabs(term) > eps1*absterm && fabs(term) > eps2*sum); return sum; } double D_pscore(const double statistic, const size_t size) { const double eff_size =sqrt(size); const double stat = (eff_size+0.12+0.11/eff_size)*statistic ; const double statasy = eff_size*statistic ; const double qks = Qks(stat); const double qksasy = Qks(statasy); /* +++++++++++++++++++++++++++++++++++++ */ if(O_Verbose>1){ fprintf(stderr,"# Observed D %g\n",statistic); fprintf(stderr,"# Sample size %zd\n",size); fprintf(stderr,"# Asymptotic standardized score %g\n",statasy); fprintf(stderr,"# Small-sample corrected score %g\n",stat); fprintf(stderr,"# Small-sample corrected inference:\n"); fprintf(stderr,"# One-sided P-value: Pr{stat>D} %g\n",qks); fprintf(stderr,"# One-sided P-value: Pr{statD} %g\n",qksasy); fprintf(stderr,"# One-sided P-value: Pr{stat1){ fprintf(stderr,"WARNING (%s): data not from a distribution function, NAN is returned.\n",GB_PROGNAME); result=NAN; } else{ for(i=0;iDplus) Dplus = dtmp1; } for(i=0;iDminus) Dminus = dtmp1; } result=Dplus+Dminus; } return result; } double W2_test(double * data, const size_t size) { size_t i; double result=0; /* sort data if needed */ if(Is_Data_Sorted==0) qsort(data,size,sizeof(double),sort_by_value); /* check that data are from a distribution function */ if(data[0]<0 || data[size-1]>1){ fprintf(stderr,"WARNING (%s): data not from a distribution function, NAN is returned.\n",GB_PROGNAME); result=NAN; } else{ for(i=0;i1){ fprintf(stderr,"WARNING (%s): data not from a distribution function, NAN is returned.\n",GB_PROGNAME); result=NAN; } else{ for(i=0;i1){ fprintf(stderr,"WARNING (%s): data not from a distribution function, NAN is returned.\n",GB_PROGNAME); result=NAN; } else{ for(i=0;i1){ fprintf(stderr,"# Observed T %g\n",statistic); fprintf(stderr,"# Degrees of freedom %zd\n",size-1); fprintf(stderr,"# Asymptotic inference:\n"); fprintf(stderr,"# One-sided P-value: Pr{stat>T} %g\n", gsl_cdf_tdist_Q (statistic,size-1.0)); fprintf(stderr,"# One-sided P-value: Pr{stat|T|} %g\n", 2*gsl_cdf_tdist_Q (fabs(statistic),size-1.)); } /* +++++++++++++++++++++++++++++++++++++ */ return 2*gsl_cdf_tdist_Q (fabs(statistic),size-1.); } #else double Tsingle_pscore(const double statistic, const size_t size) { return NAN; } #endif /* Paired samples tests */ /* -------------------- */ double WILCO2_test(const double * const data1, const double * const data2, const size_t size) { size_t i,j; double res=0.0; Indexed *alldata = (Indexed *) my_alloc(sizeof(Indexed)*size); /* zero entries are discarded */ j=0; for(i=0;i0){ /* positive entry */ alldata[j].sample = 1; alldata[j].data = dtmp; j++; } } WILCOsize=j; alldata = (Indexed *) my_realloc(alldata,WILCOsize*sizeof(Indexed)); /* sort pooled data */ qsort(alldata,WILCOsize,sizeof(Indexed),sort_indexed_by_value); /* for(i=0;i0){ tgroups++; tgroup = (size_t *) my_realloc((void *) tgroup,tgroups*sizeof(size_t)); tgroup[tgroups-1] = equals+1; for(j=i;j1){ fprintf(stderr,"# Size of the sample %zd\n",size); fprintf(stderr,"# Observed Pearson's R %g\n",statistic); fprintf(stderr,"# Asymptotic inference:\n"); fprintf(stderr,"# Negative correlation P-value: Pr{statR} %g\n", gsl_cdf_ugaussian_Q (stat)); fprintf(stderr,"# Any correlation P-value: Pr{|stat|>|R|} %g\n", 2*gsl_cdf_ugaussian_Q (fabs(stat))); } /* +++++++++++++++++++++++++++++++++++++ */ return 2.0*gsl_cdf_ugaussian_Q (fabs(stat)); } #else double R_pscore(const double statistic, const size_t size) { return NAN; } #endif #if defined HAVE_LIBGSL double RHO_test(const double * const data1, const double * const data2, const size_t size) { size_t i,j; size_t *temp = (size_t *) my_alloc(sizeof(size_t)*size); size_t equal=0; double *rank1 = (double *) my_alloc(sizeof(double)*size); double *rank2 = (double *) my_alloc(sizeof(double)*size); double s1=0.0,s2=0.0,s12=0.0; const double dtmp1 = size*((size+1.0)/2.0)*((size+1.0)/2.0); /* used to collect statistics on ties */ tgroup = (size_t *) my_realloc((void *) tgroup,2*sizeof(size_t)); gsl_sort_index (temp,data1,1,size); /* correct for ties */ tgroup[0]=0; for (i=0;i1){ fprintf(stderr,"# Number of X ties group %zd\n",tgroup[0]); fprintf(stderr,"# Number of Y ties group %zd\n",tgroup[1]); fprintf(stderr,"# Observed Spearman's RHO %g\n",statistic); fprintf(stderr,"# Standardized RHO %g\n",stat); fprintf(stderr,"# Asymptotic inference:\n"); fprintf(stderr,"# Negative correlation P-value: Pr{statRHO} %g\n", gsl_cdf_ugaussian_Q (stat)); fprintf(stderr,"# Any correlation P-value: Pr{|stat|>|RHO|} %g\n", 2*gsl_cdf_ugaussian_Q (fabs(stat))); } /* +++++++++++++++++++++++++++++++++++++ */ return 2.0*gsl_cdf_ugaussian_Q (fabs(stat)); } #else double RHO_test(const double * const data1, const double * const data2, const size_t size) { return NAN; } double RHO_pscore(const double statistic,const size_t size) { return NAN; } #endif double TAU_test(const double * const data1, const double * const data2, const size_t size) { size_t i,j; double con=0,dis=0; /* used to collect statistics on ties */ tgroup = (size_t *) my_realloc((void *) tgroup,2*sizeof(size_t)); tgroup[0]=tgroup[1]=0; for (i=0;i0) con+=1; else if (dtmp1<0) dis+=1; else if(data2[i]-data2[j] == 0){ con += 0.5; dis += 0.5; tgroup[1]++; } else tgroup[0]++; } /* correct for ties */ /* printf("####%f %f\n", con,dis); */ return (con-dis)/(con+dis); } #if defined HAVE_LIBGSL double TAU_pscore(const double statistic, const size_t size) { /* compute K coefficient */ /* const double K = statistic*(size*(size-1)/2-tgroup[0])-1; */ /* compute standardized statistics */ const double stat = 3*statistic*sqrt( (size*(size-1.))/(2*(2*size+5.)) ); /* const double statK = K/sqrt( size*(size-1.)*(2*size+5.)/18); */ /* +++++++++++++++++++++++++++++++++++++ */ if(O_Verbose>1){ fprintf(stderr,"# Number of X ties group %zd\n",tgroup[0]); fprintf(stderr,"# Number of Y ties group %zd\n",tgroup[1]); fprintf(stderr,"# Observed Kendall's TAU %g\n",statistic); fprintf(stderr,"# Standardized TAU %g\n",stat); /* fprintf(stderr,"# Observed Kendall's K %g\n",K); */ /* fprintf(stderr,"# Standardized K %g\n",statK); */ fprintf(stderr,"# Asymptotic inference based on TAU:\n"); fprintf(stderr,"# Negative correlation P-value: Pr{statTAU} %g\n", gsl_cdf_ugaussian_Q (stat)); fprintf(stderr,"# Any correlation P-value: Pr{|stat|>|TAU|} %g\n", 2*gsl_cdf_ugaussian_Q (fabs(stat))); /* fprintf(stderr,"# Asymptotic inference based on K:\n"); */ /* fprintf(stderr,"# Negative correlation P-value: Pr{statW} %g\n", */ /* gsl_cdf_ugaussian_Q (statK)); */ /* fprintf(stderr,"# Any correlation P-value: Pr{|stat|>|W|} %g\n", */ /* 2*gsl_cdf_ugaussian_Q (fabs(statK))); */ } /* +++++++++++++++++++++++++++++++++++++ */ return 2.0*gsl_cdf_ugaussian_Q (fabs(stat)); } #else double TAU_pscore(const double statistic, const size_t size1, const size_t size2) { return NAN; } #endif double CHI2_2_test(const double * const data1, const double * const data2, const size_t size) { size_t i; double tot1=0.0,tot2=0.0,res=0.0,dtmp1,dtmp2; for(i=0;i0){ const double dtmp3 = (dtmp1*data1[i]-dtmp2*data2[i]); res += dtmp3*dtmp3/(data1[i]+data2[i]); } return res; } #if defined HAVE_LIBGSL double CHI2_2_pscore(const double statistic, const size_t size) { /* +++++++++++++++++++++++++++++++++++++ */ if(O_Verbose>1){ fprintf(stderr,"# Observed T %g\n",statistic); fprintf(stderr,"# Degrees of freedom %zd\n",size-1); fprintf(stderr,"# Asymptotic inference:\n"); fprintf(stderr,"# Two-sided P-value: Pr{stat>T} %g\n", gsl_cdf_chisq_Q (statistic,size-1)); } /* +++++++++++++++++++++++++++++++++++++ */ return gsl_cdf_chisq_Q (statistic,size-1); } #else double CHI2_2_pscore(const double statistic, const size_t size1, const size_t size2) { return NAN; } #endif double Tpaired_test(const double * const data1, const double * const data2, const size_t size) { size_t i; double mean, var, error; /* compute the mean and standard deviation of the difference */ /* compute the statistics */ mean=0; for(i=0;i1){ fprintf(stderr,"# Observed T %g\n",statistic); fprintf(stderr,"# Degrees of freedom %zd\n",size-1); fprintf(stderr,"# Asymptotic inference:\n"); fprintf(stderr,"# One-sided P-value: Pr{stat>T} %g\n", gsl_cdf_tdist_Q (statistic,size-1.0)); fprintf(stderr,"# One-sided P-value: Pr{stat|T|} %g\n", 2*gsl_cdf_tdist_Q (fabs(statistic),size-1.0)); } /* +++++++++++++++++++++++++++++++++++++ */ return 2*gsl_cdf_tdist_Q (fabs(statistic),size-1.0); } #else double Tpaired_pscore(const double statistic, const size_t size1, const size_t size2) { return NAN; } #endif /* Two sample tests */ /* ---------------- */ double F_test(double * data1, const size_t size1, double * data2, const size_t size2) { size_t i; double mean1,mean2,var1,var2,error; /* compute the statistics */ mean1=mean2=0; for(i=0;i1){ fprintf(stderr,"# Degrees of freedom: %zd / %zd\n",size1,size2); fprintf(stderr,"# Variances %g / %g\n",var1,var2); } /* +++++++++++++++++++++++++++++++++++++ */ return var1/var2; } #if defined HAVE_LIBGSL double F_pscore(const double statistic, const size_t size1, const size_t size2) { const double twotailed = ( statistic > (size2-1.)/(size2-3.) ? 2.*gsl_cdf_fdist_Q (statistic,size1-1.,size2-1.): 2.*gsl_cdf_fdist_P (statistic,size1-1.,size2-1.)); /* +++++++++++++++++++++++++++++++++++++ */ if(O_Verbose>1){ fprintf(stderr,"# Observed (expected) F %g (%g)\n", statistic,(size2-1.)/(size2-3.)); fprintf(stderr,"# Asymptotic inference:\n"); fprintf(stderr,"# One-sided P-value: Pr{statF} %g\n", gsl_cdf_fdist_Q (statistic,size1-1.,size2-1.) ); fprintf(stderr,"# Two-sided P-value: Pr{|stat|>|F|} %g\n", twotailed); } /* +++++++++++++++++++++++++++++++++++++ */ return twotailed; } #else double F_pscore(const double statistic, const size_t size1, const size_t size2) { return NAN; } #endif double Thetero_test(double * data1, const size_t size1, double * data2, const size_t size2) { size_t i; double mean1,mean2,var1,var2,error; double res; /* compute the statistics */ mean1=mean2=0; for(i=0;i1){ fprintf(stderr,"# Size of the first sample %zd\n",size1); fprintf(stderr,"# Size of the second sample %zd\n",size2); fprintf(stderr,"# Observed T %g\n",statistic); fprintf(stderr,"# Degrees of freedom %g\n",TdiffV_dof); fprintf(stderr,"# Asymptotic inference:\n"); fprintf(stderr,"# One-sided P-value: Pr{stat>T} %g\n", gsl_cdf_tdist_Q (statistic,TdiffV_dof)); fprintf(stderr,"# One-sided P-value: Pr{stat|T|} %g\n", 2*gsl_cdf_tdist_Q (fabs(statistic),TdiffV_dof)); } /* +++++++++++++++++++++++++++++++++++++ */ return 2*gsl_cdf_tdist_Q (fabs(statistic),TdiffV_dof); } #else double Thetero_pscore(const double statistic, const size_t size1, const size_t size2) { return NAN; } #endif double Thomo_test(double * data1, const size_t size1, double * data2, const size_t size2) { size_t i; double mean1,mean2,var1,var2,error; double res; /* compute the statistics */ mean1=mean2=0; for(i=0;i1){ fprintf(stderr,"# Observed T %g\n",statistic); fprintf(stderr,"# Degrees of freedom %zd\n",size1+size2-2); fprintf(stderr,"# Asymptotic inference:\n"); fprintf(stderr,"# One-sided P-value: Pr{stat>T} %g\n", gsl_cdf_tdist_Q (statistic,size1+size2-2.0)); fprintf(stderr,"# One-sided P-value: Pr{stat|T|} %g\n", 2*gsl_cdf_tdist_Q (fabs(statistic),size1+size2-2.0)); } /* +++++++++++++++++++++++++++++++++++++ */ return 2*gsl_cdf_tdist_Q (fabs(statistic),size1+size2-2.0); } #else double Thomo_pscore(const double statistic, const size_t size1, const size_t size2) { return NAN; } #endif /* Wilcoxon-Mann-Whitney U */ double WMW_test(double * data1, const size_t size1, double * data2, const size_t size2) { size_t i,j; double rank2=0.0; const size_t N = size1+size2; Indexed *alldata = (Indexed *) my_alloc(sizeof(Indexed)*N); /* contains pooled data */ /* set the pooled data */ for(i=0;i0){ tgroups++; tgroup = (size_t *) my_realloc((void *) tgroup,tgroups*sizeof(size_t)); tgroup[tgroups-1] = equals+1; for(j=i;j0){ double dtmp1=0.0; for(i=0;i1){ if(tgroups>0) fprintf(stderr,"# Number of ties group(s) %zd\n",tgroups); fprintf(stderr,"# Observed Mann-Whitney U %g\n", statistic); fprintf(stderr,"# Large sample mean %g\n",mean); fprintf(stderr,"# Large sample std. dev. %g\n",stdev); fprintf(stderr,"# Standardized U %g\n",stat); fprintf(stderr,"# Asymptotic inference:\n"); fprintf(stderr,"# One-sided P-value: Pr{statW} %g\n", gsl_cdf_ugaussian_Q (stat)); fprintf(stderr,"# Two-sided P-value: Pr{|stat|>|W|} %g\n", 2*gsl_cdf_ugaussian_Q (fabs(stat))); } /* +++++++++++++++++++++++++++++++++++++ */ return 2.0*gsl_cdf_ugaussian_Q (fabs(stat)); } #else double WMW_pscore(const double statistic, const size_t size1, const size_t size2) { return NAN; } #endif double FP_test(double * data1, const size_t size1, double * data2, const size_t size2) { size_t i,j; double *rank1 = (double *) my_alloc(sizeof(double)*size1); double *rank2 = (double *) my_alloc(sizeof(double)*size2); double mean1,mean2,var1,var2,error; double res; /* sort data if needed */ if(Is_Data_Sorted==0){ qsort(data1,size1,sizeof(double),sort_by_value); qsort(data2,size2,sizeof(double),sort_by_value); } for(i=0;i1){ if(tgroups>0) fprintf(stderr,"# Number of ties group(s) %zd\n",tgroups); fprintf(stderr,"# Observed Standardized U %g\n",statistic); fprintf(stderr,"# Asymptotic inference:\n"); fprintf(stderr,"# One-sided P-value: Pr{statU} %g\n", gsl_cdf_ugaussian_Q (statistic)); fprintf(stderr,"# Two-sided P-value: Pr{|stat|>|U|} %g\n", 2*gsl_cdf_ugaussian_Q (fabs(statistic))); } /* +++++++++++++++++++++++++++++++++++++ */ return 2.0*gsl_cdf_ugaussian_Q (fabs(statistic)); } #else double FP_pscore(const double statistic, const size_t size1, const size_t size2) { return NAN; } #endif double KS_test(double * data1, const size_t size1, double * data2, const size_t size2) { size_t i1=0,i2=0; double d1,d2,adiff,F1=0.0,F2=0.0,res=0.0; /* sort data if needed */ if(Is_Data_Sorted==0){ qsort(data1,size1,sizeof(double),sort_by_value); qsort(data2,size2,sizeof(double),sort_by_value); } while (i1 < size1 && i2 < size2) { d1=data1[i1]; d2=data2[i2]; if (d1 <= d2) F1=i1++/((double) size1); if (d2 <= d1) F2=i2++/((double) size2); adiff = fabs(F1-F2); if (adiff > res) res=adiff; } return res; } double KS_pscore(const double statistic, const size_t size1, const size_t size2) { const double eff_size =sqrt(((double) size1*size2)/( (double) size1+size2)); const double x = (eff_size+0.12+0.11/eff_size)*statistic ; /* computation of Qks(x) */ const double x2 = -2.0*x*x; double const eps1=10*DBL_EPSILON; double const eps2=DBL_EPSILON; int i=1; double fac=2.0,sum=0.0,term=0.0,absterm=0.0; do{ absterm=fabs(term); /* previous term absolute value */ term=fac*exp(x2*i*i); /* new term */ sum += term; /* terms sum */ fac = -fac; /* change sign of the next term */ i++; } while(fabs(term) > eps1*absterm && fabs(term) > eps2*sum); /* +++++++++++++++++++++++++++++++++++++ */ if(O_Verbose>1){ fprintf(stderr,"# Observed KS %g\n",statistic); fprintf(stderr,"# Effective Size %g\n",eff_size*eff_size); fprintf(stderr,"# Asymptotic inference:\n"); fprintf(stderr,"# Two-sided P-value: Pr{stat>KS} %g\n",sum); } /* +++++++++++++++++++++++++++++++++++++ */ return sum; } /* Many samples tests */ /* ------------------ */ double CHI2_N_test (double ** const data,const size_t *const length, const size_t smpls){ /* all columns have equal length */ const size_t ctgs=length[0]; size_t i,j; double C[ctgs]; /* */ double N[smpls]; double Ntot; double res=0.0; for(i=0;i1){ fprintf(stderr,"# Observed T %g\n",statistic); fprintf(stderr,"# Degrees of freedom %zd\n",(smpls-1)*(length[0]-1)); fprintf(stderr,"# Asymptotic inference:\n"); fprintf(stderr,"# Two-sided P-value: Pr{stat>T} %g\n", gsl_cdf_chisq_Q (statistic,(smpls-1)*(length[0]-1)) ); } /* +++++++++++++++++++++++++++++++++++++ */ return gsl_cdf_chisq_Q (statistic,(smpls-1)*(length[0]-1)); } #else double CHI2_N_pscore(const double statistic, const size_t * const length, const size_t K){ return NAN; } #endif double KW_test (double ** const data,const size_t *const length, const size_t K){ size_t i,j,h; size_t N=0; /* total number of observations */ Indexed *alldata; /* contains pooled data */ double *ranks = (double *) my_alloc(sizeof(double)*K); /* average rank of the different samples */ double res=0; /* allocate and set the pooled data */ for(i=0;i0){ tgroups++; tgroup = (size_t *) my_realloc((void *) tgroup,tgroups*sizeof(size_t)); tgroup[tgroups-1] = equals+1; for(j=i;j0){ double dtmp1=0.0; for(i=0;i1){ fprintf(stderr,"# Kruskal-Wallis multi-sample statistics\n"); fprintf(stderr,"# Size of the sample %zd\n",*length); if(tgroups>0) fprintf(stderr,"# Number of ties group(s) %zd\n",tgroups); fprintf(stderr,"# Observed Standardized H %g\n",statistic); fprintf(stderr,"# Degrees of freedom %zd\n",K-1); fprintf(stderr,"# Asymptotic inference:\n"); fprintf(stderr,"# P-value: Pr{stat>W} %g\n", gsl_cdf_chisq_Q (statistic,K-1)); } /* +++++++++++++++++++++++++++++++++++++ */ return gsl_cdf_chisq_Q (statistic,K-1); } #else double KW_pscore(const double statistic, const size_t * const length, const size_t K){ return NAN; } #endif double LEVENE_test (double ** const data,const size_t *const length, const size_t K){ size_t i,j; double numerator,denominator; double *means = my_alloc(sizeof(double)*K); double mean; size_t totlen; /* compute the statistics */ mean=0.0; totlen=0; for(j=0;j1){ fprintf(stderr,"# Number of observations %zd\n",totlen); fprintf(stderr,"# Number of groups %zd\n",K); } /* +++++++++++++++++++++++++++++++++++++ */ /* de-allocate */ free(means); return ((totlen-K)*numerator)/((K-1)*denominator); } double LEVENE_pscore(const double statistic, const size_t * const length, const size_t K){ size_t i,totlen; totlen=0; for(i=0;i1){ fprintf(stderr,"# Observed (expected) W %g (%g)\n", statistic,(totlen-K)/(totlen-K-2.)); fprintf(stderr,"# Asymptotic inference:\n"); fprintf(stderr,"# P-value: Pr{stat>W} %g\n", gsl_cdf_fdist_Q (statistic,K-1,totlen-K)); } /* +++++++++++++++++++++++++++++++++++++ */ return gsl_cdf_fdist_Q (statistic,K-1,totlen-K); } /* Generic functions to run tests */ /* ------------------------------ */ void run_onesample( char *testname, double (*test) (double *, const size_t), double (*pscore) (const double, const size_t), double ** const data,const size_t * const length, const size_t columns) { double *res = (double *) my_alloc(2*columns*sizeof(double)); size_t i; size_t column; double statistic,significance; /* ++++++++++++++++++++++++++++++ */ if (O_Verbose>0){ fprintf(stderr,"# %s\n",testname); } /* ++++++++++++++++++++++++++++++ */ /* for all columns */ for(i=0;i1 && columns > 1) fprintf(stderr,"# columns %zd: %zd\n",i,len); /* ++++++++++++++++++++++++++++++++++++++++++++ */ /* compute statistics */ res[i] = test(data1,len); /* compute p-score */ if(O_Significance == 1){ if(pscore == NULL) res[columns+i] = NAN; else res[columns+i] = pscore(res[i],len); } free(data1); } /* print results */ if(O_Significance == 0){ if(O_Verbose>0) printf("#statistic\n"); for(i=0;i0) printf("#statistic\tp-score\n"); for(i=0;i0){ fprintf(stderr,"# %s\n",testname); } /* ++++++++++++++++++++++++++++++ */ /* for the couples of columns */ for(i1=0;i11 && columns >2){ fprintf(stderr,"# === Columns %zd %zd\n",i1+1,i2+1); } /* ++++++++++++++++++++++++++++++++++++++++++++ */ /* compute statistics */ res[i2*columns+i1] = test(data1,data2,len); /* compute p-score */ if(O_Significance == 1){ if(pscore == NULL) res[i1*columns+i2] = NAN; else res[i1*columns+i2] = pscore(res[i2*columns+i1],len); } free(data1); free(data2); } } /* print results */ if(O_Significance == 0 && columns==2){ if(O_Verbose>0) printf("#statistic\n"); printf(FLOAT_NL,res[2]); } else if(O_Significance == 0 && columns>2){ for(i1=1;i10) printf("#statistic\tp-score\n"); printf(FLOAT_SEP,res[2]); printf(FLOAT_NL,res[1]); } else if (O_Significance == 1 && columns>2){ for(i1=0;i10){ fprintf(stderr,"# %s\n",testname); } /* ++++++++++++++++++++++++++++++ */ /* for the couples of columns */ for(i1=0;i11 && columns >2) fprintf(stderr,"# === Columns %zd %zd\n",i1+1,i2+1); /* ++++++++++++++++++++++++++++++++++++++++++++ */ /* compute statistics */ res[i2*columns+i1] = test(data1,len1,data2,len2); /* compute p-score */ if(O_Significance == 1){ if(pscore == NULL) res[i1*columns+i2] = NAN; else res[i1*columns+i2] = pscore(res[i2*columns+i1],len1,len2); } free(data1); free(data2); } } /* print results */ if(O_Significance == 0 && columns==2){ if(O_Verbose>0) printf("#statistic\n"); printf(FLOAT_NL,res[2]); } else if(O_Significance == 0 && columns>2){ for(i1=1;i10) printf("#statistic\tp-score\n"); printf(FLOAT_SEP,res[2]); printf(FLOAT_NL,res[1]); } else if (O_Significance == 1 && columns>2){ for(i1=0;i11){ fprintf(stderr,"# %s\n",testname); } /* ++++++++++++++++++++++++++++++ */ statistic = test(data,length,columns); if(O_Significance == 1){ printf(FLOAT_SEP,statistic); if(pscore == NULL) significance = NAN; else significance = pscore(statistic,length,columns); printf(FLOAT_NL,significance); } else printf(FLOAT_NL,statistic); } int main(int argc,char* argv[]){ size_t rows=0,columns=0,column; size_t *length; double **data=NULL; /* binary options */ int o_binary_in=0; size_t stat,i; char *splitstring = strdup(" \t"); /* variables for reading command line options */ /* ------------------------------------------ */ int opt; /* ------------------------------------------ */ /* COMMAND LINE PROCESSING */ while((opt=getopt_long(argc,argv,"hF:v:spb:o:",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='h'){ /*print help*/ fprintf(stdout,"Compute statistical tests on data. Each test is specified by a unique\n"); fprintf(stdout,"name and optional parameters follows, separated by commas. Depending\n"); fprintf(stdout,"on the test, one, two or three columns of data are expected. '1 sample'\n"); fprintf(stdout,"tests expect a single columns. Test on 'pairs' expect two columns of\n"); fprintf(stdout,"equal length. Test on '2 samples' expect two columns of data, possibly\n"); fprintf(stdout,"of different length. Test on 2+ and 3+ samples expect a varying number of\n"); fprintf(stdout,"columns. If more columns are provided, the test is repeated for any\n"); fprintf(stdout,"column in the case of 1 sample test, and any couple of columns in the case\n"); fprintf(stdout,"of 2 sample tests. In the last case, the output is expressed in matrix\n"); fprintf(stdout,"format, with estimated statistics on the lower triangle and p-scores\n"); fprintf(stdout,"(if requested) on the upper. The removal of 'nan' entries is automatic,\n"); fprintf(stdout,"and is performed consistently with the nature of the test.\n"); fprintf(stdout,"\nUsage: %s [options] \n\n",argv[0]); fprintf(stdout,"Tests typically assume 1, 2 or 3+ samples. Available tests are:\n\n"); fprintf(stdout," D+,D-,D,V 1 samp Kolmogorov-Smirnov tests on cumulated data \n"); fprintf(stdout," W2,A2,U2 1 samp Cramer-von Mises tests on cumulated data \n"); fprintf(stdout," CHI2-1 1 samp Chi-Sqrd, 1 samp. 2nd column: th. prob. \n"); fprintf(stdout," WILCO 1 samp Wilcoxon signed-rank test (mode=0) \n"); fprintf(stdout," TS 1 samp Student's T (mean=0) \n"); fprintf(stdout," TR-TP 1 samp Test of randomness: turning points \n"); fprintf(stdout," TR-DS 1 samp Test of randomness: difference sign \n"); fprintf(stdout," TR-RT 1 samp Test of randomness: rank test \n"); fprintf(stdout," R pairs Pearson's correlation coefficient \n"); fprintf(stdout," RHO pairs Spearman's Rho rank correlation \n"); fprintf(stdout," TAU pairs Kendall's Tau correlation \n"); fprintf(stdout," CHI2-2 pairs Chi-Sqrd, 2 samples \n"); fprintf(stdout," TP pairs Student's T with paired samples \n"); fprintf(stdout," WILCO2 pairs Wilcoxon test on paired samples \n"); fprintf(stdout," KS 2 samp Kolmogorov-Smirnov test \n"); fprintf(stdout," T 2 samp Student's T with same variances \n"); fprintf(stdout," TH 2 samp Student's T with different variances \n"); fprintf(stdout," F 2 samp F-Test for different variances \n"); fprintf(stdout," WMW 2 samp Wilcoxon-Mann-Whitney U \n"); fprintf(stdout," FP 2 samp Fligner-Policello standardized U^ \n"); fprintf(stdout," LEV-MEAN 2+ samp Levene equality of variances using means \n"); fprintf(stdout," LEV-MED 2+ samp Levene equality of variances using medians \n"); fprintf(stdout," KW 3+ samp Kruscal-Wallis test on 3+ samples \n"); fprintf(stdout," CHI2-N 3+ samp Multi-columns contingency table analysis \n"); fprintf(stdout,"Options:\n"); fprintf(stdout," -p compute associated significance\n"); fprintf(stdout," -s input data are already sorted in ascending order\n"); fprintf(stdout," -F specify the input fields separators (default \" \\t\") \n"); fprintf(stdout," -o set the output format (default '%%12.6e') \n"); fprintf(stdout," -v verbosity: 0 none, 1 headings, 2+ description (default 0) \n"); fprintf(stdout," -h this help\n"); fprintf(stdout,"Examples:\n"); fprintf(stdout," gbtest FP < file compute the Fligner-Policello test on the columns\n"); fprintf(stdout," of 'file', considering all possible pairings.\n"); fprintf(stdout," gbtest KW -p < file compute the Kruscal-Wallis test and its p-score\n"); fprintf(stdout," on the first three columns of data in 'file' \n"); finalize_program(); return(0); } else if(opt=='F'){ /*set the fields separator string*/ free(splitstring); splitstring = strdup(optarg); } else if(opt=='v'){ O_Verbose=(unsigned) atoi(optarg); } else if(opt=='p'){ O_Significance=1; } else if(opt=='s'){ Is_Data_Sorted=1; } else if(opt=='b'){ /*set binary input or output*/ switch(atoi(optarg)){ case 0 : break; case 1 : o_binary_in=1; break; case 2 : fprintf(stderr,"no binary output implemented, option ignored.\n"); break; case 3 : o_binary_in=1; fprintf(stderr,"no binary output implemented, option ignored.\n"); break; default: fprintf(stderr,"unclear binary specification %d, option ignored.\n",atoi(optarg)); break; } } else if(opt=='o'){ /*set the ouptustring */ FLOAT = strdup(optarg); } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); /* load data as a matrix: all column have the first rows. Missing data are replaced with NAN*/ if(o_binary_in==1) loadtable_bin(&data,&rows,&columns,0); else{ loadtable(&data,&rows,&columns,0,splitstring); free(splitstring); } length =(size_t *) my_alloc(sizeof(size_t)*columns); for(i=0;i1) fprintf(stderr,"# loaded %zdx%zd data table\n",rows,columns); /*+++++++++++++++++++++++++++++++++++++++*/ /*+++++++++++++++++++++++++++++++++++++++*/ /* if(O_Verbose>1){ */ /* for(column=0;column2){ fprintf(stderr,"ERROR (%s): need exactly two columns",GB_PROGNAME); exit(-1); } else if(length[0] != length[1]){ fprintf(stderr,"ERROR (%s): columns must contain the same number of rows",GB_PROGNAME); exit(-1); } /* pairs denan */ denan_pairs(&(data[0]),&(data[1]),&(length[0])); length[1]=length[0]; /* ++++++++++++++++++++++++++++++ */ if(O_Verbose==1){ printf("#CHI^2 one-sample statistic"); if(O_Significance == 1) printf("\tp-score"); printf("\n"); } /* ++++++++++++++++++++++++++++++ */ statistic=chi2_onesample(data,length[0]); if(O_Significance == 1){ printf(FLOAT_SEP,statistic); #if defined HAVE_LIBGSL significance = gsl_cdf_chisq_Q (statistic,length[0]-1); #else significance = NAN; #endif printf(FLOAT_NL,significance); } else printf(FLOAT_NL,statistic); } else if(NAME("R")){ run_pairs("Pearson's R 2-sample correlation", R_test,R_pscore,data,length,columns); } else if(NAME("RHO")){ run_pairs("Spearman's Rho 2-sample rank correlation (with ties)", RHO_test,RHO_pscore,data,length,columns); } else if(NAME("TAU")){ run_pairs("Kendall's Tau 2-sample rank correlation (with ties)", TAU_test,TAU_pscore,data,length,columns); } else if(NAME("CHI2-2")){ run_pairs("Chi^2 Test; 2-samples",CHI2_2_test,CHI2_2_pscore,data,length,columns); } else if(NAME("TP")){ run_pairs("Student's T test; paired observations", Tpaired_test,Tpaired_pscore,data,length,columns); } else if(NAME("WILCO2")){ run_pairs("Wilcoxon signed-rank test for paired observations", WILCO2_test,WILCO_pscore,data,length,columns); } else if(NAME("KS")) { run_twosamples("Kolmogorov-Smirnov Test; 2-samples", KS_test,KS_pscore,data,length,columns); } else if(NAME("WMW")){ run_twosamples("Wilcoxon-Mann-Whitney 2-sample rank sum statistics", WMW_test,WMW_pscore,data,length,columns); } else if(NAME("F")){ run_twosamples("F-Test for difference in variance",F_test,F_pscore,data,length,columns); } else if(NAME("T")){ run_twosamples("Student's T test; 2 samples with same variance", Thomo_test,Thomo_pscore,data,length,columns); } else if(NAME("TH")){ run_twosamples("Student's T test; 2 samples with different variance", Thetero_test,Thetero_pscore,data,length,columns); } else if(NAME("FP")){ run_twosamples("Fligner-Policello 2-sample rank sum statistics", FP_test,FP_pscore,data,length,columns); } else if(NAME("KW")){ size_t i,j; if(columns<3){ fprintf(stderr,"ERROR (%s): Kruskal-Wallis test applies only to 3 or more samples.\n", GB_PROGNAME); exit(-1); } /* denan */ for(i=0;i\/\fR .SH DESCRIPTION Generate a grid using function f(r,c) where r is the row index and c is the column index. Indeces start from 1. If more than one function are provided they are printed one after the other. .SH OPTIONS .TP \fB\-c\fR specify number of rows (default 10) .TP \fB\-r\fR specify number of columns (default 10) .TP \fB\-o\fR set the output format (default '%12.6e') .TP \fB\-v\fR verbose mode .TP \fB\-h\fR this help .SH EXAMPLES .TP gbgrid \-c 1 \-r 10 r+c generates a vector with elements equal to the sum of the row and column indexes .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/gbplot.10000644000175000017500000000564213147510355011502 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBPLOT "1" "August 2017" "gbplot ver. 5.6" "User Commands" .SH NAME gbplot \- gnuplot command line interface .SH SYNOPSIS .B gbplot [\fI\,options\/\fR] [\fI\,command\/\fR] [\fI\,specstring\/\fR] \fI\,< datafile\/\fR .SH DESCRIPTION This command produce simple plots from the command line using the \&'gnuplot' program. 'comand' is one of the gnuplot commands: 'plot' or \&'splot' while 'specstring' is a list of gnuplot specifications. In order to escape shell interpretation place 'specstring' between double quotes. It is possible to specify the type of terminal and output file name as command line options. It is also possible to start an interactive session, useful to adjust plot parameters by hand. The program can be used in a shell pipe, as in .PP cat datafile | gbplot [options] [command] [specstring] .SH OPTIONS .HP \fB\-h\fR print this help .HP \fB\-i\fR start interactive session after the plot .HP \fB\-T\fR set a different terminal .HP \fB\-o\fR set an ouptut file .HP \fB\-t\fR assign a title to the plot .HP \fB\-p\fR prepend expression to plot command .HP \fB\-l\fR set log; possible values x,y and xy .HP \fB\-C\fR command to be run before the plot .HP \fB\-v\fR verbose output: print commands to standard error .TP \fB\-\-help\fR same as '\-h' .HP \fB\-\-version\fR print the program version .SH EXAMPLES Two plots: one using line and one using points. .IP echo "1\en2\en3" | gbplot plot "u 0:1 w l title 'line', '' u 0:1 w p title 'point'" .PP Save the plot in PDF format in a file named 'test.pdf' .IP echo "1\en2\en3" | gbplot \-T pdf \-o test.pdf plot "u 0:1 w l title 'line'" .PP Set log on the y axis .IP echo "1\en2\en3" | gbplot \-l y plot "u 0:1 w l title 'line', '' u 0:1 w p title 'point'" .PP Set log on the x axis and a grid .IP echo "1\en2\en3" | gbplot \-l x \-C "set grid" plot "u 0:1 w l title 'line', '' u 0:1 w p title 'point'" .PP Set a grid and the position of the legend .IP echo "1\en2\en3" | gbplot \-C "set grid" \-C "set key bottom right" plot "u 0:1 w l title 'line', '' u 0:1 w p title 'point'" .PP Compute the value of the gamma function on a set of points; gawk is used to filer the relevant numbers .IP echo "1\en2\en3" | gbplot \-C "set table" plot 'u (gamma(\-\-help))' | gawk '/ i/{print }' .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .br Package home page .SH COPYRIGHT Copyright \(co 2009\-2014 Giulio Bottazzi .PP This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation. .PP 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. gbutils-5.7.1/gbquant.c0000644000175000017500000004117613246754720011746 00000000000000/* gbquant (ver. 5.6.1) -- Print quantiles of data distribution Copyright (C) 2004-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "tools.h" int main(int argc,char* argv[]){ double *xvals=NULL,*qvals=0;; size_t xvalnum=0,qvalnum=0; size_t n=10; double wqmin=0,wqmax=1.; char *splitstring = strdup(" \t"); /* options */ int o_xval = 0; int o_qval = 0; int o_err = 0; int o_qwindow = 0; int o_table = 0; int o_verbose=0; int o_position=1; /* variables for reading command line options */ /* ------------------------------------------ */ int opt; /* ------------------------------------------ */ /* COMMAND LINE PROCESSING */ while((opt=getopt_long(argc,argv,"W:w:vhtx:q:en:F:",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='h'){ /*print help*/ fprintf(stdout,"Print distribution quantiles. Data are read from standard input. If no\n"); fprintf(stdout,"-x or -q options are provided, a quantiles table is plotted. The number\n"); fprintf(stdout,"of quantiles can be chosen with -n. The option -x #1 prints the quantile\n"); fprintf(stdout,"associated with the value #1, while -q #2 print the value associate with\n"); fprintf(stdout,"the quantile #2. Of course #2 must be between 0 and 1. Multiple values\n"); fprintf(stdout,"can be provided to -x or -q, separated with commas. With -w #1,#2 all\n"); fprintf(stdout,"the observations inside the quantile range [#1,#2) are printed. If more\n"); fprintf(stdout,"columns are provided with option -t, the specified action is repeated on\n"); fprintf(stdout,"each column. Without -t, columns are pooled unless -w is specified, in\n"); fprintf(stdout,"which case all rows whose first element is inside the range are printed.\n"); fprintf(stdout,"A different column for sorting can be specified with option -W. If 0 is\n"); fprintf(stdout,"specified, the cut is applied with respect to all columns\n"); fprintf(stdout,"\nUsage: %s [options]\n\n",argv[0]); fprintf(stdout,"Options:\n"); fprintf(stdout," -n number of quantiles to print (default 10)\n"); fprintf(stdout," -x print the quantile (interpolated) associated with the value\n"); fprintf(stdout," -q print the value (interpolated) associated with the quantile\n"); fprintf(stdout," -e print the (asymptotic) error for -x or -q; doesn't work with -t\n"); fprintf(stdout," -w print observations inside a quantile windows\n"); fprintf(stdout," -W set the column to use (default 1)\n"); fprintf(stdout," -t consider separately each column of input\n"); fprintf(stdout," -F specify the input fields separators (default \" \\t\")\n"); fprintf(stdout," -h this help\n"); fprintf(stdout," -v verbose mode\n"); return(0); } else if(opt=='W'){ o_position=atoi(optarg); if(o_position <0){ fprintf(stderr, "ERROR (%s): Column number must be non-negative\n", GB_PROGNAME); exit(1); } } else if(opt=='w'){ /*set the quantile window */ char *stmp1=strdup (optarg); char *stmp2; char *stmp3=stmp1; stmp2=strsep (&stmp1,","); if(strlen(stmp2)>0) wqmin=atof(stmp2); if(stmp1 != NULL && strlen(stmp1)>0) wqmax=atof(stmp1); free(stmp3); if(wqmax0 ){ xvalnum++; xvals = (double *) my_realloc((void *) xvals,xvalnum*sizeof(double)); xvals[xvalnum-1]=atof(stmp2); } o_xval=1; free(stmp3); } else if(opt=='q'){ /*set the quantile whose value is required*/ char *stmp1=strdup (optarg); char *stmp2; char *stmp3=stmp1; while( (stmp2=strsep (&stmp1,",")) != NULL && strlen(stmp2)>0 ){ qvalnum++; qvals = (double *) my_realloc((void *) qvals,qvalnum*sizeof(double)); qvals[qvalnum-1]=atof(stmp2); } o_qval=1; free(stmp3); } else if(opt=='e'){ /*set the verbose mode*/ o_err=1; } else if(opt=='v'){ /*set the verbose mode*/ o_verbose=1; } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); if(o_xval==0 && o_qval==0 && o_qwindow==0){/* print the list of quantiles */ if(!o_table){ size_t size; double *vals=NULL; size_t quant; load(&vals,&size,0,splitstring); denan(&vals,&size); qsort(vals,size,sizeof(double),sort_by_value); /*+++++++++++++++++++++++++++++++++++++++*/ if(o_verbose) fprintf(stderr,"loaded %zd data\n",size); /*+++++++++++++++++++++++++++++++++++++++*/ if(n>size) n = size;/* for consistency */ /*+++++++++++++++++++++++++++++++++++++++*/ if(o_verbose){ printf(EMPTY_SEP,"#quant."); printf(EMPTY_NL,"val"); } /*+++++++++++++++++++++++++++++++++++++++*/ for(quant=1;quant<=n;quant++){ double dtmp1 = quant/(n+1.); int index = floor((size+1.)*dtmp1); double delta = (size+1.)*dtmp1-index; printf(FLOAT_SEP,dtmp1); printf(FLOAT_NL,vals[index-1]*(1.-delta)+vals[index]*delta); } } else{ size_t rows=0,columns=0,i,j; double **vals=NULL; double **quantiles; loadtable(&vals,&rows,&columns,0,splitstring); /*+++++++++++++++++++++++++++++++++++++++*/ if(o_verbose) fprintf(stderr,"loaded %zdx%zd data table\n",rows,columns); /*+++++++++++++++++++++++++++++++++++++++*/ if(n>rows) n = rows;/* for consistency */ /* allocate the array for the result */ quantiles = (double **) my_alloc(n*sizeof(double*)); for(i=0;i1.-1./(size+1.)) quantiles[j-1][i]=vals[i][size-1]; else quantiles[j-1][i]=vals[i][index-1]*(1.-delta)+vals[i][index]*delta; } } /*+++++++++++++++++++++++++++++++++++++++*/ if(o_verbose){ printf(EMPTY_SEP,"#quant."); printf(EMPTY_NL,"vals->"); } /*+++++++++++++++++++++++++++++++++++++++*/ printmatrixbyrows(stdout,quantiles,n,columns); } } else if(o_qwindow==1){ /* print the data inside the quantile windows */ if(!o_table){ size_t rows=0,columns=0,i,j; double **vals=NULL; size_t indexmin,indexmax; /* load data: data[column][row] */ loadtable(&vals,&rows,&columns,0,splitstring); if(o_position > columns){ fprintf(stderr, "ERROR (%s): Column position larger than columns number.\n", GB_PROGNAME); exit(1); } /* remove NAN entries */ denan_data(&vals,&rows,&columns); /* define the indexes boundaries */ indexmin = floor(rows*wqmin); indexmax = ceil(rows*wqmax); if(columns==1){ /*+++++++++++++++++++++++++++++++++++++++*/ if(o_verbose) fprintf(stderr,"loaded %zd data\n",rows); /*+++++++++++++++++++++++++++++++++++++++*/ /* sort data */ qsort(vals[0],rows,sizeof(double),sort_by_value); for(j=0;j1){ /*+++++++++++++++++++++++++++++++++++++++*/ if(o_verbose) fprintf(stderr,"loaded %zdx%zd data table\n",rows,columns); /*+++++++++++++++++++++++++++++++++++++++*/ if(o_position>0){/* sort data accordong to given position*/ sortn(vals,columns,rows,o_position-1,2); for(j=0;j maxresnum) maxresnum = resnum[i]; for(j=0;jvals[size-1]) printf(FLOAT_NL,1.0); else { int i=0; double dtmp1,dtmp2; while(vals[i]vals[i][size-1]) results[j][i]=1.0; else { int index=0; double dtmp1,dtmp2; while(vals[i][index]"); /*+++++++++++++++++++++++++++++++++++++++*/ printmatrixbyrows(stdout,results,xvalnum,columns); } } else if(o_qval==1) { /* print the values associated with the quantile */ if(!o_table){ size_t size,index; double *vals=NULL; load(&vals,&size,0,splitstring); /*+++++++++++++++++++++++++++++++++++++++*/ if(o_verbose) fprintf(stderr,"loaded %zd data\n",size); /*+++++++++++++++++++++++++++++++++++++++*/ denan(&vals,&size); qsort(vals,size,sizeof(double),sort_by_value); /*+++++++++++++++++++++++++++++++++++++++*/ if(o_verbose){ if(o_err==0) printf(EMPTY_NL,"#quantiles"); else{ printf(EMPTY_SEP,"#quantiles"); printf(EMPTY_NL,"std.err."); } } /*+++++++++++++++++++++++++++++++++++++++*/ for(index=0;index1.-1./(size+1.)) printf(FLOAT_NL,vals[size-1]); else { int index = floor((size+1.)*qval); double delta = (size+1.)*qval-index; double quantile = vals[index-1]*(1.-delta)+vals[index]*delta; if(o_err==0) printf(FLOAT_NL,quantile); else{ int supindex = ceil((size+1.)*qval+sqrt(qval*(1-qval)*(size+2.))); int infindex = floor((size+1.)*qval-sqrt(qval*(1-qval)*(size+2.))); double supdist= vals[supindex-1]-quantile; double infdist = quantile-vals[infindex-1]; printf(FLOAT_SEP,vals[index-1]*(1.-delta)+vals[index]*delta); printf(FLOAT_NL,(supdist>infdist?supdist:infdist)); } } } } else{ size_t rows=0,columns=0,i,j; double **vals=NULL; double **results; loadtable(&vals,&rows,&columns,0,splitstring); /*+++++++++++++++++++++++++++++++++++++++*/ if(o_verbose) fprintf(stderr,"loaded %zdx%zd data table\n",rows,columns); /*+++++++++++++++++++++++++++++++++++++++*/ /* allocate the array for the result */ results = (double **) my_alloc(qvalnum*sizeof(double *)); for(j=0;j1.-1./(size+1.)) results[j][i]=vals[i][size-1]; else { int index = floor((size+1.)*qval); double delta = (size+1.)*qval-index; results[j][i]=vals[i][index-1]*(1.-delta)+vals[i][index]*delta; } } } /*+++++++++++++++++++++++++++++++++++++++*/ if(o_verbose) printf(EMPTY_NL,"#quantiles->"); /*+++++++++++++++++++++++++++++++++++++++*/ printmatrixbyrows(stdout,results,qvalnum,columns); } } else{ fprintf(stderr,"you asked for something impossible! check %s -h\n",argv[0]); } return(0); } gbutils-5.7.1/config.guess0000755000175000017500000012475312612517377012465 00000000000000#! /bin/sh # Attempt to guess a canonical system name. # Copyright 1992-2015 Free Software Foundation, Inc. timestamp='2015-08-20' # This file 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 3 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, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that # program. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # # Originally written by Per Bothner; maintained since 2000 by Ben Elliston. # # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD # # Please send patches to . me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright 1992-2015 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; * ) break ;; esac done if test $# != 0; then echo "$me: too many arguments$help" >&2 exit 1 fi trap 'exit 1' 1 2 15 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires # temporary files to be created and, as you can see below, it is a # headache to deal with in a portable fashion. # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still # use `HOST_CC' if defined, but it is deprecated. # Portable tmp directory creation inspired by the Autoconf team. set_cc_for_build=' trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; : ${TMPDIR=/tmp} ; { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in ,,) echo "int x;" > $dummy.c ; for c in cc gcc c89 c99 ; do if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; if test x"$CC_FOR_BUILD" = x ; then CC_FOR_BUILD=no_compiler_found ; fi ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; esac ; set_cc_for_build= ;' # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown case "${UNAME_SYSTEM}" in Linux|GNU|GNU/*) # If the system lacks a compiler, then just pick glibc. # We could probably try harder. LIBC=gnu eval $set_cc_for_build cat <<-EOF > $dummy.c #include #if defined(__UCLIBC__) LIBC=uclibc #elif defined(__dietlibc__) LIBC=dietlibc #else LIBC=gnu #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'` ;; esac # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward # compatibility and a consistent mechanism for selecting the # object file format. # # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ /sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || \ echo unknown)` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; earmv*) arch=`echo ${UNAME_MACHINE_ARCH} | sed -e 's,^e\(armv[0-9]\).*$,\1,'` endian=`echo ${UNAME_MACHINE_ARCH} | sed -ne 's,^.*\(eb\)$,\1,p'` machine=${arch}${endian}-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently, or will in the future. case "${UNAME_MACHINE_ARCH}" in arm*|earm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ELF__ then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? os=netbsd else os=netbsdelf fi ;; *) os=netbsd ;; esac # Determine ABI tags. case "${UNAME_MACHINE_ARCH}" in earm*) expr='s/^earmv[0-9]/-eabi/;s/eb$//' abi=`echo ${UNAME_MACHINE_ARCH} | sed -e "$expr"` ;; esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. case "${UNAME_VERSION}" in Debian*) release='-gnu' ;; *) release=`echo ${UNAME_RELEASE} | sed -e 's/[-_].*//' | cut -d. -f1,2` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}${abi}" exit ;; *:Bitrig:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE} exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} exit ;; *:ekkoBSD:*:*) echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} exit ;; *:SolidBSD:*:*) echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} exit ;; macppc:MirBSD:*:*) echo powerpc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} exit ;; *:Sortix:*:*) echo ${UNAME_MACHINE}-unknown-sortix exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` ;; *5.*) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ;; esac # According to Compaq, /usr/sbin/psrinfo has been available on # OSF/1 and Tru64 systems produced since 1995. I hope that # covers most systems running today. This code pipes the CPU # types through head -n 1, so we only detect the type of CPU 0. ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") UNAME_MACHINE="alpha" ;; "EV4.5 (21064)") UNAME_MACHINE="alpha" ;; "LCA4 (21066/21068)") UNAME_MACHINE="alpha" ;; "EV5 (21164)") UNAME_MACHINE="alphaev5" ;; "EV5.6 (21164A)") UNAME_MACHINE="alphaev56" ;; "EV5.6 (21164PC)") UNAME_MACHINE="alphapca56" ;; "EV5.7 (21164PC)") UNAME_MACHINE="alphapca57" ;; "EV6 (21264)") UNAME_MACHINE="alphaev6" ;; "EV6.7 (21264A)") UNAME_MACHINE="alphaev67" ;; "EV6.8CB (21264C)") UNAME_MACHINE="alphaev68" ;; "EV6.8AL (21264B)") UNAME_MACHINE="alphaev68" ;; "EV6.8CX (21264D)") UNAME_MACHINE="alphaev68" ;; "EV6.9A (21264/EV69A)") UNAME_MACHINE="alphaev69" ;; "EV7 (21364)") UNAME_MACHINE="alphaev7" ;; "EV7.9 (21364A)") UNAME_MACHINE="alphaev79" ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` # Reset EXIT trap before exiting to avoid spurious non-zero exit code. exitcode=$? trap '' 0 exit $exitcode ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead # of the specific Alpha model? echo alpha-pc-interix exit ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition exit ;; *:z/VM:*:*) echo s390-ibm-zvmoe exit ;; *:OS400:*:*) echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} exit ;; arm*:riscos:*:*|arm*:RISCOS:*:*) echo arm-unknown-riscos exit ;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "`(/bin/universe) 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd fi exit ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 exit ;; DRS?6000:unix:4.0:6*) echo sparc-icl-nx6 exit ;; DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7; exit ;; esac ;; s390x:SunOS:*:*) echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) echo i386-pc-auroraux${UNAME_RELEASE} exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) eval $set_cc_for_build SUN_ARCH="i386" # If there is a compiler, see if it is configured for 64-bit objects. # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. # This test works for both compilers. if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then SUN_ARCH="x86_64" fi fi echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in Series*|S4*) UNAME_RELEASE=`uname -v` ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` exit ;; sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) echo m68k-sun-sunos${UNAME_RELEASE} ;; sun4) echo sparc-sun-sunos${UNAME_RELEASE} ;; esac exit ;; aushp:SunOS:*:*) echo sparc-auspex-sunos${UNAME_RELEASE} exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor # > m68000). The system name ranges from "MiNT" over "FreeMiNT" # to the lowercase version "mint" (or "freemint"). Finally # the system name "TOS" denotes a system which is actually not # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint${UNAME_RELEASE} exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint${UNAME_RELEASE} exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint${UNAME_RELEASE} exit ;; m68k:machten:*:*) echo m68k-apple-machten${UNAME_RELEASE} exit ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} exit ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix${UNAME_RELEASE} exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && SYSTEM_NAME=`$dummy $dummyarg` && { echo "$SYSTEM_NAME"; exit; } echo mips-mips-riscos${UNAME_RELEASE} exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax exit ;; Motorola:*:4.3:PL8-*) echo powerpc-harris-powermax exit ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) echo powerpc-harris-powermax exit ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix exit ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 exit ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 exit ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 exit ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] then if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ [ ${TARGET_BINARY_INTERFACE}x = x ] then echo m88k-dg-dgux${UNAME_RELEASE} else echo m88k-dg-dguxbcs${UNAME_RELEASE} fi else echo i586-dg-dgux${UNAME_RELEASE} fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 exit ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 exit ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) echo i386-ibm-aix exit ;; ia64:AIX:*:*) if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` then echo "$SYSTEM_NAME" else echo rs6000-ibm-aix3.2.5 fi elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi exit ;; *:AIX:*:[4567]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi if [ -x /usr/bin/lslpp ] ; then IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc | awk -F: '{ print $3 }' | sed s/[0-9]*$/0/` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${IBM_ARCH}-ibm-aix${IBM_REV} exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx exit ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 exit ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd exit ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` case "${UNAME_MACHINE}" in 9000/31? ) HP_ARCH=m68000 ;; 9000/[34]?? ) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` case "${sc_cpu_version}" in 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 case "${sc_kernel_bits}" in 32) HP_ARCH="hppa2.0n" ;; 64) HP_ARCH="hppa2.0w" ;; '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 esac ;; esac fi if [ "${HP_ARCH}" = "" ]; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #define _HPUX_SOURCE #include #include int main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); #endif long cpu = sysconf (_SC_CPU_VERSION); switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0"); break; case CPU_PA_RISC1_1: puts ("hppa1.1"); break; case CPU_PA_RISC2_0: #if defined(_SC_KERNEL_BITS) switch (bits) { case 64: puts ("hppa2.0w"); break; case 32: puts ("hppa2.0n"); break; default: puts ("hppa2.0"); break; } break; #else /* !defined(_SC_KERNEL_BITS) */ puts ("hppa2.0"); break; #endif default: puts ("hppa1.0"); break; } exit (0); } EOF (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac if [ ${HP_ARCH} = "hppa2.0w" ] then eval $set_cc_for_build # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler # generating 64-bit code. GNU and HP use different nomenclature: # # $ CC_FOR_BUILD=cc ./config.guess # => hppa2.0w-hp-hpux11.23 # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | grep -q __LP64__ then HP_ARCH="hppa2.0w" else HP_ARCH="hppa64" fi fi echo ${HP_ARCH}-hp-hpux${HPUX_REV} exit ;; ia64:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` echo ia64-hp-hpux${HPUX_REV} exit ;; 3050*:HI-UX:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include int main () { long cpu = sysconf (_SC_CPU_VERSION); /* The order matters, because CPU_IS_HP_MC68K erroneously returns true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct results, however. */ if (CPU_IS_PA_RISC (cpu)) { switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break; } } else if (CPU_IS_HP_MC68K (cpu)) puts ("m68k-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2"); exit (0); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo ${UNAME_MACHINE}-unknown-osf1mk else echo ${UNAME_MACHINE}-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites exit ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd exit ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd exit ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd exit ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi${UNAME_RELEASE} exit ;; *:BSD/OS:*:*) echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit ;; *:FreeBSD:*:*) UNAME_PROCESSOR=`/usr/bin/uname -p` case ${UNAME_PROCESSOR} in amd64) echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; *:MINGW64*:*) echo ${UNAME_MACHINE}-pc-mingw64 exit ;; *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; *:MSYS*:*) echo ${UNAME_MACHINE}-pc-msys exit ;; i*:windows32*:*) # uname -m includes "-pc" on this system. echo ${UNAME_MACHINE}-mingw32 exit ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; *:Interix*:*) case ${UNAME_MACHINE} in x86) echo i586-pc-interix${UNAME_RELEASE} exit ;; authenticamd | genuineintel | EM64T) echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; IA64) echo ia64-unknown-interix${UNAME_RELEASE} exit ;; esac ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; 8664:Windows_NT:*) echo x86_64-pc-mks exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i586-pc-interix exit ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; *:GNU:*:*) # the GNU system echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC} exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; aarch64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; PCA57) UNAME_MACHINE=alphapca56 ;; EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep -q ld.so.1 if test "$?" = 0 ; then LIBC="gnulibc1" ; fi echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; arc:Linux:*:* | arceb:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; arm*:Linux:*:*) eval $set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then echo ${UNAME_MACHINE}-unknown-linux-${LIBC} else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi else echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf fi fi exit ;; avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; cris:Linux:*:*) echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; crisv32:Linux:*:*) echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; e2k:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; frv:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; hexagon:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; i*86:Linux:*:*) echo ${UNAME_MACHINE}-pc-linux-${LIBC} exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; mips:Linux:*:* | mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef ${UNAME_MACHINE} #undef ${UNAME_MACHINE}el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=${UNAME_MACHINE}el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=${UNAME_MACHINE} #else CPU= #endif #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } ;; openrisc*:Linux:*:*) echo or1k-unknown-linux-${LIBC} exit ;; or32:Linux:*:* | or1k*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; padre:Linux:*:*) echo sparc-unknown-linux-${LIBC} exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-${LIBC} exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) echo hppa1.1-unknown-linux-${LIBC} ;; PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; *) echo hppa-unknown-linux-${LIBC} ;; esac exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-${LIBC} exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-${LIBC} exit ;; ppc64le:Linux:*:*) echo powerpc64le-unknown-linux-${LIBC} exit ;; ppcle:Linux:*:*) echo powerpcle-unknown-linux-${LIBC} exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux-${LIBC} exit ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; tile*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; vax:Linux:*:*) echo ${UNAME_MACHINE}-dec-linux-${LIBC} exit ;; x86_64:Linux:*:*) echo ${UNAME_MACHINE}-pc-linux-${LIBC} exit ;; xtensa*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. echo i386-sequent-sysv4 exit ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo ${UNAME_MACHINE}-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) echo ${UNAME_MACHINE}-unknown-stop exit ;; i*86:atheos:*:*) echo ${UNAME_MACHINE}-unknown-atheos exit ;; i*86:syllable:*:*) echo ${UNAME_MACHINE}-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit ;; i*86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp exit ;; i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} else echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} fi exit ;; i*86:*:5:[678]*) # UnixWare 7.x, OpenUNIX and OpenServer 6. case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL else echo ${UNAME_MACHINE}-pc-sysv32 fi exit ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i586. # Note: whatever this is, it MUST be the same as what config.sub # prints for the "djgpp" host, or else GDB configury will decide that # this is a cross-build. echo i586-pc-msdosdjgpp exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit ;; paragon:*:*:*) echo i860-intel-osf1 exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv exit ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix exit ;; M68*:*:R3V[5678]*:*) test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; NCR*:*:4.2:* | MPRAS*:*:4.2:*) OS_REL='.3' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv fi exit ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. echo ${UNAME_MACHINE}-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv${UNAME_RELEASE} else echo mips-unknown-sysv${UNAME_RELEASE} fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos exit ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit ;; BePC:Haiku:*:*) # Haiku running on Intel PC compatible. echo i586-pc-haiku exit ;; x86_64:Haiku:*:*) echo x86_64-unknown-haiku exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux${UNAME_RELEASE} exit ;; SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit ;; SX-7:SUPER-UX:*:*) echo sx7-nec-superux${UNAME_RELEASE} exit ;; SX-8:SUPER-UX:*:*) echo sx8-nec-superux${UNAME_RELEASE} exit ;; SX-8R:SUPER-UX:*:*) echo sx8r-nec-superux${UNAME_RELEASE} exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown eval $set_cc_for_build if test "$UNAME_PROCESSOR" = unknown ; then UNAME_PROCESSOR=powerpc fi if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then case $UNAME_PROCESSOR in i386) UNAME_PROCESSOR=x86_64 ;; powerpc) UNAME_PROCESSOR=powerpc64 ;; esac fi fi elif test "$UNAME_PROCESSOR" = i386 ; then # Avoid executing cc on OS X 10.9, as it ships with a stub # that puts up a graphical alert prompting to install # developer tools. Any system running Mac OS X 10.7 or # later (Darwin 11 and later) is required to have a 64-bit # processor. This is not true of the ARM version of Darwin # that Apple uses in portable devices. UNAME_PROCESSOR=x86_64 fi echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` if test "$UNAME_PROCESSOR" = "x86"; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; NEO-?:NONSTOP_KERNEL:*:*) echo neo-tandem-nsk${UNAME_RELEASE} exit ;; NSE-*:NONSTOP_KERNEL:*:*) echo nse-tandem-nsk${UNAME_RELEASE} exit ;; NSR-?:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux exit ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. if test "$cputype" = "386"; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi echo ${UNAME_MACHINE}-unknown-plan9 exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 exit ;; *:TENEX:*:*) echo pdp10-unknown-tenex exit ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 exit ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 exit ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 exit ;; *:ITS:*:*) echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) echo mips-sei-seiux${UNAME_RELEASE} exit ;; *:DragonFly:*:*) echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; esac ;; *:XENIX:*:SysV) echo i386-pc-xenix exit ;; i*86:skyos:*:*) echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' exit ;; i*86:rdos:*:*) echo ${UNAME_MACHINE}-pc-rdos exit ;; i*86:AROS:*:*) echo ${UNAME_MACHINE}-pc-aros exit ;; x86_64:VMkernel:*:*) echo ${UNAME_MACHINE}-unknown-esx exit ;; esac cat >&2 < in order to provide the needed information to handle your system. config.guess timestamp = $timestamp uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` /bin/uname -X = `(/bin/uname -X) 2>/dev/null` hostinfo = `(hostinfo) 2>/dev/null` /bin/universe = `(/bin/universe) 2>/dev/null` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` /bin/arch = `(/bin/arch) 2>/dev/null` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} UNAME_SYSTEM = ${UNAME_SYSTEM} UNAME_VERSION = ${UNAME_VERSION} EOF exit 1 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: gbutils-5.7.1/gaussian_gbhill.c0000644000175000017500000002746313246754720013443 00000000000000#include "gbhill.h" /* Gaussian Distribution */ /* ------------------------ */ /* x[0]=m x[1]=s */ /* F[j] = */ /* -log(f[j]) = log(s) + (1.0/(2*pow(s,2)))*pow((x[j]-m),2) */ /* N: sample size k: number of observations used */ void gaussian_nll (const size_t n, const double *x,void *params,double *fval){ size_t i; /* log-likelihood parameters */ const size_t min = ((struct loglike_params *) params)->min; const size_t max = ((struct loglike_params *) params)->max; const double N = (double) ((struct loglike_params *) params)->size; const double d = (double) ((struct loglike_params *) params)->d; const int method = ((struct loglike_params *) params)->method; const double *data = ((struct loglike_params *) params)->data; /* distribution parameters */ const double m=x[0]; const double s=x[1]; const double k = ((double) max-min+1); *fval=0.0; for(i=min;i<=max;i++) *fval += pow((data[i]-m),2); *fval = log(s) + (*fval)/(2*k*s*s); switch(method){ case 0: if(N>k){ const double F =gsl_cdf_gaussian_P(data[min]-m, s) ; *fval += -(N/k-1.0)*log(F); } break; case 1: if(N>k){ const double F =gsl_cdf_gaussian_P(d-m, s) ; *fval += -(N/k-1.0)*log(F); } break; case 2: if(N>k){ const double F =gsl_cdf_gaussian_P(data[max]-m, s); *fval += -(N/k-1.0)*log(1.0-F); } break; case 3: if(N>k){ const double F =gsl_cdf_gaussian_P(d-m, s) ; *fval += -(N/k-1.0)*log(1.0-F); } break; } /* fprintf(stderr,"[ f ] x1=%g x2=%g f=%g\n",x[0],x[1],*fval); */ } void gaussian_dnll (const size_t n, const double *x,void *params, double *grad){ size_t i; /* log-likelihood parameters */ const size_t min = ((struct loglike_params *) params)->min; const size_t max = ((struct loglike_params *) params)->max; const double N = (double) ((struct loglike_params *) params)->size; const double d = (double) ((struct loglike_params *) params)->d; const int method = ((struct loglike_params *) params)->method; const double *data = ((struct loglike_params *) params)->data; /* distribution parameters */ const double m=x[0]; const double s=x[1]; const double k = ((double) max-min+1); grad[0]=0.0; for(i=min;i<=max;i++) grad[0] += data[i]; grad[0]= -(grad[0]/k-m)/(s*s); grad[1]=0.0; for(i=min;i<=max;i++) grad[1] += pow((data[i]-m),2); grad[1]= - grad[1]/(k*pow(s,3)) + 1/s; switch(method){ case 0: if(N>k) { const double F = gsl_cdf_gaussian_P(data[min]-m, s); const double f = gsl_ran_gaussian_pdf(data[min]-m,s); const double dFdm = - f; const double dFds = - f*(data[min]-m)/s; grad[0] += - (N/k-1.0)*dFdm/F; grad[1] += - (N/k-1.0)*dFds/F; } break; case 1: if(N>k) { const double F = gsl_cdf_gaussian_P(d-m, s); const double f = gsl_ran_gaussian_pdf(d-m,s); const double dFdm = - f; const double dFds = - f*(d-m)/s; grad[0] += - (N/k-1.0)*dFdm/F; grad[1] += - (N/k-1.0)*dFds/F; } break; case 2: if(N>k){ const double F = gsl_cdf_gaussian_P(data[max]-m,s); const double f = gsl_ran_gaussian_pdf(data[max]-m,s); const double dFdm = - f; const double dFds = - f*(data[max]-m)/s; grad[0] += (N/k-1.0)*dFdm/(1.0-F); grad[1] += (N/k-1.0)*dFds/(1.0-F); } break; case 3: if(N>k){ const double F = gsl_cdf_gaussian_P(d-m,s); const double f = gsl_ran_gaussian_pdf(d-m,s); const double dFdm = - f; const double dFds = - f*(d-m)/s; grad[0] += (N/k-1.0)*dFdm/(1.0-F); grad[1] += (N/k-1.0)*dFds/(1.0-F); } break; } /* fprintf(stderr,"[ df] x1=%g x2=%g df/dx1=%g df/dx2=%g\n", */ /* x[0],x[1],grad[0],grad[1]); */ } void gaussian_nlldnll (const size_t n, const double *x,void *params,double *fval,double *grad){ size_t i; /* log-likelihood parameters */ const size_t min = ((struct loglike_params *) params)->min; const size_t max = ((struct loglike_params *) params)->max; const double N = (double) ((struct loglike_params *) params)->size; const double d = (double) ((struct loglike_params *) params)->d; const int method = ((struct loglike_params *) params)->method; const double *data = ((struct loglike_params *) params)->data; /* distribution parameters */ const double m=x[0]; const double s=x[1]; const double k = ((double) max-min+1); *fval=0.0; for(i=min;i<=max;i++) *fval += pow((data[i]-m),2); *fval = log(s) + (*fval)/(2*k*s*s); grad[0]=0.0; for(i=min;i<=max;i++) grad[0] += data[i]; grad[0]= -(grad[0]/k-m)/(s*s); grad[1]=0.0; for(i=min;i<=max;i++) grad[1] += pow((data[i]-m),2); grad[1]= - grad[1]/(k*pow(s,3)) + 1/s; switch(method){ case 0: if(N>k) { const double F = gsl_cdf_gaussian_P(data[min]-m,s); const double f = gsl_ran_gaussian_pdf(data[min]-m,s); const double dFdm = - f; const double dFds = - f*(data[min]-m)/s; *fval += -(N/k-1.0)*log(F); grad[0] += - (N/k-1.0)*dFdm/F; grad[1] += - (N/k-1.0)*dFds/F; } break; case 1: if(N>k) { const double F = gsl_cdf_gaussian_P(d-m,s); const double f = gsl_ran_gaussian_pdf(d-m,s); const double dFdm = - f; const double dFds = - f*(d-m)/s; *fval += -(N/k-1.0)*log(F); grad[0] += - (N/k-1.0)*dFdm/F; grad[1] += - (N/k-1.0)*dFds/F; } break; case 2: if(N>k){ const double F = gsl_cdf_gaussian_P(data[max]-m,s); const double f = gsl_ran_gaussian_pdf(data[max]-m,s); const double dFdm = - f; const double dFds = - f*(data[max]-m)/s; *fval += -(N/k-1.0)*log(1.0-(F)); grad[0] += -(N/k-1.0)*(-dFdm)/(1.0-F); grad[1] += -(N/k-1.0)*(-dFds)/(1.0-F); } break; case 3: if(N>k){ const double F = gsl_cdf_gaussian_P(d-m,s); const double f = gsl_ran_gaussian_pdf(d-m,s); const double dFdm = - f; const double dFds = - f*(d-m)/s; *fval += -(N/k-1.0)*log(1.0-(F)); grad[0] += -(N/k-1.0)*(-dFdm)/(1.0-F); grad[1] += -(N/k-1.0)*(-dFds)/(1.0-F); } break; } /* fprintf(stderr,"[fdf] x1=%g x2=%g f=%g df/dx1=%g df/dx2=%g\n", */ /* x[0],x[1],*fval,grad[0],grad[1]); */ } double gaussian_f (const double x,const size_t n, const double *par){ return gsl_ran_gaussian_pdf(x-par[0], par[1]); } double gaussian_F (const double x,const size_t n, const double *par){ return gsl_cdf_gaussian_P(x-par[0], par[1]); } gsl_matrix *gaussian_varcovar(const int o_varcovar, double *x, void *params){ size_t i; /* log-likelihood parameters */ const size_t min = ((struct loglike_params *) params)->min; const size_t max = ((struct loglike_params *) params)->max; const double N = (double) ((struct loglike_params *) params)->size; const double d = (double) ((struct loglike_params *) params)->d; const int method = ((struct loglike_params *) params)->method; const double *data = ((struct loglike_params *) params)->data; /* distribution parameters */ const double m=x[0]; const double s=x[1]; double k = ((double) max-min+1); double sum = 0.0; for(i=min;i<=max;i++) sum += data[i]-m; double sum2 = 0.0; for(i=min;i<=max;i++) sum2 += pow((data[i]-m),2); double dldm = 0.0; double d2ldm2 = 0.0; double d2ldmds = 0.0; double dlds = 0.0; double d2lds2 = 0.0; gsl_matrix *covar; covar = gsl_matrix_alloc (2,2); double F; double f; switch(method){ case 0: /* GSL allocation of memory for the covar matrix */ F = gsl_cdf_gaussian_P(data[min]-m, s) ; f = gsl_ran_gaussian_pdf(data[min]-m, s) ; /* Compute ll partial derivatives. */ dldm = (1./pow(s,2.))*sum-(N-k)*f/F; d2ldm2 = (-k/pow(s,2.))-(N-k)*(f/F)*(((data[min]-m)/pow(s,2.))+f/F); d2ldmds = (-2./pow(s,3.))*sum-(N-k)*(f/F)*(1./s)*(-1.+(data[min]-m)*(f/F)+pow((data[min]-m)/s,2.)); dlds = -(k/s)+(1./pow(s,3.))*sum2-(N-k)*(f/F)*((data[min]-m)/s); d2lds2 = (k/pow(s,2.0))-(3./pow(s,4.))*sum2-(N-k)*((data[min]-m)/(F*s))*(-(f/s)+(f/pow(s,3.))*pow(data[min]-m,2.))-(N-k)*pow(f/F,2.)*pow((data[min]-m)/s,2.)+(N-k)*(f/F)*((data[min]-m)/pow(s,2.)); break; case 1: /* GSL allocation of memory for the covar matrix */ F = gsl_cdf_gaussian_P(d-m, s) ; f = gsl_ran_gaussian_pdf(d-m, s) ; /* Compute ll partial derivatives. */ dldm = (1./pow(s,2.))*sum-(N-k)*f/F; d2ldm2 = (-k/pow(s,2.))-(N-k)*(f/F)*(((data[min]-m)/pow(s,2.))+f/F); d2ldmds = (-2./pow(s,3.))*sum-(N-k)*(f/F)*(1./s)*(-1.+(data[min]-m)*(f/F)+pow((data[min]-m)/s,2.)); dlds = -(k/s)+(1./pow(s,3.))*sum2-(N-k)*(f/F)*((data[min]-m)/s); d2lds2 = (k/pow(s,2.0))-(3./pow(s,4.))*sum2-(N-k)*((data[min]-m)/(F*s))*(-(f/s)+(f/pow(s,3.))*pow(data[min]-m,2.))-(N-k)*pow(f/F,2.)*pow((data[min]-m)/s,2.)+(N-k)*(f/F)*((data[min]-m)/pow(s,2.)); break; case 2: { F = gsl_cdf_gaussian_P(data[max]-m,s); f = gsl_ran_gaussian_pdf(data[max]-m,s); const double dFdm = - f; const double dFds = - f*(data[max]-m)/s; const double dfdm = f*((data[max]-m)/pow(s,2.0)); const double dfds = (f/s)*(pow((data[max]-m)/s,2.0)-1); dldm = (1./pow(s,2.0))*sum+(N-k)*f/(1-F); d2ldm2 = -k/pow(s,2.0)+(N-k)*dfdm*(1/(1-F))+(N-k)*(f/pow(1-F,2.0))*dFdm; d2ldmds = -(2./pow(s,3.0))*sum+(N-k)*(dfds/(1.-F))+(N-k)*(f/pow(1.-F,2.0))*dFds; dlds = -k/s+sum2/pow(s,3.)+(N-k)*(f/(1.-F))*((data[max]-m)/s); d2lds2 = k/pow(s,2.)-(3./pow(s,4.))*sum2+(N-k)*(dfds/(1.-F))*((data[max]-m)/s)+(N-k)*(f/pow(1.-F,2.))*dFds*((data[max]-m)/s)-(N-k)*(f/(1.-F))*((data[max]-m)/pow(s,2.)); break; } case 3: { F = gsl_cdf_gaussian_P(d-m,s); f = gsl_ran_gaussian_pdf(d-m,s); const double dFdm = - f; const double dFds = - f*(d-m)/s; const double dfdm = f*((d-m)/pow(s,2.0)); const double dfds = (f/s)*(pow((d-m)/s,2.0)-1); dldm = (1./pow(s,2.0))*sum+(N-k)*f/(1-F); d2ldm2 = -k/pow(s,2.0)+(N-k)*dfdm*(1/(1-F))+(N-k)*(f/pow(1-F,2.0))*dFdm; d2ldmds = -(2./pow(s,3.0))*sum+(N-k)*(dfds/(1.-F))+(N-k)*(f/pow(1.-F,2.0))*dFds; dlds = -k/s+sum2/pow(s,3.)+(N-k)*(f/(1.-F))*((d-m)/s); d2lds2 = k/pow(s,2.)-(3./pow(s,4.))*sum2+(N-k)*(dfds/(1.-F))*((d-m)/s)+(N-k)*(f/pow(1.-F,2.))*dFds*((d-m)/s)-(N-k)*(f/(1.-F))*((d-m)/pow(s,2.)); } break; } gsl_permutation * P = gsl_permutation_alloc (2); int signum; gsl_matrix *J = gsl_matrix_calloc (2,2); gsl_matrix *H = gsl_matrix_calloc (2,2); gsl_matrix *tmp = gsl_matrix_calloc (2,2); switch(o_varcovar){ case 0: gsl_matrix_set (J,0,0,dldm*dldm); gsl_matrix_set (J,0,1,dldm*dlds); gsl_matrix_set (J,1,0,dlds*dldm); gsl_matrix_set (J,1,1,dlds*dlds); gsl_linalg_LU_decomp (J,P,&signum); gsl_linalg_LU_invert (J,P,covar); break; case 1: gsl_matrix_set(H,0,0,d2ldm2); gsl_matrix_set(H,0,1,d2ldmds); gsl_matrix_set(H,1,0,d2ldmds); gsl_matrix_set(H,1,1,d2lds2); gsl_matrix_scale (H,-1.); gsl_linalg_LU_decomp (H,P,&signum); gsl_linalg_LU_invert (H,P,covar); break; case 2: gsl_matrix_set(H,0,0,d2ldm2); gsl_matrix_set(H,0,1,d2ldmds); gsl_matrix_set(H,1,0,d2ldmds); gsl_matrix_set(H,1,1,d2lds2); gsl_matrix_set(J,0,0,dldm*dldm); gsl_matrix_set(J,0,1,dldm*dlds); gsl_matrix_set(J,1,0,dlds*dldm); gsl_matrix_set(J,1,1,dlds*dlds); gsl_linalg_LU_decomp (H,P,&signum); gsl_linalg_LU_invert (H,P,tmp); gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,tmp,J,0.0,H); gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,H,tmp,0.0,covar); break; } gsl_matrix_free(H); gsl_matrix_free(J); gsl_matrix_free(tmp); gsl_permutation_free(P); return covar; } gbutils-5.7.1/gbhisto.c0000644000175000017500000003405513246754720011742 00000000000000/* gbhisto (ver. 5.6.1) -- Produce histogram from data Copyright (C) 1998-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "tools.h" void printhist(double const *data,int const size, int const steps,int const o_output, int const o_bintype,double ratio, double const refpoint,double xmin, double xmax) { int i=0; double stepsize; int *histo; double *midpoint,*width; int index=0; histo = (int *) malloc(steps*sizeof(int)); midpoint = (double *) malloc(steps*sizeof(double)); width = (double *) malloc(steps*sizeof(double)); for(i=0;i0 && xmin > data[i]) xmin = data[i]; } } lxmin=log(xmin); stepsize=(log(xmax)-log(xmin))/steps; for(i=0;i=xmin && val0) fprintf(stderr,"WARNING (%s): %d non positive values ignored\n",GB_PROGNAME,ignored); } else if(o_bintype==2){ /* geometric binning */ double lratio = log(ratio); stepsize=(xmax-xmin)/(exp(lratio*steps)-1.); for(i=0;i0 && stmp1 != NULL && strlen(stmp1)>0){ wmin=atof(stmp2); wmax=atof(stmp1); } else fprintf(stderr,"ERROR (%s): provide comma separated min and max. Try option -h.\n",GB_PROGNAME); free(stmp3); o_window=1; } else if(opt=='n'){ /*set the number of steps*/ steps = (unsigned) atoi(optarg); } else if(opt=='M'){ /*set the type of output*/ o_output = atoi(optarg); if(o_output<0 || o_output>6){ fprintf(stderr,"ERROR (%s): output option '%d' not recognized. Try option -h.\n", GB_PROGNAME,o_output); exit(-1); } } else if(opt=='B'){ /*set the type of binning*/ o_bintype = atoi(optarg); if(o_bintype <0 || o_bintype>2 ) { fprintf(stderr,"ERROR (%s): binning option '%d' not recognized. Try option -h.\n", GB_PROGNAME,o_bintype); exit(-1); } } else if(opt=='S'){ /*set the type of binning*/ refpoint = atof(optarg); if(refpoint <0 || refpoint >1 ) { fprintf(stderr,"ERROR (%s): unsupported reference point value '%f'. Try option -h.\n", GB_PROGNAME,refpoint); exit(-1); } } else if(opt=='r'){ /*set the ration in the geometric binning*/ ratio = atof(optarg); if(ratio <=1) { fprintf(stderr,"ERROR (%s): option -r requires a value larger than one. Try option -h.\n", GB_PROGNAME); exit(-1); } } else if(opt=='t'){ /*set the table form*/ o_table=1; } else if(opt=='v'){ /*set verbose output*/ o_verbose=1; } else if(opt=='h'){ /*print short help*/ fprintf(stdout,"Compute histogram counting the occurrences of each value (discrete data) or\n"); fprintf(stdout,"binning the values on a regular grid (continuous data). Data are read from \n"); fprintf(stdout,"standard input. For discrete data, values and their occurrences are printed;\n"); fprintf(stdout,"For binned data, the bin reference point and the relative statistics are\n"); fprintf(stdout,"printed. The type of variable and the statistics can be set with option -M.\n"); fprintf(stdout,"The binning grid can be linear, logarithmic or geometric. The bin reference\n"); fprintf(stdout,"point is the algebraic midpoint for linear binning and the geometric midpoint\n"); fprintf(stdout,"for log or geometric binning. The reference point can be moved using option\n"); fprintf(stdout,"-S. Set it to 0 for the lower bound or to 1 for the upper bound.\n"); fprintf(stdout,"\nUsage: %s [options]\n\n",argv[0]); fprintf(stdout,"Options:\n"); fprintf(stdout," -n number of equispaced bins where the histogram is computed (default 10)\n"); fprintf(stdout," -w min,max set manually the binning window \n"); fprintf(stdout," -M set the type of output (default 0) \n"); fprintf(stdout," 0 occurrences number (continuous binned variable)\n"); fprintf(stdout," 1 relative frequency (continuous binned variable)\n"); fprintf(stdout," 2 empirical density (continuous binned variable)\n"); fprintf(stdout," 3 occurrences number (discrete variable)\n"); fprintf(stdout," 4 relative frequency (discrete variable)\n"); fprintf(stdout," 5 CDF (left cumulated probability; continuous binned variable)\n"); fprintf(stdout," 6 inverse CDF (1-CDF; continuous binned variable)\n"); fprintf(stdout," -B set the type of binning (default 0) \n"); fprintf(stdout," 0 linear\n"); fprintf(stdout," 1 logarithmic\n"); fprintf(stdout," 2 geometric\n"); fprintf(stdout," -S set the bin reference point (default 0.5) \n"); fprintf(stdout," -r set the ratio for geometrical binning (default 1.618) \n"); fprintf(stdout," -t print the histogram for each imput column\n"); fprintf(stdout," -F specify the input fields separators (default \" \\t\") \n"); fprintf(stdout," -v verbose mode\n"); exit(0); } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); /* ++++++++++++++++++++++++++++ */ if(o_verbose){ fprintf(stdout,"#variable type:\t"); switch(o_output){ case 0: case 1: case 2: fprintf(stdout,"continuous"); break; case 3: fprintf(stdout,"discrete"); break; } fprintf(stdout,"\n"); fprintf(stdout,"#output type:\t"); switch(o_output){ case 0: fprintf(stdout,"occurencies number"); break; case 1: fprintf(stdout,"relative frequency"); break; case 2: fprintf(stdout,"empirical density"); break; case 3: fprintf(stdout,"occurencies number"); break; case 4: fprintf(stdout,"relative frequency"); break; case 5: fprintf(stdout,"left cumulated probability"); break; case 6: fprintf(stdout,"right cumulated probability"); break; } fprintf(stdout,"\n"); fprintf(stdout,"#binning:\t"); switch(o_bintype){ case 0: fprintf(stdout,"linear"); case 1: fprintf(stdout,"logarithmic"); case 2: fprintf(stdout,"geometric with ratio %f",ratio); break; } fprintf(stdout,"\n"); fprintf(stdout,"#reference point: %f\n",refpoint); fprintf(stdout,"#bins number:\t"); switch(o_output){ case 0: case 1: case 2: fprintf(stdout,"%d",steps); break; } fprintf(stdout,"\n"); fprintf(stdout,"#tabular data:\t"); switch(o_table){ case 0: fprintf(stdout,"off"); break; case 1: fprintf(stdout,"on"); break; } fprintf(stdout,"\n"); fprintf(stdout,"#data statistics:\n"); fprintf(stdout, "# mean stdev skewness kurtosis ave.dev. min max\n"); } /* ++++++++++++++++++++++++++++ */ if(o_table){ size_t rows=0,columns=0,i; double **data=NULL; loadtable(&data,&rows,&columns,0,splitstring); /* ++++++++++++++++++++++++++++ */ if(o_verbose){ for(i=0;i=3 && o_output<=4) for(i=0;i data[i][j]) xmin = data[i][j]; if( xmax < data[i][j]) xmax = data[i][j]; } /* ------------------------------ */ printhist(data[i],rows,steps,o_output,o_bintype,ratio,refpoint,xmin,xmax); if(i=3 && o_output<=4) printhist_discrete(data,size,o_output); else { size_t i; double xmin = DBL_MAX; /*set maximum double */ double xmax = -DBL_MAX; /*set to minimum double */ /* determination of xmax and xmin */ if(o_window){ xmin=wmin; xmax=wmax; } else for(i=0;i data[i]) xmin = data[i]; if( xmax < data[i]) xmax = data[i]; } /* ------------------------------ */ printhist(data,size,steps,o_output,o_bintype,ratio,refpoint,xmin,xmax); } } return(0); } gbutils-5.7.1/gbdummyfy.10000644000175000017500000000467613147510354012223 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBDUMMYFY "1" "August 2017" "gbdummyfy ver. 5.6" "User Commands" .SH NAME gbdummyfy \- Produce dummies from labels .SH SYNOPSIS .B gbdummyfy [\fI\,options\/\fR] .SH DESCRIPTION This command reads from standard input a text file with space separated columns. The entry in one column (the first by default) are considered labels and expanded into a matrix of dummies , i.e. of 0 and 1 values. The number of columns of the matrix is equal to the number of different labels. Each row contains '1' in the place of the associated labels in the sorted list of labels, and '0' everywehere else. Since in general one less dummy variable is required than the number of labels, you can remove one column of dummies using the option '\-d'. .SH OPTIONS .TP \fB\-h\fR print this help .TP \fB\-c\fR set the column of labels (default 1) .TP \fB\-d\fR which column to remove, counting from 1 (default none) .TP \fB\-v\fR print the labels and associated positions to standard error .SH EXAMPLES .TP echo "a 1\enb 2" | gbdummyfy create a 4x3 marix with dummy values relative to labels 'a' and 'b' .PP This program requires awk or gawk. Notice that it simply expands the data adding new columns. When using the resulting the resulting matrix in other utilities, the user should specify explicitly which dummies variable to use and how. .PP A simple linear dependency can be automatically generated for 'gblreg' by inserting the following expression in the functional specification .PP `seq 3 12 | sed 's/\e(.*\e)/\e+d\e1\e*x\e1/' | tr \-d '\en'` .PP and .PP `seq 3 12 | sed 's/\e(.*\e)/,\e1=0/' | tr \-d '\en'` .PP among the initial conditions. In this case there are 10 different values for the dummy. They occupy column positions from 3 to 12 and their initial value is zero. .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2009\-2015 Giulio Bottazzi .PP This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation. .PP 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. gbutils-5.7.1/INSTALL0000644000175000017500000003660011775245551011170 00000000000000Installation Instructions ************************* Copyright (C) 1994-1996, 1999-2002, 2004-2011 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without warranty of any kind. Basic Installation ================== Briefly, the shell commands `./configure; make; make install' should configure, build, and install this package. The following more-detailed instructions are generic; see the `README' file for instructions specific to this package. Some packages provide this `INSTALL' file but do not implement all of the features documented below. The lack of an optional feature in a given package is not necessarily a bug. More recommendations for GNU packages can be found in *note Makefile Conventions: (standards)Makefile Conventions. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses those values to create a `Makefile' in each directory of the package. It may also create one or more `.h' files containing system-dependent definitions. Finally, it creates a shell script `config.status' that you can run in the future to recreate the current configuration, and a file `config.log' containing compiler output (useful mainly for debugging `configure'). It can also use an optional file (typically called `config.cache' and enabled with `--cache-file=config.cache' or simply `-C') that saves the results of its tests to speed up reconfiguring. Caching is disabled by default to prevent problems with accidental use of stale cache files. If you need to do unusual things to compile the package, please try to figure out how `configure' could check whether to do them, and mail diffs or instructions to the address given in the `README' so they can be considered for the next release. If you are using the cache, and at some point `config.cache' contains results you don't want to keep, you may remove or edit it. The file `configure.ac' (or `configure.in') is used to create `configure' by a program called `autoconf'. You need `configure.ac' if you want to change it or regenerate `configure' using a newer version of `autoconf'. The simplest way to compile this package is: 1. `cd' to the directory containing the package's source code and type `./configure' to configure the package for your system. Running `configure' might take a while. While running, it prints some messages telling which features it is checking for. 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with the package, generally using the just-built uninstalled binaries. 4. Type `make install' to install the programs and any data files and documentation. When installing into a prefix owned by root, it is recommended that the package be configured and built as a regular user, and only the `make install' phase executed with root privileges. 5. Optionally, type `make installcheck' to repeat any self-tests, but this time using the binaries in their final installed location. This target does not install anything. Running this target as a regular user, particularly if the prior `make install' required root privileges, verifies that the installation completed correctly. 6. You can remove the program binaries and object files from the source code directory by typing `make clean'. To also remove the files that `configure' created (so you can compile the package for a different kind of computer), type `make distclean'. There is also a `make maintainer-clean' target, but that is intended mainly for the package's developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution. 7. Often, you can also type `make uninstall' to remove the installed files again. In practice, not all packages have tested that uninstallation works correctly, even though it is required by the GNU Coding Standards. 8. Some packages, particularly those that use Automake, provide `make distcheck', which can by used by developers to test that all other targets like `make install' and `make uninstall' work correctly. This target is generally not run by end users. Compilers and Options ===================== Some systems require unusual options for compilation or linking that the `configure' script does not know about. Run `./configure --help' for details on some of the pertinent environment variables. You can give `configure' initial values for configuration parameters by setting variables in the command line or in the environment. Here is an example: ./configure CC=c99 CFLAGS=-g LIBS=-lposix *Note Defining Variables::, for more details. Compiling For Multiple Architectures ==================================== You can compile the package for more than one kind of computer at the same time, by placing the object files for each architecture in their own directory. To do this, you can use GNU `make'. `cd' to the directory where you want the object files and executables to go and run the `configure' script. `configure' automatically checks for the source code in the directory that `configure' is in and in `..'. This is known as a "VPATH" build. With a non-GNU `make', it is safer to compile the package for one architecture at a time in the source code directory. After you have installed the package for one architecture, use `make distclean' before reconfiguring for another architecture. On MacOS X 10.5 and later systems, you can create libraries and executables that work on multiple system types--known as "fat" or "universal" binaries--by specifying multiple `-arch' options to the compiler but only a single `-arch' option to the preprocessor. Like this: ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CPP="gcc -E" CXXCPP="g++ -E" This is not guaranteed to produce working output in all cases, you may have to build one architecture at a time and combine the results using the `lipo' tool if you have problems. Installation Names ================== By default, `make install' installs the package's commands under `/usr/local/bin', include files under `/usr/local/include', etc. You can specify an installation prefix other than `/usr/local' by giving `configure' the option `--prefix=PREFIX', where PREFIX must be an absolute file name. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you pass the option `--exec-prefix=PREFIX' to `configure', the package uses PREFIX as the prefix for installing programs and libraries. Documentation and other data files still use the regular prefix. In addition, if you use an unusual directory layout you can give options like `--bindir=DIR' to specify different values for particular kinds of files. Run `configure --help' for a list of the directories you can set and what kinds of files go in them. In general, the default for these options is expressed in terms of `${prefix}', so that specifying just `--prefix' will affect all of the other directory specifications that were not explicitly provided. The most portable way to affect installation locations is to pass the correct locations to `configure'; however, many packages provide one or both of the following shortcuts of passing variable assignments to the `make install' command line to change installation locations without having to reconfigure or recompile. The first method involves providing an override variable for each affected directory. For example, `make install prefix=/alternate/directory' will choose an alternate location for all directory configuration variables that were expressed in terms of `${prefix}'. Any directories that were specified during `configure', but not in terms of `${prefix}', must each be overridden at install time for the entire installation to be relocated. The approach of makefile variable overrides for each directory variable is required by the GNU Coding Standards, and ideally causes no recompilation. However, some platforms have known limitations with the semantics of shared libraries that end up requiring recompilation when using this method, particularly noticeable in packages that use GNU Libtool. The second method involves providing the `DESTDIR' variable. For example, `make install DESTDIR=/alternate/directory' will prepend `/alternate/directory' before all installation names. The approach of `DESTDIR' overrides is not required by the GNU Coding Standards, and does not work on platforms that have drive letters. On the other hand, it does better at avoiding recompilation issues, and works well even when some directory options were not specified in terms of `${prefix}' at `configure' time. Optional Features ================= If the package supports it, you can cause programs to be installed with an extra prefix or suffix on their names by giving `configure' the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. Some packages pay attention to `--enable-FEATURE' options to `configure', where FEATURE indicates an optional part of the package. They may also pay attention to `--with-PACKAGE' options, where PACKAGE is something like `gnu-as' or `x' (for the X Window System). The `README' should mention any `--enable-' and `--with-' options that the package recognizes. For packages that use the X Window System, `configure' can usually find the X include and library files automatically, but if it doesn't, you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. Some packages offer the ability to configure how verbose the execution of `make' will be. For these packages, running `./configure --enable-silent-rules' sets the default to minimal output, which can be overridden with `make V=1'; while running `./configure --disable-silent-rules' sets the default to verbose, which can be overridden with `make V=0'. Particular systems ================== On HP-UX, the default C compiler is not ANSI C compatible. If GNU CC is not installed, it is recommended to use the following options in order to use an ANSI C compiler: ./configure CC="cc -Ae -D_XOPEN_SOURCE=500" and if that doesn't work, install pre-built binaries of GCC for HP-UX. HP-UX `make' updates targets which have the same time stamps as their prerequisites, which makes it generally unusable when shipped generated files such as `configure' are involved. Use GNU `make' instead. On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot parse its `' header file. The option `-nodtk' can be used as a workaround. If GNU CC is not installed, it is therefore recommended to try ./configure CC="cc" and if that doesn't work, try ./configure CC="cc -nodtk" On Solaris, don't put `/usr/ucb' early in your `PATH'. This directory contains several dysfunctional programs; working variants of these programs are available in `/usr/bin'. So, if you need `/usr/ucb' in your `PATH', put it _after_ `/usr/bin'. On Haiku, software installed for all users goes in `/boot/common', not `/usr/local'. It is recommended to use the following options: ./configure --prefix=/boot/common Specifying the System Type ========================== There may be some features `configure' cannot figure out automatically, but needs to determine by the type of machine the package will run on. Usually, assuming the package is built to be run on the _same_ architectures, `configure' can figure that out, but if it prints a message saying it cannot guess the machine type, give it the `--build=TYPE' option. TYPE can either be a short name for the system type, such as `sun4', or a canonical name which has the form: CPU-COMPANY-SYSTEM where SYSTEM can have one of these forms: OS KERNEL-OS See the file `config.sub' for the possible values of each field. If `config.sub' isn't included in this package, then this package doesn't need to know the machine type. If you are _building_ compiler tools for cross-compiling, you should use the option `--target=TYPE' to select the type of system they will produce code for. If you want to _use_ a cross compiler, that generates code for a platform different from the build platform, you should specify the "host" platform (i.e., that on which the generated programs will eventually be run) with `--host=TYPE'. Sharing Defaults ================ If you want to set default values for `configure' scripts to share, you can create a site shell script called `config.site' that gives default values for variables like `CC', `cache_file', and `prefix'. `configure' looks for `PREFIX/share/config.site' if it exists, then `PREFIX/etc/config.site' if it exists. Or, you can set the `CONFIG_SITE' environment variable to the location of the site script. A warning: not all `configure' scripts look for a site script. Defining Variables ================== Variables not defined in a site shell script can be set in the environment passed to `configure'. However, some packages may run configure again during the build, and the customized values of these variables may be lost. In order to avoid this problem, you should set them in the `configure' command line, using `VAR=value'. For example: ./configure CC=/usr/local2/bin/gcc causes the specified `gcc' to be used as the C compiler (unless it is overridden in the site shell script). Unfortunately, this technique does not work for `CONFIG_SHELL' due to an Autoconf bug. Until the bug is fixed you can use this workaround: CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash `configure' Invocation ====================== `configure' recognizes the following options to control how it operates. `--help' `-h' Print a summary of all of the options to `configure', and exit. `--help=short' `--help=recursive' Print a summary of the options unique to this package's `configure', and exit. The `short' variant lists options used only in the top level, while the `recursive' variant lists options also present in any nested packages. `--version' `-V' Print the version of Autoconf used to generate the `configure' script, and exit. `--cache-file=FILE' Enable the cache: use and save the results of the tests in FILE, traditionally `config.cache'. FILE defaults to `/dev/null' to disable caching. `--config-cache' `-C' Alias for `--cache-file=config.cache'. `--quiet' `--silent' `-q' Do not print messages saying which checks are being made. To suppress all normal output, redirect it to `/dev/null' (any error messages will still be shown). `--srcdir=DIR' Look for the package's source code in directory DIR. Usually `configure' can determine that directory automatically. `--prefix=DIR' Use DIR as the installation prefix. *note Installation Names:: for more details, including other options available for fine-tuning the installation locations. `--no-create' `-n' Run the configure checks, but stop before creating any output files. `configure' also accepts some other, not widely useful, options. Run `configure --help' for more details. gbutils-5.7.1/gblreg.c0000644000175000017500000002334013246754720011540 00000000000000/* gblreg (ver. 5.6) -- Estimate linear regression model Copyright (C) 2005-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "tools.h" #include #include void print_linear_verbose(FILE *file,const int o_weight, const int o_model, const size_t size, const double c0,const double c1, const double cov00,const double cov01, const double cov11, const double sumsq){ const int ndf = size-(o_model==0?2:1); fprintf(file,"\n"); fprintf(file," ------------------------------------------------------------\n"); fprintf(stderr," number of observations = %zd\n",size); fprintf(stderr," number of indep. variables = %d\n",ndf); fprintf(file,"\n"); fprintf(stderr," model (C[i]: i-th column; eps: residual):\n\n"); fprintf(stderr," C[2] ~ "); if(o_model==0) fprintf(stderr," c0 + "); fprintf(stderr,"c1*C[1] + "); if(o_weight) fprintf(stderr,"eps*C[3]\n"); else fprintf(stderr,"eps\n"); fprintf(file,"\n"); fprintf(file," ------------------------------------------------------------\n"); if(!o_weight){ fprintf(file," sum of squared residual (SSR) = %f\n",sumsq); fprintf(file," number degrees of freedom (ndf) = %d\n",ndf); fprintf(file," sqrt(SSR/ndf) = %f\n",sqrt(sumsq/ndf)); fprintf(file," chi-square test P(>SSR | ndf) = %e\n", gsl_cdf_chisq_Q (sumsq,ndf)); } else{ fprintf(file," sum of weighted squared residual (WSSR) = %f\n",sumsq); fprintf(file," number degrees of freedom (ndf) = %d\n",ndf); fprintf(file," sqrt(WSSR/ndf) = %f\n",sqrt(sumsq/ndf)); fprintf(file," chi-square test P(>WSSR | ndf) = %e\n", gsl_cdf_chisq_Q (sumsq,ndf)); } fprintf(file," ------------------------------------------------------------\n"); fprintf(file,"\n"); /* Normal approximation to chi^2 */ /* fprintf(file," chisq. test Q(ndf/2,WSSR/2) = %e\n", */ /* gsl_cdf_gaussian_Q(sumsq-(size-cov->size1),sqrt(2*(size-cov->size1)))); */ if(o_model==0){ fprintf(file," c0= %+f +/- %f (%5.1f%%) | % f % f |\n",c0,sqrt(cov00),100*sqrt(cov00)/fabs(c0),1.,cov01/sqrt(cov00*cov11)); fprintf(file," c1= %+f +/- %f (%5.1f%%) | % f % f |\n",c1,sqrt(cov11),100*sqrt(cov11)/fabs(c1),cov01/sqrt(cov00*cov11),1.); } else { fprintf(file," c1= %+f +/- %f (%5.1f%%)\n",c1,sqrt(cov11),100*sqrt(cov11)/fabs(c1)); } fprintf(file," ------------------------------------------------------------\n"); fprintf(file,"\n"); } int main(int argc,char* argv[]){ double **data=NULL; /* array of values */ size_t size=0; /* length of array vals */ char *splitstring = strdup(" \t"); int o_verbose=0; int o_model=0; int o_output=0; int o_weight=0; /* COMMAND LINE PROCESSING */ /* variables for reading command line options */ /* ------------------------------------------ */ int opt; /* ------------------------------------------ */ /* read the command line */ while((opt=getopt_long(argc,argv,"v:hF:M:O:w",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='F'){ /* set the fields separator string*/ free(splitstring); splitstring = strdup(optarg); } else if(opt=='M'){ /* set the method to use*/ o_model = atoi(optarg); } else if(opt=='O'){ /* set the type of output */ o_output = atoi(optarg); } else if(opt=='w'){ /* set third columns as weight */ o_weight = 1; } else if(opt=='v'){ /* set verbosity level*/ o_verbose = atoi(optarg); } else if(opt=='h'){ /* print short help */ fprintf(stdout,"Linear regression. Data provided should have independent variable on the\n"); fprintf(stdout,"1st column and dependent variable on the 2nd. Standard error on dependent\n"); fprintf(stdout,"variable can be provided on the 3rd column.\n"); fprintf(stdout,"\nUsage: %s [options]\n\n",argv[0]); fprintf(stdout,"Options:\n"); fprintf(stdout," -M the linear regression model (default 0)\n"); fprintf(stdout," 0 with estimated intercept \n"); fprintf(stdout," 1 with zero intercept \n"); fprintf(stdout," -O the type of output (default 0)\n"); fprintf(stdout," 0 regression coefficients \n"); fprintf(stdout," 1 regression coefficients and errors \n"); fprintf(stdout," 2 x, fitted y, error on y, residual \n"); fprintf(stdout," -w consider provided standard errors on y \n"); fprintf(stdout," -v verbosity level (default 0)\n"); fprintf(stdout," 0 just output \n"); fprintf(stdout," 1 commented headings \n"); fprintf(stdout," 2 model details \n"); fprintf(stdout," -F specify the input fields separators (default \" \\t\")\n"); fprintf(stdout," -h print this help\n"); exit(0); } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); switch(o_model){ case 0 : { double c0,c1,cov00,cov01,cov11,sumsq; if(!o_weight){ load2(&data,&size,0,splitstring); gsl_fit_linear (data[0],1, data[1],1, size, &c0,&c1,&cov00,&cov01,&cov11,&sumsq); } else { size_t i; load3(&data,&size,0,splitstring); for(i=0;i1) print_linear_verbose(stdout,o_weight,o_model,size,c0,c1,cov00,cov01,cov11,sumsq); switch(o_output){ case 0: /* +++++++++++++++++++++++++++++++ */ if(o_verbose>0){ fprintf(stdout,EMPTY_SEP,"#c0"); fprintf(stdout,EMPTY_NL,"c1"); } /* +++++++++++++++++++++++++++++++ */ fprintf(stdout,FLOAT_SEP,c0); fprintf(stdout,FLOAT_NL,c1); break; case 1: /* +++++++++++++++++++++++++++++++ */ if(o_verbose>0){ fprintf(stdout,EMPTY_SEP,"#c0"); fprintf(stdout,EMPTY_SEP,"+/-"); fprintf(stdout,EMPTY_SEP,"c1"); fprintf(stdout,EMPTY_NL,"+/-"); } /* +++++++++++++++++++++++++++++++ */ fprintf(stdout,FLOAT_SEP,c0); fprintf(stdout,FLOAT_SEP,sqrt(cov00)); fprintf(stdout,FLOAT_SEP,c1); fprintf(stdout,FLOAT_NL,sqrt(cov11)); break; case 2: { size_t i; double y,y_err; /* +++++++++++++++++++++++++++++++ */ if(o_verbose>0){ fprintf(stdout,EMPTY_SEP,"#c0"); fprintf(stdout,EMPTY_SEP,"+/-"); fprintf(stdout,EMPTY_SEP,"c1"); fprintf(stdout,EMPTY_NL,"+/-"); fprintf(stdout,"#"); fprintf(stdout,FLOAT_SEP,c0); fprintf(stdout,FLOAT_SEP,sqrt(cov00)); fprintf(stdout,FLOAT_SEP,c1); fprintf(stdout,FLOAT_NL,sqrt(cov11)); } /* +++++++++++++++++++++++++++++++ */ for(i=0;i1) print_linear_verbose(stdout,o_weight,o_model,size,0.0,c1,0.0,0.0,cov11,sumsq); switch(o_output){ case 0: /* +++++++++++++++++++++++++++++++ */ if(o_verbose>0) fprintf(stdout,EMPTY_NL,"#c1"); /* +++++++++++++++++++++++++++++++ */ fprintf(stdout,FLOAT_NL,c1); break; case 1: /* +++++++++++++++++++++++++++++++ */ if(o_verbose>0){ fprintf(stdout,EMPTY_SEP,"#c1"); fprintf(stdout,EMPTY_NL,"+/-"); } /* +++++++++++++++++++++++++++++++ */ fprintf(stdout,FLOAT_SEP,c1); fprintf(stdout,FLOAT_NL,sqrt(cov11)); break; case 2: { size_t i; double y,y_err; /* +++++++++++++++++++++++++++++++ */ if(o_verbose>0){ fprintf(stdout,EMPTY_SEP,"#c1"); fprintf(stdout,EMPTY_NL,"+/-"); } /* +++++++++++++++++++++++++++++++ */ fprintf(stdout,FLOAT_SEP,c1); fprintf(stdout,FLOAT_NL,sqrt(cov11)); for(i=0;i #else /* Find the first occurrence of C in S or the final NUL byte. */ extern char *strchrnul (const char *s, int c_in); #endif gbutils-5.7.1/lib/getdelim.c0000644000175000017500000000565110327011632012624 00000000000000/* getdelim.c --- Implementation of replacement getdelim function. Copyright (C) 1994, 1996, 1997, 1998, 2001, 2003, 2005 Free Software Foundation, Inc. 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, 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, Fifth Floor, Boston, MA 02110-1301, USA. */ /* Ported from glibc by Simon Josefsson. */ #ifdef HAVE_CONFIG_H # include #endif #include "getdelim.h" #include #include #include #ifndef SIZE_MAX # define SIZE_MAX ((size_t) -1) #endif #ifndef SSIZE_MAX # define SSIZE_MAX ((ssize_t) (SIZE_MAX / 2)) #endif #if !HAVE_FLOCKFILE # undef flockfile # define flockfile(x) ((void) 0) #endif #if !HAVE_FUNLOCKFILE # undef funlockfile # define funlockfile(x) ((void) 0) #endif /* Read up to (and including) a DELIMITER from FP into *LINEPTR (and NUL-terminate it). *LINEPTR is a pointer returned from malloc (or NULL), pointing to *N characters of space. It is realloc'ed as necessary. Returns the number of characters read (not including the null terminator), or -1 on error or EOF. */ ssize_t getdelim (char **lineptr, size_t *n, int delimiter, FILE *fp) { ssize_t result; size_t cur_len = 0; if (lineptr == NULL || n == NULL || fp == NULL) { errno = EINVAL; return -1; } flockfile (fp); if (*lineptr == NULL || *n == 0) { *n = 120; *lineptr = (char *) malloc (*n); if (*lineptr == NULL) { result = -1; goto unlock_return; } } for (;;) { int i; i = getc (fp); if (i == EOF) { result = -1; break; } /* Make enough space for len+1 (for final NUL) bytes. */ if (cur_len + 1 >= *n) { size_t needed_max = SSIZE_MAX < SIZE_MAX ? (size_t) SSIZE_MAX + 1 : SIZE_MAX; size_t needed = 2 * *n + 1; /* Be generous. */ char *new_lineptr; if (needed_max < needed) needed = needed_max; if (cur_len + 1 >= needed) { result = -1; goto unlock_return; } new_lineptr = (char *) realloc (*lineptr, needed); if (new_lineptr == NULL) { result = -1; goto unlock_return; } *lineptr = new_lineptr; *n = needed; } (*lineptr)[cur_len] = i; cur_len++; if (i == delimiter) break; } (*lineptr)[cur_len] = '\0'; result = cur_len ? cur_len : result; unlock_return: funlockfile (fp); return result; } gbutils-5.7.1/lib/getsubopt.h0000644000175000017500000000331610327011632013047 00000000000000/* Parse comma separate list into words. Copyright (C) 2004-2005 Free Software Foundation, Inc. Contributed by Simon Josefsson , 2004. 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, 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, Fifth Floor, Boston, MA 02110-1301, USA. */ /* Assuming *OPTIONP is a comma separated list of elements of the form "token" or "token=value", getsubopt parses the first of these elements. If the first element refers to a "token" that is member of the given NULL-terminated array of tokens: - It replaces the comma with a NUL byte, updates *OPTIONP to point past the first option and the comma, sets *VALUEP to the value of the element (or NULL if it doesn't contain an "=" sign), - It returns the index of the "token" in the given array of tokens. Otherwise it returns -1, and *OPTIONP and *VALUEP are undefined. For more details see the POSIX:2001 specification. http://www.opengroup.org/susv3xsh/getsubopt.html */ #if HAVE_GETSUBOPT /* Get getsubopt declaration. */ #include #else extern int getsubopt (char **optionp, char *const *tokens, char **valuep); #endif gbutils-5.7.1/lib/getline.h0000644000175000017500000000210610327011632012456 00000000000000/* getline.h --- Prototype for replacement getline function. Copyright (C) 2005 Free Software Foundation, Inc. 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, 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, Fifth Floor, Boston, MA 02110-1301, USA. */ /* Written by Simon Josefsson. */ /* Get size_t, FILE, ssize_t. And getline, if available. */ # include # include # include #if !HAVE_DECL_GETLINE ssize_t getline (char **lineptr, size_t *n, FILE *stream); #endif /* !HAVE_GETLINE */ gbutils-5.7.1/lib/strchrnul.c0000644000175000017500000000177110327011632013055 00000000000000/* Searching in a string. Copyright (C) 2003 Free Software Foundation, Inc. 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, 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, Fifth Floor, Boston, MA 02110-1301, USA. */ /* Specification. */ #include "strchrnul.h" /* Find the first occurrence of C in S or the final NUL byte. */ char * strchrnul (const char *s, int c_in) { char c = c_in; while (*s && (*s != c)) s++; return (char *) s; } gbutils-5.7.1/lib/getsubopt.c0000644000175000017500000000477510327011632013054 00000000000000/* Parse comma separate list into words. Copyright (C) 1996, 1997, 1999, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. 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, 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #if !_LIBC /* This code is written for inclusion in gnu-libc, and uses names in the namespace reserved for libc. If we're compiling in gnulib, define those names to be the normal ones instead. */ # include "strchrnul.h" # undef __strchrnul # define __strchrnul strchrnul #endif /* Parse comma separated suboption from *OPTIONP and match against strings in TOKENS. If found return index and set *VALUEP to optional value introduced by an equal sign. If the suboption is not part of TOKENS return in *VALUEP beginning of unknown suboption. On exit *OPTIONP is set to the beginning of the next token or at the terminating NUL character. */ int getsubopt (char **optionp, char *const *tokens, char **valuep) { char *endp, *vstart; int cnt; if (**optionp == '\0') return -1; /* Find end of next token. */ endp = __strchrnul (*optionp, ','); /* Find start of value. */ vstart = memchr (*optionp, '=', endp - *optionp); if (vstart == NULL) vstart = endp; /* Try to match the characters between *OPTIONP and VSTART against one of the TOKENS. */ for (cnt = 0; tokens[cnt] != NULL; ++cnt) if (strncmp (*optionp, tokens[cnt], vstart - *optionp) == 0 && tokens[cnt][vstart - *optionp] == '\0') { /* We found the current option in TOKENS. */ *valuep = vstart != endp ? vstart + 1 : NULL; if (*endp != '\0') *endp++ = '\0'; *optionp = endp; return cnt; } /* The current suboption does not match any option. */ *valuep = *optionp; if (*endp != '\0') *endp++ = '\0'; *optionp = endp; return -1; } gbutils-5.7.1/lib/getdelim.h0000644000175000017500000000213310327011632012621 00000000000000/* getdelim.h --- Prototype for replacement getdelim function. Copyright (C) 2005 Free Software Foundation, Inc. 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, 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, Fifth Floor, Boston, MA 02110-1301, USA. */ /* Written by Simon Josefsson. */ /* Get size_t, FILE, ssize_t. And getdelim, if available. */ # include # include # include #if !HAVE_DECL_GETDELIM ssize_t getdelim (char **lineptr, size_t *n, int delimiter, FILE *stream); #endif /* !HAVE_GETDELIM */ gbutils-5.7.1/lib/Makefile.in0000644000175000017500000004157013246753207012751 00000000000000# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (C) 2004 Free Software Foundation, Inc. # # This file is free software, distributed under the terms of the GNU # General Public License. As a special exception to the GNU General # Public License, this file may be distributed as part of a program # that contains a configuration script generated by Automake, under # the same distribution terms as the rest of that program. # # Generated by gnulib-tool. # Reproduce by: gnulib-tool --import --dir=. --lib=libgnu --source-base=lib --m4-base=m4 --aux-dir=. --macro-prefix=gl getline getsubopt VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = lib ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getline.m4 $(top_srcdir)/m4/getsubopt.m4 \ $(top_srcdir)/m4/gnulib-comp.m4 \ $(top_srcdir)/m4/onceonly_2_57.m4 \ $(top_srcdir)/m4/strchrnul.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LIBRARIES = $(noinst_LIBRARIES) AR = ar ARFLAGS = cru AM_V_AR = $(am__v_AR_@AM_V@) am__v_AR_ = $(am__v_AR_@AM_DEFAULT_V@) am__v_AR_0 = @echo " AR " $@; am__v_AR_1 = libgnu_a_AR = $(AR) $(ARFLAGS) libgnu_a_DEPENDENCIES = @LIBOBJS@ am_libgnu_a_OBJECTS = dummy.$(OBJEXT) libgnu_a_OBJECTS = $(am_libgnu_a_OBJECTS) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libgnu_a_SOURCES) DIST_SOURCES = $(libgnu_a_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in getdelim.c getdelim.h \ getline.c getline.h getsubopt.c strchrnul.c DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GBACORR = @GBACORR@ GBACORRMAN = @GBACORRMAN@ GBFUN = @GBFUN@ GBFUNMAN = @GBFUNMAN@ GBGET = @GBGET@ GBGETMAN = @GBGETMAN@ GBGLREG = @GBGLREG@ GBGLREGMAN = @GBGLREGMAN@ GBGRID = @GBGRID@ GBGRIDMAN = @GBGRIDMAN@ GBHILL = @GBHILL@ GBHILLMAN = @GBHILLMAN@ GBINTERP = @GBINTERP@ GBINTERPMAN = @GBINTERPMAN@ GBKER = @GBKER@ GBKERMAN = @GBKERMAN@ GBKREG = @GBKREG@ GBKREGMAN = @GBKREGMAN@ GBLREG = @GBLREG@ GBLREGMAN = @GBLREGMAN@ GBMODES = @GBMODES@ GBMODESMAN = @GBMODESMAN@ GBNLMULT = @GBNLMULT@ GBNLMULTMAN = @GBNLMULTMAN@ GBNLPANEL = @GBNLPANEL@ GBNLPANELMAN = @GBNLPANELMAN@ GBNLPOLYIT = @GBNLPOLYIT@ GBNLPOLYITMAN = @GBNLPOLYITMAN@ GBNLPROBIT = @GBNLPROBIT@ GBNLPROBITMAN = @GBNLPROBITMAN@ GBNLQREG = @GBNLQREG@ GBNLQREGMAN = @GBNLQREGMAN@ GBNLREG = @GBNLREG@ GBNLREGMAN = @GBNLREGMAN@ GBRAND = @GBRAND@ GBRANDMAN = @GBRANDMAN@ GREP = @GREP@ HELP2MAN = @HELP2MAN@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AUTOMAKE_OPTIONS = 1.5 gnits no-dependencies noinst_LIBRARIES = libgnu.a libgnu_a_SOURCES = dummy.c getsubopt.h strchrnul.h libgnu_a_LIBADD = @LIBOBJS@ EXTRA_DIST = BUILT_SOURCES = SUFFIXES = MOSTLYCLEANFILES = CLEANFILES = DISTCLEANFILES = MAINTAINERCLEANFILES = all: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) all-am .SUFFIXES: .SUFFIXES: .c .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnits lib/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnits lib/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) libgnu.a: $(libgnu_a_OBJECTS) $(libgnu_a_DEPENDENCIES) $(EXTRA_libgnu_a_DEPENDENCIES) $(AM_V_at)-rm -f libgnu.a $(AM_V_AR)$(libgnu_a_AR) libgnu.a $(libgnu_a_OBJECTS) $(libgnu_a_LIBADD) $(AM_V_at)$(RANLIB) libgnu.a mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c .c.o: $(AM_V_CC)$(COMPILE) -c -o $@ $< .c.obj: $(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) check-am all-am: Makefile $(LIBRARIES) installdirs: install: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-noinstLIBRARIES mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: all check install install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-noinstLIBRARIES cscopelist-am ctags ctags-am distclean \ distclean-compile distclean-generic distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic pdf pdf-am ps ps-am tags tags-am uninstall \ uninstall-am .PRECIOUS: Makefile # Makefile.am ends here # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gbutils-5.7.1/lib/getline.c0000644000175000017500000000204710327011632012455 00000000000000/* getline.c --- Implementation of replacement getline function. Copyright (C) 2005 Free Software Foundation, Inc. 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, 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, Fifth Floor, Boston, MA 02110-1301, USA. */ /* Written by Simon Josefsson. */ #ifdef HAVE_CONFIG_H # include #endif #include "getdelim.h" #include "getline.h" ssize_t getline (char **lineptr, size_t *n, FILE *stream) { return getdelim (lineptr, n, '\n', stream); } gbutils-5.7.1/aclocal.m40000644000175000017500000012557513246753206012005 00000000000000# generated automatically by aclocal 1.15 -*- Autoconf -*- # Copyright (C) 1996-2014 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])]) m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],, [m4_warning([this file was generated for autoconf 2.69. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically 'autoreconf'.])]) # Copyright (C) 2002-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.15' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.15], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.15])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to # '$srcdir', '$srcdir/..', or '$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is '.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl # Expand $ac_aux_dir to an absolute path. am_aux_dir=`cd "$ac_aux_dir" && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl m4_if([$1], [CC], [depcc="$CC" am_compiler_list=], [$1], [CXX], [depcc="$CXX" am_compiler_list=], [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'], [$1], [UPC], [depcc="$UPC" am_compiler_list=], [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi am__universal=false m4_case([$1], [CC], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac], [CXX], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac]) for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES. AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl AS_HELP_STRING( [--enable-dependency-tracking], [do not reject slow dependency extractors]) AS_HELP_STRING( [--disable-dependency-tracking], [speeds up one-time build])]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl AC_SUBST([am__nodep])dnl _AM_SUBST_NOTMAKE([am__nodep])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named 'Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running 'make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "$am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking # is enabled. FIXME. This creates each '.P' file that we will # need in order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O. m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC]) [_AM_PROG_CC_C_O ]) # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [AC_DIAGNOSE([obsolete], [$0: two- and three-arguments forms are deprecated.]) m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if( m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]), [ok:ok],, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package]) AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) AM_MISSING_PROG([AUTOCONF], [autoconf]) AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) AM_MISSING_PROG([AUTOHEADER], [autoheader]) AM_MISSING_PROG([MAKEINFO], [makeinfo]) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # AC_SUBST([mkdir_p], ['$(MKDIR_P)']) # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES([CC])], [m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES([CXX])], [m4_define([AC_PROG_CXX], m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES([OBJC])], [m4_define([AC_PROG_OBJC], m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], [_AM_DEPENDENCIES([OBJCXX])], [m4_define([AC_PROG_OBJCXX], m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl ]) AC_REQUIRE([AM_SILENT_RULES])dnl dnl The testsuite driver may need to know about EXEEXT, so add the dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) fi fi dnl The trailing newline in this macro's definition is deliberate, for dnl backward compatibility and to allow trailing 'dnl'-style comments dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841. ]) dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST([install_sh])]) # Copyright (C) 2003-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Copyright (C) 1998-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_LEX # ----------- # Autoconf leaves LEX=: if lex or flex can't be found. Change that to a # "missing" invocation, for better error output. AC_DEFUN([AM_PROG_LEX], [AC_PREREQ([2.50])dnl AC_REQUIRE([AM_MISSING_HAS_RUN])dnl AC_REQUIRE([AC_PROG_LEX])dnl if test "$LEX" = :; then LEX=${am_missing_run}flex fi]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from 'make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it is modern enough. # If it is, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= AC_MSG_WARN(['missing' script is too old or missing]) fi ]) # -*- Autoconf -*- # Obsolete and "removed" macros, that must however still report explicit # error messages when used, to smooth transition. # # Copyright (C) 1996-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. AC_DEFUN([AM_CONFIG_HEADER], [AC_DIAGNOSE([obsolete], ['$0': this macro is obsolete. You should use the 'AC][_CONFIG_HEADERS' macro instead.])dnl AC_CONFIG_HEADERS($@)]) AC_DEFUN([AM_PROG_CC_STDC], [AC_PROG_CC am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc AC_DIAGNOSE([obsolete], ['$0': this macro is obsolete. You should simply use the 'AC][_PROG_CC' macro instead. Also, your code should no longer depend upon 'am_cv_prog_cc_stdc', but upon 'ac_cv_prog_cc_stdc'.])]) AC_DEFUN([AM_C_PROTOTYPES], [AC_FATAL([automatic de-ANSI-fication support has been removed])]) AU_DEFUN([fp_C_PROTOTYPES], [AM_C_PROTOTYPES]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # -------------------- # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])]) # _AM_SET_OPTIONS(OPTIONS) # ------------------------ # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Copyright (C) 1999-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_CC_C_O # --------------- # Like AC_PROG_CC_C_O, but changed for automake. We rewrite AC_PROG_CC # to automatically call this. AC_DEFUN([_AM_PROG_CC_C_O], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([compile])dnl AC_LANG_PUSH([C])dnl AC_CACHE_CHECK( [whether $CC understands -c and -o together], [am_cv_prog_cc_c_o], [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])]) # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i]) if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi AC_LANG_POP([C])]) # For backward compatibility. AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) # Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_RUN_LOG(COMMAND) # ------------------- # Run COMMAND, save the exit status in ac_status, and log it. # (This has been adapted from Autoconf's _AC_RUN_LOG macro.) AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD (exit $ac_status); }]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[[\\\"\#\$\&\'\`$am_lf]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi if test "$[2]" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT([yes]) # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi AC_CONFIG_COMMANDS_PRE( [AC_MSG_CHECKING([that generated files are newer than configure]) if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi AC_MSG_RESULT([done])]) rm -f conftest.file ]) # Copyright (C) 2009-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SILENT_RULES([DEFAULT]) # -------------------------- # Enable less verbose build rules; with the default set to DEFAULT # ("yes" being less verbose, "no" or empty being verbose). AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl AS_HELP_STRING( [--enable-silent-rules], [less verbose build output (undo: "make V=1")]) AS_HELP_STRING( [--disable-silent-rules], [verbose build output (undo: "make V=0")])dnl ]) case $enable_silent_rules in @%:@ ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; esac dnl dnl A few 'make' implementations (e.g., NonStop OS and NextStep) dnl do not support nested variable expansions. dnl See automake bug#9928 and bug#10237. am_make=${MAKE-make} AC_CACHE_CHECK([whether $am_make supports nested variables], [am_cv_make_support_nested_variables], [if AS_ECHO([['TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi]) if test $am_cv_make_support_nested_variables = yes; then dnl Using '$V' instead of '$(V)' breaks IRIX make. AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AC_SUBST([AM_V])dnl AM_SUBST_NOTMAKE([AM_V])dnl AC_SUBST([AM_DEFAULT_V])dnl AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl AC_SUBST([AM_DEFAULT_VERBOSITY])dnl AM_BACKSLASH='\' AC_SUBST([AM_BACKSLASH])dnl _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) # Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor 'install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in "make install-strip", and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be 'maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # AM_SUBST_NOTMAKE(VARIABLE) # -------------------------- # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of 'v7', 'ustar', or 'pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar # AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AC_SUBST([AMTAR], ['$${TAR-tar}']) # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' m4_if([$1], [v7], [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], [m4_case([$1], [ustar], [# The POSIX 1988 'ustar' format is defined with fixed-size fields. # There is notably a 21 bits limit for the UID and the GID. In fact, # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 # and bug#13588). am_max_uid=2097151 # 2^21 - 1 am_max_gid=$am_max_uid # The $UID and $GID variables are not portable, so we need to resort # to the POSIX-mandated id(1) utility. Errors in the 'id' calls # below are definitely unexpected, so allow the users to see them # (that is, avoid stderr redirection). am_uid=`id -u || echo unknown` am_gid=`id -g || echo unknown` AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) if test $am_uid -le $am_max_uid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) if test $am_gid -le $am_max_gid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi], [pax], [], [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Go ahead even if we have the value already cached. We do so because we # need to set the values for the 'am__tar' and 'am__untar' variables. _am_tools=${am_cv_prog_tar_$1-$_am_tools} for _am_tool in $_am_tools; do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works. rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR m4_include([m4/getdelim.m4]) m4_include([m4/getline.m4]) m4_include([m4/getsubopt.m4]) m4_include([m4/gnulib-comp.m4]) m4_include([m4/onceonly_2_57.m4]) m4_include([m4/strchrnul.m4]) gbutils-5.7.1/configure.ac0000644000175000017500000001451713246753034012423 00000000000000# Process this file with autoconf to produce a configure script. AC_INIT([gbutils],[5.7.1]) AC_CONFIG_SRCDIR([tools.c]) AM_INIT_AUTOMAKE AM_CONFIG_HEADER(config.h) # Checks for programs # ------------------- AC_PROG_INSTALL AC_PROG_LN_S AC_PROG_CC #this seems to be useful only on cygwin AM_PROG_LEX # First gnulib piece # ------------------ gl_EARLY # Check getline and getsubopt from gnulib gl_INIT # Checks for typedefs, structures, and compiler characteristics # ------------------------------------------------------------- AC_C_CONST AC_C_INLINE AC_TYPE_SIZE_T # Checks for libraries # -------------------- # Check ranlib (used in lib/ directory of gnulib) AC_PROG_RANLIB # Checks for math libraries AC_CHECK_LIB([m], [sin],,AC_MSG_ERROR(Library mlib not found!)) # Check for GSL AC_CHECK_LIB([gslcblas],[cblas_dgemm]) AC_CHECK_LIB([gsl],[gsl_blas_dgemm]) AC_CHECK_LIB([gsl],[gsl_multifit_fdfsolver_jac],AC_DEFINE([GSL_VER_2],[1],[GSL ver. >=2])) # Check for matheval AC_CHECK_LIB([matheval], [evaluator_create],,,$LEXLIB) #Check for zlib AC_CHECK_LIB([z], [gzopen]) # Checks for library functions #----------------------------- AC_CHECK_FUNCS([floor pow sqrt strchr strdup strspn memchr strcspn strtol strtod]) # Checks for header files # ----------------------- AC_HEADER_STDC AC_CHECK_HEADERS([float.h stdlib.h string.h unistd.h assert.h regex.h fcntl.h limits.h stddef.h]) # Check for the host to detect cygwin # ----------------------------------- AC_CANONICAL_HOST AM_CONDITIONAL([ISCYGWIN], [test x$host_os = xcygwin]) # Checks for help2man # ------------------- AC_PATH_PROG(HELP2MAN, help2man, false) AM_CONDITIONAL([H2M], [test x$HELP2MAN != xfalse]) # Define the utility to compile # ----------------------------- if test x$ac_cv_lib_gsl_gsl_blas_dgemm = xyes; then GBKER='gbker$(EXEEXT)' GBKREG='gbkreg$(EXEEXT)' GBMODES='gbmodes$(EXEEXT)' GBINTERP='gbinterp$(EXEEXT)' GBLREG='gblreg$(EXEEXT)' GBGLREG='gbglreg$(EXEEXT)' GBRAND='gbrand$(EXEEXT)' GBHILL='gbhill$(EXEEXT)' GBACORR='gbacorr$(EXEEXT)' GBKERMAN='gbker.1' GBKREGMAN='gbkreg.1' GBMODESMAN='gbmodes.1' GBINTERPMAN='gbinterp.1' GBLREGMAN='gblreg.1' GBGLREGMAN='gbglreg.1' GBRANDMAN='gbrand.1' GBHILLMAN='gbhill.1' GBACORRMAN='gbacorr.1' else LACKING="yes" fi if test x$ac_cv_lib_matheval_evaluator_create = xyes; then GBFUN='gbfun$(EXEEXT)' GBGRID='gbgrid$(EXEEXT)' GBFUNMAN='gbfun.1' GBGRIDMAN='gbgrid.1' else LACKING="yes" fi if test x$ac_cv_lib_matheval_evaluator_create = xyes && test x$ac_cv_lib_gsl_gsl_blas_dgemm = xyes; then GBGET='gbget$(EXEEXT)' GBNLREG='gbnlreg$(EXEEXT)' GBNLPANEL='gbnlpanel$(EXEEXT)' GBNLQREG='gbnlqreg$(EXEEXT)' GBNLMULT='gbnlmult$(EXEEXT)' GBNLPROBIT='gbnlprobit$(EXEEXT)' GBNLPOLYIT='gbnlpolyit$(EXEEXT)' GBGETMAN='gbget.1' GBNLREGMAN='gbnlreg.1' GBNLPANELMAN='gbnlpanel.1' GBNLQREGMAN='gbnlqreg.1' GBNLMULTMAN='gbnlmult.1' GBNLPROBITMAN='gbnlprobit.1' GBNLPOLYITMAN='gbnlpolyit.1' else LACKING="yes" fi # Add the optional utilities to Makefile # --------------------------------------- AC_SUBST(GBKER) AC_SUBST(GBMODES) AC_SUBST(GBKREG) AC_SUBST(GBINTERP) AC_SUBST(GBFUN) AC_SUBST(GBGET) AC_SUBST(GBGRID) AC_SUBST(GBLREG) AC_SUBST(GBGLREG) AC_SUBST(GBNLREG) AC_SUBST(GBNLPANEL) AC_SUBST(GBNLQREG) AC_SUBST(GBNLMULT) AC_SUBST(GBNLPROBIT) AC_SUBST(GBNLPOLYIT) AC_SUBST(GBRAND) AC_SUBST(GBHILL) AC_SUBST(GBACORR) AC_SUBST(GBKERMAN) AC_SUBST(GBMODESMAN) AC_SUBST(GBKREGMAN) AC_SUBST(GBINTERPMAN) AC_SUBST(GBFUNMAN) AC_SUBST(GBGETMAN) AC_SUBST(GBGRIDMAN) AC_SUBST(GBLREGMAN) AC_SUBST(GBGLREGMAN) AC_SUBST(GBNLREGMAN) AC_SUBST(GBNLPANELMAN) AC_SUBST(GBNLQREGMAN) AC_SUBST(GBNLMULTMAN) AC_SUBST(GBNLPROBITMAN) AC_SUBST(GBNLPOLYITMAN) AC_SUBST(GBRANDMAN) AC_SUBST(GBHILLMAN) AC_SUBST(GBACORRMAN) AC_CONFIG_FILES([Makefile lib/Makefile]) AC_OUTPUT echo "" echo " --------------------------------------------------------------------" echo "| Congratulations! Configuration of ver. $PACKAGE_VERSION is complete." echo "| Optional dependencies: " echo "|" echo -n "| Gnu Scientific Library (GSL) " if test x$ac_cv_lib_gsl_gsl_blas_dgemm = xyes; then echo " found" else echo " not found" fi echo -n "| GNU matheval library " if test x$ac_cv_lib_matheval_evaluator_create = xyes; then echo " found" else echo " not found" fi echo -n "| zlib general purpose compression library " if test x$ac_cv_lib_z_gzopen = xyes; then echo " found" else echo " not found" fi echo -n "| help2man automatic man pages generator " if test x$HELP2MAN != xfalse; then echo " found" else echo " not found" fi if test x$LACKING = xyes; then echo "|" echo "| The following utilities will not be installed due to lacking" echo "| libraries (check the README file):" echo -n "|" if test x$GBKER != x'gbker$(EXEEXT)'; then echo -n " gbker" fi if test x$GBKREG != x'gbkreg$(EXEEXT)'; then echo -n " gbkreg" fi if test x$GBLREG != x'gblreg$(EXEEXT)'; then echo -n " gblreg" fi if test x$GBGLREG != x'gbglreg$(EXEEXT)'; then echo -n " gbglreg" fi if test x$GBNLREG != x'gbnlreg$(EXEEXT)'; then echo -n " gbnlreg" fi if test x$GBNLPANEL != x'gbnlpanel$(EXEEXT)'; then echo -n " gbnlpanel" fi if test x$GBNLQREG != x'gbnlreg$(EXEEXT)'; then echo -n " gbnlqreg" fi if test x$GBNLMULT != x'gbnlmult$(EXEEXT)'; then echo -n " gbnlmult" fi if test x$GBNLPROBIT != x'gbnlprobit$(EXEEXT)'; then echo -n " gbnlprobit" fi if test x$GBNLPOLYIT != x'gbnlpolyit$(EXEEXT)'; then echo -n " gbnlpolyit" fi if test x$GBMODES != x'gbmodes$(EXEEXT)'; then echo -n " gbmodes" fi if test x$GBINTERP != x'gbinterp$(EXEEXT)'; then echo -n " gbinterp" fi if test x$GBGET != x'gbget$(EXEEXT)'; then echo -n " gbget" fi if test x$GBFUN != x'gbfun$(EXEEXT)'; then echo -n " gbfun" fi if test x$GBGRID != x'gbgrid$(EXEEXT)'; then echo -n " gbgrid" fi if test x$GBRAND != x'gbrand$(EXEEXT)'; then echo -n " gbrand" fi if test x$GBHILL != x'gbhill$(EXEEXT)'; then echo -n " gbhill" fi if test x$GBACORR != x'gbacorr$(EXEEXT)'; then echo -n " gbacorr" fi echo "" fi echo "| " echo "| The utilities will be installed under ${prefix}" echo "| To compile and install the utilities in a different directory" echo "| use the configure option --prefix, see the INSTALL file." echo "|" echo "| Now you can type 'make' to compile GBUTILS and 'make install'" echo "| to install it" echo "| enjoy!" echo " --------------------------------------------------------------------" gbutils-5.7.1/gbenv.10000644000175000017500000000320313246772646011320 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBENV "1" "March 2018" "gbenv 5.7.1" "User Commands" .SH NAME gbenv \- Floating point locale, and gbutils settings .SH DESCRIPTION Show floating point environment (for x86 family processors), locale and gbutils settings. .SS "Information about the floating point environment includes:" .IP if the environment is the default environment of the machine; if the precision is single, double or extended; if the rounding is nearest, upward, downward or toward zero; the list of exceptions whose interrupts are ignored (masked). .SS "Information about the locale includes:" .IP decimal point; thousand separator; the relative position of the thousand separator (grouping). .SS "Information about gbutils environment include:" .IP if the error handler is activated; the value of the environment variables dictating the output format; the output format of integers and floating point numbers. .SH OPTIONS .TP \fB\-h\fR print this help message .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/ChangeLog0000644000175000017500000023634613246772567011731 000000000000002018-03-04 Giulio Bottazzi * configure.ac: version updated to 5.7.1 * .c: updated copyright date range * .c (main): changed "opt" from char to int, native returned by getopt and getopt_long functions. 2017-09-01 Giulio Bottazzi * configure.ac: version updated to 5.7.0 * gbtest.c : added 'WILCO2', Wilcoxon signed rank test on paired samples. * tools.c (gbutils_header): updated date in copyright message. * gbfun.c (main): added option -T to change the computation from row-wise to column wise. * gbtest.c (main): further code cleaning; local copy of data is generated for one, two or paired sample tests; this is safest when multiple tests are performed. 2017-08-28 Giulio Bottazzi * gbtest.c, gbstat.c: added option -o to set output format 2017-08-24 Giulio Bottazzi * gbtest.c: some code cleaning. * gbtest.c (FP_test): changed the sign of the U statistics for consistency with other tests 2017-08-23 Giulio Bottazzi * gbtest.c (R_pscore): corrected the implementation of the Fisher's transformation. * gbtest.c (WILCO_test, WMW_test): check for memory leaks and removed a bug. * gbtest.c (Tpaired_test): added Spearman's T test for paired samples. 2016-06-04 Giulio Bottazzi * configure.ac: version updated to 5.6.9 * lib/Makefile.am, lib/dummy.c: added a dummy function to be included in the library 'libgnu.a' also when no other functions are included. This is done because Darwin (OS X) does not handle empty libraries file. 2016-05-31 Giulio Bottazzi * configure.ac: added AM_PROG_AR to check the syntax of ar. This seems required to compile static library on Mac 2015-11-22 Giulio Bottazzi * ALL: Updated version number to 5.6.8 Tagged with CVS using #cvs tag gbutils-5-6-8 * configure.ac: added check for newer version (>= 2.0) of GSL. If a version greater equal to 2 is found, GSL_VER_2 is defined to 1. This variable can be used in a preprocessor directive. * gbnlreg.c, gbnlmult.c: updated reference to GSL multifit function for GSL ver. 2.0 2015-09-08 Giulio Bottazzi * ALL: Tagged with CVS using #cvs tag gbutils-5-6-7 * README, doc/intro.pdf, doc/intro.txt: updated to reflect availability on official Debian system; removed obsolete list of files from the README. * configure.ac: Source package version updated to 5.6.7. * gbenv.c: the reporting of floating point properties is constrained to x68 family processors. 2015-07-17 Giulio Bottazzi * *.c: updated the address of the FSF. 2015-07-15 Giulio Bottazzi * *.c: replace "lenght" with "length" in the source code. 2015-06-12 Giulio Bottazzi * ALL: Tagged with CVS using #cvs tag gbutils-5-6-6 * configure.ac: Source package version updated to 5.6.6. * gbstat.c: added the computation of the mode using the Half Sample Method by Robertson and Cryer. 2015-06-06 Giulio Bottazzi * ALL: Tagged with CVS using #cvs tag gbutils-5-6-5 * gbkreg2d.c, gbkreg.c, gbker2d.c, gbhisto2d.c, gbacorr.c, gbstat.c : fixed typos 2015-05-30 Giulio Bottazzi * gbget.c: set the expression 'x0l1' to the row number of the previous row, consistently with general notation. * configure.ac: added automatic manual creation for gbget 2015-05-29 Giulio Bottazzi * tools.c: updated copyright dates * configure.ac: Source package version updated to 5.6.5. * Makefile.am: removed redundant script gbkeys2values: it gets replaced by gbconvtable. * gbconvtable, gbenv, Makefile.am: added man pages for gbconvtable and gbenv. 2015-05-12 Giulio Bottazzi * ALL: Tagged with CVS using #cvs tag gbutils-5-6-4 * gbhill.c: updated and improved the comment in the source code * gbget.c: added information about the size of the final matrix in verbose mode. 2015-05-06 Giulio Bottazzi * configure.ac: Source package version updated to 5.6.4. * Makefile.am: removed 'debian' directory from the distributed package. This is required for the inclusion in the official debian repositories. 2015-04-22 Giulio Bottazzi * gbhill.c: improved help and error messages 2015-03-29 Giulio Bottazzi * configure.ac: removed any reference to 'flex' apart the initial "AM_PROG_LEX" which seems to be useful on Cygwin (but not on linux systems). Flex should be in general checked by the libmatheval package. Corrected dependencies of the gbget program. Source package version updated to 5.6.3. Tagged with CVS using: #cvs tag gbutils-5-6-3 * Makefile.am: correct dependency for gbget; the explicit specification of flex library in the '_LDADD' declarations is now activated only for Cygwin. * gbkreg.c : corrected typo in help message 2015-03-25 Giulio Bottazzi * gbmave.c: added default value for option '-s' to help message. 2015-03-05 Giulio Bottazzi * gblreg.c (main): fixed bug in option '-O 2': the estimated coefficient were wrongly printed on the first line. 2015-01-08 Giulio Bottazzi * ALL: present version becomes 5-6-2 (tagged with CVS) using #cvs tag gbutils-5-6-2 This can be recovered using #cvs checkout -r gbutils-5-6-2 2015-01-07 Giulio Bottazzi * configure.ac, debian/changelog: version updated to 5.6.2; used 'dch -v 5.6.2-1' to update debian/changelog * Makefile.am: updated to reflect new documents structure * gbzscore, gbdenan, gbrobreg, gbrobareg: obsolete utilities removed from the package * gbdummyfy, Makefile.am: added man page * gbrand.c, gbker.c, gbinterp.c, gbhisto2d.c, gbboot.c, gbglreg.c: error messages are now correctly printed to stderr 2015-01-06 Giulio Bottazzi * gbinterp.c, gbrand.c: warning messages are now correctly printed to stderr 2014-12-27 Giulio Bottazzi * README, debian/docs, doc: added directory containing documentation files cygwin_install.pdf, cygwin_install.txt, gbget.pdf, gbget.txt, intro.pdf, intro.txt, overview.pdf, overview.txt 2014-09-26 Giulio Bottazzi * README: updated list of source files 2014-09-25 Giulio Bottazzi * tools.c: added 'finalize_program' to free all variables inizialized in 'inizialized_program' * tools.h: exported variable 'NL' * tools.c, tools.h, gbquant.c, gbget.c, gbtest.c: added the function "denan_pairs"; the function "data_denan" has been renamed "denan_data" for consistency 2014-09-23 Giulio Bottazzi * gbtest.c (run_twosamples): changed the output of two sample tests in the case of many columns. Now point estimates are returned in the lower triangle irrespective of option -p. 2014-09-10 Giulio Bottazzi * Makefile.am: the list of files to be included in the package has been updated 2014-09-03 Giulio Bottazzi * ALL: present version becomes 5-6-1 (tagged with CVS) using #cvs tag gbutils-5-6-1 This can be recovered using #cvs checkout -r gbutils-5-6-1 * debian: updated file in the debian dir * gbhisto.c: added option '-S' to tune the midpoint calculation; added two cases to otpion -M to print cumulated distribution; fixed the output of some warning messages 2014-09-02 Giulio Bottazzi * gbhisto.c: added the description of the bin midpoint in the help message * gbacorr.c: added to the CVS repository 2014-08-27 Giulio Bottazzi * gbacorr.c: added optiopn -p to compute confidence intervals using Fisher transform * configure.ac, Makefile.am: added 'gbacorrr' among the utilities depending on gsl for installation. Fixed mis-allignemt of the rules to create man pages. 2014-08-26 Giulio Bottazzi * tools.h: removed redundant initializaton of optarg ,optind, opterr and optopt; * Makefile.am: added explicit linking option for gbget 2014-08-20 Giulio Bottazzi * gbplot: added an example using the 'set table' option; removed uneccessary '\' in the help message 2014-06-25 Giulio Bottazzi * ALL: present version becomes 5-6 (tagged with CVS) using #cvs tag gbutils-5-6 This can be recovered using #cvs checkout -r gbutils-5-6 * debian/control (Suggest): added gnuplot to suggested packages 2014-06-19 Giulio Bottazzi * gbnlprobit.c (main): added a one line header to verbose messages 2014-06-18 Giulio Bottazzi * gbnlprobit.c (main): fixed argument of 'sizeof' in my_alloc statements 2014-06-17 Giulio Bottazzi * tools.c (readblock): fixed nasty bug in the procedure with wich missing columns are filled with NAN 2014-06-12 Giulio Bottazzi * ALL: version updated to 5.6 * gbplot: added man page 2014-06-07 Giulio Bottazzi * gbmave.c: compute moving average for each column of data; previously the data from all columns were pooled 2014-06-06 Giulio Bottazzi * README: added mention of gbacorr and gbxcorr * ALL: implemented the long option '--version' and '--help' for all the executable, but not yet for the scripts. Now the help messages are sent to sdtout, in compliance with GNU coding standards. * tools.c, tools.h: added structure for getopt_long 2014-06-05 Giulio Bottazzi * Makefile.am, configure.ac : added help2man support. The man pages are added to the list as the revision of the help messages progresses. * gbker.c, gbget.c (main): Updated the -h message to comply with help2man syntax 2014-06-03 Giulio Bottazzi * gbxcorr.c: updated gbxcorr to conmpute cross-covariance and cross-correlation coefficients with and without the removal of the mean 2014-05-18 Giulio Bottazzi * gbacorr.c : added program 'gbacorr' to compute the autocorrelogram (or the cross-autocorrelogram) of a series of observations, column-wise. 2014-05-16 Giulio Bottazzi * debian: added the 'debian' directory that contains all information necessary to create the package. After 'autoreconf', './configure' use 'make dist' to obtain a source tarball which can be used to create the deb packages. Remember to change the name of the source package from gbutils-version.tar.gz to gbutils_version.orig.tar.gz. Extract the archive, move inside the source tree and issue 'debuild -us -uc -b' * Makefile.am (EXTRA_DIST): directory 'debian' added to list of distributed files 2014-05-15 Giulio Bottazzi * ALL: version set to 5.5.1 * gbker.c (main): added option -w to select the boundaries of the gird. Modified method -M 2 for a more precise boundaries management. Using '-M 2 -w x,x -n 1' it is possible to compute the density in the point x. * configure.ac: updated syntax * tools.c (gbutils_header): updated header output * gbnlpolyit.c: improved help message 2014-03-31 Giulio Bottazzi * gbtest.c (WMW_pscore): changed the text of WMW verbose output 2014-03-20 Giulio Bottazzi * gbdist.c: added short description of the procedure 2014-02-26 Giulio Bottazzi * gbnlreg.c (main): corrected bug that printed two times the number of observations 2014-02-20 Giulio Bottazzi * ALL: version set to 5.5 (consolidation release) * gbnlreg.c: added R^2, F statistics and one-sided significance for the OLS model (-m 0). The baseline model is NOT the model with the coefficients (or parameters) equal to zero, but the model with the coefficients equal to the values specified in the initial condition. * gbnlpanel.c, gbnlmult.c, exponential_gbhill.c, paretoI_gbhill.c, gbhill.c, gbker.c, gbmstat.c, gbgcorr.c, gbboot.c: checked with -Wall; removed unused variables. * gbnlprobit.c: found potential bug in score minimization * multimin.c: Added two new GSL alogithms for minimization without derivatives. Updated version to 1.2 2014-01-17 Giulio Bottazzi * gbnlreg.c: corrected bug in the LL of gaussian model 2013-12-20 Giulio Bottazzi * gbnlreg.c : implemented the report of various information criteria in the verbose mode. The statistics reported are : AIC, AICc, BIC and HQCin the case of LS regression 2013-11-23 Giulio Bottazzi * ALL: version set to 5.4.5 (bugfix release) 2013-11-22 Giulio Bottazzi * gbdist.c: avoid to print multiple values for consecutive identical observations. Only the last one is printed. Added the option '-i' (for identical) to recover previous behaviour. in the function printdist the type of the counter has changed form int to size_t 2013-10-23 Giulio Bottazzi * gbnlmult.c, gbrand.c, gbnlqreg.c : fixed minor bugs * tools.c, tools.h, gbkreg2d.c, gbker2d.c, gbker.c, gbkreg.c, gbmodes.c, gbnear.c: the inline specification has been removed from the definition of the different types of kernel and the functions have been moved in tools.c/tools.h 2013-02-01 Giulio Bottazzi * ALL: version set to 5.4.4 (bugfix release) 2013-01-21 Giulio Bottazzi * tools.c (readblock): added separate warnings for underflow and overflow. 2012-11-10 Giulio Bottazzi * gbdummyfy: corrected bug in the selection of the column to delete. 2012-11-07 Giulio Bottazzi * tools.c, gbenv.c: added two new environment variables, GB_OUT_SEP and GB_OUT_NL to set the output field and record separators respectively. 2012-11-06 Giulio Bottazzi * gbnlreg.c: removed the condition |dF|>0 in the convergence condition of the OLS fitting. Indeed it could be |dF| == 0 which is perfectly fine! Notice that with linear functions, the second iteration of the minimizer fail automatically (no way of improving upon the first iteration!) but this does not generate any trouble in gbnlreg, apart the printing of a somehow cryptic message "cannot reach the specified tolerance in F" when verbosity is set to high. * configure.ac: updated the check for the gsl, according to the recommendation in the gsl manual 2012-10-29 Giulio Bottazzi * tools.h, tools.c: replaced the occurrences of "GBFILE *" with GBFILEP, which is already a pointer. It is substituted by 'gzFile' if the zlib are found on the system or by "FILE *" if they are not. This is actually the fixing of a bug, that went unnoticed in the old zlib versions but is now rightly spotted by the compiler. 2012-10-25 Giulio Bottazzi * tools.c (readblock): added different warnings for different errors when converting string to double. 2012-10-24 Giulio Bottazzi * gbnlreg.c: added two relevant statistics to the LAD estimation (-M 1), namely the D statistics for inference and the coefficient of determination R2. The asymptotic probability to observe a D statistics as large as observed under the null (that is with parameters equal to their initial conditions) is also reported. These quantities are reported if the option -v is greater than 1. 2012-10-02 Giulio Bottazzi * gbnlreg.c: fixed bug in the conditions implying var-covar matrix computation 2012-10-01 Giulio Bottazzi * gbnlreg.c (main): computation of var-covar matrix only when needed; print warning message if the maximum number of iterations is reached without optimization success; implemented a restart algorithm for simplex minimization, i.e. -M 1 and -M 2; new command line options -I and -E. 2012-09-25 Giulio Bottazzi * gbconvtable: fixed a HUGE bug: replacement should be performed also if the column considered is not the last one 2012-07-09 Giulio Bottazzi * gbnlpolyit.c (main): Cox R^2 correctly renamed Effron R^2. 2012-07-04 Giulio Bottazzi * ALL: version set to 5.4.3 (bugfix release) * gbconvtable, gbdummyfy, gbzscore, gbdenan, gbplot: improved script portability by substituting '=' for '==' and replacing double square brackets test operator '[[' with single square bracket '['. The option '-E' has been removed from 'echo' instances and the help message is printed using an here-doc syntax instead than an 'echo' command. The 'if-then' syntax has been replaced with a 'case' construct for the parsing of the command line. 2012-06-23 Giulio Bottazzi * gbinterp.c: in points outside the input range the interpolation of the curve is set equal to the nearest value while the derivatives are set to zero. A warning is printed. 2012-05-28 Giulio Bottazzi * ALL: version set to 5.4.2 (bugfix release) * configure.ac: added version number to the final greeting; updated checking for (f)lex 2012-05-15 Giulio Bottazzi * gbhill.c, gaussian_gbhill.c, paretoI_gbhill.c, paretoIII_gbhill.c, exponential_gbhill.c: removed the "unconditional" likelihood (previous options -M 1 and -M 4) 2012-05-14 Giulio Bottazzi * gbtest.c (main): updated names of the statistics according to Stehphens' 1974 paper on J. Am. Stat. Ass. 2012-03-23 Giulio Bottazzi * gbrand.c (main) : implemented binary output for the univariate continuous distributions * gbtest.c (main) : implemented binary input * gbhill.c (main) : implemented binary input/output; the binary output is for residuals * tools.c, tools.h: reorganized the list of functions and added function 'printcol' and 'printcol_bin' which print a single column of output * gbfun.c (main), gbget.c (main), gbmstat.c (main) : fixed the option -b for binary input/output 2012-02-27 Giulio Bottazzi * tools.c (readblock): properly produce NAN when a conversion from string to float fails; print a warning if some conversion failed. 2012-02-14 Giulio Bottazzi * multimin.c: corrected the count of iterations. Now when the maximum number of iterations is set to zero, the program correctly does not perform any minimization and returns the initial values. * gbhill.c: included the Renjy transformation based on subsequent spacings. Still to be tested. 2011-12-21 Giulio Bottazzi * ALL: version set to 5.4.1 (bugfix release) * gbhill.c: improved the treatment of Renjy transform for the goodness of fit, introducing "artificial" distribution with mass only on the range covered by the sub sample used in the estimation. 2011-10-24 Giulio Bottazzi * gbxcorr.c (main): added utility to compute the cross-correlation matrix. 2011-10-04 Giulio Bottazzi * ALL: present version becomes officially 5.4 and it is released * gbget.c, gbnlpolyit.c: removed unused variable * gbtest.c: added explicit de-allocation of vectors * gbhisto.c: corrected bug in rage calculation in the case of many samples * tools.c (my_alloc): changed any instance of alloc to my_alloc. 2011-10-03 Giulio Bottazzi * gbget.c (new_matrix): removed unused variable. * gbhisto2d.c (main): removed unused function 'printhist2d'. Variables 'xsteps' and 'ysteps' changed type from int to size_t. * gbtest.c (KW_test, FP_test, RHO_test): corrected bug in memory allocation. * tools.c (readblock): corrected bug in data loading: missing values weren't properly set to NAN. Print the warning for missing values only once. 2011-08-02 Giulio Bottazzi * gbnlpolyit.c: corrected a bug in the bootstrap calculation of standard deviation of marginal elasticities and marginal effects. Added the printing of p-scores together with standard deviations when the option -v is specified. Added three different pseudo R^2 printed with the verbose option. 2011-08-01 Giulio Bottazzi * gbhill.c: Improved option -O 4, now the uniform transformation of Renjy variables is printed for any kind of estimator. Removed option -O 5 because it is redundant. Now the number of parameters is kept fixed and NAN are added where appropriate. 2011-07-21 Giulio Bottazzi * gbglreg.c: added option -O 4 to print fraction of explained variance associated to each explanatory variables. 2011-07-19 Giulio Bottazzi * gbnlpolyit.c: corrected bug in the determination of the number of occupancy classes. Added explicit calls to free(). 2011-07-18 Giulio Bottazzi * configure.ac: removed residual references to FFTW; introduced check for lex/flex library necessary to have a working matheval installation. * NEWS: start to update the file. It was not updated after revision 5.0 * README: removed references to FFTW 2011-07-08 Davide Pirino * gbhill.c: Added a new warning in the case of an exponential or pareto1 distribution for the lower tail estimation. * exponential_gbhill.c: Added varcovar for the lower tail estimation. * pareto1_gbhill.c: Added varcovar for the lower tail estimation. * gaussian_gbhill.c: Added varcovar for the lower tail estimation. 2011-07-13 Giulio Bottazzi * ALL: present version becomes 5.4; but some bug fixes in gbhill are necessary * gbkreg.c, gbker.c, configure.ac : dropped dependence on FFTW library 2011-07-09 Giulio Bottazzi * multimin.c: added transformation number 9 for semi-open interval (-infty,xmax) to be used, for instance, in gbhill. * gbhill.c: moved var-covar matrices in the distribution-specific files; changed default options of the minimization routines to use BFGS-2; changed the transformation used for the exponential distribution. 2011-07-08 Davide Pirino * exponential_gbhill.c: bugs fixed. 2011-07-05 Giulio Bottazzi * gbplot: fixed a bug in option '-p' and added verbose output with option '-v'. 2011-05-13 Davide Pirino * gbhill.c: Added option -O 5 for printing # of obs used to stdout. 2011-05-11 Giulio Bottazzi * gbplot: added option -l to set log scale on the axes and option -C to issue generic commands before the plot 2011-03-24 Davide Pirino * gbnlreg.c: Added option -O 4 to compute s-scores. 2011-03-10 Giulio Bottazzi * gbbin.c: added option -w that allows for forced setting of the boundaries. When this option is set, the bins are defined accordingly to an uniformly spaced grid in the provided interval. Notice that using this option leads to bins that are no longer equally populated. The new option -w is incompatible with options -x,-y and -c. 2011-02-28 Davide Pirino * gbhill: warnings now only in verbose mode for better visibility when gbhill is called repeatedly in scripts. 2011-02-25 Giulio Bottazzi * Makefile.am: added script gbkeys2values 2011-02-11 Giulio Bottazzi * gbget.c: multiple instances of option -t are joined together. 2011-01-19 Davide Pirino * gbhill: added varcovar options for upper tail estimation for gaussian, pareto1 and exponential. Note that pareto3 is still missing and lower tail estimations are not implemented. Probably they should be both removed from the code. 2010-12-11 Giulio Bottazzi * gbplot: use 'wxt' as default terminal if available, otherwise use 'x11' 2010-12-10 Giulio Bottazzi * gbinterp.c: if number of points and range are not provided, print 10 equally spaced points * gbnlpolyit.c, gbtest.c, gbnlqreg.c, gbnlprobit.c, gbnlpanel.c, gbnlreg.c, gbglreg.c, gbhisto.c, gbhill.c, gbgcorr.c, gbbin.c, gbfilternear.c: moved 'initialize_program' after command line processing 2010-12-03 Federico Tamagni * gbhill.c: renamed estimated parameters, according to new functional specifications adopted in exponential_gbhill.c and paretoI_gbhill.c * exponential_gbhill.c, paretoI_gbhill.c: new functional specifications for distribution functions, F[j], and density functions, -log(f[j]) 2010-12-03 Giulio Bottazzi * tools.h, tools.c: removed function "moment_gbbin" because no longer necessary. * gbbin.c: implemented the "xmedian" output option. Now both xmedian and ymedian are computed only when needed (the ordering operation implied in the computation of the median is N*log(N) in time and better avoided if unnecessary). 2010-12-02 Giulio Bottazzi * Makefile.am: added 'multimin.h' and 'gbhill.h' among the distributed files 2010-10-11 Giulio Bottazzi * gbnlprobit.c: updated help message with -g default value 2010-09-10 Davide Pirino * tools.c, tools.h: added new function moment_gbbin called in gbbin.c * gbbin.c: new option "ymedian" is now available 2010-09-03 Giulio Bottazzi * gbhisto.c: added new option '-w' to manually set the binning window 2010-08-22 Giulio Bottazzi * gbkreg.c: corrected bug, added explicit cast to double type in the computation of kernel values in method 1 (convolution). * gbkreg.c, gbker.c: new boundaries for convolution summation (method 1) should be more readable. 2010-08-21 Giulio Bottazzi * gbkreg.c: corrected bug, added explicit cast to int type in boundary definition of method 2. 2010-08-20 Giulio Bottazzi * tools.c: the function 'load2' and 'load3' have been rewritten as direct calls to function 'readblock', skipping the intermediate call to function 'loadtable'. * gbkreg.c, gbkreg2d.c, gbker2d.c: corrected bug in data loading: the variable 'size' was not explicitly initialized to zero. This is now necessary because of the new input functions. 2010-07-29 Giulio Bottazzi * tools.c (loadblocks,loadblocks_bin): now these functions append read blocks to an already existing block list (if block>0). * gbget.c: explicitly set internal data storage to NULL after freeing. 2010-07-22 Giulio Bottazzi * gbnlpolyit.c: added computation of marginal effects in two ways: total and elasticities. Added option -V to compute standard deviations. 2010-07-20 Giulio Bottazzi * multimin.c: added warning when the maximum number of iterations is reached without finding a solution. * gbnlpolyit.c: Added output to plot class-occupancies and chi-square. Added log-likelihood among the output 2010-07-07 Giulio Bottazzi * gbnlpolyit.c: added the new utility to obtain ML estimation of the "polyit" model. Just a draft, it lacks several features. 2010-07-06 Giulio Bottazzi * README: updated the description of 'sequential' data reading and the fact that only the first block of data files is read. * tools.c: load and loadtable functions have been rewritten to use the readblock function. Now these functions only read the first block. 2010-07-05 Giulio Bottazzi * tools.c, tools.h: revision of data loading functions. New version of binary function dropping unnecessary parameters. More general management of blocks structure, in both ASCII and binary functions. N.B.: now load_bin and loadtable_bin IGNORE the blocks after the first. This is different from the behaviour of their ASCII version. * gbget.c, gbfun.c, gbmstat.c: updated management of binary files input 2010-05-22 Giulio Bottazzi * gbconvtable: added script to make substitution on a given column of standard input given key-value dictionary file. Useful to group data. 2010-05-20 Giulio Bottazzi * gbget.c: remove unecessary creation of new matrices in data_applyfuns and data_applyselection. Added function data_applyfuns_recursive to implement recursively generic transformation on data. The recursive interpretation is invoked when the functions string begins with '@'. 2010-05-18 Giulio Bottazzi * gbnlreg.c (main): print the number of observations in verbose output 2010-05-03 Giulio Bottazzi * gbdummyfy: corrected the use of '>' and '<' operator with -gt and -lt respectively. These are the appropriate operators for integer comparison. 2010-04-30 Giulio Bottazzi * gbdummyfy: the new version based on gawk provides much better performances. 2010-04-29 Giulio Bottazzi * gbget.c (main): debugged nasty bug affecting the interaction between option -t and transformation 'P' 2010-02-27 Giulio Bottazzi * gbstat.c (main): fixed inconsistencies in help message 2010-02-22 Giulio Bottazzi * gbstat.c: implemented option -O to select which statistics to print. Notice that the output format has slightly changed (no more dots but spaces and right indentation). 2010-02-19 Giulio Bottazzi * tools.c (printnomatrixbycols): fixed bug which made this function always print to standard output. * gbget.c (data_applyselection): changed the way in which checks are handled. Now comma separated conditions inside a couple of curly brackets are OR-ed, while of course the specification of several bracket couples serve as an AND specification. 2010-02-18 Giulio Bottazzi * gbnlqreg.c (main): fixed initialization condition of simplex size; added switch -M to select between minimization algorithms; added option -s to scale initial simplex size; added option -N to set the max number of iterations. 2010-02-16 Giulio Bottazzi * gbget.c (data_applyselection): changed check implementation to make it consistent with NAN 2010-02-03 Giulio Bottazzi * gbget.c : added new (undocumented and to be tested) feature to select rows according to rules: in the transformation space, specs like '{fun}' apply fun to the row and if the result is greater equal to zero print the line. More specs can be separated by comma, like '{fun1,fun2,...}'. 2009-12-17 Giulio Bottazzi * tools.c: used size_t to count the blocks in loadblocks(). In printnomatrixbycols_bin() and printmatrixbycols_bin() added check that the amount of required output is actually printed. 2009-12-12 Giulio Bottazzi * tools.c, gbbin.c, gbtest.c, gbnear.c ,gbker2d.c, gbkreg2d.c, gbboot.c, gbgcorr.c, gbfilternear.c, gbmstat.c, gbker.c, gbkreg.c,gbinterp.c,gbfun.c,gblreg.c,gbglreg.c,gbnlreg.c, gbnlpanel.c,gbnlqreg.c,gbrand.c,gbhill.c,gbnlmult.c, multimin.c: fixed 'printf' spec for size_t output * gbget.c, tools.c, tools.h: added a custom version of strndup for systems without it (most notably MAC OS). The code is courtesy of Stefan Soucek ssoucek at coactive.com 2009-09-11 Davide Pirino * gbnlpanel: A isnan check was missing in the option -V1 -M0. Help message has been updated. 2009-09-26 Davide Pirino * gbnlpanel: Minor corrections. 2009-08-26 Davide Pirino * gbnlpanel: Important NaN handling improvement: the program was faulty for data where an entire realization should be removed because of Nan's. Help message has been updated. 2009-08-26 Giulio Bottazzi * gbdummyfy: little modification to error messages 2009-08-25 Giulio Bottazzi * gbdummyfy: Minor corrections to help message. 2009-08-20 Giulio Bottazzi * README: added mention of the GSL error handling behaviour. * gbnlprobit.c: added option -O 6 to compute marginal effect using the average of the derivative rather than the derivative computed in the average. Notice that -O 5 is not implemented as should become option 4 with error estimates. 2009-08-19 Giulio Bottazzi * tools.c, tools.h, gbenv.c: GSL error handling is switched off by the function 'initialize_program' if the variable 'GB_ERROR_HANDLER_OFF' is set in the environment. This requires the insertion of a GSL header file in 'tools.h'. Hope this does not endanger portability. The status of the handler can be obtained using the 'gbenv' function. * gbnlprobit.c: the verbose option prints also the value of the score function at the optimal threshold. 2009-08-18 Giulio Bottazzi * gbnlprobit.c: added colons in verbose output; implemented output of marginal effects as option -O 4. 2009-08-04 Giulio Bottazzi * multimin.c: verbose output of function and gradients are now printed using scientific notation. The initial value of the function is also printed. * gbnlprobit.c: re-implemented the object function and derivatives using the complementary error function and its log via the GSL function 'gsl_sf_log_erfc'. Set the default minimizer to BFGS2. Removed the computation of probabilities from the object function. Modified variance-covariance matrix to use complementary error function. 2009-08-03 Giulio Bottazzi * gbnlprobit.c: improved the management of threshold computation. Now by default any statistics based on threshold levels is NOT computed. One has to explicitly ask for it using option '-t'. * multimin.c: print iteration number in verbose mode. 2009-07-30 Giulio Bottazzi * gbnlprobit.c: remove z-scoring of constant variates. 2009-07-24 Giulio Bottazzi * gbnlprobit.c: fixed wrong deallocation of var-covar matrix. Fixed the code to properly recognize constant columns as non-dummy. * Makefile.am (EXTRA_SCRIPTS): added script 'gbdummyfy' to the package 2009-07-23 Giulio Bottazzi * multimin.h: added gsl_blas.h and gsl_linalg.h header files. * gbnlprobit.c: build covariance matrix only if output option is greater than 1. Build Brier score and threshold values only if required. 2009-07-21 Giulio Bottazzi * gbnlprobit.c: verbose messages properly redirected to stderr. 2009-07-20 Giulio Bottazzi * gbnlprobit.c: added printing of the number of observations in verobose output. Added warning for the case of completely separated dummy variables (troublesome in linear models). 2009-07-16 Giulio Bottazzi * gbboot.c: added output method -O 5 to bootstrap rows maintaining the block structure * gbplot: replaced 'return' with 'exit' 2009-07-15 Davide Pirino * gbnlpanel.c: Computation of the variance-covariance has been simplified and fitted to the latest version of BODIPI. Standard output of panel statistics has been improved. Other minor beautifications. 2009-07-09 Davide Pirino * gbnlpanel.c: Final implementation of the variance-covariance matrix estimation. 2009-07-02 Davide Pirino * gbnlpanel.c: Corrections on the fixed effect case. "denan" procedure totally implemented for the fixed effect case. 2009-06-28 Giulio Bottazzi * gbhill.c: added option -a to consider entire data-set when printing distribution or density 2009-06-24 Davide Pirino * gbnlpanel.c: implemented new variance-covariance matrix based on last modification and computed on non-reduced log-likelihood. 2009-06-18 Giulio Bottazzi * gbnlpanel.c: implemented new object function with prescription of zero mean for fixed effect constant. Variance-covariance expression must be re-worked. 2009-06-17 Davide Pirino * multimin.c: minor beautifications. * gbnlpanel.c: data structure has been modified: blocks identify variables, row identify realizations, columns identify time. The output possibilities now contain fixed or random effects statistics. 2009-06-11 Giulio Bottazzi * multimin.c: added Vector Broyden-Fletcher-Goldfarb-Shanno version 2 method. Added printing of gradient modulus in verbose output. * gbnlreg.c: switched to the use of "multimin" interface. Output improvement but still work to do. 2009-06-09 Giulio Bottazzi * README: included extended description of the new 'gbplot' command. * Makefile.am (EXTRA_SCRIPTS): added 'gbplot' among the package's scripts. This version supersedes the original examples provided in the README file. 2009-05-30 Giulio Bottazzi * gbstat.c: corrected bug in the printing of headings with the -t option 2009-05-22 Giulio Bottazzi * tools.c, tools.h : replace FILE with GBFILE to maintain compatibility with compressed files in loadtableblocks and readblock. * gbnlpanel.c: Change name from " loadtableblocks_gb" to "loadtableblocks". Added copyright notice. 2009-05-19 Davide Pirino * gbnlpanel.c: Random effect has been implemented. 2009-05-11 Davide Pirino * tools.c, tools.h: added functions loadtableblocks_gb and readblock for acquiring panel data. * gbnlpanel.c: First draft of nonlinear panel estimation. Only fixed effect available. 2009-04-07 Giulio Bottazzi * tools.c, tools.h: modified function mystrtod to accept a single string pointer. Check for NAN is performed inside the function. * tools.c, gbfun.c: modified calls to mystrtod. 2009-02-17 Giulio Bottazzi * gbfun.c: added binary file management. * tools.c: modified moment_nonan and moment_short_nonan to store the number of finite entries in a variable of type double. Added proper handling of output format in printmatrixbyrows() and printmatrixbycols(). Added function printnomatrixbycols() to print data which are not in matrix form. The "binary" IO method has been implemented with the function printmatrixbycols_bin() and printnomatrixbycols_bin() to print binary data and the functions load_bin(), loadtable_bin() and loadtable_block_bin() to read them. * gbstat.c: moved initialize_program() after options parsing. * gbmstat.c: there are two versions of this utility gbmstat_slow.c and gbmstat_fast.c. The first has a straightforward design: a slice of the input is passed to a routine which computes the statistics. The second is carefully design to run faster: it updates moments with new information so as to require less computations. For some reason (?) their speed is comparable. So I'll retain the slow version, which is easier to read, and keep the fast for future development. Notice that the 'fast' version does not have option '-D'. 2009-02-11 Giulio Bottazzi * gbmstat.c: added new command to compute moving statistics. Modified accordingly Makefile.am. 2009-02-09 Giulio Bottazzi * gbmave.c: reverted to the old version. The modified new version is now named gbmstat.c 2009-02-02 Giulio Bottazzi * TODO: check the use of moment_nonan in gbstat and the policy for the warnings about not enough observations. * gbmave.c: new version with the ability to process column and to compute different kinds of statistics. * tools.c: added function 'moment_nan' to compute statistics ignoring NAN entries and modified the existing function 'moment_short_nan' to provide, consistently with he previous one, the number of not NAN entries. Notice that moment_nonan is silent on the number of observation needed and simply returns NAN for a variable if unable to compute it. 2009-01-30 Giulio Bottazzi * gbtest.c: added test 'R' to compute Pearson's correlation and p-score * gbget.c: added transformation 'w' to normalize a column by dividing each element by the sum of them. Barring NAN entries,. the sum of the elements of the column is equal to one. 2008-10-22 Giulio Bottazzi * gbquant.c: added option -e to print estimated error, using asymptotic normal approximation, for the quantile value and score (options -x and -1). Presently not implemented in table mode (option -t). 2008-08-09 Giulio Bottazzi * gbnlqreg.c: finally implemented computation of var-covar matrix. The calculation is done considering the ML approach to quantile estimation, i.e. starting from an asymmetric Laplace distribution. 2008-08-07 Giulio Bottazzi * gbquant.c: fixed bug: corrected the definition of min and max indexes for the window selection explicitly using 'floor' and 'ceil' functions. * gbnlqreg.c: corrected help output. 2008-07-23 Giulio Bottazzi * gbget.c (main): updated help message 2008-07-22 Giulio Bottazzi * gbget.c (new_matrix): fixed bug affecting the reversed count of rows and columns when the skip is negative. 2008-07-12 Giulio Bottazzi * scripts.txt: created a new file to collect useful scripts * README: added mention of gbfilternear. Added description of shell function 'gbploti'. 2008-06-04 Giulio Bottazzi * gbbin.c: modified call to function sortn. * gbquant.c: modified call to function sortn and added option -W. * tools.c, tools.h: changed sortn to accept the position of the column to use for sorting. Various modifications to the source code, with the possible introduction of some bug. 2008-05-26 Giulio Bottazzi * gbfun.c: fixed bug in the output of '-t' option. 2008-05-03 Giulio Bottazzi * gbfilternear.c, Makefile.am: added program to filter near points in Euclidean metrics. Useful to reduce the size of scatter plots. 2008-04-07 Giulio Bottazzi * README: Added mention of the new programs. 2008-04-06 Giulio Bottazzi * gbgrid.c: added option '-o' to set output format string. 2008-03-31 Giulio Bottazzi * gbnlreg.c: explicitly freed some allocated space at the end. * gbnlprobit.c: fixed bug in data storage allocation. Added option -z to zscore non-dummy data. Added printing of Type I and II errors. Added estimation based on score function and a long help that could be possibly improved. * tools.c: explicitly freed 'line' variable inside the data reading functions. 2008-03-28 Giulio Bottazzi * gbnlprobit.c: added computation of summary statistics. Output is pretty ugly and should be improved. 2008-03-26 Giulio Bottazzi * multimin.c (multimin): * Makefile.am, configure.ac, gbnlprobit.c: added gbnlprobit to the list of utilities. * multimin.c: a NULL type array is equivalent to no transformation on the variables. Simplex hedge size initialized to step_size+maxsize. 2008-03-15 Giulio Bottazzi * gbhisto2d.c: added options to handle discrete asymmetric data,   that is couples where the two elements belongs to different sets of values. 2008-03-14 Giulio Bottazzi * gbget.c: corrected nasty bug in transformation identification. 2008-03-13 Giulio Bottazzi * ALL: present version becomes 5.3 (beta) * gbfun.c: some code beautification. * Makefile.am: added proper linking requirements for gbnlmult. * README: updated README with new utilities and features. * gbget.c: improved parsing of spec, now the order of the block and slice specification can be reversed. Added new transformation '<..>' that substitutes the matrix of selected data with a set of function computed on it. Added separator ';' to specify different slices of rows and columns. 2008-03-12 Giulio Bottazzi * gbfun.c: added option '-o' and '-s' to set output format. * gbget.c: created print-data function to handle all the printing. The check to see if data are in matrix form is now performed only there. Added transformation 'P' to print the data collected so far followed by two empty lines. In this way it is possible to implement a block-wise output. Now retrieval specs are builded from the command line in an intelligent way. Improved check on retrieval spec structure. 2008-01-30 Giulio Bottazzi * tools.c, gbstat.c: corrected a mistake in "moment" function: with one observation all the statistics are (almost) perfectly defined. Updated the help message in gbstat. 2008-01-16 Giulio Bottazzi * ALL: present version becomes 5-2-2 (tagged with CVS) using #cvs tag gbutils-5-2-2 This can be recovered using #cvs checkout -r gbutils-5-2-2 * Makefile.am (EXTRA_PROGRAMS): removed fake entry for "gbnlmulti" * gbker.c: added option '-p' to print confidence interval (as an extra column) computed according to eq. 3.51 in Hardle W., Muller M., Sperlich S. and Werwatz A. "Nonparametric and Semiparametric Methods" (2004) Springer-Verlag, Berlin. Fixed a bug in method 1-covolution, adding an explicit cast before taking differences of variables of type size_t as double. Other bugs could in principle be present. 2007-12-19 Giulio Bottazzi * gbtest.c: corrected name of variables in verbose output 2007-11-29 Giulio Bottazzi * gbquant.c: fixed the order in which the function data_denan is applied when invoked with option "-w". 2007-08-14 Giulio Bottazzi * multimin.c: fixed output of multimin for simplex initial settings 2007-08-09 Giulio Bottazzi * gbboot.c : added option -O 4 to have data "displaced" by a fraction of the minimal non-zero distance between consecutive observations. 2007-08-07 Giulio Bottazzi * gbinterp.c: added option -I to read interpolated points from a file 2007-08-03 Giulio Bottazzi * gbnlqreg.c: fixed the help message * gbtest.c: added Spearman's rho and Kendall's tau for correlation measure between two samples. The implemented statistics are valid with or without ties and are defined according to W.J. Conover "Practical Nonparametric Statistics", Third Edition. 2007-07-20 Giulio Bottazzi * gbtest.c: added computation of Spearman's Rho correlation. 2007-05-10 Giulio Bottazzi * gbutils.css: new CSS file. 2007-05-02 Giulio Bottazzi * gbtest.c: corrected typos in help messages. 2007-04-25 Giulio Bottazzi * gbnlqreg.c, configure.ac, makefile.am: added a new utility: gbnlqreg * gbnlreg.c: added mention of information matrix computation in comments for var_covar option number 3. 2007-04-05 Federico Tamagni * gbnlmult.c: fixing the help displayed to users. 2007-04-03 Giulio Bottazzi *Makefile.am, configure.ac: inserted gbnlmult in the list of utilities * gbnlmult.c: added gbnlmult to fit systems of simultaneous equation with OLS, that is assuming normally distributed shocks. 2007-03-30 Giulio Bottazzi * ALL: present version becomes 5.2.1 * tools.c: updated copyright notice * gbfun.c: added 'lag' operator to specify previous values. For instance 'x3l4' stands for column 3, four steps before. Notice that the first row of output is build accordingly, so if some lag is specified, the output number of rows is reduced. 2007-03-27 Giulio Bottazzi * ALL: --- RELEASED VERSION 5.2 ------------------------------- * gbgcorr.c: added a short description of the program * gbutils.css: added a stylesheet file to generate html documentation * README: added mention of new files in the list. The html is generated with rst2html.py --stylesheet gbutils.css --embed-stylesheet 2007-03-26 Giulio Bottazzi * gbenv.c : removing output of floating point environment under Cygwin, where the ieeefp.h seems not to work. 2007-03-25 Giulio Bottazzi * gbenv.c (main): added floating point environment reporting for Cygwin, which is based on ieeefp.h not present under Linux. 2007-03-23 Giulio Bottazzi * tools.c: correctly named "THOUSEP" the thousand separator instead of THOUSANDS_SEP. * Makefile.am : added necessary source files to gbhill 2007-03-13 Giulio Bottazzi * README: added mention of "gbenv" and "gbhill" in the listing of programs and in the table of properties. 2007-02-09 Giulio Bottazzi * gbboot.c: corrected mention of default sample size in gbboot help. 2007-02-08 Giulio Bottazzi * gbhill.c (main): corrected bug: added check of parameters number and the loading of their values in the pareto1 case. * README, README.gbutils, INSTALL.CYGWIN: with the most recent version of docutils (ver.0.4) simply use rst2html.py --embed-stylesheet * README: added a brief section on locale management 2007-01-23 Giulio Bottazzi * gbfun.c: changed strtod instances to mystrtod. * tools.c, tools.h: added function mystrod to properly parse thousands separator defined by the locale. It only works with single-character separators like ',' or '.' This function uses the external variable LCTHSEP which is initialized with the setting in the environment. 2007-01-22 Giulio Bottazzi * tools.c, gbenv.c: added locale initialization from environment variables through function "setlocale". 2006-12-13 Federico Tamagni * gbhill.c: fixed bugs in initial values for pareto1 pareto3 and gaussian fitting 2006-12-05 Federico Tamagni * gbhill.c: added a switch to check initial parameter values. * paretoI_gbhill.c, paretoIII_gbhill.c, gaussian_gbhill.c: added two -M options to compute estimates conditioning on threshold levels. Notice that now -M 0,1,2 refer to upper tail inference, while -M 3,4,5 to lower tail estimation. 2006-11-28 Giulio Bottazzi * gbhill.c, exponential_gbhill.c: added two -M options to compute estimates conditioning on threshold levels. Notice that now -M 0,1,2 refer to upper tail inference, while -M 3,4,5 to lower estimation. 2006-11-22 Giulio Bottazzi * gbrand.c: Added Pareto type III distribution. 2006-11-20 Giulio Bottazzi * gaussian_gbhill.c: commented out printing of debug output. 2006-11-17 Giulio Bottazzi * gaussian_gbhill.c: fixed some mistakes in derivatives expressions. 2006-11-11 Federico Tamagni * gbhill.c: removed bug in initialization of s parameter for pareto3 fitting. 2006-11-10 Giulio Bottazzi * gbtest.c: fixed bug in expected variance of TR-RT test, the formula in Brockwell and Davis is actually wrong. 2006-11-10 Federico Tamagni * gbhill.c: removed bug in initialization of s parameter for gaussian fitting. 2006-11-09 Giulio Bottazzi * gbtest.c: fixed typos in doc strings. 2006-11-08 Giulio Bottazzi * multimin.c: fixed typos in doc strings. * gbhill.c: removed old "print true values" code. It was a remnant of a previous implementation. Added minimum value of the negative log-likelihood to the output. Added switch to properly select minimization method and boundaries for the different cases of the exponential. 2006-11-08 Federico Tamagni * gbhill.c: removed bug in initialization of b parameter for exponential fitting. 2006-11-06 Giulio Bottazzi * gbhill.c: replaced minimization type 5 with 2 in estimating exponential's b parameter; remove bug in initialization of k value for exponential. Replaced minimization type 1 with 4 in estimating Pareto's b parameter. 2006-10-17 Giulio Bottazzi * gbgcorr.c: added Cees Diks' gbgcorr to compute Gaussian kernel correlation dimension of time series. 2006-10-14 Giulio Bottazzi * ALL: present version becomes 5.1.4 2006-09-28 Giulio Bottazzi * gbenv.c : added display of locales information 2006-09-26 Giulio Bottazzi * gbhisto2d.c: added management of discrete variables; notice that discrete states can also be labeled by floating point numbers. All the computation has been integrated in the main body of the program. * gbhisto.c: improved some error message and general outline. * gbtest.c: improved some error messages. * tools.c: added function my_calloc to allocate memory initially set to zero; 2006-09-22 Giulio Bottazzi * gbtest.c: added Levene test for equality of variances in 2 or more groups, robust to non-normality, see Brown, M. B. and Forsythe, A. B. 1974, Journal of the American Statistical Association, 69, 364-367. Made the output of F test more verbose. Changed the way in which the name of the test is printed. * gbstat.c: fixed bug in the determination of the median with option "-t". 2006-09-18 Giulio Bottazzi * gbquant.c : enhanced option -w to handle multi-columns input; modified help description. * tools.c: moved here from gbget.c the definitions of "data_denan" which remove entire records, that is rows, containing NAN entries. * README : updated the table with the properties of the utilities 2006-09-15 Giulio Bottazzi * gbbin.c : added outtype=NULL in the -O option; before passing it to realloc, a pointer not initialized should be set to NULL. 2006-09-01 Giulio Bottazzi * README: changed table entry relative to the way in which gbbin handles input data: from sequential to tabular. Updated version to 5.1. TODO: add mention of gbhill. * gbbin.c: changed behavior of gbbin to handle multiple columns of y entries. Added options -c to split the elements of a list of columns. 2006-08-10 Giulio Bottazzi * tools.c : added function sortn to sort all the columns of a table with respect to the values on the first column. 2006-05-25 Federico Tamagni * paretoIII_gbhill.c: fixed bugs in computation of likelihood derivatives. 2006-05-25 Giulio Bottazzi * paretoIII_gbhill.c: fixed bugs. Probably some error still remain. * gbhill.c: added more verbose warnings; constrained density and distribution output (-O 1 and -O 2) to the used observations; fixed pareto3 initialization.. 2006-05-25 Federico Tamagni * paretoIII_gbhill.c: file added for Pareto Type III tail fitting with gbhill. Still a draft. * gbhill.h, gbhill.c: files have been modified to include Pareto Type III fitting. 2006-05-18 Giulio Bottazzi * gbhill.c: added output option '3' to print Renyi-transformed residuals. 2006-05-06 Giulio Bottazzi * gbtest.c: added three tests of randomness: TR-TP, TR-DS and TR-RT. Added exact and asymptotic distribution under the null hypothesis for D+ and D- tests. The name of Kolmogorov-Smirnov statistics has been changed to D. 2006-04-26 Giulio Bottazzi * gaussian_gbhill.c: fixed the expression for the derivative dFdm. 2006-04-25 Giulio Bottazzi * gbhill.c : minor beautifications. 2006-04-22 Federico Tamagni * gaussian_gbhill.c: fixed some errors in computation of likelihood's derivatives. Estimation using all the data seems ok, but that using a fraction of the sample still have problems. * gbhill.c: changes made in the initialization of the parameters for the Gaussian case. 2006-04-20 Federico Tamagni * gaussian_gbhill.c: file added for gaussian tail fitting with gbhill. Very preliminary, estimation has several problems. * gbhill.h, gbhill.c: files have been modified to include gaussian fitting. 2006-04-13 Giulio Bottazzi * exponential_gbhill.c, paretoI_gbhill.c, gbhill.h: definitions of different distributions have been split in different files to keep gbhill.c smaller (and more readable). * tools.h: defined GBTOOLS_H variable to load the tools.h header file only once. * gbhill.c: fixed error in computation of Pareto Type I derivatives. Case M=3 seems to have problems. 2006-04-12 Federico Tamagni * gbhill.c: added Pareto Type I fitting, fixing boundaries of minimization for this case. Very preliminary, minimization has problems. 2006-04-06 Giulio Bottazzi * gbhill.c: fixed estimation when k=N. New version with all four estimators, upper and lower, conditional and unconditional. 2006-04-04 Giulio Bottazzi * gbhill.c: new version of gbhill; still a draft. 2006-03-31 Giulio Bottazzi * gbnlreg.c: fixed typo. * gbtest.c: added check that data are from cumulated distribution(s) for the 1 sample Kolmogorov-Smirnov or Cramer-von Mises tests. Added verbose output to KS test. 2006-03-29 Giulio Bottazzi * gbtest.c: added KS two samples to the displayed list of tests. 2006-03-24 Giulio Bottazzi * gbhill.c: fixed boundaries of minimization in exponential fitting. 2006-03-22 Giulio Bottazzi * tools.h: fixed path of .h includes from lib/ subdirectory. * gbhill.c: implementation of exponential fitting seems ok. The utility is still a draft. * multimin.c: a bit of beautification. 2006-03-21 Giulio Bottazzi * ALL: present version becomes 5.1.3 * gbhill.c: added new program for the estimation of tail behaviour. Just a draft. 2006-03-20 Giulio Bottazzi * gbker.c: fixed bug in the initialization of variable "imin" in method 2, exact summation. 2006-03-16 Giulio Bottazzi * gbtest.c, gbenv.c, gbrand.c: removed typos and non-dangerous bugs. 2006-03-14 Giulio Bottazzi * gbtest.c : added Student's T test for single sample. * gbmave.c : changed option "-t" in "-s". Previous name conflicted with general usage of "-t" as indicating "tabular" behavior. 2006-03-13 Giulio Bottazzi * ALL: present version becomes 5.1.2 * gbget.c: added check at the end to skip printing if no data were loaded. * gbtest.c: removed option "-d" no longer used. Improved some output with option "-v 2". Tested CHI^2, Wilcoxon, Mann-Whitney, Kruskal-Wallis and Fligner-Policello. Added F-test and Student's T test in the homoscedastic and heteroscedastic cases. 2006-03-10 Giulio Bottazzi * gbtest.c: added chi^2 test for 1, 2 and 3+ samples, that is contingency table analysis. Added more verbose option "-v 2" which prints detailed output. 2006-03-08 Giulio Bottazzi * tools.c: fixed bug in the loading functions, like load, loadtable, etc. affecting the parsing of the last line of the input file which does not end with a '\n'. * gbtest.c: added Wilcoxon and Fligner-Policello tests, and the relative large-sample p-scores, for both 1 and 2 sided cases. * gbrand.c (main): added "discrete" trasformation to generate integer from 1 to M with generic probabilities. Probabilities are passed as comma separated list of values. 2006-03-05 Giulio Bottazzi * gbtest.c: added Kruskal-Wsllis multi-sample test and p-score. The latter introduced a dependence of gbtest on gsl which has been added to the table in README. 2006-03-04 Giulio Bottazzi * gbtest.c: fixed bug in run_onesample when pscore=NULL. Added function run_manysamples for tests which uses multiple samples. Added specifier const to data pointer used by run_... functions. 2006-03-01 Giulio Bottazzi * gbenv.c: added utility to print floating point and gbutils settings. 2006-02-28 Giulio Bottazzi * gbnlreg.c: reverted the stopping condition of the estimation loop of the simplex algorithm to simplex size-check. This is the only consistent method. Slightly modified verbose output. Print numerical precision at the beginning of the iterations (if verbose enough). 2006-02-27 Giulio Bottazzi * Makefile.am: "m4/CVS" subdir removed from distribution tar.gz * ALL: present version becomes 5.1.1 * gbnlreg.c: fixed bug related to stopping criteria: assignment instead of comparison in "estimate_status == GSL_CONTINUE". 2006-02-09 Giulio Bottazzi * gbnlreg.c: modified the stopping condition for the estimation loop. Now the reduction, absolute and relative, of both the object function and the parameter estimations are considered. The aim is to have a stopping condition which scales well with the increase of the number of observations. 2006-02-08 Giulio Bottazzi * gbnlreg.c: added option '-e' to set the minimization tolerance. The default tolerance has been decreased to 1e-5. 2005-12-13 Giulio Bottazzi * gbtest.c: added pscore function for D (one-sample Kolmogorov-Smirnov) test; corrected bug in run_onesample function. 2005-12-12 Giulio Bottazzi * README : gbget added to the list of NAN-transparent utilities * gbget.c: modified options z and Z to ignore NAN entries in the computation of mean and averages 2005-12-10 Giulio Bottazzi * gbget.c: added option "-t" to gbget to define FINAL transformations; improved output management: removed unnecessary checks when output has a matrix structure; added check at the beginning of data_denan to see if NAN values are actually present. 2005-12-04 Giulio Bottazzi * ALL: --- RELEASED VERSION 5.1 ------------------------------- * gbbin.c (main): now statistics are printed following the order in which they are provided with the option -O. 2005-12-03 Giulio Bottazzi * ALL: reverted to the simple gnulib-tool --import getline getsubopt * tools.h: added new gnulib headers * configure.ac: removed AC_FUNC_ALLOCA AC_FUNC_MALLOC AC_FUNC_REALLOC AC_FUNC_STRTOD 2005-12-02 Giulio Bottazzi * gbnlreg.c, tools.c: removed any instance of asprintf. * gbnlreg.c: added ERROR when no parameters to estimate are provided * gbfun.c, gbgrid.c: fixed bug: free pointer returned by libmatheval evaluator_get_string * gbhisto.c (printhist): fixed output type for option 0: set to int. 2005-12-01 Giulio Bottazzi * gbkreg2d.c: fixed bug in output generation. 2005-11-25 Giulio Bottazzi * tools.c (initialize_program) : removed bug in strings concatenation. * ALL : compilation with CFLAGS="-Wall -W -g -O4" 2005-11-22 Giulio Bottazzi * gbfun.c, gbnlreg.c: Added hack around calls of evaluator_get_variables from libmatheval: this function requires an int, not a size_t. * configure.ac: reorganized the order of tests * tools.c: remove unnecessary parentheses in return statements. * gbget.c (parse_slice): fixed bug in "skip" setting. 2005-11-21 Giulio Bottazzi * ALL: --- RELEASED VERSION 5.0 ------------------------------- * gbnlreg.c (mad_varcovar): corrected bugs in the computation of the variance-covariance matrix with methods H^{-1} and H^{-1} J H^{-1}. * tools.c (loadtable, loadtable_block): fixed the management of empty input files and of empty lines at the beginning of input files. * gbfun.c: corrected fatal bug in freeing memory at the end of main. 2005-11-19 Giulio Bottazzi * gbget.c: in a slice spec ini:fin:skip with ini>fin the order of printing is reversed. The transformation 'r' has been removed. * *.c, tools.h: moved the declaration of external variables for reading command line options in 'tools.h'. 2005-11-18 Giulio Bottazzi * gbget.c: removed unused variable 'outputformat'. * tools.s: variable length properly defined as 'int' in function 'initialize_program' * gbfun.c, gbker.c, gbquant.c, gbkreg2d.c, gbker2d.c, gbnear.c, gbtest.c, gbmave.c, gbbin.c: fixed some 'size_t' vs. 'int' inconsistency. * gbmodes.c: removed unused parameter 'ave' from function 'pscore' and other little fixes of type conflicts. * gblreg.c: removed unnecessary printf variables in 'print_linear_verbose'. * gbnlreg.c : removed unused parameter 'Param' from 'ols_varcovar', 'mad_varcovar', 'amad_varcovar'. 2005-11-17 Giulio Bottazzi * gbfun.c: added option -R to print intermediary results of the recursive computing. The function has been optimized a bit with the introduction of variable "values" and "maxindex" in the "Function" structure. * gbtest.c: fixed the name-function assignment in run_onesample calls. 2005-11-16 Giulio Bottazzi * gbrand.c : added messages for verbose option. 2005-11-15 Giulio Bottazzi * gbrand.c: implemented the use of GSL environment variables to control the type and default seed of the random number generator. * gbget.c: removed dependence on the non-portable header file. * tools.c: fixed the initialize_program function. 2005-11-04 Giulio Bottazzi * *.c: all the programs have been updated to new output management. Notice that, in general, the output to stderr generated by the verbose option has not been modified. * tools.c: modified the output management. The separator is fixed to " " and cannot be modified via environment variables. Only gbget can change it. This means that GB_OUT_SEPARATOR is no longer read. The format of the EMPTY string, if not explicitly specified by the environment variable, is set to a value which is reasonable for the float format in use. The format INT to print integer numbers has been added. It is automatically set based on the format FLOAT. The variable 2005-11-03 Giulio Bottazzi * README: updated to reflect addition of gbrand utility. * gbrand.c: added a new utility "gbrand" for the generation of pseudo-random variates. The main part of the program is copied from the program gsl-randist by James Theiler and Brian Gough (c). It requires the gsl library. * tools.c: set the default values to GB_OUT_FLOAT_FORMAT="% 12.6e" GB_OUT_EMPTY_FORMAT="%-13s" GB_OUT_SEPARATOR=" " * gbnlreg.c: updated output management and corrected bug in the printing of heading for "-O 2". 2005-11-02 Giulio Bottazzi * README: updated to reflect changes. New section on "Output format and precision" has been added. * gbks.c: removed. Implemented in gbtest. * gbtest.c: now one samples test are performed with a call to function run_onesample. Two samples tests have been added through function run_twosamples. For now only the "KS" test has been implemented. 2005-10-31 Giulio Bottazzi * gbfun.c: remove apparently unused label; implemented new output management. * gbget.c, gbquant.c, gbstat.c, gbtest.c: rewritten to implement new output management. * tools.c: added new output functions: printline, printmatrixbyrows and printmatrixbycols. New output management is based on global variables FLOAT, EMPTY and SEP, from which various format strings are derived to be used inside "printf" statements. The function "initialize_program" is called AFTER command line parsing and set both output format strings and program's name for warning/error reporting. 2005-10-29 Giulio Bottazzi * gbstat.c: rewritten to incorporate new output management based on GB_... environment variables. 2005-10-28 Giulio Bottazzi * gbtest.c: added "gbtest" program to perform various statistical tests on data; this preliminary version only performs 1 sample tests on each input column. * tools.c, tools.h: added definition of external variables GB_... to globally specify the output formats of programs. * gbget.c: re-designed the output format management. The three relevant variables are now 'outputformat', 'emptyformat' and 'sepstring'. The global setting has been moved to tools.c. 2005-10-26 Giulio Bottazzi * gbstat.c: changed the output string to " 12.6e" for both the normal and "short" (-s) output. * gbget.c: changed default output string to " 12.6e" and default empty field to " ". * gbfun.c: changed the output string to " 12.6e". 2005-10-26 Giulio Bottazzi * gbget.c: added transformation 'r' to reverse entries in each column 2005-10-24 Giulio Bottazzi * INSTALL: file removed; it is automatically installed by autoreconf -i * README.gbget: updated the README to reflect recent modifications to gbget syntax * gbget.c: removed option '-w' from help message and minor beautifications 2005-10-23 Giulio Bottazzi * configure, mkefile,...: all configuration and make files have been removed from the package. They are now generated with autoreconf -i. * lib, m4: updated to new version of gnulib. * README: modified to reflect the removal of gbzscore, gbdenan, gbrobreg and gbrobareg from the package. * gbrobreg, gbrobareg: these programs have been removed from the packages, they are now superseded by the new options implemented in gbnlreg. Two scripts with the same names have been added to maintain backward compatibility. They are simple wrappers around gbnlreg. * gbnlreg.c: modified help output. 2005-10-21 Giulio Bottazzi * gbzscore, gbdenan: these programs have been removed from the packages, they are now superseded by the new transformations implemented in gbget. Two scripts with the same names have been added to maintain backward compatibility. They are simple wrappers around gbget. * configure.ac: UPDATED VERSION NUMBER TO 5.0. From now on all the files which are modified will have their version number updated to 5.0. Update list of check following the suggestion of autoscan. * gbget.c: added transformation "z" and "Z" to remove the mean and compute the zscores on each column. 2005-10-19 Giulio Bottazzi * gbget.c: Modified the output and empty string specification. Now the program uses the libc utility provided in printf.h. 2005-10-18 Giulio Bottazzi * gbnlreg.c: added option -M to choose among different estimation procedures: OLS, MAD and asymmetric MAD. Notice that this makes gbrobreg and gbrobareg obsolete. * gbglreg.c: replaced "%f" with "%e" for the output of estimated quantities. 2005-10-17 Giulio Bottazzi * tools.c: fixed the variable type in various printf. * gbget.c: fixed bug in parse_slice due to improper size_t int conversion; fixed the variable type in various printf. 2005-10-13 Giulio Bottazzi * gbget.c: modified help message and removed unnecessary variables. * tools.c: removed unnecessary variables in tools.c. 2005-10-13 Giulio Bottazzi * gbget.c: removed unnecessary structures. Added a warning when using blocks with input from stdin so that there is no possibility to seek. 2005-10-12 Giulio Bottazzi * gbquant.c (main): fixed a bug in options -q and -x when used together with option -t ( multiple calls of function denan ). 2005-09-08 Giulio Bottazzi * gbget.c: removed annoying printing of parsing results (it was added for debugging purposes). 2005-08-29 Giulio Bottazzi * gbget.c: improved and shortened the code. Removed the "null" transformation introduced for testing. Added "denan" transformation. 2005-08-22 Giulio Bottazzi * gbnlreg.c, gbrobreg.c, gbrobareg.c: added error message if no functions to fit are provided. * gbglreg.c: fixed a bug in output option -O 2. 2005-08-20 Giulio Bottazzi * gbglreg.c, gbnlreg.c, gbrobreg.c, gbrobareg.c,: added option -O 3 to print estimated coefficients and variance-covariance matrix. Moved definition of GB_PROGNAME before command line processing. Updated check on variance and output types command line options. Uniform definition of variance-covariance matrix across all the routines. * gbglreg.c: added option -M for intercept estimation. Compact help message. 2005-08-19 Giulio Bottazzi * gbglreg.c: replaced explicit loops for the computation of estimates and residuals with matrix-oriented manipulations. This should speed up the code quite a lot. (hccs): added function for the heteroscedastic consistent covariance estimation, 4 different methods implemented. (print_glinear_verbose): fixed little bugs 2005-08-18 Giulio Bottazzi * gbfun.c: moved definition of GB_PROGNAME before command line processing. In this way this variable is available for error messages from the very beginning. Added check on the initial value for recursive computation. The variable 'x' is set to an alias of 'x1' in non-recursive mode (it was an alias of x0). Improved help message. * gbget.c: fixed bug in parse_spec which prevented negative column and row specifications. 2005-08-04 Giulio Bottazzi * gbget.c: added data array deallocation before loading (removed from loadtable and loadtable_block functions) * tools.c: removed initial deallocation from loadtable and loatable_block: conflict with the use of loadtable in load2 and load3. Added possibility to specify number of columns in loadtable_block (consistent with loadtable behavior). * gbget.c: removed debug output messages 2005-08-01 Giulio Bottazzi * gbget.c: improved gbget spec parsing with the addition of more tests on the identified strings. Large part of the code has been rewritten with the introduction of functions and the list of possible transformations has been extended with log transform and column-wise differencing. Help has been rewritten. 2005-07-31 Giulio Bottazzi * tools.c: added initial de-allocation in loadtable and loadtable_block. * README: increased needed version of gsl to 1.6 2005-07-22 Giulio Bottazzi * gbquant.c (main): added possibility to print more than one quantile (or "inverse" quantile) value 2005-06-27 Giulio Bottazzi * gbrobareg.c: modified output structure to be similar to gbrobreg * gbrobreg.c: corrected bug in the headings of output option 2 2005-06-26 Giulio Bottazzi * gbrobreg.c: modified output structure to be similar to gbnlreg 2005-06-25 Giulio Bottazzi * gbnlreg.c: modified output structure: inserted three output options and added more verbosity levels 2005-06-24 Giulio Bottazzi * gblreg.c, gbglreg.c: modified output structure. Inserted three levels of verbosity and the choices of three types of output 2005-06-15 Giulio Bottazzi * gbrobreg.c, gbrobareg.c: added help to methods for variance-covariance computation (-V option) * gbnlreg.c: fixed reference to methods for variance-covariance computation 2005-05-09 Giulio Bottazzi * gbmodes.c: fixed typos in help description of output options. spell-checked comments and strings * gbker.c: modified the initial bandwidth when the interquartile range is zero * gbmodes.c: modified the initial bandwidth when the interquartile range is zero 2005-04-26 Giulio Bottazzi * gbnlreg.c, gbrobreg.c, gbrobareg.c: added help to regression utilities * gbget.c: now blocks are counted starting from 1 * README, README.gbget: updated 2005-04-24 Giulio Bottazzi * ALL: added GB_PROGNAME variable to all utilities for the "customization" of ERROR or WARNING line * README: updated 2005-04-20 Giulio Bottazzi * gbbin.c: improved verbose output; added the option to print number of observations in each bin; added the option to print standard deviation of x values 2005-04-09 Giulio Bottazzi * ALL: removed occurrences of "//" C++ style comments 2005-03-28 Giulio Bottazzi * gbfun.c: added x0 as row number 2005-03-20 Giulio Bottazzi * gbrobareg.c: added utility for the asymmetric robust regression * gbquant.c: new option -w to filter quantiles data 2005-03-17 Giulio Bottazzi * gbnlreg.c: improved * gbrobreg.c: added utility to perform robust estimation (with Laplace distributed errors) of a non linear model. 2005-03-16 Giulio Bottazzi * gbnlreg.c: added utility to perform least square estimation of non-linear model 2005-03-12 Giulio Bottazzi * gbbin.c: new option to print observations in each bin; now use the load2 and sort2 functions from tools.c * gbglreg.c (NEW): added utility for regression of general linear models * gbgrid.c (NEW): added utility to generate grid of values * gbfun.c: modified the function variable parsing to use libmatheval "evaluator_get_variables"; corrected a bug: multiple functions in tabular mode are printed one by one consequently for each column. If one function cannot be printed, none is printed. * gbboot.c (NEW): utility for bootstrap via random sampling with replacement * gbget.c: the syntax has changed. Now slices are specified as min:max:skip for both columns and rows * gblreg.c (NEW): utility for linear regression * gbker2d.c, gbkreg2d.c: code improved and bugs corrected * gbmodes.c: added Hall-York correction to significance estimation * gbinterp.c: now properly handles case n=1 * gbstat.c, gbker.c: option -i (block-wise input) has been removed, it was a legacy from previous package versions without gbget; fixed help * tools.c: if zlib is found on the system, the data loading is made using gz-oriented functions so that gz-compressed files can be directly read. Functions load2 and load3 in tools.c have been rewritten as simple interfaces around loadtable. If a values for columns !=0 is passed to loadtable, only this number of columns is read; the initial value of variables rows and columns has been set to 0 in all the utility using loadtable. Delimiter specifications implemented in data load functions. Data loading functions have been redefined to take file descriptor rather than stream * README, README.gbutils, INSTALL.CYGWIN: rewritten in reStructuredText format (docutils) for automatic HTML and LaTeX conversion. The HTML version of the documents is obtained with command like rst2html.py --stylesheet-path=/usr/share/doc/docutils-0.3.5/html/tools/stylesheets/pep.css --embed-stylesheet 2003-08-18 Giulio Bottazzi * gbker.c: changed the numbers of the different kernels in gbker 2003-08-16 Giulio Bottazzi * gbker2d.c: created the file * tools.c: added moment_short2 to compute statistics for bivariate data 2003-08-15 Giulio Bottazzi * gbker.c: gbker_gsl.c and gbker_fftw.c have been merged in a unique file gbker.c whose compilation is regulated by #ifdef directives. added option -H to directly set the kernel bandwidth modified the calculation of "standard bandwidth" according to Silverman (p.48 of "Density Estimation...") introduced the option -v to print details about the kernel estimation to stderr * gbstat.c: added options -i. The output format strings in gbstat have been changed from %f to %e * tools.c: improved and FIXED the behaviour of the function loadtable and loadtable_block. fixed the reporting of error in functions moment_short and moment when the number of observations is less then 2. Modified accordinlgy the programs using the "table" option (-t). gbutils-5.7.1/gbgcorr.10000644000175000017500000000315413246755335011645 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBGCORR "1" "March 2018" "gbgcorr 5.7.1" "User Commands" .SH NAME gbgcorr \- Gaussian kernel correlation dimension .SH SYNOPSIS .B gbgcorr [\fI\,options\/\fR] .SH DESCRIPTION Compute the correlation dimension with a Gaussian kernel. One block of output is printed for each embedding dimension, the first column report the bandwidth, the second the associated correlation coefficient. Bandwidths are equispaced in a log scale from 1 (maximum) to 2^(\fB\-n\fR+1) (minimum). n can be set on the command line. .SH OPTIONS .TP \fB\-h\fR this help .TP \fB\-l\fR time lag (default 1) .TP \fB\-m\fR maximum embedding dimension (default 2) .TP \fB\-t\fR Theiler correction (default 1) .TP \fB\-R\fR seed (default 0) .TP \fB\-p\fR number of reference points (default 1) .TP \fB\-r\fR number of bandwidths (default 24) .TP \fB\-s\fR print standard errors .TP \fB\-F\fR specify the input fields separators (default " \et") .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/gbnlmult.10000644000175000017500000000354513246755335012050 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBNLMULT "1" "March 2018" "gbnlmult 5.7.1" "User Commands" .SH NAME gbnlmult \- Solve systems of non linear simultaneous equations .SH SYNOPSIS .B gbnlmult [\fI\,options\/\fR] \fI\,\/\fR .SH DESCRIPTION Least square estimation of a system of j non linear equations. Read data in columns (X_1 .. X_N). The j\-th equation is specified by a function f_j(x1,x2...) using variables names x1,x2,..,xN for the first, second...N\-th column of data. The f_j(x1,x2,...)'s are assumed i.i.d. according to a multivariate gaussian distribution. .SH OPTIONS .TP \fB\-O\fR type of output (default 0) .TP 0 parameters .TP 1 parameters and errors .TP 2 and residuals .TP 3 parameters and variance matrix .TP \fB\-V\fR variance matrix estimation (default 0) .IP 0 1 < J^{\-1} > 2 < H^{\-1} > 3 < H^{\-1} J H^{\-1} > .TP \fB\-e\fR minimization tolerance (default 1e\-5) .TP \fB\-v\fR verbosity level (default 0) .TP 0 just results .TP 1 comment headers .TP 2 summary statistics .TP 3 covariance matrix .TP 4 minimization steps .TP 5 model definition .TP \fB\-F\fR input fields separators (default " \et") .TP \fB\-h\fR this help .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/gblreg.10000644000175000017500000000312713246755335011462 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBLREG "1" "March 2018" "gblreg 5.7.1" "User Commands" .SH NAME gblreg \- Estimate linear regression model .SH SYNOPSIS .B gblreg [\fI\,options\/\fR] .SH DESCRIPTION Linear regression. Data provided should have independent variable on the 1st column and dependent variable on the 2nd. Standard error on dependent variable can be provided on the 3rd column. .SH OPTIONS .TP \fB\-M\fR the linear regression model (default 0) .TP 0 with estimated intercept .TP 1 with zero intercept .TP \fB\-O\fR the type of output (default 0) .TP 0 regression coefficients .TP 1 regression coefficients and errors .TP 2 x, fitted y, error on y, residual .TP \fB\-w\fR consider provided standard errors on y .TP \fB\-v\fR verbosity level (default 0) .TP 0 just output .TP 1 commented headings .TP 2 model details .TP \fB\-F\fR specify the input fields separators (default " \et") .TP \fB\-h\fR print this help .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/gbxcorr.10000644000175000017500000000327213246755335011667 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBXCORR "1" "March 2018" "gbxcorr 5.7.1" "User Commands" .SH NAME gbxcorr \- Compute cross correlation matrix .SH SYNOPSIS .B gbxcorr [\fI\,options\/\fR] .SH DESCRIPTION Take as input a data matrix A with N rows and T columns .TP A = [ a_{t,i} ] with t=1,..,T i=1,...,N .PP and compute the NxN correlation matrix C [ c_{i,j} ] following the method specified by option '\-M': with method 0 it is .IP c_{i,j} = 1/(T\-1) \esum_t (a_{t,i}\-m_i) (a_{t,j}\-m_j) .PP where m_i is the i\-th mean and with method 1 it is .IP c_{i,j} = 1/T \esum_t a_{t,i} a_{t,j} . .PP Covariance is stored in the lower triangle while correlation coefficients are stored in the upper triangle. .PP WARNING: previous implementations were row\-wise instead of column\-wise .SH OPTIONS .TP \fB\-M\fR choose the method (default 0) .TP 0 covariance/correlation with mean removal .TP 1 covariance/correlation without mean removal .HP \fB\-F\fR specify the input fields separators (default " \et") .HP \fB\-h\fR this help .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/gbnlprobit.c0000644000175000017500000016037313246754720012450 00000000000000/* gbnlprobit (ver. 5.6) -- Non linear probit regression Copyright (C) 2009-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "tools.h" #include "matheval.h" #include "assert.h" #include "multimin.h" #include #include /* #include */ #include #include #include #include #include #include #include #include /* handy structure used in computation */ typedef struct function { void *f; size_t argnum; char **argname; void **df; void ***ddf; } Function; struct objdata { Function * F; size_t rows0; size_t rows1; size_t columns; double **data0; double **data1; double *prob0; double *prob1; double weight0; double weight1; }; /* Maximum likelihood estimation */ /* ============================= */ /* the objective function is the negative log-likelihood. It can be written as: - \sum_{y=0} log ( 1-F(g(x)) ) - \sum_{y=1} log ( F(g(x)) ) where F is the Normal distribution function with mean zero and variance 1 F(x) = (1/\sqrt{2\pi}) \int_{-\infty}^x dt \exp(-t^2/2). and where g(x) is the function to be estimated. Notice that F(0)=1/2, F(+\infty)=1 and F(-x)=1-F(x) and Q(x)=1-F(x). In GSL: F(x) = 1-gsl_sf_erf_Q(x) f(x) = F'(x) = gsl_sf_erf_Z(x) or one can use instead: F(x) = ( 1+erf(x/sqrt{2}) )/2 = (2-erfc(x/sqrt{2})/2 = erfc(-x/sqrt{2})/2 Q(x) = ( 1-erf(x/sqrt{2}) )/2 = erfc(x/sqrt{2})/2 */ void obj_f (const size_t pnum, const double *x,void *params,double *fval){ const Function *F = ((struct objdata *)params)->F; const size_t rows0=((struct objdata *)params)->rows0; const size_t rows1=((struct objdata *)params)->rows1; const size_t columns=((struct objdata *)params)->columns; double **data0=((struct objdata *)params)->data0; double **data1=((struct objdata *)params)->data1; double values[pnum+columns]; size_t i,j; double res=0; /* set the parameter values */ for(i=columns;if,columns+pnum,F->argname,values); /* cdfQ(x) = erfc(x/\sqrt(2))/2 */ /* res += -log( gsl_sf_erf_Q (tempg) ); */ res += log(2)-gsl_sf_log_erfc(tmpg/sqrt(2)); } /* cycle on one occurrences */ for(i=0;if,columns+pnum,F->argname,values); /* cdfP(x) = erfc(-x/\sqrt(2))/2 */ /* res += -log( 1-gsl_sf_erf_Q (tempg) ); */ res += log(2)-gsl_sf_log_erfc(-tmpg/sqrt(2)); } *fval=res; /* rescale log-likelihood */ /* *fval=res/(rows0+rows1); */ /* fprintf(stderr," f: %+12.6e\n",res); */ /* fprintf(stderr," x:"); */ /* for(i=0;iF; const size_t rows0=((struct objdata *)params)->rows0; const size_t rows1=((struct objdata *)params)->rows1; const size_t columns=((struct objdata *)params)->columns; double **data0=((struct objdata *)params)->data0; double **data1=((struct objdata *)params)->data1; double values[pnum+columns]; size_t i,j; /* variables used in computation */ double tmpg; /* the value of the internal function */ /* initialize gradient */ for(i=0;if,columns+pnum,F->argname,values); for(j=0;jdf)[j],columns+pnum,F->argname,values)*gsl_sf_erf_Z(tmpg)/gsl_sf_erf_Q(tmpg); */ grad[j] += evaluator_evaluate ( (F->df)[j],columns+pnum,F->argname,values)*gsl_sf_erf_Z(tmpg)/( exp( gsl_sf_log_erfc(tmpg/sqrt(2)) )/2 ); } } /* cycle on one occurrences */ for(i=0;if,columns+pnum,F->argname,values); for(j=0;jdf)[j],columns+pnum,F->argname,values)*gsl_sf_erf_Z(tmpg)/(1-gsl_sf_erf_Q(tmpg)); */ grad[j] += -evaluator_evaluate ( (F->df)[j],columns+pnum,F->argname,values)*gsl_sf_erf_Z(tmpg)/( exp( gsl_sf_log_erfc(-tmpg/sqrt(2)) )/2 ); } } /* rescale log-likelihood */ /* for (j=0;jF; const size_t rows0=((struct objdata *)params)->rows0; const size_t rows1=((struct objdata *)params)->rows1; const size_t columns=((struct objdata *)params)->columns; double **data0=((struct objdata *)params)->data0; double **data1=((struct objdata *)params)->data1; double values[pnum+columns]; size_t i,j; double res=0; /* variables used in computation */ double tmpg; /* the value of the internal function */ /* initialize gradient */ for(i=0;if,columns+pnum,F->argname,values); /* cdfQ(x) = erfc(x/\sqrt(2))/2 */ /* res += -log( gsl_sf_erf_Q (tmpg) ); */ res += log(2)-gsl_sf_log_erfc(tmpg/sqrt(2)); for(j=0;jdf)[j],columns+pnum,F->argname,values)*gsl_sf_erf_Z(tmpg)/gsl_sf_erf_Q(tmpg); */ grad[j] += evaluator_evaluate ( (F->df)[j],columns+pnum,F->argname,values)*gsl_sf_erf_Z(tmpg)/( exp( gsl_sf_log_erfc(tmpg/sqrt(2)) )/2 ); } } /* cycle on one occurrences */ for(i=0;if,columns+pnum,F->argname,values); /* cdfP(x) = erfc(-x/\sqrt(2))/2 */ /* res += -log( 1-gsl_sf_erf_Q (tmpg) ); */ res += log(2)-gsl_sf_log_erfc(-tmpg/sqrt(2)); for(j=0;jdf)[j],columns+pnum,F->argname,values)*gsl_sf_erf_Z(tmpg)/(1-gsl_sf_erf_Q(tmpg)); */ grad[j] += -evaluator_evaluate ( (F->df)[j],columns+pnum,F->argname,values)*gsl_sf_erf_Z(tmpg)/( exp( gsl_sf_log_erfc(-tmpg/sqrt(2)) )/2 ); } } *fval=res; /* rescale log-likelihood */ /* for (j=0;jf,columns+Pnum,F->argname,values)); for(j=0;jdf)[j],columns+Pnum,F->argname,values); for(h=0;hdf)[h],columns+Pnum,F->argname,values); gsl_matrix_set (dJ,j,h,tmpdg1*tmpdg2*dtmp1*dtmp1); } } gsl_matrix_add (J,dJ); } for(i=0;if,columns+Pnum,F->argname,values)); for(j=0;jdf)[j],columns+Pnum,F->argname,values); for(h=0;hdf)[h],columns+Pnum,F->argname,values); gsl_matrix_set (dJ,j,h,tmpdg1*tmpdg2*dtmp1*dtmp1); } } gsl_matrix_add (J,dJ); } /* invert information matrix; dJ store temporary LU decomp. */ gsl_matrix_memcpy (dJ,J); gsl_linalg_LU_decomp (dJ,P,&signum); gsl_linalg_LU_invert (dJ,P,covar); /* gsl_matrix_scale (covar,a*a); */ gsl_matrix_free(J); gsl_matrix_free(dJ); gsl_permutation_free(P); } break; case 2: /* H^{-1} */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); int signum; gsl_matrix *H = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dH = gsl_matrix_calloc (Pnum,Pnum); /* notice that for Gaussian density f it is f'=-x*f */ /* compute Hessian */ for(i=0;if,columns+Pnum,F->argname,values); const double dtmp2 = gsl_sf_hazard(dtmp1); for(j=0;jdf)[j],columns+Pnum,F->argname,values); for(h=0;hdf)[h],columns+Pnum,F->argname,values); const double tmpddg = evaluator_evaluate ((F->ddf)[j][h],columns+Pnum,F->argname,values); gsl_matrix_set (dH,j,h,tmpddg*dtmp2-tmpdg1*tmpdg2*dtmp1*dtmp2+ tmpdg1*tmpdg2*dtmp2*dtmp2); } } gsl_matrix_add (H,dH); } for(i=0;if,columns+Pnum,F->argname,values); const double dtmp2 = gsl_sf_hazard(-dtmp1); for(j=0;jdf)[j],columns+Pnum,F->argname,values); for(h=0;hdf)[h],columns+Pnum,F->argname,values); const double tmpddg = evaluator_evaluate ((F->ddf)[j][h],columns+Pnum,F->argname,values); gsl_matrix_set (dH,j,h,-tmpddg*dtmp2+tmpdg1*tmpdg2*dtmp1*dtmp2+ tmpdg1*tmpdg2*dtmp2*dtmp2); } } gsl_matrix_add (H,dH); } /* invert Hessian; dH store temporary LU decomp. */ gsl_matrix_memcpy (dH,H); gsl_linalg_LU_decomp (dH,P,&signum); gsl_linalg_LU_invert (dH,P,covar); /* gsl_matrix_scale (covar,a*a); */ gsl_matrix_free(H); gsl_matrix_free(dH); gsl_permutation_free(P); } break; case 3: /* H^{-1} J H^{-1} */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); int signum; gsl_matrix *H = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dH = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *J = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dJ = gsl_matrix_calloc (Pnum,Pnum); /* compute Hessian and information matrix */ for(i=0;if,columns+Pnum,F->argname,values); const double dtmp2 = gsl_sf_hazard(dtmp1); for(j=0;jdf)[j],columns+Pnum,F->argname,values); for(h=0;hdf)[h],columns+Pnum,F->argname,values); const double tmpddg = evaluator_evaluate ((F->ddf)[j][h],columns+Pnum,F->argname,values); gsl_matrix_set (dH,j,h,tmpddg*dtmp2-tmpdg1*tmpdg2*dtmp1*dtmp2+ tmpdg1*tmpdg2*pow(dtmp2,2)); gsl_matrix_set (dJ,j,h,tmpdg1*tmpdg2*pow(dtmp2,2)); } } gsl_matrix_add (H,dH); gsl_matrix_add (J,dJ); } for(i=0;if,columns+Pnum,F->argname,values); const double dtmp2 = gsl_sf_hazard(-dtmp1); for(j=0;jdf)[j],columns+Pnum,F->argname,values); for(h=0;hdf)[h],columns+Pnum,F->argname,values); const double tmpddg = evaluator_evaluate ((F->ddf)[j][h],columns+Pnum,F->argname,values); gsl_matrix_set (dH,j,h,-tmpddg*dtmp2+tmpdg1*tmpdg2*dtmp1*dtmp2+ tmpdg1*tmpdg2*pow(dtmp2,2)); gsl_matrix_set (dJ,j,h,tmpdg1*tmpdg2*pow(dtmp2,2)); } } gsl_matrix_add (H,dH); gsl_matrix_add (J,dJ); } /* invert Hessian; dH store temporary LU decomp. */ gsl_matrix_memcpy (dH,H); gsl_linalg_LU_decomp (dH,P,&signum); gsl_linalg_LU_invert (dH,P,H); /* dJ = H^{-1} J ; covar = dJ H^{-1} */ gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,H,J,0.0,dJ); gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,dJ,H,0.0,covar); /* gsl_matrix_scale (covar,a*a); */ gsl_matrix_free(H); gsl_matrix_free(dH); gsl_matrix_free(J); gsl_matrix_free(dJ); gsl_permutation_free(P); } break; } return covar; } /* Compute probabilities used in threshold statistics */ /* ================================================== */ void probabilities(const size_t pnum, const double *x,void *params){ const Function *F = ((struct objdata *)params)->F; const size_t rows0=((struct objdata *)params)->rows0; const size_t rows1=((struct objdata *)params)->rows1; const size_t columns=((struct objdata *)params)->columns; double **data0=((struct objdata *)params)->data0; double **data1=((struct objdata *)params)->data1; double *prob0=((struct objdata *)params)->prob0; double *prob1=((struct objdata *)params)->prob1; double values[pnum+columns]; size_t i,j; /* set the parameter values */ for(i=columns;if,columns+pnum,F->argname,values)); } /* cycle on one occurrences */ for(i=0;if,columns+pnum,F->argname,values)); } } /* Score function for the determination of optimal threshold */ /* ========================================================= */ double score(const double t, void *params){ const size_t rows0=((struct objdata *)params)->rows0; const size_t rows1=((struct objdata *)params)->rows1; double *prob0=((struct objdata *)params)->prob0; double *prob1=((struct objdata *)params)->prob1; size_t i; double errors0=0; double errors1=0; for(i=0;i t) errors0 +=1; for(i=0;iF; const size_t rows0=((struct objdata *)params)->rows0; const size_t rows1=((struct objdata *)params)->rows1; const size_t columns=((struct objdata *)params)->columns; double **data0=((struct objdata *)params)->data0; double **data1=((struct objdata *)params)->data1; /* double *prob0=((struct objdata *)params)->prob0; */ /* double *prob1=((struct objdata *)params)->prob1; */ double values[pnum-1+columns]; /* last parameter is the threshold */ const double weight0=((struct objdata *)params)->weight0; const double weight1=((struct objdata *)params)->weight1; size_t i,j; double res=0; /* variables used in computation */ double tmpg; /* the value of the internal function */ /* set the parameter values */ for(i=columns;if,columns+pnum-1,F->argname,values); /* prob0[i] = tmpF = gsl_cdf_ugaussian_P(tmpg); */ if( tmpg > x[pnum-1] ) res += weight0; } /* cycle on one occurrences */ for(i=0;if,columns+pnum-1,F->argname,values); /* prob1[i] = tmpF= gsl_cdf_ugaussian_P(tmpg); */ if(tmpg < x[pnum-1]) res += weight1; } *fval=res; } int main(int argc,char* argv[]){ int i; /* options and default values */ char *splitstring = strdup(" \t"); int o_verbose=0; int o_output=0; int o_varcovar=0; int o_zscore=0; int o_method=0; int o_threshold=0; /* =0 ignore threshold; in (0,1) take as given; =1 compute optimal only global; =2 compute optimal global and local */ int o_provided_t=0; /* threshold is provided */ int o_onlyglobal_t=0; /* threshold is computed only globally */ /* data from sdtin */ size_t rows0=0,rows1=0,columns=0; double **data0=NULL; double **data1=NULL; int *vartype=NULL; /* =0 reg. variate; =1 dummy; =2 dummy which cannot be estimated; =3 constant*/ Function F; /* definition of the function */ char **Param=NULL; /* parameter names */ double *Pval=NULL; /* parameter values */ gsl_matrix *Pcovar=NULL; /* covariance matrix */ size_t Pnum=0; /* parameters number */ double llmin; /* minimization parameters */ struct multimin_params mmparams={.01,.1,100,1e-6,1e-6,5,0}; /* estimated probabilities */ double *prob0=NULL; double *prob1=NULL; /* statistics */ double brier=0; /* brier score */ double threshold=0; /* threshold */ double thmin; /* value of the score function */ size_t thsteps=10; /* steps for threshold identification */ unsigned wrongs0=0; /* mistakes in pred. 0 */ unsigned wrongs1=0; /* mistakes in pred. 1 */ /* error handler */ gsl_error_handler_t old_handler; double scoremin=0; struct multimin_params scoremmparams={1,.01,100,1e-6,1e-4,4,0}; /* parameters for the likelihood expression */ struct objdata llparams; /* variables for reading command line options */ /* ------------------------------------------ */ int opt; /* ------------------------------------------ */ /* COMMAND LINE PROCESSING */ while((opt=getopt_long(argc,argv,"v:hF:O:V:A:t:g:zB:M:",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='h'){ /*print help*/ fprintf(stdout,"Non linear probit estimation. Minimize the negative log-likelihood\n"); fprintf(stdout,"\n"); fprintf(stdout," sum_{i in N_0} log(1-F(g(X_i))) + sum_{i in N_1} log(F(g(X_i)))\n"); fprintf(stdout,"\n"); fprintf(stdout,"where N_0 and N_1 are the sets of 0 and 1 observations, g is a generic \n"); fprintf(stdout,"function of the independent variables and F is the normal CDF. It is also\n"); fprintf(stdout,"possible to minimize the score function\n"); fprintf(stdout,"\n"); fprintf(stdout,"w_0 sum_{i in N_0} theta(F(g(X_i))-t) + \n"); fprintf(stdout," w_1 sum_{i in N_1} theta(t-F(g(X_i))) \n"); fprintf(stdout,"\n"); fprintf(stdout,"where theta is the Heaviside function and t a threshold level. Weights \n"); fprintf(stdout,"w_0 and w_1 scale the contribution of the two subpopulations. The first \n"); fprintf(stdout,"column of data contains 0/1 entries. Successive columns are independent \n"); fprintf(stdout,"variables. The model is specified by a function g(x1,x2...) where x1,.. \n"); fprintf(stdout,"stands for the first,second .. N-th column independent variables.\n"); fprintf(stdout,"\nUsage: %s [options] \n\n",argv[0]); fprintf(stdout,"options:\n"); fprintf(stdout," -O type of output (default 0)\n"); fprintf(stdout," 0 parameters \n"); fprintf(stdout," 1 parameters and errors \n"); fprintf(stdout," 2 and probabilities \n"); fprintf(stdout," 3 parameters and variance matrix\n"); fprintf(stdout," 4 marginal effects \n"); fprintf(stdout," -V variance matrix estimation (default 0)\n"); fprintf(stdout," 0 \n"); fprintf(stdout," 1 < J^{-1} > \n"); fprintf(stdout," 2 < H^{-1} > \n"); fprintf(stdout," 3 < H^{-1} J H^{-1} > \n"); fprintf(stdout," -z take zscore (not of 0/1 dummies)\n"); fprintf(stdout," -F input fields separators (default \" \\t\")\n"); fprintf(stdout," -v verbosity level (default 0)\n"); fprintf(stdout," 0 just results \n"); fprintf(stdout," 1 comment headers \n"); fprintf(stdout," 2 summary statistics \n"); fprintf(stdout," 3 covariance matrix \n"); fprintf(stdout," 4 minimization steps (default 10)\n"); fprintf(stdout," 5 model definition \n"); fprintf(stdout," -g set number of point for global optimal threshold identification \n"); fprintf(stdout," -h this help \n"); fprintf(stdout," -t set threshold value (default 0)\n"); fprintf(stdout," 0 ignore threshold \n"); fprintf(stdout," (0,1) user provided threshold \n"); fprintf(stdout," 1 compute optimal only global \n"); fprintf(stdout," 2 compute optimal \n"); fprintf(stdout," -M estimation method \n"); fprintf(stdout," 0 maximum likelihood \n"); fprintf(stdout," 1 min. score (w0=w1=1) \n"); fprintf(stdout," 2 min. score (w0=1/N0, w1=1/N1) \n"); fprintf(stdout," -A MLL optimization options (default 0.01,0.1,100,1e-6,1e-6,5)\n"); fprintf(stdout," fields are step,tol,iter,eps,msize,algo. Empty fields for default\n"); fprintf(stdout," step initial step size of the searching algorithm \n"); fprintf(stdout," tol line search tolerance iter: maximum number of iterations \n"); fprintf(stdout," eps gradient tolerance : stopping criteria ||gradient||0 && threshold <1){ /* user provided threshold */ o_provided_t=1; } else if (threshold == 1){ /* compute global optimal threshold */ o_provided_t=0; o_onlyglobal_t=1; } else if (threshold == 2){ /* compute optimal threshold */ o_provided_t=0; } else { fprintf(stderr,"ERROR (%s): wrong threshold specification: '%f'\n", GB_PROGNAME,threshold); exit(-1); } } else if(opt=='M'){ /*set the estimation method*/ o_method = atoi(optarg); if(o_method<0 || o_method>2){ fprintf(stderr,"ERROR (%s): method option '%d' not recognized. Try option -h.\n", GB_PROGNAME,o_method); exit(-1); } } else if(opt=='z'){ /* z-score the variates */ o_zscore=1; } else if(opt=='g'){ /* set the number of steps for global threshold identification */ thsteps = (size_t) atoi(optarg); } else if(opt=='F'){ /*set the fields separator string*/ free(splitstring); splitstring = strdup(optarg); } else if(opt=='O'){ /* set the type of output */ o_output = atoi(optarg); if(o_output<0 || o_output>6){ fprintf(stderr,"ERROR (%s): output option '%d' not recognized. Try option -h.\n", GB_PROGNAME,o_output); exit(-1); } } else if(opt=='V'){ /* set the type of covariance */ o_varcovar = atoi(optarg); if(o_varcovar<0 || o_varcovar>3){ fprintf(stderr,"ERROR (%s): variance option '%d' not recognized. Try option -h.\n", GB_PROGNAME,o_varcovar); exit(-1); } } else if(opt=='A'){ char *stmp1=strdup (optarg); char *stmp2; char *stmp3=stmp1; if( (stmp2=strsep (&stmp1,",")) != NULL){ if(strlen(stmp2)>0) mmparams.step_size=atof(stmp2); } if( (stmp2=strsep (&stmp1,",")) != NULL){ if(strlen(stmp2)>0) mmparams.tol=atof(stmp2); } if( (stmp2=strsep (&stmp1,",")) != NULL){ if(strlen(stmp2)>0) mmparams.maxiter=(unsigned) atoi(stmp2); } if( (stmp2=strsep (&stmp1,",")) != NULL){ if(strlen(stmp2)>0) mmparams.epsabs=atof(stmp2); } if( (stmp2=strsep (&stmp1,",")) != NULL){ if(strlen(stmp2)>0) mmparams.maxsize=atof(stmp2); } if( (stmp2=strsep (&stmp1,",")) != NULL){ if(strlen(stmp2)>0) mmparams.method= (unsigned) atoi(stmp2); } free(stmp3); } else if(opt=='B'){ char *stmp1=strdup (optarg); char *stmp2; char *stmp3=stmp1; if( (stmp2=strsep (&stmp1,",")) != NULL){ if(strlen(stmp2)>0) scoremmparams.step_size=atof(stmp2); } if( (stmp2=strsep (&stmp1,",")) != NULL){ if(strlen(stmp2)>0) scoremmparams.maxiter=(unsigned) atoi(stmp2); } if( (stmp2=strsep (&stmp1,",")) != NULL){ if(strlen(stmp2)>0) scoremmparams.maxsize=atof(stmp2); } free(stmp3); } else if(opt=='v'){ o_verbose = atoi(optarg); mmparams.verbosity=(o_verbose>2?o_verbose-2:0); scoremmparams.verbosity=(o_verbose>2?o_verbose-2:0); } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); /* define the dataset */ { size_t i,i0,i1,j; size_t rows=0; double **data=NULL; /* load data */ loadtable(&data,&rows,&columns,0,splitstring); /* check if there are dummies. vartype: 0 reg. variate; 1 dummy; 2 dummy which cannot be estimated; 3 constant*/ vartype = (int *) my_alloc((columns-1)*sizeof(int)); for(i=1;i0 && strlen(stmp4)>0){ Pnum++; Param=(char **) my_realloc((void *) Param,Pnum*sizeof(char *)); Pval=(double *) my_realloc((void *) Pval,Pnum*sizeof(double)); Param[Pnum-1] = strdup(stmp5); Pval[Pnum-1] = atof(stmp4); } } else{ /* allocate new function */ F.f = evaluator_create (stmp3); assert(F.f); } free(stmp3); } free(piece); } /* check that everything is correct */ if(Pnum==0){ fprintf(stderr,"ERROR (%s): please provide a parameter to estimate.\n", GB_PROGNAME); exit(-1); } { size_t i,j; char **NewParam=NULL; double *NewPval=NULL; size_t NewPnum=0; char **storedname=NULL; size_t storednum=0; /* retrieve list of arguments and their number */ /* notice that storedname is not allocated */ { int argnum; evaluator_get_variables (F.f,&storedname,&argnum); storednum = (size_t) argnum; } /* check the definition of the function: column specifications refer to existing columns and parameters are properly initialized */ for(i=0;i0?atoi(stmp1+1):0); if(index>columns){ fprintf(stderr,"ERROR (%s): column %zu not present in data\n", GB_PROGNAME,index); exit(-1); } if(vartype[index-1]==2) fprintf(stderr,"WARNING (%s): dummy variable in column %zu is completely separated\n",GB_PROGNAME,index); } else { for(j=0;j1){ F.ddf = (void ***) my_alloc(Pnum*sizeof(void **)); for(i=0;i3){ size_t i,j; fprintf(stderr," ------------------------------------------------------------\n"); fprintf (stderr,"\n Parameters and initial conditions:\n"); for(i=0;i1){ fprintf (stderr,"\n Model second derivatives:\n"); for(i=0;i2){ fprintf(stderr,"##--- START score minimization ---\n"); fprintf(stderr,"# initial score %f initial threshold %f\n",scoremin,Pval[Pnum-1]); } multimin(Pnum,Pval,&scoremin,xtype,xmin,xmax,score_obj_f,NULL,NULL,(void *) &llparams,scoremmparams); if(o_verbose>2){ fprintf(stderr,"# final score %f final threshold %f\n",scoremin,Pval[Pnum-1]); fprintf(stderr,"##--- END score minimization ---\n"); } free(xmin); free(xmax); free(xtype); } /* threshold is found by the minimization */ o_threshold=1; o_provided_t=1; threshold=Pval[Pnum-1]; } /* Compute implied probabilities */ /* ----------------------------- */ /* necessary for threshold computation and Brier score */ if(o_threshold==1 || o_verbose >1){ prob0 = (double *) my_alloc(rows0*sizeof(double)); prob1 = (double *) my_alloc(rows1*sizeof(double)); llparams.prob0 = prob0; llparams.prob1 = prob1; probabilities(Pnum-1,Pval,&llparams); /* threshold value, which is the last parameter, is not used */ } /* compute optimal threshold */ /* ------------------------- */ if(o_threshold==1 && o_provided_t==0) { size_t i; if(o_verbose>2){ fprintf(stderr,"##--- START global optimal threshold computation ---\n"); fprintf(stderr,"#grid size: %zd\n",thsteps); } thmin=1; for(i=0;i1) */ /* fprintf(stderr,"%f %f\n",dtmp1,dtmp2); */ if(dtmp22) fprintf(stderr,"# threshold global minimum : t=%f f=%f\n",threshold,thmin); if(o_verbose>2) fprintf(stderr,"##--- END global optimal threshold computation ---\n"); } /* local refinement minimization */ if(o_threshold==1 && o_provided_t==0 && o_onlyglobal_t==0){ /* variables for the local minimization */ int status; int iter = 0, max_iter = 100; const gsl_min_fminimizer_type *T; gsl_min_fminimizer *s; gsl_function F; /* ------------------------------------ */ double tmin,tmax=0; /* boundaries to threshold minimization */ /* initialization */ F.function = &score; F.params = &llparams; tmin=threshold-1/(thsteps-1.); tmax=threshold+1/(thsteps-1.); T = gsl_min_fminimizer_brent; s = gsl_min_fminimizer_alloc (T); gsl_min_fminimizer_set (s, &F,threshold,tmin,tmax); do { iter++; status = gsl_min_fminimizer_iterate (s); threshold = gsl_min_fminimizer_x_minimum (s); thmin = gsl_min_fminimizer_f_minimum (s); tmin = gsl_min_fminimizer_x_lower (s); tmax = gsl_min_fminimizer_x_upper (s); status = gsl_min_test_interval (tmin, tmax, 0.001, 0.0); /* if (status == GSL_SUCCESS) */ /* printf ("Converged:\n"); */ /* printf ("%5d [%.7f, %.7f] f=%f\n", */ /* iter, tmin, tmax, fmin); */ } while (status == GSL_CONTINUE && iter < max_iter); gsl_min_fminimizer_free (s); if(o_verbose>2){ fprintf(stderr,"# threshold local refinement: t=%f f=%f\n",threshold,thmin); fprintf(stderr,"##--- END optimal threshold computation ---\n"); } } /* build the covariance matrix */ /* --------------------------- */ if(o_method == 0){ if(o_output > 0) Pcovar = varcovar(o_varcovar,Pnum,Pval,llparams); } else { /* errors are unknown */ Pcovar = gsl_matrix_alloc (Pnum,Pnum); gsl_matrix_set_all (Pcovar,NAN); } /* compute brier score */ /* ------------------- */ if(o_verbose>1){ size_t i; for(i=0;i1 && o_threshold==1){ size_t i; for(i=0;ithreshold) wrongs0 +=1; for(i=0;i1 && o_output > 0){ size_t i,j; fprintf(stderr," ------------------------------------------------------------\n"); fprintf(stderr,"%*s point est. st. err. se/pe P{pe=0}",(int) strlen(Param[0])+2,""); if(o_verbose>2){ fprintf(stderr," var-covar = "); switch(o_varcovar){ case 0: fprintf(stderr,"\n\n"); break; case 1: fprintf(stderr,"J^{-1}\n\n"); break; case 2: fprintf(stderr,"H^{-1}\n\n"); break; case 3: fprintf(stderr,"H^{-1} J H^{-1}\n\n"); break; } } else fprintf(stderr,"\n"); for(i=0;i2){ fprintf(stderr," | "); for(j=0;j1) fprintf(stderr," ------------------------------------------------------------\n"); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose>1){ fprintf(stderr,"#\n"); fprintf(stderr,"#Method: "); switch(o_method){ case 0: fprintf(stderr,"Maximum Likelihood\n"); fprintf(stderr,"#log-likelihood : %f\n",-llmin); fprintf(stderr,"#number of observations : %zu\n",rows0+rows1); fprintf(stderr,"#log-likelihood/obs : %f\n",-llmin/(rows0+rows1)); if(o_threshold==1){ if(o_provided_t==0){ fprintf(stderr,"#optimal threshold : %f\n",threshold); fprintf(stderr,"#score function : %f\n",thmin); } else fprintf(stderr,"#provided threshold : %f\n",threshold); } break; case 1: case 2: fprintf(stderr,"Score minimization\n"); fprintf(stderr,"# weights w0=%f w1=%f\n", llparams.weight0,llparams.weight1); fprintf(stderr,"#score minimum %f\n",scoremin); fprintf(stderr,"#optimal threshold %f\n",Pval[Pnum-1]); break; } fprintf(stderr,"#\n"); fprintf(stderr,"#summary statistics \n"); if(o_threshold==1){ fprintf(stderr,"#errors of Type I : %d\n",wrongs1); fprintf(stderr,"#errors of Type II : %d\n",wrongs0); fprintf(stderr,"#correctly predicted 0 : %f\n",1.-((double) wrongs0)/rows0); fprintf(stderr,"#correctly predicted 1 : %f\n",1.-((double) wrongs1)/rows1); fprintf(stderr,"#total corr. pred. : %f\n",((double) rows0-wrongs0+rows1-wrongs1)/(rows0+rows1)); } fprintf(stderr,"#brier score : %f\n",brier); fprintf(stderr,"#\n"); } /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ switch(o_output){ case 0: /* point estimates */ { size_t i; /* +++++++++++++++++++++++++++++++++++ */ if(o_verbose>0){ fprintf(stdout,"#"); for(i=0;i0){ fprintf(stdout,"#"); for(i=0;i0){ */ /* fprintf(stderr,"#"); */ /* for(i=0;i0){ fprintf(stdout,"#"); fprintf(stdout,EMPTY_SEP,"obs."); for(i=0;i0){ fprintf(stdout,"#point estimates\n"); fprintf(stdout,"#"); for(i=0;i0){ fprintf(stdout,"#var-covar matrix\n"); fprintf(stdout,"#"); for(i=0;i0){ fprintf(stdout,"#"); for(i=0;i0){ fprintf(stdout,"#"); for(i=0;i0) Pnum--; evaluator_destroy(F.f); for(i=0;imax then count is reversed and skip must be negative (\fB\-1\fR by default). Different specs are separated by semicolon ';' and considered sequentially. .TP trans is a list of transformations applied to selected data: 'd' take the diff of subsequent columns; 'D' remove all rows with at least one Not\-A\-Number (NAN) entry; 'f' flatten the output piling all columns; 'l' take log of all entries, 'P' print all entries collected as a data\-block; 't' transpose the matrix of data; 'z' subtract from the entries in each column their mean; 'Z' replace the entry in each column with their zscore; \&'w' divide the entry in each columns by their mean. .IP \&'<..;..>' functions separated by semicolons in angle brackets can be used for generic data transformation; the function is computed for each row of data. Variables names are 'x' followed by the number of the column and optionally by 'l' and the number of lags. For instance 'x2+x3l1' means the sum of the entries in the 2nd column plus the entries in the 3rd column in the previous row. 'x0' stands for the row number and 'x' is equal to 'x1' .IP \&'<@..;..>' if the functions specification starts with a '@' the functions are computed recursively along the columns. In this case the number after the 'x' is the relative column counted starting from the one considered at each step. .IP \&'{...}' a function in curly brackets can be use to select data: only rows that return a non\-negative value are retained .SH OPTIONS .TP \fB\-F\fR set the input fields separators (default ' \et') .TP \fB\-o\fR set the output format (default '%12.6e') .TP \fB\-e\fR set the output format for empty fields (default '%13s') .TP \fB\-s\fR set the output separation string (default ' ') .TP \fB\-t\fR define global transformations applied before each output (default '') .TP \fB\-v\fR verbose mode .SH EXAMPLES .TP gbget 'file(1:3)ld' select the first three columns in 'file', take the log and the difference of successive columns; .TP gbget 'file(2,\-10:\-1) select the last ten elements of the second' of 'file' and print their squares .TP gbget '[2]()' '[1]()' < ... select the second and first data block from the standard input. .TP gbget 'file(1:3)' select the first three columns in 'file' and in each row multiply the first two entries and. subtract the third. .TP gbget 'file()<@x1+x2>' print the sum of two subsequent columns .TP gbget 'file(1:3){x2\-2}' select the first three columns in 'file' for the rows whose second field is not lower then 2 .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/gbfun.c0000644000175000017500000003646713246754720011415 00000000000000/* gbfun (ver. 5.6) -- Apply functions to table of data Copyright (C) 2008-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "tools.h" #if defined HAVE_LIBGSL #include "matheval.h" #include "assert.h" #endif /* handy structure used in computation */ typedef struct function { void *f; size_t argnum; /* char *args[] = { "x" }; */ char **args; /* list of arguments names */ size_t *indeces; /* the index (shift) for each variable */ size_t *lags; /* the lag for each variable */ double *values; /* values used in computation */ size_t maxindex; /* the largest index */ size_t maxlag; /* the largest lag */ } Function; void data_transpose(double *** vals,size_t *rows,size_t *columns){ size_t i,j; /* allocate space */ double **newvals = (double **) my_alloc((*rows)*sizeof(double *)); for(i=0;i<*rows;i++){ newvals[i] = (double *) my_alloc((*columns)*sizeof(double)); } /* fill space */ for(i=0;i<*rows;i++) for(j=0;j<*columns;j++) newvals[i][j] = (*vals)[j][i]; /* deallocate old space */ if(*columns>0) for(i=0;i<*columns;i++) free((*vals)[i]); free(*vals); *vals = newvals; /* swap axes */ j=*columns; *columns=*rows; *rows=j; } int main(int argc,char* argv[]){ size_t rows=0,columns=0; double **data=NULL; char *splitstring = strdup(" \t"); Function *F=NULL; size_t Fnum=0; /* function spec */ size_t spec; /* OPTIONS */ int o_table=0; int o_transpose=0; int o_recursive=0; int o_recursive_printall=0; int o_verbose=0; int o_binary_in=0; double recursive_start=0; /* variables for reading command line options */ /* ------------------------------------------ */ int opt; /* ------------------------------------------ */ /* START COMMAND LINE PROCESSING */ while((opt=getopt_long(argc,argv,"htvr:R:F:o:s:b:T",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='h'){ /*print help*/ fprintf(stdout,"Compute specified functions on data read from standard input. The default\n"); fprintf(stdout,"is to perform the computation column-wise, on each row of data separately.\n"); fprintf(stdout,"Variable 'xi' stands for the i-th column while 'x0' stands for the row\n"); fprintf(stdout,"number, e.g. a function f(x1,x2) operates on the first and secod column.\n"); fprintf(stdout,"With the option -t the function is computed, in turn, on every column. In\n"); fprintf(stdout,"this case f(x1,x2) stands for a function of the column itself and of the \n"); fprintf(stdout,"following column (the index being a lead operator). In these cases 'x' is\n"); fprintf(stdout,"equivalent to 'x1'. With -r or -R the function is recursevely computed\n"); fprintf(stdout,"\"columwise\" on each row. In this case the variable 'x' identifies the\n"); fprintf(stdout,"result of the previous evaluation. A lag operator can be specified with the\n"); fprintf(stdout,"letter l, like in 'x1l2', which means the first column two steps before.\n"); fprintf(stdout,"More functions can be specified and will be considered in turn.\n"); fprintf(stdout,"\nUsage: %s [options] ...\n\n",argv[0]); fprintf(stdout,"Options:\n"); fprintf(stdout," -T compute the function row-wise, on each column separately.\n"); fprintf(stdout," -t compute on each column\n"); fprintf(stdout," -r set initial value and compute recursively\n"); fprintf(stdout," -R set initial value, compute recursively and print intermediary results\n"); fprintf(stdout," -v verbose mode\n"); fprintf(stdout," -F specify the input fields separators (default \" \\t\")\n"); fprintf(stdout," -o set the output format (default '%%12.6e') \n"); fprintf(stdout," -s set the output separation string (default ' ') \n"); fprintf(stdout," -h this help\n"); fprintf(stdout,"Examples:\n"); fprintf(stdout," gbfun 'x0+log(x2)' < file print the log of the second column of 'file'\n"); fprintf(stdout," adding the progressive number of the row \n"); fprintf(stdout," gbfun -T 'x0+log(x2)' < file print the log of the second row of 'file'\n"); fprintf(stdout," adding the progressive number of the column \n"); fprintf(stdout," gbfun -r 0 'x+sqrt(x1)' < file print the sum of the square root of the\n"); fprintf(stdout," elements of the first column of 'file'\n"); return(0); } else if(opt=='F'){ /*set the fields separator string*/ free(splitstring); splitstring = strdup(optarg); } else if(opt=='b'){ /*set binary input or output*/ switch(atoi(optarg)){ case 0 : break; case 1 : o_binary_in=1; break; case 2 : PRINTMATRIXBYCOLS=printmatrixbycols_bin; break; case 3 : o_binary_in=1; PRINTMATRIXBYCOLS=printmatrixbycols_bin; break; default: fprintf(stderr,"unclear binary specification %d, option ignored.\n",atoi(optarg)); break; } } else if(opt=='o'){ /*set the ouptustring */ FLOAT = strdup(optarg); } else if(opt=='s'){ /*set the separator*/ SEP = strdup(optarg); } else if(opt=='t'){ o_table=1; } else if(opt=='T'){ o_transpose=1; } else if(opt=='r'){ o_recursive=1; recursive_start=mystrtod(optarg); } else if(opt=='R'){ o_recursive_printall=1; recursive_start=mystrtod(optarg); } else if(opt=='v'){ o_verbose=1; } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); /* load data */ if(o_binary_in==1) loadtable_bin(&data,&rows,&columns,0); else{ loadtable(&data,&rows,&columns,0,splitstring); free(splitstring); } /* transpose if required */ if(o_transpose == 1) { data_transpose(&data,&rows,&columns); } /* parse specs for functions specification */ for(spec=(size_t) optind;spec< (size_t) argc;spec++){ char *piece=strdup (argv[spec]); char *stmp1=piece; char *stmp2; size_t j; while( (stmp2=strsep (&stmp1,",")) != NULL ){/*take a piece*/ char *stmp3 = strdup(stmp2); /* fprintf(stderr,"token:%s\n",stmp3); */ /* allocate new function */ Fnum++; F=(Function *) my_realloc((void *) F,Fnum*sizeof(Function)); /* generate the formal expression */ F[Fnum-1].f = evaluator_create (stmp3); assert(F[Fnum-1].f); free(stmp3); /* retrive list of argument */ { /* hack necessary due to libmatheval propotypes */ int argnum; evaluator_get_variables (F[Fnum-1].f, &(F[Fnum-1].args), &argnum); F[Fnum-1].argnum = (size_t) argnum; } /* compute list of indeces */ F[Fnum-1].indeces = (size_t *) my_alloc(F[Fnum-1].argnum*sizeof(size_t)); F[Fnum-1].lags = (size_t *) my_alloc(F[Fnum-1].argnum*sizeof(size_t)); F[Fnum-1].maxindex=0; F[Fnum-1].maxlag=0; for(j=0;j F[Fnum-1].maxindex) F[Fnum-1].maxindex = (F[Fnum-1].indeces)[j]; /* possibly update the value of the maximum lag */ if( (F[Fnum-1].lags)[j] > F[Fnum-1].maxlag) F[Fnum-1].maxlag = (F[Fnum-1].lags)[j]; /* check index */ if((F[Fnum-1].indeces)[j]>columns){ fprintf(stderr,"ERROR (%s): column %zd not present in data\n", GB_PROGNAME,(F[Fnum-1].indeces)[j]); exit(-1); } /* check lag */ if((F[Fnum-1].lags)[j]>rows){ fprintf(stderr,"ERROR (%s): lag %zd is longer then the data length\n", GB_PROGNAME,(F[Fnum-1].lags)[j]); exit(-1); } } /* allocate list of values */ F[Fnum-1].values = (double *) my_alloc(F[Fnum-1].argnum*sizeof(double)); } free(piece); } /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose==1){ /* check the builded functions */ size_t i,j; for(i=0;ifirstrow) firstrow=F[j].maxlag; /* compute the largest column shift */ for(j=0;jlargest) largest=F[j].maxindex; /* allocate output */ out = (double **) my_alloc((columns-largest+1)*Fnum*sizeof(double *)); for(i=0;i<(columns-largest+1)*Fnum;i++) out[i] = (double *) my_alloc((rows-firstrow)*sizeof(double)); /* compute output */ for(i=firstrow;i 0 ? data[c+F[j].indeces[h]-1][i-F[j].lags[h]] : i+1); out[c*Fnum+j][i-firstrow]=evaluator_evaluate (F[j].f,F[j].argnum,F[j].args,F[j].values); } /* print output */ if(o_transpose == 0) PRINTMATRIXBYCOLS(stdout,out,rows-firstrow,(columns-largest+1)*Fnum); else if (o_transpose == 1) PRINTMATRIXBYROWS(stdout,out,(columns-largest+1)*Fnum,rows-firstrow); for(i=0;i<(columns-largest+1)*Fnum;i++) free(out[i]); free(out); } else if(o_recursive_printall==1){/*recursive evaluation with intermediary results*/ size_t i,j,h,c; size_t firstrow=0; double **out; size_t cols,col; /* compute the first row to print */ for(j=0;jfirstrow) firstrow=F[j].maxlag; /* allocate output */ cols=0; for(j=0;jfirstrow) firstrow=F[j].maxlag; /* allocate output */ out = (double **) my_alloc(Fnum*sizeof(double *)); for(i=0;ifirstrow) firstrow=F[j].maxlag; /* allocate output */ out = (double **) my_alloc(Fnum*sizeof(double *)); for(i=0;i0 ? data[F[j].indeces[h]-1][i-F[j].lags[h]] : i+1); out[j][i-firstrow] = evaluator_evaluate (F[j].f,F[j].argnum,F[j].args,F[j].values); } /* print output */ if(o_transpose == 0) PRINTMATRIXBYCOLS(stdout,out,rows-firstrow,Fnum); else if (o_transpose == 1) PRINTMATRIXBYROWS(stdout,out,Fnum,rows-firstrow); for(i=0;i #include #include #include #endif int main(int argc,char* argv[]){ double *data=NULL; size_t size; char *splitstring = strdup(" \t"); /* OPTIONS */ int o_method=0; int o_kerneltype=0; int o_setbandwidth=0; int o_verbose=0; int o_window=0; double wmax,wmin; double ave,sdev,min,max; /* data statistics */ size_t M=64; /* number of points */ double scale=1; /* optional scaling of the smoothing parameter */ double h=1;/* the smoothing parameter */ double (*K) (double) = Kgauss_tilde; /* the kernel to use */ /* confidence interval */ int o_pconf = 0; double pconf,zconf,sconf; /* COMMAND LINE PROCESSING */ /* variables for reading command line options */ /* ------------------------------------------ */ int opt; /* ------------------------------------------ */ /* read the command line */ while((opt=getopt_long(argc,argv,"H:K:n:S:hvM:F:p:w:",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='S'){ /*set the scale parameter for smoothing*/ scale=atof(optarg); } else if(opt=='n'){ /*the number of bins*/ M=(int) atoi(optarg); } else if(opt=='w'){ /*set the support window */ char *stmp1=strdup (optarg); char *stmp2; char *stmp3=stmp1; stmp2=strsep (&stmp1,","); if(strlen(stmp2)>0) wmin=atof(stmp2); if(stmp1 != NULL && strlen(stmp1)>0) wmax=atof(stmp1); free(stmp3); if(wmax=1){ fprintf(stderr,"ERROR (%s): confidence interval %f out of boud\n", GB_PROGNAME,pconf); exit(1); } else zconf=gsl_cdf_ugaussian_Pinv(1-pconf/2); } else if(opt=='K'){ /*the Kernel to use*/ o_kerneltype = atoi(optarg); } else if(opt=='H'){ /*set the kernel bandwidth*/ o_setbandwidth=1; h = atof(optarg); } else if(opt=='M'){ /*set the method to use*/ o_method= atoi(optarg); } else if(opt=='v'){ /*increase verbosity*/ o_verbose=1; } else if(opt=='F'){ /*set the fields separator string*/ free(splitstring); splitstring = strdup(optarg); } else if(opt=='h'){ /*print short help*/ fprintf(stdout,"Compute the kernel density estimation on an equispaced grid. Data are read\n"); fprintf(stdout,"from standard input. The kernel bandwidth, if not provided with the option\n"); fprintf(stdout,"-H, is set automatically using simple heuristics. Normally the whole support\n"); fprintf(stdout,"is displayed. The option -w can be used to restrict the computation to specific\n"); fprintf(stdout,"range of values. The method used to compute the density is set by the option -M.\n"); fprintf(stdout,"The boundaries of the grid are slightly different in the different cases.\n\n"); fprintf(stdout,"Usage: %s [options] \n\n",argv[0]); fprintf(stdout,"Options:\n"); fprintf(stdout," -n number of equispaced points/bins where the density is computed (default 64)\n"); fprintf(stdout," -w set the grid boundaries with min,max (default whole support)\n"); fprintf(stdout," -H set the kernel bandwidth\n"); fprintf(stdout," -S scale the automatic kernel bandwidth\n"); fprintf(stdout," -K choose the kernel to use (default 0) \n"); fprintf(stdout," 0 Epanenchnikov\n"); fprintf(stdout," 1 Rectangular\n"); fprintf(stdout," 2 Gaussian\n"); fprintf(stdout," 3 Laplacian\n"); fprintf(stdout," -M choose the method for density computation (default 0)\n"); fprintf(stdout," 0 use FFT (# grid points rounded to nearest power of 2) \n"); fprintf(stdout," 1 use discrete convolution (compact kernels only; bins>2) \n"); fprintf(stdout," 2 explicit summation (boundaries excluded)\n"); fprintf(stdout," -F specify the input fields separators (default \" \\t\")\n"); fprintf(stdout,"Examples:\n"); fprintf(stdout," gbker -n 128 -K 2 < file use a Gaussian kernel to compute the density on 128\n"); fprintf(stdout," equispaced points with the FFT approach. All the data\n"); fprintf(stdout," in 'file' are used, multiple columns are pooled.\n"); fprintf(stdout," gbker -K 3 -M 2 < file use a Laplacian kernel to compute the density on 64 points.\n"); fprintf(stdout," The method used is the explicit summation.\n"); exit(0); } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); /* load the data */ load(&data,&size,0,splitstring); /* sort the data */ qsort(data,size,sizeof(double),sort_by_value); /* compute the statistics */ moment_short(data,size,&ave,&sdev,&min,&max); /* correct if windows provided */ if(o_window==1){ min=wmin; max=wmax; } /* the parameter h is set for a Gaussian kernel [Silverman p.48] */ /* if not provided on the command line */ if(o_setbandwidth == 0){ const double inter = fabs(data[3*size/4]-data[size/4])/1.34; const double A = (sdev>inter && inter>0 ? inter : sdev); h=scale*0.9*A/pow(size,.2); } /* nearest power of two if FFT */ if(o_method==0) M = (size_t) pow(2,nearbyint(log((double) M)/M_LN2)); /* ++++++++++++++++++++++++++++ */ if(o_verbose == 1){ /* bandwidth */ fprintf(stdout,"bandwidth %e ",h); if(o_setbandwidth == 0){ fprintf(stdout,"(automatic"); if(scale != 1 ) fprintf(stdout," scaled by %f",scale); fprintf(stdout,")"); } else{ fprintf(stdout,"(provided)"); } fprintf(stdout,"\n"); /* kernel type */ fprintf(stdout,"kernel "); switch(o_kerneltype){ case 0: fprintf(stdout,"Epanechnikov"); break; case 1: fprintf(stdout,"Rectangular"); break; case 2: fprintf(stdout,"Gaussian"); break; case 3: fprintf(stdout,"Laplacian"); break; } fprintf(stdout,"\n"); /* confidence interval */ if(o_pconf == 1){ fprintf(stdout,"confidence %g\n",pconf); } } /* ++++++++++++++++++++++++++++ */ /* set the confidence rescaling factor */ if(o_pconf==1) switch(o_kerneltype){ case 0: sconf = zconf*sqrt(Kepanechnikov_K2/(h*size)); break; case 1: sconf = zconf*sqrt(Krectangular_K2/(h*size)); break; case 2: sconf = zconf*sqrt(Kgauss_K2/(h*size)); break; case 3: sconf = zconf*sqrt(Klaplace_K2/(h*size)); break; default: fprintf(stderr,"ERROR (%s): unknown kernel; use option -h\n", GB_PROGNAME); exit(1); } if(o_method==0){/*=== FFT methods ===*/ size_t i; double *csi;/* the density */ /* the boundaries of the interval are set according... */ /* const double a = min-4*h; */ /* const double b = max+4*h; */ /* const double delta = (b-a)/(M-1); */ const double margin=.05; const double a = min - 4*h - (max-min+4*h)*margin; const double b = max + 4*h + (max-min+4*h)*margin; const double delta = (b-a)/(M-1); /* choose the kernel to use */ switch(o_kerneltype){ case 0: K=Kepanechnikov_tilde; break; case 1: K=Krectangular_tilde; break; case 2: K=Kgauss_tilde; break; case 3: K=Klaplace_tilde; break; default: fprintf(stderr,"ERROR (%s): unknown kernel; use option -h\n", GB_PROGNAME); exit(+1); } /* ++++++++++++++++++++++++++++ */ if(o_verbose == 1){ /* method */ fprintf(stdout,"method FFT\n"); /* binning */ fprintf(stdout,"# bins %zd\n",M); fprintf(stdout,"range [%.3e,%.3e]\n",a,b); } /* ++++++++++++++++++++++++++++ */ /* allocate the bins */ csi = (double *) my_alloc(M*sizeof(double)); /* prepare the binnings */ for(i=0;i= (int) M || index<0) continue; csi[index]+=1-epsilon; if(index+1 <(int) M) csi[index+1]+=epsilon; else csi[0]+=epsilon; } /* normalization */ for(i=0;i= M-1 ) fprintf(stderr,"ERROR (%s): problem in grid values; possible bug\n", GB_PROGNAME); csi[index]+=1-epsilon; csi[index+1]+=epsilon; } /* normalization */ for(i=0;i2*J?-J:J-i); const int jmax = (i2*J?-J:J-i); const int jmax = (i, 1996. # 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, 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, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try '$0 --help' for more information" exit 1 fi case $1 in --is-lightweight) # Used by our autoconf macros to check whether the available missing # script is modern enough. exit 0 ;; --run) # Back-compat with the calling convention used by older automake. shift ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due to PROGRAM being missing or too old. Options: -h, --help display this help and exit -v, --version output version information and exit Supported PROGRAM values: aclocal autoconf autoheader autom4te automake makeinfo bison yacc flex lex help2man Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and 'g' are ignored when checking the name. Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: unknown '$1' option" echo 1>&2 "Try '$0 --help' for more information" exit 1 ;; esac # Run the given program, remember its exit status. "$@"; st=$? # If it succeeded, we are done. test $st -eq 0 && exit 0 # Also exit now if we it failed (or wasn't found), and '--version' was # passed; such an option is passed most likely to detect whether the # program is present and works. case $2 in --version|--help) exit $st;; esac # Exit code 63 means version mismatch. This often happens when the user # tries to use an ancient version of a tool on a file that requires a # minimum version. if test $st -eq 63; then msg="probably too old" elif test $st -eq 127; then # Program was missing. msg="missing on your system" else # Program was found and executed, but failed. Give up. exit $st fi perl_URL=http://www.perl.org/ flex_URL=http://flex.sourceforge.net/ gnu_software_URL=http://www.gnu.org/software program_details () { case $1 in aclocal|automake) echo "The '$1' program is part of the GNU Automake package:" echo "<$gnu_software_URL/automake>" echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/autoconf>" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; autoconf|autom4te|autoheader) echo "The '$1' program is part of the GNU Autoconf package:" echo "<$gnu_software_URL/autoconf/>" echo "It also requires GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; esac } give_advice () { # Normalize program name to check for. normalized_program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` printf '%s\n' "'$1' is $msg." configure_deps="'configure.ac' or m4 files included by 'configure.ac'" case $normalized_program in autoconf*) echo "You should only need it if you modified 'configure.ac'," echo "or m4 files included by it." program_details 'autoconf' ;; autoheader*) echo "You should only need it if you modified 'acconfig.h' or" echo "$configure_deps." program_details 'autoheader' ;; automake*) echo "You should only need it if you modified 'Makefile.am' or" echo "$configure_deps." program_details 'automake' ;; aclocal*) echo "You should only need it if you modified 'acinclude.m4' or" echo "$configure_deps." program_details 'aclocal' ;; autom4te*) echo "You might have modified some maintainer files that require" echo "the 'autom4te' program to be rebuilt." program_details 'autom4te' ;; bison*|yacc*) echo "You should only need it if you modified a '.y' file." echo "You may want to install the GNU Bison package:" echo "<$gnu_software_URL/bison/>" ;; lex*|flex*) echo "You should only need it if you modified a '.l' file." echo "You may want to install the Fast Lexical Analyzer package:" echo "<$flex_URL>" ;; help2man*) echo "You should only need it if you modified a dependency" \ "of a man page." echo "You may want to install the GNU Help2man package:" echo "<$gnu_software_URL/help2man/>" ;; makeinfo*) echo "You should only need it if you modified a '.texi' file, or" echo "any other file indirectly affecting the aspect of the manual." echo "You might want to install the Texinfo package:" echo "<$gnu_software_URL/texinfo/>" echo "The spurious makeinfo call might also be the consequence of" echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might" echo "want to install GNU make:" echo "<$gnu_software_URL/make/>" ;; *) echo "You might have modified some files without having the proper" echo "tools for further handling them. Check the 'README' file, it" echo "often tells you about the needed prerequisites for installing" echo "this package. You may also peek at any GNU archive site, in" echo "case some other package contains this missing '$1' program." ;; esac } give_advice "$1" | sed -e '1s/^/WARNING: /' \ -e '2,$s/^/ /' >&2 # Propagate the correct exit status (expected to be 127 for a program # not found, 63 for a program that failed due to version mismatch). exit $st # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: gbutils-5.7.1/gbgrid.c0000644000175000017500000001162013246754720011532 00000000000000/* gbgrid (ver. 5.6) -- Produce grid of data Copyright (C) 2008-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "tools.h" #include "matheval.h" #include "assert.h" /* handy structure used in computation */ typedef struct function { void *f; int argnum; /* char *args[] = { "x" }; */ char **args; } Function; int main(int argc,char* argv[]){ int i,j,h; int columns=10; int rows=10; int o_verbose=0; char *names[]={"c","r"}; double values[2]={1.,1.}; Function *F=NULL; int Fnum=0; /* COMMAND LINE PROCESSING */ /* variables for reading command line options */ /* ------------------------------------------ */ int opt; /* ------------------------------------------ */ while((opt=getopt_long(argc,argv,"hvc:r:o:",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='h'){ /*print help*/ fprintf(stdout,"Generate a grid using function f(r,c) where r is the row index and c is\n"); fprintf(stdout,"the column index. Indeces start from 1. If more than one function are\n"); fprintf(stdout,"provided they are printed one after the other.\n"); fprintf(stdout,"\nUsage: %s [options] \n\n",argv[0]); fprintf(stdout,"Options:\n"); fprintf(stdout," -c specify number of rows (default 10)\n"); fprintf(stdout," -r specify number of columns (default 10)\n"); fprintf(stdout," -o set the output format (default '%%12.6e') \n"); fprintf(stdout," -v verbose mode\n"); fprintf(stdout," -h this help\n"); fprintf(stdout,"Examples:\n"); fprintf(stdout," gbgrid -c 1 -r 10 r+c generates a vector with elements equal to the\n"); fprintf(stdout," sum of the row and column indexes\n"); return(0); } else if(opt=='v'){ o_verbose=1; } else if(opt=='c'){ columns=atoi(optarg); } else if(opt=='r'){ rows=atoi(optarg); } else if(opt=='o'){ /*set the ouptustring */ FLOAT = strdup(optarg); } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); /* parse line for functions specification */ for(i=optind;i #include #include #include #include /* log-likelihood params */ struct loglike_params { size_t size; double *data; size_t used; size_t min; size_t max; int method; double d; }; /* Exponential distribution in exponential_gbhill.c */ void exponential_nll (const size_t, const double *,void *,double *); void exponential_dnll (const size_t, const double *,void *,double *); void exponential_nlldnll (const size_t, const double *,void *,double *,double *); double exponential_f (const double,const size_t, const double *); double exponential_F (const double,const size_t, const double *); gsl_matrix *exponential_varcovar(const int, double *, void *); /* Pareto Type I distribution in paretoI_gbhill.c */ void pareto1_nll (const size_t, const double *,void *,double *); void pareto1_dnll (const size_t, const double *,void *,double *); void pareto1_nlldnll (const size_t, const double *,void *,double *,double *); double pareto1_f (const double,const size_t, const double *); double pareto1_F (const double,const size_t, const double *); gsl_matrix *pareto1_varcovar(const int, double *, void *); /* Pareto Type III distribution in paretoIII_gbhill.c */ void pareto3_nll (const size_t, const double *,void *,double *); void pareto3_dnll (const size_t, const double *,void *,double *); void pareto3_nlldnll (const size_t, const double *,void *,double *,double *); double pareto3_f (const double,const size_t, const double *); double pareto3_F (const double,const size_t, const double *); gsl_matrix *pareto3_varcovar(const int, double *, void *); /* Gaussian distribution in gaussian_gbhill.c */ void gaussian_nll (const size_t, const double *,void *,double *); void gaussian_dnll (const size_t, const double *,void *,double *); void gaussian_nlldnll (const size_t, const double *,void *,double *,double *); double gaussian_f (const double,const size_t, const double *); double gaussian_F (const double,const size_t, const double *); gsl_matrix *gaussian_varcovar(const int, double *, void *); #endif gbutils-5.7.1/install-sh0000755000175000017500000003325611775245551012147 00000000000000#!/bin/sh # install - install a program, script, or datafile scriptversion=2011-01-19.21; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # `make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. nl=' ' IFS=" "" $nl" # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit=${DOITPROG-} if test -z "$doit"; then doit_exec=exec else doit_exec=$doit fi # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_glob='?' initialize_posix_glob=' test "$posix_glob" != "?" || { if (set -f) 2>/dev/null; then posix_glob= else posix_glob=: fi } ' posix_mkdir= # Desired mode of installed file. mode=0755 chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false no_target_directory= usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve the last data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *' '* | *' '* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) dst_arg=$2 # Protect names problematic for `test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac shift;; -T) no_target_directory=true;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg # Protect names problematic for `test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call `install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names problematic for `test' and other utilities. case $src in -* | [=\(\)!]) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else # Prefer dirname, but fall back on a substitute if dirname fails. dstdir=` (dirname "$dst") 2>/dev/null || expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$dst" : 'X\(//\)[^/]' \| \ X"$dst" : 'X\(//\)$' \| \ X"$dst" : 'X\(/\)' \| . 2>/dev/null || echo X"$dst" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q' ` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writeable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/d" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; [-=\(\)!]*) prefix='./';; *) prefix='';; esac eval "$initialize_posix_glob" oIFS=$IFS IFS=/ $posix_glob set -f set fnord $dstdir shift $posix_glob set +f IFS=$oIFS prefixes= for d do test X"$d" = X && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && eval "$initialize_posix_glob" && $posix_glob set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && $posix_glob set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: gbutils-5.7.1/gbenv.c0000644000175000017500000001461613246754720011405 00000000000000/* gbenv (ver. 5.6) -- Floating point locale, and gbutils settings Copyright (C) 2006-2015 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "tools.h" #ifdef linux #include #include #endif #include #include int main(int argc,char* argv[]){ /* variables for reading command line options */ /* ------------------------------------------ */ int opt; /* ------------------------------------------ */ /* COMMAND LINE PROCESSING */ while((opt=getopt_long(argc,argv,"h",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='h'){ /*print help*/ fprintf(stdout,"Show floating point environment (for x86 family processors), locale and\n"); fprintf(stdout,"gbutils settings.\n"); fprintf(stdout," \n"); fprintf(stdout,"Information about the floating point environment includes:\n"); fprintf(stdout," if the environment is the default environment of the machine;\n"); fprintf(stdout," if the precision is single, double or extended;\n"); fprintf(stdout," if the rounding is nearest, upward, downward or toward zero;\n"); fprintf(stdout," the list of exceptions whose interrupts are ignored (masked).\n"); fprintf(stdout,"Information about the locale includes: \n"); fprintf(stdout," decimal point;\n"); fprintf(stdout," thousand separator;\n"); fprintf(stdout," the relative position of the thousand separator (grouping).\n"); fprintf(stdout,"Information about gbutils environment include:\n"); fprintf(stdout," if the error handler is activated;\n"); fprintf(stdout," the value of the environment variables dictating the output format;\n"); fprintf(stdout," the output format of integers and floating point numbers.\n"); fprintf(stdout,"Options: \n"); fprintf(stdout," -h print this help message \n"); return(0); } } /* END OF COMMAND LINE PROCESSING */ /* ---- linux implementation and x86 processor ---- */ #if defined(linux) && ( defined(__x86_64__) || defined(__i386) ) unsigned short mode = 0 ; int rounding = fegetround (); printf(" floating point environment ------------------------\n"); #ifdef _FPU_GETCW _FPU_GETCW(mode); #define PREC_MASK _FPU_EXTENDED printf(" The environment is "); if( mode==_FPU_DEFAULT ) printf("the default\n"); else printf("not the default\n"); /* precision */ printf(" Precision is "); if ( (mode & PREC_MASK) == _FPU_EXTENDED) printf("extended"); else if ( (mode & PREC_MASK) == _FPU_DOUBLE) printf("double"); else if ( (mode & PREC_MASK) == _FPU_SINGLE) printf("single"); printf("\n"); #endif /* rounding */ printf(" Rounding is "); switch(rounding) { case FE_TONEAREST : printf("nearest\n"); break; case FE_UPWARD : printf("upward\n"); break; case FE_DOWNWARD : printf("downward\n"); break; case FE_TOWARDZERO : printf("toward zero\n"); break; } /* exception */ printf(" Masked exceptions (no interrupt):\n"); #ifdef FE_INVALID if(!fetestexcept(FE_INVALID)) printf(" Invalid operation\n"); #endif #ifdef FE_DIVBYZERO if(!fetestexcept(FE_DIVBYZERO)) printf(" Division by zero\n"); #endif #ifdef FE_UNDERFLOW if(!fetestexcept(FE_UNDERFLOW)) printf(" Underflow\n"); #endif #ifdef FE_OVERFLOW if(!fetestexcept(FE_OVERFLOW)) printf(" Overflow\n"); #endif #ifdef FE_INEXACT if(!fetestexcept(FE_INEXACT)) printf(" Precision\n"); #endif printf("\n"); #endif /* ------------------------------ */ printf(" locale definitions --------------------------------\n"); { if (setlocale(LC_NUMERIC,"") == NULL) fprintf(stderr,"WARNING:Cannot set LC_NUMERIC to default locale\n"); printf(" decimal point \"%s\"\n",nl_langinfo(RADIXCHAR)); printf(" thousands separator \"%s\"\n",nl_langinfo(THOUSEP)); printf(" grouping "); {/* code snippet stolen from locale.c in glibc */ struct lconv *locale = localeconv(); const char *val = locale->grouping; int cnt = val ? strlen (val) : 0; while (cnt > 1){ printf ("%d;", *val == '\177' ? -1 : *val); --cnt; ++val; } printf ("%d\n", cnt == 0 || *val == '\177' ? -1 : *val); } } printf("\n"); #if defined HAVE_LIBGSL printf(" gsl environment -----------------------------------\n"); printf(" GSL error handler is "); if(getenv("GB_ERROR_HANDLER_OFF")) printf(" off\n"); else printf(" on\n"); printf("\n"); #endif printf(" gbutils environment -------------------------------\n"); printf(" GB_OUT_FLOAT_FORMAT is "); if(FLOAT==NULL && getenv("GB_OUT_FLOAT_FORMAT")) printf("%s\n",getenv("GB_OUT_FLOAT_FORMAT")); else printf("not set\n"); printf(" GB_OUT_EMPTY_FORMAT is "); if(FLOAT==NULL && getenv("GB_OUT_EMPTY_FORMAT")) printf("%s\n",getenv("GB_OUT_EMPTY_FORMAT")); else printf("not set\n"); printf(" GB_OUT_SEP is "); if(FLOAT==NULL && getenv("GB_OUT_SEP")) printf("%s\n",getenv("GB_OUT_SEP")); else printf("not set\n"); printf(" GB_OUT_NL is "); if(FLOAT==NULL && getenv("GB_OUT_NL")) printf("%s\n",getenv("GB_OUT_NL")); else printf("not set\n"); printf("\n"); printf(" gbutils settings ----------------------------------\n"); initialize_program(argv[0]); printf(" floating point output \"%s\"\n",FLOAT); printf(" integer output \"%s\"\n",INT); printf(" empty field \"%s\"\n",EMPTY); printf(" separation string \"%s\"\n",SEP); return 0; } gbutils-5.7.1/gbbin.c0000644000175000017500000003143713246754720011365 00000000000000/* gbbin (ver. 5.6) -- A program to bin data Copyright (C) 1998-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "tools.h" int main(int argc,char* argv[]){ double **data=NULL; /* array of values */ size_t rows=0,columns=0; size_t steps=10; size_t binum; int numpres; char *splitstring = strdup(" \t"); double wmin,wmax; /* otpions */ char * const output_opts[] = {"xmean","xstd","xmin","xmax","xmedian","ymean","yadev","ystd","yvar","yskew","ykurt","ymin","ymax","ymedian","num",NULL}; size_t outnum; size_t *outtype; int o_verbose=0; int o_printbinned = 0; int o_window=0; /* if the windows to bin is provided */ /* variable to handle data splitting */ size_t printnum = 0; size_t *printcolumn=NULL; /* variables for reading command line options */ int opt; /* set default output */ outnum=2; outtype = (size_t *) my_alloc(2*sizeof(size_t)); outtype[0]=0; outtype[1]=5; /* COMMAND LINE PROCESSING */ /* read the command line */ while((opt=getopt_long(argc,argv,"vn:hF:O:xyc:w:",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='F'){ /*set the fields separator string*/ free(splitstring); splitstring = strdup(optarg); } else if(opt=='n'){ /*set the number of steps*/ steps = (size_t) atoi(optarg); } else if(opt=='v'){ /*increase verbosity*/ o_verbose = 1; } else if(opt=='c'){ /* set the columns whose elements are required */ char *stmp1=strdup (optarg); char *stmp2; char *stmp3=stmp1; o_printbinned = 1; while( (stmp2=strsep (&stmp1,",")) != NULL && strlen(stmp2)>0 ){ printnum++; printcolumn = (size_t *) my_realloc((void *) printcolumn,printnum*sizeof(size_t)); printcolumn[printnum-1]= (size_t) atoi(stmp2); } free(stmp3); } else if(opt=='x'){ /* print binned x values */ o_printbinned = 1; printnum++; printcolumn = (size_t *) my_realloc((void *) printcolumn,printnum*sizeof(size_t)); printcolumn[printnum-1]=1; } else if(opt=='y'){ /* print binned y values */ o_printbinned = 1; printnum++; printcolumn = (size_t *) my_realloc((void *) printcolumn,printnum*sizeof(size_t)); printcolumn[printnum-1]=2; } else if(opt=='O'){ /* set the output type */ char *subopts,*subvalue=NULL; /* clear default settings */ outnum=0; free(outtype); outtype=NULL; /* define new output */ subopts = optarg; while (*subopts != '\0'){ int itmp1 = getsubopt(&subopts, output_opts, &subvalue); outnum++; outtype = (size_t *) my_realloc((void *)outtype,outnum*sizeof(size_t)); if(itmp1 == -1){/* Unknown suboption. */ fprintf (stderr,"ERROR (%s): Unknown output type `%s'\n", GB_PROGNAME,subvalue); exit(1); } else outtype[outnum-1]=(size_t) itmp1; } } else if(opt=='w'){ /*set the binning window */ char *stmp1=strdup (optarg); char *stmp2; char *stmp3=stmp1; stmp2=strsep (&stmp1,","); if(strlen(stmp2)>0 && stmp1 != NULL && strlen(stmp1)>0){ wmin=atof(stmp2); wmax=atof(stmp1); } else fprintf(stderr,"ERROR (%s): provide comma separated min and max. Try option -h.\n",GB_PROGNAME); free(stmp3); o_window=1; } else if(opt=='h'){ /*print short help*/ fprintf(stdout,"Compute binned statistics. Data are read from standard input as records \n"); fprintf(stdout,"(X,Y1,Y2,...). Equipopulated bins are built with respect to the first field\n"); fprintf(stdout,"X. Option -O decide which statistics are printed for each bin. With options\n"); fprintf(stdout,"-x, -y or -c elements in different bins are split in different columns. \n"); fprintf(stdout,"\nUsage: %s [options]\n\n",argv[0]); fprintf(stdout,"Options:\n"); fprintf(stdout," -n set the number of equipopulated bins (default 10) \n"); fprintf(stdout," -w min,max set manually the binning window. Ignored with -x,-y and -c \n"); fprintf(stdout," -O set the output with a comma separated list of variables: xmean, xmin, \n"); fprintf(stdout," xmax, xstd, xmedian, ymean, yadev, ystd, yvar, yskew, ykurt, ymin, \n"); fprintf(stdout," ymax, ymedian, num (default xmean, ymean) \n"); fprintf(stdout," -c# the values in column # are split in different columns; # can be a comma\n"); fprintf(stdout," separated list of columns \n"); fprintf(stdout," -x equivalent to -c 1 \n"); fprintf(stdout," -y equivalent to -c 2 \n"); fprintf(stdout," -F specify the input fields separators (default \" \\t\") \n"); fprintf(stdout," -v verbose mode\n"); fprintf(stdout,"Examples:\n"); fprintf(stdout," gbbin -n 20 < file split the records (line) in 20 bins according to first \n"); fprintf(stdout," field. Print the average value of the bin entries for \n"); fprintf(stdout," each column. If 'file' has 3 columns, the output has \n"); fprintf(stdout," twenty rows and three columns.\n"); fprintf(stdout," gbbin -O ymedian < file bin the records with respect to the first value and\n"); fprintf(stdout," print the median value of the other columns in each bin\n"); fprintf(stdout," gbbin -c 3 < file the binned values of the third columns are printed on \n"); fprintf(stdout," separate columns. The output has ten columns.\n"); exit(0); } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); /* load data: data[column][row] */ loadtable(&data,&rows,&columns,0,splitstring); if(columns==2) sort2(data[0],data[1],rows,2); else if(columns>2) sortn(data,columns,rows,0,2); else{ fprintf(stdout, "ERROR (%s): Provide at least two columns of input\n",GB_PROGNAME); exit(1); } /* compute the size of the bins */ binum=rows/steps; /* number of points per bin */ numpres=rows%steps; /* number of residual points */ /* ++++++++++++++++++++++++++++ */ if(o_verbose == 1){ size_t i; fprintf(stdout,"#read rows %zd\n",rows); fprintf(stdout,"#read columns %zd\n",columns); fprintf(stdout,"#number of bins %zd\n",steps); fprintf(stdout,"#x support [%f,%f]\n",data[0][0],data[0][rows-1]); fprintf(stdout,"#Output: "); if(outnum==0){ fprintf(stdout,"%s %s\n",output_opts[0],output_opts[4]); } else{ for(i=0;i= wmin) break; } if(j>startindex) startindex=j; } /* chose the limit index of the observations in the windows */ actualbinum=0; for(j=startindex;jcolumns){ fprintf(stdout, "ERROR (%s): Col spec %zd larger than number of col\n", GB_PROGNAME,printcolumn[h]); exit(1); } for(j=0;j1) for(h=0;h .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/gbkreg2d.10000644000175000017500000000407713246755335011714 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBKREG2D "1" "March 2018" "gbkreg2d 5.7.1" "User Commands" .SH NAME gbkreg2d \- Kernel non linear regression for bivariate data .SH SYNOPSIS .B gbkreg2d [\fI\,options\/\fR] .SH DESCRIPTION 2D kernel estimation of conditional moments. Data are read from standard input as triplet (x,y,z). The moments of z are computed on a regular grid in x and y The kernel bandwidth if not provided with the option \fB\-H\fR is set automatically. Different bandwidths can be specified for x and y. Different moments are given in different data block. Options \fB\-n\fR, \fB\-f\fR, \fB\-H\fR and \fB\-S\fR accept comma separated values to specify different values for x and y components .SH OPTIONS .TP \fB\-n\fR number of points where the estimation is computed (default 10) .TP \fB\-f\fR fraction of the support for which to print the result (default .9) .TP \fB\-H\fR set the kernel bandwidth explicitly .TP \fB\-S\fR scale the kernel bandwidth with respect to heuristic 'optimal' .TP \fB\-K\fR choose the kernel: 0 Epanenchnikov, 1 Rectangular, 2 Silverman type I 3 Silverman type II (default 0) .TP \fB\-O\fR set the output, comma separated list of m mean, v standard deviation, s skewness and k kurtosis (default m) .TP \fB\-D\fR switch off data de\-variation procedure .TP \fB\-v\fR verbose mode .TP \fB\-F\fR specify the input fields separators (default " \et") .TP \fB\-h\fR this help .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/gbconvtable.10000644000175000017500000000366613147510354012504 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBCONVTABLE "1" "August 2017" "gbconvtable ver. 5.6" "User Commands" .SH NAME gbconvtable \- Replace keys with values .SH SYNOPSIS .B gbconvtable [\fI\,options\/\fR] .SH DESCRIPTION Replace keys with values at a given position of the input file. The name of the dictionary file is provided on the command line with the option 'dictfile'. It is a simple text file organized in two columns. The first column contains the keys and the second column the respective values. Obviously the values can be equal, but the keys should be all different. Data are read from standard input and all fields at position 'pos' are considered keys of the provided dictionary and replaced with the associated keys. If 'pos' is not specified it is assumed equal to 1. If 'pos' is larger than the number of fields, no replacement takes place. If the option 'force' is not set, only those fields which appears as keys in the dictionary file are replaced. .SH OPTIONS .HP \fB\-d\fR name of the dictionary file .HP \fB\-c\fR position of the column of keys to be replaced .HP \fB\-f\fR forced look\-up: substitute provided string for non defined keys .SH EXAMPLES .IP gbconvtable \-d dict_file \-c 3 \-f 'none' < input_file .PP This program requires awk or gawk. .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2010\-2015 Giulio Bottazzi .PP This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation. .PP 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. gbutils-5.7.1/gbnlqreg.10000644000175000017500000000401613246755335012017 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBNLQREG "1" "March 2018" "gbnlqreg 5.7.1" "User Commands" .SH NAME gbnlqreg \- Non linear quantile regression .SH SYNOPSIS .B gbnlqreg [\fI\,options\/\fR] \fI\,\/\fR .SH DESCRIPTION Non linear quantile regression. Read data in columns (X_1 .. X_N). The model is specified by a function f(x1,x2...) using variables names x1,x2,..,xN for the first, second .. N\-th column of data. f(x1,x2,...) are assumed i.i.d. .SH OPTIONS .TP \fB\-O\fR type of output (default 0) .TP 0 parameters .TP 1 parameters and errors .TP 2 and residuals .TP 3 parameters and variance matrix .TP \fB\-V\fR variance matrix estimation (default 0) .IP 0 1 < J^{\-1} > 2 < H^{\-1} > 3 < H^{\-1} J H^{\-1} > .TP \fB\-q\fR set the quantile (default .5) .TP \fB\-M\fR choose optimization method (default 0) .TP 0 Nelder\-Mead Simplex o(N) .TP 1 Nelder\-Mead Simplex o(N^2) .TP \fB\-s\fR initial simplex scaling (default 1) .TP \fB\-e\fR minimization tolerance (default 1e\-5) .TP \fB\-F\fR input fields separators (default " \et") .TP \fB\-h\fR this help .TP \fB\-v\fR verbosity level (default 0) .TP 0 just results .TP 1 comment headers .TP 2 summary statistics .TP 2 summary statistics .TP 3 covariance matrix .TP 4 minimization steps .TP 5 model definition .TP \fB\-N\fR max minimization steps (default 500) .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/gbinterp.c0000644000175000017500000002105213246754720012106 00000000000000/* gbinterp (ver. 5.6) -- Compute equispaced curve from interpolated data or interpolated values from equispaced data Copyright (C) 2007-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "tools.h" #include #include int main(int argc,char* argv[]){ double **data=NULL; /* array of values */ size_t size=0; /* length of array vals */ char *splitstring = strdup(" \t"); gsl_interp_accel *accelerator; gsl_interp * interpolator; size_t n=10; /* number of points */ double rmin=0,rmax=0; /* boundaries of the range */ double step; /* distance between the evaluations*/ double *x,*y; /* array of original x and y vals*/ double *z=NULL; /* list of point bwhere the interpolation is printed */ size_t i; int o_verbose=0; int o_method=0; int o_setrange=0; int o_setnum=0; int o_output=0; int o_outrange=0; int o_fromfile=0; char *infilename = strdup(""); int infile; /* COMMAND LINE PROCESSING */ /* variables for reading command line options */ /* ------------------------------------------ */ int opt; /* ------------------------------------------ */ /* read the command line */ while((opt=getopt_long(argc,argv,"vn:hr:M:O:F:I:",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='F'){ /*set the fields separator string*/ free(splitstring); splitstring = strdup(optarg); } else if(opt=='I'){ /*set the filename from which x-values are red*/ o_fromfile=1; free(infilename); infilename = strdup(optarg); } else if(opt=='n'){ /*set the number of points*/ n = atoi(optarg); o_setnum=1; } else if(opt=='M'){ /*set the method to use*/ o_method = atoi(optarg); } else if(opt=='O'){ /*set the type of output */ o_output = atoi(optarg); } else if(opt=='r'){ /*set the range */ if(!strchr (optarg,',')){ rmin=rmax=atof(optarg); } else{ char *stmp1=strdup (optarg); rmin = atof(strtok (stmp1,",")); rmax = atof(strtok (NULL,",")); free(stmp1); } o_setrange=1; } else if(opt=='v'){ /*increase verbosity*/ o_verbose = 1; } else if(opt=='h'){ /*print short help*/ fprintf(stdout,"Compute the interpolating function of user provided data on a regular mesh.\n"); fprintf(stdout,"Data are read from standard input as couples (X,Y). The interpolation (x,\n"); fprintf(stdout,"f(x)) is printed for x in [rmin,rmax]. When rmin=rmax print a single value.\n"); fprintf(stdout,"With option -I the points where the interpolation is computed are read from\n"); fprintf(stdout,"a file.\n"); fprintf(stdout,"\nUsage: %s [options]\n\n",argv[0]); fprintf(stdout,"Options:\n"); fprintf(stdout," -n number of equispaced points (default 10)\n"); fprintf(stdout," -r set the range 'rmin,rmax' (default full x range)\n"); fprintf(stdout," -I read interpolation points from a file \n"); fprintf(stdout," -M the interpolation method: (default 0)\n"); fprintf(stdout," 0 linear (requires at least 2 points)\n"); fprintf(stdout," 1 cspline (requires at least 3 points)\n"); fprintf(stdout," 2 Akima spline (requires at least 5 points)\n"); fprintf(stdout," -O the type of output: (default 0)\n"); fprintf(stdout," 0 interpolation \n"); fprintf(stdout," 1 first derivative \n"); fprintf(stdout," 2 second derivative \n"); fprintf(stdout," -F specify the input fields separators (default \" \\t\") \n"); fprintf(stdout," -h print this help\n"); fprintf(stdout," -v verbose mode\n"); exit(0); } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); /* load data */ load2(&data,&size,0,splitstring); /* sort with respect to first values */ sort2(data[0],data[1],size,2); /* set handy pointers */ x=data[0]; y=data[1]; /* set the grid where the function is computed */ if(o_fromfile == 0){ if(o_setrange){ if(rminx[size-1]) rmax=x[size-1]; } else{ rmin=x[0]; rmax=x[size-1]; } if(!o_setnum && rmin==rmax) n=1; if(n>1){ step=(rmax-rmin)/(n-1.); } else{ step=0; rmax=rmin = (rmax+rmin)/2; } /* define the list of output points */ z= (double *) my_alloc(sizeof(double)*n); for(i=0;i 0){ fprintf(stdout,"#read couples %zd\n",size); fprintf(stdout,"#x support [%f,%f]\n",x[0],x[size-1]); fprintf(stdout,"#grid size %zd\n",n); fprintf(stdout,"#grid range [%f,%f]\n",rmin,rmax); fprintf(stdout,"#interpolation type %s\n",gsl_interp_name (interpolator)); fprintf(stdout,"#interpolation output "); switch(o_output){ case 0: fprintf(stdout,"value\n"); break; case 1: fprintf(stdout,"1st derivative\n"); break; case 2: fprintf(stdout,"2nd derivative\n"); break; } } /* ++++++++++++++++++++++++++++ */ /* initialize the interpolator */ gsl_interp_init(interpolator,x,y,size); /* allocate the lookup accelerator */ accelerator=gsl_interp_accel_alloc(); /* perform evaluation */ switch(o_output){ case 0: for(i=0;i x[size-1]) { o_outrange=1; fprintf(stdout,FLOAT_SEP,z[i]); fprintf(stdout,FLOAT_NL,y[size-1]); } else { fprintf(stdout,FLOAT_SEP,z[i]); fprintf(stdout,FLOAT_NL,gsl_interp_eval (interpolator,x,y,z[i],accelerator)); } break; case 1: for(i=0;i x[size-1]) { o_outrange=1; fprintf(stdout,FLOAT_SEP,z[i]); fprintf(stdout,FLOAT_NL,0); } else { fprintf(stdout,FLOAT_SEP,z[i]); fprintf(stdout,FLOAT_NL,gsl_interp_eval_deriv (interpolator,x,y,z[i],accelerator)); } break; case 2: for(i=0;i x[size-1]) { o_outrange=1; fprintf(stdout,FLOAT_SEP,z[i]); fprintf(stdout,FLOAT_NL,0); } else { fprintf(stdout,FLOAT_SEP,z[i]); fprintf(stdout,FLOAT_NL,gsl_interp_eval_deriv2 (interpolator,x,y,z[i],accelerator)); } break; default: fprintf(stderr,"ERROR (%s): unknown output type: %d; use %s -h\n", GB_PROGNAME,o_output,argv[0]); exit(-1); } if(o_outrange==1) fprintf(stderr,"WARNING (%s): some points are outside the input range\n", GB_PROGNAME); gsl_interp_accel_free (accelerator); gsl_interp_free (interpolator); free(x); free(y); free(z); return(0); } gbutils-5.7.1/gbfilternear.c0000644000175000017500000001016013246754720012736 00000000000000/* gbfilternear (ver. 5.6) -- Filter too near data point in Euclidean metric Copyright (C) 2008-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "tools.h" int main(int argc,char* argv[]){ /* data storage variables */ size_t rows=0,columns=0; double **vals=NULL; /* minimum distance */ double mindist = 1; char *deleted; /* options */ int o_verbose=0; char *splitstring = strdup(" \t"); /* variables for reading command line options */ /* ------------------------------------------ */ int opt; /* ------------------------------------------ */ /* COMMAND LINE PROCESSING */ while((opt=getopt_long(argc,argv,"vhF:d:",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='h'){ /*print help*/ fprintf(stdout,"Filter out too near points. Each row represents Cartesian coordinates\n"); fprintf(stdout,"of a point in an Euclidean space, whose dimension is set by the number\n"); fprintf(stdout,"of columns. Rows are removed which are nearer than a minimal distance\n"); fprintf(stdout,"set with the option '-d'. The order is relevant as first entries are\n"); fprintf(stdout,"the last to be removed.\n"); fprintf(stdout,"\nUsage: %s [options]\n\n",argv[0]); fprintf(stdout,"Options:\n"); fprintf(stdout," -d minimal allowed distance (default 1)\n"); fprintf(stdout," -F specify the input fields separators (default \" \\t\")\n"); fprintf(stdout," -h this help\n"); fprintf(stdout," -v verbose mode\n"); return(0); } else if(opt=='F'){ /*set the fields separator string*/ free(splitstring); splitstring = strdup(optarg); } else if(opt=='d'){ /*set the number of quantiles*/ mindist=atof(optarg); } else if(opt=='v'){ /*set the verbose mode*/ o_verbose=1; } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); /* read data vals[col][row] */ loadtable(&vals,&rows,&columns,0,splitstring); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose){ fprintf(stderr,"loaded points: %zd\n",rows); fprintf(stderr,"dimension of space: %zd\n",columns); } /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ /* allocate space for array of deleted entries */ deleted = (char *) my_calloc(rows,sizeof(char)); /* compute deleted entries */ { size_t i,j,h; double distance; for(i=0;i. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that # program. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # Please send patches to . # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS $0 [OPTION] ALIAS Canonicalize a configuration name. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright 1992-2015 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" exit 1 ;; *local*) # First pass through any local machine types. echo $1 exit ;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ knetbsd*-gnu* | netbsd*-gnu* | netbsd*-eabi* | \ kopensolaris*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; android-linux) os=-linux-android basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] then os=`echo $1 | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -apple | -axis | -knuth | -cray | -microblaze*) os= basic_machine=$1 ;; -bluegene*) os=-cnk ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 ;; -scout) ;; -wrs) os=-vxworks basic_machine=$1 ;; -chorusos*) os=-chorusos basic_machine=$1 ;; -chorusrdb) os=-chorusrdb basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco6) os=-sco5v6 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5v6*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -udk*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -lynx*178) os=-lynxos178 ;; -lynx*5) os=-lynxos5 ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -psos*) os=-psos ;; -mint | -mint[0-9]*) basic_machine=m68k-atari os=-mint ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ | aarch64 | aarch64_be \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arceb \ | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ | avr | avr32 \ | ba \ | be32 | be64 \ | bfin \ | c4x | c8051 | clipper \ | d10v | d30v | dlx | dsp16xx \ | e2k | epiphany \ | fido | fr30 | frv | ft32 \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | hexagon \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | k1om \ | le32 | le64 \ | lm32 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ | maxq | mb | microblaze | microblazeel | mcore | mep | metag \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64octeon | mips64octeonel \ | mips64orion | mips64orionel \ | mips64r5900 | mips64r5900el \ | mips64vr | mips64vrel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa32r6 | mipsisa32r6el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64r6 | mipsisa64r6el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipsr5900 | mipsr5900el \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | moxie \ | mt \ | msp430 \ | nds32 | nds32le | nds32be \ | nios | nios2 | nios2eb | nios2el \ | ns16k | ns32k \ | open8 | or1k | or1knd | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle \ | pyramid \ | riscv32 | riscv64 \ | rl78 | rx \ | score \ | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[234]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ | spu \ | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ | ubicom32 \ | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ | visium \ | we32k \ | x86 | xc16x | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown ;; c54x) basic_machine=tic54x-unknown ;; c55x) basic_machine=tic55x-unknown ;; c6x) basic_machine=tic6x-unknown ;; leon|leon[3-9]) basic_machine=sparc-$basic_machine ;; m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip) basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; ms1) basic_machine=mt-unknown ;; strongarm | thumb | xscale) basic_machine=arm-unknown ;; xgate) basic_machine=$basic_machine-unknown os=-none ;; xscaleeb) basic_machine=armeb-unknown ;; xscaleel) basic_machine=armel-unknown ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. i*86 | x86_64) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. *-*-*) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. 580-* \ | a29k-* \ | aarch64-* | aarch64_be-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | ba-* \ | be32-* | be64-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* \ | c8051-* | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | e2k-* | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | hexagon-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | k1om-* \ | le32-* | le64-* \ | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ | microblaze-* | microblazeel-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64octeon-* | mips64octeonel-* \ | mips64orion-* | mips64orionel-* \ | mips64r5900-* | mips64r5900el-* \ | mips64vr-* | mips64vrel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa32r6-* | mipsisa32r6el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64r6-* | mipsisa64r6el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipsr5900-* | mipsr5900el-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nds32-* | nds32le-* | nds32be-* \ | nios-* | nios2-* | nios2eb-* | nios2el-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | open8-* \ | or1k*-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ | pyramid-* \ | riscv32-* | riscv64-* \ | rl78-* | romp-* | rs6000-* | rx-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx*-* \ | tahoe-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tile*-* \ | tron-* \ | ubicom32-* \ | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ | vax-* \ | visium-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* \ | xstormy16-* | xtensa*-* \ | ymp-* \ | z8k-* | z80-*) ;; # Recognize the basic CPU types without company name, with glob match. xtensa*) basic_machine=$basic_machine-unknown ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) basic_machine=i386-unknown os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) basic_machine=m68000-att ;; 3b*) basic_machine=we32k-att ;; a29khif) basic_machine=a29k-amd os=-udi ;; abacus) basic_machine=abacus-unknown ;; adobe68k) basic_machine=m68010-adobe os=-scout ;; alliant | fx80) basic_machine=fx80-alliant ;; altos | altos3068) basic_machine=m68k-altos ;; am29k) basic_machine=a29k-none os=-bsd ;; amd64) basic_machine=x86_64-pc ;; amd64-*) basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; amdahl) basic_machine=580-amdahl os=-sysv ;; amiga | amiga-*) basic_machine=m68k-unknown ;; amigaos | amigados) basic_machine=m68k-unknown os=-amigaos ;; amigaunix | amix) basic_machine=m68k-unknown os=-sysv4 ;; apollo68) basic_machine=m68k-apollo os=-sysv ;; apollo68bsd) basic_machine=m68k-apollo os=-bsd ;; aros) basic_machine=i386-pc os=-aros ;; asmjs) basic_machine=asmjs-unknown ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; blackfin) basic_machine=bfin-unknown os=-linux ;; blackfin-*) basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; bluegene*) basic_machine=powerpc-ibm os=-cnk ;; c54x-*) basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c55x-*) basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c6x-*) basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c90) basic_machine=c90-cray os=-unicos ;; cegcc) basic_machine=arm-unknown os=-cegcc ;; convex-c1) basic_machine=c1-convex os=-bsd ;; convex-c2) basic_machine=c2-convex os=-bsd ;; convex-c32) basic_machine=c32-convex os=-bsd ;; convex-c34) basic_machine=c34-convex os=-bsd ;; convex-c38) basic_machine=c38-convex os=-bsd ;; cray | j90) basic_machine=j90-cray os=-unicos ;; craynv) basic_machine=craynv-cray os=-unicosmp ;; cr16 | cr16-*) basic_machine=cr16-unknown os=-elf ;; crds | unos) basic_machine=m68k-crds ;; crisv32 | crisv32-* | etraxfs*) basic_machine=crisv32-axis ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; crx) basic_machine=crx-unknown os=-elf ;; da30 | da30-*) basic_machine=m68k-da30 ;; decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) basic_machine=mips-dec ;; decsystem10* | dec10*) basic_machine=pdp10-dec os=-tops10 ;; decsystem20* | dec20*) basic_machine=pdp10-dec os=-tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) basic_machine=m68k-motorola ;; delta88) basic_machine=m88k-motorola os=-sysv3 ;; dicos) basic_machine=i686-pc os=-dicos ;; djgpp) basic_machine=i586-pc os=-msdosdjgpp ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2* | dpx2*-bull) basic_machine=m68k-bull os=-sysv3 ;; ebmon29k) basic_machine=a29k-amd os=-ebmon ;; elxsi) basic_machine=elxsi-elxsi os=-bsd ;; encore | umax | mmax) basic_machine=ns32k-encore ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson os=-ose ;; fx2800) basic_machine=i860-alliant ;; genix) basic_machine=ns32k-ns ;; gmicro) basic_machine=tron-gmicro os=-sysv ;; go32) basic_machine=i386-pc os=-go32 ;; h3050r* | hiux*) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; h8300hms) basic_machine=h8300-hitachi os=-hms ;; h8300xray) basic_machine=h8300-hitachi os=-xray ;; h8500hms) basic_machine=h8500-hitachi os=-hms ;; harris) basic_machine=m88k-harris os=-sysv3 ;; hp300-*) basic_machine=m68k-hp ;; hp300bsd) basic_machine=m68k-hp os=-bsd ;; hp300hpux) basic_machine=m68k-hp os=-hpux ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) basic_machine=m68000-hp ;; hp9k3[2-9][0-9]) basic_machine=m68k-hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) basic_machine=hppa1.1-hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) basic_machine=hppa1.1-hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; hppa-next) os=-nextstep3 ;; hppaosf) basic_machine=hppa1.1-hp os=-osf ;; hppro) basic_machine=hppa1.1-hp os=-proelf ;; i370-ibm* | ibm*) basic_machine=i370-ibm ;; i*86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; i386-vsta | vsta) basic_machine=i386-unknown os=-vsta ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; leon-*|leon[3-9]-*) basic_machine=sparc-`echo $basic_machine | sed 's/-.*//'` ;; m68knommu) basic_machine=m68k-unknown os=-linux ;; m68knommu-*) basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; microblaze*) basic_machine=microblaze-xilinx ;; mingw64) basic_machine=x86_64-pc os=-mingw64 ;; mingw32) basic_machine=i686-pc os=-mingw32 ;; mingw32ce) basic_machine=arm-unknown os=-mingw32ce ;; miniframe) basic_machine=m68000-convergent ;; *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) basic_machine=m68k-atari os=-mint ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k os=-coff ;; morphos) basic_machine=powerpc-unknown os=-morphos ;; moxiebox) basic_machine=moxie-unknown os=-moxiebox ;; msdos) basic_machine=i386-pc os=-msdos ;; ms1-*) basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ;; msys) basic_machine=i686-pc os=-msys ;; mvs) basic_machine=i370-ibm os=-mvs ;; nacl) basic_machine=le32-unknown os=-nacl ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; netbsd386) basic_machine=i386-unknown os=-netbsd ;; netwinder) basic_machine=armv4l-rebel os=-linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; necv70) basic_machine=v70-nec os=-sysv ;; next | m*-next ) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; mon960) basic_machine=i960-intel os=-mon960 ;; nonstopux) basic_machine=mips-compaq os=-nonstopux ;; np1) basic_machine=np1-gould ;; neo-tandem) basic_machine=neo-tandem ;; nse-tandem) basic_machine=nse-tandem ;; nsr-tandem) basic_machine=nsr-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; openrisc | openrisc-*) basic_machine=or32-unknown ;; os400) basic_machine=powerpc-ibm os=-os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose ;; os68k) basic_machine=m68k-none os=-os68k ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; parisc) basic_machine=hppa-unknown os=-linux ;; parisc-*) basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pc98) basic_machine=i386-pc ;; pc98-*) basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; pentium4) basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium4-*) basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc | ppcbe) basic_machine=powerpc-unknown ;; ppc-* | ppcbe-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm ;; pw32) basic_machine=i586-unknown os=-pw32 ;; rdos | rdos64) basic_machine=x86_64-pc os=-rdos ;; rdos32) basic_machine=i386-pc os=-rdos ;; rom68k) basic_machine=m68k-rom68k os=-coff ;; rm[46]00) basic_machine=mips-siemens ;; rtpc | rtpc-*) basic_machine=romp-ibm ;; s390 | s390-*) basic_machine=s390-ibm ;; s390x | s390x-*) basic_machine=s390x-ibm ;; sa29200) basic_machine=a29k-amd os=-udi ;; sb1) basic_machine=mipsisa64sb1-unknown ;; sb1el) basic_machine=mipsisa64sb1el-unknown ;; sde) basic_machine=mipsisa32-sde os=-elf ;; sei) basic_machine=mips-sei os=-seiux ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; sh5el) basic_machine=sh5le-unknown ;; sh64) basic_machine=sh64-unknown ;; sparclite-wrs | simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; sps7) basic_machine=m68k-bull os=-sysv2 ;; spur) basic_machine=spur-unknown ;; st2000) basic_machine=m68k-tandem ;; stratus) basic_machine=i860-stratus os=-sysv4 ;; strongarm-* | thumb-*) basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` ;; sun2) basic_machine=m68000-sun ;; sun2os3) basic_machine=m68000-sun os=-sunos3 ;; sun2os4) basic_machine=m68000-sun os=-sunos4 ;; sun3os3) basic_machine=m68k-sun os=-sunos3 ;; sun3os4) basic_machine=m68k-sun os=-sunos4 ;; sun4os3) basic_machine=sparc-sun os=-sunos3 ;; sun4os4) basic_machine=sparc-sun os=-sunos4 ;; sun4sol2) basic_machine=sparc-sun os=-solaris2 ;; sun3 | sun3-*) basic_machine=m68k-sun ;; sun4) basic_machine=sparc-sun ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; sv1) basic_machine=sv1-cray os=-unicos ;; symmetry) basic_machine=i386-sequent os=-dynix ;; t3e) basic_machine=alphaev5-cray os=-unicos ;; t90) basic_machine=t90-cray os=-unicos ;; tile*) basic_machine=$basic_machine-unknown os=-linux-gnu ;; tx39) basic_machine=mipstx39-unknown ;; tx39el) basic_machine=mipstx39el-unknown ;; toad1) basic_machine=pdp10-xkl os=-tops20 ;; tower | tower-32) basic_machine=m68k-ncr ;; tpf) basic_machine=s390x-ibm os=-tpf ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; w65*) basic_machine=w65-wdc os=-none ;; w89k-*) basic_machine=hppa1.1-winbond os=-proelf ;; xbox) basic_machine=i686-pc os=-mingw32 ;; xps | xps100) basic_machine=xps100-honeywell ;; xscale-* | xscalee[bl]-*) basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` ;; ymp) basic_machine=ymp-cray os=-unicos ;; z8k-*-coff) basic_machine=z8k-unknown os=-sim ;; z80-*-coff) basic_machine=z80-unknown os=-sim ;; none) basic_machine=none-none os=-none ;; # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. w89k) basic_machine=hppa1.1-winbond ;; op50n) basic_machine=hppa1.1-oki ;; op60c) basic_machine=hppa1.1-oki ;; romp) basic_machine=romp-ibm ;; mmix) basic_machine=mmix-knuth ;; rs6000) basic_machine=rs6000-ibm ;; vax) basic_machine=vax-dec ;; pdp10) # there are many clones, so DEC is not a safe bet basic_machine=pdp10-unknown ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) basic_machine=sparc-sun ;; cydra) basic_machine=cydra-cydrome ;; orion) basic_machine=orion-highlevel ;; orion105) basic_machine=clipper-highlevel ;; mac | mpw | mac-mpw) basic_machine=m68k-apple ;; pmac | pmac-mpw) basic_machine=powerpc-apple ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; *) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; esac # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` ;; *-commodore*) basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if [ x"$os" != x"" ] then case $os in # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. -auroraux) os=-auroraux ;; -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -svr4*) os=-sysv4 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # First accept the basic system types. # The portable systems comes first. # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ | -sym* | -kopensolaris* | -plan9* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* | -aros* | -cloudabi* | -sortix* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ | -bitrig* | -openbsd* | -solidbsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* | -cegcc* \ | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ | -linux-newlib* | -linux-musl* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* | -tirtos*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) case $basic_machine in x86-* | i*86-*) ;; *) os=-nto$os ;; esac ;; -nto-qnx*) ;; -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo $os | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition ;; -os400*) os=-os400 ;; -wince*) os=-wince ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -atheos*) os=-atheos ;; -syllable*) os=-syllable ;; -386bsd) os=-bsd ;; -ctix* | -uts*) os=-sysv ;; -nova*) os=-rtmk-nova ;; -ns2 ) os=-nextstep2 ;; -nsk*) os=-nsk ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -tpf*) os=-tpf ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -ose*) os=-ose ;; -es1800*) os=-ose ;; -xenix) os=-xenix ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -aros*) os=-aros ;; -zvmoe) os=-zvmoe ;; -dicos*) os=-dicos ;; -nacl*) ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in score-*) os=-elf ;; spu-*) os=-elf ;; *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; c4x-* | tic4x-*) os=-coff ;; c8051-*) os=-elf ;; hexagon-*) os=-elf ;; tic54x-*) os=-coff ;; tic55x-*) os=-coff ;; tic6x-*) os=-coff ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 ;; m68*-cisco) os=-aout ;; mep-*) os=-elf ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; or32-*) os=-coff ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; *-be) os=-beos ;; *-haiku) os=-haiku ;; *-ibm) os=-aix ;; *-knuth) os=-mmixware ;; *-wec) os=-proelf ;; *-winbond) os=-proelf ;; *-oki) os=-proelf ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigaos ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next ) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-next) os=-nextstep3 ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f30[01]-fujitsu | f700-fujitsu) os=-uxpv ;; *-rom68k) os=-coff ;; *-*bug) os=-coff ;; *-apple) os=-macos ;; *-atari*) os=-mint ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $os in -riscix*) vendor=acorn ;; -sunos*) vendor=sun ;; -cnk*|-aix*) vendor=ibm ;; -beos*) vendor=be ;; -hpux*) vendor=hp ;; -mpeix*) vendor=hp ;; -hiux*) vendor=hitachi ;; -unos*) vendor=crds ;; -dgux*) vendor=dg ;; -luna*) vendor=omron ;; -genix*) vendor=ns ;; -mvs* | -opened*) vendor=ibm ;; -os400*) vendor=ibm ;; -ptx*) vendor=sequent ;; -tpf*) vendor=ibm ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; -aux*) vendor=apple ;; -hms*) vendor=hitachi ;; -mpw* | -macos*) vendor=apple ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) vendor=atari ;; -vos*) vendor=stratus ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os exit # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: gbutils-5.7.1/gbhisto.10000644000175000017500000000474113246755334011661 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBHISTO "1" "March 2018" "gbhisto 5.7.1" "User Commands" .SH NAME gbhisto \- Produce histogram from data .SH SYNOPSIS .B gbhisto [\fI\,options\/\fR] .SH DESCRIPTION Compute histogram counting the occurrences of each value (discrete data) or binning the values on a regular grid (continuous data). Data are read from standard input. For discrete data, values and their occurrences are printed; For binned data, the bin reference point and the relative statistics are printed. The type of variable and the statistics can be set with option \fB\-M\fR. The binning grid can be linear, logarithmic or geometric. The bin reference point is the algebraic midpoint for linear binning and the geometric midpoint for log or geometric binning. The reference point can be moved using option \fB\-S\fR. Set it to 0 for the lower bound or to 1 for the upper bound. .SH OPTIONS .TP \fB\-n\fR number of equispaced bins where the histogram is computed (default 10) .TP \fB\-w\fR min,max set manually the binning window .TP \fB\-M\fR set the type of output (default 0) .TP 0 occurrences number (continuous binned variable) .TP 1 relative frequency (continuous binned variable) .TP 2 empirical density (continuous binned variable) .TP 3 occurrences number (discrete variable) .TP 4 relative frequency (discrete variable) .TP 5 CDF (left cumulated probability; continuous binned variable) .TP 6 inverse CDF (1\-CDF; continuous binned variable) .TP \fB\-B\fR set the type of binning (default 0) .TP 0 linear .TP 1 logarithmic .TP 2 geometric .TP \fB\-S\fR set the bin reference point (default 0.5) .TP \fB\-r\fR set the ratio for geometrical binning (default 1.618) .TP \fB\-t\fR print the histogram for each imput column .TP \fB\-F\fR specify the input fields separators (default " \et") .TP \fB\-v\fR verbose mode .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/gbquant.10000644000175000017500000000460213246755335011660 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBQUANT "1" "March 2018" "gbquant 5.7.1" "User Commands" .SH NAME gbquant \- Print quantiles of data distribution .SH SYNOPSIS .B gbquant [\fI\,options\/\fR] .SH DESCRIPTION Print distribution quantiles. Data are read from standard input. If no \fB\-x\fR or \fB\-q\fR options are provided, a quantiles table is plotted. The number of quantiles can be chosen with \fB\-n\fR. The option \fB\-x\fR #1 prints the quantile associated with the value #1, while \fB\-q\fR #2 print the value associate with the quantile #2. Of course #2 must be between 0 and 1. Multiple values can be provided to \fB\-x\fR or \fB\-q\fR, separated with commas. With \fB\-w\fR #1,#2 all the observations inside the quantile range [#1,#2) are printed. If more columns are provided with option \fB\-t\fR, the specified action is repeated on each column. Without \fB\-t\fR, columns are pooled unless \fB\-w\fR is specified, in which case all rows whose first element is inside the range are printed. A different column for sorting can be specified with option \fB\-W\fR. If 0 is specified, the cut is applied with respect to all columns .SH OPTIONS .TP \fB\-n\fR number of quantiles to print (default 10) .TP \fB\-x\fR print the quantile (interpolated) associated with the value .TP \fB\-q\fR print the value (interpolated) associated with the quantile .TP \fB\-e\fR print the (asymptotic) error for \fB\-x\fR or \fB\-q\fR; doesn't work with \fB\-t\fR .TP \fB\-w\fR print observations inside a quantile windows .TP \fB\-W\fR set the column to use (default 1) .TP \fB\-t\fR consider separately each column of input .TP \fB\-F\fR specify the input fields separators (default " \et") .TP \fB\-h\fR this help .TP \fB\-v\fR verbose mode .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/gbmodes.10000644000175000017500000000414513246755335011641 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBMODES "1" "March 2018" "gbmodes 5.7.1" "User Commands" .SH NAME gbmodes \- Analyze multimodality in univariate data .SH SYNOPSIS .B gbmodes [\fI\,options\/\fR] .SH DESCRIPTION Multimodality analysis via kernel density estimation. Compute the maximal kernel bandwidth h_c(M) for which #(modes in the estimated density)>M.The significance of h_c is computed via smoothed bootstrap. Read data from std. input. Print the couple h_c p(h_c) and the modal values (set with \fB\-O\fR). .SH OPTIONS .TP \fB\-n\fR number of equispaced points where the density is computed (default 100) .TP \fB\-m\fR number of modes (default 1) .TP \fB\-r\fR search range for modes; comma separated couple 'data_min,data_max' .TP \fB\-s\fR scale the search range to [min*s+(1\-s)*Max,Max*s+(1\-s)*min] (default 1) .TP \fB\-e\fR relative tolerance on h_c value (default 1e\-6) .TP \fB\-S\fR significance level (for Hall\-York correction) (default .05) .TP \fB\-t\fR number of bootstrap trials used for significance computation (default 1000) .TP \fB\-R\fR RNG seed for bootstrap trials (default 0) .TP \fB\-K\fR choose the kernel to use: 0 Gaussian or 1 Laplacian (default 0) .TP \fB\-v\fR verbose mode (more verbose if provided 2 times) .TP \fB\-O\fR output type (default 0) .TP 0 h_c p(h_c) [modes locations] .TP 1 h_c [modes locations and heights] .TP \fB\-F\fR specify the input fields separators (default " \et") .TP \fB\-h\fR this help .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/tools.c0000644000175000017500000016540613246755055011452 00000000000000/* tools.c (ver. 5.4.5) -- Various utilities functions for gbutils Copyright (C) 2001-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "tools.h" /* ======================= */ /* PROGRAMS INITIALIZATION */ /* ======================= */ char *GB_PROGNAME=NULL; char *FLOAT=NULL,*FLOAT_SEP=NULL,*FLOAT_NL=NULL; char *EMPTY=NULL,*EMPTY_SEP=NULL,*EMPTY_NL=NULL; char *INT=NULL,*INT_SEP=NULL,*INT_NL=NULL; char *SEP=NULL,*NL=NULL; /* locale parsing of thousand */ char LCTHSEP='\0'; void initialize_program(const char *progname){ GB_PROGNAME=strdup(progname); /* set locale according to environment variables and thousands separator according to locale*/ if (setlocale(LC_NUMERIC,"") == NULL) fprintf(stderr,"WARNING:Cannot set LC_NUMERIC to default locale\n"); else{ /* char *thsep=nl_langinfo (THOUSANDS_SEP); */ char *thsep=nl_langinfo (THOUSEP); if(strlen(thsep)>0) LCTHSEP=thsep[0]; } /* read the environment */ if(FLOAT==NULL && getenv("GB_OUT_FLOAT_FORMAT")) FLOAT = strdup(getenv("GB_OUT_FLOAT_FORMAT")); if(EMPTY==NULL && getenv("GB_OUT_EMPTY_FORMAT")) EMPTY = strdup(getenv("GB_OUT_EMPTY_FORMAT")); if(SEP==NULL && getenv("GB_OUT_SEP")) SEP = strdup(getenv("GB_OUT_SEP")); if(NL==NULL && getenv("GB_OUT_NL")) NL = strdup(getenv("GB_OUT_NL")); /* set the variables */ if(FLOAT==NULL && EMPTY==NULL){ FLOAT=strdup("% 12.6e"); EMPTY = strdup("%-13s"); INT = strdup("% 13d"); } else if(FLOAT!=NULL && EMPTY==NULL){ int length,itmp1; length=snprintf(NULL,0,FLOAT,M_PI); if(length < 0){ fprintf(stderr,"ERROR (%s): wrong output specification: %s\n", GB_PROGNAME,FLOAT); exit(-1); } itmp1 = snprintf(NULL,0,"%% %dd",length); if(itmp1<0){ fprintf(stderr,"ERROR (%s): wrong output specification: %s\n", GB_PROGNAME,FLOAT); exit(-1); } INT = (char *) my_alloc((itmp1+1)*sizeof(char)); snprintf(INT,itmp1+1,"%% %dd",length); itmp1 = snprintf(NULL,0,"%%-%ds",length); if(itmp1<0){ fprintf(stderr,"ERROR (%s): wrong output specification: %s\n", GB_PROGNAME,FLOAT); exit(-1); } EMPTY = (char *) my_alloc((itmp1+1)*sizeof(char)); snprintf(EMPTY,itmp1+1,"%%-%ds",length); } else if(FLOAT==NULL && EMPTY!=NULL){ FLOAT=strdup("% 12.6e"); INT = strdup("% 13d"); } else{ int length,itmp1; length=snprintf(NULL,0,FLOAT,M_PI); if(length < 0){ fprintf(stderr,"ERROR (%s): wrong output specification: %s\n", GB_PROGNAME,FLOAT); exit(-1); } itmp1 = snprintf(NULL,0,"%% %dd",length); if(itmp1<0){ fprintf(stderr,"ERROR (%s): wrong output specification: %s\n", GB_PROGNAME,FLOAT); exit(-1); } INT = (char *) my_alloc((itmp1+1)*sizeof(char)); snprintf(INT,itmp1+1,"%% %dd",length); } if(SEP==NULL) SEP = strdup(" "); if(NL==NULL) NL = strdup("\n"); /* fprintf(stderr,"FLOAT='%s' (%d) SEP='%s' (%d)\n", */ /* FLOAT,strlen(FLOAT),SEP,strlen(SEP)); */ FLOAT_SEP = (char *) my_alloc((strlen(FLOAT)+strlen(SEP)+1)*sizeof(char)); strcpy(FLOAT_SEP,FLOAT); strcat(FLOAT_SEP,SEP); FLOAT_NL=(char *) my_alloc((strlen(FLOAT)+3)*sizeof(char)); strcpy(FLOAT_NL,FLOAT); strcat(FLOAT_NL,NL); EMPTY_SEP=(char *) my_alloc((strlen(EMPTY)+strlen(SEP)+1)*sizeof(char)); strcpy(EMPTY_SEP,EMPTY); strcat(EMPTY_SEP,SEP); EMPTY_NL=(char *) my_alloc((strlen(EMPTY)+3)*sizeof(char)); strcpy(EMPTY_NL,EMPTY); strcat(EMPTY_NL,NL); INT_SEP = (char *) my_alloc((strlen(INT)+strlen(SEP)+1)*sizeof(char)); strcpy(INT_SEP,INT); strcat(INT_SEP,SEP); INT_NL=(char *) my_alloc((strlen(INT)+3)*sizeof(char)); strcpy(INT_NL,INT); strcat(INT_NL,NL); #if defined HAVE_LIBGSL /* suspend error handling */ if(getenv("GB_ERROR_HANDLER_OFF")) gsl_set_error_handler_off(); #endif } void finalize_program(){ free(GB_PROGNAME); free(FLOAT); free(EMPTY); free(SEP); free(NL); free(INT); free(FLOAT_SEP); free(EMPTY_SEP); free(INT_SEP); free(FLOAT_NL); free(EMPTY_NL); free(INT_NL); } /* long options */ struct option gb_long_options[] = { {"version", no_argument, NULL, 0 }, {"help", no_argument, NULL, 'h' }, {0, 0, 0, 0 } }; int gb_option_index = 0; /* ================= */ /* UTILITY FUNCTIONS */ /* ================= */ double mystrtod(const char *nptr){ /* pointer to end of interpreted string */ char *endptr; double res; if(LCTHSEP != '\0' && strchr(nptr,LCTHSEP) != NULL ){ char *new = strdup(nptr); char *src = new; char *dst = new; do { while (*src == LCTHSEP) ++src; } while ((*dst++ = *src++) != '\0'); res=strtod(new,&endptr); free(new); } else res = strtod(nptr,&endptr); if(*endptr != '\0'){ fprintf(stderr,"WARNING (%s) : error on conversion: %s -> %e; generate a NAN\n",GB_PROGNAME,nptr,res); res=NAN; } return res; } void *my_alloc(size_t size){ void *temp; if(!(temp = malloc(size))){ perror("malloc, memory allocation failed"); exit(1); } return temp; } void *my_calloc(size_t length,size_t size){ void *temp; if(!(temp = calloc(length,size))){ perror("calloc, memory allocation failed"); exit(1); } return temp; } void *my_realloc(void *ptr,size_t size){ void *temp=NULL; if(size == 0){ free(ptr); } else if(!(temp = realloc(ptr,size))){ perror("realloc, memory allocation failed"); exit(1); } return temp; } /* replacement for systems without a strndup function */ /* copyright by Stefan Soucek ssoucek at coactive.com */ char *my_strndup(const char *str, size_t len) { register size_t n; register char *dst; n = strlen(str); if (len < n) n = len; dst = (char *) my_alloc(n+1); if (dst) { memcpy(dst, str, n); dst[n] = '\0'; } return dst; } /* ================ */ /* OUTPUT FUNCTIONS */ /* ================ */ /* default ASCII (or ASCII.gz) functions */ void (* PRINTMATRIXBYCOLS) (FILE *,double **,const size_t,const size_t) = printmatrixbycols; void (* PRINTMATRIXBYROWS) (FILE *,double **,const size_t,const size_t) = printmatrixbyrows; void (* PRINTNOMATRIXBYCOLS) (FILE *,double **,size_t *,const size_t) = printnomatrixbycols; void (* PRINTCOL) (FILE *,double *,const size_t) = printcol; void printline(FILE *out,double * data,const size_t size){ size_t i; for(i=0;i maxrows) maxrows=rows[j]; /* print the result */ if( strcspn (FLOAT,"fge") < strlen(FLOAT) ){ for(i=0;i *columns) { fprintf(stderr,"Warning (%s) : Reading only the first %zd columns of %zd provided. \n",GB_PROGNAME,*columns,i); } else if( i < *columns) { fprintf(stderr,"ERROR (%s) : wrong block shape... exiting!\n",GB_PROGNAME); exit(-1); } /* ----------------------------------------------------- */ /* table initialization -------------------------------- */ data = (double **) my_alloc((*columns)*sizeof(double*)); nrow = Mem_block; for(i=0;i<*columns;i++){ (data)[i] = (double *) my_alloc(nrow*sizeof(double)); } /* ----------------------------------------------------- */ /* read the data --------------------------------------- */ seplines=0; row=0; (*linenum)--; do{ (*linenum)++; stmp1 = strdup (line); if(stmp1 [strlen(stmp1)-1]=='\n') stmp1 [strlen(stmp1)-1]='\0'; /* checking if empty or comment --------- */ if( strspn(stmp1," \t") == strlen(stmp1) ){ /*empty line*/ ++seplines; if(seplines==2){ free(stmp1); break; } else continue; } else{ seplines=0; } token = strtok (stmp1, delimiters); if(token[0] == '#') /*comment line*/ { free(stmp1); continue; } /* -------------------------------------- */ /* check if nrow must be increased --- */ if(row >= nrow){ nrow+=Mem_block; for(i=0;i<*columns;i++){ (data)[i] = (double *) my_realloc((data)[i],nrow*sizeof(double)); } } /* ----------------------------------- */ /* reading the line --------------------- */ i=0; do{ char *endptr; errno=0; (data)[i][row] = strtod(token,&endptr); if(errno!=0 || *endptr != '\0') /* something went wrong */ { if(errno == ERANGE) { /* overflow or underflow */ if( (data)[i][row] == 0 ) underflow=1; else overflow=1; } else if(endptr == token) { /* no conversion */ (data)[i][row] = NAN; failedconversion=1; } else if(*endptr != '\0') { /* partial conversion */ partialconversion=1; } } i++; } while( i< *columns && ((token = strtok (NULL, delimiters)) != NULL) ); if(i< *columns){ /* missing values */ do {(data)[i][row]=NAN; i++;} while(i< *columns); notenough=1; } /* -------------------------------------- */ row++; free(stmp1); } while(GBGETLINE (&line,&linedim,input) !=-1); /* ----------------------------------------------------- */ /* print message if missing values or failed conversion -- */ if(notenough==1) fprintf(stderr,"WARNING (%s): missing values in some columns; filling with NAN\n",GB_PROGNAME); if(failedconversion==1) fprintf(stderr,"WARNING (%s): conversion(s) failed; filling with NAN\n",GB_PROGNAME); if(partialconversion==1) fprintf(stderr,"WARNING (%s): conversion(s) failed; used part of the string\n",GB_PROGNAME); if(underflow==1) fprintf(stderr,"WARNING (%s): conversion(s) failed; underflow occurred\n",GB_PROGNAME); if(overflow==1) fprintf(stderr,"WARNING (%s): conversion(s) failed; overflow occurred\n",GB_PROGNAME); /* ------------------------------------------------------- */ /* set the final shape of the table -------------------- */ if(*rows == 0){ *rows=row; } if( row > *rows) { fprintf(stderr,"Warning (%s) : Reading only the first %zd rows of %zd provided. \n",GB_PROGNAME,*rows,row); } else if( row < *rows) { fprintf(stderr,"ERROR (%s) : wrong block shape... exiting!\n",GB_PROGNAME); exit(-1); } for(i=0;i<*columns;i++){ (data)[i] = (double *) my_realloc((data)[i],(*rows)*sizeof(double)); } /* ----------------------------------------------------- */ free(line); return data; } /* read a series of blocks with possibly different columns and rows Parameters: double ****data : address of a three dim. arry of data (output) size_t *blocks : pointer to the array of blocks size_t **rows : pointer to the array of number of rows size_t **columns : pointer to the array of number of columns int fildes : file descriptor const char *delimiters : delimiters to use Return value: number of read lines */ int loadblocks(double ****data,size_t *blocks,size_t **rows,size_t **columns,int fildes,const char *delimiters){ unsigned linenum=0; /* number of lines read */ size_t nblock=*blocks; /* number of blocks */ double ** block=NULL; /* pointer to block */ size_t newrows=0,newcolumns=0; /* rows and columns of the file read */ /* input stream opening -------------------------------- */ GBFILEP input = GBFDOPEN (fildes,"r"); /* ----------------------------------------------------- */ /* read blocks ----------------------------------------- */ while( (block = readblock(&newrows, &newcolumns, &linenum, input, delimiters)) != NULL) { nblock++; *data = (double ***) my_realloc(*data,nblock*sizeof(double**)); (*data)[nblock-1] = block; *rows = (size_t *) my_realloc(*rows,nblock*sizeof(size_t)); *columns = (size_t *) my_realloc(*columns,nblock*sizeof(size_t)); (*rows)[nblock-1]=newrows; (*columns)[nblock-1]=newcolumns; newrows=0; newcolumns=0; } /* ----------------------------------------------------- */ /* input stream closing -------------------------------- */ GBCLOSE (input); /* ----------------------------------------------------- */ *blocks=nblock; return linenum; } /* Load the first block of data in an single array. Parameters: double **data: address of arry of data (output) int *size : the size of the array (output) FILE * input : file stream (input) Return value: number of read lines */ int load(double **data,size_t *size,int fildes,const char *delimiters){ double **vals=NULL; size_t rows=0,columns=0,index,i,j; unsigned linenum=0; /*number of lines read*/ /* input stream opening -------------------------------- */ GBFILEP input = GBFDOPEN (fildes,"r"); /* ----------------------------------------------------- */ vals = readblock(&rows,&columns, &linenum,input, delimiters); /* input stream closing -------------------------------- */ GBCLOSE (input); /* ----------------------------------------------------- */ *size = columns*rows; *data = (double *) my_alloc((*size)*sizeof(double)); index=0; for(i=0;i*blocks){ fprintf(stderr,"Warning (%s): Reading block %zd-th after %zd.\n",GB_PROGNAME,nblock-*blocks,*blocks); } } /* ----------------------------------------------------- */ /* input stream closing -------------------------------- */ GBCLOSE (input); /* ----------------------------------------------------- */ *blocks=nblock; return linenum; } /* ----------------------------------------------------- */ /* utility function to read binary data and print error message if problems arise */ void myfread(void *ptr, size_t size, size_t nmemb, FILE *stream){ if(fread(ptr,size,nmemb,stream) != nmemb){ fprintf(stderr,"ERROR (%s): problems in binary file... exiting!\n", GB_PROGNAME); exit(-1); } } /* Load the whole data set in a single array, ignoring columns and blocks. Parameters: double **data: arry of data (output) int *size : the size of the array (output) FILE * input : file stream (input) Output: number of read lines */ int load_bin(double **data,size_t *size,int fildes){ size_t i,tempcols,temprows; /* temporary number of columns */ FILE *binput =fdopen (fildes,"r"); /* read the first block */ myfread(&tempcols,sizeof(size_t),1,binput); *size=0; for(i=0;i 0){ size_t tempsize=0; for(i=0;i newrows) newrows= temprows[i]; } (*rows)[nblock-1]=newrows; (*columns)[nblock-1]=newcolumns; rowsnum += newrows; /* initialize the block */ (*data)[nblock-1] = (double **) my_alloc(newcolumns*sizeof(double*)); for(i=0;i *columns) { fprintf(stderr,"WARNING (%s): read only the %zd first columns of %zd provided\n",GB_PROGNAME, *columns,tempcols); } /* check rows structure */ *rows=0; for(i=0;i<*columns;i++){ if(temprows[i] >*rows) *rows= temprows[i]; } /* initialize the array */ *data = (double **) my_alloc((*columns)*sizeof(double*)); for(i=0;i<*columns;i++) (*data)[i] = (double *) my_alloc((*rows)*sizeof(double)); /* load data */ for(i=0;i<*columns;i++){ myfread((*data)[i],sizeof(double),temprows[i],binput); if(temprows[i]<*rows){ size_t j; fprintf(stderr,"WARNING (%s): not enought data at column %zd; filling with NAN\n", GB_PROGNAME,i); for(j=temprows[i];j<*rows;j++) (*data)[i][j]=NAN; } } free(temprows); fclose(binput); return *rows; } int sort_by_value(const void *a, const void *b){ const double *da = (const double *) a; const double *db = (const double *) b; return (*da > *db) - (*da < *db); } void moment(const double data[], const size_t size, double *ave, double *adev, double *sdev, double *var, double *skew, double *curt, double *min,double *max){ size_t i; /*index*/ double dtmp1,dtmp2,error; double lmin,lmax,lave,ladev,lsdev,lvar,lskew,lcurt; /* local vars */ if (size == 0) { fprintf(stderr,"WARNING (%s): at least 1 observation is required\n", GB_PROGNAME); *min=NAN; *max=NAN; *ave=NAN; *adev=NAN; *var=NAN; *sdev=NAN; *skew=NAN; *curt=NAN; return ; } else if (size <= 1) { *min=data[0]; *max=data[0]; *ave=data[0]; *adev=0; *var=0; *sdev=0; *skew=0; *curt=0; return ; } /* find total sum; min max values */ lmin = lmax =data[0]; dtmp1=0.0;/*total sum*/ for (i=0;i lmax){ lmax = data[i]; } dtmp1 += data[i]; } lave=dtmp1/size; /* build statistics */ error=ladev=lvar=lskew=lcurt=0.0; for (i=0;i0) { lskew /= (size-1.)*lvar*lsdev; lcurt=lcurt/((size-1.)*lvar*lvar)-3.0; } else { fprintf(stderr,"WARNING (%s): No skew/kurtosis when variance=0\n",GB_PROGNAME); lskew=lcurt=NAN; } /* set the return values */ *min=lmin; *max=lmax; *ave=lave; *adev=ladev; *var=lvar; *sdev=lsdev; *skew=lskew; *curt=lcurt; } /* in variable 'nonan' the number of finite values is returned */ void moment_nonan(const double data[], const size_t size, double *ave, double *adev, double *sdev, double *var, double *skew, double *curt,double *min,double *max, double *nonan){ size_t i; /*index*/ double dtmp1,dtmp2,error; double lmin,lmax,lave,ladev,lsdev,lvar,lskew,lcurt; /* local vars */ size_t lsize; if (size == 0) { *min=NAN; *max=NAN; *ave=NAN; *adev=NAN; *var=NAN; *sdev=NAN; *skew=NAN; *curt=NAN; *nonan=0; return ; } else if (size <= 1) { *min=data[0]; *max=data[0]; *ave=data[0]; *adev=0; *var=0; *sdev=0; *skew=0; *curt=0; if( finite(data[0]) ){ *nonan=1; } else{ *nonan=0; } return ; } /* find total sum; min max values */ lmin = lmax =data[0]; dtmp1=0.0;/*total sum*/ lsize=0; for (i=0;i lmax){ lmax = data[i]; } dtmp1 += data[i]; } lave=dtmp1/lsize; /* build statistics */ error=ladev=lvar=lskew=lcurt=0.0; for (i=0;i0) { lskew /= (lsize-1.)*lvar*lsdev; lcurt=lcurt/((lsize-1.)*lvar*lvar)-3.0; } else { lskew=lcurt=NAN; } /* set the return values */ *min=lmin; *max=lmax; *ave=lave; *adev=ladev; *var=lvar; *sdev=lsdev; *skew=lskew; *curt=lcurt; *nonan= (double) lsize; } void moment_short(const double data[], const size_t size, double *ave, double *sdev,double *min,double *max){ size_t i; /*index*/ double dtmp1,error; double lmin,lmax,lave,lsdev; /* local vars */ if (size <= 1) { fprintf(stderr,"ERROR (%s): at least 2 observations are required\n", GB_PROGNAME); exit(+1); } /* find total sum; min max values */ lmin = lmax =data[0]; dtmp1=0.0;/*total sum*/ for (i=0;i lmax){ lmax = data[i]; } dtmp1 += data[i]; } lave=dtmp1/size; /* build statistics */ error=lsdev=0.0; for (i=0;i max[0]){ max[0] = dtmp0; } if(dtmp1< min[1]){ min[1] = dtmp1; } else if(dtmp1> max[1]){ max[1] = dtmp1; } s0 += dtmp0; s1 += dtmp1; } ave[0]=s0/n; ave[1]=s1/n; *cov=sdev[0]=sdev[1]=0.0; error0=error1=0.0; for (j=0;j max[0]){ max[0] = dtmp0; } if(dtmp1< min[1]){ min[1] = dtmp1; } else if(dtmp1> max[1]){ max[1] = dtmp1; } if(dtmp2< min[2]){ min[2] = dtmp2; } else if(dtmp2> max[2]){ max[2] = dtmp2; } s0 += dtmp0; s1 += dtmp1; s2 += dtmp2; } ave[0]=s0/n; ave[1]=s1/n; ave[2]=s2/n; *covxy=sdev[0]=sdev[1]=0.0; error0=error1=ep2=0.0; for (j=0;j\n\n"); fprintf(out,"Package home page \n"); } void moment_short_nonan(const double data[], const size_t size, double *ave, double *sdev,double *min,double *max,double *nonan){ size_t i,realsize; /*index*/ double dtmp1,error; double lmin,lmax,lave,lsdev; /* local vars */ if (size <= 1) { fprintf(stderr,"ERROR (%s): at least 2 observations are required\n", GB_PROGNAME); exit(+1); } /* find total sum; min max values */ lmin = lmax =data[0]; dtmp1=0.0;/*total sum*/ realsize=0; for (i=0;i lmax){ lmax = data[i]; } dtmp1 += data[i]; } lave=dtmp1/realsize; /* build statistics */ error=lsdev=0.0; for (i=0;i0) for(i=0;i<*columns;i++) free((*vals)[i]); free(*vals); /* new dimensions */ *rows=newrows; /* reallocate space */ for(i=0;i<*columns;i++) newvals[i] = (double *) my_realloc((void *) (newvals[i]), (*rows)*sizeof(double)); *vals = newvals; } /* translated by f2c (version 20030320) from dsort.c. */ #define abs(x) ((x) >= 0 ? (x) : -(x)) /* ***BEGIN PROLOGUE DSORT */ /* ***PURPOSE Sort an array and optionally make the same interchanges in */ /* an auxiliary array. The array may be sorted in increasing */ /* or decreasing order. A slightly modified QUICKSORT */ /* algorithm is used. */ /* ***LIBRARY SLATEC */ /* ***CATEGORY N6A2B */ /* ***TYPE DOUBLE PRECISION (SSORT-S, DSORT-D, ISORT-I) */ /* ***KEYWORDS SINGLETON QUICKSORT, SORT, SORTING */ /* ***AUTHOR Jones, R. E., (SNLA) */ /* Wisniewski, J. A., (SNLA) */ /* ***DESCRIPTION */ /* DSORT sorts array DX and optionally makes the same interchanges in */ /* array DY. The array DX may be sorted in increasing order or */ /* decreasing order. A slightly modified quicksort algorithm is used. */ /* Description of Parameters */ /* DX - array of values to be sorted (usually abscissas) */ /* DY - array to be (optionally) carried along */ /* N - number of values in array DX to be sorted */ /* KFLAG - control parameter */ /* = 2 means sort DX in increasing order and carry DY along. */ /* = 1 means sort DX in increasing order (ignoring DY) */ /* = -1 means sort DX in decreasing order (ignoring DY) */ /* = -2 means sort DX in decreasing order and carry DY along. */ /* ***REFERENCES R. C. Singleton, Algorithm 347, An efficient algorithm */ /* for sorting with minimal storage, Communications of */ /* the ACM, 12, 3 (1969), pp. 185-187. */ int sort2(double *dx, double *dy, long int n, long int kflag) { /* System generated locals */ long int i__1; /* Local variables */ static long int i__, j, k, l, m; static double r__, t; static long int ij, il[21], kk, nn, iu[21]; static double tt, ty, tty; /* Parameter adjustments */ --dy; --dx; /* Function Body */ nn = n; if (nn < 1) { fprintf(stderr,"SLATEC DSORT: The number of values to be sorted is not positive."); return 0; } kk = abs(kflag); if (kk != 1 && kk != 2) { fprintf(stderr,"SLATEC DSORT: The sort control parameter, K, is not 2, 1, -1, or -2."); return 0; } /* Alter array DX to get decreasing order if needed */ if (kflag <= -1) { i__1 = nn; for (i__ = 1; i__ <= i__1; ++i__) { dx[i__] = -dx[i__]; /* L10: */ } } if (kk == 2) { goto L100; } /* Sort DX only */ m = 1; i__ = 1; j = nn; r__ = .375; L20: if (i__ == j) { goto L60; } if (r__ <= .5898437) { r__ += .0390625; } else { r__ += -.21875; } L30: k = i__; /* Select a central element of the array and save it in location T */ ij = i__ + (long int) ((j - i__) * r__); t = dx[ij]; /* If first element of array is greater than T, interchange with T */ if (dx[i__] > t) { dx[ij] = dx[i__]; dx[i__] = t; t = dx[ij]; } l = j; /* If last element of array is less than than T, interchange with T */ if (dx[j] < t) { dx[ij] = dx[j]; dx[j] = t; t = dx[ij]; /* If first element of array is greater than T, interchange with T */ if (dx[i__] > t) { dx[ij] = dx[i__]; dx[i__] = t; t = dx[ij]; } } /* Find an element in the second half of the array which is smaller */ /* than T */ L40: --l; if (dx[l] > t) { goto L40; } /* Find an element in the first half of the array which is greater */ /* than T */ L50: ++k; if (dx[k] < t) { goto L50; } /* Interchange these elements */ if (k <= l) { tt = dx[l]; dx[l] = dx[k]; dx[k] = tt; goto L40; } /* Save upper and lower subscripts of the array yet to be sorted */ if (l - i__ > j - k) { il[m - 1] = i__; iu[m - 1] = l; i__ = k; ++m; } else { il[m - 1] = k; iu[m - 1] = j; j = l; ++m; } goto L70; /* Begin again on another portion of the unsorted array */ L60: --m; if (m == 0) { goto L190; } i__ = il[m - 1]; j = iu[m - 1]; L70: if (j - i__ >= 1) { goto L30; } if (i__ == 1) { goto L20; } --i__; L80: ++i__; if (i__ == j) { goto L60; } t = dx[i__ + 1]; if (dx[i__] <= t) { goto L80; } k = i__; L90: dx[k + 1] = dx[k]; --k; if (t < dx[k]) { goto L90; } dx[k + 1] = t; goto L80; /* Sort DX and carry DY along */ L100: m = 1; i__ = 1; j = nn; r__ = .375; L110: if (i__ == j) { goto L150; } if (r__ <= .5898437) { r__ += .0390625; } else { r__ += -.21875; } L120: k = i__; /* Select a central element of the array and save it in location T */ ij = i__ + (long int) ((j - i__) * r__); /* GB Fri Nov 25 10:50:36 CET 2005 */ /* fprintf(stderr,"%d\n",ij); */ t = dx[ij]; ty = dy[ij]; /* If first element of array is greater than T, interchange with T */ if (dx[i__] > t) { dx[ij] = dx[i__]; dx[i__] = t; t = dx[ij]; dy[ij] = dy[i__]; dy[i__] = ty; ty = dy[ij]; } l = j; /* If last element of array is less than T, interchange with T */ if (dx[j] < t) { dx[ij] = dx[j]; dx[j] = t; t = dx[ij]; dy[ij] = dy[j]; dy[j] = ty; ty = dy[ij]; /* If first element of array is greater than T, interchange with T */ if (dx[i__] > t) { dx[ij] = dx[i__]; dx[i__] = t; t = dx[ij]; dy[ij] = dy[i__]; dy[i__] = ty; ty = dy[ij]; } } /* Find an element in the second half of the array which is smaller */ /* than T */ L130: --l; if (dx[l] > t) { goto L130; } /* Find an element in the first half of the array which is greater */ /* than T */ L140: ++k; if (dx[k] < t) { goto L140; } /* Interchange these elements */ if (k <= l) { tt = dx[l]; dx[l] = dx[k]; dx[k] = tt; tty = dy[l]; dy[l] = dy[k]; dy[k] = tty; goto L130; } /* Save upper and lower subscripts of the array yet to be sorted */ if (l - i__ > j - k) { il[m - 1] = i__; iu[m - 1] = l; i__ = k; ++m; } else { il[m - 1] = k; iu[m - 1] = j; j = l; ++m; } goto L160; /* Begin again on another portion of the unsorted array */ L150: --m; if (m == 0) { goto L190; } i__ = il[m - 1]; j = iu[m - 1]; L160: if (j - i__ >= 1) { goto L120; } if (i__ == 1) { goto L110; } --i__; L170: ++i__; if (i__ == j) { goto L150; } t = dx[i__ + 1]; ty = dy[i__ + 1]; if (dx[i__] <= t) { goto L170; } k = i__; L180: dx[k + 1] = dx[k]; dy[k + 1] = dy[k]; --k; if (t < dx[k]) { goto L180; } dx[k + 1] = t; dy[k + 1] = ty; goto L170; /* Clean up */ L190: if (kflag <= -1) { i__1 = nn; for (i__ = 1; i__ <= i__1; ++i__) { dx[i__] = -dx[i__]; /* L200: */ } } return 0; } /* sort2 */ int sortn(double **data, const long int len, const long int n, const long int pos, const long int kflag) { /* System generated locals */ long int i__1; /* Local variables */ static long int i__, j, k, l, m,h; static double r__, t; static long int ij, il[21], kk, nn, iu[21]; static double tt; double *ty,*tty, *dx; if(pos t) { dx[ij] = dx[i__]; dx[i__] = t; t = dx[ij]; } l = j; /* If last element of array is less than than T, interchange with T */ if (dx[j] < t) { dx[ij] = dx[j]; dx[j] = t; t = dx[ij]; /* If first element of array is greater than T, interchange with T */ if (dx[i__] > t) { dx[ij] = dx[i__]; dx[i__] = t; t = dx[ij]; } } /* Find an element in the second half of the array which is smaller */ /* than T */ L40: --l; if (dx[l] > t) { goto L40; } /* Find an element in the first half of the array which is greater */ /* than T */ L50: ++k; if (dx[k] < t) { goto L50; } /* Interchange these elements */ if (k <= l) { tt = dx[l]; dx[l] = dx[k]; dx[k] = tt; goto L40; } /* Save upper and lower subscripts of the array yet to be sorted */ if (l - i__ > j - k) { il[m - 1] = i__; iu[m - 1] = l; i__ = k; ++m; } else { il[m - 1] = k; iu[m - 1] = j; j = l; ++m; } goto L70; /* Begin again on another portion of the unsorted array */ L60: --m; if (m == 0) { goto L190; } i__ = il[m - 1]; j = iu[m - 1]; L70: if (j - i__ >= 1) { goto L30; } if (i__ == 1) { goto L20; } --i__; L80: ++i__; if (i__ == j) { goto L60; } t = dx[i__ + 1]; if (dx[i__] <= t) { goto L80; } k = i__; L90: dx[k + 1] = dx[k]; --k; if (t < dx[k]) { goto L90; } dx[k + 1] = t; goto L80; /* Sort DX and carry DY along */ L100: m = 1; i__ = 1; j = nn; r__ = .375; L110: if (i__ == j) { goto L150; } if (r__ <= .5898437) { r__ += .0390625; } else { r__ += -.21875; } L120: k = i__; /* Select a central element of the array and save it in location T */ ij = i__ + (long int) ((j - i__) * r__); /* GB Fri Nov 25 10:50:36 CET 2005 */ /* fprintf(stderr,"%d\n",ij); */ t = dx[ij]; for(h=0;h t) { for(h=0;h t) { for(h=0;h t) { goto L130; } /* Find an element in the first half of the array which is greater */ /* than T */ L140: ++k; if (dx[k] < t) { goto L140; } /* Interchange these elements */ if (k <= l) { for(h=0;h j - k) { il[m - 1] = i__; iu[m - 1] = l; i__ = k; ++m; } else { il[m - 1] = k; iu[m - 1] = j; j = l; ++m; } goto L160; /* Begin again on another portion of the unsorted array */ L150: --m; if (m == 0) { goto L190; } i__ = il[m - 1]; j = iu[m - 1]; L160: if (j - i__ >= 1) { goto L120; } if (i__ == 1) { goto L110; } --i__; L170: ++i__; if (i__ == j) { goto L150; } t = dx[i__ + 1]; for(h=0;h #if HAVE_INTTYPES_H # include #endif #if HAVE_STDINT_H # include #endif #ifndef PTRDIFF_MAX # define PTRDIFF_MAX ((ptrdiff_t) (SIZE_MAX / 2)) #endif #ifndef SIZE_MAX # define SIZE_MAX ((size_t) -1) #endif #ifndef SSIZE_MAX # define SSIZE_MAX ((ssize_t) (SIZE_MAX / 2)) #endif /* The maximum value that getndelim2 can return without suffering from overflow problems, either internally (because of pointer subtraction overflow) or due to the API (because of ssize_t). */ #define GETNDELIM2_MAXIMUM (PTRDIFF_MAX < SSIZE_MAX ? PTRDIFF_MAX : SSIZE_MAX) /* Try to add at least this many bytes when extending the buffer. MIN_CHUNK must be no greater than GETNDELIM2_MAXIMUM. */ #define MIN_CHUNK 64 ssize_t gzgetndelim2 (char **lineptr, size_t *linesize, size_t offset, size_t nmax, int delim1, int delim2, gzFile stream) { size_t nbytes_avail; /* Allocated but unused bytes in *LINEPTR. */ char *read_pos; /* Where we're reading into *LINEPTR. */ ssize_t bytes_stored = -1; char *ptr = *lineptr; size_t size = *linesize; if (!ptr) { size = nmax < MIN_CHUNK ? nmax : MIN_CHUNK; ptr = my_alloc (size); if (!ptr) return -1; } if (size < offset) goto done; nbytes_avail = size - offset; read_pos = ptr + offset; if (nbytes_avail == 0 && nmax <= size) goto done; for (;;) { /* Here always ptr + size == read_pos + nbytes_avail. */ int c; /* We always want at least one byte left in the buffer, since we always (unless we get an error while reading the first byte) NUL-terminate the line buffer. */ if (nbytes_avail < 2 && size < nmax) { size_t newsize = size < MIN_CHUNK ? size + MIN_CHUNK : 2 * size; char *newptr; if (! (size < newsize && newsize <= nmax)) newsize = nmax; if (GETNDELIM2_MAXIMUM < newsize - offset) { size_t newsizemax = offset + GETNDELIM2_MAXIMUM + 1; if (size == newsizemax) goto done; newsize = newsizemax; } nbytes_avail = newsize - (read_pos - ptr); newptr = realloc (ptr, newsize); if (!newptr) goto done; ptr = newptr; size = newsize; read_pos = size - nbytes_avail + ptr; } c = gzgetc (stream); if (c == EOF) { /* Return partial line, if any. */ if (read_pos == ptr) goto done; else break; } if (nbytes_avail >= 2) { *read_pos++ = c; nbytes_avail--; } if (c == delim1 || c == delim2) /* Return the line. */ break; } /* Done - NUL terminate and return the number of bytes read. At this point we know that nbytes_avail >= 1. */ *read_pos = '\0'; bytes_stored = read_pos - (ptr + offset); done: *lineptr = ptr; *linesize = size; return bytes_stored; } ssize_t gzgetdelim (char **lineptr, size_t *linesize, int delimiter, gzFile stream) { return gzgetndelim2 (lineptr, linesize, 0, GETNLINE_NO_LIMIT, delimiter, EOF, stream); } ssize_t gzgetline (char **lineptr, size_t *linesize, gzFile stream) { return gzgetdelim (lineptr, linesize, '\n', stream); } #endif /* ===================================== */ /* UTILITY FUNCTIONS FOR KERNEL ANALYSIS */ /* ===================================== */ /* 1-dimensional */ const double Krectangular_K2= .5; const double Klaplace_K2= 1/(2*M_SQRT2); const double Kgauss_K2= 1/(2*M_PI); const double Kepanechnikov_K2= 3./(5*2.23606797749978969641); double Krectangular(double x) { return(.5); } double Krectangular_tilde(double x) { if(x==0){ return(1); } else{ return(sin(x)/x); } } double Klaplace(double x) { return(exp(-M_SQRT2*fabs(x))/M_SQRT2); } double Klaplace_tilde(double x) { return(1./(1.+x*x*0.5)); } double Kgauss(double x) { return(exp(-x*x/2.)/(sqrt(2.*M_PI))); } double Kgauss_tilde(double x) { return(exp(-x*x/2)); } double Kepanechnikov(double x) { return 3.*(1-x*x/5.)/(4.*sqrt(5)); } double Kepanechnikov_tilde(double x) { if(x==0){ return(1); } else{ double dtmp1=x*sqrt(5); return(3*(sin(dtmp1)-dtmp1*cos(dtmp1))/(dtmp1*dtmp1*dtmp1)); } } /* 2-dimensional */ double Krectangular2d(double x) { return( (x<1. ? 1./M_PI : 0.0) ); } double Kepanechnikov2d(double x) { return( (x<1. ? 2.*(1-x)/M_PI : 0.0) ); } double Ksilverman2d_1(double x) { const double dtmp1= 1-x; return( (x<1. ? 3.*dtmp1*dtmp1/M_PI : 0.0) ); } double Ksilverman2d_2(double x) { const double dtmp1= 1-x; return( (x<1. ? 4.*dtmp1*dtmp1*dtmp1/M_PI : 0.0) ); } gbutils-5.7.1/gbstat.c0000644000175000017500000002024713246754720011565 00000000000000/* gbstat (ver. 5.6) -- Basic descriptive statistics of data Copyright (C) 2000-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "tools.h" double HSM(double *vals,size_t size){ double mode; size_t n=size; size_t i=0; while(n>3){ size_t h; size_t j=i; size_t N=(size_t) ceil(n/2.0); double w=vals[i+n-1]-vals[i]; /* printf("from %d to %d\n",i,i+n-N); */ for(h=i; h < i+n-N+1; h++){ double dtmp1=vals[h+N-1]-vals[h]; /* printf("w[%d]=%f ",h,dtmp1); */ if(dtmp1idx1) idx1=idx2; *transform = strdup(pointer+idx1+1); } /* fprintf(stderr,"pointer:%s len:%d idx1:%d idx2:%d trasf:%s\n", */ /* pointer,strlen(pointer),idx1,idx2,*transform); */ free(piece); /* exit(0); */ /* final checks */ if(strspn(*blockslice,"-1234567890:;")0 ) fin = ini = atoi(stmp5); if( (stmp5=strsep (&stmp4,":")) != NULL){ if(strlen(stmp5)>0) fin = atoi(stmp5); else fin=max; } /* treat negative elements */ if(ini<0) ini=max+ini+1; if(fin<0) fin=max+fin+1; /* eventually set skip */ if( (stmp5=strsep (&stmp4,",")) != NULL && strlen(stmp5)>0 ) skip= atoi(stmp5); else if(ini>fin) skip=-1; free(stmp3); /*check the boundaries and skip*/ if(ini<1){ fprintf(stderr, "WARNING (%s): requested %s %d out of range: set to %d\n",GB_PROGNAME,typename,ini,1); ini=1; } else if(ini>max){ fprintf(stderr,"WARNING (%s): requested %s %d out of range: set to %d\n",GB_PROGNAME,typename,ini,max); ini=max; } if(fin<1){ fprintf(stderr,"WARNING (%s): requested %s %d out of range: set to %d\n",GB_PROGNAME,typename,fin,1); fin=1; } else if(fin>max){ fprintf(stderr,"WARNING (%s): requested %s %d out of range: set to %d\n",GB_PROGNAME,typename,fin,max); fin=max; } if( ( (ini > fin) && (skip>0) ) || ((ini < fin) && (skip<0)) ){ fprintf(stderr,"WARNING (%s): requested %s out of range: increment reversed\n", GB_PROGNAME,typename); skip=-skip; } } /* assign values */ *indexini = (size_t *) my_realloc((void *) *indexini,(*piecenum)*sizeof(size_t)); *indexfin = (size_t *) my_realloc((void *) *indexfin,(*piecenum)*sizeof(size_t)); *indexskip = (int *) my_realloc((void *) *indexskip,(*piecenum)*sizeof(int)); (*indexini)[(*piecenum)-1]=ini; (*indexfin)[(*piecenum)-1]=fin; (*indexskip)[(*piecenum)-1]=skip; } free(pieces); } void new_matrix(double ***newdata,size_t *columnlength,size_t *rowlength, double ** const vals,const size_t columns,const size_t rows, const char *columnslice,const char *rowslice){ size_t i; size_t cslicenum=0; size_t *cini=NULL; size_t *cfin=NULL; int *cskip=NULL; size_t rslicenum=0; size_t *rini=NULL; size_t *rfin=NULL; int *rskip=NULL; /* read the specs */ parse_slice(columnslice,"column",columns,&cslicenum,&cini,&cfin,&cskip); parse_slice(rowslice,"row",rows,&rslicenum,&rini,&rfin,&rskip); /* decide new matrix dimensions */ *columnlength=0; for(i=0;icini[i] ? cfin[i]-cini[i] : cini[i]-cfin[i])/(cskip[i]>0?cskip[i]:-cskip[i])+1; *rowlength=0; for(i=0;irini[i] ? rfin[i]-rini[i] : rini[i]-rfin[i])/(rskip[i]>0?rskip[i]:-rskip[i])+1; /* for(i=0;i0 ? c < cfin[cs] : c+2 > cfin[cs] ) ;c+=cskip[cs]){ row=0; for(rs=0;rs0 ? r < rfin[rs] : r+2 > rfin[rs] ) ;r+=rskip[rs]){ /* fprintf(stderr,"val[%zd][%zd]=%f -> ", */ /* c,r,vals[c][r]); */ data[column][row]=vals[c][r]; /* fprintf(stderr,"data[%zd][%zd]=%f\n", */ /* column,row,data[column][row]); */ row++; } } column++; } } *newdata=data; } free(cini); free(cfin); free(cskip); free(rini); free(rfin); free(rskip); } void data_transpose(double *** vals,size_t *rows,size_t *columns){ size_t i,j; /* allocate space */ double **newvals = (double **) my_alloc((*rows)*sizeof(double *)); for(i=0;i<*rows;i++){ newvals[i] = (double *) my_alloc((*columns)*sizeof(double)); } /* fill space */ for(i=0;i<*rows;i++) for(j=0;j<*columns;j++) newvals[i][j] = (*vals)[j][i]; /* deallocate old space */ if(*columns>0) for(i=0;i<*columns;i++) free((*vals)[i]); free(*vals); *vals = newvals; /* swap axes */ j=*columns; *columns=*rows; *rows=j; } void data_flat(double *** vals,size_t *rows,size_t *columns){ size_t i,j,index; /* allocate space */ double **newvals = (double **) my_alloc(sizeof(double *)); newvals[0] = (double *) my_alloc((*columns)*(*rows)*sizeof(double)); /* fill space */ index=0; for(i=0;i<*columns;i++) for(j=0;j<*rows;j++) newvals[0][index++] = (*vals)[i][j]; /* deallocate old space */ for(i=0;i<*columns;i++) free((*vals)[i]); free(*vals); *vals = newvals; /* new axes */ *rows=(*columns)*(*rows); *columns=1; } void data_diff(double *** vals,size_t *rows,size_t *columns){ size_t i,j; /* allocate space */ double **newvals = (double **) my_alloc((*columns-1)*sizeof(double *)); for(i=0;i<*columns-1;i++) newvals[i] = (double *) my_alloc((*rows)*sizeof(double)); /* fill space */ for(i=0;i<*columns-1;i++) for(j=0;j<*rows;j++) newvals[i][j] = (*vals)[i+1][j]-(*vals)[i][j]; /* deallocate old space */ if(*columns>0) for(i=0;i<*columns;i++) free((*vals)[i]); free(*vals); *vals = newvals; /* new dimensions */ *columns=*columns-1; } #if defined HAVE_LIBGSL /* handy structure used in computation */ typedef struct function { void *f; size_t argnum; /* char *args[] = { "x" }; */ char **args; /* list of arguments names */ size_t *indeces; /* the index (shift) for each variable */ size_t *lags; /* the lag for each variable */ double *values; /* values used in computation */ size_t maxindex; /* the largest index */ size_t maxlag; /* the largest lag */ } Function; void data_applyfuns(double *** myvals,size_t *myrows,size_t *mycolumns,const char *funslist){ Function *F=NULL; size_t Fnum=0; char *funspecs=strdup(funslist); char *specstart=funspecs,*funspec; /* traslate to more handy names */ double **data=*myvals; size_t columns=*mycolumns; size_t rows=*myrows; /* fprintf(stderr,"func spec=%s\n",funspecs); */ /* parse line for functions specification */ while( (funspec=strsep (&funspecs,";")) != NULL ){ char *piece=strdup (funspec); char *stmp1=piece; char *stmp2; while( (stmp2=strsep (&stmp1,",")) != NULL ){/*take a piece*/ size_t j; char *stmp3 = strdup(stmp2); /* fprintf(stderr,"token:%s\n",stmp3); */ /* allocate new function */ Fnum++; F=(Function *) my_realloc((void *) F,Fnum*sizeof(Function)); /* generate the formal expression */ F[Fnum-1].f = evaluator_create (stmp3); assert(F[Fnum-1].f); free(stmp3); /* retrive list of argument */ { /* hack necessary due to libmatheval propotypes */ int argnum; evaluator_get_variables (F[Fnum-1].f, &(F[Fnum-1].args), &argnum); F[Fnum-1].argnum = (size_t) argnum; } /* compute list of indeces */ F[Fnum-1].indeces = (size_t *) my_alloc(F[Fnum-1].argnum*sizeof(size_t)); F[Fnum-1].lags = (size_t *) my_alloc(F[Fnum-1].argnum*sizeof(size_t)); F[Fnum-1].maxindex=0; F[Fnum-1].maxlag=0; for(j=0;j F[Fnum-1].maxindex) F[Fnum-1].maxindex = (F[Fnum-1].indeces)[j]; /* possibly update the value of the maximum lag */ if( (F[Fnum-1].lags)[j] > F[Fnum-1].maxlag) F[Fnum-1].maxlag = (F[Fnum-1].lags)[j]; /* check index */ if((F[Fnum-1].indeces)[j]> columns){ fprintf(stderr,"ERROR (%s): column %zd not present in data\n", GB_PROGNAME,(F[Fnum-1].indeces)[j]); exit(-1); } /* check lag */ if((F[Fnum-1].lags)[j]> rows){ fprintf(stderr,"ERROR (%s): lag %zd is longer then the data length\n", GB_PROGNAME,(F[Fnum-1].lags)[j]); exit(-1); } } /* allocate list of values */ F[Fnum-1].values = (double *) my_alloc(F[Fnum-1].argnum*sizeof(double)); } free(piece); } free(specstart); /* generate new matrix */ { /* placeholder for new data */ double **newvals; size_t i,j,h; /* double **output = (double **) my_alloc(Fnum*sizeof(double *)); */ /* for(i=0;ifirstrow) firstrow=F[j].maxlag; /* allocate space */ newvals = (double **) my_alloc(Fnum*sizeof(double *)); for(i=0;i0 ? data[F[j].indeces[h]-1][i-F[j].lags[h]] : i+1-F[j].lags[h]); newvals[j][i-firstrow]=evaluator_evaluate (F[j].f,F[j].argnum,F[j].args,F[j].values); } } /* free previous allocated space */ for(i=0;i<*mycolumns;i++) free( (*myvals)[i]); free((*myvals)); /* return newly allocated matrix */ *mycolumns=Fnum; *myrows=rows-firstrow; *myvals = newvals; } } void data_applyfuns_recursive(double *** myvals,size_t *myrows,size_t *mycolumns,const char *funslist){ Function *F=NULL; size_t Fnum=0; char *funspecs=strdup(funslist); char *specstart=funspecs,*funspec; /* traslate to more handy names */ double **data=*myvals; size_t columns=*mycolumns; size_t rows=*myrows; /* fprintf(stderr,"func spec=%s\n",funspecs); */ /* parse line for functions specification */ while( (funspec=strsep (&funspecs,";")) != NULL ){ char *piece=strdup (funspec); char *stmp1=piece; char *stmp2; while( (stmp2=strsep (&stmp1,",")) != NULL ){/*take a piece*/ size_t j; char *stmp3 = strdup(stmp2); /* fprintf(stderr,"token:%s\n",stmp3); */ /* allocate new function */ Fnum++; F=(Function *) my_realloc((void *) F,Fnum*sizeof(Function)); /* generate the formal expression */ F[Fnum-1].f = evaluator_create (stmp3); assert(F[Fnum-1].f); free(stmp3); /* retrive list of argument */ { /* hack necessary due to libmatheval propotypes */ int argnum; evaluator_get_variables (F[Fnum-1].f, &(F[Fnum-1].args), &argnum); F[Fnum-1].argnum = (size_t) argnum; } /* compute list of indeces */ F[Fnum-1].indeces = (size_t *) my_alloc(F[Fnum-1].argnum*sizeof(size_t)); F[Fnum-1].lags = (size_t *) my_alloc(F[Fnum-1].argnum*sizeof(size_t)); F[Fnum-1].maxindex=0; F[Fnum-1].maxlag=0; for(j=0;j F[Fnum-1].maxindex) F[Fnum-1].maxindex = (F[Fnum-1].indeces)[j]; /* possibly update the value of the maximum lag */ if( (F[Fnum-1].lags)[j] > F[Fnum-1].maxlag) F[Fnum-1].maxlag = (F[Fnum-1].lags)[j]; /* check index */ if((F[Fnum-1].indeces)[j]> columns){ fprintf(stderr,"ERROR (%s): column %zd not present in data\n", GB_PROGNAME,(F[Fnum-1].indeces)[j]); exit(-1); } /* check lag */ if((F[Fnum-1].lags)[j]> rows){ fprintf(stderr,"ERROR (%s): lag %zd is longer then the data length\n", GB_PROGNAME,(F[Fnum-1].lags)[j]); exit(-1); } } /* allocate list of values */ F[Fnum-1].values = (double *) my_alloc(F[Fnum-1].argnum*sizeof(double)); } free(piece); } free(specstart); /* generate new matrix */ { /* placeholder for new data */ double **newvals; size_t i,j,l,h; /* double **output = (double **) my_alloc(Fnum*sizeof(double *)); */ /* for(i=0;ifirstrow) firstrow=F[j].maxlag; /* compute the total number of columns */ for(j=0;j0 ? data[l+F[j].indeces[h]-1][i-F[j].lags[h]] : i+1-F[j].lags[h]); newvals[col+l][i-firstrow]=evaluator_evaluate (F[j].f,F[j].argnum,F[j].args,F[j].values); } col+=columns-F[j].maxindex+1; } } /* free previous allocated space */ for(i=0;i<*mycolumns;i++) free( (*myvals)[i]); free((*myvals)); /* allocate new space */ *mycolumns=totalcols; *myrows=rows-firstrow; *myvals=newvals; } } void data_applyselection(double *** myvals,size_t *myrows,size_t *mycolumns,const char *funslist){ Function *F=NULL; size_t Fnum=0; char *funspecs=strdup(funslist); char *specstart=funspecs,*funspec; /* traslate to more handy names */ double **data=*myvals; size_t columns=*mycolumns; size_t rows=*myrows; /* fprintf(stderr,"func spec=%s\n",funspecs); */ /* parse line for functions specification */ while( (funspec=strsep (&funspecs,";")) != NULL ){ char *piece=strdup (funspec); char *stmp1=piece; char *stmp2; while( (stmp2=strsep (&stmp1,",")) != NULL ){/*take a piece*/ size_t j; char *stmp3 = strdup(stmp2); /* fprintf(stderr,"token:%s\n",stmp3); */ /* allocate new function */ Fnum++; F=(Function *) my_realloc((void *) F,Fnum*sizeof(Function)); /* generate the formal expression */ F[Fnum-1].f = evaluator_create (stmp3); assert(F[Fnum-1].f); free(stmp3); /* retrive list of argument */ { /* hack necessary due to libmatheval propotypes */ int argnum; evaluator_get_variables (F[Fnum-1].f, &(F[Fnum-1].args), &argnum); F[Fnum-1].argnum = (size_t) argnum; } /* compute list of indeces */ F[Fnum-1].indeces = (size_t *) my_alloc(F[Fnum-1].argnum*sizeof(size_t)); F[Fnum-1].lags = (size_t *) my_alloc(F[Fnum-1].argnum*sizeof(size_t)); F[Fnum-1].maxindex=0; F[Fnum-1].maxlag=0; for(j=0;j F[Fnum-1].maxindex) F[Fnum-1].maxindex = (F[Fnum-1].indeces)[j]; /* possibly update the value of the maximum lag */ if( (F[Fnum-1].lags)[j] > F[Fnum-1].maxlag) F[Fnum-1].maxlag = (F[Fnum-1].lags)[j]; /* check index */ if((F[Fnum-1].indeces)[j]> columns){ fprintf(stderr,"ERROR (%s): column %zd not present in data\n", GB_PROGNAME,(F[Fnum-1].indeces)[j]); exit(-1); } /* check lag */ if((F[Fnum-1].lags)[j]> rows){ fprintf(stderr,"ERROR (%s): lag %zd is longer then the data length\n", GB_PROGNAME,(F[Fnum-1].lags)[j]); exit(-1); } } /* allocate list of values */ F[Fnum-1].values = (double *) my_alloc(F[Fnum-1].argnum*sizeof(double)); } free(piece); } free(specstart); /* generate new matrix */ { /* placeholder for new data */ double **newvals; size_t newrows; size_t i,j,h; /* double **output = (double **) my_alloc(Fnum*sizeof(double *)); */ /* for(i=0;ifirstrow) firstrow=F[j].maxlag; /* allocate space */ newvals = (double **) my_alloc(columns*sizeof(double *)); for(i=0;i0 ? data[F[j].indeces[h]-1][i-F[j].lags[h]] : i+1); if(evaluator_evaluate (F[j].f,F[j].argnum,F[j].args,F[j].values) >= 0) valid=1; } /* if passed all checks, add it */ if(valid==1){ for(j=0;jtran]\t",*rowlength,*columnlength); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ data_transpose(matrix,rowlength,columnlength); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose==1) fprintf(stderr,"%zdx%zd\n",*rowlength,*columnlength); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ break; case 'f': /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose==1) fprintf(stderr," %zdx%zd\t[->flat]\t",*rowlength,*columnlength); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ data_flat(matrix,rowlength,columnlength); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose==1) fprintf(stderr,"%zdx%zd\n",*rowlength,*columnlength); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ break; case 'l': /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose==1) fprintf(stderr," %zdx%zd\t[-> log]\t",*rowlength,*columnlength); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ { size_t i,j; for(i=0;i<*columnlength;i++) for(j=0;j<*rowlength;j++) (*matrix)[i][j]=log((*matrix)[i][j]); } /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose==1) fprintf(stderr,"%zdx%zd\n",*rowlength,*columnlength); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ break; case 'd': /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose==1) fprintf(stderr," %zdx%zd\t[->diff]\t",*rowlength,*columnlength); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ data_diff(matrix,rowlength,columnlength); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose==1) fprintf(stderr,"%zdx%zd\n",*rowlength,*columnlength); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ break; case 'D': /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose==1) fprintf(stderr," %zdx%zd\t[->denan]\t",*rowlength,*columnlength); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ denan_data(matrix,rowlength,columnlength); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose==1) fprintf(stderr,"%zdx%zd\n",*rowlength,*columnlength); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ break; case 'w': /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose==1) fprintf(stderr," %zdx%zd\t[->norm]\t",*rowlength,*columnlength); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ { size_t i,j; for(i=0;i<*columnlength;i++){ double sum=0; for(j=0;j<*rowlength;j++) if(finite( (*matrix)[i][j] )) sum += (*matrix)[i][j]; for(j=0;j<*rowlength;j++) (*matrix)[i][j]/=sum; } } /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose==1) fprintf(stderr,"%zdx%zd\n",*rowlength,*columnlength); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ break; case 'z': /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose==1) fprintf(stderr," %zdx%zd\t[->detr]\t",*rowlength,*columnlength); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ { size_t i,j; for(i=0;i<*columnlength;i++){ double mean=0; size_t num=0; for(j=0;j<*rowlength;j++) if(finite( (*matrix)[i][j] )){ mean += (*matrix)[i][j]; num++; } mean /= num; for(j=0;j<*rowlength;j++) (*matrix)[i][j]-=mean; } } /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose==1) fprintf(stderr,"%zdx%zd\n",*rowlength,*columnlength); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ break; case 'Z': /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose==1) fprintf(stderr," %zdx%zd\t[->zscr]\t",*rowlength,*columnlength); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ { size_t i,j; for(i=0;i<*columnlength;i++){ double mean=0,stdev=0,error=0,dtmp1; size_t num=0; for(j=0;j<*rowlength;j++) if(finite( (*matrix)[i][j] )) { mean += (*matrix)[i][j]; num++; } mean /= num; for(j=0;j<*rowlength;j++) if(finite( (*matrix)[i][j] )) { error += ( dtmp1= (*matrix)[i][j] - mean); stdev += dtmp1*dtmp1; } stdev = sqrt( (stdev-error*error/num)/(num-1)); for(j=0;j<*rowlength;j++) (*matrix)[i][j]=((*matrix)[i][j]-mean)/stdev; } } /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose==1) fprintf(stderr,"%zdx%zd\n",*rowlength,*columnlength); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ break; case 'P': /* ignored; the data will be printed at the end of this slice */ /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose==1) fprintf(stderr," %zdx%zd\t[print ]\t",*rowlength,*columnlength); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose==1) fprintf(stderr,"%zdx%zd\n",*rowlength,*columnlength); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ break; #if defined HAVE_LIBGSL case '<': { size_t i; char *funslist; /* select the list of functions specification */ for (i=itmp1;imax) max = length[i]; if(length[i]0) matrix_transform(&data,&datanum,&rowlength, finaltransform,o_verbose); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose==1) fprintf(stderr,"output => %zdx%zd\n",rowlength,datanum); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ /* print the result */ PRINTMATRIXBYCOLS(stdout,data,rowlength,datanum); } else{/* final output has columns of different lengths */ /* can't apply final transformations */ if(strlen(finaltransform)>0) fprintf(stderr, "WARNING (%s): cannot transform final output; request ignored\n",GB_PROGNAME); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose==1){ fprintf(stderr,"output (%zd columns of size) =>",datanum); for(i=0;i0) for(i=0;imax then count is reversed \n"); fprintf(stdout," and skip must be negative (-1 by default). Different specs \n"); fprintf(stdout," are separated by semicolon ';' and considered sequentially. \n"); fprintf(stdout," trans is a list of transformations applied to selected data: 'd' \n"); fprintf(stdout," take the diff of subsequent columns; 'D' remove all rows with\n"); fprintf(stdout," at least one Not-A-Number (NAN) entry; 'f' flatten the output\n"); fprintf(stdout," piling all columns; 'l' take log of all entries, 'P' print all\n"); fprintf(stdout," entries collected as a data-block; 't' transpose the matrix \n"); fprintf(stdout," of data; 'z' subtract from the entries in each column their \n"); fprintf(stdout," mean; 'Z' replace the entry in each column with their zscore;\n"); fprintf(stdout," 'w' divide the entry in each columns by their mean. \n\n"); fprintf(stdout," '<..;..>' functions separated by semicolons in angle brackets\n"); fprintf(stdout," can be used for generic data transformation; the function is \n"); fprintf(stdout," computed for each row of data. Variables names are 'x' followed\n"); fprintf(stdout," by the number of the column and optionally by 'l' and the number\n"); fprintf(stdout," of lags. For instance 'x2+x3l1' means the sum of the entries in\n"); fprintf(stdout," the 2nd column plus the entries in the 3rd column in the previous\n"); fprintf(stdout," row. 'x0' stands for the row number and 'x' is equal to 'x1'\n\n"); fprintf(stdout," '<@..;..>' if the functions specification starts with a '@' the\n"); fprintf(stdout," functions are computed recursively along the columns. In this\n"); fprintf(stdout," case the number after the 'x' is the relative column counted \n"); fprintf(stdout," starting from the one considered at each step. \n\n"); fprintf(stdout," '{...}' a function in curly brackets can be use to select data:\n"); fprintf(stdout," only rows that return a non-negative value are retained \n"); fprintf(stdout,"Options: \n"); fprintf(stdout," -F set the input fields separators (default ' \\t') \n"); fprintf(stdout," -o set the output format (default '%%12.6e') \n"); fprintf(stdout," -e set the output format for empty fields (default '%%13s') \n"); fprintf(stdout," -s set the output separation string (default ' ') \n"); fprintf(stdout," -t define global transformations applied before each output (default '')\n"); fprintf(stdout," -v verbose mode\n"); fprintf(stdout,"Examples:\n"); fprintf(stdout," gbget 'file(1:3)ld' select the first three columns in 'file', take the\n"); fprintf(stdout," log and the difference of successive columns;\n"); fprintf(stdout," gbget 'file(2,-10:-1) select the last ten elements of the second'\n"); fprintf(stdout," of 'file' and print their squares\n"); fprintf(stdout," gbget '[2]()' '[1]()' < ... select the second and first data block from the\n"); fprintf(stdout," standard input.\n"); fprintf(stdout," gbget 'file(1:3)' select the first three columns in 'file' and\n"); fprintf(stdout," in each row multiply the first two entries and.\n"); fprintf(stdout," subtract the third.\n"); fprintf(stdout," gbget 'file()<@x1+x2>' print the sum of two subsequent columns\n"); fprintf(stdout," gbget 'file(1:3){x2-2}' select the first three columns in 'file' for the\n"); fprintf(stdout," rows whose second field is not lower then 2 \n"); return(0); } else if(opt=='F'){ /*set the input fields separator string*/ free(splitstring); splitstring = strdup(optarg); } else if(opt=='e'){ /*set the format for empty fields*/ EMPTY = strdup(optarg); } else if(opt=='o'){ /*set the output string */ FLOAT = strdup(optarg); } else if(opt=='s'){ /*set the separator*/ SEP = strdup(optarg); } else if(opt=='t'){ /* set the final transformations */ size_t len1 = strlen(optarg); size_t len2 = strlen(finaltransform); finaltransform = (char *) my_realloc((void *) finaltransform ,(len1+len2+1)*sizeof(char)); strcpy(finaltransform+len2,optarg); } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); /* build the list of space and tabs separated specs */ specsnum=0; for(spec=optind;spec<(size_t) argc;spec++){ char *piece=strdup (argv[spec]); char *stmp1=piece,*stmp2; while( (stmp2=strsep (&stmp1," \t")) != NULL) if(strlen(stmp2) >0){ specsnum++; specs = (char **) my_realloc((void *) specs,specsnum*sizeof(char *)); specs[specsnum-1] = strdup(stmp2); } free(piece); } /* +++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose){ fprintf(stderr,"Output format='%s' Separator='%s' Empty format='%s' Empty string='%s' ", FLOAT,SEP,EMPTY," "); if(o_binary_in || o_binary_out){ fprintf(stderr,"Binary:"); if(o_binary_in) fprintf(stderr," in"); if(o_binary_out) fprintf(stderr," out"); } fprintf(stderr,"\n"); } /* +++++++++++++++++++++++++++++++++++++++++++++ */ /* parse line for data specification */ /* --------------------------------- */ for(spec=0;spec0 ? b < bfin[bs] : b+2 > bfin[bs] );b+=bskip[bs]){ /* create the new matrix */ new_matrix(&newdata,&columnlength,&rowlength, vals[b],columns[b],rows[b],columnslice,rowslice); /* apply transformations to the new matrix */ if(strlen(transform)>0 && strcmp(transform,"P") ) matrix_transform(&newdata,&columnlength,&rowlength, transform,o_verbose); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose==1) fprintf(stderr,"-> %zdx%zd\n",rowlength,columnlength); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ /* add the new matrix to the data */ add_matrix(&data,&length,&datanum, newdata,columnlength,rowlength); /* if P transformation was specified then print data collected so far and restart to collect them */ if(index(transform,'P') != NULL){ /* final transformation and print */ print_data(&datanum, &length, &data, finaltransform,o_verbose); /* add two empty lines in ASCII output */ if(o_binary_out==0) printf("\n\n"); } } } free(bini); free(bfin); free(bskip); } /* free everything */ free(columnslice); free(rowslice); free(blockslice); free(transform); free(newdata); }/* END OF DATA CREATION */ /* free some space */ free(old_filename); free(filename); free(splitstring); if(specsnum>0){ size_t i; for(i=0;i #include #include #include #include #include #include #include /* handy structure used in computation */ typedef struct function { void *f; size_t argnum; char **argname; void **df; void ***ddf; } Function; struct objdata { Function * F; size_t rows; size_t columns; double **data; }; /* Ordinary Least Squares estimation */ /* --------------------------------- */ /* The objective function sumsq= \sum_{i=1}^n f(x_i,\theta )^2, the sum of the squared residuals, is minimized. Under the hypothesis of normally distributed errors the log-likelihood is LL=-n/2-n*log(sumsq/n)-n*log(sqrt(2*pi)) */ int ols_obj_f (const gsl_vector * x, void *params, gsl_vector * f){ const Function *F = ((struct objdata *)params)->F; const size_t rows=((struct objdata *)params)->rows; const size_t columns=((struct objdata *)params)->columns; double **data=((struct objdata *)params)->data; const size_t pnum = x->size; double values[pnum+columns]; size_t i,j; /* set the parameter values */ for(i=columns;if,columns+pnum,F->argname,values)); } return GSL_SUCCESS; } int ols_obj_df (const gsl_vector * x, void *params, gsl_matrix * J){ const Function *F = ((struct objdata *)params)->F; const size_t rows=((struct objdata *)params)->rows; const size_t columns=((struct objdata *)params)->columns; double **data=((struct objdata *)params)->data; const size_t pnum = x->size; double values[pnum+columns]; size_t i,j; for(i=columns;idf)[j],columns+pnum,F->argname,values)); } } return GSL_SUCCESS; } int ols_obj_fdf (const gsl_vector * x, void *params, gsl_vector * f, gsl_matrix * J){ const Function *F = ((struct objdata *)params)->F; const size_t rows=((struct objdata *)params)->rows; const size_t columns=((struct objdata *)params)->columns; double **data=((struct objdata *)params)->data; const size_t pnum = x->size; double values[pnum+columns]; size_t i,j; for(i=columns;if,columns+pnum,F->argname,values)); /* for(j=0;jargname[j],values[j]); */ /* printf("-> %f\n",evaluator_evaluate (F->f,columns+pnum,F->argname,values)); */ for(j=0;jdf)[j],columns+pnum,F->argname,values)); } } return GSL_SUCCESS; } /* compute variance-covariance matrix */ gsl_matrix * ols_varcovar(const int o_varcovar, gsl_multifit_fdfsolver *s, const struct objdata obj, const size_t Pnum){ size_t i,j,h; const size_t rows = obj.rows; const size_t columns = obj.columns; double **data = obj.data; const Function *F = obj.F; const double sumsq = pow(gsl_blas_dnrm2(s->f),2.); const double sigma2 = sumsq/(rows-Pnum); gsl_matrix *covar = gsl_matrix_alloc (Pnum,Pnum); switch(o_varcovar){ case 0: /* inverse "reduced Hessian", as in Numerical Recipes */ { #ifdef GSL_VER_2 gsl_matrix *J = gsl_matrix_alloc(rows, Pnum); gsl_multifit_fdfsolver_jac(s, J); #else gsl_matrix *J = s->J; #endif gsl_multifit_covar (J, 1e-6, covar); gsl_matrix_scale (covar,sigma2); #ifdef GSL_VER_2 gsl_matrix_free (J); #endif } break; case 1: /* J^{-1} */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); int signum; gsl_matrix *J = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dJ = gsl_matrix_calloc (Pnum,Pnum); double f,df1,df2; double values[columns+Pnum]; /* fill with optimal parameter */ for(i=columns;ix,i-columns); /* compute information matrix */ for(i=0;if,columns+Pnum,F->argname,values); for(j=0;jdf)[j],columns+Pnum,F->argname,values); for(h=0;hdf)[h],columns+Pnum,F->argname,values); gsl_matrix_set (dJ,j,h,df1*df2*f*f); } } gsl_matrix_add (J,dJ); } /* invert information matrix; dJ store temporary LU decomp. */ gsl_matrix_memcpy (dJ,J); gsl_linalg_LU_decomp (dJ,P,&signum); gsl_linalg_LU_invert (dJ,P,covar); gsl_matrix_free(J); gsl_matrix_free(dJ); gsl_permutation_free(P); gsl_matrix_scale (covar,sigma2*sigma2); } break; case 2: /* H^{-1} */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); int signum; gsl_matrix *H = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dH = gsl_matrix_calloc (Pnum,Pnum); double f,df1,df2,ddf; double values[columns+Pnum]; /* fill with optimal parameter */ for(i=columns;ix,i-columns); /* compute Hessian */ for(i=0;if,columns+Pnum,F->argname,values); for(j=0;jdf)[j],columns+Pnum,F->argname,values); for(h=0;hdf)[h],columns+Pnum,F->argname,values); ddf = evaluator_evaluate ((F->ddf)[j][h],columns+Pnum,F->argname,values); gsl_matrix_set (dH,j,h,df1*df2+f*ddf); } } gsl_matrix_add (H,dH); } /* invert Hessian; dH store temporary LU decomp. */ gsl_matrix_memcpy (dH,H); gsl_linalg_LU_decomp (dH,P,&signum); gsl_linalg_LU_invert (dH,P,covar); gsl_matrix_free(H); gsl_matrix_free(dH); gsl_permutation_free(P); gsl_matrix_scale (covar,sigma2); } break; case 3: /* H^{-1} J H^{-1} */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); int signum; gsl_matrix *H = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dH = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *J = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dJ = gsl_matrix_calloc (Pnum,Pnum); double f,df1,df2,ddf; double values[columns+Pnum]; /* fill with optimal parameter */ for(i=columns;ix,i-columns); /* compute Hessian and information matrix */ for(i=0;if,columns+Pnum,F->argname,values); for(j=0;jdf)[j],columns+Pnum,F->argname,values); for(h=0;hdf)[h],columns+Pnum,F->argname,values); ddf = evaluator_evaluate ((F->ddf)[j][h],columns+Pnum,F->argname,values); gsl_matrix_set (dH,j,h,df1*df2+f*ddf); gsl_matrix_set (dJ,j,h,df1*df2*f*f); } } gsl_matrix_add (H,dH); gsl_matrix_add (J,dJ); } /* invert Hessian; dH store temporary LU decomp. */ gsl_matrix_memcpy (dH,H); gsl_linalg_LU_decomp (dH,P,&signum); gsl_linalg_LU_invert (dH,P,H); /* dJ = H^{-1} J ; covar = dJ H^{-1} */ gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,H,J,0.0,dJ); gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,dJ,H,0.0,covar); gsl_matrix_free(H); gsl_matrix_free(dH); gsl_matrix_free(J); gsl_matrix_free(dJ); gsl_permutation_free(P); } break; } return covar; } /* Minimum Absolute Deviation (MAD) estimation */ /* ------------------------------------------- */ /* The distribution considered is f(x) = 1/a exp( (x-m)/a ) the objective function becomes obj = 1/n \sum_i |x_i-m| . The log-likelihood reads LL= -n*( 1+ log(2*obj) ). */ double mad_obj_f (const gsl_vector * x, void *params){ const Function *F = ((struct objdata *)params)->F; const size_t rows=((struct objdata *)params)->rows; const size_t columns=((struct objdata *)params)->columns; double **data=((struct objdata *)params)->data; const size_t pnum = x->size; double values[pnum+columns]; size_t i,j; double res=0; /* set the parameter values */ for(i=columns;if,columns+pnum,F->argname,values)); } res/=rows; return res; } /* compute variance-covariance matrix */ gsl_matrix *mad_varcovar(const int o_varcovar, const gsl_multimin_fminimizer *s, const struct objdata params, const size_t Pnum) { size_t i,j,h; const size_t rows=((struct objdata )params).rows; const size_t columns=((struct objdata )params).columns; double **data=((struct objdata )params).data; const Function *F = ((struct objdata )params).F; const double a = s->fval; gsl_matrix *covar = gsl_matrix_alloc (Pnum,Pnum); switch(o_varcovar){ case 0: /* inverse "reduced Hessian", as in Numerical Recipes */ case 1: /* J^{-1} */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); int signum; gsl_matrix *J = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dJ = gsl_matrix_calloc (Pnum,Pnum); double df1,df2; double values[columns+Pnum]; /* fill with optimal parameter */ for(i=columns;ix,i-columns); /* compute information matrix */ for(i=0;idf)[j],columns+Pnum,F->argname,values); for(h=0;hdf)[h],columns+Pnum,F->argname,values); gsl_matrix_set (dJ,j,h,df1*df2); } } gsl_matrix_add (J,dJ); } /* invert information matrix; dJ store temporary LU decomp. */ gsl_matrix_memcpy (dJ,J); gsl_linalg_LU_decomp (dJ,P,&signum); gsl_linalg_LU_invert (dJ,P,covar); gsl_matrix_scale (covar,a*a); gsl_matrix_free(J); gsl_matrix_free(dJ); gsl_permutation_free(P); } break; case 2: /* H^{-1} */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); int signum; gsl_matrix *H = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dH = gsl_matrix_calloc (Pnum,Pnum); double f,df1,df2,ddf; double values[columns+Pnum]; /* fill with optimal parameter */ for(i=columns;ix,i-columns); /* compute Hessian */ for(i=0;if,columns+Pnum,F->argname,values); for(j=0;jdf)[j],columns+Pnum,F->argname,values); for(h=0;hdf)[h],columns+Pnum,F->argname,values); ddf = evaluator_evaluate ((F->ddf)[j][h],columns+Pnum,F->argname,values); gsl_matrix_set (dH,j,h,df1*df2+(f>0 ? 1. : -1.)*a*ddf); } } gsl_matrix_add (H,dH); } /* invert Hessian; dH store temporary LU decomp. */ gsl_matrix_memcpy (dH,H); gsl_linalg_LU_decomp (dH,P,&signum); gsl_linalg_LU_invert (dH,P,covar); gsl_matrix_scale (covar,a*a); gsl_matrix_free(H); gsl_matrix_free(dH); gsl_permutation_free(P); } break; case 3: /* H^{-1} J H^{-1} */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); int signum; gsl_matrix *H = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dH = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *J = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dJ = gsl_matrix_calloc (Pnum,Pnum); double f,df1,df2,ddf; double values[columns+Pnum]; /* fill with optimal parameter */ for(i=columns;ix,i-columns); /* compute Hessian and information matrix */ for(i=0;if,columns+Pnum,F->argname,values); for(j=0;jdf)[j],columns+Pnum,F->argname,values); for(h=0;hdf)[h],columns+Pnum,F->argname,values); ddf = evaluator_evaluate ((F->ddf)[j][h],columns+Pnum,F->argname,values); gsl_matrix_set (dH,j,h,df1*df2+(f>0 ? 1. : -1.)*a*ddf); gsl_matrix_set (dJ,j,h,df1*df2); } } gsl_matrix_add (H,dH); gsl_matrix_add (J,dJ); } /* invert Hessian; dH store temporary LU decomp. */ gsl_matrix_memcpy (dH,H); gsl_linalg_LU_decomp (dH,P,&signum); gsl_linalg_LU_invert (dH,P,H); /* dJ = H^{-1} J ; covar = dJ H^{-1} */ gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,H,J,0.0,dJ); gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,dJ,H,0.0,covar); gsl_matrix_scale (covar,a*a); gsl_matrix_free(H); gsl_matrix_free(dH); gsl_matrix_free(J); gsl_matrix_free(dJ); gsl_permutation_free(P); } break; } return covar; } /* Asymmetric Minimum Absolute Deviation (AMAD) estimation */ /* ------------------------------------------------------- */ /* The distribution considered is / exp( (m-x)/al) if x<0 f(x) = 1/(al+ar) | \ exp( (x-m)/ar ) if x>0 the objective function becomes obj = \sqrt{sumL/nL}+\sqrt{sumR/nR} with sumL = \sum{x_i<0} -x_i ; nL = \sum{x_i<0} 1 sumL = \sum{x_i>0} x_i ; nL = \sum{x_i>0} 1 The log-likelihood reads LL= -n*( 1+2 log(obj) ). */ double amad_obj_f (const gsl_vector * x, void *params){ const Function *F = ((struct objdata *)params)->F; const size_t rows=((struct objdata *)params)->rows; const size_t columns=((struct objdata *)params)->columns; double **data=((struct objdata *)params)->data; const size_t pnum = x->size; double values[pnum+columns]; size_t i,j; double sumL=0,sumR=0; /* set the parameter values */ for(i=columns;if,columns+pnum,F->argname,values); if(dtmp1>0) sumR += dtmp1; else sumL += -dtmp1; } sumL/=rows; sumR/=rows; return sqrt(sumL)+sqrt(sumR); } /* compute variance-covariance matrix */ gsl_matrix *amad_varcovar(const int o_varcovar, const gsl_multimin_fminimizer *s, const struct objdata params, const size_t Pnum) { size_t i,j,h; const size_t rows=((struct objdata )params).rows; const size_t columns=((struct objdata )params).columns; double **data=((struct objdata )params).data; const Function *F = ((struct objdata )params).F; double values[columns+Pnum]; double al,ar; gsl_matrix *covar = gsl_matrix_alloc (Pnum,Pnum); /* compute al,ar at the minimum */ { double sumL=0,sumR=0; /* set the parameter values */ for(i=columns;ix,i-columns); /* set the variables values */ for(i=0;if,columns+Pnum,F->argname,values); if(dtmp1>0) sumR += dtmp1; else sumL += -dtmp1; } sumL/=rows; sumR/=rows; al = sumL+sqrt(sumL*sumR); ar = sumR+sqrt(sumL*sumR); } switch(o_varcovar){ case 0: /* inverse "reduced Hessian", adapted following Numerical Recipes */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); int signum; gsl_matrix *H = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dH = gsl_matrix_calloc (Pnum,Pnum); double df1,df2; /* fill with optimal parameter */ for(i=columns;ix,i-columns); /* compute Hessian */ for(i=0;idf)[j],columns+Pnum,F->argname,values); for(h=0;hdf)[h],columns+Pnum,F->argname,values); gsl_matrix_set (dH,j,h,df1*df2); } } gsl_matrix_add (H,dH); } /* invert Hessian; dH store temporary LU decomp. */ gsl_matrix_memcpy (dH,H); gsl_linalg_LU_decomp (dH,P,&signum); gsl_linalg_LU_invert (dH,P,covar); gsl_matrix_scale (covar,al*ar); gsl_matrix_free(H); gsl_matrix_free(dH); gsl_permutation_free(P); } break; case 1: /* J^{-1} */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); int signum; gsl_matrix *J = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dJ = gsl_matrix_calloc (Pnum,Pnum); double f,df1,df2; /* fill with optimal parameter */ for(i=columns;ix,i-columns); /* compute information matrix */ for(i=0;if,columns+Pnum,F->argname,values); for(j=0;jdf)[j],columns+Pnum,F->argname,values); for(h=0;hdf)[h],columns+Pnum,F->argname,values); gsl_matrix_set (dJ,j,h,df1*df2/(f>0 ? ar*ar : al*al)); } } gsl_matrix_add (J,dJ); } /* invert information matrix; dJ store temporary LU decomp. */ gsl_matrix_memcpy (dJ,J); gsl_linalg_LU_decomp (dJ,P,&signum); gsl_linalg_LU_invert (dJ,P,covar); gsl_matrix_free(J); gsl_matrix_free(dJ); gsl_permutation_free(P); } break; case 2: /* H^{-1} */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); int signum; gsl_matrix *H = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dH = gsl_matrix_calloc (Pnum,Pnum); double f,df1,df2,ddf; /* fill with optimal parameter */ for(i=columns;ix,i-columns); /* compute Hessian */ for(i=0;if,columns+Pnum,F->argname,values); for(j=0;jdf)[j],columns+Pnum,F->argname,values); for(h=0;hdf)[h],columns+Pnum,F->argname,values); ddf = evaluator_evaluate ((F->ddf)[j][h],columns+Pnum,F->argname,values); gsl_matrix_set (dH,j,h,df1*df2+(f>0 ? al : -ar)*ddf); } } gsl_matrix_add (H,dH); } /* invert Hessian; dH store temporary LU decomp. */ gsl_matrix_memcpy (dH,H); gsl_linalg_LU_decomp (dH,P,&signum); gsl_linalg_LU_invert (dH,P,covar); gsl_matrix_scale (covar,al*ar); gsl_matrix_free(H); gsl_matrix_free(dH); gsl_permutation_free(P); } break; case 3: /* H^{-1} J H^{-1} */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); int signum; gsl_matrix *H = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dH = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *J = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dJ = gsl_matrix_calloc (Pnum,Pnum); double f,df1,df2,ddf; /* fill with optimal parameter */ for(i=columns;ix,i-columns); /* compute Hessian and information matrix */ for(i=0;if,columns+Pnum,F->argname,values); for(j=0;jdf)[j],columns+Pnum,F->argname,values); for(h=0;hdf)[h],columns+Pnum,F->argname,values); ddf = evaluator_evaluate ((F->ddf)[j][h],columns+Pnum,F->argname,values); gsl_matrix_set (dH,j,h,df1*df2/(al*ar)+ddf/(f>0 ? ar : -al)); gsl_matrix_set (dJ,j,h,df1*df2/(f>0 ? ar*ar : al*al)); } } gsl_matrix_add (H,dH); gsl_matrix_add (J,dJ); } /* invert Hessian; dH store temporary LU decomp. */ gsl_matrix_memcpy (dH,H); gsl_linalg_LU_decomp (dH,P,&signum); gsl_linalg_LU_invert (dH,P,H); /* dJ = H^{-1} J ; covar = dJ H^{-1} */ gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,H,J,0.0,dJ); gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,dJ,H,0.0,covar); gsl_matrix_free(H); gsl_matrix_free(dH); gsl_matrix_free(J); gsl_matrix_free(dJ); gsl_permutation_free(P); } break; } return covar; } int main(int argc,char* argv[]){ int i; char *splitstring = strdup(" \t"); int o_verbose=0; int o_output=0; int o_varcovar=0; int o_method=0; /* data from sdtin */ size_t rows=0,columns=0; double **data=NULL; /* definition of the function */ Function F; char **Param=NULL; double *Pval=NULL; gsl_matrix *Pcovar=NULL; /* covariance matrix */ size_t Pnum=0; /* minimization tolerance */ double eps=1e-5; size_t maxiter=500; double restart_accuracy=1e-5; size_t restart_maxiter=2000; /* variables for reading command line options */ /* ------------------------------------------ */ int opt; /* ------------------------------------------ */ /* initialize global variables */ initialize_program(argv[0]); /* COMMAND LINE PROCESSING */ while((opt=getopt_long(argc,argv,"v:hF:O:V:M:e:E:I:i:",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='h'){ /*print help*/ fprintf(stdout,"Non linear least square regression. Read data in columns (X_1 .. X_N).\n"); fprintf(stdout,"The model is specified by a function f(x1,x2...) using variables names\n"); fprintf(stdout,"x1,x2,..,xN for the first, second .. N-th column of data. f(x1,x2,...)\n"); fprintf(stdout,"are assumed i.i.d.\n"); fprintf(stdout,"\nUsage: %s [options] \n\n",argv[0]); fprintf(stdout,"Options:\n"); fprintf(stdout," -O type of output (default 0)\n"); fprintf(stdout," 0 parameters \n"); fprintf(stdout," 1 parameters and errors \n"); fprintf(stdout," 2 and residuals \n"); fprintf(stdout," 3 parameters and variance matrix \n"); fprintf(stdout," 4 parameters, errors and s-scores\n"); fprintf(stdout," -V variance matrix estimation (default 0)\n"); fprintf(stdout," 0 \n"); fprintf(stdout," 1 < J^{-1} > \n"); fprintf(stdout," 2 < H^{-1} > \n"); fprintf(stdout," 3 < H^{-1} J H^{-1} > \n"); fprintf(stdout," -v verbosity level (default 0)\n"); fprintf(stdout," 0 just results \n"); fprintf(stdout," 1 comment headers \n"); fprintf(stdout," 2 summary statistics \n"); fprintf(stdout," 3 covariance matrix \n"); fprintf(stdout," 4 minimization steps \n"); fprintf(stdout," 5 model definition \n"); fprintf(stdout," -M estimation method (default 0)\n"); fprintf(stdout," 0 ordinary least square (OLS) \n"); fprintf(stdout," 1 minimum absolute deviation (MAD)\n"); fprintf(stdout," 2 asymmetric MAD \n"); fprintf(stdout," -e minimization tolerance (default 1e-5)\n"); fprintf(stdout," -i minimization max iterations (default 500) \n"); fprintf(stdout," -E restart accuracy (default 1e-5, ignored with option -M 0)\n"); fprintf(stdout," -I restart max iterations (default 2000, ignored with option -M 0)\n"); fprintf(stdout," -F input fields separators (default \" \\t\")\n"); fprintf(stdout," -h this help \n"); return(0); } else if(opt=='e'){ /* set the minimization tolerance */ eps = fabs(atof(optarg)); } else if(opt=='E'){ /* set the accuracy of the simplex (method 1 and 2) */ restart_accuracy = fabs(atof(optarg)); } else if(opt=='i'){ /* maximum number of iterations for the optimizer */ maxiter = atoi(optarg); } else if(opt=='I'){ /* maximum number of iterations for restarting */ restart_maxiter = atoi(optarg); } else if(opt=='F'){ /*set the fields separator string*/ free(splitstring); splitstring = strdup(optarg); } else if(opt=='M'){ /*set the estimation method*/ o_method = atoi(optarg); if(o_method<0 || o_method>2){ fprintf(stderr,"ERROR (%s): method option '%d' not recognized. Try option -h.\n", GB_PROGNAME,o_method); exit(-1); } } else if(opt=='O'){ /* set the type of output */ o_output = atoi(optarg); if(o_output<0 || o_output>4){ fprintf(stderr,"ERROR (%s): output option '%d' not recognized. Try option -h.\n", GB_PROGNAME,o_output); exit(-1); } } else if(opt=='V'){ /* set the type of covariance */ o_varcovar = atoi(optarg); if(o_varcovar<0 || o_varcovar>3){ fprintf(stderr,"ERROR (%s): variance option '%d' not recognized. Try option -h.\n", GB_PROGNAME,o_varcovar); exit(-1); } } else if(opt=='v'){ o_verbose = atoi(optarg); } } /* END OF COMMAND LINE PROCESSING */ /* load data */ loadtable(&data,&rows,&columns,0,splitstring); /* parse line for functions and variables specification */ if(optind == argc){ fprintf(stderr,"ERROR (%s): please provide a function to fit.\n", GB_PROGNAME); exit(-1); } for(i=optind;i0 && strlen(stmp4)>0){ Pnum++; Param=(char **) my_realloc((void *) Param,Pnum*sizeof(char *)); Pval=(double *) my_realloc((void *) Pval,Pnum*sizeof(double)); Param[Pnum-1] = strdup(stmp5); Pval[Pnum-1] = atof(stmp4); } } else{ /* allocate new function */ F.f = evaluator_create (stmp3); assert(F.f); } free(stmp3); } free(piece); } /* check that everything is correct */ if(Pnum==0){ fprintf(stderr,"ERROR (%s): please provide a parameter to estimate.\n", GB_PROGNAME); exit(-1); } { size_t i,j; char **NewParam=NULL; double *NewPval=NULL; size_t NewPnum=0; char **storedname=NULL; size_t storednum=0; /* retrive list of arguments and their number */ /* notice that storedname is not allocated */ { int argnum; evaluator_get_variables (F.f,&storedname,&argnum); storednum = (size_t) argnum; } /* check the definition of the function */ for(i=0;i0?atoi(stmp1+1):0); if(index>columns){ fprintf(stderr,"ERROR (%s): column %zd not present in data\n", GB_PROGNAME,index); exit(-1); } } else { for(j=0;j1){ F.ddf = (void ***) my_alloc(Pnum*sizeof(void **)); for(i=0;i4){ size_t i,j; fprintf(stderr," ------------------------------------------------------------\n"); fprintf(stderr," Model [xi: i-th data column]:\n"); switch(o_method){ case 0: fprintf(stderr," %s ~ i.i.d. N(0,stdev) \n", evaluator_get_string (F.f) ); break; case 1: fprintf(stderr," %s ~ i.i.d. L(0,sdev) \n", evaluator_get_string (F.f) ); break; case 2: fprintf(stderr," %s ~ i.i.d. L(0,a_l,a_r) \n", evaluator_get_string (F.f) ); break; } fprintf (stderr,"\n Parameters and initial conditions:\n"); for(i=0;i1){ fprintf (stderr,"\n Model second derivatives:\n"); for(i=0;i3){ fprintf(stderr," ------------------------------------------------------------\n"); fprintf(stderr," Iter "); for(i=0;if); do { double f,g,df,dg; solver_status = gsl_multifit_fdfsolver_iterate (s); /* compute increment in object and estimates */ f=gsl_blas_dnrm2 (s->f); df=fabs(oldf-f); oldf=f; g=gsl_blas_dnrm2 (s->x); dg=gsl_blas_dnrm2 (s->dx); iter++; /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ /* print status */ if(o_verbose>3){ fprintf (stderr,"%3zd ",iter); for(i=0;ix, i)); fprintf (stderr," %8.5e %8.5e %8.5e %8.5e %s\n", f,df,g,dg,gsl_strerror (solver_status)); } /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ /* if (status) */ /* break; */ /* check condition on estimates precision */ if( estimate_status == GSL_CONTINUE && dg < eps && dg < eps*g ) estimate_status = GSL_SUCCESS; /* check condition of object convergence */ if( object_status == GSL_CONTINUE && df < eps && df < eps*fabs(f) ) object_status = GSL_SUCCESS; } while ( (estimate_status == GSL_CONTINUE || object_status == GSL_CONTINUE) && iter < maxiter); if(iter == maxiter && (estimate_status == GSL_CONTINUE || object_status == GSL_CONTINUE) ) fprintf(stderr,"WARNING (%s): maximum number of iterations without convergence.\n", GB_PROGNAME); /* store final values */ for(i=0;ix,i); /* build the covariance matrix */ if(o_output>0 || o_verbose>2) Pcovar= ols_varcovar(o_varcovar,s,param,Pnum); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose>1){ const double sumsq = pow(gsl_blas_dnrm2(s->f),2); const double sigma = sqrt(sumsq/(rows-Pnum)); const double LL= -(1+log(sumsq/rows)+log(2*M_PI) )*0.5*rows; /* n.b.: the baseline model is NOT params=0 BUT params=initial condition */ const double R2=1-sumsq/pow(sumrootsq0,2); const double R2adj=1-(sumsq/(rows-Pnum-1))/(pow(sumrootsq0,2.)/(rows-1)); const double F=((rows-Pnum-1)/Pnum)*R2/(1-R2); fprintf(stderr," ------------------------------------------------------------\n"); fprintf(stderr," number of observations = %zd\n",rows); fprintf(stderr," sum of squared residual (SSR) = %g\n",sumsq); fprintf(stderr," number degrees of freedom (ndf) = %zd\n",rows-Pnum); fprintf(stderr," residuals stdev sqrt(SSR/ndf) = %g\n",sigma); fprintf(stderr," R^2 (sum sq. initial /sum sq. estimated) = %g\n",R2); fprintf(stderr," adjusted R^2 = %g\n",R2adj); fprintf(stderr," F statistics = %g\n",F); fprintf(stderr," One-sided P-value: Pr{stat>obs.} = %g\n",gsl_cdf_chisq_Q(Pnum*F,Pnum)); fprintf(stderr," chi-square test P(>SSR | ndf) = %g\n", gsl_cdf_chisq_Q (sumsq,rows-Pnum)); fprintf(stderr," log-likelihood log(L) = %g\n",LL); fprintf(stderr," Akaike information criterion AIC = %g\n",2*Pnum-2*LL ); fprintf(stderr," corrected Akaike criterion AICc = %g\n", (2*Pnum*(Pnum+1))/(rows-Pnum-1)+2*Pnum-2*LL); fprintf(stderr," Bayesian information criterion BIC = %g\n",Pnum*log(rows)-2*LL); fprintf(stderr," Hannan–Quinn criterion HQC = %g\n", 2*Pnum*log(log(rows))+rows*log(sumsq/rows) ); } /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ /* free space */ gsl_multifit_fdfsolver_free (s); } else if (o_method == 1){ const gsl_multimin_fminimizer_type *T = gsl_multimin_fminimizer_nmsimplex2; gsl_multimin_fminimizer *s = NULL; gsl_vector *x = gsl_vector_alloc (Pnum); gsl_vector *x0 = gsl_vector_alloc (Pnum); gsl_vector *ss = gsl_vector_calloc(Pnum); int converged; size_t totiter=0; gsl_multimin_function obj; /* set minimizer initial condition */ struct objdata param; /* set the parameter for the function */ param.F = &F; param.rows = rows; param.columns = columns; param.data =data ; /* set the object structure */ obj.f = &mad_obj_f; obj.n = Pnum; obj.params = ¶m; /* allocate the solver */ s = gsl_multimin_fminimizer_alloc (T, Pnum); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose>3){ size_t i; fprintf(stderr," ------------------------------------------------------------\n"); fprintf(stderr," Stopping criteria: max{simplex size} < %g\n\n",eps); fprintf(stderr," Iter "); for(i=0;idata)[i] = 0.05*fabs(gsl_vector_get(x,i))+0.0075; /* initialize the solver */ gsl_multimin_fminimizer_set (s, &obj,x, ss); /* not converged yet */ converged=0; do { status = gsl_multimin_fminimizer_iterate(s); const double size = gsl_multimin_fminimizer_size (s); iter++; /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ /* print status */ if(o_verbose>3){ fprintf (stderr,"%3zd ",iter); for(i=0;ix, i)); fprintf (stderr," %8.5e %8.5e %s\n", s->fval,size,gsl_strerror (status)); } /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ status=gsl_multimin_test_size (size,eps); } while (status == GSL_CONTINUE && iter < maxiter); /* x = x-s->x */ gsl_blas_daxpy (-1,s->x,x); /* norm_diff = ||x-s->x|| */ norm_diff=gsl_blas_dnrm2 (x); if( norm_diff < restart_accuracy ){ converged = 1; /* store final values */ for(i=0;ix,i); } /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ /* print status */ if(o_verbose>3){ fprintf (stderr," min=%8.10e ||x-x_old||=%8.5e =>",s->fval,norm_diff); if(converged==0) fprintf (stderr," restart\n"); else fprintf (stderr," converged\n"); } /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ /* update the initial point: x = s->x */ if(converged==0){ gsl_vector_memcpy (x,s->x); totiter += iter; } if(totiter >= restart_maxiter) fprintf(stderr,"WARNING (%s): maximum number of iterations without convergence. final tolerance = %f\n", GB_PROGNAME,norm_diff); } while (converged == 0 && totiter < restart_maxiter); /* store final values */ for(i=0;ix,i); /* build the covariance matrix */ if(o_output>0 || o_verbose>2) Pcovar = mad_varcovar(o_varcovar,s,param,Pnum); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose>1){ double values[Pnum+columns]; size_t i,j; double residuals[rows]; double ll0,D,SC95; const double LL= -(1+log(2*s->fval))*rows; /* compute the absolute deviation with initial parameters; remember that the objective function is already divided by the number of observations */ ll0=obj.f(x0,¶m); /* compute the residual with estimated parameters */ for(i=columns;ifval)*rows/SC95; fprintf(stderr," ------------------------------------------------------------\n"); fprintf(stderr," number of observations = %zd\n",rows); fprintf(stderr," average absolute residuals a = %g\n",s->fval); /* fprintf(stderr," conf. int. median of res. (p=0.95) SC95 = %f\n",SC95); */ fprintf(stderr," Shrader-McKean statistics D = %g\n",D); fprintf(stderr," One-sided P-value: Pr{stat>obs.} = %g\n",gsl_cdf_chisq_Q(D,Pnum)); fprintf(stderr," McKean-Sievers coeff. of determination R2 = %g\n",(ll0-s->fval)/(ll0-s->fval+(rows-Pnum-1)*SC95/(2*rows))); fprintf(stderr," log-likelihood log(L) = %g\n",LL); fprintf(stderr," Akaike information criterion AIC = %g\n",2*Pnum-2*LL ); fprintf(stderr," corrected Akaike criterion AICc = %g\n", (2*Pnum*(Pnum+1))/(rows-Pnum-1)+2*Pnum-2*LL); fprintf(stderr," Bayesian information criterion BIC = %g\n",Pnum*log(rows)-2*LL); } /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ /* free space */ gsl_vector_free(ss); gsl_multimin_fminimizer_free (s); } else if (o_method == 2){ const gsl_multimin_fminimizer_type *T = gsl_multimin_fminimizer_nmsimplex2; gsl_multimin_fminimizer *s = NULL; gsl_vector *x = gsl_vector_alloc (Pnum); gsl_vector *ss = gsl_vector_calloc(Pnum); int converged; size_t totiter=0; gsl_multimin_function obj; /* set minimizer initial condition */ struct objdata param; /* set the parameter for the function */ param.F = &F; param.rows = rows; param.columns = columns; param.data =data ; /* set the object structure */ obj.f = &amad_obj_f; obj.n = Pnum; obj.params = ¶m; /* allocate the solver */ s = gsl_multimin_fminimizer_alloc (T, Pnum); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose>3){ size_t i; fprintf(stderr," ------------------------------------------------------------\n"); fprintf(stderr," Stopping criteria: max{simplex size} < %g\n\n",eps); fprintf(stderr," Iter "); for(i=0;idata)[i] = 0.05*fabs(gsl_vector_get(x,i))+0.0075; /* initialize the solver */ gsl_multimin_fminimizer_set (s, &obj,x, ss); /* not converged yet */ converged=0; do { status = gsl_multimin_fminimizer_iterate(s); const double size = gsl_multimin_fminimizer_size (s); iter++; /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ /* print status */ if(o_verbose>3){ fprintf (stderr,"%3zd ",iter); for(i=0;ix, i)); fprintf (stderr," %8.5e %8.5e %s\n", s->fval,size,gsl_strerror (status)); } /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ status=gsl_multimin_test_size (size,eps); } while (status == GSL_CONTINUE && iter < maxiter); /* x = x-s->x */ gsl_blas_daxpy (-1,s->x,x); /* norm_diff = ||x-s->x|| */ norm_diff=gsl_blas_dnrm2 (x); if( norm_diff < restart_accuracy ){ converged = 1; /* store final values */ for(i=0;ix,i); } /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ /* print status */ if(o_verbose>3){ fprintf (stderr," min=%8.10e ||x-x_old||=%8.5e =>",s->fval,norm_diff); if(converged==0) fprintf (stderr," restart\n"); else fprintf (stderr," converged\n"); } /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ /* update the initial point: x = s->x */ if(converged==0){ gsl_vector_memcpy (x,s->x); totiter += iter; } if(totiter >= restart_maxiter) fprintf(stderr,"WARNING (%s): maximum number of iterations without convergence. final tolerance = %f\n", GB_PROGNAME,norm_diff); } while (converged == 0 && totiter < restart_maxiter); /* build the covariance matrix, if needed */ if(o_output>0 || o_verbose>2) Pcovar = amad_varcovar(o_varcovar,s,param,Pnum); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose>1){ double values[Pnum+columns]; size_t i,j; double sumL=0,sumR=0,al,ar,dtmp1; const double LL= -(1+2*log(s->fval))*rows; fprintf(stderr," ------------------------------------------------------------\n"); /* compute sumL and sumR at the minimum */ for(i=columns;i0) sumR += dtmp1; else sumL += -dtmp1; } sumL/=rows; sumR/=rows; al = sumL+sqrt(sumL*sumR); ar = sumR+sqrt(sumL*sumR); fprintf(stderr," number of observations = %zd\n",rows); fprintf(stderr," square root sum of left residuals srqrt(S_L) = %g\n",sqrt(sumL)); fprintf(stderr," square root sum of right residuals srqrt(S_R) = %g\n",sqrt(sumR)); fprintf(stderr," sqrt(S_L)+ srqrt(S_R) = %g\n",s->fval); fprintf(stderr," a_L = %g\n",al); fprintf(stderr," a_R = %g\n",ar); fprintf(stderr," log-likelihood log(L) = %g\n",LL); fprintf(stderr," Akaike information criterion AIC = %g\n",2*Pnum-2*LL ); fprintf(stderr," corrected Akaike criterion AICc = %g\n", (2*Pnum*(Pnum+1))/(rows-Pnum-1)+2*Pnum-2*LL); fprintf(stderr," Bayesian information criterion BIC = %g\n",Pnum*log(rows)-2*LL); } /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ /* free space */ gsl_multimin_fminimizer_free (s); gsl_vector_free(ss); gsl_vector_free(x); } /* output */ /* ------ */ /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose>2){ size_t i,j; fprintf(stderr," ------------------------------------------------------------\n"); fprintf(stderr," variance matrix = "); switch(o_varcovar){ case 0: fprintf(stderr,"\n"); break; case 1: fprintf(stderr,"J^{-1}\n"); break; case 2: fprintf(stderr,"H^{-1}\n"); break; case 3: fprintf(stderr,"H^{-1} J H^{-1}\n"); break; } fprintf(stderr,"\n"); for(i=0;i1) fprintf(stderr," ------------------------------------------------------------\n"); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ switch(o_output){ case 0: { size_t i; /* +++++++++++++++++++++++++++++++++++ */ if(o_verbose>0){ fprintf(stdout,"#"); for(i=0;i0){ fprintf(stdout,"#"); for(i=0;i0){ fprintf(stderr,"#"); for(i=0;i0){ fprintf(stdout,"#"); for(i=0;i0){ fprintf(stdout,"#"); for(i=0;i0){ fprintf(stdout,"#"); for(i=0;i max[0]){ max[0] = dtmp0; } if(dtmp1 < min[1]){ min[1] = dtmp1; } else if(dtmp1 > max[1]){ max[1] = dtmp1; } } } /* choose the kernel to use */ switch(o_kerneltype){ case 0: K=Kepanechnikov2d; Kscale=2.40; break; case 1: K=Krectangular2d; break; case 2: K=Ksilverman2d_1; Kscale=2.78; break; case 3: K=Ksilverman2d_2; Kscale=3.12; break; default: fprintf(stdout,"unknown kernel; use %s -h\n",argv[0]); exit(+1); } /* the parameter h is not provided on command line it is set by an automatic procedure [Silverman p.86] */ if(o_setbandwidth == 0){ if(o_devariate == 1){ h[0]=scale[0]*Kscale/pow(size,1./6); h[1]=scale[1]*Kscale/pow(size,1./6); } else{ h[0]=sdev[0]*scale[0]*Kscale/pow(size,1./6); h[1]=sdev[1]*scale[1]*Kscale/pow(size,1./6); } } /* ++++++++++++++++++++++++++++ */ if(o_verbose == 1){ fprintf(stdout,"---- Density Parameters ------------\n"); /* data treatment */ fprintf(stdout,"de-variation "); if(o_devariate == 1) fprintf(stdout,"yes (detJ=%+.3e)",detJ); else fprintf(stdout,"no"); fprintf(stdout,"\n"); /* kernel type */ fprintf(stdout,"kernel type "); switch(o_kerneltype){ case 0: fprintf(stdout,"Epanechnikov"); break; case 1: fprintf(stdout,"Rectangular"); break; case 2: fprintf(stdout,"Silverman type 1"); break; case 3: fprintf(stdout,"Silverman type 2"); break; } fprintf(stdout,"\n"); /* bandwidth */ fprintf(stdout,"x bandwidth %.3e ",h[0]); if(o_setbandwidth == 0){ fprintf(stdout,"(automatic with A=%.2f ",Kscale); if(scale[0] != 1 ) fprintf(stdout,"scaled by %f",scale[0]); fprintf(stdout,")"); } else{ fprintf(stdout,"(provided)"); } fprintf(stdout,"\n"); fprintf(stdout,"y bandwidth %.3e ",h[1]); if(o_setbandwidth == 0){ fprintf(stdout,"(automatic with A=%.2f ",Kscale); if(scale[1] != 1 ) fprintf(stdout,"scaled by %f",scale[1]); fprintf(stdout,")"); } else{ fprintf(stdout,"(provided)"); } fprintf(stdout,"\n"); fprintf(stdout,"\n"); } /* ++++++++++++++++++++++++++++ */ /* the boundaries of the interval are set to have a=xmin b=xmax */ /* delta[0] = eta[0]*(max[0]-min[0])/( M[0] -1. ); */ /* delta[1] = eta[1]*(max[1]-min[1])/( M[1] -1. ); */ /* a[0] = min[0]+.5*(1.-eta[0])*(max[0]-min[0]); */ /* a[1] = min[1]+.5*(1.-eta[1])*(max[1]-min[1]); */ /* the boundaries of the interval are set to have a=xmin-delta/2 b=xmax+delta/2 */ delta[0] = (max[0]-min[0])/( M[0] -2. ); delta[1] = (max[1]-min[1])/( M[1] -2. ); a[0] = min[0]-.5*delta[0]; a[1] = min[1]-.5*delta[1]; J[0] = (size_t) floor(h[0]/delta[0]); J[1] = (size_t) floor(h[1]/delta[1]); /* define the range on which to print */ infidx[0] = (int) nearbyint(.5*(1.-eta[0])*M[0]); supidx[0] = M[0]-(int) nearbyint(.5*(1.-eta[0])*M[0])-1; infidx[1] = (int) nearbyint(.5*(1.-eta[1])*M[1]); supidx[1] = M[1]-(int) nearbyint(.5*(1.-eta[1])*M[1])-1; /* ++++++++++++++++++++++++++++ */ if(o_verbose == 1){ /* binning */ fprintf(stdout,"---- Binning Structure ------------\n"); fprintf(stdout," #bins bins range delta J printed range\n"); fprintf(stdout,"x: %zd [%+.2e,%+.2e] %+.2e %zd [%+.2e,%+.2e]\n", M[0],a[0],a[0]+(M[0]-1)*delta[0],delta[0],J[0], a[0]+infidx[0]*delta[0],a[0]+supidx[0]*delta[0]); fprintf(stdout,"y: %zd [%+.2e,%+.2e] %+.2e %zd [%+.2e,%+.2e]\n", M[1],a[1],a[1]+(M[1]-1)*delta[1],delta[1],J[1], a[1]+infidx[1]*delta[1],a[1]+supidx[1]*delta[1]); fprintf(stdout,"\n"); } /* ++++++++++++++++++++++++++++ */ /* set the values of the kernel */ { double check=0.0; Kvals = (double *) my_alloc((2*J[0]+1)*(2*J[1]+1)*sizeof(double)); for(i=0;i<=2*J[0];i++){ const double dtmp0 = (int) i- (int) J[0]; for(j=0;j<=2*J[1];j++){ const double dtmp1 = (int) j- (int) J[1]; const double dtmp2 = dtmp0*dtmp0*delta[0]*delta[0]/(h[0]*h[0])+ dtmp1*dtmp1*delta[1]*delta[1]/(h[1]*h[1]) ; check += Kvals[i*(2*J[1]+1)+j] = K(dtmp2)/(h[0]*h[1]); } } /* ++++++++++++++++++++++++++++ */ if(o_verbose == 1){ /* binning */ fprintf(stdout,"---- Final Checks -----------------\n"); fprintf(stdout,"sum of kernel coeff. (~1): %e\n",check*(delta[0]*delta[1])); } /* ++++++++++++++++++++++++++++ */ } /* allocate the bins */ csi = (double *) my_alloc(M[0]*M[1]*sizeof(double)); csiz = (double *) my_alloc(M[0]*M[1]*sizeof(double)); if(o_sdev||o_skew||o_kurt) csiz2 = (double *) my_alloc(M[0]*M[1]*sizeof(double)); if(o_skew) csiz3 = (double *) my_alloc(M[0]*M[1]*sizeof(double)); if(o_kurt) csiz4 = (double *) my_alloc(M[0]*M[1]*sizeof(double)); /* prepare the binning */ for(i=0;i= M[0]-1 || index1 >= M[1]-1){ fprintf(stdout,"%zd %zd skipped!\n",index0,index1); continue; } csi[index0*M[1]+index1]+=(1.-epsilon0)*(1.-epsilon1); csi[index0*M[1]+index1+1]+=(1.-epsilon0)*epsilon1; csi[(index0+1)*M[1]+index1]+=epsilon0*(1.-epsilon1); csi[(index0+1)*M[1]+index1+1]+=epsilon0*epsilon1; csiz[index0*M[1]+index1]+=dtmp2*(1.-epsilon0)*(1.-epsilon1); csiz[index0*M[1]+index1+1]+=dtmp2*(1.-epsilon0)*epsilon1; csiz[(index0+1)*M[1]+index1]+=dtmp2*epsilon0*(1.-epsilon1); csiz[(index0+1)*M[1]+index1+1]+=dtmp2*epsilon0*epsilon1; if(o_sdev || o_skew || o_kurt){ dtmp3 = dtmp2*dtmp2; csiz2[index0*M[1]+index1]+=dtmp3*(1.-epsilon0)*(1.-epsilon1); csiz2[index0*M[1]+index1+1]+=dtmp3*(1.-epsilon0)*epsilon1; csiz2[(index0+1)*M[1]+index1]+=dtmp3*epsilon0*(1.-epsilon1); csiz2[(index0+1)*M[1]+index1+1]+=dtmp3*epsilon0*epsilon1; } if(o_skew){ csiz3[index0*M[1]+index1]+=dtmp2*dtmp3*(1.-epsilon0)*(1.-epsilon1); csiz3[index0*M[1]+index1+1]+=dtmp2*dtmp3*(1.-epsilon0)*epsilon1; csiz3[(index0+1)*M[1]+index1]+=dtmp2*dtmp3*epsilon0*(1.-epsilon1); csiz3[(index0+1)*M[1]+index1+1]+=dtmp2*dtmp3*epsilon0*epsilon1; } if(o_kurt){ csiz4[index0*M[1]+index1]+=dtmp3*dtmp3*(1.-epsilon0)*(1.-epsilon1); csiz4[index0*M[1]+index1+1]+=dtmp3*dtmp3*(1.-epsilon0)*epsilon1; csiz4[(index0+1)*M[1]+index1]+=dtmp3*dtmp3*epsilon0*(1.-epsilon1); csiz4[(index0+1)*M[1]+index1+1]+=dtmp3*dtmp3*epsilon0*epsilon1; } } /* normalization */ for(i=0;i0?i-Jx:0); const int max0 = (i+Jx>Mx-1?Mx-1:i+Jx); for(j=infidx[1];j<=supidx[1];j++){ const double tmpy = a[1]+j*delta[1]; const int min1 = (j-Jy>0?j-Jy:0); const int max1 = (j+Jy>My-1?My-1:j+Jy); double x,y,z=0,z2=0,z3=0,z4=0,ker=0; for(l=min0;l<=max0;l++){ for(m=min1;m<=max1;m++){ const double kval= Kvals[(i-l+Jx)*(2*Jy+1)+(j-m+Jy)]; ker+=kval*csi[l*My+m]; z += kval*csiz[l*My+m]; if(o_sdev || o_skew || o_kurt) z2+=kval*csiz2[l*My+m]; if(o_skew) z3+=kval*csiz3[l*My+m]; if(o_kurt) z4+=kval*csiz4[l*My+m]; } } check+=ker; /* compute and print x,y coordinates */ if(o_devariate == 1){ x = (tmpx*cphi-tmpy*sphi)*sdev[0]+ave[0]; y = (tmpy*cphi-tmpx*sphi)*sdev[1]+ave[1]; } else{ x = tmpx; y = tmpy; } printf(FLOAT_SEP,x); printf(FLOAT_SEP,y); if(o_mean) printf(FLOAT_SEP,(ker>0 ? z/ker : NAN)); if(o_sdev) printf(FLOAT_SEP,(ker>0?sqrt(fabs(z2/ker-z*z/(ker*ker))):NAN)); if(o_skew){ if(ker>0){ const double mz= z/ker; const double vz= fabs(z2/ker-mz*mz); printf(FLOAT_SEP,(z3/ker-3.*mz*z2/ker+2.*mz*mz*mz)/pow(vz,1.5)); } else printf(EMPTY_SEP,"NAN"); } if(o_kurt){ if(ker>0){ const double mz= z/ker; const double vz= fabs(z2/ker-mz*mz); printf(FLOAT_SEP,(z4/ker-4.*mz*z3/ker+6.*mz*mz*z2/ker-3.*mz*mz*mz*mz)/(vz*vz)-3.); } else printf(EMPTY_SEP,"NAN"); } printf("\n"); } printf("\n"); } /* ++++++++++++++++++++++++++++ */ if(o_verbose == 1){ fprintf(stdout,"sum of discrete density (~1): %e\n",check*delta[0]*delta[1]); } /* ++++++++++++++++++++++++++++ */ } exit(0); } gbutils-5.7.1/gbkreg.10000644000175000017500000000436413246755335011465 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBKREG "1" "March 2018" "gbkreg 5.7.1" "User Commands" .SH NAME gbkreg \- Kernel non linear regression function .SH SYNOPSIS .B gbkreg [\fI\,options\/\fR] .SH DESCRIPTION Kernel estimation of conditional moments. Data are read from standard input as couple (x,y). The moments of y are computed on a regular grid in x. The kernel bandwidth, if not provided with the option \fB\-H\fR, is set automatically. .SH OPTIONS .TP \fB\-n\fR number of equispaced points where moments are computed (default 64) .TP \fB\-H\fR set the kernel bandwidth .TP \fB\-S\fR scale the automatic kernel bandwidth .TP \fB\-K\fR choose the kernel to use (default 0) .TP 0 Epanenchnikov .TP 1 Rectangular .TP 2 Gaussian .TP \fB\-M\fR choose the method to compute the density (default 1) .TP 0 FFT (number of points rounded to nearest power of 2) .TP 1 discrete convolution (only with compact kernels) .TP 2 explicit summation (can be long) .TP \fB\-O\fR set the output, comma separated list of m mean, v standard deviation, s skewness and k kurtosis (default m) .TP \fB\-v\fR verbose mode .TP \fB\-F\fR specify the input fields separators (default " \et") .TP \fB\-h\fR this help .SH EXAMPLES .TP gbkreg \-M 2 < file compute the kernel regression of the entries in the second column of 'file' vs. the entries in the first column. If more data columns exist in file they are ignored. Explicit summation method (slower) is used. .TP gbkreg \-02 < file compute the kernel regression of the standard deviation of the entries in the second column of 'file' vs. the entries in the first colum .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/gbkreg.c0000644000175000017500000004535413246754720011550 00000000000000/* gbkreg (ver. 5.6) -- Kernel non linear regression function Copyright (C) 2003-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "tools.h" #if defined HAVE_LIBGSL #include #include #endif /* required for sorting */ /* handy structure used in computation */ typedef struct couple { double x,y; } Couple; /* compare the couple according to first value */ int couplecompare(Couple *a, Couple *b){ if(a->x > b->x){ return 1; } else if(a->x < b->x){ return -1; } else{ return 0; } } int main(int argc,char* argv[]){ double **data=NULL; size_t size=0; char *splitstring = strdup(" \t"); /* OPTIONS */ int o_method=1; int o_kerneltype=0; int o_setbandwidth=0; int o_verbose=0; int o_mean=1; int o_sdev=0; int o_skew=0; int o_kurt=0; double ave,sdev,min,max; /* data statistics */ size_t M=64; /* number of bins */ double scale=1; /* optional scaling of the smoothing parameter */ double h=1;/* the smoothing parameter */ double (*K) (double) ; /* the kernel to use */ /* COMMAND LINE PROCESSING */ /* variables for reading command line options */ /* ------------------------------------------ */ int opt; /* ------------------------------------------ */ /* read the command line */ while((opt=getopt_long(argc,argv,"H:K:n:S:hvM:O:F:",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='S'){ /*set the scale parameter for smoothing*/ scale=atof(optarg); } else if(opt=='n'){ /*the number of bins*/ M=(size_t) atoi(optarg); } else if(opt=='K'){ /*the Kernel to use*/ o_kerneltype = atoi(optarg); } else if(opt=='H'){ /*set the kernel bandwidth*/ o_setbandwidth=1; h = atof(optarg); } else if(opt=='M'){ /*set the method to use*/ o_method= atoi(optarg); } else if(opt=='O'){ /*set the output type*/ char *output_opts[] = {"m","v","s","k",NULL}; char *subopts,*subvalue=NULL; /* remove default */ o_mean=0; /* define new output */ subopts = optarg; while (*subopts != '\0') switch (getsubopt(&subopts, output_opts, &subvalue)) { case 0: o_mean=1; break; case 1: o_sdev=1; break; case 2: o_skew=1; break; case 3: o_kurt=1; break; default:/* Unknown suboption. */ fprintf (stderr,"Unknown suboption `%s'\n", subvalue); exit(1); } } else if(opt=='v'){ /*increase verbosity*/ o_verbose=1; } else if(opt=='F'){ /*set the fields separator string*/ free(splitstring); splitstring = strdup(optarg); } else if(opt=='h'){ /*print short help*/ fprintf(stdout,"Kernel estimation of conditional moments. Data are read from standard input\n"); fprintf(stdout,"as couple (x,y). The moments of y are computed on a regular grid in x. The\n"); fprintf(stdout,"kernel bandwidth, if not provided with the option -H, is set automatically.\n"); fprintf(stdout,"\nUsage: %s [options]\n\n",argv[0]); fprintf(stdout,"Options:\n"); fprintf(stdout," -n number of equispaced points where moments are computed (default 64)\n"); fprintf(stdout," -H set the kernel bandwidth\n"); fprintf(stdout," -S scale the automatic kernel bandwidth\n"); fprintf(stdout," -K choose the kernel to use (default 0)\n"); fprintf(stdout," 0 Epanenchnikov\n"); fprintf(stdout," 1 Rectangular\n"); fprintf(stdout," 2 Gaussian\n"); fprintf(stdout," -M choose the method to compute the density (default 1)\n"); fprintf(stdout," 0 FFT (number of points rounded to nearest power of 2)\n"); fprintf(stdout," 1 discrete convolution (only with compact kernels)\n"); fprintf(stdout," 2 explicit summation (can be long)\n"); fprintf(stdout," -O set the output, comma separated list of m mean, v standard deviation,\n"); fprintf(stdout," s skewness and k kurtosis (default m)\n"); fprintf(stdout," -v verbose mode\n"); fprintf(stdout," -F specify the input fields separators (default \" \\t\")\n"); fprintf(stdout," -h this help\n"); fprintf(stdout,"Examples:\n"); fprintf(stdout," gbkreg -M 2 < file compute the kernel regression of the entries in the\n"); fprintf(stdout," second column of 'file' vs. the entries in the first\n"); fprintf(stdout," column. If more data columns exist in file they are \n"); fprintf(stdout," ignored. Explicit summation method (slower) is used. \n"); fprintf(stdout," gbkreg -02 < file compute the kernel regression of the standard deviation\n"); fprintf(stdout," of the entries in the second column of 'file' vs. the \n"); fprintf(stdout," entries in the first colum\n"); exit(0); } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); /* load the data */ load2(&data,&size,0,splitstring); /* sort with respect to the first array */ sort2(data[0],data[1],size,2); /* compute the statistics */ moment_short(data[0],size,&ave,&sdev,&min,&max); /* the parameter h is set for a Gaussian kernel [Silverman p.48] */ /* if not provided on command line */ if(o_setbandwidth == 0){ const unsigned index1 = size/4; const unsigned index2 = 3*size/4; const double inter4 = fabs(data[0][index1]-data[0][index2])/1.34; const double A = (sdev>inter4?inter4:sdev); h=scale*0.9*A/pow(size,.2); } /* nearest power of two */ if(o_method==0) M=(int) pow(2,nearbyint(log((double) M)/M_LN2)); /* ++++++++++++++++++++++++++++ */ if(o_verbose == 1){ /* bandwidth */ fprintf(stdout,"bandwidth %e ",h); if(o_setbandwidth == 0){ fprintf(stdout,"(automatic"); if(scale != 1 ) fprintf(stdout,"scaled by %e",scale); fprintf(stdout,")"); } else{ fprintf(stdout,"(provided)"); } fprintf(stdout,"\n"); /* kernel type */ fprintf(stdout,"kernel "); switch(o_kerneltype){ case 0: fprintf(stdout,"Epanechnikov"); break; case 1: fprintf(stdout,"Rectangular"); break; case 2: fprintf(stdout,"Gaussian"); break; } fprintf(stdout,"\n"); fprintf(stdout,"output "); if(o_mean) fprintf(stdout,"mean "); if(o_sdev) fprintf(stdout,"st.dev. "); if(o_skew) fprintf(stdout,"skewness "); if(o_kurt) fprintf(stdout,"kurtosis "); fprintf(stdout,"\n"); } /* ++++++++++++++++++++++++++++ */ if(o_method==0){/*=== FFT methods ===*/ size_t i; double *f;/* the density */ double *mf;/* the estimation of f*y */ double *m2f=0;/* the estimation of f*y*y */ double *m3f=0;/* the estimation of f*y**3 */ double *m4f=0;/* the estimation of f*y**4 */ /* the boundaries of the interval are set according... */ const double a = min-2*h; const double b = max+2*h; const double delta = (b-a)/(M-1); /* const double margin=.05; */ /* const double a = min - 4*h - (max-min+4*h)*margin; */ /* const double b = max + 4*h + (max-min+4*h)*margin; */ /* const double delta = (b-a)/(M-1); */ /* choose the kernel to use */ switch(o_kerneltype){ case 0: K=Kepanechnikov_tilde; break; case 1: K=Krectangular_tilde; break; case 2: K=Kgauss_tilde; break; default: fprintf(stdout,"unknown kernel; use %s -h\n",argv[0]); exit(+1); } /* ++++++++++++++++++++++++++++ */ if(o_verbose == 1){ /* method */ fprintf(stdout,"method FFT\n"); /* binning */ fprintf(stdout,"# bins %zd\n",M); fprintf(stdout,"range [%.3e,%.3e]\n",a,b); } /* ++++++++++++++++++++++++++++ */ /* allocate the bins */ f = (double *) my_alloc(M*sizeof(double)); mf = (double *) my_alloc(M*sizeof(double)); if(o_sdev || o_skew || o_kurt) m2f = (double *) my_alloc(M*sizeof(double)); if(o_skew == 1) m3f = (double *) my_alloc(M*sizeof(double)); if(o_kurt == 1) m4f = (double *) my_alloc(M*sizeof(double)); /* prepare the binning */ for(i=0;i=M || dtmp1<0) continue; f[index]+=1-epsilon; mf[index]+= (dtmp1=(1-epsilon)*dtmp2); if(o_sdev || o_skew || o_kurt) m2f[index]+= (dtmp1*=dtmp2); if(o_skew) m3f[index]+=dtmp1*dtmp2; if(o_kurt) m4f[index]+=dtmp1*dtmp2*dtmp2; if(index0){ const double m = mf[i]/f[i]; const double v =( o_sdev||o_skew||o_kurt ? fabs(m2f[i]/f[i]-m*m) : 0.0); if(o_mean) printf(FLOAT_SEP,m); if(o_sdev) printf(FLOAT_SEP,sqrt(v)); if(o_skew) printf(FLOAT_SEP, (m3f[i]/f[i]-3.*m*m2f[i]/f[i]+2.*m*m*m)/pow(v,1.5)); if(o_kurt) printf(FLOAT_SEP, (m4f[i]/f[i]-4.*m*m3f[i]/f[i]+ 6.*m*m*m2f[i]/f[i]-3.*pow(m,4))/(v*v) -3.); } else{ if(o_mean) printf(FLOAT_SEP,0.0); if(o_sdev) printf(FLOAT_SEP,0.0); if(o_skew) printf(FLOAT_SEP,0.0); if(o_kurt) printf(FLOAT_SEP,0.0); } printf("\n"); } } else if(o_method==2){ /*=== Exact Summation ===*/ int i; /* the boundaries of the interval are set according... */ /* const double delta = (max-min)/((double) M-1.5); */ /* const double a = min-.5*delta; */ const double delta = (max-min)/((double) M-3.0); const double a = min-.5*delta; /* boundaries of the sum */ const int imin = -( (int) M)/20; const int imax = M-1+( (int) M)/20; /* const double a = min-2*h; */ /* const double b = max+2*h; */ /* const double delta = (b-a)/M; */ /* ++++++++++++++++++++++++++++ */ if(o_verbose == 1){ /* method */ fprintf(stdout,"method exact summation\n"); /* binning */ fprintf(stdout,"# bins %zd\n",M); fprintf(stdout,"range [%.3e,%.3e]\n",a,a+(M-1)*delta); } /* ++++++++++++++++++++++++++++ */ switch(o_kerneltype){ case 0: K=Kepanechnikov; break; case 1: K=Krectangular; break; case 2: K=Kgauss; break; default: fprintf(stdout,"unknown kernel; use %s -h\n",argv[0]); exit(+1); } for(i=imin;izmax) break; dtmp1 = K((z-data[0][j])/h); x+= dtmp1; y+= (dtmp1*=data[1][j]); if(o_sdev||o_skew||o_kurt) y2+= (dtmp1*=data[1][j]);; if(o_skew) y3+= dtmp1*data[1][j]; if(o_kurt) y4+= dtmp1*data[1][j]*data[1][j]; } printf(FLOAT_SEP,z); m=(x>0 ? y/x : 0.0); v=((o_sdev||o_skew||o_kurt) && x>0?fabs(y2/x-m*m):0.0); if(o_mean) printf(FLOAT_SEP,m); if(o_sdev) printf(FLOAT_SEP,sqrt(v)); if(o_skew) printf(FLOAT_SEP, (x>0? (y3/x-3.*m*y2/x+2.*m*m*m)/pow(v,1.5) : 0.0 )); if(o_kurt) printf(FLOAT_SEP, (x>0? (y4/x-4.*m*y3/x+6.*m*m*y2/x-3.*m*m*m*m)/(v*v)-3. : 0.0)); printf("\n"); } } else if(o_method==1){ /*=== convolution ===*/ double *f;/* the density */ double *mf;/* the estimation of f*y */ double *m2f=0;/* the estimation of f*y*y */ double *m3f=0;/* the estimation of f*y**3 */ double *m4f=0;/* the estimation of f*y**4 */ size_t i; size_t J;/* maximum index for the kernel */ double *Kvals;/* values of the kernel */ double *Kj;/* pointer to values of the kernel */ /* the boundaries of the interval are set in order to span the interval [xmin-delta, xmax+delta] */ const double delta = (max-min)/((double) M-3); const double a = min-.5*delta; /* choose the kernel to use */ switch(o_kerneltype){ case 0: K=Kepanechnikov; J = (size_t) floor(sqrt(5)*h/delta); break; case 1: K=Krectangular; J = (size_t) floor(h/delta); break; default: fprintf(stdout,"kernel unknown or not compact ; use %s -h\n",argv[0]); exit(+1); } /* ++++++++++++++++++++++++++++ */ if(o_verbose == 1){ /* method */ fprintf(stdout,"method discrete convolution\n"); /* binning */ fprintf(stdout,"# bins %zd\n",M); fprintf(stdout,"range [%.3e,%.3e]\n",a,a+(M-1)*delta); fprintf(stdout,"# K vals %zd\n",J); } /* ++++++++++++++++++++++++++++ */ /* set the values of the kernel */ Kvals = (double *) my_alloc((2*J+1)*sizeof(double)); for(i=0;i<=2*J;i++){ Kvals[i]=K((i-(double) J)*delta/h)/h; } Kj = Kvals+J; /* ++++++++++++++++++++++++++++ */ if(o_verbose == 1){ /* check */ double sum=0; for(i=0;i<=2*J;i++) sum+=Kvals[i]; fprintf(stdout,"sum K vals %.3e\n",sum*delta); } /* ++++++++++++++++++++++++++++ */ /* allocate the bins */ f = (double *) my_alloc(M*sizeof(double)); mf = (double *) my_alloc(M*sizeof(double)); if(o_sdev||o_skew||o_kurt) m2f = (double *) my_alloc(M*sizeof(double)); if(o_skew) m3f = (double *) my_alloc(M*sizeof(double)); if(o_kurt) m4f = (double *) my_alloc(M*sizeof(double)); /* prepare the binning */ for(i=0;i=M || dtmp1<0) continue; f[index]+=1-epsilon; mf[index]+= (dtmp1=(1-epsilon)*dtmp2); if(o_sdev || o_skew || o_kurt) m2f[index]+= (dtmp1*=dtmp2); if(o_skew) m3f[index]+=dtmp1*dtmp2; if(o_kurt) m4f[index]+=dtmp1*dtmp2*dtmp2; if(indexJ?-J:-i); const int jmax = (i0 ? y/x : 0.0); v=((o_sdev||o_skew||o_kurt) && x>0?fabs(y2/x-m*m):0.0); if(o_mean) printf(FLOAT_SEP,m); if(o_sdev) printf(FLOAT_SEP,sqrt(v)); if(o_skew) printf(FLOAT_SEP, (x>0? (y3/x-3.*m*y2/x+2.*m*m*m)/pow(v,1.5) : 0.0 )); if(o_kurt) printf(FLOAT_SEP, (x>0? (y4/x-4.*m*y3/x+6.*m*m*y2/x-3.*m*m*m*m)/(v*v)-3. : 0.0)); printf("\n"); } } else{/*=== unknown method ===*/ fprintf(stdout,"unknown method; use %s -h\n",argv[0]); exit(+1); } exit(0); } gbutils-5.7.1/exponential_gbhill.c0000644000175000017500000003230313246754720014144 00000000000000#include "gbhill.h" /* Exponential distribution */ /* ------------------------ */ /* x[0]=mu x[1]=b */ /* F[k] = 1-exp(-(1/mu)*(x[k]-b)) */ /* -log(f[k]) = -log(1/mu)+(1/mu)*(x[k]-b) */ /* N: sample size k: number of observations used */ void exponential_nll (const size_t n, const double *x,void *params,double *fval){ size_t i; /* log-likelihood parameters */ const size_t min = ((struct loglike_params *) params)->min; const size_t max = ((struct loglike_params *) params)->max; const double N = (double) ((struct loglike_params *) params)->size; const double d = (double) ((struct loglike_params *) params)->d; const int method = ((struct loglike_params *) params)->method; const double *data = ((struct loglike_params *) params)->data; /* distribution parameters */ const double m=x[0]; const double b=x[1]; const double k = ((double) max-min+1); *fval=0.0; for(i=min;i<=max;i++) *fval += data[i]; *fval = (1./m)*(*fval)/k -log(1./m) - (1./m)*b; switch(method){ case 0: if(N>k) *fval += -(N/k-1.0)*log(1.-exp(-(1./m)*(data[min]-b))); break; case 1: if(N>k) *fval += -(N/k-1.0)*log(1.-exp(-(1./m)*(d-b))); break; case 2: if(N>k) *fval += (N/k-1.0)*(1./m)*(data[max]-b); break; case 3: //if(N>k) *fval += -(N/k-1.0)*(1./m)*(d-b) ; if(N>k) *fval += (N/k-1.0)*(1./m)*(d-b) ; break; } /* fprintf(stderr,"[ f ] x1=%g x2=%g f=%g \n",x[0],x[1],*fval); */ } void exponential_dnll (const size_t n, const double *x,void *params,double *grad){ size_t i; /* log-likelihood parameters */ const size_t min = ((struct loglike_params *) params)->min; const size_t max = ((struct loglike_params *) params)->max; const double N = (double) ((struct loglike_params *) params)->size; const double d = ((struct loglike_params *) params)->d; const int method = ((struct loglike_params *) params)->method; const double *data = ((struct loglike_params *) params)->data; /* distribution parameters */ const double m=x[0]; const double b=x[1]; const double k = ((double) max-min+1); grad[0]=0.0; for(i=min;i<=max;i++) grad[0] += data[i]; grad[0]=(grad[0]/k -m -b)*(-1./pow(m,2)); grad[1]=-(1./m); switch(method){ case 0: if(N>k) { const double F = 1.-exp(-(1./m)*(data[min]-b)); const double dFdm = exp(-(1./m)*(data[min]-b))*(data[min]-b); const double dFdb = -exp(-(1./m)*(data[min]-b))*(1./m); grad[0] += (-(N/k-1.0)*dFdm/F)*(-1./pow(m,2)); //grad[1] += (-(N/k-1.0)*dFdb/F)*(-1./pow(m,2)); // <=== Double-Check!! grad[1] += (-(N/k-1.0)*dFdb/F); } break; case 1: if(N>k) { const double F = 1.-exp(-(1./m)*(d-b)); const double dFdm = exp(-(1./m)*(d-b))*(d-b); const double dFdb = -exp(-(1./m)*(d-b))*(1./m); grad[0] += (-(N/k-1.0)*dFdm/F)*(-1./pow(m,2)); grad[1] += (-(N/k-1.0)*dFdb/F); } break; case 2: if(N>k){ grad[0] += (N/k-1.0)*(data[max]-b)*(-1./pow(m,2)); grad[1] += -(1./m)*(N/k-1.0); } break; case 3: if(N>k){ grad[0] += (N/k-1.0)*(d-b)*(-1./pow(m,2)); grad[1] += -(1./m)*(N/k-1.0); } break; } /* fprintf(stderr,"[ df] x1=%g x2=%g df/dx1=%g df/dx2=%g\n", */ /* x[0],x[1],grad[0],grad[1]); */ } void exponential_nlldnll (const size_t n, const double *x,void *params,double *fval,double *grad){ size_t i; /* log-likelihood parameters */ const size_t min = ((struct loglike_params *) params)->min; const size_t max = ((struct loglike_params *) params)->max; const double N = (double) ((struct loglike_params *) params)->size; const double d = (double) ((struct loglike_params *) params)->d; const int method = ((struct loglike_params *) params)->method; const double *data = ((struct loglike_params *) params)->data; /* distribution parameters */ const double m=x[0]; const double b=x[1]; const double k = ((double) max-min+1); *fval=0.0; for(i=min;i<=max;i++) *fval += data[i]; grad[0]=((*fval)/k -m -b)*(-1./pow(m,2)); *fval = (1./m)*(*fval)/k -log(1./m) - (1./m)*b; grad[1]=-1./m; switch(method){ case 0: if(N>k) { const double F = 1.-exp(-(1./m)*(data[min]-b)); const double dFdm = exp(-(1./m)*(data[min]-b))*(data[min]-b); const double dFdb = -exp(-(1./m)*(data[min]-b))*(1./m); *fval += -(N/k-1.0)*log(1.-exp(-(1./m)*(data[min]-b))); grad[0] += (-(N/k-1.0)*dFdm/F)*(-1./pow(m,2)); grad[1] += -(N/k-1.0)*dFdb/F; } break; case 1: { *fval += -(1./m)*(data[min-1]-b); grad[0] += (-data[min-1]+b)*(-1./pow(m,2)); grad[1] += 1./m; } break; case 2: if(N>k) { const double F = 1.-exp(-(1./m)*(d-b)); const double dFdm = exp(-(1./m)*(d-b))*(d-b); const double dFdb = -exp(-(1./m)*(d-b))*(1./m); *fval += -(N/k-1.0)*log(1.-exp(-(1./m)*(d-b))); grad[0] += (-(N/k-1.0)*dFdm/F)*(-1./pow(m,2)); grad[1] += -(N/k-1.0)*dFdb/F; } break; case 3: if(N>k){ *fval += (N/k-1.0)*(1./m)*(data[max]-b); grad[0] += (N/k-1.0)*(data[max]-b)*(-1./pow(m,2)); grad[1] += -(1./m)*(N/k-1.0); } break; case 4: { const double F = 1.-exp(-(1./m)*(data[max+1]-b)); const double dFdm = exp(-(1./m)*(data[max+1]-b))*(data[max+1]-b); const double dFdb = -exp(-(1./m)*(data[max+1]-b))*(1./m); *fval += log(F); grad[0] += (dFdm/F)*(-1./pow(m,2)); grad[1] += dFdb/F; } break; case 5: if(N>k){ *fval += (N/k-1.0)*(1./m)*(d-b); grad[0] += (N/k-1.0)*(d-b)*(-1./pow(m,2)); grad[1] += -(1./m)*(N/k-1.0); } break; } /* fprintf(stderr,"[fdf] x1=%g x2=%g f=%g df/dx1=%g df/dx2=%g\n", */ /* x[0],x[1],*fval,grad[0],grad[1]); */ } double exponential_f (const double x,const size_t n, const double *par){ return gsl_ran_exponential_pdf(x-par[1],par[0]); } double exponential_F (const double x,const size_t n, const double *par){ return gsl_cdf_exponential_P (x-par[1],par[0]); } gsl_matrix *exponential_varcovar(const int o_varcovar, double *x, void *params){ /* log-likelihood parameters */ const size_t min = ((struct loglike_params *) params)->min; const size_t max = ((struct loglike_params *) params)->max; const double N = (double) ((struct loglike_params *) params)->size; const double d = (double) ((struct loglike_params *) params)->d; const int method = ((struct loglike_params *) params)->method; const double *data = ((struct loglike_params *) params)->data; /* distribution parameters */ const double m=x[0]; const double b=x[1]; const double k = ((double) max-min+1); double dldm = 0.0; double d2ldm2 = 0.0; double d2ldmdb = 0.0; double dldb = 0.0; double d2ldb2 = 0.0; gsl_matrix *covar; double sum=0.0; double ZN = data[0]; double Zk = data[min]; double ZNk = data[max]; /* compute the sum of observations */ { size_t i; for(i=min;i<=max;i++) sum += data[i]; } switch(method){ case 0: /* GSL allocation of memory for the covar matrix */ covar = gsl_matrix_alloc (2,2); /* Compute ll partial derivatives. */ dldm = -((exp(b/m)*Zk-b*exp(b/m))*N+(-sum+k*m+b*k)*exp(Zk/m)-k*exp(b/m)*Zk+exp(b/m)*sum-k*m*exp(b/m))/(pow(m,2.)*exp(Zk/m)-pow(m,2.)*exp(b/m)); d2ldm2 = -(((exp(b/m)*pow(Zk,2.)+(-2.*m-2.*b)*exp(b/m)*Zk+(2.*b*m+pow(b,2.))*exp(b/m))*exp(Zk/m)+2.*m*exp((2.*b)/m)*Zk-2.*b*m*exp((2.*b)/m))*N+(2.*m*sum-k*pow(m,2.)-2.*b*k*m)*exp((2.*Zk)/m)+(-k*exp(b/m)*pow(Zk,2.)+(2.*k*m+2.*b*k)*exp(b/m)*Zk-4*m*exp(b/m)*sum+(2.*k*pow(m,2.)+2.*b*k*m-pow(b,2.)*k)*exp(b/m))*exp(Zk/m)-2.*k*m*exp((2.*b)/m)*Zk+2.*m*exp((2.*b)/m)*sum-k*pow(m,2.)*exp((2.*b)/m))/(-2.*pow(m,4.)*exp(Zk/m+b/m)+pow(m,4.)*exp((2.*Zk)/m)+pow(m,4.)*exp((2.*b)/m)); d2ldmdb = -(((exp(b/m)*Zk+(-m-b)*exp(b/m))*exp(Zk/m)+m*exp((2.*b)/m))*N+k*m*exp((2.*Zk)/m)+((b*k-k*m)*exp(b/m)-k*exp(b/m)*Zk)*exp(Zk/m))/(-2.*pow(m,3.)*exp(Zk/m+b/m)+pow(m,3.)*exp((2.*Zk)/m)+pow(m,3.)*exp((2.*b)/m)); dldb = -(exp(b/m)*N-k*exp(Zk/m))/(m*exp(Zk/m)-m*exp(b/m)); d2ldb2 = -(exp(Zk/m+b/m)*N-k*exp(Zk/m+b/m))/(-2.*pow(m,2.)*exp(Zk/m+b/m)+pow(m,2.)*exp((2.*Zk)/m)+pow(m,2.)*exp(2.*b/m)); break; case 1: /* GSL allocation of memory for the covar matrix */ covar = gsl_matrix_alloc (2,2); dldm = (-k)*(((d-b)*exp(b/m)*N+(exp(b/m)-exp(d/m))*sum+(k*m+b*k)*exp(d/m)+(-k*m-d*k)*exp(b/m))/(k*pow(m,2.0)*exp(d/m)-k*pow(m,2.0)*exp(b/m))); dldb =(-k)*( (exp(b/m)*N-k*exp(d/m))/(k*m*exp(d/m)-k*m*exp(b/m))); d2ldm2=(-k)*(-((((2*d-2*b)*m-pow(d,2.0)+2*b*d-pow(b,2.0))*exp(d/m+b/m)+(2*b-2*d)*m*exp((2*b)/m))*N+(4*m*exp(d/m+b/m)-2*m*exp((2*d)/m)-2*m*exp((2*b)/m))*sum+(-2*k*pow(m,2.0)+(-2*d-2*b)*k*m+(pow(d,2.0)-2*b*d+pow(b,2.0))*k)*exp(d/m+b/m)+(k*pow(m,2.0)+2*b*k*m)*exp((2*d)/m)+(k*pow(m,2.0)+2*d*k*m)*exp((2*b)/m))/(-2*k*pow(m,4.0)*exp(d/m+b/m)+k*pow(m,4.0)*exp((2*d)/m)+k*pow(m,4.0)*exp((2*b)/m))); d2ldmdb=(-k)*(-(((m-d+b)*exp(d/m+b/m)-m*exp((2*b)/m))*N+(k*m+(d-b)*k)*exp(d/m+b/m)-k*m*exp((2*d)/m))/(-2*k*pow(m,3)*exp(d/m+b/m)+k*pow(m,3)*exp((2*d)/m)+k*pow(m,3)*exp((2*b)/m))); d2ldb2=(-k)*((exp(d/m+b/m)*N-k*exp(d/m+b/m))/(-2*k*pow(m,2.0)*exp(d/m+b/m)+k*pow(m,2.0)*exp((2*d)/m)+k*pow(m,2.0)*exp((2*b)/m))); break; case 2: /* GSL allocation of memory for the covar matrix */ covar = gsl_matrix_alloc (1,1); dldm = -(N*ZN-ZNk*N+k*ZNk-sum+k*m)/pow(m,2.0); d2ldm2 = (2*N*ZN-2*ZNk*N+2*k*ZNk-2*sum+k*m)/pow(m,3.0); break; case 3: covar = gsl_matrix_alloc (1,1); dldm = -(N*ZN-d*N-sum+k*m+d*k)/pow(m,2.0); d2ldm2 = (2*N*ZN-2*d*N-2*sum+k*m+2*d*k)/pow(m,3.0); break; } switch(o_varcovar){ case 0: if (method < 2 ){ gsl_permutation * P = gsl_permutation_alloc (2); int signum; gsl_matrix *J = gsl_matrix_calloc (2,2); gsl_matrix_set (J,0,0,dldm*dldm); gsl_matrix_set (J,0,1,dldm*dldb); gsl_matrix_set (J,1,0,dldb*dldm); gsl_matrix_set (J,1,1,dldb*dldb); gsl_linalg_LU_decomp (J,P,&signum); gsl_linalg_LU_invert (J,P,covar); gsl_matrix_free(J); gsl_permutation_free(P); }else{ gsl_permutation * P = gsl_permutation_alloc (1); int signum; gsl_matrix *J = gsl_matrix_calloc (1,1); gsl_matrix_set(J,0,0,dldm*dldm); gsl_linalg_LU_decomp (J,P,&signum); gsl_linalg_LU_invert (J,P,covar); gsl_matrix_free(J); gsl_permutation_free(P); } break; case 1: if (method < 2 ){ gsl_permutation * P = gsl_permutation_alloc (2); int signum; gsl_matrix *H = gsl_matrix_calloc (2,2); gsl_matrix_set(H,0,0,d2ldm2); gsl_matrix_set(H,0,1,d2ldmdb); gsl_matrix_set(H,1,0,d2ldmdb); gsl_matrix_set(H,1,1,d2ldb2); gsl_matrix_scale (H,-1.); gsl_linalg_LU_decomp (H,P,&signum); gsl_linalg_LU_invert (H,P,covar); gsl_matrix_free(H); gsl_permutation_free(P); }else{ gsl_permutation * P = gsl_permutation_alloc (1); int signum; gsl_matrix *H = gsl_matrix_calloc (1,1); gsl_matrix_set(H,0,0,d2ldm2); gsl_matrix_scale (H,-1.); gsl_linalg_LU_decomp (H,P,&signum); gsl_linalg_LU_invert (H,P,covar); gsl_matrix_free(H); gsl_permutation_free(P); } break; case 2: if (method < 2 ){ gsl_permutation * P = gsl_permutation_alloc (2); int signum; gsl_matrix *H = gsl_matrix_calloc (2,2); gsl_matrix *J = gsl_matrix_calloc (2,2); gsl_matrix *tmp = gsl_matrix_calloc (2,2); gsl_matrix_set(H,0,0,d2ldm2); gsl_matrix_set(H,0,1,d2ldmdb); gsl_matrix_set(H,1,0,d2ldmdb); gsl_matrix_set(H,1,1,d2ldb2); gsl_matrix_set(J,0,0,dldm*dldm); gsl_matrix_set(J,0,1,dldm*dldb); gsl_matrix_set(J,1,0,dldb*dldm); gsl_matrix_set(J,1,1,dldb*dldb); gsl_linalg_LU_decomp (H,P,&signum); gsl_linalg_LU_invert (H,P,tmp); gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,tmp,J,0.0,H); gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,H,tmp,0.0,covar); gsl_matrix_free(H); gsl_matrix_free(J); gsl_matrix_free(tmp); gsl_permutation_free(P); }else{ gsl_permutation * P = gsl_permutation_alloc (1); int signum; gsl_matrix *H = gsl_matrix_calloc (1,1); gsl_matrix *J = gsl_matrix_calloc (1,1); gsl_matrix *tmp = gsl_matrix_calloc (1,1); gsl_matrix_set(H,0,0,d2ldm2); gsl_matrix_set(J,0,0,dldm*dldm); gsl_linalg_LU_decomp (H,P,&signum); gsl_linalg_LU_invert (H,P,tmp); gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,tmp,J,0.0,H); gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,H,tmp,0.0,covar); gsl_matrix_free(H); gsl_matrix_free(J); gsl_matrix_free(tmp); gsl_permutation_free(P); } break; } /* scale the covariance matrix to the appropriate dimension */ if(covar->size1 == 1) { const double dtmp1 = gsl_matrix_get(covar,0,0); gsl_matrix_free (covar); covar = gsl_matrix_alloc (2,2); gsl_matrix_set(covar,0,0,dtmp1); gsl_matrix_set(covar,0,1,NAN); gsl_matrix_set(covar,1,0,NAN); gsl_matrix_set(covar,1,1,NAN); } return covar; } gbutils-5.7.1/gbmodes.c0000644000175000017500000004131613246754720011721 00000000000000/* gbmodes (ver. 5.6) -- Analyze multimodality in univariate data data using direct (and slow) kernel computation with Silverman method and, when applicable, Hall York corrections. Copyright (C) 2004-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "tools.h" #include #include /* =========================================== */ /* 1 - Kernels */ /* =========================================== */ /* K(x) = exp(-x^2/(2 \pi))/sqrt(2 \pi) */ /* ------------------------------------ */ double Kgauss_rng(const gsl_rng * rng) { return(gsl_ran_ugaussian (rng)); } /* K(x) = exp(-sqrt(2) |x|)/sqrt(2) */ /* -------------------------------- */ double Klaplace_rng(const gsl_rng * rng) { return(gsl_ran_laplace (rng,M_SQRT1_2)); } /* =========================================== */ /* =========================================== */ /* 2 - Functions */ /* =========================================== */ /* Counts the modes and Find the modal values */ /* ------------------------------------------- */ /* Input: data list of observations size number of observations min lower bound of the range where to search max upper bound of the range where to search N number of equispaced points h bandwidth K kernel Output: modes_pos if not NULL position of modes modes_height if not NULL height of modes modes number of modes */ unsigned findmodes(const double *data, size_t size, const double min, const double max, const unsigned N, const double h, double (*K) (double), double **modes_pos, double **modes_height) { unsigned i,modes; const double delta = (max-min)/((double) N-1.0); /* the kernel estimate */ double * x = my_alloc(N*sizeof(double)); /* compute the kernel density estimates on the equispaced points */ for(i=0;i=x[1]){ modes++; if(modes_pos != NULL && modes_height != NULL){ *modes_pos = (double *) my_realloc(*modes_pos,modes*sizeof(double)); (*modes_pos)[modes-1]=min; *modes_height = (double *) my_realloc(*modes_height,modes*sizeof(double)); (*modes_height)[modes-1]=x[0]; } } for(i=1;ix[i-1] && x[i]>x[i+1]){ modes++; if(modes_pos != NULL && modes_height != NULL){ *modes_pos = (double *) my_realloc(*modes_pos,modes*sizeof(double)); (*modes_pos)[modes-1]=min+i*delta; *modes_height = (double *) my_realloc(*modes_height,modes*sizeof(double)); (*modes_height)[modes-1]=x[i]; } } } if(x[N-1]>=x[N-2]){ modes++; if(modes_pos != NULL && modes_height != NULL){ *modes_pos = (double *) my_realloc(*modes_pos,modes*sizeof(double)); (*modes_pos)[modes-1]=max; *modes_height = (double *) my_realloc(*modes_height,modes*sizeof(double)); (*modes_height)[modes-1]=x[N-1]; } } /* free allocated space */ free(x); return(modes); } /* Find the critical bandwidth */ /* ------------------------------------------- */ /* Input: data list of observations size number of observations min lower bound of the range where to search max upper bound of the range where to search N number of equispaced points K kernel M number of modes o_verbose verbosity level epsrel relative tolerance on critical bandwidth Output: hmin lower bound on critical bandwidth hmax upper bound on critical bandwidth modes number of modes */ void findhcrit(const double *data,const unsigned size, const double min, const double max, const unsigned N, double (*K) (double),const unsigned M, const unsigned o_verbose,const double epsrel,double *hmin,double *hmax) { double epsabs; double h=.5*(*hmin+*hmax); /* find initial boundary [hmin,hmax] */ if( findmodes(data,size,min,max,N,h,K,NULL,NULL) <=M ){ *hmax=h; *hmin=h/1.5; while(findmodes(data,size,min,max,N,*hmin,K,NULL,NULL)<=M) *hmin/=1.5; } else{ *hmin=h; *hmax=1.5*h; while(findmodes(data,size,min,max,N,*hmax,K,NULL,NULL)>M) *hmax*=1.5; } /* re-scale the absolute value by the problem's scale */ epsabs=epsrel*0.5*(*hmin+*hmax); /* ++++++++++++++++++++++++++++ */ if(o_verbose > 1){ fprintf(stderr," initial interval [%e,%e]\n",*hmin,*hmax); fprintf(stderr," absolute error on h %e\n",epsabs); } /* ++++++++++++++++++++++++++++ */ /* find an estimate for h_c */ do{ double *modes_pos=NULL,*modes_height=NULL; const double h = .5*(*hmin+*hmax); const unsigned modes = findmodes(data,size,min,max,N,h,K,&modes_pos,&modes_height); /* ++++++++++++++++++++++++++++ */ if(o_verbose>1) { unsigned i; fprintf(stderr," h=%.3e modes: ",h); for(i=0;i M) *hmin=h; else *hmax=h; free(modes_pos); free(modes_height); } while(fabs(*hmax-*hmin)>epsabs); /* ++++++++++++++++++++++++++++ */ if(o_verbose > 0){ fprintf(stderr," bandwidth final interval [%e,%e]\n",*hmin,*hmax); } /* ++++++++++++++++++++++++++++ */ } /* Compute the significance of h_c using Silverman */ /* ---------------------------------------------------------- */ /* Input: data list of observations size number of observations ave data average sdev data standard deviation min lower bound of the range where to search max upper bound of the range where to search N number of bins h bandwidth M number of modes trials number of sample trials seed RNG seed K kernel K_rng random number generator alpha significance Output: ratio score/trials */ double pscore(const double *data,const unsigned size,const double sdev, const double min,const double max,const unsigned N, const double h, const unsigned M, const unsigned trials, const unsigned long seed,double (*K) (double), double (*K_rng) (const gsl_rng *), const double alpha) { unsigned t,i; double score=0.0; const double samplescale = 1./sqrt(1.+h*h/(sdev*sdev)); double *sample = (double *) my_alloc(size*sizeof(double)); double lambda=1.; const gsl_rng_type * T = gsl_rng_default ; gsl_rng * rng = gsl_rng_alloc (T); gsl_rng_set (rng,seed); /* set the lambda value of the Hall-York correction if: - the number of modes is 1 - the kernel is Gaussian - a proper value of alpha is provided Hall and York, Statistica Sinica 11(2001), 515-536 */ if(M==1 && alpha > 0 && alpha < 1 && K == Kgauss){ /* Hall-York coefficient */ const double c[] = {.94029,-1.59914,.17695,.48971,-1.77793,.36162,.42423}; lambda = (c[0]*pow(alpha,3.)+c[1]*pow(alpha,2.)+c[2]*alpha+c[3])/(pow(alpha,3.)+c[4]*pow(alpha,2.)+c[5]*alpha+c[6]); } for(t=0;tM ) score+=1; } free(sample); gsl_rng_free (rng); return(score/trials); } /* =========================================== */ /* =========================================== */ /* 3 - Main */ /* =========================================== */ int main(int argc,char* argv[]){ double *data=NULL; size_t size; char *splitstring = strdup(" \t"); double data_ave,data_sdev,data_min,data_max; /* OPTIONS */ int o_verbose=0; int o_kerneltype=0; int o_setxregion=0; int o_output=0; int o_setxscale=0; double xscale=1; /* the scale factor defining the range where to look for modes*/ int N=100; /* number of bins */ double alpha=0.0; /*significance level*/ double xmin=0,xmax=0; /* range where to look for modes */ double hmin,hmax; unsigned modes; double epsrel=1e-6; unsigned long seed=0; unsigned M=1;/* number of modes */ unsigned trials=1000;/* trials number for pscore*/ double (*K) (double); /* the kernel to use */ double (*K_rng) (const gsl_rng *); /* COMMAND LINE PROCESSING */ /* variables for reading command line options */ /* ------------------------------------------ */ int opt; /* ------------------------------------------ */ /* read the command line */ while((opt=getopt_long(argc,argv,"t:n:m:he:vR:K:r:O:s:F:S:",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='n'){ /*the number of bins*/ N=(int) atoi(optarg); } else if(opt=='v'){ /*increase verbosity*/ o_verbose ++; } else if(opt=='m'){ /*number of modes*/ M = (unsigned) atoi(optarg); } else if(opt=='r'){ /*where to look for modes*/ if(!strchr (optarg,',')){ fprintf(stderr, "option -r requires comma separated couple of values\n"); return(-1); } else{ char *stmp1=strdup (optarg); xmin = atof(strtok (stmp1,",")); xmax = atof(strtok (NULL,",")); free(stmp1); } o_setxregion=1; } else if(opt=='s'){ /*where to look for modes: scaling factor*/ xscale=atof(optarg); o_setxscale=1; } else if(opt=='R'){ /*RNG seed*/ seed = (unsigned) atol(optarg); } else if(opt=='t'){ /*number of trials*/ trials = (unsigned) atoi(optarg); } else if(opt=='K'){ /*the Kernel to use*/ o_kerneltype = atoi(optarg); } else if(opt=='O'){ /*the type of output*/ o_output = atoi(optarg); } else if(opt=='e'){ /*set the absolute error on h_c*/ epsrel = atof(optarg); } else if(opt=='F'){ /*set the fields separator string*/ free(splitstring); splitstring = strdup(optarg); } else if(opt=='S'){ /*set the significance level*/ alpha = atof(optarg); } else if(opt=='h'){ /*print short help*/ fprintf(stdout,"Multimodality analysis via kernel density estimation. Compute the maximal\n"); fprintf(stdout,"kernel bandwidth h_c(M) for which #(modes in the estimated density)>M.The\n"); fprintf(stdout,"significance of h_c is computed via smoothed bootstrap. Read data from std.\n"); fprintf(stdout,"input. Print the couple h_c p(h_c) and the modal values (set with -O).\n"); fprintf(stdout,"\nUsage: %s [options]\n\n",argv[0]); fprintf(stdout,"Options:\n"); fprintf(stdout," -n number of equispaced points where the density is computed (default 100)\n"); fprintf(stdout," -m number of modes (default 1)\n"); fprintf(stdout," -r search range for modes; comma separated couple 'data_min,data_max'\n"); fprintf(stdout," -s scale the search range to [min*s+(1-s)*Max,Max*s+(1-s)*min] (default 1)\n"); fprintf(stdout," -e relative tolerance on h_c value (default 1e-6)\n"); fprintf(stdout," -S significance level (for Hall-York correction) (default .05)\n"); fprintf(stdout," -t number of bootstrap trials used for significance computation (default 1000)\n"); fprintf(stdout," -R RNG seed for bootstrap trials (default 0)\n"); fprintf(stdout," -K choose the kernel to use: 0 Gaussian or 1 Laplacian (default 0)\n"); fprintf(stdout," -v verbose mode (more verbose if provided 2 times) \n"); fprintf(stdout," -O output type (default 0)\n"); fprintf(stdout," 0 h_c p(h_c) [modes locations] \n"); fprintf(stdout," 1 h_c [modes locations and heights] \n"); fprintf(stdout," -F specify the input fields separators (default \" \\t\")\n"); fprintf(stdout," -h this help\n"); exit(0); } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); switch(o_kerneltype){ case 0: K=Kgauss; K_rng=Kgauss_rng; break; case 1: K=Klaplace; K_rng=Klaplace_rng; break; default: fprintf(stdout,"unknown kernel; use %s -h\n",argv[0]); exit(+1); } /* load data */ load(&data,&size,0,splitstring); /* sort the data */ qsort(data,size,sizeof(double),sort_by_value); /* compute relevant statistics */ moment_short(data,size,&data_ave,&data_sdev,&data_min,&data_max); /* the parameter h is initially set according to [Silverman p.48] */ { const double inter = fabs(data[3*size/4]-data[size/4])/1.34; const double A = (data_sdev>inter && inter>0 ? inter : data_sdev); hmin=hmax=0.9*A/pow(size,.2); } /* set the boundaries of region where to check for modes*/ if(o_setxregion){ /* user provided boundaries */ if(xmin>=xmax){ /* swap if wrongly provided by user */ double dtmp=xmin; xmin=xmax; xmax=dtmp; } } else{ /* automatic setting */ xmin=data_min; xmax=data_max; } /* apply the scaling factor */ if(o_setxscale){ const double delta= .5*(xmax-xmin)*(1.-xscale); xmax-=delta; xmin+=delta; } /* cut excessive range */ if(xmax>data_max) xmax= data_max; if(xmin 0){ /* data */ fprintf(stdout," number of data %zd\n",size); fprintf(stdout," sample mean %f\n",data_ave); fprintf(stdout," sample std. dev. %f\n",data_sdev); /* binning */ fprintf(stdout," number of bins %d\n",N); fprintf(stdout," modes search region [%f,%f]\n",xmin,xmax); fprintf(stdout," number of modes %d\n",M); /* kernel type */ fprintf(stdout," kernel type "); switch(o_kerneltype){ case 0: fprintf(stdout,"Gaussian"); break; case 1: fprintf(stdout,"Laplacian"); break; } fprintf(stdout,"\n"); /* bandwidth */ fprintf(stdout," initial bandwidth %e\n",hmin); } /* ++++++++++++++++++++++++++++ */ /* find the critical bandwidth */ findhcrit(data,size,xmin,xmax,N,K,M,o_verbose,epsrel,&hmin,&hmax); switch (o_output){ case 0: { double *modes_pos=NULL,*modes_height=NULL; unsigned i; modes = findmodes(data,size,xmin,xmax,N,hmax,K,&modes_pos,&modes_height); /* ++++++++++++++++++++++++++++ */ if(o_verbose > 0){ printf("#h_c(%d)\t\tpscore",M); if(M==1 && alpha > 0 && alpha < 1 && K == Kgauss && o_output==0) printf(" (HY %.3f)",alpha); else printf("\t"); printf("\tmodes locations ->\n"); } /* ++++++++++++++++++++++++++++ */ printf(FLOAT_SEP,.5*(hmax+hmin)); printf(FLOAT_SEP, pscore(data,size,data_sdev,xmin,xmax,N, .5*(hmin+hmax),M,trials,seed,K,K_rng,alpha)); for(i=0;i 0) printf("#h_c(%d)\t\tmodes (location,height) ->\n",M); /* ++++++++++++++++++++++++++++ */ printf(FLOAT_SEP,.5*(hmax+hmin)); for(i=0;i\/\fR .SH DESCRIPTION Non linear polyit estimation. Minimize the negative log\-likelihood .IP sum_{h=0}^{L\-1} log(A+h) \- sum_{l=1}^L sum_{h=0}^{n_l\-1} log(a_l+h) .PP for the Polya specification or .IP L log(A) \- sum_{l=1}^L n_l log(a_l) .PP for the multinomial specification, where A = sum_{l=1}^L a_l and L is the number of alternatives. The input data file should contain L rows, one for each alternative, of the type n x1 ... XN. The first column contains the dependent variable (# of observations) and the other columns the independent variables. The model is specified by a function a_l=g(x1,x2...) where x1,.. XN stands for the first, second .. N\-th column of independent variables. .SH OPTIONS .TP \fB\-O\fR type of output (default 0) .TP 0 parameters and log\-like (ll) .TP 1 marginal effects .TP 2 marginal elasticities .TP 3 n_l n*_l a*_l *=estimated .TP 4 occupancies classes .TP \fB\-F\fR input fields separators (default " \et") .TP \fB\-V\fR standard errors and p\-scores of diff. from zero using bootstrap .TP \fB\-r\fR number of replicas (default 20) .TP \fB\-v\fR verbosity level (default 0) .TP 0 just results .TP 1 comment headers .TP 2 summary statistics .TP 3 covariance matrix .TP 4 minimization steps .TP 5 model definition .TP \fB\-R\fR set the rng seed (default 0) .TP \fB\-M\fR set the model to use (default 0) | .TP 0 Polya .TP 1 multinomial .TP \fB\-A\fR MLL optimization options (default 0.01,0.1,100,1e\-6,1e\-6,5) fields are step,tol,iter,eps,msize,algo. Empty fields for default .TP step initial step size of the searching algorithm .TP tol line search tolerance iter: maximum number of iterations .TP eps gradient tolerance : stopping criteria ||gradient|| .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/paretoI_gbhill.c0000644000175000017500000003225513246754720013227 00000000000000#include "gbhill.h" /* Pareto 1 distribution */ /* ------------------------ */ /* x[0]=g x[1]=b */ /* F[j] = 1-pow(b*x[j],-1./g)} */ /* -log(f[j]) = -log(1./g) + (1./g)*log(b) + (1./g+1)log(x[j]) */ /* N: sample size k: number of observations used */ void pareto1_nll (const size_t n, const double *x,void *params,double *fval){ size_t i; /* log-likelihood parameters */ const size_t min = ((struct loglike_params *) params)->min; const size_t max = ((struct loglike_params *) params)->max; const double N = (double) ((struct loglike_params *) params)->size; const double d = (double) ((struct loglike_params *) params)->d; const int method = ((struct loglike_params *) params)->method; const double *data = ((struct loglike_params *) params)->data; /* distribution parameters */ const double g=x[0]; const double b=x[1]; const double k = ((double) max-min+1); *fval=0.0; for(i=min;i<=max;i++) *fval += log(data[i]); *fval = (1./g+1.0)*(*fval)/k -log(1./g) + (1./g)*log(b); switch(method){ case 0: if(N>k) *fval += -(N/k-1.0)*log(1.0-pow(b*data[min],-1./g)); break; case 1: if(N>k) *fval += -(N/k-1.0)*log(1.0-pow(b*d,-1./g)); break; case 2: if(N>k) *fval += (N/k-1.0)*((1./g)*log(b) + (1./g)*log(data[max])); break; case 3: if(N>k) *fval += (N/k-1.0)*((1./g)*log(b) + (1./g)*log(d)); break; } /* fprintf(stderr,"[ f ] x1=%g x2=%g f=%g\n",x[0],x[1],*fval); */ } void pareto1_dnll (const size_t n, const double *x,void *params,double *grad){ size_t i; /* log-likelihood parameters */ const size_t min = ((struct loglike_params *) params)->min; const size_t max = ((struct loglike_params *) params)->max; const double N = (double) ((struct loglike_params *) params)->size; const double d = (double) ((struct loglike_params *) params)->d; const int method = ((struct loglike_params *) params)->method; const double *data = ((struct loglike_params *) params)->data; /* distribution parameters */ const double g=x[0]; const double b=x[1]; const double k = ((double) max-min+1); grad[0]=0.0; for(i=min;i<=max;i++) grad[0] += log(data[i]); grad[0]=(grad[0]/k -g +log(b))*(-1./pow(g,2)); grad[1]=1./(b*g); switch(method){ case 0: if(N>k) { const double F = 1.0- pow(b*data[min],-1./g); const double dFdg = log(b*data[min])*pow(b*data[min],-1./g); const double dFdb = (1./g)*pow(b*(data[min]),-1./g)/b; grad[0] += (-(N/k-1.0)*dFdg/F)*(-1./pow(g,2)); grad[1] += -(N/k-1.0)*dFdb/F; } break; case 1: if(N>k){ const double F = 1.0- pow(b*d,-1./g); const double dFdg = log(b*d)*pow(b*d,-1./g); const double dFdb = (1./g)*pow(b*d,-1./g)/b; grad[0] += (-(N/k-1.0)*dFdg/F)*(-1./pow(g,2)); grad[1] += -(N/k-1.0)*dFdb/F; } break; case 2: if(N>k){ grad[0] += ((N/k-1.0)*(log(b)+log(data[max])))*(-1./pow(g,2)); grad[1] += (N/k-1.0)*(1./(b*g)); } break; case 3: if(N>k){ grad[0] += ((N/k-1.0)*(log(b)+log(d)))*(-1./pow(g,2)); grad[1] += (N/k-1.0)*(1./(g*b)); } break; } /* fprintf(stderr,"[ df] x1=%g x2=%g df/dx1=%g df/dx2=%g\n", */ /* x[0],x[1],grad[0],grad[1]); */ } void pareto1_nlldnll (const size_t n, const double *x,void *params,double *fval,double *grad){ size_t i; /* log-likelihood parameters */ const size_t min = ((struct loglike_params *) params)->min; const size_t max = ((struct loglike_params *) params)->max; const double N = (double) ((struct loglike_params *) params)->size; const double d = (double) ((struct loglike_params *) params)->d; const int method = ((struct loglike_params *) params)->method; const double *data = ((struct loglike_params *) params)->data; /* distribution parameters */ const double g=x[0]; const double b=x[1]; const double k = ((double) max-min+1); *fval=0.0; for(i=min;i<=max;i++) *fval += log(data[i]); grad[0]=((*fval)/k -g +log(b))*(-1./pow(g,2)); *fval = ((1./g)+1.0)*(*fval)/k -log(1./g) + (1./g)*log(b); grad[1]=1./(b*g); switch(method){ case 0: if(N>k) { const double F = 1.0- pow(b*data[min],-1./g); const double dFdg = log(b*data[min])*pow(b*data[min],-1./g); const double dFdb = (1./g)*pow(b*(data[min]),-1./g)/b; *fval += -(N/k-1.0)*log(F); grad[0] += (-(N/k-1.0)*dFdg/F)*(-1./pow(g,2)); grad[1] += -(N/k-1.0)*dFdb/F; } break; case 1: if(N>k) { const double F = 1.0- pow(b*d,-1./g); const double dFdg = log(b*d)*pow(b*d,-1./g); const double dFdb = (1./g)*pow(b*d,-1./g)/b; *fval += -(N/k-1.0)*log(F); grad[0] += (-(N/k-1.0)*dFdg/F)*(-1./pow(g,2)); grad[1] += -(N/k-1.0)*dFdb/F; } break; case 2: if(N>k){ *fval += (N/k-1.0)*((1./g)*log(b) + (1./g)*log(data[max])); grad[0] += ((N/k-1.0)*(log(b)+log(data[max])))*(-1./pow(g,2)); grad[1] += (N/k-1.0)*(1./(b*g)); } break; case 3: if(N>k){ *fval += (N/k-1.0)*((1./g)*log(b) + (1./g)*log(d)); grad[0] += ((N/k-1.0)*(log(b)+log(d)))*(-1./pow(g,2)); grad[1] += (N/k-1.0)*(1./(b*g)); } break; } /* fprintf(stderr,"[fdf] x1=%g x2=%g f=%g df/dx1=%g df/dx2=%g\n", */ /* x[0],x[1],*fval,grad[0],grad[1]); */ } double pareto1_f (const double x,const size_t n, const double *par){ return gsl_ran_pareto_pdf(x,1./par[0],1./par[1]); } double pareto1_F (const double x,const size_t n, const double *par){ return gsl_cdf_pareto_P (x,1./par[0],1./par[1]); } gsl_matrix *pareto1_varcovar(const int o_varcovar, double *x, void *params){ size_t i; /* log-likelihood parameters */ const size_t min = ((struct loglike_params *) params)->min; const size_t max = ((struct loglike_params *) params)->max; const double N = (double) ((struct loglike_params *) params)->size; const double d = (double) ((struct loglike_params *) params)->d; const int method = ((struct loglike_params *) params)->method; const double *data = ((struct loglike_params *) params)->data; /* distribution parameters */ const double g=x[0]; const double b=x[1]; const double k = ((double) max-min+1); double dldg = 0.0; double d2ldg2 = 0.0; double d2ldgdb = 0.0; double dldb = 0.0; double d2ldb2 = 0.0; gsl_matrix *covar; double sum = 0.0; for(i=min;i<=max;i++) sum += log(data[i]); double ZN = data[0]; double Zk = data[min]; double ZNk = data[max]; switch(method){ case 0: /* GSL allocation of memory for the covar matrix */ covar = gsl_matrix_alloc (2,2); /* Compute ll partial derivatives. */ dldg = -(log(b*Zk)*N-k*log(b*Zk)+((g-log(b))*k-sum)*pow(b*Zk,1./g)+sum+(log(b)-g)*k)/(pow(g,2.)*pow(b*Zk,1./g)-pow(g,2.)); d2ldg2 = -((pow(b*Zk,1./g)*pow(log(b*Zk),2.)+(2.*g-2.*g*pow(b*Zk,1./g))*log(b*Zk))*N-k*pow(b*Zk,1./g)*pow(log(b*Zk),2.)+(2.*g*k*pow(b*Zk,1./g)-2.*g*k)*log(b*Zk)+(2.*g*sum+(2.*log(b)*g-pow(g,2.))*k)*pow(b*Zk,2./g)+((2.*pow(g,2.)-4*log(b)*g)*k-4*g*sum)*pow(b*Zk,1./g)+2.*g*sum+(2.*log(b)*g-pow(g,2.))*k)/(pow(g,4.)*pow(b*Zk,2./g)-2.*pow(g,4.)*pow(b*Zk,1./g)+pow(g,4.)); d2ldgdb = (g*pow(b*Zk,1./g)*(log(b*Zk)*N-k*log(b*Zk)+((g-log(b))*k-sum)*pow(b*Zk,1./g)+sum+(log(b)-g)*k))/(b*pow(pow(g,2.)*pow(b*Zk,1./g)-pow(g,2.),2.))-(N/b+(((g-log(b))*k-sum)*pow(b*Zk,1./g))/(b*g)-(k*pow(b*Zk,1./g))/b)/(pow(g,2.)*pow(b*Zk,1./g)-pow(g,2.)); dldb = (N-k)/(b*g*pow(b*Zk,1./g)*(1-1/pow(b*Zk,1./g)))-k/(b*g); d2ldb2=-(N-k)/(pow(b,2.)*g*pow(b*Zk,1./g)*(1-1/pow(b*Zk,1./g)))-(N-k)/(pow(b,2.)*pow(g,2.)*pow(b*Zk,1./g)*(1-1/pow(b*Zk,1./g)))-(N-k)/(pow(b,2.)*pow(g,2.)*pow(b*Zk,2./g)*pow(1-1/pow(b*Zk,1./g),2.))+k/(pow(b,2.)*g); break; case 1: /* GSL allocation of memory for the covar matrix */ covar = gsl_matrix_alloc (2,2); /* Compute ll partial derivatives (Wolfram Mathematica or equivalent). */ dldg = -(log(b*d)*N+(1-pow(b*d,1./g))*sum+((pow(b*d,1./g)-1)*g-log(b)*pow(b*d,1./g)-log(b*d)+log(b))*k)/((pow(b*d,1./g)-1)*pow(g,2.0)); d2ldg2 = (((2*pow(b*d,1./g)*log(b*d)-2*log(b*d))*g-pow(b*d,1./g)*pow(log(b*d),2.0))*N+(-2*pow(b*d,2.0/g)+4*pow(b*d,1./g)-2)*g*sum+((pow(b*d,2.0/g)-2*pow(b*d,1./g)+1)*pow(g,2.0)+(-2*log(b)*pow(b*d,2.0/g)+2*log(b*d)+pow(b*d,1./g)*(4*log(b)-2*log(b*d))-2*log(b))*g+pow(b*d,1./g)*pow(log(b*d),2.0))*k)/((pow(b*d,2.0/g)-2*pow(b*d,1./g)+1)*pow(g,4.0)); d2ldgdb = -(((pow(b*d,1./g)-1)*g-pow(b*d,1./g)*log(b*d))*N+((pow(b*d,1./g)-pow(b*d,2.0/g))*g+pow(b*d,1./g)*log(b*d))*k)/((b*pow(b*d,2.0/g)-2*b*pow(b*d,1./g)+b)*pow(g,3.0)); dldb = (N-pow(b*d,1./g)*k)/((b*pow(b*d,1./g)-b)*g); d2ldb2 = -(((pow(b*d,1./g)-1)*g+pow(b*d,1./g))*N+((pow(b*d,1./g)-pow(b*d,2.0/g))*g-pow(b*d,1./g))*k)/((pow(b,2.0)*pow(b*d,2.0/g)-2*pow(b,2.0)*pow(b*d,1./g)+pow(b,2.0))*pow(g,2.0)); break; case 2: /* GSL allocation of memory for the covar matrix */ /* Nota that the ll does not depend on b in this case.*/ /* As a consequence the covar matrix is 1x1 . */ covar = gsl_matrix_alloc (1,1); /* Compute ll partial derivatives. */ dldg = -(N*log(ZN)-log(ZNk)*N+k*log(ZNk)-sum+g*k)/pow(g,2.0); d2ldg2 = (2*N*log(ZN)-2*log(ZNk)*N+2*k*log(ZNk)-2*sum+g*k)/pow(g,3.0); break; case 3: /* GSL allocation of memory for the covar matrix */ /* Nota that the ll does not depend on b in this case.*/ /* As a consequence the covar matrix is 1x1 . */ covar = gsl_matrix_alloc (1,1); /* Compute ll partial derivatives. */ dldg = ((log(d)+log(1/ZN))*N+sum+(-g-log(d))*k)/pow(g,2.0); d2ldg2 = -((2*log(d)+2*log(1/ZN))*N+2*sum+(-g-2*log(d))*k)/pow(g,3.0); break; } switch(o_varcovar){ case 0: if (method < 2 ){ gsl_permutation * P = gsl_permutation_alloc (2); int signum; gsl_matrix *J = gsl_matrix_calloc (2,2); gsl_matrix_set (J,0,0,dldg*dldg); gsl_matrix_set (J,0,1,dldg*dldb); gsl_matrix_set (J,1,0,dldb*dldg); gsl_matrix_set (J,1,1,dldg*dldb); gsl_linalg_LU_decomp (J,P,&signum); gsl_linalg_LU_invert (J,P,covar); gsl_matrix_free(J); gsl_permutation_free(P); }else{ gsl_permutation * P = gsl_permutation_alloc (1); int signum; gsl_matrix *J = gsl_matrix_calloc (1,1); gsl_matrix_set(J,0,0,dldg*dldg); gsl_linalg_LU_decomp (J,P,&signum); gsl_linalg_LU_invert (J,P,covar); gsl_matrix_free(J); gsl_permutation_free(P); } break; case 1: if (method < 2){ gsl_permutation * P = gsl_permutation_alloc (2); int signum; gsl_matrix *H = gsl_matrix_calloc (2,2); gsl_matrix_set(H,0,0,d2ldg2); gsl_matrix_set(H,0,1,d2ldgdb); gsl_matrix_set(H,1,0,d2ldgdb); gsl_matrix_set(H,1,1,d2ldb2); gsl_matrix_scale (H,-1.); gsl_linalg_LU_decomp (H,P,&signum); gsl_linalg_LU_invert (H,P,covar); gsl_matrix_free(H); gsl_permutation_free(P); }else{ gsl_permutation * P = gsl_permutation_alloc (1); int signum; gsl_matrix *H = gsl_matrix_calloc (1,1); gsl_matrix_set(H,0,0,d2ldg2); gsl_matrix_scale (H,-1.); gsl_linalg_LU_decomp (H,P,&signum); gsl_linalg_LU_invert (H,P,covar); gsl_matrix_free(H); gsl_permutation_free(P); } break; case 2: if (method < 2){ gsl_permutation * P = gsl_permutation_alloc (2); int signum; gsl_matrix *H = gsl_matrix_calloc (2,2); gsl_matrix *J = gsl_matrix_calloc (2,2); gsl_matrix *tmp = gsl_matrix_calloc (2,2); gsl_matrix_set(H,0,0,d2ldg2); gsl_matrix_set(H,0,1,d2ldgdb); gsl_matrix_set(H,1,0,d2ldgdb); gsl_matrix_set(H,1,1,d2ldb2); gsl_matrix_set(J,0,0,dldg*dldg); gsl_matrix_set(J,0,1,dldg*dldb); gsl_matrix_set(J,1,0,dldb*dldg); gsl_matrix_set(J,1,1,dldb*dldb); gsl_linalg_LU_decomp (H,P,&signum); gsl_linalg_LU_invert (H,P,tmp); gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,tmp,J,0.0,H); gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,H,tmp,0.0,covar); gsl_matrix_free(H); gsl_matrix_free(J); gsl_matrix_free(tmp); gsl_permutation_free(P); }else{ gsl_permutation * P = gsl_permutation_alloc (1); int signum; gsl_matrix *H = gsl_matrix_calloc (1,1); gsl_matrix *J = gsl_matrix_calloc (1,1); gsl_matrix *tmp = gsl_matrix_calloc (1,1); gsl_matrix_set(H,0,0,d2ldg2); gsl_matrix_set(J,0,0,dldg*dldg); gsl_linalg_LU_decomp (H,P,&signum); gsl_linalg_LU_invert (H,P,tmp); gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,tmp,J,0.0,H); gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,H,tmp,0.0,covar); gsl_matrix_free(H); gsl_matrix_free(J); gsl_matrix_free(tmp); gsl_permutation_free(P); } break; } /* scale the covariance matrix to the appropriate dimension */ if(covar->size1 == 1) { const double dtmp1 = gsl_matrix_get(covar,0,0); gsl_matrix_free (covar); covar = gsl_matrix_alloc (2,2); gsl_matrix_set(covar,0,0,dtmp1); gsl_matrix_set(covar,0,1,NAN); gsl_matrix_set(covar,1,0,NAN); gsl_matrix_set(covar,1,1,NAN); } return covar; } gbutils-5.7.1/TODO0000644000175000017500000000016512411117114010601 00000000000000TODO: + write texinfo documentation + improve getline for gzip files + add 'finalize_program()' to all the utilitiesgbutils-5.7.1/gbnlpolyit.c0000644000175000017500000013257613246754720012475 00000000000000/* gbnlpolyit (ver. 5.6) -- Non linear polyit regression Copyright (C) 2010-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "tools.h" #include "matheval.h" #include "assert.h" #include "multimin.h" #include /* handy structure used in computation */ typedef struct function { void *f; size_t argnum; char **argname; void **df; void **dfdx; } Function; struct objdata { Function * F; size_t rows; size_t columns; size_t *datan; double **datax; size_t N; }; /* ========================== */ /* Zeroth-order approximation */ /* ========================== */ /* This is the negative log-likelihood per observation (that is, divided by the total number of observations) computed with no independent variables: the agglomeration parameter is set to zero and no dependence on regressors is introduced. Under this hypothesis ALL locations have the same attractiveness, equal to 1/L where L is the number of locations: NLL = -log(N!) + N*log(L) + \sum_l log(n_l!) This function is used for the computation of the generalized R^2. */ double zeromll (size_t *datan,const size_t rows,const size_t N){ size_t i; double res= -lgamma(N+1) + N*log(rows); for(i=0;iF; const size_t rows=((struct objdata *)params)->rows; const size_t columns=((struct objdata *)params)->columns; const size_t N=((struct objdata *)params)->N; size_t *datan=((struct objdata *)params)->datan; double **datax=((struct objdata *)params)->datax; double values[pnum+columns]; size_t i,j; double res=0; /* negative log likelihood */ double a,A=0; /* set the parameter values */ for(i=columns;if,columns+pnum,F->argname,values); A += a; if( a < 0 ){ fprintf(stderr,">> x:"); for(i=0;i> n=%zd a=%f col=%f\n",datan[i],a,datax[0][i]); fprintf(stderr,">> f(x) = %s\n",evaluator_get_string (F->f)); } res += lgamma(datan[i]+1) - datan[i]*log(a); } res += N*log(A)-lgamma(N+1); *fval=res/rows; /* fprintf(stderr," f: %+12.6e\n",*fval); */ /* fprintf(stderr," x:"); */ /* for(i=0;iF; const size_t rows=((struct objdata *)params)->rows; const size_t columns=((struct objdata *)params)->columns; const size_t N=((struct objdata *)params)->N; size_t *datan=((struct objdata *)params)->datan; double **datax=((struct objdata *)params)->datax; double values[pnum+columns]; size_t i,j; double a,A=0; /* initialize gradient */ for(i=0;if,columns+pnum,F->argname,values); A += a; } /* cycle on rows */ for(i=0;if,columns+pnum,F->argname,values); for(j=0;jdf)[j],columns+pnum,F->argname,values); } for(j=0;jF; const size_t rows=((struct objdata *)params)->rows; const size_t columns=((struct objdata *)params)->columns; const size_t N=((struct objdata *)params)->N; size_t *datan=((struct objdata *)params)->datan; double **datax=((struct objdata *)params)->datax; double values[pnum+columns]; size_t i,j; double res=0; /* negative log likelihood */ double a,A=0; /* initialize gradient */ for(i=0;if,columns+pnum,F->argname,values); A += a; res += lgamma(datan[i]+1)-datan[i]*log(a); } res += N*log(A)-lgamma(N); /* cycle on rows */ for(i=0;if,columns+pnum,F->argname,values); for(j=0;jdf)[j],columns+pnum,F->argname,values); } for(j=0;j 0, a+x > 0. */ double marginal_polya(const size_t n, const double a, const double A, const size_t N){ return exp( gsl_sf_lnpoch(a,n) + gsl_sf_lnpoch(A-a,N-n)- gsl_sf_lnpoch(A,N) + gsl_sf_lnchoose(N,n)); } /* Likelihood and gradients */ /* ======================== */ void objpolya_f (const size_t pnum, const double *x,void *params,double *fval){ const Function *F = ((struct objdata *)params)->F; const size_t rows=((struct objdata *)params)->rows; const size_t columns=((struct objdata *)params)->columns; const size_t N=((struct objdata *)params)->N; size_t *datan=((struct objdata *)params)->datan; double **datax=((struct objdata *)params)->datax; double values[pnum+columns]; size_t i,j; double res=0; /* negative log likelihood */ double a,A=0; /* set the parameter values */ for(i=columns;if,columns+pnum,F->argname,values); A += a; if( a < 0 ){ fprintf(stderr,">> x:"); for(i=0;i> n=%zd a=%f col=%f\n",datan[i],a,datax[0][i]); fprintf(stderr,">> f(x) = %s\n",evaluator_get_string (F->f)); } if(datan[i]>0) for(j=0;jF; const size_t rows=((struct objdata *)params)->rows; const size_t columns=((struct objdata *)params)->columns; const size_t N=((struct objdata *)params)->N; size_t *datan=((struct objdata *)params)->datan; double **datax=((struct objdata *)params)->datax; double values[pnum+columns]; size_t i,j; double a,A=0,sumA=0; /* variables used in computation */ double y[rows]; /* initialize gradient */ for(i=0;if,columns+pnum,F->argname,values); A += a; if(datan[i]>0) for(j=0;jdf)[j],columns+pnum,F->argname,values); } for(j=0;jF; const size_t rows=((struct objdata *)params)->rows; const size_t columns=((struct objdata *)params)->columns; const size_t N=((struct objdata *)params)->N; size_t *datan=((struct objdata *)params)->datan; double **datax=((struct objdata *)params)->datax; double values[pnum+columns]; size_t i,j; double res=0; /* negative log likelihood */ double a,A=0,sumA=0; /* variables used in computation */ double y[rows]; /* initialize gradient */ for(i=0;if,columns+pnum,F->argname,values); A += a; if(datan[i]>0) for(j=0;jdf)[j],columns+pnum,F->argname,values); } for(j=0;j \n\n",argv[0]); fprintf(stdout,"Options:\n"); fprintf(stdout," -O type of output (default 0)\n"); fprintf(stdout," 0 parameters and log-like (ll) \n"); fprintf(stdout," 1 marginal effects \n"); fprintf(stdout," 2 marginal elasticities \n"); fprintf(stdout," 3 n_l n*_l a*_l *=estimated \n"); fprintf(stdout," 4 occupancies classes \n"); fprintf(stdout," -F input fields separators (default \" \\t\")\n"); fprintf(stdout," -V standard errors and p-scores of diff. from zero using bootstrap \n"); fprintf(stdout," -r number of replicas (default 20)\n"); fprintf(stdout," -v verbosity level (default 0)\n"); fprintf(stdout," 0 just results \n"); fprintf(stdout," 1 comment headers \n"); fprintf(stdout," 2 summary statistics \n"); fprintf(stdout," 3 covariance matrix \n"); fprintf(stdout," 4 minimization steps \n"); fprintf(stdout," 5 model definition \n"); fprintf(stdout," -R set the rng seed (default 0)\n"); fprintf(stdout," -M set the model to use (default 0) |\n"); fprintf(stdout," 0 Polya\n"); fprintf(stdout," 1 multinomial\n"); fprintf(stdout," -A MLL optimization options (default 0.01,0.1,100,1e-6,1e-6,5)\n"); fprintf(stdout," fields are step,tol,iter,eps,msize,algo. Empty fields for default\n"); fprintf(stdout," step initial step size of the searching algorithm \n"); fprintf(stdout," tol line search tolerance iter: maximum number of iterations \n"); fprintf(stdout," eps gradient tolerance : stopping criteria ||gradient||5){ fprintf(stderr,"ERROR (%s): output option '%d' not recognized. Try option -h.\n", GB_PROGNAME,o_output); exit(-1); } } else if(opt=='V'){ /* compute standard errors */ o_stderr=1; } else if(opt=='R'){ /* RNG seed */ seed = (unsigned) atol(optarg); } else if(opt=='r'){ /* number of replicas */ replicas = (size_t) atoi(optarg); } else if(opt=='A'){ char *stmp1=strdup (optarg); char *stmp2; char *stmp3=stmp1; if( (stmp2=strsep (&stmp1,",")) != NULL){ if(strlen(stmp2)>0) mmparams.step_size=atof(stmp2); } if( (stmp2=strsep (&stmp1,",")) != NULL){ if(strlen(stmp2)>0) mmparams.tol=atof(stmp2); } if( (stmp2=strsep (&stmp1,",")) != NULL){ if(strlen(stmp2)>0) mmparams.maxiter=(unsigned) atoi(stmp2); } if( (stmp2=strsep (&stmp1,",")) != NULL){ if(strlen(stmp2)>0) mmparams.epsabs=atof(stmp2); } if( (stmp2=strsep (&stmp1,",")) != NULL){ if(strlen(stmp2)>0) mmparams.maxsize=atof(stmp2); } if( (stmp2=strsep (&stmp1,",")) != NULL){ if(strlen(stmp2)>0) mmparams.method= (unsigned) atoi(stmp2); } free(stmp3); } else if(opt=='v'){ o_verbose = atoi(optarg); mmparams.verbosity=(o_verbose>2?o_verbose-2:0); } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); /* define the dataset */ { size_t i,j; double **data=NULL; /* load data; the first column contains occupancy numbers */ loadtable(&data,&rows,&columns,0,splitstring); /* split the occupancies from the variables */ datan = (size_t *) my_alloc(rows*sizeof(size_t)); datax = (double **) my_alloc((columns-1)*sizeof(double *)); for(i=0;i0 && strlen(stmp4)>0){ Pnum++; Param=(char **) my_realloc((void *) Param,Pnum*sizeof(char *)); Pval=(double *) my_realloc((void *) Pval,Pnum*sizeof(double)); Param[Pnum-1] = strdup(stmp5); Pval[Pnum-1] = atof(stmp4); } } else{ /* allocate new function */ F.f = evaluator_create (stmp3); assert(F.f); } free(stmp3); } free(piece); } /* check that everything is correct */ if(Pnum==0){ fprintf(stderr,"ERROR (%s): please provide a parameter to estimate.\n", GB_PROGNAME); exit(-1); } { size_t i,j; char **NewParam=NULL; double *NewPval=NULL; size_t NewPnum=0; char **storedname=NULL; size_t storednum=0; /* retrieve list of arguments and their number */ /* notice that storedname is not allocated */ { int argnum; evaluator_get_variables (F.f,&storedname,&argnum); storednum = (size_t) argnum; } /* check the definition of the function: column specifications refer to existing columns and parameters are properly initialized */ for(i=0;i0?atoi(stmp1+1):0); if(index>columns){ fprintf(stderr,"ERROR (%s): column %zu not present in data\n", GB_PROGNAME,index); exit(-1); } } else { for(j=0;j3){ size_t i; fprintf(stderr," ------------------------------------------------------------\n"); fprintf (stderr,"\n Parameters and initial conditions:\n"); for(i=0;i1){ size_t i,j; double A=0; double MFpR2=0; /* McFadden adjusted pseudo R^2 */ double CpR2=0; /* Effron pseudo R^2 */ double CSpR2=0; /* Cox&Snell rescaled pseudo R^2 */ double values[Pnum+columns]; fprintf(stderr,"#\n"); fprintf(stderr,"# Summary statistics \n"); fprintf(stderr,"# number of rows : %zd\n",rows); fprintf(stderr,"# number of variables : %zd\n",Pnum); fprintf(stderr,"# number of regressors : %zd\n",columns); fprintf(stderr,"# number of events : %zd\n",llparams.N); /* set the parameter values */ for(i=columns;i 0 && o_output > 0){ size_t i; fprintf(stderr,"# Estimated parameters:\n"); fprintf(stderr,"#"); if(o_stderr==0){ for(i=0;i0){ fprintf(stdout,"#"); for(i=0;i0){ fprintf(stdout,"#"); for(i=0;i0){ if(o_output==1) fprintf(stdout,"# Marginal effects\n"); else if (o_output==2 ) fprintf(stdout,"# Marginal elasticities\n"); } /* +++++++++++++++++++++++++++++++++++ */ if(o_stderr==0){ /* +++++++++++++++++++++++++++++++++++ */ if(o_verbose>0){ fprintf(stdout,"#"); for(i=0;icolumns) fprintf(stdout,EMPTY_NL,"n"); else fprintf(stdout,"\n"); } /* +++++++++++++++++++++++++++++++++++ */ for(i=0;i0){ fprintf(stdout,"#"); for(i=0;icolumns){ fprintf(stdout,EMPTY_SEP,"n"); fprintf(stdout,EMPTY_SEP,"+/-"); fprintf(stdout,EMPTY_NL,"p-scr"); } else fprintf(stdout,"\n"); } /* +++++++++++++++++++++++++++++++++++ */ for(i=0;i0){ fprintf(stdout,"#observed vs. predicted occupancy\n"); fprintf(stdout,"#"); fprintf(stdout,EMPTY_SEP,"obs."); fprintf(stdout,EMPTY_SEP,"pred."); fprintf(stdout,EMPTY_NL,"a/b"); } /* +++++++++++++++++++++++++++++++++++ */ for(i=0;ibins) bins=itmp1; } bins+=1; /* allocate necessary space */ emp = (double *) my_calloc(bins,sizeof(double)); the = (double *) my_calloc(bins,sizeof(double)); /* set the parameter values */ for(i=columns;i0){ fprintf(stderr,"# chi-square: %f\n",chisq); fprintf(stdout,"# occupancy by classes\n"); fprintf(stdout,"#"); fprintf(stdout,EMPTY_SEP,"cmin"); fprintf(stdout,EMPTY_SEP,"cmax"); fprintf(stdout,EMPTY_SEP,"emp"); fprintf(stdout,EMPTY_NL,"theo"); } /* +++++++++++++++++++++++++++++++++++ */ /* print the classes occupancy */ for(i=0;i \/\fR... .SH DESCRIPTION Compute specified functions on data read from standard input. The default is to perform the computation column\-wise, on each row of data separately. Variable 'xi' stands for the i\-th column while 'x0' stands for the row number, e.g. a function f(x1,x2) operates on the first and secod column. With the option \fB\-t\fR the function is computed, in turn, on every column. In this case f(x1,x2) stands for a function of the column itself and of the following column (the index being a lead operator). In these cases 'x' is equivalent to 'x1'. With \fB\-r\fR or \fB\-R\fR the function is recursevely computed "columwise" on each row. In this case the variable 'x' identifies the result of the previous evaluation. A lag operator can be specified with the letter l, like in 'x1l2', which means the first column two steps before. More functions can be specified and will be considered in turn. .SH OPTIONS .TP \fB\-T\fR compute the function row\-wise, on each column separately. .TP \fB\-t\fR compute on each column .TP \fB\-r\fR set initial value and compute recursively .TP \fB\-R\fR set initial value, compute recursively and print intermediary results .TP \fB\-v\fR verbose mode .TP \fB\-F\fR specify the input fields separators (default " \et") .TP \fB\-o\fR set the output format (default '%12.6e') .TP \fB\-s\fR set the output separation string (default ' ') .TP \fB\-h\fR this help .SH EXAMPLES .TP gbfun 'x0+log(x2)' < file print the log of the second column of 'file' adding the progressive number of the row .TP gbfun \-T 'x0+log(x2)' < file print the log of the second row of 'file' adding the progressive number of the column .TP gbfun \-r 0 'x+sqrt(x1)' < file print the sum of the square root of the elements of the first column of 'file' .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/README0000644000175000017500000000473112573765607011025 00000000000000gbutils -- Utilities Overview Giulio Bottazzi (bottazzi@sssup.it), September 2015 gbutils is a set of command line utilities for the manipulation and statistical analysis of data. Data fare usually read from standard input in ASCII format and results are printed in ASCII format to standard output. These utilities are completely written in C. They have been tested (and used many many times) on different Linux distributions and should compile and run, in principle, on any Unix platform. No other OSes have been tested. Please notice that these programs have been written for personal use, and are distributed under the GPL license (see the file "COPYING") in the hope they could be of help to other people, but without any implied warranty. Please report bugs to . The package home page is http://cafim.sssup.it/~giulio/software/gbutils/index.html The most up-to-date information and documentation about the gbutils package can be found in its home page. A few documents are however distributed with the package. For Linux installation instruction and a brief introduction to the library, see "intro". More technical details are provided in "overview". The document "cygwin_install" describes how to install the package on Windows machines, using the cygwin emulation framework. The file 'gbget' is a brief tutorial on using the eponymous program, a sort of Swiss knife for the manipulation of data file, which is often essential for an effective usage of the utilities in the package. These documents are distributed in ASCII (.txt extension) and PDF format. The package has several dependencies, see the online documentation or 'intro" for further information. Installation instruction ======================== I recommend to install directly the binary packages from the debian or Ubuntu repositories. See the online documentation or the file "intro". In the case this is not possible, the installation from source should be rather straightforward. Download the package and unpack it tar xvzf gbutils-{version}.tar.gz move inside the source directory cd gbutils-{version} run the configure script ./configure then build the files make become root su and install them make install If you can't install the file as root you have to provide a different directory for the binaries using the option ~--prefix~ of the configure script. See "INSTALL" for details. For more detailed instructions see the "INSTALL" file in the distributed package. gbutils-5.7.1/gbker2d.c0000644000175000017500000003211713246754720011620 00000000000000/* gbker2d (ver. 5.6) -- Kernel density estimate for bivariate data Copyright (C) 2003-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "tools.h" int main(int argc,char* argv[]){ double **data=NULL; size_t size=0; char *splitstring = strdup(" \t"); /* OPTIONS */ int o_kerneltype=0; int o_setbandwidth=0; int o_verbose=0; int o_devariate=1; /* data statistics */ double ave[2],sdev[2],min[2],max[2],cov; /* variables for "de-covariation" */ double corr,cphi,sphi,rho,detJ; /* variables for binning */ size_t M[2]={10,10}; /* number of bins */ double *csi; /* the bins */ /* kernel variables */ double (*K) (double); /* kernel */ double Kscale=1; /* automatic bandwidth factor */ double scale[2]={1.,1.}; /* optional scaling of the bandwidth */ double h[2]={1.,1.}; /* bandwidth */ double delta[2]; /* step sizes */ double a[2]; /* initial points */ size_t J[2]; /* integer radius */ double * Kvals; /* kernel values */ /* COMMAND LINE PROCESSING */ /* variables for reading command line options */ /* ------------------------------------------ */ int opt; /* ------------------------------------------ */ /* read the command line */ while((opt=getopt_long(argc,argv,"H:K:n:S:hvDF:",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='S'){ /*set the scale parameter for smoothing*/ if(!strchr (optarg,',')){ scale[0]=scale[1]=atof(optarg); } else{ char *stmp1=strdup (optarg); scale[0] = atof(strtok (stmp1,",")); scale[1] = atof(strtok (NULL,",")); free(stmp1); } } else if(opt=='n'){ /*the number of bins*/ if(!strchr (optarg,',')){ M[0]=M[1]=atoi(optarg); } else{ char *stmp1=strdup (optarg); M[0] = atoi(strtok (stmp1,",")); M[1] = atoi(strtok (NULL,",")); free(stmp1); } } else if(opt=='K'){ /*the Kernel to use*/ o_kerneltype = atoi(optarg); } else if(opt=='H'){ /*set the kernel bandwidth*/ o_setbandwidth=1; if(!strchr (optarg,',')){ h[0]=h[1]=atof(optarg); } else{ char *stmp1=strdup (optarg); h[0] = atof(strtok (stmp1,",")); h[1] = atof(strtok (NULL,",")); free(stmp1); } } else if(opt=='v'){ /*increase verbosity*/ o_verbose=1; } else if(opt=='D'){ /*skip data de-(co)varation*/ o_devariate=0; } else if(opt=='F'){ /*set the fields separator string*/ free(splitstring); splitstring = strdup(optarg); } else if(opt=='h'){ /*print short help*/ fprintf(stdout,"2D kernel density estimation on an equispaced grid. Data are read from standard\n"); fprintf(stdout,"input as couple (x,y). The kernel bandwidth if not provided with the option -H\n"); fprintf(stdout,"is set automatically. Different bandwidths can be specified for x and y. \n"); fprintf(stdout,"\nUsage: %s [options]\n\n",argv[0]); fprintf(stdout,"Options:\n"); fprintf(stdout," -n number of points where the density is computed (default 10) use comma (,)\n"); fprintf(stdout," to specify different values for x and y components\n"); fprintf(stdout," -H set the kernel bandwidth explicitly; use comma (,) to specify different\n"); fprintf(stdout," values for x and y components\n"); fprintf(stdout," -S scale the kernel bandwidth with respect to euristic 'optimal' value; use\n"); fprintf(stdout," comma (,) to specify different values for x and y components\n"); fprintf(stdout," -K choose the kernel to use: 0: Epanenchnikov 1: Rectangular 2: Silverman\n"); fprintf(stdout," type 1 3: Silverman type 2 (default 0)\n"); fprintf(stdout," -D switch off data de-variation procedure\n"); fprintf(stdout," -v verbose mode\n"); fprintf(stdout," -F specify the input fields separators (default \" \\t\")\n"); fprintf(stdout," -h this help\n"); fprintf(stdout,"Examples:\n"); fprintf(stdout," gbker2d -n 10,20 -K 1 < file compute the kernel on an equispaced grid 10x20\n"); fprintf(stdout," using a rectangular kernel\n"); exit(0); } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); /* load the data */ load2(&data,&size,0,splitstring); /* compute the statistics */ moment_short2(data,size,ave,sdev,&cov,min,max); corr = cov/(sdev[0]*sdev[1]); if(corr == 1 || corr == -1){ fprintf(stdout,"deterministic relation between x and y\n"); exit(+1); } rho = 1./sqrt(1-corr*corr); cphi = cos(.5*asin(-corr)); sphi = sin(.5*asin(-corr)); detJ = rho/(sdev[0]*sdev[1]); /* ++++++++++++++++++++++++++++ */ if(o_verbose == 1){ fprintf(stdout,"---- Data Statistics ------------\n"); fprintf(stdout," ave sdev min max\n"); fprintf(stdout,"x: %+.2e %+.2e %+.2e %+.2e\n", ave[0],sdev[0],min[0],max[0]); fprintf(stdout,"y: %+.2e %+.2e %+.2e %+.2e\n", ave[1],sdev[1],min[1],max[1]); fprintf(stdout,"r=%e rho=%e phi=%e\n",corr,rho,.5*asin(-corr)); fprintf(stdout,"\n"); } /* ++++++++++++++++++++++++++++ */ /* possibly eliminate variance and covariance */ if(o_devariate == 1){ size_t i; for(i=0;i max[0]){ max[0] = dtmp0; } if(dtmp1 < min[1]){ min[1] = dtmp1; } else if(dtmp1 > max[1]){ max[1] = dtmp1; } } } /* choose the kernel to use */ switch(o_kerneltype){ case 0: K=Kepanechnikov2d; Kscale=2.40; break; case 1: K=Krectangular2d; break; case 2: K=Ksilverman2d_1; Kscale=2.78; break; case 3: K=Ksilverman2d_2; Kscale=3.12; break; default: fprintf(stdout,"unknown kernel; use %s -h\n",argv[0]); exit(+1); } /* the parameter h is not provided on command line it is set by an automatic procedure [Silverman p.86] */ if(o_setbandwidth == 0){ if(o_devariate == 1){ h[0]=scale[0]*Kscale/pow(size,1./6); h[1]=scale[1]*Kscale/pow(size,1./6); } else{ h[0]=sdev[0]*scale[0]*Kscale/pow(size,1./6); h[1]=sdev[1]*scale[1]*Kscale/pow(size,1./6); } } /* ++++++++++++++++++++++++++++ */ if(o_verbose == 1){ fprintf(stdout,"---- Density Parameters ------------\n"); /* data treatment */ fprintf(stdout,"de-variation "); if(o_devariate == 1) fprintf(stdout,"yes (detJ=%+.3e)",detJ); else fprintf(stdout,"no"); fprintf(stdout,"\n"); /* kernel type */ fprintf(stdout,"kernel type "); switch(o_kerneltype){ case 0: fprintf(stdout,"Epanechnikov"); break; case 1: fprintf(stdout,"Rectangular"); break; case 2: fprintf(stdout,"Silverman type 1"); break; case 3: fprintf(stdout,"Silverman type 2"); break; } fprintf(stdout,"\n"); /* bandwidth */ fprintf(stdout,"x bandwidth %.3e ",h[0]); if(o_setbandwidth == 0){ fprintf(stdout,"(automatic with A=%.2f ",Kscale); if(scale[0] != 1 ) fprintf(stdout,"scaled by %f",scale[0]); fprintf(stdout,")"); } else{ fprintf(stdout,"(provided)"); } fprintf(stdout,"\n"); fprintf(stdout,"y bandwidth %.3e ",h[1]); if(o_setbandwidth == 0){ fprintf(stdout,"(automatic with A=%.2f ",Kscale); if(scale[1] != 1 ) fprintf(stdout,"scaled by %f",scale[1]); fprintf(stdout,")"); } else{ fprintf(stdout,"(provided)"); } fprintf(stdout,"\n"); fprintf(stdout,"\n"); } /* ++++++++++++++++++++++++++++ */ /* the boundaries of the interval are set to have a = xmin-delta b=xmax+delta */ delta[0] = (max[0]-min[0])/(M[0] -2.0); delta[1] = (max[1]-min[1])/(M[1] -2.0); a[0] = min[0]-.5*delta[0]; a[1] = min[1]-.5*delta[1]; J[0] = (size_t) floor(h[0]/delta[0]); J[1] = (size_t) floor(h[1]/delta[1]); /* ++++++++++++++++++++++++++++ */ if(o_verbose == 1){ /* binning */ fprintf(stdout,"---- Binning Structure ------------\n"); fprintf(stdout," M data range delta J bins range\n"); fprintf(stdout,"x: %zd [%+.2e,%+.2e] %+.2e %zd [%+.2e,%+.2e]\n", M[0],min[0],max[0],delta[0],J[0],a[0],a[0]+(M[0]-1)*delta[0]); fprintf(stdout,"y: %zd [%+.2e,%+.2e] %+.2e %zd [%+.2e,%+.2e]\n", M[1],min[1],max[1],delta[1],J[1],a[1],a[1]+(M[1]-1)*delta[1]); fprintf(stdout,"\n"); } /* ++++++++++++++++++++++++++++ */ /* set the values of the kernel */ { size_t i,j; Kvals = (double *) my_alloc((2*J[0]+1)*(2*J[1]+1)*sizeof(double)); for(i=0;i<=2*J[0];i++){ const double dtmp0 = (int) i- (int) J[0]; for(j=0;j<=2*J[1];j++){ const double dtmp1 = (int) j- (int) J[1]; const double dtmp2 = dtmp0*dtmp0*delta[0]*delta[0]/(h[0]*h[0])+ dtmp1*dtmp1*delta[1]*delta[1]/(h[1]*h[1]) ; Kvals[i*(2*J[1]+1)+j] = K(dtmp2)/(h[0]*h[1]); } } } /* ++++++++++++++++++++++++++++ */ if(o_verbose == 1){ size_t i,j; double sum=0.0; fprintf(stdout,"---- Final Checks -----------------\n"); for(i=0;i<=2*J[0];i++){ for(j=0;j<=2*J[1];j++){ sum += Kvals[i*(2*J[1]+1)+j]; /* fprintf(stdout,"%f ",Kvals[i*(2*J[1]+1)+j]); */ } /* fprintf(stdout,"\n"); */ } fprintf(stdout,"sum of kernel coeff. (~1): %e\n",sum*delta[0]*delta[1]); } /* ++++++++++++++++++++++++++++ */ /* binning */ { size_t i,j; /* double sum=0.0; */ /* allocate the bins */ csi = (double *) my_alloc(M[0]*M[1]*sizeof(double)); /* prepare the binning */ for(i=0;i= M[0]-1 || index1 >= M[1]-1 ) continue; csi[index0*M[1]+index1]+=(1.-epsilon0)*(1.-epsilon1); csi[index0*M[1]+index1+1]+=(1.-epsilon0)*epsilon1; csi[(index0+1)*M[1]+index1]+=epsilon0*(1.-epsilon1); csi[(index0+1)*M[1]+index1+1]+=epsilon0*epsilon1; } /* normalization */ for(i=0;i0?i-Jx:0); const int max0 = (i+Jx>Mx-1?Mx-1:i+Jx); for(j=-Jy;j0?j-Jy:0); const int max1 = (j+Jy>My-1?My-1:j+Jy); double sum=0.0; int l,m; for(l=min0;l<=max0;l++){ for(m=min1;m<=max1;m++){ sum+=Kvals[(i-l+Jx)*(2*Jy+1)+(j-m+Jy)]*csi[l*My+m]; } } if(o_devariate == 1){ const double x = (tmpx*cphi-tmpy*sphi)*sdev[0]+ave[0]; const double y = (tmpy*cphi-tmpx*sphi)*sdev[1]+ave[1]; printf(FLOAT_SEP,x); printf(FLOAT_SEP,y); printf(FLOAT_NL,sum*detJ); dtmp1+=sum; } else{ printf(FLOAT_SEP,tmpx); printf(FLOAT_SEP,tmpy); printf(FLOAT_NL,sum); dtmp1+=sum; } } printf("\n"); } /* ++++++++++++++++++++++++++++ */ if(o_verbose == 1){ fprintf(stdout,"sum of discrete density (~1): %e\n",dtmp1*delta[0]*delta[1]); } /* ++++++++++++++++++++++++++++ */ } exit(0); } gbutils-5.7.1/depcomp0000755000175000017500000004755611775245551011530 00000000000000#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2011-12-04.11; # UTC # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009, 2010, # 2011 Free Software Foundation, Inc. # 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, 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, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try \`$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by `PROGRAMS ARGS'. object Object file output by `PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputting dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi cygpath_u="cygpath -u -f -" if test "$depmode" = msvcmsys; then # This is just like msvisualcpp but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvisualcpp fi if test "$depmode" = msvc7msys; then # This is just like msvc7 but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvc7 fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ## The second -e expression handles DOS-style file names with drive letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the `deleted header file' problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. tr ' ' ' ' < "$tmpdepfile" | ## Some versions of gcc put a space before the `:'. On the theory ## that the space means something, we add a space to the output as ## well. hp depmode also adds that space, but also prefixes the VPATH ## to the object. Take care to not repeat it in the output. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like `#:fec' to the end of the # dependency line. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ tr ' ' ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts `$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then # Each line is of the form `foo.o: dependent.h'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; icc) # Intel's C compiler understands `-MD -MF file'. However on # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c # ICC 7.0 will fill foo.d with something like # foo.o: sub/foo.c # foo.o: sub/foo.h # which is wrong. We want: # sub/foo.o: sub/foo.c # sub/foo.o: sub/foo.h # sub/foo.c: # sub/foo.h: # ICC 7.1 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using \ : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" # Add `dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// s/$/:/ p }' "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in `foo.d' instead, so we check for that too. # Subdirectories are respected. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then # With Tru64 cc, shared objects can also be used to make a # static library. This mechanism is used in libtool 1.4 series to # handle both shared and static libraries in a single compilation. # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. # # With libtool 1.5 this exception was removed, and libtool now # generates 2 separate objects for the 2 libraries. These two # compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4 tmpdepfile2=$dir$base.o.d # libtool 1.5 tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.o.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d tmpdepfile4=$dir$base.d "$@" -MD fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; msvc7) if test "$libtool" = yes; then showIncludes=-Wc,-showIncludes else showIncludes=-showIncludes fi "$@" $showIncludes > "$tmpdepfile" stat=$? grep -v '^Note: including file: ' "$tmpdepfile" if test "$stat" = 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The first sed program below extracts the file names and escapes # backslashes for cygpath. The second sed program outputs the file # name when reading, but also accumulates all include files in the # hold buffer in order to output them again at the end. This only # works with sed implementations that can handle large buffers. sed < "$tmpdepfile" -n ' /^Note: including file: *\(.*\)/ { s//\1/ s/\\/\\\\/g p }' | $cygpath_u | sort -u | sed -n ' s/ /\\ /g s/\(.*\)/ \1 \\/p s/.\(.*\) \\/\1:/ H $ { s/.*/ / G p }' >> "$depfile" rm -f "$tmpdepfile" ;; msvc7msys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for `:' # in the target name. This is to cope with DOS-style filenames: # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise. "$@" $dashmflag | sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" tr ' ' ' ' < "$tmpdepfile" | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # X makedepend shift cleared=no eat=no for arg do case $cleared in no) set ""; shift cleared=yes ;; esac if test $eat = yes; then eat=no continue fi case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -arch) eat=yes ;; -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix=`echo "$object" | sed 's/^.*\././'` touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" # makedepend may prepend the VPATH from the source file name to the object. # No need to regex-escape $object, excess matching of '.' is harmless. sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" sed '1,2d' "$tmpdepfile" | tr ' ' ' ' | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi IFS=" " for arg do case "$arg" in -o) shift ;; $object) shift ;; "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E 2>/dev/null | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" echo " " >> "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; msvcmsys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: gbutils-5.7.1/gbplot0000755000175000017500000001527712377156723011364 00000000000000#!/bin/sh # gbplot ver. 1.1 Copyright (C) 2009-2010 Giulio Bottazzi #read command line options; the position of the last option is saved #in OPTIND while getopts "T:o:t:p:ihl:C:v-:" opt do case $opt in -) case "${OPTARG}" in help) help=yes;; version) version=yes;; esac;; T) terminal=$OPTARG;; o) outfile=$OPTARG;; t) title=$OPTARG;; p) prestring=$OPTARG;; i) interactive=yes;; h) help=yes;; l) setlog=$OPTARG;; C) precommand="${precommand}; $OPTARG";; v) verbose=yes;; \?) help=yes;; esac done if [ "$version" = "yes" ]; then cat - < Package home page EOF exit fi if [ "$help" = "yes" ]; then cat - < .gb.data #check the syntax and define plotting parameters #plotcmd=${@:$OPTIND:1} <- bashism shift `expr $OPTIND - 1` plotcmd=$1 if [ "$plotcmd" != "plot" ] && [ "$plotcmd" != "splot" ]; then echo "provide a plot or splot command" exit fi #firstpar=${@:$(( OPTIND+1 )):1} <- bashism #plotpar=${@:$(( OPTIND+2 ))} <- bashism shift firstpar=$1 shift plotpar=$@ #identify range specification if echo "$firstpar" | grep '\[*\]' > /dev/null; then plotcmd="$plotcmd $firstpar" else plotpar="$firstpar $plotpar" fi #set the default terminal if echo "set term" | gnuplot 2>&1 | grep wx > /dev/null; then DEFTERM=wxt else DEFTERM=x11 fi #----------------------------------------------- if [ "$interactive" = "yes" ]; then #interactive session #create temporary files CMDFILE=`tempfile` ENDFILE=`tempfile` # --- initial gnuplot commands #set the default terminal echo "set term $DEFTERM noraise" >> $CMDFILE #next line useful for screen to start in present directory echo "cd \"$PWD\"" >> $CMDFILE #no need of irrelevant titles echo "set key noautotitle" >> $CMDFILE #prepend expression if [ "$prestring" != "" ]; then echo "$prestring" >> $CMDFILE fi #add title if [ "$title" != "" ]; then echo "set title \"$title\"" >> $CMDFILE fi #set log scale if [ "$setlog" != "" ]; then echo "set log $setlog" >> $CMDFILE fi #add pre-plot command if [ "$precommand" != "" ]; then echo "$precommand" >> $CMDFILE fi echo "$plotcmd \".gb.data\" $plotpar" >> $CMDFILE echo "show plot" >> $CMDFILE # ---------------------------- # --- final gnuplot commands #prepare for final output if 'terminal' or 'outfile' is specified if [ "$terminal" != "" ]; then echo "set term $terminal" >> $ENDFILE fi if [ "$outfile" != "" ]; then echo "set out \"$outfile\"" >> $ENDFILE echo "replot" >> $ENDFILE echo "set out" >> $ENDFILE fi #remove temporary files echo "!rm .gb.data" >> $ENDFILE echo "!rm $CMDFILE $ENDFILE" >> $ENDFILE # ---------------------------- if [ "$verbose" = "yes" ]; then cat $CMDFILE > /dev/stderr echo "-- session -- " > /dev/stderr cat $ENDFILE > /dev/stderr fi if [ "$TERM" = "screen" ]; then #start gnuplot in a new screen window screen -X screen gnuplot $CMDFILE - $ENDFILE else #start gnuplot in a new X terminal aterm -e gnuplot $CMDFILE - $ENDFILE fi else #non-interactive session #create temporary files CMDFILE=`tempfile` #next line useful for screen to start in present directory echo "cd \"$PWD\"" >> $CMDFILE #no need of irrelevant titles echo "set key noautotitle" >> $CMDFILE if [ "$terminal" != "" ]; then echo "set term $terminal" >> $CMDFILE else echo "set term $DEFTERM noraise" >> $CMDFILE fi if [ "$outfile" != "" ]; then echo "set out \"$outfile\"" >> $CMDFILE fi #prepend expression if [ "$prestring" != "" ]; then echo "$prestring" >> $CMDFILE echo "$prestring" fi #add title if [ "$title" != "" ]; then echo "set title \"$title\"" >> $CMDFILE fi #set log scale if [ "$setlog" != "" ]; then echo "set log $setlog" >> $CMDFILE fi #add pre-plot command if [ "$precommand" != "" ]; then echo "$precommand" >> $CMDFILE fi echo "$plotcmd \".gb.data\" $plotpar" >> $CMDFILE if [ "$verbose" = "yes" ]; then cat $CMDFILE > /dev/stderr fi gnuplot -persist ${CMDFILE} rm .gb.data rm "$CMDFILE" fi gbutils-5.7.1/gbconvtable0000755000175000017500000000537412532112602012335 00000000000000#!/bin/sh # gbconvtable ver. 5.6 Copyright (C) 2010-2015 Giulio Bottazzi #default settings pos=1 force="no" dictfile="" #read command line options; the position of the last option is saved #in OPTIND while getopts "d:c:f:h-:" opt do case $opt in -) case "${OPTARG}" in help) help=yes;; version) version=yes;; esac;; d) dictfile=$OPTARG;; c) pos=$OPTARG;; f) force=yes ; fstring=$OPTARG ;; h) help=yes;; \?) help=yes;; esac done if [ "$version" = "yes" ]; then cat - < Package home page EOF exit fi if [ "$help" = "yes" ]; then cat - < 0){ split(line,pair) dict[pair[1]]=pair[2] } } { #replace the field and print it if(NF>=pos){ if($pos in dict) $pos=dict[$pos] else{ if(force=="yes") $pos=fstring } } print $0 } ' gbutils-5.7.1/AUTHORS0000644000175000017500000000020710206604747011173 00000000000000Author of GBUTILS is Giulio Bottazzi (bottazzi@sssup.it) Contributors: Angelo Secchi (secchi@sssup.it) : bugfixes and documentation gbutils-5.7.1/gbker2d.10000644000175000017500000000370013246755334011534 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBKER2D "1" "March 2018" "gbker2d 5.7.1" "User Commands" .SH NAME gbker2d \- Kernel density estimate for bivariate data .SH SYNOPSIS .B gbker2d [\fI\,options\/\fR] .SH DESCRIPTION 2D kernel density estimation on an equispaced grid. Data are read from standard input as couple (x,y). The kernel bandwidth if not provided with the option \fB\-H\fR is set automatically. Different bandwidths can be specified for x and y. .SH OPTIONS .TP \fB\-n\fR number of points where the density is computed (default 10) use comma (,) to specify different values for x and y components .TP \fB\-H\fR set the kernel bandwidth explicitly; use comma (,) to specify different values for x and y components .TP \fB\-S\fR scale the kernel bandwidth with respect to euristic 'optimal' value; use comma (,) to specify different values for x and y components .TP \fB\-K\fR choose the kernel to use: 0: Epanenchnikov 1: Rectangular 2: Silverman type 1 3: Silverman type 2 (default 0) .TP \fB\-D\fR switch off data de\-variation procedure .TP \fB\-v\fR verbose mode .TP \fB\-F\fR specify the input fields separators (default " \et") .TP \fB\-h\fR this help .SH EXAMPLES .TP gbker2d \-n 10,20 \-K 1 < file compute the kernel on an equispaced grid 10x20 using a rectangular kernel .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/multimin.c0000644000175000017500000006435213246754720012144 00000000000000/* multimin.c (ver. 1.2) -- Interface to GSL multidim. minimization Copyright (C) 2002-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ /* multimin is an interface to the various GSL minimization routines. When invoked, all the information necessary to perform the minimization are passed as formal parameters. This generate a pretty long, FORTRAN-like, list of parameters. This approach allows, however, to black-box, as far as possible, the interior functioning of the routine from the rest of the program. Let's analyse the calling convention in details: multimin(size_t n,double *x,double *fun, unsigned *type,double *xmin,double *xmax, void (*f) (const size_t,const double *,void *,double *), void (* df) (const size_t,const double *, void *,double *), void (* fdf) (const size_t,const double *, void *,double *,double *), void *fparams, const struct multimin_params oparams) where -------------------------------------------------------------------- n INPUT: dimension of the problem, number of independent variables of the function. -------------------------------------------------------------------- x INPUT: pointer to an array of n values x[0],...x[n-1] containing the initial estimate of the minimum point OUTPUT: contains the final estimation of the minimum position -------------------------------------------------------------------- type a pointer to an array of integer type[1],...,type[n-1] describing the boundary conditions for the different variables. The problem is solved as an unconstrained one on a suitably transformed variable y. Possible values are: Interval: Transformation: 0 unconstrained x=y 1 semi-closed right half line [ xmin,+infty ) x=xmin+y^2 2 semi-closed left half line ( -infty,xmax ] x=xmax-y^2 3 closed interval [ xmin,xmax ] x=SS+SD*sin(y) 4 open right half line ( xmin,+infty ) x=xmin+exp(y) 5 open left half line ( -infty,xmax ) x=xmax-exp(y) 6 open interval ( xmin,xmax ) x=SS+SD*tanh(y) where SS=.5(xmin+xmax) SD=.5(xmax-xmin) There are also other UNSUPPORTED transformations used in various test 7 open interval ( xmin,xmax ) x=SS+SD*(1+y/sqrt(1+y^2)) 8 open right half line ( xmin,+infty ) x=xmin+.5*(y+sqrt(1+y^2)) 9 open left half line ( -infty,xmax ) x=xmax+.5*(y-sqrt(1+y^2)) -------------------------------------------------------------------- xmin xmax pointers to arrays of double containing respectively the lower and upper boundaries of the different variables. For a given variable, only the values that are implied by the type of constraints, defined as in *type, are actually inspected. -------------------------------------------------------------------- f f calculates the objective function at a specified point x. Its specification is void (*f) (const size_t n, const double *x,void *fparams,double *fval) n INPUT: the number of variables x INPUT:the point at which the function is required fparams pointer to a structure containing parameters required by the function. If no external parameter are required it can be set to NULL. fval OUTPUT: the value of the objective function at the current point x. -------------------------------------------------------------------- df df calculates the gradient of the objective function at a specified point x. Its specification is void (*df) (const size_t n, const double *x,void *fparams,double *grad) n INPUT: the number of variables x INPUT:the point at which the function is required fparams pointer to a structure containing parameters required by the function. If no external parameter are required it can be set to NULL. grad OUTPUT: the values of the gradient of the objective function at the current point x are stored in grad[0],...,grad[n-1]. -------------------------------------------------------------------- fdf fdf calculates the value and the gradient of the objective function at a specified point x. Its specification is void (*fdf) (const size_t n, const double *x,void *fparams,double *fval,double *grad) n INPUT: the number of variables x INPUT:the point at which the function is required fparams pointer to a structure containing parameters required by the function. If no external parameter are required it can be set to NULL. fval OUTPUT: the value of the objective function at the current point x. grad OUTPUT: the values of the gradient of the objective function at the current point x are stored in grad[0],...,grad[n-1]. -------------------------------------------------------------------- fparams pointer to a structure containing parameters required by the function. If no external parameter are required it can be set to NULL. -------------------------------------------------------------------- oparams structure of the type "multimin_params" containing the optimization parameters. The members are double step_size size of the first trial step double tol accuracy of the line minimization unsigned maxiter maximum number of iterations double epsabs accuracy of the minimization double maxsize; final size of the simplex unsigned method method to use. Possible values are: 0: Fletcher-Reeves conjugate gradient 1: Polak-Ribiere conjugate gradient 2: Vector Broyden-Fletcher-Goldfarb-Shanno method 3: Steepest descent algorithm 4: Nelder-Mead simplex 5: Vector Broyden-Fletcher-Goldfarb-Shanno method ver. 2 6: Simplex algorithm of Nelder and Mead ver. 2 7: Simplex algorithm of Nelder and Mead: random initialization unsigned verbosity if greater then 0 print info on intermediate steps */ #include "multimin.h" struct g_params { size_t n; const unsigned *type; const double *xmin; const double *xmax; void (*f) (const size_t,const double *,void *,double *); void (* df) (const size_t,const double *, void *,double *); void (* fdf) (const size_t,const double *, void *,double *,double *); void *fparams; }; void *multimin_alloc(size_t size){ void *temp; if(!(temp = malloc(size))){ perror("malloc, memory allocation failed"); exit(1); } return temp; } static double g(const gsl_vector *y,void *gparams){ struct g_params *p= (struct g_params *) gparams; size_t i; double dtmp1; double res=GSL_NAN;/* the function is forced to return a value */ /* dereference useful stuff */ const size_t n = p->n; const unsigned *type = p->type; const double * xmin = p->xmin; const double * xmax = p->xmax; double *x = (double *) multimin_alloc(sizeof(double)*n); /* compute values of x and of dx/dy */ for(i=0;if(n,x,p->fparams,&res) ; free (x); return(res); } static void dg(const gsl_vector *y,void *gparams,gsl_vector *dg){ struct g_params *p= (struct g_params *) gparams; size_t i; double dtmp1,dtmp2; /* dereference useful stuff */ const size_t n = p->n; const unsigned *type = p->type; const double * xmin = p->xmin; const double * xmax = p->xmax; double *x = (double *) multimin_alloc(sizeof(double)*n); double *dx = (double *) multimin_alloc(sizeof(double)*n); double *df = (double *) multimin_alloc(sizeof(double)*n); /* compute values of x and of dx/dy */ for(i=0;idf(n,x,p->fparams,df); /* debug output; comment out if necessary */ /* fprintf(stderr,"#dg: x=( "); */ /* for(i=0;in; const unsigned *type = p->type; const double * xmin = p->xmin; const double * xmax = p->xmax; double *x = (double *) multimin_alloc(sizeof(double)*n); double *dx = (double *) multimin_alloc(sizeof(double)*n); double *df = (double *) multimin_alloc(sizeof(double)*n); /* compute values of x and of dx/dy */ for(i=0;ifdf(n,x,p->fparams,g,df); /* debug output; comment out if necessary */ /* fprintf(stderr,"#gdg: f=%f x=( ",g); */ /* for(i=0;iname; break; case 1:/* Polak-Ribiere conjugate gradient */ Tfdf = gsl_multimin_fdfminimizer_conjugate_pr; Tname = Tfdf->name; break; case 2:/* Vector Broyden-Fletcher-Goldfarb-Shanno method */ Tfdf = gsl_multimin_fdfminimizer_vector_bfgs; Tname = Tfdf->name; break; case 3:/* Steepest descent algorithm */ Tfdf =gsl_multimin_fdfminimizer_steepest_descent; Tname = Tfdf->name; break; case 4:/* Simplex algorithm of Nelder and Mead */ Tf = gsl_multimin_fminimizer_nmsimplex; Tname = Tf->name; break; case 5:/* Vector Broyden-Fletcher-Goldfarb-Shanno2 method */ Tfdf = gsl_multimin_fdfminimizer_vector_bfgs2; Tname = Tfdf->name; break; case 6:/* Simplex algorithm of Nelder and Mead version 2 */ Tf = gsl_multimin_fminimizer_nmsimplex2; Tname = Tf->name; break; case 7:/* Simplex algorithm of Nelder and Mead: random initialization */ Tf = gsl_multimin_fminimizer_nmsimplex2rand; Tname = Tf->name; break; default: fprintf(stderr,"Optimization method not recognized. Specify one of the following:\n\n"); fprintf(stderr,"0: Fletcher-Reeves conjugate gradient\n"); fprintf(stderr,"1: Polak-Ribiere conjugate gradient\n"); fprintf(stderr,"2: Vector Broyden-Fletcher-Goldfarb-Shanno method\n"); fprintf(stderr,"3: Steepest descent algorithm\n"); fprintf(stderr,"4: Nelder-Mead simplex\n"); fprintf(stderr,"5: Vector Broyden-Fletcher-Goldfarb-Shanno method ver. 2\n"); fprintf(stderr,"6: Simplex algorithm of Nelder and Mead ver. 2\n"); fprintf(stderr,"7: Simplex algorithm of Nelder and Mead: random initialization\n"); fprintf(stderr,"or try -h\n"); exit(EXIT_FAILURE); } /* --- OUPUT ---------------------------------- */ if(oparams.verbosity>0){ fprintf(stderr,"#--- MULTIMIN START\n"); fprintf(stderr,"# method %s\n",Tname); if(oparams.method<4 || oparams.method==5){ fprintf(stderr,"# initial step size %g\n", oparams.step_size); fprintf(stderr,"# line minimization tolerance %g\n",oparams.tol); fprintf(stderr,"# maximum number of iterations %u\n",oparams.maxiter); fprintf(stderr,"# precision %g\n",oparams.epsabs); } else{ fprintf(stderr,"# maximum number of iterations %u\n",oparams.maxiter); fprintf(stderr,"# maximum simplex size %g\n",oparams.maxsize); } } /* -------------------------------------------- */ /* compute values of y for initial condition */ for(i=0;ixmin[i]? (2.*x[i]-xmax[i]-xmin[i])/(xmax[i]-xmin[i]) : 0); /* dtmp1 = (2.*x[i]-xmax[i]-xmin[i])/(xmax[i]-xmin[i]); */ SET(y,i,asin( dtmp1 )); break; case 4:/* (a,+inf) */ SET(y,i,log( x[i]-xmin[i] )); break; case 5:/* (-inf,a) */ SET(y,i,log( xmax[i]-x[i] )); break; case 6:/* (a,b) */ dtmp1 = (2.*x[i]-xmax[i]-xmin[i])/(xmax[i]-xmin[i]); SET(y,i,gsl_atanh ( dtmp1 )); break; case 7:/* (a,b) second approach */ dtmp1 = (2.*x[i]-xmax[i]-xmin[i])/(xmax[i]-xmin[i]); SET(y,i, dtmp1/sqrt(1-dtmp1*dtmp1)); break; case 8:/* (a,+inf) second approach */ dtmp1 = x[i]-xmin[i]; SET(y,i, dtmp1-1./(4.*dtmp1)); break; case 9:/* (-inf,a) second approach */ dtmp1 = xmax[i]-x[i]; SET(y,i, 1./(4.*dtmp1)-dtmp1); break; } } /* --- OUPUT ---------------------------------- */ if(oparams.verbosity>1){ fprintf(stderr,"# - variables initial value and boundaries\n"); for(i=0;i %e\n",(int) i,x[i],GET(y,i)); else switch(type[i]){ case 0:/* (-inf,+inf) */ fprintf(stderr,"# x[%d]=%e (-inf,+inf) trans 0 -> %e\n",(int) i,x[i],GET(y,i)); break; case 1:/* [a,+inf) */ fprintf(stderr,"# x[%d]=%e [%g,+inf) trans 1 -> %e\n",(int) i,x[i],xmin[i],GET(y,i)); break; case 2:/* (-inf,a] */ fprintf(stderr,"# x[%d]=%e (-inf,%g] trans 2 -> %e\n",(int) i,x[i],xmax[i],GET(y,i)); break; case 3:/* [a,b] */ fprintf(stderr,"# x[%d]=%e [%g,%g] trans 3 -> %e\n",(int) i,x[i],xmin[i],xmax[i],GET(y,i)); break; case 4:/* (a,+inf) */ fprintf(stderr,"# x[%d]=%e (%g,+inf) trans 4 -> %e\n",(int) i,x[i],xmin[i],GET(y,i)); break; case 5:/* (-inf,a) */ fprintf(stderr,"# x[%d]=%e (-inf,%g) trans 5 -> %e\n",(int) i,x[i],xmax[i],GET(y,i)); break; case 6:/* (a,b) */ fprintf(stderr,"# x[%d]=%e (%g,%g) trans 6 -> %e\n",(int) i,x[i],xmin[i],xmax[i],GET(y,i)); break; case 7: fprintf(stderr,"# x[%d]=%e (%g,%g) trans 7 -> %e\n",(int) i,x[i],xmin[i],xmax[i],GET(y,i)); break; case 8:/* [a,+inf) */ fprintf(stderr,"# x[%d]=%e (%g,+inf) trans 8 -> %e\n",(int) i,x[i],xmin[i],GET(y,i)); break; case 9:/* [a,+inf) */ fprintf(stderr,"# x[%d]=%e (-inf,%g) trans 9 -> %e\n",(int) i,x[i],xmax[i],GET(y,i)); break; } } { double res; fprintf(stderr,"# - function initial value\n"); f(n,x,fparams,&res); fprintf(stderr,"# f=%e\n",res); } } /* -------------------------------------------- */ if(oparams.method<4 || oparams.method==5){/* methods with derivatives */ unsigned iter=0; int status; struct g_params gparams; gsl_multimin_function_fdf GdG; gsl_multimin_fdfminimizer *s = gsl_multimin_fdfminimizer_alloc (Tfdf,n); /* set the parameters of the new function */ gparams.n = n; gparams.type = type; gparams.xmin = xmin; gparams.xmax = xmax; gparams.f = f; gparams.df = df; gparams.fdf = fdf; gparams.fparams = fparams; /* set the function to solve */ GdG.f=g; GdG.df=dg; GdG.fdf=gdg; GdG.n=n; GdG.params=(void *) &gparams; /* initialize minimizer */ status=gsl_multimin_fdfminimizer_set(s,&GdG,y,oparams.step_size,oparams.tol); if(status) { fprintf(stderr,"#ERROR: %s\n",gsl_strerror (status)); exit(EXIT_FAILURE); } /* +++++++++++++++++++++++++++++++++++++++++++++++ */ if(oparams.verbosity>2) fprintf(stderr,"# - start minimization \n"); /* +++++++++++++++++++++++++++++++++++++++++++++++ */ do { if( ++iter > oparams.maxiter) break; status = gsl_multimin_fdfminimizer_iterate (s); /* +++++++++++++++++++++++++++++++++++++++++++++++ */ if(oparams.verbosity>2){ fprintf(stderr,"# [%d]",iter); fprintf(stderr," g=%+12.6e y=( ",s->f); for(i=0;ix,i)); fprintf(stderr,") dg=( "); for(i=0;igradient,i)); fprintf(stderr,") |dg|=%12.6e ",gsl_blas_dnrm2 (s->gradient)); fprintf(stderr,"|dx|=%12.6e\n",gsl_blas_dnrm2 (s->dx)); } /* +++++++++++++++++++++++++++++++++++++++++++++++ */ if(status == GSL_ENOPROG){ fprintf(stderr,"# status: %s\n",gsl_strerror (status)); break; } if(status){ fprintf(stderr,"#WARNING: %s\n", gsl_strerror (status)); break; } status = gsl_multimin_test_gradient (s->gradient,oparams.epsabs); } while (status == GSL_CONTINUE); gsl_vector_memcpy (y,s->x); *fun=s->f; gsl_multimin_fdfminimizer_free (s); /* +++++++++++++++++++++++++++++++++++++++++++++++ */ if(oparams.verbosity>2){ fprintf(stderr,"# - end minimization\n"); fprintf(stderr,"# iterations %u\n",iter-1); } /* +++++++++++++++++++++++++++++++++++++++++++++++ */ } else{ /* methods without derivatives */ unsigned iter=0; int status; double size; gsl_vector *ss = gsl_vector_alloc (n); struct g_params gparams; gsl_multimin_function G; gsl_multimin_fminimizer *s=gsl_multimin_fminimizer_alloc (Tf,n); /* set the parameters of the new function */ gparams.n = n; gparams.type = type; gparams.xmin = xmin; gparams.xmax = xmax; gparams.f = f; gparams.fparams = fparams; /* set the function to solve */ G.f=g; G.n=n; G.params=(void *) &gparams; /* Initial vertex size vector */ gsl_vector_set_all (ss,oparams.step_size+oparams.maxsize); /* --- OUPUT ---------------------------------- */ if(oparams.verbosity>0){ size_t i; fprintf(stderr,"# initial simplex sizes\n"); fprintf(stderr,"# "); for(i=0;i2) fprintf(stderr,"# - start minimization \n"); /* +++++++++++++++++++++++++++++++++++++++++++++++ */ do { if( ++iter > oparams.maxiter) break; status = gsl_multimin_fminimizer_iterate(s); size = gsl_multimin_fminimizer_size (s); /* +++++++++++++++++++++++++++++++++++++++++++++++ */ if(oparams.verbosity>2){ fprintf(stderr,"# g=%g y=( ",s->fval); for(i=0;ix,i)); fprintf(stderr,") "); fprintf(stderr," simplex size=%g ",size); fprintf(stderr,"\n"); } /* +++++++++++++++++++++++++++++++++++++++++++++++ */ status=gsl_multimin_test_size (size,oparams.maxsize); } while (status == GSL_CONTINUE); gsl_vector_memcpy (y, s->x); *fun=s->fval; gsl_multimin_fminimizer_free (s); /* +++++++++++++++++++++++++++++++++++++++++++++++ */ if(oparams.verbosity>2){ fprintf(stderr,"# - end minimization\n"); fprintf(stderr,"# iterations %u\n",iter-1); } /* +++++++++++++++++++++++++++++++++++++++++++++++ */ } /* compute values of x */ for(i=0;i0){ for(i=0;i x[%zd]=%e\n",GET(y,i),i,x[i]); fprintf(stderr,"#--- MULTIMIN END --- \n"); } /* -------------------------------------------- */ gsl_vector_free (y); } gbutils-5.7.1/paretoIII_gbhill.c0000644000175000017500000002162713246754720013452 00000000000000#include "gbhill.h" /* Pareto 3 distribution */ /* ------------------------ */ /* x[0]=a x[1]=b x[2]=s */ /* F[j] = 1-pow(x[j]/s +1 ,-a)*exp(-b*x[j]/s) */ /* -log(f[j]) = -log(1/s) + a*log(x[j]/s +1) - b*x[j]/s +log( b+a*pow((x[j]/s +1),-1) ) */ /* N: sample size k: number of observations used */ void pareto3_nll (const size_t n, const double *x,void *params,double *fval){ size_t i; /* log-likelihood parameters */ const size_t min = ((struct loglike_params *) params)->min; const size_t max = ((struct loglike_params *) params)->max; const double N = (double) ((struct loglike_params *) params)->size; const double d = (double) ((struct loglike_params *) params)->d; const int method = ((struct loglike_params *) params)->method; const double *data = ((struct loglike_params *) params)->data; /* distribution parameters */ const double a=x[0]; const double b=x[1]; const double s=x[2]; const double k = ((double) max-min+1); *fval=0.0; for(i=min;i<=max;i++) *fval += a*log(data[i]/s+1) + b*data[i]/s -log(b+a/(data[i]/s+1)); *fval = log(s) + (*fval)/k; switch(method){ case 0: if(N>k){ const double z=data[min]; const double F = 1-pow(z/s +1 ,-a)*exp(-b*z/s); *fval += -(N/k-1.0)*log(F); } break; case 1: if(N>k){ const double F = 1-pow(d/s +1 ,-a)*exp(-b*d/s); *fval += -(N/k-1.0)*log(F); } break; case 2: if(N>k){ const double z=data[max]; const double F = 1-pow(z/s +1 ,-a)*exp(-b*z/s); *fval += -(N/k-1.0)*log(1-F); } break; case 3: if(N>k){ const double F = 1-pow(d/s +1 ,-a)*exp(-b*d/s); *fval += -(N/k-1.0)*log(1-F); } break; } /* fprintf(stderr,"[ f ] x1=%g x2=%g x2=%g f=%g\n",x[0],x[1],x[2],*fval); */ } void pareto3_dnll (const size_t n, const double *x,void *params,double *grad){ size_t i; /* log-likelihood parameters */ const size_t min = ((struct loglike_params *) params)->min; const size_t max = ((struct loglike_params *) params)->max; const size_t N = ((struct loglike_params *) params)->size; const double d = (double) ((struct loglike_params *) params)->d; const int method = ((struct loglike_params *) params)->method; const double *data = ((struct loglike_params *) params)->data; /* distribution parameters */ const double a=x[0]; const double b=x[1]; const double s=x[2]; const double k = ((double) max-min+1); grad[0]=0.0; for(i=min;i<=max;i++) grad[0] += log(data[i]/s +1) - 1/((data[i]/s +1)*(b+a/(data[i]/s +1))); grad[0]/=k; grad[1]=0.0; for(i=min;i<=max;i++) grad[1] += data[i]/s - 1/(b+a/(data[i]/s +1)); grad[1]/=k; grad[2]=0.0; for(i=min;i<=max;i++) grad[2] += a*data[i]/(s*(data[i]+s)) + b*data[i]/(s*s) + a*data[i]/(pow(data[i]+s,2)*(b+a/(data[i]/s +1))); grad[2]= 1/s-grad[2]/k; switch(method){ case 0: if(N>k) { const double z=data[min]; const double dtmp1=z/s+1; const double F = 1-pow(dtmp1,-a)*exp(-b*z/s); const double dFda = exp(-b*z/s)*pow(dtmp1, -a)*log(dtmp1); const double dFdb = pow(dtmp1,-a)*exp(-b*z/s)*z/s; const double dFds = - exp(-b*z/s)*pow(dtmp1,-a)*(b+a/dtmp1)*z/(s*s); grad[0] += -(N/k-1.0)*dFda/F; grad[1] += -(N/k-1.0)*dFdb/F; grad[2] += -(N/k-1.0)*dFds/F; } break; case 1: if(N>k) { const double dtmp1=d/s+1; const double F = 1-pow(dtmp1,-a)*exp(-b*d/s); const double dFda = exp(-b*d/s)*pow(dtmp1, -a)*log(dtmp1); const double dFdb = pow(dtmp1,-a )*exp(-b*d/s)*d/s; const double dFds = - exp(-b*d/s)*pow(dtmp1,-a)*(b+a/dtmp1)*d/(s*s); grad[0] += -(N/k-1.0)*dFda/F; grad[1] += -(N/k-1.0)*dFdb/F; grad[2] += -(N/k-1.0)*dFds/F; } break; case 2: if(N>k){ const double z=data[max]; const double dtmp1=z/s+1; const double F = 1-pow(dtmp1,-a)*exp(-b*z/s); const double dFda = exp(-b*z/s)*pow(dtmp1, -a)*log(dtmp1); const double dFdb = pow(dtmp1,-a )*exp(-b*z/s)*z/s; const double dFds = - exp(-b*z/s)*pow(dtmp1,-a)*(b+a/dtmp1)*z/(s*s); grad[0] += (N/k-1.0)*dFda/(1-F); grad[1] += (N/k-1.0)*dFdb/(1-F); grad[2] += (N/k-1.0)*dFds/(1-F); } break; case 3: if(N>k){ const double dtmp1=d/s+1; const double F = 1-pow(dtmp1,-a)*exp(-b*d/s); const double dFda = exp(-b*d/s)*pow(dtmp1, -a)*log(dtmp1); const double dFdb = pow(dtmp1,-a )*exp(-b*d/s)*d/s; const double dFds = - exp(-b*d/s)*pow(dtmp1,-a)*(b+a/dtmp1)*d/(s*s); grad[0] += (N/k-1.0)*dFda/(1-F); grad[1] += (N/k-1.0)*dFdb/(1-F); grad[2] += (N/k-1.0)*dFds/(1-F); } break; } /* fprintf(stderr,"[ df] x1=%g x2=%g x3=%g df/dx1=%g df/dx2=%g df/dx3=%g\n", */ /* x[0],x[1],x[2],grad[0],grad[1],grad[2]); */ } void pareto3_nlldnll (const size_t n, const double *x,void *params,double *fval,double *grad){ size_t i; /* log-likelihood parameters */ const size_t min = ((struct loglike_params *) params)->min; const size_t max = ((struct loglike_params *) params)->max; const size_t N = ((struct loglike_params *) params)->size; const double d = (double) ((struct loglike_params *) params)->d; const int method = ((struct loglike_params *) params)->method; const double *data = ((struct loglike_params *) params)->data; /* distribution parameters */ const double a=x[0]; const double b=x[1]; const double s=x[2]; const double k = ((double) max-min+1); *fval=0.0; for(i=min;i<=max;i++) *fval += a*log(data[i]/s+1) + b*data[i]/s -log(b+a/(data[i]/s+1)); *fval = log(s) + (*fval)/k; grad[0]=0.0; for(i=min;i<=max;i++) grad[0] += log(data[i]/s +1) - 1/((data[i]/s +1)*(b+a/(data[i]/s +1))); grad[0]/=k; grad[1]=0.0; for(i=min;i<=max;i++) grad[1] += data[i]/s - 1/(b+a/(data[i]/s +1)); grad[1]/=k; grad[2]=0.0; for(i=min;i<=max;i++) grad[2] += a*data[i]/(s*(data[i]+s)) + b*data[i]/(s*s) + a*data[i]/(pow(data[i]+s,2)*(b+a/(data[i]/s +1))); grad[2]= 1/s-grad[2]/k; switch(method){ case 0: if(N>k) { const double z=data[min]; const double dtmp1=z/s+1; const double F = 1-pow(dtmp1,-a)*exp(-b*z/s); const double dFda = exp(-b*z/s)*pow(dtmp1, -a)*log(dtmp1); const double dFdb = pow(dtmp1,-a )*exp(-b*z/s)*z/s; const double dFds = - exp(-b*z/s)*pow(dtmp1,-a)*(b+a/dtmp1)*z/(s*s); *fval += -(N/k-1.0)*log(F); grad[0] += -(N/k-1.0)*dFda/F; grad[1] += -(N/k-1.0)*dFdb/F; grad[2] += -(N/k-1.0)*dFds/F; } break; case 1: if(N>k) { const double dtmp1=d/s+1; const double F = 1-pow(dtmp1,-a)*exp(-b*d/s); const double dFda = exp(-b*d/s)*pow(dtmp1, -a)*log(dtmp1); const double dFdb = pow(dtmp1,-a )*exp(-b*d/s)*d/s; const double dFds = - exp(-b*d/s)*pow(dtmp1,-a)*(b+a/dtmp1)*d/(s*s); *fval += -(N/k-1.0)*log(F); grad[0] += -(N/k-1.0)*dFda/F; grad[1] += -(N/k-1.0)*dFdb/F; grad[2] += -(N/k-1.0)*dFds/F; } break; case 2: if(N>k){ //const double z=data[min]; const double z=data[max]; const double dtmp1=z/s+1; const double F = 1-pow(dtmp1,-a)*exp(-b*z/s); const double dFda = exp(-b*z/s)*pow(dtmp1, -a)*log(dtmp1); const double dFdb = pow(dtmp1,-a )*exp(-b*z/s)*z/s; const double dFds = - exp(-b*z/s)*pow(dtmp1,-a)*(b+a/dtmp1)*z/(s*s); *fval += -(N/k-1.0)*log(1-F); grad[0] += (N/k-1.0)*dFda/(1-F); grad[1] += (N/k-1.0)*dFdb/(1-F); grad[2] += (N/k-1.0)*dFds/(1-F); } break; case 3: if(N>k){ const double dtmp1=d/s+1; const double F = 1-pow(dtmp1,-a)*exp(-b*d/s); const double dFda = exp(-b*d/s)*pow(dtmp1, -a)*log(dtmp1); const double dFdb = pow(dtmp1,-a )*exp(-b*d/s)*d/s; const double dFds = - exp(-b*d/s)*pow(dtmp1,-a)*(b+a/dtmp1)*d/(s*s); *fval += -(N/k-1.0)*log(1-F); grad[0] += (N/k-1.0)*dFda/(1-F); grad[1] += (N/k-1.0)*dFdb/(1-F); grad[2] += (N/k-1.0)*dFds/(1-F); } break; } /* fprintf(stderr,"[fdf] x1=%g x2=%g f=%g df/dx1=%g df/dx2=%g\n", */ /* x[0],x[1],*fval,grad[0],grad[1]); */ } double pareto3_f (const double x,const size_t n, const double *par){ const double a=par[0]; const double b=par[1]; const double s=par[2]; return exp(-b*x/s)*pow(x/s +1.,-a)*(b+a/(x/s +1.))/s; } double pareto3_F (const double x,const size_t n, const double *par){ const double a=par[0]; const double b=par[1]; const double s=par[2]; return 1-pow((x/s +1) ,-a)*exp(-b*x/s); } /* !!!!! NOT YET IMPLEMENTED. RETURN NANs !!!!! */ gsl_matrix *pareto3_varcovar(const int o_varcovar, double *x, void *params){ size_t i,j; gsl_matrix *covar; covar = gsl_matrix_alloc (3,3); for(i=0;i<3;i++) for(j=0;j<3;j++) gsl_matrix_set (covar,i,j,NAN); return covar; } gbutils-5.7.1/multimin.h0000644000175000017500000000154711232303521012124 00000000000000/*insert GNU extensions*/ #define _GNU_SOURCE /*in particular, use of NAN extension*/ /* used by */ extern int errno; /* GSL ----------- */ #include #include #include #include #include /* --------------- */ #define GET(x,i) gsl_vector_get(x,i) #define SET(x,i,y) gsl_vector_set(x,i,y) struct multimin_params { double step_size; double tol; unsigned maxiter; double epsabs; double maxsize; unsigned method; unsigned verbosity; }; void multimin(size_t,double *,double *, const unsigned *,const double *,const double *, void (*) (const size_t,const double *,void *,double *), void (*) (const size_t,const double *, void *,double *), void (*) (const size_t,const double *, void *,double *,double *), void *, const struct multimin_params); gbutils-5.7.1/gbdist.c0000644000175000017500000001331713246754720011555 00000000000000/* gbdist (ver. 5.6) -- Produce cumulative distribution from data Copyright (C) 2000-20014 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "tools.h" /* this is the unbiased version of the empirical distribution function. Indeed if x_k is the k-th largest observation, that is k-1 are smaller and n-k larger, then E[F(x_k)]=k/(N+1) */ void printdist(double const *data,int const size,int const o_reverse, int const o_identical){ size_t i; if(o_identical){ /* print one point for any observed value */ if(!o_reverse){ for(i=0;i Package home page EOF exit fi if [ "$help" = "yes" ]; then cat - < $dataorig #count the number of columns colnum=`head -n 1 $dataorig | gawk '{print NF}'` #separate the input file in three parts: before the column of dummies if [ $pos -gt 1 ]; then cut -d ' ' -f 1-$(( pos-1 )) < $dataorig > $initial fi #the column of dummies itself cut -d ' ' -f $pos < $dataorig > $dummies #after the column of dummies if [ $pos -lt $colnum ]; then cut -d ' ' -f $(( pos+1 ))- < $dataorig > $final fi awk -v verbose=$verbose ' { #store the dummy of the line line[NR]=$1 # prepare the list of labels label[$1]=1 } END { #sort and collect labels labnum=asorti(label,labsort) #print labels if verbose if(verbose ~ "yes") for(i=1;i<=labnum;i++) print labsort[i],i | "cat 1>&2" #prepare the array for(i=1;i<=labnum;i++){ #create the string string="" for(j=1;j $newdummies #delete a column if [ "$del" != "no" ]; then labnum=`head -n 1 $newdummies | gawk '{print NF}'` if [ $del = 1 ]; then storage=`tempfile` cat $newdummies > $storage cut -d ' ' -f 2- < $storage > $newdummies rm $storage elif [ $del = $labnum ]; then storage=`tempfile` cat $newdummies > $storage cut -d ' ' -f 1-$(( labnum-1 )) < $storage > $newdummies rm $storage elif test $del -gt 1 && test $del -lt $labnum; then storage1=`tempfile` storage2=`tempfile` cut -d ' ' -f 1-$(( del-1 )) < $newdummies > $storage1 cut -d ' ' -f $(( del+1 ))- < $newdummies > $storage2 paste -d ' ' $storage1 $storage2 > $newdummies rm $storage1 $storage2 else echo "gbdummyfy: wrong column spec in option -d; request ignored" > /dev/stderr fi fi #rebuild the file if [ "$colnum" = 1 ]; then cat $newdummies elif [ "$pos" = 1 ]; then paste -d ' ' $newdummies $final elif [ "$pos" = "$colnum" ]; then paste -d ' ' $initial $newdummies else paste -d ' ' $initial $newdummies $final fi #remove temporary files rm $dataorig $initial $final $dummies $newdummies gbutils-5.7.1/COPYING0000644000175000017500000004311010206604751011151 00000000000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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) year 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. gbutils-5.7.1/gbmave.10000644000175000017500000000223613246755334011460 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBMAVE "1" "March 2018" "gbmave 5.7.1" "User Commands" .SH NAME gbmave \- Produce moving average from data .SH SYNOPSIS .B gbmave [\fI\,options\/\fR] .SH DESCRIPTION Compute moving average along each column. Data are read from standard input. .SH OPTIONS .TP \fB\-s\fR number of steps to average (default 10) .TP \fB\-n\fR print a progressive tailing integer .TP \fB\-F\fR specify the input fields separators (default " \et") .TP \fB\-h\fR this help .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/config.h.in0000644000175000017500000001160613246753213012153 00000000000000/* config.h.in. Generated from configure.ac by autoheader. */ /* GSL ver. >=2 */ #undef GSL_VER_2 /* Define to 1 if you have the header file. */ #undef HAVE_ASSERT_H /* Define to 1 if you have the declaration of `getdelim', and to 0 if you don't. */ #undef HAVE_DECL_GETDELIM /* Define to 1 if you have the declaration of `getline', and to 0 if you don't. */ #undef HAVE_DECL_GETLINE /* Define to 1 if you have the header file. */ #undef HAVE_FCNTL_H /* Define to 1 if you have the header file. */ #undef HAVE_FLOAT_H /* Define to 1 if you have the `flockfile' function. */ #undef HAVE_FLOCKFILE /* Define to 1 if you have the `floor' function. */ #undef HAVE_FLOOR /* Define to 1 if you have the `funlockfile' function. */ #undef HAVE_FUNLOCKFILE /* Define to 1 if you have the `getdelim' function. */ #undef HAVE_GETDELIM /* Define to 1 if you have the `getsubopt' function. */ #undef HAVE_GETSUBOPT /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define to 1 if you have the `gsl' library (-lgsl). */ #undef HAVE_LIBGSL /* Define to 1 if you have the `gslcblas' library (-lgslcblas). */ #undef HAVE_LIBGSLCBLAS /* Define to 1 if you have the `m' library (-lm). */ #undef HAVE_LIBM /* Define to 1 if you have the `matheval' library (-lmatheval). */ #undef HAVE_LIBMATHEVAL /* Define to 1 if you have the `z' library (-lz). */ #undef HAVE_LIBZ /* Define to 1 if you have the header file. */ #undef HAVE_LIMITS_H /* Define to 1 if you have the `memchr' function. */ #undef HAVE_MEMCHR /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H /* Define to 1 if you have the `pow' function. */ #undef HAVE_POW /* Define to 1 if you have the header file. */ #undef HAVE_REGEX_H /* Define to 1 if you have the `sqrt' function. */ #undef HAVE_SQRT /* Define to 1 if you have the header file. */ #undef HAVE_STDDEF_H /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* Define to 1 if you have the `strchr' function. */ #undef HAVE_STRCHR /* Define to 1 if you have the `strchrnul' function. */ #undef HAVE_STRCHRNUL /* Define to 1 if you have the `strcspn' function. */ #undef HAVE_STRCSPN /* Define to 1 if you have the `strdup' function. */ #undef HAVE_STRDUP /* Define to 1 if you have the header file. */ #undef HAVE_STRINGS_H /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H /* Define to 1 if you have the `strspn' function. */ #undef HAVE_STRSPN /* Define to 1 if you have the `strtod' function. */ #undef HAVE_STRTOD /* Define to 1 if you have the `strtol' function. */ #undef HAVE_STRTOL /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H /* Name of package */ #undef PACKAGE /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the home page for this package. */ #undef PACKAGE_URL /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Enable extensions on AIX 3, Interix. */ #ifndef _ALL_SOURCE # undef _ALL_SOURCE #endif /* Enable GNU extensions on systems that have them. */ #ifndef _GNU_SOURCE # undef _GNU_SOURCE #endif /* Enable threading extensions on Solaris. */ #ifndef _POSIX_PTHREAD_SEMANTICS # undef _POSIX_PTHREAD_SEMANTICS #endif /* Enable extensions on HP NonStop. */ #ifndef _TANDEM_SOURCE # undef _TANDEM_SOURCE #endif /* Enable general extensions on Solaris. */ #ifndef __EXTENSIONS__ # undef __EXTENSIONS__ #endif /* Version number of package */ #undef VERSION /* Define to 1 if `lex' declares `yytext' as a `char *' by default, not a `char[]'. */ #undef YYTEXT_POINTER /* Define to 1 if on MINIX. */ #undef _MINIX /* Define to 2 if the system does not provide POSIX.1 features except with this defined. */ #undef _POSIX_1_SOURCE /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE /* Define to empty if `const' does not conform to ANSI C. */ #undef const /* Define to a replacement function name for getline(). */ #undef getline /* Define to `__inline__' or `__inline' if that's what the C compiler calls it, or to nothing if 'inline' is not supported under any name. */ #ifndef __cplusplus #undef inline #endif /* Define to `unsigned int' if does not define. */ #undef size_t gbutils-5.7.1/gbmstat.c0000644000175000017500000001565213246754720011746 00000000000000/* gbmstat (ver. 5.6) -- Computing statistics in a moving windows Copyright (C) 1998-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "tools.h" int main(int argc,char* argv[]){ size_t lag=10; char *splitstring = strdup(" \t"); /* options */ int o_binary_in=0; int o_table = 0; int o_denan=0; char * const output_opts[] = {"mean","adev","std","var","skew","kurt","min","max","nonan",NULL}; size_t outnum; size_t *outtype; /* set default output */ outnum=1; outtype = (size_t *) my_alloc(1*sizeof(size_t)); outtype[0]=0; /* mean */ /* COMMAND LINE PROCESSING */ /* variables for reading command line options */ /* ------------------------------------------ */ int opt; /* ------------------------------------------ */ /* read the command line */ while((opt=getopt_long(argc,argv,"s:hF:tO:Db:",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='F'){ /*set the fields separator string*/ free(splitstring); splitstring = strdup(optarg); } else if(opt=='D'){ /*ignore NAN data*/ o_denan=1; } else if(opt=='s'){ /*set the lag*/ lag=(size_t) atoi(optarg); } else if(opt=='t'){ /*set the table form*/ o_table=1; } else if(opt=='b'){ /*set binary input or output*/ switch(atoi(optarg)){ case 0 : break; case 1 : o_binary_in=1; break; case 2 : PRINTMATRIXBYCOLS=printmatrixbycols_bin; break; case 3 : o_binary_in=1; PRINTMATRIXBYCOLS=printmatrixbycols_bin; break; default: fprintf(stderr,"unclear binary specification %d, option ignored.\n",atoi(optarg)); break; } } else if(opt=='O'){ /* set the output type */ char *subopts,*subvalue=NULL; /* clear default settings */ outnum=0; free(outtype); outtype=NULL; /* define new output */ subopts = optarg; while (*subopts != '\0'){ int itmp1 = getsubopt(&subopts, output_opts, &subvalue); outnum++; outtype = (size_t *) my_realloc((void *)outtype,outnum*sizeof(size_t)); if(itmp1 == -1){/* Unknown suboption. */ fprintf (stderr,"ERROR (%s): Unknown output type `%s'\n", GB_PROGNAME,subvalue); exit(1); } else outtype[outnum-1]=(size_t) itmp1; } } else if(opt=='h'){ /*print short help*/ fprintf(stdout, "Compute moving average. Data are read from standard input.\n"); fprintf(stdout,"\nUsage: %s [options]\n\n",argv[0]); fprintf(stdout,"Options:\n"); fprintf(stdout," -s number of steps to average (default 10)\n"); fprintf(stdout," -t compute average for each column of input \n"); fprintf(stdout," -D ignore NAN entries in computation \n"); fprintf(stdout," -O set the output, comma separated list of \n"); fprintf(stdout," mean, adev, std, var, skew, kurt, min ,max \n"); fprintf(stdout," and nonan (default mean). nonan works only with\n"); fprintf(stdout," option -D \n"); fprintf(stdout," -F specify the input fields separators (default \" \\t\")\n"); fprintf(stdout," -h this help\n"); return(0); } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); if(!o_table){ double *data=NULL; size_t size,i,j; double **out; /* 1 2 3 4 5 6 7 8 9 */ /* mean adev std var skew kurt min max nonan */ double * stats = (double *) my_alloc(9*sizeof(double)); /* load data */ if(o_binary_in==1) load_bin(&data,&size,0); else load(&data,&size,0,splitstring); /* check there are enough entries */ if(size\/\fR .SH DESCRIPTION Non linear least square regression. Read data in columns (X_1 .. X_N). The model is specified by a function f(x1,x2...) using variables names x1,x2,..,xN for the first, second .. N\-th column of data. f(x1,x2,...) are assumed i.i.d. .SH OPTIONS .TP \fB\-O\fR type of output (default 0) .TP 0 parameters .TP 1 parameters and errors .TP 2 and residuals .TP 3 parameters and variance matrix .TP 4 parameters, errors and s\-scores .TP \fB\-V\fR variance matrix estimation (default 0) .TP 0 .TP 1 < J^{\-1} > .TP 2 < H^{\-1} > .TP 3 < H^{\-1} J H^{\-1} > .TP \fB\-v\fR verbosity level (default 0) .TP 0 just results .TP 1 comment headers .TP 2 summary statistics .TP 3 covariance matrix .TP 4 minimization steps .TP 5 model definition .TP \fB\-M\fR estimation method (default 0) .TP 0 ordinary least square (OLS) .TP 1 minimum absolute deviation (MAD) .TP 2 asymmetric MAD .TP \fB\-e\fR minimization tolerance (default 1e\-5) .TP \fB\-i\fR minimization max iterations (default 500) .TP \fB\-E\fR restart accuracy (default 1e\-5, ignored with option \fB\-M\fR 0) .TP \fB\-I\fR restart max iterations (default 2000, ignored with option \fB\-M\fR 0) .TP \fB\-F\fR input fields separators (default " \et") .TP \fB\-h\fR this help .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/gbgcorr.c0000644000175000017500000001777613246754720011743 00000000000000/* gbgcorr (ver. 5.6) -- Gaussian kernel correlation dimension. Copyright (C) 2006-2018 Cees Diks and Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "tools.h" int main(int argc,char* argv[]){ /* OPTIONS */ int o_verbose=0; int o_nref=0; int o_sigma=0; /* variables for range and num. steps */ unsigned nres=24; unsigned ntau=1; /* delay time */ unsigned ndim=2; /* maximum embedding dimension */ unsigned ntc=1; /* Theiler correction */ unsigned nref; /* number of reference points */ unsigned npt; /* number of delay vectors */ /* random generator variables */ unsigned seed=0; double *r2; /* bandwidths */ double **mm; /* correlation integrals */ double **var; /* variance of correlation integrals */ double **epsilon; /* variance of correlation integrals */ double *index; /* array of indices */ size_t i,ii,m,k,j,d; /* data storage */ size_t ntot; double *x=NULL; char *splitstring = strdup(" \t"); /* variables for reading command line options */ /* ------------------------------------------ */ int opt; /* ------------------------------------------ */ /* COMMAND LINE PROCESSING */ while((opt=getopt_long(argc,argv,"hvF:r:l:m:t:R:p:s",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='h'){ /*print help*/ fprintf(stdout, "Compute the correlation dimension with a Gaussian kernel.\n"); fprintf(stdout, "One block of output is printed for each embedding dimension,\n"); fprintf(stdout, "the first column report the bandwidth, the second the associated\n"); fprintf(stdout, "correlation coefficient. Bandwidths are equispaced in a log scale\n"); fprintf(stdout, "from 1 (maximum) to 2^(-n+1) (minimum). n can be set on the command \n"); fprintf(stdout, "line.\n"); fprintf(stdout,"\nUsage: %s [options]\n\n",argv[0]); fprintf(stdout,"Options: \n"); fprintf(stdout," -h this help\n"); fprintf(stdout," -l time lag (default 1)\n"); fprintf(stdout," -m maximum embedding dimension (default 2)\n"); fprintf(stdout," -t Theiler correction (default 1)\n"); fprintf(stdout," -R seed (default 0)\n"); fprintf(stdout," -p number of reference points (default 1)\n"); fprintf(stdout," -r number of bandwidths (default 24)\n"); fprintf(stdout," -s print standard errors \n"); fprintf(stdout," -F specify the input fields separators (default \" \\t\")\n"); return(0); } else if(opt=='F'){ /*set the fields separator string*/ free(splitstring); splitstring = strdup(optarg); } else if(opt=='s'){ o_sigma = 1; } else if(opt=='l'){ ntau = (unsigned) atoi(optarg); } else if(opt=='m'){ ndim = (unsigned) atoi(optarg); } else if(opt=='t'){ ntc = (unsigned) atoi(optarg); } else if(opt=='R'){ /*RNG seed*/ seed= (unsigned) atoi(optarg); } else if(opt=='p'){ o_nref=1; nref= (unsigned) atoi(optarg); } else if(opt=='v'){ /*increase verbosity*/ o_verbose=1; } else if(opt=='r'){ nres= (unsigned) atoi(optarg); } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); /* initialize RNG */ srand(seed); /* load data */ load(&x,&ntot,0,splitstring); /* remove NaN */ denan(&x,&ntot); /* normalize to 1/2 variance */ { double mean=0.0, meansq=0.0, fac; for (i=0;inpt) nref=npt; /* ++++++++++++++++++++++++++++ */ if(o_verbose == 1){ fprintf(stderr,"delay : %d\n",ntau); fprintf(stderr,"max embedding dimension : %d\n",ndim); fprintf(stderr,"Theiler correction : %d\n",ntc); fprintf(stderr,"RNG seed : %d\n",seed); fprintf(stderr,"Max. num. ref. points : %d\n",npt); fprintf(stderr,"Num. of ref. points : %d\n",nref); } /* ++++++++++++++++++++++++++++ */ /* allocation and initialization of output variables */ r2 = my_alloc(nres*sizeof(double)); for (k=0;k= ntc) { double dis2 = 0.0; ncount++; for (m=0;m!=ndim;m++) { double tmp; dis2 += (x[i+m*ntau]-x[j+m*ntau])*(x[i+m*ntau]-x[j+m*ntau]); tmp = exp(-dis2); /* for (k=0;(k!=nres && tmp >= 1.E-24) ;k++) { */ for (k=0;k!=nres;k++) { mm[m][k] += tmp; tmp *= tmp; /* var[m][k] += tmp; */ } } } } for (m=0;m!=ndim;m++) for (k=0;k!=nres;k++) mm[m][k] /= (double) ncount; if(o_sigma) { for (ii=0;ii!=nref;ii++) { /* +++++++++++++++++++++++++++ */ if (o_verbose == 1 && ii%10==0) fprintf(stderr,"\rrp %zd", ii); /* +++++++++++++++++++++++++++ */ i = index[ii]; for (j=0;j!=npt;j++) if (abs(i-j) >= ntc) { double dis2 = 0.0; ncount++; for (m=0;m!=ndim;m++) { double tmp; dis2 += (x[i+m*ntau]-x[j+m*ntau])*(x[i+m*ntau]-x[j+m*ntau]); tmp = exp(-dis2); /* for (k=0;(k!=nres && tmp >= 1.E-24) ;k++) { */ for (k=0;k!=nres;k++) { epsilon[m][k] += tmp-mm[m][k]; var[m][k] += epsilon[m][k]*epsilon[m][k]; tmp *= tmp; } } } } for (m=0;m!=ndim;m++) for (k=0;k!=nres;k++) var[m][k] = (var[m][k]-epsilon[m][k]*epsilon[m][k]/ncount)/(ncount-1.); } /* ++++++++++++++++++++++++++++++++ */ if(o_verbose) printf("\n#ncount = %zd\n", ncount); /* ++++++++++++++++++++++++++++++++ */ } /* output */ for (d=0;d!=ndim;d++){ for (i=nres-1;i!=-1;i--){ if (mm[d][i]!=0){ printf(INT_SEP,d+1); printf(FLOAT_SEP,sqrt(r2[i])); printf(FLOAT_SEP,mm[d][i]); if(o_sigma) printf(FLOAT_SEP,sqrt(var[d][i])); printf("\n"); } } printf("\n\n"); } return 0; } gbutils-5.7.1/gbstat.10000644000175000017500000000372013246755334011502 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBSTAT "1" "March 2018" "gbstat 5.7.1" "User Commands" .SH NAME gbstat \- Basic descriptive statistics of data .SH SYNOPSIS .B gbstat [\fI\,options\/\fR] .SH DESCRIPTION Sample statistics. Compute mean, standard deviation, skewness, kurtosis, average deviation, minimum, maximum, median (if option \fB\-m\fR is specified) and number of valid observations. Option \fB\-O\fR allows one to select specific statistics. With option \fB\-t\fR statistics are printed for each column of data separately. A header line is added with the meaning of the different columns. The mode is computed using the Half\-Sample method. .SH OPTIONS .TP \fB\-m\fR add the sample median to the estimated statistics .TP \fB\-t\fR print statistics for each column of input .TP \fB\-s\fR short: mean std skew kurt adev min max (median) num .TP \fB\-O\fR select output: mean,std,skew,kurt,adev,min,max,median,num,mode .TP \fB\-o\fR set the output format (default '%12.6e') .TP \fB\-F\fR specify the input fields separators (default " \et") .HP \fB\-h\fR this help .SH EXAMPLES .TP gbstat \-O median,kurt < file compute the median and the kurtosis of all the data in 'file' .TP gbstat \-ts < file compute statistics for each columns separately. Since option \-s is provided, the header is omitted. .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/gbrand.c0000644000175000017500000003340313246754720011534 00000000000000/* gbrand (ver. 5.6) -- Sampling from random distributions Copyright (C) 2008-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "tools.h" #include #include #include #include double pareto3(gsl_rng *r, double a, double b, double s){ const double q = gsl_rng_uniform (r); const double dtmp1= b/a; return s*(gsl_sf_lambert_W0 (dtmp1*exp(dtmp1)*pow(1-q,-1/a))/dtmp1-1); } int main(int argc,char* argv[]){ size_t columns=1,rows=1; const gsl_rng_type * r_T; gsl_rng * r; char o_verbose=0; char o_seed =0; char *name; unsigned long int seed=0; /* variables for reading command line options */ /* ------------------------------------------ */ int opt; /* ------------------------------------------ */ /* initialize random number generator */ gsl_rng_env_setup(); r_T = gsl_rng_default; r = gsl_rng_alloc (r_T); /* initialize global variables */ initialize_program(argv[0]); /* COMMAND LINE PROCESSING */ while((opt=getopt_long(argc,argv,"hvc:r:R:b:",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='h'){ /*print help*/ fprintf(stdout,"Generates a grid of i.i.d. samples from a distribution. The name of the\n"); fprintf(stdout,"distribution and its parameters are specified on the command line.\n"); fprintf(stdout,"the column index. Indeces start from 1. If more than one function are\n"); fprintf(stdout,"provided they are printed one after the other. The type of random number\n"); fprintf(stdout,"generator and the default seed can be set with the environment variables\n"); fprintf(stdout,"GSL_RNG_TYPE and GSL_RNG_SEED, respectively, as documented in GSL manual.\n"); fprintf(stdout,"\nValid distributions are:\n"); fprintf(stdout,"beta, binomial, bivariate-gaussian, cauchy, chisq, dir-2d, dir-3d, dir-nd,\n"); fprintf(stdout,"erlang, exponential, exppow, fdist, flat, gamma, gaussian-tail, gaussian,\n"); fprintf(stdout,"geometric, gumbel1, gumbel2, hypergeometric, laplace, landau, levy,\n"); fprintf(stdout,"levy-skew, logarithmic,logistic, lognormal, negative-binomial,pareto,\n"); fprintf(stdout,"pascal, poisson, rayleigh-tail, rayleigh,tdist,ugaussian-tail, ugaussian,\n"); fprintf(stdout,"weibull,paret03.\n"); fprintf(stdout,"\nUsage: %s [options] NAME PARAMETERS... \n\n",argv[0]); fprintf(stdout,"Options:\n"); fprintf(stdout," -r specify number of rows (default 1)\n"); fprintf(stdout," -c specify number of columns (default 1)\n"); fprintf(stdout," -R set the seed (default 1)\n"); fprintf(stdout," -v verbose mode\n"); fprintf(stdout," -h this help\n"); finalize_program(); return 0; } else if(opt=='R'){ /*RNG seed*/ o_seed=1; seed=atol(optarg); } else if(opt=='v'){ o_verbose=1; } else if(opt=='c'){ columns=atoi(optarg); } else if(opt=='r'){ rows=atoi(optarg); } else if(opt=='b'){ /*set binary output*/ switch(atoi(optarg)){ case 0 : break; case 1 : fprintf(stdout,"no binary input implemented, option ignored.\n"); break; case 2 : PRINTMATRIXBYCOLS=printmatrixbycols_bin; break; case 3 : fprintf(stdout,"no binary input implemented, option ignored.\n"); PRINTMATRIXBYCOLS=printmatrixbycols_bin; break; default: fprintf(stdout,"unclear binary specification %d, option ignored.\n",atoi(optarg)); break; } } } if(optind0 ){ pnum++; plist = (double *) my_realloc((void *) plist,pnum*sizeof(double)); plist[pnum-1]=atof(stmp2); } free(stmp3); /* check */ dtmp1=0.0; for(i=0;i 1e-06) fprintf(stderr,"WARNING: probabilities do not sum to one!\n"); } else { PERROR("plist"); } table=gsl_ran_discrete_preproc (pnum,plist); INTOUTPUT( (gsl_ran_discrete (r,table)+1) ); free(plist); } else { fprintf(stderr,"ERROR (%s): unrecognized distribution: %s\n",GB_PROGNAME,name); exit(-1); } /* END OF MAIN PART */ } gsl_rng_free (r); finalize_program(); return 0; } gbutils-5.7.1/gbhill.c0000644000175000017500000007405513246754720011550 00000000000000/* gbhill (ver. 5.6) -- Hill Maximum Likelihhod estimation Copyright (C) 2012-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "gbhill.h" #include "multimin.h" /* In C ordering x[0] <= x[1] <= ... <= X[N-1] so the (relative) negative log-likelihood is written method: def: 0 -LL[up,unc]/k = C[up,unc] -1/k\sum_{j=1}^{k} log f(x[j]) - (N/k-1) log(F(x[k])) 1 -LL[up,con]/(k+1) = C[up,con2] -1/(k+1)\sum_{j=1}^{k+1} log f(x[j]) -(N/(k+1) -1) log(F(d)) 2 -LL[lo,unc]/k = C[lo,unc] -1/k\sum_{j=N-k+1}^{N} log f(x[j]) - (N/k-1) log(1-F(x[N-k-1])) 3 -LL[lo,con]/(k+1) = C[lo,con2] -1/(k+1)\sum_{j=N-k}^{N} log f(x[j]) - (N/(k+1) -1) log(1-F(d)) */ int main(int argc,char* argv[]){ char *splitstring = strdup(" \t"); int o_verbose=0; int o_output=0; int o_printall=0; int o_varcovar=1; /* binary options */ int o_binary_in=0; /* name of the distribution to fit */ char *name; /* store the amount of data to use */ double used=1; /* minimization parameters */ size_t xnum; double llmin; double *x; unsigned *xtype; double *xmin; double *xmax; char **xname; /* definition of the covariance matrix */ gsl_matrix *Pcovar=NULL; /* covariance matrix */ /* pointer to functions to use */ double (*f) (const double,const size_t, const double *); double (*F) (const double,const size_t, const double *); void (*obj_f) (const size_t, const double *,void *,double *); void (*obj_df) (const size_t, const double *,void *,double *); void (*obj_fdf) (const size_t, const double *,void *,double *,double *); gsl_matrix * (*varcovar) (const int, double *, void *); /* log-likelihood parameters */ struct loglike_params llparams={0,NULL,0,0,0,0}; /* minimization parameters */ struct multimin_params mmparams={.01,.01,100,1e-6,1e-6,5,0}; /* variables for reading command line options */ /* ------------------------------------------ */ int opt; /* ------------------------------------------ */ /* COMMAND LINE PROCESSING */ while((opt=getopt_long(argc,argv,"v:hF:O:A:u:M:V:ab:",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='h'){ /*print help*/ fprintf(stdout,"Maximum Likelihood estimation of distribution based on extremal\n"); fprintf(stdout,"(tail) observations. The distributions included are: exponential,\n"); fprintf(stdout,"pareto1, pareto3, gaussian. Provide the name of the distribution\n"); fprintf(stdout,"and the initial values of the parameters in the command line.\n"); fprintf(stdout,"\nUsage: %s [options] \n\n",argv[0]); fprintf(stdout,"Options:\n"); fprintf(stdout," -O type of output (default 0) \n"); fprintf(stdout," 0 parameters and min NLL \n"); fprintf(stdout," 1 parameters and errors \n"); fprintf(stdout," 2 the distribution function \n"); fprintf(stdout," 3 the density function \n"); fprintf(stdout," 4 transformed observations: uniform in [0.1] under the null\n"); fprintf(stdout," 5 Renyi residuals: iid uniform in [0.1] under the null\n"); fprintf(stdout," -M method used (default 0) \n"); fprintf(stdout," 0 unconditional, upper tail \n"); fprintf(stdout," 1 threshold, upper tail \n"); fprintf(stdout," 2 unconditional, lower tail \n"); fprintf(stdout," 3 threshold, lower tail \n"); fprintf(stdout," -V variance matrix estimation (default2) \n"); fprintf(stdout," 0 < J^{-1} > \n"); fprintf(stdout," 1 < H^{-1} > \n"); fprintf(stdout," 2 < H^{-1} J H^{-1} > \n"); fprintf(stdout," -v verbosity level (default0) \n"); fprintf(stdout," 0 just results \n"); fprintf(stdout," 1 comment headers \n"); fprintf(stdout," 2 summary statistics \n"); fprintf(stdout," 3+ minimization steps \n"); fprintf(stdout," -a print entire set for -O 1,2 \n"); fprintf(stdout," -u observations or threshold (default 1)\n"); fprintf(stdout," -F input fields separators (default \" \\t\")\n"); fprintf(stdout," -h this help\n"); fprintf(stdout," -A comma separated MLL optimization options step,tol,iter,eps,msize,\n"); fprintf(stdout," algo. Use empty fields for default (default 0.01,0.01,100,1e-6,1e-6,5)\n"); fprintf(stdout," step initial step size of the searching algorithm \n"); fprintf(stdout," tol line search tolerance iter: maximum number of iterations \n"); fprintf(stdout," eps gradient tolerance : stopping criteria ||gradient||5){ fprintf(stderr,"ERROR (%s): output option '%d' not recognized. Try option -h.\n", GB_PROGNAME,o_output); exit(-1); } } else if(opt=='V'){ /* set the type of covariance */ o_varcovar = atoi(optarg); if(o_varcovar<0 || o_varcovar>2){ fprintf(stderr,"ERROR (%s): variance option '%d' not recognized. Try option -h.\n", GB_PROGNAME,o_varcovar); exit(-1); } } else if(opt=='M'){ /* set the type of method */ llparams.method = atoi(optarg); if(o_output<0 || o_output>3){ fprintf(stderr,"ERROR (%s): method '%d' not recognized. Try option -h.\n", GB_PROGNAME,o_output); exit(-1); } } else if(opt=='A'){ char *stmp1=strdup (optarg); char *stmp2; char *stmp3=stmp1; if( (stmp2=strsep (&stmp1,",")) != NULL){ if(strlen(stmp2)>0) mmparams.step_size=atof(stmp2); } if( (stmp2=strsep (&stmp1,",")) != NULL){ if(strlen(stmp2)>0) mmparams.tol=atof(stmp2); } if( (stmp2=strsep (&stmp1,",")) != NULL){ if(strlen(stmp2)>0) mmparams.maxiter=(unsigned) atoi(stmp2); } if( (stmp2=strsep (&stmp1,",")) != NULL){ if(strlen(stmp2)>0) mmparams.epsabs=atof(stmp2); } if( (stmp2=strsep (&stmp1,",")) != NULL){ if(strlen(stmp2)>0) mmparams.maxsize=atof(stmp2); } if( (stmp2=strsep (&stmp1,",")) != NULL){ if(strlen(stmp2)>0) mmparams.method= (unsigned) atoi(stmp2); } free(stmp3); } else if(opt=='v'){ o_verbose = atoi(optarg); mmparams.verbosity=(o_verbose>2?o_verbose-2:0); } else if(opt=='b'){ /*set binary input or output*/ switch(atoi(optarg)){ case 0 : break; case 1 : /* binary input */ o_binary_in=1; break; case 2 : /* binary output */ PRINTCOL=printcol_bin; break; case 3 : /* binary input and output */ o_binary_in=1; PRINTCOL=printcol_bin; break; default: fprintf(stderr,"unclear binary specification %d, option ignored.\n",atoi(optarg)); break; } } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); /* load data */ /* ========= */ if(o_binary_in==1) load_bin(&llparams.data,&llparams.size,0); else load(&llparams.data,&llparams.size,0,splitstring); /* sort data in ascending order */ /* ============================ */ qsort(llparams.data,llparams.size,sizeof(double),sort_by_value); /* decide the number of observations used */ /* ====================================== */ if(llparams.method == 1) { size_t i; if(llparams.data[llparams.size-1]<=used){ fprintf(stderr,"ERROR (%s): wrong value, too large threshold: %g\n", GB_PROGNAME,used); exit(-1); } llparams.d=used; for(i=0;iused) break; llparams.used=llparams.size-i; } else if(llparams.method == 3) { size_t i; if(llparams.data[0]>=used){ fprintf(stderr,"ERROR (%s): wrong value, too small threshold: %g\n", GB_PROGNAME,used); exit(-1); } llparams.d= used; for(i=0;iused) break; llparams.used=i; } else if (used>0 && used<=1) llparams.used=llparams.size*used; else if( used>0 && floor(used) == used && used <= llparams.size ) llparams.used=(size_t) used; else{ fprintf(stderr,"ERROR (%s): wrong value, used observations: %g\n", GB_PROGNAME,used); exit(-1); } /* set minimum and maximum index */ /* ============================= */ switch(llparams.method){ case 0: llparams.min=llparams.size-llparams.used; llparams.max=llparams.size-1; break; case 1: llparams.min=llparams.size-llparams.used; llparams.max=llparams.size-1; break; case 2: llparams.min=0; llparams.max=llparams.used-1; break; case 3: llparams.min=0; llparams.max=llparams.used-1; break; } /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose){ fprintf(stderr,"# total observations %zd; xmin=%g xmax=%g\n", llparams.size,llparams.data[0],llparams.data[llparams.size-1]); switch(llparams.method){ case 0: fprintf(stderr,"# tail: upper\n"); fprintf(stderr,"# condition: unconditional\n"); fprintf(stderr,"# num obs: %zd\n",llparams.used); break; case 1: fprintf(stderr,"# tail: upper\n"); fprintf(stderr,"# condition: x[%zd]>%g\n", llparams.min,llparams.d); fprintf(stderr,"# num obs: %zd\n",llparams.used); break; case 2: fprintf(stderr,"# tail: lower\n"); fprintf(stderr,"# condition: unconditional\n"); fprintf(stderr,"# num obs: %zd\n",llparams.used); break; case 3: fprintf(stderr,"# tail: lower\n"); fprintf(stderr,"# condition: x[%zd]<%g\n", llparams.max,llparams.d); fprintf(stderr,"# num obs: %zd\n",llparams.used); break; } fprintf(stderr,"# indexes: from %zd to %zd\n", llparams.min,llparams.max); fprintf(stderr,"# values: from %g to %g\n", llparams.data[llparams.min],llparams.data[llparams.max]); } /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ /* estimate parameters */ /* =================== */ #define NAME(x) !strcmp(name,(x)) #define PERROR(x) {fprintf(stderr,"ERROR (%s): parameters needed: %s\n",GB_PROGNAME,x); exit(-1);} #define DBL_ARG(x) if (argc-optind) { x=atof(argv[optind]);optind++;} else {PERROR( #x);}; if(optind xmax[1] ){ x[1] = xmax[1] - mmparams.step_size; if(o_verbose){ fprintf(stderr,"WARNING (%s): parameter b out of range; set to %g\n", GB_PROGNAME,x[1]); fprintf(stderr,"WARNING (%s): b must be smaller equal than the smallest observation used\n", GB_PROGNAME); } } /* set the functions to use */ F = exponential_F; f = exponential_f; obj_f = exponential_nll; obj_df = exponential_dnll; obj_fdf = exponential_nlldnll; varcovar = exponential_varcovar; /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose){ if (llparams.method>1) fprintf(stderr,"WARNING (%s): likelihood is monotonic in b: boundary solution\n", GB_PROGNAME); } /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ } else if (NAME("pareto1")) { xnum=2; x = (double *) my_alloc(xnum*sizeof(double)); xmin = (double *) my_alloc(xnum*sizeof(double)); xmax = (double *) my_alloc(xnum*sizeof(double)); xtype = (unsigned *) my_alloc(xnum*sizeof(unsigned)); xname = (char **) my_alloc(xnum*sizeof(char *)); /* gamma */ xname[0]=strdup("gamma (tail index)"); x[0]=1.0; xmin[0]=0.0; xmax[0]=NAN; xtype[0]=4; /* b */ xname[1]=strdup("b (position)"); x[1]=0.0; xmax[1]=NAN; /* lower bound on b */ switch(llparams.method){ /* upper tail */ case 0: xmin[1]=1./llparams.data[llparams.size-llparams.used]; break; case 1: xmin[1]=1./llparams.d; break; /* lower tail */ case 2: case 3: xmin[1]=1./llparams.data[0]; break; } /* minimization method for b */ switch(llparams.method){ /* upper tail */ case 0: case 1: /* for method=0,1 solution is internal */ xtype[1]=4; break; /* lower tail */ case 2: case 3: /* for method=2,3 solution is on the boundary */ xtype[1]=4; break; } /* check number of parameters and load their values */ if (argc < optind+2){ fprintf(stderr,"ERROR (%s): Pareto Type 1 distribution F(x)=1-(b x[j])^(-1/gamma)\n",GB_PROGNAME); fprintf(stderr,"ERROR (%s): provide initial values of gamma (tail index) and b (position)\n",GB_PROGNAME); exit(-1); } DBL_ARG(*x); DBL_ARG(*(x+1)); /* check parameters initial values */ if(x[0]<= 0){ x[0]=1.0; if(o_verbose){ fprintf(stderr, "WARNING (%s): parameter gamma out of range; set to %g\n", GB_PROGNAME,x[0]); fprintf(stderr, "WARNING (%s): gamma must be positive\n", GB_PROGNAME); } } if(x[1] <= xmin[1] ){ /* N.B.: when llparams.method==1 the likelihood DOES NOT depend on b; so in principle one could set x[1] to xmin[1]. For consistencey with other cases, we retain this setting. */ x[1] = xmin[1]+ mmparams.step_size; if(o_verbose){ fprintf(stderr,"WARNING (%s): parameter b out of range; set to %g\n", GB_PROGNAME,x[1]); fprintf(stderr,"WARNING (%s): b must be larger than the inverse of the smallest observation used\n", GB_PROGNAME); } } /* set the functions to use */ F = pareto1_F; f = pareto1_f; obj_f = pareto1_nll; obj_df = pareto1_dnll; obj_fdf = pareto1_nlldnll; varcovar = pareto1_varcovar; /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose){ if (llparams.method>1) fprintf(stderr,"WARNING (%s): likelihood is monotonic in b: boundary solution\n", GB_PROGNAME); } /* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ } else if (NAME("pareto3")) { xnum=3; x = (double *) my_alloc(xnum*sizeof(double)); xmin = (double *) my_alloc(xnum*sizeof(double)); xmax = (double *) my_alloc(xnum*sizeof(double)); xtype = (unsigned *) my_alloc(xnum*sizeof(unsigned)); xname = (char **) my_alloc(xnum*sizeof(char *)); /* alpha */ xname[0]=strdup("alpha (power decay index)"); x[0]=1.0; xmin[0]=0.0; xmax[0]=NAN; xtype[0]=4; /* beta */ xname[1]=strdup("beta (exponential decay index)"); x[1]=1.0; xmin[1]=0.0; xmax[1]=NAN; xtype[1]=4; /* s */ xname[2]=strdup("s (scale)"); x[2]=1.0; xmin[2]=0.0; xmax[2]=NAN; xtype[2]=4; if (argc < optind+3){ fprintf(stderr,"ERROR (%s): Pareto Type III distribution F(x)=1-(x/s +1)^(-alpha) exp(-beta x/s)\n",GB_PROGNAME); fprintf(stderr,"ERROR (%s): provide initial values of alpha (power decay index), beta (exponential decay index), s (scale)\n",GB_PROGNAME); exit(-1); } DBL_ARG(*x); DBL_ARG(*(x+1)); DBL_ARG(*(x+2)); /* check parameters initial values */ if(x[0]<=0){ x[0]=1.0; if(o_verbose){ fprintf(stderr, "WARNING (%s): parameter alpha out of range; set to %g\n", GB_PROGNAME,x[0]); fprintf(stderr,"WARNING (%s): alpha must be positive\n",GB_PROGNAME); } } if(x[1] <=0 ){ x[1] = 1.0 ; if(o_verbose){ fprintf(stderr,"WARNING (%s): parameter beta out of range; set to %g\n", GB_PROGNAME,x[1]); fprintf(stderr,"WARNING (%s): beta must be positive\n",GB_PROGNAME); } } if(x[2] <= 0 ){ x[2] = 1.0 ; if(o_verbose){ fprintf(stderr,"WARNING (%s): parameter s out of range; set to %g\n", GB_PROGNAME,x[2]); fprintf(stderr,"WARNING (%s): s must be positive\n",GB_PROGNAME); } } /* set the functions to use */ F = pareto3_F; f = pareto3_f; obj_f = pareto3_nll; obj_df = pareto3_dnll; obj_fdf = pareto3_nlldnll; varcovar = pareto3_varcovar; } else if(NAME("gaussian")) { xnum=2; x = (double *) my_alloc(xnum*sizeof(double)); xmin = (double *) my_alloc(xnum*sizeof(double)); xmax = (double *) my_alloc(xnum*sizeof(double)); xtype = (unsigned *) my_alloc(xnum*sizeof(unsigned)); xname = (char **) my_alloc(xnum*sizeof(char *)); /* Mean */ xname[0]=strdup("m (mean)"); x[0]=0.0; xmin[0]=NAN; xmax[0]=NAN; xtype[0]=0; /* Standard Deviation */ xname[1]=strdup("s (standard deviation)"); x[0]=1.0; xmin[1]=0.0; xmax[1]=NAN; xtype[1]=4; if (argc < optind+2){ fprintf(stderr,"ERROR (%s): Gaussian density f(x)=exp(-1/2 (x-m)^2/s^2)/sqrt(2 pi s^2)\n",GB_PROGNAME); fprintf(stderr,"ERROR (%s): provide initial values of m (mean) and s (standard deviation)\n",GB_PROGNAME); exit(-1); } DBL_ARG(*x); DBL_ARG(*(x+1)); /* check parameters initial values */ if(x[1] <= 0 ){ x[1] = 1.0 ; if(o_verbose){ fprintf(stderr,"WARNING (%s): parameter s out of range; set to %g\n", GB_PROGNAME,x[1]); fprintf(stderr,"WARNING (%s): s must be positive\n", GB_PROGNAME); } } /* set the functions to use */ F = gaussian_F; f = gaussian_f; obj_f = gaussian_nll; obj_df = gaussian_dnll; obj_fdf = gaussian_nlldnll; varcovar = gaussian_varcovar; } else { fprintf(stderr,"ERROR (%s): unrecognized distribution: %s\n",GB_PROGNAME,name); fprintf(stderr,"ERROR (%s): available choices:\n",GB_PROGNAME); fprintf(stderr,"ERROR (%s): exponential pareto1 gaussian pareto3\n",GB_PROGNAME); exit(-1); } /* minimize negative log likelihood */ /* ================================ */ multimin(xnum,x,&llmin,xtype,xmin,xmax,obj_f,obj_df,obj_fdf,(void *) &llparams,mmparams); /* compute variance-covariance matrix */ /* ================================== */ if(o_output==1) Pcovar = varcovar(o_varcovar,x,&llparams); /* output */ /* ===== */ switch(o_output){ case 0: /* print parameters*/ { size_t i; /* ++++++++++++++++++++++++d+++++++++++ */ if(o_verbose>=1){ for(i=0;i=1){ for(i=0;i=1){ for(i=0;i=1){ for(i=0;i=1){ for(i=0;i=1){ for(i=0;i .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/configure0000755000175000017500000062412613246753207012051 00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69 for gbutils 5.7.1. # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # Use a proper internal environment variable to ensure we don't fall # into an infinite loop, continuously re-executing ourselves. if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then _as_can_reexec=no; export _as_can_reexec; # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 as_fn_exit 255 fi # We don't want this to propagate to other subprocesses. { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1 test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 test \$(( 1 + 1 )) = 2 || exit 1" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir/$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : CONFIG_SHELL=$as_shell as_have_required=yes if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : break 2 fi fi done;; esac as_found=false done $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : CONFIG_SHELL=$SHELL as_have_required=yes fi; } IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : export CONFIG_SHELL # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org about your system, $0: including any error possibly output before this $0: message. Then install a modern shell, or manually run $0: the script under such a shell if you do have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # If we had to re-execute with $CONFIG_SHELL, we're ensured to have # already done that, so ensure we don't try to do so again and fall # in an infinite loop. This has already happened in practice. _as_can_reexec=no; export _as_can_reexec # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME='gbutils' PACKAGE_TARNAME='gbutils' PACKAGE_VERSION='5.7.1' PACKAGE_STRING='gbutils 5.7.1' PACKAGE_BUGREPORT='' PACKAGE_URL='' ac_unique_file="tools.c" # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef STDC_HEADERS # include # include #else # ifdef HAVE_STDLIB_H # include # endif #endif #ifdef HAVE_STRING_H # if !defined STDC_HEADERS && defined HAVE_MEMORY_H # include # endif # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS GBACORRMAN GBHILLMAN GBRANDMAN GBNLPOLYITMAN GBNLPROBITMAN GBNLMULTMAN GBNLQREGMAN GBNLPANELMAN GBNLREGMAN GBGLREGMAN GBLREGMAN GBGRIDMAN GBGETMAN GBFUNMAN GBINTERPMAN GBKREGMAN GBMODESMAN GBKERMAN GBACORR GBHILL GBRAND GBNLPOLYIT GBNLPROBIT GBNLMULT GBNLQREG GBNLPANEL GBNLREG GBGLREG GBLREG GBGRID GBGET GBFUN GBINTERP GBKREG GBMODES GBKER H2M_FALSE H2M_TRUE HELP2MAN ISCYGWIN_FALSE ISCYGWIN_TRUE host_os host_vendor host_cpu host build_os build_vendor build_cpu build RANLIB LIBOBJS GL_COND_LIBTOOL_FALSE GL_COND_LIBTOOL_TRUE EGREP GREP CPP LEXLIB LEX_OUTPUT_ROOT LEX am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__quote am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC LN_S AM_BACKSLASH AM_DEFAULT_VERBOSITY AM_DEFAULT_V AM_V am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL VERSION PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir runstatedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking enable_silent_rules enable_dependency_tracking ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CPP' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' runstatedir='${localstatedir}/run' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -runstatedir | --runstatedir | --runstatedi | --runstated \ | --runstate | --runstat | --runsta | --runst | --runs \ | --run | --ru | --r) ac_prev=runstatedir ;; -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \ | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \ | --run=* | --ru=* | --r=*) runstatedir=$ac_optarg ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir runstatedir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures gbutils 5.7.1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/gbutils] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of gbutils 5.7.1:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-silent-rules less verbose build output (undo: "make V=1") --disable-silent-rules verbose build output (undo: "make V=0") --enable-dependency-tracking do not reject slow dependency extractors --disable-dependency-tracking speeds up one-time build Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to the package provider. _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for guested configure. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF gbutils configure 5.7.1 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## # ac_fn_c_try_compile LINENO # -------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_compile # ac_fn_c_try_link LINENO # ----------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || test -x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_link # ac_fn_c_try_cpp LINENO # ---------------------- # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_cpp # ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists, giving a warning if it cannot be compiled using # the include files in INCLUDES and setting the cache variable VAR # accordingly. ac_fn_c_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval \${$3+:} false; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 $as_echo_n "checking $2 usability... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <$2> _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_mongrel # ac_fn_c_try_run LINENO # ---------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes # that executables *can* be run. ac_fn_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_run # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in # INCLUDES, setting the cache variable VAR accordingly. ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_compile # ac_fn_c_check_func LINENO FUNC VAR # ---------------------------------- # Tests whether FUNC exists, setting the cache variable VAR accordingly ac_fn_c_check_func () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Define $2 to an innocuous variant, in case declares $2. For example, HP-UX 11i declares gettimeofday. */ #define $2 innocuous_$2 /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $2 (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $2 /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $2 (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_$2 || defined __stub___$2 choke me #endif int main () { return $2 (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_func # ac_fn_c_check_decl LINENO SYMBOL VAR INCLUDES # --------------------------------------------- # Tests whether SYMBOL is declared in INCLUDES, setting cache variable VAR # accordingly. ac_fn_c_check_decl () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack as_decl_name=`echo $2|sed 's/ *(.*//'` as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'` { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5 $as_echo_n "checking whether $as_decl_name is declared... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { #ifndef $as_decl_name #ifdef __cplusplus (void) $as_decl_use; #else (void) $as_decl_name; #endif #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_decl # ac_fn_c_check_type LINENO TYPE VAR INCLUDES # ------------------------------------------- # Tests whether TYPE exists after having included INCLUDES, setting cache # variable VAR accordingly. ac_fn_c_check_type () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=no" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { if (sizeof ($2)) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { if (sizeof (($2))) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else eval "$3=yes" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_type cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by gbutils $as_me 5.7.1, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. $as_echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in #(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu am__api_version='1.15' ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in #(( ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi if test "$2" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi rm -f conftest.file test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` # Expand $ac_aux_dir to an absolute path. am_aux_dir=`cd "$ac_aux_dir" && pwd` if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 $as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;} fi if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if ${ac_cv_path_mkdir+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. MKDIR_P="$ac_install_sh -d" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 $as_echo "$MKDIR_P" >&6; } for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AWK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AWK="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 $as_echo "$AWK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AWK" && break done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null # Check whether --enable-silent-rules was given. if test "${enable_silent_rules+set}" = set; then : enableval=$enable_silent_rules; fi case $enable_silent_rules in # ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=1;; esac am_make=${MAKE-make} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 $as_echo_n "checking whether $am_make supports nested variables... " >&6; } if ${am_cv_make_support_nested_variables+:} false; then : $as_echo_n "(cached) " >&6 else if $as_echo 'TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 $as_echo "$am_cv_make_support_nested_variables" >&6; } if test $am_cv_make_support_nested_variables = yes; then AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AM_BACKSLASH='\' if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE='gbutils' VERSION='5.7.1' cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # mkdir_p='$(MKDIR_P)' # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar pax cpio none' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 fi fi ac_config_headers="$ac_config_headers config.h" # Checks for programs # ------------------- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 $as_echo_n "checking whether ln -s works... " >&6; } LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 $as_echo "no, using $LN_S" >&6; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 $as_echo_n "checking whether the C compiler works... " >&6; } ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi if test -z "$ac_file"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See \`config.log' for more details" "$LINENO" 5; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 $as_echo_n "checking for C compiler default output file name... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 $as_echo "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 $as_echo_n "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5; } fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 $as_echo "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } if ${ac_cv_objext+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 $as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 $as_echo_n "checking whether $CC understands -c and -o together... " >&6; } if ${am_cv_prog_cc_c_o+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 $as_echo "$am_cv_prog_cc_c_o" >&6; } if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 $as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from 'make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 $as_echo "$_am_result" >&6; } rm -f confinc confmf # Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then : enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi #this seems to be useful only on cygwin for ac_prog in flex lex do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_LEX+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$LEX"; then ac_cv_prog_LEX="$LEX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_LEX="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi LEX=$ac_cv_prog_LEX if test -n "$LEX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LEX" >&5 $as_echo "$LEX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$LEX" && break done test -n "$LEX" || LEX=":" if test "x$LEX" != "x:"; then cat >conftest.l <<_ACEOF %% a { ECHO; } b { REJECT; } c { yymore (); } d { yyless (1); } e { /* IRIX 6.5 flex 2.5.4 underquotes its yyless argument. */ yyless ((input () != 0)); } f { unput (yytext[0]); } . { BEGIN INITIAL; } %% #ifdef YYTEXT_POINTER extern char *yytext; #endif int main (void) { return ! yylex () + ! yywrap (); } _ACEOF { { ac_try="$LEX conftest.l" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$LEX conftest.l") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking lex output file root" >&5 $as_echo_n "checking lex output file root... " >&6; } if ${ac_cv_prog_lex_root+:} false; then : $as_echo_n "(cached) " >&6 else if test -f lex.yy.c; then ac_cv_prog_lex_root=lex.yy elif test -f lexyy.c; then ac_cv_prog_lex_root=lexyy else as_fn_error $? "cannot find output from $LEX; giving up" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_lex_root" >&5 $as_echo "$ac_cv_prog_lex_root" >&6; } LEX_OUTPUT_ROOT=$ac_cv_prog_lex_root if test -z "${LEXLIB+set}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking lex library" >&5 $as_echo_n "checking lex library... " >&6; } if ${ac_cv_lib_lex+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_LIBS=$LIBS ac_cv_lib_lex='none needed' for ac_lib in '' -lfl -ll; do LIBS="$ac_lib $ac_save_LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ `cat $LEX_OUTPUT_ROOT.c` _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_lex=$ac_lib fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext test "$ac_cv_lib_lex" != 'none needed' && break done LIBS=$ac_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lex" >&5 $as_echo "$ac_cv_lib_lex" >&6; } test "$ac_cv_lib_lex" != 'none needed' && LEXLIB=$ac_cv_lib_lex fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether yytext is a pointer" >&5 $as_echo_n "checking whether yytext is a pointer... " >&6; } if ${ac_cv_prog_lex_yytext_pointer+:} false; then : $as_echo_n "(cached) " >&6 else # POSIX says lex can declare yytext either as a pointer or an array; the # default is implementation-dependent. Figure out which it is, since # not all implementations provide the %pointer and %array declarations. ac_cv_prog_lex_yytext_pointer=no ac_save_LIBS=$LIBS LIBS="$LEXLIB $ac_save_LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define YYTEXT_POINTER 1 `cat $LEX_OUTPUT_ROOT.c` _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_prog_lex_yytext_pointer=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_lex_yytext_pointer" >&5 $as_echo "$ac_cv_prog_lex_yytext_pointer" >&6; } if test $ac_cv_prog_lex_yytext_pointer = yes; then $as_echo "#define YYTEXT_POINTER 1" >>confdefs.h fi rm -f conftest.l $LEX_OUTPUT_ROOT.c fi if test "$LEX" = :; then LEX=${am_missing_run}flex fi # First gnulib piece # ------------------ ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 $as_echo_n "checking how to run the C preprocessor... " >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if ${ac_cv_prog_CPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 $as_echo "$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } if ${ac_cv_path_GREP+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_GREP" || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 $as_echo "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } if ${ac_cv_path_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else if test -z "$EGREP"; then ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_EGREP" || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 $as_echo "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "#define STDC_HEADERS 1" >>confdefs.h fi # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done ac_fn_c_check_header_mongrel "$LINENO" "minix/config.h" "ac_cv_header_minix_config_h" "$ac_includes_default" if test "x$ac_cv_header_minix_config_h" = xyes; then : MINIX=yes else MINIX= fi if test "$MINIX" = yes; then $as_echo "#define _POSIX_SOURCE 1" >>confdefs.h $as_echo "#define _POSIX_1_SOURCE 2" >>confdefs.h $as_echo "#define _MINIX 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5 $as_echo_n "checking whether it is safe to define __EXTENSIONS__... " >&6; } if ${ac_cv_safe_to_define___extensions__+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ # define __EXTENSIONS__ 1 $ac_includes_default int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_safe_to_define___extensions__=yes else ac_cv_safe_to_define___extensions__=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_safe_to_define___extensions__" >&5 $as_echo "$ac_cv_safe_to_define___extensions__" >&6; } test $ac_cv_safe_to_define___extensions__ = yes && $as_echo "#define __EXTENSIONS__ 1" >>confdefs.h $as_echo "#define _ALL_SOURCE 1" >>confdefs.h $as_echo "#define _GNU_SOURCE 1" >>confdefs.h $as_echo "#define _POSIX_PTHREAD_SEMANTICS 1" >>confdefs.h $as_echo "#define _TANDEM_SOURCE 1" >>confdefs.h # Check getline and getsubopt from gnulib ac_fn_c_check_decl "$LINENO" "getdelim" "ac_cv_have_decl_getdelim" "$ac_includes_default" if test "x$ac_cv_have_decl_getdelim" = xyes; then : ac_have_decl=1 else ac_have_decl=0 fi cat >>confdefs.h <<_ACEOF #define HAVE_DECL_GETDELIM $ac_have_decl _ACEOF if false; then GL_COND_LIBTOOL_TRUE= GL_COND_LIBTOOL_FALSE='#' else GL_COND_LIBTOOL_TRUE='#' GL_COND_LIBTOOL_FALSE= fi ac_fn_c_check_func "$LINENO" "getdelim" "ac_cv_func_getdelim" if test "x$ac_cv_func_getdelim" = xyes; then : $as_echo "#define HAVE_GETDELIM 1" >>confdefs.h else case " $LIBOBJS " in *" getdelim.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS getdelim.$ac_objext" ;; esac fi : if test $ac_cv_func_getdelim = no; then for ac_func in flockfile funlockfile do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done fi ac_fn_c_check_decl "$LINENO" "getline" "ac_cv_have_decl_getline" "$ac_includes_default" if test "x$ac_cv_have_decl_getline" = xyes; then : ac_have_decl=1 else ac_have_decl=0 fi cat >>confdefs.h <<_ACEOF #define HAVE_DECL_GETLINE $ac_have_decl _ACEOF gl_getline_needs_run_time_check=no ac_fn_c_check_func "$LINENO" "getline" "ac_cv_func_getline" if test "x$ac_cv_func_getline" = xyes; then : gl_getline_needs_run_time_check=yes else am_cv_func_working_getline=no fi if test $gl_getline_needs_run_time_check = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working getline function" >&5 $as_echo_n "checking for working getline function... " >&6; } if ${am_cv_func_working_getline+:} false; then : $as_echo_n "(cached) " >&6 else echo fooN |tr -d '\012'|tr N '\012' > conftest.data if test "$cross_compiling" = yes; then : am_cv_func_working_getline=no else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ # include # include # include int main () { /* Based on a test program from Karl Heuer. */ char *line = NULL; size_t siz = 0; int len; FILE *in = fopen ("./conftest.data", "r"); if (!in) return 1; len = getline (&line, &siz, in); exit ((len == 4 && line && strcmp (line, "foo\n") == 0) ? 0 : 1); } _ACEOF if ac_fn_c_try_run "$LINENO"; then : am_cv_func_working_getline=yes else am_cv_func_working_getline=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_working_getline" >&5 $as_echo "$am_cv_func_working_getline" >&6; } fi if test $am_cv_func_working_getline = no; then $as_echo "#define getline gnu_getline" >>confdefs.h case " $LIBOBJS " in *" getline.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS getline.$ac_objext" ;; esac ac_fn_c_check_func "$LINENO" "getdelim" "ac_cv_func_getdelim" if test "x$ac_cv_func_getdelim" = xyes; then : $as_echo "#define HAVE_GETDELIM 1" >>confdefs.h else case " $LIBOBJS " in *" getdelim.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS getdelim.$ac_objext" ;; esac fi : if test $ac_cv_func_getdelim = no; then for ac_func in flockfile funlockfile do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done fi fi ac_fn_c_check_func "$LINENO" "getsubopt" "ac_cv_func_getsubopt" if test "x$ac_cv_func_getsubopt" = xyes; then : $as_echo "#define HAVE_GETSUBOPT 1" >>confdefs.h else case " $LIBOBJS " in *" getsubopt.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS getsubopt.$ac_objext" ;; esac fi if test $ac_cv_func_getsubopt = no; then : fi ac_fn_c_check_func "$LINENO" "strchrnul" "ac_cv_func_strchrnul" if test "x$ac_cv_func_strchrnul" = xyes; then : $as_echo "#define HAVE_STRCHRNUL 1" >>confdefs.h else case " $LIBOBJS " in *" strchrnul.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS strchrnul.$ac_objext" ;; esac fi if test $ac_cv_func_strchrnul = no; then : fi # Checks for typedefs, structures, and compiler characteristics # ------------------------------------------------------------- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5 $as_echo_n "checking for an ANSI C-conforming const... " >&6; } if ${ac_cv_c_const+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __cplusplus /* Ultrix mips cc rejects this sort of thing. */ typedef int charset[2]; const charset cs = { 0, 0 }; /* SunOS 4.1.1 cc rejects this. */ char const *const *pcpcc; char **ppc; /* NEC SVR4.0.2 mips cc rejects this. */ struct point {int x, y;}; static struct point const zero = {0,0}; /* AIX XL C 1.02.0.0 rejects this. It does not let you subtract one const X* pointer from another in an arm of an if-expression whose if-part is not a constant expression */ const char *g = "string"; pcpcc = &g + (g ? g-g : 0); /* HPUX 7.0 cc rejects these. */ ++pcpcc; ppc = (char**) pcpcc; pcpcc = (char const *const *) ppc; { /* SCO 3.2v4 cc rejects this sort of thing. */ char tx; char *t = &tx; char const *s = 0 ? (char *) 0 : (char const *) 0; *t++ = 0; if (s) return 0; } { /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */ int x[] = {25, 17}; const int *foo = &x[0]; ++foo; } { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */ typedef const int *iptr; iptr p = 0; ++p; } { /* AIX XL C 1.02.0.0 rejects this sort of thing, saying "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */ struct s { int j; const int *ap[3]; } bx; struct s *b = &bx; b->j = 5; } { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */ const int foo = 10; if (!foo) return 0; } return !cs[0] && !zero.x; #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_c_const=yes else ac_cv_c_const=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_const" >&5 $as_echo "$ac_cv_c_const" >&6; } if test $ac_cv_c_const = no; then $as_echo "#define const /**/" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inline" >&5 $as_echo_n "checking for inline... " >&6; } if ${ac_cv_c_inline+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __cplusplus typedef int foo_t; static $ac_kw foo_t static_foo () {return 0; } $ac_kw foo_t foo () {return 0; } #endif _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_c_inline=$ac_kw fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext test "$ac_cv_c_inline" != no && break done fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_inline" >&5 $as_echo "$ac_cv_c_inline" >&6; } case $ac_cv_c_inline in inline | yes) ;; *) case $ac_cv_c_inline in no) ac_val=;; *) ac_val=$ac_cv_c_inline;; esac cat >>confdefs.h <<_ACEOF #ifndef __cplusplus #define inline $ac_val #endif _ACEOF ;; esac ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default" if test "x$ac_cv_type_size_t" = xyes; then : else cat >>confdefs.h <<_ACEOF #define size_t unsigned int _ACEOF fi # Checks for libraries # -------------------- # Check ranlib (used in lib/ directory of gnulib) if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 $as_echo "$RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RANLIB="ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 $as_echo "$ac_ct_RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_RANLIB" = x; then RANLIB=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac RANLIB=$ac_ct_RANLIB fi else RANLIB="$ac_cv_prog_RANLIB" fi # Checks for math libraries { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sin in -lm" >&5 $as_echo_n "checking for sin in -lm... " >&6; } if ${ac_cv_lib_m_sin+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char sin (); int main () { return sin (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_m_sin=yes else ac_cv_lib_m_sin=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sin" >&5 $as_echo "$ac_cv_lib_m_sin" >&6; } if test "x$ac_cv_lib_m_sin" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBM 1 _ACEOF LIBS="-lm $LIBS" else as_fn_error $? "Library mlib not found!" "$LINENO" 5 fi # Check for GSL { $as_echo "$as_me:${as_lineno-$LINENO}: checking for cblas_dgemm in -lgslcblas" >&5 $as_echo_n "checking for cblas_dgemm in -lgslcblas... " >&6; } if ${ac_cv_lib_gslcblas_cblas_dgemm+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lgslcblas $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char cblas_dgemm (); int main () { return cblas_dgemm (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_gslcblas_cblas_dgemm=yes else ac_cv_lib_gslcblas_cblas_dgemm=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gslcblas_cblas_dgemm" >&5 $as_echo "$ac_cv_lib_gslcblas_cblas_dgemm" >&6; } if test "x$ac_cv_lib_gslcblas_cblas_dgemm" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBGSLCBLAS 1 _ACEOF LIBS="-lgslcblas $LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gsl_blas_dgemm in -lgsl" >&5 $as_echo_n "checking for gsl_blas_dgemm in -lgsl... " >&6; } if ${ac_cv_lib_gsl_gsl_blas_dgemm+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lgsl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char gsl_blas_dgemm (); int main () { return gsl_blas_dgemm (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_gsl_gsl_blas_dgemm=yes else ac_cv_lib_gsl_gsl_blas_dgemm=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gsl_gsl_blas_dgemm" >&5 $as_echo "$ac_cv_lib_gsl_gsl_blas_dgemm" >&6; } if test "x$ac_cv_lib_gsl_gsl_blas_dgemm" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBGSL 1 _ACEOF LIBS="-lgsl $LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gsl_multifit_fdfsolver_jac in -lgsl" >&5 $as_echo_n "checking for gsl_multifit_fdfsolver_jac in -lgsl... " >&6; } if ${ac_cv_lib_gsl_gsl_multifit_fdfsolver_jac+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lgsl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char gsl_multifit_fdfsolver_jac (); int main () { return gsl_multifit_fdfsolver_jac (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_gsl_gsl_multifit_fdfsolver_jac=yes else ac_cv_lib_gsl_gsl_multifit_fdfsolver_jac=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gsl_gsl_multifit_fdfsolver_jac" >&5 $as_echo "$ac_cv_lib_gsl_gsl_multifit_fdfsolver_jac" >&6; } if test "x$ac_cv_lib_gsl_gsl_multifit_fdfsolver_jac" = xyes; then : $as_echo "#define GSL_VER_2 1" >>confdefs.h fi # Check for matheval { $as_echo "$as_me:${as_lineno-$LINENO}: checking for evaluator_create in -lmatheval" >&5 $as_echo_n "checking for evaluator_create in -lmatheval... " >&6; } if ${ac_cv_lib_matheval_evaluator_create+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lmatheval $LEXLIB $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char evaluator_create (); int main () { return evaluator_create (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_matheval_evaluator_create=yes else ac_cv_lib_matheval_evaluator_create=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_matheval_evaluator_create" >&5 $as_echo "$ac_cv_lib_matheval_evaluator_create" >&6; } if test "x$ac_cv_lib_matheval_evaluator_create" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBMATHEVAL 1 _ACEOF LIBS="-lmatheval $LIBS" fi #Check for zlib { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gzopen in -lz" >&5 $as_echo_n "checking for gzopen in -lz... " >&6; } if ${ac_cv_lib_z_gzopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lz $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char gzopen (); int main () { return gzopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_z_gzopen=yes else ac_cv_lib_z_gzopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_z_gzopen" >&5 $as_echo "$ac_cv_lib_z_gzopen" >&6; } if test "x$ac_cv_lib_z_gzopen" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBZ 1 _ACEOF LIBS="-lz $LIBS" fi # Checks for library functions #----------------------------- for ac_func in floor pow sqrt strchr strdup strspn memchr strcspn strtol strtod do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done # Checks for header files # ----------------------- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "#define STDC_HEADERS 1" >>confdefs.h fi for ac_header in float.h stdlib.h string.h unistd.h assert.h regex.h fcntl.h limits.h stddef.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done # Check for the host to detect cygwin # ----------------------------------- # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 $as_echo_n "checking build system type... " >&6; } if ${ac_cv_build+:} false; then : $as_echo_n "(cached) " >&6 else ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` test "x$ac_build_alias" = x && as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 $as_echo "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' set x $ac_cv_build shift build_cpu=$1 build_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: build_os=$* IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 $as_echo_n "checking host system type... " >&6; } if ${ac_cv_host+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 $as_echo "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' set x $ac_cv_host shift host_cpu=$1 host_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: host_os=$* IFS=$ac_save_IFS case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac if test x$host_os = xcygwin; then ISCYGWIN_TRUE= ISCYGWIN_FALSE='#' else ISCYGWIN_TRUE='#' ISCYGWIN_FALSE= fi # Checks for help2man # ------------------- # Extract the first word of "help2man", so it can be a program name with args. set dummy help2man; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_HELP2MAN+:} false; then : $as_echo_n "(cached) " >&6 else case $HELP2MAN in [\\/]* | ?:[\\/]*) ac_cv_path_HELP2MAN="$HELP2MAN" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_HELP2MAN="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_HELP2MAN" && ac_cv_path_HELP2MAN="false" ;; esac fi HELP2MAN=$ac_cv_path_HELP2MAN if test -n "$HELP2MAN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $HELP2MAN" >&5 $as_echo "$HELP2MAN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test x$HELP2MAN != xfalse; then H2M_TRUE= H2M_FALSE='#' else H2M_TRUE='#' H2M_FALSE= fi # Define the utility to compile # ----------------------------- if test x$ac_cv_lib_gsl_gsl_blas_dgemm = xyes; then GBKER='gbker$(EXEEXT)' GBKREG='gbkreg$(EXEEXT)' GBMODES='gbmodes$(EXEEXT)' GBINTERP='gbinterp$(EXEEXT)' GBLREG='gblreg$(EXEEXT)' GBGLREG='gbglreg$(EXEEXT)' GBRAND='gbrand$(EXEEXT)' GBHILL='gbhill$(EXEEXT)' GBACORR='gbacorr$(EXEEXT)' GBKERMAN='gbker.1' GBKREGMAN='gbkreg.1' GBMODESMAN='gbmodes.1' GBINTERPMAN='gbinterp.1' GBLREGMAN='gblreg.1' GBGLREGMAN='gbglreg.1' GBRANDMAN='gbrand.1' GBHILLMAN='gbhill.1' GBACORRMAN='gbacorr.1' else LACKING="yes" fi if test x$ac_cv_lib_matheval_evaluator_create = xyes; then GBFUN='gbfun$(EXEEXT)' GBGRID='gbgrid$(EXEEXT)' GBFUNMAN='gbfun.1' GBGRIDMAN='gbgrid.1' else LACKING="yes" fi if test x$ac_cv_lib_matheval_evaluator_create = xyes && test x$ac_cv_lib_gsl_gsl_blas_dgemm = xyes; then GBGET='gbget$(EXEEXT)' GBNLREG='gbnlreg$(EXEEXT)' GBNLPANEL='gbnlpanel$(EXEEXT)' GBNLQREG='gbnlqreg$(EXEEXT)' GBNLMULT='gbnlmult$(EXEEXT)' GBNLPROBIT='gbnlprobit$(EXEEXT)' GBNLPOLYIT='gbnlpolyit$(EXEEXT)' GBGETMAN='gbget.1' GBNLREGMAN='gbnlreg.1' GBNLPANELMAN='gbnlpanel.1' GBNLQREGMAN='gbnlqreg.1' GBNLMULTMAN='gbnlmult.1' GBNLPROBITMAN='gbnlprobit.1' GBNLPOLYITMAN='gbnlpolyit.1' else LACKING="yes" fi # Add the optional utilities to Makefile # --------------------------------------- ac_config_files="$ac_config_files Makefile lib/Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`$as_echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs { $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 $as_echo_n "checking that generated files are newer than configure... " >&6; } if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 $as_echo "done" >&6; } if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${GL_COND_LIBTOOL_TRUE}" && test -z "${GL_COND_LIBTOOL_FALSE}"; then as_fn_error $? "conditional \"GL_COND_LIBTOOL\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${ISCYGWIN_TRUE}" && test -z "${ISCYGWIN_FALSE}"; then as_fn_error $? "conditional \"ISCYGWIN\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${H2M_TRUE}" && test -z "${H2M_FALSE}"; then as_fn_error $? "conditional \"H2M\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by gbutils $as_me 5.7.1, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac case $ac_config_headers in *" "*) set x $ac_config_headers; shift; ac_config_headers=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to the package provider." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ gbutils config.status 5.7.1 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" Copyright (C) 2012 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header as_fn_error $? "ambiguous option: \`$1' Try \`$0 --help' for more information.";; --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX $as_echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "lib/Makefile") CONFIG_FILES="$CONFIG_FILES lib/Makefile" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" # Set up the scripts for CONFIG_HEADERS section. # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with `./config.status Makefile'. if test -n "$CONFIG_HEADERS"; then cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF # Transform confdefs.h into an awk script `defines.awk', embedded as # here-document in config.status, that substitutes the proper values into # config.h.in to produce config.h. # Create a delimiter string that does not exist in confdefs.h, to ease # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do ac_tt=`sed -n "/$ac_delim/p" confdefs.h` if test -z "$ac_tt"; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done # For the awk script, D is an array of macro values keyed by name, # likewise P contains macro parameters if any. Preserve backslash # newline sequences. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* sed -n ' s/.\{148\}/&'"$ac_delim"'/g t rset :rset s/^[ ]*#[ ]*define[ ][ ]*/ / t def d :def s/\\$// t bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3"/p s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p d :bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3\\\\\\n"\\/p t cont s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p t cont d :cont n s/.\{148\}/&'"$ac_delim"'/g t clear :clear s/\\$// t bsnlc s/["\\]/\\&/g; s/^/"/; s/$/"/p d :bsnlc s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p b cont ' >$CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 for (key in D) D_is_set[key] = 1 FS = "" } /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { line = \$ 0 split(line, arg, " ") if (arg[1] == "#") { defundef = arg[2] mac1 = arg[3] } else { defundef = substr(arg[1], 2) mac1 = arg[2] } split(mac1, mac2, "(") #) macro = mac2[1] prefix = substr(line, 1, index(line, defundef) - 1) if (D_is_set[macro]) { # Preserve the white space surrounding the "#". print prefix "define", macro P[macro] D[macro] next } else { # Replace #undef with comments. This is necessary, for example, # in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. if (defundef == "undef") { print "/*", prefix defundef, macro, "*/" next } } } { print } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`$as_echo "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :H) # # CONFIG_HEADER # if test x"$ac_file" != x-; then { $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" } >"$ac_tmp/config.h" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 $as_echo "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$ac_tmp/config.h" "$ac_file" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ || as_fn_error $? "could not create -" "$LINENO" 5 fi # Compute "$ac_file"'s index in $config_headers. _am_arg="$ac_file" _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$_am_arg" : 'X\(//\)[^/]' \| \ X"$_am_arg" : 'X\(//\)$' \| \ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$_am_arg" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'`/stamp-h$_am_stamp_count ;; :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 $as_echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || { # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named 'Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running 'make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "$am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`$as_dirname -- "$file" || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir=$dirpart/$fdir; as_fn_mkdir_p # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi echo "" echo " --------------------------------------------------------------------" echo "| Congratulations! Configuration of ver. $PACKAGE_VERSION is complete." echo "| Optional dependencies: " echo "|" echo -n "| Gnu Scientific Library (GSL) " if test x$ac_cv_lib_gsl_gsl_blas_dgemm = xyes; then echo " found" else echo " not found" fi echo -n "| GNU matheval library " if test x$ac_cv_lib_matheval_evaluator_create = xyes; then echo " found" else echo " not found" fi echo -n "| zlib general purpose compression library " if test x$ac_cv_lib_z_gzopen = xyes; then echo " found" else echo " not found" fi echo -n "| help2man automatic man pages generator " if test x$HELP2MAN != xfalse; then echo " found" else echo " not found" fi if test x$LACKING = xyes; then echo "|" echo "| The following utilities will not be installed due to lacking" echo "| libraries (check the README file):" echo -n "|" if test x$GBKER != x'gbker$(EXEEXT)'; then echo -n " gbker" fi if test x$GBKREG != x'gbkreg$(EXEEXT)'; then echo -n " gbkreg" fi if test x$GBLREG != x'gblreg$(EXEEXT)'; then echo -n " gblreg" fi if test x$GBGLREG != x'gbglreg$(EXEEXT)'; then echo -n " gbglreg" fi if test x$GBNLREG != x'gbnlreg$(EXEEXT)'; then echo -n " gbnlreg" fi if test x$GBNLPANEL != x'gbnlpanel$(EXEEXT)'; then echo -n " gbnlpanel" fi if test x$GBNLQREG != x'gbnlreg$(EXEEXT)'; then echo -n " gbnlqreg" fi if test x$GBNLMULT != x'gbnlmult$(EXEEXT)'; then echo -n " gbnlmult" fi if test x$GBNLPROBIT != x'gbnlprobit$(EXEEXT)'; then echo -n " gbnlprobit" fi if test x$GBNLPOLYIT != x'gbnlpolyit$(EXEEXT)'; then echo -n " gbnlpolyit" fi if test x$GBMODES != x'gbmodes$(EXEEXT)'; then echo -n " gbmodes" fi if test x$GBINTERP != x'gbinterp$(EXEEXT)'; then echo -n " gbinterp" fi if test x$GBGET != x'gbget$(EXEEXT)'; then echo -n " gbget" fi if test x$GBFUN != x'gbfun$(EXEEXT)'; then echo -n " gbfun" fi if test x$GBGRID != x'gbgrid$(EXEEXT)'; then echo -n " gbgrid" fi if test x$GBRAND != x'gbrand$(EXEEXT)'; then echo -n " gbrand" fi if test x$GBHILL != x'gbhill$(EXEEXT)'; then echo -n " gbhill" fi if test x$GBACORR != x'gbacorr$(EXEEXT)'; then echo -n " gbacorr" fi echo "" fi echo "| " echo "| The utilities will be installed under ${prefix}" echo "| To compile and install the utilities in a different directory" echo "| use the configure option --prefix, see the INSTALL file." echo "|" echo "| Now you can type 'make' to compile GBUTILS and 'make install'" echo "| to install it" echo "| enjoy!" echo " --------------------------------------------------------------------" gbutils-5.7.1/gbhisto2d.c0000644000175000017500000003130013246754720012156 00000000000000/* gbhisto2d (ver. 5.6) -- Produce 2D histogram from data Copyright (C) 1998-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "tools.h" int main(int argc,char* argv[]){ size_t xsteps=10; size_t ysteps=10; int o_output=0;/*output type*/ char *splitstring = strdup(" \t"); int o_verbose=0; double **data=NULL; size_t size=0; /* COMMAND LINE PROCESSING */ /* variables for reading command line options */ /* ------------------------------------------ */ int opt; /* ------------------------------------------ */ /* initialize global variables */ initialize_program(argv[0]); /* read the command line */ while((opt=getopt_long(argc,argv,"n:M:vhF:",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='n'){ /*the number of bins*/ if(!strchr (optarg,',')){ xsteps=ysteps=atoi(optarg); } else{ char *stmp1=strdup (optarg); xsteps = atoi(strtok (stmp1,",")); ysteps = atoi(strtok (NULL,",")); free(stmp1); } } else if(opt=='M'){ /*set the type of output*/ o_output = atoi(optarg); if(o_output<0 || o_output>7){ fprintf(stderr,"ERROR (%s): output option '%d' not recognized. Try option -h.\n", GB_PROGNAME,o_output); exit(-1); } } else if(opt=='v'){ /*set verbose output*/ o_verbose=1; } else if(opt=='F'){ /*set the fields separator string*/ free(splitstring); splitstring = strdup(optarg); } else if(opt=='h'){ /*print short help*/ fprintf(stdout,"2D histogram on a regular grid. Data are read from standard input as couples \n"); fprintf(stdout,"(X,Y). If data are treated as continuous, equispaced bins are built and their \n"); fprintf(stdout,"center coordinates together with the required statistics are printed. For\n"); fprintf(stdout,"discrete variables, bins are built directly from the given variables.\n"); fprintf(stdout,"\nUsage: %s [options]\n\n",argv[0]); fprintf(stdout,"Options :\n"); fprintf(stdout," -M choose the statistics to print for each bin (default 0)\n"); fprintf(stdout," 0 occurrences number for continuous binned variables (*)\n"); fprintf(stdout," 1 relative frequency for continuous binned variables (*)\n"); fprintf(stdout," 2 empirical density for continuous binned variables (*)\n"); fprintf(stdout," 3 occurrences number for discrete symmetric variables (bins{X}=bins{Y})\n"); fprintf(stdout," 4 relative frequency for discrete symmetric variables (bins{X}=bins{Y})\n"); fprintf(stdout," 5 transition matrix (X=>Y)\n"); fprintf(stdout," 6 occurrences number for discrete asymmetric variables\n"); fprintf(stdout," 7 relative frequency for discrete asymmetric variables\n"); fprintf(stdout," -n number of equispaced bins where the histogram is computed. For output marked\n"); fprintf(stdout," with (*), use comma ',' to specify different values for x and y coordinates.\n"); fprintf(stdout," (default 10) \n"); fprintf(stdout," -v verbose mode\n"); fprintf(stdout," -F specify the input fields separators (default \" \\t\")\n"); fprintf(stdout," -h this help\n"); exit(0); } } /* END OF COMMAND LINE PROCESSING */ /* load the data */ load2(&data,&size,0,splitstring); /* ++++++++++++++++++++++++++++ */ if(o_verbose){ double xmean,xvar,xsd,xskew,xkurt,xadev,xmin,xmax; fprintf(stdout,"#output type:\t"); switch(o_output){ case 0: fprintf(stdout,"absolute frequency"); break; case 1: fprintf(stdout,"relative frequency"); break; case 2: fprintf(stdout,"empirical density"); break; case 3: fprintf(stdout,"occurencies number"); break; case 4: fprintf(stdout,"relative frequency"); break; case 5: fprintf(stdout,"transition matrix"); break; case 6: fprintf(stdout,"occurencies number (asym)"); break; case 7: fprintf(stdout,"relative frequency (asym)"); break; } fprintf(stdout,"\n"); fprintf(stdout,"#data statistics:\n"); fprintf(stdout, "# mean stdev skewness kurtosis ave.dev. min max obs.\n"); moment(data[0],size,&xmean,&xadev,&xsd,&xvar,&xskew,&xkurt,&xmin,&xmax); fprintf(stdout,"#X %+.2e %+.2e %+.2e %+.2e %+.2e %+.2e %+.2e %zd\n", xmean,xsd,xskew,xkurt,xadev,xmin,xmax,size); moment(data[1],size,&xmean,&xadev,&xsd,&xvar,&xskew,&xkurt,&xmin,&xmax); fprintf(stdout,"#Y %+.2e %+.2e %+.2e %+.2e %+.2e %+.2e %+.2e %zd\n", xmean,xsd,xskew,xkurt,xadev,xmin,xmax,size); } /* ++++++++++++++++++++++++++++ */ /* continuous variables */ if(o_output < 3){ size_t steps=xsteps*ysteps; size_t i,j; double xstepsize,ystepsize; int *histo; double xmin = DBL_MAX; /*set maximum double */ double xmax = -DBL_MAX; /*set to minimum double */ double ymin = DBL_MAX; /*set maximum double */ double ymax = -DBL_MAX; /*set to minimum double */ /* ++++++++++++++++++++++++++++ */ if(o_verbose){ fprintf(stdout,"#x bins number:\t%zd\n",xsteps); fprintf(stdout,"#y bins number:\t%zd\n",ysteps); } /* ++++++++++++++++++++++++++++ */ /* determination of xmax and xmin */ for(i=0;i dtmp0) xmin = dtmp0; else if( xmax < dtmp0) xmax = dtmp0; if( ymin > dtmp1) ymin = dtmp1; else if( ymax < dtmp1) ymax = dtmp1; } /* ------------------------------ */ histo = (int *) malloc(steps*sizeof(int)); for(i=0;i\/\fR .SH DESCRIPTION Each row of a block represents a single process realization. Blocks are separated by two white spaces and represent model variables, columns represent the time variable. Input is read as (X1_[r,t],...,Xj_[r,t],... XN_[r,t]), where r is the row, t the column and j the block. The model assumes that .PP FUN(X1_[r,t],...,XN_[t,t]) \- c_r = e_{r,t} .PP with e i.i.d and 'c' arow specific element, which can be fixed (fixed effect) or a normal random variable (random effect). .SH OPTIONS .TP \fB\-M\fR type of model (default 0) .TP 0 fixed effects .TP 1 random effects .TP \fB\-O\fR type of output (default 0) .TP 0 parameters .TP 1 parameters and errors .TP 2 and panel statistics .TP 3 parameters and variance matrix .TP \fB\-V\fR variance matrix estimation (default 0) .TP 0 < J^{\-1} >, computed via fully\-reduced log\-likelihood .TP 1 < H^{\-1} >, computed via fully\-reduced log\-likelihood .TP 2 < H^{\-1} J H^{\-1} >, computed via fully\-reduced log\-likelihood .TP 3 < J^{\-1} >, computed via non\-reduced log\-likelihood .TP 4 < H^{\-1} >, computed via non\-reduced log\-likelihood .TP 5 < H^{\-1} J H^{\-1} >, computed via non\-reduced log\-likelihood .TP \fB\-v\fR verbosity level (default 0) .TP 0 just results .TP 1 comment headers .TP 2 summary statistics .TP 3 covariance matrix .TP 4 minimization steps .TP 5 model definition .TP \fB\-e\fR minimization tolerance (default 1e\-6) .TP \fB\-F\fR input fields separators (default " \et") .TP \fB\-h\fR this help .TP \fB\-A\fR comma separated MLL optimization options: step,tol,iter,eps,msize,algo. Use empty fields for default. (default 0.1,0.01,500,1e\-6,1e\-6,0) .TP step initial step size of the searching algorithm .TP tol line search tolerance iter: maximum number of iterations .TP eps gradient tolerance : stopping criteria ||gradient|| .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/gbxcorr.c0000644000175000017500000001124213246754720011742 00000000000000/* gbxcorr (ver. 5.6) -- Compute cross correlation matrix Copyright (C) 2011-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "tools.h" int main(int argc,char* argv[]){ char *splitstring = strdup(" \t"); size_t rows=0,columns=0; double **vals=NULL,**res=NULL; size_t i,j,k; /* OPTIONS */ int o_method=0; /* variables for reading command line options */ /* ------------------------------------------ */ int opt; /* ------------------------------------------ */ /* COMMAND LINE PROCESSING */ while((opt=getopt_long(argc,argv,"hF:M:",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='h'){ /*print help*/ fprintf(stdout,"Take as input a data matrix A with N rows and T columns \n"); fprintf(stdout," A = [ a_{t,i} ] with t=1,..,T i=1,...,N \n"); fprintf(stdout,"and compute the NxN correlation matrix C [ c_{i,j} ] following \n"); fprintf(stdout,"the method specified by option '-M': with method 0 it is \n"); fprintf(stdout," c_{i,j} = 1/(T-1) \\sum_t (a_{t,i}-m_i) (a_{t,j}-m_j) \n"); fprintf(stdout,"where m_i is the i-th mean and with method 1 it is \n"); fprintf(stdout," c_{i,j} = 1/T \\sum_t a_{t,i} a_{t,j} . \n"); fprintf(stdout,"Covariance is stored in the lower triangle while correlation \n"); fprintf(stdout,"coefficients are stored in the upper triangle. \n\n"); fprintf(stdout,"WARNING: previous implementations were row-wise instead of column-wise\n"); fprintf(stdout,"\nUsage: %s [options]\n\n",argv[0]); fprintf(stdout,"Options: \n"); fprintf(stdout," -M choose the method (default 0) \n"); fprintf(stdout," 0 covariance/correlation with mean removal \n"); fprintf(stdout," 1 covariance/correlation without mean removal \n"); fprintf(stdout," -F specify the input fields separators (default \" \\t\") \n"); fprintf(stdout," -h this help\n"); return(0); } else if(opt=='M'){ /*set the method to use*/ o_method= atoi(optarg); } else if(opt=='F'){ /*set the fields separator string*/ free(splitstring); splitstring = strdup(optarg); } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); /* load data */ loadtable(&vals,&rows,&columns,0,splitstring); /* allocate space for the result */ res = (double **) my_alloc(columns*sizeof(double *)); for(i=0;i .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/gbnear.c0000644000175000017500000002035713246754720011541 00000000000000/* gbnear (ver. 5.6) -- Produce nearest neighborhood density estimate Copyright (C) 2001-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "tools.h" double dk2(const double *data, const int size, const double x, const int k) { int left,right,i; double toleft,toright,res; left=0; right=size-1; do{ const int index = (right+left)/2 ; const double dtmp1 = data[ index ]; if(x>dtmp1) left=index; else right=index; } while (right-left>1); toright = data[right]-x; toleft = x-data[left]; res =( torighttoleft) res = toleft; else if(toright0)left--; else break; } } else if(toleft0){ /* possible */ left--; toleft = x-data[left]; if(toright>toleft) res = toleft; else if(toright 0){ /* move in both direction */ const double tmp_toright = data[right+1]-x; const double tmp_toleft = x-data[left-1]; if(tmp_toleft>tmp_toright){ right++; toright=tmp_toright; res=(toright>toleft?toleft:toright); } else if(tmp_toright>tmp_toleft){ left--; toleft=tmp_toleft; res=(toright>toleft?toleft:toright); } else{ right++; left--; res=toright=tmp_toright; toleft=tmp_toleft; i++; } } else if (right>=size-1 && left>0){/* move to left */ left--; res = toleft = x-data[left]; } else if (left==0 && right res=%f\n",res); */ /*============*/ /* fprintf(stderr,"#----- [%zd]=%f x[%zd]=%f res= %f \n", */ /* left,data[left],right,data[right],res); */ /*============*/ return(res); } /* NO LONGER USED... TO BE REMOVED!!! */ double dk(const double *data, const int size, const int k, const int ind){ const double x = data[ind]; int i; int left=ind; int right=ind; double toright=0; double toleft=0; double res=0; for(i=0;i0){ /* move in both direction */ if(toright==toleft){ const double tmp_toright = data[right+1]-x; const double tmp_toleft = x-data[left-1]; if(tmp_toleft>tmp_toright){ res=toright=tmp_toright; right++; } else if(tmp_toright>tmp_toleft){ res=toleft=tmp_toleft; left++; } else{ res=toright=tmp_toright; right++; toleft=tmp_toleft; left++; i++; } } else if(toright0){ /* move to left */ left--; res = toleft = x-data[left]; } else if (left==0 && right x[%zd]=%f ] => %f \n", */ /* left,data[left],ind,data[ind],right,data[right], */ /* res); */ return(res ); } int main(int argc,char* argv[]){ double *data=NULL; size_t size,i; /*int left,right;*/ char *splitstring = strdup(" \t"); /* OPTIONS */ int o_kerneltype=1; int o_verbose=0; /* PARAMETERS */ size_t n=10; /* number of points */ int k=2; /* number of neighbors */ /* COMMAND LINE PROCESSING */ /* variables for reading command line options */ /* ------------------------------------------ */ int opt; /* ------------------------------------------ */ /* read the command line */ while((opt=getopt_long(argc,argv,"vn:K:k:hF:",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='k'){ /*the number of neighbors*/ k= atoi(optarg); } else if(opt=='n'){ /*the number of points*/ n= (size_t) atoi(optarg); } else if(opt=='K'){ /*the Kernel to use*/ o_kerneltype = atoi(optarg); } else if(opt=='v'){ /*increase verbosity*/ o_verbose=1; } else if(opt=='F'){ /*set the fields separator string*/ free(splitstring); splitstring = strdup(optarg); } else if(opt=='h'){ fprintf(stdout, "Nearest neighbors density estimation. Data are read from standard input. The\n"); fprintf(stdout, "density is computed on a regular grid. \n"); fprintf(stdout,"\nUsage: %s [options]\n\n",argv[0]); fprintf(stdout,"Options:\n"); fprintf(stdout," -n number of points where the density is computed (default 10)\n"); fprintf(stdout," -k number of neighbors points considered (default 2)\n"); fprintf(stdout," -K choose the kernel to use: 0 Epanenchnikov, 1 Rectangular\n"); fprintf(stdout," (default 0)\n"); fprintf(stdout," -v verbose mode\n"); fprintf(stdout," -F specify the input fields separators (default \" \\t\") \n"); fprintf(stdout," -h this help\n"); exit(0); } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); /* load data */ load(&data,&size,0,splitstring); /*order the values*/ qsort(data,size,sizeof(double),sort_by_value); /* ++++++++++++++++++++++++++++ */ if(o_verbose == 1){ /* bandwidth */ fprintf(stdout,"# neighbors %d\n",k); /* kernel type */ fprintf(stdout,"kernel "); switch(o_kerneltype){ case 0: fprintf(stdout,"Epanechnikov"); break; case 1: fprintf(stdout,"Rectangular"); break; } fprintf(stdout,"\n"); fprintf(stdout,"# bins %zd\n",n); fprintf(stdout,"# observations %zd\n",size); fprintf(stdout,"range [%.3e,%.3e]\n",data[0],data[size-1]); } /* ++++++++++++++++++++++++++++ */ if(o_kerneltype == 1){ /* rectangular */ const double xlow=data[0]; const double xhigh=data[size-1]; const double xstep=(xhigh-xlow)/(n-1); for(i=0;i to declare getsubopt(). AC_REQUIRE([AC_GNU_SOURCE]) AC_REPLACE_FUNCS(getsubopt) if test $ac_cv_func_getsubopt = no; then gl_PREREQ_GETSUBOPT fi ]) # Prerequisites of lib/getsubopt.c. AC_DEFUN([gl_PREREQ_GETSUBOPT], [:]) gbutils-5.7.1/m4/gnulib-comp.m40000644000175000017500000000307310344402774013124 00000000000000# Copyright (C) 2004 Free Software Foundation, Inc. # This file is free software, distributed under the terms of the GNU # General Public License. As a special exception to the GNU General # Public License, this file may be distributed as part of a program # that contains a configuration script generated by Autoconf, under # the same distribution terms as the rest of that program. # # Generated by gnulib-tool. # # This file represents the compiled summary of the specification in # gnulib-cache.m4. It lists the computed macro invocations that need # to be invoked from configure.ac. # In projects using CVS, this file can be treated like other built files. # This macro should be invoked from ./configure.ac, in the section # "Checks for programs", right after AC_PROG_CC, and certainly before # any checks for libraries, header files, types and library functions. AC_DEFUN([gl_EARLY], [ AC_REQUIRE([AC_GNU_SOURCE]) ]) # This macro should be invoked from ./configure.ac, in the section # "Check for header files, types and library functions". AC_DEFUN([gl_INIT], [ AM_CONDITIONAL([GL_COND_LIBTOOL], [false]) gl_FUNC_GETDELIM gl_FUNC_GETLINE gl_FUNC_GETSUBOPT gl_FUNC_STRCHRNUL ]) # This macro records the list of files which have been installed by # gnulib-tool and may be removed by future gnulib-tool invocations. AC_DEFUN([gl_FILE_LIST], [ lib/getdelim.c lib/getdelim.h lib/getline.c lib/getline.h lib/getsubopt.c lib/getsubopt.h lib/strchrnul.c lib/strchrnul.h m4/getdelim.m4 m4/getline.m4 m4/getsubopt.m4 m4/onceonly_2_57.m4 m4/strchrnul.m4 ]) gbutils-5.7.1/m4/getdelim.m40000644000175000017500000000130210327011632012461 00000000000000# getdelim.m4 serial 1 dnl Copyright (C) 2005 Free Software dnl Foundation, Inc. dnl dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. AC_PREREQ(2.52) AC_DEFUN([gl_FUNC_GETDELIM], [ AC_LIBSOURCES([getdelim.c, getdelim.h]) dnl Persuade glibc to declare getdelim(). AC_REQUIRE([AC_GNU_SOURCE]) AC_REPLACE_FUNCS(getdelim) AC_CHECK_DECLS_ONCE(getdelim) if test $ac_cv_func_getdelim = no; then gl_PREREQ_GETDELIM fi ]) # Prerequisites of lib/getdelim.c. AC_DEFUN([gl_PREREQ_GETDELIM], [ AC_CHECK_FUNCS([flockfile funlockfile]) ]) gbutils-5.7.1/m4/getline.m40000644000175000017500000000431610327011632012326 00000000000000# getline.m4 serial 13 dnl Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2005 Free Software dnl Foundation, Inc. dnl dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. AC_PREREQ(2.52) dnl See if there's a working, system-supplied version of the getline function. dnl We can't just do AC_REPLACE_FUNCS(getline) because some systems dnl have a function by that name in -linet that doesn't have anything dnl to do with the function we need. AC_DEFUN([gl_FUNC_GETLINE], [ AC_LIBSOURCES([getline.c, getline.h]) dnl Persuade glibc to declare getline(). AC_REQUIRE([AC_GNU_SOURCE]) AC_CHECK_DECLS([getline]) gl_getline_needs_run_time_check=no AC_CHECK_FUNC(getline, dnl Found it in some library. Verify that it works. gl_getline_needs_run_time_check=yes, am_cv_func_working_getline=no) if test $gl_getline_needs_run_time_check = yes; then AC_CACHE_CHECK([for working getline function], am_cv_func_working_getline, [echo fooN |tr -d '\012'|tr N '\012' > conftest.data AC_TRY_RUN([ # include # include # include int main () { /* Based on a test program from Karl Heuer. */ char *line = NULL; size_t siz = 0; int len; FILE *in = fopen ("./conftest.data", "r"); if (!in) return 1; len = getline (&line, &siz, in); exit ((len == 4 && line && strcmp (line, "foo\n") == 0) ? 0 : 1); } ], am_cv_func_working_getline=yes dnl The library version works. , am_cv_func_working_getline=no dnl The library version does NOT work. , am_cv_func_working_getline=no dnl We're cross compiling. )]) fi if test $am_cv_func_working_getline = no; then dnl We must choose a different name for our function, since on ELF systems dnl a broken getline() in libc.so would override our getline() in dnl libgettextlib.so. AC_DEFINE([getline], [gnu_getline], [Define to a replacement function name for getline().]) AC_LIBOBJ(getline) gl_PREREQ_GETLINE fi ]) # Prerequisites of lib/getline.c. AC_DEFUN([gl_PREREQ_GETLINE], [ gl_FUNC_GETDELIM ]) gbutils-5.7.1/m4/strchrnul.m40000644000175000017500000000107310327011632012720 00000000000000# strchrnul.m4 serial 3 dnl Copyright (C) 2003 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. AC_DEFUN([gl_FUNC_STRCHRNUL], [ dnl Persuade glibc to declare strchrnul(). AC_REQUIRE([AC_GNU_SOURCE]) AC_REPLACE_FUNCS(strchrnul) if test $ac_cv_func_strchrnul = no; then gl_PREREQ_STRCHRNUL fi ]) # Prerequisites of lib/strchrnul.c. AC_DEFUN([gl_PREREQ_STRCHRNUL], [:]) gbutils-5.7.1/m4/onceonly_2_57.m40000644000175000017500000000700110327011632013253 00000000000000# onceonly_2_57.m4 serial 3 dnl Copyright (C) 2002-2003, 2005 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl This file defines some "once only" variants of standard autoconf macros. dnl AC_CHECK_HEADERS_ONCE like AC_CHECK_HEADERS dnl AC_CHECK_FUNCS_ONCE like AC_CHECK_FUNCS dnl AC_CHECK_DECLS_ONCE like AC_CHECK_DECLS dnl AC_REQUIRE([AC_HEADER_STDC]) like AC_HEADER_STDC dnl The advantage is that the check for each of the headers/functions/decls dnl will be put only once into the 'configure' file. It keeps the size of dnl the 'configure' file down, and avoids redundant output when 'configure' dnl is run. dnl The drawback is that the checks cannot be conditionalized. If you write dnl if some_condition; then gl_CHECK_HEADERS(stdlib.h); fi dnl inside an AC_DEFUNed function, the gl_CHECK_HEADERS macro call expands to dnl empty, and the check will be inserted before the body of the AC_DEFUNed dnl function. dnl This is like onceonly.m4, except that it uses diversions to named sections dnl DEFAULTS and INIT_PREPARE in order to check all requested headers at once, dnl thus reducing the size of 'configure'. Works with autoconf-2.57. The dnl size reduction is ca. 9%. dnl Autoconf version 2.57 or newer is recommended. AC_PREREQ(2.57) # AC_CHECK_HEADERS_ONCE(HEADER1 HEADER2 ...) is a once-only variant of # AC_CHECK_HEADERS(HEADER1 HEADER2 ...). AC_DEFUN([AC_CHECK_HEADERS_ONCE], [ : AC_FOREACH([gl_HEADER_NAME], [$1], [ AC_DEFUN([gl_CHECK_HEADER_]m4_quote(translit(gl_HEADER_NAME, [./-], [___])), [ m4_divert_text([INIT_PREPARE], [gl_header_list="$gl_header_list gl_HEADER_NAME"]) gl_HEADERS_EXPANSION AH_TEMPLATE(AS_TR_CPP([HAVE_]m4_defn([gl_HEADER_NAME])), [Define to 1 if you have the <]m4_defn([gl_HEADER_NAME])[> header file.]) ]) AC_REQUIRE([gl_CHECK_HEADER_]m4_quote(translit(gl_HEADER_NAME, [./-], [___]))) ]) ]) m4_define([gl_HEADERS_EXPANSION], [ m4_divert_text([DEFAULTS], [gl_header_list=]) AC_CHECK_HEADERS([$gl_header_list]) m4_define([gl_HEADERS_EXPANSION], []) ]) # AC_CHECK_FUNCS_ONCE(FUNC1 FUNC2 ...) is a once-only variant of # AC_CHECK_FUNCS(FUNC1 FUNC2 ...). AC_DEFUN([AC_CHECK_FUNCS_ONCE], [ : AC_FOREACH([gl_FUNC_NAME], [$1], [ AC_DEFUN([gl_CHECK_FUNC_]m4_defn([gl_FUNC_NAME]), [ m4_divert_text([INIT_PREPARE], [gl_func_list="$gl_func_list gl_FUNC_NAME"]) gl_FUNCS_EXPANSION AH_TEMPLATE(AS_TR_CPP([HAVE_]m4_defn([gl_FUNC_NAME])), [Define to 1 if you have the `]m4_defn([gl_FUNC_NAME])[' function.]) ]) AC_REQUIRE([gl_CHECK_FUNC_]m4_defn([gl_FUNC_NAME])) ]) ]) m4_define([gl_FUNCS_EXPANSION], [ m4_divert_text([DEFAULTS], [gl_func_list=]) AC_CHECK_FUNCS([$gl_func_list]) m4_define([gl_FUNCS_EXPANSION], []) ]) # AC_CHECK_DECLS_ONCE(DECL1 DECL2 ...) is a once-only variant of # AC_CHECK_DECLS(DECL1, DECL2, ...). AC_DEFUN([AC_CHECK_DECLS_ONCE], [ : AC_FOREACH([gl_DECL_NAME], [$1], [ AC_DEFUN([gl_CHECK_DECL_]m4_defn([gl_DECL_NAME]), [ AC_CHECK_DECLS(m4_defn([gl_DECL_NAME])) ]) AC_REQUIRE([gl_CHECK_DECL_]m4_defn([gl_DECL_NAME])) ]) ]) gbutils-5.7.1/compile0000755000175000017500000001624512676613141011513 00000000000000#! /bin/sh # Wrapper for compilers which do not understand '-c -o'. scriptversion=2012-10-14.11; # UTC # Copyright (C) 1999-2014 Free Software Foundation, Inc. # Written by Tom Tromey . # # 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, 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, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . nl=' ' # We need space, tab and new line, in precisely that order. Quoting is # there to prevent tools from complaining about whitespace usage. IFS=" "" $nl" file_conv= # func_file_conv build_file lazy # Convert a $build file to $host form and store it in $file # Currently only supports Windows hosts. If the determined conversion # type is listed in (the comma separated) LAZY, no conversion will # take place. func_file_conv () { file=$1 case $file in / | /[!/]*) # absolute file, and not a UNC file if test -z "$file_conv"; then # lazily determine how to convert abs files case `uname -s` in MINGW*) file_conv=mingw ;; CYGWIN*) file_conv=cygwin ;; *) file_conv=wine ;; esac fi case $file_conv/,$2, in *,$file_conv,*) ;; mingw/*) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; cygwin/*) file=`cygpath -m "$file" || echo "$file"` ;; wine/*) file=`winepath -w "$file" || echo "$file"` ;; esac ;; esac } # func_cl_dashL linkdir # Make cl look for libraries in LINKDIR func_cl_dashL () { func_file_conv "$1" if test -z "$lib_path"; then lib_path=$file else lib_path="$lib_path;$file" fi linker_opts="$linker_opts -LIBPATH:$file" } # func_cl_dashl library # Do a library search-path lookup for cl func_cl_dashl () { lib=$1 found=no save_IFS=$IFS IFS=';' for dir in $lib_path $LIB do IFS=$save_IFS if $shared && test -f "$dir/$lib.dll.lib"; then found=yes lib=$dir/$lib.dll.lib break fi if test -f "$dir/$lib.lib"; then found=yes lib=$dir/$lib.lib break fi if test -f "$dir/lib$lib.a"; then found=yes lib=$dir/lib$lib.a break fi done IFS=$save_IFS if test "$found" != yes; then lib=$lib.lib fi } # func_cl_wrapper cl arg... # Adjust compile command to suit cl func_cl_wrapper () { # Assume a capable shell lib_path= shared=: linker_opts= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. eat=1 case $2 in *.o | *.[oO][bB][jJ]) func_file_conv "$2" set x "$@" -Fo"$file" shift ;; *) func_file_conv "$2" set x "$@" -Fe"$file" shift ;; esac ;; -I) eat=1 func_file_conv "$2" mingw set x "$@" -I"$file" shift ;; -I*) func_file_conv "${1#-I}" mingw set x "$@" -I"$file" shift ;; -l) eat=1 func_cl_dashl "$2" set x "$@" "$lib" shift ;; -l*) func_cl_dashl "${1#-l}" set x "$@" "$lib" shift ;; -L) eat=1 func_cl_dashL "$2" ;; -L*) func_cl_dashL "${1#-L}" ;; -static) shared=false ;; -Wl,*) arg=${1#-Wl,} save_ifs="$IFS"; IFS=',' for flag in $arg; do IFS="$save_ifs" linker_opts="$linker_opts $flag" done IFS="$save_ifs" ;; -Xlinker) eat=1 linker_opts="$linker_opts $2" ;; -*) set x "$@" "$1" shift ;; *.cc | *.CC | *.cxx | *.CXX | *.[cC]++) func_file_conv "$1" set x "$@" -Tp"$file" shift ;; *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO]) func_file_conv "$1" mingw set x "$@" "$file" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -n "$linker_opts"; then linker_opts="-link$linker_opts" fi exec "$@" $linker_opts exit 1 } eat= case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: compile [--help] [--version] PROGRAM [ARGS] Wrapper for compilers which do not understand '-c -o'. Remove '-o dest.o' from ARGS, run PROGRAM with the remaining arguments, and rename the output as expected. If you are trying to build a whole package this is not the right script to run: please start by reading the file 'INSTALL'. Report bugs to . EOF exit $? ;; -v | --v*) echo "compile $scriptversion" exit $? ;; cl | *[/\\]cl | cl.exe | *[/\\]cl.exe ) func_cl_wrapper "$@" # Doesn't return... ;; esac ofile= cfile= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. # So we strip '-o arg' only if arg is an object. eat=1 case $2 in *.o | *.obj) ofile=$2 ;; *) set x "$@" -o "$2" shift ;; esac ;; *.c) cfile=$1 set x "$@" "$1" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -z "$ofile" || test -z "$cfile"; then # If no '-o' option was seen then we might have been invoked from a # pattern rule where we don't need one. That is ok -- this is a # normal compilation that the losing compiler can handle. If no # '.c' file was seen then we are probably linking. That is also # ok. exec "$@" fi # Name of file we expect compiler to create. cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'` # Create the lock directory. # Note: use '[/\\:.-]' here to ensure that we don't use the same name # that we are using for the .o file. Also, base the name on the expected # object file name, since that is what matters with a parallel build. lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d while true; do if mkdir "$lockdir" >/dev/null 2>&1; then break fi sleep 1 done # FIXME: race condition here if user kills between mkdir and trap. trap "rmdir '$lockdir'; exit 1" 1 2 15 # Run the compile. "$@" ret=$? if test -f "$cofile"; then test "$cofile" = "$ofile" || mv "$cofile" "$ofile" elif test -f "${cofile}bj"; then test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" fi rmdir "$lockdir" exit $ret # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: gbutils-5.7.1/gbtest.10000644000175000017500000000713113246755334011506 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBTEST "1" "March 2018" "gbtest 5.7.1" "User Commands" .SH NAME gbtest \- Compute statistical tests on data .SH SYNOPSIS .B gbtest [\fI\,options\/\fR] \fI\,\/\fR .SH DESCRIPTION Compute statistical tests on data. Each test is specified by a unique name and optional parameters follows, separated by commas. Depending on the test, one, two or three columns of data are expected. '1 sample' tests expect a single columns. Test on 'pairs' expect two columns of equal length. Test on '2 samples' expect two columns of data, possibly of different length. Test on 2+ and 3+ samples expect a varying number of columns. If more columns are provided, the test is repeated for any column in the case of 1 sample test, and any couple of columns in the case of 2 sample tests. In the last case, the output is expressed in matrix format, with estimated statistics on the lower triangle and p\-scores (if requested) on the upper. The removal of 'nan' entries is automatic, and is performed consistently with the nature of the test. .PP Tests typically assume 1, 2 or 3+ samples. Available tests are: .TP D+,D\-,D,V 1 samp Kolmogorov\-Smirnov tests on cumulated data .TP W2,A2,U2 1 samp Cramer\-von Mises tests on cumulated data .TP CHI2\-1 1 samp Chi\-Sqrd, 1 samp. 2nd column: th. prob. .TP WILCO 1 samp Wilcoxon signed\-rank test (mode=0) .TP TS 1 samp Student's T (mean=0) .TP TR\-TP 1 samp Test of randomness: turning points .TP TR\-DS 1 samp Test of randomness: difference sign .TP TR\-RT 1 samp Test of randomness: rank test .TP R pairs Pearson's correlation coefficient .TP RHO pairs Spearman's Rho rank correlation .TP TAU pairs Kendall's Tau correlation .TP CHI2\-2 pairs Chi\-Sqrd, 2 samples .TP TP pairs Student's T with paired samples .TP WILCO2 pairs Wilcoxon test on paired samples .TP KS 2 samp Kolmogorov\-Smirnov test .TP T 2 samp Student's T with same variances .TP TH 2 samp Student's T with different variances .TP F 2 samp F\-Test for different variances .TP WMW 2 samp Wilcoxon\-Mann\-Whitney U .TP FP 2 samp Fligner\-Policello standardized U^ .TP LEV\-MEAN 2+ samp Levene equality of variances using means .TP LEV\-MED 2+ samp Levene equality of variances using medians .TP KW 3+ samp Kruscal\-Wallis test on 3+ samples .TP CHI2\-N 3+ samp Multi\-columns contingency table analysis .SH OPTIONS .TP \fB\-p\fR compute associated significance .TP \fB\-s\fR input data are already sorted in ascending order .TP \fB\-F\fR specify the input fields separators (default " \et") .TP \fB\-o\fR set the output format (default '%12.6e') .TP \fB\-v\fR verbosity: 0 none, 1 headings, 2+ description (default 0) .TP \fB\-h\fR this help .SH EXAMPLES .TP gbtest FP < file compute the Fligner\-Policello test on the columns of 'file', considering all possible pairings. .TP gbtest KW \-p < file compute the Kruscal\-Wallis test and its p\-score on the first three columns of data in 'file' .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/gbglreg.10000644000175000017500000000375313246755335011636 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBGLREG "1" "March 2018" "gbglreg 5.7.1" "User Commands" .SH NAME gbglreg \- Estimate general linear regression model .SH SYNOPSIS .B gbglreg [\fI\,options\/\fR] .SH DESCRIPTION General Linear regression. Data are read in columns (X_1 .. X_N Y). The last column contains the dependent observations. With option \fB\-w\fR standard errors associated with the observations can be provided. In this case data are read as (X_1...X_N,Y,std(Y)). .SH OPTIONS .TP \fB\-M\fR the regression model (default 1) .TP 0 with estimated intercept .TP 1 with zero intercept .TP \fB\-w\fR consider standard errors .TP \fB\-O\fR the type of output (default 0) .TP 0 regression coefficients .TP 1 regression coefficients and errors .TP 2 x, fitted y, error on y, residual .TP 3 coefficients and variance matrix .TP 4 coefficients and explained variance .TP \fB\-V\fR method to estimate variance matrix (default 0) .TP 0 ordinary least square estimator .TP 1 heteroscedastic consistent White estimator .TP 2 Hinkley adjusted White estimator .TP 3 Horn\-Horn\-Duncan adjusted White estimator .TP 4 jacknife estimator .TP \fB\-v\fR verbosity level (default 0) .TP 0 just output .TP 1 commented headings .TP 2 model details .TP \fB\-h\fR print this help .TP \fB\-F\fR specify the input fields separators (default " \et") .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/gbbin.10000644000175000017500000000445513246755334011305 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBBIN "1" "March 2018" "gbbin 5.7.1" "User Commands" .SH NAME gbbin \- A program to bin data .SH SYNOPSIS .B gbbin [\fI\,options\/\fR] .SH DESCRIPTION Compute binned statistics. Data are read from standard input as records (X,Y1,Y2,...). Equipopulated bins are built with respect to the first field X. Option \fB\-O\fR decide which statistics are printed for each bin. With options \fB\-x\fR, \fB\-y\fR or \fB\-c\fR elements in different bins are split in different columns. .SH OPTIONS .TP \fB\-n\fR set the number of equipopulated bins (default 10) .TP \fB\-w\fR min,max set manually the binning window. Ignored with \fB\-x\fR,\-y and \fB\-c\fR .TP \fB\-O\fR set the output with a comma separated list of variables: xmean, xmin, xmax, xstd, xmedian, ymean, yadev, ystd, yvar, yskew, ykurt, ymin, ymax, ymedian, num (default xmean, ymean) .TP \fB\-c\fR# the values in column # are split in different columns; # can be a comma separated list of columns .TP \fB\-x\fR equivalent to \fB\-c\fR 1 .TP \fB\-y\fR equivalent to \fB\-c\fR 2 .TP \fB\-F\fR specify the input fields separators (default " \et") .TP \fB\-v\fR verbose mode .SH EXAMPLES .TP gbbin \-n 20 < file split the records (line) in 20 bins according to first field. Print the average value of the bin entries for each column. If 'file' has 3 columns, the output has twenty rows and three columns. .TP gbbin \-O ymedian < file bin the records with respect to the first value and print the median value of the other columns in each bin .TP gbbin \-c 3 < file the binned values of the third columns are printed on separate columns. The output has ten columns. .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/gbdist.10000644000175000017500000000265013246755334011473 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBDIST "1" "March 2018" "gbdist 5.7.1" "User Commands" .SH NAME gbdist \- Produce cumulative distribution from data .SH SYNOPSIS .B gbdist [\fI\,options\/\fR] .SH DESCRIPTION Compute the empirical probability distribution function as F(x_k) = k/(N+1) where x_k is the k\-th largest observation, that is k\-1 observations are smaller then x_k and n\-k are larger, and N is the sample size. .SH OPTIONS .TP \fB\-r\fR print right cumulated distribution function, i.e. 1\-F(x) .TP \fB\-i\fR print multiple points for identical observations .TP \fB\-t\fR print the distribution for each column of input .TP \fB\-F\fR specify the input fields separators (default " \et") .TP \fB\-v\fR verbose mode .TP \fB\-h\fR this help .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/gbacorr.10000644000175000017500000000437413246755336011645 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBACORR "1" "March 2018" "gbacorr 5.7.1" "User Commands" .SH NAME gbacorr \- Compute auto/cross-correlation coefficients .SH SYNOPSIS .B gbacorr [\fI\,options\/\fR] .SH DESCRIPTION Compute auto/cross\-correlation coefficients .PP If the input is a single columns x_1...X_T, the autocorrelation function c(t) is printed, defined as .IP c_{t} = 1/(T\-t\-1) \esum_i (x_i\-m) (x_{i+t}\-m) /s^2 .PP where m is the sample average and s the standard deviation. With a second column y_1...y_T, the cross\-correlation .IP c_{t} = 1/(T\-t\-1) \esum_i (x_i\-mx) (y_{i+t}\-my) /(sx sy) .PP is printed where mx and my are the average values of the two columns and sx and sy their standard deviations. With \fB\-M\fR 1 it is mx=my=0, the st.dev. is computed accordingly and in the previous formula T\-t\-1 is replaced by T\-t. The range of t is set by option \fB\-t\fR. Options .TP \fB\-M\fR choose the method (default '0'): .TP 0 auto/cross\-correlation with mean removal, .TP 1 auto/cross\-correlation without mean removal .TP \fB\-t\fR set range of t (default '0,10'), accept negative integers .TP \fB\-p\fR specify the confidence level in (0,1). Interval ac_low,ac_hi has a probability 1\-confidence to contain the true value. With this option the output becomes: lag ac ac_low ac_hi. .TP \fB\-F\fR specify the input fields separators (default " \et") .TP \fB\-h\fR this help .SH EXAMPLES .TP gbacorr \-t 0,2 'file(1)' first three a.c. coeff. of the first data column .TP gbacorr \-p 0.05 'file(1:2)' x\-corr of the first two columns together with their 5% confidence intervals .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/gbnear.10000644000175000017500000000254213246755334011455 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBNEAR "1" "March 2018" "gbnear 5.7.1" "User Commands" .SH NAME gbnear \- Produce nearest neighborhood density estimate .SH SYNOPSIS .B gbnear [\fI\,options\/\fR] .SH DESCRIPTION Nearest neighbors density estimation. Data are read from standard input. The density is computed on a regular grid. .SH OPTIONS .TP \fB\-n\fR number of points where the density is computed (default 10) .TP \fB\-k\fR number of neighbors points considered (default 2) .TP \fB\-K\fR choose the kernel to use: 0 Epanenchnikov, 1 Rectangular (default 0) .TP \fB\-v\fR verbose mode .TP \fB\-F\fR specify the input fields separators (default " \et") .TP \fB\-h\fR this help .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/gbmave.c0000644000175000017500000000640613246754720011543 00000000000000/* gbmave (ver. 5.6) -- Produce moving average from data Copyright (C) 1998-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "tools.h" int main(int argc,char* argv[]){ double **data=NULL; /* array of values */ size_t rows=0,columns=0; double *average; size_t i,col; size_t lag=10; int o_printnum=0; char *splitstring = strdup(" \t"); /* COMMAND LINE PROCESSING */ /* variables for reading command line options */ /* ------------------------------------------ */ int opt; /* ------------------------------------------ */ /* read the command line */ while((opt=getopt_long(argc,argv,"s:hnF:",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='F'){ /*set the fields separator string*/ free(splitstring); splitstring = strdup(optarg); } else if(opt=='n'){ /*print the time steps numbers*/ o_printnum=1; } else if(opt=='s'){ /*set the lag*/ lag=(size_t) atoi(optarg); } else if(opt=='h'){ /*print short help*/ fprintf(stdout,"Compute moving average along each column. Data are read \n"); fprintf(stdout,"from standard input.\n"); fprintf(stdout,"\nUsage: %s [options]\n\n",argv[0]); fprintf(stdout,"Options:\n"); fprintf(stdout," -s number of steps to average (default 10)\n"); fprintf(stdout," -n print a progressive tailing integer\n"); fprintf(stdout," -F specify the input fields separators (default \" \\t\")\n"); fprintf(stdout," -h this help\n"); return(0); } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); /* load data: data[column][row] */ loadtable(&data,&rows,&columns,0,splitstring); if(rows> stream xÚÍWK“ä4 ¾Ï¯È¤j“µüL8»LAÕÛ{žnO‹<'`=rìdº›PÕTÁЗ8/Iþ$}’|»¹yû5” ¨‚‚àÉæ1¡¼,U‰$ª\&›]òcº[÷Y΀¥]Feúì/Æ=[ó[öóæ[ÔR%E%õZ ,€%9#¨· :îìXÛU àm7 úóç,‡Ôzñ$¯ Vª$§¼`U4úÎlM“Q•>d9^ ²Ty±7ñö9O…¹œì瀦+E“œË‚Q4~Õµƒt0¸t裤H&xIrº ÈòŠ’ôÖYóˆ&KHw¦ß:{,*›^tñÃÁu{—AªtH JßÈc ªÀo±<: 4dúNõ1š~Э=Œµ–DÅÒBÂ'O׳€P–)¨ä#ý ÆÁé¶ì\Q*!¯×1> stream xÚ­XKÛ6¾çWø(±¢÷£·´I€-H|Kz %®—¨,©$µ»úã;/ÙZ¯‚"@/Öpø˜áp¾yø×ý›wŸòlGaÕñf¿‰³$ŒëtSäq˜äÕfßn¾ß“8Úþ¹ÿýݧ¸x±8 «²ÚD¼êƒòj»KÓ$Øo«4°ªw÷ƒ=)o†žw¿µ“í»$ £¢þ)QÚ5֌ޠožI®Äã”…¢pkW¡u<µg )IåœêJxl¬dbKà Nó%›08ɾY×R‚R3üȽ˜‚^ˆîtYw ¯Ý•"\ª(Ëà#HIRâ ^JƒÉŽ€¢_ýì-åA ~›4z= Õ—]Š?G,\KLë4•‡ˆÝã Iͪ¯f5ÍžMÏUfÁi°ÂA[ÌiJ‹7”’é€ ²å=è€XÜTa;LÇæ hF3ƒ“A—.á’¤%ôå\ÿ³©<,ÒË ”³û¡Þèæ,nò†k2oyüŒ”Í 4!U½ò{)/æ¬å¥±£L<¼D&«D ° ³Ž~æ#o‚*WŒeœ¸…Y|¥T Ó_>¾ÿðùc8»oÂYyévüäk¸7¸†13wà:²ü6ø,Ú·bÑ4áµf“^ÜóF‹&ä|]Ös¾®ÈË(§©‚“yR¼Ò´øçQ– ×]ð¡ ¦\V0È“§§]Æqz“PñÚYz}!s ”‹ü¾ žiña ϦIŸƒ÷9Ä2'Žè¤íQ_Ë$”»T'Hs+À¿T[»T¾ðà¤Ô"xqÚÊñÖ·y ë 4|çÉ„Ô)¸äê+ÃÉ!J/ÛÎãá~ZMHi&Åå­Ñ{'O(寄úEÀö†;EÂ:²¨æ…/‡J¤ŒpdØ ÝtêwOÔC89*¯žz ¢*©3•g­ë›g½JÌà¾$¯e)sÕ8vfA-/ À‡sÔ”Îí"Aú8^F½+6‹Ý §`‹£ÈSüòb²ŽDHã¿‚ÊeOÕÌϼÊÑšvíY2lã“ùY¸EôT»•Œµ2 ­@UT¶›P‡ÜƒË4ô¶Ö<… 0†T)°T:F›9¾Äi A5ê°ª¤,MpêÍÇý›$j"› endstream endobj 109 0 obj << /Length 1471 /Filter /FlateDecode >> stream xÚ¥WKsÛ6¾ûWhr¢f,F >®M“N{êÁ·¦ˆ„$ŒùPÒÿûî‹’%Ó™xzÉÅX|ûí‡ÕowŸ¿ez•lãj[%«‡ý*Q:.ªr•ë$Vº\=4«¢Ãn½IUdû5ü>­ÿ}øëó·$=--âr[­¶ìòÃZ•Ñ“kìz£r¹~?øÎŒnèÙ``EUDôÞ$ш6xÅ»ÇÉSg½«ÙƒóÓ:‰úÃê 8Á[gé GY·ons¾M .Ah¹Nh"¸6s̃Œ Óž_±¨1Op4ìåµ,ÎøÛËÓICpÝ©µŒì­àЖ¬L3æŸLÃD‡7Ÿx´úù.‚€È"ÓìxˆèÍÏõS_]æÈ¡Å›¼Š“íY<멣˸}Us¤k0Ûx»‰1BëTï  ìÃ…w Áy'*Uœû‹ œê’(fó’¨80ÜêFPš—âÒq¥Þ(2Užë{Û¼IùâŽ´È ”¤“áañš«â*›÷&OT=×RiÜ\:èNÎϯ’<^rxé}~*Žà©#,9,Æ›ÅUuMrÃfö€Û:~™zùœ.ZÂlRpy’D_ˆë ªAÆvÜxøgb()^s»0´Ü`Z¶ì½ý1Ù~#}`ÉnÖΆûYø„ôgVátPZ ÜÍ K«kpQCú€¾Ž‚{ùÀýóˆI·þÆåÙ¹ xä&¥·¸e^Жóvd°@»ŽÌsAÌŒ²¾  ƒ‚²Î ”5ö㥤Ñd7" ]¶¾—Æö(R§Å5¬;€èÙ5#´i&×{ši¡%X¸t¤WAìjp$v¥GäJckà;ÖÖ/aª7\ä§,¯qùÍ’LwçÔµ®·HÐ{A¦âôR”s6ŠHºáWÙÀ†ÒÑvXÍ©¶ÞºÃ±ef>¼Ñùåbä­odD˜¤šÅhKú¯·Ä%RÖŸFÏ\óî†JÈ|¤=]°ïo¼¤Ë‘ê2N²üv„ÿЬ|Û¡¼ç¿E©Î"öeV|¥¤WªŠp.ö&íyë«6<×!¸Ô[`Ž÷ü4< (˒Ђ“Êàû³ÃòÁqÆ?Ìü5«€ÖåÕŸ³KB©/X% ×)h^8ttJqèîëÃÝTÞ=Ë endstream endobj 113 0 obj << /Length 1537 /Filter /FlateDecode >> stream xÚ•WÉŽÜ6½û+ú¨Üt‹"µ³H ‡ ql‰ÓCXK[”2ž|}j!ÕËhÏE‹[ñ½ÚøíÝ›wï•Þ¤{Qí«tsw¿I¥EUnr ©ËÍ]³ù+9L=Œãöﻟ޽OóËù*¹*7{žøã´Ýe¥Lê¡;Í“õÜ›,þd‰™§a»“E‚»Ùv8ަã)Ãx3µ‡mšÀðÙ}aÝ=*µÙ¥•È m&´ªXS2™x;:Ò$Kq:ɆHÿÙê<1“z/¶;¥$«ã5ç_V–6f ÖC;wýîÑy+’kAQ!‹ Z)öE!ÜÂÒÏ_€±”i„ñ;†o»Ó¥f t©ïwõ° @w˜Ñ™¾£¦ox~œ†HÑ킘´öY^;Ûã.“_ÐÓ@âznz€Èî,l óÄRR FÛJeP©å©ôÅ,™tÖô,Z†pÑ#~xÓZK\Èœ¸À…‹¸껿Öô’°™mæ† ¥¢ÒZ^T‰ý>ã]R¡`!˜òÛ°ùÉÕx°ª yòüKXd…JàÎ;8±±­_ãT”{¡«°ùY‘ÒÉ<¹ÖMlÐ= k¸¿:[ÏÆ_d0 „é§]ˆ™s˜5{×׬އ#€³aÙ»xÓaòÓhN!cÙ/ðлO³}E~:€÷­y‚•ŒÌr6”{´¢„Á…'Ã\y«‡ùDA8 (ëB»ÜÖóº?Xü'7¼Å`4ÅØpÀmŸøßŸLm=úû[ oH_%xÅ Ë (('§Ç2ŒRžCr]O,$³Á–ì4KÉxGF—4 ¾ÈæšüˆÃ!Fgì/.úd,—{[°x…ÝËSü+û8Úãj1!…<‹Q^•3Ñ»ˆ§–e˜ Z×[3Æ2è˜y*!pü~¦é5kj†ƒo"ª)›Õ¨¡¡jËŸ)ª²ŠU…"†¸TÇ/•ÄqP’¤^l§‡Ñ† ¼ƒ‹¢)TWtth†ž20F<,/¾ž”öR² NÊWI9cž&¿þüÛ3ð×ÛÝ@}|étHC$\;=$[÷oŒ,—&ÔIÿO°ÿ:ý‹êäPÆ;Ôx=1VžAQTb^p }Ž“4 |ËÂ_¾ùžECXeüSêΞ¥(tq•=i Þ3ä’aô¯H‰}ûé…ûi)òý:Ü}ô¦K˜?͆ƒ‰kíWѸ±½¾íð•1·«5VBæåY)>ÑÆzj4½¥'ƒ^k ÆÀLV‰å¨ÄKÊ刀‹î¹5ÜÐsí ßm“íxuœÑÇ%píè{¹¨ª›7ÛâNås`7ñ*R 7Ü*¹ª¬"çú*¤%>wʰ#É—ä‚fœéÈŒOoÅ5•ƒ7´=¸¶}1õÊçêJx<«û%¼NîMÏ .KT(WioøîXŠ'\%ƒ;ÌŒ1Mm¨ØTb?Oð¶ e8%ÙꥇWpH¼{g>»Ž*(¤®‹¶þ1YT¸ðÀX¿›TÁ#^ñ³¬,¡ ‡Þüp÷æ?).rv endstream endobj 117 0 obj << /Length 1948 /Filter /FlateDecode >> stream xÚXKÛ6¾çWèae V$’zµ§M‘)Š´@¶§¦Ù¢maõpE)›Í¯ï¼(Ûk-Г†Cr8üæI½xóîcœ®â(,¢"^=ìW±Qa¦“UšÄ¡JòÕCµú;ø¸ÎuÐëÎLÐöƒEJu·ÞÄÁ¾Úu”cÝw¼ÂK^æNëÊ»«¿FÚìxn×·mÙUoa”›`r–ÙãQdoŽWëxÐÔ]ÿóðÛj§a¡3øê01kÙŸP…\Î'<ýgcKgá@“ÆA×õŽ2:3Ë‘©²iˆÁ6öÛ:[u¨èÈ\7‚¡\Þ…ëM¦uð©óûjç7΃£Ç·¤lt­&œúh­‚’¼AÇÕ¶Ü6€™í¦z¶eöØóo‘ÂëW¼˜<8ßPc;ˆ¬¦rÂP:²ò»Æ€Ã†Ú¤ }tÔ0JÅkxgEÁ_]e¸wÇÒi—ÈÞý1ðaI×Q’HϹ'·ˆ•`köJ‡ r<ÛïýªZ8§r‡óHV8Xf¶¬˜ªQ O²àû/¿~"h>1 Ë m9‚ÅR–¯ùÊ‚qܱŸšê tzΞʡí<=óÔӱƣFYIzañnì˜÷5J"ô ˆuPhgK¡¼€¦-·–Ä×ÜÎ>aÔ¢·£‚ß‘^ÒYô<Ô]ÇVÊÓà‰U:ò³Iž{Ûaà"éžA5å݈SÃæLôURƒdÅœIgý´dò"̓ԯ`§†#êCV!òQ†È?3_¤«ÛS#L÷XŸ$r*ž„%Ú£0Ï’›8bœÄç¡Çp¶·‰Ìoú^¡c -9®Fæì ö8¹@ühê-R ¬é˜%±g;æ×Ý®™*Ò8Æ4Î_Ì*u#BƺŠ|­b1+±€’öxW\qÑã&×IXÍWVWnc,wŲ[påà ª¹Ê¡y^ƒêÜ.2³<¤I='Ʋ†ƒ|‰È eÃŒmÓ“VÅŽ™æðÅèC¿HŠàýÒ:r;G õeè7<­Éw_-  §³;ð oÊîÉ4˜ãKg”Í‘w°^Ë«Š¸®!»?±íªÖŽE±/ìøî€í[ñ|/2ŧRBêb9"‘¤_N9Q²&Q…•ˆl¹ÀÏTy1ï•-ïÛƒïxûgŸ€Ô ¨ÌÀ×~1…ñ —æá…Ê`(‡q³+cžSŸÏhTÉ©Xí—6Ì9¢qè[Ɇõ‚ø®œ¤’U‡E’øê¥ŠPE¢– c¬_* ¾Ø'Vqˆ™—¬š%˜pEë ‹|ÅFÞ7@Ô­09Ô^)tQ˜šåÒ¥x[Sµu<äÉ|i•¶ü²´á.'Äx¬v}Úp€gd&¹|ÉÉò çÀJ©@r;ƒÛ¹ŠÐ\°Ýígé’——KÂ$’|ãG…86Kh$E˜B†–"@ôw²Õ‡wÌÅ ¡¾è’?´æ,ùF… ZŒ0b±CùÌsÛ©n*žžoAšH-” SÌÙÜ@éìX›zLnXŠì¼GÔØ¢À Dã““"c×7SÛÉäþò¨ø9Í™È÷5@]ãE.y(¬3äUFŠm,[¡>ìQÓ<øì»u˜‘n¨Åx¾t8j{5@K9’Ij&GLŠNsjм2È¢S‹â$ß ¼„2,¸B—&žø|ÿ™ nÄ›éºùI.» ðKLx¶óå•jF¸äØmB•iøª0‰EŠO ~mL˜k}é×J©àNvÜá0‡†Ü¢Œ ,‡÷‘Wz‡ÀexgäNÈàW •†NæÁ¨æ!³fÉ×9K_Bvó/øåloªšÔƒ^”ä=!¯n¤pß”{RHj3šÚQ„&ò*#Ò?1ð¥¨$uãbì­nmwJg &ç(¤³ÃF„quæ­“óÚ y¾|A`¢Øg òWYõJ€Ö«+\œÞOL~Om͆l 4¬4©”mbQGîx´ÃbD/jú’žR´ä-™ï4ž @R®¶©D È^~_bÓs¯Aƒ®ï°ëkϨ Ó¶§Ñ?fb„ Õì¤?­|@íˆ]ºôNã ,Ç8ˆ'­å±5¿<_ªË W4q0m}”g÷UàPÒѼCl8¾îJ} ÑJÎŽJ!¾TÖHpâ‚â]±—ÙúÆÛYiLD´2ðyÂædžÔ7¨Ôr(ßr,d Ì@6—HgÐÓñNliç³}iÕyäþO °Ö8&K^‡7ç—W´è…”f \@Ç/þ¡Mt険ðíð/‚F =Î6&Mƒ7LÕ"¢æ8›óò܈/J^WÊ:jgaÜmÆéÔX¯Mñû>6E¨  n WSŠ•Npê͇‡7ÿw +L endstream endobj 122 0 obj << /Length 2137 /Filter /FlateDecode >> stream xÚ¥XK#¹ ¾Ï¯0úâ2`k«¤R=ö¶ÁfH_¶²9ȶìRO=f¦‘俇©òcÔÓ‡œJ¢Xz?RúÓ˧Ÿ~ËŠU–Š:­³ÕËi•i%Ò2[:RW«—ãêÉ¡Ÿ/ÝìT%“~“%5 ~²dŒN¤:cyw #ÖLöÈÒᎮ;7o›J%b³ÓµLžûÉ,«¿š‰t݉$cßò²ëìæŸ/]¥«]¦„Îë°µn#«d2®ASɤíüGeÉ©ÊmËÃD$:Òê¬=Úã6ˆ-Ií·i0ïýlÖrçÖ8 ¿ŸO©bµ“R9ì¿J ó™–,ƒaé¡1ƒ;½Q‡×.“£ƒ%•lçí¡Šd¿ÙÁÑì´‘eòOim÷ðÓz´ŸgK&p¦YûÕÉz2ûVYó Q«òÞpä$8ÍúзX©Lú¹›¬I|ê‡ÖLà¥<—Éïóåâ7ÓlÛ©'µWƒkÁ-Úcžú¦éqô+8-×]æ‰Ô¼eÍd6dêÆ{÷§ß´ºEcÊf-iÏ™H5Y™Hj €õšôò §ƒ^q¯ŒPÅ*(Ö¤ø]X°ow3þ\Rò™±±ñXEn)É-4ȧ—R^˜;šÔ>‚9FpwÄ6 uû÷Kÿ,±#láüÛ\ÀréV±…Ýÿ7¶ýTJdUug%‡¸Ö¶åác‡Î4ÍÉζ³Ç.t÷x?”³Axúó`Z äì&adQ€·Xég€QU%0ÿƒCwpvŒù§?núŽÁåiÀ‹Lˆr|;ÐN=ÂèË(ÌüéJ>#Íìõ8ÆÀ‚'ôœg7{7rÅ·éqyǤ°ð@,Æþ‚›Ñê&}—B CUÃÙ_ 1~„L {h©¿Ç±Ù5Ç‘úpÖÉš#u¦×ÁòWîðæd!sü9¨('xXAðlËwpT*!«< p›¸R N£„Ûê½ K¡ÊE9) ~¡‹j™1ñü.Ø¿Ÿs§J áj©aÍ!ñJ=B‚o\vD—R¢Rt‰Ñ@ÑQ¡±Q'nI2ÎÞUÀÆà¼Ù{ôꊊÈnžå¾¹2ú‹;„ˆ«Hà|OÃÇù@„ RXÀøL¢q2“'ü7B}`þ6ºq!q‚©?såÏ â‘²õ+‹hn@ñ`Y‰ǹ%&,$çpYNóu`Yr°45©¼y>üïݬu›Sp æ_3 >½QiÑ~°ãW ì< »‘Æ®t…Ÿºªü¡ó˜ÑŠ[ìcÐÀ´úFTì±…iVæ¢ÔK0q5¡j('òð-ܪ‚)Ñ722ì^,²XI€ ÖYN̺Øþ^.í=/œY˜õËFƒ³›ÙŽïãæï¯X¡ÀV4ô‹k̾±èݼ ‰¯Hžî+—'’²°]²sŠë/G{2s3Qçë«klP` õó2×>ýD¼HÑ"u ¸œlW't`úêpb¤€¨¿L®ï¨½ÞMk,à¿[gÅ4)¨ïãïn Ðå¹N¼® `7‰ê„Ìâ‰=Cý.Ïݦ€2aˆå4iG0°õ*ËD­µ ÕU%€*ýRH0c&uò77Riƒ´øeS(r;õ>}6ÏÔhsζ……q?1¨ãB©ÐµºE‰’¡€ÆoG˜Á|<ŒÞÎ8äA)qaú†Ræ ŸuxãÙz_5¯… IÀDºúô‡ƒ>µ°¶C-” C¾=·¸ÀÞ3 ¢÷Óu½wßR¯SçÂ?¡O频ª„à€àµ]u$2ü…ãQ² .V¬ ÆxrËÚ¶ëçó+µ¯‘Û1cRLjH=ŸgG< ½'_“Såáã¤y~zâŒPqFx"ñµ¤Iý½eÏ¿<ӿȆ]¨®¦Ùy·¡m«`³Áß#»¥˜l°DÎÓ܇+~†,Š4yñFÍrÎ’ñòT/# ‰è 2-ž;¨ØÂÍ¿ø:ƒáÞ3º}Ã"o8l´f ÖÎ]ÀpD*¯ Àð¥kÎH"lVóUCg ÿ,‹Š€Ô[òDM"‡ªhÿŸãÿ¿'úfn;Ö죨æÝAϦ‹OV‹¼ÈÊ’Lç¢Ðuij "½Gj¢&{Ô'ä‘DÇž¾¯°³ø5?Ë•€ËÇžƒš-æ9œÝð×~£ˆµ`¸wê¢Æç¤Øªi%r]ÿ«\¬*È«Y­îˆà2Øñy•gÜ7nù õõP! OóÐÅÍ9[é7šeePêç ð‰ì<åï¡~}_)V¤­Ñ§•:\1`”‹›Øt ¥ê‚‰_cË×¢Ê Oy~AªÌbP¥RQlï uÞŸm•¶é‚BYx”ༀ_¼C![¸£/–˜ØñûH$(£÷ˆÀèØÀtËSݼ,RqpކUŽ”W|ä›@´PÂÍ£JA$¹‘¹¦®DQ> stream xÚXëoÛ6ÿÞ¿"È0@bUÔ[ú! š¢Ãú@ëbÖ¡`$Ú&&‰†D屿~w¼£c»Z—îC"òHÞ‹w¿;úåêÙóë,;"¬²,>[­ÏDœ…EUžå™ã¬<[5gq˜,––‚²Ñ÷‹eRdì¤Ýši„ÙHôQíä ­®~y~-ò3…UT d-ã(̪„¿éË8©Ù4Újãfe` QíVÑ` €4 pÜ2>t‹¸ n`V¦¥mw[]#uKSVDÌÕs[²Fa’9CŽvèÙXµQÎÔZ$a–V¤5°µ`«ˆ³¦¯Ý¢rŠ&îðúN¿"PîäÁh:eu‡áFgšf%’@ÌbP;wÒ V5´v§Q.J/“ÜNËd,ò2³:Ÿ8,\,ó* ®eBËTd`õhe_+š›žGn[p×9Îò 6SÛÐ[Gô»A[«z>,.¢(¿0Š@©s–·(—‘nti¯E¡.SÓˆvãƒ!-’ým2õ1æpѹèŠ(kô­sHMEžniÝ ŽœËñ@£¾DIÚƒØïktƒwã£$(¹¢ykœjÙ*°2ÍãàÃ`6ƒìFZ‡`:>·¹™¬nyu'õ-2Ȩ ‹¨%Ÿ‘“5´˜·DT½œSÑlzý·¢| G˜8ýJ§ŸOPku¿qéšû4΂ÝÀÕ8z6jT´KQF Zùcum†Ø€^C`yÞüÐ*9²¸Â9=Ï7ƒÄñö­ÊÜ-ãwTŠ [ð½8x‰DuÐãY\me¿eNΛŽ+(óa÷èOpzg¦sÕΦîv´3f…gYz¨-:DÀÍ~Ó¯—ï^Ó’rbnõ`úŽýI[n8tÐò¦UšYò-hŠ4%~_ È»ûÁ(Î ùPÈ‹sÕýüé|vEVIÁl{/Ix«G;«:& êë”Ó­Ï ´¼ãÄÁÂGnüˆ 817VêÞ!ÌÉ=éùfcÜ3ÓÆŒXÆãÜ•q·§Qk9µ|`÷0ÖhS™Sk¾—/5³6m3½ƒC¹6ª%è^ëÑ]—ïõ´H¾Š œîiÐè¶£+À^? îUòm­_eÖÝcй@1µÇò2ßL#9Qø\ƒÁ<Ð ôÙ÷€^¤UÈp¼_¿üúþóêëõ¯ï/áÿ{°þãÛËÕ,bDEþ`HâV[=Îv2VÄ{cѶeœåaR¦'5P¡úiA _éì{˜³^ ^Ý {»žS8)Â\¿ïK”E|+ÅQøCw¥o9<ÐÒ}ÖSïš:8&ˆÒ)ÙÃ=¬§–NЩôŒ†²ÚC§³°,Ã*ÿ¦¹ã¾w_¾S„“-Â'×…wõâüç°„{SO®Ê{À> NA duMvã뎇y¥7Ûƒ†Â%ZŸÆÁo[Ýþ‡iÇU*ýQ×?n`ŠÏ³o ©{hp3´¿a-`)6ùŸ„H—ôÁó÷ªYžÂØ!CpG‘gÜ¡^P0xýŽÑ’‹èqÃ7ëp:+žëiºõ†[ÉCƒôÍcŒpE×ÓBY ®ñ!é\·\ë xGϘ˜<_ÙŽîá$œ ìajC¯¤c8¸˜¢òX”'@ôêí‡ÕïîâáÆ¿Dûƒ$ïàaŽS‡=8ðM"aO™Aw‘œÂ«b ð©;¹ºœú jÓu¥[%~á¸}®ÀÙN:—?ý !€µÍÂuèøn¢w´âÒÊ©ôapZn‘¥øe=ºçp˜Ýw:Ǿ-ÒPÉ{hy;ëFu ;€ó¼Š‚w‚ü&'›P¶üzi~òdD’pwÊðúP´ó<¼%dL¡fyzüh‡ç<ö~«’}…#ú)Üià¤Ú—c\ Qà¯{˜ÚC›ðu‡¸õ£‰æS¾mñä}”PÔÎ6ÛÅ;X+3wÜQõ†Im=ÔîZ]kë_¸xT9.( q–%ÿ> stream xÚ•]oÛ6ð½¿ÂÀ*cµ*RßövN—!K‡Ä¬C@Ë´#T–\ŠJÚýúÝñNŠ+]û"‘Çã}ñÍêÅëó(š‰È£DÎVÛ™±ŸæÙ,‰…/ãl¶ÚÌþöÂùBˆ 𮺽6e¡ªù"Loiî™ÆÐöNÕ›ª¬wóV¿½>ÉL~äɳ…&1Ñ[Ýéù"Šo£·ª«,mÖó…L=}§æð»/›èFaî5[:WÏeæu´¹)J]#¢-?aTêe¹6Ê|!”mW¶lê–¶eK8¶¡½B~™×Ëp $GQEèÇQN²êϺè `%,L8l8˜fgÔž6%Ÿ*Ú’ÀÎfׯYË¡¶Ã}'Ǧ+ôÆŸ/²8önš½>a×N‹‡ÛWèÜÓílX”ªª¾ Pz]½Ñl7(ÍÅøš2š ¶©´QëJÓͲnË )sá5ûC‡Ž· 6¶Äe« @ çà a_îÖ`ʪ} Äë€7HŽü8ÍÕNó™qâÞƒ-AP‚P‚VøùB4ž·¥-~‡1HG@4iç\†˜ïn.iÁîÀ%/J´›;=¢HzöX ŽÞ²%zm´ŠÃ̳̤ai´}•Âõ¾4M½]¹wŠ›ÒÞåNçŽ 2?1HáØ¿{s»¼¾~}ûëÙÕ/—ËkööýùùTÖ ‘øàµþf×Ù9æ°!9Ó4…$ý8ˆýð¥€`ú|p9‹ä„72þy’sâçáz`aP8J=ˆMZm`ÁI„†ïÁÅ!%^¹«û3Œî,yT‹DnËR?¼Q2¹­V¶ë¯îÝÕÖÒŽKŽsò¢—ù8b»VƒÐRBäC–l;̪,ô qdyjkµácyÈVíâí²ýJÓ¢jÚ–V¿ø?HÛÖÜ–ûCUöÌ×ï#p¡Õu¡'BÔåDžqÙ€eÎ"p¡jZP Ô m\¾dŠ7Ž«o]ªä9{ ª°³¿» UÁ**”ˆÕÔ“%€Ò—*7'6¥ŒÄr€Â`´çü[õÉ34 DœjˆDj1©bÐTJ›µ0$zk:!‚ÉLèj—ÕÏ%·S Â.áFq#}SÖ®MaÛDu•e)¾Ö4½¸P+úÿÙý—ý±¼¾ø}yµš§‰wvIÐóånW^/¿–¡Çι,?Î{Ãù›·ÎÒ¸°’F•vMN¹®ÅÞº×å…6ÔV£µ¦+07|À­þÔaó– 9 ëƒ2Ê~%+×õL—t[–¥ê“ÐÅÀ‡`%GÜ^¹¶F̓ =±M˜ÇlþR“v ü,ÍúËQÿ4žDîgÙ€Ô–ÿê[;E,L}ˆFƒ~ƺð̱oƽ¯hªn_s_z;¥Ò"É|$ “ôcñ]:½ÔH€¤ù7j$NUÚb¥ë]ìÕáCéÑð@1'½k–$¥~ž$HúIŠ ? b#¦$É )óÙ„€üs¿IM²©/ A? åØ&cË0÷ƒþŸfÑ÷ؘÇIém”U´jmã2&Jg »4Ù!y0Öx8À¡UXÝàLåUoTª B/Òý 9ž]A©>VÈ‚Äc/¥Q è›=½Ü“`hø +Å*£N%8‰ð¤“ß)+]5LØ!Ïi¸¢î‘ò ×pвÅá â'ȃ)­Õ5aa tš‰0ÃXç’8 ºˆÐUÊ<ïKî‰4Á=\àMÛœeQj7ii]~Ü?o„ ÐG÷¯7Äý2ì “rsp£ÝT'¥ŸC+X¬'«]é6T;¨kG…ãGFYÏ&Þì´ãéúœ®Á·¯›ÁhÐdôdØ¿ôÑ !qªÿI>¾Ü›°™µ·e9X êq?OnI’ëdÀÚk¾[ïôdŸ”™/²´G{5E*ê& í[«&IAC m¯®©G¥ðƒ\>RÃ?+Ö ½Ï¶Ž#×Ô©¦Ó ^,W/þÒ;­V endstream endobj 139 0 obj << /Length 1851 /Filter /FlateDecode >> stream xÚXMÏ㸠¾Ï¯x1—u€ÆëoÇÀ^¦Eg0ÚK³è¡Ýƒb+‰0Ž•µì÷(æ·/Rr’YïÇ%¦(Š")ò•¿îß}ÿ±(žÒ"΋*{ÚŸÒ¬Œëf÷T•iœ•»§}÷ôߨÜlÓ4I¢O£ºžM»ÙæUÙyºÎÓæ§ý?¾ÿ˜VOi7I“BGò´ÍHc)‹?8’Ïòè:êgcg׿aœE=l²]4RÙM t÷LÑtÖ"ç÷aöè×*Z[G^Óu´§Q]ü>f®WG§Ã<™ÞyYÕbå—- ‡¥i—E#¦ª“¦Ý‹)^ƒH^Ú†>RQ6¥ãWò»2M51ú"¾-(3pC¤S“‚[Y}D.0Ê o_ÕåÊY­0í¾†ÍVrC¶FFpÁP:H²óÁ1h º—q§g&©“õ0MX ՃШþ^¯6KvqŠÅGÓ똈µèÖtÍPòyi;ø=QW\ÖDÏnuB…&ÞÑÚm–ÆEâ“PYSèÊ´Ž~À§z´€'þ/râÌÙîåûºfbZÅM^?nó‚4\ͪ4ÎIØûó»z³*N«%P’N6±¸®6>ÞYôúb†Î]^ä”óç x¡E«W }[qQøj/Cµg¡Úõìó¦fÀBh`³y­eÂi‚*¸?®û°±è¼ý­ú‰zö¡ ”p Ûœ‡åvʘ)0Õ!}îõs‰ËÝ£cqd¢Ð Ÿ,‡z“3Ó‡žú¬ô—±aÒX‰‚ûúÆ8Ô7wKgÓ1³˜Ž@Š–k{»fó‹™ÎkŸ=N‰6 }› Í%™{Óˆã1¬ˆÌô­²‚M@gä{ÁÖ¨Þs¦Qp€„:\o.f Ê’÷+V}ÿÃWRF-TF~}ÿ5ŸæÑ?í¨C˜}‡ŸU„¸}/’¹³ÃòŸg;¡ß½]°ÀŸSïD‚ô Á'«nzeÝ7<h×*éàt¯ÙO°ÄˆY¡Cÿy¦s 9ï„+ED·Qµ„Só™Ôxۋפ_ Kcœ¬ kÎkÁ#¡7­št·Ò#û„‡Ã;ºµF-Ä [R§Æ7Àb›UÑçÁ ‹1h•ÃË+k²»^ÉKñ7<ªüuäqk—=¦w÷Ó¯žw\’ôÄx¿>ŠðN$îÍ{/u–{˜È[Y¤TnáÁÊðÜ{·‹€t.;ÌxTÒŽOß5Z_I¹{sBúNŸ¹œ…¬W GPù®=¢ôDæ¼t|ËŽØ$d Wi¼¥iïkséãq¾­æ7|Îÿs ¿Ó¦,½ÏA9þÛ‡VÌŽßjà÷؉mï_£òŽNË&®jz8eÔ¨ïüI ¦Þý}ÿîè¹Ý| endstream endobj 2 0 obj << /Type /ObjStm /N 100 /First 783 /Length 1931 /Filter /FlateDecode >> stream xÚÅYÛnÛH}×WÔÛ&À¢Ù÷Ë ™l²6ÙAœ3kø‘iG™Ô’Ô$ó÷sФ&²u¡¤±°@œÖ¥ªúô©Ãêê–"IŽŒ$O^S¢HIR ƒ!å4)K*ði™HEÒÆ’V¤}šh OIA{2.‘Nd’åÖ|A6ÀÌ’“‘ð³†L$YE^ɉÕä-¬ù€@Â& Ö’œ¡0X xEÌé"E˜yE1Ú £Vï(ñ‡žRÄ; –øq•4©0â? R:9BLe ϵ Timé ]DÞ¥Bªk Œ°±ÛUD4v/hÑ}V ­wÂó>æ¢ÀVXAè ¶ÃØ¬ÞO‹ÅY¡±Ój`ÂΈ­X­Ç¡è3@1 ;«ö^Ðc*˜q,æ XtÜwèEÀ¾l^Ûq,ö ± ª5)‰ÄM™´‚{¥ELv¯hσÜ-,’»h0ãCcDŸC´&Á­•±^h´e&bÐiË9xqÈ:N£€…k øqÐrÑ2VÚN(|´1¨/Ò¨q,ç­ÖBB&:ZaP÷1¨yi¯jÍÓÃÐ)…ÖÓƒ™„*gö¢8zÕ8¬hT• MGJta/ ÷ôúЪÇqF/$×|HU§ÑbïÎñkh•ø: ?ÚkƱœáÆ‘U8ϧbhÖ‹µÜ&Œc9‡`eĦ§ø¥‚•DTûë×a¬5ˆ?ÿò_>ÌŠ")±ÖHår>¿Þië:[ïQ)‘›ClâãÁ:ÄT%½T?´}fµ[Økì¶É -Žñɯ­¥äW¯ß 6|»2¼FýMiõÚ¢íÛNÌ‘¡«ž^`íñ«×”},¾µûÊG}³’öqãÌwÇtÎß™àk“GT¸ÙØbŒ.; ßKìàmm½HqøÂoaè;‹'”6 '—ë#ãA¯(î|Ût±uè.ÁÆ6w*ì;™§’¦ÌiJJšÒG¨jÓ˜ï>qÂÑíÿÀCØäÁ̃?B<W<àÔ!ÝaÆÜôZµS<ëD­—­åiý©üëO¢Ödjyâ!ŸoOŸðÔmp~ >¡#ö‚/O¹U|Áx Gmi|Ã{¸Þõ–ÝÇØ$\r‡¤nGºNN‘ßL‘=,E:>Ö»vGèý¡ñþÍ}«±Edþ­d×Ö³®åí žJšQ›¤¥SI3òñlï!m›1ßcÈvVֵ°SuüûÙlhð†–°ÚÍÍÛ„£¨]+¦W ÿÚ±»tl«xIê{­Z T8éQP"4Ÿ`É)T ÅøP|ºÚ“½¸¸èâg/ºb‘]fŸ>¼å¿g_Úvñ,ûúõ«¸+—¢ªï²¦ºm¿~öç½pö|GÓ>SGœºC¾8Eu‰)Øî"Is*P†&fåmµ­“×1­‘‰Çw‹±³ZXí3¶ÚãõaÆ:a+pêèGb{»_ø ó…Y endstream endobj 143 0 obj << /Length 1696 /Filter /FlateDecode >> stream xÚ½XKoÛ8¾÷W¹XbV¤ÞÅb l€î¥ßÚd‹NˆÊ’W¤šèß©G"×-Ð.DǨy|óÍÐíÞ¼½K¢Y|µ;®¸HXVä«4áL$ùjW­>÷ûsÝšÍ6áYð±=ox`TÛèÏn¿iüogÒà”jîiC{¶Ûÿt‹4Y•¦<ªZn>ïþy{ÇÓ™)+¢lµå+DJ:´휫»mMhë¡=ʦ¢ïœ¨{–4øFÑží¹` ¼ç&—ìU4éšöN¥ÝhçÑ Û‚-YÂÂ0Y…ô†Õ`át‘±œ»–½Âcý}é¨(bq"ü¶²s*vòß^u²b›m^$Á‡Æ«^6$œ»v#ò૪Üʱï̃´ª`DrÆyBÄ’¸­!FyâAƒ=žõL²j´ìÆ}p艤òhà|?©%‰àLÅš oòàn“ ô ìˆùTžÎµÛÞ6m`ðL7kW r9H¿AS_P9Ù5²¦q%­Œ×&¤6êTIïõu_ˆH8óýþ šc±E0ôéÀ@˜`5åÞ¥@.!î=¦`ŠÒ$=¢ÚåFdVw»$I˜[þ6YÑ G'k  µržÅ}›-ÛªO7"GQ°Û6ÚéËòŇesP#pœ“ØÜ7¨UÆ·A—µ&?¯Á(#ÏzMAФ{í‚Ök'œŒ,«ß+=•y ÓîçÈ!ýL,ŸhÜéiü†1â˜i„KÊ=ñS?Ï^Ï—˜)n`Ð$\·hûº¢…½ £¼ð,n #t-¥?È>H Ü-ÌîÓKz &KL•¤Pf⫤ºÄÑUÒ Aß«¤'”µpV)9’™#²Ìá 4€Ng¢iÉ)B@¿ñÜ+á4qPÇgÂgIøëÊæÞ1ÃÑ2Ì9jáÁ¿n ·º—ÚSˆü^“_„×5Àáã–¿ãŸ×À3ô"X~À.{Þ#mÆ1Ñ<ËZcÚÇQ@žiµV{›°hZz¶{Sª†ä“PmÔÙïBMÝi˜öÅ·†¦’Ô;:Š`È’÷6ze0a+kòý§0Š=‰4åÉj}s³¾¥ÉÒ ôþŸbôè&éqK›zÍ-Öë ÔΑˆ±GÂAÕÙ²ðèÖ¬£QðÕÏz¶¦¹±àÙ­¸ã_nÝ„:Iý“frúµPÙM$Ñ˪q{9TC=ÖòТÖ:Ȇ…&jÕx Ø`&!ÅKP¨3 5ªb Ìî'uü?‰P°"øÂ;|‘£B–ˆ¡é’OçNìÛôàl±waŠ\4/xû‹Ä•1ó¡[£ ã1Å$þÑœ–_)tÙ!´>Ø£slŰõY¬»žéÊAŒŽö”î¸!S÷M¶¹á9ø‰NÒç.xs›Gg ­áÎçiz…ó#&Òë”ÏYF¯9?ŽÅØ£P»ÝçŒÁ2µr~JàÓvqh8†µ™¿…/I‡pnOEÐÞgÅ/á‘­{î²y-_u,ŽðÓnW<‰ ËdwR ¢K¤YšJ—c4EÜBÛ›soHöüвíºQ†ƒ×‰Š³Ž2R~1M“œeñp•Ùîm‰c-_ ‹#1Ô^?Èwa.~1ЩÌDàÈ(JLhÐÀ‰ƒ5ß¹þšÚŽ!TGZéJk£Ä†ù×0Á¾pôS-^Ñîª?ÈYZQ”ñcÔY®B²¤‰cû¢Wò©&W8¥mÉ¢W]úšy¢®½Q¤|,ƒI6½:=ïÊ,ôtÓ¨ZVöj˜å«Q@¨Ciâ¥l¢÷uiȘµ- <Þpй젡€´ÛÑÑÓÞ\©ŸÁϸÕNn/Cº£¢"„òek/Ç VÄsw™…h'@N~†Yn¡¶„‘nÕb€9ÙЩÛ’¹†‚Nènc&Ûk>Ç‹'•½/¼t&,L.Î|ÈëèE½ÐTV}GV×öLjGj-x:ÂAn:8ØØ0!B†>¾„––önåZ<41ÜïËK5°3þ¸¶Ô‘ÿA°×–(÷mœÓh`C–gÁ¡n5©(&ý3ìð¤=îNmÂå˜pÔÊ-¹Kz í3Ⱦ3‡Ï¸Õ9µ¾Óì µÅfµ‹Ó„f_Æ àl¼ø]¤ì¼¸Êýœ…Åõ"’{&>!5]5“ÍrãIì Iš@•ÇËdî~cå!.½ù{÷æ?ñF‘n endstream endobj 148 0 obj << /Length 832 /Filter /FlateDecode >> stream xÚ•VMsÓ0½çWèVb£Õ—-8Á ÌÀ¡CnЃâˆ4ƒì´Žôß³+;MÚ‰[˜’ÈoŸÞî>iýn1{õAkºPÚJ¶øÁ@š¢t³ i*¶X±oÜf9€üs·]w¾Ùe¹²–ïö ®óÆwwÃBï—1dW‹O¯>€e '©q…)Ë¥.D9P^ú&`”1†loöDÔã|‘ÉŠßÝd9~!„³üýŸ>t­„üÄ>ªØïm˜Ä,µÕø;²¯³/³wT‡Ú¡2…*YP’%ñëå:Zë¯_f¹®Œäß…ï¯Ã¯ “òÿÊ,­æ/H$n‚¢ £ÝäǾ%G’S‚óAën³¢2ËÛm–Õ?Du¾¥(¡Ä1j½›/Sí&K¾íǰݼŸ“Le$¤\1<¥xBa CóZêä/ iÛ³›5~@á^v¬€¶"ÃQÔDå6-áÑd­¯çr¬àdVß…Ò‘l|7Ú ó9 MòW›]rd¥&Ýç»ë}Â{Àjç¦Ä'öÛ½OåA°4ÂÜ—™˜Œ¼FIÔ:ísô“hC7ÚϪ±¥™.ËP[üÄ®íz¹–g+°®·]G™¡ú ©aþè¤<(ÿÏ)T>™' “VëI™k¡ªÉv÷!uZ<<͇çÁo¶ƒYZÊÒ=_𣞩vaM±å”OœU§žèZÅQƒ=0ºÇŒÇF`ô˜;VcÚ=#:9ã=þJjãí«”ûߨëMŒ©ˆå?<6ä”4b"7(Õÿk½é¶Ë l3‰¢_g@øžÄ>"1'¾ ‘ŽQ)ž0\M/&… —s¼Kj¬®R¥‰Œª¥„cÞœNµ\ËÂ*›F²ÑãX£Aœ®1Cç, aü:;Ò-¥¦‰›"_£)øÅî‚ÔaSÂí> wôÆÇ74B$¿èÓSô½G4Âù>úîð´cëm3æ¸oWa5.Ê!´ þ°²Ýßİ›§:9SH‰Ù(ƒ/jÐpx5ø hê:{ endstream endobj 152 0 obj << /Length 445 /Filter /FlateDecode >> stream xÚS±ŽÔ0í÷+Ü-ˆÏNâÄ ¤;$„¶!T…7qK޽8 ‚¿Çöd9VPP$òÌóLÞ›7yÛîyƒ8£ë8ê'ÄKAÛN¢FpZ ‰ú}ÆCEŠª*ñÌÅêuy™BއV~'B`Œ:Y €#¥ÄÛLÊŸHß:à§½ƒ·Ûì–×½sþn/ô€wÙVHým3AäKÿþþ±7¤ÚU-*xEEÝ燫NYRÔ]ƒ­!Ÿ(¾UÜrÊÊ 1({EЦ.ñy±û鈈m"‰ƒÑ9^Í«ê²Ì)¨ð3Ïjýªa¿[?ý%*¨-í .€€½6«ZŸ˜`ñá)ªñ¬•[ð—Õø¬.#)8Ö±µôsý’òëÁ\¯OZ­[Ð{+4¤Uò)²k°26š˜›äÝ™)g·Ã޲À¥göɽ’“ßܘeü§wÇ7Ç9UJ*¥üéÔüü9¨èî¼/ã¶ú8g3(k¯<’’s¼âÒÁG½ïÔÒ—ò\‰@–½åáäxðsÜD•†ž—(þ'’²¶C…`5å(ñ2a‡‡þð 0èÝ% endstream endobj 154 0 obj << /Length 223 /Filter /FlateDecode >> stream xڥбjAà9ÈÁî œˆ{wl"Vç¼BÐÊ"¤RK‹„-äÅæQ„¼À•©Ô;A¬m¾bvf˜Ÿ“ÁÈsžŸRöCö/¼Jéƒ|ŠI[ї冊ŠÜ‚}FnÊäª)}~¯É³1§äJ~K9y§ªd ß@€ÓÑ¢Æþ lmþ9°ü¹˜ÿÐ%QX‰@|ц¹Hú5`$âÆ£Š{Ü_½ìÌ;kµ»Aï1µmÕ;£Özÿ4KšëšqÍ«mŽ„Ð…áO@¯Íé #"P+ endstream endobj 155 0 obj << /Length 116 /Filter /FlateDecode >> stream xÚ36Õ32W0P0bc…C®B.#c ÌI$çr9yré‡+sé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]xlj˜ÿ0üÿÃð§ĦúÇPÿÿq¹zrrí-É endstream endobj 156 0 obj << /Length 205 /Filter /FlateDecode >> stream xÚEÌ=jÃ@à'T,La]ÀXs‚ìê'XEÀ`Ë`¸ra ‚$¥Á 6¤0öMGÙ#¨L!¼ž !)¾âÍ{LñøOÙpä\–ü–Ñå•db(^÷4oHo8¯H¯äJºyæãçéôüeÁéš·›55ãjùÊa†1R[!颅rÒ¸ª¿ýˆÿœ%㟒 ÒÀB~qß@$³X&JêDꉜŸÄ—èaà`¢&¶hÐŽ—zïfâê}çѲ¡5Ý‹J# endstream endobj 160 0 obj << /Length 231 /Filter /FlateDecode >> stream xÚUÐÁj1Ð,{X˜ƒþ€¶óÍ®°q…‚`-¸ÁžzOêQp¥ÂöÔ|ÚöOìôèAL“™­&ä1™d&D ŸÒ SÌíTT9n2¨ W6N]èëLJï˜+3» ²œãÇá¸9Y¼`rŠK[få…­¢¸øD1“tú#æ“©˜ŸèûêkŸD]¦ÃôŠ€=óËœˆ¨¥!b-ÌDˆ¯;æy4Æì9×rò± q‹&låÚ5ã=æ™)˜š9Ñ™îÑ?›Æ˜†žñvÀk oðGipH endstream endobj 161 0 obj << /Length 261 /Filter /FlateDecode >> stream xÚmÑAKÃ0ðv¼ƒýâò ì"ws‚=zÚA<©GaŠÂníGËGéGØÑÃèü¿ì•mCø‘ä¥é? þÜ7s—èáÊ… ÷êùƒƒÇx&CYxyçeÅåÚÏåf¹¬îÝ×ç÷—ˇ‡Ù•{–g®VŽÌAžŸÒdO´P­8èF¥Ýq-¹·èm¶Ùio¤ù·."mL„ mP9TÞLu#ÕŒ:QÓ „4qÌNN@”Žl#îÇE|+创µÉM⟠IÜ^¢3õTã_kܹºÍNõZÒǨ¦Í"~ „¸d×@EL±S(sµDƒ,£×é7¦´ÙŽˆo+~ä_PÈ— endstream endobj 162 0 obj << /Length 227 /Filter /FlateDecode >> stream xÚmϱnÂ0à³< Ýмjî ê ‹-‰ •Ú‰u*ŒH€Ú9~´Ýù–:{™iÊhÊOkÒÚæxD‘míÇ×ç%ª5é ÕŠ·¨Ê7ú>ýìPÍß_)Gµ MNÙ'– ÑÙj‚¼ÞÄzy¥W4¼ ¶q“`Ó³þ3 Ö¿¼­d‹iX|ÙW8+c¯YŽœ¤ÆÙu1Å ;Š ¤Þ¤/Çrž>[9þØÙt•›¸i°Ž[Í«GïÀ=Tñ´€Ë?ð{ endstream endobj 163 0 obj << /Length 197 /Filter /FlateDecode >> stream xÚÕÐ1‚0Æñ’·pÞ ,˜HGÄÄ&:9'utÐè Gó(ÁÑPûxØØD äO~ЄáËÕ(Í0ʼnMå˜qŸÁ TŠtÛW:Ø¡Ô רRsû¤^àå|=€,—SÌ@V¸±¿Ù‚®PÆ´Ôˆ°ãDØr"|r>"Bäðà|Ä„ØáÎùH‰ÃóQ ‡†óQj‡!†`èz£ó`!ph9¼ÊÿÌSÿžÇ4Cv’~–t}fVð;6¦æ endstream endobj 164 0 obj << /Length 161 /Filter /FlateDecode >> stream xÚ36Ñ37S0P0bS3#…C®B.cK ßÄI$çr9yré‡+[ré{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]ÿÿÿ'þ000ÿc@Ä‚L|@!øÁÄBL@!ìÁD Q&Pˆÿ â Á&þ 4v^=ªóþYÿÿÿG&¸\=¹¹îWC endstream endobj 165 0 obj << /Length 207 /Filter /FlateDecode >> stream xÚmÏ= Â0Àñ‡Â[zûN`Z!uS¨ì èä Nêè è&Ø£õ(=BÇ¥1o©¼@ø‘„üU6S&¨ì\`6Çk P©Y'vi.wÈKGT)È­ÙYîðõ|ß@æû5šÝOæÊÊE µâ1„£÷t !Ñ2DDÃ5ʨ¾„`О! z&¯vË jDLˆÊåYLIHø¼ÈçE>h:béó>>¨wؘ.û¤Á>i‚âÎéVh;Æ46%àxxm endstream endobj 166 0 obj << /Length 327 /Filter /FlateDecode >> stream xÚmÒAKÃ0ðWräÐ~bó lWaDs‚=zÚA<©G¡ŠÂN[ýd‹ŸÄ ^ws‡±úòÒ,•YÈëï½ÐþTÇêDrˆKÊa)âY¨û¶vãþIŒ+‘O¥*E~‰S‘WWòõåíQäãës9ùDÞdq'ª‰„¨Ý>Y«=G Œ¸0ài‡žåKôHS¾¤ž8òå€ñÂ2 Œ-ÓùžªGºòȲ&¦ž^o÷4+â2ú *${ßüCΈ³À³µgÚ#'® ÊÑgh˨Gh»ÉšŒ2í±I4‡¬é{rÈ2E¦U` .ÞÀi`~È•/ð¯Æ1%n;~ƒ'ûÈÅkÿGEÜtÜvœê2Ýì‰` ”)ßÙ7·Ó¶]3ñ:jOYb|â¢7â¿h­ endstream endobj 167 0 obj << /Length 300 /Filter /FlateDecode >> stream xÚ]ÑAJÄ0àº(d1½À0Í l+Øv1PG° AW.Ä•ºª(ÌBlof’#dÙE™øÞkRÇÒ´ý’@øù“gi¦Ruo‘«ü\=gòM©¢§´ñô*wµLîU‘ÊäWeRߨ÷Ï™ìn/U&“½zÀce½W ìãGØã `;€À"¾ÁáË£dàþþxTˆ†Ñ;ăˆ> stream xÚ]ϱ‚0à# $·ðÜXjbWÄDŒ“::ht†GãQxFö(DZš?_¶éUÉ•TÓFG)RkºK|¡Š‰‡.yáöÄ4Gq&£Øë¿(ò}Þߊô¸%‰"£‹¤øŠyFà ú+ÁØLvàwà÷FØ )Q, kmc6NjÛhá˜Ê6©Ì<™SþSÌ#÷©ç^7©[âž¹–¯ä=|Tëñsøí$/gú®­màÚØ†®µmäZÙ&®¥máj€ÁÔÅЛÒw9žðú}$ endstream endobj 169 0 obj << /Length 282 /Filter /FlateDecode >> stream xÚmбN„@àÝlA2 o ó \„ËUgÎ3‘ÂD+ c¥–mGãQxJ‹ ë?»lLNHÈ;;³3[WÛ-\ñù†ëŠë ¿–ôAÕ‹×—!òòN‡†òG®v”ßb™ò掿>¿ß(?Ü_sIù‘ŸJ.ž©9²ÒÎ9«”×õ‹ŒUéOPÏ"~Üb·¸GB³N+ŽJ¥Ñq]y÷CÈ9µë÷·çŠsPKãˆié13¥´˜a«ôÜäH§øwn\”0fóÛQ˧C_NjÛ0¾Šã·'ã‹Itú¯\WÿœƒþZ³è°.Æ7³º’qáèµ°ut3µ5ƒrr-¦Çt0ñª9Å´(Öž)ÿd6ˆ馡ú½›¥ endstream endobj 170 0 obj << /Length 271 /Filter /FlateDecode >> stream xÚuѱJÄ@à )S¸o`æ4‰˜œ…ÜÂy‚)­,ÄJ--í”죥ó5òn™Bnœ ^”°|°3ìîü©ËÃEE%5tpDõ‚šcz¨ðë’Â×4±rÿ„«‹ªK,.d‹ö’^_Þ±X]Q…Åšnå ;lׯ'½Ðm sê2o>Ó§_BI` ÀÒø.½Â¨$^I-Odý#œ îráä?«¶ Šñ‘ïk1ã12Oh/ÇÝŽµ7çͬl$c§Nt»{sÄü’EÌ {;샎¡À«‘„µŒQÚ-£>@ue'w ƒÆ5Žáð„I¼Õñ£ÃöúgÏ[¼Æ/ckà endstream endobj 171 0 obj << /Length 223 /Filter /FlateDecode >> stream xÚ}ѽŠÂ@ðYR¦É H2Oà&z‰‚` ᮺB®º³Tì’GË£ä,-$ëln †[nŠùñŸÝf˜ìm˜Ž)¦$å6Q6¢Ÿ˜fœcÛ—ï=Îs”Ÿ”f(׎9kÇ endstream endobj 172 0 obj << /Length 267 /Filter /FlateDecode >> stream xÚѱJÄ@à )S˜8.óºÉá%)ÄÀy‚)´ºB¬ÔRPQ¸BLm%ò ¹8“ñV,®øù’]6»ÿ&/NÒŒRÊ :žQ‘S>£‡ _p^òhJù©NÝ?á¢F³¦y‰æŠÇÑÔ+z{}D³¸¾  Í’nùSwX/)pþ Uo* ñsÕ²ÖryßXøuàÄêgçˆSuÂ~ù†â™Z²[ßHܨÏl*U:ß„üȵë+µÃ}µö¡õ­ßüSªNT® Ÿ®ÖèFíÕÎ)Ç…ÊG”m!iÇmÄs1¶ð!F] Ëù¾ÆÆü†v´Ú¸‹ÀËoð@rc endstream endobj 173 0 obj << /Length 301 /Filter /FlateDecode >> stream xÚeÑÁJÄ0à)9r0/°´yÛÊÒÝ………u{Ü“ñ¤…* {kÞÌ> stream xÚ=Ì1 Â@Ћ…˜7›h¢Á-„XYˆ•ZZ(Ú Ù£Ùy!)‚kb@xÕÌ0)Ÿ=žr0a?äpÆGERQzŒ»æp¦D“ܲŠH®š˜¤^óíz?‘L²+’)ï{{Ò)‹'Üq…¼†ýÀÚ?ÓÉ­‰­qßF¼ „ÓAˆÀüçÔ@…^‰~QÀižM;´Ô´¡/óg5ü endstream endobj 178 0 obj << /Length 149 /Filter /FlateDecode >> stream xÚ36Ô34R0P°PÐ5´T02U04UH1ä*ä24Š(›@¥’s¹œ<¹ôà ͸ô=€â\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. ìä?Øÿ¨ÿóÿÏÿ@õÿíÿËÿg?ÏÀ„ò r@h„6 5 ?~0~`þÀü¨³$ÅÃÀåêÉÈû²1­ endstream endobj 179 0 obj << /Length 105 /Filter /FlateDecode >> stream xÚ36Ô34R0P°b#CS…C®B. m„@ $‘œËåäÉ¥äsé{€IO_…’¢ÒT.}§gC.}…hCƒX.OöòìÔÿùÿÖÿ±ÿ!ÿý—«'W áš( endstream endobj 180 0 obj << /Length 229 /Filter /FlateDecode >> stream xÚÅÒ½ Â0ð‡Â-}„Þ˜ìÇV¨ì èä Nêè èl­ÒGpìPz&±M„ˆÐÉ@á—„$åÓ$BgüK|Œ<p8äs9‡3d°-Æ!°%_V¬ðv½Ÿ€eë9ÀrÜèï¡È‘ä°øxë©Ô)Q©TóÅ”ïxÔô²©íe¥4ÈG¤ªzMÄa)[¼"ei=šAikÊëL¹ôM¥!çCÕhÕ×ø.TC×Ê#³¦igÖ^w†£o¶êªî´î¾J„-ã$äŠKH…­We¦N'Q<‹6ð¯?K endstream endobj 181 0 obj << /Length 300 /Filter /FlateDecode >> stream xÚÍÒ½N„@ðÝP\2 pó ÄX‘œg"…‰Væ*µ4Q£5÷&÷*< °åÆ™`¹øQ{ù±,ìÜÌ¿,OÓsL1Ç“ Ë3Ì/ð)ƒ7(r^L±ž<¾Àª†ä‹’k^†¤¾Á÷ÏgHV·—˜A²Æ‡ Ó Ôk4ü#gÌ«`Id ßKD-XûHT±ú…HžQìd[Ïë;'Ûøë¥n—ü1‰ªÞ“ÕÆi/jœ®óÇ{;_…ã÷ƒZŸÓöX\‹?b.®´ ê¿«QÙ_äËó%þ5Üt×õIÿ¥ôs&µüAÚÉciÇUÝ h’NËN SµÓ¤#þvPHDH‰&‡4MÎÒnL˜Ï•OÝ!“è|&%­Ig]‚«îà ê¤ùr endstream endobj 182 0 obj << /Length 278 /Filter /FlateDecode >> stream xÚÓMJÄ0Àñ”. o“ H›˜dŽÕÂ8‚]ãÊ…ÌjtéBQ讽‰WéM캜Å0ϼøW:…Ðþ(üyÄšüt–+£Îܲf¦òsõhás·aˆt²}†eú^-æ oÜ.èêV½½¾?^®¯”½RV™ T+…xþi[Dü2hé; Ê_Ð.°#ÄŸ ì ÉGˆf È,D¹#¤ ²½ð¯ H_W3H|ÝÀ ¦ ¨gQPÜMAP]Òr :)8P]Ê‚‚ŠiP]Í‚ê®.êY¸ ¸cá‚’ö4ƒ<Ê]:‚l_Œ@êcà0‚˜æÀÂÏŽ… áðáù»%Ãåœü®+¸ƒ/]zœ endstream endobj 183 0 obj << /Length 277 /Filter /FlateDecode >> stream xÚmÒ1N„PÆñ!$ÓpæÉ*l¢!Y×D ­,6Vji¡Ñd;<Úe`Iaö93o,(H~<Âÿ+ mÎÎ×TÑŠ¯vE-½ÔøŽœUr+žßpÓcùHÍË[>Ų¿£Ï¯W,7÷×Tc¹¥]MÕö[ !@‰õí:,è]øáW`¬Ñt~]'Óå¬!LêdDUHZ•KZ•i:j4¥®DGD i•¦Uš6L…KGT:¢Ò´JÓ*M›Â¤Á%#Q’Ž’t”¤'¦Ô%#Q2bâ´‰Ó&N»Ž¦ÜÅ#&N›8mâ´+L\úÉT…+we®tA‰ f ®ÎU,(we#Ä¿RWâ‚Yû›ðXMÑ× endstream endobj 184 0 obj << /Length 286 /Filter /FlateDecode >> stream xÚ½’±NÄ0 †sb¨äå!~èU ë1U:‰H01 ›€‘sîÑú(}„Žª;¶RÐ!F:$_þØŽk{sqVã ×xZa½Áõ%>WðuÅâ k»yz…m åÖ”7,CÙÞâÇûç ”Û»+du‡ì³‡v‡Î¹‚:—>¢˜ö‚H%Ï0„èhâ}ÁGOÉäàNÄhI¢öl+÷­›Ñé"‡$§>ªx$O‰‘Aâ9Ñ3Hà:ƒ7¼¦ICc0C0˜Â” üdÿæ4rªGðËZƹ3h醥AŸ¡°:wß*¯½8,´;$Á¥qQRrº¤WEö¤½g‡Ž½{ !“Љ̳A:>6@ ÃøcòhÙ°Áu ÷ðž¤ö} endstream endobj 185 0 obj << /Length 251 /Filter /FlateDecode >> stream xÚ­Ñ1nƒ0€á‡: ½…”wÖ 4ÈYŠD©†Hí”!ê”d̪™áh9 GÈÈ`ñj°1RaKd}22²äây™PD zŠI¾P"éãeDÝ“¬Ì›ý ³Å–d„b­—Qúù¾Qdo£ÈiSô…ENÜôèÅW§Æ©uâJ3d€”k«¾YA¿¥W©¥í ù©² fuýM¿<7'MÕäž»¥ïnžÚÝ€ASýwMRàö \S¿ošÖ'ðæŠß%u—«vªrChë2<š>úï¿\+#_ç2ò˜o¶cibBרÂ÷?ñi h endstream endobj 186 0 obj << /Length 305 /Filter /FlateDecode >> stream xÚm‘½JÄP…OØ"p›¼€yÍf‰‘aa]Á‚Vb¥–Šv É£åQò)#\î83w‰.x›Ìï9“zu¶ªhI5–t^S½¦—Ò½»j-Á%]2Ïon۸⪵+n$ìŠæ–>?¾^]±½»¢Ò;z,iùäš<àH9àØ0w{‰1‰àÛcÁ]Ω<² h=òQŠ=6 zh¾,ÝŒ$üûýd˜ˆà1bŠðÐ׆«ا¨#X«êéÉA}Éëă¼ÞiMËÖ©¥S¬Ñ-d§ÚpíAÜiÈÌ$ r¢ñÉ0cúðGÖÝ‘»Ò"Øyäž*\ެŠå'¨ªÍ5 ‰Ðš?ŸÛ)¦ÔœhVVQ¥»nܽû÷ó× endstream endobj 187 0 obj << /Length 208 /Filter /FlateDecode >> stream xÚí’= Â@…G,Óä™ è&"ù©þ€)­,ÄJ--mMŽæQ> stream xÚ}ϽNÃ0ð«J¡l¬ü¹³;Ta?ùìûpÛœ7k©äBÎjiÑÃkÍïÜVb»¹Ì7/;Þô¥­8Üj˜C'Ÿ_o6÷×RsØÊS-Õ3÷[¡&Òå±0’Æ`Q·Ð0‘|T*õM *pŠÓŒ_¬°·ÃÅ2ô $ŠL‡o1ÔJc4|îÐåÝœŽä~82ý;á eSz™ñéºÒ)<Æ8`¯ÍŠN9y{ƒÑ2Êhà›žøål¡— endstream endobj 189 0 obj << /Length 229 /Filter /FlateDecode >> stream xÚÅ‘; Â@†7¤¦É2ÐM4ñÑ(øSZYˆ•ZZ(Ú ñhà̶Ü"8ÎÆP+q›æ±óÿ3Íz­ ‡ ¬ú¶±ÙÁµ;MÐÃV‘Ym¡œc€sd4ÁÃþ¸ÙŸÐ9Ä…Þ¢!Š8üˆ¾Â~Âúƒè̸¥Œ+‘fÜ’^Æ áÜke˜ÄÙ"eš,®”æŸˆÕ tŽÞGd?ÀË„bú›$UÊ5â“ÒŠflì$*lóÞÍMgnó ´C¦JÙæhVÊ·3Ë®FÌàiÔp endstream endobj 190 0 obj << /Length 214 /Filter /FlateDecode >> stream xÚ­1 Â@E'l˜&GÈ\@7‘E±1#˜BÐÊB¬ÔÒBQ°’£í‘R¦gEì…áv>ÿ¯™'SŠÈÐ &3!3¦cŒ4#£Nq›ÃÓõ–ÌõRdÔùŠn×û uºžSŒ:£]LÑóŒ’> stream xÚÅÐ1 Â0à”…·äyдÒ*N­`A'qRGEçx¯ä ¼‚7бCéó=q(8‰òÁ ÿŸv«ÙŠ1Ä&]lwqÁ†Øy,ÖÐËÁN1‰Áy 6án»_íûÍpa8‡•‚&:2)Ñ™¡BztòŸÊU™«ÇUN­ËÇ+æIZÔà^Ü>¡àj©‹$qÍ©ÂÆIMîMRÚ'*ùmseÿ c¨ÒL@… ÜI 9Làwn¶i endstream endobj 192 0 obj << /Length 226 /Filter /FlateDecode >> stream xÚu=nÂ@…gåb¥i|Ï’eÅÒYâGŠ‹H¡¢@T’Djûh>а¥ äÉÛX ÉŸVï½yšyñÏÞËD¦òä%¼J˜ÉÁó™C€8‘0Ï/*v[ ÝdvÕ»\/_Gv‹¥xv+Ù¡hÏÕJˆÊžˆ2Õ†(Wí ¨F¢ºO†¶öFF›l@²Ä&¿%`Ý}b —ÝÈzdüeL,¢>2½¿Ýÿ°~dgygL[41Ƕ¦³Š» ÚÖhKy“êJ BaûsµQø óºâ îDŠ endstream endobj 193 0 obj << /Length 167 /Filter /FlateDecode >> stream xÚ36Ñ32V0Pacs…C®B.cK ßÄI$çr9yré‡+[ré{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]þ700ðÿÀÀPÿÿãÿÿ?˜ÿ÷ÿaàÿÇÿAþ<ø$ìADýÁÿ‡áÿ0ÁüH0 ¤ÿA6b#È4oˆúÿ@ÁåêÉÈèü®  endstream endobj 194 0 obj << /Length 281 /Filter /FlateDecode >> stream xÚ•‘=NÄ0…ÚÂ’!sH›´––E"Tˆ ()@Ðß`¯ä£ä)·ˆ<ÌØ‹Å$Å'ÏÏ{ÏIן5-5tA§ç-ukZwôÜÚ7Û5¤oßZO¯v3ØúžºÆÖ×R·õpCïŸ/¶ÞÜ^Rkë-=ˆÔ£¶ð„/ÀqZq€gÞ XŸxÂqdWŒjï£Ip‹nIU¨ì¤iÿÀ+ÂÿñW%KK"5²-CiÖKìŒ #;–A˜ 58©E,˜ æ½k΢SvàYlK³ S^`‰%*#ÃGÝÅ4dP€ãã”ɲ€1ê:¼^.ei³À¥üiþ‘C–¨žÌ%ý>+éÁ^ öÎ~ÝèÈñ endstream endobj 195 0 obj << /Length 167 /Filter /FlateDecode >> stream xÚ33Ò32Q0Pa3 ²TH1ä*ä25òÁ\Dr.—“'—~¸‚©)—¾P”KßÓW¡¤¨4•Kß)ÀYÁKßE!ÚPÁ –ËÓE¡þüÿOb†PŒF±ÿSöÿ@Ôÿÿ€ÔÁÿÿ©ãìÿ©ó ò ê>ÿ? uBýP?Øÿ©(ÔlÔ¡Dýÿÿ¿ùÿÿø(.WO®@.Jå×m endstream endobj 196 0 obj << /Length 131 /Filter /FlateDecode >> stream xÚ36Ô34R0P0b#Ks…C®B.#ßÄ1’s¹œ<¹ôÃŒL¸ô=€¢\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. 5 Œÿ˜ÿ7°ÿ?Düÿ #ˆ P¨¨’¨?Pÿ1ÿ?ÀH{ôp¹zrrÙðD endstream endobj 197 0 obj << /Length 220 /Filter /FlateDecode >> stream xÚÅϱnÂ0à  H·ärO€“¢´bB*‘©L ˆ‰22´*+ö£¥êÀc¾c"û¿… F,YŸÏ²ÿ³‹A/áŒû~oü:àÏœ¾¨uʰXoiT’YpÑ'3õ»dÊÿ|ï6dFcÎÉLx™s¶¢r‘­"?D+§c¥~DRãdZ¡ÞÛ+-ˆЭARÔ«.à·Z”£§T7œ™ÿrBŠ ‘³Ê°U. (]Ÿ«],ᮣD> 4À¶À§ù®±Hsz/iNW^`ص endstream endobj 198 0 obj << /Length 107 /Filter /FlateDecode >> stream xÚ36Ô34R0P0bc3K…C®B.#S ÌI$çr9yré‡+™ré{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]ê0üÿ‰™˜qàÿÿÿ7 c.WO®@.„S—œ endstream endobj 199 0 obj << /Length 209 /Filter /FlateDecode >> stream xÚíÑ? ÂP ðˆC!Ë;Bs_ëZA,T;:9ˆ“::( n>'Go qèQz„ŽJcªƒ¸îß—dûÚZ£E5eÚuj¶héâ}O²SÆò°Xc¡ž’ï¡Êu4¢Ýv¿BŽ{ä¢îÓÌ%gŽQŸàh¬@åÌ&àŽlJ2§æDxbΪ…çÔÎUdÂK¬ ÛØ9TùŠ»`Pá+XÜUò.<¼˜ÉS*ñ“©0y1Æß ÍŸoò³–^Š_ˆƒ'øøïü# endstream endobj 200 0 obj << /Length 162 /Filter /FlateDecode >> stream xÚ33Ò32Q0Pa3 eªbÈUÈej 䃹 ‰ä\.'O.ýpSS.} (—¾§¯BIQi*—¾S€³‚!—¾‹B´¡‚A,—§‹C}û?†ÿÿìÿ7€¨ÿÿ©Æÿÿ©öö€Tƒüæÿóøÿ10þŸ¡ö@¨ ìÿÔê6êÀP¢þÿÿßüÿÿ?|—«'W ã[« endstream endobj 201 0 obj << /Length 213 /Filter /FlateDecode >> stream xÚ¥1 ÂP †#B–¡¹€¾[¥S¡Vð ‚N⤎ŠÎõh=JбC1&¶ÕE\|>øóó’?ádäùäј†>…c &tðñŒA$¢GÁ´éìO˜X4 "4 ‘ÑØ%]/·#šd5#MJ[ùh‡6%·y=æ\0`..³ªYå°€óßAK<ý@\À@Q‚#6·§-WQwˆu©;Sðwð ÷?ñkB·KƒnÏú•¾ÍÐ&jÑ×´…„–ìùû1³´Áa®>7k.ˆs‹k|]Åf endstream endobj 202 0 obj << /Length 227 /Filter /FlateDecode >> stream xڵѱjAàY,„i|çtïôN´Œ‚Wbe!V&eŠˆÖç£-ø>B|„-¯Xÿ•D„ÄT±X>ØÙeçŸíuÚLéJ+HÞ—,—×”?8»‰ô²¯ÒêGÛ¹äÛ)öÙϲYoߨŽ^ž$e;–E*É’‹±P鑪SݽêT+ðé†(5OTÓ@u%ƒBMwF=p§±ŒºoHý-euŸaø~ÏÿììÒnlÞ]£Tȇ`1æ)†6AâÆ¯bXiú DAãŸü O žñ¥ÜÆ endstream endobj 203 0 obj << /Length 237 /Filter /FlateDecode >> stream xڵѽNÃ0ð‹2Dº¥o@îÀ1²‘²©-`b¨˜€‘¡¬8oÀ+õ ú yÊV‰ÊÇ?0¡N0X?éîlßÙ¾<±§Rˆ“c[Š/Åyy°¼dï-äÌ©û'žÖlnÅ;6—ˆ³©¯äyõòÈfz=Ëf. +Å×s!ªZ:"JuOçDUzELµº›´‘mÓˆŠu2mè3¢(€ˆâH9Àªö? QízÂoèöï îûni`l7šGÉ€vc6‰C¿#¯Û|‚ê[·Ic7qЇÖ=ý™ÿD¦ø˜ðEÍ7ü\ͱ! endstream endobj 204 0 obj << /Length 161 /Filter /FlateDecode >> stream xÚ31Õ37U0P0bcS…C®B.cK ßÄI$çr9yré‡+[ré{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]êêþÿoüÿàÿÿæÿþÿïÿÿHôÿùÿ¾ü?æÿûäÿ1þß"~À‰`‚ÿãÿì?€ã ÁÀ€L 7ñÿ?Ðbl—«'W n endstream endobj 205 0 obj << /Length 223 /Filter /FlateDecode >> stream xÚE1NÄ@ E?šb%79Âø0;Úì"ª‘–E"Tˆ (·AKÜq­%GH™"б´4o4ßßþv]_ä+^sÍç™k{wüšé6[í{¹T^Ž´o(=òfKéÖdJÍ~|½QÚß_s¦tà§ÌëgjŒ8êU•ʇ R:EZ Ê·cªV¢ÿG@­‚V‡•ŠjçU'Øø„3r¸Ø¹Ó–½µ—£å:ªÓ ¾Fg ñ¾©u·Ð1Ìv¥Mª#†bj¿2;Ý4ô@¿* endstream endobj 206 0 obj << /Length 173 /Filter /FlateDecode >> stream xÚ31Ö35S0P0RÐ5T0¶P03VH1ä*ä26 (˜™@d’s¹œ<¹ôÃŒM¹ô=€Â\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. Œ°ÌXv8Á'äá„=ˆ¨ÿ3ˆàÿÿÿÃ,X  wˆ'€þüÿùC=„`?À`ÿƒ¿Aþ<Ø7@ïÿÿ ¡ÿ? ærõä ä ,t endstream endobj 207 0 obj << /Length 166 /Filter /FlateDecode >> stream xÚÕÊ+Â@ài*6Ó#0€í6ÝÚ&¥$¬ … (ŠD@@/G[Ç5ê°8¤Ã‚¨Á£¾ü"e9¥”ÓÐP!Zj îÑZ)%Ÿe³ÃÊ¡^’µ¨§R£v3:N[ÔÕ|LuM+Cé]MàD Ì!æßÄ a9PIÒcУd€/-x>ƒo£;wàê*”Ì!aVBÌÝð7õœ8\à ¦ä¤d endstream endobj 208 0 obj << /Length 216 /Filter /FlateDecode >> stream xÚ}Í=jÃ` `-¾A¬䳋M)˜òõPH§ !SÚ±CC ÉÑ|”Á£'ꫯ¡¸’oþ4J$ëüQ²LÞSþâ<ÜØh‡õ'+v É3v/ز«^e»ùþ`7žO$e7•e*ÉŠ«©¨*…ÚÝ#ÐÑ3‘Q€Æs;Ðþ*ÑØ— ø‰/‚Ô@iàh#2ê+1@îð„[|áiöÆ¡ÙyÚÖ(ÛÆsöÄç“G=‘Ö· ·G¨Ô#¸ô¡î–ʳŠßøà•pH endstream endobj 209 0 obj << /Length 234 /Filter /FlateDecode >> stream xÚ}±NÃ0†ÿ(C¤[ú¾'¨”±4R[$2 ÁÄ€˜€‘¡lU›GKß$/à Çù¼0Õ²õéì»Oþ››euÅ%ÇÓ\s]ó[E;jj­ËXƇ×Zw䟸©Éßé-ùîž?÷_ïä×®Èoù¹âò…º-‹ü¢•p ÐÀiB1íŒE¸ mQ,GE!ýA‘Ë0)29÷Nò3Dœ¤hœIƒ¤AÒ iþ¡1µ„„Éæô7ºVÎpHšÉ4Y0Ml¾3ÃEˆg¡°²P1€jDßEæK ÛŽé(kЉ endstream endobj 210 0 obj << /Length 126 /Filter /FlateDecode >> stream xÚ35Ó30T0P°b 3S…C®B.c ßÄI$çr9yré‡+[pé{E¹ô=}JŠJS¹ôœ ¹ô]¢ÆÄryº(000````ò ¢H0ÿö@âÿ,Äáÿ0%#Œzÿÿl—«'W ØšŸ endstream endobj 211 0 obj << /Length 266 /Filter /FlateDecode >> stream xÚmбNÃ0à‹Åöï³Ïãú¢|ïGý¿ýÓÀ/¼Òq¯CýyÜófâîίFî®0ËÝtíß^ߟ¹ÛÜlýÀÝÎߣÌO;O$™ˆ9Á 1!˜rðHõâ°Ðdš…Úˆõ4›f¢&˜ç‚p–B•l9{„ôŸÈÃÕ6©8ù,Ö´Â/õvîK¤qb´ûÒ·í¢+tÍÙŠ%+ ¿N»C7¶É"­EB´8Ñè¤V‹êP Í#R¨I*š‡h~ jÁ:¹Rᕤè[I®ÍÆlÍ`Φü˜þÊ—ßò'‰Ä& endstream endobj 212 0 obj << /Length 258 /Filter /FlateDecode >> stream xÚ…±N…` …{Ã@Òåú $÷g%¹^Ltr0NzGÎðh< ÀÈ@¨=…ãâò íééicu]”RH”«Rb)U”·’?ø­XHU­×w>5œ?É1r~geΛ{ùúü¾p~z¸‘’ó³<›Ñ 7g!Ò‘ˆRUc¦ÚµŠ’R;Q2Q½P:X Ja2m0{´þ£ëûtÆ”yíl[ÀJ8ƒ XÏ í¥-ÖAvH¸xÎiO›zÚM¹Í÷YýSgâ¢ÄV6ë•Óo†¬GÐbìÔùÇÉÆï2ޏ´ÀºC’lÄLñUú‡[ÏŸù]~(ß6üÈ?údµ£ endstream endobj 213 0 obj << /Length 216 /Filter /FlateDecode >> stream xڭбjÂPà„ ³ärž 7ÁDpI *˜¡ÐNJ'utPÚ-4Ù|-7_ÃÍÕ­…ôæÿmzàÞs/üœ{ÓñCk¤#»Ò‘ŽS]Ų•dbû¨k»‹åFŠRÌ‹&1 {*¦|Ô÷ÝÇZLñ4ÕXÌL_mÌ›”3ulåŽó‡š´Ø]â ðI@B’¨I Ü/àßsÁ„ÌÌÈ'©È¸à€ßsABN–‘jÀ¸à€AOB¾/#ù&-ª¹Çï¿ü'5£o#óRžåŒÔ‘ endstream endobj 214 0 obj << /Length 253 /Filter /FlateDecode >> stream xÚ¥Ð1NÅ0 `?uˆä¥Gx¾¤‘^:éñè€bF¬4G Ç GÈØ¡j°]&`£ª>EIcÿµï;Gy:räõžî>áÎófG}¿žÜ=â~@{M;öœ·Ñôòüú€vyJín¸Ð-2ЀÉL]_~ÔEÕI-jV£¸€8«Yåz&Á? …}—Bæ£Öæs훃$–SéÂhjääMM|wSSYNñ-ðµŸN¿m£²8±®NZôTÜÔ2fé5J÷ü’äD 2ЏMÐrà[μ©Ñ‚΂̿˜51ÿ=ž x…_‚²¶d endstream endobj 218 0 obj << /Length 155 /Filter /FlateDecode >> stream xÚ31Õ3R0P0U0S01¡C®B.c ˜I$çr9yré‡ù\ú`ÒÓW¡¤¨4•Kß)ÀYÁKßE!ÚPÁ –ËÓEÿƒý ñÿÿæÿÿ?0°ÿÿÿƒÿÿÿ? òÿÿÿJþÿ!êD‚âÿH"Ð @˜ ¶l%Ør°3À‚8 äH.WO®@.E‡Þ endstream endobj 222 0 obj << /Length 197 /Filter /FlateDecode >> stream xÚŽ± ‚`…4wéº/Pj–)‚äÔÔMÕØPÔš>šâ#46È_Gth ¾åÞË=監(TW½©Cõ# |=yr•±Ï­«3¯;/’fâìt싳â^œl­÷Ûã,Nº™+ç…î=u’-ˆ',ƒž]£ÿÆ BR"/𠬽wƒý‚]¡OJ HÑ4äMJ‡êÿ0?_9º¨¤èÂÙÂ.6²—í­†Õ¾Ñ†ô¤-iN«Í‹e™ÉV¾‘L endstream endobj 223 0 obj << /Length 196 /Filter /FlateDecode >> stream xÚ= Â@…Ÿ¤¦Éœ èæGb¬à‚Vb¥–Š‚•ñh%GH™"¨/ÙÂVøšeÞûf˜ Æ©šj?Õ8Ò$ÖC(g‰b…îg’©³Ñ(³àXŒ]êõr;Š™®fÊw¦ÛPƒØLï@ |Èù “~‰n¯Fç ˜<z/ø¤@—”ð:ŽºMrpíñïß\3]8[ØÅFö²ÝiäÍÝhHOÚÒ™æôÿ´A¼HæVÖòxuO’ endstream endobj 224 0 obj << /Length 197 /Filter /FlateDecode >> stream xÚ=;Â0DQ m“#°'À1ùQ. ¢@T@I‚Ž–£pʈ°'XÊÈzã™ì&Ùp:áˆSN8qjøhèBq&,âd ãp¦Â’Þrœ‘^ %mW|»ÞO¤‹õœ é’w†£=Ù’•œ\¾à%Ò‹„NfN‚¦Rª×8þÔŽ;Óó§„À?]¨AÈq„Àë¶ !帿ÁÅ;$E‹ïC3þÑóNÕM€YBï¨vÒ¶ò¿6Ân*§…¥ ýUKe endstream endobj 225 0 obj << /Length 97 /Filter /FlateDecode >> stream xÚ31Ó³´P0P02PеP0²P03VH1ä*ä2 (˜Be’s¹œ<¹ôÃ̹ô=€Â\úž¾ %E¥©\úNÎ @¾‹B´¡‚A,—§‹BMÍ?ÊAM —«'W (»V‹ endstream endobj 226 0 obj << /Length 194 /Filter /FlateDecode >> stream xÚE1Â0AH×ä Ü °MœR. ¢@T@I‰Ž<§ä ))æ¼ àbeÝx½{6íG¬9aËvÀ‰á½¡Å©Ì4Û!ÀîH™#µæ8%5—))·àËùz •-§lHå¼1¬·ärÖ-9· ï ò¹—"“§HôéÒöEÀ •H$;5ÆšÀøÿ2à¨úÞ ïà€¿Ôó¢É@L¾lº ú¡)åa7lI3G+úùlJ endstream endobj 227 0 obj << /Length 110 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0´TеP01Q03VH1ä*ä22Š(˜B¥’s¹œ<¹ôÃŒL¸ô=€â\úž¾ %E¥©\úNÎ @¾‹B´¡‚A,—§‹BýÿÿQÀ¿? C ýGõÐG\®ž\\0ñoy endstream endobj 228 0 obj << /Length 112 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0VеP0²P03VH1ä*ä22 (˜Bd’s¹œ<¹ôÃŒL¸ô=€Â\úž¾ %E¥©\úNÎ @¾‹B´¡‚A,—§‹Býÿÿ‘@ýÿÿ öC Õÿÿê…\®ž\\¼HB€ endstream endobj 229 0 obj << /Length 180 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0UеP01R03VH1ä*ä26 (˜Bd’s¹œ<¹ôÌ͸ô=€Â\úž¾ %E¥©\úNÎ @¾‹B´¡‚A,—§‹ƒýæÿøA„<ˆ¨‡@ føÄŒ@ÄÚÌ ‚ýÈa@Âìˆÿ@D9‰eÁê :˜ÐÉ‘àЇ $„ÀaU?pH‚ú\®ž\\Äoˆ endstream endobj 230 0 obj << /Length 179 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0UеP01R03VH1ä*ä26 (˜Bd’s¹œ<¹ôÌ͸ô=€Â\úž¾ %E¥©\úNÎ @¾‹B´¡‚A,—§‹Bý†ÿ@Ä0Ñ"00Ôƒ†ú@‚D0ÿŒô @Žaø"þƒW"íÿÝ "Øá,°X¬îL/=  p¸Ô€†ÕÑ ISÀ¡ËåêÉÈŽõp endstream endobj 231 0 obj << /Length 106 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0UеT01RÐ5RH1ä*ä26 (˜C$’s¹œ<¹ôÌ͸ô=̹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]êÿÿÿÿLñÿ!ÁåêÉÈW51ñ endstream endobj 232 0 obj << /Length 143 /Filter /FlateDecode >> stream xÚ31Ó³´P0P04S02U06V05SH1ä*ä ¡±!T*9—ËÉ“K?ÈåÒ÷Šsé{ú*”•¦ré;8+ù. ц ±\ž. ìø?Èÿ°ÿ„ÿ€ð¿üþÿìÿì¡°ž¡ÿ1üaüÃüƒùPíûÿüoøÏPÃ`ÁÀåêÉȪL.D endstream endobj 233 0 obj << /Length 142 /Filter /FlateDecode >> stream xÚ31Ó³´P0P04SÐ54V06R04TH1ä*ä24 (™Àä’s¹œ<¹ôà M¹ô=€\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. ìø?Èÿ°ÿaÿÿÙÿ“ÿÇÿýCÃ?†?Œ@Èüƒÿƒý‡ÿþøßPÇ`ÁÀåêÉÈÑ4,r endstream endobj 234 0 obj << /Length 96 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0Æ@ÚP!Å« H(€¹`™ä\.'O.ýp —¾˜ôôU()*MåÒw pVò]¢zb¹<]äìêüƒõìä¸\=¹¹ŠŽ– endstream endobj 235 0 obj << /Length 104 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0Æ@d©bÈUÈeh䃹`™ä\.'O.ýpCC.} 0—¾§¯BIQi*—¾S€³PÔE!¨'–ËÓEAžÁ¾¡þÀÿ0XÀ¾Až0À®ËÕ“+ 9Ü-I endstream endobj 236 0 obj << /Length 111 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0V04W01Q0¶PH1ä*ä21PA#CˆLr.—“'—~¸‚‰—¾P˜KßÓW¡¤¨4•Kß)ÀYÈwQˆ6T0ˆåòtQ°ÿÿÿÿŸz ñï?*‹1pš¶ƒËÕ“+ ÏJS endstream endobj 237 0 obj << /Length 102 /Filter /FlateDecode >> stream xÚ31Ó³´P0P°P04W0¶T02VH1ä*ä26PA3ˆDr.—“'—~¸‚±—¾‡‚—¾§¯BIQi*—¾S€³‚!—¾‹B´¡‚A,—§‹Býÿÿ?þÿÿÿƒÄ¸\=¹¹E:(“ endstream endobj 238 0 obj << /Length 118 /Filter /FlateDecode >> stream xÚ31Ó³´P0P04P0"sSs…C®B.#3 ¨‚‘9T*9—ËÉ“K?\ÁÈŒKß(Î¥ïé«PRTšÊ¥ïà¬`È¥ï¢m¨`Ëåé¢`ÃÀÏPÇ ßðŸÁþ!\Ï`߀ ƒÌÀ‡Aöp¹zrr]7½ endstream endobj 239 0 obj << /Length 172 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bS3…C®B.rAɹ\Nž\úá &\ú@Q.}O_…’¢ÒT.}§gC.}…hCƒX.Oööþüˆ&äȉù4ÂþÿÿÿêÄ¿ÿ¨,Æ`„¢ê€hâ2üB0Ó° 0þ`@Ì?˜ÄæDŒ0p¹zrrûV‹« endstream endobj 240 0 obj << /Length 256 /Filter /FlateDecode >> stream xÚEÐ1NÃ0`G"½%Gð»$Q£R–X*E"L ˆ @°!'GóQ|¬”?1uå“âXÿïçn{y½ã†7|±ã®ãí†ßZú¤®áå¹jÓŸ×ÚT?q×P}‡eª‡{þþúy§zÿpÃø>ðsËÍ .­(\å„tÊ‹Òë¨ü‰B¹hþ±¡:3NŽ[Vfab1‹qAÊKĺ¤gPm33GqbÆ[œ‰@fÖôĹÂK‡t,(WŒ¢p¬„ÆQ'm@¿Œb4*~UbEé'ö¡¢ï6¨Ð3P£¬T[ziq±t;Ð#ýY»ˆž endstream endobj 241 0 obj << /Length 190 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bSSs…C®B.ßÄ1’s¹œ<¹ôÃLŒ¸ô=€¢\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. ö P߀ ÿÀJ2~~€‡dþü|"ÙþÀN‘üþ`%åê°’ö õ ìhL²¨ FÖÿÿ'ÿÿy“ü´ñû,$3üÀÀŒêÿ3Øÿo€ÿAŒYœËÕ“+ H0‚6 endstream endobj 242 0 obj << /Length 198 /Filter /FlateDecode >> stream xÚ}ϱ Â0à” …[|„Þ˜TkÑI¨Ì èä Nêè èj}´>J¡c†Ò˜ 4è „|4ùÓ;.ˇ³)J¹q’ã)…+di¹#Ç  Ä3 bånA¨5Þo3ˆb³ÀD‰ûåT‰•µšYk[Âz^Dí«yÃ’Æ1 ¸é‰<­ƒý§QøƒS˜H¨hUsjD0NÍû/ëýÕò£QG<ó¿Tá]×ãKÅDbh@C£6„“3K[x£Gœj endstream endobj 243 0 obj << /Length 197 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bS3…C®B.C ßÄI$çr9yré‡+˜ré{E¹ô=}JŠJS¹ôœ€¢. Ñ@-±\ž. õÿÿ700üÿÿÿ˜ü&ÿÉÿ @Y 4ûÆÿ€$ƒý)&ù?€Hö ’L2þA ÿÈ:0Y&íq‘ Ržbb¦ùõH.©C¸ ÙÍ_@|ñü¸¯A! HÈÀCé,ô !ÉåêÉÈ݈I endstream endobj 244 0 obj << /Length 149 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bSS3…C®B.C ßÄI$çr9yré‡+˜ré{E¹ô=}JŠJS¹ôœ€¢. Ñ@-±\ž. õÿÿÿÿÃ$þÿÃBÖƒIæ uD“6`’ùD2þÀJþÿO˜Ä¥j2ÛøÁ¤|©$(4þ7üÇA‚e¸\=¹¹WD–Ü endstream endobj 245 0 obj << /Length 141 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bS3…C®B.rAɹ\Nž\úá &\ú@Q.}O_…’¢ÒT.}§gC.}…hCƒX.O…úÿÿÿÿû€$þ3``°'LÈ|DˆøƒAüÿÀ¦jåDýÿ ÿÿÀ À\®ž\\,˜µ endstream endobj 246 0 obj << /Length 230 /Filter /FlateDecode >> stream xÚ•½NÃ0€/Êé?Bî¨Õ…vŠÔ©`b@LбÖÞ Þ$R_à¤.•åjŸKÅŠ-}ƒo¸ï³»ͦTИ®JrŽ&7ôRâ+º‚ÂLãäy‹óí¹íÚ?£­oéýícƒv~· í’K*ž°^ÀdòÃ`dÏPÉ‘¡aD¾„ÓZN{¨8;@Ά:0œGdœzT €”Û š3’Î#ìò§ÿ'dè!Q M„4·éò³† ýú™¨«â>¡Š1š¥š£5ßȎ×t*Œ«ïñïć5 endstream endobj 247 0 obj << /Length 114 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bSS3…C®B.ßÄ1’s¹œ<¹ôÃLŒ¸ô=€¢\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. õÿàèÿÿp„,Îü~èÿÿÿÉBÄ„—«'W NÁ§P endstream endobj 248 0 obj << /Length 126 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bS3…C®B.rAɹ\Nž\úá &\ú@Q.}O_…’¢ÒT.}§gC.}…hCƒX.O…úÿêÿÿ``ø'ê!P‚È:„ˆ°'–¨ÿ`àbÿ¸\=¹¹”…jo endstream endobj 249 0 obj << /Length 201 /Filter /FlateDecode >> stream xÚ­Ð1 Â@ЋÀ4¹Î \kP1‚)­,ÄJ--!9™D,,½î¶T×]…S[̃ù3Õçn¥Q§*9z¸K5—¦.s½WÍj“9ú!²!qެ«SdaVËõ ™ßo“ƒ, ‘þcP$”ˆnPPB¥z@QÉÈ(>Z°öðãlíl/5.§žâÒ×ÄK=&M£Ø¥ÄÆ(o9)÷Œ[‘·•ä-Ç_m0ÂÍv¢ž`é®Þfsì„8À„‰‰ endstream endobj 250 0 obj << /Length 199 /Filter /FlateDecode >> stream xÚeÈ1 Â0Æñá-ÁwÓ–ZtP¡*ØAÐÉAœÔÑAQPPRo¦7iqpT· ¥±I( 8¼ïû{~£ÝBÝâ¼&6}\9°Ol[Lñ,7„@gè¹@GEŽq¿;¬“>:@8wÐ^@8@–’X&äaüÆs!Ëe—V^Äz“ÒHø4½ ¦±6Q¾µ±25> stream xÚÍ=‚@…ÇXLØ è²ò#V› &na¢•…±RK ¶ÂÑö(Ò‚°.CÇ l¾â½æ}/N竌BJh&)^P²¤«ÄF© ]œ Í厹Fq¤(E±u1 ½£×ó}C‘ï×$Qt’žQʘZÛ‚gm¾µ‡J9Õ€ƒeÊ ‚ºðë€7FçдÓ?oaŒFòú½ k©ïÄ öª,Íú|_ÂçàFã&h endstream endobj 252 0 obj << /Length 182 /Filter /FlateDecode >> stream xڭϱ Â0àHá^Â{ÓZìZ+˜AÐÉAœÔÑAÑÕöÑú(}„Ž$ç] 8Nù ¹ä¿KšMó9&èx¥gž,\Áå¼Od+…ã f‡.³âS0~÷Ûã ¦Ø,Ђ)qo19€/±"jõB¨.P«;UuÌD÷ŒF¯ Âó'a¸üy£bhŒçF±¥4j-iMËðO*ªÿ·ù"`éa oõÆ…t endstream endobj 253 0 obj << /Length 218 /Filter /FlateDecode >> stream xÚн 1 àÈ Y|óÚ;©‹‚?à ‚N⤎ŠÎç£ø"®äb/YÄÁÁ>JÚ¤¡¶Ýèu)¢&Õc²jµiã­õɈZ=Ùìq˜ Y’µh¦>&™ÑéxÞ¡ÎG£Ó*¦hɘR. eΘى/É".à‹Ò¬t ÖòÒªª®ôwèð£VûhOé/oé»2C óxŸûB§©’ÙbM•nÕÿ¼æ¥7÷íÝ¥| "çþÃÔ€3Ÿ©ˆàï>à$Á¾$J endstream endobj 254 0 obj << /Length 250 /Filter /FlateDecode >> stream xÚu1NÃ@E'raiš=ÂÎÀ1IL¨,… á ªˆŠ¤DöѶã¹.·þü ‘(öigöÿ?³Óêølnc›ÙQiÓ›ÚºÔ'Tl²=ÿy¹ÐE£ÅÊ&•—lkÑ\ÙËóëF‹Åõ¹•Z,í¶´ñ6K³NZäa|„ ø 9€à|t5»¡î¡iûH†„ˆÿ…û JòŽbz<„„ë¼rd'¾¥0Õ´ †½(9qp&8 %? cF¿ûi=¶H^†Qèù #tü)„g/pxLkDÏ…3zô¢ÑýŠA endstream endobj 255 0 obj << /Length 127 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bSS3…C®B.ßÄ1’s¹œ<¹ôÃLŒ¸ô=€¢\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. õÿ Dü?€‹üÃ`ÏÀOY$Ù€$ ;Rþÿ?óÿ¬$X–ËÕ“+ V—Xê endstream endobj 256 0 obj << /Length 174 /Filter /FlateDecode >> stream xÚÝÊ1 Â@…á )Óä™ èfaµ Än!he!Vji¡h-GɶL2ކ€à „á+þ7&.擦‰&“R’ÒYã ‘S2–Ós‹jOÆ ZKFe7ô¸?/¨òí’4ª‚šâ#Ú‚J®"n˜ëŒÝ¯Ãê;€þʼQ¯ýºO„7ZB؈U$fMYDÌ@È ÷¢ÏìÞfò‚+‹;|WWŒ endstream endobj 257 0 obj << /Length 201 /Filter /FlateDecode >> stream xڵͽ Â0ð+ ·ôzO`Z©E§‚`A'qRGE×6–G©o ¸t(Æ;…TÜ%—wÿ.Íz£!ÅÔç›hÑ>Á¦2Ç2J³;â¸@µ¦´jÎ)ªbA—óõ€j¼œP‚jJ›„â-SªžYmEc-äÎwòy îà7RŸ†õؼ€5ü“-!Òäl·Õé²Ó<ÙдâM nÓÜÞ£­ÖtVúWYõwÛ8CÛ:¿rœ¸Â½žbÅ endstream endobj 258 0 obj << /Length 220 /Filter /FlateDecode >> stream xÚu=NÄ@ …_”b%79Âø ÕHË"‘ * D[n‚–™£å&ì¶Ü"ŠyãmafôY²ŸíyýÅéõ•.õ\O:í/µïô­“wa\òögÇÊëVVƒ´O¬K{Ç´´Ã½~~|m¤]=Ü(³k}fÏ‹ kEÚ¨m&fhÌF ˜í€hÆrá°ž +'Ø2¾©ʉ3Ùq4|PYáÂÙØš0eܦÑé½³súŸÉ5ɧ¥\Ó@ÜñïeÝ'ýXæÆÆreSU¤4¹äQ~MQdÅ endstream endobj 259 0 obj << /Length 206 /Filter /FlateDecode >> stream xڥϽ Â0ð+Â->‚÷Z+©S¡*ØAÐÉAœÔÑAѹ}´>бbð¼$*.b†áBîþ§zíá€:Ô¥VDJQÜ£m„T‘;÷ýËfi†á’T„áTÊf3:Ï; Óùˆ¤:¦•üYc6¦\ƒ®¾›;ƒ¿lhkb¬Ì⹄€™/N-êÄZ6*±¨ñp·—§¹ë™|ZX›?š¼4®ïìõ½>uóÎæs¾’—n—‚«Ý tnìÆÍ N2\àKKv endstream endobj 260 0 obj << /Length 205 /Filter /FlateDecode >> stream xÚ¿n1 ‡]1œä%oÐó ´¹”ˆÒ)$n@¢S‡Š Z•µ—¾Y…G¸‘!бi…ÄÖ _¤Ï²ý³=¾Œ©¡gzpäŸÈ;Ú:üÀ¡Ù¨¹T6{œ´hßhèÑ.D£m—ôõyØ¡¬¦äÐÎèÝQ³ÆvF0à`ø80¸cfṉ̃bè¢9)zA}T$"ÜË'¯S|_QùŸ(·½Ýª(ãM I +ëT÷PG“eyÅ?¿Ñ4dѸYƒ÷z‚Ü1…ó_ñ ° S endstream endobj 261 0 obj << /Length 220 /Filter /FlateDecode >> stream xÚÐ; Â@à )„isÁJÐùEü"Ãøb=A×Û çaÄS~]¿ endstream endobj 262 0 obj << /Length 216 /Filter /FlateDecode >> stream xÚu1NÄ0Eÿ*…¥ir„ÌÀ › ¨,-‹D $¨(VT@I‚vã£ù(>–)V¾AÐaYOòØóç¹??½¼ÐV=é´ÿÞϼÉz`±ÕþìçæéU6£ø]âoX?ÞêÇûç‹øÍÝ•vâ·ºë´}”q«¨µE XÌX™Í¨ÌŽp‹[PÏ0ÔLhB M ‘‡ÀÆ4ì‘™æò±À¸þEâ ŒÆþS“«D¸ÌiDf( šD“œE‹T³HIc %)>—/Ð~Å’\r/_})oG endstream endobj 263 0 obj << /Length 164 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bSs…C®B.c3 ÌI$çr9yré‡+›qé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]ÿ300°ÿ?ÀÀ ÿÿC=ˆøÿÿ„`üÏÿùˆøÁþ€ýcf ‚¨ÿÿÿÿ?€F€%ˆ5…Æ„ýÿÿ@.ý‡N€%¸\=¹¹CStò endstream endobj 264 0 obj << /Length 275 /Filter /FlateDecode >> stream xÚ…=NÄ@ …¥ÉMŽ_òÃ(‚†‘–E"T+* ¤A·ÚDâ \%7!H9Ec{·BHLñidû=¿ßŸRI'tT×äò%=Vø‚¾–jIM}h=<ãªÅâŽ|ŕԱh¯éíõý ‹ÕÍUX¬iSQyíš É³ã:þ²œ!1¦{.g½‹éì ›t<A9ÀN¤t¿´É½êà`nê [¢Yè˜'ã(3’@øÉ üˆÊ~sPºo£i5¹ÝE,b”³6ÂyÔ0ɬ1$ÄV¸ ç îÁ˜ÿÁÙº[›ìLzõ #¸òºh»&Û;‚þ¡Ä³$²^MR} ^¶x‹?máÊ endstream endobj 265 0 obj << /Length 165 /Filter /FlateDecode >> stream xÚÅɱ Â@ à: Yúæ ¼k¹ µ‚7:9ˆ“utPt¾>Z¥pcÁÒ˜(¸ÔÍÁ@>þ?1ét>C1¯I0I±ŒàFº–*áx†Ü‚Ú¡‰A­ø Ê®ñv½Ÿ@å›F  ÜG¨` t>à¡ö»îåè'C/fH=û b‰¨ú賚­'b6l öÁ˜í¶ÿÑQã¨"òDõÐ÷–¶ði—¶ endstream endobj 266 0 obj << /Length 137 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bCSs…C®B.cc ßÄI$çr9yré‡+sé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]˜øÀù(B¬Ž`ÿ¨­þÿ ÂD00 ¢þÿÿÿ ÿaDœ€Hp¹zrrȧYA endstream endobj 267 0 obj << /Length 217 /Filter /FlateDecode >> stream xڭνnÂ0p£H·ä¸'À ¤Q™"•š ¦ˆ‰vìP+ŽÄ‹eëkdëšÑU‡ÿÇGkÉ?é>í4ëž8æ^¸iÆ¿%ôIi?Ä1B–4,ȾrÚ'û²d‹ ¯W›w²Ã鈲cž'/¨³kL8âïëTó¶E‚ÑÅòÆkÕä%t:u€­=|ðº?õQ ;D»ñN÷ üd~UôÈ7úå ³²S[Øv0ؼ?½b¶j®vÊ?£ ¶kµ1Nš\*ïÎÖ7V§*=4£#SãŒ÷ endstream endobj 268 0 obj << /Length 123 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0b#S3…C®B.c3 ßÄI$çr9yré‡+›qé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]êÿ``¨ÿÿƒá?œ¨‡ ŒÃ—¨ÿÿÿÿ0Äÿ?€ „—«'W íâg• endstream endobj 269 0 obj << /Length 161 /Filter /FlateDecode >> stream xÚ31Ó³´P0C …C®B.sˆD"9—ËÉ“K?\ÁÄœKß(Ê¥ïé«PRTšÊ¥ïà¬`È¥ï¢m¨`Ëåé¢ÀÀøƒñC}ÿþ? ÿïÿ“ÿÇðÿÿûÿ òÿÿY–o`*á?Àþƒÿü„Ø!*9 °þ=þÿg„ÿÿÕ!Œ‰@d¹\=¹¹ªˆ÷ endstream endobj 270 0 obj << /Length 159 /Filter /FlateDecode >> stream xÚÅÉ1 Â@б¦Éœ¸»a­1‚[ZYˆ•ZZ(Zo޶Gɶ 2΢]àÀ<þŸ±óérAšrY;#«ébðŽ6uj ç–ÕlŽj#WTnKÏÇ늪ܭȠªèhHŸÐUE‹€[îÅ7³(Sÿô‹#“d5"${‹ÝÀö?zn<×Ì‘9 ý~qíp%8} endstream endobj 271 0 obj << /Length 198 /Filter /FlateDecode >> stream xÚ1‚@E¿¡ ™†#0Ðe‰V$Љ&ZY+µ´Ðh+{4ŽÂ(- 㲘ØÚ¼âOæÏ›$ͦñ„‡š“1'šOš®§6ŒºÄMŽš¤v§¤V6&U¬ù~{œIÍ7 Ö¤rÞkŽTä ï dR" "/x"oø­ß"x Aa…Ì„¡É,ª ªÒ¢~~Ûæ5ÿ¢µÍo×U9ôõú“ö¸qNÈ©9I§‹Rêï Ý3´,hKí`• endstream endobj 272 0 obj << /Length 221 /Filter /FlateDecode >> stream xڭбnÂ0àßb¨t À½@›Y"QÈP‰Ntì@³óhyÁc×s U‡.•ððɺ“Ï¿m˧ç ç<æÇqÎÖ²Íy[ÐŽl¡ÕœË[kóIÓš²w¶e ­SV¿òþëðAÙtùÂZñJ­©ž10ô€óU¤QÏ"-D×±×ɯ<Œ´ÃNmA…Q/À%n®:˜¨~ÛDGÿ´ºú9ir2ݘL¤y?ÙRΘ<ÚÂè[˜S|—é\ˆŽŽè³ÝO§÷é¿éOýeêÒ¼¦7úF©W endstream endobj 273 0 obj << /Length 229 /Filter /FlateDecode >> stream xڭϱJAà?lq0Í=ÂÍ ˜ÝÓ%Ä*#xE@+ I-SD´5_,9È ,Ø9nœ½sck‘æc™ùÿõ£áõ˜_ñÅ¥c?fïø¹¤5y¯SÇ£´Z®hZ‘}dïÉÞéœl5ç·×÷²Óû.ÉÎø©d· jÆ0í rù ÀDªÈWÀ@ä`D$ £æ ¢“€¢F¡]ç67@–üHš€¶³ù·mòtçt9OYªæ»®‰®´Õwì–µ±gß¹ïßÿÙ«…èe˜&Ú¥œOM«“&Æÿú7§ÛŠè`Ÿß endstream endobj 274 0 obj << /Length 172 /Filter /FlateDecode >> stream xÚµÎ1 A ÐÔi¼“832ˆVº‚SZYˆ•ZZ(ZÏXYzâÅ#l¹…lÌÛXZäÁOø7è†d¨/ã9C;‹GtV²ibsØ0ó¨Wä,ê™lQû9O—=êl1!Ùæ´–Ê}NÐ)!0„Z¼2ó-ygŽÉg"(.’0P5tÅ·ÔAUɲå+Yü0þÉÀ\%å-n¾Ê§—ø¦YW endstream endobj 275 0 obj << /Length 218 /Filter /FlateDecode >> stream xÚMŽ1JÄ`…ßb˜ÂÜ`w. ~7»hXW0…àVbµZ * vnâUr”aË!ã›,ˆÍÇð½™Ç”ëó«K-t­gQË -£>Gy—劲p3%ûWÙÔt¹’pK-¡¾Óϯ ›ûk¶úµx’z«X §˜™ý 33䎅£r¤CF40Œ@:bª ˜#µàLÉ‚¼ªÁ‰Y˜õ.¹ŠdÄŒ Çæ›¶åAîȺ ãlBƒ¼³–{,ªZxËÏŽ`1K{¯ï+æoürSËN~±¡o' endstream endobj 276 0 obj << /Length 160 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0RÐ5T01P05PH1ä*ä26 ¹†™ä\.'O.ýpcs.} 0—¾§¯BIQi*—¾S€³ï¢m¨`Ëåé¢ÀÀÏò $õÿÿÿ?Äÿ ` ÒÍ#…ø$`'0ƒö üøÄù ì  æÿÿÿÿSÿdÖ.WO®@.’Ø] endstream endobj 277 0 obj << /Length 159 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0RÐ5T01U0¶TH1ä*ä21 (˜@e’s¹œ<¹ôÃLŒ¸ô=€Â\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. õÿ`øÿƒùÿ,dýF Éøƒ}üH¤<˜´’ê00ügüÿ¿á?`¨G"íÿ?’üÿ›²Ìÿ¸\=¹¹kqt endstream endobj 278 0 obj << /Length 174 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bScK…C®B.ßÄ1’s¹œ<¹ôÃLŒ¸ô=€¢\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. õÿìÿ7üÿßPÿÿ& ‘eüÀÀü€Jþ``ÀÀ$ÀÈ? ü@²†¿•´cg@%å4*ÉßPƒF²øF2?ü€F2~~€F2ü?€NÖ7 H{ ærõä äóV endstream endobj 279 0 obj << /Length 195 /Filter /FlateDecode >> stream xÚuν Â@ ðˆƒ¥Ð> stream xÚmν Â0àˆCá¡÷¦Õ(v©à˜AÐÉAœÔÑAѵͣÕ7Q|ÁÅAŒwݤéGr—»œé6³&Ø¢ßt°á&…=>'|äÍz z¦zBQÐvŠÇÃi z0b z„Ë“Øö½óoUú³÷ YU¨X)Õ§-ÈØ½ÈFÅFç'{»“õÇ…¬yVùJtlÉHƒŸ!²r³&µué]ÅŠ;7ä­ØRš“¹ÌCSQñ‹¦ i¬ÊÓÀìw…HÈÂØÂ>ʳh endstream endobj 281 0 obj << /Length 171 /Filter /FlateDecode >> stream xÚÎ1 Â@…á aàœÀMˆˆ@ Fp A+ ±RK EÛ‰Gó(Á2EÈ:/u ‹ý—ÙýŠ™Í§éB"IìÌIR9Ç|c»#¼¦ÝÇéÊ…g··™Ýº«ßÈãþ¼°+¶K‰Ù•rˆ%:²/%!Ô•¥éI­Dã¯eò±äoKõ²ÊhÐѰ±Œj#0#0£?Y¦` ¦` ¦`Š]ÚГnS^yÞñÊiô endstream endobj 282 0 obj << /Length 218 /Filter /FlateDecode >> stream xÚ¥1nƒ@E?¢@š†#ì\ ^ c)‘ìÊ…•*qé"QÒŽÆQ8%ÅŠõ2[$rëæ³Òþÿ~þ¸y.9áœRÎ3.žø#¥OÊÖcÂEé_Þ/T·¤œ•¤_Ü™tûÊß_?gÒõ~Ë)é†O)'oÔ6Œ`ÙPv*;k . ,¢ UPC< ”èzDNø‚ùÆe™{àÊææÓÎ¥ÍÿÂ]—É·’~+|ç¢ 2¢%‚¢ê¥E_†IÖqh×Ò®þ xË endstream endobj 283 0 obj << /Length 143 /Filter /FlateDecode >> stream xÚ31Ó³´P0P°bSs…C®B.crAɹ\Nž\úá Æ\ú@Q.}O_…’¢ÒT.}§gC.}…hCƒX.OæöÌÅò@lÅõÿ``âz þÃç¸ÿC?’¾Æöÿÿÿ¨‡à?P æs¹zrrìRZö endstream endobj 284 0 obj << /Length 232 /Filter /FlateDecode >> stream xÚmŽ¿NÃ0‡‘K·xe‹Ÿ'´ 0Y*E"L ˆ‰vdÁÚøÑú(~ªwH‘`¸Oº»ïþ,»óë+ßø•Äò¯.ý¶¥wZt’7šjãõÖ=…'¿è(ÜI•Bï??¾vÖ7¾¥°ñÏ­o^¨ßx¸#€È `Î0Ì#,óŽyB=:F̧˜0¤AÌè.O€=¡ðÌ {Å™sØ2tâÝ÷ 9ÈùF¢štJ´£º:ZëTTwHsͪæT«U‹ù!‹ª,†)b˜"†)3þÚÈtÛÓ#}çwo endstream endobj 285 0 obj << /Length 239 /Filter /FlateDecode >> stream xÚMбNÃ@ `G"yÉÊv~ö%-aŠÔ‰ H0u@LбCQ»’¸nÑ館Ñ?I}ûL§¯óýúeCú-½”¿c»%H00cŽRb†LèÝ5áÁh†¦šRã"Ì&\/d À/©„솄Ná^J¬+J™¯Êx#jCÿ(Ñïä^ ‡NwŒÚ6d`âNùVø?‰1F3:=ª³0+¸(-ª…¶ø aO"{|lñdy‚ endstream endobj 286 0 obj << /Length 196 /Filter /FlateDecode >> stream xÚ•Ï=‚@à%$Ópæ.Äõ¯"AL¤0ÑÊÂX©¥…F;£pJ ¾ÙÄÆØ8“ý’7[¬™ŽsyŒc Of|ŽèF&di\%8])ÉHïÙ„¤×˜’Î6ü¸?/¤“í’#Ò)"”¥¬”×*¥üîC Ä–(„\èÓ -p- ð¿*XJ …¹Ð pZàZàYjàW °” ¶( ½0 úáG(Yù“bÀ_íÛ/Ð*£½:øp^ endstream endobj 287 0 obj << /Length 217 /Filter /FlateDecode >> stream xڭαŠÂ@à‘Â4û;/ ›œ„@NÁÂYYˆ•ZZ(ÚšÄWÙGÉ#¤Lqì:£Âqå5_1ÃÌÿ÷ÓîxD1 ¨“Pÿƒ)í> stream xÚm1NÄ0E'risÏ v7,•¥e‘HÄVˆ ()@Ð&9šâ#¤L<| Q`ɯæ¿ñ¦9»ÜÉJ¶rZËæ\¶ò\ó¯QÞý¼<½ò¾åê^Ö W7(sÕÞÊÇûç Wû»+©¹:ÈC-«GnBä"éLdT‰¬ê@.ëêGH‹„F3å”16’ 6P9¸€nü\êÑÑ Pbfç4Rêu¢Yù¥šHq_#õB}È!Ûĉ¨\0æºÐgøÜœ!TF¨ÙIàìƒÍAØCÉ$£yñDE‚Ì}Hâ#°‰A _·|äo_ƒ« endstream endobj 289 0 obj << /Length 187 /Filter /FlateDecode >> stream xÚ•Í1 Â@ЋÀ49‚sÝ„$«@Œà‚Vb¥–Š‚•z´%GH™bQgˆqÒ80¯˜åÿ ‡ƒqL…Ô÷) (ÑÎÇ#rô(Šë—íSjEAŒjÆgTzNçÓe*]LÈG•ÑÚ'oƒ:£+ð¼x*Á´P§dÜ‚éåœHðá.ñ'oÇÓœR(@RB¾Ñšü­)Ó`ëêÎòÛn±ÿ´aÿþ —§—øöð\# endstream endobj 290 0 obj << /Length 232 /Filter /FlateDecode >> stream xÚu=NÃ@…Ÿå"Ò4>ÂÎ`mÙ ¦Z) HPQ *HI‚çh{”=‚KV†ñ)‚æóó¾yÓlÎ/[.¹á³Š›š×üRÑÕs±äu»tž_iÛ‘àº%£eòÝ-¼îÉo﮸"¿ãÇŠË'êvŒ\8I@/#2‘£–D°R9ÇL¢’Kp)°Lz ¿€ìO±nPY†]D‘ 5ˆÅˆ>æ¢Lr‘é>Aáʶ»pg¿W·³iÒÛÿ9Ô«ËÔo°0ËZTãþ¾j~]wtO߈ý endstream endobj 291 0 obj << /Length 261 /Filter /FlateDecode >> stream xÚmбJÄ@à )Óì˜yÍÅ»‹gµpž` Á«,ÄJ--m/ÛùZy”€/0`0ìøïh#„¯˜egÿ?‹æä|%3YÊq-‹SYžÉcÍ/> stream xÚ35Õ32V0P0W05R0±P03PH1ä*ä21PA ˆDr.—“'—~¸‚‰—¾‡‚—¾§¯BIQi*—¾S€³‚!—¾‹B´¡‚A,—§‹ã?&öÿØùÿÿaà“ÿÿÿ@óÿÿ? ìÿ ÿàÀÀPßÀåêÉÈtÒ#õ endstream endobj 296 0 obj << /Length 198 /Filter /FlateDecode >> stream xÚ± Â0Eoq(¼¥PßhÒ‹…âP+ØAÐÉAœÔQPQèàÐOë§ô}i,:IΔäÝÜ“h4 bÖœð 9ÒyЙBÍf%ÝÑîHYAjÍ¡&5—}RÅ‚¯—ÛT¶œr@*çMÀzKE΀N@§F¯‚ x€¤-%ð08¡W\¡‚gú-21é¹û’ôü‹òWZúñœßu2¶•Ôsëw[ÛÜZ˜,ëå··EV”E\ôÍ'hš´¢búD[ endstream endobj 297 0 obj << /Length 199 /Filter /FlateDecode >> stream xÚO ‚@‡âBx ½@Ø»@N(Ñ rÔªE´ª–AEAKæQ<‚Gh|*A´ŠùVóþÌ÷›I4c8â‘Ö¬cŽ>…t#ps¦}éx¡4'µcZ™{Rùš÷ç™TºYpH*ã}ÈÁòŒK ®@ ð§€]6X¦V /a&Ì ¦Û+ÌŒSv4ÃÕ7f—UÿEõc›]~žsŠÎÁë­|‘lm[sIaU].Gz]‰œH|Ô|-sÚÒcÕL endstream endobj 298 0 obj << /Length 182 /Filter /FlateDecode >> stream xÚ37Ð3²T0P0WÐ5R03V0±PH1ä*ä25 (˜Be’s¹œ<¹ôÃLM¹ô=€Â\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. `À¡l Ô0É~LÉCÄ*À$ãˆT˜’ƒHý“Ì)~,&1£˜TƒÛ¤ “0M‚QPA¨¨¨v˜aP£¡A­…9ê$tóPÌûϼ óØ±šÇÇåêÉÈ<%,t endstream endobj 299 0 obj << /Length 133 /Filter /FlateDecode >> stream xÚ=É1 Â@EÑ?â ¦x+pæ'c#8… •EµT´Î,mv¦ ‚œîÞ|>Óœž‹’ºdYð¢x@=ùâwÎ7Ôî@õp›>Ã…-_Ï÷®Þ­¨p [¥?"4´ÒÉ'öÒ K6ÉŸI&š˜ÅLÆ2’©LÄJ%w9 Ö{|ɉ$_ endstream endobj 300 0 obj << /Length 168 /Filter /FlateDecode >> stream xÚ31Õ3R0P0S0²T0¶T0³PH1ä*ä2 €E@2ɹ\Nž\úá ÆF\ú@a.}O_…’¢ÒT.}§gC.}…hCƒX.Oæ ü€ÁFŘðÿa>`ÿù@ýæÿíþÃÿ°ýóÇþ ÷30Øÿa`àÿQ¢A| 8H¤¤¤¤dÈ<\v!»ƒËÕ“+ ™µHý endstream endobj 301 0 obj << /Length 108 /Filter /FlateDecode >> stream xÚ37Ð3²T0P0UÐ5W03U05VH1ä*ä2 (˜Ae’s¹œ<¹ôÃL-¹ô=€Â\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. l 0¬éÿðFs¹zrrË/#4 endstream endobj 302 0 obj << /Length 132 /Filter /FlateDecode >> stream xÚ=ɱ Â0…á ñ :œÐäÄt­Ì èä A›GË›i "ßöÿ~1WOÇÀ™jÅŠ•‡¨ãÀ/ç|“:Š=PØMßÅÆ-_Ï÷Ul½[QÅ6<*]+±a‰ŸÔ˃.—&›dR‘ Œ1”¸ãYGÙËáÃ$‰ endstream endobj 303 0 obj << /Length 95 /Filter /FlateDecode >> stream xÚ32Õ34R0P°bC K…C®B.K Ïȉ&çr9yré‡+Xré{€O_…’¢ÒT.}§gC.}…hCƒX.O†z†ÿ 0XÏ ÃÀåêÉÈ[žx endstream endobj 304 0 obj << /Length 161 /Filter /FlateDecode >> stream xÚ31Õ3R0P0UÐ52V01P0³PH1ä*ä26Š(XB¥’s¹œ<¹ôÃŒM¸ô=€â\úž¾ %E¥©\úNÎ @¾‹B´¡‚A,—§‹€Œ`¢F0ƒ $;ˆ`ƒ| ‚NÈ€ 8a" àDˆHˆ³ ÍF2-Cµ‘XËðÛH¤eh6’išx-càrõä äE-¶ endstream endobj 305 0 obj << /Length 102 /Filter /FlateDecode >> stream xÚ32Õ34R0P°bC cK…C®B.K ×ĉ'çr9yré‡+Xré{¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]dêþ7À`=ƒ ñS/—«'W ä" endstream endobj 306 0 obj << /Length 142 /Filter /FlateDecode >> stream xÚ32Õ34R0P°PÐ5´P0´T0¶TH1ä*ä24PASs¨Tr.—“'—~¸‚¡—¾PœKßÓW¡¤¨4•Kß)ÀYÁKßE!ÚPÁ –ËÓEA†¡žá Ö3È0àz€`ý™ pÈx€±±¹™¨Ú‚¡€!ËÕ“+ æ|-s endstream endobj 307 0 obj << /Length 94 /Filter /FlateDecode >> stream xÚMÉ»@@EÑþ|Åùwî½Gb •BT(„ß÷H4’]­í]¢)•šÑÍ8+6˜Ñ1|cZ‘GHOóšû¹@ò¶ BJJ7"–¼ï몈ÌÒ Œ endstream endobj 308 0 obj << /Length 125 /Filter /FlateDecode >> stream xÚ31Õ3R0P°T06T06S03QH1ä*ä22 (Cd’s¹œ<¹ôÌ̸ô=€Â\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. v ò õ ö ü¿¡þŒ×1È7€ôÂ2 |±—«'W ¤(ª endstream endobj 309 0 obj << /Length 177 /Filter /FlateDecode >> stream xÚ35Ð32U0P0b 3…C®B.3 ßÄI$çr9yré‡+˜˜qé{E¹ô=}JŠJS¹ôœ ¹ô]¢*c¹<]˜ÿ1üÿ@òãÆ  ìdø0Ô%€Šìd=˜¬“ÿÀ䪓 “u ÿà ‡Úõªfh‘ Çÿg¨ÿÿÃþÿd’ËÕ“+ =Å€ú endstream endobj 310 0 obj << /Length 181 /Filter /FlateDecode >> stream xÚű Â@ †ÿÃAÈâ Íx­xUp(Ô vtr'utPtmûh}”¾‚Û b¼ÓI÷bHø’ü ˜á`sÈ‘ 3áxćˆÎd|/ô¥ö'JsÒ61é…ë’Η|½ÜޤÓÕŒ#ÒoÝäŽòŒŽ ×Ô¥ž¸Û>”Å´)ÐmPÖN®•8•’J@ å…Gáּ㗷 y[õöÏþʽV€Rl"òšç´¦«›– endstream endobj 311 0 obj << /Length 157 /Filter /FlateDecode >> stream xÚ35Ð32U0P0b 3…C®B.3 ßÄI$çr9yré‡+˜˜qé{E¹ô=}JŠJS¹ôœ ¹ô]¢*c¹<]˜ÿ3üÿw@ò20þ‘ì$ÿ)ß"í@d=˜¬©e€0þPŸüÿPHZØBOhÿêÿÿ°ÿÿ™ärõä ä5 †¢ endstream endobj 312 0 obj << /Length 208 /Filter /FlateDecode >> stream xÚíÑ; 1à?XSè,vNàºøH#.ø·´²+µ´P¬ÌÍ£ì,-–ĉ¸Zhkç„o†™‰n×›šÉÖMî´xÑŽ´Ï>õXm©ŸP8gQ8–*…É„ûã†ÂþtÀRòB:—” (Y(‰À¥U— ¬Ê ®€ºá”£ ”3Ô®¨Õ L†žô¦Ê‰X†Sȼ)p~\'ËÈ¡¬¯ üÙ-€ß#†{Æ<{^0ï©?üÏÚÇã˜Ô¸[ìòÀÙOÐ(¡Ýć­J endstream endobj 313 0 obj << /Length 248 /Filter /FlateDecode >> stream xÚmнjÃ0Àñ†ŽP¯ÖÔ6%ÎhHS¨‡B;e(…BÒ±ôƒd¶!C_Ë[ǾBÁ£†â«NW¨d,,~ø„àŠåÅr¡3}iw±ào—ã;¹ýw>ؾàªÂt£‹Ó;Å´ºÕûÃ3¦«»+m§ký`¯> stream xڕѽ Â@ àˆƒÅG0op­z'A+ØAÐÉAœÔÑAÑÙ>Z¥Ðѡܙ^2TèÒÂñ‘´Í—Ì)¢» dJ×h-ÇQ6/.w\ehŽd-š-gÑd;z=ß74«ýšb4)bŠÎ˜¥äù©|!T0æì'‡¡ €ø4, ¡ L”*0V¾}©ÚU´¦vÐ~ÚÝ·'ã¿C¾dxxJùDv×5¼vøw¤Ôá?®/u»˜Ò¹­®ù “ |.ÀÉuÔB)à&ÃþÃ)©² endstream endobj 315 0 obj << /Length 269 /Filter /FlateDecode >> stream xÚµ‘¿JÄ@‡!E`¤µ8¼yÝäH¢E pž` A+ µT,É£åQò)-–[ww"°µúØ™eþ|SÇ›N¹à£ —)—9?fôJEnƒöYJæá™¶ ©.rR6Lª¹ä÷·'RÛ«3ÎHíø6ãôŽš¨'Ä@höXkcz‹nL† 0¦¡>[DPi¬G Ѩ Òèz¸¼C°·t`ÿ:D_íŒdr¨f¸ZÀjF=cø…¸û½Ì?`.-°l[/áÇ;Èb?¥O©y=÷^F¯.Dd/Z{‘ ¯üÐ FåF\ÝnŒ\3w*Èá g7tMßVXv¡ endstream endobj 316 0 obj << /Length 211 /Filter /FlateDecode >> stream xÚµÑ1‚0à’·pÞ lAÓĉ1‘ÁD'㤎éÑzŽÀÈ@À–“j “%ÍÊÐÇÿóÅ”ÅÈp¦6Ÿ#ñÁ 8Cý¨Wýát…4ºG΀®Õ)Ð|ƒûó4Ý.1šá!Bv„<ÃN­†¢í„µÔ’„µ²Äk¤³&ÂJcPýÊèÕÆIãJZkg-…1”?,á˜ÕŸ¹w˜ïknáþçÛ\Z7¯!Gߨ|C›w"^úžlo}•Û«îV9ìàùª¢ƒ endstream endobj 317 0 obj << /Length 193 /Filter /FlateDecode >> stream xÚ}ѱ Â0Д‚…Cpuz_`5Å®µ‚DÔQPQpÓOóSú ùƒšæ*˜Rr<.—„‹äp£À± c4£„+(erQ¦eáp†$¾A¥€/Ì*ðl‰÷Ûã> stream xÚ3µÐ³´P0P0bSS3#…C®B.SC ßÄI$çr9yré‡+˜ré{E¹ô=}JŠJS¹ôœ€¢. Ñ@-±\ž. ÿÁ •bø€HÕ700ØC(ù`ŠB1£PŒØ(|Te€bÀ¤ P¨`ŠB±ƒ©ÿÿ±PP9˜J¨>4à ˆ¦èBý&!^@¥¸\=¹¹6‡à endstream endobj 319 0 obj << /Length 268 /Filter /FlateDecode >> stream xÚµÑÍJÄ0à) ÃB_`¡óšV4*ë ö èɃxR…ôÑú(}„=”ÆÉ”¬aÁ£iá Iæç¬:º¨©¢S:<&­IŸÐso¨+ ŸÈÍÓ+nZT÷¤+T×|Œª½¡÷ÏT›ÛKªQmé=b»%0VÌŸaÍ–Þ÷A;CÃzÈ\Ç×À›;€†÷åP°fà3ÖöËb6³Ù~^“\óï`·³pÁfg œGÔD‡ÔØ¿ìA–ÿG¹CÎF‡_¡˜—<¸X³ï¸Xî)u'J_¥o±Ÿ‰±ÏRpžÌ!Î%XOË›óNæ.ÌÓº|ŒsŽs—eB xÕâþ&3 endstream endobj 320 0 obj << /Length 106 /Filter /FlateDecode >> stream xÚ36Ò33V0Pc3#…C®B.#3 ÌI$çr9yré‡+™qé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]þÿÿ†ÿ?``¨o–ä7d¿r¹zrrðéaž endstream endobj 321 0 obj << /Length 144 /Filter /FlateDecode >> stream xÚ35Ó3±P0P0bS#3#…C®B.°˜ˆ ’HÎåròäÒW0±àÒ÷Šré{ú*”•¦ré;8+ré»(D*Äryº(üÿÿÿ2Éðÿ`¨o^$3^’L²á ù0H9$ÒLÖÉ ’ñˆdÿÃðÿƒýŸÿ €Br¹zrrà3nX endstream endobj 322 0 obj << /Length 252 /Filter /FlateDecode >> stream xÚ}ÒÁj1à . ‚Wo;OÐìZX÷¶ º‡B{ò ‹-=•ÒÒÞ îøJû¾‚£Ùt²(Ú„$á›Â™btUd”Ò5ï"¥|DÏ~à8ç¾kÍÅê 'Ê9s”·|вº£¯Ïû)e(g´àg±š‘Ö5ðJ´Òº1*/G)€÷‘©g½*£­G«=ClþééÀŠ-[VÏÒšÕ÷ªäøC¯ŽŸZ —˜ã7–¢=ˆÚ+q€,A ½€ÖÐwTÖÀ’&u4Ø-ŠUã(ú­qhKê$ÁŸúÓ)n;%<.<2“™!WxSáþóí½è endstream endobj 323 0 obj << /Length 250 /Filter /FlateDecode >> stream xÚ]ѱJÄ@à )Óä²O`åöÊÀy‚)­,DPN±:NEÁn}$!’GØr‹q63ͦX¾™Yößbìöl»1¹àc7Æž›—?жÜ7±‡#îz¬ïm±¾æ)Öýùúü~Åzw{ixº7üäû½!úpˆu\ÇæÄµ€ àØ–khÞÔì’ø¬>Åà¨R»Q¬|jÄbJÍg1£Tà9XÅNå`1ˆ¥ÊÁâ,æ*/rpªÄnL­¼X†Ôbó95#èOõ¢S»••ZªÅÊœëÉ> stream xÚµ’±nÂ0†1Dº%À½8AMP¦H@¥f¨ÔN SËÈ‚•äÑò(yÆ (éÝ96¨c-ÙŸíÿŸÿË"šÍ3Š(¡éœÒ„Òú‰ñ€‰lF”¦VùÞã²@³¡$CóÆÛhŠw:Ï;4ËÅhÖôS´ÅbMÐ7 -èoʼ.+a¡£ÆW‘y!a paN8(Ûe~´NØÀHbƒ+Œ[&Ž|‹EG½ƒM”ýµ°äl”Õ#KË!×ü‰½eó_ô÷¹<þ ÏÛ¾«zzçÀPýè<õëv÷Oýl½¯Îg¶Ô¬¼²ÝÕE´ÎÆêWGWWï•«»ýðµÀOü¢}˜Ÿ endstream endobj 325 0 obj << /Length 175 /Filter /FlateDecode >> stream xÚ33Ô3±T0P0bS33#…C®B.S# ßÄI$çr9yré‡+˜qé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]þÁõJÒì¢õ ì?Àã?0ÅðBÕC©0e™’€B} “B1Õ¨µPG@\ÆüÙ¹ö€Ð+ ` (V9„(P$€£ãÅåêÉÈþ˜†ý endstream endobj 326 0 obj << /Length 230 /Filter /FlateDecode >> stream xÚÑÍ ‚@ð• aˆzÀyZÍÚºf‡ N¢Su *ê¬æ£ì#xô Ù~i—HŸŒòwf–±þÈC}ì ‘ ðàÁ˜/Š.²¡~³?AÝ ó.Dh´ÄÛõ~¬fè q+‚v…XŠ+%„H c™È‡”Ä\'¤“i…ÖzhIi|ÝÓ´&×:/³?åÕ¼w~Rý¿éÇ2}6rÓ¿™CÍë9¥91u£ŒýüÞΪ9õù¿öð³É¿6µ©6þ²-ÏMì©¥ŽÕá]e'›(íü,G%VÉ•b0` Ox1­Ð endstream endobj 327 0 obj << /Length 266 /Filter /FlateDecode >> stream xÚeϽJÄ@ðH±°Mګ̾€ærw ¹ÆÀy‚)­,ÄJ--…á’GË£ì#¬Ý‚Ë39TÔæWÌ÷ó“Enæ¦0Ç ³*L¹2¹~ÖË5ç¦,™û'½itvc–k]pXgÍ¥y}y{ÔÙæêÌä:Ûš[t§›­ ˜¡¦¡‘­¢û6vèZ5âÈ'ŸÊ×@ìOÈïè˜6ü¢úaÏÌ&è›~`ûQ°Líɤ䀄hÂADDÜND×Ð(Anê%åè¥=Ù¨„Xˆö²ç» ûŸÎ}d ò*‰ß;¾AÙ‹d|÷H×£‡MùH+§Œò“>oôµþ ß„k endstream endobj 328 0 obj << /Length 158 /Filter /FlateDecode >> stream xÚ33Õ32W0P0b3#J1ä*ä2µòÁ" ‰ä\.'O.ýpS .} (—¾§¯BIQi*—¾S€³‚!—¾‹B´¡‚A,—§‹‚ý0`À 0ü?À¤ê€d˜–o¨Óü `š½¡L3cÐ `š‘ }L3 D3@h†Q'ýÿ˜büÿD±cñ&ÍåêÉȃ@ endstream endobj 329 0 obj << /Length 207 /Filter /FlateDecode >> stream xÚíÑÁJÃ@à?äP˜ƒy„Ì è&±Ù^!`B=õP„BÛcAEÁ[|4¥c’õŸZ/9öìaù–vgaÇÏ®f¥fz­—…úR}¡Û\^Äç 3õÓßÊf/U#n©>wÏX\ó o¯ï;qÕb®Lk]ñΓ4µ†¾Ð†~,â´Ÿ¾O~œÌþ=×[ó™ò±yR“+å>¢ÉŸçÁ»:ᑸgF#Îæ‚bnÌö8&kufÒY f°§0Aje¹käQ~­uI endstream endobj 330 0 obj << /Length 321 /Filter /FlateDecode >> stream xÚuÒÏKÃ0Àñ+„a¯;¹÷h £;æ{ôäA„Š'aŠ‚·Æÿ,°¤7¯õV¡4¾¼N¡íz|Hø&é">NN1Äb\D8ñ!’/2Ih2ÄùIóåþY.SÜ`’Èà‚¦e^âÛëû£ –WgÉ`…·†w2]¡µ5(kµ°v?=k@Ø@•# ™ðsñGÏ0q¤áŸÐ¢˜å´–¶ì8n“Ö©‚©vœ´Ië²’é¶<§=~ULŸ¶l‰a—b[3½Ä'qݧeŽ*ª&š!ŠšR3-ô -¥*C7â.‚ ê)E{ŽsÜ¥ )š©˜“.ó ø%s–¯©Úc^Åô Cýa—ßÄšéýhê_ï£eòÛÓ¯0H:}󦃬\4˜Ðeé¢~Ð8ìqCã ¡«vg—穼–¿ßí¹ô endstream endobj 331 0 obj << /Length 294 /Filter /FlateDecode >> stream xÚ]ÐAKÃ0ð+„Ò^= —O`Ó³,Ì ö èɃŠzœè¹ýhù(ý=îPú|IÞÀíðø‘tû'ùÛÕÅêR½¤±VÛ¥~/ÕNÙŠÖÆ/ý‡·OµiTñ¨m¥Š[ÚUEs§¾?T±¹¿Ö¥*¶ú©ÔæY5[Ý"v±?p¨ýì=Íw,ÐÐ~F&ô›”“rX“ ûBvÐ{[.*:oÝËàbó}LÆ”= ÊihØOôÑÖ[ó¾¿ùý Âz<¶š¢;Œ¾²Ã=…‹Á¢‹J> áà›òóP/%jBE_¡ R¢.T¾,ò ¾yÆžó ®¼ì3ò ¤ÿÔˆåâtªºiÔƒú‰f…Ø endstream endobj 332 0 obj << /Length 251 /Filter /FlateDecode >> stream xÚÝÏ1KÃ@ð-úŸfßÝ€,b¼?ÄßÉBèþ_T|ÿ%t_ endstream endobj 333 0 obj << /Length 213 /Filter /FlateDecode >> stream xÚmοŠÂ@ð/,˜âö„ÐÍÊÚ þShuÅq•ZZ(Úš<$y”<–!q÷î,äŽÌ ó1v<qÆ–†í˜­á­¡ÙŒcÙÑÏf³§iNúƒmFzƤów>Ï;ÒÓÕŒ é9ξ(Ÿ3”Ð5€¨ !+ô‘ÖP®LîpšW.Pe@"€QmìêÚ¢¼ iÂ"õñ¬Ž1ÅÅ”âü"Ú?´O’VHnq®LUOUoê*ýD6¢ói|UÔ´ÈiM×¢Lì endstream endobj 334 0 obj << /Length 210 /Filter /FlateDecode >> stream xڽн Â@ ð„B–>Bózm=ë(øvtr'utPœ¤v¾IÁè¤Këõª: Þð’#ù“–Ûð=vÙçºÇ²ÍA“—mHJ]t9Ug±¦nHbÊR’ê2‰pÄ»í~E¢;î±G¢Ï3=hNaŸ1ýŠ/kFˈ²Ü‰©S”lx‹­ð騫`pÌ:F§l½T¥veü¶V™ü`ü9ó©zïÕªT¹ñbr^Mæ³ÉRV ¨R'Œ:¹¹q@ƒ&ô™x endstream endobj 335 0 obj << /Length 193 /Filter /FlateDecode >> stream xÚ1 Â@Eÿ00MnÌt³f‹t¨` A+ ±RK E;19Ú%G°´uÖ`akóŠ?þü±éÀäœrÆ}ÃYÎÖðÖÐ2+bÊvØM6{*+ÒKÎ,é©È¤«ŸŽçér>bCzÌ+Ã險1C½D¯(p.ˆ¡îÜ lQ4‘CÝ!i¾(¼]£–õWç¨!ÉpE#kÊ%Ê7)ô©Öó%cà\Üêæ_p€’0šT´ 7ê8>Ì endstream endobj 336 0 obj << /Length 210 /Filter /FlateDecode >> stream xÚ½Î= Â@à )’ˆsÝĬ¢…üSZYˆ•ZZD´“o¦7Ñh—B\gw±J)Ø|ÅÌðæµ‚F3¤€"ª‡$;ÔŽhbŠRò0 ¶´›Õû Š9I‰bÌcÉ„ö»ÃE: Å´ÄdHà ¨’žÑ5:ÿPi=uekù“=B·Ð«jîü¼›nå_t+k-×±ÕäœJfÆ÷f¥LûËþåîWn噞¾é\y郧¼ Uˆ;ë«3ë¼y…£gø£Ðz? endstream endobj 337 0 obj << /Length 204 /Filter /FlateDecode >> stream xÚuο Â0ð/t(Ü`_@è½€¦±:YðØAÐÉAœÔÑAÑMj-â#8vëiQp0?¸K¸|6隌N¹c8ÍØÞÚSje˜°í57ë Ò N-鉌IS>N[ÒƒÙ é/ '+*FŒà ®P†W R7HU®8#ôè#òÈ;Äo\ކÈ]>øòËãK-§AZà/å‹Ë/²>—L^¾T^('N"†nhAUhwdòZ#ª= d# šÓr!Iš endstream endobj 338 0 obj << /Length 143 /Filter /FlateDecode >> stream xÚ32×33V0P0bcc3…C®B.cßÄ1’s¹œ<¹ôÃŒ ¹ô=€¢\úž¾ %E¥©\úNÎ @Q…h ÊX.Où ÿ?00°``?ð‡¿ñƒ<Û3þc°â:fø„ äâÿÿÿÃ1%æP}ÃPÿÿs¹zrr›_¯ endstream endobj 339 0 obj << /Length 261 /Filter /FlateDecode >> stream xÚ•=NÄ0…_äÂÒ4>B|Èå®´,) ¢@T@I‚íº£äF('à 9e k͇b (H¢/öøÍË›tG‡­¯}ëÚÚwï×È£ð]ó>n~ŽndÕKuETg¬KÕŸûç§—{©V'žûµ¿fÓôk^ÀÄ".Ù·€…ýtÑDŠ©˜\0_ˆfÄ+`G•Ït–ÿá~ïì¦Î€~…ŒÜ¡ø°ëïLcx«cØã ¤§2%õIi—™(ئ4æõ¤ÊrB8±F‹ü†+å ƒòOƬ™õ›Ü«>Q=9'å|¸ ùVÅ)æX,Èi/—ò mh endstream endobj 340 0 obj << /Length 165 /Filter /FlateDecode >> stream xÚ35Ð32T0P0b 3c…C®B.S ßÄI$çr9yré‡+˜˜ré{E¹ô=}JŠJS¹ôœ ¹ô]¢ÆÄryº(0þ`‚ÿ$;˜d“Œt"™ÿ€Hþÿ @Ò†ÿüÀü€ñçæ Œ¿€Êƒ3þg`øÃÀø‰üƒDþ\$3Ø‘ÿÿ¨ÿÿ™ärõä 䄆y endstream endobj 341 0 obj << /Length 124 /Filter /FlateDecode >> stream xÚ32Õ34R0Pc#3C…C®B.CK ßÄI$çr9yré‡+Zré{E¹ô=}JŠJS¹ôœ€|…hCƒX.OÆ ìø   PœÀøƒ¡†Ø00ÿ‰Ð1ÿaøÿÿq¹zrrÞÉHT endstream endobj 342 0 obj << /Length 213 /Filter /FlateDecode >> stream xÚ½ÎÁJÃ@à”æ`_@ì> stream xÚ32Õ34R0Pcc3c…C®B.#rAɹ\Nž\úá F\ú@Q.}O_…’¢ÒT.}§gC.}…hCƒX.OÆ ÿaˆýóÆÁ˜ÿ0üÿÿ‚¸\=¹¹ì±WÇ endstream endobj 344 0 obj << /Length 186 /Filter /FlateDecode >> stream xÚÝб Â0à  ·ô äžÀ¤¶’Ej3:9ˆ“::( NÚGË£ô:¦´4¦‡âÈqðqÇéé8ŽHÒÄ·Š)‘tŠðŠJRWI¿8^0Õ(v¤$Š•Ÿ¢ÐkºßgéfAŠŒöþÌuFÌòX àlèòÀYhFAáQòâÉJ*ÃË‚YàuÎ*>P«òÎ'sxõ'`€ ‚ü¾çÊ·³s×ü—·ø3Ó endstream endobj 345 0 obj << /Length 154 /Filter /FlateDecode >> stream xÚ35Ð32T0P0b …C®B.S ßÄI$çr9yré‡+˜˜ré{E¹ô=}JŠJS¹ôœ ¹ô]¢ÆÄryº(0þ`þÃÀðÿÿÿ iÃH~`~ÀÀþóóæß Œ?3€Èÿ ÿ!‘ȃ‹d;òÿÿõÿ “\®ž\\ep endstream endobj 346 0 obj << /Length 188 /Filter /FlateDecode >> stream xÚ1 Â` …_q²ôÍôïßVèd¡V°ƒ “ƒ8©£ƒ¢›hÖ£ô;5ƒÐIä…¼¼D“qÀ>‡<²Y>X:S‹èwŠNö'Js2c2 ‘ÉäK¾^nG2éjÆ–LÆ[ËþŽòŒá¼¸ïH5pG§Æƒ †%ÜBáÒx‚ʃÌA­xNÓƒX:í¿èí>Å´ùÙëI=îJŒR³h4 ‰Vê\_èž¡yNkú¤PM endstream endobj 347 0 obj << /Length 208 /Filter /FlateDecode >> stream xÚ­Ï1 Â@ÐYR¦ñ™ è&²¢] F0… •…X©¥…¢`er´%GH¹!Áu6 ‚Z‰Í+þ‡Ù¿¿×ȧ>uƒ©!)Ÿ¶P)N}ŒžÕfQ‚rIJ¡œrŽ2™ÑéxÞ¡Œæc PÆ´âSkLbÚÕF{Æzéä`ªÂ)Á©3¡ApÚ€¸\A4ikh+ðæ/;Ň¥ÕýÉ/׊÷y‰ÝÓ.L[ov3‡¢ÎÞ_ånBk/cCîù¿¥à:Õ˜òMœ$¸À;| endstream endobj 348 0 obj << /Length 223 /Filter /FlateDecode >> stream xڭϱjAà¹baïœHö÷ð‚`¼BÐ*E°Ò”)H!ÑG»G¹G¸òŠÅuγ°ÐFl¾bvùç;x$sŸŸ’Œí Û˜7 }‘MesšŸÖŸ4Îɼ±MÉÌdN&ŸóÏ÷ï™ñâ•2~—¨å<:€öEôö•øLtˆ†jt‡ÐôºD°EX pèP£ýYù¼Ãuwéo¤µ»Ú½m‡¶OX6JCíTè:¨‘knùGªC_ˆê 8¥=PÕôÆÎ×—Ò4§%ÙÕo¶ endstream endobj 349 0 obj << /Length 145 /Filter /FlateDecode >> stream xÚ36Õ34S0P0bcc…C®B.c4H$çr9yré‡+pé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]˜?ðøÿÁþÃÿ~üÿxøûÇæ?ÌŸ›ÿ0~gþÃø „0þcH`üÃÀ€‚Ð3Íþÿÿs¹zrr“»M[ endstream endobj 350 0 obj << /Length 203 /Filter /FlateDecode >> stream xÚ-ÌAjÂPà?d˜70súò´ÔB³t墄¶ËB[Ü™£½£ÌâÊ·yŽÆÅ·˜ÿŸ™âqR–œqÁ–‹‚§–¿,ýQ^i˜ñ4šÏšÕd6œWdÞ4&S/y÷¿ÿ&3[ÍÙ’Yð»åìƒêãè¶qð’¸gc$Oˆå€èæv°½òw €žªx ‚4tHB8„ÇàtmÔ¨uˆUäuÝËàpÕÞùAÛÝDÒ#rç&iN’Bô¯KôZÓš.8W¯ endstream endobj 351 0 obj << /Length 151 /Filter /FlateDecode >> stream xÚ36Õ34S0P0RÐ5T06P05SH1ä*ä22 ¹æ™ä\.'O.ýp#s.} 0—¾§¯BIQi*—¾S€³‚!—¾‹B´¡‚A,—§‹ƒVl†+ ø313³±üÿÿþC1#TŽŠ8føÃðˆ€qã{æùv ãþ àrõä äwSM6 endstream endobj 352 0 obj << /Length 160 /Filter /FlateDecode >> stream xÚ35Ð32T0P0RÐ5T0±P01PH1ä*ä21 (˜Bd’s¹œ<¹ôÃLL¹ô=€Â\úž¾ %E¥©\úNÎ @¾‹B4РX.OÆ þÿ`¨G%Ù00ÿa`þÁÀø‡¢fŒ$Ð èl0É÷¡†Aæ?ƒƒÐ?ò €$ûÿ@’á?P—«'W rjy endstream endobj 353 0 obj << /Length 193 /Filter /FlateDecode >> stream xÚ]Í= Â@àYÑÖBÈ\@71‹ÁJðL!he!B@- 19Ú%GHiˆ£˜¬Ø|Å{ðž ºG.õ¨ã‘ê“? ‡'T>‡.©o³=à(D¹"壜qŒ2œÓå|Ý£-Æä¡œÐš‡6N¨(´]¤¿Ú9ˆ¬'Àýã {‘¿6*}èÒ;‘”:‰•Úf›ºVi§ucÖf­¬U)ž®1ç[¾ŒŒmŒ?£ÿ6*qâ_¦ÀDµ endstream endobj 354 0 obj << /Length 248 /Filter /FlateDecode >> stream xÚmϱJÃPà? œå®ÄœÐ{ÓjÄÅ@­`ÁN"ÔQPQpöNºøP÷|Çëºd§Á6¥”3|pþ?=Üï±á.ï%œö¸wÌw =Qjx>ÿ—Ûê礯85¤ÏeM:¿à—ç×{ÒýËSNHø:asCù€ëú³®ÂºXWUÈ<&.*;d (‹ÝF‡åÒÈa»Ñ‹¨ > stream xÚMαJAà?lq0„lk!Ü<›Ã ±8ˆ¼BÐ*E°RKÁHÒzûhû(ç¤Üâ¸uf«ûÁÌÿLÝÜ4/Y_ÝðíTt z%õRKýxÿ¢MGnÇõŠÜ“tÉuÏ|ü9}’Û¼> stream xÚ]ÏÁJÃ@Ð; çÓxÊé%'S~Šé•ÒÄ\#¾Èþ^/4ÏIßqš¾1wÒù-¿¿}<“ž¯®9&½à{õ@ù‚û¾ ûÚ7l¡z P@?­[¨V„qtÖPíA•ËÀ8.ì=®ŽœõÐÖƒƒÁ÷ÈÙdFÕDb+¢Ý8w•óË:+cüwè9ð<±Ž<#O©Ê¬jÈ\©êÔ¯RÕÉ*¡¸µñÙ•mm`g‰´ÌiM?ÍAP‘ endstream endobj 357 0 obj << /Length 199 /Filter /FlateDecode >> stream xÚ5Î= 1†áoI!L³­…¸s“5"Z-øn!he!Vji¡h½9Úe`i!Æм0 “ëå#vÜ—ã‡ìÇ|ÈéLÞËìtÔ‡ý‰&%Ù {Ov!·dË%_/·#ÙÉjÊ9Ùosv;*gœÅÃ7 ªºÀ $O‰y¢ óÀ­»$mà}RKŠ ©ð*¨‚*¨‚*¨‚*IQ’ ÿ¼$¢’ ÊQ&ˆ2ªŒª–îJuWªk D$òå_h^ÒšÞ8.G£ endstream endobj 358 0 obj << /Length 191 /Filter /FlateDecode >> stream xÚ½1 Â@E¿¤Lã2ÐÍš¸•DˆL!he!Vji¡h'š£å(9BÊ¢Ž»… ©…å-ü)fþ‹‡ý‡soÀ±f£y§éH‘‘0d¹Éö@iNjÅ‘!5“˜T>çóé²'•.&¬Ie¼Ön(ÏÞ@ð*€Ä/¦SC^¯Â^‰$NÐ-8ßb,(püª OAý´-¿ËiUÛ¹®ŒÔ*¾m_ ëÀÚ°^œ!ëêc¦9-é ÷@m endstream endobj 359 0 obj << /Length 126 /Filter /FlateDecode >> stream xÚ31Õ3R0P°bc 3C…C®B.#K ßÄI$çr9yré‡+Yré{E¹ô=}JŠJS¹ôœ€|…hCƒX.O† Ì@ÌÄò@\€ýÿ†ÿ <ÿÃy¨øPÆõ€þùÿ†¹\=¹¹sUÇ endstream endobj 360 0 obj << /Length 242 /Filter /FlateDecode >> stream xÚu±JÄ@†ÿ%ÅÂî fžÀ$Þ,ăóSZYˆ° –‚Š‚…H³VøÀ2u@JÜ&lá»lD€ÛáÀª˜mwjR_¯@>Ä ; lÒÝ?hÙv* àØ„žç÷°'Ø!¶nüE¶5øi>p §{N÷› áhd42žFJgÄaZt¦Ej‘Zô¦!Ù'äÄ’h }ú ¹läV~h€p endstream endobj 361 0 obj << /Length 246 /Filter /FlateDecode >> stream xÚu±NÃ@ †eˆd!ò•Î/—kBÔí¤R$2 щ1c¥‚èœ<Ú=Ê=BÆ Uƒí£Lp’¿á?û·õ77×Kª¨¡«%5ŽZGo?°nY¬¨­ÓÏë×Ú'ª[´÷,£íèëóðŽvýxK톞U/ØmŠ#øy˜çÙTLP„ü%d'¸dý`†àƒÿÀÈoÁfAÙ'~ÁÅVüN\™ìÌ'ÁÈ(u€Ëˆnä(ã¹E›u,¹¨_Ú¡ˆgŨ¸x·›qÂGÞåc/VûôÃJ°s5M#ŸÊ1%”²’Ôð®Ã-~nn endstream endobj 362 0 obj << /Length 185 /Filter /FlateDecode >> stream xڕϱ Â@ €á–B‡P:w’> stream xڥбjÃ@ àßî@‹_ 4zö|±k:ŦP…dʤc! íÚøÑü(÷=»… éØåt:IüùãÄSÎù~¹çÂóÞÓ‘²BŠ)ÙïËîƒf¹g¹W)“«ÞøóôõNn¶xfOnÎkÏ醪9 †mÀvèa‡ár¥U‚Ò(€);ø'Q/$C 3Ì!ê`.zÆ7l(ki×Ò?n®!¹¡½aªœÙðýÖ먠luòAIuå“2胤‘ Ò«âq«Ë4”2BýT´¤Ð]E endstream endobj 364 0 obj << /Length 249 /Filter /FlateDecode >> stream xÚuϱJÄ@à?¤Lá¾€°óšäƒ•óSZYˆ ¨¥ ¢m²¶²òŠàúçr×| 3ËÌüõÙéJ ­õd¥u©M©/¥|HÕ°XhS-ç7Yw’ßkÕH~ͲäÝ~}~¿J¾¾½ÔRò>”Zá‘“=Íx~]Äì™Ï<ÈpÞ²vØ=ÖÛy‘ñK˜ÖÍÙÀ”=z&>賑ix o@ʺ\ur'¿Ðx; endstream endobj 365 0 obj << /Length 202 /Filter /FlateDecode >> stream xÚ•Ï; Â@à‘A’ œ èæM QˆL!he!‚ –‚Š‚9Z޲GH™Bˆ;‘RX¸ÅWÌî?³ã#—l hè’ïSèÒÑÁ+z‘*Úúß›Ããņ¼ÅB•Q¤Kºß'ñjFŠ„¶Ù;L²Aˆ™0ÓªªÞ]ÊWCÁÈ‹z&÷½\¡e (tÈ ¦ÏXLÝ·žÀ!À)&ާŒ«eÜ~îÙR27é¢uÑkdóƒ¿1y ]m€ó×øsðXp endstream endobj 366 0 obj << /Length 277 /Filter /FlateDecode >> stream xÚ]±JÄ@EoH˜Âü€ì¼Ð$›˜jÙÀº‚)­,ÄJ--… ɧͧÌ'Œ]аãͪ §xóî}÷½êâ|)¹Tr¶”ªºçB½©²f1—ºœž^Õ¦UÙ½”µÊ®YVY{#ïŸ/*ÛÜ^J¡²­<’?ªv+ˆ'Ú@ï-0Å#"‹ ±ÁÉ|'İ+§„Y Xÿ¢9"1ÍÀfm)ÓŽzÂé+¤~èxãû/‹È‡áÞ3FãY g…,Ú@ç'D®ßÓV{:RRh4…†zËÝQc;ÎuDìÆ*€ÿ` ‚"šAƒh^á°¥K§†™‹¢p†´Ç[…«©«VÝ©o‡–qg endstream endobj 367 0 obj << /Length 252 /Filter /FlateDecode >> stream xÚuÐ1JÄ@à?¤¼f. æ]@“lbÚuSZY,Vj)¢h·˜ÜÀ+Í ¼Bnà+§‰o²±Øæ˜aþyÿTg§+ιâ“W×?ôBe­›9×åþäþ‰Ö e·\Ö”]ê6eÍ¿½¾?R¶¾>炲 o Îï¨Ù0â@:)vrÀ˜"yÄ‚IL¤i§ØN×™vFo»™iÁô‡ƒ„€ »`%<)Æ¡•ÄáYt o‰%úøøS°KŒ uÄÄ+á¡Pç÷ ìË´°N»ý2(ÚÜvðGáŽÃU*ÆÓD“šF ÝÐI2v: endstream endobj 371 0 obj << /Length 169 /Filter /FlateDecode >> stream xÚ35Ô³4V0P0SÐ52V01S0³PH1ä*ä2¶Š(XB¥’s¹œ<¹ôÃŒ-¹ô=€â\úž¾ %E¥©\úNÎ @¾‹B´¡‚A,—§‹°>!"dà„ ˆ° ¢N|€˜LÌ`¢F°ƒ 2~¸éhV LG³n:N+¦£YApZA à´‚d@.WO®@.ÁW8‰ endstream endobj 372 0 obj << /Length 183 /Filter /FlateDecode >> stream xÚÝ̱ Â0à_:né#ôžÀ´ÅرP+ØAÐÉAœÔÑAÑ9}´>J¡£Cé™ÄAg—/ÿq9ŽÓ˜#NliÍÓ b:“v9rÑ=ö'ÊKRÖ ©…í’*—|½ÜޤòÕŒcRoíš•0w{!ÞaD*`$uX~¯Â~ d-B;jd/¤~b:û­ré°š¯~Ä“âΆՌ‘Þi?Bó’ÖôuÎÇ endstream endobj 373 0 obj << /Length 266 /Filter /FlateDecode >> stream xÚ}бNÃ0€a["Ý’G°Ÿ'j•¶ –J‘È€êŒ@°A“Gë£ä2z1¾³ ‘¥pR¤Ï—å×­Ö‹*ÔÒ«¥ª깄W¨pWà<`[ƒ~PÕôß‚®oÕûÛÇ èíÝ•*AïÔc©Š=Ô;ÅüX†)Ä8‹Ì¥È];éN ŒëæÐ¸>àëŒom n]hå} ú&$ŠÎ$ÈNÆEȀ܃ó6¶JJ”ìY€ñ ÄK&Ž”øù0xØx\G Tz†óƒˆqŠ á¨AÑ9¡Åäx`IÀ5›€¢ ¡Ãd¢„K'Àh>,Ã(l³ÿ®k¸‡nµ> endstream endobj 374 0 obj << /Length 217 /Filter /FlateDecode >> stream xÚ¥‘± Â0†O„[|ï Lk%v+Ô vtr'utPt®ÖGé#tìP“öRHG „KÂÿŸ[óÐ'½eHrAW(—ºöLi..wŒSG’K[}Š"ÝÑëù¾¡ˆ÷kòQ$tÒ2gLRfU-Õ‡Y2k€Èì¦ãTuœè‡†c•3‹–£ž¥CÐ~áPÇÒö³ý­ëoÆ~M°Èä(˜À,Ý\Ã<6XÿûÊj—ZÀ¥ú“½¬qûõÿR±ß’ýw~#•wsSýüÜyà&Å~دæ endstream endobj 375 0 obj << /Length 198 /Filter /FlateDecode >> stream xÚ}ѽ Â0à”[ú½'°­bp+Ô vtr'utPÜì£õQ|ŸÀxm.ƒñàø¸ËIÔd)LqD©Æ¨†¸Ïà*£:mËv`w„¢‚d*ƒdN]Hª^Î×$ÅrŠÔ-qCK¶P•¨»x Ÿ"oS%°Âzgs6¶ÖÆÈQþTÖ½1ô(ºý#ǘÍYÝI×ø«÷Y{ö§soŸ¿¤p ¬oCGé±qÃïÌjcÈæº1ÿÖ[»Â¬‚¼-GÇ endstream endobj 376 0 obj << /Length 279 /Filter /FlateDecode >> stream xÚ½ÒÍNƒ@ð?!±Éì”yªO%©5‘ƒI=yh<©G½–>Z…GЛ‰dÇÙ~?®B¿ì² ÌÎòãbÌ|”sYrqÂ÷9=Q™±?‹S›¹{¤iMé —¥—:Li}Å/ϯ”NççœS:ãEÎÙ-Õ305õ‘ŒÂ€&ŠJ±^†™UÒ: Ò'âOgk ŠDtºQTvi:E¢7ÅÐé"C,­"öÐÕˆœn³2 àCbXîÞð&ᾡƒ;ÈÿÀ¯k~Âõ Uý ûå>¬>}„<â=ZƒÜï¦qõBÙÅÔlƒ“M”‘lÃõq¿»~„–Y“t8À¦mº¨éš¾JfŇ endstream endobj 377 0 obj << /Length 102 /Filter /FlateDecode >> stream xÚ3¶Ð³P0P0as3#…C®B.cßÄ1’s¹œ<¹ôÃŒ¹ô=€¢\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. ÿ `°ÿÇÀ0J@ l!ÄåêÉÈÝ3x< endstream endobj 378 0 obj << /Length 268 /Filter /FlateDecode >> stream xÚeÑ1JÄ@ÆñR^“læN&ˆ±2°®` A+ ±RK EAŒ'ñ,{ñ[n!ß7//";0ð{3ð‡aÃ^h]íöe·­;hÜmàn™kŒ¸¸¹çeÏþÒµ ûS9eߟ¹§Çç;öËócدÜUpõ5÷+ãHD]Äšññ4Ä5îHð-XÅ[Ü*^ãaT¼Ìâ„E B(QTl…!GÈÅPœ°VT¤PL@1Å £‚fHZ!i…RTHѰUäI+¤8aˆºøiøRTxP CnÈ ´‹ÁÐ*Ci(v2¾h¤˜>Þ G†Åø¤ç þoö² endstream endobj 379 0 obj << /Length 269 /Filter /FlateDecode >> stream xÚ½’=NÃP Çeˆä%Gˆ/€^4e‹Ô‰ H0u@€‘sr´%GȘ!ªñ4AEyƒó{~¶õíŠͨ ‹œ—T\ÑsŽoXÌÅ)îkyzÅe…aKÅí¸1Twôñþù‚ay¿¢Úsší°Z”°3·ó`À]Â|#±¼H îR ÈzM“juë3h‘X"ÍPs„ØŠÉ»WåRM€º!s 3Uå\§ØS¨×}øšÿ„?ô¸æ œù¯±?0é˜õ°›{Ÿ[Akw³M§±L¯Qê®ÉÕ%¼4N2dî¶ ,§ùµ [ÈqmpSá~†Ð÷ endstream endobj 380 0 obj << /Length 169 /Filter /FlateDecode >> stream xÚ37г4V0Pa3S3#…C®B.3C ßÄI$çr9yré‡+˜ré{E¹ô=}JŠJS¹ôœ€¢. Ñ@-±\ž. ÿAà˜þ£@é öÿÿÿÓpÌÿ¿L³Ciæÿ ôšh2vú™4vóÐí…¹æ>þÿ(î‡øêq0}B…Áj†. òMšËÕ“+ _r»e endstream endobj 381 0 obj << /Length 151 /Filter /FlateDecode >> stream xÚ37Ò32V0P0b3 3C…C®B.3˜ˆ ’HÎåròäÒW03æÒ÷Šré{ú*”•¦ré;8+ù. ц ±\ž. öÿÁàNúC=ý°¢ùÔ7€hæ?õ šñO˜f€Ó5ºFW@hBô-Gˆf€Ð £4-Š®8i.WO®@.Ú¬§ endstream endobj 382 0 obj << /Length 201 /Filter /FlateDecode >> stream xÚ3·Ô3·P0P0VÐ5T07W03RH1ä*ä27 (˜Cd’s¹œ<¹ôÃ̹ô=€Â\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. ÿ Dàg1Øÿc‚z †°ìFYƒŽ%fÕ ²þÃXü`Ö8ë³c–Áúd1ÿ?$YŒ ;ˆÅðHÊ' jûˆÅŒ`“€àÿf1Ë0 ”l@Xò ŒI.WO®@.¸ëš endstream endobj 383 0 obj << /Length 226 /Filter /FlateDecode >> stream xÚmϽNÃ0ð”ÁÒ-y„Ü P'4­Äd©-`b@€‘³Û'è+õQ"ñÞè`õ8;UÀÃO¾ó}ȳfÒ]qÃS¾hyÖpwÉÏ-½Q7פ†Óñåé•=Ùîædo4M¶¿å÷ϲ‹»%·dWüØr³¦~Å0²à$…HÊX `ÈÕ~@}€ ¨ãI ÏVñ¤Vª&$‹}RÏË´`\Se½ì´^Bê•Mš#¿3]žéGódþ±>àr½Ë½^ôR|K¬æK¢ÙJ,äŸÿÐuO÷ô„?}Ï endstream endobj 384 0 obj << /Length 205 /Filter /FlateDecode >> stream xڽѱ Â0à“ …[ú½жÔè(Ô vtr'utPtn-ÒGèØ¡/…â$fùàBŽû/r<S@õC’’FíC<¡ ¹ÐhhovGŒSô×$Côç\F?]Ðå|= /§ÄÕ„6üf‹iB ÁýÇ"þOV]<3ŽÐhÅT0)™¼Š)À­™œ»E7]DKþ2ôº)~BGkÑò>K3çsjîýåfƒU•Ù(³ž ]Ø(‡Ó7ÿ£p–â 9  @ endstream endobj 385 0 obj << /Length 207 /Filter /FlateDecode >> stream xÚαŠÂ@Ц¼fþ`ó~`w2› ²‚ë‚)­,–­ÔÒBq»…øiù”|BÊ)†¼}ÅÞæwxwn9zó#ιàWÏeÁå;ï<©k˜Éõe{ YEnÃŘÜBcrՒϧß=¹Ùê“=¹9{Ψš3Pw€2‘u›µ‹é ¦‡i,Ú¨dW‚2½aCvÚ‘4Cä9êáŽÖãeýºÛ©Ž F.IiL«w¶Ö©Äáº}U´¦*[e? endstream endobj 386 0 obj << /Length 211 /Filter /FlateDecode >> stream xÚ½Ñ1 Â0àH‡Â[z„¼ h švª‚ÄIãM¼Jobà˜¡ôùÒˆ.uÉ^Hø“è´—bØU¨5&Ü)8‚V\ìc2ô+Ûd9Ä+Ô â—!Îçx>]ög‹1ru‚kÞ³|‚‚[h›‘¾#FùWLé¨rH"‡yDw†Š€“Ä3+šëVDu“3ªšíÒã‚0/-ÐOh=ÚØ–,Ò¾s¾R±Uܯ!QéâÆHª%Ã⦥€iKxÆ.¤¼ endstream endobj 387 0 obj << /Length 208 /Filter /FlateDecode >> stream xÚmÏ1jÃ@Ð/T¦Ñ ²s{¥h!©"e°Š€S¹0©’”)l’Î MGѶT!4[ÛÁ;ðŠ]fæ¯{š»gN8ãYÊα{äÏ”vä>•˦—o**²v Ù•^“­^ùgÿûE¶X/8%[ò6å䪒é€H êNš@š¼ ¦‹FÄ>÷J4˜^É{„ã…Úÿ!gÄ#¸æßñÐ…w¨oÑɱ9£éŒ&ÀƒÂK¨ ÛCÚÐk‹é`DZýÇ8 eEotWÔqœ endstream endobj 388 0 obj << /Length 160 /Filter /FlateDecode >> stream xÚ36Ô37Q0P0b3…C®B.c3 ÌI$çr9yré‡+›qé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]Øÿ000Ôÿg``üÿÿû?ù ò?ì0بÿÀPÿFü?%ÿ7€ û@‚¿H€´’Jüÿÿÿ:A¦Qt#êÿI4‚ËÕ“+ ÆEE endstream endobj 389 0 obj << /Length 261 /Filter /FlateDecode >> stream xÚнJÄ@ð9Rl³oàÎ h²^ÎÃjá<Á‚Vb¥–ŠvBòhy”ø[nvüïxˆ …)~0³óEÖþètÅ ¯øð¸áµçÖóƒ7Ï¦Ý Ûð‰ß?Ý?™mgên7¦¾@ÞÔÝ%¿¾¼=šz{uƈw|ë¹¹3ÝŽ©’¡Š$¹™DrŸ+YÈœ—3õÙÂ)»D!æÓ{ˆ¤a±‡ó¿üÙ¥sö¡Î§²k¤%öP2‘Å=·Pù¾t¿ÔQtÁ¨ÎeRêPGu²*º&¸Ø£ß¦â2åo«?}ÕÊØ£×Æ€ínrQ-î.»‹j,Iz ðS‰Ìyg®Í']¨T endstream endobj 390 0 obj << /Length 159 /Filter /FlateDecode >> stream xÚ35×3W0P0bS33c…C®B.SC ßÄI$çr9yré‡+˜ré{E¹ô=}JŠJS¹ôœ€¢. Ñ@-±\ž. ÿ@à?ŠB1ÓŸ²ÿ¦þÿQÌÿÿ7)þÿ)9†ú@ʤ†ù„ú¡0ÈÿRP¨lÃà¦þÿÿÃþÿÿ¬—«'W ³ušË endstream endobj 391 0 obj << /Length 129 /Filter /FlateDecode >> stream xÚ3²Ð³0S0P0b#33…C®B.#C ßÄI$çr9yré‡+ré{E¹ô=}JŠJS¹ôœ€¢. Ñ@-±\ž. Œ?˜ÿ0°ÿcàÿÏ ÿ¿ R@@eøÀ†ÿHˆý?3-Ñÿÿ?àˆËÕ“+ !;X endstream endobj 392 0 obj << /Length 209 /Filter /FlateDecode >> stream xÚÅÑ¿ Â0ð–…[|„Þ˜­¸ þ;:9ˆ“::(ºªà‹õQÜ\;v(9“ïÕÕ„ð#Éå#!y·ÝÏ8åŽy—{Þft > stream xÚ3²Ð³0S0P0b#s3c…C®B.## ßÄI$çr9yré‡+qé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]þ3üGBìÿ˜7úÿÿq¹zrr³Ô] endstream endobj 394 0 obj << /Length 191 /Filter /FlateDecode >> stream xÚÝË= ÂP ð”…,ÞÀ—تtøvtr'utPœ´G{Gé*:”÷÷=GA IÈ/ É{n&‰øÊ»’¥²IyÏy">Üèë Ž’'OÜ–ãb*ÇÃiËñ`67d™J²âb$%]S€’`}F¨] R¡qj˜KäOmºVuŠlŸô­r/¡=“¾›·jÒÒ )Á„0¤ì§JRÍw©ç¿ h" ÒÀoñ¸à9¿³èÐ, endstream endobj 395 0 obj << /Length 153 /Filter /FlateDecode >> stream xÚ35×3W0P0bS3C…C®B.SC ßÄI$çr9yré‡+˜ré{E¹ô=}JŠJS¹ôœ€|…h –X.OÆ öþÿ! fþÿ¿HñøHÉ1Ô?``ÿgRÃü¯B}Sÿ0ÈÿRP¨lÃà¦þÿÿÃþÿÿ¬—«'W „Œ endstream endobj 396 0 obj << /Length 195 /Filter /FlateDecode >> stream xÚ±‚0†KHná¸ÐR) bbŒ“::ht†GãQxFÃymÙŒ‹ÉåËõ¿ôîÿ3µÈSL0ŹB£^âEÁtÆb‚:õ“ó Jò€:¹a¤Ùâóñº‚,w+T +<*LN`*¢î…3™1QËBW°DM4ˆ€Dø³Ñ7üd‘G±eëYXº/ugwÕý7Érø¿vNw½ï-²>›=“-n'N¹|ƈóºì°6°‡;‡Ã endstream endobj 397 0 obj << /Length 203 /Filter /FlateDecode >> stream xÚµÐ1 Â@Ð [¦ñ™ h²è­„¨` A+ ±RK EëÍÑr”Á2…8ΚÄb§Õƒ?,;óMÜ‹)¢>uõŒ¡¦½Æ-iDfTvGLR ×d4†sÉ1Lt9_&Ë I:¥<Úb:%`°³ÏwGÀì°çB ö>ß`\‚â‚»AçQÁȼ&s¨†ü¯¡ø ù×ê]Þ´[ç<ÚSêÃJ@±ucUU ¤Ò’½îƒÿÀ®÷/à,Å>Íî¦e endstream endobj 398 0 obj << /Length 227 /Filter /FlateDecode >> stream xڵнjAðÿqÅÁ4y„›ÐsÑ…³:ð¼"TbeR¦PÒ­y_EðA<ðì²…8Ù=E°4Õo™Ù™YÝiæŠ[Üæ†ÊYkî(þP4'í£-ÖÝp5û¢^IÙ˜µ¢lä┕¯¼\¬>)ë½õÙE> stream xÚ31Ò35Q0P0bCJ1ä*ä26òÁ" ‰ä\.'O.ýpcs.} (—¾§¯BIQi*—¾S€³ï¢m¨`Ëåé¢ÀøñÃÿìÿþÿãÿÿàÿ?{ùÿÿÙÈ`ÿWaÿƒùßñHüÀ„üæÿ ü€s``€ t$þÿÿAp¹zrrõX] endstream endobj 400 0 obj << /Length 223 /Filter /FlateDecode >> stream xÚ=ϱJ1àÙâ` ÷ ̼€f×Ôæç n!he!Vw–Švrî£í£Ü#l¹EÈ8ãÉAø ÿÌdHlϯ/¹åÀg‡+޼íèBÔ°å•Í­zòO"ù;É÷÷üùñõJ~õpÃù5?wܾP¿f¸ù•È ‘‚f¿(pCU€‚ô|KäNCþÈÞÐ;~$š&ÑÔ‰ÌhDÃÚž×mJFm=ZR*'2Ò8îH3æ#:Ý ŠtÚÙÞd{w¹ÎÈ"¦$#ì Ûžén gð endstream endobj 401 0 obj << /Length 154 /Filter /FlateDecode >> stream xÚ31Ð3¶T0P0RÐ5T06Q0µPH1ä*ä26 (˜ZBd’s¹œ<¹ôÃŒ ¹ô=€Â\úž¾ %E¥©\úNÎ @Q…h žX.Oö ̆呰=×CñÿF fbùÿÿÿüGÂŒP9*b9Bè†ÿ ¸þAƒý‡@‡=:ðб \®ž\\1…j endstream endobj 402 0 obj << /Length 159 /Filter /FlateDecode >> stream xÚÕÏ1Â0 …aW ‘|‰ø‚:V*E"L ˆ @0·7áhäæ!8Ógýv†„bPÈPré{ cɽì<9xDäÑ{³=pÙ­$xv3dvq.çÓeÏ®ZLµ–5Þl8ÖBJd:R%£?08);êû'”ßh:Ê€~ÐfzÇØš›&j’½« ðó¤É&âiä%?9ª~ endstream endobj 403 0 obj << /Length 218 /Filter /FlateDecode >> stream xÚmͱJAàÿØâ`š¼7OàÞéX1‚WZYˆU’2…AÁBÈåÍN|‘‹´WnnœÝ l!ÃðÁ üSŸ_U\ò…nsÉuÉ«Š^©)9L}z,74oÉ>qS’½Ó+Ùöžß¶ïk²ó‡®È.øYc^¨]°ˆG!ý¿é`<2%sJã€@¯¸ÈÎ!ï”á‰2S hŠRxœޏV&GL#>•|ÄG@à#"û@&{ù @¾ûÈωCdwè"™ Š1E{rŸb†”,ÔÑmKô îSc} endstream endobj 404 0 obj << /Length 231 /Filter /FlateDecode >> stream xÚmϱjÃ0à ·ètOÙ© Ù i õPH¦ ¥SÓ±CB²ÛoÒWñ£ø> stream xÚmϱJÄ@à [!op™Ð$zŽÎL!he!W–ŠÂBro¶â‹,X\›2Å‘uv6²Żì?ó—ó³Ë‚r:§ÓbAåÍsz*ðËœÜ)ÓÓöW fTæ˜Ýð=fÍ-½¿}$2!jBûn܉t…ZºBÛ¥²—žy*ÏÒ³óȸVÚAë“«D"Sß ñË*¿^7x¿> stream xÚ35Ô³4V0P0bS3…C®B.cßÄ1’s¹œ<¹ôÌ͹ô=€¢\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. ü @ "ê˜ñ?àÿb‰ÿâ;øÇ’„=Ð×?Ð.WO®@.v)aG endstream endobj 407 0 obj << /Length 247 /Filter /FlateDecode >> stream xÚeнJÄ@ðH±0Í>Âî˜sŠóSZYˆ•Z^q¢°y´^©ÚÞ]E‰î⣴> stream xÚuÁJÄ@ †3ô0Ë<Âä´¶.zXW°AOÄ“zô è¹}´y”>B=”Æ$++ˆBù ÿ$þä,^l¨¡–Nµç´mè9á¶*6´M‡—§WÜuXßS»ÁúZd¬»úxÿ|Ázw{Iò¿§‡DÍ#v{à/ÂÌ<ˆàDr3ôT#ä|¼@˜ ®¥~üù·ŒÞºª ò :gùa?'¥Eq\„«´Äódfà4§tæcÑÜ¢=‡C³y³;ÒêG¥Œ>RöÿŸå›³x–^9H`™’‹mZt/¹O/e«“¸³Æe»g´ÛÚZxÕá~ÇœÍ endstream endobj 409 0 obj << /Length 197 /Filter /FlateDecode >> stream xÚÏÁ ‚@`Â\|ƒœ'h•4¤À òÔ©CtªŽŠA¾Y>ŠàÑ›9¿`·öƒÙfgoNØe9~ÈS—O]ÉÚÜ•TŽŠSÒ;öÒ«ö–tºæûíq&oì‘Nxï±{ 4aÃ0TeôšÐ‚6t~œÃl¾*hB ÚoˆúŒàf°U)š…h墿8ƒÌ`%ªÎR4 ÑÊE:˜v#˜Á6õÐ~»ÿUè3–)méܤ‰Ù endstream endobj 410 0 obj << /Length 247 /Filter /FlateDecode >> stream xÚнJÄ@ðÿU)Lk—yMs'6.œ'˜BÐê ±RK E;!ëøHæQò)·Xn™XbcŠdvv>véOޏá%8nyÕð½£'j^¹ùäî‘ÖÕ[nÕ¦º»ä—çת×Wg,ÿ¾‘;·ÔmxÀ>ʈ(*1ç<ýp43˜P“ÍфՀÿø.MP~XÍϼÓj íÑË #ü¤sú¨ùUBU¾jg×góoÃliz]$hÁlÁ¿Ä·š‰~Ð.}P߬ï)à> stream xÚ}±JÄ@†'¤8˜&póš,m œ'˜BÐÊâ°RK E;!ûhû(y„”—ÿÙAQ·øØýgùgæ?r‡'+i¤•'í±¬¹wüÄ­‰¬]®Ü=ò¦çúFÚ×¹î/ååùõëÍՙཕ“æ–û­•{Âé4€ª“ ÅLTÍôy¤S¢!ø¤¾T*Ô/”p1î‹Ä*3—ÑJ`©‹É=s6¿Ðê:êIß“èGè&Ðc M¶šiê–ê5~1|ã Žqø—ÝO†efr®RÇ´£Ï[[6ŒMˆdð™`5Yœ:"CÅF(§„|Þó5ÿBµ© endstream endobj 412 0 obj << /Length 281 /Filter /FlateDecode >> stream xÚM1NÅ0 †]e¨”%Gˆ/mõÊL•‰H01 7#V’kå&ä3T5¶ËÐåSâ8¿¿ä¢;¿Úa‹=žuØ_â¾Å—ξÛ^Š-î»õäùÍFÛuØžìxDÊPÓÂôD ÄK3¸ ª ê&ƒ™¡ÎP-P'€“”áŸ>o8)‹rV’Üò””™sÎt´˜Â¤Dô›…ì`H|*^³­V$¢l8)g­,¬$4eàÖzâ¤è2gDŸøvw¥eh$4”56Ë“ƒrPú Ý–‰”a%ËøÈÉàA8è{¿Á¨ø—xtQó¬†Ò¬[IÁÞŒöÁþX¥o endstream endobj 413 0 obj << /Length 260 /Filter /FlateDecode >> stream xÚ}нJÄ@à )¦ÙGȼ€&ËÅC±X8O0… •Åa¥W^¡he±_,à‹ì#l¶XnœÉqȉ á#;ËÎ߉;>›QC-9jOiÞУÃ'l5ØÐÜín6¸è°¾£v†õ•„±î®éåùuõâæ‚ä¼¤•£æ»%pËYôÌbƒPn¡ÁlÁ&°Y¿*ƒÉà³}ÔöüÓá_ã_Í ßk9J'¢¶ÄQš¥ÛsŽ÷o2SàO±âÑð;2Yù‹½höšQ'²Ó\Õ4£VÙ™¿­’êGý ì’ÌRL’§’V÷Y0ºÏ©’Õãe‡·øM"·¸ endstream endobj 417 0 obj << /Length 176 /Filter /FlateDecode >> stream xÚ33Õ37W0P0WÐ56P0µT°4PH1ä*ä25Š(Áä’s¹œ<¹ôÃL ¹ô=@\úž¾ %E¥©\úNÎ @a…h ¶X.O08&€)fT "ÇŽBñ7 PCäQ(;ÊBÕ P?P¨7 P¨NAu{§ ºA›SPÝPÅ)¨nÀ*ã”A3ôrÊ Šh¨0$@(.WO®@.”ªYÍ endstream endobj 418 0 obj << /Length 267 /Filter /FlateDecode >> stream xÚµ“=nƒ@…Ç¢@šfà9Al%"’C$SX²+V*;eŠDI£pJ ÄzÖ°òÚîÌŠÕ·üì›y^çOÏ‘=“Jftˆñ“ˆìॽ±ÿÂEŽzKI„zÉWQç+úýùûD½X¿QŒ:£]LÑæ™óÑ@G¦j…ÌQ¨P¦˜ÚϘº§‰iz‚ÿVÈ8Jy›Ž¦<_’â­oSÈr¡ûºãJ^CoC¿âÁàK(®¥vR“ਾB,á|.ÅÝÚWK¥uÅÉ¡Ë`DuO6®KNý™‡‘¯6‘_i JGãT+É­”´ ç¤KP±„û²¡J¨ðÿ~ ßsÜà uÍyë endstream endobj 419 0 obj << /Length 338 /Filter /FlateDecode >> stream xÚÍ“?N…@ÆgC±É6½€QãÚ¸Éó™Ha¢•…±RK vF8Þä%^€’‚0Îì ‘¼Z ø-;;3|óqvrX”ºÐ§ú ÔÆhs¤ŸJõªL¡ù6Ç~çñEm*•ßiS¨üŠ^«¼ºÖïoÏ*ßÜ\èRå[}O‰TµÕ@W‚€dªR‰ˆ;Ȉ,Q–ˆG¨9ÛCi ì7rXKËä0—Aà@$ˆs;’²º:ñ>GOÔ11PV¨GG’ª à{ ré(µëÜ‘  J}1*7S(»$;SheIÙLõ>âoúCø¨^¥f­i0Ó¤ÚÙIñ™Î§ÉÌô¬ð§ Cœ4ôqú¢ŽHºèG®¹‹nJÛè°¬‰®³œcÔC +{ç7ZÛÎÛ¶>»ƒ Úà¿¢‹*E!¼Õe¥nÕ/ÙÏíã endstream endobj 420 0 obj << /Length 228 /Filter /FlateDecode >> stream xÚ•Ò= ð×t y G('«Æv3ñ#±ƒ‰NÆI4:—£õ(ÁÑIÓ¾ú¤H~…þi¿ÕE[ôLK;¶nc<`’˜ïgØìq˜¡\Š$A95½(³™8Ï;”ÃùHÄ(Çbe–Yc6º,wh*àúÀ´.9)"1RH HP+wh ¾yÅ›(¸/*±†øPè#qRDÒ¥LùSõÜ×õ¸c_ÿÿ½Ÿè擽®²éPèÒå[Ì+^« —& ÊIº ¬)J¢¢t*Jl)sŪJ¶SàN2\àîÀU\ endstream endobj 421 0 obj << /Length 349 /Filter /FlateDecode >> stream xÚÕ“±NÄ0 †]u¨”¥P¿´U‘®"‡D$˜02€`ny³ãMNâ¸ñ†ªÆIÜ»´EÀJ÷“ã8vâ?ÏŠã¢Â x”cµÀ²Àû\=©Ò83,OÜÊÝ£ZÖ*½Æ²Ré9»UZ_àËóëƒJ——§˜«t…79f·ª^!ðÒ û5D±Åˆˆ6XÖÌ;Ж©‡Æí¤uH@†cýN.|ÍŽrá.m@µÎ³Û¯F|Ž=›Mb¶š Ö´`]ƒÃœb{)Ð$èÀU2¤ئç¿ô' ÄcW˜¾|–rƬÇ,eŽ9sóýÃôOx^cf¥u=þÌzÆ.‡–{6œü‡·›òðÖS–1´Œ¸;ôAýe&oVýögÛ›ù`¦_#œˆ7ÄŸ¢)ÒNG¼¼ èöÝYmv¢M£Ù­è×Üf !ˆ&\oê¬VWê ?¦! endstream endobj 422 0 obj << /Length 105 /Filter /FlateDecode >> stream xÚ3±Ð31Q0P0bS #…C®B.C ßÄI$çr9yré‡+˜ré{E¹ô=}JŠJS¹ôœ€¢. Ñ@-±\ž. ÿA ÉÀþÿÃ(9THü±ÉåêÉÈ’:Õ° endstream endobj 423 0 obj << /Length 316 /Filter /FlateDecode >> stream xÚuÓ1NÃ0ÆqG"yÉâ¤êÐL–J‘È€bFÌé ¸Rc@n@G†*Æï9~ýÈðäßóò,×Õâdµ4•¡i³Z˜ûZ?é†öŠVÂÝ£^·º¼6ÍR—çþV—í…yy~}ÐåúòÔԺܘ›ÚT·ºÝçÜR*ñç<‚ÝV™s[¿(;(rOηì¼wþäpô(þàXð;¸áàŽÃуØr,¸çÎ8=ŠSpÂá`ÅáÉb æðdOæ°x§`Oæp4…ÄLáh }S8:S8šÂà^ìÃb öa±ƒb§`ûØx'îÜ·Ø‚ ~›à|Æ8'`5çlÁ8ŸqNÁ X‘‹½xúƒ> ¶àœÿµ>kõ•þJÔ@ endstream endobj 424 0 obj << /Length 325 /Filter /FlateDecode >> stream xÚÍ“±NÄ0 @ÝPÉK?¡þh H×›*‡D$˜02€`¾û´~J?¡c†ª&±ãrœNldH^âØŽ{U.+,p‰'%®Î°:ÇçÞ ºð‡ú…%O¯°n ¿÷_óÜÜàÇûç äëÛK,!ßàC‰Å#44~d´32DCÄšˆZAOÔ3%ä,F•¢b= _&gŒåË2‡½·dõÀ‚FL¤dtæ½Èêˆ^c;È“ºh†MZE=°p¡8È}ÃÚ‰âèÝ´1ª˜M¸Ótøµž°=Š[’l¥ÔýiÂþÿâìéñq<”3Mu;Ëúo˜ê†Ïš0Ñï÷q¯fUËȱ„±çšà:ëØ „Æåq’ñÌ×Ä·€•ZwÑ»¾$D#ÌB·HÜIè!iÐýh²Dåß W ÜÁxkD— endstream endobj 425 0 obj << /Length 209 /Filter /FlateDecode >> stream xÚ³°Ô³0U0P0b c #…C®B.s ßÄI$çr9yré‡+˜[pé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]þƒÁëÿ8ëœõ¿ÎJóƒûÿ ,fn0‹¤ªÿcÙ5CXòÿ@Y ÂbGb}ÀÂúe1ceý¡ Ÿ½ìH,ln~÷å Ÿ#BBðPŒº`pÎb€±~ÀY 0SFYä± I—«'W TÛ4# endstream endobj 426 0 obj << /Length 233 /Filter /FlateDecode >> stream xÚ퓱 Â@ †S:Y|„æô]ª‚ÄIÝÄöÑú(>BGñLÓZD''—|ü¹ÿr7œÑ¦©;¤©M CA‡º>­ î0ðYÔÔmÕÃ՜՘eTÑ„ûãU8A5¤…!½ÄhH–ãàpɾe¨Û ä§P±þóï¸Vrÿ…{ÂÙŸy¹%ŸÞرWáÛ K¶¹Žp,ìŠ+¾ç¹&ûÂuaÏJNE±IÞM ºœ4y0犉%®Þ­àØ^žÃù ŽâAlæH 4È—¬6eOæ†E8Ã`ò| endstream endobj 427 0 obj << /Length 270 /Filter /FlateDecode >> stream xÚ•‘±JÄ@†'¤Ls°óšL® œ'˜BÐÊB¬> stream xÚÝ‘=NÃ@FÇJišÁsX[NŒ©"åGÂTPR€ ¶;®•ä 9BJGZí0;Þ J¨Øêifw<~ßEqžU”QAg9•—Tô˜ã –)fTûÎÃ3Îj4wTNÐ\IM}Mo¯ïOhf7sÊÑ,h•Svõ‚`Úæ_À ühv= ™{H™× ³ïñž¡±ÁBÊ [rë¡%k‰TïË3¶ü·š.‚ 0=€;  ý Ú¿€“ûv>ò;ö»ÕbC _Æ\”Éõ¶Aøf #àc§ƒ—è,'·4/+;h‚¼q1h¸¬ñ?7p% endstream endobj 429 0 obj << /Length 243 /Filter /FlateDecode >> stream xÚµ±NÃ0†/ê`é?BîÀ‰dSº`©‰ HeꀘhÇ XI-Â#dÌ`å¸s‚ºtÅËgý÷Û¿î·×~Iyºª)x ö5¾£_‰XQ¸™&oG\7èväWèEF×<ÑçÇ×Ýz{O5º ½ÔT½b³!€ÿ€œÈ£‚™Oª±ª–!2J`@;€÷PŽPÈ<²;…‘GgÈ3E9c̈¹*lÊ0´9Útüø / Îà Ýìi†Õnʲm'¾©¿;)¤ø–),åˆbÈߘ^‹ìJq™©Ý‚§®£zµlÑð¡ÁgüÍF‹¾ endstream endobj 430 0 obj << /Length 253 /Filter /FlateDecode >> stream xÚÕÒ½NÃ0ðT"ÝâGȽu¢~n–ú!‘ &ÄŒ ˜Ý7è+õQúíØ!ÊŸ³¯ñ‚ŠÄ„ˆdå—‹³ÿÊl4¬æ\ñ˜¯jžU<ñsMo4HQÇúæé• Ù{žNÈ^K™lsÃïŸ/d·K®É®ø¡æê‘šgáʱ‰wƒ_ s=Ìÿ‡$ p8E €.¢° (±s‡×…¢ÀŸÂ4Ž2ì¥*ȱÓ| ]¹Ñ6&âÜ´LèÎpßàÚ‹À_à‡ýøËÇIHGN!ÄXÊ>±] ³7ž#†Ýfæýß".ŒÎF«?«Ç^Q 3Ò™Ö Ýщb= endstream endobj 431 0 obj << /Length 244 /Filter /FlateDecode >> stream xÚ…¿J1‡gÙ"0M!óº·`D«Ày‚[ZYˆ•ZZ(Úºy´}”<•aÇ™¹ãôP1|ðå—?üâéáIO :¢ƒžâ1ÅH=>cT¹Pc;÷O¸°»¡Øcw!»á’^_Þ±[^‘ØÝÊ™;Và8ƒŒ‘?dm˜gPÇj·\R…q :“dÄ„*Á |…Vbn¶;ƒg³Eó çd˜ö1Öo( Ø÷aãhDBÿcü³!ýD[Áo˜¬1¿En¥ ¹±¦ä%iêÝînª6N:ó\ÒZÛ` æ]H›_ÙI<ð?yë­œ endstream endobj 432 0 obj << /Length 175 /Filter /FlateDecode >> stream xÚÕн Â0àá–>Bï L*)¸j3:9ˆ“vtPtnÍGé#8fœ—:èÒM‡|ä~àŽ3z> stream xÚ¥‘?JÅ@Æ'¤XØ&GÈ\@“HòBª…çL!he!¯RK EëÍÑÖ›ä¦L2Î쮂°áÇîüû¾É®9o[,±Æ³‹w565>UúU7¿–Øv1ôø¢÷½.î±étqÍïºèoðýíãYûÛK¬tqÀ‡ Ë£î¯|¢QÑÑ’“CD–F°³"RcB|&;¦Jª ÀÌÆeÂ%w¹pU¾ëö3Bú?OûþÄÂ|€ G(ú‚^±'€f ‰]âTH¿Ø¯ð“|X9éʶÌÜ/O8E.‘> stream xÚ37Ö3°P0P0bsC c…C®B.33 ßÄI$çr9yré‡+˜™qé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]ì0€Áÿÿ$0˜a †aÃÿeüÿßf0ÿÿÿÌà‡xûÿùõÀŒ:û`PÛãçã?Hÿÿß  e00°ÿ?€Ìø‡ÁøCãÇ(ÎøŒv q€—«'W lù2 endstream endobj 435 0 obj << /Length 138 /Filter /FlateDecode >> stream xÚ36Ó35Q0Pacc …C®B.# ßÄI$çr9yré‡+Ypé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]ìþ``üÿ€ùÿ0fÿÿ+†ÉƒÔ‚ô€õ’ ä0üÿ‰˜aˆàÿÿÿ@Ç\®ž\\ÍÙ¥; endstream endobj 436 0 obj << /Length 107 /Filter /FlateDecode >> stream xÚ36Ó35Q0Pac c…C®B.#K ßÄI$çr9yré‡+Yré{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]ì0üÿ‰™˜aãÄÿ„޹\=¹¹µ‰Ã endstream endobj 437 0 obj << /Length 232 /Filter /FlateDecode >> stream xÚíÒ½jAð WÓÜ#Ü>·ÔŒ‚WZ¥©LÊ+³vrp!E¶›üçT°+‹ ó›Ý-ÆÙÇvïÞXÓÅqöÁt;æÍñ';ë±j-->x˜súŒÇéiNó©Y-×ïœgOÙ‘yÁÌ+ç#CYEI ºO$RáxŠ%4ˆDJʤnï«Ò 󢣨Ò×®U¶¤ Hª@Yûƒ$߸»Np·â§¤D@¥(€þ¿ØAx^ƒæ §¨å9ìÅE…ÿÇÍÛ„ÂÆip xœóœÿvÚiC endstream endobj 438 0 obj << /Length 184 /Filter /FlateDecode >> stream xÚíѱ‚@ à& &]xúÞÜHLtr0Nêè ÑUy´{ጃ „zwÀ¡Í×6ÿÔd4”’™JBG´ñ„qlfiG{Ø1+P¬)ŽQÌÍE± Ëùz@‘-§¢Èi’Üb‘¤‚˜µ©ÒÁc®|æÚ!P÷Æái à±®!`{èø.ÿT¼ÊV6ß¡ýAÓõ_°yÍÀ4Õ8+p…o âøš endstream endobj 439 0 obj << /Length 231 /Filter /FlateDecode >> stream xÚµ‘±‚0†kHná¼Ђ±0’ &2˜èä`œÔÑA£3<šÂ#02Î^KL%!_sý{½þ¬æI‚!.qa¼@¥ðÁCT±Ý9ß +@P% 7º ²Øâóñº‚Ìv+Œ@æxŒ0> stream xÚÍ’¿NÃ@ Æ]u¨ä…G¨_.!MB§H¥•š ¦02€èœ<’GÈx•ªÛ¹F:¡.§Ÿ¾óùÏçË“«è†"Jèò:¡lN錞c|Ã,5¢<WO¯¸(Ñm(KÑ­EGWÞÑÇûîÝâþ–btKÚÆ=b¹$(“#ýÑÃ!@5@÷Šøo˜J ÿ§4ö{®aäÁ³ÅŒòßëŽfJ®`o}4¼‘.lO­%Þw£‹m_…mt§¢e4](z†`_ëTÀU‰øµ`  endstream endobj 441 0 obj << /Length 169 /Filter /FlateDecode >> stream xÚÕÏ;Â0 ÐtõÒ#Ô' ’VbªTŠD$˜02€`nÆQz„T d¨jœ20õXö“üYœé™žcŠš+ã4xRp“s?¶aq¼@iAîÐä W<i×x¿=Î ËÍÈ ÷ ÓØ Eá¢^¹˜6¡–­É±Câ‰:_øˆ:WóÑ«}ßÍO_ /h‰ Æmƒú ýIž™–¶ðj^¤ï endstream endobj 442 0 obj << /Length 259 /Filter /FlateDecode >> stream xÚ]Ð1NÃ@Ð¥°4¾;ÛŠBƒ¥$\ ‘ŠQ%Ú¬æ£ì\¦°v˜Y)¢yÒî·çÝT—ëk.¹æ‹Šë57 ¿UôIõJ/Kn®æäõƒ6O\¯¨¸×k*ºþþúy§bóxË[~®¸|¡nËXÊp8™ÎÙë…HDÑFä#ò°Ô々Ú~Àþ¨¨7ö'ÉQÈ”´^;LKZ+45qj@.dêtÜÇv“ù!¤¸Ç"iíÐÄÌôehÖ”ôÁjÛ]ˆÿdVçµ³½ÍSuž‡è ±ýõ?h©›ÓêgåcfKxýºëhG¿Á•¡Z endstream endobj 443 0 obj << /Length 186 /Filter /FlateDecode >> stream xÚ35Ô34S0P0RÐ5T01Q07SH1ä*ä21 (˜›Cd’s¹œ<¹ôÃL ¹ô=€Â\úž¾ %E¥©\úNÎ @Q…h žX.O†ÀOþÁN2bÌH$;É&åÁ¤=˜¬“ÿA$3˜äÿÿÿÿ?†ÿ8H¨úANò7PJÊÃç‚”ÿÇ`$ÿƒHþÿ ÀØ`ÿð(Èþßÿ ýß E` q¹zrr:é“p endstream endobj 444 0 obj << /Length 187 /Filter /FlateDecode >> stream xÚíÑ1 Â@Ð  Óä™ èfÑlì1‚[ZYˆ•ZZ(ZÇÎkÙyÛt¦Ž»‰… а{üáÃÀ»°O!õ¨­(Võh¥p‹ZÛ0¤(j.Ë ¦匴F9²1J3¦ýî°F™N¤Pf4W.ÐdI àñ˜Kü#ZX€ƒøã+üÏÞ8ä¯È’ àö„wåÂ6î .n ŸÁÉÁNÃõ<sUÃv‹öÁ848Å”Ìðn endstream endobj 445 0 obj << /Length 310 /Filter /FlateDecode >> stream xÚ…Ð1NÃ@б\XÚÆGð\œ8ÁM,… á * D” è"ÖT¹–o+ølé"ò0³³DQXOš]yþþòôx:ÁNð¨˜bYâÉÆæÙ”OG8›…£û'³¨M~ƒeaò ž›¼¾Ä×—·G“/®Îplò%ÞŽqtgê%Qmÿ3¢ "Vì–åÏŠ<³Ÿ³•èXú1f3j îÔ„MÅVl!e±y‹ ºo+ =̃ï¬Zy·Çê½ÃÎÈ[‘ÄcoFG\{SZ·êƛЦQ?ƒä‰`߈†µ™=mÿ»•;4ëMÛ?l½þœ};Y«íTj¶Ä­õj´Ó©Ú õIP×Z§ël§klku釾2#}UJ.´Ò†RÌym®Íaɽï endstream endobj 446 0 obj << /Length 137 /Filter /FlateDecode >> stream xÚ33Õ37W0P04¦æ æ )†\…\&f  ,“œËåäÉ¥®`bÆ¥ïæÒ÷ôU()*MåÒw pV0äÒwQˆ6T0ˆåòtQ```c;0ùD0ƒI~0Y"ÙÿIæÿ ò?&ù¤æDå(I²ôÿÿà"¹\=¹¹VI¢” endstream endobj 447 0 obj << /Length 301 /Filter /FlateDecode >> stream xÚ}ÑMJÅ0à)Y²é’Ø–G_]x>Á.]¹WêÒ…¢ëôh=JŽe¥ãüˆ? Ú¯if¦“tߟ ChÞ¯6 §á±s/®ßÑ\¦¼ððì£knC¿sÍ%½uÍxÞ^ߟ\s¸>kŽá® í½Ào@£B,D¸'€DdZš"-š,-ÚB/6¨3"x‰š¢äç”™œ®—ÓÊ®k‰í ƒËpÞ7q|Ì$pãFúæš¿È »ùdíL™@ÚAvüZ´H¥ÙFÓ¬¦YM«5Þk|,ZdÖìI³eb4Ðj`Môä³g!@Tt¶«`[ÈBÍ».àA8ã²EþõËwÌ•b«ÔŠW¢’üÉü'îbt7î}tû” endstream endobj 448 0 obj << /Length 305 /Filter /FlateDecode >> stream xÚ‘½N„@LJlA² À¼€ÅgErž‰&ZY+µ´ÐhÍ=Ú> @IA烋 á·ì|ýgf.ëK xQá®Âz¯•ÿð!ðe‰õ•Y^Þý¡õÅ#†à‹[¾öE{‡_Ÿßo¾8Ü_cå‹#>UX>ûöˆ)Eà§£‰¿ŽˆN£ÈGG#›"ˆqhfHøÔ8¾ÏéäfEÊAEIÅÈ=¿ÿ„Å-ˆÎ’%$©#쵂H\ÀÕWèfä¹  Íhg™…™cgݺi†¹8iZþG«`©s+´¤É,25×ô\iÜ`2[Ì[¸¨ÈE3)Dä/ˆþbZÁ1.8Gƒ ƒ•I¬³éUuužR¯áÍ:îXÔ&¼oÝ´í]Ö¯"MºÎÝß´þÁÿéýëo endstream endobj 449 0 obj << /Length 225 /Filter /FlateDecode >> stream xڽнjÃ0ð ‚[ôº'ˆìPÛt±!têP2µ;´4›qüh~?‚G‚$ÎýÅC»õ@ú¡Bw—&ó,㈮+]pöÈo1}R2æ¢ñ8^¼~в$ÿÌIF~{Í’/wüýu|'¿Ü¯8&¿æ—˜£•kžnûLMÔÐ@;ÑÁž&žEõD-twñ>‡5 pU/jh:ØŠ¶,PW+D5À^Ôh ma#:ôYÀVpÔ=ìDÓŠºb~9¬a€g‰æ/ÌÿŸuøÿwiSÒ]]Óq endstream endobj 450 0 obj << /Length 285 /Filter /FlateDecode >> stream xڭѽJÄ@ðY l“Gȼ€&áH¢ ç ¦´²+µ´P´N-²°`“b¹u>r‡"X?²ÙLæ¿Ó6']‡¶x\c[awŠOµ}µÍšéñLß<¾ØMoË;lÖ¶¼¢e[ö×øþöñlËÍÍÖ¶Üâ}Õƒí·hF8ˆs0;àÛ¤Ž¡+*³¯Lʨ€•Yñ ‘ iþŸŒk›àäï!%Nó¹4tíaà(.JÚ‚bÒî> stream xÚ’=NÄ0…'ÚÂ’›!sHRd ‘–E"Tˆ ()@ Qa-GÙ#¤Lyxcó´‘•Oòóx~ž×ÍaÛrÅ Ô¼®¹=âûÚ>Ù¦ÁfÅíqRîí¦·å57-ϱmËþ‚_ž_l¹¹<åÚ–[¾©¹ºµý–‰ÈÒOdÀ%2…È ¸9SQväTòÔy2ÙSÁ Tà» 2NXFvY òŒø_ȹèíC!š‹"Þˆº%R­î/ºQ‘‰(Œ¶"!×V$ÞMÀ x#$“0"»W ­ ÎˆPrÂ(¨ì$Ó7´Ày?â Âîßèö"^Ò\æ%òˆI‘Éd¾«^EÀ€AíÈRɯiP7ë@tÊê4F¦¾Ã}œÒ·  CÔGƒÉžõöÊ~†\ö endstream endobj 455 0 obj << /Length 136 /Filter /FlateDecode >> stream xÚ32×3°P0P°PÐ5´T02P04PH1ä*ä24Š(YB¥’s¹œ<¹ôà ¹ô=€â\úž¾ %E¥©\úNÎ @Q…h ¦X.O9†ú†ÿ ÿᬠ—Àƒ€ ãÆæfv6> † $—«'W ÷ '® endstream endobj 456 0 obj << /Length 230 /Filter /FlateDecode >> stream xڥѽ Â0àá¡÷¦…¶Ø©P+ØAÐÉAœÔÑAѹ}´> stream xÚ½Ò=‚0à’$ßÂüN`!!U'ÄDŒ“::ht†£qŽÀÈ@Z©mIjüÙlBÚ-ïË$ÇCŒû‡ÏOñÁ¸š‡jª^gHs`[ä1°e¿ ,_áíz?K×sŒ€e¸‹0ÜCž¡ì‡ „(eml ñdE|µQ”ýb©M*mÐhýVK;-Fi,ŒI©U®Aml´¾µu¥Öø¡ü“ΧâûýéË÷Úl.CNµ›ŸÍÕZ¸=x¦Úº½%õÐë³gizïÜÿ@Õ‹6ð ·¯7 endstream endobj 458 0 obj << /Length 296 /Filter /FlateDecode >> stream xÚÅ’±jÃ0†OxÜ¢Gн@k»g«!M¡ íÔ¡mÇ-íì@^Ì[^Ã[WŒÕÓI –õq’î¤ûÿUu¹¤‚–tqE+þ z+ñ«Šƒ…‹ÈÊë®ÌŸ¨ª0¿ã0æÍ=}ý¼c¾~¸¡ó =—T¼`³!ÐÀ–g°¶ƒžçÌÚA@jTê®,÷ ÙÈãÀ°8¨_=¸eãöµ½âC»¶®ŠîAMF‹^ò ¸|œ:I *©@=‡N` í¿À÷Ú ”åž»kÌÛ6„Öñ9&>0s‚!€žof ¾á&j‘‚—ɤ¤”bu”» g€ŒÏ«C0I¶µòF‚)ZëÍæ¥ûàmƒøê*­ü endstream endobj 459 0 obj << /Length 229 /Filter /FlateDecode >> stream xÚuϱJAà¹ba ï ¼yÝÙhº…Á+­RˆPK E;1 ¾Øt¾Æ½±»âp½‹ S|Å?;?¬ŸÏxžjösö3¾­éüTCÆÍÍ=-r+öSrg“kÎùéñùŽÜââ„krK¾ªyrMÍ’a{è„Õ®lBŠ-`a:`Ðu)xªu‹w­äG½W‹˜ÕùÇ2©&e˯œɦá¶ÏÚnh›‡Î ÙÍhüuð‡aǨ‡k}ÿ¡ Þ[ bÔªµoŸb»ý"E“z“†O¾€Nº¤oÉŒla endstream endobj 460 0 obj << /Length 213 /Filter /FlateDecode >> stream xÚÅѱ Â0à; ·ø½Ð4X-‚P¨ vtr'uTt•7)7´&/¡Â“²‰Ž hÀ4³“"¯rM¾ò¨Ó˜îzd‡Ú endstream endobj 461 0 obj << /Length 203 /Filter /FlateDecode >> stream xÚ½ Â0…Oé¸KßÀÞд¤v øvtrAPGAEÁA0–Gé#8:õÆÜòANȹß-LÇÎØp;ç"ã¢ËëœödJ åZ¾_V[êU¤glJÒ#‰IWc>NÒ½IŸsÒžçœ-¨0pu@ÜÜ€Ä_‹x vёÒZÕ°uú/¬{#õÒ¡^EÈAó^Uö‹ÌzÌÅN4° ¨E A2ò¢;Wa…Äé ¨°V4¥'VhLr endstream endobj 462 0 obj << /Length 210 /Filter /FlateDecode >> stream xÚuÏ1jÃ0àg<þÅ7ˆÿ 4²‘ã1'…z(¤S‡$ MH×XGÓQ|„ŒJÝW\(TˆôúŸ 7uN3uúk‘i1Ó}.Gq%CËáf÷&u#öU])ö‰±ØæYϧƒØzµÐ\ìR×¹fi–Šè €éÆWà‚Op_ÝPIÓ!õ I@Ò*¤#f %×#ý¸~á,üK{ÇT#ç¼³¶,„ΰq`É(°nìYÜsLøâ¾Þ–ÇF^䃷V2 endstream endobj 463 0 obj << /Length 125 /Filter /FlateDecode >> stream xÚ32×3°P0P0b#S3s…C®B.#C ßÄI$çr9yré‡+ré{E¹ô=}JŠJS¹ôœ€¢. Ñ@-±\ž. ŒØ€ÿ‚ˆ¥ˆŒþÃûæ? : æ ÿÿÿ€ .WO®@.»P endstream endobj 464 0 obj << /Length 110 /Filter /FlateDecode >> stream xÚ32×3°P0P0b#S3K…C®B.#C ßÄI$çr9yré‡+ré{E¹ô=}JŠJS¹ôœ€¢. Ñ@-±\ž. ŒþÃûæ? ŒC 1ÿcøÿÿq¹zrrp^Ú endstream endobj 465 0 obj << /Length 203 /Filter /FlateDecode >> stream xÚåÐ=ªÂ@ðH˜Â\@ÈœÀMü BÀ0… •…X©¥ ¢­ÉÑö({Ë«ãî+¾¼b†ßü§˜aÖé8åž«|Äý>2ºPî³Ô~±?Ѥ$µá|@jáRRå’o×û‘Ôd5åŒÔŒ·§;*gX@l$Æu¯8lSyÕEÈžñn!Ñ­Á£X#xiTCÄÆ©F•þHjODO' 0¿ôvÒÊÝö§þ³B÷J#n Ò$"¡ˆù&š—´¦ݤ› endstream endobj 466 0 obj << /Length 209 /Filter /FlateDecode >> stream xÚ= Â@…GR¦É2ÐMtý©bSZYˆ•ZZ(Ú‰ÉÑr2EH|›((vÂðí̛ݷ«Ga_<éIÛ=Ý—½Ï'Ö]ˆžQêÎîÈAÄj-ºËj™U´Ëùz`,§â³ eã‹·å(¢8!"«Ê@'-À1¹à4r²Sjed=L A Ñ‹]l»ÓŒßÄñ V0ùee˜þǯÛ̬äsnãÄ…«òíž ²Áœ¬Ì”/óÍKÝ´í*ëßàYÄ+~PûZ> endstream endobj 467 0 obj << /Length 144 /Filter /FlateDecode >> stream xÚ36׳4R0P0a3…C®B.c˜ˆ ’HÎåròäÒW06âÒ÷Šré{ú*”•¦ré;8+ré»(D*Äryº(0ÿ`þðÿ‡üŸÿ?lìþÿ(¨gÿñà?óÏÿ6ügü  u@lÃøŸñþC{Ì ´÷ÿÿpÌåêÉÈÈöPê endstream endobj 468 0 obj << /Length 160 /Filter /FlateDecode >> stream xÚ36׳4R0P0RÐ5T06V03TH1ä*ä26PA3#ˆLr.—“'—~¸‚±—¾P˜KßÓW¡¤¨4•Kß)ÀYÁKßE!ÚPÁ –ËÓEó¡a9$lÄuPüˆÙXþÿÿÿ¡$N#ÌC®ca¨gc{ ùù ì00þ?À”àrõä äùJm endstream endobj 469 0 obj << /Length 162 /Filter /FlateDecode >> stream xÚÍË1 Â@…á·¤L¡°˜ èfqCÊ@Œà‚Vb--+'GË‘<@Ⱥ!Xè l¾âý3©™ŒžóÔpjØZ>ºíÇ„m:”êL…#½c›‘^…™´[óíz?‘.6 6¤KÞNäJV- ð-rÿeÜByD¡z 7ÿ«ÿU}Ä`‡(øD,uxIƒé0nÒ·WR héhKo©b“ endstream endobj 470 0 obj << /Length 197 /Filter /FlateDecode >> stream xÚ=ϱ Â0Æñ¯8nñzO`Z¢  j;:9ˆ ¨£ ¢³y´> stream xÚ½½ ÂP F¿Ò¡¥Ð¼€ÞVn«“‚?`A'qRGE7Áúf}”>BÇÅšÞ‚Šè*3$|9º×î†ì³æV‡uÈQÄÛ€¤}®+ê5“Íž†1©%kŸÔTڤ⟎ç©á|Ä©1¯öר8Ux·èã”À*à%V7±38©“ÂÎ \Aî&°rOP ådeyÜ¿¡>Xý ?c\%éý#øë£æË'q¶(I£©fÔ‰µNšÄ´ ƒ…) endstream endobj 472 0 obj << /Length 131 /Filter /FlateDecode >> stream xÚ3±Ð37U0P°bC33…C®B.c# ßÄI$çr9yré‡+qé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<] >00013Ëñÿ ÿAø9³ùà óÿúóCýÿÿÿa˜ËÕ“+ Ìt^@ endstream endobj 473 0 obj << /Length 259 /Filter /FlateDecode >> stream xÚ]ÐÁJ…@ÆñOf!"·."ç åÚÍE0p»A.‚Zµˆ ¨vµ ôÑ|Á¥‹ËÎgH0?˜ñ?p´¬NÎNmn¹ÊÒ®×ö¹wYUºÏ¹å‹§7ÙÔâîìªw¥§âêkûùñõ"nssa q[{_ØüAê­…ÙÈB´aD4%;˜>Ú#îp¨§Ýà{%*eÌdl”鈧W”]èHÿ‹ùOË·ž¦…dfä 3Âױt¢KÒ‡óF¼oæû¼³MØfl=³oÂ,"†EÌ"pLΉ~WІh–Fš¥F³*Ö4×€& !Œ3ž´DWþËZnåÎvj endstream endobj 474 0 obj << /Length 206 /Filter /FlateDecode >> stream xÚ¥ÐÍjÂ@Àñ„@CÐkBç º·‚Ð õäA ¶GAEÏæÍÌ£äMbö/hèµûƒÙf–Éf¯Ó±Zµ'›èdª?©$¶¹u©{øÞÉ<³Ñl(æ½½“èéxþ3ÿ\h*f©ÛTí—äKõ> stream xÚ¥ÏÍJÃ@ð Ci®Š°» ùX/b Í¡ §ŠPB,íM$–Gé#xôPÔÝ .ÔC¡3ð;ÌÌîÎ&z’§¬8åë˜ÍYÎϽQ›¢âì¦ë<½RQ’\q“\˜2ÉrÉÛÍî…dqÇɯ#VTÎx$ltŽøc¢uZGaýÚL„ÂùÚ¨EeT°†{Øšôk€ç.àÐYàjXà î-æ‚^› Çð Þ:~ÀwÇßޑþ×ÿ'žaðÙ”æ%=Ð//ó]ã endstream endobj 479 0 obj << /Length 293 /Filter /FlateDecode >> stream xÚåÓ»JÄ@à¶8MÞÀœÐÌÀÞ„°ë ¦´²­VK E[7e°°ô $2EÈ8gfö‚A´³0ðÍ%sù'™ ¦Ç$iH‡Š&’””t£ðÇ#[ËeåÛVw8Ï1½¢ñÓ3®Ç4?§Ç‡§[Lç'dË ºV$—˜/%¸K˜ó DÀºý¿ásÐ¥0­GbŒÇڷ鲸f¼V Æ[÷ÖïöÑ1>8Q†«.ìÝ„y4¿šT1£bÔ<¢[σ¶‡. êÃ| Ø¡ø ü¼Âº¯;í‡ Úý \tõ~˜Ûœ9ù„“ÙAƧÇrà×:ösÂLn˜ÙÿÊrÕnÈà™7ÃІûÂbÓ„/ǵàiŽ—ø »ÆËH endstream endobj 480 0 obj << /Length 267 /Filter /FlateDecode >> stream xÚ‘±J1†'lq0…ûÞ¼€f̰pžà‚Vb¥–Š‚]òhy”}„-¯86ÎL¢œ‡• Ù/Ìü;“üq«Ó5äè¤%×QwFO-¾¢kHfçræñ×Ú;r Ú+£®éýíãíúæ‚Z´ºo©yÀaCÕ 2–i¤´å¯™5º˜À€z„>‚¬%k<&rš¥,«¶`vŒìd+q3Ëß’1«^+ü ô\úoxE<@ØG*Ðqˆ ÷ù/|AüýoŒÙ¸=˜¨×,¨¢8U(`‡Ø´ fA-©‘pœûžçÚŸ¹Ú¤Pjí"ê{mœ¤ÔIš€‘ƒã倷øYRŽ endstream endobj 481 0 obj << /Length 351 /Filter /FlateDecode >> stream xÚ­‘ÍJÄ0ǧäÈ¥¼€¶‹µ‹§Âº‚=zò ‚ =øu“mÁë£ärì!4ÎLRuD¶„™ÉÌüg¦^îW¦4•Ù;(M}hêÊÜ-Ô£ªKCÿQ•\·jÕªâÒÔ¥*NÑ®Šö̼<½Þ«bu~lªX›«…)¯U»6À_‡GzahBŸ ‚Õï„—ã›t ]æ2 º‡¦G6Da)…Æh˜rûÅÌcf÷EA¿1-Û?pλëÛÕ³«÷³î I}Òˆš6Ä¥£P€gOén Àâܘ’ÝÙ'û+ít‰c¢„036u! è’¡AÒMÄ"9Ñ%ûÈ} |H³=¤X9ÑZ±H v¹÷]Ͻãm³E=L‰QVþgÎq)Ïœ¯ïRþT7éØD]àãn²¤Çó cˆ»Æ’|´M É'bÛ<Î%øªNZu¡>ÚvÔ endstream endobj 482 0 obj << /Length 142 /Filter /FlateDecode >> stream xÚ36×31R0P0bcCKS…C®B.#ßÄ1’s¹œ<¹ôÃŒL¹ô=€¢\úž¾ %E¥©\úNÎ †\ú. ц ±\ž.  Œÿ˜ÿ30°ÿoÀŠAr 5 µTì ü@;þ£af f€áú!Žÿ``üÿè¯ÿ ȘËÕ“+ > stream xÚ36×31R0P0bc#C…C®B.#3 €˜’JÎåròäÒW02ãÒ÷ sé{ú*”•¦ré;8+ré»(D*Äryº(0°70ðÿo`ø†™˜†ëG1Õñÿ ŒÿÃúÿdÌåêÉȸ§‰ô endstream endobj 484 0 obj << /Length 249 /Filter /FlateDecode >> stream xÚ­‘±NÃ@ †}êÉK!~¸5Ç©©*ÁÔ1#æÜ£õQú3T9l× êÈÝIßɾü±‡Ûë5•TÓUEá†Âš^+üÀ:p°¤PŸ3/ï¸éÐï©è·Fßíèëóû ýæáŽ*ô-=UT>c×€Kxåiôi$Þ«Š@v”#W@Áø!ç'=rå4à8 E\)™æGCÎ †B1Š:‹6ŠÓ½bê¥:wZ¹KÿŠ??²"XÖi=Ì1w«½fùbpêYœ4?Í]óšeä[›ƒã©ÄßÙÄt~xßá#þ°´”ð endstream endobj 485 0 obj << /Length 185 /Filter /FlateDecode >> stream xÚÝÏ? ÂP ð¯,d°«ƒÐœÀ×ÚVt*øì èä ‚ Ž‚ŠÎ¯GëQzÇNÆ÷:ˆƒx‡üÈ—@ i¿—Drj*ñ æCDJb“Cíb¢qNjÍILjn¦¤òß®÷#©ñr©)oÌ™-åS†¯†/ž–ÂX¥ˆSeF·Ô•+^¡+ˆkÛª»d%ôA¢è3ðv×X}Xþ´øÅ~äÈö"õ7i–ÓŠ^¤Ds. endstream endobj 486 0 obj << /Length 281 /Filter /FlateDecode >> stream xÚuÐ1NÄ0Ð¥ˆäÆGð\’o$"-‹D $¨(PR€ [mr®â›#¸Lv˜q v š'Ù3þ3Éêì´n¨"O'5ùsj<=׿Íx/—5«¥òôjÖ)ïÉ{S^˵)»úxÿ|1åúö’jSn衦êÑt8ä€å©zÞ[dŒö yDñbDΰƒtÁ‰=Z¨b‹è°M΢ýÇûyqPû¡©“Újë•e^Œ5X*³>ìYëŽYžÌ:#•õB´IjÆ!¥MlGÕ-ƨéÉâH]$?r>Pçäcš6òŸA§Ù ÓìÖ~¢þ¥I"v˜¶ÈfD7¸ˆ(Ÿ0æºl@/]æª3wæׄŒœ endstream endobj 487 0 obj << /Length 191 /Filter /FlateDecode >> stream xÚ35Ò31T0P0RÐ5T01U°°PH1ä*ä21 (XXBd’s¹œ<¹ôÃLŒ¸ô=€Â\úž¾ %E¥©\úNÎ †\ú. Ñ@ƒb¹<] @€ò>’ƒdF"Ù‘H~$RLÚƒÉz0ùD2ƒIþÿ@ÀðƒD1aˆ’Œ¨L²ÿ``n@'Ù˜ÿ0°3€H~`¼ücà1ƒ(¸l@Aÿà(ÀáÍþÿ8¸\=¹¹~@‡Ø endstream endobj 488 0 obj << /Length 203 /Filter /FlateDecode >> stream xÚíÒ¿Aðïr Éî$7/ÀÞÆeQIüI\!¡Rˆ ¥¡æÑîQ<‚ReÌž V÷Ûùv¶ù¶™Ö[mN8åšå¦e×॥-9§Ã„]úHkêfd¦ì™¡ŽÉd#Þï+2Ýq-™>Ï,'sÊúŒ0eQĈ"”ïüå²ÇÜŸÞÑñþñ3‚Ï?£(%V” œÊUè… Ð’“n(6áÁY4nú+|×<>èÈ­h‘\Ð ºEƒŒ&tj8­Ú endstream endobj 489 0 obj << /Length 268 /Filter /FlateDecode >> stream xÚ}Ð1K1ÀñWn(¼Áûž/ ¹T‰„ƒZÁÄI…* nwâËÖ¯qŸ@2ÞP.¾äR0‘:¼ðK2äONä¡<¦‚ft I’šÑ£ÄTŠ RGÃÍÃ3.*·¤ŠK>FQ]ÑÛëûŠÅõ9IKº“TÜcµ$km™µúŒlvÃÓ2JP;L5o<š-ÜDØw0¹ÃÄ¡ ;Ì#ð3ðÁ“9¬~cÔóÒF°<à cp¼GÍh> stream xÚÒÁJÃ0ð¯ôPÈay±æ´k‡Û ƒÂœ`‚ž<ˆ'õ(LQ˜§æÑò(}„{(ÿ4 HÙÁCø~|!!ÿ$åærµKQˆ‹\”Wb]ˆ×œ}°²@s)Ö+7óòÎö5ËEY°ìm–Õwâëóûeûûk‘³ì žr±|fõAcdeŒ"côMd:¢Ê *¢¦%â½s'˜kàŽõcTsk¿Žkç4XNŒÊ±w"]/µ¦‰QSœ…“;GϼË`Ôr ZÀ1üϽÁ¨GäÛÁ¬á­wÛxkI'˜ EÖGoUKX‘¶ndlÝzË4XÁm4ºR‰µòÆy·°ŽG§-·–Î3J‚5Ü%£¹^X“óœâàîùè¤ÛÁ3ï-EÁ=<,FÇý ž{#Rð›Ýèh°?bë·±îFÓhím_üŒÿܹןº²VÞ6ЧÖÒÙÆH¦f75{`¿ŸõÒi endstream endobj 505 0 obj << /Author()/Title()/Subject()/Creator(Emacs 23.4.1 \(Org mode 8.0.6\))/Producer(pdfTeX-1.40.14)/Keywords() /CreationDate (D:20141227203344+01'00') /ModDate (D:20141227203344+01'00') /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.5-1.40.14 (TeX Live 2013/Debian) kpathsea version 6.1.1) >> endobj 145 0 obj << /Type /ObjStm /N 80 /First 718 /Length 4369 /Filter /FlateDecode >> stream xÚÍ[[o&·‘}ׯèÇÌn‘UÅ`ˆí`±qbØYìe0ÊŒìKÆH³Hþýž"›dõwÑHr‚,>ô…l^ŠEòÔ)’ŸZÜâE–ðð¸4˜rϲ°óKL ‹ãÂI‚_$|xÛ¿FýË—_.—¯1&Юšë54Tj™ ’]~÷ñîÝ×ËýÍëåòO×}XF gZ“[_Üšd[#hM>ÝšãÄ¡&Ž‘V›gš®ØšŽø Óëר!Б‚{©‚v§þºÖh9—?|úóC j$_\þáêgýR«èÛ«‡7ÚŠÕyÚóþ¶¥úª¶táå Ð#¢.£öP¢ûÊüjy[Å}}óñþáë¿\}Ä컸üýÕÔ\þçÍû‡¿ÜWL¯Šý×Ûwwïonªè^c4©–~_~Óê+ÁlÔ»ûÌ/¸èõÖè¦×‚®¹ùñÇkô™¶ã”Ë+½ÐËÁ_®·w﯄˜—W1 í"$ M8MêÃ67 ±=ÿ”®ˆÇ]áGGøãnå Z2P7¼¸b0Ýóì†$‡ÝÂQ7¤8º!&ȸ©9ú#6ä5ë÷ö…1ßÛ¨ q…ž²[3/=WË'¦ƒâì X²†™¢—ó„΋€³ãЕzÁÚ¦Ù‰£/IflDŒ^èlÌÈTÆ—ì.¯²ƒyž1È]/Æ%¸`³g­9#&Ïá™|t}„`ìÄÍ0¨\>RÀðDîØž(=sûxS«ûxS÷‰£2ú˜{@K+=€ÒR—@9Pê@rŸº`>ñsGo8½ÎÉ¿Ûû~F°WÎ|ñf %žÜÄÊìöƒ˜|<ÄjP–`Ò@‹š±º‚çî!Om2à-¯.˜/à¡+8gN+@-Ëê¹%c%jðTm”s &«ô”R`N¶÷±ë¼#Þlñ½9¡è³… ¯àœ[>“¶¥ÌJð%ÈÒgäj_{IO˜™Œ9¨ÄÑ9"˜5°Ûf æž(W1Œqy\˜qêÌ91Ó0â㜫˜æWܘÞ#&õ9«èd>žÅÐÿŒ ‡ó¹ w½PB<Òzóz#½±ÞDoê:ÌŒ áYoYošÙkf¯™½föšÙkfôõ¦9¼röÙ0ŒoD’›°…ÂÙ¦®rêÔ羺R©Ï}+òn+ò}îƒïs?¨CÔÑZVïgC,’{J»³7P”É@QðÙ²(ÊÁ@QŽ}ro‚RõÜ› l=÷&(a/]õÍ|ñ# ª*[†{Bš§äþÜóïѺŒÎÚý)ÖÖ£^aái|F„á åS­0,,‰À£kŒ+Ù`Ø­zÙa\È#`âÔt•kÚf¤®r€ãFž_*OÇÕ³ÚÛòÎ×ÕÒTJœø CW#óL^®éËR&(¨¦¤LMäÄ+“H ³Qþù|@o¥OÞ0Í×nš™43C`z¸› ânÍ0>Hº1C,q·^¢+#+G<™ñhiiÒânâténpå ƒ(Ü@9ÈàÊA7P2¸|jÜ®7 ntvдgP Gâ^tÔö FƒJy¸ìº¸;(º/Ûéø$¡É‚¨¯ñ©G"Ó‰# “‘ÄéÑ‘¤éÄQ_VSæDR&s¢à&s¢à§GG&¢À“FQéÑÑX€6i¬Gd-m,íÆ@4Ø–v£Ÿ<Œ‚áa £hyEËÃ(ZFÑò0Š–‡Q´<Œ¢åa-£hyÅK;–v<,íxXÚñ°´ãaiÇÃÒŽ‡¥ó¡bYÙ`Ș‰ YHõ~w!ûKyÅpK¼æmW+·¯ì׊(œ×2÷0:æÞ‚i¢iõdZ0À[²ælxcj´’q¤yøbj§†+¦Öhxbj†#¦Ö(›mNÎf›“³5&Ù“lIÞ“¼3&ygLòΘä1);cRvƤìŒIÙ“²3&egLÊΘ”1);cR¬1g‰8kLÄYc"s»‚tˆ1âžm"Ž·\æq¤¿™ Ö½Q=à÷ò3&震«éŽVÓeàxÓÎ%ôó ßOcrá5,%´}bàkå70k%’W³% 'P–’âsYs0ŸüêÎÕÑê‡mÁx‚g*ã½Tà†#·KÂåëNw}ÃÀSÔ>Ú„@õ*'lA®wŒŸþ¥Ö[Vy’ã÷Rl¯.YuËtyø†âÏß|¼õ0æLØ üÇõÀ&„ûôVZ¯€-°Å¶XÀ ØÁv0‹2œ„¨õ” ËBfÿW¦“ ^“ ÖIë$™åIN‚R‰¹"©ä‰Ä2—Í€`ÂÎ ±°7H,L‰…Ù ±°$ã* :ã*è ‡d°W¦«àµ¾b°W¦«´•é*(ÚNWAÑvº ж²CTy.¢úò²£6èÊT~ÍIÙoOÒÔn¢' v;m5=Ø7”&|üôx‰¹»ñ´oGpWÚIšTÀTj {›?XS«U€³jßé´¯ú³.@aÛh9í…ä´VkÞž­¤Qz-é)èx|f·ëf"VœDMIêWP¼GÍã½µÇÏÉì1O˜TóÛI G&2|ÿôº<ߦ’ÒØC\gd< ˆm§Ë¢ª-ÌÙÑÙAtçT@Lf©FçT œG9QÚp’ö枈žÅ/µÆb‘¢ÖnKDÌ–j2["šM,úDËõdn‰(ÂÌ-Å”¹%¢ãvn‰è)„ôìí„|ÌÒbIƒ¥mï§XÚöG‰—‚JÙyóŠmT:]ž Ò)³•2*¾ä¶lÆSÚʽ´Y)Ôçéö¶}BRZÜ 8ê'×÷VLòº¥P’nJ7[x;ääiSHiÙÓfÏÙeÜ9Ot”Îý*˜s¿JMæÜ¯Òaš­ƒ"™íÀÌbæt–ÔôMgI‡ét–t˜NgIé,éÑÂrbÐêQü{=‹ÿéöa‰ã\½téßoÞCûmº«v·g;-ï›ë©PÒž²¼}I¾Qý[ËöÜêØþ¤Ñÿ±°ï¬O£P· ÞÏA¦?~zøps«ùêlY6yt²,}òw©{Æ›‡×KÇ‚ß-?F›¶Žúîãõÿ.›´ÏFVÚeí.SÍ݉œ¾çìy*gÇÕ?è¢Ó±ÅÈÉbZÎt9Ý#­îŒ¸•³š‚»pMÃb5üï+“¡byLÅéÕÊNé[†¾…)‡l9’O”3´Ï{í÷œµŽÇ9y(œå‘œVûrBû<´Ïî|1d•Jz¥x²˜–ó„&ih’ÓäN‘b{¿ËV{¿Sû­÷å ®¡m¿×¶m«?Ñhù!œˆGùḒfy¬)AEk~Ç™"kŠÃˆQdã+²ýÁR¶¿ Êö·DÙþsÚsýí#“ì\%ß\ß#mptÌ¿¾z¸úp÷ÓEcR“œuŽd¨6>ô5lMÿíÝûëËÿ¸¿ž„ê¿\ßþ®J°LWéÿw C endstream endobj 506 0 obj << /Type /XRef /Index [0 507] /Size 507 /W [1 3 1] /Root 504 0 R /Info 505 0 R /ID [ ] /Length 1434 /Filter /FlateDecode >> stream xÚ%Öe˜–E‡ñçìÒ˲,ݹt-¹äÒ,±° ½„4Ò-)!H ÝÝJ‹"ÒÆEI(J(!‚‚ÿ{üò»æ§fΜ3óA¼ ‚À‚Øk­ŠÂÕ£eUé«K+’@ úêÐJ É &}µi%‡Àc®­” ÐÇÍ!aÒÇKCÂ! $ÐWV¤…æôÅÒŠ„tЂ¾j´ÒChCÉ™ -}Uhe†,ð&}•ie…lЉ¾J´²CèLÁ É ¹  }1´rC~ WŸy!ä‡((¡†"PŠAq(%¡DCi(e¡T² ˆðëVø®ã1çßÇÐ_s Ã1fÇÑpþU>j•-HRÌ¿…à8S¿d±„]ôü*ø´¨mAäßçW¿ÄY%Æ÷Õ‡ÆÐâ-Èå/4–ÐÌ‚Âç}ß|ÍO&ZYí/´æ)à|¾´‡ÐÚY“àïëÈ-¤¨S×ó#uf¶½Ÿo‘“.Ô‚Æ'üOÒÖ‘„.¹ÍZû¾4ï®g[,-}9éÈInA«ºÐú#Ñ6™H¬,Ú5ík‰]DÇç¢ÓpÑy½è!º ÝW‰/üKI`G»H Þ© ½‰Þ­EŸHÑ7Nô;&™Ñà@ ‰CωaÄðBbD1r’µKŒ¾#ÆÜcy˸êb|z1¡¼s‰I|è½1¹˜²EL]&¦ÓO‰‡ÅÌ{bV<sš·FÌ=í'C•9ªÌe´`~ßGE9*Êeµ`Aݼ0›XTJ,® ‹¥©€-›.–Ï+払|cUI±:‰5Ät-Ã]ËÌ×íë™ïÆP±)Ø\Dla¾[ ˆ¸°5Úö¯Ø~Vì¸+>|%v&»ÒˆÝ•Äâ··…Ø×\ìï'>^*Ÿ\™Çg%Ä¡|âóÉâðq¤•8:^|Áò‹Çý ¦úåq’èžÚ(N#Îgý¹âüqñÕmñõMñm<ûÅnâYry¸òT\e“¾VÅ›mɱ-¹œ\'UnÅß3´æ‹›¬êdØO½Å-’æyp{›¸³RÜm)~.·Ä/ŒêÞnqŸé?Ø$žHšß¸ï÷¹â}âO.¯YQ…Ί©ò¬¸jÐJªÞ¬”"nÑDiÕ‘•Y-Ê*­|;QÑÇTUûVIe`•7‹*Š©U}(bÃAk5”V“QÕb‚µ+‚JÒê†Â¯"Ž×Ï)4 «ŠF,ž×7Ö~`M‹„­¢Y2¸ šç-ú‹–*k¥J±6*Xk;ÉÏ’#Ëqd¹f‰ßéB»«¢‹Ò‘ŸTGÖù èò¶èÆ€ºÝŸŠžOD/Fß[`}î‹~Œ¾ÿ;b RýÚ`>ø1dÊŒ†‘ÃUL6b¬©ØF1¾Ñ*ICÄÇâqÄe¼ÊÊÞ¥5‘aLºíGÏáê8\]³ÉÚ‹mJ}1uœ˜¦ °Ú-l&ëñ> 5k…˜­­ÏæÌޤ™ÛKÌ#æÎÚrm!9´¨‡X¬­À–$Š¥;IJsþ»àŽÜ•0[þLVòñU$ÒšÑb-O¬£ ÖF‰äý¦¿Ä–´bëÿ‡ç¾ãÜwœûŽÓÞqÆ»8à˜uþo”ÿßÄ!ìâ£×qÖº³mùõ¾C‚ÿ¿ŒÔ endstream endobj startxref 114414 %%EOF gbutils-5.7.1/doc/cygwin_install.txt0000644000175000017500000000652212447776433014500 00000000000000 ______________________________ GBUTILS: CYGWIN INSTALLATION Giulio Bottazzi ______________________________ Table of Contents _________________ 1 Introduction 2 Install Cygwin 3 Install GNU matheval library 4 Install gbutils 1 Introduction ============== The present document provides a short description of how to install the gbutils package inside a [Cygwin] environment. From its website "Cygwin is a large collection of GNU and Open Source tools which provide functionality similar to a Linux distribution on Windows". The Cygwin DLL currently works with all recent, commercially released x86 32 bit and 64 bit versions of Windows, starting with Windows XP SP3. [Cygwin] https://www.cygwin.com/ 2 Install Cygwin ================ You can skip this part if you use Cygwin already. Otherwise follow the instructions. From the [Cygwin] website download the installation program on the windows machine. There is both a 32 bit and a 64 bit flavor. Launch the executable. It will require to set a few parameters, but I usually accept the default setting. Then you are presented with a page that ask you to select extra packages for installation, similar to the picture below. [file:cygwin_install.png] [http://cafim.sssup.it/~giulio/software/gbutils/cygwin_install.png] From this window select the packages (by clicking on the "circular arrows" symbol on the left) `gsl' and `gsl-devel'. Moreover check that the packages `crypt' and `make' are selected. They should be already, but you never know. If you plan to install the libmatheval support (highly recommended) install also `flex', `guile', `guile-devel', `libgmp' and `libgmp-devel'. [Cygwin] https://www.cygwin.com/ 3 Install GNU matheval library ============================== Download the last package from the [libmatheval website]. It should have extension `.tar.gz'. Move the package in `c:\cigwin\usrl\local' and launch the `Cygwin desktop' (an icon should have been created in your Desktop). Inside the shell move to `/usr/local/' and unpack the source code ,---- | tar xvzf libmatheval-{version}.tar.gz `---- move inside the source directory ,---- | cd libmatheval-{version} `---- run the configure script specifying the prefix `/usr' ,---- | ./configure --prefix=/usr `---- then build the files ,---- | make `---- and install them ,---- | make install `---- If more detailed instructions are necessary, see the file `INSTALL' in the source directory (you can use the command `less INSTALL'). [libmatheval website] https://www.gnu.org/software/libmatheval/ 4 Install gbutils ================= From the [cafed repository] download the last `tar.gz' package and move it in the `/usr/local/' directory. In the `Cygwin desktop' unpack the package: ,---- | tar xvzf gbutils-{version}.tar.gz `---- move inside the source directory ,---- | cd gbutils-{version} `---- run the configure script ,---- | ./configure `---- then build the files ,---- | make `---- and install them ,---- | make install `---- If more detailed instructions are necessary, see the file `INSTALL' in the source directory (you can use the command `less INSTALL'). This is the END, enjoy your gbutils :-) [cafed repository] ftp://cafed.sssup.it/packages/ gbutils-5.7.1/doc/overview.txt0000644000175000017500000005153112447776433013320 00000000000000 __________________ GBUTILS OVERVIEW Giulio Bottazzi __________________ Table of Contents _________________ 1 Brief description of programs .. 1.1 Data Manipulation .. 1.2 Data transformation .. 1.3 Descriptive statistics .. 1.4 Statistical tests and models 2 Understanding Input/Output .. 2.1 Sequential, tabular and compounded input .. 2.2 Missing values and NaN management .. 2.3 Radix and thousands separator .. 2.4 Output format and precision 3 Numerical Error handling 4 Binary format 5 Graphic output .. 5.1 GNU plotutils package .. 5.2 Gnuplot interactive session .. 5.3 Gnuplot's plot from command line 6 Programs summary table 1 Brief description of programs =============================== The programs in `gbutils' can be divided in four broad classes: - Data Manipulation - Data Transformation - Descriptive Statistics - Statistical Tests and Models The basic operation is essentially the same for all programs: you feed the standard input of the program with data in ASCII format separated by spaces, tabs or newline character. In general, each input line is considered a record and the blank separated entries in each line are considered different fields. The exact way in which different records and fields are treated depends on the program and can vary accordingly to the options specified in the command line (see below). After the program has read the data from standard input, it performs the required manipulations/analyses and prints the result to standard output, in the form of an ASCII file of newline separated records. Inside each output record, the fields are separated by spaces. Obviously, the meaning of the records and fields depend on the program. 1.1 Data Manipulation ~~~~~~~~~~~~~~~~~~~~~ These programs do not perform any analysis by themselves. Rather, they are provided as an help to prepare data for subsequent analysis. In particular, gbget is the only program that reads data from file and not from standard input. It can be used to extract data, according to a given pattern, from one or more files and send them, through a pipe `|', to other utilities. This program possesses a rather complex set of options. See README.gbget for a tutorial on its use. gbget: extract data from a tabular input according to a specified pattern. It is possible to access more files at the same time, merge their contents and transpose or flatten the resulting table. gbfun: compute generic functions on data in a column-wise manner. The function can be applied to all the columns or defined in a recursive way. gbgrid: generate a grid (i.e. a matrix) of values according to a user specified function gbboot: generate bootstrapped sequences from data provided sample gbrand: generated i.i.d. pseudo random variates gbenv: provide information about the numeric environment and the internal settings of the package 1.2 Data transformation ~~~~~~~~~~~~~~~~~~~~~~~ These programs perform basic transformation on input data, which are often considered preliminary to further statistical analysis. gbmave: print moving statistics (average, variance, etc.) of input data gbinterp: compute the interpolation on a regular mesh of user provided points. It can also print first and second derivative of the interpolation. gbfilternear: filter near points in Ecuclidean metrics. Point whose distance is below a given threshold are removed. 1.3 Descriptive statistics ~~~~~~~~~~~~~~~~~~~~~~~~~~ These utilities are useful in the representation and description of data. They encompass simple statistics and more "advanced" non parametric methods. gbdist: cumulative distribution of input data gbstat: simple descriptive statistics of input data gbbin: compute binned statistics gbquant: quantiles of the empirical distribution of input data gbhisto: histogram for univariate data. Choose between absolute frequencies, relative frequencies and empirical density gbker: kernel density estimate for univariate data. The type of kernel, the bandwidth and the computation method can be specified at the command line gbnear: density estimate via nearest neighbors method gbker2d: kernel density estimate for bivariate data gbhisto2d: histograms for bivariate data gbgcorr: Compute the correlation dimension of a time series with a Gaussian kernel. gbacorr: It computes the autocorrelogram or the cross-autocorrelogram of a series of observations. It reads the data column-wise. gbxcorr: Compute the cross-covariance and cross-correlation coefficients with and without the removal of the mean of two samples. It reads the data column-wise. 1.4 Statistical tests and models ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The utilities provide statistical tests to compare different samples and non-parametric method to investigate relationship between paired (or in general compounded) observations. gbtest: various one and two samples statistical tests. When available, p-score significance is also provided. gbmodes: find the critical bandwidth for a kernel density estimate to generate a given number of modes and compute the associated p-value using smoothed bootstrap technique gbbin: the program takes couples of values X Y (separated by spaces), bins them with respect to the first variable and prints statistics of the second variables gbkreg: compute the kernel non-linear regression function gbkreg2d: compute the kernel non-linear regression function on three dimensional data gblreg: compute linear OLS regression gbglreg: compute generalized linear OLS regression gbnlreg: compute non linear regression using OLS, MAD or asymmetric MAD estimators gbnlqreg: compute non linear quantile regression gbnlmult: contemporaneous least square estimation of a system of non linear equations. gbnlprobit: estimate a non linear probit model on binary data gbhill: estimate different families of probability distribution on the extremal data using maximum likelihood. For more information on a specific command, use the -h command line option. Please, notice that all the programs work by loading the whole set of data in memory before computing the relevant statistics. In this respect, they are probably not suitable to be used on very large datasets. 2 Understanding Input/Output ============================ All the commands of this package read input in ASCII format. The data should be separated by white characters (spaces or tabs) or newlines. Lines beginning with a fence symbol `#' are ignored. They are simply skipped by the input routine. If support for the zlib has been included at compile time (see above) the input ASCII file can be gz-compressed. A file can contain several blocks of data. Blocks are separated by two consecutive blank lines. In general, all operations are performed on the first block found in the datafile. The program 'gbget' can be used to extract one particular block (or set of blocks) from one file. 2.1 Sequential, tabular and compounded input ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The utilities in this package use three different ways of reading data from input: sequential: In 'sequential' format a single dataset is internally build from the data input file. All the entries found on one column of input are read sequentially and put in the same dataset. Notice that the different lines must contain the same number of entries or NAN values are generated. tabular: In 'tabular' format, each column of the input is treated as a different dataset; the program will internally create a list of datasets, one for each column of input. The different entries on one line are then put inside different sets. Notice that, in this case, the number of fields in the first non-comment non-empty line decides the number of datasets. All subsequent input lines should contain the same number of fields (but see below). compounded: In 'compounded' format the program reads a fixed number of fields from each line. Each line is internally stored as an n-tuple (a couple or a triplet) and treated accordingly. Notice that if some line contains more fields than needed, the extra fields are ignored. An example can clarify the difference between the 'sequential', 'tabular' and 'compounded' format. Suppose to have the following input datafile ,---- | 1.0 2.0 3.0 | 4.0 5.0 6.0 | 7.0 8.0 9.0 `---- using the 'sequential' input the unique dataset `{1.0,2.0,3.0,4.0,...,9.0}' is internally generated by the program. Notice the ordering: all the entries of one line are inserted in the internal dataset before the next line is red. In 'tabular' format, the program builds instead three different datasets: `{1.0,4.0,7.0}', `{2.0,5.0,8.0}' and `{3.0,6.0,9.0}' and use each set separately for its subsequent duties (topically reproducing the same statistical analysis for each set). In 'compounded' format, assuming that the program accepts couples, the following array of ordered couples is generated `{(1.0,2.0),(4.0,5.0),(7.0,8.0)}'. Notice that this is a single dataset, made of couples of associated values. When available, the "sequential" format is the default while the "tabular" format is activated with the option '-t'. See the 6 for the list of input format accepted by the different utilities. 2.2 Missing values and NaN management ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ When the conversion of an input entry to an internal floating point number cannot be performed, or when, on an input line, there are not enough values for the required "tabular" or "compounded" format, a NAN (not-a-number) value is generated. This approach is introduced to make possible the manipulation of files with an uneven number of entries in different columns or with "non numerical" values. The following utilities automatically remove the `NaN' values from their input: `gbstat', `gbdist' and `gbquant'. The other utilities do handle `NaN' values as expected: if `NaN' values are present they typically return `NaN' output. In this case, the option `D' of the `gbget' utility is provided to remove all the lines containing `NaN' entries. This program can be used in a pipe like ,---- | ...| gbget '()D' | .... `---- to treat the data before passing them to other `NaN'-sensitive utilities. 2.3 Radix and thousands separator ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In addition to the radix symbol which separates the fractional and the integer part of the number, sometimes data are reported with a thousand separator symbol. For instance "one million" could be written "1,000,000.00". The character used to separate thousands and the fractional part are defined inside the C locale. Programs in the gbutils package can automatically recognize the locale settings and process these entries accordingly. Please use "gbenv" to see the definitions in use. Changing the locale typically amount simply to the redefinition of the LANG environment variable ,---- | # export LANG="en_US" `---- A list of the available locale can be obtained with the locale program ,---- | # locale -a `---- and the actual setting verified with ,---- | # locale `---- For more details refer to the locale documentation. 2.4 Output format and precision ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In general, the output from the different programs is made of newline separated records of space separated fields of standard ASCII characters, which represent floating point numbers. The default format is scientific notation with a precision of six digits. The format and the precision can be changed using the environment variable `GB_OUT_FLOAT_FORMAT'. This variable can be set to any `printf' (the standard library C function) meaningful string. For instance with ,---- | # export GB_OUT_FLOAT_FORMAT="%.8e" `---- the precision is extended to eight digit. While with ,---- | # export GB_OUT_FLOAT_FORMAT="%.fe" `---- the scientific notation is replaced with a fixed-point notation. Please, refer to the `printf' documentation for further details. There is also a second variable, `GB_OUT_EMPTY_FORMAT', which can be used to tune the comment headings that many programs generate with the verbose option `-v'. Notice that it is automatically set to a value which is consistent with the float format chosen, so in general it is a good idea not to change it explicitly. 3 Numerical Error handling ========================== The default behaviour of Gnu Scientific Library functions is to abort the execution of the program if a numeric error is produced. Some of these errors, especially underflow errors, are tolerable inside a computation. The 'gbutils' package provides a way of switching off the GSL error handling. It is sufficient to set the environment variable `GB_ERROR_HANDLER_OFF' using ,---- | # export GB_ERROR_HANDLER_OFF= `---- and all the programs will ignore numerical errors. This feature must be used carefully, after checking that the loss of precision implied by the presence of these errors can be considered tolerable for the actual computation one wants to perform. The default behaviour can be recovered using ,---- | # unset GB_ERROR_HANDLER_OFF `---- 4 Binary format =============== /THIS IS AN EXPERIMENTAL FEATURE/ Like ASCII files, the binary files are structured as sequences of separate blocks. Each block is made of - one `size_t' with number of columns C - C `size_t' with the length of the rows, R_1 ... R_C - the data stored sequentially column by column, for a total number equal to R_1+R_2+...+R_C This structure allows the storage of non matrices structures in binary format. If lengths are different, the missing values are replaced with NANs. This mimic the behaviour of ASCII data handling. Notice that blocks are simply written one after the other. No particular separators are inserted between them. Implementation: the option `-b' redefines the function used to read and/or write data. This feature has been implemented for `gbget', `gbmstat' and `gbfun'. 5 Graphic output ================ As previously mentioned, the output of many programs in the gbutils package, like gbhisto or gbker, is intended to be plotted and not directly read from the terminal. It is generally composed of records and fields of standard ASCII characters. This type of output can be displayed using the various plotting utilities commonly available in Unix systems. We shortly review below three possibilities. 5.1 GNU plotutils package ~~~~~~~~~~~~~~~~~~~~~~~~~ The plotutils package can be found [here]. It contains the program `graph' which generate a plot starting from input data. For example to obtain a plot of the kernel density of the data in file `datafile.dat' one can use ,---- | gbker < datafile.dat | graph -T x `---- where `-T x' choose an xwindow as output device. [here] http://www.gnu.org/software/plotutils/ 5.2 Gnuplot interactive session ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ An alternative is to use the powerful plotting environment provided by gnuplot. The program can be found [here]. From inside a gnuplot session, the previous kernel density can be obtained with ,---- | plot "< gbker < datafile.dat " `---- see Gnuplot documentations for details. [here] http://www.gnuplot.info/ 5.3 Gnuplot's plot from command line ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ As the example above shows, in order to directly plot the output of a command, inside gnuplot you need to put it inside a special string delimited by ~"<~ and ~"~. Moreover, all double quotes symbols ~"~ have to be escaped. These requirements can lead to cumbersome expressions when complicated commands are necessary. In any case, starting an interactive gnuplot session and writing the expression whose output should be plotted doesn't seem so attractive when one needs fast, simple plotting, for exploratory purposes. For these case the command `gbplot' is provided. This is a shell script that accept the data to be plotted as input and the directive on how to plot it on the command line. The basic usage is as follows ,---- | gbplot [options] [plot|splot] < datafile `---- or ,---- | command pipe | gbplot [options] [plot|splot] `---- The command `plot' or `splot' are required. One can provide further plotting options by inserting them after these command. For example one can plot the kernel density estimate using ,---- | gbker < datafile.dat | gbplot plot `---- In this way the density is plotted using simple points. To use the fancier gnuplot's 'histeps' style use instead ,---- | gbker < datafile.dat | gbplot plot with histeps `---- The syntax of the plotting options is exactly the same that would be used inside gnuplot, after a the `plot' or `splot' command. For instance to specify a range for the x values use ,---- | gbker < datafile.dat | gbplot plot '[-1:1]' with histeps `---- It is also possible to obtain multiple plots of the data using the gnuplot special file name '""', as in ,---- | gbker < datafile.dat | gbplot plot 'w p , "" w l' `---- This command draws the kernel estimate two times: the first with points, the second with a line (as specified by the `w l' expression). `gbplot' also possesses several options. They must be specified before the `plot' or `splot' command. To insert a title in the plot use the option `-t' ,---- | gbker < datafile.dat | gbplot -t Title plot with histeps `---- Terminal type and output file can be specified with the `-T' and `-o' options respectively. The command ,---- | gbker < datafile.dat | gbplot -T pdf -o output.pdf plot with histeps `---- produce a pdf version fo the plot and save it in 'output.pdf'. Finally, if an interactive manipulation of plot parameters or data is required, you can use the option `-i'. This option opens an interactive gnuplot session, allowing for direct manipulation of plot settings and parameters ,---- | gbker < datafile.dat | gbplot -i plot with histeps `---- Once the session is closed, the output is saved in a file using a specific terminal if options `-o' and `-T' have been specified. 6 Programs summary table ======================== Name Input Type External lib NAN ----------------------------------------------- gbget c+ (matheval) * gbfun c+ matheval gbgrid no matheval gbrand no gsl gbboot s,t,c+ (gsl) gbenv no gbmave s,t * gbinterp c,2 gsl gbfilternear c+ gbdist s,t * gbstat s,t * gbquant s,t,c+ * gbhisto s,t gbker s gsl gbnear s gbhisto2d c2 gbgcorr s gbacorr c1,c2 gbxcorr c2 gbker2d c2 gbbin c+ gbtest c+ (gsl) * gbmodes s gsl gbbin t gbkreg c2 gsl gbkreg2d c3 gblreg c2 gsl gbglreg c+ gsl gbnlreg c+ gsl,matheval gbnlqreg c+ gsl,matheval gbhill s gsl gbnlmult c+ gsl,matheval gbnlprobit c+ gsl,matheval gbnlpanel c+ gsl,matheval * gbnlpolyit c+ gsl,matheval *Input Type*: 's' sequential; 't' tabular; 'c' compounded c2 read couples, c3 triplets, c+ a variable number of columns; 'no' no input required *External libs*: gsl: Gnu Scientific Library matheval: GNU matheval library () means optional dependence (special features are available only if the library is found) *NAN*: program automatically ignores NAN values in computations gbutils-5.7.1/doc/intro.txt0000644000175000017500000002002212573765610012567 00000000000000 â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â” GBUTILS: COMMAND LINE ECONOMETRICS Giulio Bottazzi â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â” Table of Contents ───────────────── 1 Getting Started .. 1.1 Requirements .. 1.2 Installation instructions 2 Documentation 3 Contributors 1 Getting Started â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• This is a brief description of `gbutils' (version 5.6), a set of command line utilities for the manipulation and statistical analysis of data. These utilities read data from standard input in an ASCII format and print the result in ASCII format to standard output. See the [overview] for more details and join [gbutils google group] for discussion and news. In many cases, the output of the utilities in the `gbutils' package is designed in a format suitable to be sent to other program, like the graph program in the [plotutils] package, for plotting. Alternatively, these utilities can be used inside an interactive [gnuplot] session, or inside a gnuplot script, with the help of the special datafile identifier `<' (see Gnuplot documentations for details). [file:./example1.png] [http://cafim.sssup.it/~giulio/software/gbutils/example1.png] Let us see some examples. Figure 1 reports empirical estimates of the density of $200$ realizations of a exponential power random variable, obtained using both a binned distribution and a kernel estimate. This picture can be obtained in terminal with the following list of commands: ╭──── │ gbrand -c 1 -r 200 gaussian 1 > data.txt │ │ gbker < data.txt >kernel.txt │ │ gbhisto -n 20 -M 2 histogram.txt │ │ gbplot -T 'png enhan crop' -o example1.png plot 'w histeps title "binned",\ │ "kernel.txt" w l title "kernel" ' < histogram.txt │ │ rm data.dat kernel.txt histogram.txt ╰──── In the first line, a sample of 200 observations is independently drawn form a Gaussian distribution with unit variance and saved in the file `data.txt'. The second line builds a kernel estimate of the density and the third an histograms. Results are saved in `kernel.txt' and `histogram.txt', respectively. The command in the fourth line, which continues on the fifth, generates the plot and save the result in `example1.png' and the last line remove all the intermediary files. [file:./example2.png] [http://cafim.sssup.it/~giulio/software/gbutils/example2.png] The second example, Figure 2, is a scatter plot of couples of points together with a non-linear kernel regression. ╭──── │ gbrand -c 2 -r 200 gaussian 1 | gbfun 'x1' 'x1+.5*x2' > data.txt │ │ gbkreg < data.txt > kernel_reg.txt │ │ gbplot -T 'png enhan crop' -o example2.png plot 'w p pt 5,\ │ "kernel_reg.txt" w l ' < data.txt │ │ rm kernel_reg.txt data.txt ╰──── The data generated in the first line and saved in `data.txt' are independent couples of correlated random variables. A kernel regression is performed in the second line. The third (and fourth) lines produce the plot. What these commands do is to generate random samples, somehow manipulate them, perform some model estimation and finally plot the result. All this in one line of code. Both pictures are generated using `gbplot', which is an interface to the [gnuplot] graphic program. To reproduce these pictures the latter must be installed in your system. Grasping all the details of the lines above is probably complicated. The baseline message, whoever, should be clear: even complicated analysis can be split in a sequence of very simple steps. The programs in `gbutils' are completely written in C. Some of them can make use of external libraries (see below). These programs have been tested (and repeatedly used for many years) on different Linux distributions and should compile and run, in principle, on any Unix platform. Other operating systems, most notably Windows, have been scarcely tested. These programs have been originally written for personal use. Even if today they are used by several persons, please consider that I maintain and develop them in my spare time. They are distributed under the [GPL license] in the hope they could be of help to other people, but without any implied warranty. Please report bugs to [mailto:gbutils@googlegroups.com] [overview] http://cafim.sssup.it/~giulio/software/gbutils/overview.html [gbutils google group] http://groups.google.com/group/gbutils [plotutils] https://www.gnu.org/software/plotutils/ [gnuplot] http://www.gnuplot.info/ [GPL license] file:COPYING 1.1 Requirements ──────────────── To be installed from source, the package requires a C compiler and the standard C library. Unix-like environment in which GNU auto-tools can work is required for automatic installation. Many programs in gbutils do not require ANY external library apart the standard ones. There are however exceptions. Several programs use the GNU Scientific Library (GSL) (version >= 1.6) and other the GNU matheval library (version >=1.0.1). See the "Programs summary table" for the list of dependencies of the different utilities. At install time, if a library is not found, the programs requiring it are omitted from the list of programs to be installed. If the zlib library is found on the system, all the utilities are compiled with the capability of reading gz-compressed input. For more information about GSL, including installation procedures on various platforms, check [here]. GNU matheval library is hosted [here] and zlib home page is [here]. Notice that, in principle, using programs linked with different libraries can produce slightly different outputs. [here] http://www.gnu.org/software/gsl/ [here] http://savannah.gnu.org [here] http://www.gzip.org/zlib/ 1.2 Installation instructions ───────────────────────────── On `Linux', the `gbutils' package can be either installed using a .deb package or from source. The first method is recommended. You can download the binaries executable for your system from the [Debian] or the [Ubuntu] repositories. Alternatively, the latest source code is available from the [cafed] repository. Check the `README' file in the distributed package for instruction about the installation from source. In `Windows', the `gbutils' package is installed in the `Cygwin' environment. Follow the instructions in the [cygwin installation] page. [Debian] https://packages.debian.org/unstable/main/gbutils [Ubuntu] http://packages.ubuntu.com/wily/gbutils [cafed] ftp://cafed.sssup.it/packages/ [cygwin installation] http://cafim.sssup.it/~giulio/software/gbutils/cygwin_install.html 2 Documentation â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• For a brief survey of the package features see the [overview]. The `gbget' utility is the Swiss knife of the package, the main tool to perform data manipulation. Its special role commands a specific [gbget tutorial]. A brief summary of options and modes of operation can be obtained from all the programs using the command line option `-h' or `--help'. All the programs are accompanied by automatically generated manual pages which can be isnpected with the `man' Unix utility. [overview] http://cafim.sssup.it/~giulio/software/gbutils/overview.html [gbget tutorial] http://cafim.sssup.it/~giulio/software/gbutils/gbget.html 3 Contributors â•â•â•â•â•â•â•â•â•â•â•â•â•â• [Cees Diks], [Federico Tamagni], [Angelo Secchi] and Davide Pirino provided helpful suggestions and coding. [Cees Diks] http://www1.fee.uva.nl/cendef/whoiswho/showHP/default.asp?pID=6&selected=pi [Federico Tamagni] http://www.cafed.sssup.it/~federico/ [Angelo Secchi] http://cafim.sssup.it/~angelo/ gbutils-5.7.1/doc/intro.pdf0000644000175000017500000025531512573765610012540 00000000000000%PDF-1.5 %ÐÔÅØ 35 0 obj << /Length 1462 /Filter /FlateDecode >> stream xÚÕWKsÜ6 ¾çW쑚±T¾ôêt:“¤MÆžjßšh-½f­•Tв“üúµ{Ûé±½,IðÃGì»Û7ß}ÍFÔ…¥ÞÜÞô.š¶ÜT¼.*]mn·›ßÙîn ®Ÿ¿Ïr-Öû½¶Y®„b½,Íl7ãÞïº9ûãö°Ün„(Ú²”h¹i YÉM®8Ö’ánéÝûeÅÞ!˜¯_³\0‡û7ySˆªÝäRªMžÜØ)Ø}&kv—åðk=mn®p¬™ä¢¤ÃµÜب«xx.”,àÔ\—E£5{?™,X8 Ék­6‚-onäçç‹,o%gmnØÁ™`7Áø`!R6m*|ujFT…¬ºQ”:/ °&¸¨Øoö¯Åy»G p$¯”fE–—œÿQÖÓñ9…\®Ëñõ0Ó÷&8¸ƒ\)ÉHüÒ¡âotýßê%FòõvO‘" )?Et³nÁË…IH!K%tËÊ5I§;í\Ñé]&àè!/R«F²‹+ V\*?…jU z¡É‰tS·NSuËÖÑàа;ïì=I¶vî¼›Ò‚`¼'Ã%?ƒ¾…†ìð3.¹ä‚¤´rUüÄKþ”Éj|>QÈV{+VŸfÄ ’f$“-)E¢Š´"š²à•:/FtÊgg"³ûÑÓ$<$zÊsÓ‚¨ég¼Ø9¸ÎôëÓ™]²=ƒqk‚,iUAŠíœl?©™Õ3o žÑè¸g%»÷ãždpî°5~Kr7LK n ‘hýöæý5à§a×´†÷&éR X¶£Çã®·IàÇe"EL¶nî–9!P‰”+ø0Øç¹ˆ‡Aù·ª>ÏÇ5¨ëV#l0†/´êÌlgo©ÖHÛ5¤€8AYú¨Oq‰r—Ìâ÷ µ&u]hQþ›ZÓES'Óaº³R¸KG;‚#<Øm!ù‹ø øÝn°ñ.¹œeh8^¾`ó₹ë-}!(ðøzCeÓbNïÞ©Šù=`ÁYO_&?î¼ÙCþ´–PÐiáïÐÀÆ ÷=\j2‚|ØR‘ÀH@‡ÉÔaE.ÏórETBØHÚH®øH€ÆÛ>X?mõ_²F±+¢¤ªvýcµw±^e»ö7´XfÌ4Îà™tÛ$%Õ£ÀôYoºõlRØÅb^ÐMúÉW´Ša¼´™vB£ÕÓÍ‘í¯.Ô׳Ë’u¢Kœ<Ø~¢BúìÓ²^üÃ%7E%ôé{2ÛtÂÇÓÌDˆ èF4Ô‰Ä ’zѾ‚ߥ¿çƒ_ñÒ¸~¦1º'Ð4ÓÌ~6û©·À*yUVìƒÛ->}4x;eùÌØýä<½:q O”žM_#pµÒEìT^¹Éž]H,%[uxÇHN£V^­Ù”œ_ìsÛ¢¬´OWᆭL‚iâ7<ÂÐ`?§x†õÂ#$àK’ãUÇäà`{¯—úfí¥À\b á- Rµùðum"J]2½BPì{7Ä^¤T8#"…û±ïGLé3… ¢!­Ø€$ý“ƒ?v BøÏT¯O‰a—¢fy‡c… ŒKO#B"ÊwL Å‚„?Ò*6@ás¸žº‚‚­àOš*´ª×>4ßü|ûæ!L¿0 endstream endobj 50 0 obj << /Length 1039 /Filter /FlateDecode >> stream xÚuVKÛ6¾ûW¾, D\ñeIEÐCÑl‘=¤ð­éAkqmbõpE:»ù÷áP»¶£À‰ß çñÍCY?‘ ­x©d¦…æEe²}¿úoÅ®ê2j\¼F‘©ªxÐFÎàýç^d¿«/ðÉl>ÛÍ/ ÿ¶[Ý?ˆm& ^µÈvO™†—u•©ºà¦TÙ®Íþaîpžì&WeÁÄ/›ÜˆŠ}êOnrû¦#¸µƒwa#Kö€mͬ®o‚õQ¿fnl›”“{<7„4CKמф›ìÚ`~“ \¾ùw÷'$“ $Ôº@üþÁ—y€š¬!Mj‡Çg;a %ûˆ-k›Ðððüõ9úäÜ–É’ÀE²p„¨GRÏ2"‹tþ‹ž’à7Æ ÷SÓGÉ¥‹zvqêÆt'ßÑ¥»Óp ÄÇ&¹ÝOãé.饈ìkÓŸ:ˆÞ þvåÝÜÝË{ öä .t–ð5•gýá«Pz‰çõLÐkXÓ•2Òýh‹T×Éóë?ç Ñ<õ¤lH(eðîŸÎ` …WÆn›m .LjãÏ©ÙÂ1ö²`_ ¥'íÜ`?ÀkÝHb”¦¶Ÿè)‹‚„#xÄÆôvú¶1[Ö`7{:OÚnhíi“Ë ª²—Ð}'vjðü2Ðñi„ÔˆÇX*ÃþhÎq ¼Ã&@äfˆ*¨ˆ G’QupNžaÍ7÷–7¸âc ßâе$sɱ²Ô-™‚w£„C}ëú…Rhkœ4yÌ4WÆð­”°!Ñ.ºxÝ1L¡bm}<»®õôÞÐãjeÀyÞLZˆ«I!Qô€/S¬:©ý¤ªJq?ÐÑ<-ë´©—j ¹ú²®—ëŸÂ£Á@l²ý˜"¬Xš®{¿I* ×åö:[GDb§Þ¶‘騼8 J¦à©ÈbËkU.Œl©¨CÐLšÜRÏ©ÆÅª/þH(&F»RÓÒû&üV#Fu@˜ö/Vý æü5HM9¦<’0Œ4°ùeÄsÊ ”L”^Z›JÄÆ!Gb›‰à«£ê”ÜÃÞM””[¾… â?ŽªJ2‰¢Õ§ÝêzŒs endstream endobj 33 0 obj << /Type /XObject /Subtype /Image /Width 588 /Height 452 /BitsPerComponent 8 /ColorSpace [/Indexed /DeviceRGB 101 53 0 R] /Length 3773 /Filter /FlateDecode >> stream xÚíÝk–ª:†á°¬Y89nÎ [hunB, ©¼ß³<}qCòt (纔UQÕî•¢#$ M[»º­_©´ ɽìþs|åÑÐ*$$½œ¦ TB‚Rõ–ÚÑ@EÈþü)L·[>âHXŠ(7¢Ù?.ýŸ#•Ó£¸‚µøó¥ÿ€åÂÐ¥;Æøfù¼ÛA›VvvÊÿ窚FÁRà»UݹÊfmê%,m{·º-ªòÿ— Kǽ×ç–òëÏâ‚ÅR¾c––È)–ʶ_†ÖõUQWEQ_¸ú½H­~´m‰%²ÖGO3Ý©ÞÒ“Mé½hÚ¿ïö«ÕÊKdu\rýõ¯¿qÉ9ÿÅ£;}¼®j0.‘Õ>z-*Þýå½hß ‹þ^`‰|í£bÁÒçììùèÛž`i-[šË¸ԥb\:ÖÒ—ÿOo¾4±ÔO“êŠù–6Ç=ÐÞÇqKƒã¸î–°´:.µE÷6o©;¿ÔvC’k8¿„¥èçýX–°„%,a KKX–°„¥è;•óKXÂRtv¾\ËÅ–BÇ!gËRS~–äe[Í­ÔÅ–¶tTsÿ)·¨šzn¥.–°´¡£ên5î{In¿Fwf¥.–°ô½£þž[û^’Û/›Y©‹%,}í¨òþ7z-ɬÈY©û‰ì –2±Tõ‹'?KrG–>+u—°´¥£ºU¸ï%¹#KŸ•ºXÂÒ¦ŽzŽ>Ÿã8ßÇqXÚ×QÝG_KrG–>+u±„¥˜ c KX–°„%,,a KX–°„%,ýlÉ«ÝÜ?ºK$È’_»¹ª›¦*±DB,yµ›û¢Mu‹%bÉ«Ý\5Ì—°lÉ«ÝÜ2_ÂR¸%¯vsûœ…7“j„X"›,yµ›ûÛ¨ê K$|\ªÿ3yd¯WŸKdɆW»Ù›<1.‘}ã’W»¹?A0©*%²É’W»¹;q™ÕÜ[°¤iÉ«ÝÜTí´¨¼]K2‡ KÁ–t6)K¤é¨XÂÒ^KoE‚%,ýfI–&MXÂÒ>KC@þç–°´ËÒh,,a)ÐÒdÂ-X–°t©¥™³J‚%,a K‘Yúÿ5,ai»%™ýº` KXÂRd–Þ_Æ–6[’¥ï–°„%,Efé–°´5â°„¥Ã-õßÖ4,ußÄ––¦G£È KX ´´gXê¾%,a KçZ’¯Ó),a KXŠÌÒ†Ÿ XÚKXÒ²t–°„¥-ɦ_–°„¥Ø, KXÂÒi–dë/€ KX–°dÕ˜°´nI–°„%,%k LXÂÒ•–†õv›b®ŽŽK²ëÀ´Û’WowRî Kd»%¿ÞîKX ¶äÕÛ}”Xú_—%;-y%ãªÇ`òdÍ’8,kɯ·{oÌÕüÂÒi–¼z»óðL-)l\ò1VoK‡:Z¬·û:K`r\‡¥ƒÇ%¯Þnž©~` L!–¼z»åÃîÜKÇ[òêí–­Ùs–À´Ó’îÏFkI–°„%,°&,a KÇY‡%,]j LX–°„%,a)Kâ- KX–°dÖ˜°äч%,a KX–ö #YY‡%,a K–, KX–°­%qXÂR–À„%,a KXŠÔ’¸_- KX–°„%,aé‹%0a)ˆÁm,aIiHÁ–4- KXÂ’"¥–°„%,™´&,a Kz3o,a)2K`Úࣕ, ,a)È’W»¹ûÿ KX ³äÕnv] 0,,½"ƒësd·W»¹¯ÞlÉ’8wS|¯á8E&>¼ÚÍ®|8,a)Ð’W»¹Ÿ°„¥0K^íæ~ÂÒ:&,­KÕ{²4k)ÙÚÍâ°t°£¥ÚÍÅ+fÆ%,:.yµ›çé`ÉÄ¥EÃÚÍXÂÒ/–¼ÚÍXÂÒ–t6:Jª]/X–°„%,]˜ÁM’¢})K™YM•cžÌc KKXÂR4–t/c K$7KÇ,Ð,a KX–ŒZR¸©K©Y:ê~6,a KXŠÍ7ðbIq`š>gKXÒ˜°dÝÒŸDX–°›¥Ñ{c KXÂÒ&K‡¸c KÇ`–°„¥,yo%,a K[,~ÍL°„%,a)2KƒKX–6X:c‰‘` KXÂRd–xÞ7–Ô1aɲ¥“Vdc Kʘ°„%,a)K;K õvŸÃT[5XÚ… Kþ‹ÁçZóÿ¨KXÚ?. æKÓÉwZõv϶”÷ó˜ëí¾,¥]oK—K^½ÝþýÆ–°£¥ÌÏ1aIÓRÖ˜¬ZºàR+–°¤j)gLXR¶”1&,i[Ê–°„¥/”®³”-&,é[Ê–°”)&,a K_(]jéon™¾ÄÒ!–fF,a KXºÒÒÜ .,%héšGØŒþAÁ–”,Mæ°„%,aébK“{œ°”ž¥‹E:±”[Ñy,a K XʬP8–Ž´”Wqg,j)«‚¼-]UždÖRNET±t°¥Œ _b KXJÅR>…/íYº¬Ìä’¥l _béxK¹+ÄÒ –2)0‡¥3,åQÌœ¥ëfºk–²( †¥s,åPÈ K'YÊ ø–βd¿`Š5Kžeþzk¥¿÷K—lœÉs‹µ›‹¶ÄÒ±˜ÌZòj7×}q”K‡b2kÉ«ÝÜ›Ü-R¢iOI–&µ›§v°„¥M–Ƶ›Ó¬ÿ*FÉÀR;ár/±”ߌNÃÒLíæôŽã’øó–&µ›ÓšòÑ×nNc6bqmÜjíæ)%Æ%,m—¼ÚÍOTµÃÒÁ›i÷¼÷°vsS5.AKÉœ ã–†µ›Ûbnn„%Ý-åÚ.–°„¥Ø6K‰P–2±dqý7–°„¥Ä-¼—À¥ÄVÀb KzÛ‹%,a K‘o0–¢í,a)K7Á–°„¥È,û”3c)Á [X–°Ÿ%[˜°„%,}¡”†%S˜°„%,Ù°d “Kâ°„%,a K:– a²a©¿«#¹§Ôþm¦˜y®®!K©v™g蘰”ö]°X–°-&,ÅÒX–¬<Û KXÂ’¥ž,a KX–¬ –°„%C–Œœ5,a KXŠp?° %,EdÉ«Ý<*Kˆ¥3öÄŒ%¯vsW¥HÁ’¡*‘†,yµ›]ÙÖX:{_ÌXòk7µKÁ’©JÈv,ùµ›‡¥K÷&iK“ÚÍ XJ¨–NV–&µ›±tvRæàríæK‘ÕnN«f…mK«µ›—ÌYJüSn¡vóù–n{ï»Þðjá®WC–¼ÚÍWXúúc³‹Ù&–†µ›S°dŽ’!Kº?‹¥°&,oÉ\•#,aI¹ Kg[²WKY2Xù8ýçÄ¥iÉÂêèÅ&,hÉÄ@XŠÁ’»\—›@°t–%#OÁÒõ–¬<ùj¥ K§X2ótG,]mÉÎ=LkM X:Þ’¥ûNÖš@°t´%[÷ `éBKÆÖw¯í±`éPKÖÖäbé2Kâ2²”"¦t,‰ËÊR‚˜’±”`o,Åi)Åzº?6`éK’dÝÊ_›@°¤nIdÓ/` Kß,½×ܬÝ[9ÙãqKª–Ä¯M‚%EK"–¯å~oÁ’Š%1~ÍdC“–~¶ôtt3?×ÞÒ$‚¥_,½$,¥v¿\d–lXJí~¹ˆ,&HXJí§X,‰|»v›­¥d0Ea©ƒôu@¾–RÁ%™¿ K©ÝKpµ¥Ïg–V,-\’Ä’›m",¹Õ,m”4gÉüµÜ]–ž­uûš\-‰õ[”-mø ËÕ’ýåÛê–nß4åiI2X¾}€¥éïì-å±äöK¯cßyQ‘ZUßUµ”É’ÛÃ, E‰DoiT}WÓÒÂ¥–F¦âµäWßU´´øi¥@KËÃT$–üê»j–â7&oi89¿ÈÔ‚¿ú®’¥ÕÄ’Ž¥ Ç©íÜ7‹ã$aIÛÒ¦Šµ/kK[vKÇX:ÑÔê¸4ž/u‘€„4ÙEò¶õïZ¿ÿVj1Oªïê V³àcR}K$ÐÒ¤ú.–H¨¥Oõ],‘-ýú³KX"X"X"X"KKKKX"X"X"X"KKKKX"X"X"X"XÂÁÁÁ!X"X"X"XÂÁÁÁ!X"X"X"XÂÁÁÁÁ––––ÙäcT®y\‰Kd«¥Q¹æ¦*°DÂ,ùåšË¶Æ ´ä—k.jw°¥"Ú7ËçÝŽÚ4¿\sã°„¥Ðw›”kÆ–ßmR®KXúi\ªÖ,²–—‘™rͶ‘ÀLÊ5c‰„f\®K$4ŸrÍ–!„B!„Bˆ~ꪽk¾[Ñ–zo7]QœÑZå˜6M·Õt;´k¹bs×Íã®·ÝYvµf™YQÞõÞZå˜6M·Õt;tמvÍ«÷'Ö_I®µÞnnEqhüµÊQmšn«évh¿u{ö´Öü§Þeš¹Å¡ñ×*GµiÊ­¦Ü¡rÏ–ÕU©Ú(µV5Š ì¯UŽjÓ”[M·CËÇž=}´U£Ú*÷2Â?ÖVûo_Û’^«ivh?’»~Aõ§Š±Ã&k•#³¤Újzګܵ§ªsµGc‡MÖ*GfIµÕÔ:ôQnÛÓ×RÞþŸþ½]>ï¦Ñ(ÿ7My¾ôˆÕ’.%ýtÄÀɆCHÅy_ó¨UE­Ã&k•c²¤ÙjʺgOïÏ?X½×Fy¯ØaãµÊmšj«évè¾=½·Š×Ú=Câ¹öY«ߦ鶚j‡¾öôçV¡- endstream endobj 53 0 obj << /Length 290 /Filter /FlateDecode >> stream xÚ±KBQÆÏÞú]G‡ ý¼ ‚‹4ú†ÂE#x‡^ƒP.yÇ(´%=n>1 jè¡ Oˆàr—–¯kðñÎßw‘Öz;„ˆ!2FM§tpòÉ+aìû)&0¼õòy‡ªÕÂqétºX,–Ëåz½A§Óé÷û"2›Í’$` …¶i߬mÕ®·0˜<ƒwritì<È…¹ÝðèS©¦«B]ÎÈñî8w b™qH¿|ú}{f×WÏÃÆÓÅÎfó©9‹™–¹¡×XÇ튪6öØ#öt"pÿ@¢á…Õƒh‚I$çPÙÑhÔívK¥Òx<^.—™L¦V«ýç4 endstream endobj 57 0 obj << /Length 1088 /Filter /FlateDecode >> stream xÚ}VÛnã6}÷Wûª]1")ÉR±(°‹6EûVÔ@š¢ %Ú¢[Ii“ýøÎp(Û¹`aÀ"ç®3gÆQ ‰Lñ­’Q& žWyT÷›7<ÏT&¼ÅÕÑ«ò*ó—,—«ðö×^F?›ßá#BØd›\þ²ÛÜÞ‰")¯ÒJD»C$*É…*#U)ž–Y´k¢¿Ø]{\¬‰¥$“?ÄI–IöG­çÙX 6uãLj=4$Æ!éâD°v0:˜Ys´Æ¹vâ¿w¿ÝÞåéuê¤(¸Ê¢DIÈ\RæãÞúˆ¹Ø²¤ÆgÁd¸ZzÊ4%ùQ/[$$ünÇýa Š›'qC:8}Ïóïžä i~¤G ¦gÍç§Ëø¹åiU­%=À{é' Ô¬æ—0{0v0Ý?`û&Òùå7ÿ6»PÓ4„Øf8Ñ»¬¶ãjLÆ }ÒýÔA¥Fò³Ë%ÜÍ#yNAÄùÇ{¡²µ¡€Lá­>¼,÷¹?’[‚’ðS€éÙžl((Ty†áëkb$ÁU"íNžw™÷¡ÓÑ ÆêÙx¢åÀ/Ï«å}ª2ëfºt@?²ÓPÆ€„lHãt,Kö5–f¤>Ú;Ô”Jñ  J©¨oÕŸ•|›e«¥¶¡¨vh 428 ˜š‘äE¥^¶£—©3|óœzÖ£µ¦ ow±§ó×¾´mõÜ8¬ØgR=`2j¹]¦ÐßÛ&”g£í×Çk²¨%s¦×G¤9í†ÝªŸO­mèxŸæéy9ÆÅÎ' R¢¯£ãdáГf©ÏALØ2Ø= 8÷5Á«Ô– Ë©®?OÛŽØžŒC/Yj}‰)š‘¤m¸Ïá¾’Š¤gdáìpÐŒûˆ5¤Ì†î„¥Œì#Yõ:¡v^—µâ5´ÓÒùàY*°¶¢e¢ôo䤄øÞ,eýèûÑ`ÛðnÜÜbÖÞ¯'ß=tð˜âi?è®{&sÚ! ëKÐ{ÕÑÏ]wî˜#´i®$si©?ã&„¹ “ýìfÓûyÎÙ/V» ûâô…+†$™uÛ…&r¨Ë’87¸RUcؼXÕpþ}ò?a­!¯säŒc[#c º2U´mPµ×ÎI³ð†§ P"hœ ¥µAìNãÒ5Á= Fi:ø×u 0 >´ Ŷà0.‘/׿) U›Ÿw›ÿ…QŠ endstream endobj 47 0 obj << /Type /XObject /Subtype /Image /Width 594 /Height 452 /BitsPerComponent 8 /ColorSpace [/Indexed /DeviceRGB 101 60 0 R] /Length 3527 /Filter /FlateDecode >> stream xÚíÝmv¬(…a\ufáäÄÂùO¡c’ε”wÿèÕ¹)I•>…GDUjާ^+ÃhôR$Z&£”žX$f ¢HTPãÀJ ñòžFÍZ 1£GÃJ QI­ ©Žß|ŠêV¢’ú¥õª[ŸG¾jsÖ­Gj½ÿ*Ë7uëÖÃ[ï§nS˜³Þh=nëiÿ6©1ˆ"ˆ"ˆ"ˆBAAA!ˆ"ˆ"ˆ"QõçõDDD! Qˆ"ˆ"ˆB¢…ŠŒ‚(D! Qˆ"ˆB¢ÂÞ¢Z­MD! Q$g¥ˆÂ ¢¢¢…¨hAµ7¢¢¢EEEE¢¢¢AAT;)mv9¢…(D!Š QˆB¢òˆÌAT¢r×%ÿcZ™1c7 ˆÊ°—ÉYÔÒÒÊŒ2kRˆªY”l9÷L3£žYMˆ*]”ë«5ˆ¿«ãE:ŸI5¢V"œMóû4cFDµ ʢ⼣rìÌ>ÍôÔQù‰zE%»d»&»=r¬—­¨x/—ýoåx×YfÞzýÛ9à(ŠæéËåäÅò¯·ºö²EU‡¨’ÄÿÌè·Qˆªr÷¹lAÔ]¢ô¨¢ª%ê6QSg)šU™(Q÷‰ ø-)ͤ(D‘ˆ¢äŽ?†¨vDÝ QÕM»¹¢šu(Dµ"ê.PˆªLÔîòˆBTÔåo…¨6DÝ QMˆ’ß ¢) QÄ}{~ü›u“B‰(J¢H°¨äÈj]”(D‘ˆ¢$ö1%¢Ú%©F)Õ¦(QˆKĈB¢î…(DÅ…(Dy{…¨¶…ÄÝÆòØçFT•¢ž…¨Ô¢œ¡Äõ (DÝ'ê¾´> Qõ‰’GA!ª6Q{BTm¢äñϨÛùÒŠú¹ýyPˆªI”äð`DÅesÇð€µ¡¹ƒz!ª)QiÿÚ·'D!*JÍÿç QˆŠ"j.È…¨X¢~ð…¨(¢$‡DU#J$¿9"ªPtßÝSŽET¡¢2:ºCT¢²õ„¨Ûżˆ7«ÑD•/J²þÔˆ*M”ä Q…‰ÊÝ¢ò/ÆÿZù˜¯’m…¨LEm¦U½>ç« QWE}wP…‰Ò¢rq¶xÕâŒKa¢ôØ!*[Qòz•&j˜ ¢²%¯òDuF!*SQ"¯Ei…¨LEÉ+_@ÇGsˆÊò0ç³xˆ*OTþ£ä^¢æ€àIQEyÚx¡ÊN”÷ù•³()¢r%Q {D‘£ª,Q Q™{Bûµ¸ž…¨¸žÕŒÏ\Ýè>ßÈ¢îåÞ˜Ûã7–S…U¹¨×QŽ#PˆB”[câûÞ…(ÇêxD5'* ±Ï¢uMÔº€B9”p²åWžNŸy•ñ¨¢b°Ù^ åµøæÏù1jÊBTdQþ‹[ Õ¤x¢ìwfE¢ÂDL0@¢|Ú‘ý[" QÞ¢¶u"ª¥ãë©`QB>=«BTC¢ý¿?-6m‹ÚyRÝEQÇ ü”㤠'†(QnÛÜÖï,¼±%êÕ:¢ZeýµMÔ×þN! Q±DY(D‹²>÷Q ˆ Xö\”Ëp&¢ee9|[Þ!Š\uþ˜Îª†¤Ú‰ZvOÑ;EDÕ#ê|>îò~s}ÕR¯ä/jyöÎvhç‹QˆÚÛŠmvÁë BDU)jÉê%_»»ƒŠº4Q‹Ú[z² ‡¿v›@¢EY&« QÖ-è"Ê6ùi}ÝU(Æ£*õ²ŠÚ™\€(D!Ûõ3¹`g€ÀúXOD!j:ïÿ“ ìå•MTÉ£ˆŠ¼Ù,§ƒ­ÕÖ†¡ªì<¢âŠZtP QˆŠ'Jö…(Dù7 »c ˆB”ÿXÂîÝŸ…¨Qrfœ4¿u_µ¢ôd”™L]¢öÐ\}\`,> 6(ªæÿôˆrõ7…¨3o=wTcõ¢"½@<‰62µ43~‹šåñ½G]ƒ¢&!DÙ=‰ÃÓªšÕ-\!êðu«»ºÔkíöQë:j¢VWžïžú}ùµ\Ÿ²/?uÔ»®>*Më}£e13Ì£C¨í&_LŸÇ å&Jó§FÔ‘(QÊSÔŒçƒÓJe¦nT‹¢Îî²²˜f ËpD)®®ò%’‹*G¢œD©ßy+ÊãQéˆjUÔëürôÍ^8‚@ˆªK”M÷;•‡¨¦Eýü rX½Nïs€(D}Œ‘ï—Û÷=Ô Q…ÔÞçUµˆB¢¢‰Ú»¶óvQåQw_Š(DùäôéˆBTTO œRAT4Q.ž`„¨ˆž*{^5¢RfÿqS{9D5*ÊaÃÝß6Ê$ül›)Î17øüÖM‰o=ñj?!3¯³tß–ïÙ3&YóÃd’m–~Þ }_â[O¼ÚȘ„ýïœd«®3éÚ~kõ;C±¸·žzµŸ’1ãô“™d›E'\mßßót½·N~~5Ýj?#óž¾W^ºôC‰_Ä)ù÷<±¨„«ý”ŒN{L3ª7K·pU¢¨´«ýŒLÊÙŸ‚¤Ô>j,VTÚÕn%³˜¬ã¸¿Ö“|²ï=qõ.UTbPd¾G\ÖÎo“ö“%Û,Ã\† }™¢’®ö2ý×w1]¥ý)7Ë÷(¡.ò­§]ígdú)áɆ)ùµ7 ž¿VÌPæ—!ñjÿ!óÉE– endstream endobj 60 0 obj << /Length 290 /Filter /FlateDecode >> stream xÚ±KBQÆÏÞú]G‡ ý¼ ‚‹4ú†ÂE#x‡^ƒP.yÇ(´%=n>1 jè¡ Oˆàr—–¯kðñÎßw‘Öz;„ˆ!2FM§tpòÉ+aìû)&0¼õòy‡ªÕÂqétºX,–Ëåz½A§Óé÷û"2›Í’$` …¶i߬mÕ®·0˜<ƒwritì<È…¹ÝðèS©¦«B]ÎÈñî8w b™qH¿|ú}{f×WÏÃÆÓÅÎfó©9‹™–¹¡×XÇ튪6öØ#öt"pÿ@¢á…Õƒh‚I$çPÙÑhÔív—Ëe©TªÕjãñ8“Éüc§4 endstream endobj 71 0 obj << /Length 2025 /Filter /FlateDecode >> stream xÚXÝܶ÷_±È“ð*¢¾V* i.\ǨÏ(‚¦\‰·Kœ$n(ÉçË_ßù¢Vw·kôIäÌpHÎüæƒúÛí«ïߨr£’¸Njµ¹½Û¨´ˆwuµ) §Eµ¹m7ÿ‰ן:ÛèÉ´7Û,K#=èîq´#ÎTÔèÉû›mº‹ OFX2ñÐ,¨…cþ˜ÍÐ&º;¦~¹I«ÈøG‘±°¥HŒ“9ÁV*Šoþ{û*ã:Ûm¶*‹‹¼æÞ î]E'ï^÷#ÎjÜV|ÿ¦HÖw¬’¸ªÔ&᥇ý<ÙndÁ§ÆÈÓ8¯wAP{ÙƒÌa&Ó=ò.ÞN“˜iåûsÌÌO®—exQüNGÓ3 ‡7Úª<‰3Uð Þ®×÷d¶Ç<>3—ù:nàYg÷^{kÄ#¿'E2óÄ+»Ï°Ô7íHùÊ’Y‘EG´¿Æ} §T ¼; Mfdˆ  ™xsbI„š ¥áJ¾sž=ÄyöH;i?â™ÅPÎìÐâuµö÷$ËŒ7¤cbâ{K³ùk'oÑãn™D‡ÄÁxts'ct±Eü­$ÒÈÏÃk8Z¢ØËÀ:y;4Ð tÇMžžpu«4ú<د8RÑ©Ó\½¤Iý Àð,ãn€Ëóz²ÃÉã#Ø·q¯¢Œz7N¬hp“Þw¢ÿßvhî÷À‚»èü†±yáxk/b¸5Ú7nDûô%bŠ'€É“Ý 08;> RVÛàÔy{°`ÜçKá„‘'åb…ÑÖ‘¸‹•eýÂêe½»Ž‘É‘žVGàÍŽæQò’?GYˤ=ZKØ£aÛyŽ6µ>ÙVtÑȶ%_Ò6ZÒà;f÷1¹‹& ^¶W!=Î.¸§5|ÍÎá¾uŒ†9-ŽÇ'*´=š*Ïô“ðî ¦eÂ<Сe ¼ýøžÿÍ0^Ä¥÷"áEY^GG'â©F G ï×”Ôp¡éN¢Ë 'EBV/8‰6L?óĬ;AðN¼DÁw0Á2bÍE»> Uµ÷,?12ª,ºŠõ‹SÉhˆbqî~>Hò…£_(:*Éã*ËC1t“û‹Ÿ¿0âÝ¡3ïæÓCþ%j£T\EŠJ¶*Uñn§6à’8Mä"*V€"¨ÜÑ¿ ²Zoz <ÈÅ¢VH“¸¨S `¼2;¯«sýƉÆ ¢ÁÓ;G‚Ñ.Ý ù\Pd5ûù'Ý ïoŠ"ÒâžÏ3²ˆæÏÏÌ“ëÂ@E-sQïÊgâ8ÑÐj2EMŠŠ k.ô¨Ú‡*n«4£L»íìý\ª \“/Ö»¡_êêB ã÷áhéGž¾ýð™¨|Æm&·¥d®ïFæ…2~ _ÎßK4à€¦?HXF² @l¬æÉõñ¦‹4–«ëEûŸK}ÉKµNÃeÂ÷jèrˆØâîŽÇP;x@¾"C&üôá7^‹'^º $p·!ûi®U<€h¸žƒ)=¤åÊ‹8sƒ1I唤¼Èè08r-#J‹È óµ1'ªã²úÓ’¦á  ­š˜q•–ÏÑNHÞNQUcØSä S߇k§|ìoÞ~zO­ q‘ -õ$@üñ–Vqy–ä~’ÜÒGH[Î08 ЃÙ_†Ââ„Í‹½‘øã*Nbõí†ïv‰yª$Ó4úî#Ø ]ÉÊ8÷=»å Ó0ßñ˜«ôzqg±'A¦tü¶¡õƒâ­å‚….ž¸ˆ˜ÕhÀ±,‚æÚ¥~ $!„x‚W®¨[ ’æÏÒ¸fä/ÅFV×pÑ™“-FüàÌ0sÝ÷HyjÙH•ñ|½ƒí±õ‘·'Z*$Gº{êôVÝÿ ×\q–N_^ ꜿ¯Ö³w¨¬ÎeŸºˆþ¤TФ3º€L©«ÎÉ -“cë¥Üš’yà²hï'ìÅiLçèºöºm°´/ýZxožôõ­z´`otËý2nq(@c°®Nót9o¨"ªU 6¥ÂA„}:¥afi.•Ôs d‚×Ì÷@7óx*ðãü8YN½Tìp!8’45¦¹PÑ ×íñ… ¬·n¦÷K¾¼"Fy‚4h•£‘jL"˜V1I¦RÐÒKé…(‹ÏqbEûÑҲɋ(gÄ\ȤGzõR© @JäÓ\ÁäÅ Ü9¿ætAe,IŸ¼·>ié“0ġƚŸÐ-ÓJyrᩈÄóúªñ—?ÁmíÜ„ß=I[x9]Ì^€ ç®çÝ]ò¼­K¥­{·j@Í®@{à*×sïÙoôzküõâïUAK¹4¦ð`†Çò]i«ª b„vÒ÷s•iWUúÿüaÉÖ{¿è!)EÍárþ»cåa€ùéÜ©"K0Í”¸5{&лè~+>V»¸„=}­ÓΕ¢> stream xÚ}VMã6 ½Ï¯ÈQ­eY²}œÎ° Ý,zh{PlÅÆeO:ÿ¾¤(g6SOO–(ŠŸýóþî˳Бð2)Åf܈Tñ¼,6Z žªb³¯7²Ñž·»´`ƒwÓ0:ëùv—IÍîÛÉŽ½™ÜëVmû¶-$ûi»“¢`ÓÉâ c­™¬Ÿhì‡y¬¢½ fÎê8už¾f Æ×­Ò̸ÖÚ¸|‡ŽF×À•9Úzû÷þ—M²Ù ÉUV®]7\ .¬ÍN¶Âø/AÉ öyVÉ IΓD@Øî÷§ûÇ_ŸÈñ,™s«Åï¯DfáºÙõï'„Aíü4ºÃ<Á•ƒ®(˜©¸—­RÌ4Ñó8ŒK Ø2W“úåNdœ§)YE‡š¥:#ÂRÄev›ÀÇíÁ!'z¢ ÍK™ßøµ_…Eò$+–lÿp}=\ü*,%Ïô>àCZfŸaf\–åâÛ@®] š¥\éëéçÈ¥…  _J‘¦)}?{í3_?¼5ׯf…@]³²=žÿêÆ¡ïpœ³‰ð„d5/ŠìÑg$áжz^Vž*>´_,\*ºV0Æô¶àãp4À(¾óá”A–nœé3€2‘0Ó±ªSØ'’„=B!Ê„U3&ƒÉ,”ûÀ÷R?ædM5–-|$;€:ièçñ³µo4¢=ä„[þû†°z´fšGëÉÅ[{³ ¢< ÜŒ¯Î^P‰DÉöŸ°«,¸ÖÙ;½;­¾­à‰º²9è&<èžT¦%ÏSyû¤m ‚t5|»8lнôáQŽ–¦!õ]?¤Ž%¢Ôûrggaç4Py·1À@fÒ7;‚Vt´R›ÉÐZgzÄe¦âçkùuŠLóç Â¶r¦%Ë8¢UCÁêèi¢vij+‡zWÑK”±E˜ösu¹‡'Óz¡ ý PÄÀBãpޏ º¥kÄ…wïI<ŒT™>EkÑó0¼±sìÖ.¸ôš‚…2“À¯ØtJv‡fIJë<fïúæÆ©X€#k ‡‘™2Zå©Ò<eÜÖH •œgW’Bá­k´ù5ÎîdÛó*á%/Òk]„v^@;oß{7_\èÛŽC„ô%ÔýÈ4® ë3p/480áoq›‘“êToT´q±±=>Û²¯u&Jf±W6°`=9]N.TÐiÜáÝ‘–âvÔTß/ÔEÕ¤ãRvqÓ‰FŸöÍqÅv Ð4á*½¶§ï½û‡‚.Z‚P„ÿ]†Æ®áöù­<Ë(Ï@¬«ð÷0Œþ„yàÁRy(öè^<¨KV(×)³µþye ®{´˜Î4½‹>÷}cÛ¶~³AìhKbÒ/š«-Ís£ëã& õÅúö×,réxœ£Ðø¹iàÏpéz‚NÝŽT¯†ÊŠ2’k®!eh®‚’‚)\º{Úßý á@Ë  endstream endobj 84 0 obj << /Length 105 /Filter /FlateDecode >> stream xÚ36Ô34R0P°b#CS…C®B. m„@ $‘œËåäÉ¥äsé{€IO_…’¢ÒT.}§gC.}…hCƒX.OöòìÔÿùÿÖÿ±ÿ!ÿý—«'W áš( endstream endobj 85 0 obj << /Length 104 /Filter /FlateDecode >> stream xÚ31Ô37R0P0aK3 …C®B.cS ßÄI$çr9yré‡+›ré{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]þÁlƒü†Q3è¸\=¹¹‹iƒ% endstream endobj 86 0 obj << /Length 251 /Filter /FlateDecode >> stream xÚ­Ñ1nƒ0€á‡: ½…”wÖ 4ÈYŠD©†Hí”!ê”d̪™áh9 GÈÈ`ñj°1RaKd}22²äây™PD zŠI¾P"éãeDÝ“¬Ì›ý ³Å–d„b­—Qúù¾Qdo£ÈiSô…ENÜôèÅW§Æ©uâJ3d€”k«¾YA¿¥W©¥í ù©² fuýM¿<7'MÕäž»¥ïnžÚÝ€ASýwMRàö \S¿ošÖ'ðæŠß%u—«vªrChë2<š>úï¿\+#_ç2ò˜o¶cibBרÂ÷?ñi h endstream endobj 87 0 obj << /Length 232 /Filter /FlateDecode >> stream xÚ}ϽNÃ0ð«J¡l¬ü¹³;Ta?ùìûpÛœ7k©äBÎjiÑÃkÍïÜVb»¹Ì7/;Þô¥­8Üj˜C'Ÿ_o6÷×RsØÊS-Õ3÷[¡&Òå±0’Æ`Q·Ð0‘|T*õM *pŠÓŒ_¬°·ÃÅ2ô $ŠL‡o1ÔJc4|îÐåÝœŽä~82ý;á eSz™ñéºÒ)<Æ8`¯ÍŠN9y{ƒÑ2Êhà›žøål¡— endstream endobj 88 0 obj << /Length 214 /Filter /FlateDecode >> stream xÚ­1 Â@E'l˜&GÈ\@7‘E±1#˜BÐÊB¬ÔÒBQ°’£í‘R¦gEì…áv>ÿ¯™'SŠÈÐ &3!3¦cŒ4#£Nq›ÃÓõ–ÌõRdÔùŠn×û uºžSŒ:£]LÑóŒ’> stream xÚu=nÂ@…gåb¥i|Ï’eÅÒYâGŠ‹H¡¢@T’Djûh>а¥ äÉÛX ÉŸVï½yšyñÏÞËD¦òä%¼J˜ÉÁó™C€8‘0Ï/*v[ ÝdvÕ»\/_Gv‹¥xv+Ù¡hÏÕJˆÊžˆ2Õ†(Wí ¨F¢ºO†¶öFF›l@²Ä&¿%`Ý}b —ÝÈzdüeL,¢>2½¿Ýÿ°~dgygL[41Ƕ¦³Š» ÚÖhKy“êJ BaûsµQø óºâ îDŠ endstream endobj 90 0 obj << /Length 131 /Filter /FlateDecode >> stream xÚ36Ô34R0P0b#Ks…C®B.#ßÄ1’s¹œ<¹ôÃŒL¸ô=€¢\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. 5 Œÿ˜ÿ7°ÿ?Düÿ #ˆ P¨¨’¨?Pÿ1ÿ?ÀH{ôp¹zrrÙðD endstream endobj 91 0 obj << /Length 107 /Filter /FlateDecode >> stream xÚ36Ô34R0P0bc3K…C®B.#S ÌI$çr9yré‡+™ré{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]ê0üÿ‰™˜qàÿÿÿ7 c.WO®@.„S—œ endstream endobj 92 0 obj << /Length 209 /Filter /FlateDecode >> stream xÚíÑ? ÂP ðˆC!Ë;Bs_ëZA,T;:9ˆ“::( n>'Go qèQz„ŽJcªƒ¸îß—dûÚZ£E5eÚuj¶héâ}O²SÆò°Xc¡ž’ï¡Êu4¢Ýv¿BŽ{ä¢îÓÌ%gŽQŸàh¬@åÌ&àŽlJ2§æDxbΪ…çÔÎUdÂK¬ ÛØ9TùŠ»`Pá+XÜUò.<¼˜ÉS*ñ“©0y1Æß ÍŸoò³–^Š_ˆƒ'øøïü# endstream endobj 93 0 obj << /Length 162 /Filter /FlateDecode >> stream xÚ33Ò32Q0Pa3 eªbÈUÈej 䃹 ‰ä\.'O.ýpSS.} (—¾§¯BIQi*—¾S€³‚!—¾‹B´¡‚A,—§‹C}û?†ÿÿìÿ7€¨ÿÿ©Æÿÿ©öö€Tƒüæÿóøÿ10þŸ¡ö@¨ ìÿÔê6êÀP¢þÿÿßüÿÿ?|—«'W ã[« endstream endobj 94 0 obj << /Length 213 /Filter /FlateDecode >> stream xÚ¥1 ÂP †#B–¡¹€¾[¥S¡Vð ‚N⤎ŠÎõh=JбC1&¶ÕE\|>øóó’?ádäùäј†>…c &tðñŒA$¢GÁ´éìO˜X4 "4 ‘ÑØ%]/·#šd5#MJ[ùh‡6%·y=æ\0`..³ªYå°€óßAK<ý@\À@Q‚#6·§-WQwˆu©;Sðwð ÷?ñkB·KƒnÏú•¾ÍÐ&jÑ×´…„–ìùû1³´Áa®>7k.ˆs‹k|]Åf endstream endobj 95 0 obj << /Length 237 /Filter /FlateDecode >> stream xڵѽNÃ0ð‹2Dº¥o@îÀ1²‘²©-`b¨˜€‘¡¬8oÀ+õ ú yÊV‰ÊÇ?0¡N0X?éîlßÙ¾<±§Rˆ“c[Š/Åyy°¼dï-äÌ©û'žÖlnÅ;6—ˆ³©¯äyõòÈfz=Ëf. +Å×s!ªZ:"JuOçDUzELµº›´‘mÓˆŠu2mè3¢(€ˆâH9Àªö? QízÂoèöï îûni`l7šGÉ€vc6‰C¿#¯Û|‚ê[·Ic7qЇÖ=ý™ÿD¦ø˜ðEÍ7ü\ͱ! endstream endobj 96 0 obj << /Length 161 /Filter /FlateDecode >> stream xÚ31Õ37U0P0bcS…C®B.cK ßÄI$çr9yré‡+[ré{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]êêþÿoüÿàÿÿæÿþÿïÿÿHôÿùÿ¾ü?æÿûäÿ1þß"~À‰`‚ÿãÿì?€ã ÁÀ€L 7ñÿ?Ðbl—«'W n endstream endobj 97 0 obj << /Length 223 /Filter /FlateDecode >> stream xÚE1NÄ@ E?šb%79Âø0;Úì"ª‘–E"Tˆ (·AKÜq­%GH™"б´4o4ßßþv]_ä+^sÍç™k{wüšé6[í{¹T^Ž´o(=òfKéÖdJÍ~|½QÚß_s¦tà§ÌëgjŒ8êU•ʇ R:EZ Ê·cªV¢ÿG@­‚V‡•ŠjçU'Øø„3r¸Ø¹Ó–½µ—£å:ªÓ ¾Fg ñ¾©u·Ð1Ìv¥Mª#†bj¿2;Ý4ô@¿* endstream endobj 98 0 obj << /Length 173 /Filter /FlateDecode >> stream xÚ31Ö35S0P0RÐ5T0¶P03VH1ä*ä26 (˜™@d’s¹œ<¹ôÃŒM¹ô=€Â\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. Œ°ÌXv8Á'äá„=ˆ¨ÿ3ˆàÿÿÿÃ,X  wˆ'€þüÿùC=„`?À`ÿƒ¿Aþ<Ø7@ïÿÿ ¡ÿ? ærõä ä ,t endstream endobj 99 0 obj << /Length 166 /Filter /FlateDecode >> stream xÚÕÊ+Â@ài*6Ó#0€í6ÝÚ&¥$¬ … (ŠD@@/G[Ç5ê°8¤Ã‚¨Á£¾ü"e9¥”ÓÐP!Zj îÑZ)%Ÿe³ÃÊ¡^’µ¨§R£v3:N[ÔÕ|LuM+Cé]MàD Ì!æßÄ a9PIÒcУd€/-x>ƒo£;wàê*”Ì!aVBÌÝð7õœ8\à ¦ä¤d endstream endobj 100 0 obj << /Length 126 /Filter /FlateDecode >> stream xÚ35Ó30T0P°b 3S…C®B.c ßÄI$çr9yré‡+[pé{E¹ô=}JŠJS¹ôœ ¹ô]¢ÆÄryº(000````ò ¢H0ÿö@âÿ,Äáÿ0%#Œzÿÿl—«'W ØšŸ endstream endobj 101 0 obj << /Length 266 /Filter /FlateDecode >> stream xÚmбNÃ0à‹Åöï³Ïãú¢|ïGý¿ýÓÀ/¼Òq¯CýyÜófâîίFî®0ËÝtíß^ߟ¹ÛÜlýÀÝÎߣÌO;O$™ˆ9Á 1!˜rðHõâ°Ðdš…Úˆõ4›f¢&˜ç‚p–B•l9{„ôŸÈÃÕ6©8ù,Ö´Â/õvîK¤qb´ûÒ·í¢+tÍÙŠ%+ ¿N»C7¶É"­EB´8Ñè¤V‹êP Í#R¨I*š‡h~ jÁ:¹Rᕤè[I®ÍÆlÍ`Φü˜þÊ—ßò'‰Ä& endstream endobj 106 0 obj << /Length 197 /Filter /FlateDecode >> stream xÚ=;Â0DQ m“#°'À1ùQ. ¢@T@I‚Ž–£pʈ°'XÊÈzã™ì&Ùp:áˆSN8qjøhèBq&,âd ãp¦Â’Þrœ‘^ %mW|»ÞO¤‹õœ é’w†£=Ù’•œ\¾à%Ò‹„NfN‚¦Rª×8þÔŽ;Óó§„À?]¨AÈq„Àë¶ !帿ÁÅ;$E‹ïC3þÑóNÕM€YBï¨vÒ¶ò¿6Ân*§…¥ ýUKe endstream endobj 107 0 obj << /Length 97 /Filter /FlateDecode >> stream xÚ31Ó³´P0P02PеP0²P03VH1ä*ä2 (˜Be’s¹œ<¹ôÃ̹ô=€Â\úž¾ %E¥©\úNÎ @¾‹B´¡‚A,—§‹BMÍ?ÊAM —«'W (»V‹ endstream endobj 108 0 obj << /Length 194 /Filter /FlateDecode >> stream xÚE1Â0AH×ä Ü °MœR. ¢@T@I‰Ž<§ä ))æ¼ àbeÝx½{6íG¬9aËvÀ‰á½¡Å©Ì4Û!ÀîH™#µæ8%5—))·àËùz •-§lHå¼1¬·ärÖ-9· ï ò¹—"“§HôéÒöEÀ •H$;5ÆšÀøÿ2à¨úÞ ïà€¿Ôó¢É@L¾lº ú¡)åa7lI3G+úùlJ endstream endobj 109 0 obj << /Length 157 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0UеP01R03VH1ä*ä26 (˜Bd’s¹œ<¹ôÌ͸ô=€Â\úž¾ %E¥©\úNÎ @¾‹B´¡‚A,—§‹BüàÄ?Q"êA„=˜hò`âà€;˜ø$˜È@F0A†©8&ÚT’ŒÍTê#ˆ`xÀåêÉÈxrK/ endstream endobj 110 0 obj << /Length 106 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0UеT01RÐ5RH1ä*ä26 (˜C$’s¹œ<¹ôÌ͸ô=̹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]êÿÿÿÿLñÿ!ÁåêÉÈW51ñ endstream endobj 111 0 obj << /Length 143 /Filter /FlateDecode >> stream xÚ31Ó³´P0P04S02U06V05SH1ä*ä ¡±!T*9—ËÉ“K?ÈåÒ÷Šsé{ú*”•¦ré;8+ù. ц ±\ž. ìø?Èÿ°ÿ„ÿ€ð¿üþÿìÿì¡°ž¡ÿ1üaüÃüƒùPíûÿüoøÏPÃ`ÁÀåêÉȪL.D endstream endobj 112 0 obj << /Length 180 /Filter /FlateDecode >> stream xÚN; Â@Ùnš!swCM*!Fp A+ ±RK E;!/–£^`%mȸöÚ ÃûÛÑ0ÏÈЈ2² Ù1í> stream xÚ31Ó³´P0P0V0W01Q0±PH1ä*ä21PAC°Dr.—“'—~¸‚‰—¾P”KßÓW¡¤¨4•Kß)ÀYÈwQˆ6T0ˆåòtQ``°a‚:ªöÿÿÿÿS$þýG`1jÛ%€þàrõä äÀ¹> endstream endobj 114 0 obj << /Length 142 /Filter /FlateDecode >> stream xÚ31Ó³´P0P04SÐ54V06R04TH1ä*ä24 (™Àä’s¹œ<¹ôà M¹ô=€\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. ìø?Èÿ°ÿaÿÿÙÿ“ÿÇÿýCÃ?†?Œ@Èüƒÿƒý‡ÿþøßPÇ`ÁÀåêÉÈÑ4,r endstream endobj 115 0 obj << /Length 96 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0Æ@ÚP!Å« H(€¹`™ä\.'O.ýp —¾˜ôôU()*MåÒw pVò]¢zb¹<]äìêüƒõìä¸\=¹¹ŠŽ– endstream endobj 116 0 obj << /Length 104 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0Æ@d©bÈUÈeh䃹`™ä\.'O.ýpCC.} 0—¾§¯BIQi*—¾S€³PÔE!¨'–ËÓEAžÁ¾¡þÀÿ0XÀ¾Až0À®ËÕ“+ 9Ü-I endstream endobj 117 0 obj << /Length 102 /Filter /FlateDecode >> stream xÚ31Ó³´P0P°P04W0¶T02VH1ä*ä26PA3ˆDr.—“'—~¸‚±—¾‡‚—¾§¯BIQi*—¾S€³‚!—¾‹B´¡‚A,—§‹Býÿÿ?þÿÿÿƒÄ¸\=¹¹E:(“ endstream endobj 118 0 obj << /Length 118 /Filter /FlateDecode >> stream xÚ31Ó³´P0P04P0"sSs…C®B.#3 ¨‚‘9T*9—ËÉ“K?\ÁÈŒKß(Î¥ïé«PRTšÊ¥ïà¬`È¥ï¢m¨`Ëåé¢`ÃÀÏPÇ ßðŸÁþ!\Ï`߀ ƒÌÀ‡Aöp¹zrr]7½ endstream endobj 119 0 obj << /Length 254 /Filter /FlateDecode >> stream xÚ1NÄ0E¿•"Ò49BæDÉ.¡!Ò²H¤@‚ŠQ±” èV»9šâ#X¢qabfô4ÏÒ·ìùoºõéyÏ5w|Òp×òêŒw ½R«aÍ«~¹yz¡ÍHÕ=·=U×S5ÞðûÛÇ3U›ÛKn¨ÚòCÃõ#[J  K(R’(¥ ƒâè‹4ÎÌÈ]¹7Ÿ^Ž/_Ø2 †Êé(€`À\„ Ä<LÈâÁx÷ÙÄ\Xìÿ…¿gúAø…7A¿÷:ÈëH§ÃÖ°ZÈjµIKjë)î! "c¢hI(‚QUƒJ{Õ·²1Gše/¥]tGß¹<› endstream endobj 120 0 obj << /Length 190 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bSSs…C®B.ßÄ1’s¹œ<¹ôÃLŒ¸ô=€¢\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. ö P߀ ÿÀJ2~~€‡dþü|"ÙþÀN‘üþ`%åê°’ö õ ìhL²¨ FÖÿÿ'ÿÿy“ü´ñû,$3üÀÀŒêÿ3Øÿo€ÿAŒYœËÕ“+ H0‚6 endstream endobj 121 0 obj << /Length 230 /Filter /FlateDecode >> stream xڥбJÄ@Æñ/¤L³°óº Éi¬ç ¦´²+µ´P®Û©¸©ysÎϽQ­‡%oÚõæé•¶=¹{®[r×é˜\ÃïŸ/ä¶·—\‘ÛñCÅå#õ;üÐ"ÓL EÐÅ(ðJ£däG)‚2£3!_±#2±C¢[°â•Ã{GEþÁòÀá{ÿûåʰ :Z2 fFŠ…€bÖ˜9eÙ)úQSFÊO?˜žV2C—ºê鎾?9ru endstream endobj 122 0 obj << /Length 197 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bS3…C®B.C ßÄI$çr9yré‡+˜ré{E¹ô=}JŠJS¹ôœ€¢. Ñ@-±\ž. õÿÿ700üÿÿÿ˜ü&ÿÉÿ @Y 4ûÆÿ€$ƒý)&ù?€Hö ’L2þA ÿÈ:0Y&íq‘ Ržbb¦ùõH.©C¸ ÙÍ_@|ñü¸¯A! HÈÀCé,ô !ÉåêÉÈ݈I endstream endobj 123 0 obj << /Length 149 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bSS3…C®B.C ßÄI$çr9yré‡+˜ré{E¹ô=}JŠJS¹ôœ€¢. Ñ@-±\ž. õÿÿÿÿÃ$þÿÃBÖƒIæ uD“6`’ùD2þÀJþÿO˜Ä¥j2ÛøÁ¤|©$(4þ7üÇA‚e¸\=¹¹WD–Ü endstream endobj 124 0 obj << /Length 126 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bS3…C®B.rAɹ\Nž\úá &\ú@Q.}O_…’¢ÒT.}§gC.}…hCƒX.O…úÿêÿÿ``ø'ê!P‚È:„ˆ°'–¨ÿ`àbÿ¸\=¹¹”…jo endstream endobj 125 0 obj << /Length 201 /Filter /FlateDecode >> stream xÚ­Ð1 Â@ЋÀ4¹Î \kP1‚)­,ÄJ--!9™D,,½î¶T×]…S[̃ù3Õçn¥Q§*9z¸K5—¦.s½WÍj“9ú!²!qެ«SdaVËõ ™ßo“ƒ, ‘þcP$”ˆnPPB¥z@QÉÈ(>Z°öðãlíl/5.§žâÒ×ÄK=&M£Ø¥ÄÆ(o9)÷Œ[‘·•ä-Ç_m0ÂÍv¢ž`é®Þfsì„8À„‰‰ endstream endobj 126 0 obj << /Length 218 /Filter /FlateDecode >> stream xÚн 1 àÈ Y|óÚ;©‹‚?à ‚N⤎ŠÎç£ø"®äb/YÄÁÁ>JÚ¤¡¶Ýèu)¢&Õc²jµiã­õɈZ=Ùìq˜ Y’µh¦>&™ÑéxÞ¡ÎG£Ó*¦hɘR. eΘى/É".à‹Ò¬t ÖòÒªª®ôwèð£VûhOé/oé»2C óxŸûB§©’ÙbM•nÕÿ¼æ¥7÷íÝ¥| "çþÃÔ€3Ÿ©ˆàï>à$Á¾$J endstream endobj 127 0 obj << /Length 127 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bSS3…C®B.ßÄ1’s¹œ<¹ôÃLŒ¸ô=€¢\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. õÿ Dü?€‹üÃ`ÏÀOY$Ù€$ ;Rþÿ?óÿ¬$X–ËÕ“+ V—Xê endstream endobj 128 0 obj << /Length 210 /Filter /FlateDecode >> stream xÚϱjÂ@Çñ_pþKÞÀû¿@{98Sj@-4ƒ “ƒ8µ •¶ä-rpn‘âA0fÈò¾¿é§ãÇá€#Vü XÇÜù]Ñ–´ö1âþÓeyÛÐ8%¹d­I¾úL2ñ~÷ùAr<Ÿ°"9å•âhM锳AiËtJwïeB# LX‰6vs`ÔRaFèØ$ÿi4³•‡š÷ ;¹¢QWytExÝ­'{¸úgk~ç϶É,O*¨™á$½=t è%¥~©–§ endstream endobj 129 0 obj << /Length 220 /Filter /FlateDecode >> stream xÚu=NÄ@ …_”b%79Âø ÕHË"‘ * D[n‚–™£å&ì¶Ü"ŠyãmafôY²ŸíyýÅéõ•.õ\O:í/µïô­“wa\òögÇÊëVVƒ´O¬K{Ç´´Ã½~~|m¤]=Ü(³k}fÏ‹ kEÚ¨m&fhÌF ˜í€hÆrá°ž +'Ø2¾©ʉ3Ùq4|PYáÂÙØš0eܦÑé½³súŸÉ5ɧ¥\Ó@ÜñïeÝ'ýXæÆÆreSU¤4¹äQ~MQdÅ endstream endobj 130 0 obj << /Length 206 /Filter /FlateDecode >> stream xڥϽ Â0ð+Â->‚÷Z+©S¡*ØAÐÉAœÔÑAѹ}´>бbð¼$*.b†áBîþ§zíá€:Ô¥VDJQÜ£m„T‘;÷ýËfi†á’T„áTÊf3:Ï; Óùˆ¤:¦•üYc6¦\ƒ®¾›;ƒ¿lhkb¬Ì⹄€™/N-êÄZ6*±¨ñp·—§¹ë™|ZX›?š¼4®ïìõ½>uóÎæs¾’—n—‚«Ý tnìÆÍ N2\àKKv endstream endobj 131 0 obj << /Length 205 /Filter /FlateDecode >> stream xÚ¿n1 ‡]1œä%oÐó ´¹”ˆÒ)$n@¢S‡Š Z•µ—¾Y…G¸‘!бi…ÄÖ _¤Ï²ý³=¾Œ©¡gzpäŸÈ;Ú:üÀ¡Ù¨¹T6{œ´hßhèÑ.D£m—ôõyØ¡¬¦äÐÎèÝQ³ÆvF0à`ø80¸cfṉ̃bè¢9)zA}T$"ÜË'¯S|_QùŸ(·½Ýª(ãM I +ëT÷PG“eyÅ?¿Ñ4dѸYƒ÷z‚Ü1…ó_ñ ° S endstream endobj 132 0 obj << /Length 220 /Filter /FlateDecode >> stream xÚÐ; Â@à )„isÁJÐùEü"Ãøb=A×Û çaÄS~]¿ endstream endobj 133 0 obj << /Length 216 /Filter /FlateDecode >> stream xÚu1NÄ0Eÿ*…¥ir„ÌÀ › ¨,-‹D $¨(VT@I‚vã£ù(>–)V¾AÐaYOòØóç¹??½¼ÐV=é´ÿÞϼÉz`±ÕþìçæéU6£ø]âoX?ÞêÇûç‹øÍÝ•vâ·ºë´}”q«¨µE XÌX™Í¨ÌŽp‹[PÏ0ÔLhB M ‘‡ÀÆ4ì‘™æò±À¸þEâ ŒÆþS“«D¸ÌiDf( šD“œE‹T³HIc %)>—/Ð~Å’\r/_})oG endstream endobj 134 0 obj << /Length 164 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bSs…C®B.c3 ÌI$çr9yré‡+›qé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]ÿ300°ÿ?ÀÀ ÿÿC=ˆøÿÿ„`üÏÿùˆøÁþ€ýcf ‚¨ÿÿÿÿ?€F€%ˆ5…Æ„ýÿÿ@.ý‡N€%¸\=¹¹CStò endstream endobj 135 0 obj << /Length 275 /Filter /FlateDecode >> stream xÚ…=NÄ@ …¥ÉMŽ_òÃ(‚†‘–E"T+* ¤A·ÚDâ \%7!H9Ec{·BHLñidû=¿ßŸRI'tT×äò%=Vø‚¾–jIM}h=<ãªÅâŽ|ŕԱh¯éíõý ‹ÕÍUX¬iSQyíš É³ã:þ²œ!1¦{.g½‹éì ›t<A9ÀN¤t¿´É½êà`nê [¢Yè˜'ã(3’@øÉ üˆÊ~sPºo£i5¹ÝE,b”³6ÂyÔ0ɬ1$ÄV¸ ç îÁ˜ÿÁÙº[›ìLzõ #¸òºh»&Û;‚þ¡Ä³$²^MR} ^¶x‹?máÊ endstream endobj 136 0 obj << /Length 165 /Filter /FlateDecode >> stream xÚÅɱ Â@ à: Yúæ ¼k¹ µ‚7:9ˆ“utPt¾>Z¥pcÁÒ˜(¸ÔÍÁ@>þ?1ét>C1¯I0I±ŒàFº–*áx†Ü‚Ú¡‰A­ø Ê®ñv½Ÿ@å›F  ÜG¨` t>à¡ö»îåè'C/fH=û b‰¨ú賚­'b6l öÁ˜í¶ÿÑQã¨"òDõÐ÷–¶ði—¶ endstream endobj 137 0 obj << /Length 137 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bCSs…C®B.cc ßÄI$çr9yré‡+sé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]˜øÀù(B¬Ž`ÿ¨­þÿ ÂD00 ¢þÿÿÿ ÿaDœ€Hp¹zrrȧYA endstream endobj 138 0 obj << /Length 217 /Filter /FlateDecode >> stream xڭνnÂ0p£H·ä¸'À ¤Q™"•š ¦ˆ‰vìP+ŽÄ‹eëkdëšÑU‡ÿÇGkÉ?é>í4ëž8æ^¸iÆ¿%ôIi?Ä1B–4,ȾrÚ'û²d‹ ¯W›w²Ã鈲cž'/¨³kL8âïëTó¶E‚ÑÅòÆkÕä%t:u€­=|ðº?õQ ;D»ñN÷ üd~UôÈ7úå ³²S[Øv0ؼ?½b¶j®vÊ?£ ¶kµ1Nš\*ïÎÖ7V§*=4£#SãŒ÷ endstream endobj 139 0 obj << /Length 123 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0b#S3…C®B.c3 ßÄI$çr9yré‡+›qé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]êÿ``¨ÿÿƒá?œ¨‡ ŒÃ—¨ÿÿÿÿ0Äÿ?€ „—«'W íâg• endstream endobj 140 0 obj << /Length 161 /Filter /FlateDecode >> stream xÚ31Ó³´P0C …C®B.sˆD"9—ËÉ“K?\ÁÄœKß(Ê¥ïé«PRTšÊ¥ïà¬`È¥ï¢m¨`Ëåé¢ÀÀøƒñC}ÿþ? ÿïÿ“ÿÇðÿÿûÿ òÿÿY–o`*á?Àþƒÿü„Ø!*9 °þ=þÿg„ÿÿÕ!Œ‰@d¹\=¹¹ªˆ÷ endstream endobj 141 0 obj << /Length 159 /Filter /FlateDecode >> stream xÚÅÉ1 Â@б¦Éœ¸»a­1‚[ZYˆ•ZZ(Zo޶Gɶ 2΢]àÀ<þŸ±óérAšrY;#«ébðŽ6uj ç–ÕlŽj#WTnKÏÇ늪ܭȠªèhHŸÐUE‹€[îÅ7³(Sÿô‹#“d5"${‹ÝÀö?zn<×Ì‘9 ý~qíp%8} endstream endobj 142 0 obj << /Length 198 /Filter /FlateDecode >> stream xÚ1‚@E¿¡ ™†#0Ðe‰V$Љ&ZY+µ´Ðh+{4ŽÂ(- 㲘ØÚ¼âOæÏ›$ͦñ„‡š“1'šOš®§6ŒºÄMŽš¤v§¤V6&U¬ù~{œIÍ7 Ö¤rÞkŽTä ï dR" "/x"oø­ß"x Aa…Ì„¡É,ª ªÒ¢~~Ûæ5ÿ¢µÍo×U9ôõú“ö¸qNÈ©9I§‹Rêï Ý3´,hKí`• endstream endobj 143 0 obj << /Length 221 /Filter /FlateDecode >> stream xڭбnÂ0àßb¨t À½@›Y"QÈP‰Ntì@³óhyÁc×s U‡.•ððɺ“Ï¿m˧ç ç<æÇqÎÖ²Íy[ÐŽl¡ÕœË[kóIÓš²w¶e ­SV¿òþëðAÙtùÂZñJ­©ž10ô€óU¤QÏ"-D×±×ɯ<Œ´ÃNmA…Q/À%n®:˜¨~ÛDGÿ´ºú9ir2ݘL¤y?ÙRΘ<ÚÂè[˜S|—é\ˆŽŽè³ÝO§÷é¿éOýeêÒ¼¦7úF©W endstream endobj 144 0 obj << /Length 172 /Filter /FlateDecode >> stream xÚµÎ1 A ÐÔi¼“832ˆVº‚SZYˆ•ZZ(ZÏXYzâÅ#l¹…lÌÛXZäÁOø7è†d¨/ã9C;‹GtV²ibsØ0ó¨Wä,ê™lQû9O—=êl1!Ùæ´–Ê}NÐ)!0„Z¼2ó-ygŽÉg"(.’0P5tÅ·ÔAUɲå+Yü0þÉÀ\%å-n¾Ê§—ø¦YW endstream endobj 145 0 obj << /Length 218 /Filter /FlateDecode >> stream xÚMŽ1JÄ`…ßb˜ÂÜ`w. ~7»hXW0…àVbµZ * vnâUr”aË!ã›,ˆÍÇð½™Ç”ëó«K-t­gQË -£>Gy—劲p3%ûWÙÔt¹’pK-¡¾Óϯ ›ûk¶úµx’z«X §˜™ý 33䎅£r¤CF40Œ@:bª ˜#µàLÉ‚¼ªÁ‰Y˜õ.¹ŠdÄŒ Çæ›¶åAîȺ ãlBƒ¼³–{,ªZxËÏŽ`1K{¯ï+æoürSËN~±¡o' endstream endobj 146 0 obj << /Length 160 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0RÐ5T01P05PH1ä*ä26 ¹†™ä\.'O.ýpcs.} 0—¾§¯BIQi*—¾S€³ï¢m¨`Ëåé¢ÀÀÏò $õÿÿÿ?Äÿ ` ÒÍ#…ø$`'0ƒö üøÄù ì  æÿÿÿÿSÿdÖ.WO®@.’Ø] endstream endobj 147 0 obj << /Length 159 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0RÐ5T01U0¶TH1ä*ä21 (˜@e’s¹œ<¹ôÃLŒ¸ô=€Â\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. õÿ`øÿƒùÿ,dýF Éøƒ}üH¤<˜´’ê00ügüÿ¿á?`¨G"íÿ?’üÿ›²Ìÿ¸\=¹¹kqt endstream endobj 148 0 obj << /Length 195 /Filter /FlateDecode >> stream xÚuν Â@ ðˆƒ¥Ð> stream xÚmν Â0àˆCá¡÷¦Õ(v©à˜AÐÉAœÔÑAѵͣÕ7Q|ÁÅAŒwݤéGr—»œé6³&Ø¢ßt°á&…=>'|äÍz z¦zBQÐvŠÇÃi z0b z„Ë“Øö½óoUú³÷ YU¨X)Õ§-ÈØ½ÈFÅFç'{»“õÇ…¬yVùJtlÉHƒŸ!²r³&µué]ÅŠ;7ä­ØRš“¹ÌCSQñ‹¦ i¬ÊÓÀìw…HÈÂØÂ>ʳh endstream endobj 150 0 obj << /Length 237 /Filter /FlateDecode >> stream xÚeαNÃ0à‹2Dº%à{pÒŠ.±TŠD$˜: &ÊÈ‚‰ˆ˜73âEòa+RÅ‘sÔÆ‚ÁßðŸÎ÷—óãÅ)eTÐQ‘S9£“mr|IJÒŒæûÑÝ.kÔk* ÔCŽº¾¤ç§—{ÔË«3ÊQ¯è&§ìëµl [fÛ²cv’ŒÓ¨‡¸ƒh+ÂÞÄì¼÷ R PPÛLm5éÄÄ5“wÛƒQ?Ú‹_"|v“¯ÞÖ‰&ÔŠ*þZý³ ÜIM ê]4ÞO©`9k”—å b{0ý‘ýD>€Ø7Æó¯ñùíkƒ endstream endobj 151 0 obj << /Length 218 /Filter /FlateDecode >> stream xÚ¥1nƒ@E?¢@š†#ì\ ^ c)‘ìÊ…•*qé"QÒŽÆQ8%ÅŠõ2[$rëæ³Òþÿ~þ¸y.9áœRÎ3.žø#¥OÊÖcÂEé_Þ/T·¤œ•¤_Ü™tûÊß_?gÒõ~Ë)é†O)'oÔ6Œ`ÙPv*;k . ,¢ UPC< ”èzDNø‚ùÆe™{àÊææÓÎ¥ÍÿÂ]—É·’~+|ç¢ 2¢%‚¢ê¥E_†IÖqh×Ò®þ xË endstream endobj 152 0 obj << /Length 143 /Filter /FlateDecode >> stream xÚ31Ó³´P0P°bSs…C®B.crAɹ\Nž\úá Æ\ú@Q.}O_…’¢ÒT.}§gC.}…hCƒX.OæöÌÅò@lÅõÿ``âz þÃç¸ÿC?’¾Æöÿÿÿ¨‡à?P æs¹zrrìRZö endstream endobj 153 0 obj << /Length 232 /Filter /FlateDecode >> stream xÚmŽ¿NÃ0‡‘K·xe‹Ÿ'´ 0Y*E"L ˆ‰vdÁÚøÑú(~ªwH‘`¸Oº»ïþ,»óë+ßø•Äò¯.ý¶¥wZt’7šjãõÖ=…'¿è(ÜI•Bï??¾vÖ7¾¥°ñÏ­o^¨ßx¸#€È `Î0Ì#,óŽyB=:F̧˜0¤AÌè.O€=¡ðÌ {Å™sØ2tâÝ÷ 9ÈùF¢štJ´£º:ZëTTwHsͪæT«U‹ù!‹ª,†)b˜"†)3þÚÈtÛÓ#}çwo endstream endobj 154 0 obj << /Length 217 /Filter /FlateDecode >> stream xڭαŠÂ@à‘Â4û;/ ›œ„@NÁÂYYˆ•ZZ(ÚšÄWÙGÉ#¤Lqì:£Âqå5_1ÃÌÿ÷ÓîxD1 ¨“Pÿƒ)í> stream xÚ± Â0Eoq(¼¥PßhÒ‹…âP+ØAÐÉAœÔQPQèàÐOë§ô}i,:IΔäÝÜ“h4 bÖœð 9ÒyЙBÍf%ÝÑîHYAjÍ¡&5—}RÅ‚¯—ÛT¶œr@*çMÀzKE΀N@§F¯‚ x€¤-%ð08¡W\¡‚gú-21é¹û’ôü‹òWZúñœßu2¶•Ôsëw[ÛÜZ˜,ëå··EV”E\ôÍ'hš´¢búD[ endstream endobj 159 0 obj << /Length 199 /Filter /FlateDecode >> stream xÚO ‚@‡âBx ½@Ø»@N(Ñ rÔªE´ª–AEAKæQ<‚Gh|*A´ŠùVóþÌ÷›I4c8â‘Ö¬cŽ>…t#ps¦}éx¡4'µcZ™{Rùš÷ç™TºYpH*ã}ÈÁòŒK ®@ ð§€]6X¦V /a&Ì ¦Û+ÌŒSv4ÃÕ7f—UÿEõc›]~žsŠÎÁë­|‘lm[sIaU].Gz]‰œH|Ô|-sÚÒcÕL endstream endobj 160 0 obj << /Length 179 /Filter /FlateDecode >> stream xÚ37Ð3²T0P0WÐ5R03V0±PH1ä*ä25 (˜Be’s¹œ<¹ôÃLM¹ô=€Â\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. À BÉA(ö`Šñ„k¡ø!3D’*i•l€hÁn^Šy5øÌ³A1«yrÈ‚P%P 6ȆAæG¶ê¨“PLbD1É·I6(&À4‰êl.WO®@.’Ñ,ì endstream endobj 161 0 obj << /Length 132 /Filter /FlateDecode >> stream xÚ=ɱ Â0…á ñ :œÐäÄt­Ì èä A›GË›i "ßöÿ~1WOÇÀ™jÅŠ•‡¨ãÀ/ç|“:Š=PØMßÅÆ-_Ï÷Ul½[QÅ6<*]+±a‰ŸÔ˃.—&›dR‘ Œ1”¸ãYGÙËáÃ$‰ endstream endobj 162 0 obj << /Length 95 /Filter /FlateDecode >> stream xÚ32Õ34R0P°bC K…C®B.K Ïȉ&çr9yré‡+Xré{€O_…’¢ÒT.}§gC.}…hCƒX.O†z†ÿ 0XÏ ÃÀåêÉÈ[žx endstream endobj 163 0 obj << /Length 102 /Filter /FlateDecode >> stream xÚ32Õ34R0P°bC cK…C®B.K ×ĉ'çr9yré‡+Xré{¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]dêþ7À`=ƒ ñS/—«'W ä" endstream endobj 164 0 obj << /Length 101 /Filter /FlateDecode >> stream xÚ37Ð3²T0P0U04V03U06VH1ä*ä2 (Ae’s¹œ<¹ôÃL-¹ô=€Â\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. ÿ!àŒf`€î.WO®@.}‚1€ endstream endobj 165 0 obj << /Length 94 /Filter /FlateDecode >> stream xÚMÉ»@@EÑþ|Åùwî½Gb •BT(„ß÷H4’]­í]¢)•šÑÍ8+6˜Ñ1|cZ‘GHOóšû¹@ò¶ BJJ7"–¼ï몈ÌÒ Œ endstream endobj 166 0 obj << /Length 125 /Filter /FlateDecode >> stream xÚ31Õ3R0P°T06T06S03QH1ä*ä22 (Cd’s¹œ<¹ôÌ̸ô=€Â\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. v ò õ ö ü¿¡þŒ×1È7€ôÂ2 |±—«'W ¤(ª endstream endobj 167 0 obj << /Length 177 /Filter /FlateDecode >> stream xÚ35Ð32U0P0b 3…C®B.3 ßÄI$çr9yré‡+˜˜qé{E¹ô=}JŠJS¹ôœ ¹ô]¢*c¹<]˜ÿ1üÿ@òãÆ  ìdø0Ô%€Šìd=˜¬“ÿÀ䪓 “u ÿà ‡Úõªfh‘ Çÿg¨ÿÿÃþÿd’ËÕ“+ =Å€ú endstream endobj 168 0 obj << /Length 181 /Filter /FlateDecode >> stream xÚű Â@ †ÿÃAÈâ Íx­xUp(Ô vtr'utPtmûh}”¾‚Û b¼ÓI÷bHø’ü ˜á`sÈ‘ 3áxćˆÎd|/ô¥ö'JsÒ61é…ë’Η|½ÜޤÓÕŒ#ÒoÝäŽòŒŽ ×Ô¥ž¸Û>”Å´)ÐmPÖN®•8•’J@ å…Gáּ㗷 y[õöÏþʽV€Rl"òšç´¦«›– endstream endobj 169 0 obj << /Length 248 /Filter /FlateDecode >> stream xÚmнjÃ0Àñ†ŽP¯ÖÔ6%ÎhHS¨‡B;e(…BÒ±ôƒd¶!C_Ë[ǾBÁ£†â«NW¨d,,~ø„àŠåÅr¡3}iw±ào—ã;¹ýw>ؾàªÂt£‹Ó;Å´ºÕûÃ3¦«»+m§ký`¯> stream xڕѽ Â@ àˆƒÅG0op­z'A+ØAÐÉAœÔÑAÑÙ>Z¥Ðѡܙ^2TèÒÂñ‘´Í—Ì)¢» dJ×h-ÇQ6/.w\ehŽd-š-gÑd;z=ß74«ýšb4)bŠÎ˜¥äù©|!T0æì'‡¡ €ø4, ¡ L”*0V¾}©ÚU´¦vÐ~ÚÝ·'ã¿C¾dxxJùDv×5¼vøw¤Ôá?®/u»˜Ò¹­®ù “ |.ÀÉuÔB)à&ÃþÃ)©² endstream endobj 171 0 obj << /Length 269 /Filter /FlateDecode >> stream xÚµ‘¿JÄ@‡!E`¤µ8¼yÝäH¢E pž` A+ µT,É£åQò)-–[ww"°µúØ™eþ|SÇ›N¹à£ —)—9?fôJEnƒöYJæá™¶ ©.rR6Lª¹ä÷·'RÛ«3ÎHíø6ãôŽš¨'Ä@höXkcz‹nL† 0¦¡>[DPi¬G Ѩ Òèz¸¼C°·t`ÿ:D_íŒdr¨f¸ZÀjF=cø…¸û½Ì?`.-°l[/áÇ;Èb?¥O©y=÷^F¯.Dd/Z{‘ ¯üÐ FåF\ÝnŒ\3w*Èá g7tMßVXv¡ endstream endobj 172 0 obj << /Length 211 /Filter /FlateDecode >> stream xÚµÑ1‚0à’·pÞ lAÓĉ1‘ÁD'㤎éÑzŽÀÈ@À–“j “%ÍÊÐÇÿóÅ”ÅÈp¦6Ÿ#ñÁ 8Cý¨Wýát…4ºG΀®Õ)Ð|ƒûó4Ý.1šá!Bv„<ÃN­†¢í„µÔ’„µ²Äk¤³&ÂJcPýÊèÕÆIãJZkg-…1”?,á˜ÕŸ¹w˜ïknáþçÛ\Z7¯!Gߨ|C›w"^úžlo}•Û«îV9ìàùª¢ƒ endstream endobj 173 0 obj << /Length 193 /Filter /FlateDecode >> stream xÚ}ѱ Â0Д‚…Cpuz_`5Å®µ‚DÔQPQpÓOóSú ùƒšæ*˜Rr<.—„‹äp£À± c4£„+(erQ¦eáp†$¾A¥€/Ì*ðl‰÷Ûã> stream xÚ3µÐ³´P0P0bSS3#…C®B.SC ßÄI$çr9yré‡+˜ré{E¹ô=}JŠJS¹ôœ€¢. Ñ@-±\ž. ÿÁ •bø€HÕ700ØC(ù`ŠB1£PŒØ(|Te€bÀ¤ P¨`ŠB±ƒ©ÿÿ±PP9˜J¨>4à ˆ¦èBý&!^@¥¸\=¹¹6‡à endstream endobj 175 0 obj << /Length 268 /Filter /FlateDecode >> stream xÚµÑÍJÄ0à) ÃB_`¡óšV4*ë ö èɃxR…ôÑú(}„=”ÆÉ”¬aÁ£iá Iæç¬:º¨©¢S:<&­IŸÐso¨+ ŸÈÍÓ+nZT÷¤+T×|Œª½¡÷ÏT›ÛKªQmé=b»%0VÌŸaÍ–Þ÷A;CÃzÈ\Ç×À›;€†÷åP°fà3ÖöËb6³Ù~^“\óï`·³pÁfg œGÔD‡ÔØ¿ìA–ÿG¹CÎF‡_¡˜—<¸X³ï¸Xî)u'J_¥o±Ÿ‰±ÏRpžÌ!Î%XOË›óNæ.ÌÓº|ŒsŽs—eB xÕâþ&3 endstream endobj 176 0 obj << /Length 106 /Filter /FlateDecode >> stream xÚ36Ò33V0Pc3#…C®B.#3 ÌI$çr9yré‡+™qé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]þÿÿ†ÿ?``¨o–ä7d¿r¹zrrðéaž endstream endobj 177 0 obj << /Length 144 /Filter /FlateDecode >> stream xÚ35Ó3±P0P0bS#3#…C®B.°˜ˆ ’HÎåròäÒW0±àÒ÷Šré{ú*”•¦ré;8+ré»(D*Äryº(üÿÿÿ2Éðÿ`¨o^$3^’L²á ù0H9$ÒLÖÉ ’ñˆdÿÃðÿƒýŸÿ €Br¹zrrà3nX endstream endobj 178 0 obj << /Length 252 /Filter /FlateDecode >> stream xÚ}ÒÁj1à . ‚Wo;OÐìZX÷¶ º‡B{ò ‹-=•ÒÒÞ îøJû¾‚£Ùt²(Ú„$á›Â™btUd”Ò5ï"¥|DÏ~à8ç¾kÍÅê 'Ê9s”·|вº£¯Ïû)e(g´àg±š‘Ö5ðJ´Òº1*/G)€÷‘©g½*£­G«=ClþééÀŠ-[VÏÒšÕ÷ªäøC¯ŽŸZ —˜ã7–¢=ˆÚ+q€,A ½€ÖÐwTÖÀ’&u4Ø-ŠUã(ú­qhKê$ÁŸúÓ)n;%<.<2“™!WxSáþóí½è endstream endobj 179 0 obj << /Length 250 /Filter /FlateDecode >> stream xÚ]ѱJÄ@à )Óä²O`åöÊÀy‚)­,DPN±:NEÁn}$!’GØr‹q63ͦX¾™Yößbìöl»1¹àc7Æž›—?жÜ7±‡#îz¬ïm±¾æ)Öýùúü~Åzw{ixº7üäû½!úpˆu\ÇæÄµ€ àØ–khÞÔì’ø¬>Åà¨R»Q¬|jÄbJÍg1£Tà9XÅNå`1ˆ¥ÊÁâ,æ*/rpªÄnL­¼X†Ôbó95#èOõ¢S»••ZªÅÊœëÉ> stream xÚµ’±nÂ0†1Dº%À½8AMP¦H@¥f¨ÔN SËÈ‚•äÑò(yÆ (éÝ96¨c-ÙŸíÿŸÿË"šÍ3Š(¡éœÒ„Òú‰ñ€‰lF”¦VùÞã²@³¡$CóÆÛhŠw:Ï;4ËÅhÖôS´ÅbMÐ7 -èoʼ.+a¡£ÆW‘y!a paN8(Ûe~´NØÀHbƒ+Œ[&Ž|‹EG½ƒM”ýµ°äl”Õ#KË!×ü‰½eó_ô÷¹<þ ÏÛ¾«zzçÀPýè<õëv÷Oýl½¯Îg¶Ô¬¼²ÝÕE´ÎÆêWGWWï•«»ýðµÀOü¢}˜Ÿ endstream endobj 181 0 obj << /Length 175 /Filter /FlateDecode >> stream xÚ33Ô3±T0P0bS33#…C®B.S# ßÄI$çr9yré‡+˜qé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]þÁõJÒì¢õ ì?Àã?0ÅðBÕC©0e™’€B} “B1Õ¨µPG@\ÆüÙ¹ö€Ð+ ` (V9„(P$€£ãÅåêÉÈþ˜†ý endstream endobj 182 0 obj << /Length 230 /Filter /FlateDecode >> stream xÚÑÍ ‚@ð• aˆzÀyZÍÚºf‡ N¢Su *ê¬æ£ì#xô Ù~i—HŸŒòwf–±þÈC}ì ‘ ðàÁ˜/Š.²¡~³?AÝ ó.Dh´ÄÛõ~¬fè q+‚v…XŠ+%„H c™È‡”Ä\'¤“i…ÖzhIi|ÝÓ´&×:/³?åÕ¼w~Rý¿éÇ2}6rÓ¿™CÍë9¥91u£ŒýüÞΪ9õù¿öð³É¿6µ©6þ²-ÏMì©¥ŽÕá]e'›(íü,G%VÉ•b0` Ox1­Ð endstream endobj 183 0 obj << /Length 266 /Filter /FlateDecode >> stream xÚeϽJÄ@ðH±°Mګ̾€ærw ¹ÆÀy‚)­,ÄJ--…á’GË£ì#¬Ý‚Ë39TÔæWÌ÷ó“Enæ¦0Ç ³*L¹2¹~ÖË5ç¦,™û'½itvc–k]pXgÍ¥y}y{ÔÙæêÌä:Ûš[t§›­ ˜¡¦¡‘­¢û6vèZ5âÈ'ŸÊ×@ìOÈïè˜6ü¢úaÏÌ&è›~`ûQ°Líɤ䀄hÂADDÜND×Ð(Anê%åè¥=Ù¨„Xˆö²ç» ûŸÎ}d ò*‰ß;¾AÙ‹d|÷H×£‡MùH+§Œò“>oôµþ ß„k endstream endobj 184 0 obj << /Length 158 /Filter /FlateDecode >> stream xÚ33Õ32W0P0b3#J1ä*ä2µòÁ" ‰ä\.'O.ýpS .} (—¾§¯BIQi*—¾S€³‚!—¾‹B´¡‚A,—§‹‚ý0`À 0ü?À¤ê€d˜–o¨Óü `š½¡L3cÐ `š‘ }L3 D3@h†Q'ýÿ˜büÿD±cñ&ÍåêÉȃ@ endstream endobj 185 0 obj << /Length 207 /Filter /FlateDecode >> stream xÚíÑÁJÃ@à?äP˜ƒy„Ì è&±Ù^!`B=õP„BÛcAEÁ[|4¥c’õŸZ/9öìaù–vgaÇÏ®f¥fz­—…úR}¡Û\^Äç 3õÓßÊf/U#n©>wÏX\ó o¯ï;qÕb®Lk]ñΓ4µ†¾Ð†~,â´Ÿ¾O~œÌþ=×[ó™ò±yR“+å>¢ÉŸçÁ»:ᑸgF#Îæ‚bnÌö8&kufÒY f°§0Aje¹käQ~­uI endstream endobj 186 0 obj << /Length 321 /Filter /FlateDecode >> stream xÚuÒÏKÃ0Àñ+„a¯;¹÷h £;æ{ôäA„Š'aŠ‚·Æÿ,°¤7¯õV¡4¾¼N¡íz|Hø&é">NN1Äb\D8ñ!’/2Ih2ÄùIóåþY.SÜ`’Èà‚¦e^âÛëû£ –WgÉ`…·†w2]¡µ5(kµ°v?=k@Ø@•# ™ðsñGÏ0q¤áŸÐ¢˜å´–¶ì8n“Ö©‚©vœ´Ië²’é¶<§=~ULŸ¶l‰a—b[3½Ä'qݧeŽ*ª&š!ŠšR3-ô -¥*C7â.‚ ê)E{ŽsÜ¥ )š©˜“.ó ø%s–¯©Úc^Åô Cýa—ßÄšéýhê_ï£eòÛÓ¯0H:}󦃬\4˜Ðeé¢~Ð8ìqCã ¡«vg—穼–¿ßí¹ô endstream endobj 187 0 obj << /Length 251 /Filter /FlateDecode >> stream xÚÝÏ1KÃ@ð-úŸfßÝ€,b¼?ÄßÉBèþ_T|ÿ%t_ endstream endobj 188 0 obj << /Length 213 /Filter /FlateDecode >> stream xÚmοŠÂ@ð/,˜âö„ÐÍÊÚ þShuÅq•ZZ(Úš<$y”<–!q÷î,äŽÌ ó1v<qÆ–†í˜­á­¡ÙŒcÙÑÏf³§iNúƒmFzƤów>Ï;ÒÓÕŒ é9ξ(Ÿ3”Ð5€¨ !+ô‘ÖP®LîpšW.Pe@"€QmìêÚ¢¼ iÂ"õñ¬Ž1ÅÅ”âü"Ú?´O’VHnq®LUOUoê*ýD6¢ói|UÔ´ÈiM×¢Lì endstream endobj 189 0 obj << /Length 210 /Filter /FlateDecode >> stream xڽн Â@ ð„B–>Bózm=ë(øvtr'utPœ¤v¾IÁè¤Këõª: Þð’#ù“–Ûð=vÙçºÇ²ÍA“—mHJ]t9Ug±¦nHbÊR’ê2‰pÄ»í~E¢;î±G¢Ï3=hNaŸ1ýŠ/kFˈ²Ü‰©S”lx‹­ð騫`pÌ:F§l½T¥veü¶V™ü`ü9ó©zïÕªT¹ñbr^Mæ³ÉRV ¨R'Œ:¹¹q@ƒ&ô™x endstream endobj 190 0 obj << /Length 193 /Filter /FlateDecode >> stream xÚ1 Â@Eÿ00MnÌt³f‹t¨` A+ ±RK E;19Ú%G°´uÖ`akóŠ?þü±éÀäœrÆ}ÃYÎÖðÖÐ2+bÊvØM6{*+ÒKÎ,é©È¤«ŸŽçér>bCzÌ+Ã險1C½D¯(p.ˆ¡îÜ lQ4‘CÝ!i¾(¼]£–õWç¨!ÉpE#kÊ%Ê7)ô©Öó%cà\Üêæ_p€’0šT´ 7ê8>Ì endstream endobj 191 0 obj << /Length 210 /Filter /FlateDecode >> stream xÚ½Î= Â@à )’ˆsÝĬ¢…üSZYˆ•ZZD´“o¦7Ñh—B\gw±J)Ø|ÅÌðæµ‚F3¤€"ª‡$;ÔŽhbŠRò0 ¶´›Õû Š9I‰bÌcÉ„ö»ÃE: Å´ÄdHà ¨’žÑ5:ÿPi=uekù“=B·Ð«jîü¼›nå_t+k-×±ÕäœJfÆ÷f¥LûËþåîWn噞¾é\y郧¼ Uˆ;ë«3ë¼y…£gø£Ðz? endstream endobj 192 0 obj << /Length 204 /Filter /FlateDecode >> stream xÚuο Â0ð/t(Ü`_@è½€¦±:YðØAÐÉAœÔÑAÑMj-â#8vëiQp0?¸K¸|6隌N¹c8ÍØÞÚSje˜°í57ë Ò N-鉌IS>N[ÒƒÙ é/ '+*FŒà ®P†W R7HU®8#ôè#òÈ;Äo\ކÈ]>øòËãK-§AZà/å‹Ë/²>—L^¾T^('N"†nhAUhwdòZ#ª= d# šÓr!Iš endstream endobj 193 0 obj << /Length 143 /Filter /FlateDecode >> stream xÚ32×33V0P0bcc3…C®B.cßÄ1’s¹œ<¹ôÃŒ ¹ô=€¢\úž¾ %E¥©\úNÎ @Q…h ÊX.Où ÿ?00°``?ð‡¿ñƒ<Û3þc°â:fø„ äâÿÿÿÃ1%æP}ÃPÿÿs¹zrr›_¯ endstream endobj 194 0 obj << /Length 261 /Filter /FlateDecode >> stream xÚ•=NÄ0…_äÂÒ4>B|Èå®´,) ¢@T@I‚íº£äF('à 9e k͇b (H¢/öøÍË›tG‡­¯}ëÚÚwï×È£ð]ó>n~ŽndÕKuETg¬KÕŸûç§—{©V'žûµ¿fÓôk^ÀÄ".Ù·€…ýtÑDŠ©˜\0_ˆfÄ+`G•Ït–ÿá~ïì¦Î€~…ŒÜ¡ø°ëïLcx«cØã ¤§2%õIi—™(ئ4æõ¤ÊrB8±F‹ü†+å ƒòOƬ™õ›Ü«>Q=9'å|¸ ùVÅ)æX,Èi/—ò mh endstream endobj 195 0 obj << /Length 165 /Filter /FlateDecode >> stream xÚ35Ð32T0P0b 3c…C®B.S ßÄI$çr9yré‡+˜˜ré{E¹ô=}JŠJS¹ôœ ¹ô]¢ÆÄryº(0þ`‚ÿ$;˜d“Œt"™ÿ€Hþÿ @Ò†ÿüÀü€ñçæ Œ¿€Êƒ3þg`øÃÀø‰üƒDþ\$3Ø‘ÿÿ¨ÿÿ™ärõä 䄆y endstream endobj 196 0 obj << /Length 124 /Filter /FlateDecode >> stream xÚ32Õ34R0Pc#3C…C®B.CK ßÄI$çr9yré‡+Zré{E¹ô=}JŠJS¹ôœ€|…hCƒX.OÆ ìø   PœÀøƒ¡†Ø00ÿ‰Ð1ÿaøÿÿq¹zrrÞÉHT endstream endobj 197 0 obj << /Length 150 /Filter /FlateDecode >> stream xÚ32×33V0PÐ5QÐ5´T02P03TH1ä*ä2 (XÀå’s¹œ<¹ôÃŒŒ¹ô=€\úž¾ %E¥©\úNÎ †\ú. ц ±\ž.  Œ˜ÿ¡  Pœ(ðÁ†ÿ¸ uˆlêêjþ3ü£ÿücüPÁüÀŽýÿ·¸\=¹¹v9Eü endstream endobj 198 0 obj << /Length 213 /Filter /FlateDecode >> stream xÚ½ÎÁJÃ@à”æ`_@ì> stream xÚ32Õ34R0Pcc3c…C®B.#rAɹ\Nž\úá F\ú@Q.}O_…’¢ÒT.}§gC.}…hCƒX.OÆ ÿaˆýóÆÁ˜ÿ0üÿÿ‚¸\=¹¹ì±WÇ endstream endobj 200 0 obj << /Length 186 /Filter /FlateDecode >> stream xÚÝб Â0à  ·ô äžÀ¤¶’Ej3:9ˆ“::( NÚGË£ô:¦´4¦‡âÈqðqÇéé8ŽHÒÄ·Š)‘tŠðŠJRWI¿8^0Õ(v¤$Š•Ÿ¢ÐkºßgéfAŠŒöþÌuFÌòX àlèòÀYhFAáQòâÉJ*ÃË‚YàuÎ*>P«òÎ'sxõ'`€ ‚ü¾çÊ·³s×ü—·ø3Ó endstream endobj 201 0 obj << /Length 154 /Filter /FlateDecode >> stream xÚ35Ð32T0P0b …C®B.S ßÄI$çr9yré‡+˜˜ré{E¹ô=}JŠJS¹ôœ ¹ô]¢ÆÄryº(0þ`þÃÀðÿÿÿ iÃH~`~ÀÀþóóæß Œ?3€Èÿ ÿ!‘ȃ‹d;òÿÿõÿ “\®ž\\ep endstream endobj 202 0 obj << /Length 188 /Filter /FlateDecode >> stream xÚ1 Â` …_q²ôÍôïßVèd¡V°ƒ “ƒ8©£ƒ¢›hÖ£ô;5ƒÐIä…¼¼D“qÀ>‡<²Y>X:S‹èwŠNö'Js2c2 ‘ÉäK¾^nG2éjÆ–LÆ[ËþŽòŒá¼¸ïH5pG§Æƒ †%ÜBáÒx‚ʃÌA­xNÓƒX:í¿èí>Å´ùÙëI=îJŒR³h4 ‰Vê\_èž¡yNkú¤PM endstream endobj 203 0 obj << /Length 208 /Filter /FlateDecode >> stream xÚ­Ï1 Â@ÐYR¦ñ™ è&²¢] F0… •…X©¥…¢`er´%GH¹!Áu6 ‚Z‰Í+þ‡Ù¿¿×ȧ>uƒ©!)Ÿ¶P)N}ŒžÕfQ‚rIJ¡œrŽ2™ÑéxÞ¡Œæc PÆ´âSkLbÚÕF{Æzéä`ªÂ)Á©3¡ApÚ€¸\A4ikh+ðæ/;Ň¥ÕýÉ/׊÷y‰ÝÓ.L[ov3‡¢ÎÞ_ånBk/cCîù¿¥à:Õ˜òMœ$¸À;| endstream endobj 204 0 obj << /Length 223 /Filter /FlateDecode >> stream xڭϱjAà¹baïœHö÷ð‚`¼BÐ*E°Ò”)H!ÑG»G¹G¸òŠÅuγ°ÐFl¾bvùç;x$sŸŸ’Œí Û˜7 }‘MesšŸÖŸ4Îɼ±MÉÌdN&ŸóÏ÷ï™ñâ•2~—¨å<:€öEôö•øLtˆ†jt‡ÐôºD°EX pèP£ýYù¼Ãuwéo¤µ»Ú½m‡¶OX6JCíTè:¨‘knùGªC_ˆê 8¥=PÕôÆÎ×—Ò4§%ÙÕo¶ endstream endobj 205 0 obj << /Length 145 /Filter /FlateDecode >> stream xÚ36Õ34S0P0bcc…C®B.c4H$çr9yré‡+pé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]˜?ðøÿÁþÃÿ~üÿxøûÇæ?ÌŸ›ÿ0~gþÃø „0þcH`üÃÀ€‚Ð3Íþÿÿs¹zrr“»M[ endstream endobj 206 0 obj << /Length 203 /Filter /FlateDecode >> stream xÚ-ÌAjÂPà?d˜70súò´ÔB³t墄¶ËB[Ü™£½£ÌâÊ·yŽÆÅ·˜ÿŸ™âqR–œqÁ–‹‚§–¿,ýQ^i˜ñ4šÏšÕd6œWdÞ4&S/y÷¿ÿ&3[ÍÙ’Yð»åìƒêãè¶qð’¸gc$Oˆå€èæv°½òw €žªx ‚4tHB8„ÇàtmÔ¨uˆUäuÝËàpÕÞùAÛÝDÒ#rç&iN’Bô¯KôZÓš.8W¯ endstream endobj 207 0 obj << /Length 151 /Filter /FlateDecode >> stream xÚ36Õ34S0P0RÐ5T06P05SH1ä*ä22 ¹æ™ä\.'O.ýp#s.} 0—¾§¯BIQi*—¾S€³‚!—¾‹B´¡‚A,—§‹ƒVl†+ ø313³±üÿÿþC1#TŽŠ8føÃðˆ€qã{æùv ãþ àrõä äwSM6 endstream endobj 208 0 obj << /Length 160 /Filter /FlateDecode >> stream xÚ35Ð32T0P0RÐ5T0±P01PH1ä*ä21 (˜Bd’s¹œ<¹ôÃLL¹ô=€Â\úž¾ %E¥©\úNÎ @¾‹B4РX.OÆ þÿ`¨G%Ù00ÿa`þÁÀø‡¢fŒ$Ð èl0É÷¡†Aæ?ƒƒÐ?ò €$ûÿ@’á?P—«'W rjy endstream endobj 209 0 obj << /Length 193 /Filter /FlateDecode >> stream xÚ]Í= Â@àYÑÖBÈ\@71‹ÁJðL!he!B@- 19Ú%GHiˆ£˜¬Ø|Å{ðž ºG.õ¨ã‘ê“? ‡'T>‡.©o³=à(D¹"壜qŒ2œÓå|Ý£-Æä¡œÐš‡6N¨(´]¤¿Ú9ˆ¬'Àýã {‘¿6*}èÒ;‘”:‰•Úf›ºVi§ucÖf­¬U)ž®1ç[¾ŒŒmŒ?£ÿ6*qâ_¦ÀDµ endstream endobj 210 0 obj << /Length 248 /Filter /FlateDecode >> stream xÚmϱJÃPà? œå®ÄœÐ{ÓjÄÅ@­`ÁN"ÔQPQpöNºøP÷|Çëºd§Á6¥”3|pþ?=Üï±á.ï%œö¸wÌw =Qjx>ÿ—Ûê礯85¤ÏeM:¿à—ç×{ÒýËSNHø:asCù€ëú³®ÂºXWUÈ<&.*;d (‹ÝF‡åÒÈa»Ñ‹¨ > stream xÚMαJAà?lq0„lk!Ü<›Ã ±8ˆ¼BÐ*E°RKÁHÒzûhû(ç¤Üâ¸uf«ûÁÌÿLÝÜ4/Y_ÝðíTt z%õRKýxÿ¢MGnÇõŠÜ“tÉuÏ|ü9}’Û¼> stream xÚ]ÏÁJÃ@Ð; çÓxÊé%'S~Šé•ÒÄ\#¾Èþ^/4ÏIßqš¾1wÒù-¿¿}<“ž¯®9&½à{õ@ù‚û¾ ûÚ7l¡z P@?­[¨V„qtÖPíA•ËÀ8.ì=®ŽœõÐÖƒƒÁ÷ÈÙdFÕDb+¢Ý8w•óË:+cüwè9ð<±Ž<#O©Ê¬jÈ\©êÔ¯RÕÉ*¡¸µñÙ•mm`g‰´ÌiM?ÍAP‘ endstream endobj 213 0 obj << /Length 199 /Filter /FlateDecode >> stream xÚ5Î= 1†áoI!L³­…¸s“5"Z-øn!he!Vji¡h½9Úe`i!Æм0 “ëå#vÜ—ã‡ìÇ|ÈéLÞËìtÔ‡ý‰&%Ù {Ov!·dË%_/·#ÙÉjÊ9Ùosv;*gœÅÃ7 ªºÀ $O‰y¢ óÀ­»$mà}RKŠ ©ð*¨‚*¨‚*¨‚*IQ’ ÿ¼$¢’ ÊQ&ˆ2ªŒª–îJuWªk D$òå_h^ÒšÞ8.G£ endstream endobj 214 0 obj << /Length 191 /Filter /FlateDecode >> stream xÚ½1 Â@E¿¤Lã2ÐÍš¸•DˆL!he!Vji¡h'š£å(9BÊ¢Ž»… ©…å-ü)fþ‹‡ý‡soÀ±f£y§éH‘‘0d¹Éö@iNjÅ‘!5“˜T>çóé²'•.&¬Ie¼Ön(ÏÞ@ð*€Ä/¦SC^¯Â^‰$NÐ-8ßb,(püª OAý´-¿ËiUÛ¹®ŒÔ*¾m_ ëÀÚ°^œ!ëêc¦9-é ÷@m endstream endobj 215 0 obj << /Length 126 /Filter /FlateDecode >> stream xÚ31Õ3R0P°bc 3C…C®B.#K ßÄI$çr9yré‡+Yré{E¹ô=}JŠJS¹ôœ€|…hCƒX.O† Ì@ÌÄò@\€ýÿ†ÿ <ÿÃy¨øPÆõ€þùÿ†¹\=¹¹sUÇ endstream endobj 216 0 obj << /Length 242 /Filter /FlateDecode >> stream xÚu±JÄ@†ÿ%ÅÂî fžÀ$Þ,ăóSZYˆ° –‚Š‚…H³VøÀ2u@JÜ&lá»lD€ÛáÀª˜mwjR_¯@>Ä ; lÒÝ?hÙv* àØ„žç÷°'Ø!¶nüE¶5øi>p §{N÷› áhd42žFJgÄaZt¦Ej‘Zô¦!Ù'äÄ’h }ú ¹läV~h€p endstream endobj 217 0 obj << /Length 246 /Filter /FlateDecode >> stream xÚu±NÃ@ †eˆd!ò•Î/—kBÔí¤R$2 щ1c¥‚èœ<Ú=Ê=BÆ Uƒí£Lp’¿á?û·õ77×Kª¨¡«%5ŽZGo?°nY¬¨­ÓÏë×Ú'ª[´÷,£íèëóðŽvýxK톞U/ØmŠ#øy˜çÙTLP„ü%d'¸dý`†àƒÿÀÈoÁfAÙ'~ÁÅVüN\™ìÌ'ÁÈ(u€Ëˆnä(ã¹E›u,¹¨_Ú¡ˆgŨ¸x·›qÂGÞåc/VûôÃJ°s5M#ŸÊ1%”²’Ôð®Ã-~nn endstream endobj 218 0 obj << /Length 185 /Filter /FlateDecode >> stream xڕϱ Â@ €á–B‡P:w’> stream xڥбjÃ@ àßî@‹_ 4zö|±k:ŦP…dʤc! íÚøÑü(÷=»… éØåt:IüùãÄSÎù~¹çÂóÞÓ‘²BŠ)ÙïËîƒf¹g¹W)“«ÞøóôõNn¶xfOnÎkÏ醪9 †mÀvèa‡ár¥U‚Ò(€);ø'Q/$C 3Ì!ê`.zÆ7l(ki×Ò?n®!¹¡½aªœÙðýÖ먠luòAIuå“2胤‘ Ò«âq«Ë4”2BýT´¤Ð]E endstream endobj 220 0 obj << /Length 249 /Filter /FlateDecode >> stream xÚuϱJÄ@à?¤Lá¾€°óšäƒ•óSZYˆ ¨¥ ¢m²¶²òŠàúçr×| 3ËÌüõÙéJ ­õd¥u©M©/¥|HÕ°XhS-ç7Yw’ßkÕH~ͲäÝ~}~¿J¾¾½ÔRò>”Zá‘“=Íx~]Äì™Ï<ÈpÞ²vØ=ÖÛy‘ñK˜ÖÍÙÀ”=z&>賑ix o@ʺ\ur'¿Ðx; endstream endobj 224 0 obj << /Length 279 /Filter /FlateDecode >> stream xÚµ‘±JÄ@†ÿ"0M^@ȼ€ärêŠp°pž` A«+ÄJ--…+—GË£œoÎË;»‰Å¡¥Í~ì¿;3»ÿ~Æ36|\±¹`sÂO½’™{Ñ˧ñäñ…–5•k6s*¯½Le}ÃïoÏT.o/¹¢rÅ÷Ϩ^1€LZyŠ XèVöh+"­SöÓ!•Ù—óÇq(DK¬¿¢Ëvð,ü5e";ÏÜ¥™Ó2 u:L™&ž í€Úý¯l¶‡t˜(ÿÌÃyã;&.ìÿ5±‰ÿÆ&ú€MôCô }ô-é£é.úšuÑç¼Ch\´1‹ ¼¦9¥Cˆ…ÖhŽ]ˆYâLÍcî «šîèz€¦’ endstream endobj 225 0 obj << /Length 221 /Filter /FlateDecode >> stream xÚÅÒ=‚0à’oá|'°à:‘ &2˜èä`œÔÑA£3£xÆ„ÚÒ’êà&„ä)%¥¼/ñ|0™aˆ#qÅcœñÁâå)†râx4ºÃ8ºwæk¼ßg éfÐ ÷†È3äò`„üiPÔb.i)¸†ÏK—¿ˆ|ºEÂ4‚ZÃo ¸†'^ÒÂíQZpÄÒ6*òìÔÿÀ/³?Çéa‡ðT¦Ç휓|bºàºÇ×UYˆeTÝé”ò'e[x‚é? endstream endobj 226 0 obj << /Length 279 /Filter /FlateDecode >> stream xÚ½ÒÍNƒ@ð?!±Éì”yªO%©5‘ƒI=yh<©G½–>Z…GЛ‰dÇÙ~?®B¿ì² ÌÎòãbÌ|”sYrqÂ÷9=Q™±?‹S›¹{¤iMé —¥—:Li}Å/ϯ”NççœS:ãEÎÙ-Õ305õ‘ŒÂ€&ŠJ±^†™UÒ: Ò'âOgk ŠDtºQTvi:E¢7ÅÐé"C,­"öÐÕˆœn³2 àCbXîÞð&ᾡƒ;ÈÿÀ¯k~Âõ Uý ûå>¬>}„<â=ZƒÜï¦qõBÙÅÔlƒ“M”‘lÃõq¿»~„–Y“t8À¦mº¨éš¾JfŇ endstream endobj 227 0 obj << /Length 273 /Filter /FlateDecode >> stream xÚ]бNÄ0 `W*eé#$/½B{7F:‰H01 &`dÁœ¾¯ä7!Ð1CUc»\u"Ã'ÕNâ?ívç;¿ñ[ÖøîÂo/ýKcßmÛq‘ËíÒy~³ûÞÖ¾íl}Ãe[÷·þóãëÕÖû»+ߨúà¿y²ýÁCACà(„Hs‰}£!ˆ?Xf¨« ¡K¼D5`\œZ!­–GñÄ`ŽŽê¼ˆÄHY•s,wɇc“*a¤Q²3Gâ’–7ñBÝ„ÚNz‡L"™ÄѨ ƒ ª!«îÄêÏüßqRçU—hq¿!3ƒ¾.² ˜)•3LAòçJâŒF"ó›ø*{ÝÛ{û è4Àí endstream endobj 228 0 obj << /Length 226 /Filter /FlateDecode >> stream xÚmϽNÃ0ð”ÁÒ-y„Ü P'4­Äd©-`b@€‘³Û'è+õQ"ñÞè`õ8;UÀÃO¾ó}ȳfÒ]qÃS¾hyÖpwÉÏ-½Q7פ†Óñåé•=Ùîædo4M¶¿å÷ϲ‹»%·dWüØr³¦~Å0²à$…HÊX `ÈÕ~@}€ ¨ãI ÏVñ¤Vª&$‹}RÏË´`\Se½ì´^Bê•Mš#¿3]žéGódþ±>àr½Ë½^ôR|K¬æK¢ÙJ,äŸÿÐuO÷ô„?}Ï endstream endobj 229 0 obj << /Length 205 /Filter /FlateDecode >> stream xڽѱ Â0à“ …[ú½жÔè(Ô vtr'utPtn-ÒGèØ¡/…â$fùàBŽû/r<S@õC’’FíC<¡ ¹ÐhhovGŒSô×$Côç\F?]Ðå|= /§ÄÕ„6üf‹iB ÁýÇ"þOV]<3ŽÐhÅT0)™¼Š)À­™œ»E7]DKþ2ôº)~BGkÑò>K3çsjîýåfƒU•Ù(³ž ]Ø(‡Ó7ÿ£p–â 9  @ endstream endobj 230 0 obj << /Length 207 /Filter /FlateDecode >> stream xÚαŠÂ@Ц¼fþ`ó~`w2› ²‚ë‚)­,–­ÔÒBq»…øiù”|BÊ)†¼}ÅÞæwxwn9zó#ιàWÏeÁå;ï<©k˜Éõe{ YEnÃŘÜBcrՒϧß=¹Ùê“=¹9{Ψš3Pw€2‘u›µ‹é ¦‡i,Ú¨dW‚2½aCvÚ‘4Cä9êáŽÖãeýºÛ©Ž F.IiL«w¶Ö©Äáº}U´¦*[e? endstream endobj 231 0 obj << /Length 211 /Filter /FlateDecode >> stream xÚ½Ñ1 Â0àH‡Â[z„¼ h švª‚ÄIãM¼Jobà˜¡ôùÒˆ.uÉ^Hø“è´—bØU¨5&Ü)8‚V\ìc2ô+Ûd9Ä+Ô â—!Îçx>]ög‹1ru‚kÞ³|‚‚[h›‘¾#FùWLé¨rH"‡yDw†Š€“Ä3+šëVDu“3ªšíÒã‚0/-ÐOh=ÚØ–,Ò¾s¾R±Uܯ!QéâÆHª%Ã⦥€iKxÆ.¤¼ endstream endobj 232 0 obj << /Length 208 /Filter /FlateDecode >> stream xÚmÏ1jÃ@Ð/T¦Ñ ²s{¥h!©"e°Š€S¹0©’”)l’Î MGѶT!4[ÛÁ;ðŠ]fæ¯{š»gN8ãYÊα{äÏ”vä>•˦—o**²v Ù•^“­^ùgÿûE¶X/8%[ò6å䪒é€H êNš@š¼ ¦‹FÄ>÷J4˜^É{„ã…Úÿ!gÄ#¸æßñÐ…w¨oÑɱ9£éŒ&ÀƒÂK¨ ÛCÚÐk‹é`DZýÇ8 eEotWÔqœ endstream endobj 233 0 obj << /Length 261 /Filter /FlateDecode >> stream xÚнJÄ@ð9Rl³oàÎ h²^ÎÃjá<Á‚Vb¥–ŠvBòhy”ø[nvüïxˆ …)~0³óEÖþètÅ ¯øð¸áµçÖóƒ7Ï¦Ý Ûð‰ß?Ý?™mgên7¦¾@ÞÔÝ%¿¾¼=šz{uƈw|ë¹¹3ÝŽ©’¡Š$¹™DrŸ+YÈœ—3õÙÂ)»D!æÓ{ˆ¤a±‡ó¿üÙ¥sö¡Î§²k¤%öP2‘Å=·Pù¾t¿ÔQtÁ¨ÎeRêPGu²*º&¸Ø£ß¦â2åo«?}ÕÊØ£×Æ€ínrQ-î.»‹j,Iz ðS‰Ìyg®Í']¨T endstream endobj 234 0 obj << /Length 129 /Filter /FlateDecode >> stream xÚ3²Ð³0S0P0b#33…C®B.#C ßÄI$çr9yré‡+ré{E¹ô=}JŠJS¹ôœ€¢. Ñ@-±\ž. Œ?˜ÿ0°ÿcàÿÏ ÿ¿ R@@eøÀ†ÿHˆý?3-Ñÿÿ?àˆËÕ“+ !;X endstream endobj 235 0 obj << /Length 191 /Filter /FlateDecode >> stream xÚÝË= ÂP ð”…,ÞÀ—تtøvtr'utPœ´G{Gé*:”÷÷=GA IÈ/ É{n&‰øÊ»’¥²IyÏy">Üèë Ž’'OÜ–ãb*ÇÃiËñ`67d™J²âb$%]S€’`}F¨] R¡qj˜KäOmºVuŠlŸô­r/¡=“¾›·jÒÒ )Á„0¤ì§JRÍw©ç¿ h" ÒÀoñ¸à9¿³èÐ, endstream endobj 236 0 obj << /Length 153 /Filter /FlateDecode >> stream xÚ35×3W0P0bS3C…C®B.SC ßÄI$çr9yré‡+˜ré{E¹ô=}JŠJS¹ôœ€|…h –X.OÆ öþÿ! fþÿ¿HñøHÉ1Ô?``ÿgRÃü¯B}Sÿ0ÈÿRP¨lÃà¦þÿÿÃþÿÿ¬—«'W „Œ endstream endobj 237 0 obj << /Length 195 /Filter /FlateDecode >> stream xÚ±‚0†KHná¸ÐR) bbŒ“::ht†GãQxFÃymÙŒ‹ÉåËõ¿ôîÿ3µÈSL0ŹB£^âEÁtÆb‚:õ“ó Jò€:¹a¤Ùâóñº‚,w+T +<*LN`*¢î…3™1QËBW°DM4ˆ€Dø³Ñ7üd‘G±eëYXº/ugwÕý7Érø¿vNw½ï-²>›=“-n'N¹|ƈóºì°6°‡;‡Ã endstream endobj 238 0 obj << /Length 154 /Filter /FlateDecode >> stream xÚ31Ò35Q0P0bCJ1ä*ä26òÁ" ‰ä\.'O.ýpcs.} (—¾§¯BIQi*—¾S€³ï¢m¨`Ëåé¢ÀøñÃÿìÿþÿãÿÿàÿ?{ùÿÿÙÈ`ÿWaÿƒùßñHüÀ„üæÿ ü€s``€ t$þÿÿAp¹zrrõX] endstream endobj 239 0 obj << /Length 223 /Filter /FlateDecode >> stream xÚ=ϱJ1àÙâ` ÷ ̼€f×Ôæç n!he!Vw–Švrî£í£Ü#l¹EÈ8ãÉAø ÿÌdHlϯ/¹åÀg‡+޼íèBÔ°å•Í­zòO"ù;É÷÷üùñõJ~õpÃù5?wܾP¿f¸ù•È ‘‚f¿(pCU€‚ô|KäNCþÈÞÐ;~$š&ÑÔ‰ÌhDÃÚž×mJFm=ZR*'2Ò8îH3æ#:Ý ŠtÚÙÞd{w¹ÎÈ"¦$#ì Ûžén gð endstream endobj 240 0 obj << /Length 154 /Filter /FlateDecode >> stream xÚ31Ð3¶T0P0RÐ5T06Q0µPH1ä*ä26 (˜ZBd’s¹œ<¹ôÃŒ ¹ô=€Â\úž¾ %E¥©\úNÎ @Q…h žX.Oö ̆呰=×CñÿF fbùÿÿÿüGÂŒP9*b9Bè†ÿ ¸þAƒý‡@‡=:ðб \®ž\\1…j endstream endobj 241 0 obj << /Length 159 /Filter /FlateDecode >> stream xÚÕÏ1Â0 …aW ‘|‰ø‚:V*E"L ˆ @0·7áhäæ!8Ógýv†„bPÈPré{ cɽì<9xDäÑ{³=pÙ­$xv3dvq.çÓeÏ®ZLµ–5Þl8ÖBJd:R%£?08);êû'”ßh:Ê€~ÐfzÇØš›&j’½« ðó¤É&âiä%?9ª~ endstream endobj 242 0 obj << /Length 125 /Filter /FlateDecode >> stream xÚ35Ô³4V0P0bS3…C®B.cßÄ1’s¹œ<¹ôÌ͹ô=€¢\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. ü @ "ê˜ñ?àÿb‰ÿâ;øÇ’„=Ð×?Ð.WO®@.v)aG endstream endobj 243 0 obj << /Length 247 /Filter /FlateDecode >> stream xÚeнJÄ@ðH±0Í>Âî˜sŠóSZYˆ•Z^q¢°y´^©ÚÞ]E‰î⣴> stream xÚuÁJÄ@ †3ô0Ë<Âä´¶.zXW°AOÄ“zô è¹}´y”>B=”Æ$++ˆBù ÿ$þä,^l¨¡–Nµç´mè9á¶*6´M‡—§WÜuXßS»ÁúZd¬»úxÿ|Ázw{Iò¿§‡DÍ#v{à/ÂÌ<ˆàDr3ôT#ä|¼@˜ ®¥~üù·ŒÞºª ò :gùa?'¥Eq\„«´Äódfà4§tæcÑÜ¢=‡C³y³;ÒêG¥Œ>RöÿŸå›³x–^9H`™’‹mZt/¹O/e«“¸³Æe»g´ÛÚZxÕá~ÇœÍ endstream endobj 245 0 obj << /Length 247 /Filter /FlateDecode >> stream xÚнJÄ@ðÿU)Lk—yMs'6.œ'˜BÐê ±RK E;!ëøHæQò)·Xn™XbcŠdvv>véOޏá%8nyÕð½£'j^¹ùäî‘ÖÕ[nÕ¦º»ä—çת×Wg,ÿ¾‘;·ÔmxÀ>ʈ(*1ç<ýp43˜P“ÍфՀÿø.MP~XÍϼÓj íÑË #ü¤sú¨ùUBU¾jg×góoÃliz]$hÁlÁ¿Ä·š‰~Ð.}P߬ï)à> stream xÚÍ“?N…@ÆgC±É6½€QãÚ¸Éó™Ha¢•…±RK vF8Þä%^€’‚0Îì ‘¼Z ø-;;3|óqvrX”ºÐ§ú ÔÆhs¤ŸJõªL¡ù6Ç~çñEm*•ßiS¨üŠ^«¼ºÖïoÏ*ßÜ\èRå[}O‰TµÕ@W‚€dªR‰ˆ;Ȉ,Q–ˆG¨9ÛCi ì7rXKËä0—Aà@$ˆs;’²º:ñ>GOÔ11PV¨GG’ª à{ ré(µëÜ‘  J}1*7S(»$;SheIÙLõ>âoúCø¨^¥f­i0Ó¤ÚÙIñ™Î§ÉÌô¬ð§ Cœ4ôqú¢ŽHºèG®¹‹nJÛè°¬‰®³œcÔC +{ç7ZÛÎÛ¶>»ƒ Úà¿¢‹*E!¼Õe¥nÕ/ÙÏíã endstream endobj 250 0 obj << /Length 258 /Filter /FlateDecode >> stream xÚÕÓ1nƒ0`£ ‘ÞÂx'¨¡b€ ‰¦R"5S†ªSÛ±C¢d†£õ(9BF†ˆcWæGµR¦Z}lÀþ_ÇYÂ1§æÈSÎù#¡=e¹éÇ}·¿ñþEeEzÇYNzm®’®6|<œ>I—/Oœ^ñ«™æª‹kªo?nÁ‚>ƒíCK¹(Iç¸ÖªoïÐv^سs`'rVr\wƒ Iã‚—ý˼ÏÞ‹‘/ÞÁÈí¤íýênp=g¹ÇÍ?ôÿ;³†¸ÎØ—¹=Å  13èr…Ù‹ “E7™ÛòŒ™ÇZ€1µÓŒk kmªgjÖ.=W´¥€Ms³ endstream endobj 251 0 obj << /Length 349 /Filter /FlateDecode >> stream xÚÕ“±NÄ0 †]u¨”¥P¿´U‘®"‡D$˜02€`ny³ãMNâ¸ñ†ªÆIÜ»´EÀJ÷“ã8vâ?ÏŠã¢Â x”cµÀ²Àû\=©Ò83,OÜÊÝ£ZÖ*½Æ²Ré9»UZ_àËóëƒJ——§˜«t…79f·ª^!ðÒ û5D±Åˆˆ6XÖÌ;Ж©‡Æí¤uH@†cýN.|ÍŽrá.m@µÎ³Û¯F|Ž=›Mb¶š Ö´`]ƒÃœb{)Ð$èÀU2¤ئç¿ô' ÄcW˜¾|–rƬÇ,eŽ9sóýÃôOx^cf¥u=þÌzÆ.‡–{6œü‡·›òðÖS–1´Œ¸;ôAýe&oVýögÛ›ù`¦_#œˆ7ÄŸ¢)ÒNG¼¼ èöÝYmv¢M£Ù­è×Üf !ˆ&\oê¬VWê ?¦! endstream endobj 252 0 obj << /Length 346 /Filter /FlateDecode >> stream xÚ}ѱJÄ@à?¤l“v_@“pÞ] !pž` A+ ±RK E;!÷hñMÎ7H¹à’qfwO ¦ù`vv23»œ•µ)ÍÒVf±0õÌÜWêIÍ%Xšú8œÜ=ªU«Šk3¯UqÎaU´æåùõA«ËSS©bmn*SÞªvm€| 82"‡7@бï, }8$´þtHIR2>JØÜJ =°MT;4[6ÿ±ùR׳éÄÄ~“û íD©Ï}~k£.:Âíì£6ʃH«¬Ï±¥DÎJ†wðkñ©8ÊÌ1ÁÛ‡=Iszÿ‚‰6üÑWÎBðJIľ7ìl¢:šÇa²hJ½Ý7ùCÞ¦ûßÍ8‘ÂýðˆþÝÆðâÞ5,φýkV›Ôqœ<ò Òöè÷Ã/™„µXY×dã|…ËvRJµêJ}áI± endstream endobj 253 0 obj << /Length 270 /Filter /FlateDecode >> stream xÚ•‘±JÄ@†'¤Ls°óšL® œ'˜BÐÊB¬> stream xÚÝ‘=NÃ@FÇJišÁsX[NŒ©"åGÂTPR€ ¶;®•ä 9BJGZí0;Þ J¨Øêifw<~ßEqžU”QAg9•—Tô˜ã –)fTûÎÃ3Îj4wTNÐ\IM}Mo¯ïOhf7sÊÑ,h•Svõ‚`Úæ_À ühv= ™{H™× ³ïñž¡±ÁBÊ [rë¡%k‰TïË3¶ü·š.‚ 0=€;  ý Ú¿€“ûv>ò;ö»ÕbC _Æ\”Éõ¶Aøf #àc§ƒ—è,'·4/+;h‚¼q1h¸¬ñ?7p% endstream endobj 255 0 obj << /Length 243 /Filter /FlateDecode >> stream xÚµ±NÃ0†/ê`é?BîÀ‰dSº`©‰ HeꀘhÇ XI-Â#dÌ`å¸s‚ºtÅËgý÷Û¿î·×~Iyºª)x ö5¾£_‰XQ¸™&oG\7èväWèEF×<ÑçÇ×Ýz{O5º ½ÔT½b³!€ÿ€œÈ£‚™Oª±ª–!2J`@;€÷PŽPÈ<²;…‘GgÈ3E9c̈¹*lÊ0´9Útüø / Îà Ýìi†Õnʲm'¾©¿;)¤ø–),åˆbÈߘ^‹ìJq™©Ý‚§®£zµlÑð¡ÁgüÍF‹¾ endstream endobj 256 0 obj << /Length 253 /Filter /FlateDecode >> stream xÚÕÒ½NÃ0ðT"ÝâGȽu¢~n–ú!‘ &ÄŒ ˜Ý7è+õQúíØ!ÊŸ³¯ñ‚ŠÄ„ˆdå—‹³ÿÊl4¬æ\ñ˜¯jžU<ñsMo4HQÇúæé• Ù{žNÈ^K™lsÃïŸ/d·K®É®ø¡æê‘šgáʱ‰wƒ_ s=Ìÿ‡$ p8E €.¢° (±s‡×…¢ÀŸÂ4Ž2ì¥*ȱÓ| ]¹Ñ6&âÜ´LèÎpßàÚ‹À_à‡ýøËÇIHGN!ÄXÊ>±] ³7ž#†Ýfæýß".ŒÎF«?«Ç^Q 3Ò™Ö Ýщb= endstream endobj 257 0 obj << /Length 244 /Filter /FlateDecode >> stream xÚ…¿J1‡gÙ"0M!óº·`D«Ày‚[ZYˆ•ZZ(Úºy´}”<•aÇ™¹ãôP1|ðå—?üâéáIO :¢ƒžâ1ÅH=>cT¹Pc;÷O¸°»¡Øcw!»á’^_Þ±[^‘ØÝÊ™;Và8ƒŒ‘?dm˜gPÇj·\R…q :“dÄ„*Á |…Vbn¶;ƒg³Eó çd˜ö1Öo( Ø÷aãhDBÿcü³!ýD[Áo˜¬1¿En¥ ¹±¦ä%iêÝînª6N:ó\ÒZÛ` æ]H›_ÙI<ð?yë­œ endstream endobj 258 0 obj << /Length 324 /Filter /FlateDecode >> stream xÚ¥‘?JÅ@Æ'¤XØ&GÈ\@“HòBª…çL!he!¯RK EëÍÑÖ›ä¦L2Î쮂°áÇîüû¾É®9o[,±Æ³‹w565>UúU7¿–Øv1ôø¢÷½.î±étqÍïºèoðýíãYûÛK¬tqÀ‡ Ë£î¯|¢QÑÑ’“CD–F°³"RcB|&;¦Jª ÀÌÆeÂ%w¹pU¾ëö3Bú?OûþÄÂ|€ G(ú‚^±'€f ‰]âTH¿Ø¯ð“|X9éʶÌÜ/O8E.‘> stream xÚ36Ó35Q0Pacc …C®B.# ßÄI$çr9yré‡+Ypé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]ìþ``üÿ€ùÿ0fÿÿ+†ÉƒÔ‚ô€õ’ ä0üÿ‰˜aˆàÿÿÿ@Ç\®ž\\ÍÙ¥; endstream endobj 260 0 obj << /Length 232 /Filter /FlateDecode >> stream xÚíÒ½jAð WÓÜ#Ü>·ÔŒ‚WZ¥©LÊ+³vrp!E¶›üçT°+‹ ó›Ý-ÆÙÇvïÞXÓÅqöÁt;æÍñ';ë±j-->x˜súŒÇéiNó©Y-×ïœgOÙ‘yÁÌ+ç#CYEI ºO$RáxŠ%4ˆDJʤnï«Ò 󢣨Ò×®U¶¤ Hª@Yûƒ$߸»Np·â§¤D@¥(€þ¿ØAx^ƒæ §¨å9ìÅE…ÿÇÍÛ„ÂÆip xœóœÿvÚiC endstream endobj 261 0 obj << /Length 184 /Filter /FlateDecode >> stream xÚíѱ‚@ à& &]xúÞÜHLtr0Nêè ÑUy´{ጃ „zwÀ¡Í×6ÿÔd4”’™JBG´ñ„qlfiG{Ø1+P¬)ŽQÌÍE± Ëùz@‘-§¢Èi’Üb‘¤‚˜µ©ÒÁc®|æÚ!P÷Æái à±®!`{èø.ÿT¼ÊV6ß¡ýAÓõ_°yÍÀ4Õ8+p…o âøš endstream endobj 262 0 obj << /Length 231 /Filter /FlateDecode >> stream xÚµ‘±‚0†kHná¼Ђ±0’ &2˜èä`œÔÑA£3<šÂ#02Î^KL%!_sý{½þ¬æI‚!.qa¼@¥ðÁCT±Ý9ß +@P% 7º ²Øâóñº‚Ìv+Œ@æxŒ0> stream xÚÕÏ;Â0 ÐtõÒ#Ô' ’VbªTŠD$˜02€`nÆQz„T d¨jœ20õXö“üYœé™žcŠš+ã4xRp“s?¶aq¼@iAîÐä W<i×x¿=Î ËÍÈ ÷ ÓØ Eá¢^¹˜6¡–­É±Câ‰:_øˆ:WóÑ«}ßÍO_ /h‰ Æmƒú ýIž™–¶ðj^¤ï endstream endobj 264 0 obj << /Length 259 /Filter /FlateDecode >> stream xÚ]Ð1NÃ@Ð¥°4¾;ÛŠBƒ¥$\ ‘ŠQ%Ú¬æ£ì\¦°v˜Y)¢yÒî·çÝT—ëk.¹æ‹Šë57 ¿UôIõJ/Kn®æäõƒ6O\¯¨¸×k*ºþþúy§bóxË[~®¸|¡nËXÊp8™ÎÙë…HDÑFä#ò°Ô々Ú~Àþ¨¨7ö'ÉQÈ”´^;LKZ+45qj@.dêtÜÇv“ù!¤¸Ç"iíÐÄÌôehÖ”ôÁjÛ]ˆÿdVçµ³½ÍSuž‡è ±ýõ?h©›ÓêgåcfKxýºëhG¿Á•¡Z endstream endobj 265 0 obj << /Length 186 /Filter /FlateDecode >> stream xÚ35Ô34S0P0RÐ5T01Q07SH1ä*ä21 (˜›Cd’s¹œ<¹ôÃL ¹ô=€Â\úž¾ %E¥©\úNÎ @Q…h žX.O†ÀOþÁN2bÌH$;É&åÁ¤=˜¬“ÿA$3˜äÿÿÿÿ?†ÿ8H¨úANò7PJÊÃç‚”ÿÇ`$ÿƒHþÿ ÀØ`ÿð(Èþßÿ ýß E` q¹zrr:é“p endstream endobj 266 0 obj << /Length 187 /Filter /FlateDecode >> stream xÚíÑ1 Â@Ð  Óä™ èfÑlì1‚[ZYˆ•ZZ(ZÇÎkÙyÛt¦Ž»‰… а{üáÃÀ»°O!õ¨­(Võh¥p‹ZÛ0¤(j.Ë ¦匴F9²1J3¦ýî°F™N¤Pf4W.ÐdI àñ˜Kü#ZX€ƒøã+üÏÞ8ä¯È’ àö„wåÂ6î .n ŸÁÉÁNÃõ<sUÃv‹öÁ848Å”Ìðn endstream endobj 267 0 obj << /Length 137 /Filter /FlateDecode >> stream xÚ33Õ37W0P04¦æ æ )†\…\&f  ,“œËåäÉ¥®`bÆ¥ïæÒ÷ôU()*MåÒw pV0äÒwQˆ6T0ˆåòtQ```c;0ùD0ƒI~0Y"ÙÿIæÿ ò?&ù¤æDå(I²ôÿÿà"¹\=¹¹VI¢” endstream endobj 268 0 obj << /Length 301 /Filter /FlateDecode >> stream xÚ}ÑMJÅ0à)Y²é’Ø–G_]x>Á.]¹WêÒ…¢ëôh=JŽe¥ãüˆ? Ú¯if¦“tߟ ChÞ¯6 §á±s/®ßÑ\¦¼ððì£knC¿sÍ%½uÍxÞ^ߟ\s¸>kŽá® í½Ào@£B,D¸'€DdZš"-š,-ÚB/6¨3"x‰š¢äç”™œ®—ÓÊ®k‰í ƒËpÞ7q|Ì$pãFúæš¿È »ùdíL™@ÚAvüZ´H¥ÙFÓ¬¦YM«5Þk|,ZdÖìI³eb4Ðj`Môä³g!@Tt¶«`[ÈBÍ».àA8ã²EþõËwÌ•b«ÔŠW¢’üÉü'îbt7î}tû” endstream endobj 269 0 obj << /Length 305 /Filter /FlateDecode >> stream xÚ‘½N„@LJlA² À¼€ÅgErž‰&ZY+µ´ÐhÍ=Ú> @IA烋 á·ì|ýgf.ëK xQá®Âz¯•ÿð!ðe‰õ•Y^Þý¡õÅ#†à‹[¾öE{‡_Ÿßo¾8Ü_cå‹#>UX>ûöˆ)Eà§£‰¿ŽˆN£ÈGG#›"ˆqhfHøÔ8¾ÏéäfEÊAEIÅÈ=¿ÿ„Å-ˆÎ’%$©#쵂H\ÀÕWèfä¹  Íhg™…™cgݺi†¹8iZþG«`©s+´¤É,25×ô\iÜ`2[Ì[¸¨ÈE3)Dä/ˆþbZÁ1.8Gƒ ƒ•I¬³éUuužR¯áÍ:îXÔ&¼oÝ´í]Ö¯"MºÎÝß´þÁÿéýëo endstream endobj 273 0 obj << /Length 136 /Filter /FlateDecode >> stream xÚ32×3°P0P°PÐ5´T02P04PH1ä*ä24Š(YB¥’s¹œ<¹ôà ¹ô=€â\úž¾ %E¥©\úNÎ @Q…h ¦X.O9†ú†ÿ ÿᬠ—Àƒ€ ãÆæfv6> † $—«'W ÷ '® endstream endobj 274 0 obj << /Length 230 /Filter /FlateDecode >> stream xڥѽ Â0àá¡÷¦…¶Ø©P+ØAÐÉAœÔÑAѹ}´> stream xÚÅ’±jÃ0†OxÜ¢Gн@k»g«!M¡ íÔ¡mÇ-íì@^Ì[^Ã[WŒÕÓI –õq’î¤ûÿUu¹¤‚–tqE+þ z+ñ«Šƒ…‹ÈÊë®ÌŸ¨ª0¿ã0æÍ=}ý¼c¾~¸¡ó =—T¼`³!ÐÀ–g°¶ƒžçÌÚA@jTê®,÷ ÙÈãÀ°8¨_=¸eãöµ½âC»¶®ŠîAMF‹^ò ¸|œ:I *©@=‡N` í¿À÷Ú ”åž»kÌÛ6„Öñ9&>0s‚!€žof ¾á&j‘‚—ɤ¤”bu”» g€ŒÏ«C0I¶µòF‚)ZëÍæ¥ûàmƒøê*­ü endstream endobj 276 0 obj << /Length 289 /Filter /FlateDecode >> stream xÚeÐ;NÃ@àßrai›=‚ç`;qѰR. ¢@T@I‚.J|®²7aàÒˆÈÃÎ$ÊCi>˳óØI}^M©¤ ¨¾ iI/•y7õ8KšŽ6'ÏofÖ˜âê±)nbØÍ-}~|½šbvwE•)æôXQùdš9!a¤€åŽûè€Á"é‘[dÙ72ô¶•ÜÃEW¸Œ:,wæX¨ë¨=0;rØ™nåW-¤·WƒèzUR‘³„,k–Ÿ”9¶M˜¥<êåÜI÷z°Ö:©HxÛDL¹ÕÎc¿ŸêÔ|c=1;2œØ‰^´¾ßÛê]ÚA·Äº7™¿Ä_l´Æo'kïH;tÎÛ€_Ñ"èÅ=\lh®soþWŽŠÐ endstream endobj 277 0 obj << /Length 229 /Filter /FlateDecode >> stream xÚuϱJAà¹ba ï ¼yÝÙhº…Á+­RˆPK E;1 ¾Øt¾Æ½±»âp½‹ S|Å?;?¬ŸÏxžjösö3¾­éüTCÆÍÍ=-r+öSrg“kÎùéñùŽÜââ„krK¾ªyrMÍ’a{è„Õ®lBŠ-`a:`Ðu)xªu‹w­äG½W‹˜ÕùÇ2©&e˯œɦá¶ÏÚnh›‡Î ÙÍhüuð‡aǨ‡k}ÿ¡ Þ[ bÔªµoŸb»ý"E“z“†O¾€Nº¤oÉŒla endstream endobj 278 0 obj << /Length 213 /Filter /FlateDecode >> stream xÚÅѱ Â0à; ·ø½Ð4X-‚P¨ vtr'uTt•7)7´&/¡Â“²‰Ž hÀ4³“"¯rM¾ò¨Ó˜îzd‡Ú endstream endobj 279 0 obj << /Length 210 /Filter /FlateDecode >> stream xÚuÏ1jÃ0àg<þÅ7ˆÿ 4²‘ã1'…z(¤S‡$ MH×XGÓQ|„ŒJÝW\(TˆôúŸ 7uN3uúk‘i1Ó}.Gq%CËáf÷&u#öU])ö‰±ØæYϧƒØzµÐ\ìR×¹fi–Šè €éÆWà‚Op_ÝPIÓ!õ I@Ò*¤#f %×#ý¸~á,üK{ÇT#ç¼³¶,„ΰq`É(°nìYÜsLøâ¾Þ–ÇF^䃷V2 endstream endobj 280 0 obj << /Length 125 /Filter /FlateDecode >> stream xÚ32×3°P0P0b#S3s…C®B.#C ßÄI$çr9yré‡+ré{E¹ô=}JŠJS¹ôœ€¢. Ñ@-±\ž. ŒØ€ÿ‚ˆ¥ˆŒþÃûæ? : æ ÿÿÿ€ .WO®@.»P endstream endobj 281 0 obj << /Length 110 /Filter /FlateDecode >> stream xÚ32×3°P0P0b#S3K…C®B.#C ßÄI$çr9yré‡+ré{E¹ô=}JŠJS¹ôœ€¢. Ñ@-±\ž. ŒþÃûæ? ŒC 1ÿcøÿÿq¹zrrp^Ú endstream endobj 282 0 obj << /Length 203 /Filter /FlateDecode >> stream xÚåÐ=ªÂ@ðH˜Â\@ÈœÀMü BÀ0… •…X©¥ ¢­ÉÑö({Ë«ãî+¾¼b†ßü§˜aÖé8åž«|Äý>2ºPî³Ô~±?Ѥ$µá|@jáRRå’o×û‘Ôd5åŒÔŒ·§;*gX@l$Æu¯8lSyÕEÈžñn!Ñ­Á£X#xiTCÄÆ©F•þHjODO' 0¿ôvÒÊÝö§þ³B÷J#n Ò$"¡ˆù&š—´¦ݤ› endstream endobj 283 0 obj << /Length 209 /Filter /FlateDecode >> stream xÚ= Â@…GR¦É2ÐMtý©bSZYˆ•ZZ(Ú‰ÉÑr2EH|›((vÂðí̛ݷ«Ga_<éIÛ=Ý—½Ï'Ö]ˆžQêÎîÈAÄj-ºËj™U´Ëùz`,§â³ eã‹·å(¢8!"«Ê@'-À1¹à4r²Sjed=L A Ñ‹]l»ÓŒßÄñ V0ùee˜þǯÛ̬äsnãÄ…«òíž ²Áœ¬Ì”/óÍKÝ´í*ëßàYÄ+~PûZ> endstream endobj 284 0 obj << /Length 218 /Filter /FlateDecode >> stream xڭнŽÂ0 p[*yé#à€4"€øè€t7Ýpº ‘Á }4¥Ð±CHpH'n¼[~ƒ­8{`zzÄ9÷¹«Ç<Ðl o5É„jÎÃ~ÛÚìiVúb3"µ’:©bÍçÓeGjö1gMjÁßšó*Œ6±Þf¾'i%°ôQ|”p”Þ´Dй£+”7Y´¦Ñ&˜Dí»èþêï™ñÇÖºÍã^ÙÜ+­džF˰ÅU6ºƒ´uÒˆ“¬;Ò‰wþÛĽoÞ¤eAŸô$”Šš endstream endobj 285 0 obj << /Length 144 /Filter /FlateDecode >> stream xÚ36׳4R0P0a3…C®B.c˜ˆ ’HÎåròäÒW06âÒ÷Šré{ú*”•¦ré;8+ré»(D*Äryº(0ÿ`þðÿ‡üŸÿ?lìþÿ(¨gÿñà?óÏÿ6ügü  u@lÃøŸñþC{Ì ´÷ÿÿpÌåêÉÈÈöPê endstream endobj 286 0 obj << /Length 160 /Filter /FlateDecode >> stream xÚ36׳4R0P0RÐ5T06V03TH1ä*ä26PA3#ˆLr.—“'—~¸‚±—¾P˜KßÓW¡¤¨4•Kß)ÀYÁKßE!ÚPÁ –ËÓEó¡a9$lÄuPüˆÙXþÿÿÿ¡$N#ÌC®ca¨gc{ ùù ì00þ?À”àrõä äùJm endstream endobj 287 0 obj << /Length 162 /Filter /FlateDecode >> stream xÚÍË1 Â@…á·¤L¡°˜ èfqCÊ@Œà‚Vb--+'GË‘<@Ⱥ!Xè l¾âý3©™ŒžóÔpjØZ>ºíÇ„m:”êL…#½c›‘^…™´[óíz?‘.6 6¤KÞNäJV- ð-rÿeÜByD¡z 7ÿ«ÿU}Ä`‡(øD,uxIƒé0nÒ·WR héhKo©b“ endstream endobj 288 0 obj << /Length 197 /Filter /FlateDecode >> stream xÚ=ϱ Â0Æñ¯8nñzO`Z¢  j;:9ˆ ¨£ ¢³y´> stream xÚ½½ ÂP F¿Ò¡¥Ð¼€ÞVn«“‚?`A'qRGE7Áúf}”>BÇÅšÞ‚Šè*3$|9º×î†ì³æV‡uÈQÄÛ€¤}®+ê5“Íž†1©%kŸÔTڤ⟎ç©á|Ä©1¯öר8Ux·èã”À*à%V7±38©“ÂÎ \Aî&°rOP ådeyÜ¿¡>Xý ?c\%éý#øë£æË'q¶(I£©fÔ‰µNšÄ´ ƒ…) endstream endobj 290 0 obj << /Length 131 /Filter /FlateDecode >> stream xÚ3±Ð37U0P°bC33…C®B.c# ßÄI$çr9yré‡+qé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<] >00013Ëñÿ ÿAø9³ùà óÿúóCýÿÿÿa˜ËÕ“+ Ìt^@ endstream endobj 291 0 obj << /Length 259 /Filter /FlateDecode >> stream xÚ]ÐÁJ…@ÆñOf!"·."ç åÚÍE0p»A.‚Zµˆ ¨vµ ôÑ|Á¥‹ËÎgH0?˜ñ?p´¬NÎNmn¹ÊÒ®×ö¹wYUºÏ¹å‹§7ÙÔâîìªw¥§âêkûùñõ"nssa q[{_ØüAê­…ÙÈB´aD4%;˜>Ú#îp¨§Ýà{%*eÌdl”鈧W”]èHÿ‹ùOË·ž¦…dfä 3Âױt¢KÒ‡óF¼oæû¼³MØfl=³oÂ,"†EÌ"pLΉ~WІh–Fš¥F³*Ö4×€& !Œ3ž´DWþËZnåÎvj endstream endobj 292 0 obj << /Length 238 /Filter /FlateDecode >> stream xڭбJÄ@à?ìÂ4y1󺉗‹[8O0… •…‚Z *Úš<Ú>Ê=BÊKÖD¸Òæ+f™™¶ö‡Ç+.yÅG\×Ü4üPÑ -½Knü÷Ëý­;r×¼ôäÎ¥L®»à·×÷GrëËS®Èmø¦âò–º ÁØ`#úÁ¦” ÌJT&e« 0m´ã?H‚M¦ÈF3âC‚ …P J°@¤#ßJ“ÿ2 ‹_â.N”^‘v2%5+w:ù‹gY9–º×Cbì)û@;ä@¯ùf,B‘M¥—B‘~2ÑYGWô îøeß endstream endobj 293 0 obj << /Length 285 /Filter /FlateDecode >> stream xÚm½NÃ0F¿Èƒ%/~ƒÚ/IQ: F*E"02€@b¨HÍâGȘ!Êås[uY:Ãõý9÷–ËóË…/|éÏ.|¹ðUå_ææÝ”…O¯Z~žß̺1ùƒ/ “ß2lòæÎ~|½š|}íç&ßøÇ¹/žL³ñ€Ð'ÐbFÔÈz¸NEØ tÔª·ÃÙàXùÝ !¥½‹©¢‡Šv$ô´t¶S2éWÄðÍáSÔ’K8Z©d¥ef-UwN: VB•DXMµv U=ÒÀŽ+¦OD6í(´‡$´ìƒú÷8³”¼Úㇸb+N=îÆ=BZ!r5ðB<Ÿ$gVZ¡}F=sÓ˜­ù´{~Ê endstream endobj 297 0 obj << /Length 106 /Filter /FlateDecode >> stream xÚ36×31R0P0F¦ fF )†\…\`¾ˆ f%çr9yré‡y\ú@a.}O_…’¢ÒT.}§gC.}…hCƒX.O~ûõþ@Àúöø¨ pÙÁåêÉÈ1V2ê endstream endobj 298 0 obj << /Length 287 /Filter /FlateDecode >> stream xڕѽNÃ0à‹> stream xÚåÓ»JÄ@à¶8MÞÀœÐÌÀÞ„°ë ¦´²­VK E[7e°°ô $2EÈ8gfö‚A´³0ðÍ%sù'™ ¦Ç$iH‡Š&’””t£ðÇ#[ËeåÛVw8Ï1½¢ñÓ3®Ç4?§Ç‡§[Lç'dË ºV$—˜/%¸K˜ó DÀºý¿ásÐ¥0­GbŒÇڷ鲸f¼V Æ[÷ÖïöÑ1>8Q†«.ìÝ„y4¿šT1£bÔ<¢[σ¶‡. êÃ| Ø¡ø ü¼Âº¯;í‡ Úý \tõ~˜Ûœ9ù„“ÙAƧÇrà×:ösÂLn˜ÙÿÊrÕnÈà™7ÃІûÂbÓ„/ǵàiŽ—ø »ÆËH endstream endobj 300 0 obj << /Length 262 /Filter /FlateDecode >> stream xÚµ‘±JÄ@†ÿ%ÅÂ4yƒË¼€nnàà pž` A+ ¹J--îP¸B¸«Ø×\_ðSE;ò%ë_ûtòøBë–Ü=û’ܵl“koøuÿöLn}{ɹ ?T\n©Ý0`Bùòð¡h§"à(»Ù vì3…,r£Vˆç ½(R0§(™ºZ1̾‘?¡^3šAÑï RàWÄ^þS…ãML j×3ô)0}1Fè3‘õ¹fšÅš l—iX6e–§©î*y’›XˆÞ i}l±éæM‹ó£«–îè S-zY endstream endobj 301 0 obj << /Length 290 /Filter /FlateDecode >> stream xÚåѽJÄ@ðYR¦É˜yM̲pž` A+ ±º³´P´”äÞ,÷&ñ ´ËAȸ³›„ÃÃΰ¿Ý%“ͦ‡GÇ”RFûš¦štšÒRãN2»šÚ¹ö{‹{œå˜\Ó$Ãä\Ö1É/èéñù“Ùå)Ùùœn4¥·˜Ï ܵç0Cþ v þ-¸ôˆ¸ñ0ÜypiV‚ …p-P¯‚¸ØLð"(J€Ëv×W—ÀU+ov®Œ‡-ã“ßúcDâõg˜Uâ7({ð_`üú7'4»¨¿ ÁlÃ…éâm¶sކH/@×b€±'Û¸^U Þ¶b°æÊUŒVlÿA1J·1×vÏÞ€g9^á[9×^ endstream endobj 302 0 obj << /Length 267 /Filter /FlateDecode >> stream xÚ‘±J1†'lq0…ûÞ¼€f̰pžà‚Vb¥–Š‚]òhy”}„-¯86ÎL¢œ‡• Ù/Ìü;“üq«Ó5äè¤%×QwFO-¾¢kHfçræñ×Ú;r Ú+£®éýíãíúæ‚Z´ºo©yÀaCÕ 2–i¤´å¯™5º˜À€z„>‚¬%k<&rš¥,«¶`vŒìd+q3Ëß’1«^+ü ô\úoxE<@ØG*Ðqˆ ÷ù/|AüýoŒÙ¸=˜¨×,¨¢8U(`‡Ø´ fA-©‘pœûžçÚŸ¹Ú¤Pjí"ê{mœ¤ÔIš€‘ƒã倷øYRŽ endstream endobj 303 0 obj << /Length 351 /Filter /FlateDecode >> stream xÚ­‘ÍJÄ0ǧäÈ¥¼€¶‹µ‹§Âº‚=zò ‚ =øu“mÁë£ärì!4ÎLRuD¶„™ÉÌüg¦^îW¦4•Ù;(M}hêÊÜ-Ô£ªKCÿQ•\·jÕªâÒÔ¥*NÑ®Šö̼<½Þ«bu~lªX›«…)¯U»6À_‡GzahBŸ ‚Õï„—ã›t ]æ2 º‡¦G6Da)…Æh˜rûÅÌcf÷EA¿1-Û?pλëÛÕ³«÷³î I}Òˆš6Ä¥£P€gOén Àâܘ’ÝÙ'û+ít‰c¢„036u! è’¡AÒMÄ"9Ñ%ûÈ} |H³=¤X9ÑZ±H v¹÷]Ͻãm³E=L‰QVþgÎq)Ïœ¯ïRþT7éØD]àãn²¤Çó cˆ»Æ’|´M É'bÛ<Î%øªNZu¡>ÚvÔ endstream endobj 304 0 obj << /Length 142 /Filter /FlateDecode >> stream xÚ36×31R0P0bcCKS…C®B.#ßÄ1’s¹œ<¹ôÃŒL¹ô=€¢\úž¾ %E¥©\úNÎ †\ú. ц ±\ž.  Œÿ˜ÿ30°ÿoÀŠAr 5 µTì ü@;þ£af f€áú!Žÿ``üÿè¯ÿ ȘËÕ“+ > stream xÚ36×31R0P0bc#C…C®B.#3 €˜’JÎåròäÒW02ãÒ÷ sé{ú*”•¦ré;8+ré»(D*Äryº(0°70ðÿo`ø†™˜†ëG1Õñÿ ŒÿÃúÿdÌåêÉȸ§‰ô endstream endobj 306 0 obj << /Length 252 /Filter /FlateDecode >> stream xÚíÒ±J1Ð;¤¼ÂùÁ|IÜeÑj`]Á)­,APKAEÁnæÓ"vÖù„”[ û|Ï]°\k±äÜ„[Ý÷vGÜXN n2rבî)M‚Z/W·4mÉŸËŸ1ùc‰É·'îñáé†üôôÐEò37.\P;s0 ]*îËÉðÔ\æT3&‚œ0þÆ3vr•ÑõŠ‚ºHM“¤å%Á.,äè^{ØaK uÝ`†m)4ï‚å¾`±B¥°ŠOÅÝŠË5䀳¶Š"mDVô‘øÇ_ÅÏ—ÊBŒ.¤fY/ë©ó/AG-Ñ!A B endstream endobj 307 0 obj << /Length 207 /Filter /FlateDecode >> stream xÚíÑ¡Â0à[*–œÙ#pO@·@ ¨%0&H@! $¸ñh%Ø#L"Çu€…D´ùþ¶—KzzµÙ¢ê²™Í"\¢1’CÝÅtíõˆŒAÝ“SÔiŸÖ«Íu{СuBãˆÂ ¦ ²åà³U|0Û€ù‰Ø–ØB%/Q@Px¼·à_åQvØïʲ#€rˆO‚û ^‰Ëç7\©ëŸ‘†ýãgpÓ÷x'A~^ɼ™¹P²Ù/ÀnŠC|U¸ý endstream endobj 308 0 obj << /Length 249 /Filter /FlateDecode >> stream xÚ­‘±NÃ@ †}êÉK!~¸5Ç©©*ÁÔ1#æÜ£õQú3T9l× êÈÝIßɾü±‡Ûë5•TÓUEá†Âš^+üÀ:p°¤PŸ3/ï¸éÐï©è·Fßíèëóû ýæáŽ*ô-=UT>c×€Kxåiôi$Þ«Š@v”#W@Áø!ç'=rå4à8 E\)™æGCÎ †B1Š:‹6ŠÓ½bê¥:wZ¹KÿŠ??²"XÖi=Ì1w«½fùbpêYœ4?Í]óšeä[›ƒã©ÄßÙÄt~xßá#þ°´”ð endstream endobj 309 0 obj << /Length 185 /Filter /FlateDecode >> stream xÚÝÏ? ÂP ð¯,d°«ƒÐœÀ×ÚVt*øì èä ‚ Ž‚ŠÎ¯GëQzÇNÆ÷:ˆƒx‡üÈ—@ i¿—Drj*ñ æCDJb“Cíb¢qNjÍILjn¦¤òß®÷#©ñr©)oÌ™-åS†¯†/ž–ÂX¥ˆSeF·Ô•+^¡+ˆkÛª»d%ôA¢è3ðv×X}Xþ´øÅ~äÈö"õ7i–ÓŠ^¤Ds. endstream endobj 310 0 obj << /Length 281 /Filter /FlateDecode >> stream xÚuÐ1NÄ0Ð¥ˆäÆGð\’o$"-‹D $¨(PR€ [mr®â›#¸Lv˜q v š'Ù3þ3Éêì´n¨"O'5ùsj<=׿Íx/—5«¥òôjÖ)ïÉ{S^˵)»úxÿ|1åúö’jSn衦êÑt8ä€å©zÞ[dŒö yDñbDΰƒtÁ‰=Z¨b‹è°M΢ýÇûyqPû¡©“Újë•e^Œ5X*³>ìYëŽYžÌ:#•õB´IjÆ!¥MlGÕ-ƨéÉâH]$?r>Pçäcš6òŸA§Ù ÓìÖ~¢þ¥I"v˜¶ÈfD7¸ˆ(Ÿ0æºl@/]æª3wæׄŒœ endstream endobj 311 0 obj << /Length 191 /Filter /FlateDecode >> stream xÚ35Ò31T0P0RÐ5T01U°°PH1ä*ä21 (XXBd’s¹œ<¹ôÃLŒ¸ô=€Â\úž¾ %E¥©\úNÎ †\ú. Ñ@ƒb¹<] @€ò>’ƒdF"Ù‘H~$RLÚƒÉz0ùD2ƒIþÿ@ÀðƒD1aˆ’Œ¨L²ÿ``n@'Ù˜ÿ0°3€H~`¼ücà1ƒ(¸l@Aÿà(ÀáÍþÿ8¸\=¹¹~@‡Ø endstream endobj 312 0 obj << /Length 203 /Filter /FlateDecode >> stream xÚíÒ¿Aðïr Éî$7/ÀÞÆeQIüI\!¡Rˆ ¥¡æÑîQ<‚ReÌž V÷Ûùv¶ù¶™Ö[mN8åšå¦e×॥-9§Ã„]úHkêfd¦ì™¡ŽÉd#Þï+2Ýq-™>Ï,'sÊúŒ0eQĈ"”ïüå²ÇÜŸÞÑñþñ3‚Ï?£(%V” œÊUè… Ð’“n(6áÁY4nú+|×<>èÈ­h‘\Ð ºEƒŒ&tj8­Ú endstream endobj 316 0 obj << /Length1 1404 /Length2 6656 /Length3 0 /Length 7610 /Filter /FlateDecode >> stream xÚtT”ëÚ6" J§ÔÐC—tw‡ä 30 Ò!¡¢H"C ‚„€¤„¤twIƒt}¨{Ÿsöùÿµ¾oÍZï¼w?×s_×ËʨgÈ+ƒ¨ à(^Ÿ€$PQÛ$â°²AQ0È_n« éEÀ%ÿ#A £n|J`ÔMž6Ôð„AB@¨$HLR@(( ñw") T{A€Ú|@ â`UD¸ù"¡NΨ›1¿9ì9 1žßå@yWj†µÁ(gˆëÍD{0 hˆ°‡BP¾ÿhÁ!íŒB¹Iòó{{{ó]=øH'N 7å 4€x@^à/À@°+ä2>+ÐÈêñÇoˆpDyƒ‘േÀ=n*<á$ðf8ÐP] ¨ëÿIÖú“Àüën€ >пÚýUý«þ»lopuÃ}¡p' #êªhñ¡|P<@0ÜáW"温{¡0°ÝMÂ*òú@ð À¿àyØ#¡n(>(ìDþ_mnnYî ˆpu…ÀQ€_çS‚"!ö7×îËÿg³ào¸ÿ_†#îàø „ƒ§¿1êî QWú+寸·Ï ‚ŠˆI!î@ˆ½3ÿ¯öF¾nßAÐ/÷ ‚@7„Ðñ$ê¹ùø{€½ @ÒèÿŸZèµGí NP8àßÝoÜÇ?öÍò‘P …À ÷@@_¿½YÝÐˇùþ;ý÷~ù Õ5ªrÿAü¯˜‚ÂèÏ+,ä‚~‘Lìæ%ðŸmþuƒÿíÕCÿ:ÜtT‡;"€0Ü\Þß8¼þ¢Ç_’áþs‚â†Ë Ç¿©o) "`óýŸð»äÿÇû_]þ7êÿ÷T8uS¼tD ¿6zÓ—åøåüm ‹ùý È?ŽL²÷D"o$ø› 7ÇøÛþ­wÄbAØK…»”‡×|§ñæ]î}0ȺlúŠ“×YïyFpçgizè,òHþEg3ÑÔ¢2Ç¡ÜÃ¥ÿFMŨÚ$ýÏç6 ËŸcý_ûr7ä?¶ÑáÑòÉ­\º˜„<ªÁü¢Ášåî)N ÷–ôÄ»UÕçcz²;rdY¥TTÿý7Þ8Î2$ˆ5Û.c˜Š ÅK‡ËE²ëC8tx4Hò¦ïšA#¸/”çÿpNðéé°ßt‘‘ G#5 õC*:¬C’î6…µ ÊQÿ÷yS_Ç|j¤óÞÜãy9ÅKÄ·&˜V 5ˆ…Wµ”yu7€–²^ÃÙi¾’.%•T‘Ù ™tÉK?ÛÄ’¢Ê„AèÖ¦ëŽLš]^ÒNH|ÿx ºgî¼\Ýä^á>ÝÙõ•÷8òeíIgU×bS i¾l›,­“7ˆKÙÙ"fjR2îåm4ªçV£)DŒˆgÂë…øÅmp„´èžÂÙ}ÐB®€ÀCñÛ-˜Ý´Û"Y{O‹+wu憈GaÞ$Va×a¢:×v_^îîæR; )Û¦Grd§)7=ÉžyÆ®/U© CóïÎSð)ø2h%.ˆŒíµ³ä ««¶,–tÆX†úºœJäðm›~.’£Ï¸´ËÛ³VÒ¡Ñ*qä°¶pTX¨`M¾Ž09Ý-öŽVè|:o$žý¤Á øM£‡nªª|ì­wÇ‹Ã-xvÌ[F ^Œ®UÏMœ-ö4¾»ðæA«+±²çk·i®KGŒ[)åµP–£xrX,X^¯{Âq7hú)kúÊ$³M}g•ÉÞÕ}C£“·Ì~s-£ß{¿ ,²øÃŠ-ó…[«R"q©X°6ÆÑÅà׳8âb®cªgŒ½å+&hËÒ†¾Bf7;º±˜ïÔ Éônªs ØÓg´ò¸É®G’2]ü2äΞU?(ñ°,Ÿ!;”Ž(|`ÙhŽÉ2«$mü¯åBôÅ›ï>ªÙúðöBš×1ÔKÐRÖ‘äLÆÑ€– e™Eæk⟋yAœŒqŽf¡¸ökı¸‹ÒÃìdåÏRö Hõ„”³Ãy%ˈىç®úå 4Kùn·–+jôbh Ðl-þb8ÏEËÌ!&ý-ýÃ#jÃ4I±ü]*£NÞL*"Éϼ÷ £YJ¯CúÒ½«½/ññl’Π à¦^K^wÝ©¨:KŸétÞÉ Ÿ-^Æ­¬üð!M¶“ÚVö@,eƒߦ;ë¶Å‹†q=iaÐ0ÝÁT߉Æá=)ÑÔšê@¤¦'h]èüµ±"ÆmèkŠ 5TqùÀ`à‘/ýÈÕc{zVËY÷`ËÚÚa]a/F‹4›cõÚ·v>–^]±½/0KW¸¯­qªýÆ\ ¨û™—¿è,UòˆåI ðò{çk&!êÇXÉFßÍ5ù¦4©~tr6ñPªviúƒ£*¨fÖèé|'9b4Ù#[uM^–ˆªë±°ÀÎ×ÏŠªy“(ç,©6† =±'í÷q©5»GÙY’íJý¢Ž5º©Sy<µ‹[©üf<S³¢†D¹^æzw¯­ù^áÀµÄ—Þ÷³²­9šÉöœTßúŽç-wÞ ŠÙd Ÿöµþ<‡ãmx×'­Ô±d9èX*V§åöNèôÉå™ ú0¬‰»3j9|/Y¤Al<^™ðÇu(<+ûy¶Å(Ødžð;eÙ:í?nfm-þ2ÐIî=?3/h…@·ÌKl.eÕ¿z®e+¸n«àPJV‚pÇRp :|EC'f€t*÷Þ‡SiÁE ÷½Ù x7?”fªú¼—øAõ ƒ=q‰£û²NýÂYç¬bÄI—Hð „¥åe?ìJ~Zù®‘­ƒI{ó‡k«\•épd1Un±ë”«Àø«Û\g¶¯7î´f'Í&ñ;¶dÀêYõ”³%éMä9 ´øW¤ÑÛ"¤hÅLùœÙã ˜T‰ÿ·F|æÚ1³ÛpœD&ÜXŒWáâþcˆDâ¦V#JŽ%ÓÝ[vòWAšm|Ò‘Á—¦Ä³W´ õ÷|—´×®Eƒ ³Ê¬ëÁ¨L\9]ÐF6†ÊCò'!_zæÔE{BmíÑ~Õ¶‡—ÓX®E×µ~}q*A8x$0ôi!S³†L {ÌDᙩmઠçsì)ÃŽI(5OöNÈLþŽ E5E^ýg•øv,t½^ßZ½ö@°Ï ö;*‹^3“hbÊöƒŸúY¥÷Œô®½Â²N.žD·«‰ûaÈ ç¤³ê$Oнçáq¶Ü0ÿû¸Çýã‘ç6rŽ”¢B÷ÕfõÀ^~ÔÆ=ä6Þô}}X¢çB/µÇ“”>Óæn·s Ž”òŸFwã…ë Q¬™˜He×õDÜ#)ÑåÓÍœƒòÔ‰‹ŽÐ‡m¶DF8½y`ù`NŽIeîLSåÄ(ÛîüUBƒIÈSÌ©¤)cÂî{qü4cõz8eø›åüå)XXDù¡û1°PbÁÝ$¯:¿;˜èaýhë­‡ÃÓ48_BîâœÕ\ÉZ­L?j«§Ä»h$~LÞ[t˜—ŽRC¬¶ª˜‹ºôŠ-I~̉fõÅŒÒÀ{¦¢[¹/­‰·¼¡×“«ûT^žªË+2)hæ;ì-Ûjå‰ùòhûx/†éDÿr[ã[Mà5ùk~(tü»'ž]æýfE€x{«Ÿ¼ZÞð!L€/ß¾E–OÍÂ4 $ïYŒÎ¸ë&ßÇg!œc8&hçÌmDänë@îS9Ó*u—Oã·1¥2Ò?^*”âs³Ìõö¡&1_PXO‹(—ôL­%‘“о±™ªIQ­<žß]æ —¿ «"ØÙN‰{òxro/Ž3ÈHíòùuV °ŸKg³|°:^y„tP“˜‚T|ú¶‡Ö^ή\â+}L|+'ˆ2˜¬˜ýS½ÌwóÚoº—A™z4Ööž© ñ„…^m®X¬:kE¡ä˜ß‹cô?Ò‰ŠÕü€™5(•Óøc( ¢rƃ?§sóSjn>Ï᪨ù| 3±˜èb–«.Fúë»ì‹m¤á¤h,ÆwÒ•ªÏî)*ÛF˜¬¿už«ïle%×OêUÉCèÕ·. ‡± Ÿ×3  ÕëIŒJl>Œ÷ˆÂd·],¦¿·‰œ0=•ÔIÎÛìðä9§ãÀ’Š_šmU{•ìÛEu{ 9C5¶éëÛu‰ÛØ/8†8iH†J(­å¢IZ¨í\,Ïèë[·(¹7ÈM–iϘã³{;%Ô®OûjäÉ<¿c ÐlJÚÆ·wí‹Lª)ÄÅ«ìŽÚw†ÌL//Ž*«ªÍ[+ã­ñƒ‡FY]zÚÕvbuÕ®q;{ž2Øœ~Š•Z‹*ïÝJXШöÊ&(±šb°ŒßAN²+:ˆˆ¤J‡R]Ò}Þúö¡iO.©˜*ï5¸¨"˜—,U>È>&r†0Å¬ÐæØ†ƒÄ¨Êgž´퇛û»LÚ ÀnyÑ•ØÖ²«Ã².ƒæÊ—+.²õš»6ý“ßâ(—¾ÚyÐë^³ÆsÞÐ}„e›Qµ¶èvrv·XÜÓwйŸ2}ðÂàhïÞÂ-Òäû˜ñrÚj8ãŒæ¤q“À˜§³•Ź•TÛÏjÐhä(±è†¬Ó©˜4\¹÷ãPÈy®ÍµòªJFÏïµú…eF¤©=´d}f¼å5ÖˆA¯ßoÑšjî›B¼/k°ŽÑBõ'¡T%fs²u®d‰'¼ƒBáÇtÐÅQ5¹©ç!Ž}a—ª ø6Ò/½ØƒÛ]ùHØ{ ›•>wÃ|/¨Ä’(ÞÞ5?QüXÜæº^iý©TÕSÄF5íÎIå8èÝ9!Š?nÿj.¾{a0'ü¤ T ¶9W’ tÃá^qD;I8³Ð½oô’ÛÑ>µ³þ^£ªy$%Rˆ“ëݾñ{Ié¾#ÿ^ÈQ>tÖœêYÜ<½Ô²_?°³ùÄI´N§tx$ù,~ÂþŽAÖ40IE|wƒýœ‡Œs¡ŒÎí¬u^è“°Ê÷¼Æ5\¥’ÐL¤'n5Ò,›±,y;u&}Ò ³X¸åKãÞ–㋭Αr]çB$¢•Vo´¯ p¦odIðSZ 5îk~îýÙ<ž»þ²è¡dïÎjk_n[:èË~%,hÒHÓŽiëy"wë~vÑ&ùÈTôZÅë¯Ö¢4Ûü™¾ç¶àÝl’w÷b,J{cˆl¿7t+gæ4{ßoº½ ¦§¹›í·ÝׇS’ºt}Xí”;ωYl ò!\Ù1ýtûNê2<Êãé+8?A)LöaßAì‹.’X™êUñ-7^­¶Žœs¬M[ mÅ{ÖfÛ”·ÛÓ_:=вµ^ß>µ¶¼x•H>r©ß5ÿ^ÇÎ1‚{²®a&<Á„?žoŒWç7pàôé¼ôô¹g…JÖ@ªt ©Ù™ït5º¨ÿÖWÝ­§£kaY3A«æçÂïÕ^÷¼MÝmÝÔï®A”§¿2Þ:x|÷8/1±_Lf“ókîAªüyæ­Ú÷ÅòbLëþJ‘Òü‚¨Kí¶öŸ§Ëï‚ÏI¨›ýLtÌ)HÀZ¸î»<ç&g¦¼™ŸBÔÁ÷cž±±¿…‰KcÒPŒ qœ¾—víöŽËä=:¶ïãòkw¹ W¢¿Ô|Æ%™ yp˜¢“½Ì"êUnxßÈœø ó$U‰ÖËkáÞüíUÙ4Œ>ö£Íã–Ó JU­îU ò"Õ«Ü9kþê÷ŠìÎ#Lç¸6¢ÓÓ‡ôE~áJ(¹»BÇ’×ioÖ´Çäd\8¥Mm—´ë¢e®Gßv^?ž‡Ìm™(i ¼¬­5# ÈWDÆtP~5êïXÃw¤º¼õ*'1Y/Pêv Ó`æÑ so‚QVÊñ™åêýËcë¡$,ºûXøR©x? €J–­¡÷Ô<‡D¯õÛ.û_±gè uØIù0W?e:`0ì–D»ØoM²V£4îðËteë^o§Ó!MfBš©}¬>ÔàÔÉp.ì¼iª´ †eœb‰ ˆ,V³ûU¤ˆxtØÞ³“B b,Ëtô›Ô÷Õ†z~ö34ÊInÉ©ìP®ê\ãß14kš(“.âüì¡¶®®ÌçElŸQª<¶IóiŠÃ2Î ˆe7K¬l W•#4!UÇ·dH _:’¹ì4±9¿Õ)3üN‚K] b°Ò’ÉŒwGÈxÂïë^§ç’Jº#V÷xnÄ¡Þìû.NåçÑâ„¡ÆyégÞœ%»N¤1ßÈ݇$ç\˜ójJ§È£ï¸·ãç¥×y îñÖÈ%4±TÅž-2è÷GÝZAŸ-îûyD„æ´j W’ÆäI;¢‡]ëò›å…vžìâ ¶> N±øèP5–t¡‘n9õ‘‚¾˜vŸÂ~s‚*øâ”0çªÁ4ð5M~yC^Ò8PrEÝ­áỌ̃ɀ‰·_Ñ÷ÂdæùótÀ«‹4ýð ‹©iã&3IZìЉIY{î#Ö¹2¼-ÏS †"‘'aM1ãÑ™L-#­éÖŒÖ릗¬í LÛpq&9ʹX€qÞ8E'kœä1qI‹Öd:ŒÈâs¿<é¼H6JäK)yuE[þè@¯ SÔÏòlŸ°û2&]Sø>WOˆ&/õè´ižá²^lO‰äjËÅáÊ("Ü%î¹#L_hÇåi©>O.ɺñ£±iKûs€2±¸Us\­†Œx>&†WX=±ûSyc2cšF‹S_¿6ý¾ÜcñÚ=¡/‡EÊ™yƒ»ÏÓ_3,XÜâÍ´˜«óá·Kf}@©ýV ô„ÔÐPY•{Ÿa<¨õÑÇo/žÙc›CpÀù<+¡$ šdÄç+îïˆäB“—’bÜÄâpƒJ ÔýxÂÎKF©oQ¢#@ÿÙÌ4!骫‰GN¨zÌ$6’óµÖšª9?R®öÃó³V ,çÎ×€è>¹Àrç}/BѳÑ&ånÖ³EMWöyIo©x;¶kÚÅ„gS À&­á\§F«éw¦eç*§ëo!w}§û*| ªôcõùO{¾ð6ÖYí+ÊfXa/W]t’´'¸¯Ç§ùÔ6EÎðÑž¨)LXPìׯ¶[ ,Àz]òfª#_vÈÅ‘5v~Æ!èúô{Ð.Ê$§àKþYK~£CXþ•ú:q\òñëIË–pÂVò^½˜š‡(±êuO;æýk ŠV•+)WNòùG&ÉŒ]Áá#ü_q‰RÎå𗙊¸}°,Ù%WÉ|•6‚§LÎRp~:“Žc8]ÉS*n6 >­¡S±ãÛËŠW¬¼Hx2ªK¯2†‡¦$‰Ýíf¾0Ä6*“bû¢Åß­º×÷*L#Ÿ·•Z´!iüÆ£l¶.ã§}Êüª›°(øŸe¥ò­‹jø8ñù<>*l;¯©KNç”Jc†…fýðõKcAkþ+’E*;³ÏO^ar!Ø\~Q€æÂdmÇP–¼ WõóxÕ”–t‘d5=ÈÛcª†gEu¨ÞåVzm@z"¡Û£”\²¢’6³—‹ó½ ÷ûÊ™N¡¨UÇoP™â^ãÌøŒ'ÅzÆU‡¹ôËÔOŸ³É§=FÈ RÝšð I#è»¶²¹ôà\54ÄÉUdŽ¡Æ.Z2†cd`&$¿ô²¥)ŸOȈûêÀ YÚ‹}iežàdFP"´ÃÁûb6ï@oØžª®äÐzï²Ð‰äÔòƒ¼ËE|¯h(&ê险éb¹O„&îIcïGïÅ¢2´…5e‘y¯Ì¹›cyr^Dè"RóÙ ¤›’åü,š¾”îÔZƒ\ýe!Û˜ÙÚäÑø¹gÁ*¶ëlŽ_ËÏÝ‚¤ñ^•mý$~9¤yK6¢‹ï#ç÷=Rî±²u" 3YÁ½K’†Ùú×JnÿbcÅ¿ endstream endobj 2 0 obj << /Type /ObjStm /N 100 /First 824 /Length 4637 /Filter /FlateDecode >> stream xÚÝ[ks9výÎ_O)+)£ñ~ly7ñØñŒ³ó*{’Ì®K•¢¥–Ü»4©ðaí̇ýí{.Ð)‰¦HOU*%õ {νZ2Á,Ó‚9f‹,h&‹I¼h\†I'™ôLF<SÂ3%™Ò~¢S—f*¦ 3?XfƒcÊ1Ky(:F¦"“RªNj$Ô(ÑD=Ñ •8Í´C ¨C£¶à3H…c#šÈSƨ^•”‘Qmxa$ƒ²– TŒ‹ ÌB(Kéï¼aù<ŠGRåQ¼ÌK†öiñ¥¥Ã’xxÕ&ø‰ƒ¤² !ÚGÇœg:z‹2#a€“Ì(4ÅE<½ca \@Ç × qÎOüƒžH:•Dß ™µÅ ju½ŠdxB@DDƒî¦ú$.ÑIÞZŠÁ‰™P£§®Â膆W±hh¬1Â1¢ã •èi< Õ‘KA`)©ve¨ L@ëQªô¨^QEJ¤y€8 F½&•q¢1”OÓ«ºN¡DÌ ôŒB?KíÐfMs1b85MIt8F‡f¥Ñ(W£s¤±Jà ‚Á EEk'$¤~CVÒ|¡–+FÝe1+ ^4*¡$’ h êEÝè.´Y§\ó_+ê°`ìäÙ3Ö¼eÍ׋Ÿ¬yÉž¬Ú‹u·˜syÆþð‡É“¯Ûõº›_³·ëérÝ^žÝM¿y_² ™Þ´ÿ»é–íÇv¾^}&‡Ê9^ÏWëél6¥XÖ!°Ü¤÷eïóö9_..6TQÊúpjS¿XÌ×Ëîýf½XÞ-ú¦‡`oXóª[ŸSògÏ&ÍO¿Ü´¬ùqzÝNÊMmb˜šH8iÞ´«ÅfyÑ®H¥SÌwíe7ýjñ7öN ÂaP0Î'(`‰œÐ›œìù|¾@9ïl¨JeóÃå‡Ï1=´È™*=Î'[b¦b'ÍÛÍûu ÛÍÿ:i¾Z,/ÛeHž7ß4¯›ï¨qN-¸X³wR }ÆGNôá˜(9f&Ò=gû'Ê—ÃH.€@Õ +îÆ{î­¼_Œ»óïËÊb w‘ÅCÇ3HðyYÔ”e-88J9îÀLFG”Ü;8¿…Âò€VRs¢3Òb®˜½b蟯^¼2YêÕh&†P‰Šƒ\‰á8 û¼4%µ¤yþìYª¡yžªnÞ6ÿùæ5]O>¬×7¿kš‹éU÷‘¯V«Í ïÖÍ߯»Í¬[4«ÅÕúJÚ\ºÙªY|j—Ÿºö–Xœ-¾4.ͰC”1äKDÍ­{´ô×ËÅæfů‹ëYË/sÌ õñr*! cÐ9+¸"»ó?„žR=NÐ$½½½å×ó _,¯Çν™-Ö¹{O4`â²Ü÷°°Àe\€ÓÀÛ\;ýè.í%Ñx7¿ZÔ¢U¤ðóŸþÌHÞ’B諸ùq¹¸xÛb Àˆ/_±æ§öoë]Ú¡J+v©Ò„ÇPåØ &îö‚}p ¶ÒzÃÉl5˜nöؽ=@­þù‡÷¡™GÉ^òèý‚Dèƒýóõç:ÈïvµÇÙÖì± @ªà ±Ù‡˜¸Î’U8Ìù/­WÖ®WuZ>€»€á b(NN2z¾äpz¹;œ.7œ.ë©Ë*êrc\n‡Ë:ér¿8ÿèçÿeèaëq¢áH€¬Ð·œoM{Ì{ßÈ¿zòâ‡ÿôúû¯ùÍåÕŸ8ÿMóòHÖóñàŽÉgÉì‚äˆÁå°uMô\úGÌÁÓn¶^ü®§ÅË|Ù“'Xóö/ÚèÉsä‚–47˜±Êz2ÊŽU’m–¼^ÍNàG£ôØŽˆüH WÓOÓù|úaóS(DNËdÖ[)iíÓ+&“Hê#æ×î&uÞ¯³îý ¦=: ž³ Œ\`´KÑÂã­Ÿ›éÅ_ +~Ù¾ï¦ó$↜Ü÷³¶Á䜟n±“¹Æ8™³Ò%r-ñæýf¾Þ$Ûò¶›ýr @d/'ã»i¡×æpP¥•ðB¥ñCz¼KZY:Át jʃ8ʳ)æ³h>ƒ·Ïàí3xû>I<‰Ã\@Ålax°Ãœpˆöîv5¸Jíåè* 3äÛÝžV:£¦“`š98•ÖËßÌ™»øåú¶›ÿO——™Nté´'%z4<Â6×ÑqZ™³d8YýÝ#UàRX)è ah¸_Fr3é¯ß_·ëSéÞDÕÖ­ú<d s H~Õ¶|óiÊç³æ¢_¶WÍí‡E·Â­Y}XÜ~ócƒ¸éf¶æÓÕͿ޼~ù{÷O«vyÚËßßt§Ð¡äš2úÆ(GºkOh ßQØ¿#Ô.»‹Å)ë¡™B)5™Ú+åîl™Î¯ÛÙ®käá®ÁvÚÞö`D0ã!iÓGõXrýèCɅʬ–Ý(ROšï§ÛÄU¹Òï¦ëeG´Â…‚*Ãßø~žS}•¨‡)ö®}Lû?ç5M‘ä»"%çå+–Öµa¢/Wë¦KPÕ¤ùvÚ¤ô“æ¿»Ëõ‡£Í˜Dbÿ>¿X\ÒíʤJKůÒþL錄Ӓ–.H` »Söwñˆ?XÖ^݉ š'÷ïá?kxb\#ú´d¨y”*¿w4øPÁ¹(‚ƒÈ|Â|€òÁrª3§:¯Æpè ̦îêªÙSw¿3®™Ò~o8´ pQƒË’4%Öëf “Ä›T3…™t‰‰¾™Â½ˆaŒA91¢¯E‰’B6SÜh”ªHK‘´kæªÈ@‘é†r¤t£}­*£Ô™n†nTŽttóeSC¿É¦‘8}m”¢÷z©y¡_¾H ë-!jRðÃ{d¡_J±,‹¢‹²ÒDï´±«K@²hJ@³hKÀ°èJEûp´3<ÐÛ±Lc‹võ×ùÁÚ+îj¯,º+ïj®`OìäÕ«¹ÚÔš«Ì¨¹ÃúѨ¹ÖÝÑÜ~Ù‰š ³%õF¯…%”ߺ‹{ãêüuèþçþ’¶ËØ_îCõŠ=ur'¦ÚßK`‹†FÒI[ÔUC50j„ITØ ½±wð®;˜d‘Çj`èƒt$KŒh8òsÆÔæ¦ïƒzÓtáÇÍÒ…2]QX|I—‡ë³ÊýåKB…È ÛÇô€ º\Å€QDBº)ºü s‚zŠô÷Á(ÝTÂÏKÍ}0ŠøP¥IEÐMQ9*)V”›vÔè¥ó"rÀ+:m \¤ƒ rÀE*€}€ò¼¶ÄíCÀ1BÃ>T°nUëv(ÍÒé¡4Kç#`u„þ%@ç*AI0@»£uŠÚÓi…¡RG«.C¥ŽŽR •ÂA–j¨ÔSžŠY¤*Åìjh\ dƒéàÈ Èb¤#©Ê/t0CŒä$õH;é€OÅURâ¡¥r]˜GÐ1£B=‚‚¸ŠÖ¤.ä#P·ËI+š“FT<'¬ˆNš‘i¡^WT'©¸N[‘4®b;iF"¤úŠ,t<ÄYÒ‘" ‚$¯¶d FéIŒOMbFð¾ G3£ò[̨ 3ªaÒfTÃÌ™Qõó/ЧÃM<ͼÂ-ð„ª ¶]œïÎ{xZpòél6?S–ý7Qe¦7ZcO«Lt‚ÖÿR{FÎ"XÂybóä!ñd/iÅÓfA2Ä1¸Aq8>9{..ç¢s`ÜÊÔ<9”šRÁ¼B[*Ý1ÓIÚœ‰–ÃÖ»òTy•$7¨N 9n¥ê®KLIJ—º¡cë_³¨ù½¿§º`SO$ùí.Ç‚\§é¢£pc¬9Œ_q¬"ÜÄOÃîcW¤M×6ŸZM\®fPà JG‹½ÚãUŒÜŠ ù<òxRr‡gqiÂO\¦ú† TLpqŸÒÍí'Ѻ…º¤›é“AºÄ‰ðˆÓ ÐG‡0í,!ŒW:Yq¥³W:5r¥’• ¤ ‹&UaD:WÈ–Žtê¶tjf¨”ŽF$JušÓ1Ug*Ju¢bQW(²ùšR}M©¾¦T_(UКÙ ã°vtܤwóz_1¯šà©èA¼ÈaIœ&˜ ²"èaù|JGqƒ®Øºø‘˜vrtÓaÙ!@EûŠ­‹ÇHl]n¡šfÉ€1Ã%·Äù#ñ‚öºNÜã¢E¾ ägÖii)´Št-Ù*µãtúLWžañIL:ì_áMqIȼ( }ÜWú­öËTñËo|µ‹¦Š_Fxãë}4åë4ê4ê­4T #AמIØòEB½Ž¨B½Ž¨Šƒ–¼ˆ *á® á¢/6Dÿ~Tt"´y,¬Øð€¡‡ô+zpùGXѽ㟶½a¹«GmsîÏ¡DæM"óÈcýÚÿ˜´¾¯5¿aà8,®œ´OíU†¬r3Ò{Np2Ü]¦úâ¬~ÈÆôg¨¾òŒµíkÛ;V¶·µí­Em{kQÛÞZÔ¶·=óô ’­´HWž9•é+Ò•gNß ÇŠšõè™Ó*çè™C§´T÷kÑËvu±ìnÖ‹eV‡¬Co_ÿÇ‹?ý//¾{#iz6½^1SëËSC{Íi‹2xKÚô|uA§]DÊÓ›oÚîú‚šIµÐo nüøz=uÏç׳–¡ø·ëöã!Û¤ù¹Ïc´ÌzA*÷¤Yß.š_Ûåâ,KðªC>-³5PÐWÓU›NÞì6k«ùéÙÔa••P«3íÆ—C,önåtÊsEÇ<7¨ÊNš?v—«òMÿáHÿÁA5cçÎyž6ëY7§’’¬Ÿ'$ÖõrºdìÖè‘aâ9ûc£º„—í'¶Óo)ëÐòçl¥{³ö¿}O§zQ¶‹Ñ¥±UŒ© wóÅ!›»/Wªngú¦l¶Ôv¿Ì9£«µ¯cÙ6‡Ú|Û}ìÖ;©Îw…JñæŒyU•fÏX¦Úòeä?“Ùßú¢v;‰•)gë“ʼ”\K6ÔZ¥º#Ùî³}—í~»*åná»w³¤šþÒÏ endstream endobj 326 0 obj << /Author()/Title()/Subject(pippa lippa)/Creator(Emacs 24.3.1 \(Org mode 8.2.4\))/Producer(pdfTeX-1.40.14)/Keywords() /CreationDate (D:20150908122749+02'00') /ModDate (D:20150908122749+02'00') /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.5-1.40.14 (TeX Live 2013/Debian) kpathsea version 6.1.1) >> endobj 323 0 obj << /Type /ObjStm /N 3 /First 20 /Length 172 /Filter /FlateDecode >> stream xÚEŽÍ‚0„ï}Š=ÂAJ[H‰‘›¿A=Ò(±åàÛ[ªÄÓdg¿ÝF)„Àhqle i‚² á½l4<Ií¶´‹ð§dÖ áƒì¥±„W¨zu5üe|ðôôÔ¢6R  ¨_¡ ] /Length 928 /Filter /FlateDecode >> stream xÚ%Õ{tÏuÇñÏû·û¥m²™mÙ‘.[‘’˰¹nf³»ëÌN®å,$B¨´Qî N:’[èBrÊ5™Ë¡rÊ!¥B©Dk¬çëëŸÇù~¿Ÿßïó~>Ÿ×÷÷sιzŸs>gÖµÓUc1T˜ð‰ûE™ðþâ1Dˆ@ÑN A"X<&‰*ÂD¸¸CDˆH%ˆ;ECm.t‚×Zœ9é]ňF¢Pä‰XÑGôÝDÑ_ 0—Tç}·‰ˆ7ãÝ&ˆ»ÌÅÕz·I¢©H4—0Ú{–,RÌ¥V{·ÍÅÝ¢…h)î­Ä½âA‘*š™K»]÷>ÑA<$Z‹6âaÑV<"Ú‹4sínŸÇ£æ:^ræ:­€ô輺œ… ™­¡[€Ø Ý/@ãгz·…¬]}ò!§ôõ¦ï(:‰tÑÙ\î8Fóª¡_{ÈÏ‚â&ž‚¢o Xm”Ì„RuPzúëÙ€Q0p ÚƒoAY´¨ƒ¡¡ü"TDˆsð¸ÁðT¡j#ÇÀ¨e0zŒÙ OÆÃØ(q*5_åyxêŒû ÆŸ§ƒ`¢?<““’a²¾öls˜’ SÕó´ ðÜ+0}Ÿ·]E†È47ãÏ ‰ðbSñ7ÌZ/ *uPµªÂìÅ0g9¼ü=ÌÕyÌ«€ùU°@ çâ«°X³,Ñ¿z–ªÉea¹x}#¼,TòÍXX±Þº+àítX•ïŒ‡Õ `M%¬­uÛaýlxWÏ6¼ aS¼—ï+HL‚×Âæ9°e5|4¶N‡µ¬mŠÙ'aði6l׊v¨äÎ Ø5 v†=ŠÅÞpo'»‹¢§¹Ï‹Ø·j´òjã ôÐ/pX§u¤%|¡é¿|¾ÒY]ÇVÁq5tB¹:9Ní€ÓêùkäÌp8» ¾u^ñÞ"Kd›ûNA?§`ž×†]P—Šò%þ¤ü¬U^N‚+[àªê×ðÛQø=þðƒ?µkׇÁ_cá†&¸YãÕÍ}E®¹Z ü“u¥ð¯fùOÑ»5êy“ͱJ3ÎÍ|¹àGäÍŸZ/Ž’ âP,x„. Ý a¤ÉÂyý,"Þ«ÛO䋳H"eQ²úpÃV=b®C¬ 5®‡8^:‹_ $Ìš0K,‡$µ‘L&-åGoú"Q,JÌø-ÓU©(ÊÅ0QÁ?ˆêEë¿$ӄϬ`ÏŠSÝÿîÛøU endstream endobj startxref 87598 %%EOF gbutils-5.7.1/doc/gbget.pdf0000644000175000017500000020716212447776433012477 00000000000000%PDF-1.5 %ÐÔÅØ 15 0 obj << /Length 1552 /Filter /FlateDecode >> stream xÚ…WKÛ6¾çWéE"V¤H‰ÚšG ÷ê[’-Ó¶°²äŠÔn6¿>3Êk/„ö²&G3Ãy~3ûnóê×?¹^ñŠ ®äj³_ U²2¯We^±R–«Ínõ%9lÖ§YÁ‹ÄO~[Ó¥ß6ƒl½âœÕJ ”­™’z•9h«Iò¯vêÚDE™¼¼7?~¤OZ_e5+tµÊ„dEŸú`{JE•lÓ þÚ‘dE…boâ%ç’Þ—rÅAX–áýŒÃÓu%V™”LñŠ4¾ú´à‰·ð“'ÞEIµâÀœ×%ó[#xšÕ"OÖ !/)O‚Énj| *³BƒÒ!j+¯µñ\2Q õ*z ¯ ©W|æã”B &…ŒE'Yôñ»9;ë 6e.j /„œ)$㢸8ÃyNÞ€Å#ºÁ¯Ü(Ëg7ªk=´ÔbÉ ~ãn63‹eÌüæhÓL ž¸3e²Áª ”É·]ëS¡“§¥ðÕBýï³…`Õs[‡ºódÂl9»£8~Ñ Å´ÆQ¶Èg «®ÅSCÔ“éÛóÔ Ú:ìéËÿ¼_%kÊŠÕµFç¡ê£Ï;ã FW%_óBBže²öDõæ½Æüáõ†—ÎÃxó©k]ÀÔýnº4`(D×›¶oûÃüÌ|ˆšf›dbú‘ìw?š&‹åÚƒf8ˆ//áõÞÒé9‡ø¸ßÏfôŽŽ¦"‡§ÖE|8ø/©ðóhÝÔùk‘EèÌ7çÂRcúk+¹¥l ò~A: ÍyÉ_0­?Ÿ!BŒhA™E ÕÆà\»í¢N°£wX+¡ ‹h/Y]T·áúèÀ ˆûv®§ÝSª „+¡59(ª2™~³) ªä Ía}hw¡¥bˆ3( –â ,¥6Ñ7(S!R_ú$æ‚ ÉRø ü¡|5©Êre©‘´fªšÕO†D£«KE„ªZ0ÎÅm°L ѪÌc¢«=;Œæ„Koº§–.Ö4°#Ý\ìLL{!Ú‹—Ø‚ÈÓÆ_?½›5îphp«i†q‡,<9ÐÛØôAοY*ñ¹ú©*úX(ç±¥F"zŒ&Âÿ@ç׌‘}˜üyòÿQ³— ‰À_–/ò¦®ò–?çSÞÓ¦&g-G㢹ǹ/†® ÕõH¸\õ§Ñ.¡. Z†F& VË8<ömg{s²_¶ÝÐÜûš«³3t´ÈÁ¾‡GGGøÄΡÊÞ.Ù;‡)¨—¤þ:×Þ-ÍÆì†=ZCȇö,= rèy=nÄ(yûHí!Âeõ§rÀz,§uÀ¼5:FŒ¨—¬og¶¡z†©Ž6†·ˆûÅcº¾¼»†’ýŽæ"ØXÊäÐ>`.mOÔÝŒ6Þda’áSð=Ý=‰´½•t¦ À\øzK/ V‚‰:b3cäw@>ÀièÈ Qé[šã, ¸¥à1ü= ¨OötöW|ˆŽŽoBZºÏàÀÃÄCt äý¬æ`´}uÂãéxÊ–šþÜ aìÔ/FáŒÃ‡Y¥’OƒoK¼þh‚”(h/„.d)¸Wt#Ž¥CÛÇQ âü“!Æ×¿¼^²Ï=ÐqR1tÏ5÷á3Õå§Ï"4ÃDeBWê{#\a„ñ#Œ!taªçž8Oã<õ,[¬gQ… ö¦ž/]¿Ø|’i¥çZõ¦dž¦Š:t] Ù§vÄ7P:zh®jqqÏ€ ˆlÆ-a–ótyY ·û;ÛïîÜ}{^²²Ò°¨^øY\¸…fEYݬŸì*ã!{Lñ‡ ÚtS+Ü©E4–˜ÖNÊKX=€¾‡¨û4¶oh\¨´’çð¯ÎÞÐ6<í²ƒ%‡ú2œù]Æïø"’h–«gìc6¼Ñuqr×5“9¹í…àcåK‘¬ãBÿó‚X¾µóxŒ(*ÈÛ°ž dÄÑÑÎHjvD 3;P(†£›72˜ÖvŒƒSÂ?€«¬fZë«ÿ‚^}ܼú èļ\ endstream endobj 31 0 obj << /Length 1149 /Filter /FlateDecode >> stream xÚVKÛ6¾ï¯ðQVŒø%-Ši“í!§=õqàJ´-D–\QÞG~}gÈ¡×Úr‹ž8"¿áÌ|ó ~¾¿ùðU•^°¦høæ~·á¢dUSotÉ™(ëÍ}·ù#›§­Ù“Ëg3îíö¯ûß>|åúZM+VJ¾)~9Øm.š2 x/N;Ú²ŸûÙvô5mE 7ßnsYÈÌ`»ÊlÛÿYHAÆ“je’×%+‹*Ú|°û~¼³cwç¾÷§”UÍ!"žms%‹ì›ÝçÞ€}Ît]mr.Y©š€2KÿˆB–Çm©33œ­ ßföUÖNçq úŒ-Çèxv PÏ ž€‹h[ñì³Ý™ó°„í>¤%«Å%H~—ó;ž NVL62âzfɆ†pdš…hE%áƒ-ƒÒ¯à³„$8|rá+Äç³5]ØêǸˆ›¥;¦¹³3£(WEö8«`%'w~šNK?îã;õ&+} Ý©UfÂ2ôI­¥/:Üqý¸,Úe±sÉDøX†Ôú³gCFûÝ ]rn[ëÜkA T¸‹T1^Èuýì¦ùh¢ äq ,!ÇádñtúÈR@ˆ¬3‹¡\AÜRj` žØ¹?ó,\3Qþ^ƒ¢tð¬…:P8wÖ%3À5kdE6µqŠyt¦¸t‘ÿ䃙…³D× ò¹N› ·„„kâ*e®aB«h †Bi {c4äÓ>¯`¶†óqÌŸzgo©hmwn¡.µ|\gƒ/U[á’¤ïÁ¥U­)×aÜðKç.æ{,›ëvòIÁ)A¾Å†¶€ŸƒC—NZ°°"±KæL@·ÔÿvE•”-®h aig;¶ön›ëº€xpòv¹V 2ËnžŽ(™òU½ _Ð\±º)ß4Š×ÃÐ%°qD»´ÿc^P䟓‘—¬€–¡Èg{ôSðgXl¾À46Òh]LþˆˆÅôã¥j ¸µÒGâ4Ò5ß>}#ŸÃÔ˜_ÒuüYÏwÚ¬iÔ9þÚfÖĆ ÙaM‹èÃu?¼×†heÅãïIw$+*þêô¾ëuue ¿b²QFopýáZ¬ðÙâ+/Mƒppãú6>Qkú‰€ÃJŸ#ºþ±ïèø_ÈäÁÆ …XW˜[@ÝÌ4f;ûØûÁL¼(Ô‘J‹U}IØÓô$ UyQd_žÍñ4Ä1º¦©UP¡Ä~SJg;û„Ƴ¨ì7ZŸ8€ìp ’O!¬g #<˜Þm:óaÿ°·KÝ •ê3>ø@Û/0ú›ù ΑÁ¦~1Š5M‹u ƒaš OÕ¬â—nzê—Ûq¶›†!ü Pß¼öõEʃœî]=>¼Øæ%¯2áWÉÂgö·œŠŠ'Q‚P‚PâEÙâ’@’@2y•"”"”Š(U0­*B•„* U¦ jié¤ÁŠP¡ª$ª&TM¨:‰jÕªIöz¥™†­þ=9üÔSõòæËýÍ?Æ` endstream endobj 35 0 obj << /Length 1184 /Filter /FlateDecode >> stream xÚ­W;sÛ8îý+4¹ÂäÄBˆ.3s™ÉW©¹IRP$$qL‘:Œ­ùí·À‚”Q§87»à¾¾oá÷«»wh¼ É¢Œ.V›Œ$\.bI “ébU.>Q$\Æœ&dið²$hÃ%ÏdPæ&ÇÕºœVåI?„KAi Õ!ïr£J¯dM¸¾¸k]çÍ.ëªQÃ*/¬ÒOöy©pÕnü=»N©ðËê¯Å’Æ$ã ür"E†ÎmÝï º© òÆ:’Š@â¾kÚ†Ñ`µ«¼â爋Z¡®Þµ}]ú êNååÔK¥7¨”™óåÝ1É+K%Q¶ˆÐ©íº7U­QsZÁI,å ¨Û¾+|tœe$І'ñ¼¬:U˜¶;†) Š”Šà#$FHé\Eèþppµi;ƒG›¶ÃÅ·ºZ£Ò.×(Z;U¥”oÚÞ&Íž´^t´IÇPªÚ¨½-Vš¸4 ß¶NGÓb¨—|¨•ÍgîKI  qàçÙÊèp7*yƒ õo_} áÓy ~¶©¨ßk…*.ZgÔîC@À4è”Ö®õ@ÑWt®6YDK‡”¥ ¾&Ûosõ‰‰N…$¾4\9 õol-ô©ÚàïYtÔÀ€•QàòãœscO3Abî«þG¸”4.Ú*c—qp?xý‰~ùɈ>2ø¡÷sÌÝhm0ƒ" ¾ß· ä—4m·Ïk—sØu¶K,(™¥‡®5Ћ¸ï*Z¬—-[øS]k:hiÓUÍ×› xÎz§êÚ7ÅË!otÕ66Ò±{’1¿íÚäÐ3I¦ÁS¨¨ýSo#¸‡F@tì\4ÓÈ”ÐKzÄ]š°&üÒ„ÏšŒ¡ˆK 1±ø™v(Q&~:mpc±¶™‘„‘eçrM#Y:æ¬9çœáàíI)^ NÈ©vöL§Îì÷#IÒ8®|\Ke'T»Øßý‡Ô&ïkó€]É2IhƧ•Ù§íÍ¡7Ø€•ç¹Ê³˜.*ƒÊR ´iMn ‹ÐhÖ,Ø·}¶‘›âªYæDšCËÇÍàpt^žƒdz,òr¦£¢ßACÌÑÐ’=>°Gþ**šL€ëžõˆ‘øÇöç碌Á{çÒ$ùEÄ–a+°ŒŽ »cHkNÎP`yÓn9nmºª¦¨ûR•HhöÐ"À)—Ö¹m'òï'‡A+_:³†Z—׉տälÞÄ”äGH±ë¢g‚ÁT4UáÛÚìrßêþÃÚ¾†® ÄûÎ{Ø;¤CYw>oõR о0ô$"L°iè{•7Xo  ðfX|(ùÐNŸ¦|sxÿØ÷ØÏ˜§µnQt€y‡÷czÓóÌÁ{$ K… ûüµ-ØÂPµ²Ö½eA†»ÿNËÅ0Ä„QO¯¥±-U\á“À½·Ÿðü¹2»Yø±HÀôµŒðøÊ‡É©I¶¾3ôtÔÿ,5P"/q.oŒßW³ ½Í&;½´Ho|$»4ÉþŸ²’˜Ä * iêÿ¯ãVóîÏÕÝúÍk› endstream endobj 39 0 obj << /Length 902 /Filter /FlateDecode >> stream xÚ­VKoÛ8¾çWè!±|ˆ¤”ã.6À.z«omŠMÛlÑèu÷ßïCÙñJ©Ò`sˆ‡Cò›×7Cý¶¼ûôÄõ‚3Z±Š/–›/5R-´âT¨r±\/¾×eß—}z*Ê›£’ ½`xÄfŠ“zµËr©ñ»¦Ë#k\vaÓäÖžá`Ž(n¤€û6œœwnoQ÷Édtä#çŒÓJ”‹\ˆàR„ú劲}ÞZDMî½í=]×þSìáñQÂ/¿ŸrŠkZIƒpªB<ïÐ#ˆÍDIþÿ^qh€SÿìGƃIIÄX%_ª2“C¢•@äDŽAä$HqqEQôEÏ Tc”jŒRÝ ¼%×h•hBÓ†¬7¾©÷¨¨Û5 í =f9”ÄõpеýõªÔJ—ý¾Y%ÐÛU@Vu¸”лt¤³Xä®·ëP™"ú’q©ñ‹ê¬Üþtˆ†¯Ð4‘0‰Ë‚t.`Ó6Ú€ýc. C¼]£"zÎ_ˆkÛÑ,/ Až²R&nô¾nW“\d·©k ùÈ©-¶ :ÙÏöX#ƬcÖˆîñ1 £ð”÷´äÏÒ’‚ü2”.0³Ð†¬Ǥí,–:(5ñ]Ýö×êÄ×prU·(<; Ì—¸¨Ç}aÅß]Ú]c;×úÄœ– —Æ 3¬uÍ©@r) -yq›¤0“ ^`H ä3L_ÉWv!ßC f¢{Ð2˜“ÑT\b\€óŒ]‡ ÈŠª½·mŒ-‹-”Ÿ›~l¨MfmN•ïA;°MI¦®) ‹ãÉãv½ñ¶Cö&èŽÐl;õ¸rmºÓ$ÄzœC[ˆl„à¢dÙ»vDÎ^ø¡È Îoñæ05þãu ;Õ:Äêòºn¦Ê¥¨–—ªóe…Á”äŸ(wÂæÃ$Ü0$-n6÷gA…YÁA Çh“^**Äåùö³nB%UÉÈgëÑBo-šïÝ!µ?êÃqo{ŠcVHC @ºÉÛïÐ. ß ¼ùÏ€¯ü{yâ¿λ&ñ0ßwLÀÿgv½g޾%¾ß)ŒîJ$X ‘à‰º´íÍç¼P'Úì­ŸDo/Îæ~ÈÁk‰œKÑľ˜¹/^¹Ÿ^û¹ ÍæÞhªA•‹Š–eúÔ.ÂÉ»?–wÿ ˜Ä endstream endobj 43 0 obj << /Length 975 /Filter /FlateDecode >> stream xÚ½VßÛ6 ~¿¿"ÃPœÕªõËŽû¸a‡nÏykû ‹åÄX"¶Ò»ë_?R”“¸g´0,/’(’&?~¤òëæîݯV¼dMÙðÕ¦[q%X-õªÒœ ½^mÚÕÇÌy!%ÏÂ`\^ðl<å…¨3?Z”‹¬ùçÍŸïÔÌUÁ+ÖÈzUÍt©ÉÕÏy¡yíw6à¶ÊîƒkMøÈ?*uùV¼—°òpNWe²WdÏ/ñg)9„RJ "q%.™V ™ˆ×&â&òµ‰üÆäp É>ôÎ/ùZfo©¦ÌÂñCØêuæÏát´ïüp4qßd[D…ózÒÞžÇàýWÛ’ÖyìÝ.9:…Þ»q©¢)™Œ~1vÍTyÑ1®]ôÄYuU*ì¢#¨E­&¡-¤Ö¬Rs€7ˆ‰Ï UÖYwFŒâÖ>ŸØ‡ °²H0”O ÆÃK.;:8‹xà.x2ûËùÈùtqB×ã‹Cq0Ïtá»d¶·KÙJ¡ØZŠ)•ÓлÐ-¥\Lš³ü¶þxD %uÖO{´ãv:Z)@©²1€Òõo´úÇÁ ½Y^Ôšg<:yÂLìÜÚ˜¥*~“ÇzžðRKy„—S®‘€ ™@@à¤è»T<Õ°ôfÙMÄUBYqs!+¬ûXTÔÀ8÷0,’âS]€;C ù ?•R›f˛쎄½ƒ5-|ph¾í¶=X«íRC; RúE dP„‡Ó`;‹NK Eèæ9öÞǼ|OŸ ½¹»Î'óÄÌÄø¨ …ͯëùg÷•¿ÄJ’ Œ^Σ½M!Í’˜.[ê…%ÎjÁ”üQ«Y› ­©è5¹ç‘Ö™9œ»¢æLñ GÞ$Žp¹fµóAý¯}¼‡€£É=-oºå€³8‡K2âb:¾†LÌUÅ’êeâÏuå­îwG} ëiߦ×Ð’~h#¯d*-ˆ°èuFK7Æ-u-‡X«k×Âì±Ø¶;ð·¬~~éÜéU‘â:*ñGåBQל;ÿGÚ´Óh‘¬iþkÖ´sÖè‰5tÍÅâ?„t+Ä25èVŠúîGèÐéGÜÁãmF‹S ª`¦¾Ž#¼¦.+}ó܃…¡G f°äÎç<ë&ÏI†³ÛÆY4¾‡qØTvècðg׎¤hhqÞ©kSà·©öôFÚœ¸K|­l,tK¯kâ8û†ñÿ¡5à`€º]"zÝÔ?ÅÏóºbU|WªŠñº¦ïk¼»û}s÷7R;—¿ endstream endobj 45 0 obj << /Length 293 /Filter /FlateDecode >> stream xÚuÑÁJÃ@à)9ö’(ͼ@MBšAX¨ÌA¨'âI= * 9%y´ØY–ùg“ðì<Æ—1.£ LV˜®ð9Rï*Ii;Ä,>Ôž^Õ:WÁ=&© n¨ ‚ü??¾^T°Þ^a¤‚ >D>ª|ƒ@ËjF†éaGÿ™—Z𯟩A~ Ÿ‡_” _f#½ewšÙžî4Žà ´Ì„–v w ®¯µM7ÿàT§ö%н‡ã5‡”£°DyDï±Ñ´M1¥²™Jjþ‡é©ïK>í˜lBayã+„ŽÞÃXZ™Çw#TµŒÅ— Èx¦´‚;¥áÿÜRzBïÕc|û2–n!p§´ŠBÐft¨ë\Ý©Öû‹Õ endstream endobj 46 0 obj << /Length 219 /Filter /FlateDecode >> stream xÚMͽŠÂPàR¦ñ2/°&Á`ÜFÁ0ÅÂnµ…X©¥ ¢`!æZùZW|‘+>€m,‚ÙIDLóÁsçLجìó'Fú< hIH†>‡Á3™Ì©“÷ˈ¼¡ŒÉ‹¿x½ÚÌÈë~÷XÞ}Iјâ>{V®çtVpÕM£ƒ\Ë<ÑÈ(뎎²ÓŽ‘¼VRüt5’‚½D²Xlã•!‡”=*Ø%i+«à”˜m&W»'®I¥Ö˜6’‚¿‹q­ëE׎‡«²sé• mÐ ¦ú]‰ endstream endobj 47 0 obj << /Length 191 /Filter /FlateDecode >> stream xÚmÎ= ÂP ð,dðÝÀæÚ¾ú Ò‚V°ƒ “ƒ8©£ƒ¢àPZÖ£ôot(jŠƒ‹Ã/䃄=4ñ@³ Ù|Ðt¦Q(Í€þNö'šfäox’¿6ùÙ’¯—Û‘üéjÆR§¼Õì(Kð*àmѱ9TÕ‡‡b(ä’5('ÊŽEéZnBÕ·­äñS¶ðó¯?š¯®è@_LÄ=l§öàVê¡$pä­ö0Í3ZÓ!æ:p endstream endobj 48 0 obj << /Length 255 /Filter /FlateDecode >> stream xÚMбNÃ0à‹2Dº%à{H-BK+•"‘ &ÄŒH€@b@M™y%󼂫>‘XPÍo'mìáîì»_.«]-#9”-ûZª=¹ÑüÀ¥/ޤ*»ÎõOk..¤Ô\œ ÌE}*OÏ·\LÏŽÕ™\âÍ×3!œÉ(×I[©‰œG®#ÿ“ØßÁ4¶Ìb­ŸîMÜÌ>¿ Z|Ä#güêÆøEcC¶â!Ì!Qn¼ÊøàhÍ#¼é Á7úà.¸Á7¦½¸–¶ƒYï Ìí=½ö*ÛbÑÄZSüYZRÉji([!³#>mLÄÇ5Ÿó?¸IuÎ endstream endobj 49 0 obj << /Length 194 /Filter /FlateDecode >> stream xÚuÎ= Â@à·¤ B. f. Ù%i„`À0… •…X©¥…¢BÌ-GÉR¦®#V2óïM3‰%cÖl4 '²š†.kþŒ4ßÓáLÓœ¢-Çš¢¥ôå+¾]ï'ЦëKžóΰÞS>g ”«áW BxŠ©j‘z R_5A…"™E›YÕ”Ö¯K„U©J×Â9‹ð£û¯'ú"}…hžPõ^"°ðmOÞ‚h‘Ó†Þq«Dà endstream endobj 50 0 obj << /Length 246 /Filter /FlateDecode >> stream xÚEÐÁJÄ0à 9æ`ßÀÎ h¡µ°®`Âzò žÔ£EoËî>Úú&}„xë¡Dÿ´[–Àw˜Ì âݹ¯¥/g®_Š/äÕñ—ª…\Ô‡«—w^´l¥¬ØÞ¡Î¶½—¯Ïï7¶‹Õ8¶KyrR> stream xÚEбJÄ@€á )Üo^@7Á%—Ê@<áR^uÅq•Z ž(X%y´}”¥„2ºKɬ){ ÷Oh’“™Ë—·O,+Ô{2 ê-_£®^èçû÷uùúD)ê xÑ« A4ÀìW¸Ã3fn® endstream endobj 52 0 obj << /Length 199 /Filter /FlateDecode >> stream xÚ32×33W0P0WÐ5T06P03PH1ä*ä22 ¹†™ä\.'O.ýp##.} 0—¾§¯BIQi*—¾S€³ï¢m¨`Ëåé¢ÀÀPÀÀø†~€Ã"A ãæþvö>örìdØØð°£ ùò @ôÁˆ€¨ž¡ŽáÂ[È D€È‚ˆXð?¨à?PFø€Pãþf j`og`jÿÁÀåêÉÈ@âB© endstream endobj 53 0 obj << /Length 173 /Filter /FlateDecode >> stream xÚÌ= Â@à‹Àæbæº?‘˜BbSZYˆ•Z * !æh%GHi¢;»÷UïÁÓáHF$iBCE:¦(¤£Â+jIœhì–Ó Å–´D±45ŠlE÷Ûã„"YÏI¡Hi§Hî1K ¼ºû5*|çͧd3ØË*¬ÖjXÇù°®S3ϩؿ÷VëCÛƒÆ@Ógy ù¦Ìg ¸Èpƒ?¬eHn endstream endobj 54 0 obj << /Length 272 /Filter /FlateDecode >> stream xÚ]ϽJÄ@àR L‘y¹/ I0nRHë ¦´²+µVQ°$â‹o22Ep½ùaÕtßœ9—ËMÓ„"Jé ¦ô˜’ˆîcù$W)‡%ñôs÷(×¥ ¯i•Êðœc–ôòüú Ãõå)ñ{C71E·²ÜÓ¢hP¢wvÖݨ\|uê³…§úÀéhï:ø:CµEÝ¢²ŒŒQO°¨ ã­0¨Æöã‚@5 e|ÃaŒ9¯˜ò¸àvsÓmç|.ˆvn ;ç{¨\Pfnjc§‚nþ›Å‡Ã9,  r·Q{žE.ð|kî Fà9ߪx5à®…<+å•ü!Dƒº endstream endobj 55 0 obj << /Length 228 /Filter /FlateDecode >> stream xÚMϱJAàY®X˜"ûÁл ’B Ä^ÐÊBR%–B 1—7[ßdaË+Í¿¹ƒ¤ùàŸvaÆÅÕ¤”B&rYÊx$®MÉo솅¸²kÖ¯<¯8ç8¿Ç˜ój)ïŸ/œÏny!ÏøhÅÕBT¤YMºUÿÌþmh` µta‡ôMC;¥º¶N{üšy¸í­ŒðâŽð⹪M•jR<7kR•Å;ugH• [ ?i}Ä‚­z÷G•7žlVŸÔxBf€eœIš'ó]Å|ôà[ñ endstream endobj 56 0 obj << /Length 201 /Filter /FlateDecode >> stream xÚMο ‚Pð# ·ø÷{RI„+È!¨©!šª±¡¨-ÒGóQ|GÉŽVàò»Üsÿ|''¾z:Ó±¯A¨§'_®2 zøß“ãE’TÜNCqWŒÅM×z¿=Îâ&›¹r¿Ð=?:HºPÀÚUOÀ) £œÄpr¼ ]X5ìrT»§$©øüGœpʬLÙvãÞCâüO†žÊ" «§&œq"L×ǰ ËE`/^·Ú Ý€,SÙÊGåOt endstream endobj 57 0 obj << /Length 250 /Filter /FlateDecode >> stream xÚMÏ1JÄ@à?LxM. ;sÍ&KŠ%ë ¦´²+µT¶$ñ –9Ê!eŠõM6&ÃÀW¼ÞOo.µæwždJo”^«ç„ÞI§ã4ͦèé•vÅ÷J§_óœââF}~|½P¼»½T Å{õÀUTì„ : êÂX}¯¢gù6l°Íl–[aq0Î7Óˆ–­ƒmÖ²l9)ºÀ³@¿ôO¶îó,GÑI .ŸåH6ÿZÈÚij8«Ñr´䤻E¶ÜÁòÌ/ó#ÁF½“/[Ÿ-=Ï~1ðí…gutÅGOº*èŽþ1sÑ endstream endobj 58 0 obj << /Length 189 /Filter /FlateDecode >> stream xÚUÍ1 Â0à”…7˜ ó. Ii¨ÄB­`A'qRG¡Š‚“öh=JŽÑ¡TÛè’åƒÿþ8 ‰'8ŠPJ”\ NºR Œ~—Ãr|‹q|ÙÕÀÕ o×û x¾žc— ÜE(ö  ô iIÐøŸŠÎ¨¯,ôô¥Y˜)3T§L÷ÔT?²Ú¯Ê¬"ä!ÄX^äéÒö4žåíà[ŒC`ÑÔR;0KÕ¿ô°P°/—˜?£ endstream endobj 59 0 obj << /Length 196 /Filter /FlateDecode >> stream xÚ-Î1 Â@пXS¨d. É )Ä"*˜BÐÊB¬ÔRPQ°$GËQr„-Sˆë¬Êðf–ùl“„CŽy 9JxòAÓ…"-ËGú÷²?QšQ°áHS°5Ù’o×û‘‚t5e™g¼•›e3ŠÊÖhW <Œ¥úÂÃLDî(ƒç_O5€z ëNe°Ö)QØ ¾Ë( Э?e&"L!ý U;/Ñ U´Ë³x ûý„æ#Ñ4ÏhMH‘H; endstream endobj 60 0 obj << /Length 185 /Filter /FlateDecode >> stream xÚ•Ï1 Â@Ð )ÓäBæºÙè’„@Tp A+ ±RKAEÁJ÷h9JŽÒBŒ£ëÀâ5à&É{yJ1eÔ•ÔJi+ñˆ‰â0&•ÙËf¥F±¤D¡˜rŒBÏè|ºìP”óIcZIŠ×¨Ç^à7S[¡SY‘c¬Â¯{ÛšÖ¸qöúyZžó°|§ùg¾ÃÓVa†,ãé+;°†ÕPð?‘ÏaÈ]ŸMîʼnƾ”ˆJ† endstream endobj 61 0 obj << /Length 230 /Filter /FlateDecode >> stream xÚEÎÁJÃ@àÙÚ(ɼ€&…Fµ‚9zò ž¬GAEÁCi|ßHöQò9î¡Tg7Úîá[f†ùÛ[®xÆG5Û¶/kz![K³bùÒäá‰æ•·Ò ò2Ù]ñÛëû#•óës–zÁw²sOÝ‚±‚<õ4Ð_[/æÆ«-¦ÉÓÌ«€æ_ðQDŸ §‡?‡Ö™(Dˆ=°I®‘íÝ!óðÑÂCî`ë áígŒmõÁͨ‰® öî²äjPÑ ¿§@0gâ*Ϲ'dr•éuºèè†~½ Z endstream endobj 62 0 obj << /Length 254 /Filter /FlateDecode >> stream xÚeÏÁJÃ@àÙÚ(ͼ€&©¶P,Ô æ Ø“ñ¤…( =”vßÀG諬o’GÈ1‡8I(¸‡ùØvø7žÏÆòŸE|yÁ“_#ú 8–fÈ“¨›¼¼Ó2¡à‘㘂;iSÜó×ç÷ˇ–ûŠŸ"Ÿ)Y1¶“ªº)¥þ±ªP¥1-ã„jdœ†BŽjîµL[¶‚6¾3æ©oOÈÖkç0Å‘}ǾæÁ"EÕQö,,r%™*þ¡2]ÈÕ$Øõè#öƒ&kÏ*WF_Õ…>H”æ`SàÚ3¿à—ºvh^ìºMhM”]km endstream endobj 63 0 obj << /Length 225 /Filter /FlateDecode >> stream xÚeÏÁJÄ0à¿ä˜ÃæÊ&/ Ý@X* ë ö èiâI÷(TQè©›GË£ärÌa)Ž]TÔËóÿ8{î.ÌÊ8sf[·2O–^ÈY9¶§Íã3m:ªvPu=Ûݘ·×÷=U›ÛKÃóÖÜóÍu[ETVG iJ ôËZQ÷-ЍSëEPñá?•^:”P,°€ö_.Ñ~ ´øñ0;þsš=þµ8™QÿVd ³=Jî0²£LEÄÄL* i‘¥ÇPüÊP7 ÷H:2ÈÐUGwôˆ‹I< endstream endobj 64 0 obj << /Length 258 /Filter /FlateDecode >> stream xÚUÐÁJÃ@à?ìaaöJw^@“hµ‚9öÔƒxR‚Š‚‡ÒîøJy”ø9®°´Î¦)èå[˜ÝýgvóìdZrÂS>NKÎÏ8Oø1¥WÊ ©&|Z[Ï4«)^rVP|-uŠë~ûx¢xv{É)Ås¾K9¹§zÎXˆv@¡¾,¼Ö‘nà'º‰üXpç#¡PîÓ4ª{1v «¬ [ôlkŒzl~‘Ä€ƒ±*«¨î›Àú?Û€GÔID䔜VÆÕ ¿¨žî€îiaúñ¬L1`¬t1ì yº,‚Ä‘\«˜È1è]øœIW5-èËKk` endstream endobj 68 0 obj << /Length 131 /Filter /FlateDecode >> stream xÚ35Õ32V0P0W05R0±P03PH1ä*ä21PA ˆDr.—“'—~¸‚‰—¾‡‚—¾§¯BIQi*—¾S€³‚!—¾‹B´¡‚A,—§‹ã?&öÿØùÿÿaà“ÿÿÿ@óÿÿ? ìÿ ÿàÀÀPßÀåêÉÈtÒ#õ endstream endobj 69 0 obj << /Length 198 /Filter /FlateDecode >> stream xÚ± Â0Eoq(¼¥PßhÒ‹…âP+ØAÐÉAœÔQPQèàÐOë§ô}i,:IΔäÝÜ“h4 bÖœð 9ÒyЙBÍf%ÝÑîHYAjÍ¡&5—}RÅ‚¯—ÛT¶œr@*çMÀzKE΀N@§F¯‚ x€¤-%ð08¡W\¡‚gú-21é¹û’ôü‹òWZúñœßu2¶•Ôsëw[ÛÜZ˜,ëå··EV”E\ôÍ'hš´¢búD[ endstream endobj 70 0 obj << /Length 199 /Filter /FlateDecode >> stream xÚO ‚@‡âBx ½@Ø»@N(Ñ rÔªE´ª–AEAKæQ<‚Gh|*A´ŠùVóþÌ÷›I4c8â‘Ö¬cŽ>…t#ps¦}éx¡4'µcZ™{Rùš÷ç™TºYpH*ã}ÈÁòŒK ®@ ð§€]6X¦V /a&Ì ¦Û+ÌŒSv4ÃÕ7f—UÿEõc›]~žsŠÎÁë­|‘lm[sIaU].Gz]‰œH|Ô|-sÚÒcÕL endstream endobj 71 0 obj << /Length 179 /Filter /FlateDecode >> stream xÚ37Ð3²T0P0WÐ5R03V0±PH1ä*ä25 (˜Be’s¹œ<¹ôÃLM¹ô=€Â\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. À BÉA(ö`Šñ„k¡ø!3D’*i•l€hÁn^Šy5øÌ³A1«yrÈ‚P%P 6ȆAæG¶ê¨“PLbD1É·I6(&À4‰êl.WO®@.’Ñ,ì endstream endobj 72 0 obj << /Length 110 /Filter /FlateDecode >> stream xÚ32Õ34R0P°bC 3S…C®B.K ×ĉ'çr9yré‡+Xré{¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]dêþ7 ÃzìДÁ1ª}õ@>—«'W 'ê2L endstream endobj 73 0 obj << /Length 133 /Filter /FlateDecode >> stream xÚ=É1 Â@EÑ?â ¦x+pæ'c#8… •EµT´Î,mv¦ ‚œîÞ|>Óœž‹’ºdYð¢x@=ùâwÎ7Ôî@õp›>Ã…-_Ï÷®Þ­¨p [¥?"4´ÒÉ'öÒ K6ÉŸI&š˜ÅLÆ2’©LÄJ%w9 Ö{|ɉ$_ endstream endobj 74 0 obj << /Length 132 /Filter /FlateDecode >> stream xÚ=ɱ Â0…á ñ :œÐäÄt­Ì èä A›GË›i "ßöÿ~1WOÇÀ™jÅŠ•‡¨ãÀ/ç|“:Š=PØMßÅÆ-_Ï÷Ul½[QÅ6<*]+±a‰ŸÔ˃.—&›dR‘ Œ1”¸ãYGÙËáÃ$‰ endstream endobj 75 0 obj << /Length 95 /Filter /FlateDecode >> stream xÚ32Õ34R0P°bC K…C®B.K Ïȉ&çr9yré‡+Xré{€O_…’¢ÒT.}§gC.}…hCƒX.O†z†ÿ 0XÏ ÃÀåêÉÈ[žx endstream endobj 76 0 obj << /Length 102 /Filter /FlateDecode >> stream xÚ32Õ34R0P°bC cK…C®B.K ×ĉ'çr9yré‡+Xré{¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]dêþ7À`=ƒ ñS/—«'W ä" endstream endobj 77 0 obj << /Length 142 /Filter /FlateDecode >> stream xÚ32Õ34R0P°PÐ5´P0´T0¶TH1ä*ä24PASs¨Tr.—“'—~¸‚¡—¾PœKßÓW¡¤¨4•Kß)ÀYÁKßE!ÚPÁ –ËÓEA†¡žá Ö3È0àz€`ý™ pÈx€±±¹™¨Ú‚¡€!ËÕ“+ æ|-s endstream endobj 78 0 obj << /Length 94 /Filter /FlateDecode >> stream xÚMÉ»@@EÑþ|Åùwî½Gb •BT(„ß÷H4’]­í]¢)•šÑÍ8+6˜Ñ1|cZ‘GHOóšû¹@ò¶ BJJ7"–¼ï몈ÌÒ Œ endstream endobj 79 0 obj << /Length 125 /Filter /FlateDecode >> stream xÚ31Õ3R0P°T06T06S03QH1ä*ä22 (Cd’s¹œ<¹ôÌ̸ô=€Â\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. v ò õ ö ü¿¡þŒ×1È7€ôÂ2 |±—«'W ¤(ª endstream endobj 80 0 obj << /Length 194 /Filter /FlateDecode >> stream xÚÍ‘= Â@…_( ’ÚÂb. Ù¿­cSZYˆ ¨¥EûÍ£ä&:¬Ì*(nó±³ðñÞN€Ç< 4§Š“w)‰dªX§í²‚ü%'ùS™“_Ìø|ºìÉÏæc–{Î+Q­©È€S¡ Ý ƒ†@߯.  ;€²ÑJC‘mlym(²ë;j8 •Ifai’ÂH]ØX›¤02Iv{:¿«û]ívžê´)åá·úb›4)hAwÅ„Z5 endstream endobj 81 0 obj << /Length 177 /Filter /FlateDecode >> stream xÚ35Ð32U0P0b 3…C®B.3 ßÄI$çr9yré‡+˜˜qé{E¹ô=}JŠJS¹ôœ ¹ô]¢*c¹<]˜ÿ1üÿ@òãÆ  ìdø0Ô%€Šìd=˜¬“ÿÀ䪓 “u ÿà ‡Úõªfh‘ Çÿg¨ÿÿÃþÿd’ËÕ“+ =Å€ú endstream endobj 82 0 obj << /Length 181 /Filter /FlateDecode >> stream xÚű Â@ †ÿÃAÈâ Íx­xUp(Ô vtr'utPtmûh}”¾‚Û b¼ÓI÷bHø’ü ˜á`sÈ‘ 3áxćˆÎd|/ô¥ö'JsÒ61é…ë’Η|½ÜޤÓÕŒ#ÒoÝäŽòŒŽ ×Ô¥ž¸Û>”Å´)ÐmPÖN®•8•’J@ å…Gáּ㗷 y[õöÏþʽV€Rl"òšç´¦«›– endstream endobj 83 0 obj << /Length 157 /Filter /FlateDecode >> stream xÚ35Ð32U0P0b 3…C®B.3 ßÄI$çr9yré‡+˜˜qé{E¹ô=}JŠJS¹ôœ ¹ô]¢*c¹<]˜ÿ3üÿw@ò20þ‘ì$ÿ)ß"í@d=˜¬©e€0þPŸüÿPHZØBOhÿêÿÿ°ÿÿ™ärõä ä5 †¢ endstream endobj 84 0 obj << /Length 248 /Filter /FlateDecode >> stream xÚmнjÃ0Àñ†ŽP¯ÖÔ6%ÎhHS¨‡B;e(…BÒ±ôƒd¶!C_Ë[ǾBÁ£†â«NW¨d,,~ø„àŠåÅr¡3}iw±ào—ã;¹ýw>ؾàªÂt£‹Ó;Å´ºÕûÃ3¦«»+m§ký`¯> stream xڕѽ Â@ àˆƒÅG0op­z'A+ØAÐÉAœÔÑAÑÙ>Z¥Ðѡܙ^2TèÒÂñ‘´Í—Ì)¢» dJ×h-ÇQ6/.w\ehŽd-š-gÑd;z=ß74«ýšb4)bŠÎ˜¥äù©|!T0æì'‡¡ €ø4, ¡ L”*0V¾}©ÚU´¦vÐ~ÚÝ·'ã¿C¾dxxJùDv×5¼vøw¤Ôá?®/u»˜Ò¹­®ù “ |.ÀÉuÔB)à&ÃþÃ)©² endstream endobj 86 0 obj << /Length 269 /Filter /FlateDecode >> stream xÚµ‘¿JÄ@‡!E`¤µ8¼yÝäH¢E pž` A+ µT,É£åQò)-–[ww"°µúØ™eþ|SÇ›N¹à£ —)—9?fôJEnƒöYJæá™¶ ©.rR6Lª¹ä÷·'RÛ«3ÎHíø6ãôŽš¨'Ä@höXkcz‹nL† 0¦¡>[DPi¬G Ѩ Òèz¸¼C°·t`ÿ:D_íŒdr¨f¸ZÀjF=cø…¸û½Ì?`.-°l[/áÇ;Èb?¥O©y=÷^F¯.Dd/Z{‘ ¯üÐ FåF\ÝnŒ\3w*Èá g7tMßVXv¡ endstream endobj 87 0 obj << /Length 211 /Filter /FlateDecode >> stream xÚµÑ1‚0à’·pÞ lAÓĉ1‘ÁD'㤎éÑzŽÀÈ@À–“j “%ÍÊÐÇÿóÅ”ÅÈp¦6Ÿ#ñÁ 8Cý¨Wýát…4ºG΀®Õ)Ð|ƒûó4Ý.1šá!Bv„<ÃN­†¢í„µÔ’„µ²Äk¤³&ÂJcPýÊèÕÆIãJZkg-…1”?,á˜ÕŸ¹w˜ïknáþçÛ\Z7¯!Gߨ|C›w"^úžlo}•Û«îV9ìàùª¢ƒ endstream endobj 88 0 obj << /Length 193 /Filter /FlateDecode >> stream xÚ}ѱ Â0Д‚…Cpuz_`5Å®µ‚DÔQPQpÓOóSú ùƒšæ*˜Rr<.—„‹äp£À± c4£„+(erQ¦eáp†$¾A¥€/Ì*ðl‰÷Ûã> stream xÚ3µÐ³´P0P0bSS3#…C®B.SC ßÄI$çr9yré‡+˜ré{E¹ô=}JŠJS¹ôœ€¢. Ñ@-±\ž. ÿÁ •bø€HÕ700ØC(ù`ŠB1£PŒØ(|Te€bÀ¤ P¨`ŠB±ƒ©ÿÿ±PP9˜J¨>4à ˆ¦èBý&!^@¥¸\=¹¹6‡à endstream endobj 90 0 obj << /Length 130 /Filter /FlateDecode >> stream xÚ33×37U0P0b3S3#…C®B.3C ßÄI$çr9yré‡+˜ré{E¹ô=}JŠJS¹ôœ€¢. Ñ@-±\ž. ÿÿÿ? ÿÿÿtšáÿù õ ü†0 ôÑlôP÷o¸â•ËÕ“+ _¯¶* endstream endobj 91 0 obj << /Length 106 /Filter /FlateDecode >> stream xÚ36Ò33V0Pc3#…C®B.#3 ÌI$çr9yré‡+™qé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]þÿÿ†ÿ?``¨o–ä7d¿r¹zrrðéaž endstream endobj 92 0 obj << /Length 144 /Filter /FlateDecode >> stream xÚ35Ó3±P0P0bS#3#…C®B.°˜ˆ ’HÎåròäÒW0±àÒ÷Šré{ú*”•¦ré;8+ré»(D*Äryº(üÿÿÿ2Éðÿ`¨o^$3^’L²á ù0H9$ÒLÖÉ ’ñˆdÿÃðÿƒýŸÿ €Br¹zrrà3nX endstream endobj 93 0 obj << /Length 250 /Filter /FlateDecode >> stream xÚ]ѱJÄ@à )Óä²O`åöÊÀy‚)­,DPN±:NEÁn}$!’GØr‹q63ͦX¾™Yößbìöl»1¹àc7Æž›—?жÜ7±‡#îz¬ïm±¾æ)Öýùúü~Åzw{ixº7üäû½!úpˆu\ÇæÄµ€ àØ–khÞÔì’ø¬>Åà¨R»Q¬|jÄbJÍg1£Tà9XÅNå`1ˆ¥ÊÁâ,æ*/rpªÄnL­¼X†Ôbó95#èOõ¢S»••ZªÅÊœëÉ> stream xÚµ’±nÂ0†1Dº%À½8AMP¦H@¥f¨ÔN SËÈ‚•äÑò(yÆ (éÝ96¨c-ÙŸíÿŸÿË"šÍ3Š(¡éœÒ„Òú‰ñ€‰lF”¦VùÞã²@³¡$CóÆÛhŠw:Ï;4ËÅhÖôS´ÅbMÐ7 -èoʼ.+a¡£ÆW‘y!a paN8(Ûe~´NØÀHbƒ+Œ[&Ž|‹EG½ƒM”ýµ°äl”Õ#KË!×ü‰½eó_ô÷¹<þ ÏÛ¾«zzçÀPýè<õëv÷Oýl½¯Îg¶Ô¬¼²ÝÕE´ÎÆêWGWWï•«»ýðµÀOü¢}˜Ÿ endstream endobj 95 0 obj << /Length 266 /Filter /FlateDecode >> stream xÚeϽJÄ@ðH±°Mګ̾€ærw ¹ÆÀy‚)­,ÄJ--…á’GË£ì#¬Ý‚Ë39TÔæWÌ÷ó“Enæ¦0Ç ³*L¹2¹~ÖË5ç¦,™û'½itvc–k]pXgÍ¥y}y{ÔÙæêÌä:Ûš[t§›­ ˜¡¦¡‘­¢û6vèZ5âÈ'ŸÊ×@ìOÈïè˜6ü¢úaÏÌ&è›~`ûQ°Líɤ䀄hÂADDÜND×Ð(Anê%åè¥=Ù¨„Xˆö²ç» ûŸÎ}d ò*‰ß;¾AÙ‹d|÷H×£‡MùH+§Œò“>oôµþ ß„k endstream endobj 96 0 obj << /Length 158 /Filter /FlateDecode >> stream xÚ33Õ32W0P0b3#J1ä*ä2µòÁ" ‰ä\.'O.ýpS .} (—¾§¯BIQi*—¾S€³‚!—¾‹B´¡‚A,—§‹‚ý0`À 0ü?À¤ê€d˜–o¨Óü `š½¡L3cÐ `š‘ }L3 D3@h†Q'ýÿ˜büÿD±cñ&ÍåêÉȃ@ endstream endobj 97 0 obj << /Length 251 /Filter /FlateDecode >> stream xÚÝÏ1KÃ@ð-úŸfßÝ€,b¼?ÄßÉBèþ_T|ÿ%t_ endstream endobj 98 0 obj << /Length 213 /Filter /FlateDecode >> stream xÚmοŠÂ@ð/,˜âö„ÐÍÊÚ þShuÅq•ZZ(Úš<$y”<–!q÷î,äŽÌ ó1v<qÆ–†í˜­á­¡ÙŒcÙÑÏf³§iNúƒmFzƤów>Ï;ÒÓÕŒ é9ξ(Ÿ3”Ð5€¨ !+ô‘ÖP®LîpšW.Pe@"€QmìêÚ¢¼ iÂ"õñ¬Ž1ÅÅ”âü"Ú?´O’VHnq®LUOUoê*ýD6¢ói|UÔ´ÈiM×¢Lì endstream endobj 99 0 obj << /Length 210 /Filter /FlateDecode >> stream xڽн Â@ ð„B–>Bózm=ë(øvtr'utPœ¤v¾IÁè¤Këõª: Þð’#ù“–Ûð=vÙçºÇ²ÍA“—mHJ]t9Ug±¦nHbÊR’ê2‰pÄ»í~E¢;î±G¢Ï3=hNaŸ1ýŠ/kFˈ²Ü‰©S”lx‹­ð騫`pÌ:F§l½T¥veü¶V™ü`ü9ó©zïÕªT¹ñbr^Mæ³ÉRV ¨R'Œ:¹¹q@ƒ&ô™x endstream endobj 100 0 obj << /Length 193 /Filter /FlateDecode >> stream xÚ1 Â@Eÿ00MnÌt³f‹t¨` A+ ±RK E;19Ú%G°´uÖ`akóŠ?þü±éÀäœrÆ}ÃYÎÖðÖÐ2+bÊvØM6{*+ÒKÎ,é©È¤«ŸŽçér>bCzÌ+Ã險1C½D¯(p.ˆ¡îÜ lQ4‘CÝ!i¾(¼]£–õWç¨!ÉpE#kÊ%Ê7)ô©Öó%cà\Üêæ_p€’0šT´ 7ê8>Ì endstream endobj 101 0 obj << /Length 210 /Filter /FlateDecode >> stream xÚ½Î= Â@à )’ˆsÝĬ¢…üSZYˆ•ZZD´“o¦7Ñh—B\gw±J)Ø|ÅÌðæµ‚F3¤€"ª‡$;ÔŽhbŠRò0 ¶´›Õû Š9I‰bÌcÉ„ö»ÃE: Å´ÄdHà ¨’žÑ5:ÿPi=uekù“=B·Ð«jîü¼›nå_t+k-×±ÕäœJfÆ÷f¥LûËþåîWn噞¾é\y郧¼ Uˆ;ë«3ë¼y…£gø£Ðz? endstream endobj 102 0 obj << /Length 204 /Filter /FlateDecode >> stream xÚuο Â0ð/t(Ü`_@è½€¦±:YðØAÐÉAœÔÑAÑMj-â#8vëiQp0?¸K¸|6隌N¹c8ÍØÞÚSje˜°í57ë Ò N-鉌IS>N[ÒƒÙ é/ '+*FŒà ®P†W R7HU®8#ôè#òÈ;Äo\ކÈ]>øòËãK-§AZà/å‹Ë/²>—L^¾T^('N"†nhAUhwdòZ#ª= d# šÓr!Iš endstream endobj 103 0 obj << /Length 143 /Filter /FlateDecode >> stream xÚ32×33V0P0bcc3…C®B.cßÄ1’s¹œ<¹ôÃŒ ¹ô=€¢\úž¾ %E¥©\úNÎ @Q…h ÊX.Où ÿ?00°``?ð‡¿ñƒ<Û3þc°â:fø„ äâÿÿÿÃ1%æP}ÃPÿÿs¹zrr›_¯ endstream endobj 104 0 obj << /Length 261 /Filter /FlateDecode >> stream xÚ•=NÄ0…_äÂÒ4>B|Èå®´,) ¢@T@I‚íº£äF('à 9e k͇b (H¢/öøÍË›tG‡­¯}ëÚÚwï×È£ð]ó>n~ŽndÕKuETg¬KÕŸûç§—{©V'žûµ¿fÓôk^ÀÄ".Ù·€…ýtÑDŠ©˜\0_ˆfÄ+`G•Ït–ÿá~ïì¦Î€~…ŒÜ¡ø°ëïLcx«cØã ¤§2%õIi—™(ئ4æõ¤ÊrB8±F‹ü†+å ƒòOƬ™õ›Ü«>Q=9'å|¸ ùVÅ)æX,Èi/—ò mh endstream endobj 105 0 obj << /Length 165 /Filter /FlateDecode >> stream xÚ35Ð32T0P0b 3c…C®B.S ßÄI$çr9yré‡+˜˜ré{E¹ô=}JŠJS¹ôœ ¹ô]¢ÆÄryº(0þ`‚ÿ$;˜d“Œt"™ÿ€Hþÿ @Ò†ÿüÀü€ñçæ Œ¿€Êƒ3þg`øÃÀø‰üƒDþ\$3Ø‘ÿÿ¨ÿÿ™ärõä 䄆y endstream endobj 106 0 obj << /Length 124 /Filter /FlateDecode >> stream xÚ32Õ34R0Pc#3C…C®B.CK ßÄI$çr9yré‡+Zré{E¹ô=}JŠJS¹ôœ€|…hCƒX.OÆ ìø   PœÀøƒ¡†Ø00ÿ‰Ð1ÿaøÿÿq¹zrrÞÉHT endstream endobj 107 0 obj << /Length 213 /Filter /FlateDecode >> stream xÚ½ÎÁJÃ@à”æ`_@ì> stream xÚ32Õ34R0Pcc3c…C®B.#rAɹ\Nž\úá F\ú@Q.}O_…’¢ÒT.}§gC.}…hCƒX.OÆ ÿaˆýóÆÁ˜ÿ0üÿÿ‚¸\=¹¹ì±WÇ endstream endobj 109 0 obj << /Length 186 /Filter /FlateDecode >> stream xÚÝб Â0à  ·ô äžÀ¤¶’Ej3:9ˆ“::( NÚGË£ô:¦´4¦‡âÈqðqÇéé8ŽHÒÄ·Š)‘tŠðŠJRWI¿8^0Õ(v¤$Š•Ÿ¢ÐkºßgéfAŠŒöþÌuFÌòX àlèòÀYhFAáQòâÉJ*ÃË‚YàuÎ*>P«òÎ'sxõ'`€ ‚ü¾çÊ·³s×ü—·ø3Ó endstream endobj 110 0 obj << /Length 154 /Filter /FlateDecode >> stream xÚ35Ð32T0P0b …C®B.S ßÄI$çr9yré‡+˜˜ré{E¹ô=}JŠJS¹ôœ ¹ô]¢ÆÄryº(0þ`þÃÀðÿÿÿ iÃH~`~ÀÀþóóæß Œ?3€Èÿ ÿ!‘ȃ‹d;òÿÿõÿ “\®ž\\ep endstream endobj 111 0 obj << /Length 188 /Filter /FlateDecode >> stream xÚ1 Â` …_q²ôÍôïßVèd¡V°ƒ “ƒ8©£ƒ¢›hÖ£ô;5ƒÐIä…¼¼D“qÀ>‡<²Y>X:S‹èwŠNö'Js2c2 ‘ÉäK¾^nG2éjÆ–LÆ[ËþŽòŒá¼¸ïH5pG§Æƒ †%ÜBáÒx‚ʃÌA­xNÓƒX:í¿èí>Å´ùÙëI=îJŒR³h4 ‰Vê\_èž¡yNkú¤PM endstream endobj 112 0 obj << /Length 208 /Filter /FlateDecode >> stream xÚ­Ï1 Â@ÐYR¦ñ™ è&²¢] F0… •…X©¥…¢`er´%GH¹!Áu6 ‚Z‰Í+þ‡Ù¿¿×ȧ>uƒ©!)Ÿ¶P)N}ŒžÕfQ‚rIJ¡œrŽ2™ÑéxÞ¡Œæc PÆ´âSkLbÚÕF{Æzéä`ªÂ)Á©3¡ApÚ€¸\A4ikh+ðæ/;Ň¥ÕýÉ/׊÷y‰ÝÓ.L[ov3‡¢ÎÞ_ånBk/cCîù¿¥à:Õ˜òMœ$¸À;| endstream endobj 113 0 obj << /Length 223 /Filter /FlateDecode >> stream xڭϱjAà¹baïœHö÷ð‚`¼BÐ*E°Ò”)H!ÑG»G¹G¸òŠÅuγ°ÐFl¾bvùç;x$sŸŸ’Œí Û˜7 }‘MesšŸÖŸ4Îɼ±MÉÌdN&ŸóÏ÷ï™ñâ•2~—¨å<:€öEôö•øLtˆ†jt‡ÐôºD°EX pèP£ýYù¼Ãuwéo¤µ»Ú½m‡¶OX6JCíTè:¨‘knùGªC_ˆê 8¥=PÕôÆÎ×—Ò4§%ÙÕo¶ endstream endobj 114 0 obj << /Length 145 /Filter /FlateDecode >> stream xÚ36Õ34S0P0bcc…C®B.c4H$çr9yré‡+pé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]˜?ðøÿÁþÃÿ~üÿxøûÇæ?ÌŸ›ÿ0~gþÃø „0þcH`üÃÀ€‚Ð3Íþÿÿs¹zrr“»M[ endstream endobj 115 0 obj << /Length 203 /Filter /FlateDecode >> stream xÚ-ÌAjÂPà?d˜70súò´ÔB³t墄¶ËB[Ü™£½£ÌâÊ·yŽÆÅ·˜ÿŸ™âqR–œqÁ–‹‚§–¿,ýQ^i˜ñ4šÏšÕd6œWdÞ4&S/y÷¿ÿ&3[ÍÙ’Yð»åìƒêãè¶qð’¸gc$Oˆå€èæv°½òw €žªx ‚4tHB8„ÇàtmÔ¨uˆUäuÝËàpÕÞùAÛÝDÒ#rç&iN’Bô¯KôZÓš.8W¯ endstream endobj 116 0 obj << /Length 151 /Filter /FlateDecode >> stream xÚ36Õ34S0P0RÐ5T06P05SH1ä*ä22 ¹æ™ä\.'O.ýp#s.} 0—¾§¯BIQi*—¾S€³‚!—¾‹B´¡‚A,—§‹ƒVl†+ ø313³±üÿÿþC1#TŽŠ8føÃðˆ€qã{æùv ãþ àrõä äwSM6 endstream endobj 117 0 obj << /Length 160 /Filter /FlateDecode >> stream xÚ35Ð32T0P0RÐ5T0±P01PH1ä*ä21 (˜Bd’s¹œ<¹ôÃLL¹ô=€Â\úž¾ %E¥©\úNÎ @¾‹B4РX.OÆ þÿ`¨G%Ù00ÿa`þÁÀø‡¢fŒ$Ð èl0É÷¡†Aæ?ƒƒÐ?ò €$ûÿ@’á?P—«'W rjy endstream endobj 118 0 obj << /Length 193 /Filter /FlateDecode >> stream xÚ]Í= Â@àYÑÖBÈ\@71‹ÁJðL!he!B@- 19Ú%GHiˆ£˜¬Ø|Å{ðž ºG.õ¨ã‘ê“? ‡'T>‡.©o³=à(D¹"壜qŒ2œÓå|Ý£-Æä¡œÐš‡6N¨(´]¤¿Ú9ˆ¬'Àýã {‘¿6*}èÒ;‘”:‰•Úf›ºVi§ucÖf­¬U)ž®1ç[¾ŒŒmŒ?£ÿ6*qâ_¦ÀDµ endstream endobj 119 0 obj << /Length 248 /Filter /FlateDecode >> stream xÚmϱJÃPà? œå®ÄœÐ{ÓjÄÅ@­`ÁN"ÔQPQpöNºøP÷|Çëºd§Á6¥”3|pþ?=Üï±á.ï%œö¸wÌw =Qjx>ÿ—Ûê礯85¤ÏeM:¿à—ç×{ÒýËSNHø:asCù€ëú³®ÂºXWUÈ<&.*;d (‹ÝF‡åÒÈa»Ñ‹¨ > stream xÚMαJAà?lq0„lk!Ü<›Ã ±8ˆ¼BÐ*E°RKÁHÒzûhû(ç¤Üâ¸uf«ûÁÌÿLÝÜ4/Y_ÝðíTt z%õRKýxÿ¢MGnÇõŠÜ“tÉuÏ|ü9}’Û¼> stream xÚ]ÏÁJÃ@Ð; çÓxÊé%'S~Šé•ÒÄ\#¾Èþ^/4ÏIßqš¾1wÒù-¿¿}<“ž¯®9&½à{õ@ù‚û¾ ûÚ7l¡z P@?­[¨V„qtÖPíA•ËÀ8.ì=®ŽœõÐÖƒƒÁ÷ÈÙdFÕDb+¢Ý8w•óË:+cüwè9ð<±Ž<#O©Ê¬jÈ\©êÔ¯RÕÉ*¡¸µñÙ•mm`g‰´ÌiM?ÍAP‘ endstream endobj 122 0 obj << /Length 199 /Filter /FlateDecode >> stream xÚ5Î= 1†áoI!L³­…¸s“5"Z-øn!he!Vji¡h½9Úe`i!Æм0 “ëå#vÜ—ã‡ìÇ|ÈéLÞËìtÔ‡ý‰&%Ù {Ov!·dË%_/·#ÙÉjÊ9Ùosv;*gœÅÃ7 ªºÀ $O‰y¢ óÀ­»$mà}RKŠ ©ð*¨‚*¨‚*¨‚*IQ’ ÿ¼$¢’ ÊQ&ˆ2ªŒª–îJuWªk D$òå_h^ÒšÞ8.G£ endstream endobj 123 0 obj << /Length 126 /Filter /FlateDecode >> stream xÚ31Õ3R0P°bc 3C…C®B.#K ßÄI$çr9yré‡+Yré{E¹ô=}JŠJS¹ôœ€|…hCƒX.O† Ì@ÌÄò@\€ýÿ†ÿ <ÿÃy¨øPÆõ€þùÿ†¹\=¹¹sUÇ endstream endobj 124 0 obj << /Length 242 /Filter /FlateDecode >> stream xÚu±JÄ@†ÿ%ÅÂî fžÀ$Þ,ăóSZYˆ° –‚Š‚…H³VøÀ2u@JÜ&lá»lD€ÛáÀª˜mwjR_¯@>Ä ; lÒÝ?hÙv* àØ„žç÷°'Ø!¶nüE¶5øi>p §{N÷› áhd42žFJgÄaZt¦Ej‘Zô¦!Ù'äÄ’h }ú ¹läV~h€p endstream endobj 125 0 obj << /Length 246 /Filter /FlateDecode >> stream xÚu±NÃ@ †eˆd!ò•Î/—kBÔí¤R$2 щ1c¥‚èœ<Ú=Ê=BÆ Uƒí£Lp’¿á?û·õ77×Kª¨¡«%5ŽZGo?°nY¬¨­ÓÏë×Ú'ª[´÷,£íèëóðŽvýxK톞U/ØmŠ#øy˜çÙTLP„ü%d'¸dý`†àƒÿÀÈoÁfAÙ'~ÁÅVüN\™ìÌ'ÁÈ(u€Ëˆnä(ã¹E›u,¹¨_Ú¡ˆgŨ¸x·›qÂGÞåc/VûôÃJ°s5M#ŸÊ1%”²’Ôð®Ã-~nn endstream endobj 126 0 obj << /Length 185 /Filter /FlateDecode >> stream xڕϱ Â@ €á–B‡P:w’> stream xڥбjÃ@ àßî@‹_ 4zö|±k:ŦP…dʤc! íÚøÑü(÷=»… éØåt:IüùãÄSÎù~¹çÂóÞÓ‘²BŠ)ÙïËîƒf¹g¹W)“«ÞøóôõNn¶xfOnÎkÏ醪9 †mÀvèa‡ár¥U‚Ò(€);ø'Q/$C 3Ì!ê`.zÆ7l(ki×Ò?n®!¹¡½aªœÙðýÖ먠luòAIuå“2胤‘ Ò«âq«Ë4”2BýT´¤Ð]E endstream endobj 131 0 obj << /Length 251 /Filter /FlateDecode >> stream xÚ½‘¿nÂ0Æ"Ý’7hî¨ d´D©D$:u¨:µŒ Te¾<š%1âzgGü™:TªeégÙçó÷}^äU9ÎpR`¹Àj†Ÿ œÊfŽÕ<ž|ìaYƒ}År v-Û`ë ~w`—Û',À®ðM½C½B:Ì¿‚" ý².€OŠq@)³8æV@ÌjbîžNAa*vd™(z3’‹$e ¹Ä!mÑè4Îß"kÃëÒ{t·Hþ†ûfúBsA6ÀîŠ6ª> stream xÚ±JÅ@EgI˜f?!óš“—2ð|‚)­,ÄJ--žh'$Ÿ–OÉ'¤L±ìuf66.Ë!;{w2÷ªË®–J:¹¨¥m¥½’ךÏÜtZ¬¤mö›—w>\>JÓqy«e.‡;ùüøzãòx-5—'yÒFÏ<œ„¨ØH0eÀBä-@ êH4PÉæ19̺3=ŽK®‚bñ*ö«_…>Ï7c¶õs¢µ FÆôËûuŒ‰°õ†¤§ô–Æ¿œŒýÎÙhóÐwb´9•æ9Úü.š—,dê?«å¡žõÃ\/–fËÄ)—’Ñkk˜ko~àÑ;¡k endstream endobj 133 0 obj << /Length 323 /Filter /FlateDecode >> stream xÚ¿JÄ@Æ¿ba›LR‚|z5/jóàO¤†Ôž†õAAMQ¯­•ÝØ‚-+^'èiHv!æc"NVÊÒ”äC¼ŠA}Þéký <ëÎ endstream endobj 134 0 obj << /Length 175 /Filter /FlateDecode >> stream xÚ33Ð37T0P0VÐ5T05R03SH1ä*ä2± (˜™Cd’s¹œ<¹ôÃL,¸ô=€Â\úž¾ %E¥©\úNÎ †\ú. Ñ@ƒb¹<]*@àˆ`¤&iÿ~ÔƒÈ?ÿq`ÙÔµ—J¤˜¬'…üÇÀðDBÌ ²$õAD‚| •`òƒüÿÿ ìÿÿ­dþ¶¹þ—«'W ʼn‰Û endstream endobj 138 0 obj << /Length 197 /Filter /FlateDecode >> stream xÚŽ± ‚`…4wéº/Pj–)‚äÔÔMÕØPÔš>šâ#46È_Gth ¾åÞË=監(TW½©Cõ# |=yr•±Ï­«3¯;/’fâìt싳â^œl­÷Ûã,Nº™+ç…î=u’-ˆ',ƒž]£ÿÆ BR"/𠬽wƒý‚]¡OJ HÑ4äMJ‡êÿ0?_9º¨¤èÂÙÂ.6²—í­†Õ¾Ñ†ô¤-iN«Í‹e™ÉV¾‘L endstream endobj 139 0 obj << /Length 196 /Filter /FlateDecode >> stream xÚ= Â@…Ÿ¤¦Éœ èæGb¬à‚Vb¥–Š‚•ñh%GH™"¨/ÙÂVøšeÞûf˜ Æ©šj?Õ8Ò$ÖC(g‰b…îg’©³Ñ(³àXŒ]êõr;Š™®fÊw¦ÛPƒØLï@ |Èù “~‰n¯Fç ˜<z/ø¤@—”ð:ŽºMrpíñïß\3]8[ØÅFö²ÝiäÍÝhHOÚÒ™æôÿ´A¼HæVÖòxuO’ endstream endobj 140 0 obj << /Length 197 /Filter /FlateDecode >> stream xÚ=;Â0DQ m“#°'À1ùQ. ¢@T@I‚Ž–£pʈ°'XÊÈzã™ì&Ùp:áˆSN8qjøhèBq&,âd ãp¦Â’Þrœ‘^ %mW|»ÞO¤‹õœ é’w†£=Ù’•œ\¾à%Ò‹„NfN‚¦Rª×8þÔŽ;Óó§„À?]¨AÈq„Àë¶ !帿ÁÅ;$E‹ïC3þÑóNÕM€YBï¨vÒ¶ò¿6Ân*§…¥ ýUKe endstream endobj 141 0 obj << /Length 194 /Filter /FlateDecode >> stream xÚE1Â0AH×ä Ü °MœR. ¢@T@I‰Ž<§ä ))æ¼ àbeÝx½{6íG¬9aËvÀ‰á½¡Å©Ì4Û!ÀîH™#µæ8%5—))·àËùz •-§lHå¼1¬·ärÖ-9· ï ò¹—"“§HôéÒöEÀ •H$;5ÆšÀøÿ2à¨úÞ ïà€¿Ôó¢É@L¾lº ú¡)åa7lI3G+úùlJ endstream endobj 142 0 obj << /Length 110 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0´TеP01Q03VH1ä*ä22Š(˜B¥’s¹œ<¹ôÃŒL¸ô=€â\úž¾ %E¥©\úNÎ @¾‹B´¡‚A,—§‹BýÿÿQÀ¿? C ýGõÐG\®ž\\0ñoy endstream endobj 143 0 obj << /Length 112 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0VеP0²P03VH1ä*ä22 (˜Bd’s¹œ<¹ôÃŒL¸ô=€Â\úž¾ %E¥©\úNÎ @¾‹B´¡‚A,—§‹Býÿÿ‘@ýÿÿ öC Õÿÿê…\®ž\\¼HB€ endstream endobj 144 0 obj << /Length 143 /Filter /FlateDecode >> stream xÚ31Ó³´P0P04S02U06V05SH1ä*ä ¡±!T*9—ËÉ“K?ÈåÒ÷Šsé{ú*”•¦ré;8+ù. ц ±\ž. ìø?Èÿ°ÿ„ÿ€ð¿üþÿìÿì¡°ž¡ÿ1üaüÃüƒùPíûÿüoøÏPÃ`ÁÀåêÉȪL.D endstream endobj 145 0 obj << /Length 118 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0V0W01Q0±PH1ä*ä21PAC°Dr.—“'—~¸‚‰—¾P”KßÓW¡¤¨4•Kß)ÀYÈwQˆ6T0ˆåòtQ``°a‚:ªöÿÿÿÿS$þýG`1jÛ%€þàrõä äÀ¹> endstream endobj 146 0 obj << /Length 142 /Filter /FlateDecode >> stream xÚ31Ó³´P0P04SÐ54V06R04TH1ä*ä24 (™Àä’s¹œ<¹ôà M¹ô=€\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. ìø?Èÿ°ÿaÿÿÙÿ“ÿÇÿýCÃ?†?Œ@Èüƒÿƒý‡ÿþøßPÇ`ÁÀåêÉÈÑ4,r endstream endobj 147 0 obj << /Length 96 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0Æ@ÚP!Å« H(€¹`™ä\.'O.ýp —¾˜ôôU()*MåÒw pVò]¢zb¹<]äìêüƒõìä¸\=¹¹ŠŽ– endstream endobj 148 0 obj << /Length 104 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0Æ@d©bÈUÈeh䃹`™ä\.'O.ýpCC.} 0—¾§¯BIQi*—¾S€³PÔE!¨'–ËÓEAžÁ¾¡þÀÿ0XÀ¾Až0À®ËÕ“+ 9Ü-I endstream endobj 149 0 obj << /Length 102 /Filter /FlateDecode >> stream xÚ31Ó³´P0P°P04W0¶T02VH1ä*ä26PA3ˆDr.—“'—~¸‚±—¾‡‚—¾§¯BIQi*—¾S€³‚!—¾‹B´¡‚A,—§‹Býÿÿ?þÿÿÿƒÄ¸\=¹¹E:(“ endstream endobj 150 0 obj << /Length 172 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bS3…C®B.rAɹ\Nž\úá &\ú@Q.}O_…’¢ÒT.}§gC.}…hCƒX.Oööþüˆ&äȉù4ÂþÿÿÿêÄ¿ÿ¨,Æ`„¢ê€hâ2üB0Ó° 0þ`@Ì?˜ÄæDŒ0p¹zrrûV‹« endstream endobj 151 0 obj << /Length 256 /Filter /FlateDecode >> stream xÚEÐ1NÃ0`G"½%Gð»$Q£R–X*E"L ˆ @°!'GóQ|¬”?1uå“âXÿïçn{y½ã†7|±ã®ãí†ßZú¤®áå¹jÓŸ×ÚT?q×P}‡eª‡{þþúy§zÿpÃø>ðsËÍ .­(\å„tÊ‹Òë¨ü‰B¹hþ±¡:3NŽ[Vfab1‹qAÊKĺ¤gPm33GqbÆ[œ‰@fÖôĹÂK‡t,(WŒ¢p¬„ÆQ'm@¿Œb4*~UbEé'ö¡¢ï6¨Ð3P£¬T[ziq±t;Ð#ýY»ˆž endstream endobj 152 0 obj << /Length 220 /Filter /FlateDecode >> stream xÚu=NÄ@ …_”b%79Âø ÕHË"‘ * D[n‚–™£å&ì¶Ü"ŠyãmafôY²ŸíyýÅéõ•.õ\O:í/µïô­“wa\òögÇÊëVVƒ´O¬K{Ç´´Ã½~~|m¤]=Ü(³k}fÏ‹ kEÚ¨m&fhÌF ˜í€hÆrá°ž +'Ø2¾©ʉ3Ùq4|PYáÂÙØš0eܦÑé½³súŸÉ5ɧ¥\Ó@ÜñïeÝ'ýXæÆÆreSU¤4¹äQ~MQdÅ endstream endobj 153 0 obj << /Length 206 /Filter /FlateDecode >> stream xڥϽ Â0ð+Â->‚÷Z+©S¡*ØAÐÉAœÔÑAѹ}´>бbð¼$*.b†áBîþ§zíá€:Ô¥VDJQÜ£m„T‘;÷ýËfi†á’T„áTÊf3:Ï; Óùˆ¤:¦•üYc6¦\ƒ®¾›;ƒ¿lhkb¬Ì⹄€™/N-êÄZ6*±¨ñp·—§¹ë™|ZX›?š¼4®ïìõ½>uóÎæs¾’—n—‚«Ý tnìÆÍ N2\àKKv endstream endobj 154 0 obj << /Length 205 /Filter /FlateDecode >> stream xÚ¿n1 ‡]1œä%oÐó ´¹”ˆÒ)$n@¢S‡Š Z•µ—¾Y…G¸‘!бi…ÄÖ _¤Ï²ý³=¾Œ©¡gzpäŸÈ;Ú:üÀ¡Ù¨¹T6{œ´hßhèÑ.D£m—ôõyØ¡¬¦äÐÎèÝQ³ÆvF0à`ø80¸cfṉ̃bè¢9)zA}T$"ÜË'¯S|_QùŸ(·½Ýª(ãM I +ëT÷PG“eyÅ?¿Ñ4dѸYƒ÷z‚Ü1…ó_ñ ° S endstream endobj 155 0 obj << /Length 220 /Filter /FlateDecode >> stream xÚÐ; Â@à )„isÁJÐùEü"Ãøb=A×Û çaÄS~]¿ endstream endobj 156 0 obj << /Length 216 /Filter /FlateDecode >> stream xÚu1NÄ0Eÿ*…¥ir„ÌÀ › ¨,-‹D $¨(VT@I‚vã£ù(>–)V¾AÐaYOòØóç¹??½¼ÐV=é´ÿÞϼÉz`±ÕþìçæéU6£ø]âoX?ÞêÇûç‹øÍÝ•vâ·ºë´}”q«¨µE XÌX™Í¨ÌŽp‹[PÏ0ÔLhB M ‘‡ÀÆ4ì‘™æò±À¸þEâ ŒÆþS“«D¸ÌiDf( šD“œE‹T³HIc %)>—/Ð~Å’\r/_})oG endstream endobj 157 0 obj << /Length 164 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bSs…C®B.c3 ÌI$çr9yré‡+›qé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]ÿ300°ÿ?ÀÀ ÿÿC=ˆøÿÿ„`üÏÿùˆøÁþ€ýcf ‚¨ÿÿÿÿ?€F€%ˆ5…Æ„ýÿÿ@.ý‡N€%¸\=¹¹CStò endstream endobj 158 0 obj << /Length 275 /Filter /FlateDecode >> stream xÚ…=NÄ@ …¥ÉMŽ_òÃ(‚†‘–E"T+* ¤A·ÚDâ \%7!H9Ec{·BHLñidû=¿ßŸRI'tT×äò%=Vø‚¾–jIM}h=<ãªÅâŽ|ŕԱh¯éíõý ‹ÕÍUX¬iSQyíš É³ã:þ²œ!1¦{.g½‹éì ›t<A9ÀN¤t¿´É½êà`nê [¢Yè˜'ã(3’@øÉ üˆÊ~sPºo£i5¹ÝE,b”³6ÂyÔ0ɬ1$ÄV¸ ç îÁ˜ÿÁÙº[›ìLzõ #¸òºh»&Û;‚þ¡Ä³$²^MR} ^¶x‹?máÊ endstream endobj 159 0 obj << /Length 137 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bCSs…C®B.cc ßÄI$çr9yré‡+sé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]˜øÀù(B¬Ž`ÿ¨­þÿ ÂD00 ¢þÿÿÿ ÿaDœ€Hp¹zrrȧYA endstream endobj 160 0 obj << /Length 217 /Filter /FlateDecode >> stream xڭνnÂ0p£H·ä¸'À ¤Q™"•š ¦ˆ‰vìP+ŽÄ‹eëkdëšÑU‡ÿÇGkÉ?é>í4ëž8æ^¸iÆ¿%ôIi?Ä1B–4,ȾrÚ'û²d‹ ¯W›w²Ã鈲cž'/¨³kL8âïëTó¶E‚ÑÅòÆkÕä%t:u€­=|ðº?õQ ;D»ñN÷ üd~UôÈ7úå ³²S[Øv0ؼ?½b¶j®vÊ?£ ¶kµ1Nš\*ïÎÖ7V§*=4£#SãŒ÷ endstream endobj 161 0 obj << /Length 123 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0b#S3…C®B.c3 ßÄI$çr9yré‡+›qé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]êÿ``¨ÿÿƒá?œ¨‡ ŒÃ—¨ÿÿÿÿ0Äÿ?€ „—«'W íâg• endstream endobj 162 0 obj << /Length 161 /Filter /FlateDecode >> stream xÚ31Ó³´P0C …C®B.sˆD"9—ËÉ“K?\ÁÄœKß(Ê¥ïé«PRTšÊ¥ïà¬`È¥ï¢m¨`Ëåé¢ÀÀøƒñC}ÿþ? ÿïÿ“ÿÇðÿÿûÿ òÿÿY–o`*á?Àþƒÿü„Ø!*9 °þ=þÿg„ÿÿÕ!Œ‰@d¹\=¹¹ªˆ÷ endstream endobj 163 0 obj << /Length 159 /Filter /FlateDecode >> stream xÚÅÉ1 Â@б¦Éœ¸»a­1‚[ZYˆ•ZZ(Zo޶Gɶ 2΢]àÀ<þŸ±óérAšrY;#«ébðŽ6uj ç–ÕlŽj#WTnKÏÇ늪ܭȠªèhHŸÐUE‹€[îÅ7³(Sÿô‹#“d5"${‹ÝÀö?zn<×Ì‘9 ý~qíp%8} endstream endobj 164 0 obj << /Length 198 /Filter /FlateDecode >> stream xÚ1‚@E¿¡ ™†#0Ðe‰V$Љ&ZY+µ´Ðh+{4ŽÂ(- 㲘ØÚ¼âOæÏ›$ͦñ„‡š“1'šOš®§6ŒºÄMŽš¤v§¤V6&U¬ù~{œIÍ7 Ö¤rÞkŽTä ï dR" "/x"oø­ß"x Aa…Ì„¡É,ª ªÒ¢~~Ûæ5ÿ¢µÍo×U9ôõú“ö¸qNÈ©9I§‹Rêï Ý3´,hKí`• endstream endobj 165 0 obj << /Length 221 /Filter /FlateDecode >> stream xڭбnÂ0àßb¨t À½@›Y"QÈP‰Ntì@³óhyÁc×s U‡.•ððɺ“Ï¿m˧ç ç<æÇqÎÖ²Íy[ÐŽl¡ÕœË[kóIÓš²w¶e ­SV¿òþëðAÙtùÂZñJ­©ž10ô€óU¤QÏ"-D×±×ɯ<Œ´ÃNmA…Q/À%n®:˜¨~ÛDGÿ´ºú9ir2ݘL¤y?ÙRΘ<ÚÂè[˜S|—é\ˆŽŽè³ÝO§÷é¿éOýeêÒ¼¦7úF©W endstream endobj 166 0 obj << /Length 172 /Filter /FlateDecode >> stream xÚµÎ1 A ÐÔi¼“832ˆVº‚SZYˆ•ZZ(ZÏXYzâÅ#l¹…lÌÛXZäÁOø7è†d¨/ã9C;‹GtV²ibsØ0ó¨Wä,ê™lQû9O—=êl1!Ùæ´–Ê}NÐ)!0„Z¼2ó-ygŽÉg"(.’0P5tÅ·ÔAUɲå+Yü0þÉÀ\%å-n¾Ê§—ø¦YW endstream endobj 167 0 obj << /Length 218 /Filter /FlateDecode >> stream xÚMŽ1JÄ`…ßb˜ÂÜ`w. ~7»hXW0…àVbµZ * vnâUr”aË!ã›,ˆÍÇð½™Ç”ëó«K-t­gQË -£>Gy—劲p3%ûWÙÔt¹’pK-¡¾Óϯ ›ûk¶úµx’z«X §˜™ý 33䎅£r¤CF40Œ@:bª ˜#µàLÉ‚¼ªÁ‰Y˜õ.¹ŠdÄŒ Çæ›¶åAîȺ ãlBƒ¼³–{,ªZxËÏŽ`1K{¯ï+æoürSËN~±¡o' endstream endobj 168 0 obj << /Length 160 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0RÐ5T01P05PH1ä*ä26 ¹†™ä\.'O.ýpcs.} 0—¾§¯BIQi*—¾S€³ï¢m¨`Ëåé¢ÀÀÏò $õÿÿÿ?Äÿ ` ÒÍ#…ø$`'0ƒö üøÄù ì  æÿÿÿÿSÿdÖ.WO®@.’Ø] endstream endobj 169 0 obj << /Length 159 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0RÐ5T01U0¶TH1ä*ä21 (˜@e’s¹œ<¹ôÃLŒ¸ô=€Â\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. õÿ`øÿƒùÿ,dýF Éøƒ}üH¤<˜´’ê00ügüÿ¿á?`¨G"íÿ?’üÿ›²Ìÿ¸\=¹¹kqt endstream endobj 170 0 obj << /Length 195 /Filter /FlateDecode >> stream xÚuν Â@ ðˆƒ¥Ð> stream xÚÎ1 Â@…á aàœÀMˆˆ@ Fp A+ ±RK EÛ‰Gó(Á2EÈ:/u ‹ý—ÙýŠ™Í§éB"IìÌIR9Ç|c»#¼¦ÝÇéÊ…g··™Ýº«ßÈãþ¼°+¶K‰Ù•rˆ%:²/%!Ô•¥éI­Dã¯eò±äoKõ²ÊhÐѰ±Œj#0#0£?Y¦` ¦` ¦`Š]ÚГnS^yÞñÊiô endstream endobj 172 0 obj << /Length 218 /Filter /FlateDecode >> stream xÚ¥1nƒ@E?¢@š†#ì\ ^ c)‘ìÊ…•*qé"QÒŽÆQ8%ÅŠõ2[$rëæ³Òþÿ~þ¸y.9áœRÎ3.žø#¥OÊÖcÂEé_Þ/T·¤œ•¤_Ü™tûÊß_?gÒõ~Ë)é†O)'oÔ6Œ`ÙPv*;k . ,¢ UPC< ”èzDNø‚ùÆe™{àÊææÓÎ¥ÍÿÂ]—É·’~+|ç¢ 2¢%‚¢ê¥E_†IÖqh×Ò®þ xË endstream endobj 173 0 obj << /Length 143 /Filter /FlateDecode >> stream xÚ31Ó³´P0P°bSs…C®B.crAɹ\Nž\úá Æ\ú@Q.}O_…’¢ÒT.}§gC.}…hCƒX.OæöÌÅò@lÅõÿ``âz þÃç¸ÿC?’¾Æöÿÿÿ¨‡à?P æs¹zrrìRZö endstream endobj 174 0 obj << /Length 232 /Filter /FlateDecode >> stream xÚmŽ¿NÃ0‡‘K·xe‹Ÿ'´ 0Y*E"L ˆ‰vdÁÚøÑú(~ªwH‘`¸Oº»ïþ,»óë+ßø•Äò¯.ý¶¥wZt’7šjãõÖ=…'¿è(ÜI•Bï??¾vÖ7¾¥°ñÏ­o^¨ßx¸#€È `Î0Ì#,óŽyB=:F̧˜0¤AÌè.O€=¡ðÌ {Å™sØ2tâÝ÷ 9ÈùF¢štJ´£º:ZëTTwHsͪæT«U‹ù!‹ª,†)b˜"†)3þÚÈtÛÓ#}çwo endstream endobj 175 0 obj << /Length 239 /Filter /FlateDecode >> stream xÚMбNÃ@ `G"yÉÊv~ö%-aŠÔ‰ H0u@LбCQ»’¸nÑ館Ñ?I}ûL§¯óýúeCú-½”¿c»%H00cŽRb†LèÝ5áÁh†¦šRã"Ì&\/d À/©„솄Ná^J¬+J™¯Êx#jCÿ(Ñïä^ ‡NwŒÚ6d`âNùVø?‰1F3:=ª³0+¸(-ª…¶ø aO"{|lñdy‚ endstream endobj 176 0 obj << /Length 196 /Filter /FlateDecode >> stream xÚ•Ï=‚@à%$Ópæ.Äõ¯"AL¤0ÑÊÂX©¥…F;£pJ ¾ÙÄÆØ8“ý’7[¬™ŽsyŒc Of|ŽèF&di\%8])ÉHïÙ„¤×˜’Î6ü¸?/¤“í’#Ò)"”¥¬”×*¥üîC Ä–(„\èÓ -p- ð¿*XJ …¹Ð pZàZàYjàW °” ¶( ½0 úáG(Yù“bÀ_íÛ/Ð*£½:øp^ endstream endobj 177 0 obj << /Length 217 /Filter /FlateDecode >> stream xڭαŠÂ@à‘Â4û;/ ›œ„@NÁÂYYˆ•ZZ(ÚšÄWÙGÉ#¤Lqì:£Âqå5_1ÃÌÿ÷ÓîxD1 ¨“Pÿƒ)í> stream xÚm1NÄ0E'risÏ v7,•¥e‘HÄVˆ ()@Ð&9šâ#¤L<| Q`ɯæ¿ñ¦9»ÜÉJ¶rZËæ\¶ò\ó¯QÞý¼<½ò¾åê^Ö W7(sÕÞÊÇûç Wû»+©¹:ÈC-«GnBä"éLdT‰¬ê@.ëêGH‹„F3å”16’ 6P9¸€nü\êÑÑ Pbfç4Rêu¢Yù¥šHq_#õB}È!Ûĉ¨\0æºÐgøÜœ!TF¨ÙIàìƒÍAØCÉ$£yñDE‚Ì}Hâ#°‰A _·|äo_ƒ« endstream endobj 179 0 obj << /Length 187 /Filter /FlateDecode >> stream xÚ•Í1 Â@ЋÀ49‚sÝ„$«@Œà‚Vb¥–Š‚•z´%GH™bQgˆqÒ80¯˜åÿ ‡ƒqL…Ô÷) (ÑÎÇ#rô(Šë—íSjEAŒjÆgTzNçÓe*]LÈG•ÑÚ'oƒ:£+ð¼x*Á´P§dÜ‚éåœHðá.ñ'oÇÓœR(@RB¾Ñšü­)Ó`ëêÎòÛn±ÿ´aÿþ —§—øöð\# endstream endobj 180 0 obj << /Length 232 /Filter /FlateDecode >> stream xÚu=NÃ@…Ÿå"Ò4>ÂÎ`mÙ ¦Z) HPQ *HI‚çh{”=‚KV†ñ)‚æóó¾yÓlÎ/[.¹á³Š›š×üRÑÕs±äu»tž_iÛ‘àº%£eòÝ-¼îÉo﮸"¿ãÇŠË'êvŒ\8I@/#2‘£–D°R9ÇL¢’Kp)°Lz ¿€ìO±nPY†]D‘ 5ˆÅˆ>æ¢Lr‘é>Aáʶ»pg¿W·³iÒÛÿ9Ô«ËÔo°0ËZTãþ¾j~]wtO߈ý endstream endobj 181 0 obj << /Length 261 /Filter /FlateDecode >> stream xÚmбJÄ@à )Óì˜yÍÅ»‹gµpž` Á«,ÄJ--m/ÛùZy”€/0`0ìøïh#„¯˜egÿ?‹æä|%3YÊq-‹SYžÉcÍ/> stream xÚ³0Ð37W0P°TÐ5W07R05VH1ä*ä23 (˜Ae’s¹œ<¹ôÃÌŒ¸ô=€Â\úž¾ %E¥©\úNÎ †\ú. ц ±\ž.  ¥k ãÍþBË€Ðõ¨ÒüPi{¨ôÅü*ý*Ý¡ÿQ"Í•f‡JË?Àê$.føƒFÃÄaê`ú1<@µæ¸³a›rÿPÕ§ãp¹¾¯\®ž\\²(En endstream endobj 186 0 obj << /Length 187 /Filter /FlateDecode >> stream xÚ³0Ð37W0P°TÐ5W07R05VH1ä*ä23 (˜Ae’s¹œ<¹ôÃÌŒ¸ô=€Â\úž¾ %E¥©\úNÎ †\ú. ц ±\ž.  à”þ¥í 4?T3†‚P  þ@%ê¡´> stream xÚ36Ñ33R0P0T04S0²T02QH1ä*ä22 (X@$’s¹œ<¹ôÌ̹ô=,¸ô=}JŠJS¹ôœ ¹ô]¢  b¹<]þÿÿÿærõä äÙ80¡ endstream endobj 188 0 obj << /Length 183 /Filter /FlateDecode >> stream xÚÝ̱ Â0à_:né#ôžÀ´ÅرP+ØAÐÉAœÔÑAÑ9}´>J¡£Cé™ÄAg—/ÿq9ŽÓ˜#NliÍÓ b:“v9rÑ=ö'ÊKRÖ ©…í’*—|½ÜޤòÕŒcRoíš•0w{!ÞaD*`$uX~¯Â~ d-B;jd/¤~b:û­ré°š¯~Ä“âΆՌ‘Þi?Bó’ÖôuÎÇ endstream endobj 189 0 obj << /Length 221 /Filter /FlateDecode >> stream xÚÅÒ=‚0à’oá|'°à:‘ &2˜èä`œÔÑA£3£xÆ„ÚÒ’êà&„ä)%¥¼/ñ|0™aˆ#qÅcœñÁâå)†râx4ºÃ8ºwæk¼ßg éfÐ ÷†È3äò`„üiPÔb.i)¸†ÏK—¿ˆ|ºEÂ4‚ZÃo ¸†'^ÒÂíQZpÄÒ6*òìÔÿÀ/³?Çéa‡ðT¦Ç휓|bºàºÇ×UYˆeTÝé”ò'e[x‚é? endstream endobj 190 0 obj << /Length 198 /Filter /FlateDecode >> stream xÚ}ѽ Â0à”[ú½'°­bp+Ô vtr'utPÜì£õQ|ŸÀxm.ƒñàø¸ËIÔd)LqD©Æ¨†¸Ïà*£:mËv`w„¢‚d*ƒdN]Hª^Î×$ÅrŠÔ-qCK¶P•¨»x Ÿ"oS%°Âzgs6¶ÖÆÈQþTÖ½1ô(ºý#ǘÍYÝI×ø«÷Y{ö§soŸ¿¤p ¬oCGé±qÃïÌjcÈæº1ÿÖ[»Â¬‚¼-GÇ endstream endobj 191 0 obj << /Length 102 /Filter /FlateDecode >> stream xÚ3¶Ð³P0P0as3#…C®B.cßÄ1’s¹œ<¹ôÃŒ¹ô=€¢\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. ÿ `°ÿÇÀ0J@ l!ÄåêÉÈÝ3x< endstream endobj 192 0 obj << /Length 258 /Filter /FlateDecode >> stream xÚuÐ1JÄP…á¦Ü&K˜·3QíŒ#˜BÐÊB¬ÔÒBQ°“¥Ý¥d –)$Ï{.‰b1ðñòsHstp|6¡±»> Íax¨äYêÊÎùâþI¶­”7¡®¤¼°§R¶—áõåíQÊíÕY°§»pkŸÜI» 1ñÒ=(Ö©‘ @7!*ŒÞøF²4¢VÆ'ù"yð J,I,‰wO’nfr, &gFÂ$˜œ“`r¦'LþÁ$|¬ó?ù[ÎOÅ‚& Ž] ž\©%“Ãd®ÙÂH|l¡ù‚]«êc;õ±üÉœ£L©g²K½ÿÿ=Èy+×ò¬àÄŠ endstream endobj 193 0 obj << /Length 226 /Filter /FlateDecode >> stream xÚmϽNÃ0ð”ÁÒ-y„Ü P'4­Äd©-`b@€‘³Û'è+õQ"ñÞè`õ8;UÀÃO¾ó}ȳfÒ]qÃS¾hyÖpwÉÏ-½Q7פ†Óñåé•=Ùîædo4M¶¿å÷ϲ‹»%·dWüØr³¦~Å0²à$…HÊX `ÈÕ~@}€ ¨ãI ÏVñ¤Vª&$‹}RÏË´`\Se½ì´^Bê•Mš#¿3]žéGódþ±>àr½Ë½^ôR|K¬æK¢ÙJ,äŸÿÐuO÷ô„?}Ï endstream endobj 194 0 obj << /Length 205 /Filter /FlateDecode >> stream xڽѱ Â0à“ …[ú½жÔè(Ô vtr'utPtn-ÒGèØ¡/…â$fùàBŽû/r<S@õC’’FíC<¡ ¹ÐhhovGŒSô×$Côç\F?]Ðå|= /§ÄÕ„6üf‹iB ÁýÇ"þOV]<3ŽÐhÅT0)™¼Š)À­™œ»E7]DKþ2ôº)~BGkÑò>K3çsjîýåfƒU•Ù(³ž ]Ø(‡Ó7ÿ£p–â 9  @ endstream endobj 195 0 obj << /Length 207 /Filter /FlateDecode >> stream xÚαŠÂ@Ц¼fþ`ó~`w2› ²‚ë‚)­,–­ÔÒBq»…øiù”|BÊ)†¼}ÅÞæwxwn9zó#ιàWÏeÁå;ï<©k˜Éõe{ YEnÃŘÜBcrՒϧß=¹Ùê“=¹9{Ψš3Pw€2‘u›µ‹é ¦‡i,Ú¨dW‚2½aCvÚ‘4Cä9êáŽÖãeýºÛ©Ž F.IiL«w¶Ö©Äáº}U´¦*[e? endstream endobj 196 0 obj << /Length 211 /Filter /FlateDecode >> stream xÚ½Ñ1 Â0àH‡Â[z„¼ h švª‚ÄIãM¼Jobà˜¡ôùÒˆ.uÉ^Hø“è´—bØU¨5&Ü)8‚V\ìc2ô+Ûd9Ä+Ô â—!Îçx>]ög‹1ru‚kÞ³|‚‚[h›‘¾#FùWLé¨rH"‡yDw†Š€“Ä3+šëVDu“3ªšíÒã‚0/-ÐOh=ÚØ–,Ò¾s¾R±Uܯ!QéâÆHª%Ã⦥€iKxÆ.¤¼ endstream endobj 197 0 obj << /Length 208 /Filter /FlateDecode >> stream xÚmÏ1jÃ@Ð/T¦Ñ ²s{¥h!©"e°Š€S¹0©’”)l’Î MGѶT!4[ÛÁ;ðŠ]fæ¯{š»gN8ãYÊα{äÏ”vä>•˦—o**²v Ù•^“­^ùgÿûE¶X/8%[ò6å䪒é€H êNš@š¼ ¦‹FÄ>÷J4˜^É{„ã…Úÿ!gÄ#¸æßñÐ…w¨oÑɱ9£éŒ&ÀƒÂK¨ ÛCÚÐk‹é`DZýÇ8 eEotWÔqœ endstream endobj 198 0 obj << /Length 160 /Filter /FlateDecode >> stream xÚ36Ô37Q0P0b3…C®B.c3 ÌI$çr9yré‡+›qé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]Øÿ000Ôÿg``üÿÿû?ù ò?ì0بÿÀPÿFü?%ÿ7€ û@‚¿H€´’Jüÿÿÿ:A¦Qt#êÿI4‚ËÕ“+ ÆEE endstream endobj 199 0 obj << /Length 261 /Filter /FlateDecode >> stream xÚнJÄ@ð9Rl³oàÎ h²^ÎÃjá<Á‚Vb¥–ŠvBòhy”ø[nvüïxˆ …)~0³óEÖþètÅ ¯øð¸áµçÖóƒ7Ï¦Ý Ûð‰ß?Ý?™mgên7¦¾@ÞÔÝ%¿¾¼=šz{uƈw|ë¹¹3ÝŽ©’¡Š$¹™DrŸ+YÈœ—3õÙÂ)»D!æÓ{ˆ¤a±‡ó¿üÙ¥sö¡Î§²k¤%öP2‘Å=·Pù¾t¿ÔQtÁ¨ÎeRêPGu²*º&¸Ø£ß¦â2åo«?}ÕÊØ£×Æ€ínrQ-î.»‹j,Iz ðS‰Ìyg®Í']¨T endstream endobj 200 0 obj << /Length 129 /Filter /FlateDecode >> stream xÚ3²Ð³0S0P0b#33…C®B.#C ßÄI$çr9yré‡+ré{E¹ô=}JŠJS¹ôœ€¢. Ñ@-±\ž. Œ?˜ÿ0°ÿcàÿÏ ÿ¿ R@@eøÀ†ÿHˆý?3-Ñÿÿ?àˆËÕ“+ !;X endstream endobj 201 0 obj << /Length 209 /Filter /FlateDecode >> stream xÚÅÑ¿ Â0ð–…[|„Þ˜­¸ þ;:9ˆ“::(ºªà‹õQÜ\;v(9“ïÕÕ„ð#Éå#!y·ÝÏ8åŽy—{Þft > stream xÚ3²Ð³0S0P0b#s3c…C®B.## ßÄI$çr9yré‡+qé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]þ3üGBìÿ˜7úÿÿq¹zrr³Ô] endstream endobj 203 0 obj << /Length 191 /Filter /FlateDecode >> stream xÚÝË= ÂP ð”…,ÞÀ—تtøvtr'utPœ´G{Gé*:”÷÷=GA IÈ/ É{n&‰øÊ»’¥²IyÏy">Üèë Ž’'OÜ–ãb*ÇÃiËñ`67d™J²âb$%]S€’`}F¨] R¡qj˜KäOmºVuŠlŸô­r/¡=“¾›·jÒÒ )Á„0¤ì§JRÍw©ç¿ h" ÒÀoñ¸à9¿³èÐ, endstream endobj 204 0 obj << /Length 153 /Filter /FlateDecode >> stream xÚ35×3W0P0bS3C…C®B.SC ßÄI$çr9yré‡+˜ré{E¹ô=}JŠJS¹ôœ€|…h –X.OÆ öþÿ! fþÿ¿HñøHÉ1Ô?``ÿgRÃü¯B}Sÿ0ÈÿRP¨lÃà¦þÿÿÃþÿÿ¬—«'W „Œ endstream endobj 205 0 obj << /Length 195 /Filter /FlateDecode >> stream xÚ±‚0†KHná¸ÐR) bbŒ“::ht†GãQxFÃymÙŒ‹ÉåËõ¿ôîÿ3µÈSL0ŹB£^âEÁtÆb‚:õ“ó Jò€:¹a¤Ùâóñº‚,w+T +<*LN`*¢î…3™1QËBW°DM4ˆ€Dø³Ñ7üd‘G±eëYXº/ugwÕý7Érø¿vNw½ï-²>›=“-n'N¹|ƈóºì°6°‡;‡Ã endstream endobj 206 0 obj << /Length 203 /Filter /FlateDecode >> stream xÚµÐ1 Â@Ð [¦ñ™ h²è­„¨` A+ ±RK EëÍÑr”Á2…8ΚÄb§Õƒ?,;óMÜ‹)¢>uõŒ¡¦½Æ-iDfTvGLR ×d4†sÉ1Lt9_&Ë I:¥<Úb:%`°³ÏwGÀì°çB ö>ß`\‚â‚»AçQÁȼ&s¨†ü¯¡ø ù×ê]Þ´[ç<ÚSêÃJ@±ucUU ¤Ò’½îƒÿÀ®÷/à,Å>Íî¦e endstream endobj 207 0 obj << /Length 154 /Filter /FlateDecode >> stream xÚ31Ò35Q0P0bCJ1ä*ä26òÁ" ‰ä\.'O.ýpcs.} (—¾§¯BIQi*—¾S€³ï¢m¨`Ëåé¢ÀøñÃÿìÿþÿãÿÿàÿ?{ùÿÿÙÈ`ÿWaÿƒùßñHüÀ„üæÿ ü€s``€ t$þÿÿAp¹zrrõX] endstream endobj 208 0 obj << /Length 223 /Filter /FlateDecode >> stream xÚ=ϱJ1àÙâ` ÷ ̼€f×Ôæç n!he!Vw–Švrî£í£Ü#l¹EÈ8ãÉAø ÿÌdHlϯ/¹åÀg‡+޼íèBÔ°å•Í­zòO"ù;É÷÷üùñõJ~õpÃù5?wܾP¿f¸ù•È ‘‚f¿(pCU€‚ô|KäNCþÈÞÐ;~$š&ÑÔ‰ÌhDÃÚž×mJFm=ZR*'2Ò8îH3æ#:Ý ŠtÚÙÞd{w¹ÎÈ"¦$#ì Ûžén gð endstream endobj 209 0 obj << /Length 154 /Filter /FlateDecode >> stream xÚ31Ð3¶T0P0RÐ5T06Q0µPH1ä*ä26 (˜ZBd’s¹œ<¹ôÃŒ ¹ô=€Â\úž¾ %E¥©\úNÎ @Q…h žX.Oö ̆呰=×CñÿF fbùÿÿÿüGÂŒP9*b9Bè†ÿ ¸þAƒý‡@‡=:ðб \®ž\\1…j endstream endobj 210 0 obj << /Length 159 /Filter /FlateDecode >> stream xÚÕÏ1Â0 …aW ‘|‰ø‚:V*E"L ˆ @0·7áhäæ!8Ógýv†„bPÈPré{ cɽì<9xDäÑ{³=pÙ­$xv3dvq.çÓeÏ®ZLµ–5Þl8ÖBJd:R%£?08);êû'”ßh:Ê€~ÐfzÇØš›&j’½« ðó¤É&âiä%?9ª~ endstream endobj 211 0 obj << /Length 245 /Filter /FlateDecode >> stream xÚ}αJÄ@àY¶L³op™7Øž¤9 œ'˜BÐÊB®RË+N,„¤³ô|•¼o û)·g‹l#à 3Åüå9:‘.Oiíè±À#–Žb­çÃ÷5Ú;*Ú+Ù¢­¯éåùõ íöæ‚ ´;º/Èí±Þs¨8(þfn!oÿ`@Ëld*¢ƒÕŽˆ“=l–ðJðÐzx‹Ð3ª^è—ÙGP‚\0(af˜ÁèQwKŒ+5f‚LÀYq>Cóøh¾*âg 4ÕÂC>¡„U¦OÑB6!øFK@¼¬ñ ¿—‡ endstream endobj 212 0 obj << /Length 231 /Filter /FlateDecode >> stream xÚmϱjÃ0à ·ètOÙ© Ù i õPH¦ ¥SÓ±CB²ÛoÒWñ£ø> stream xÚMŽ1 Â@E'XÓäÎ Üı¢‚)­,ÄJ--…BúŽÚà‰4Ì(Ñ·¡{RO_OêR¥†Ò/0øÞÐFC Xo2‹ t†ÁÂ>5 ¾45kŠ Ð4@…Ð CY 2ÍŠÈ$V/"Ó°Ò€Lp­þ—5oùF•n` endstream endobj 214 0 obj << /Length 125 /Filter /FlateDecode >> stream xÚ35Ô³4V0P0bS3…C®B.cßÄ1’s¹œ<¹ôÌ͹ô=€¢\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. ü @ "ê˜ñ?àÿb‰ÿâ;øÇ’„=Ð×?Ð.WO®@.v)aG endstream endobj 215 0 obj << /Length 247 /Filter /FlateDecode >> stream xÚeнJÄ@ðH±0Í>Âî˜sŠóSZYˆ•Z^q¢°y´^©ÚÞ]E‰î⣴> stream xÚÍ“?N…@ÆgC±É6½€QãÚ¸Éó™Ha¢•…±RK vF8Þä%^€’‚0Îì ‘¼Z ø-;;3|óqvrX”ºÐ§ú ÔÆhs¤ŸJõªL¡ù6Ç~çñEm*•ßiS¨üŠ^«¼ºÖïoÏ*ßÜ\èRå[}O‰TµÕ@W‚€dªR‰ˆ;Ȉ,Q–ˆG¨9ÛCi ì7rXKËä0—Aà@$ˆs;’²º:ñ>GOÔ11PV¨GG’ª à{ ré(µëÜ‘  J}1*7S(»$;SheIÙLõ>âoúCø¨^¥f­i0Ó¤ÚÙIñ™Î§ÉÌô¬ð§ Cœ4ôqú¢ŽHºèG®¹‹nJÛè°¬‰®³œcÔC +{ç7ZÛÎÛ¶>»ƒ Úà¿¢‹*E!¼Õe¥nÕ/ÙÏíã endstream endobj 220 0 obj << /Length 228 /Filter /FlateDecode >> stream xÚ•Ò= ð×t y G('«Æv3ñ#±ƒ‰NÆI4:—£õ(ÁÑIÓ¾ú¤H~…þi¿ÕE[ôLK;¶nc<`’˜ïgØìq˜¡\Š$A95½(³™8Ï;”ÃùHÄ(Çbe–Yc6º,wh*àúÀ´.9)"1RH HP+wh ¾yÅ›(¸/*±†øPè#qRDÒ¥LùSõÜ×õ¸c_ÿÿ½Ÿè擽®²éPèÒå[Ì+^« —& ÊIº ¬)J¢¢t*Jl)sŪJ¶SàN2\àîÀU\ endstream endobj 221 0 obj << /Length 105 /Filter /FlateDecode >> stream xÚ3±Ð31Q0P0bS #…C®B.C ßÄI$çr9yré‡+˜ré{E¹ô=}JŠJS¹ôœ€¢. Ñ@-±\ž. ÿA ÉÀþÿÃ(9THü±ÉåêÉÈ’:Õ° endstream endobj 222 0 obj << /Length 270 /Filter /FlateDecode >> stream xÚ•‘±JÄ@†'¤Ls°óšL® œ'˜BÐÊB¬> stream xÚµ±NÃ0†/ê`é?BîÀ‰dSº`©‰ HeꀘhÇ XI-Â#dÌ`å¸s‚ºtÅËgý÷Û¿î·×~Iyºª)x ö5¾£_‰XQ¸™&oG\7èväWèEF×<ÑçÇ×Ýz{O5º ½ÔT½b³!€ÿ€œÈ£‚™Oª±ª–!2J`@;€÷PŽPÈ<²;…‘GgÈ3E9c̈¹*lÊ0´9Útüø / Îà Ýìi†Õnʲm'¾©¿;)¤ø–),åˆbÈߘ^‹ìJq™©Ý‚§®£zµlÑð¡ÁgüÍF‹¾ endstream endobj 224 0 obj << /Length 253 /Filter /FlateDecode >> stream xÚÕÒ½NÃ0ðT"ÝâGȽu¢~n–ú!‘ &ÄŒ ˜Ý7è+õQúíØ!ÊŸ³¯ñ‚ŠÄ„ˆdå—‹³ÿÊl4¬æ\ñ˜¯jžU<ñsMo4HQÇúæé• Ù{žNÈ^K™lsÃïŸ/d·K®É®ø¡æê‘šgáʱ‰wƒ_ s=Ìÿ‡$ p8E €.¢° (±s‡×…¢ÀŸÂ4Ž2ì¥*ȱÓ| ]¹Ñ6&âÜ´LèÎpßàÚ‹À_à‡ýøËÇIHGN!ÄXÊ>±] ³7ž#†Ýfæýß".ŒÎF«?«Ç^Q 3Ò™Ö Ýщb= endstream endobj 225 0 obj << /Length 244 /Filter /FlateDecode >> stream xÚ…¿J1‡gÙ"0M!óº·`D«Ày‚[ZYˆ•ZZ(Úºy´}”<•aÇ™¹ãôP1|ðå—?üâéáIO :¢ƒžâ1ÅH=>cT¹Pc;÷O¸°»¡Øcw!»á’^_Þ±[^‘ØÝÊ™;Và8ƒŒ‘?dm˜gPÇj·\R…q :“dÄ„*Á |…Vbn¶;ƒg³Eó çd˜ö1Öo( Ø÷aãhDBÿcü³!ýD[Áo˜¬1¿En¥ ¹±¦ä%iêÝînª6N:ó\ÒZÛ` æ]H›_ÙI<ð?yë­œ endstream endobj 226 0 obj << /Length 138 /Filter /FlateDecode >> stream xÚ36Ó35Q0Pacc …C®B.# ßÄI$çr9yré‡+Ypé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]ìþ``üÿ€ùÿ0fÿÿ+†ÉƒÔ‚ô€õ’ ä0üÿ‰˜aˆàÿÿÿ@Ç\®ž\\ÍÙ¥; endstream endobj 227 0 obj << /Length 107 /Filter /FlateDecode >> stream xÚ36Ó35Q0Pac c…C®B.#K ßÄI$çr9yré‡+Yré{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]ì0üÿ‰™˜aãÄÿ„޹\=¹¹µ‰Ã endstream endobj 228 0 obj << /Length 232 /Filter /FlateDecode >> stream xÚíÒ½jAð WÓÜ#Ü>·ÔŒ‚WZ¥©LÊ+³vrp!E¶›üçT°+‹ ó›Ý-ÆÙÇvïÞXÓÅqöÁt;æÍñ';ë±j-->x˜súŒÇéiNó©Y-×ïœgOÙ‘yÁÌ+ç#CYEI ºO$RáxŠ%4ˆDJʤnï«Ò 󢣨Ò×®U¶¤ Hª@Yûƒ$߸»Np·â§¤D@¥(€þ¿ØAx^ƒæ §¨å9ìÅE…ÿÇÍÛ„ÂÆip xœóœÿvÚiC endstream endobj 229 0 obj << /Length 184 /Filter /FlateDecode >> stream xÚíѱ‚@ à& &]xúÞÜHLtr0Nêè ÑUy´{ጃ „zwÀ¡Í×6ÿÔd4”’™JBG´ñ„qlfiG{Ø1+P¬)ŽQÌÍE± Ëùz@‘-§¢Èi’Üb‘¤‚˜µ©ÒÁc®|æÚ!P÷Æái à±®!`{èø.ÿT¼ÊV6ß¡ýAÓõ_°yÍÀ4Õ8+p…o âøš endstream endobj 230 0 obj << /Length 231 /Filter /FlateDecode >> stream xÚµ‘±‚0†kHná¼Ђ±0’ &2˜èä`œÔÑA£3<šÂ#02Î^KL%!_sý{½þ¬æI‚!.qa¼@¥ðÁCT±Ý9ß +@P% 7º ²Øâóñº‚Ìv+Œ@æxŒ0> stream xÚÍ’¿NÃ@ Æ]u¨ä…G¨_.!MB§H¥•š ¦02€èœ<’GÈx•ªÛ¹F:¡.§Ÿ¾óùÏçË“«è†"Jèò:¡lN錞c|Ã,5¢<WO¯¸(Ñm(KÑ­EGWÞÑÇûîÝâþ–btKÚÆ=b¹$(“#ýÑÃ!@5@÷Šøo˜J ÿ§4ö{®aäÁ³ÅŒòßëŽfJ®`o}4¼‘.lO­%Þw£‹m_…mt§¢e4](z†`_ëTÀU‰øµ`  endstream endobj 232 0 obj << /Length 169 /Filter /FlateDecode >> stream xÚÕÏ;Â0 ÐtõÒ#Ô' ’VbªTŠD$˜02€`nÆQz„T d¨jœ20õXö“üYœé™žcŠš+ã4xRp“s?¶aq¼@iAîÐä W<i×x¿=Î ËÍÈ ÷ ÓØ Eá¢^¹˜6¡–­É±Câ‰:_øˆ:WóÑ«}ßÍO_ /h‰ Æmƒú ýIž™–¶ðj^¤ï endstream endobj 233 0 obj << /Length 259 /Filter /FlateDecode >> stream xÚ]Ð1NÃ@Ð¥°4¾;ÛŠBƒ¥$\ ‘ŠQ%Ú¬æ£ì\¦°v˜Y)¢yÒî·çÝT—ëk.¹æ‹Šë57 ¿UôIõJ/Kn®æäõƒ6O\¯¨¸×k*ºþþúy§bóxË[~®¸|¡nËXÊp8™ÎÙë…HDÑFä#ò°Ô々Ú~Àþ¨¨7ö'ÉQÈ”´^;LKZ+45qj@.dêtÜÇv“ù!¤¸Ç"iíÐÄÌôehÖ”ôÁjÛ]ˆÿdVçµ³½ÍSuž‡è ±ýõ?h©›ÓêgåcfKxýºëhG¿Á•¡Z endstream endobj 234 0 obj << /Length 186 /Filter /FlateDecode >> stream xÚ35Ô34S0P0RÐ5T01Q07SH1ä*ä21 (˜›Cd’s¹œ<¹ôÃL ¹ô=€Â\úž¾ %E¥©\úNÎ @Q…h žX.O†ÀOþÁN2bÌH$;É&åÁ¤=˜¬“ÿA$3˜äÿÿÿÿ?†ÿ8H¨úANò7PJÊÃç‚”ÿÇ`$ÿƒHþÿ ÀØ`ÿð(Èþßÿ ýß E` q¹zrr:é“p endstream endobj 235 0 obj << /Length 187 /Filter /FlateDecode >> stream xÚíÑ1 Â@Ð  Óä™ èfÑlì1‚[ZYˆ•ZZ(ZÇÎkÙyÛt¦Ž»‰… а{üáÃÀ»°O!õ¨­(Võh¥p‹ZÛ0¤(j.Ë ¦匴F9²1J3¦ýî°F™N¤Pf4W.ÐdI àñ˜Kü#ZX€ƒøã+üÏÞ8ä¯È’ àö„wåÂ6î .n ŸÁÉÁNÃõ<sUÃv‹öÁ848Å”Ìðn endstream endobj 236 0 obj << /Length 270 /Filter /FlateDecode >> stream xÚ…±N…@E‡PLÃ'ì~ >ÄX‘<Ÿ‰&ZY+µ´Ðh+ü™| Ÿ€ÝK$\gfÑX)Éæ°{÷žúä ÚøÂʪýÑÆß—üÄu%ûB·úáî‘·-‡k_WÎeÊ¡½ð/ϯ¶—§¾ä°ó7¥/n¹ÝySÌÿ‘º…Èí‰壼£'7¬ìe†"Ê0Ò›0ÅDr„ì“92•ãD˜ÓIÙ-Ù¨l‘ÎèðÞ+s@!ËÊÙ˜Âb4ÐHëÜþfƒoöqŽ!þÿC»?ù„õI?b`6ÅÀ|ŒtC t} lL™D2r1uIU'‘TuIk*’ÖT%5P%5°­!Ä.ƒ>“ÏZ¾â/1¢¸¾ endstream endobj 237 0 obj << /Length 137 /Filter /FlateDecode >> stream xÚ33Õ37W0P04¦æ æ )†\…\&f  ,“œËåäÉ¥®`bÆ¥ïæÒ÷ôU()*MåÒw pV0äÒwQˆ6T0ˆåòtQ```c;0ùD0ƒI~0Y"ÙÿIæÿ ò?&ù¤æDå(I²ôÿÿà"¹\=¹¹VI¢” endstream endobj 238 0 obj << /Length 301 /Filter /FlateDecode >> stream xÚ}ÑMJÅ0à)Y²é’Ø–G_]x>Á.]¹WêÒ…¢ëôh=JŽe¥ãüˆ? Ú¯if¦“tߟ ChÞ¯6 §á±s/®ßÑ\¦¼ððì£knC¿sÍ%½uÍxÞ^ߟ\s¸>kŽá® í½Ào@£B,D¸'€DdZš"-š,-ÚB/6¨3"x‰š¢äç”™œ®—ÓÊ®k‰í ƒËpÞ7q|Ì$pãFúæš¿È »ùdíL™@ÚAvüZ´H¥ÙFÓ¬¦YM«5Þk|,ZdÖìI³eb4Ðj`Môä³g!@Tt¶«`[ÈBÍ».àA8ã²EþõËwÌ•b«ÔŠW¢’üÉü'îbt7î}tû” endstream endobj 242 0 obj << /Length 136 /Filter /FlateDecode >> stream xÚ32×3°P0P°PÐ5´T02P04PH1ä*ä24Š(YB¥’s¹œ<¹ôà ¹ô=€â\úž¾ %E¥©\úNÎ @Q…h ¦X.O9†ú†ÿ ÿᬠ—Àƒ€ ãÆæfv6> † $—«'W ÷ '® endstream endobj 243 0 obj << /Length 230 /Filter /FlateDecode >> stream xڥѽ Â0àá¡÷¦…¶Ø©P+ØAÐÉAœÔÑAѹ}´> stream xÚ½Ò=‚0à’$ßÂüN`!!U'ÄDŒ“::ht†£qŽÀÈ@Z©mIjüÙlBÚ-ïË$ÇCŒû‡ÏOñÁ¸š‡jª^gHs`[ä1°e¿ ,_áíz?K×sŒ€e¸‹0ÜCž¡ì‡ „(eml ñdE|µQ”ýb©M*mÐhýVK;-Fi,ŒI©U®Aml´¾µu¥Öø¡ü“ΧâûýéË÷Úl.CNµ›ŸÍÕZ¸=x¦Úº½%õÐë³gizïÜÿ@Õ‹6ð ·¯7 endstream endobj 245 0 obj << /Length 296 /Filter /FlateDecode >> stream xÚÅ’±jÃ0†OxÜ¢Gн@k»g«!M¡ íÔ¡mÇ-íì@^Ì[^Ã[WŒÕÓI –õq’î¤ûÿUu¹¤‚–tqE+þ z+ñ«Šƒ…‹ÈÊë®ÌŸ¨ª0¿ã0æÍ=}ý¼c¾~¸¡ó =—T¼`³!ÐÀ–g°¶ƒžçÌÚA@jTê®,÷ ÙÈãÀ°8¨_=¸eãöµ½âC»¶®ŠîAMF‹^ò ¸|œ:I *©@=‡N` í¿À÷Ú ”åž»kÌÛ6„Öñ9&>0s‚!€žof ¾á&j‘‚—ɤ¤”bu”» g€ŒÏ«C0I¶µòF‚)ZëÍæ¥ûàmƒøê*­ü endstream endobj 246 0 obj << /Length 229 /Filter /FlateDecode >> stream xÚuϱJAà¹ba ï ¼yÝÙhº…Á+­RˆPK E;1 ¾Øt¾Æ½±»âp½‹ S|Å?;?¬ŸÏxžjösö3¾­éüTCÆÍÍ=-r+öSrg“kÎùéñùŽÜââ„krK¾ªyrMÍ’a{è„Õ®lBŠ-`a:`Ðu)xªu‹w­äG½W‹˜ÕùÇ2©&e˯œɦá¶ÏÚnh›‡Î ÙÍhüuð‡aǨ‡k}ÿ¡ Þ[ bÔªµoŸb»ý"E“z“†O¾€Nº¤oÉŒla endstream endobj 247 0 obj << /Length 213 /Filter /FlateDecode >> stream xÚÅѱ Â0à; ·ø½Ð4X-‚P¨ vtr'uTt•7)7´&/¡Â“²‰Ž hÀ4³“"¯rM¾ò¨Ó˜îzd‡Ú endstream endobj 248 0 obj << /Length 203 /Filter /FlateDecode >> stream xÚ½ Â0…Oé¸KßÀÞд¤v øvtrAPGAEÁA0–Gé#8:õÆÜòANȹß-LÇÎØp;ç"ã¢ËëœödJ åZ¾_V[êU¤glJÒ#‰IWc>NÒ½IŸsÒžçœ-¨0pu@ÜÜ€Ä_‹x vёÒZÕ°uú/¬{#õÒ¡^EÈAó^Uö‹ÌzÌÅN4° ¨E A2ò¢;Wa…Äé ¨°V4¥'VhLr endstream endobj 249 0 obj << /Length 210 /Filter /FlateDecode >> stream xÚuÏ1jÃ0àg<þÅ7ˆÿ 4²‘ã1'…z(¤S‡$ MH×XGÓQ|„ŒJÝW\(TˆôúŸ 7uN3uúk‘i1Ó}.Gq%CËáf÷&u#öU])ö‰±ØæYϧƒØzµÐ\ìR×¹fi–Šè €éÆWà‚Op_ÝPIÓ!õ I@Ò*¤#f %×#ý¸~á,üK{ÇT#ç¼³¶,„ΰq`É(°nìYÜsLøâ¾Þ–ÇF^䃷V2 endstream endobj 250 0 obj << /Length 125 /Filter /FlateDecode >> stream xÚ32×3°P0P0b#S3s…C®B.#C ßÄI$çr9yré‡+ré{E¹ô=}JŠJS¹ôœ€¢. Ñ@-±\ž. ŒØ€ÿ‚ˆ¥ˆŒþÃûæ? : æ ÿÿÿ€ .WO®@.»P endstream endobj 251 0 obj << /Length 110 /Filter /FlateDecode >> stream xÚ32×3°P0P0b#S3K…C®B.#C ßÄI$çr9yré‡+ré{E¹ô=}JŠJS¹ôœ€¢. Ñ@-±\ž. ŒþÃûæ? ŒC 1ÿcøÿÿq¹zrrp^Ú endstream endobj 252 0 obj << /Length 203 /Filter /FlateDecode >> stream xÚåÐ=ªÂ@ðH˜Â\@ÈœÀMü BÀ0… •…X©¥ ¢­ÉÑö({Ë«ãî+¾¼b†ßü§˜aÖé8åž«|Äý>2ºPî³Ô~±?Ѥ$µá|@jáRRå’o×û‘Ôd5åŒÔŒ·§;*gX@l$Æu¯8lSyÕEÈžñn!Ñ­Á£X#xiTCÄÆ©F•þHjODO' 0¿ôvÒÊÝö§þ³B÷J#n Ò$"¡ˆù&š—´¦ݤ› endstream endobj 253 0 obj << /Length 209 /Filter /FlateDecode >> stream xÚ= Â@…GR¦É2ÐMtý©bSZYˆ•ZZ(Ú‰ÉÑr2EH|›((vÂðí̛ݷ«Ga_<éIÛ=Ý—½Ï'Ö]ˆžQêÎîÈAÄj-ºËj™U´Ëùz`,§â³ eã‹·å(¢8!"«Ê@'-À1¹à4r²Sjed=L A Ñ‹]l»ÓŒßÄñ V0ùee˜þǯÛ̬äsnãÄ…«òíž ²Áœ¬Ì”/óÍKÝ´í*ëßàYÄ+~PûZ> endstream endobj 254 0 obj << /Length 144 /Filter /FlateDecode >> stream xÚ36׳4R0P0a3…C®B.c˜ˆ ’HÎåròäÒW06âÒ÷Šré{ú*”•¦ré;8+ré»(D*Äryº(0ÿ`þðÿ‡üŸÿ?lìþÿ(¨gÿñà?óÏÿ6ügü  u@lÃøŸñþC{Ì ´÷ÿÿpÌåêÉÈÈöPê endstream endobj 255 0 obj << /Length 160 /Filter /FlateDecode >> stream xÚ36׳4R0P0RÐ5T06V03TH1ä*ä26PA3#ˆLr.—“'—~¸‚±—¾P˜KßÓW¡¤¨4•Kß)ÀYÁKßE!ÚPÁ –ËÓEó¡a9$lÄuPüˆÙXþÿÿÿ¡$N#ÌC®ca¨gc{ ùù ì00þ?À”àrõä äùJm endstream endobj 256 0 obj << /Length 162 /Filter /FlateDecode >> stream xÚÍË1 Â@…á·¤L¡°˜ èfqCÊ@Œà‚Vb--+'GË‘<@Ⱥ!Xè l¾âý3©™ŒžóÔpjØZ>ºíÇ„m:”êL…#½c›‘^…™´[óíz?‘.6 6¤KÞNäJV- ð-rÿeÜByD¡z 7ÿ«ÿU}Ä`‡(øD,uxIƒé0nÒ·WR héhKo©b“ endstream endobj 257 0 obj << /Length 197 /Filter /FlateDecode >> stream xÚ=ϱ Â0Æñ¯8nñzO`Z¢  j;:9ˆ ¨£ ¢³y´> stream xÚ½½ ÂP F¿Ò¡¥Ð¼€ÞVn«“‚?`A'qRGE7Áúf}”>BÇÅšÞ‚Šè*3$|9º×î†ì³æV‡uÈQÄÛ€¤}®+ê5“Íž†1©%kŸÔTڤ⟎ç©á|Ä©1¯öר8Ux·èã”À*à%V7±38©“ÂÎ \Aî&°rOP ådeyÜ¿¡>Xý ?c\%éý#øë£æË'q¶(I£©fÔ‰µNšÄ´ ƒ…) endstream endobj 259 0 obj << /Length 131 /Filter /FlateDecode >> stream xÚ3±Ð37U0P°bC33…C®B.c# ßÄI$çr9yré‡+qé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<] >00013Ëñÿ ÿAø9³ùà óÿúóCýÿÿÿa˜ËÕ“+ Ìt^@ endstream endobj 260 0 obj << /Length 259 /Filter /FlateDecode >> stream xÚ]ÐÁJ…@ÆñOf!"·."ç åÚÍE0p»A.‚Zµˆ ¨vµ ôÑ|Á¥‹ËÎgH0?˜ñ?p´¬NÎNmn¹ÊÒ®×ö¹wYUºÏ¹å‹§7ÙÔâîìªw¥§âêkûùñõ"nssa q[{_ØüAê­…ÙÈB´aD4%;˜>Ú#îp¨§Ýà{%*eÌdl”鈧W”]èHÿ‹ùOË·ž¦…dfä 3Âױt¢KÒ‡óF¼oæû¼³MØfl=³oÂ,"†EÌ"pLΉ~WІh–Fš¥F³*Ö4×€& !Œ3ž´DWþËZnåÎvj endstream endobj 261 0 obj << /Length 206 /Filter /FlateDecode >> stream xÚ¥ÐÍjÂ@Àñ„@CÐkBç º·‚Ð õäA ¶GAEÏæÍÌ£äMbö/hèµûƒÙf–Éf¯Ó±Zµ'›èdª?©$¶¹u©{øÞÉ<³Ñl(æ½½“èéxþ3ÿ\h*f©ÛTí—äKõ> stream xÚ¥ÏÍJÃ@ð Ci®Š°» ùX/b Í¡ §ŠPB,íM$–Gé#xôPÔÝ .ÔC¡3ð;ÌÌîÎ&z’§¬8åë˜ÍYÎϽQ›¢âì¦ë<½RQ’\q“\˜2ÉrÉÛÍî…dqÇɯ#VTÎx$ltŽøc¢uZGaýÚL„ÂùÚ¨EeT°†{Øšôk€ç.àÐYàjXà î-æ‚^› Çð Þ:~ÀwÇßޑþ×ÿ'žaðÙ”æ%=Ð//ó]ã endstream endobj 266 0 obj << /Length 287 /Filter /FlateDecode >> stream xڕѽNÃ0à‹> stream xÚåÓ»JÄ@à¶8MÞÀœÐÌÀÞ„°ë ¦´²­VK E[7e°°ô $2EÈ8gfö‚A´³0ðÍ%sù'™ ¦Ç$iH‡Š&’””t£ðÇ#[ËeåÛVw8Ï1½¢ñÓ3®Ç4?§Ç‡§[Lç'dË ºV$—˜/%¸K˜ó DÀºý¿ásÐ¥0­GbŒÇڷ鲸f¼V Æ[÷ÖïöÑ1>8Q†«.ìÝ„y4¿šT1£bÔ<¢[σ¶‡. êÃ| Ø¡ø ü¼Âº¯;í‡ Úý \tõ~˜Ûœ9ù„“ÙAƧÇrà×:ösÂLn˜ÙÿÊrÕnÈà™7ÃІûÂbÓ„/ǵàiŽ—ø »ÆËH endstream endobj 268 0 obj << /Length 267 /Filter /FlateDecode >> stream xÚ‘±J1†'lq0…ûÞ¼€f̰pžà‚Vb¥–Š‚]òhy”}„-¯86ÎL¢œ‡• Ù/Ìü;“üq«Ó5äè¤%×QwFO-¾¢kHfçræñ×Ú;r Ú+£®éýíãíúæ‚Z´ºo©yÀaCÕ 2–i¤´å¯™5º˜À€z„>‚¬%k<&rš¥,«¶`vŒìd+q3Ëß’1«^+ü ô\úoxE<@ØG*Ðqˆ ÷ù/|AüýoŒÙ¸=˜¨×,¨¢8U(`‡Ø´ fA-©‘pœûžçÚŸ¹Ú¤Pjí"ê{mœ¤ÔIš€‘ƒã倷øYRŽ endstream endobj 269 0 obj << /Length 351 /Filter /FlateDecode >> stream xÚ­‘ÍJÄ0ǧäÈ¥¼€¶‹µ‹§Âº‚=zò ‚ =øu“mÁë£ärì!4ÎLRuD¶„™ÉÌüg¦^îW¦4•Ù;(M}hêÊÜ-Ô£ªKCÿQ•\·jÕªâÒÔ¥*NÑ®Šö̼<½Þ«bu~lªX›«…)¯U»6À_‡GzahBŸ ‚Õï„—ã›t ]æ2 º‡¦G6Da)…Æh˜rûÅÌcf÷EA¿1-Û?pλëÛÕ³«÷³î I}Òˆš6Ä¥£P€gOén Àâܘ’ÝÙ'û+ít‰c¢„036u! è’¡AÒMÄ"9Ñ%ûÈ} |H³=¤X9ÑZ±H v¹÷]Ͻãm³E=L‰QVþgÎq)Ïœ¯ïRþT7éØD]àãn²¤Çó cˆ»Æ’|´M É'bÛ<Î%øªNZu¡>ÚvÔ endstream endobj 270 0 obj << /Length 142 /Filter /FlateDecode >> stream xÚ36×31R0P0bcCKS…C®B.#ßÄ1’s¹œ<¹ôÃŒL¹ô=€¢\úž¾ %E¥©\úNÎ †\ú. ц ±\ž.  Œÿ˜ÿ30°ÿoÀŠAr 5 µTì ü@;þ£af f€áú!Žÿ``üÿè¯ÿ ȘËÕ“+ > stream xÚ36×31R0P0bc#C…C®B.#3 €˜’JÎåròäÒW02ãÒ÷ sé{ú*”•¦ré;8+ré»(D*Äryº(0°70ðÿo`ø†™˜†ëG1Õñÿ ŒÿÃúÿdÌåêÉȸ§‰ô endstream endobj 272 0 obj << /Length 249 /Filter /FlateDecode >> stream xÚ­‘±NÃ@ †}êÉK!~¸5Ç©©*ÁÔ1#æÜ£õQú3T9l× êÈÝIßɾü±‡Ûë5•TÓUEá†Âš^+üÀ:p°¤PŸ3/ï¸éÐï©è·Fßíèëóû ýæáŽ*ô-=UT>c×€Kxåiôi$Þ«Š@v”#W@Áø!ç'=rå4à8 E\)™æGCÎ †B1Š:‹6ŠÓ½bê¥:wZ¹KÿŠ??²"XÖi=Ì1w«½fùbpêYœ4?Í]óšeä[›ƒã©ÄßÙÄt~xßá#þ°´”ð endstream endobj 273 0 obj << /Length 185 /Filter /FlateDecode >> stream xÚÝÏ? ÂP ð¯,d°«ƒÐœÀ×ÚVt*øì èä ‚ Ž‚ŠÎ¯GëQzÇNÆ÷:ˆƒx‡üÈ—@ i¿—Drj*ñ æCDJb“Cíb¢qNjÍILjn¦¤òß®÷#©ñr©)oÌ™-åS†¯†/ž–ÂX¥ˆSeF·Ô•+^¡+ˆkÛª»d%ôA¢è3ðv×X}Xþ´øÅ~äÈö"õ7i–ÓŠ^¤Ds. endstream endobj 274 0 obj << /Length 191 /Filter /FlateDecode >> stream xÚ35Ò31T0P0RÐ5T01U°°PH1ä*ä21 (XXBd’s¹œ<¹ôÃLŒ¸ô=€Â\úž¾ %E¥©\úNÎ †\ú. Ñ@ƒb¹<] @€ò>’ƒdF"Ù‘H~$RLÚƒÉz0ùD2ƒIþÿ@ÀðƒD1aˆ’Œ¨L²ÿ``n@'Ù˜ÿ0°3€H~`¼ücà1ƒ(¸l@Aÿà(ÀáÍþÿ8¸\=¹¹~@‡Ø endstream endobj 275 0 obj << /Length 203 /Filter /FlateDecode >> stream xÚíÒ¿Aðïr Éî$7/ÀÞÆeQIüI\!¡Rˆ ¥¡æÑîQ<‚ReÌž V÷Ûùv¶ù¶™Ö[mN8åšå¦e×॥-9§Ã„]úHkêfd¦ì™¡ŽÉd#Þï+2Ýq-™>Ï,'sÊúŒ0eQĈ"”ïüå²ÇÜŸÞÑñþñ3‚Ï?£(%V” œÊUè… Ð’“n(6áÁY4nú+|×<>èÈ­h‘\Ð ºEƒŒ&tj8­Ú endstream endobj 285 0 obj << /Author()/Title()/Subject()/Creator(Emacs 23.4.1 \(Org mode 8.0.6\))/Producer(pdfTeX-1.40.14)/Keywords() /CreationDate (D:20141227203859+01'00') /ModDate (D:20141227203859+01'00') /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.5-1.40.14 (TeX Live 2013/Debian) kpathsea version 6.1.1) >> endobj 2 0 obj << /Type /ObjStm /N 68 /First 555 /Length 3425 /Filter /FlateDecode >> stream xÚÕZi·ý>¿‚µÔMï@0 #J„ø‚e#Çb?Œµãõ «aw;þõyE6žÙ]ÍŒ$Ѫ{ØlE²êÕ+²• -…Öˆ(‚JŠh…RB‘Ç%ÈàI ¤P(¥ðä…µqA¨%ñB8ƒ‚F¸¨¸¥@Qh‘”ð":+ð¬¤D&·£ €fÑ‹vh×¹…Ö¨ÍÏÈ7!ƒŽ,zÓhÕ‘†Ð£$aPßGsAÅ\ÈÅ!Ý‘$…UWÃj]¼¨˜ p|þìYêa|ž,f|;~÷;žü¸Ý~øý8þôÓOÃÕ/ëÃæöjüåzýýx63)m4©NZ„_­’qoü‰*TÉFUGÒðÄQ½;*£N•¡ÿâZq›üs¦^Œ_.߯Rs¹Ó/–ÛÛ5g 'ñWR¹Ä‹4^ñT‹§ÀA°p‹~rXì]y޼ǔ¾ÉÃ/ßÞm_þ¸¼…m,ÆÏ—Ó˜ÝbüËúrûã³4Á¸y·¹\ß\1CK\’G‘:¹çV^gaÿþŒx¾Ø£Äü“³,òC³ÄA‚üéÁÁQSÜŠðÝì–,l``‹·Œ2¥ETŽX„¶ÖeÞ uë~XAyeÎ)ŒKâ†Æhv¹ú,q\¢ÑZND.ÐF¾Ú$Õ— œ™n†oL/]÷:pfºqŠ›PŠoÌu+¨¸v¾Y¾9¾1÷ ]™Ô߈Û!Uša&añ+iLÆ„8<LV}À”Æú.ëæ]Õ°yª º>DŽs¦ÄÖÖ%¬«àúUÐI[%Û´U>ª¸«(vå¥*¤3=¢`×`ßÇÙµOá¬aN`ü'›µŸ™µ«f­(ìØµ*œ¥¶Ê#[6 W`d§{¶1xÅŒt€¨vÐj–­qwӽ˕–#§“™råûnrÖX«àÑL)燌{å±vq=vÉÁ„b¨EØåg`w6-¿5%Ó°ÔÔRé:—Ú–-6J˜¥Nt_¤ˆm<#J~Ê35UëZKEꤹ2uýÛ,^NO÷Ôï4¼ÕáÐ&]ŒCˆ¨e5v HI TN7LѾ 0~×402(›. Àøö†Ë㲨c?–pÁæM-a!Aº`mM ‡r0>׀ʡít $w¨ãв‡>¨ZÊ£^º4‚÷–‹:Ð^ßäò¨.„ò­×€q§Ë Ào¹è% °—;X+Ìšoô8,{Îôb3ßô}€Ì·°ƒÂ|šS‡æÄ¥ÉuøìE( ›ݰè¡àø¹/e@b}ÁF,(ÐBéKy»(e ¾”Aèà 0Ã)ø¸P _0ÚðNiÈòÆN©ay·ª³<®åPU‚è –³¤!Tɇ¶ø28–Pš……Ò*}(uª¡ÖÅda1šP‡Y‰ep},íC€X& £Œe<˜¹Xú ¼TÒFÄÒ/k’o3–~‘ˆ±9Oö™Í{²ÓlîJVŸˆ™@çMÙ‰6wÊú×ü)4±>ñ†“ïÜ+_Í¿òÕ,_ÍÃ*¥:«T•Eñ~“î<®R¦s¹JÙÎç*å:§ËWyâ]®Ðù`¥bç„ùj^XQ•%YBs×ŽÝæqÚø=-ƒvÅG—ôÜKƒ|Ôl²ŽS½tœ‘oÕyi½Ë¾•vû^ºño—hkr\SªåÜ÷—ßà/Ò±†vP¦f¥¬†}LÖZRz¦ÑšzÖº×},Õ2ÇR-™¨–á­“QÛÕ¢¶ˆÛ"äí1ÔAž#àH¨0ÿíï÷å}êÍáw¹÷{røµ×ÊéRVú±vJêu×vüÀÃÐt8„ÁÒu?%‚)¥káB ‹c}rv¶™øÑÒñîÆ#4)¢5ø©Ø¤‰h*š#èËÜ~¥=Éœe2Äw„†¶7ìÀ²¨2òñR AQøÔ§r¥C#)JWÆÂGU¶QUcV>$«¡)rU` ªR$¦0¾§0¾§0¾§0¾§0•ªðaU%G–ÏâJ§ˆ^U¥\ˆ^Uåk6¬¾‚NlÄG•m0^zeŠ ‘Gª×P5 f®5³P3Ûh5cs ©™m´˜šÕ¤Õ¬-ªf~ÑÂjæ-®f~Ñkæ-²f~áLÏ/œí…s=£p¾÷.ôŒÂÅžCxÙó„‰(áQì Á»dâùÛíÉ5B…;UB…?5B*´àÝ?FÊŸ6ƒ+A·U´'ß÷KÐßý–?(„ %ÞO»fŸv NÆÏrñr±Óö››’žCw­ÒÝ$¡îÌš!¨é)¸úœªLãà$àŸ8ñ2oTÉAÇò6›ëË©»“vðÔóiÜ=Ñ/9 ÆSt›"\„W-jÕ»‘-‚Ò%B”¨þOÀ½xõÂó·5cL®qšáóyÓ—jHÁˆØÂ<È×ÇyªtŽ »ˆNÕ¹ªÆtŒ•5¨c¬¬Qce´=VF×ceô=VÆÐceŒVRßy<©+©‹ï0âß+©ÅwÀjñïµøŽ7ØZ|§¸¿Ða%uñzïâ;žaÕÅ[Ôâ; 'MñÝÈiNªè©S€N‡Ogð)|*Ðà³8Ó>jQ•e˜Ë÷OaY´CZK`PÝ åƒs$y.½ñ®çC Þ£°&Œk)h £w.˜+ç4šÐ êÔÒ]¹ú†÷qsІáPæÓ¦Šk†Î[rŸ­c:ìú€#o¨É†AŒ4ÚwHS¹$¤:ÏÛ}äOîøÛ£7[ðÿÏëË»úÉâôíÝôÅ×ô‰T6òo}¾ú¸½^ßpKI«ÄÔ/+•˜Æ•» Zo½½^‰i”ÏÅ4/õC¦éÅ×·«ŠùÆxªgK=u½/ù{¤ÙÉFöäÕæÝÓ·ÛåíöLäÝñ俀?`Íû Ó3‰Ì&¦g}&tÿÞœ‰L§§g{&2FÁ?_¿_ow:+¥.vš>]ýK@S‹ÝWµzž±ün/} ]ÁÚS^SÊ;né#êGļ§þ«ÕŠÑ´Á?[÷—ËíòzsµÈzT¿m,êÐ-H-•#.þÅær5~w·jºóÕ‡ÕMþ,Q¨úMÆ¿r ö! endstream endobj 286 0 obj << /Type /XRef /Index [0 287] /Size 287 /W [1 3 1] /Root 284 0 R /Info 285 0 R /ID [<10960D604147AD95E9E7ED43CBD5BCD6> <10960D604147AD95E9E7ED43CBD5BCD6>] /Length 824 /Filter /FlateDecode >> stream xÚ%ÓwtˆWÇñ{ƒØ[²dIƒDHHŒ¢jï½i‚8©R{—hkÇžÇ^EÐ;1ƒ áXUµ…cÕ*ßßëŸÏyß{ïûÜ÷¹Ïs1æ“‹1.ÆšIFOEœ°ÂE¸‰Z"—È-òW‘W²Æ¸9ò‰ü"ZDŠ¢²øJ‹òÂGx‰QL¸‹ÂÖ¸&;ñŠˆ¢¨5c±â¢´(i{˜3VJxŠ2Ö°^OÖ”ñ#7ùày¼2¡œxG€ÏðÝ~ÇÀÿ0øC`;J†à}r*\…Ð;æ ÒBg£²¢œð¶¦òC&ÂBÄE¨¢×È'Pu#TQm :—Pøê  F}¨Y b 6j…B\iˆïµÇCPÏÂ×Z\?¯È†s áøF›«ÙÆIФ4]ÍNBóÇÐâh¥Ãim¼¡íPh×ÚGC‡®ÐÑ :Aç¢ÐEëºÆC7N÷–Ðc ôl ½@ïÐgô½ úD呸úÇ€‰”ê¯ðþÖ <ÂD²|ßå8KD ²fpCóÀ0O#êAŠº8E~X#•ǨFâü¸FklŒê6v/Œ» rÃDÕ|Rs˜œS”ÑÔó0M%›~ ~RF3tÄ3õ÷©‹`V:ü¬Îùåüzfë³9Š `---- where: filename: is the name of a regular (ASCII) file block: identify a given data-block inside the file; data-blocks are separated by 2 or more empty lines (format chosen for consistency with gnuplot specifications). Notice that comment lines (beginning with a "#" symbol) DO NOT count as empty lines for this purpose. col-range: the range of required columns, specified as `begin:end:skip'. Negative values are counted from the end. Default is `1:-1:1' i.e. all columns. If begin>end the columns are read in reversed order. rows-range: the range of required rows, specified as `begin:end:skip'. Negative values are counted from the end. Default is `1:-1:1' i.e. all rows. If begin>end the rows are read in reversed order. : is a list of single letter options that identify successive transformations to be applied to data. The list of options includes t: transpose the matrix f: flatten the data column-wise, reducing them to a single column l: take the log of all fields d: take the column-wise difference: substract column 1 from 2, column 2 from 3, etc. D: remove all lines containing at least one NAN entry z: remove the mean to each column Z: reduce each column to zscores, that is remove the mean and divide by the standard deviation 2 Examples ========== A few examples can help to understand the gbget syntax. Consider the file `test.dat' with the following content ,---- | 10 20 30 | 11 21 31 | 12 22 32 | 13 23 33 | 14 24 34 | | | 15 25 35 | 16 26 36 | 17 27 37 | 18 28 38 | 19 29 39 `---- i.e. two data blocks, separated by two blank lines, each made of three columns and 5 rows. This file should already exists in the `gbutils' source directory. If the support for [zlib] has been found on your system, in the examples below you can equivalently use the compressed file `test.dat.gz'. Now if you type: ,---- | # gbget 'test.dat[1](1:2)' `---- (the ~'~ are normally required to protect the content of the string from shell expansion) you obtain ,---- | 1.000000e+01 2.000000e+01 | 1.100000e+01 2.100000e+01 | 1.200000e+01 2.200000e+01 | 1.300000e+01 2.300000e+01 | 1.400000e+01 2.400000e+01 `---- i.e. the first two column `(1:2)' of the first datablock `[1]'. By default, the output is in scientific notation, but more on this below. If instead you type ,---- | # gbget 'test.dat[2](-2:,2:3)' `---- you obtain ,---- | 2.600000e+01 3.600000e+01 | 2.700000e+01 3.700000e+01 `---- i.e. the rows from 2 to 3 (included) of the last two columns of the second data block `[2]'. Notice that a negative entry in column or row specification means "count from the end". You can also print /each second column/ of the second block with ,---- | # gbget 'test.dat[2](::2)' `---- that gives you ,---- | 1.500000e+01 3.500000e+01 | 1.600000e+01 3.600000e+01 | 1.700000e+01 3.700000e+01 | 1.800000e+01 3.800000e+01 | 1.900000e+01 3.900000e+01 `---- or /each third row/ of the whole file ,---- | # gbget 'test.dat(,::3)' `---- to have ,---- | 1.000000e+01 2.000000e+01 3.000000e+01 | 1.300000e+01 2.300000e+01 3.300000e+01 | 1.600000e+01 2.600000e+01 3.600000e+01 | 1.900000e+01 2.900000e+01 3.900000e+01 `---- If the initial and final positions in a slice specification are reversed, the columns or the rows are printed in reverse order. For instance ,---- | # gbget 'test.dat(,3:1)' `---- gives ,---- | 1.200000e+01 2.200000e+01 3.200000e+01 | 1.100000e+01 2.100000e+01 3.100000e+01 | 1.000000e+01 2.000000e+01 3.000000e+01 `---- Several different transformations can be applied to the chosen /matrix/ of data. For instance, the matrix can be flattened column-wise, i.e. each column can be put after the previous one in a single, long, column using the flag `f', or you can transpose it using the option `t'. Let see some examples. Consider ,---- | # gbget 'test.dat[1](,2:3)' `---- which gives ,---- | 1.100000e+01 2.100000e+01 3.100000e+01 | 1.200000e+01 2.200000e+01 3.200000e+01 `---- now you can flatten the output ,---- | # gbget 'test.dat[1](,2:3)f' `---- ,---- | 1.100000e+01 | 1.200000e+01 | 2.100000e+01 | 2.200000e+01 | 3.100000e+01 | 3.200000e+01 `---- or transpose it ,---- | # gbget 'test.dat[1](,2:3)t' `---- ,---- | 1.100000e+01 1.200000e+01 | 2.100000e+01 2.200000e+01 | 3.100000e+01 3.200000e+01 `---- Finally, the output format can be customized using options `-o' and `-e'. To fully exploit these options you need to know the syntax of the `printf' command implemented in the standard C libraries. However, the /type/ of output can be easily chosen with a single flag. If instead of the scientific notation you prefer a fixed point notation for your output, you have to use the option `-o' with the value `%f' ,---- | # gbget 'test.dat[1](,2:3)t' -o ' %f' `---- ,---- | 11.000000 12.000000 | 21.000000 22.000000 | 31.000000 32.000000 `---- while in order to have an /integer/ output you need `-o' with the value `%d' ,---- | # gbget 'test.dat[1](,2:3)t' -o ' %d' `---- ,---- | 11 12 | 21 22 | 31 32 `---- in this case, however, be aware of the truncations: gbget rounds a non-integer value down to the nearest integer! [zlib] http://www.gzip.org/zlib/ gbutils-5.7.1/doc/cygwin_install.pdf0000644000175000017500000032006012447776433014426 00000000000000%PDF-1.5 %ÐÔÅØ 28 0 obj << /Length 1167 /Filter /FlateDecode >> stream xÚVKÛ6¾ï¯r¢€H%Š’zLÒ[,šqÑm´LÛÄÊ–KRñ:¿¾3J]/4σ3œá7ùÍêî‡÷¼Mx“—¼Éj›”E›ËF&²hr)d²Ú$²Ýzòfp?¦™à-ë/»³9¦YÅ+fŽÎ«aPÞŒÇôïÕÏp]—pžwu]âuu“‹–'YU@„Žnû`¦ÁŒà_Jöfô^}ýšfœôO².¯Ú&ÉJ‘W] ÿN÷ú– [§üjK¾eƒn¯£PpA ‘pp2$qÝ5e’ ™W¥ ßB¶g^)˜wѳN8GÏâ: žf]Y°{ð(™ÇÈ6å,<ƒm¦>uYƒ)¾ä…9ûÀÀ­åìmD²¬j^¼pkÈ­ºáöá—_‰9(¿×_R)˜ŠGƒY[e/^ † 727®ŒÆT:.!ê (áš $Ù.€p^"¥E(øõ‚¼hM†vjZv²ÚAÊQEÅn©ŸWêDé‹ÙhGEÄíGl¶Áºh¨‹C¦ÆäNT4·äµ·Ið#Q3c”a„Wy-º«a€×BåOªÇkÓºfj§QÉñ–ueE¶sµQ…/kà-v<ίÌC0.ó®j®#¾OÛŠÙñ€×ÌxGÌÝôÚ¯Iñj‰€fÑ ƒsÁewѬ‡AdžEAJm….Ç 9}<…JèhøyœlO˜d·òôT¸ÁÜ›€ÎžÄPÀ&ÛéÒPƒñxr!µ3é’*#Â3<˜Öô„¢dã¼5XP^0˜éoæ˜=¯^ìº UݽÊaª.va×,ÅAþÝÃ2ZÐZª”.t@í£‹¢ñ{â¨m€±°­ÈVS]A#‡ƒ¶½‹Ë­†²zÐÊiÄ\Tì©•ÄT%Ñ5€* 0R¼8ù:Á:@Á‘&Ô(À0?%@ n½9îèœòf Or·’üý5ñçOUþË¡\–üd¤œ1þßÕðöû8á«0¸sæD*¿7Žt'3…cîéÈl‰^B™&²š­… ,…nÈs«w† Ûã‚Á¡;Úºeð´gã¢û†ç¿ÍÁ¿µ$p‘XZ…î{»lißfù,´íõ£"–ó8Œ˜ï•ßÕÇ8h`ävV…û6+ûó<#7§yî|§€O ²9jG68:6€R1èû<†‘QÑ)62ÒЮȄF~f€ý|eðWQÕ*ì š¶ñAÁ˜ ¸{ý¤ûÉ«õ€™B{²{“ ß:8«ÿ™ŒÕ$àŠAêt´SD¶úLÌI†ÚÀ…*,:¹'2¹) 7y÷½>ÅóÎKHoÕ4x ˆŠã©Ö0…ê‘ôK£ B®²^>–°]ÂÂUa´Š6ô!ÎïUŒ¢Ü#©.èK×ÒrEê4~ncé­¢OÖ2k=^1ñnGKûáy¾¦³°Ï—A%3¼¤^ ·›ÞOT‘rþŸ7Ð>ŠóÓÈ\ÂÖ€„s.êù?Ýý´ºû¯Ñ• endstream endobj 41 0 obj << /Length 1204 /Filter /FlateDecode >> stream xÚVßoã6 ~Ï_aÜ“œý²,ßãÖuè€ =­{pm%1êØ™í¤Í ûßGJ²“´¾õ ¦hšúD~$Å#?q%i*E¤à™±$*ö‹¿Tª$3ÎâJt¯2)ÝBK>*W{ݵ‹ßáǃÛxô_9þa½XÝsqšŒGëMij”m"%•™ŒÖeô'¹¯¶ÇÎ.c)á_–àBÏÛ—ªA'‡¼XŠ”\Nè"%„¦Æ*•y¿.?øU’øüÌ€VÈ0!)ºóa˜ œáßq~5Ÿ?ÛÙ@¦¤)Ú92]<Ï/[b(¸$ë=‡»öX—^Æ,¾ÈëÎæåùû4F“§ãà_ñÔí1pHd”3s™ÆžÐc,3`pÓbÈ¡Pb- yØxõ•àÇ-uÞxihý³jú!¯ë D®¡PWOûV'õð¶?|Û ^ƒU²«¶»úì×-Ú½§=»Åº·MiKGßX²äj[†ôí\.2CY6%cSÛ×Ùd·M°ú<çHÓ £U=ŸSC¹Ñ¹aüÆÑ·‹C  döýî âÛýa–µ)°–D[F “·Îþ\JµJ/•ë*%0,´@“XB§Õ æ€%ôwg*¡#sÆÈÔ>­ÉÏ¿ýBJe4÷”ÑŽG]Þç0AxñÎwĦns¬…\Äîu¢4©QΗœôƒ{cóvÍÁ¿ÛøQŸ½÷qáµv ÑþÅuª§¾,ÔNj vÂ.SÝ‚¼ËÑÌWÜÃíë`›‡×\ƒ‚Nd CÞÑí×Ù\gTi~ÕR7ÐR/ýê/É.çÂÅ›JÍ ¾fÇK(3“ÿâË#—ª¨p.£t컟5ĵ-òYêpžÐ$5×ttÖù±ñ]Þw,ÉR*ùmˆB£‡*£Ãñ–ð””3þ<´³ua$UbjçØŠr7’%©Š6HSAÆš1NZ± ÆôbèÞ~|û»‡—C í¼ÙEH€Ìq[Z¸šp&höæÌP)UnB¾½ÂͦßYW< Ûß$_³½Ã5BÉ)L+ÈÕªÆ$­f jW¤7IÂÍŽÍ4Mß‚ÓeѺ{H9›«˜hlZAñX¨Þ/=˜±×Ó× Jú2Aò:þçd;¬Œù·o‘¼(9Ïáj÷><Õû€Š+üœ”Œ¡¡»Î[ü3›¥Gï1Â7°?;^ëŽÍ›¸™T—Ëp_tÕaA÷ÓÔÕæì®•7Ÿ:‹Ÿ¾Îv{hÔúRÇH†9ŒxYf îSÒP“„.ÐrñÓzñTÇç endstream endobj 26 0 obj << /Type /XObject /Subtype /Image /Width 933 /Height 631 /BitsPerComponent 8 /ColorSpace /DeviceRGB /Length 45310 /Filter /FlateDecode >> stream xÚì œÅÝþˆ øš}ã‹ÿ *‚¬£FEB¼@åf((¢¨ €Ç*¢¯gˆGÔxb|=&àA%¢" ADî=X`a™Ýeæ_}Lw==3=ç>Ïçg{º«««]õªên­ïóšáf—¯"nyCM«Û=%òÿÐ}âôH‡'"]t}&rÎ_uwVwç”6W€a8¥v¹aNÞ¨d`8ýmYb¢¦ý¯Ê:š²&ÈJL¶å¸F­Çj­ë×Zq5Šu›_µ“°nóq•­î8HV¶‰·Ý#º ôÌpLè×4½†a†a†½˜°¥iúO“ZÍîVAm“…ôŸ&¦Ú6Ù•¸Õ-ˆµ¡ÕÚ¹«Üí¹Lë¿M´¡Ùè]ÄÚ {Lôm1>Ôâ–ý€µÛ´¸-Bl~&ÿÚ ÍæÂ–¶ºÍZ†a†sÔÍÆ„a8¥6/4&M’4ÝìÆýÍG×·SÓbte³Q!íê*m¸ñï•UäOkɨ Ë#vëÿ’%rmè.Ýd ñàíÚk´îܽl…6|³ã‘¥Úµ;Mô%ÐkZG_…õoI®l®„a†a†á8üçݺ¯ÙÕìšòæWí$Ö†—jCKtŠ-Ž5=h«îþ[ˆ›õÙ¨]J¼^»ä?ºÉºg-×ÚüÓbÝÓè+Ü´Á2E¼6ôZ[åØ^xÃ}³aN¹wÂ0 Ãpn›Ð,g“lšmkm›|Kà–¸Çj­û·– ëÄ%þÕkî÷\ÖìòU*ܵÍ!®¾„¬pM¹6r§n;Û&‡Ã0 Ã0 ùàÖ#ŠŸþ`Ouø@$N‘­È¶É&òþžÖC>ÛþÛZÞòô{»I$XÖºÇ t»~­Ãm§9Úɳ,Ü=éMîî⮸å–ꦙœîp†a8E¶Gs`N…Íž%n2~úýÝ‹Üþ÷ºQ× ÷¹7ÜkJèO“BÞ:ÿvÝçNÐÝm\ q—k:^WÓöª½gܰeõUd[é¿M믳îþ­w=vûΩ£J'JnìS|}¯×üiÇŸ/ÜqõùÄÛGœK¼mH7݃ºléÓqãEmW :cïúÕ„xuÖ5q÷„¹:åþüwÛüS_ÒýÛæ9¸Û÷Ñ’§þþæ£>ú˜Lïž>ú/ËNž´›é…¶  ’„a†»0œSŽD"“^ª›ñ^ý3ÖO«nâKu㟫óTíõ3j¯}²öêÇkG>V;ìÃC¦‡û?î}w¨ÇÄÐé7U8b{—‹«ÃüIĘº@ÙýĤ½ÿ˜±ïÍg*þ>}×Ë_~ÿ˜÷]¿óîkË&_]6ydÙÄa¥· )ß¿xLï£zl œ¾êâ?¹¬‹žˆÙ»{ê)îê3 Öí÷XÉôéÓo½uÂùçŸÿGA={öüÝï~×±cÇÞ½zÝr÷“¦¯åqÝn0ŒÞ]îÂp®áîèµÏ}Tÿ÷9û ÖOy­î¶¿×Ýü,ÕºÑÑaõš'j¯z´vØÃáÓ—ß¾àÎÐYã«:^½ýWÏ%Ûú“ÁÝËtÜÝyßè}ï3¡ÇÄÐ9·Õœ1®ªÓ5ÛÛôúL‡L_é³ÝÄݲ;†ÐÝ;ó‰=ÏÞ·ëÑ åÓnÜyÏuew,½}Xé-ƒKnP<æ²â1—êÓFõØ>âœ-CÎX}y§Yg¶Ñ9sµnwOž¥ÂÝiÓ¦}öÙ&Ööí?hÈð«9=iä“ëÿëúrÉd Ã0 ÃpâîÀ“_­»{¦Ž©7üµnÔcµÃ¦×º?Ügjøâ;C=osKÍÙã  Öœ>®¦ëM5]ÆVžzíŽß\þ9»t"1o.ã‰âné-wÿuòî§ï&¬[ûíB}ÉmÃJoT<¦ÏŽë.ÞquÏíWž³}ØÙdyõg³·ºnÔeMßSgŸó%îþ¿Ïõ.ßsWëv´•dõÁ<çœsÌnÜA­jvMy‹kvÑ6Ÿ„æ<MÄÝ UEö‘|]áïé|M ¼oBg&® Sd¯ù©’ï·Wø¶k#A[ ¤lä¼(¸u Ãùï0Ü´LРϽáñÏÕÝjtÉ^ûxÝ•Õ.¬%¬{Éá?ÞFX7tÆÍ5]nªé<¶æÔ±¡ÎcC§­:õÏũʉ‰»|"QÜ-¹±Ï®‡ÇïzôÖòi7Ú+¬{ÉŽ«ÿHXwÛ3ìåÛvÞ<ð´5}d¸kOf ¸KþÑxŽÙàíîþæòw^íôà¢#·HqW'Þae–Mâ}2LöUô m3­u›ç§¯/ŸÞï+¿qw݈6o´ðNhVffÍ^¿ ›zC=e?ñ2ÉütJV8á£æñ–ü(Œ?œÕÚܵ %CâÏüºÇŸ?ô¬µh a†a8Ïzw/ž󔎩£ÿR7ò‘Ú+¦Õö¿7|éäðCÝ'„Î_ó»›BcCou¸>ÔiLèÔ±U®ÝqÜå_н»t"1q—O$лţ/Þyÿ}ý£Ëîi¯¿ãš v\Õ}ûÐ3ÖíÛa[ÿN[œº¦O§Ù8NOäìõ:Ùž²Šïݵqw@1‡»W<¼ªå=³/«¾âýLÞüdà“·;=6·ÅµëZ\µ›¶>«Á"^ƒ©6¯îÖfZŠÖrÂÓ‡\æçiq*6o¸k°÷ìÑvf¾j¥¤G#çãÆËøo~âÆ]—£ˆâî©Æ¯'w9ñVŒÀ]†an¸;êñÚkŸÐ§1\ùpíàjûÞ¾ä®pÏ;BçL1¾¦óM¡ŽcC'Ý:áúPûB§Œ©:åÏ;~}»v"äO—DÈ·|"—9¸[6eTÙÝ×êÿÞqeéøÁÎèôˆsÖísÒ¶ËNØÖ§ý–þ§]~Ê»øµ…»¿_¯ÄÝþÛô¾Ùae4î}øûCþ\Ñ걫ÿõQ 'žÑpÁÈÈMS>xCéÄÓ?+<ü/O·³ÔÀÝÝúKŠ îÎÐmÖèi­O˜Óô© •;u±×üDKIÇ]£$%+”3ÙÖ M< z/•QÜ]¢ÿù¤^n„][õ,|-=.q+îþ`nbæDº¹pfU‡IçÙ<­0 Ã0 §Û¤>ï¶ša‡¯z´öªGô;ËÝî{oø’)¡žw…ι#tÆm¡So u:ñÆðodžOj?¶ªýµ%Ç^6ßÀ]I"äO—DÈ·|"}¶ëÜqÕyew Ó¿0éªÒÛ†•Ü2¨ø¦¾\ÏðŽvô;qûå¿ÝÞç„­ýÚ¯½´ý{gëà®ÙÁÛiŽ…»}Éò‹w]»å„ZÜ}äû£+/aÑðÈõZÕ‘Ú–#µïŽÐ榽{t³g¶¼ïé–7,vðêÄ[0«1Ù7½Ç´VìÒ8ê‚Yõ‘Hùô^sš“?gÔYH|ûòáŸSžiÝfÚˆÉÇòuÏjõ@µÞë8ެi€Ð¦e]ÏÞ Ý¡cÒ¬qÓZŸ¸èæd†7[ ­2°Kç7Yä‡öaöKø*Z.ßTY ÔŠÞ\¤Ï(½NßÝ” õg™x©õOkÝyƒ‡—DkÏôÏr“…|Æ”3Û{¸‰ß©‹=çÇ:ºn'Îiî²Âö=¿;Ñ̉Y¼ÜQ,¡v]E‘yô~fR¼CwµèlŽY†²Äï°Ž½ëKõú‰»]ÿJ¾¹‘8f¯•…Q°õô26œd›œÖ8 ³I•3 Ã0ì+îž5¾fÀýá+¦ë¬Kþx¿þžˆK¦†{NŸ{gèŒ;B§Þ>ù–ð 7‡¿)ÜöÆp»«Û][rLowéDô;×Ô‰oùDì2'ovVéÍÊn»¢ìöa¥®(?PÙÄ —8óx¯8µxÐÉÅýO(îs|qŸ¶Ûú¶[×»Ý{¿?FO¤ûF휬ޓgiG?Æã.iCGìfqwõ¯\îSîuOøOw‡Ï›>ã®pçIá“o¯m7¡ö¸[ÂÇÝ>îÆšã®)9ª×¿uÈ”%b>¨A•ù–ODÇ]}²å¶Á§½¬ôÖÁ¥†”Ý(½e`ɸ>\ïniàäÒíJúWÒç¸í—·îâãÞïv”žÈ¹Û´s·è¸{â:½w×Äݶ«u &¸âî÷‡½:¶å]ï6v_Ëë-ßPCÜâš°íf£BÚpÃO5ló·CúWY u`±Ža]Ï)'œ³ö¹ç[·y»óìÆÊo·¸²ª@ÿlt _TX¢í칑¢×çt{|Oä“Ó¶D"_Ì%›´¸²¦p‡‰»äsØâ·ÓVhV „H%»ÖÝÿ³áÓŸsÅaª´žÈ¦((~Ö\ßD‘øÍõîž³YOvû§é§ìqü†À•²ÌÄ™Ÿ!²º=Wk—•r˜= á+g  ¤KB³Ÿ57rKŠšàk·ÇË ^ýÛïÞ> IÜ8XKú©Ül¬lsþÌ_ =̯ï‹f©¾@U\0 ÃiöÐjnR&ípÁõ5Þê{_˜0ê iá„Tï¯íu_ø‚ûÂÝï ÿþîpç)µ'ßYÛîŽÚ_O¨m3¾¶Í5Ç\]ú‹K¾4pW’ùÓ%ò-ŸH R SÁÖ~;þ|aÉM} è–Þ2¨dü‡rGw7? U– nWÖÿ×¥}Ú츴Íþṫ]¡'Ò³LûãVxOÛ¨ã²p—,Ñq·\Ÿpuó ²GþÓbÌ~b‡u£& ›®'¦¡·Ù¨:«×®WÈø“ò³:=µim¤vZi‡ž·­Ù¨Úû79ìóÏ{þÖºÍßZ¶ÖŒD*§ švèU•k?fÝ<­u—•d“(î¾ó³è¾Œå¡‚÷-"ÕS%óÔýkͱøWöT6Íœ`¹Ëf Oú¼u |â¬DŒü;iZÚîõN4e’ÏdóÓYß»°ÂĽæ/ öxëØ£¾²žÌ`ØXÇ8´Ê鯲,bæ’Ä ë)SÖ=õróÁ’3Û%(; £x[œ÷7•­4›ÁlýÀ„a†a?¬ß8vmu÷ÛkzM õ- ËŸvwíÉ“ë~{gí±·×sKíÑck޼ª¬õ…FǬ"‘¾÷‡/+ _r_øO÷…Ï»/|æ}µv"ä[>‘€~ó”>þ|Yûí#»ßЫd\ß’›û;¬;æO¥£Ï+»Öy2ÃÎþÇ–]~ÌŽKŽ^ßãÈ:·¶p—øÜm ÎÀÝr½ùê*âéÓ§Ÿ{î¹æk&î»Ú3ž¥ýä_Ÿ:ýÙ^Üñ?“M6¡·ÙuºµQõïëùŸ=q5ù¬ÚOè4øl½ñ¹Áê]Ü´¹k›ç\¯=«÷®}êy~Zõ¢ÖÔ' ê«EŸþªê3Ç×üiR¨÷Ôwï©m?¥îø;ëþçöº_Þ\{Äõ5‡+mÙÓè˜U$ré½µ½î _t_¸gaøÜû¿'¸M„|Ë'2´Z ÔèøºèømCÏÜq퟊oèmï½dÌE¥7ô,½îܲk_>²³C¼—þ²äÂ#þsîá´Ô¹d¯Žµ&ñž¾€ÁÝËJõ™ WW5;សÿüv<òÈ‹/¾¸«Þ½{wëÖ­  `äU#'<òÎ¥Ù×üƃÍnÜO¬>@L ·ó«TÙ„§õ~¾Õe: Ynß?ߺýüïm\Ë”âÁÂ{-l&kêGÍÕž?™7«u›àÏô¯ö[¸û³ë¢üÖu5Ù¤àC w[^a%ÒŒßÅÁ±ÁÖmŒþ²ÓYxûüC­EË7èîcOr¹žøí\žÃÃÚO‹æÍƒãÉY\³Çy“føº­³¢K×~¸³eûiz9sGá˜).Êûïß}~‡U&sçKH|l”HÏ/¶dýò.WÈ6«8³âQвüš¦'î±0a†SfmT# 7)ëS †UŸ6¦æœ 5ºSŽ»î®;iJÝoî¬ûÕíu?WwØŸkRÚ¼‡Ñ1ë9Z|"#êµa:oúc›­NÛ>âB¼¡ë¬;ú‚’Ñ=K®ë^zíÙe£Nß9¢Sù°“ÈòÚOgîìõóâ?öŸ3y¿Cs w‰ îž]®¿l™̰M»l—>ÇØÀÝËž¬lÓ¦¦5Ó\Õ®]»á7Þ×ÿ‰m-ÆGš;HL¸×v‹žÏScÖ³ZŽØIžú± Óë¹Ó\íþw×]g¶Ñõ×r„•Â!ݦµêM°ß¬ÖÝÖFßÙòd}ýCôÏk[‘m£_;}ÞNÁòˆ‡99¡¾í7ËmáÉ Z0ëD×¼3²–z2ƒ™óCnd÷èîxòC Aïí§Î°Y†íRåâFve§$²Ejì«§ž½hRBâ#¨oÍÑw!n¾GyfÅ£  „Ï0 ÃpflvàÀpÓ1i«ÿ{Huûkõ·ÿaBM÷;BÝïŸ;1ô‡I¡³î ~WøÔ»jÛßYÛvRí±·Õþr|ÝácjUÓ|PI³îÆC|I„0󽋸§óþ{Ëeí·îºýÊ?ìÙ}ÇÕÝwŒ<·xäŠGžUrÕé¥WžZvEûƒÛîììÎKYváá;º²®[ó÷Nn¦'ryµÕÁKp·ë×îþ¿•6îê³(¯ 7]ÙŒê#nêÓ·_Ÿ¾ý÷éKlhÉÏ—4ë»M»hMÛ¾ŸÚ¸›d"zñ¨F’ÈŠÞ¿=ûèoÏÿõÊ Û­¼¤ýÊKN^yñI«.9ñû‹Û­¾èøµýzퟎY÷Ç£×vÿùº?¶ö÷?û¾K³…´ž×ÖxšY ƒ»æƒÈ(ÜÕ®¬²;xõG.˜dà ÷¶&åªX7Æ ¾0ZÍL{ȉ@z@V;÷Î, Ã0 7U?ýQÕª •‡,:¢Ç'¿¼ð‹£.úì¿/š{Ô…s¾èó£/þâÈ‹æqÑ—­/Zpè…‹Zöü²E/›õX¤;¿mß¹+×ï!ÛúÈ¿ªLÜ}úêŠu«>¾°ã›GÌêòËv=êÓÿû.GÍ:ýèÙ§ýn×#?èrć§µþ¨ó¡tjùAÇuhöîIÚ¬óÚ–­|úý}jÜÝbã®ù¯õþ½›·†y Ù¸FÓ-njmAŽÑ3 ÃpJif0 ðn}C=ÎHœª [‘m“MäÃÊÖ׆ôÇ;Œ¨o}uèé*Iäý}­T2swEÜí³]¼]ZbXß„6J¿yMši}mï7ŸÆ@Û|,ƒù82†SlÜG Ã)5*N±GÔ›÷¦iÃêôÇö­Ö®kCku“½ŸÖü×ü`{À>íò½ú¿æ·öd]Î"îêÄ»Eëþ­vÁÊf®j~‘níÒõ¦›õÙhZë¿E§âþÛ,Úê|6M¾…a†á\÷Å[`N­ y^¦¸Ö.بýÑp÷¨Ïß`ýùǨÍ%äßs~Ð}özýß߯×? Ùªp÷‚•:îÄkC¯Ôæ ºíõ© aNµÍ«†á¹ éw ¯bó%Âö“Ž]ÙêŒ ÇÜXqhà§Ý;×Ã0 Ã0 ÃpN[ëU©»Ak÷ŽvôãÀ]†a†a¸ Ã0 Ã0 ÃÀ]†a†aîÂ0 Ã0 Ã0p†a†a†»0 Ã0 Ã0 Ü…a†a†»(†a†a¸ Ã0 Ã0 ÃÀ]†a†a¸ ø‡½{ʾþzñ¼85gΜ=»K÷UlîÂ0 Ã0 ÃÙé½{¶._¾ü®»îºá†ÀxÔ³gÏÎ;ßvÛmÿž??ªØ³kcŽàîŒ~¥ã»­ÖëeŠÝ©Û~Ó†a†á¦ÂºóæÍ›8q"ÁÝ[o½uX<>|øùçŸß­[·3Î8ã´ÓN;ï¼óž|âÉÖ¯«©Þ™Ý¸ûѤ:8ö{Qÿóå¾yöáaºlÂ|eî·ÃÄ€»0 Ã0 Ã)ó†¥K—ÞqÇ“'Ož2eJŸ>}N8á„ãÑñÇß‘R‡Ú¶m{饗>óÌ3;¶ÿ”­¸ëSˆ»»_ì¥Ælà. Ã0 ð®ØSzûí·Oš4‰àîYg¥ù¡fÍš9ò‹/>ß»gG–÷î ¨ÉN6п¥ Sü–J*:9aR_û‘Kå½»‹'žÄ¡¹Ÿòbzs•l(6ç'NÝȲC°“Š{r Ã0 Ãp¶{á‚/¯¾úê±cÇöîÝ;yÊ=ï¼ófΜª®Ø»gKÖÏÝ]ÏP¢Žy&^ž4i!͢㢄)ýv†I¤æ„+Á'uˆÑ»+23Ÿ+÷”'™ʺ…]6.”‚¾0þÉ0 Ã0 ÃÙî9Ÿ|rùå—÷ïß¿mÛ¶ ƒî±ÇûàƒnÛ¶©º²ÔǼ¥ëÉ EÉp\?ñØúöŠâî ×ošÌ ö6;=±ãÔ)›²¨ÕËæQÜ•àŒ—û¢k†a†áüÅÝ9sLÜýíoKCÐC=´dÉâ¥K¿‰é•+¿ ×ìÞS¾Á÷¼¥ïAdæh¾¼W6 ¨ ÇI¾•.Œw™ûæ,4íÛ«C ܵéT¶¹wåi²…ß\b†a†á\ÅÝ™3gfåÖSÞŒÌ~5òÖC»¦?°qòóë~wõ³?nZ Ü…a†a†s}îî²þÕlÍáÿSÕap㨉÷=|`Æ3‘—_Šüßcûž¸÷§‰Ï®Ÿ\óÌ÷þ Ü…a†a†sw‰ßøîÉfë~¡UÿâȆvíºžÛÐ{hãu·5Þ=½ñ‰§¾øbä3jžžòÓO­ðí5O/]û p†a†aÎ!Ü%žüíõmöŸrìþS´†£ˆ›ïÿïÃ÷ÿæ7 ßxaŸÃG3êàMÃ^?02êüð¥Çoüm¯5œþýÄçwa†a†áìÇݾ{ðþþ®á|­áhÝûÒÂGi¿Ô¶þB[}„öÍi oöïÿÒæÿW³¹ÿõ_ïÞgþ®˜¼ê§yy‹»Ö &ÔO< +¤ù%eéßcêŽ"?ކa†áÁÝWÿ}Õþï;ðôQõ'j»©m:R[ù máϵ¹G4ûøíã#~öÁῚ}ÔÏ{?·lZÑÆÏšÀd†ýìwøêÜ+{V­w`ó íRˆ^Ò÷˜—Õ€»0 Ã0 §w—¬ÿ³Êy75NüÙ¦_i ŽÐ>µ÷÷oûÞ¯GÍôÚ·nܼ8yË^Üõüò w“O ¸ Ã0 ÃpqwÓæå×—\÷›Ý§j_N·Õ»­;}xÒM_Ž~÷ôŽíߥ:oYÜ»«?Õ–’­3½Áèøµ[nuÛ!¨—£1È׫ûj6óUìô :š!åÆgÉVÔ4 M‘Cû•sÔ1²ùt6a{¶)XÔ—Ù/•æ :)>‡À]†a†Óˆ»V·o¹ôð3>î|ÇÂëþµêÅò’µéÌ[vߪf¿ÇÁDDò'5½Á6a¹±!Å«'MzQ@;&)ò´ÞVÌuªÒ¡&Z¸o¥Ì!IÁ€Xnž†ƒ N"|öìc׸½°iJi–.7à. Ã0 éÇÝÍ›¾»ffó–Ofx±— hÛ¶­ ?ûÙÏzõê5È›Î?ÿüž={>ûì³›7m¬®,ÝUöŸ&6™!Nì½Ø‹¿ †a†a8ï<÷Ó9]ºtéСÑGi²n³fÍ:uê4pàÀ¡4lذ=zt3TPP0bĈٳfí­Ø¹wÏVànVâ®Ó!¬IàÃ0 Ã0œ_®ÜW~ì±Ç¶nÝšžÉpôÑGŸzê©§{SÇŽ 0wíÚµ‹¡ÓN;l;qâÄ/>ÿ¢b÷à. Ã0 Ã0œQÿ ›5k¦ù'’¡ß§ž~ªxÇ&q÷Ю?wa†a†á¸\µwû#<â ñyä‘S§NýñÇõ5UeÉOâîÂ0 Ã0 ÃþLiØ»}öìÙ­ZµJ¸;wØÐ¡sçέ Uìٵѯ\wa†a†aÿ¼¡¦z÷ûï½ûÊ+/¿öê«.&+Ðzã¯Wî+ßW±Í÷,wa†a†á<6p†a†aîÂ0 Ã0 Ã0p†a†a†»0 Ã0 Ã0 Ü…a†a†aà. Ã0 Ã0 wa†a†aà.p†a†aîÂ0 Ã0 Ã0p†a†a†»0 Ã0 Ã0 Ü…a†a†aà. Ã0 Ã0 '»³Þ~†a†a†3èH$’:Ü@AAP¦•î¶êº“`†a†á¼šÌp|þàî}/Ï…mÛŲ³tíŽÍßmýiÙ–K½x㺅.¶W# nÛ´œ¤LÒÇÕÃ0 ÃRÇÛ {lŽÑ.7eÜE¯¾)wIä—l]5åÙ·Û_1M;ï¿|LŸ{oøß×Êv¬&ÆÕÃ0 ÃR§¨F» Ü…hÜ%¿õÈU¸çõ/Wþäã.Ön.#iN}öüŠ„a†a•ÍV¸CŸéß•FRm²´ËÀÝ&‹»äå¿¿ÛxÐgø÷w?’”÷”oÀÕÃ0 Ã*Ü%måçEaâþÝOKé¿Äh—»Mw·þ´L; 5øâ††ýáš*’òÞ=›q5Á0 ðÔf+“%È^îæÍl…笪ùôûšýq·¶q´ËŸ~útUír&pwF?í¤I mîíõ2p7C¸[WW[W^y÷)Ú)SWÖ…ët¿1ˆïÝSOq–xumm¨º²bOy .+†a¿\^úŸw?Ÿßnðý×=4ó­9 6lÜðÏy_yäM²„,'ßfIö®øÿœ·xóÖÍïÎ_2ö±·²!{Ù\tf+üÑŠêa êâlmãj—‡v(øø»j´ËÀ]W:î¦wÃášpx¹Ž¶+ªÃaÊ+¦œrÊ”ava,‡BU•ûví*Û†Ë †aØ/0 Lùû›ÿ{Ë–·mÛT\¼­¬¬x÷î.Xqåý3É·êñ£I4ÍßW–½+î~鹋Ћ·––n///!yÛ»w÷¿­qÿë|öv®_<ñ$ÍÇá]‹Nc”Òì™­ðË«ˆ©–ôõš6ð ¶9Ö¼gsL·Ëú.¾­rk—Ùï0ñ#9eùoùß»«_€|y:¥muü¾Ü— 9½œ{õÓWêõ²Þ?Ì}5nR_y|w]q×$ÛÉ+Âär£¼b²µ|°ÊµãÔúWo tÎËÀ7Ì5 ÔWðPeå¾ò]e[»0 Ã~ Ä·|¿l„'++÷~üÕ*ò-34O1‰ÞŒö‘†ì‰¬KòV]]ùÉâÕ\ötÖuIoÊS‡”É]Úzwg/Ù×ó´SèöwÅÔŽ§L]Æü9p€¤™öæP¨²çig}³/îº8p79â¥à–üIMoàÊÓ.ggeû1æE¼¨£²µDظ낻äB}Kxõ®å5ûjh/¿ËX¸dÊ)§,§—ë5kêê½{+Êv–lîÂ0 ûâWÞŸsÝC3¥ÀFx2ªÿ—Yd]X°Laö®ø&ën+ÛôÎÆ7ûüûÒ×V¿RVQ U×Ö†ÇϘMgÏi본èÒ‰»ï,Þûö×ûô¶Ø¶Þ(OþÖúséÔS:Ný¶’Y!“¦™ì‚¸›!ÜúÅ^š…²´ŒË^H—³Š‡wwãÆÝšš½µÞ¹¬º¢šö²;õ…ä_æ¼tœ²ÌøÊ^`®ݼªjOÅž’²âMÀ]†a_|Å=/¼5g ØOÎ]²–¬Ã7ˆ¤m¥ï‹ÆOù%Îø©¦ÅsC Ùõ?ç-6ûu ëÖ¸`QSÞ>ùïß>OòV__7oé::{^[p:3ÑQÝô•‚Þ=nƒ‡¦õ›˜`)¹àîÿ-ØÓ«à÷Lw“ØÑdw7éýKÑæ˜¬ðþšÖÿú&¯ p>D·­±º¡zw:óÿVÄ»ò3ÜMþ¶µ^/KnXcogî¦w«ª£~=¹cÇÉK÷TVR^zgÇŽw.%ÿjýfÒË+_é¯EW¶×!ÿßîÛ·{÷®â’í?wa†}ñ‰Cذqƒ ØOVÕ„È:Òy˜ÑaPqüTX⌟Ýž§@]oÞºÙœÃÐçß—þiQ³çþ¾ÝÌv'ÿíD’·ýûë«Ca:{^q×éõJ¼78™¢³–o‡‰3¬1åDKÉw_›¿›˜@)íeS:ž2åçÃ2w—U£cð2cnÉëýõ …¯ÛˤH+?sþž™ów{ž»k p×3AböîÒó,ô50˜ë¶ÊY6™¸› îî!^:¹ƒÖqÒÒJR¿¬ÿ\œ<©£¾dñäŽZÿ™Æò¥“ ô%ß’%3ûé[-5×Ô—ìÛ·k÷®%Û7wa†ýêÝý缯UÀÖаÿóåëù.JɬæU¤8k ¿„nF=w]’]¿;‰™·×V¿Òéí'¼þÛ£Ÿ:òù%ÏÖmllø|ù õî*z·R]t’Ý÷ ™Ð²0ÁRrÁÝ—>+ŸèV-`­þÚ Y·ñÖ×Ê%ÿvœòú§ xµúõ~§LùšNŠ4ñv{é³]èÝÍHï.uš-öÝgÔO'édfeçV5àn¸[ÅÔ%w9•_ÿ×ví[¢Cì’}»öíÓé×<w-ÙÅ­Ipw‰³æ®½{wî*ß^¼íGà. ð_PÇ<ò¦ Øh¼õ¯ï)& Fï ÁLºDÝŒºgoìco™y+«(ùû·ÏŸô·“ž_ú\Eõºà²'™»›2ÜM¢è„žO1?I³ŸÙ ?ÿiùóŸî4»ž(/ÖG]gꃧËȟˌˌñVnÍ™ý:N¾s€¾Ú+äß™“;˜É¬@šøŒ]w3=™!åîºàî>SËýòÞŠ²ò²­;¶ý`\V[ÑNÁ0 ûòx¬Ûçßþàöx«§W?–P×0½™½-Ziä­ỨٯKXWÌžìÉ êÁÜäø*©¢£n«'eLi`~8ø5™á™ÊîÞ…™Lhx)á]¢É‹©ƒÖxkt2¡5Õð•þšf®6Sïœâæê“ '_ÕåÙÊâ¹UMqF€»ÀÝœÅÝÝ»Jví*&Þ­»$“DvꬻaËOEz¿qÅ6´S0 ÃÉûÝÏç_yÿÌ¿Z%Û¨éoº>w×'¥ŸÞiw®²Kô­Nê`§Æ™½÷¿þÉâÕ"ëJ²'{„äÁ?ÜM¤è4AÓêÅÕ¡o¯„KI…»ý ô¯”TZ“ )ë;L^ýlMtÆ[­¯è9‡3ûiý_æÒÙ·o—¹‹¸žÌ ?#À]ànâîöMßÓçÞ³lÛæu[6mÝ´–|HÆ$…ÍWÿøŸŸ|ñI¹º² Ãpò¶_ 6þ/³æ.Y[Uú|ùú[ÿúžŸ¯K‚dœì͘=oéºêPøóå?øœ½,):_yÏÄÝ'ß+¹ö’îÆHkJ¼wïÎk/>ÿ‰÷Š1ɸÛ4q·xëÊë~íÒ OÿãÝÖ­Zœ¼×®újíÊEÌù¤×ø7>öz¨f®&†ag5¼òþœ+îyáÄ!Égf >s¸›ŽìeIÑ¥w›½ƒØÇY…â$C}îb’!p·ÉáîÎ’"òï=/Û_1\~ù˜>÷Ž{üššòÚp®&†avÁÝGfï}áy¾L)TM2$铽`’aSÀ]ض],{Ê7ìݳ¹º²4ÚSÞ[ÞWWëæýûÃ.¦Ö¬ª¯«ª«­Ü»g®&†a–ÚœRH@Ô$Þ”þKŒI†y»0 Ã0 ÃYesJa‡>Óûܳ`ì)5Ù &wa†a†ÓéM)Ä$Cà. Ã0 Ãp68Þ)…çb’!p†a†a†»0 Ã0 Ã0p†a†a†»´g½ý Ã0 Ã0 'éH$’µ¸;á–ë`†a†a8aWîݖ師AAA¡Š=Åì÷þŠX²~Nàî®òa†a†a˜à+a×’ŠÆU›—­¯ÿjuí—«j¿ø®ö³¡O—‡ç, }¼¤ö_ß„Þ[\³±¤ž¬¹yÛVà. Ã0 Ã0œ[¸KXwkùÁ %‹¶6~¿åÀªŸ¿ûñÀ²,Yß°x]ãÂ5Ÿ·îÒj²æÊÿüÜ…a†a†s w—­¯'¬»~{ã÷›˜ »t}ãⵋ×è¬;Uãç+öÏû¶†¬ùÅò ÀÝlö7‹?$gÝÄí{d‚8¿8"†awÜýª¨Öì×]ñc#]â%kå~öÝÓŸ·ÿóoõÞÝ®ÍÜýjb{{örß—šX;¸h|­ý¤EÔŸÆ…k¡¼ †-*’¡*͘—•—óø:MÆs:r-b=ê7†)Ü¿ªNŸÀð“1a]qŸk¦Ê·¢qîŠò/±‰»oV”븫·¡NøT_Û‚,¨Z½¶v>Ñ4]Üíý²çðÀWäRŠb3x¢ zºNýŠÞ\» 9Ù}Œž"6Z õ Ãî~ñ]íŠWl°ºv ëš&¬;Ç ^bwßøtM®ãû²òw;ŒŸÔ7 h€»:%K§ñRÌ=]§M5z}?¹vD±#¸ ðˆ»Ÿ.Ê]¶þ±Íº¦?ùÎ"ÞyËõ¹»¯}œó¸+©ýÄ~ýßÞ}ÍÁ3ëƒÑ=BþF¹1:¸öÉ$kýLÖ®^[ ûéôѽÔ[³»e¡ú‹`ôîòÖã¿ÃÄOüÊ¡4K/÷¥‡³Ù+Ž `nø›_Ç8væ2—'bO¨ð~hÙÑ»+œŽèY¦Ê0Zžç´d[ï.Î@€³ÄÙÊX®ÚÊ-TPéÁpþàîœe!{ƒékhâýdEÃÜåÕ©ÃÝC³wm¦µª»Oœî&g¶4wzwÍ:Ÿj„£³—èÜË50æî*˯cÅI˜Âp–èÛ÷©]ôe.¿ ¢¿õÏÝõåA vš½»ñ]§’ö6™¹Ìe׸8—)ίätD–ù*kÐ7QÜeãA9™«ÖÔ[©"µ çîÎZš·BÄ‚Õ ó¿o$þbMaÝO¾oøpeÃ{ß6Ì^ZÿÁâ<ÁÝ]²çy:K:´—÷î27As᜙~ÆÂx[ *Ø£ãšBÒ.Уp^ÍÝ¥ ÁA‚x»ù{ ’NÐí:µ~¦ÑWœÀ.÷‰c7Š« goU“Ý’9vŒ^¼ðsf2ƒ.·ª™+ëÇ(ÙJ •ì(†ýÅÝà—Õs–×Ïý®AÄwû?û®~îJýö´W4¼¿¼ž°î»Kjß_\åç­jÅÝ&Í90 Œ1y5¿~¬á­j†ÀÝ·×ÍùºòÓ¥Us—V›&Ÿÿµ$Düá’š¾®~ÿ«ª¶‡Éšï~¹¸ ÃpÖû©¾¸ÕF¨À0ÅÝEE¥oz÷«b²~Nàî¶M+`†a†a˜àëžÊêà—[Ÿùà‡ÿ}ký´7ÖÜóZѽ¯®¾ûÕ5Ää³éÞX÷Ìû?í®ªÍÜ]·z! Ã0 Ã0 |=p`ijrw—ó) Ã0 Ã0 ›swK*Wmn\¶¾þ«Õµ_®ÒýÅwµŸ­º<ü¯oBï-®ÙXROÖ,-Ýž¸ AAADÌK„×ëïþzÝbýMkô'ñÎû¾‘~‰pN<ˆ,AAAÑÉ öK„uâ]×°xþz5ó=Âú»ÕÖ4þkecn½D§‚ ‚ î6AÙ½úò¯‹ ¢+‚ÆŸ…E(5( 4Í[Ø!>3ªôzÂ9oNÝÁ,Iª2ññŠªî¨\{Þ6‰LÑ{Žo¿>;\JþÖ-¾”§%N|›ÉJC—]è,w®L·+‰¬•ó! ;»ÄÄÝO—‡—®o\¶þÀ’õ _¯=@¼hÍkˆç­jœ³¢qyËk€»¹ÎºÒÏ’x×/œ@0Vð@yÙ“ ŽP€§(3£1™™v……5ç,D?9Õ‰Aʼnž&&HÄeú«xSN"êô²s¶ÕY$Ä+ÅÝܺ”RšÛ4ã®t}}a¢…»bèJáâKµJçR[Ï»ÜýûǽÖ< wäÄ“ÐyA~ ปùIÌ‘Ê9è‰wŸÕ»+|ää@ab'‹Ï8“ÓSJÊŽ¨ÍƒÞÝ&»……vUH.ò»Or!DCW’ˆÇ|è«Ùiç$îzcó¹»Ï¼÷ƒþÄÝW‹ÌÇír¾wæÚéo¬Í¡çî¢rGîvEy¯*Æpˆýëɺ829%ôé¦?$†©¾'èÐyªN zlN²1™nÜ•œ(§ɨXœÖ4Z™ÄÑ,=ÝT¥TP,,ˆ®ÈUbÜà¯]ôÀotÏf²:°;Â’¨³šÆþh’T@ª("ŽÃ‘-—çœÀ’z¼[Õ»cC6÷b[@•XP¼$%¯µr@Yòü‘2 ¹_ûò̳|’,^êêš KA6ÓÀ<ÑŸzúÿƒ²Ž\—Þ]È*~a²ä¥ ø”•œ°­×P—ÎËpΨ ™°×)Á×êÊÝ5ÄÕ¡š½áоÚÚêúºšúúÚ††º††zâö<Ø`¸›¨#Ã]á¢Ú-ªÙ¡®ZÀENýÞ1?Ðÿ&Ö1ë{‚ÝØ¡'©Õ©ˆ3SXŽ˜Ì ÜuÚ&u-Üo† :„ÓmWJôYx8ÊÌurÅ×uTšÔq;ë›ûQtË $žÃ‘.—çœ;=µ£Â]ɆìaF$}$|Î%—$•¡)Q–¼êH]‚A’=õ!x)Ÿ$‹— iØ(zw‹ìVXþÓž ]~î.‹°6)ò;²òÆgÁ%KâyäPØT}g¨K«t®Ü„“–´õ?ànÄÝHÌ{ÖœÀd1‹×&ظëî²õµi.K’™‡ ¥w™ê$‘á u<¸†t:Ÿ[Û­Þ'³aÓÁÈö7kl¯~ˆªÉ1sâåp¤}zÊœ«¯‚Ì9¢.—˜p˜òœÓˆåýâu/yUïe‘kW§ËØ#©*1OáV¼ÜÆB×n4¹ ;[‚Ü !ñ¬^bwÅé’Y÷‚*ºß=dÉc¨Ó˜á$ªhŒnÜm:¬+íà1¼ýõÅÿ$Zäî&6ýÀ÷¾<;°‚ÀÝÜÀ]ÅGªá)*“dâ!U¸+É’ jÓͨp4Æñ«gŸË²âîºæ<æ5â~)¹œ4/9÷”%uþ}Ã]î<”X\+{¨‚œà‘LºPƧyËÓë5ž…E —ü’ñrj„­LîºyÌÖÁÈU–àn+ànzqWìc.Af˜˜ýmÅÖ~èÜÍiÜÿÌ`‚²–ª0ÀA³ca˜Ì%¸+<™Õçz‘¼I<8€eC¢n¦b2ƒb`WQRée£ºÔ»LÙ=™!ÞÑâ®"ç²sÂO"ˆñËQ]ã‹ß¸Í1pé9q-ywÜuŸÌ އ[ƒ±ë/á±x5~ÐÉŒ;¾río¸Ë=™Á-2Õ½»n%L"×[Õ¤½],ÕIoU“͉d³.™Ö yîn¼‡#|pɹdLŸ~•§ÅÔO±-‚{Wæ_Éxf–dÁ g8þ$`Uå“dñJ2Èe†:/]£1çáÈoÉSÌšïÍÉ’[A%s«ZìPç1CÈI4“⬾ ô5»Mr’â wSœ åǯ€/¹ïˆò5~ à.p×ëJ?Sõý®>Ù‹¼q‘æiÇÒLaÊŸì¨1nUK)íj´EÏÏݵ*“¢˜;:H¥7+I)EÂQ®·IcP˜»*¹Õˆ NyÖ¹í äÛ&Ø»X%yï-LýÕ—`neËÒ³ŸÇñå0înÔ~óp7S“Ÿ » ¸›â}†3 @@ùp9ظúPdÀ]àn†8'ñçDw¡œì€D°Bi»T\N6®¾¬à.p‚ ‚ îw!‚ ‚ à.p‚ ‚ îw!‚ ‚ à.p‚ ‚ îw!‚ ‚ à.AAÜîæ­b툛ÌÀÌÁX¸s2ƒwÙQ}îF¤•»ó°6ê7¦l>€˜&w®Ý'3Èæ>¸=™Á>)Ò2Œw2ƒ€ùÙæ˜» Üîæí¸,¡IÁ­];Øm–¾¼7 åS0dE‚Ü@ªdìè*ˆ¾ìêݵkû¤0KÄʤ(¾ˆÞî¥Åè*¤ò*NNfŠJs•ÀŽÜûÀùrbƒ9šŽK_n|·ªñ—LŒÉ ò3Éþvaà]V8.çZ:¿ÂõÇ«ësw­Ü·ª‰7Ç©oUóÐÛÌÆ žÌÜMwî¦r’âtªwSœ AñüÚh¢J z²bî&€»Çw3À9‰?' ¸ A”aÆÍükÓšôc"p¸ AAw»AAp¸ AAw»AAp¸ AAw!‚ ‚ à.p‚ ‚ îwsD1ž»K½À†+:¥Zì[Õ’zº¥KèJ¿J8Ô¹K&MÒþ™á“e?ÿ•~ó8ûJFîõåq?&VHB^)±«ñïÕržSëºû„÷Å–‡òõ¾>^#Yžrf[ î=e»v}¯\<¹jò :p·I±®ô3UaÓ¯~Œ¾È2{ª2(eñ 2Ñ%y¥kJpW|[k|ÌÇ^2ij3Ž»:ÜÙ¯æµß~Ë.á¼  ÜõòÃÄe‰“)ó©sð¾¨3L6œ€»I§–Šòñ˜fjN ¶t@Ç“ùT‡%p¸›ÝlÃ/Üw³w“ ¿ôôîf¬-Î4îŠD+a\úË‚Â`aÚqWøÂåXI⮡ ÜͶ½gw“N½»ÀݦÍ6Ü£üw$suDߤèüH  Ò>„ %ôé¦?$†©¾'(ÔÆT=zLÇ©ýY\'îÞ]>¤í$]û…íèa •HÐúhn ɰ•{M7~Ì(îŠ=Ùn}Û|ÏÿZÖTá®[.ðM w©iÜÁrg™IÇ<ÝÆ&ì:ô{‚ùXŒ?Îqñé¹* ÄJ™Ï!5=E’gºóœJGNYNŽ„½+ŽB¸<™«CžÉ8¯/YÕQÈœQu±» ì<ªªÉ÷¨žÂ“ïÝUžÓ€$Z¢+³up¸›[¨#Ã]ár´.vÄÖjG¨ªÀ›S¿wÌô¿‰uÌúž PY #pÑvDFÃOX'Ü¥›$ý Û.!.\2 P±‰8»–e˜ƒy·–.ó¸«l6…_Àä+êÅÓ`òóiYž‘¯æ>£@ݽ›ð¾¸ bv- ]áw’z¦›:º3«üÔñãþ‹ƒŸ],¦,ù%g­Ää™»X„t$¸K_HÂJª£p¿:¤™t/þú’®É–’ËeëR€’óè¡J‰g˜ Üåj9iØHJLñ#¸ ÜÍzÜļg뙲c\lGÀ»ÀÝTá®Q»ò"kªÄu‚IÌÝ¥Z‚8æ°R°\Ä÷#ñ}DB†‹„ÙÙ»«B!¾Fºè½×)ìÝõo_.¸+ ]q}ix»÷”z x/é¨FºÅ+B™ªtÜ—ÈbÈŽBì-—ü¬2éýúrσ²¯^½²Kù»T)n}ì’x£{ƒÍkJ\¢èÝUœS×haë4à.p7XWÚÁë2Z¤š2ů]LÊÜMlúï ªû]ÅJÖøŽn¼ŒM{Ç]j£ñRËGãÿúlÕ"®ybA•aO¸«—É`¢Ï–Ó1ÆU&©ÆÝŒÌÝåq7]KÖ‘¦Ip7fÀ{KÇ#îJ™ÓÜuqá®KÉ»¤à’ îÆZÙ¥ü•UŠrÍØµ@Ü“T'Å5Zdup¸›+¸+ö¿1—27Öd'TèÜÍiÜÿÌ`‚Š'3È£ÍìŠ<AõPÏP-º•§%¹dìÖ̹p¨D‚<ü¹u¹þ$ûÈh4Ùàhˆ¸$"©÷^eäГ”“e‘:h(w¦.P…+MÙ}憇 |ñH¯!Ïâd†h:nGAÆ8Š˜¸+Ϥ÷ëË5’É ’jB^€Òò—W)bYIGR¸€Nl2ƒêœºF‹÷ùöÀ]àn6ÑŽËj@„ŸºfÐE´½6+”س4¡¬ †¬HPùÜ];0Ùá`ÉsOÅ[Õd7%1’ü˜¦p 7¦çvÉM›ýpVE†%¸+í”Ìôeë¹»|ÆÅʤ(¾x`„©RwoõåÏÝÞ÷冻ŠÐ幄_‡Ù-7Œî<ÏMðŠcRõåJR¶W`+yéÀ·dI?ÃH’g­\"vï®*“q]_Š<8sn—­KÊΣêV5ÉW|›àswÅ™²™ãÊhÉý›Ô²wÇ<±¸›~ÈIŠO0¸›âýÄ2ßbÕcR¾Oq˃QD(×”•áîO&î>:«¸ AAå+îÞûúà.AA”¯¸;õå­À]‚ ‚ (_qwÊ [€»AAP¾âîä¿mîBAAÀ]à.AAÜîº(Æsw©«Xo†ÄS ¡tŠzKûÂ&ö}jîïÌ2ÃØy,:õ/áåYxv’'Š-@æqôÌ;´«L¤ñè{¦¤/ÇrÛ>£‘>ÆlQ§M”¸;åo›»ic]égª¦¤_(¨~ƒ9Š2ïâ!+d^OÅ£IâûOéõi1_-ʽÞTú²z(á3Å¿àØF7êŒ8/žÜx`y“[É=9kE³zã?æC4FÑ—”%ïÛõw]’ÍàuŠ*¸ ÜÍ;¶á—n»™LPmÆ7…4¬è+ ëÓ䥯ý6( €»é€ªw—ûXoÉ'I‰¤ßâ,Fô+5à.ÜîfˆmØ4ºÎÙw:~ô=‚æý_Rec48Ç€>Ýô‡Ä0Õçc¶}\_“Ø-g/1W¢½nT×"Ú2ßÙ€9 AíÏ6ãy|)i¼ŒäL pb Ð™q¡˜|á3 #;¢Q˜páýéìÑó1ø³BWæ@€žVÝ’;X· ¨Îˆuºƒªôù¯ìˆaæ×¡öà #ˆ“I"üšt7¼ÙgO}¤sÅ'HåÊ^Õ p7ÜŃÈ2€:2Üê«–c'9XµUÁxsê÷Žùþ7±ŽYŸ”Îd©À"Ž7DÖbV08CÚúãÇZò¨«ž»«À]ª2I,äˆèÔCÖ'#sLVd ¿ð³'éšÕ2¯Çèô9« A¨Ìc ½—B–æ_<çê3BåŠÝ—äìP%ÌÍçSf×tR4— ßÒ“p¤ ý¼ Üõþš‰ç€»éÆÝHÌ{Ö¸½vm#­3Á À]q—[B2ÐC îýiúÿŒ/º%Dó”Úî]WÜë†*\)‹ëØ •¬› Ñè>µ,æ1z)ye.ë öžšKncv5»}eã(Ý]\Äô¯ò¿¸Ü0‹¬0u~±°éȌȺåQŸwãÂÝðVµ4±®´ƒ7¢ä]ûW°‡.”r.ãnbÓüNP†#B›BõƘ-Y½IˆyÆÂ5¼K•¨ëÜ]®2I0½´qâ®ëfC4fwe£x~â®:}·¯Ô›S%­1}¶JYkFÏN0Àw ó@„Ÿ0À]à.p7×pWìc.n»w—»ð…® tîæ4îŠf0Aö^xj†'Ó¦PËÝî…—Å-š'ÿ»t•½»Ê'3x¯2ñ {2ƒlœÝ…ͼ<Î!ÃÑèm2ƒ;îŠ=Üž9_¹LfPö{°+'°k>¤ë(æOs1Ư)œPúÛ ·l‚À]ànr¸{ϋۻ餗%Ô½üÓl¬‡EíJµ @~O”“Á- ÒO.UÜÑÃÐŽêI§.#ÑšrÈJàD)ú4Ù“#̬ôZðÒx>w—»mÉw雞¨›¥Îp4ªoU‹yŒªùÌÝW\±0Ù±Uqã›*<°S;rI_üJȶ,{­jª¨”¬ÉL(f¿•>ž™© Üîwsr’â\ãÀÝ'AÏ¿O0 ‡âîfwï{µ¸›NÎIøÁSÀ]‚ œ‚:ŒcÈKÅÜÍî¾Ü… ‚ ‚òw ÿ¯”àî¡]×w!‚ ‚ <ÂÝ&îÞÿVp‚ ‚ ÊWÜ}àÀ]‚ ‚ ¸ Ü… ‚ ‚rw1™‚ ‚ ÊcÜÅ­jAAPãî½/wÓ¦ÏÝ¥Þ[üÛ‚Ò ö%SʧÀ#,³Aö#]Ùí g.ú<ÿÄΚâÁ±’·ªyNŒ{]–r{U†ý?:WÙxÉm|G”Ù³ wÓˆ»SžÞ ÜMëJ?Sõý¾FêÝ‘ |‡¬H‰.îµ÷¬ƒ]›(ìW¯²KlZIw$#|ºNRÜJîÉQ/ã?¦w•[Åùz¯ô\#Iå6Î#ÊìY†€»ÀÝ&À6üÀ-p7‹p7}ÝkP"´Ëq ‡qŸ5¿O¿b;eré ¿xSËì5â%Ùøvé³ wÓˆ»ûöb2CºÙFcEU l“åÔÑ×.šKôŒåXЧ›þ¦úž Ð&Q¤DtŠáGoh¦‡BÑÔùM=Üu¯î>q×Û;\ãå çt;»+t¦WÈgZH2.†/áçÔœê\q‡@—^š¯‘ság´HNŠ™«è&™:Ëp¸ÛdPG†»tmb×™äÿì$³Œ.A=’s¿wÌô¿‘„:f}OPhã¨F—?+è¬ð“4åìH&p×÷N>¦ä¿€9ÜUö»ƒM1l8HyÆ Ù†²_øÑ­¬œú~¶B®„CÈà5’Ln]ÖŠ;Cgîw› îFbÞ³fVõìä;y•Þî¦ w RbïÍÑÛ ~bS.íË‚|ìÝe‘Fý Xè~ôX[¨æVIϦ—6¤)ÈB­‚ÉV¾„_Ì\yŒØô\#ÉäÖe/óåRy–!à.p·‰°®´ƒ7¢ä]³µš2å/h°DîãnbÓ|OPÝŤÏõÒê!D}W0À—®¸D‚»le/ï:}’²þ»8AHNAÒ­| ¿ánŠ®‘´ánFÎ2Üî6%Üûߘ*ÓîÝu¦xQ#’¸å5_pWü3ƒ *î:¢M~ÔGg “RÉ»üP¶¸DÀ]®2ñ²î1gÊ{öeÃÜ. ¤¼ÑŸMG ¤„Ã/6ž%0™!e×H2¹uŸÌ ^‰8Ëp¸Û$hÇe õøCþîc¸,:F¦//(ÀM@y Y‘ ò™¢ô¬>ùý5Ô:¸U-MÀ›èsw­Ê¤(ž½°ô’'²²·¸ƒýœW>:œt ˜{ë’ ?]¬|†d·ª¥áI0·²>XÕIÉìY†€»ÀÝ&9Iñ ºË€»)N0%=‘„ðÃ5w»MƒsNpÊ%È@¿„ðÃ5AÀ]‚ ‚ ¸›zÜ­(îBAAù»­Nÿ¸ AAw»AAp‚ ‚ ‚€»AAp¸ AAw»Ù¯ÏÝ¥^c£?tÏ×…Ò¬$ŠˆM‹ØW{9µwÞ˜%‰š ƃ™{çå q¼ ·ü4ߌ† îw“f]égª†¥_ßh¼¢Üå‘PÅCV$Ƚ㞊ÇÄ[UDlØ—œ4³Æ O·$ÿ‰Èl<˜¯JçØ=ŽmekzÜ{“:pú忸Z!à.p7(Â/*w3™ цˆM»‚(ÜFKÞz!-·¤0ÞS“éx0¶- 8ÇP¤£w·‰8zw¡&ƒ»•{»éfv R£êöG¼SùCkÌopR:ã˜PN}ºé‰aªÏ ºõ ™Á„ás.­–Z:!Ç6CV|‡’8kö'‹vù%be’åñ`®iѼAõÑê ·ß;½ƒé¥d÷"/»ÄšÚSÇ«jY<u´ü臀»ÀÝüFî 5ŸUG±“ÌJ‰ª¼¹õ{Çü@ÿ›XÇ¬Ï Ò­¼ÝT²Á›H.øub§ý¥ãÔŒç(c ‚“£]nŽ'ƒ2ô±2Éòx`Ö7àO9þE¥æ¾— ‡BhjÎá. áÖÄ:jfÚ ®e¸ ÜÕ¤¼ò ÌjɆ_» gX€»¾ã®[°I»’d³ÍcÌ á ŠW]ˆÝ¼Ü’`a|ÃA‡ÜAó@í­Ü÷ë²—"…ÐÔ\µ¡ô@{·´ wÁºB_n ܵÇ5æ.yÅ bÈqÜMlúß ‘Ä›l”AÚÚzjå#TÿÚÈ»v¥Õ€üTèÃÎle’åñ@c{A5"ïy¿rê‹YMìÀ]p×ûQíU0€¦ÊjÜ]¿ú ànúqWìcj"»w×ùQÏŽsÑS· 9‹»âŸL½!.Îõ%:£l*›KÙèªf7ZÉ$i—†‘hQsK …Ê$ËãAUû‰û{L?V!4©ç'3¨DvÔNz›w3Š»zËÜM#í¸,¡îD`~æGìg/íª©÷ùäS0dK‚NÒÁF!7šÉÆaŒÞ!ܪ柄c¾|¹%beR”Ýñ ~R ¿ßHwlÑ… ƒo.Å]!}·£–ýÞ‚ lÅ]LfÈä$Å'èî¦8AÄ!”“ñ‘é£MöÀ³f÷p¸›…œ“ðƒ§€ðB<ÈX+™W áÀ}Èj¸ AAw3ùVµ½Û€»AAp¸ AAå(îÚu=p‚ ‚ ÊÜ=ŸàîLà.AAÜîBAAÀ]à.AAÜmÊŠñÜ]ê½5Ü«p (åb^›¤~j<Â2]_”&~Å}C¿ÜJõVµ„rГU“ 3Ëã]pÉæGµšß‘o–®××3dúòô’ÛøŽ¨Ép¸ÛXWúYÒR™/,W¿MʳxÈŠ™è2CUzF|X'@8NUÁ¾ÍŠj±ùÍ ã?k:ŠP‰'ðšØdj0óͼô«x½Q’¼ê/î*·ŠóMdé¹<“ÊmœGÔd ¸ ÜmblÃ/Üw³wQ¥gúªÎ ù%}q 99Ê/RÝQ•dç[Aaa º}0ÿ!dîúU8™½<½$ß®›p€w3…»{¶wÓÌ6+ºk†¹Vœk'úšFs‰ÕzÅÔ‚²-èÓMH S}OP¨«£}5Î(ªñµ~~9Ý‹™Ái¾Ð®ªw—ª4ŒÓ%ko¹Þ]oï|u£)óìvl]…é-~¦†/Α‘OA Gôÿ­mƒaLŸ 6Õ^Š\ AŒX_"ß©´é¢`g£8›ØçYè)MÏå™`n#üün*l‚M6À€»ÀÝ&‰:2Ü®HëÚa'9˜×ÝÚxsê÷Žùþ7±ŽYß ªåãÃjA¸y¡Ögv,Õ~’°+`´•µ{¤,ø‘ŽQ ´çc:!»Ig+I¤põ*l4Ñõ–™%Þ(H³³ÍFbÄ=ØT{ ºµ²õ½O‘/l+\XÎ&nõyz.Ïdr벎6M.À ànSÄÝHÌ{ÖÌËņ_»Jj8ð.p7e¸í.d~œ9} Nø‰í©´C ò‰u¥U…ÝiÇÁ ßQé±¶P5ý|å#íòŠ’°Òbf§ZDat.ÒØæ¾_—½È ÁB-n']ý&ùîËU½¯™º<“É­Ë:^¦êåi€AÀÝ&ȺÒ^u#fVeÖ/XÅm°D>ànbÓ|OPÝÏ£TÙ8"DSɺT«ÏAO¿¹X™ÄË»ü™•:%À~’^kfÞ¼£ˆê¹ö¼_9( Ašˆ/‘Ÿ"ÜMÑå™6Ümjw›*îŠýoÌ"vÙpã/Ê{¶¡\Â]ñÏ &¨¸õ[ˆ6IøQó `LfHNÜ}ëÒºBX‡<È>´AxdC<`o°’sõJ>‘k,*©j?/Ác¬YZìø»˜l‘՘̲Ë3™ÜºOf+¦`p·ÉÑŽËj†<‹õ„¡ }­à& < †¬HPù`Ozjü&êv™ܪæíò¶NC¬zî®]gð›SwÇñ€Q'ºòNº*l½äFMÞî$’¿ßHwÉ ÁÉA°y‘ï±g’¿Rd·ª¥áòL0·²ŽeU$4Ùîw›$ä$Å'è.î¦8AŸ¹ ý~e6_øÙP/eU°åDäçÐå‰îwsŠsNpÊɾIkÓPÆê¥¬ ¶œˆüܼ<`À]à.AAÜîBAAMw÷VlîBAAÀ]à.AAÜîBAAÙ‡»?w!‚ ‚ à.p‚ ‚ îBRÅxî.õêî-”%ù€IDlºÏ–óÈ{þ%RÜ’NMŠÎ¦YË9÷ãõS³šñ™¡C0c)w^°àámI•$Þ6ÜîÆ`]égê ¢_@h¼ýÜå-PÅCV$ȼž‰ÇÄÛbDlª ‡A[³Â ?òK ³ w·ôFÅãŽTYÊuÜõž±˜%’cŒÒ]¦ P|‘q¬Õ%0Ê‘øo\àîw=£¿¨ÜÍd‚~D"6 º°äI M¸[Xh¿9H$oy†»ÉiJ-µ,í{@*H”Ûœþ3‘ã’35Ü…¸®]Zt sÍ9× 1”Äü%-;r e}Ч›þ¦úœ [3j[ @ÍtˆN¶aãÐ"é„~°Ýî  ûŠ»T·.½¤P¨LâèR³ÎrAa°°À9eA."Ìt,Í$nrŒ™l0MÄHÕø#v‚ªp*’P>):"þJ‰•¬ê2Q\PE²N6Íhž¸ŽJÍõÚäB„>$f[{Wö^œ‘ »­Ñ  ²–p²)Æ“ùQGKÆý,Ø9â¡6çûu…¯dé‹õúwsw+vw3€:2Ü.)ëÒc'9˜—$} â’Ë©ß;æúßÄ:f}Nnœö 6 6pqhįà NóAÇ©ÏÔð("Ø?ÜO—µD¬L¼ã®]1õ’<ì \¤CÉíyOPNAoG—¢#âŠ>f²ªËDzA)pWÆðt¬“såµ)’0†Ï†³!ƒÝò;MøƒR—ÕQ‹{—ýNO”¼ˆÜ&3ˆéKê+Œew»1q7óž5³Úæ'èÉj<Ðp×wÜu 6iW›÷vŠÿe‡öÂGÜU²nDœíîr´"é“Å]ƒiâ¯xc,˜ëˆó’  ù¼]ŠŽ("ãùx“ë‚rISš”t‰êbŒ ŠTðYóÖ§¢ˆ{ÆTEç1ž’òw%éKê+à.p¸«b]i¯[C&½é$FÅåî&6ýÀï½$Ì0±0ʳIu‰Ý9%‰»n¬+ë¸Kw½Åƒ¸·èjæ-kTÇ ç“㮇£KÑÅÀÝ„Ž+Æuš‰à.{1zÃ]ƒoÍ)ØóFÜ3+ôbdÀ[R>á®<}º¾BÛ ÜîzÁ]±ÿ¹ÂìÞ]îê.Ftîæ4îŠf0AöÉ ìtq®œÑáqò&F6ú¬eÃÝ/ù‚»ÜS5Ä%ñP‡g8dãA>ô/TUªjÍK‚1&3Ä:ºQlÜ.Îñi«¶U§é2™A…»ü|/“¬£&'sSyŃu-:&ŠD¼$åd!VŘÌÀ¦/›’¹»À]à®;œ¸,¡&ùó÷)XϦ Ú×fîóɧ`È–¤ƒBn˜’C·>%ܪ–BÜ¥ïrî%¢—PO?ðú ÛXCÿ|}¡¾Â“€»À]OL’Ÿ ? ¸›â‡_ÏYš`f”™ò`Aß.p¸ K~ðjE(ëÄ!Ä@2ïäKC‚Ù\P9£€ÝœÄÝõ«¿îBAAùŠ»$)à.AA”¯¸{ßËs»AAP¾ân½»AAp¸ AAw»AAp‚ ‚ îwóN1ž»K½†{U¥CI>g›šs")TûL /PeWŽ> 4S“¢³iÖrN¶½¾ä͇¬&yDyÞ:úuh9rÍÉ^óI†Ïp·I±®ô³¤¥²ßÓ­xÛ&”gñ êmUÊ1+ÎÆë Eèœ*æ,1+Û?ž³w­—ºRÙô¸#U–š8îzÏXÌLÉ1&ñ›ËÇòñ¼wþ¥l™Í¶ûWqå-ÓÀ Üm²lÃ/*w3™ цˆMAƒ…*ÿ%"]9+{w ѤƒÙ¦&ðл›äï…$wšÙôºw ³wãN1“¼ Üm‚l£±¢ûq˜vBÚ ²ŸZÍšl,Êâ O7ý!1Lõ9A·vÐ ¶@€šélÃÆ¡E2Ò 9Î< 3díÎG²{Ã+ý,¹îå+‹¸­Lâè³ÎrAa°°À9eA."Ìt,Í&nrŒ™l0MÄHÕø#v‚ªpr?:·\ÙåÈǧ{|/þB‹•¬ê*S\E²N6ÍhžèæŠHÜ©¬€­½1ÛÚ»*(°÷ÂŒN0ÃAe%ãdS _&ò£Ž–ŒûY s”@ظîš;­|ø¦NŠç+³ý»Àݦ‰:2ܪ +’ÙIf„ÓW €7§~ï˜èë˜õ9Aº¢v(&Ø$í>‡Fü: ½SÓqjÆ3…aˆ`×^&ù°ÿ{Wµ2‡»ñÌPáÎ2ýA>EKg [wñaP¯÷Uát9:jeë{gIô“Ÿi,®·#f²ª«Lz=*pWÆðt¬PDâN¥1]•ß–ïÝe°[åôA©‹ŽË€ê¨Å½Ë~æG$6AÙ®å§Uȃ²òTýMä|e¶¸Ûq7óž5óúb'ßɯÐp×wÜu 6iW›÷††ÿe‡®Ý˜'DÞ»«à7Üw8HÞ°²\â®Á4ñW¼1®jæ.®UÌ&õ£›'ì’l¦ Du¾“)÷ëÑ%M/EÄWßié²Sg‹Ùók ¢õ©(âž1UÑyÌ€§¤$4GØx9vU$cíÑóÜu¥¼1F1ÙËj(÷p7±é~'¨èæ`†‰…î-‚:JíÞ(‘œ¬I¶ÙÀ*æ zeeÏ[Ò¸ë-ĽQÝgDTÏžçSNïí/1nIgÄÀÝ„Š%Æuš‰à.{-{Ã]#†ÍÜóFÜ3+rcdÀ[RiÄ]õ aïu/p¸›õ¸+ö¿1áo÷îr—§p¥ s7§qWü3ƒ ²Of`§‹ÓàÄŒ>°q¨¬ue£~Z6ܾ’Kݼ’>[¡ˆ=w×{•›î¸ñ騽PU©ª5/ Æ˜Ì =:vœ×—É þHlÜ®;Îñi«¶U§é28®Â]~¾—É V CMNæ¦òŠëZtL‰xI*BO J lb¬:bà®?ç sw»é¤—%ÔttþFë CAû*(À}>ù Ù’ ‚t°ñO¶¢ÔØ8ŒQcãVµ$q—mõd“<ܪæùA·±ÆîùxˆÈîîa&‚+ðÝ{‚±oU“jüp6K_žoUóµ@bà®ôºSõ^òíu;Ty!«Ñ'ãŠ#þªK[ZÀÜ„~[úù»ìäØhI»¬ªèd;”5½weR’ù?ñ„ªÀeÌÏæARÂN†}:_x2p7“Ÿ ? ¸›â‡Y)jCÖçÔç^¤Ì?#?ëóëÑ¿‚ÌÏ!S'èÒ¾pý-öŸ\ìÙKÌ¢@¡ÿ?XÜMïR(b|~D+“˜é¹Ÿ_qÏòÞÝhMÅïÑ^›e§Ø¬•hfhÚˆ²Þ]º0cfL¬¢™ŒqSè9ѯݻ>\R£gpݤꭨ™0Ae”'×É5°t°q;¥7—÷îŠh­°“:è•©ØGMÜîfêÈp7ÂÏ¿³* v’ƒET5àÍ©ß;æúßÄ:f}NP:#—eT‹K”£TÇš³‚A½’v?ÖR¼y¼Ð{ÙÊ$ÞxPM—eX’ýe”à®ëzïÞM 3ETß®bGмI1FÆŠØ)Åã¸q—Ú‹Kjn¸+cTÇ¥wWvr•¸+´\Ü%ÛÎ ¡£˜Óˆ13îwÓˆ»bÿÿë™f‡‰cÞÞ åîŠf0AöÉ ì¤;öNy-ö“dq ÜMà«Io¯Ç*Ããäw‡q]šÌ<™{OêÉ .™‰ùxoyóúd®Š§.ˆLè>™Ar˜bj ZÙ¹ÜÒ<0Ó\fSÈN.û{°’oä½µ®¿ ø4Å#RUPp¸›QÚqYB=ô”§³ãô–x{"”Á- ÒOUÜ_ÆÐˆêQ¨.ó"4UGäÓ©“ö¢‰•IQœñ <¿ò±uŠ/ÍT¢ÐÊŸ}ÉÀs|ÏÝõ˜qÞ2Kþ^ò&ÿ¹&}î.âÜÝ[Ê[Õì?ÝûBéýØÔœv—6·DÜŠ½iD‘ùɈÛ+‚ÝilÜU 0XxÐjà.p7{ ')>Ap7Å Bä§Ò_i7ÑfÓv»ÀÝlᜄ<Ü… ÊIKÿcHš`3‰ À]à.AAÜîBAAÀ]à.AAÜ… ‚ úÿí_Œ×}ßïC Eá—V8‰Û>¤/}‰ ô©nG¢Ñ‹<祊 @ÄŽ¤ØXÄ yPç!5Š’€¸‹X-SÔÿÈ”(‘KíŠÔ.iJ"EQ4)‰âÿårIî®nçÿüοùï™ûùâ rvîÌ™sæüæÌgΜ™AÜE!„Bà.¸‹B!„ÀÝJ¸{ñ&¸‹B!„z‹»czw§¨œ÷ÅX¾y‰ÐDeù•c1²Ee|°L©9ñQÝ µæú™¹ù±ù±«¼$]æÊjÓWîm¸³>:Šä¶ôû}gR¿Üwç€u­Ó¢_ItUœ]Ù»xhE‚Jt©X%Û̾AS!¡$\ûÉ˰PòÓÑZRÊ¢Åòòƒ°jÃV1Àªžs­’ŸßšÎÑQ+·%K4«úEà.¸;gl£ÏnÁÝáîô:ÙP-ŽôÊPë§rï®±BSú/b)àôrlÚ™£é^ÙÔf{tI¶Ü¦gW¿Üwç†mÔ;EÑ<¨·ˆÒö"þ8bz5= ¹cÔ±Õ-'ªajã fžæÄL3üäŠJ_PîOÔ8i½j&îûÒªÙ9'»KôþÅ¡’“O[À4x¢ra”Üf_ ÔtôðFOétŽŽŠ¹‹A¶eÒ\ÉîÜéÖ/wÁݹDîÊF*i9½ÿÕAa#Ï¡MéÜõN8!ÿ­Ö1Ûx‚Æ Ýv«2 ¿´ÈŸ²œÐÕ»šàîÄhW;úkf wEcR¤MÀS¡ËÛiDÐ8ëÚ>N(ÊcCg¬kä*]%«9ÎÑQ'·Ë»{êõ‹¸;¸;Î}f-lðÕÁwÖ&Þw'†»ÁéO?÷ ð3OèÖ-Ô°ôHc S°µ(Úûç­ ‡d>£NÉáÐB^ö|Wï묎Ž:¹ÍXÆ:Rn*õ‹¸;‡¬kíàÍ:‘‰+sÇ•>,ÑÜ­6ü ñÝM¹ggBt’]»ZuÙCxYüò¸ðØN9_»2_´à=ŸÖj$ð&„»::¦†»S®_„ÀÝyÅ]³ÿM¿tÖš8yÝÍã¯}Á]óÏ&èèÕ1¢Í~¢›1½Í`†)Ò®|ÊÞ…»æÌÜÎã"Oî[e’›ryg>ÕûïfU¼|æ¬0˜abGGÜff0Á©Ö/BàîÜÑNÆœô…ÆM¥à¦™¼šy¨GÁЊoM3°gtbâ.­^Çq·ÚðƒÆtà®Gí|ögŽy7åYëŽmO°MX +¹™`œÓ@‰þÉÒñcæÃŠ»Ñ#kJ÷sAÜuÝS3öÇ m¥³ö\mܵט¸ìDÜw[Š»fÿ›Òªi=ÚƒÌæcب›¸kþ9Ã-¸ë~â?¢pwFˆ«7Úk ÆÆ³1)æÀ[˶Y6ܵ´o…q×¾®R@1 ÙÕlfã®e‡Šºé­±ƒG]oÔÉN-0ƒ‘>W›Üw[O;sÄÃz×GôîÈŤ=ò¬BŸ‚¡M j É‘‘rPføÔZø@W\Ó–6^U{grð¨–:G¼™A¼ˆ¶ðf”®N³ñQ³ãèÝÕÛ·q^ßoFÛhf/ãy4Ë3_æ ±aΰb½5–˺‹/:Zd÷ÇÃ:èª?Yj›GÕ¸ îvrjñ ×ôàî„DhŽZT„À]p·i,©ýž(g„dH¡wÁ]„B!î‚»!„BÜwB!„¸ î"„B!p!„B»à.B!„wÁ]„B!î‚»mQÎ{wŇ|”O½#4…á—~´ªÀ׷Ї¨ÛÈPòé,õ˸ö=–±°ºtü…² ‰ö ²ŒŠ+²ä  C )m>wÁÝ^°®uZœ˜äW*mß^§1ìi<´"ÁðSªòó¯®Ï”®¹?ØêD95¶9Ñ;÷P ¨æœŒ…Ó½g~1·îÊU2RÈ_²@ãV0ºJÇÞÔC«B9 ¸ îö—mô9À-¸;{Ü]XÅ1·8ŽFÃFp—H®E<úù·7í㬠bŽëõî*«Ô]|ÉR[vVÛÏu6Ç‘‚À]p·Gl£Þ÷ˆ–nà8«7*½épŽÿ¯"ÜîXÈê–Õ0µñ£x[Œx×ÿ1ŠÀôFù ì˜ ¦â€\åÞ¤6b;‰jsèNz×;øÛ¾ ãÖ½¶V§i×dEgïn´c5»ÀÄݸ1)‹^J ™4ka6-DåEך¨Û "õ_Í`Ptõ6»â'Ù]Q›lÔOÃl{õ]ÿª4×FËá¶]g-BN"¶ ÐÓ±nº7ÇwÁÝö¡Ž wÇJ»¾–4Yê}À°Y“g;€·S×;á„ü·ZÇlã ŽÅÙy- Ý5W§œŠ¦éi4ël©Æ¶¹A„Gh-RI£]Û„±îš±VwQW½j0稸uÀÆ]јÌM¡»Å–´6n(óAŽ‚pƒ;AËõC?Ñœh*ic儵í5w½–ÃìνR(žˆ;27Ý“c»nÜ=;xÜ îŽsŸYKÛ`õìamÖà]p·AÜ o‡ˆaéqUû‘²Ï°Ù±í>­ ¥=Ìnz1q«Óçì"Ý»Y»Ó‰»eo) e64Å—tå8+ºÖÒÎÕ±1Æ…Í®nÏqÞÈ ;r»ÛÞ"¸›À®¼åöÜL¶H:ý9v¸ î¶‚u­¼îSBx[/êh(qº†»Õ†4žàXÜ;ö$îÛî/TÆÝ$¶¸ë¾Qž…»ý¹è+3Ð5.y‘±»ZcR6î¡»%–´@±èŠ:´ÞÝÜÇâ&Š»ÙsªãnfJ$[,:L¸ îN wÍþ7¥ÕÑ:@’ߌжªÓ¸kþ9ÃÇ®xÓXª<îZb;k0ƒÜ–MdÝŒîè!a £Héß>ºÞÌ`à®9ФvWT-«qË®tü@ð÷bî`w‚–ì¸3¸pW¯•ùÏ`'àLÄXË2Ç:˜Ó wÁÝæi'cŽx¬@"zêbÒ~‡ÜzêQ0´"Aw¯—rÃ3:ª]mãÌG™ÌØVç©Ï%óAžî§“ôµ:(³ÆœtÇÖyïn÷)[ã!¡Ü/X°É€8„ D—:ê׌=½èz‚¥U³R®Â®zÛ+žôÍüc{ÄKÄȉ¹o­›îü±ƒÀ]p·µS‹OÀîN8ÁºàF|²c{©ÆÛÞœ“L¤‘M#î"–TO¸‹BÇ]ùz°ÊÉUK¤‘M#î‚»!„BÜE!„Bà.¸‹B!„À]p!„B»à.B!„wÁ]„B!î‚»!„BÜEºrÞ»+¾w£~g ¡ÉKù“û ô„å””õŠÔŒ¯Ê%_QÓ>_^ú5«F¥C¢éPI¿ÄÖ…x.’Û:%*±"Bà.¸;]ÖµN‹–O~–RýB+¤ÑëxhE‚JtY¾KNw8“Vøè¬6G_~8¬€»¶ïÛNwk•ü Øtâ¹Vn딈#»àn7ØFŸÜ‚»-ÂÝéuÙ¡’¥PR4iÎQ.,.ÔÅÝBø=ÉP)›Úlã¹H²5KÄg€¸ î¶›m´{Œ¢-Sï7¦[pËË›çøÿŽFCngu,duˉj˜Úx‚Γiz 5éHTÃO®˜L˯àqµêpì?s[k`l_"nLêã¢YÅ„ŠÈðÂ(¹k¿8²ÕH@ƒý¦Ïs;ÃOlˤ¹«Ð»‹À]p·k¨cÃ]ÙäÉ”ê ‡°i¤w.Þn]ï„òßq¥ŽÙÆÌå$~QÐEágÁ˜œ”«)=îõ£¼îzŠDcR†·mWÖ"WQª …б®QÈt•¬p:ñ\'·Ëj!pÜmîŽsŸY OIã–´jÖs¸;Ü zÃô3¬z[ÜdžßÛˆêÖL™ýmtio-c_£NI9X _¡’=ßÕû:«x®“ÛŒe¬å*8!pÜ)ëZ;xÝ=;aË]ç;ú `‰>ànµá'èî¶rß#Î=×¢ÀÝâcwîÃ2Œ¤mU,`­ôFBeB¸;¡xžî2t»Åp÷›g‚»3Ã]³ÿMi†“ÞÝtؘT¦ò/-^wq×üs† :úŽŒh³„Ÿ [ fhqµ±¶šÊ~3ƒqã¾T“‘ó`”zÿݬôÊ¡’Ïœ3L,žëä6{0C.î»Üw[L;sÄ{6õ'&‚[pñ}·ðµB<Ô£`hE‚Î÷”&“•ñÌŽxúgÈ£jMIÝï Þä¾wW§!³1Y+úØW•®ÒG †Êsp5C¥`«Z¶GÕ¦ÏskëXÖúËÇ]z;¸ î¶rjñ Ýeàî„lÚ8%7µ+û}àw"Tˆg„À]p·–TO¸‹º.ôí¢Þ„ ñŒ¸ î"„B!p!„B»à.B!„wÁ]„B!î‚»!„BÜwB!„¸ î"„B!pÜÍRÎ{wŇ{ü™ó~]4M©_¡R?DE4NGê7 ’·½f}.Ìõ5õ;kå«O¾jÖšd1í#cþ ƒ²…`WÈâ{„ÿj%I> ¬%Ú-5Ò¬üFÞT¸Í^}ì¢~óBî‚»mb]ë´å¼‘|Ì=㣓¨GñЊ³£K~•8œàņZ¤Ô׋®ÕÕÓ: ¦+WYîWÄŒ†kzd~OÝØº’${¶|ÆiULS£à¬zjð€jô»n-9–+g#Y‘F ÜwÛÊ6úàÜm?• ™bì¤~WX]]N.Lw“¬Nv•=ã—>y‘Ó8+þÿ’ú×\Q]%Íz‡A媗G¸ î‚»}dí¡ìÞQŽ×5ÙæwÊÒ®€Ñh辿ˆZ²ºåD5Lm ÌT ,¬†Æ_L2fže2F8ËÜçuÏIÐ2¼X©¸n‰~î‚»³ÃÝqî3kI[¢ìÌ^°¸Û îf §±5t- ЂÓNõÞÝœ‹Zw·§w+v{i·ó¥Ú zóÕ.Që„Þ·iö·æ‡M¥ZêÆÞÈ`ž®T^+—fîð3sw-Ö9 Œ­YXÛŸÐX0«YÈæ¥£®­'2½w·d1Ú Üw[úÖÞ¬SŒy=žÛJ ânµá'Ø4îŽE¿WdåÙRŒÊÍvêZ]»«wîUÃ]ËÚÊ›ä[ ô Û*Gó•6~¦F#Iª zOwfÛ(ú<%³—KÓÖ÷›ý–еé㮺?³p·XVÇÙýçæ…û´UwÝÉrZw‹áî×ÀÝéâ®ÙÿfyðW¹ž³Ê¿ Dwq×üs† Ž]CéÝÒ‚÷^Ó å’¸›N[rë^UÑÔúf†ÒM†6˜Áhz”·s2XE{Ïvo½Pب8llŽ»5ßÖ ,S:Mµìæ æîªq@YòPla¥¨ƒÔ¬ZèÑ:˜Áu*2ê:3A}ÆZáwÁ]p·­´“1G Â×{‚8qÓ¾)‡§€z ­HÐxk|F ÿŠó²xñ§6RZ‚´2îšïݵwÞºVw½w7jLÖ*eI¥j¼6¬uÇh%Ää£såU3ùÈ6&Ù~£Áõº¶ŠiŠD­o{3õÖ8 ìý®Ù TM˪GÕ£–Çf][ÔöF>îš!ï:pÜw[ 9µø„cÜp‚¨¥0ÌwÁÝ.pNõ÷D»!„wÁ]„B!î‚»!„BÜwB!„¸ î"„B!p!„B»à.B!„wÁ]„B!î‚»-SÎ{wÅcÔïÝ 4y©_Us~h–°l{ÕEµçúªZA‰oeÅ„öí±i|ÖÜU–¦#S|꬇O‘Ü–*Q{»ànëY×:mi6̯–C½Ž‡V$h|PÕ~Ö"ÛϾAã×_0¹P¹ÖìŸ+Îj¸¦PÀq×¹VnÁgqøÔÊmɵ6¸ îvŠmô9À-¸Û"Ü^jVæ—†ý&†» ïL‹u¦™eS›íáS$ÙŠ›n_ pÜíÛh7ˆDc¤Ü­Sp[É›çDg¯œ›f¨m «[NTÃÔÆ4Άñi.½Kül†Ÿ\1™–÷vÁã©É‚4ZïnܘT£-ÄBik$"d¸°¸0L—–÷ÇãD•1r ¶r¨ÕHd¦êÂÂ(ÉÉâh ¦£ßÎ7 p:‡OÅÜÊýl[&Í•yBiM pÜí êØp×8У¦O½U¶uñ.§;w½NÈÇ•:fOÐ8_‹3«~âĤ ¦Õ{霷¦H»Z{µfcRw`Û.Ö“i9a¿u%°0o’eQÄßi_b‘i¬k~ºJV{;çNn3–1úZÚÜw»‡»ãÜgÖÂã>_­±ÑšGÚpw"¸œwô‡ ‚Þ-üÌóµµÃ M\z—cÊ fcR!M3ÖÒ:¿Yë®´N˜=«¶>\%iÿï¡%ƉÌìù®Þ×Y>ur›±LÖA:ã@à.¸Û9ÖµvðfbÄ…·ãB–èîV~Ðx‚î~$÷MÛÜ“/!:Ý®]WÛØlL*â®eí€u-Ý•ú„íF•#6ÊUï¡[p·‰ÈœîNèð™=îÎ(¸ îvwÍþ7¥!IzwÓ+bqÕ¬?tM“ÐUÜ5ÿœa‚ŽGËh³„Ÿ8!š­€»3¡ÝALÔ)×dh÷²¦GÙ:NØB;î8 g-Êþhû ®bŒo(2ó™³Â`†‰>ur›=˜¡îÎ2¸[w/Þw§J;sÄ0~ý†àO|#ÌŸ?d4Ÿ‚¡ :_šf2O¿™)ž_ò¨Úl¤dÐ^š*ßÌ5&k•ÒÕ‚A§ê¸Þ÷²•“ΕzT-ØÐDdìbÕód{Tm ‡OÅÜÚ:–µ‡þ áîL»q÷ìà'èÝäÔâ®zÁÝ '89 CˆÈäðAà.¸Û{Ωþž(pu‰$èÛED&‡Bà.B!„wÁ]„B!î‚»!„BÜwB!„¸ î"„B!pÜE!„Bà.B!„wÁݹPÎ{wÅ'gü7‹ó~]4E‰ïÙÇÁ˜¾ßÞ|Ù=¯¿ŸZµ˜ûÙõ^VeaåkU¥¥þƒ–I~ã¼XÝWhÁÂ60MÝý ¸FšGëŽ\K¾c«mÈü¾X NÜwÛǺÖi n$_WÏø $êQ<´#A#•k0•}´¥¢‰pŒk?› ¥/,h5˜\(Ýt¨ß0O?ÜëlšÂ]±)å‹´cž†íIøk-…»Í6ÑÚÉ»àîÙFŸÜ‚»3O0:ã«=»ö3;½»ÓQ)¦²WŠ¿øhTº1I¯~GÃ…Eô5» £x5oË®œ×mÝëGy— ³ÂÝ íd„À]pw*l3P%ûg”vKifƒÞ†pNtö¢‡­c «[NTÃÔÆL{¼,aî¶ wퟘµVŠÖ»7&Å7þï%ü5Ki[䓡ѳ¬æ/'-›d8fë0Ùňw%gËqêX/Q¢tCIjaSé­¡îœ JE[+€»É6ƒ¼ZK­eÆ8À\;dq2;Y¹ RrïvË®Ö2 /““%³:¸ îÎêØpw¬4œI˯Ýb[¿xŽÙ ‡Z~½NÈÇ•:fOÐuÕî¶wÓ&Ak, Gõi6&…û cÎ 4†¿´-ÒzAE–Œ›ñÔšDX…]Ô ¶èºíe)‘6þBi*³:EtSù6ÅÙ,Ügêc<²2c´ÛŽ2¡¬érµ«f_·&f& WwÁÝ>âî8÷™µ°³ŽšÔÚxÜmwƒ.¡3¨ÀÝ6ᮃÚÌ…S¾¨4à:]DÝ™mQÁ9))ÝŠÑÔšŽØI¯²ÞU8p6JG‚‘³ã”9’o•ü[qwMö‹ÚskfÆh·í;dB;ÙUÞŒ]m^Rä.Sª:¸ îöˆu­¼Y縨I4®š­ê,îV~Ðx‚cqÿÓq6w»„»J_šÙ˜Ýøh$ºèüK¡¤±‰èÑMqL.>²&ú$­7¹ŒæQ+\VóhüfÁ]mسºŠ±ëõâ #3fƬ;dB;9wm»ZO¼À2媻àn?q×ìSÚ†¤wWk9f„ÎÝNã®ùç TTϽKîÎ wÍ;Ù–…µ×d`X^L¨o S»1- ¤ÞU·ßgÒ#Eãm¸=­hÖæÑDßl¾Rv‘:8]Kꬿè-Âm±Ú¢Ì`d&«Ý¶í íä|ÜuìêŒeìƒÊTwÁÝ~ÑNÆ1ø_¶óqk¡<¹0ÚžTA †$h¼LU¿wgŽ»é´6Útì^ ZL¼ßÀý*[kè@íÂÌí÷“ 9IZ*”iãµlT¦ÜW7-J¤î\m£ Í[íF'®–mm׫… SÔçÖÎvÛ¶C&´“sp7kW;—ÛU˪î‚»s9µø„FÜp‚¨¥èËß]ÍO»Í¥0jî>î΀sj¾' ÜE!p·}Œ;°¿!p!„B»à.B!„wÁ]„B!î‚»!„BÜwB!„¸ î"„B!p!„B»àî(ç½»â«4âcñMEÊw’Üï‰',§¥ôM¦î¯)ß´U?ɨ}¾¼äËP•ê©)ßÛ-ô ¡æ;MÝý ¸úqèJ¡é—ZkÿaX$·eJ4„À]d°®uZ4!ò³”¶/Œs`ö4Z‘ ]ÊIгÃl.>¢ 0ê"m*’ïW¥ä ÚYeòµ¦~¤W¬ïjš¢™ÕZ:»ÎµJ~cl:‡a­Ü–+Qÿ »(Eô9À-¸Û"Ü^ߪѹÿba\I'Ã…Åòµ&¡Z&Pv*RÊÂBò±doˣѰӽ»eS›ía8 øì} !p9PD»Ç(»s”ÃnM¶ Á•i8Çÿ×;tsnv¡¶€¬n9Q SOÐhöã³Qzw5øÙ ?¹b2-ïÉr6©‹ î.¾xÜ“³%H µ1)„)A¢áÿ^ ²¶E² ÚÈ ³êÓ9q‚iW´Ú'&»aŠÄ#ù‘Zu¬—(‘3VÅÞÉÊ^·ï×yC_­¹é†s;všIò`ìð¾wÁÝdbÃ]yŒ‰Vä¶ ñœ¬ÓjåõN8!ÿ­Ö1Ûx‚ÆyVç$~QÐEág9Ϫ·âÁÝš°kÛrpbÆpfcR8 b< Ñ!®N#,Um-#ð<%9”  ¶èºíe)‘5VÍ•Íì5á®’®kî‡Ù†ur›±Œ=X{HÜwóqwœûÌZxä%ð+úk‡-¼ îN wƒý‘'õ¶¸9ú΢œ(šf] ÞÜWÀFß`Éa¤¢vãþ2Ù—X¤êmÁ¦õ¹ESk:%®ÞT³ytÇjÔ§§ç”éÔŒðÜâ<(¦sÖÉmÆ2Žrõ)¸ îæ²®µƒwìäݰ‰‹NeŽ pX¢¸[møAã ºûÜ7[Ëœ˜PÓ¬+önr–wqŠÙ˜‘ßF¢£k´õÐÕ¤” ÃáÈÊUäá“Fö~i%2³éËy ¢ÙŸîNè0œ.îö0¸ îÃ]³ÿM9Â’ÞÝôjT½v—¨C¸kþ9ÄÑf ?1þиíÈ™¢¢Üoi²5IÈ&Á¸'[ºÉHn§)½g™7Ðc\·Þ÷ÓŠElÃÕè™1f)‘-V-o©pf¯V„çCZ…Á ; ëä6{0ƒó…= $î‚»9p’1G ¡×=ˆ^¸˜´ Ã!õ(Z‘ ó…ŸI`ÆÝ%ÆÃ/âÁŽ!ª5F»úKsÓ3µZ%ê,ëSPfc²V4&Ä¢¶ž±ŒÇ£Ì`°¾bË‘OmŽžÆhVyôÇqžlh" öIZªÍèHœÂaX1·¶ŽeíQ2{dõ1¸ î`’Z|¡îN8Á†¹MíJ|"œÃ»àn8§ú{¢À]ÔɾI‚ád»à.B!„w›ÆÝowB!„¸ î"„B!pÜE!„Bà.B!„wÁ]„B!î‚»!„BÜwÛ£œ÷îŠÏ½ˆo|#4 iŸñÒ>锆¨#& ­^:G2 Û‹ò{}Œ¸¾je}Ÿªùy+½:Êí(å˱AjÊ'`‹Ö­ò…,‘ƒ:—~6v’‘‘`…m5½0Êaeó`ÄP¡ÍUÛoœìÀ]p·_¬k ˜ü–¡í;Ý´ =‡6%˜ùù¥ü,óõ¦œÔl¸+ñIûöha7,¾h\;9káp_ Ëî(õÛªb}„Ká® TWŨP¿ð#ãûr#¡xÀT`³éá\¥£¬îVÈsÆ î‚»àî\²>¸wÁÝâ¸ÛûcDMß§™m…Yþ·‡Ë靖ÕJ}ŽVe­…dÕê¸ë-á¥a|O¹ ½»SùR©Íwü »àngÙF»Ç(;h”#~Mž`‚Ž‘ôÂy46sÃM-duˉj˜Úx‚nÈ,5ÀF]=½ꯖޅ–÷I š9‡ñ*j'’û¾x×Ú—«í¼Ì…•Þ¶¸1) áÿ!fÊH³‘ü¶KÁU‰V¿Z6´^ß´Re©ÃW¬hOP¹Ñ‚ºD*ˆØCÝ(”ºŠ’y[jz£­/c†±ZãŒw»«dñÎ_©#ì›Èºªr§w`ZWW·e­…B[ÌNÇÚæd”»ànC¨cÃ]£µ‹Ž\uCtNÍ!ÀÛ©ëpBþ[­c¶ñm)ã+ˆÃÅR¸«ÝNCA*Eà¹ø`†xÉžQ{`ºk6Ž…U<´ uÈãí˜sÃU+S¢ yx ÿ”nP€È!y×SqfŒØq%h9#°×2.ŒcÁÜ‹¹wðÅègKÚÃØRãÀʨû…€Ú»îÞÄØ»½‘‚:'ãÀ´¬žwâøsn|ke—»àn¸;Î}f-lN“ÖFÃíè†wÁÝ án•6êê–g¥‚~;²TÆ]ö¢s7s7§nmaÉ¥ol©íq‘ Æ֛料6 ˜Q"$çzJ]Á䥂!çâRWŸaF¡2º³~Ò:f“ÞOk×®QÚŒ]qÌZÎxš1ûðw¡fÆ™Á¥wiÁ9Ó©ñ$'wÁÝ ÖµvðfèÅåz‰‹YÔ5Ü­6ü ñ'ƒ»¶›ÑÚ îÀçd*u5=¢Ýc] ½€%/Õ§Â|ú]°õ®–ÃÝø~{„¶¡¹}»áQ$ä,[±ÝDËÁÝŒU2Ss­®…qF]5‰»eê—Æ]£D9¸[`¿ÂÝbéÐSî‚»“Ç]³ÿM9ø’Þ]íÞ qœrÈvwÍ?g˜ ­Oµþ`-R£ÿ¢³Q<+Ý»ÉR“[”Ûè}¹ü³ŽXÐwk¼}aÛíÚrM†z¡ ûµÝF·Þa·ÔL’!™˜uÜzÏÚræ`kZókìõ¸P«Ø~Òmë2Zp;úìÁ Åqwœy.)‚»Ùƒ´-Á]w-8‡%kYæX3pwÁÝ ÒNÆ1º^¿]ôOÄÍEøZ îÀô(Ú”`ÁGÕ\Ïç»Vׯá…-Œ”G…¬ïùÕn6Æ/íÿ£jÆÃTbÉÝêX8kuáý¤U­š¯ú5oå'/03úbú#cbà=$lƒl-hŸra¯²m‡)7·]ݤj¡ôUDæ-© ,j÷Ò06ëÙ†®ZPâÈÕ¹êØÄØòÞ]±÷ò† ¸UËÌU ®-*Ïœ¹ªÆúx¬»ìÜwb’Z|Âpw b±†ƒ°ñû'vj÷åÙ”»H«mqúùDàî\rNí÷D»!„Z¸S~Ú«Ú§ŸOî"„B!pÜE!„BànÜ=;xp¸‹B!„À]p!„B»à.B!„wB!„¸ î"„B!pÜí–rÞ»+>û¢~Á ¡ÉKýˆ’óEì„e+•¼WÔò°*oU¾«*?Nnªè{ú•/a©ŸU«E®µšŽIùi·ö8Er[¦D­¬zî‚»b]ë´hÔÏÑg²õ(Z‘ ]î¯È„í„ÝŒ;‡Ÿ/Ykêg‡ÅúîÐÈcÜÕÀµYÜu®Uò³[Ó9pjå¶\‰ÚXõÜw;Ë6úàÜmîrVê’dxÓ‘øß^,_k¡e¥ÐI2Ïpa!Yµ ¸[,[yàI¶ì¦[XõÜw;È6Ú=Fq´«÷×d+\‡süG£aέ3Ô¶Õ-'ªajã §›øÜ–Þ« ~6ÃOƒ-Ù¥ÃG;§£”O͈٘J4¨ßðÿ£Ó”Ò*N~#¸3¥Õ¾– Kœ„?ÛÆšZý˜YZH‡‚¨£B´2Z™o:NÅÜŽõq.µÖªGà.¸ÛqÔ±á®<þ“æÑû_ä5 ¢Õx;u½NÈ«uÌ6ž qÖÖ9I„Ÿ ž õ³¶L:m¦¼aÓáa‡FIâAјˆvü޾5Vô0è?¥Œ×‹@*MÛˆ.=ƒfj Ť±®‘£Œ3ÿÎÆ³‡oŸ¹tÏ[òܧçÃÝžwB!„Ðp×cÝó—¿úðÒWkç·O|²süìöÊG;Kì9½uøÔö¡ÕíWWî¿ttÝ[ò½_ŸwB!„P·pwéô=uO_Ø>ññNºGOo>¹}xÕgÝ×o¿º|ÿåwo{K¾vìCp!„Bu wßZÛ ûu—?Úö@×ó‘“[å¾²²úÕ•û¯¾ë÷îî?tÜE!„BÝÂÝ×ßõ0œ 0œÚ íQîËËÛ/-oyÿzq÷g¯¬»ÝUÎ{wÅ÷tü÷‹ó~]4E©ŸMÒ¾Cj¾òž—àwªZË7&™ñ0ßÒêùˆ¢R…•Ÿ†›ü.ò¶6®ÁÝ×V6—?Ú^þpû;øaï®Çºèzöæ„!î>ýâ*¸Û]ÖµN[N/®oˆÀ=‡v$hD râ’ߣ«S}çÁ¬î:âÁ±•ÜħÖvM|C꾿ܵ­úùaŸ”«·Eг8 )®h¦¸ûâ±;âzdúW«[ž_XÙJæø}¼Çü±»Ow{Â6úàÜy‚iW v¶ w·£°;†Uq7#ZŒ»ÓçÉÞ¿\æ§\T¿kw±T¸¢™âîÁ¥pƒ$ÞdÚãÞ–·^:¶îöƒmªì×ÄJ³ÜJò¦Ã9ÑIŒ¶Ž€¬n9Q SO0틱„¸ÛAUµ"fcR+Ò.þáÂb4w± ôYIc5Ðï7Ç?%‰D¿§÷ƒAæFŽ^^i%•ÙO“ f˜É*åZsĹÖP¯õºø2x-=‘°ñ^²Ñ®ìáL*vKºD²Ãƒ“SžžÕ$i¹5{¸šgL™m­D㱞7±ðÈ]¿Z%Úö$¸ëãî/ÜñßÃ8¡Ü”uW¶,ß?¼ˆlï÷ÁÝ Ž wC$j7Ô{4áÑ'ÛE £S×;á„ü·ZÇlã º®ºÀÝÃnÒŠ˜I#ñq7_k¬¬¢ÉOÊ2bÑ4ÁlÉ…ïɦ1,µ:@Ç›2“ÕÊ•¹SŒ†º¿ÅO7aMD-˜ko(4+6 •:Ö4p]{ÀìÚÍWóŒ™Î1JdæÍ•¦V¿úY»H Í#îîçΡÕíç"'¬û‹÷¶Bï?vÿù#àn?pwœûÌZÚ>£&Í¶Ž£ Üm wƒN–3¨ÀÝŽ)i$þT¸¤ÇCÜ{¶ ÷F*-’Ö3&ó!õŸÛÅ]|ãÞS’ÍràLdM)W‘ÝcisŠï¨¡ºÅwž#êßZŠ"2Û‹„vmÕçýâwÖ. vÛf—WíÚu6_æ³`‰ì'ÜÌú­Hó„»?óÎëÇýWì¾¹ºsèäö¡ ÷åµíƒ«ÛÏŸØ~ve뙥ûûлÛmÖµvðfṏ Ñ¢—ö¨ƒ¸[møAã ŽÅ=Gã* ÜííªÌäßqU“Zñ Pzwm·¢ªð^&®L÷ÔrìBï}ñKán&ïF|jÝ´ÿÛÂ(ì™73«z×®3\3²]w ÔoÅ@š#Üý‡C//ûŸ“øÕû[¯ŸØöüÚê–Ǻ/œð»vŸ}wëçGïí? îöwÍþ7åÕ: ’ߌöÎÝNã®ùç T¡Ö" Üíx7¯Ù˜Ô‰å^°ì~Qa6byol4pÚ16d)p»ù&Ø \Ù-ÐP÷µøÙƒ²ÆÈ0’ƒÆÍÁ Ñ1ù*Œ×œx¼V8\Õ3fF‰²ú— Ôoá@š[Ü]|cýà±{/­lùŸ“X¹ÿÊʽ—ÞóOûÅòÖsÇîy¬ûÌ‘Íçßó¨Z÷i'cŽxÌAéig·?d|Ÿ‚¡ ï ÒÏëàn/pW¼œ¬FõãçÎ^¹µÙ Üõ2‰1ÆcŒ±ç HÙ~ÜÝÙ¹_–ùË®‚P?ôœñ.x×o^ÁcŒ;á ˜×KÜõÒ¼tmûø¹í¥Ó÷Þzó㛯­l¾²¼áùÅcw.m8²ùü;Ͼ}æÒ=oásŸžOVñ~ýå‘;Þb•í¥0+{9¯ã–zVÙ®™óNïp/‘.Üõ"ÿÇÏ~pûæŒ1Ƹ®€y}Å]o'œ¿üÕ‡—¾Z;¿}â“ãg·W>ÚYþh{éƒ#§·Ÿò_2üêÊý—‚OŽ÷ë³É*GNm>¹}ôtu‡Ÿcž‰“OãUó K=«l×Ìy§w¸—ÈÁ·oz‘ÿ£§Wo¯_ÃcŒ;á ˜×ÜýÚïžnw=à÷vÂé Û'>Þñö€W|ïäþ?ü 3VýðúñíW—ï¿üîmoá׎}˜¬âí%–NïT¶ŸÂ¬\fYêe»nλ¼Ã½D^<ê¿]ð{×6n_ÇcŒ;a+æyŒuCÙ0of¸ûÍ3ƒ÷MwßZÛ ßCý°7,ù2ò++;¡ý— ¿ëcÿþC'ýUÞ÷W‰Pdv4KO·Ô×neýwªÙ>=G;ÜÜzxÙûg{WïlÜÀcŒ;aóÆó(׊y}ÅÝ×ßõ{¶ÏúÀïÙ%ë¾¼¼ýÒò–÷¯çp?üìÿeoßôöÛÛ§vŸÚ~ûäNuŸš™½œ×ñ”KíÁí_=w×üwªÙ>9G;\˹—H‚»››ëcŒq'lbž$=+æõw_[Ùô€ùC…ù½â‡>ì Ïá~xúÅUpÜgܽw÷6ÆcÜ k˜ú••„÷LÌë+î¾xìŽWö¥ÓiÙµºåù…•Èá®xù˜¿Óž8°î:ïJáÍ“;‡On¿¹ºSÝ'gæšONM¹ÔNÜf¶Wçh‡k9÷Iq÷Þ&ÆcÜ KÌ 2žgxÌë+î\ÚHÆ(&eMà®oü­'¸ûÊòÆÊG;‡V·ÜNö[ ÆHÏÆ'kyÊ¥váî4³]·¾:µÃµœ{‰„ªy¸»µucŒ13×/ÜÑz¼óZÂ{!æX¾ èÕÙ{àý¾âîþwîxçôä®q:¢cmûïm…ÞìþóG6Âýî‚»ó»÷0ÆãNØÄ¼7O¦wó­˜×WÜýù›w^?îŸÖß\Ý9¤2ÿÁÕíçOl?»²õÌÒýýGÖÜ}ñØ¥v^>±ýòêöËÇkøÄì¼ZÏS/µ·Ñ¿«Ê¿ÓËöñùÚáJÎo‡í¸‹1Ƹ[¸«ažìÕ´b^_q÷m¼¼ì¿uíWïo½~bÛókÁˆo'¼pÂgþgßÝúùÑ{û§¸ûü;Þ~{aeëù÷¶.W·2^bºör^Ç3,õ¬²]3çÞá^"ûßöãÿ‡ûNîìÜÇcŒ;a+æùoßZÝqa^_qwñõƒÇî½´²å¿umåþ++÷^zoëÅ÷î¿°¼õ‹å­çŽÝóvÂ3G6Ÿ;|+»ûìáÛÞ’Þ–ï'ïp¨àfg˜J ϰԳÊöKs¼Ã½Dž{Ëÿ¿xúäW_maŒ1ÆpÌë+î~táîÁ·o¾xôÖKG×C{ÓžŸ?²áùGnï{Ý;×pᎷð3oœòþ=séž¿ä±õG×_>v»²½fe/çu<ÃRÏ*Û5sÞéî%ÆÿŸ;Kã‰1ƸC¸[óz‰»o®}6.¬gÞºxíêÅ1Bs©ÅC¿¹rk“ÆcŒqW\óz‰»Wo®/¾qþÇû?øË¿?ý£§WðÄÚ÷¾ÿg{WC{†þó§Oýø¹³Þ¹ÞÛž?ûìÂÛ'Îì=ð>ÆsâÞúuücŒqW\óú‡»^ö0ÆcŒ1®ãÖâ.÷¦B!„P#j'îbŒ1Æc»pùò¥+W¾¸~ýÊÍ›×××o‚»cŒ1Ƹë¸ëbÝuwýÑCýÑaן¹ó3pcŒ1ƃ»cŒ1ƃ»cŒ1ƃ»cŒ1ƃ»cŒ1ƃ»cŒ1ƃ»cŒ1ÆÜw1ÆcŒ1¸‹1ÆcŒ1¸‹1ÆcŒqçp÷~ö·cŒ1ÆÏÐÁNwÇ!„BÍZ fÀcŒ1Æ fw1ÆcŒ1¸‹1ÆcŒ1¸‹1ÆcŒ1¸‹1ÆcŒ1¸‹1ÆcŒqS¸û[¿ îbŒ1Æãáî7Ï |ÜÅcŒ1Æà.ÆcŒ1Æà.ÆcŒ1Æà.ÆcŒ1Æà.ÆcŒ1Æà.ÆcŒ«ù‹ÏNþæÜÊù³KŸœ9:Ÿ9uhrN¶âçÓyåòJ×ûÎyý‚»cŒ1릂 —Îìo~ö;ð£Áïýq?üõïüð¿ýåŸÿæ}Ͻ/àœ×/¸‹1Æãlúñ1…F?xò÷ÎŽû¢“ç>÷Jôøßü¿/>;ÙûÎyý‚»cŒ1ÎÅ¡ßùƒýãÊ™¯z¥\ùÈ+×ÕËö¾€s^¿à.ÆcŒ³}þìÒà÷þxggÛs ­xkëþÛ·¼r]¿z®÷œóúw1ÆcœÛûçaÃ}_÷úâ»·oݸvÙ+×kŸô¾€s^¿à.ÆcŒ‹àÐÝ»›wïÞé‡777Öo^»zù’ÄÝpÎëÜÅcŒqºsçvàõƼüØîA¢Ý/^k÷cËõ6½±qëæ/¿üüS‰»µ è—E¡‰L6XÀI×ïòãiM~÷éF#¤Òn,U|pcŒ1Æ1…,q«1/?º{°çédz÷£Ë×*¸¤Û7oÞ¸üåççUÜ­Q@¿,³Ç+˜É&ÊR¤€­ßåÇw¥¿³ï»>ñ6!•öO©âƒ»cŒ1ŽqÈ£$*ûÝÇw}÷)1ç]y*úÓäd:Óïúônlx¾}ûÆë_\þìwk0ÈÕãßD,˜IëbO=²ûñ£p’õ{ôñÝ»÷fÍ 7[×¥ŠîbŒ1Æ8Ä¡$*ù‰=ƒÁîÇŽ(3ý©»Éôî?=vûÆS{Òñ {žJ×MçÄKFó£ér^_¿~ýÚç_\Rp·VÃ\%y“QÞw=v,(>ßR„cí —¯º·õN°~ÓêP¬×c°Øc{2kÖØ]®Ä›->¸‹1Æã‡(ë'}¦yäIó§%|Þ,¿îþÓ¥õwÛ=Øód8sïo±'ÃùÁôÒõ ùñ|ëÖµkW?ûüâ9‰»• (rëÖÏmšù8“bÝí Ï´¥é|°go#œ`ýfA,ÔuT®š]2vWnâMÜÅcŒqŒC×=¯¯_+ç'Þó¤ã§¥ïï<üdô§<Á´?3éöüþ’÷§÷¯¾VØ!¸·tfbߺuõÚÕKŸ_üXÅÝJLråsïž$Û²,Ò‡%3o–®øÞ+SÀ Ö¯«õ˜ìWÍ&»ëɼýÓDñÁ]Œ1Ƈ8”€DYïóðn×÷—ÌŸ–¾¿kðð¾èÏÃîÚõèÒßíxÿÆ¿îò¡h—¶n´–·ü`Ͼ«òãùæÍ+W¯\üì7g%îV.`šÛ`zÉ+Éž‡£Ì§”ùwˆYºÔ~{þ®‘N²~ÊÓffÖcNÍÚ÷êäŠîbŒ1Æ8Ä¡[·<ºvóæÕ*>ê3Þ®G3Þ§LÿÝ#Éœ}{Lxô¦O}ì Wñ~Ýõè>Žj«—ôW®|yñÒwë0ÌU”Ïžù(·Ñœ}{CY+õÑGƒ½uôjÅÌœhýú¹UËþÈ>£eI£i£f»Ë±š-~„»€»cŒ1¸õ›UöÑGzdŸ˜sô{»Ä­ëð'oq7û{Gý%úˆ\Æ[+š.üУGKçäÆ/¯|ù›KΨ¸[£€"WQÆôÌ?âÜà‘ŸÞŒçïzô{Á¯Фö=\\©c­€“®_Yköz”û'VkVß]ú^PñÁ]Œ1Ƈ8”€D|ýú_^¾pñÓ$îö¸€s^¿à.ÆcŒ‹àP—ûáë×>¿üùùß|úA€Cç{_À9¯_pcŒ1ÆEpèÊ——¾üò¢ç+¾/u×^¾ðYèÃOήù½š×>í}ç¼~Á]Œ1ÆgûÂÇï~ý;?üÇw–>=wê“×Î|қ讽üŸ;óþG¿^~áµ×¼r­ß¼ÔûÎyý‚»cŒ1ÎöÅóïý×ÿõÄþŸÿç©g~yêøá®ûäñ·N¾÷æþƒ/|ûüõÿßOnÜþ²÷œóúw1Æcœí/.­yÿþàoç~4ø½?þþÑ_=}ûöåÍ;×z_À9¯_pcŒ1ÆÙ¾zùÃëWÏ­ßüìÎÆÕÍ;×ïÞ¹qws‚¾ÿÎä,6tëÞÝ[w7o^¿úqï 8çõ îbŒ1Æã¹5¸‹1ÆcŒÁ]Œ1ÆcŒÁ]Œ1ÆcŒÁ]Œ1ÆcŒÁ]Œ1ÆcŒÁ]Œ1ÆcŒÁ]Œ1Æc î‚»cŒ1ÆÜÅcŒ1Ƹ»¸û/¾{1$Þ¯=|¹û[ÁcŒ1ÆxúöX÷ß¾®áî?ûþóÿrîŸþ§þÉ8݈ß:Û€½¬öÏßjÈß<Û„Û¶š(TS{¸‘n[·ªP­ÛÃgÛäÞ˜Mª]M(5ÕBõ0lÚVÝ-kBÿýñÁ¿yuðàSî~ý™ÁƒOÞO´Çûr› õ@›Ü¶B5RÝ­ÊLSá÷À¾fܺc³‘o“;¦ÉLÛÌù…BuÜíj(öáÌ~ÊŸøW?‰p÷_þ­71ÆcŒqÿìáîÿWÅ. endstream endobj 48 0 obj << /Length 781 /Filter /FlateDecode >> stream xÚíUMs›0½çWp„™ KB™ú‘̤“ɥܒÈ ‚$N§ÿ½+$°qq“zëÅ#/«}owßj?%'‹ &‚QŒcâ$K‡PŽÂ8r'ˆòÈIrçÆE‹¬®–Ūk¤çs"\ßß4rY<Xtªñ¾'_dF 8¢qÌM”ö^VžÔ½ëŠ2×G¢Æv‹VJe‚M9ù“hÌD[§òUdë›V¹)*Õ¦e9B¯_‡ã{p{hbxÄ…0o„¿\z>£Ø]׺~ú”Ë6-J™›:bÓemQWÊXÒÁ±’™T*m¶^¸§`cÔUÒ~ìk§¦vs¹P¡8Šl™\K>^]Íg aFÇ¢ÚA€³ã4F±€ÄH€8‹—ª»&³ýË‹Ffm LûâÞbŽ·ܺ3ß³Ô6¿Sò õY½^ëÍñ‡sÈFþ eº™@Ž%#B$X8Ü.ÙèÌ! LоÓ4ŒP HŒÂªy>!»—£X„pWw][”j C¸n…r¡;ÕÔk¸F˜Í‘þR·[¹ñ|]UØz1¯=ºOUY§Öm¼Z¦ª¯ EC–mÚ ÕËÁ D”ÑÁo“fº/çnº²fB€ðºÖõ4–¢5. ‰^ ”c„¡V%XüñšDHDl@ÖÅ¢¬³´\Ì6#±Kg§'¨'2Ê¿´:‚$Ĉöy»zÒ2ÖjÉA+R=´õf8¢ˆÑp¯«Æ `ýá pg³oeâ„‚ÌÐÃãùñei^P«'ÿç£l þ/t¼ØFž¢¡E¡k' "—twÃIöŠ9ÃOÉf¹á:(ž¸;’o`×tÕ„ñ®ôe¶GÏ,kŠMû*û{çuä#û¦y¨Ó_vÌò±íràö¾ÅrØÇ÷®”=àÿ+埬”šð¾•m1OÓHî e•¡¨_95'YýèGykþÚÜãã§•Û`o8ó5hIxŒD1Eá §@:9ON~{ endstream endobj 50 0 obj << /Length 157 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0UеP01R03VH1ä*ä26 (˜Bd’s¹œ<¹ôÌ͸ô=€Â\úž¾ %E¥©\úNÎ @¾‹B´¡‚A,—§‹BüàÄ?Q"êA„=˜hò`âà€;˜ø$˜È@F0A†©8&ÚT’ŒÍTê#ˆ`xÀåêÉÈxrK/ endstream endobj 51 0 obj << /Length 180 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0UеP01R03VH1ä*ä26 (˜Bd’s¹œ<¹ôÌ͸ô=€Â\úž¾ %E¥©\úNÎ @¾‹B´¡‚A,—§‹ƒýæÿøA„<ˆ¨‡@ føÄŒ@ÄÚÌ ‚ýÈa@Âìˆÿ@D9‰eÁê :˜ÐÉ‘àЇ $„ÀaU?pH‚ú\®ž\\Äoˆ endstream endobj 52 0 obj << /Length 179 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0UеP01R03VH1ä*ä26 (˜Bd’s¹œ<¹ôÌ͸ô=€Â\úž¾ %E¥©\úNÎ @¾‹B´¡‚A,—§‹Bý†ÿ@Ä0Ñ"00Ôƒ†ú@‚D0ÿŒô @Žaø"þƒW"íÿÝ "Øá,°X¬îL/=  p¸Ô€†ÕÑ ISÀ¡ËåêÉÈŽõp endstream endobj 53 0 obj << /Length 96 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0Æ@ÚP!Å« H(€¹`™ä\.'O.ýp —¾˜ôôU()*MåÒw pVò]¢zb¹<]äìêüƒõìä¸\=¹¹ŠŽ– endstream endobj 54 0 obj << /Length 162 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0UеP01R03VH1ä*ä26 (˜Bd’s¹œ<¹ôÌ͸ô=€Â\úž¾ %E¥©\úNÎ @¾‹B´¡‚A,—§‹<bÆ@‚N°ƒ ?˜8$äÁD° ­õ ¢Dü`#˜ø2î©fâ2˜X3Iq,63© ã*@—«'W yK/ endstream endobj 55 0 obj << /Length 104 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0Æ@d©bÈUÈeh䃹`™ä\.'O.ýpCC.} 0—¾§¯BIQi*—¾S€³PÔE!¨'–ËÓEAžÁ¾¡þÀÿ0XÀ¾Až0À®ËÕ“+ 9Ü-I endstream endobj 56 0 obj << /Length 111 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0V04W01Q0¶PH1ä*ä21PA#CˆLr.—“'—~¸‚‰—¾P˜KßÓW¡¤¨4•Kß)ÀYÈwQˆ6T0ˆåòtQ°ÿÿÿÿŸz ñï?*‹1pš¶ƒËÕ“+ ÏJS endstream endobj 57 0 obj << /Length 102 /Filter /FlateDecode >> stream xÚ31Ó³´P0P°P04W0¶T02VH1ä*ä26PA3ˆDr.—“'—~¸‚±—¾‡‚—¾§¯BIQi*—¾S€³‚!—¾‹B´¡‚A,—§‹Býÿÿ?þÿÿÿƒÄ¸\=¹¹E:(“ endstream endobj 58 0 obj << /Length 190 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bSSs…C®B.ßÄ1’s¹œ<¹ôÃLŒ¸ô=€¢\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. ö P߀ ÿÀJ2~~€‡dþü|"ÙþÀN‘üþ`%åê°’ö õ ìhL²¨ FÖÿÿ'ÿÿy“ü´ñû,$3üÀÀŒêÿ3Øÿo€ÿAŒYœËÕ“+ H0‚6 endstream endobj 59 0 obj << /Length 230 /Filter /FlateDecode >> stream xڥбJÄ@Æñ/¤L³°óº Éi¬ç ¦´²+µ´P®Û©¸©ysÎϽQ­‡%oÚõæé•¶=¹{®[r×é˜\ÃïŸ/ä¶·—\‘ÛñCÅå#õ;üÐ"ÓL EÐÅ(ðJ£däG)‚2£3!_±#2±C¢[°â•Ã{GEþÁòÀá{ÿûåʰ :Z2 fFŠ…€bÖ˜9eÙ)úQSFÊO?˜žV2C—ºê鎾?9ru endstream endobj 60 0 obj << /Length 105 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bS3…C®B.c# ÌI$çr9yré‡+qé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]êÿÿÿ÷ €ÄØ0 %ŒË\®ž\\6Qg? endstream endobj 61 0 obj << /Length 126 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bS3…C®B.rAɹ\Nž\úá &\ú@Q.}O_…’¢ÒT.}§gC.}…hCƒX.O…úÿêÿÿ``ø'ê!P‚È:„ˆ°'–¨ÿ`àbÿ¸\=¹¹”…jo endstream endobj 62 0 obj << /Length 199 /Filter /FlateDecode >> stream xÚeÈ1 Â0Æñá-ÁwÓ–ZtP¡*ØAÐÉAœÔÑAQPPRo¦7iqpT· ¥±I( 8¼ïû{~£ÝBÝâ¼&6}\9°Ol[Lñ,7„@gè¹@GEŽq¿;¬“>:@8wÐ^@8@–’X&äaüÆs!Ëe—V^Äz“ÒHø4½ ¦±6Q¾µ±25> stream xÚu1NÃ@E'raiš=ÂÎÀ1IL¨,… á ªˆŠ¤DöѶã¹.·þü ‘(öigöÿ?³Óêølnc›ÙQiÓ›ÚºÔ'Tl²=ÿy¹ÐE£ÅÊ&•—lkÑ\ÙËóëF‹Åõ¹•Z,í¶´ñ6K³NZäa|„ ø 9€à|t5»¡î¡iûH†„ˆÿ…û JòŽbz<„„ë¼rd'¾¥0Õ´ †½(9qp&8 %? cF¿ûi=¶H^†Qèù #tü)„g/pxLkDÏ…3zô¢ÑýŠA endstream endobj 64 0 obj << /Length 127 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bSS3…C®B.ßÄ1’s¹œ<¹ôÃLŒ¸ô=€¢\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. õÿ Dü?€‹üÃ`ÏÀOY$Ù€$ ;Rþÿ?óÿ¬$X–ËÕ“+ V—Xê endstream endobj 65 0 obj << /Length 220 /Filter /FlateDecode >> stream xÚu=NÄ@ …_”b%79Âø ÕHË"‘ * D[n‚–™£å&ì¶Ü"ŠyãmafôY²ŸíyýÅéõ•.õ\O:í/µïô­“wa\òögÇÊëVVƒ´O¬K{Ç´´Ã½~~|m¤]=Ü(³k}fÏ‹ kEÚ¨m&fhÌF ˜í€hÆrá°ž +'Ø2¾©ʉ3Ùq4|PYáÂÙØš0eܦÑé½³súŸÉ5ɧ¥\Ó@ÜñïeÝ'ýXæÆÆreSU¤4¹äQ~MQdÅ endstream endobj 66 0 obj << /Length 206 /Filter /FlateDecode >> stream xڥϽ Â0ð+Â->‚÷Z+©S¡*ØAÐÉAœÔÑAѹ}´>бbð¼$*.b†áBîþ§zíá€:Ô¥VDJQÜ£m„T‘;÷ýËfi†á’T„áTÊf3:Ï; Óùˆ¤:¦•üYc6¦\ƒ®¾›;ƒ¿lhkb¬Ì⹄€™/N-êÄZ6*±¨ñp·—§¹ë™|ZX›?š¼4®ïìõ½>uóÎæs¾’—n—‚«Ý tnìÆÍ N2\àKKv endstream endobj 67 0 obj << /Length 205 /Filter /FlateDecode >> stream xÚ¿n1 ‡]1œä%oÐó ´¹”ˆÒ)$n@¢S‡Š Z•µ—¾Y…G¸‘!бi…ÄÖ _¤Ï²ý³=¾Œ©¡gzpäŸÈ;Ú:üÀ¡Ù¨¹T6{œ´hßhèÑ.D£m—ôõyØ¡¬¦äÐÎèÝQ³ÆvF0à`ø80¸cfṉ̃bè¢9)zA}T$"ÜË'¯S|_QùŸ(·½Ýª(ãM I +ëT÷PG“eyÅ?¿Ñ4dѸYƒ÷z‚Ü1…ó_ñ ° S endstream endobj 68 0 obj << /Length 220 /Filter /FlateDecode >> stream xÚÐ; Â@à )„isÁJÐùEü"Ãøb=A×Û çaÄS~]¿ endstream endobj 69 0 obj << /Length 216 /Filter /FlateDecode >> stream xÚu1NÄ0Eÿ*…¥ir„ÌÀ › ¨,-‹D $¨(VT@I‚vã£ù(>–)V¾AÐaYOòØóç¹??½¼ÐV=é´ÿÞϼÉz`±ÕþìçæéU6£ø]âoX?ÞêÇûç‹øÍÝ•vâ·ºë´}”q«¨µE XÌX™Í¨ÌŽp‹[PÏ0ÔLhB M ‘‡ÀÆ4ì‘™æò±À¸þEâ ŒÆþS“«D¸ÌiDf( šD“œE‹T³HIc %)>—/Ð~Å’\r/_})oG endstream endobj 70 0 obj << /Length 164 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bSs…C®B.c3 ÌI$çr9yré‡+›qé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]ÿ300°ÿ?ÀÀ ÿÿC=ˆøÿÿ„`üÏÿùˆøÁþ€ýcf ‚¨ÿÿÿÿ?€F€%ˆ5…Æ„ýÿÿ@.ý‡N€%¸\=¹¹CStò endstream endobj 71 0 obj << /Length 275 /Filter /FlateDecode >> stream xÚ…=NÄ@ …¥ÉMŽ_òÃ(‚†‘–E"T+* ¤A·ÚDâ \%7!H9Ec{·BHLñidû=¿ßŸRI'tT×äò%=Vø‚¾–jIM}h=<ãªÅâŽ|ŕԱh¯éíõý ‹ÕÍUX¬iSQyíš É³ã:þ²œ!1¦{.g½‹éì ›t<A9ÀN¤t¿´É½êà`nê [¢Yè˜'ã(3’@øÉ üˆÊ~sPºo£i5¹ÝE,b”³6ÂyÔ0ɬ1$ÄV¸ ç îÁ˜ÿÁÙº[›ìLzõ #¸òºh»&Û;‚þ¡Ä³$²^MR} ^¶x‹?máÊ endstream endobj 72 0 obj << /Length 165 /Filter /FlateDecode >> stream xÚÅɱ Â@ à: Yúæ ¼k¹ µ‚7:9ˆ“utPt¾>Z¥pcÁÒ˜(¸ÔÍÁ@>þ?1ét>C1¯I0I±ŒàFº–*áx†Ü‚Ú¡‰A­ø Ê®ñv½Ÿ@å›F  ÜG¨` t>à¡ö»îåè'C/fH=û b‰¨ú賚­'b6l öÁ˜í¶ÿÑQã¨"òDõÐ÷–¶ði—¶ endstream endobj 73 0 obj << /Length 137 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bCSs…C®B.cc ßÄI$çr9yré‡+sé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]˜øÀù(B¬Ž`ÿ¨­þÿ ÂD00 ¢þÿÿÿ ÿaDœ€Hp¹zrrȧYA endstream endobj 74 0 obj << /Length 217 /Filter /FlateDecode >> stream xڭνnÂ0p£H·ä¸'À ¤Q™"•š ¦ˆ‰vìP+ŽÄ‹eëkdëšÑU‡ÿÇGkÉ?é>í4ëž8æ^¸iÆ¿%ôIi?Ä1B–4,ȾrÚ'û²d‹ ¯W›w²Ã鈲cž'/¨³kL8âïëTó¶E‚ÑÅòÆkÕä%t:u€­=|ðº?õQ ;D»ñN÷ üd~UôÈ7úå ³²S[Øv0ؼ?½b¶j®vÊ?£ ¶kµ1Nš\*ïÎÖ7V§*=4£#SãŒ÷ endstream endobj 75 0 obj << /Length 123 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0b#S3…C®B.c3 ßÄI$çr9yré‡+›qé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]êÿ``¨ÿÿƒá?œ¨‡ ŒÃ—¨ÿÿÿÿ0Äÿ?€ „—«'W íâg• endstream endobj 76 0 obj << /Length 161 /Filter /FlateDecode >> stream xÚ31Ó³´P0C …C®B.sˆD"9—ËÉ“K?\ÁÄœKß(Ê¥ïé«PRTšÊ¥ïà¬`È¥ï¢m¨`Ëåé¢ÀÀøƒñC}ÿþ? ÿïÿ“ÿÇðÿÿûÿ òÿÿY–o`*á?Àþƒÿü„Ø!*9 °þ=þÿg„ÿÿÕ!Œ‰@d¹\=¹¹ªˆ÷ endstream endobj 77 0 obj << /Length 159 /Filter /FlateDecode >> stream xÚÅÉ1 Â@б¦Éœ¸»a­1‚[ZYˆ•ZZ(Zo޶Gɶ 2΢]àÀ<þŸ±óérAšrY;#«ébðŽ6uj ç–ÕlŽj#WTnKÏÇ늪ܭȠªèhHŸÐUE‹€[îÅ7³(Sÿô‹#“d5"${‹ÝÀö?zn<×Ì‘9 ý~qíp%8} endstream endobj 78 0 obj << /Length 198 /Filter /FlateDecode >> stream xÚ1‚@E¿¡ ™†#0Ðe‰V$Љ&ZY+µ´Ðh+{4ŽÂ(- 㲘ØÚ¼âOæÏ›$ͦñ„‡š“1'šOš®§6ŒºÄMŽš¤v§¤V6&U¬ù~{œIÍ7 Ö¤rÞkŽTä ï dR" "/x"oø­ß"x Aa…Ì„¡É,ª ªÒ¢~~Ûæ5ÿ¢µÍo×U9ôõú“ö¸qNÈ©9I§‹Rêï Ý3´,hKí`• endstream endobj 79 0 obj << /Length 221 /Filter /FlateDecode >> stream xڭбnÂ0àßb¨t À½@›Y"QÈP‰Ntì@³óhyÁc×s U‡.•ððɺ“Ï¿m˧ç ç<æÇqÎÖ²Íy[ÐŽl¡ÕœË[kóIÓš²w¶e ­SV¿òþëðAÙtùÂZñJ­©ž10ô€óU¤QÏ"-D×±×ɯ<Œ´ÃNmA…Q/À%n®:˜¨~ÛDGÿ´ºú9ir2ݘL¤y?ÙRΘ<ÚÂè[˜S|—é\ˆŽŽè³ÝO§÷é¿éOýeêÒ¼¦7úF©W endstream endobj 80 0 obj << /Length 172 /Filter /FlateDecode >> stream xÚµÎ1 A ÐÔi¼“832ˆVº‚SZYˆ•ZZ(ZÏXYzâÅ#l¹…lÌÛXZäÁOø7è†d¨/ã9C;‹GtV²ibsØ0ó¨Wä,ê™lQû9O—=êl1!Ùæ´–Ê}NÐ)!0„Z¼2ó-ygŽÉg"(.’0P5tÅ·ÔAUɲå+Yü0þÉÀ\%å-n¾Ê§—ø¦YW endstream endobj 81 0 obj << /Length 218 /Filter /FlateDecode >> stream xÚMŽ1JÄ`…ßb˜ÂÜ`w. ~7»hXW0…àVbµZ * vnâUr”aË!ã›,ˆÍÇð½™Ç”ëó«K-t­gQË -£>Gy—劲p3%ûWÙÔt¹’pK-¡¾Óϯ ›ûk¶úµx’z«X §˜™ý 33䎅£r¤CF40Œ@:bª ˜#µàLÉ‚¼ªÁ‰Y˜õ.¹ŠdÄŒ Çæ›¶åAîȺ ãlBƒ¼³–{,ªZxËÏŽ`1K{¯ï+æoürSËN~±¡o' endstream endobj 82 0 obj << /Length 160 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0RÐ5T01P05PH1ä*ä26 ¹†™ä\.'O.ýpcs.} 0—¾§¯BIQi*—¾S€³ï¢m¨`Ëåé¢ÀÀÏò $õÿÿÿ?Äÿ ` ÒÍ#…ø$`'0ƒö üøÄù ì  æÿÿÿÿSÿdÖ.WO®@.’Ø] endstream endobj 83 0 obj << /Length 159 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0RÐ5T01U0¶TH1ä*ä21 (˜@e’s¹œ<¹ôÃLŒ¸ô=€Â\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. õÿ`øÿƒùÿ,dýF Éøƒ}üH¤<˜´’ê00ügüÿ¿á?`¨G"íÿ?’üÿ›²Ìÿ¸\=¹¹kqt endstream endobj 84 0 obj << /Length 174 /Filter /FlateDecode >> stream xÚ31Ó³´P0P0bScK…C®B.ßÄ1’s¹œ<¹ôÃLŒ¸ô=€¢\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. õÿìÿ7üÿßPÿÿ& ‘eüÀÀü€Jþ``ÀÀ$ÀÈ? ü@²†¿•´cg@%å4*ÉßPƒF²øF2?ü€F2~~€F2ü?€NÖ7 H{ ærõä äóV endstream endobj 85 0 obj << /Length 195 /Filter /FlateDecode >> stream xÚuν Â@ ðˆƒ¥Ð> stream xÚmν Â0àˆCá¡÷¦Õ(v©à˜AÐÉAœÔÑAѵͣÕ7Q|ÁÅAŒwݤéGr—»œé6³&Ø¢ßt°á&…=>'|äÍz z¦zBQÐvŠÇÃi z0b z„Ë“Øö½óoUú³÷ YU¨X)Õ§-ÈØ½ÈFÅFç'{»“õÇ…¬yVùJtlÉHƒŸ!²r³&µué]ÅŠ;7ä­ØRš“¹ÌCSQñ‹¦ i¬ÊÓÀìw…HÈÂØÂ>ʳh endstream endobj 87 0 obj << /Length 237 /Filter /FlateDecode >> stream xÚeαNÃ0à‹2Dº%à{pÒŠ.±TŠD$˜: &ÊÈ‚‰ˆ˜73âEòa+RÅ‘sÔÆ‚ÁßðŸÎ÷—óãÅ)eTÐQ‘S9£“mr|IJÒŒæûÑÝ.kÔk* ÔCŽº¾¤ç§—{ÔË«3ÊQ¯è&§ìëµl [fÛ²cv’ŒÓ¨‡¸ƒh+ÂÞÄì¼÷ R PPÛLm5éÄÄ5“wÛƒQ?Ú‹_"|v“¯ÞÖ‰&ÔŠ*þZý³ ÜIM ê]4ÞO©`9k”—å b{0ý‘ýD>€Ø7Æó¯ñùíkƒ endstream endobj 88 0 obj << /Length 171 /Filter /FlateDecode >> stream xÚÎ1 Â@…á aàœÀMˆˆ@ Fp A+ ±RK EÛ‰Gó(Á2EÈ:/u ‹ý—ÙýŠ™Í§éB"IìÌIR9Ç|c»#¼¦ÝÇéÊ…g··™Ýº«ßÈãþ¼°+¶K‰Ù•rˆ%:²/%!Ô•¥éI­Dã¯eò±äoKõ²ÊhÐѰ±Œj#0#0£?Y¦` ¦` ¦`Š]ÚГnS^yÞñÊiô endstream endobj 92 0 obj << /Length 198 /Filter /FlateDecode >> stream xÚ± Â0Eoq(¼¥PßhÒ‹…âP+ØAÐÉAœÔQPQèàÐOë§ô}i,:IΔäÝÜ“h4 bÖœð 9ÒyЙBÍf%ÝÑîHYAjÍ¡&5—}RÅ‚¯—ÛT¶œr@*çMÀzKE΀N@§F¯‚ x€¤-%ð08¡W\¡‚gú-21é¹û’ôü‹òWZúñœßu2¶•Ôsëw[ÛÜZ˜,ëå··EV”E\ôÍ'hš´¢búD[ endstream endobj 93 0 obj << /Length 199 /Filter /FlateDecode >> stream xÚO ‚@‡âBx ½@Ø»@N(Ñ rÔªE´ª–AEAKæQ<‚Gh|*A´ŠùVóþÌ÷›I4c8â‘Ö¬cŽ>…t#ps¦}éx¡4'µcZ™{Rùš÷ç™TºYpH*ã}ÈÁòŒK ®@ ð§€]6X¦V /a&Ì ¦Û+ÌŒSv4ÃÕ7f—UÿEõc›]~žsŠÎÁë­|‘lm[sIaU].Gz]‰œH|Ô|-sÚÒcÕL endstream endobj 94 0 obj << /Length 132 /Filter /FlateDecode >> stream xÚ=ɱ Â0…á ñ :œÐäÄt­Ì èä A›GË›i "ßöÿ~1WOÇÀ™jÅŠ•‡¨ãÀ/ç|“:Š=PØMßÅÆ-_Ï÷Ul½[QÅ6<*]+±a‰ŸÔ˃.—&›dR‘ Œ1”¸ãYGÙËáÃ$‰ endstream endobj 95 0 obj << /Length 95 /Filter /FlateDecode >> stream xÚ32Õ34R0P°bC K…C®B.K Ïȉ&çr9yré‡+Xré{€O_…’¢ÒT.}§gC.}…hCƒX.O†z†ÿ 0XÏ ÃÀåêÉÈ[žx endstream endobj 96 0 obj << /Length 102 /Filter /FlateDecode >> stream xÚ32Õ34R0P°bC cK…C®B.K ×ĉ'çr9yré‡+Xré{¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]dêþ7À`=ƒ ñS/—«'W ä" endstream endobj 97 0 obj << /Length 94 /Filter /FlateDecode >> stream xÚMÉ»@@EÑþ|Åùwî½Gb •BT(„ß÷H4’]­í]¢)•šÑÍ8+6˜Ñ1|cZ‘GHOóšû¹@ò¶ BJJ7"–¼ï몈ÌÒ Œ endstream endobj 98 0 obj << /Length 125 /Filter /FlateDecode >> stream xÚ31Õ3R0P°T06T06S03QH1ä*ä22 (Cd’s¹œ<¹ôÌ̸ô=€Â\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. v ò õ ö ü¿¡þŒ×1È7€ôÂ2 |±—«'W ¤(ª endstream endobj 99 0 obj << /Length 177 /Filter /FlateDecode >> stream xÚ35Ð32U0P0b 3…C®B.3 ßÄI$çr9yré‡+˜˜qé{E¹ô=}JŠJS¹ôœ ¹ô]¢*c¹<]˜ÿ1üÿ@òãÆ  ìdø0Ô%€Šìd=˜¬“ÿÀ䪓 “u ÿà ‡Úõªfh‘ Çÿg¨ÿÿÃþÿd’ËÕ“+ =Å€ú endstream endobj 100 0 obj << /Length 157 /Filter /FlateDecode >> stream xÚ35Ð32U0P0b 3…C®B.3 ßÄI$çr9yré‡+˜˜qé{E¹ô=}JŠJS¹ôœ ¹ô]¢*c¹<]˜ÿ3üÿw@ò20þ‘ì$ÿ)ß"í@d=˜¬©e€0þPŸüÿPHZØBOhÿêÿÿ°ÿÿ™ärõä ä5 †¢ endstream endobj 101 0 obj << /Length 269 /Filter /FlateDecode >> stream xÚµ‘¿JÄ@‡!E`¤µ8¼yÝäH¢E pž` A+ µT,É£åQò)-–[ww"°µúØ™eþ|SÇ›N¹à£ —)—9?fôJEnƒöYJæá™¶ ©.rR6Lª¹ä÷·'RÛ«3ÎHíø6ãôŽš¨'Ä@höXkcz‹nL† 0¦¡>[DPi¬G Ѩ Òèz¸¼C°·t`ÿ:D_íŒdr¨f¸ZÀjF=cø…¸û½Ì?`.-°l[/áÇ;Èb?¥O©y=÷^F¯.Dd/Z{‘ ¯üÐ FåF\ÝnŒ\3w*Èá g7tMßVXv¡ endstream endobj 102 0 obj << /Length 211 /Filter /FlateDecode >> stream xÚµÑ1‚0à’·pÞ lAÓĉ1‘ÁD'㤎éÑzŽÀÈ@À–“j “%ÍÊÐÇÿóÅ”ÅÈp¦6Ÿ#ñÁ 8Cý¨Wýát…4ºG΀®Õ)Ð|ƒûó4Ý.1šá!Bv„<ÃN­†¢í„µÔ’„µ²Äk¤³&ÂJcPýÊèÕÆIãJZkg-…1”?,á˜ÕŸ¹w˜ïknáþçÛ\Z7¯!Gߨ|C›w"^úžlo}•Û«îV9ìàùª¢ƒ endstream endobj 103 0 obj << /Length 193 /Filter /FlateDecode >> stream xÚ}ѱ Â0Д‚…Cpuz_`5Å®µ‚DÔQPQpÓOóSú ùƒšæ*˜Rr<.—„‹äp£À± c4£„+(erQ¦eáp†$¾A¥€/Ì*ðl‰÷Ûã> stream xÚ3µÐ³´P0P0bSS3#…C®B.SC ßÄI$çr9yré‡+˜ré{E¹ô=}JŠJS¹ôœ€¢. Ñ@-±\ž. ÿÁ •bø€HÕ700ØC(ù`ŠB1£PŒØ(|Te€bÀ¤ P¨`ŠB±ƒ©ÿÿ±PP9˜J¨>4à ˆ¦èBý&!^@¥¸\=¹¹6‡à endstream endobj 105 0 obj << /Length 268 /Filter /FlateDecode >> stream xÚµÑÍJÄ0à) ÃB_`¡óšV4*ë ö èɃxR…ôÑú(}„=”ÆÉ”¬aÁ£iá Iæç¬:º¨©¢S:<&­IŸÐso¨+ ŸÈÍÓ+nZT÷¤+T×|Œª½¡÷ÏT›ÛKªQmé=b»%0VÌŸaÍ–Þ÷A;CÃzÈ\Ç×À›;€†÷åP°fà3ÖöËb6³Ù~^“\óï`·³pÁfg œGÔD‡ÔØ¿ìA–ÿG¹CÎF‡_¡˜—<¸X³ï¸Xî)u'J_¥o±Ÿ‰±ÏRpžÌ!Î%XOË›óNæ.ÌÓº|ŒsŽs—eB xÕâþ&3 endstream endobj 106 0 obj << /Length 106 /Filter /FlateDecode >> stream xÚ36Ò33V0Pc3#…C®B.#3 ÌI$çr9yré‡+™qé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]þÿÿ†ÿ?``¨o–ä7d¿r¹zrrðéaž endstream endobj 107 0 obj << /Length 144 /Filter /FlateDecode >> stream xÚ35Ó3±P0P0bS#3#…C®B.°˜ˆ ’HÎåròäÒW0±àÒ÷Šré{ú*”•¦ré;8+ré»(D*Äryº(üÿÿÿ2Éðÿ`¨o^$3^’L²á ù0H9$ÒLÖÉ ’ñˆdÿÃðÿƒýŸÿ €Br¹zrrà3nX endstream endobj 108 0 obj << /Length 252 /Filter /FlateDecode >> stream xÚ}ÒÁj1à . ‚Wo;OÐìZX÷¶ º‡B{ò ‹-=•ÒÒÞ îøJû¾‚£Ùt²(Ú„$á›Â™btUd”Ò5ï"¥|DÏ~à8ç¾kÍÅê 'Ê9s”·|вº£¯Ïû)e(g´àg±š‘Ö5ðJ´Òº1*/G)€÷‘©g½*£­G«=ClþééÀŠ-[VÏÒšÕ÷ªäøC¯ŽŸZ —˜ã7–¢=ˆÚ+q€,A ½€ÖÐwTÖÀ’&u4Ø-ŠUã(ú­qhKê$ÁŸúÓ)n;%<.<2“™!WxSáþóí½è endstream endobj 109 0 obj << /Length 250 /Filter /FlateDecode >> stream xÚ]ѱJÄ@à )Óä²O`åöÊÀy‚)­,DPN±:NEÁn}$!’GØr‹q63ͦX¾™Yößbìöl»1¹àc7Æž›—?жÜ7±‡#îz¬ïm±¾æ)Öýùúü~Åzw{ixº7üäû½!úpˆu\ÇæÄµ€ àØ–khÞÔì’ø¬>Åà¨R»Q¬|jÄbJÍg1£Tà9XÅNå`1ˆ¥ÊÁâ,æ*/rpªÄnL­¼X†Ôbó95#èOõ¢S»••ZªÅÊœëÉ> stream xÚµ’±nÂ0†1Dº%À½8AMP¦H@¥f¨ÔN SËÈ‚•äÑò(yÆ (éÝ96¨c-ÙŸíÿŸÿË"šÍ3Š(¡éœÒ„Òú‰ñ€‰lF”¦VùÞã²@³¡$CóÆÛhŠw:Ï;4ËÅhÖôS´ÅbMÐ7 -èoʼ.+a¡£ÆW‘y!a paN8(Ûe~´NØÀHbƒ+Œ[&Ž|‹EG½ƒM”ýµ°äl”Õ#KË!×ü‰½eó_ô÷¹<þ ÏÛ¾«zzçÀPýè<õëv÷Oýl½¯Îg¶Ô¬¼²ÝÕE´ÎÆêWGWWï•«»ýðµÀOü¢}˜Ÿ endstream endobj 111 0 obj << /Length 175 /Filter /FlateDecode >> stream xÚ33Ô3±T0P0bS33#…C®B.S# ßÄI$çr9yré‡+˜qé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]þÁõJÒì¢õ ì?Àã?0ÅðBÕC©0e™’€B} “B1Õ¨µPG@\ÆüÙ¹ö€Ð+ ` (V9„(P$€£ãÅåêÉÈþ˜†ý endstream endobj 112 0 obj << /Length 266 /Filter /FlateDecode >> stream xÚeϽJÄ@ðH±°Mګ̾€ærw ¹ÆÀy‚)­,ÄJ--…á’GË£ì#¬Ý‚Ë39TÔæWÌ÷ó“Enæ¦0Ç ³*L¹2¹~ÖË5ç¦,™û'½itvc–k]pXgÍ¥y}y{ÔÙæêÌä:Ûš[t§›­ ˜¡¦¡‘­¢û6vèZ5âÈ'ŸÊ×@ìOÈïè˜6ü¢úaÏÌ&è›~`ûQ°Líɤ䀄hÂADDÜND×Ð(Anê%åè¥=Ù¨„Xˆö²ç» ûŸÎ}d ò*‰ß;¾AÙ‹d|÷H×£‡MùH+§Œò“>oôµþ ß„k endstream endobj 113 0 obj << /Length 158 /Filter /FlateDecode >> stream xÚ33Õ32W0P0b3#J1ä*ä2µòÁ" ‰ä\.'O.ýpS .} (—¾§¯BIQi*—¾S€³‚!—¾‹B´¡‚A,—§‹‚ý0`À 0ü?À¤ê€d˜–o¨Óü `š½¡L3cÐ `š‘ }L3 D3@h†Q'ýÿ˜büÿD±cñ&ÍåêÉȃ@ endstream endobj 114 0 obj << /Length 207 /Filter /FlateDecode >> stream xÚíÑÁJÃ@à?äP˜ƒy„Ì è&±Ù^!`B=õP„BÛcAEÁ[|4¥c’õŸZ/9öìaù–vgaÇÏ®f¥fz­—…úR}¡Û\^Äç 3õÓßÊf/U#n©>wÏX\ó o¯ï;qÕb®Lk]ñΓ4µ†¾Ð†~,â´Ÿ¾O~œÌþ=×[ó™ò±yR“+å>¢ÉŸçÁ»:ᑸgF#Îæ‚bnÌö8&kufÒY f°§0Aje¹käQ~­uI endstream endobj 115 0 obj << /Length 321 /Filter /FlateDecode >> stream xÚuÒÏKÃ0Àñ+„a¯;¹÷h £;æ{ôäA„Š'aŠ‚·Æÿ,°¤7¯õV¡4¾¼N¡íz|Hø&é">NN1Äb\D8ñ!’/2Ih2ÄùIóåþY.SÜ`’Èà‚¦e^âÛëû£ –WgÉ`…·†w2]¡µ5(kµ°v?=k@Ø@•# ™ðsñGÏ0q¤áŸÐ¢˜å´–¶ì8n“Ö©‚©vœ´Ië²’é¶<§=~ULŸ¶l‰a—b[3½Ä'qݧeŽ*ª&š!ŠšR3-ô -¥*C7â.‚ ê)E{ŽsÜ¥ )š©˜“.ó ø%s–¯©Úc^Åô Cýa—ßÄšéýhê_ï£eòÛÓ¯0H:}󦃬\4˜Ðeé¢~Ð8ìqCã ¡«vg—穼–¿ßí¹ô endstream endobj 116 0 obj << /Length 294 /Filter /FlateDecode >> stream xÚ]ÐAKÃ0ð+„Ò^= —O`Ó³,Ì ö èɃŠzœè¹ýhù(ý=îPú|IÞÀíðø‘tû'ùÛÕÅêR½¤±VÛ¥~/ÕNÙŠÖÆ/ý‡·OµiTñ¨m¥Š[ÚUEs§¾?T±¹¿Ö¥*¶ú©ÔæY5[Ý"v±?p¨ýì=Íw,ÐÐ~F&ô›”“rX“ ûBvÐ{[.*:oÝËàbó}LÆ”= ÊihØOôÑÖ[ó¾¿ùý Âz<¶š¢;Œ¾²Ã=…‹Á¢‹J> áà›òóP/%jBE_¡ R¢.T¾,ò ¾yÆžó ®¼ì3ò ¤ÿÔˆåâtªºiÔƒú‰f…Ø endstream endobj 117 0 obj << /Length 251 /Filter /FlateDecode >> stream xÚÝÏ1KÃ@ð-úŸfßÝ€,b¼?ÄßÉBèþ_T|ÿ%t_ endstream endobj 118 0 obj << /Length 213 /Filter /FlateDecode >> stream xÚmοŠÂ@ð/,˜âö„ÐÍÊÚ þShuÅq•ZZ(Úš<$y”<–!q÷î,äŽÌ ó1v<qÆ–†í˜­á­¡ÙŒcÙÑÏf³§iNúƒmFzƤów>Ï;ÒÓÕŒ é9ξ(Ÿ3”Ð5€¨ !+ô‘ÖP®LîpšW.Pe@"€QmìêÚ¢¼ iÂ"õñ¬Ž1ÅÅ”âü"Ú?´O’VHnq®LUOUoê*ýD6¢ói|UÔ´ÈiM×¢Lì endstream endobj 119 0 obj << /Length 210 /Filter /FlateDecode >> stream xڽн Â@ ð„B–>Bózm=ë(øvtr'utPœ¤v¾IÁè¤Këõª: Þð’#ù“–Ûð=vÙçºÇ²ÍA“—mHJ]t9Ug±¦nHbÊR’ê2‰pÄ»í~E¢;î±G¢Ï3=hNaŸ1ýŠ/kFˈ²Ü‰©S”lx‹­ð騫`pÌ:F§l½T¥veü¶V™ü`ü9ó©zïÕªT¹ñbr^Mæ³ÉRV ¨R'Œ:¹¹q@ƒ&ô™x endstream endobj 120 0 obj << /Length 193 /Filter /FlateDecode >> stream xÚ1 Â@Eÿ00MnÌt³f‹t¨` A+ ±RK E;19Ú%G°´uÖ`akóŠ?þü±éÀäœrÆ}ÃYÎÖðÖÐ2+bÊvØM6{*+ÒKÎ,é©È¤«ŸŽçér>bCzÌ+Ã險1C½D¯(p.ˆ¡îÜ lQ4‘CÝ!i¾(¼]£–õWç¨!ÉpE#kÊ%Ê7)ô©Öó%cà\Üêæ_p€’0šT´ 7ê8>Ì endstream endobj 121 0 obj << /Length 210 /Filter /FlateDecode >> stream xÚ½Î= Â@à )’ˆsÝĬ¢…üSZYˆ•ZZD´“o¦7Ñh—B\gw±J)Ø|ÅÌðæµ‚F3¤€"ª‡$;ÔŽhbŠRò0 ¶´›Õû Š9I‰bÌcÉ„ö»ÃE: Å´ÄdHà ¨’žÑ5:ÿPi=uekù“=B·Ð«jîü¼›nå_t+k-×±ÕäœJfÆ÷f¥LûËþåîWn噞¾é\y郧¼ Uˆ;ë«3ë¼y…£gø£Ðz? endstream endobj 122 0 obj << /Length 204 /Filter /FlateDecode >> stream xÚuο Â0ð/t(Ü`_@è½€¦±:YðØAÐÉAœÔÑAÑMj-â#8vëiQp0?¸K¸|6隌N¹c8ÍØÞÚSje˜°í57ë Ò N-鉌IS>N[ÒƒÙ é/ '+*FŒà ®P†W R7HU®8#ôè#òÈ;Äo\ކÈ]>øòËãK-§AZà/å‹Ë/²>—L^¾T^('N"†nhAUhwdòZ#ª= d# šÓr!Iš endstream endobj 123 0 obj << /Length 143 /Filter /FlateDecode >> stream xÚ32×33V0P0bcc3…C®B.cßÄ1’s¹œ<¹ôÃŒ ¹ô=€¢\úž¾ %E¥©\úNÎ @Q…h ÊX.Où ÿ?00°``?ð‡¿ñƒ<Û3þc°â:fø„ äâÿÿÿÃ1%æP}ÃPÿÿs¹zrr›_¯ endstream endobj 124 0 obj << /Length 261 /Filter /FlateDecode >> stream xÚ•=NÄ0…_äÂÒ4>B|Èå®´,) ¢@T@I‚íº£äF('à 9e k͇b (H¢/öøÍË›tG‡­¯}ëÚÚwï×È£ð]ó>n~ŽndÕKuETg¬KÕŸûç§—{©V'žûµ¿fÓôk^ÀÄ".Ù·€…ýtÑDŠ©˜\0_ˆfÄ+`G•Ït–ÿá~ïì¦Î€~…ŒÜ¡ø°ëïLcx«cØã ¤§2%õIi—™(ئ4æõ¤ÊrB8±F‹ü†+å ƒòOƬ™õ›Ü«>Q=9'å|¸ ùVÅ)æX,Èi/—ò mh endstream endobj 125 0 obj << /Length 165 /Filter /FlateDecode >> stream xÚ35Ð32T0P0b 3c…C®B.S ßÄI$çr9yré‡+˜˜ré{E¹ô=}JŠJS¹ôœ ¹ô]¢ÆÄryº(0þ`‚ÿ$;˜d“Œt"™ÿ€Hþÿ @Ò†ÿüÀü€ñçæ Œ¿€Êƒ3þg`øÃÀø‰üƒDþ\$3Ø‘ÿÿ¨ÿÿ™ärõä 䄆y endstream endobj 126 0 obj << /Length 124 /Filter /FlateDecode >> stream xÚ32Õ34R0Pc#3C…C®B.CK ßÄI$çr9yré‡+Zré{E¹ô=}JŠJS¹ôœ€|…hCƒX.OÆ ìø   PœÀøƒ¡†Ø00ÿ‰Ð1ÿaøÿÿq¹zrrÞÉHT endstream endobj 127 0 obj << /Length 150 /Filter /FlateDecode >> stream xÚ32×33V0PÐ5QÐ5´T02P03TH1ä*ä2 (XÀå’s¹œ<¹ôÃŒŒ¹ô=€\úž¾ %E¥©\úNÎ †\ú. ц ±\ž.  Œ˜ÿ¡  Pœ(ðÁ†ÿ¸ uˆlêêjþ3ü£ÿücüPÁüÀŽýÿ·¸\=¹¹v9Eü endstream endobj 128 0 obj << /Length 213 /Filter /FlateDecode >> stream xÚ½ÎÁJÃ@à”æ`_@ì> stream xÚ32Õ34R0Pcc3c…C®B.#rAɹ\Nž\úá F\ú@Q.}O_…’¢ÒT.}§gC.}…hCƒX.OÆ ÿaˆýóÆÁ˜ÿ0üÿÿ‚¸\=¹¹ì±WÇ endstream endobj 130 0 obj << /Length 186 /Filter /FlateDecode >> stream xÚÝб Â0à  ·ô äžÀ¤¶’Ej3:9ˆ“::( NÚGË£ô:¦´4¦‡âÈqðqÇéé8ŽHÒÄ·Š)‘tŠðŠJRWI¿8^0Õ(v¤$Š•Ÿ¢ÐkºßgéfAŠŒöþÌuFÌòX àlèòÀYhFAáQòâÉJ*ÃË‚YàuÎ*>P«òÎ'sxõ'`€ ‚ü¾çÊ·³s×ü—·ø3Ó endstream endobj 131 0 obj << /Length 154 /Filter /FlateDecode >> stream xÚ35Ð32T0P0b …C®B.S ßÄI$çr9yré‡+˜˜ré{E¹ô=}JŠJS¹ôœ ¹ô]¢ÆÄryº(0þ`þÃÀðÿÿÿ iÃH~`~ÀÀþóóæß Œ?3€Èÿ ÿ!‘ȃ‹d;òÿÿõÿ “\®ž\\ep endstream endobj 132 0 obj << /Length 188 /Filter /FlateDecode >> stream xÚ1 Â` …_q²ôÍôïßVèd¡V°ƒ “ƒ8©£ƒ¢›hÖ£ô;5ƒÐIä…¼¼D“qÀ>‡<²Y>X:S‹èwŠNö'Js2c2 ‘ÉäK¾^nG2éjÆ–LÆ[ËþŽòŒá¼¸ïH5pG§Æƒ †%ÜBáÒx‚ʃÌA­xNÓƒX:í¿èí>Å´ùÙëI=îJŒR³h4 ‰Vê\_èž¡yNkú¤PM endstream endobj 133 0 obj << /Length 208 /Filter /FlateDecode >> stream xÚ­Ï1 Â@ÐYR¦ñ™ è&²¢] F0… •…X©¥…¢`er´%GH¹!Áu6 ‚Z‰Í+þ‡Ù¿¿×ȧ>uƒ©!)Ÿ¶P)N}ŒžÕfQ‚rIJ¡œrŽ2™ÑéxÞ¡Œæc PÆ´âSkLbÚÕF{Æzéä`ªÂ)Á©3¡ApÚ€¸\A4ikh+ðæ/;Ň¥ÕýÉ/׊÷y‰ÝÓ.L[ov3‡¢ÎÞ_ånBk/cCîù¿¥à:Õ˜òMœ$¸À;| endstream endobj 134 0 obj << /Length 223 /Filter /FlateDecode >> stream xڭϱjAà¹baïœHö÷ð‚`¼BÐ*E°Ò”)H!ÑG»G¹G¸òŠÅuγ°ÐFl¾bvùç;x$sŸŸ’Œí Û˜7 }‘MesšŸÖŸ4Îɼ±MÉÌdN&ŸóÏ÷ï™ñâ•2~—¨å<:€öEôö•øLtˆ†jt‡ÐôºD°EX pèP£ýYù¼Ãuwéo¤µ»Ú½m‡¶OX6JCíTè:¨‘knùGªC_ˆê 8¥=PÕôÆÎ×—Ò4§%ÙÕo¶ endstream endobj 135 0 obj << /Length 145 /Filter /FlateDecode >> stream xÚ36Õ34S0P0bcc…C®B.c4H$çr9yré‡+pé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]˜?ðøÿÁþÃÿ~üÿxøûÇæ?ÌŸ›ÿ0~gþÃø „0þcH`üÃÀ€‚Ð3Íþÿÿs¹zrr“»M[ endstream endobj 136 0 obj << /Length 203 /Filter /FlateDecode >> stream xÚ-ÌAjÂPà?d˜70súò´ÔB³t墄¶ËB[Ü™£½£ÌâÊ·yŽÆÅ·˜ÿŸ™âqR–œqÁ–‹‚§–¿,ýQ^i˜ñ4šÏšÕd6œWdÞ4&S/y÷¿ÿ&3[ÍÙ’Yð»åìƒêãè¶qð’¸gc$Oˆå€èæv°½òw €žªx ‚4tHB8„ÇàtmÔ¨uˆUäuÝËàpÕÞùAÛÝDÒ#rç&iN’Bô¯KôZÓš.8W¯ endstream endobj 137 0 obj << /Length 151 /Filter /FlateDecode >> stream xÚ36Õ34S0P0RÐ5T06P05SH1ä*ä22 ¹æ™ä\.'O.ýp#s.} 0—¾§¯BIQi*—¾S€³‚!—¾‹B´¡‚A,—§‹ƒVl†+ ø313³±üÿÿþC1#TŽŠ8føÃðˆ€qã{æùv ãþ àrõä äwSM6 endstream endobj 138 0 obj << /Length 160 /Filter /FlateDecode >> stream xÚ35Ð32T0P0RÐ5T0±P01PH1ä*ä21 (˜Bd’s¹œ<¹ôÃLL¹ô=€Â\úž¾ %E¥©\úNÎ @¾‹B4РX.OÆ þÿ`¨G%Ù00ÿa`þÁÀø‡¢fŒ$Ð èl0É÷¡†Aæ?ƒƒÐ?ò €$ûÿ@’á?P—«'W rjy endstream endobj 139 0 obj << /Length 193 /Filter /FlateDecode >> stream xÚ]Í= Â@àYÑÖBÈ\@71‹ÁJðL!he!B@- 19Ú%GHiˆ£˜¬Ø|Å{ðž ºG.õ¨ã‘ê“? ‡'T>‡.©o³=à(D¹"壜qŒ2œÓå|Ý£-Æä¡œÐš‡6N¨(´]¤¿Ú9ˆ¬'Àýã {‘¿6*}èÒ;‘”:‰•Úf›ºVi§ucÖf­¬U)ž®1ç[¾ŒŒmŒ?£ÿ6*qâ_¦ÀDµ endstream endobj 140 0 obj << /Length 248 /Filter /FlateDecode >> stream xÚmϱJÃPà? œå®ÄœÐ{ÓjÄÅ@­`ÁN"ÔQPQpöNºøP÷|Çëºd§Á6¥”3|pþ?=Üï±á.ï%œö¸wÌw =Qjx>ÿ—Ûê礯85¤ÏeM:¿à—ç×{ÒýËSNHø:asCù€ëú³®ÂºXWUÈ<&.*;d (‹ÝF‡åÒÈa»Ñ‹¨ > stream xÚMαJAà?lq0„lk!Ü<›Ã ±8ˆ¼BÐ*E°RKÁHÒzûhû(ç¤Üâ¸uf«ûÁÌÿLÝÜ4/Y_ÝðíTt z%õRKýxÿ¢MGnÇõŠÜ“tÉuÏ|ü9}’Û¼> stream xÚ]ÏÁJÃ@Ð; çÓxÊé%'S~Šé•ÒÄ\#¾Èþ^/4ÏIßqš¾1wÒù-¿¿}<“ž¯®9&½à{õ@ù‚û¾ ûÚ7l¡z P@?­[¨V„qtÖPíA•ËÀ8.ì=®ŽœõÐÖƒƒÁ÷ÈÙdFÕDb+¢Ý8w•óË:+cüwè9ð<±Ž<#O©Ê¬jÈ\©êÔ¯RÕÉ*¡¸µñÙ•mm`g‰´ÌiM?ÍAP‘ endstream endobj 143 0 obj << /Length 126 /Filter /FlateDecode >> stream xÚ31Õ3R0P°bc 3C…C®B.#K ßÄI$çr9yré‡+Yré{E¹ô=}JŠJS¹ôœ€|…hCƒX.O† Ì@ÌÄò@\€ýÿ†ÿ <ÿÃy¨øPÆõ€þùÿ†¹\=¹¹sUÇ endstream endobj 144 0 obj << /Length 242 /Filter /FlateDecode >> stream xÚu±JÄ@†ÿ%ÅÂî fžÀ$Þ,ăóSZYˆ° –‚Š‚…H³VøÀ2u@JÜ&lá»lD€ÛáÀª˜mwjR_¯@>Ä ; lÒÝ?hÙv* àØ„žç÷°'Ø!¶nüE¶5øi>p §{N÷› áhd42žFJgÄaZt¦Ej‘Zô¦!Ù'äÄ’h }ú ¹läV~h€p endstream endobj 145 0 obj << /Length 246 /Filter /FlateDecode >> stream xÚu±NÃ@ †eˆd!ò•Î/—kBÔí¤R$2 щ1c¥‚èœ<Ú=Ê=BÆ Uƒí£Lp’¿á?û·õ77×Kª¨¡«%5ŽZGo?°nY¬¨­ÓÏë×Ú'ª[´÷,£íèëóðŽvýxK톞U/ØmŠ#øy˜çÙTLP„ü%d'¸dý`†àƒÿÀÈoÁfAÙ'~ÁÅVüN\™ìÌ'ÁÈ(u€Ëˆnä(ã¹E›u,¹¨_Ú¡ˆgŨ¸x·›qÂGÞåc/VûôÃJ°s5M#ŸÊ1%”²’Ôð®Ã-~nn endstream endobj 146 0 obj << /Length 185 /Filter /FlateDecode >> stream xڕϱ Â@ €á–B‡P:w’> stream xÚuϱJÄ@à?¤Lá¾€°óšäƒ•óSZYˆ ¨¥ ¢m²¶²òŠàúçr×| 3ËÌüõÙéJ ­õd¥u©M©/¥|HÕ°XhS-ç7Yw’ßkÕH~ͲäÝ~}~¿J¾¾½ÔRò>”Zá‘“=Íx~]Äì™Ï<ÈpÞ²vØ=ÖÛy‘ñK˜ÖÍÙÀ”=z&>賑ix o@ʺ\ur'¿Ðx; endstream endobj 148 0 obj << /Length 277 /Filter /FlateDecode >> stream xÚ]±JÄ@EoH˜Âü€ì¼Ð$›˜jÙÀº‚)­,ÄJ--… ɧͧÌ'Œ]аãͪ §xóî}÷½êâ|)¹Tr¶”ªºçB½©²f1—ºœž^Õ¦UÙ½”µÊ®YVY{#ïŸ/*ÛÜ^J¡²­<’?ªv+ˆ'Ú@ï-0Å#"‹ ±ÁÉ|'İ+§„Y Xÿ¢9"1ÍÀfm)ÓŽzÂé+¤~èxãû/‹È‡áÞ3FãY g…,Ú@ç'D®ßÓV{:RRh4…†zËÝQc;ÎuDìÆ*€ÿ` ‚"šAƒh^á°¥K§†™‹¢p†´Ç[…«©«VÝ©o‡–qg endstream endobj 152 0 obj << /Length 279 /Filter /FlateDecode >> stream xÚµ‘±JÄ@†ÿ"0M^@ȼ€ärêŠp°pž` A«+ÄJ--…+—GË£œoÎË;»‰Å¡¥Í~ì¿;3»ÿ~Æ36|\±¹`sÂO½’™{Ñ˧ñäñ…–5•k6s*¯½Le}ÃïoÏT.o/¹¢rÅ÷Ϩ^1€LZyŠ XèVöh+"­SöÓ!•Ù—óÇq(DK¬¿¢Ëvð,ü5e";ÏÜ¥™Ó2 u:L™&ž í€Úý¯l¶‡t˜(ÿÌÃyã;&.ìÿ5±‰ÿÆ&ú€MôCô }ô-é£é.úšuÑç¼Ch\´1‹ ¼¦9¥Cˆ…ÖhŽ]ˆYâLÍcî «šîèz€¦’ endstream endobj 153 0 obj << /Length 279 /Filter /FlateDecode >> stream xÚ½ÒÍNƒ@ð?!±Éì”yªO%©5‘ƒI=yh<©G½–>Z…GЛ‰dÇÙ~?®B¿ì² ÌÎòãbÌ|”sYrqÂ÷9=Q™±?‹S›¹{¤iMé —¥—:Li}Å/ϯ”NççœS:ãEÎÙ-Õ305õ‘ŒÂ€&ŠJ±^†™UÒ: Ò'âOgk ŠDtºQTvi:E¢7ÅÐé"C,­"öÐÕˆœn³2 àCbXîÞð&ᾡƒ;ÈÿÀ¯k~Âõ Uý ûå>¬>}„<â=ZƒÜï¦qõBÙÅÔlƒ“M”‘lÃõq¿»~„–Y“t8À¦mº¨éš¾JfŇ endstream endobj 154 0 obj << /Length 102 /Filter /FlateDecode >> stream xÚ3¶Ð³P0P0as3#…C®B.cßÄ1’s¹œ<¹ôÃŒ¹ô=€¢\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. ÿ `°ÿÇÀ0J@ l!ÄåêÉÈÝ3x< endstream endobj 155 0 obj << /Length 268 /Filter /FlateDecode >> stream xÚeÑ1JÄ@ÆñR^“læN&ˆ±2°®` A+ ±RK EAŒ'ñ,{ñ[n!ß7//";0ð{3ð‡aÃ^h]íöe·­;hÜmàn™kŒ¸¸¹çeÏþÒµ ûS9eߟ¹§Çç;öËócدÜUpõ5÷+ãHD]Äšññ4Ä5îHð-XÅ[Ü*^ãaT¼Ìâ„E B(QTl…!GÈÅPœ°VT¤PL@1Å £‚fHZ!i…RTHѰUäI+¤8aˆºøiøRTxP CnÈ ´‹ÁÐ*Ci(v2¾h¤˜>Þ G†Åø¤ç þoö² endstream endobj 156 0 obj << /Length 201 /Filter /FlateDecode >> stream xÚ3·Ô3·P0P0VÐ5T07W03RH1ä*ä27 (˜Cd’s¹œ<¹ôÃ̹ô=€Â\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. ÿ Dàg1Øÿc‚z †°ìFYƒŽ%fÕ ²þÃXü`Ö8ë³c–Áúd1ÿ?$YŒ ;ˆÅðHÊ' jûˆÅŒ`“€àÿf1Ë0 ”l@Xò ŒI.WO®@.¸ëš endstream endobj 157 0 obj << /Length 226 /Filter /FlateDecode >> stream xÚmϽNÃ0ð”ÁÒ-y„Ü P'4­Äd©-`b@€‘³Û'è+õQ"ñÞè`õ8;UÀÃO¾ó}ȳfÒ]qÃS¾hyÖpwÉÏ-½Q7פ†Óñåé•=Ùîædo4M¶¿å÷ϲ‹»%·dWüØr³¦~Å0²à$…HÊX `ÈÕ~@}€ ¨ãI ÏVñ¤Vª&$‹}RÏË´`\Se½ì´^Bê•Mš#¿3]žéGódþ±>àr½Ë½^ôR|K¬æK¢ÙJ,äŸÿÐuO÷ô„?}Ï endstream endobj 158 0 obj << /Length 205 /Filter /FlateDecode >> stream xڽѱ Â0à“ …[ú½жÔè(Ô vtr'utPtn-ÒGèØ¡/…â$fùàBŽû/r<S@õC’’FíC<¡ ¹ÐhhovGŒSô×$Côç\F?]Ðå|= /§ÄÕ„6üf‹iB ÁýÇ"þOV]<3ŽÐhÅT0)™¼Š)À­™œ»E7]DKþ2ôº)~BGkÑò>K3çsjîýåfƒU•Ù(³ž ]Ø(‡Ó7ÿ£p–â 9  @ endstream endobj 159 0 obj << /Length 207 /Filter /FlateDecode >> stream xÚαŠÂ@Ц¼fþ`ó~`w2› ²‚ë‚)­,–­ÔÒBq»…øiù”|BÊ)†¼}ÅÞæwxwn9zó#ιàWÏeÁå;ï<©k˜Éõe{ YEnÃŘÜBcrՒϧß=¹Ùê“=¹9{Ψš3Pw€2‘u›µ‹é ¦‡i,Ú¨dW‚2½aCvÚ‘4Cä9êáŽÖãeýºÛ©Ž F.IiL«w¶Ö©Äáº}U´¦*[e? endstream endobj 160 0 obj << /Length 211 /Filter /FlateDecode >> stream xÚ½Ñ1 Â0àH‡Â[z„¼ h švª‚ÄIãM¼Jobà˜¡ôùÒˆ.uÉ^Hø“è´—bØU¨5&Ü)8‚V\ìc2ô+Ûd9Ä+Ô â—!Îçx>]ög‹1ru‚kÞ³|‚‚[h›‘¾#FùWLé¨rH"‡yDw†Š€“Ä3+šëVDu“3ªšíÒã‚0/-ÐOh=ÚØ–,Ò¾s¾R±Uܯ!QéâÆHª%Ã⦥€iKxÆ.¤¼ endstream endobj 161 0 obj << /Length 208 /Filter /FlateDecode >> stream xÚmÏ1jÃ@Ð/T¦Ñ ²s{¥h!©"e°Š€S¹0©’”)l’Î MGѶT!4[ÛÁ;ðŠ]fæ¯{š»gN8ãYÊα{äÏ”vä>•˦—o**²v Ù•^“­^ùgÿûE¶X/8%[ò6å䪒é€H êNš@š¼ ¦‹FÄ>÷J4˜^É{„ã…Úÿ!gÄ#¸æßñÐ…w¨oÑɱ9£éŒ&ÀƒÂK¨ ÛCÚÐk‹é`DZýÇ8 eEotWÔqœ endstream endobj 162 0 obj << /Length 261 /Filter /FlateDecode >> stream xÚнJÄ@ð9Rl³oàÎ h²^ÎÃjá<Á‚Vb¥–ŠvBòhy”ø[nvüïxˆ …)~0³óEÖþètÅ ¯øð¸áµçÖóƒ7Ï¦Ý Ûð‰ß?Ý?™mgên7¦¾@ÞÔÝ%¿¾¼=šz{uƈw|ë¹¹3ÝŽ©’¡Š$¹™DrŸ+YÈœ—3õÙÂ)»D!æÓ{ˆ¤a±‡ó¿üÙ¥sö¡Î§²k¤%öP2‘Å=·Pù¾t¿ÔQtÁ¨ÎeRêPGu²*º&¸Ø£ß¦â2åo«?}ÕÊØ£×Æ€ínrQ-î.»‹j,Iz ðS‰Ìyg®Í']¨T endstream endobj 163 0 obj << /Length 159 /Filter /FlateDecode >> stream xÚ35×3W0P0bS33c…C®B.SC ßÄI$çr9yré‡+˜ré{E¹ô=}JŠJS¹ôœ€¢. Ñ@-±\ž. ÿ@à?ŠB1ÓŸ²ÿ¦þÿQÌÿÿ7)þÿ)9†ú@ʤ†ù„ú¡0ÈÿRP¨lÃà¦þÿÿÃþÿÿ¬—«'W ³ušË endstream endobj 164 0 obj << /Length 129 /Filter /FlateDecode >> stream xÚ3²Ð³0S0P0b#33…C®B.#C ßÄI$çr9yré‡+ré{E¹ô=}JŠJS¹ôœ€¢. Ñ@-±\ž. Œ?˜ÿ0°ÿcàÿÏ ÿ¿ R@@eøÀ†ÿHˆý?3-Ñÿÿ?àˆËÕ“+ !;X endstream endobj 165 0 obj << /Length 106 /Filter /FlateDecode >> stream xÚ3²Ð³0S0P0b#s3c…C®B.## ßÄI$çr9yré‡+qé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]þ3üGBìÿ˜7úÿÿq¹zrr³Ô] endstream endobj 166 0 obj << /Length 191 /Filter /FlateDecode >> stream xÚÝË= ÂP ð”…,ÞÀ—تtøvtr'utPœ´G{Gé*:”÷÷=GA IÈ/ É{n&‰øÊ»’¥²IyÏy">Üèë Ž’'OÜ–ãb*ÇÃiËñ`67d™J²âb$%]S€’`}F¨] R¡qj˜KäOmºVuŠlŸô­r/¡=“¾›·jÒÒ )Á„0¤ì§JRÍw©ç¿ h" ÒÀoñ¸à9¿³èÐ, endstream endobj 167 0 obj << /Length 153 /Filter /FlateDecode >> stream xÚ35×3W0P0bS3C…C®B.SC ßÄI$çr9yré‡+˜ré{E¹ô=}JŠJS¹ôœ€|…h –X.OÆ öþÿ! fþÿ¿HñøHÉ1Ô?``ÿgRÃü¯B}Sÿ0ÈÿRP¨lÃà¦þÿÿÃþÿÿ¬—«'W „Œ endstream endobj 168 0 obj << /Length 195 /Filter /FlateDecode >> stream xÚ±‚0†KHná¸ÐR) bbŒ“::ht†GãQxFÃymÙŒ‹ÉåËõ¿ôîÿ3µÈSL0ŹB£^âEÁtÆb‚:õ“ó Jò€:¹a¤Ùâóñº‚,w+T +<*LN`*¢î…3™1QËBW°DM4ˆ€Dø³Ñ7üd‘G±eëYXº/ugwÕý7Érø¿vNw½ï-²>›=“-n'N¹|ƈóºì°6°‡;‡Ã endstream endobj 169 0 obj << /Length 154 /Filter /FlateDecode >> stream xÚ31Ò35Q0P0bCJ1ä*ä26òÁ" ‰ä\.'O.ýpcs.} (—¾§¯BIQi*—¾S€³ï¢m¨`Ëåé¢ÀøñÃÿìÿþÿãÿÿàÿ?{ùÿÿÙÈ`ÿWaÿƒùßñHüÀ„üæÿ ü€s``€ t$þÿÿAp¹zrrõX] endstream endobj 170 0 obj << /Length 223 /Filter /FlateDecode >> stream xÚ=ϱJ1àÙâ` ÷ ̼€f×Ôæç n!he!Vw–Švrî£í£Ü#l¹EÈ8ãÉAø ÿÌdHlϯ/¹åÀg‡+޼íèBÔ°å•Í­zòO"ù;É÷÷üùñõJ~õpÃù5?wܾP¿f¸ù•È ‘‚f¿(pCU€‚ô|KäNCþÈÞÐ;~$š&ÑÔ‰ÌhDÃÚž×mJFm=ZR*'2Ò8îH3æ#:Ý ŠtÚÙÞd{w¹ÎÈ"¦$#ì Ûžén gð endstream endobj 171 0 obj << /Length 154 /Filter /FlateDecode >> stream xÚ31Ð3¶T0P0RÐ5T06Q0µPH1ä*ä26 (˜ZBd’s¹œ<¹ôÃŒ ¹ô=€Â\úž¾ %E¥©\úNÎ @Q…h žX.Oö ̆呰=×CñÿF fbùÿÿÿüGÂŒP9*b9Bè†ÿ ¸þAƒý‡@‡=:ðб \®ž\\1…j endstream endobj 172 0 obj << /Length 159 /Filter /FlateDecode >> stream xÚÕÏ1Â0 …aW ‘|‰ø‚:V*E"L ˆ @0·7áhäæ!8Ógýv†„bPÈPré{ cɽì<9xDäÑ{³=pÙ­$xv3dvq.çÓeÏ®ZLµ–5Þl8ÖBJd:R%£?08);êû'”ßh:Ê€~ÐfzÇØš›&j’½« ðó¤É&âiä%?9ª~ endstream endobj 173 0 obj << /Length 218 /Filter /FlateDecode >> stream xÚmͱJAàÿØâ`š¼7OàÞéX1‚WZYˆU’2…AÁBÈåÍN|‘‹´WnnœÝ l!ÃðÁ üSŸ_U\ò…nsÉuÉ«Š^©)9L}z,74oÉ>qS’½Ó+Ùöžß¶ïk²ó‡®È.øYc^¨]°ˆG!ý¿é`<2%sJã€@¯¸ÈÎ!ï”á‰2S hŠRxœޏV&GL#>•|ÄG@à#"û@&{ù @¾ûÈωCdwè"™ Š1E{rŸb†”,ÔÑmKô îSc} endstream endobj 174 0 obj << /Length 245 /Filter /FlateDecode >> stream xÚ}αJÄ@àY¶L³op™7Øž¤9 œ'˜BÐÊB®RË+N,„¤³ô|•¼o û)·g‹l#à 3Åüå9:‘.Oiíè±À#–Žb­çÃ÷5Ú;*Ú+Ù¢­¯éåùõ íöæ‚ ´;º/Èí±Þs¨8(þfn!oÿ`@Ëld*¢ƒÕŽˆ“=l–ðJðÐzx‹Ð3ª^è—ÙGP‚\0(af˜ÁèQwKŒ+5f‚LÀYq>Cóøh¾*âg 4ÕÂC>¡„U¦OÑB6!øFK@¼¬ñ ¿—‡ endstream endobj 175 0 obj << /Length 267 /Filter /FlateDecode >> stream xÚmϱJÄ@à [!op™Ð$zŽÎL!he!W–ŠÂBro¶â‹,X\›2Å‘uv6²Żì?ó—ó³Ë‚r:§ÓbAåÍsz*ðËœÜ)ÓÓöW fTæ˜Ýð=fÍ-½¿}$2!jBûn܉t…ZºBÛ¥²—žy*ÏÒ³óȸVÚAë“«D"Sß ñË*¿^7x¿> stream xÚ35Ô³4V0P0bS3…C®B.cßÄ1’s¹œ<¹ôÌ͹ô=€¢\úž¾ %E¥©\úNÎ †\ú. ц ±\ž. ü @ "ê˜ñ?àÿb‰ÿâ;øÇ’„=Ð×?Ð.WO®@.v)aG endstream endobj 177 0 obj << /Length 247 /Filter /FlateDecode >> stream xÚeнJÄ@ðH±0Í>Âî˜sŠóSZYˆ•Z^q¢°y´^©ÚÞ]E‰î⣴> stream xÚuÁJÄ@ †3ô0Ë<Âä´¶.zXW°AOÄ“zô è¹}´y”>B=”Æ$++ˆBù ÿ$þä,^l¨¡–Nµç´mè9á¶*6´M‡—§WÜuXßS»ÁúZd¬»úxÿ|Ázw{Iò¿§‡DÍ#v{à/ÂÌ<ˆàDr3ôT#ä|¼@˜ ®¥~üù·ŒÞºª ò :gùa?'¥Eq\„«´Äódfà4§tæcÑÜ¢=‡C³y³;ÒêG¥Œ>RöÿŸå›³x–^9H`™’‹mZt/¹O/e«“¸³Æe»g´ÛÚZxÕá~ÇœÍ endstream endobj 179 0 obj << /Length 197 /Filter /FlateDecode >> stream xÚÏÁ ‚@`Â\|ƒœ'h•4¤À òÔ©CtªŽŠA¾Y>ŠàÑ›9¿`·öƒÙfgoNØe9~ÈS—O]ÉÚÜ•TŽŠSÒ;öÒ«ö–tºæûíq&oì‘Nxï±{ 4aÃ0TeôšÐ‚6t~œÃl¾*hB ÚoˆúŒàf°U)š…h墿8ƒÌ`%ªÎR4 ÑÊE:˜v#˜Á6õÐ~»ÿUè3–)méܤ‰Ù endstream endobj 183 0 obj << /Length 338 /Filter /FlateDecode >> stream xÚÍ“?N…@ÆgC±É6½€QãÚ¸Éó™Ha¢•…±RK vF8Þä%^€’‚0Îì ‘¼Z ø-;;3|óqvrX”ºÐ§ú ÔÆhs¤ŸJõªL¡ù6Ç~çñEm*•ßiS¨üŠ^«¼ºÖïoÏ*ßÜ\èRå[}O‰TµÕ@W‚€dªR‰ˆ;Ȉ,Q–ˆG¨9ÛCi ì7rXKËä0—Aà@$ˆs;’²º:ñ>GOÔ11PV¨GG’ª à{ ré(µëÜ‘  J}1*7S(»$;SheIÙLõ>âoúCø¨^¥f­i0Ó¤ÚÙIñ™Î§ÉÌô¬ð§ Cœ4ôqú¢ŽHºèG®¹‹nJÛè°¬‰®³œcÔC +{ç7ZÛÎÛ¶>»ƒ Úà¿¢‹*E!¼Õe¥nÕ/ÙÏíã endstream endobj 184 0 obj << /Length 349 /Filter /FlateDecode >> stream xÚÕ“±NÄ0 †]u¨”¥P¿´U‘®"‡D$˜02€`ny³ãMNâ¸ñ†ªÆIÜ»´EÀJ÷“ã8vâ?ÏŠã¢Â x”cµÀ²Àû\=©Ò83,OÜÊÝ£ZÖ*½Æ²Ré9»UZ_àËóëƒJ——§˜«t…79f·ª^!ðÒ û5D±Åˆˆ6XÖÌ;Ж©‡Æí¤uH@†cýN.|ÍŽrá.m@µÎ³Û¯F|Ž=›Mb¶š Ö´`]ƒÃœb{)Ð$èÀU2¤ئç¿ô' ÄcW˜¾|–rƬÇ,eŽ9sóýÃôOx^cf¥u=þÌzÆ.‡–{6œü‡·›òðÖS–1´Œ¸;ôAýe&oVýögÛ›ù`¦_#œˆ7ÄŸ¢)ÒNG¼¼ èöÝYmv¢M£Ù­è×Üf !ˆ&\oê¬VWê ?¦! endstream endobj 185 0 obj << /Length 105 /Filter /FlateDecode >> stream xÚ3±Ð31Q0P0bS #…C®B.C ßÄI$çr9yré‡+˜ré{E¹ô=}JŠJS¹ôœ€¢. Ñ@-±\ž. ÿA ÉÀþÿÃ(9THü±ÉåêÉÈ’:Õ° endstream endobj 186 0 obj << /Length 316 /Filter /FlateDecode >> stream xÚuÓ1NÃ0ÆqG"yÉâ¤êÐL–J‘È€bFÌé ¸Rc@n@G†*Æï9~ýÈðäßóò,×Õâdµ4•¡i³Z˜ûZ?é†öŠVÂÝ£^·º¼6ÍR—çþV—í…yy~}ÐåúòÔԺܘ›ÚT·ºÝçÜR*ñç<‚ÝV™s[¿(;(rOηì¼wþäpô(þàXð;¸áàŽÃуØr,¸çÎ8=ŠSpÂá`ÅáÉb æðdOæ°x§`Oæp4…ÄLáh }S8:S8šÂà^ìÃb öa±ƒb§`ûØx'îÜ·Ø‚ ~›à|Æ8'`5çlÁ8ŸqNÁ X‘‹½xúƒ> ¶àœÿµ>kõ•þJÔ@ endstream endobj 187 0 obj << /Length 233 /Filter /FlateDecode >> stream xÚ퓱 Â@ †S:Y|„æô]ª‚ÄIÝÄöÑú(>BGñLÓZD''—|ü¹ÿr7œÑ¦©;¤©M CA‡º>­ î0ðYÔÔmÕÃ՜՘eTÑ„ûãU8A5¤…!½ÄhH–ãàpɾe¨Û ä§P±þóï¸Vrÿ…{ÂÙŸy¹%ŸÞرWáÛ K¶¹Žp,ìŠ+¾ç¹&ûÂuaÏJNE±IÞM ºœ4y0犉%®Þ­àØ^žÃù ŽâAlæH 4È—¬6eOæ†E8Ã`ò| endstream endobj 188 0 obj << /Length 270 /Filter /FlateDecode >> stream xÚ•‘±JÄ@†'¤Ls°óšL® œ'˜BÐÊB¬> stream xÚÝ‘=NÃ@FÇJišÁsX[NŒ©"åGÂTPR€ ¶;®•ä 9BJGZí0;Þ J¨Øêifw<~ßEqžU”QAg9•—Tô˜ã –)fTûÎÃ3Îj4wTNÐ\IM}Mo¯ïOhf7sÊÑ,h•Svõ‚`Úæ_À ühv= ™{H™× ³ïñž¡±ÁBÊ [rë¡%k‰TïË3¶ü·š.‚ 0=€;  ý Ú¿€“ûv>ò;ö»ÕbC _Æ\”Éõ¶Aøf #àc§ƒ—è,'·4/+;h‚¼q1h¸¬ñ?7p% endstream endobj 190 0 obj << /Length 243 /Filter /FlateDecode >> stream xÚµ±NÃ0†/ê`é?BîÀ‰dSº`©‰ HeꀘhÇ XI-Â#dÌ`å¸s‚ºtÅËgý÷Û¿î·×~Iyºª)x ö5¾£_‰XQ¸™&oG\7èväWèEF×<ÑçÇ×Ýz{O5º ½ÔT½b³!€ÿ€œÈ£‚™Oª±ª–!2J`@;€÷PŽPÈ<²;…‘GgÈ3E9c̈¹*lÊ0´9Útüø / Îà Ýìi†Õnʲm'¾©¿;)¤ø–),åˆbÈߘ^‹ìJq™©Ý‚§®£zµlÑð¡ÁgüÍF‹¾ endstream endobj 191 0 obj << /Length 253 /Filter /FlateDecode >> stream xÚÕÒ½NÃ0ðT"ÝâGȽu¢~n–ú!‘ &ÄŒ ˜Ý7è+õQúíØ!ÊŸ³¯ñ‚ŠÄ„ˆdå—‹³ÿÊl4¬æ\ñ˜¯jžU<ñsMo4HQÇúæé• Ù{žNÈ^K™lsÃïŸ/d·K®É®ø¡æê‘šgáʱ‰wƒ_ s=Ìÿ‡$ p8E €.¢° (±s‡×…¢ÀŸÂ4Ž2ì¥*ȱÓ| ]¹Ñ6&âÜ´LèÎpßàÚ‹À_à‡ýøËÇIHGN!ÄXÊ>±] ³7ž#†Ýfæýß".ŒÎF«?«Ç^Q 3Ò™Ö Ýщb= endstream endobj 192 0 obj << /Length 244 /Filter /FlateDecode >> stream xÚ…¿J1‡gÙ"0M!óº·`D«Ày‚[ZYˆ•ZZ(Úºy´}”<•aÇ™¹ãôP1|ðå—?üâéáIO :¢ƒžâ1ÅH=>cT¹Pc;÷O¸°»¡Øcw!»á’^_Þ±[^‘ØÝÊ™;Và8ƒŒ‘?dm˜gPÇj·\R…q :“dÄ„*Á |…Vbn¶;ƒg³Eó çd˜ö1Öo( Ø÷aãhDBÿcü³!ýD[Áo˜¬1¿En¥ ¹±¦ä%iêÝînª6N:ó\ÒZÛ` æ]H›_ÙI<ð?yë­œ endstream endobj 193 0 obj << /Length 324 /Filter /FlateDecode >> stream xÚ¥‘?JÅ@Æ'¤XØ&GÈ\@“HòBª…çL!he!¯RK EëÍÑÖ›ä¦L2Î쮂°áÇîüû¾É®9o[,±Æ³‹w565>UúU7¿–Øv1ôø¢÷½.î±étqÍïºèoðýíãYûÛK¬tqÀ‡ Ë£î¯|¢QÑÑ’“CD–F°³"RcB|&;¦Jª ÀÌÆeÂ%w¹pU¾ëö3Bú?OûþÄÂ|€ G(ú‚^±'€f ‰]âTH¿Ø¯ð“|X9éʶÌÜ/O8E.‘> stream xÚ37Ö3°P0P0bsC c…C®B.33 ßÄI$çr9yré‡+˜™qé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]ì0€Áÿÿ$0˜a †aÃÿeüÿßf0ÿÿÿÌà‡xûÿùõÀŒ:û`PÛãçã?Hÿÿß  e00°ÿ?€Ìø‡ÁøCãÇ(ÎøŒv q€—«'W lù2 endstream endobj 195 0 obj << /Length 138 /Filter /FlateDecode >> stream xÚ36Ó35Q0Pacc …C®B.# ßÄI$çr9yré‡+Ypé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]ìþ``üÿ€ùÿ0fÿÿ+†ÉƒÔ‚ô€õ’ ä0üÿ‰˜aˆàÿÿÿ@Ç\®ž\\ÍÙ¥; endstream endobj 196 0 obj << /Length 107 /Filter /FlateDecode >> stream xÚ36Ó35Q0Pac c…C®B.#K ßÄI$çr9yré‡+Yré{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<]ì0üÿ‰™˜aãÄÿ„޹\=¹¹µ‰Ã endstream endobj 197 0 obj << /Length 232 /Filter /FlateDecode >> stream xÚíÒ½jAð WÓÜ#Ü>·ÔŒ‚WZ¥©LÊ+³vrp!E¶›üçT°+‹ ó›Ý-ÆÙÇvïÞXÓÅqöÁt;æÍñ';ë±j-->x˜súŒÇéiNó©Y-×ïœgOÙ‘yÁÌ+ç#CYEI ºO$RáxŠ%4ˆDJʤnï«Ò 󢣨Ò×®U¶¤ Hª@Yûƒ$߸»Np·â§¤D@¥(€þ¿ØAx^ƒæ §¨å9ìÅE…ÿÇÍÛ„ÂÆip xœóœÿvÚiC endstream endobj 198 0 obj << /Length 184 /Filter /FlateDecode >> stream xÚíѱ‚@ à& &]xúÞÜHLtr0Nêè ÑUy´{ጃ „zwÀ¡Í×6ÿÔd4”’™JBG´ñ„qlfiG{Ø1+P¬)ŽQÌÍE± Ëùz@‘-§¢Èi’Üb‘¤‚˜µ©ÒÁc®|æÚ!P÷Æái à±®!`{èø.ÿT¼ÊV6ß¡ýAÓõ_°yÍÀ4Õ8+p…o âøš endstream endobj 199 0 obj << /Length 231 /Filter /FlateDecode >> stream xÚµ‘±‚0†kHná¼Ђ±0’ &2˜èä`œÔÑA£3<šÂ#02Î^KL%!_sý{½þ¬æI‚!.qa¼@¥ðÁCT±Ý9ß +@P% 7º ²Øâóñº‚Ìv+Œ@æxŒ0> stream xÚÕÏ;Â0 ÐtõÒ#Ô' ’VbªTŠD$˜02€`nÆQz„T d¨jœ20õXö“üYœé™žcŠš+ã4xRp“s?¶aq¼@iAîÐä W<i×x¿=Î ËÍÈ ÷ ÓØ Eá¢^¹˜6¡–­É±Câ‰:_øˆ:WóÑ«}ßÍO_ /h‰ Æmƒú ýIž™–¶ðj^¤ï endstream endobj 201 0 obj << /Length 259 /Filter /FlateDecode >> stream xÚ]Ð1NÃ@Ð¥°4¾;ÛŠBƒ¥$\ ‘ŠQ%Ú¬æ£ì\¦°v˜Y)¢yÒî·çÝT—ëk.¹æ‹Šë57 ¿UôIõJ/Kn®æäõƒ6O\¯¨¸×k*ºþþúy§bóxË[~®¸|¡nËXÊp8™ÎÙë…HDÑFä#ò°Ô々Ú~Àþ¨¨7ö'ÉQÈ”´^;LKZ+45qj@.dêtÜÇv“ù!¤¸Ç"iíÐÄÌôehÖ”ôÁjÛ]ˆÿdVçµ³½ÍSuž‡è ±ýõ?h©›ÓêgåcfKxýºëhG¿Á•¡Z endstream endobj 202 0 obj << /Length 186 /Filter /FlateDecode >> stream xÚ35Ô34S0P0RÐ5T01Q07SH1ä*ä21 (˜›Cd’s¹œ<¹ôÃL ¹ô=€Â\úž¾ %E¥©\úNÎ @Q…h žX.O†ÀOþÁN2bÌH$;É&åÁ¤=˜¬“ÿA$3˜äÿÿÿÿ?†ÿ8H¨úANò7PJÊÃç‚”ÿÇ`$ÿƒHþÿ ÀØ`ÿð(Èþßÿ ýß E` q¹zrr:é“p endstream endobj 203 0 obj << /Length 187 /Filter /FlateDecode >> stream xÚíÑ1 Â@Ð  Óä™ èfÑlì1‚[ZYˆ•ZZ(ZÇÎkÙyÛt¦Ž»‰… а{üáÃÀ»°O!õ¨­(Võh¥p‹ZÛ0¤(j.Ë ¦匴F9²1J3¦ýî°F™N¤Pf4W.ÐdI àñ˜Kü#ZX€ƒøã+üÏÞ8ä¯È’ àö„wåÂ6î .n ŸÁÉÁNÃõ<sUÃv‹öÁ848Å”Ìðn endstream endobj 204 0 obj << /Length 252 /Filter /FlateDecode >> stream xڅбJÄ@€áYR¦É#d^@7¹Ül œ'˜BÐÊB¬ÔòŠí°¸×ÊÜ+äR¦gvE8°X>˜YØŸÍ/Η%”ÑYJyN«Œ^RÜa¾aB«¥ß> stream xÚ•Ñ1j„@Æñ7XÓx牚à6l6‹@R¥XR%)S$$¸æfB.2©ÒNi!¾¼7ãÊ.V?ø¡ƒòÇu~žf*U+u–©õ…ÊWê9“o²(èfªòKÿäéUn*™<¨¢É Ý–Iu«>Þ?_d²¹»R™L¶jG/z”ÕV!â­ÿCì´؃@µp` 'h–Îì'–Ä‘vÄ ¡3k"úótÅ{O<¾8‚ FØ ¦evb8Ñ83Mð‹mH Є̎iÃoì˜Â“z˜ÑÌ>úBa"0‡Ži5s?hbé8–TÔ0µcíÙÌÄô00c*ÓCïÙ»1í‚Ö ¸ˆi<¸8Î^°óŽ‹˜­gëvJpÏi\DäXî‘ו¼—!‚ý) endstream endobj 206 0 obj << /Length 310 /Filter /FlateDecode >> stream xÚ…Ð1NÃ@б\XÚÆGð\œ8ÁM,… á * D” è"ÖT¹–o+ølé"ò0³³DQXOš]yþþòôx:ÁNð¨˜bYâÉÆæÙ”OG8›…£û'³¨M~ƒeaò ž›¼¾Ä×—·G“/®Îplò%ÞŽqtgê%Qmÿ3¢ "Vì–åÏŠ<³Ÿ³•èXú1f3j îÔ„MÅVl!e±y‹ ºo+ =̃ï¬Zy·Çê½ÃÎÈ[‘ÄcoFG\{SZ·êƛЦQ?ƒä‰`߈†µ™=mÿ»•;4ëMÛ?l½þœ};Y«íTj¶Ä­õj´Ó©Ú õIP×Z§ël§klku釾2#}UJ.´Ò†RÌym®Íaɽï endstream endobj 207 0 obj << /Length 137 /Filter /FlateDecode >> stream xÚ33Õ37W0P04¦æ æ )†\…\&f  ,“œËåäÉ¥®`bÆ¥ïæÒ÷ôU()*MåÒw pV0äÒwQˆ6T0ˆåòtQ```c;0ùD0ƒI~0Y"ÙÿIæÿ ò?&ù¤æDå(I²ôÿÿà"¹\=¹¹VI¢” endstream endobj 208 0 obj << /Length 301 /Filter /FlateDecode >> stream xÚ}ÑMJÅ0à)Y²é’Ø–G_]x>Á.]¹WêÒ…¢ëôh=JŽe¥ãüˆ? Ú¯if¦“tߟ ChÞ¯6 §á±s/®ßÑ\¦¼ððì£knC¿sÍ%½uÍxÞ^ߟ\s¸>kŽá® í½Ào@£B,D¸'€DdZš"-š,-ÚB/6¨3"x‰š¢äç”™œ®—ÓÊ®k‰í ƒËpÞ7q|Ì$pãFúæš¿È »ùdíL™@ÚAvüZ´H¥ÙFÓ¬¦YM«5Þk|,ZdÖìI³eb4Ðj`Môä³g!@Tt¶«`[ÈBÍ».àA8ã²EþõËwÌ•b«ÔŠW¢’üÉü'îbt7î}tû” endstream endobj 209 0 obj << /Length 305 /Filter /FlateDecode >> stream xÚ‘½N„@LJlA² À¼€ÅgErž‰&ZY+µ´ÐhÍ=Ú> @IA烋 á·ì|ýgf.ëK xQá®Âz¯•ÿð!ðe‰õ•Y^Þý¡õÅ#†à‹[¾öE{‡_Ÿßo¾8Ü_cå‹#>UX>ûöˆ)Eà§£‰¿ŽˆN£ÈGG#›"ˆqhfHøÔ8¾ÏéäfEÊAEIÅÈ=¿ÿ„Å-ˆÎ’%$©#쵂H\ÀÕWèfä¹  Íhg™…™cgݺi†¹8iZþG«`©s+´¤É,25×ô\iÜ`2[Ì[¸¨ÈE3)Dä/ˆþbZÁ1.8Gƒ ƒ•I¬³éUuužR¯áÍ:îXÔ&¼oÝ´í]Ö¯"MºÎÝß´þÁÿéýëo endstream endobj 210 0 obj << /Length 225 /Filter /FlateDecode >> stream xڽнjÃ0ð ‚[ôº'ˆìPÛt±!têP2µ;´4›qüh~?‚G‚$ÎýÅC»õ@ú¡Bw—&ó,㈮+]pöÈo1}R2æ¢ñ8^¼~в$ÿÌIF~{Í’/wüýu|'¿Ü¯8&¿æ—˜£•kžnûLMÔÐ@;ÑÁž&žEõD-twñ>‡5 pU/jh:ØŠ¶,PW+D5À^Ôh ma#:ôYÀVpÔ=ìDÓŠºb~9¬a€g‰æ/ÌÿŸuøÿwiSÒ]]Óq endstream endobj 214 0 obj << /Length 136 /Filter /FlateDecode >> stream xÚ32×3°P0P°PÐ5´T02P04PH1ä*ä24Š(YB¥’s¹œ<¹ôà ¹ô=€â\úž¾ %E¥©\úNÎ @Q…h ¦X.O9†ú†ÿ ÿᬠ—Àƒ€ ãÆæfv6> † $—«'W ÷ '® endstream endobj 215 0 obj << /Length 230 /Filter /FlateDecode >> stream xڥѽ Â0àá¡÷¦…¶Ø©P+ØAÐÉAœÔÑAѹ}´> stream xÚ½Ò=‚0à’$ßÂüN`!!U'ÄDŒ“::ht†£qŽÀÈ@Z©mIjüÙlBÚ-ïË$ÇCŒû‡ÏOñÁ¸š‡jª^gHs`[ä1°e¿ ,_áíz?K×sŒ€e¸‹0ÜCž¡ì‡ „(eml ñdE|µQ”ýb©M*mÐhýVK;-Fi,ŒI©U®Aml´¾µu¥Öø¡ü“ΧâûýéË÷Úl.CNµ›ŸÍÕZ¸=x¦Úº½%õÐë³gizïÜÿ@Õ‹6ð ·¯7 endstream endobj 217 0 obj << /Length 296 /Filter /FlateDecode >> stream xÚÅ’±jÃ0†OxÜ¢Gн@k»g«!M¡ íÔ¡mÇ-íì@^Ì[^Ã[WŒÕÓI –õq’î¤ûÿUu¹¤‚–tqE+þ z+ñ«Šƒ…‹ÈÊë®ÌŸ¨ª0¿ã0æÍ=}ý¼c¾~¸¡ó =—T¼`³!ÐÀ–g°¶ƒžçÌÚA@jTê®,÷ ÙÈãÀ°8¨_=¸eãöµ½âC»¶®ŠîAMF‹^ò ¸|œ:I *©@=‡N` í¿À÷Ú ”åž»kÌÛ6„Öñ9&>0s‚!€žof ¾á&j‘‚—ɤ¤”bu”» g€ŒÏ«C0I¶µòF‚)ZëÍæ¥ûàmƒøê*­ü endstream endobj 218 0 obj << /Length 229 /Filter /FlateDecode >> stream xÚuϱJAà¹ba ï ¼yÝÙhº…Á+­RˆPK E;1 ¾Øt¾Æ½±»âp½‹ S|Å?;?¬ŸÏxžjösö3¾­éüTCÆÍÍ=-r+öSrg“kÎùéñùŽÜââ„krK¾ªyrMÍ’a{è„Õ®lBŠ-`a:`Ðu)xªu‹w­äG½W‹˜ÕùÇ2©&e˯œɦá¶ÏÚnh›‡Î ÙÍhüuð‡aǨ‡k}ÿ¡ Þ[ bÔªµoŸb»ý"E“z“†O¾€Nº¤oÉŒla endstream endobj 219 0 obj << /Length 213 /Filter /FlateDecode >> stream xÚÅѱ Â0à; ·ø½Ð4X-‚P¨ vtr'uTt•7)7´&/¡Â“²‰Ž hÀ4³“"¯rM¾ò¨Ó˜îzd‡Ú endstream endobj 220 0 obj << /Length 203 /Filter /FlateDecode >> stream xÚ½ Â0…Oé¸KßÀÞд¤v øvtrAPGAEÁA0–Gé#8:õÆÜòANȹß-LÇÎØp;ç"ã¢ËëœödJ åZ¾_V[êU¤glJÒ#‰IWc>NÒ½IŸsÒžçœ-¨0pu@ÜÜ€Ä_‹x vёÒZÕ°uú/¬{#õÒ¡^EÈAó^Uö‹ÌzÌÅN4° ¨E A2ò¢;Wa…Äé ¨°V4¥'VhLr endstream endobj 221 0 obj << /Length 210 /Filter /FlateDecode >> stream xÚuÏ1jÃ0àg<þÅ7ˆÿ 4²‘ã1'…z(¤S‡$ MH×XGÓQ|„ŒJÝW\(TˆôúŸ 7uN3uúk‘i1Ó}.Gq%CËáf÷&u#öU])ö‰±ØæYϧƒØzµÐ\ìR×¹fi–Šè €éÆWà‚Op_ÝPIÓ!õ I@Ò*¤#f %×#ý¸~á,üK{ÇT#ç¼³¶,„ΰq`É(°nìYÜsLøâ¾Þ–ÇF^䃷V2 endstream endobj 222 0 obj << /Length 125 /Filter /FlateDecode >> stream xÚ32×3°P0P0b#S3s…C®B.#C ßÄI$çr9yré‡+ré{E¹ô=}JŠJS¹ôœ€¢. Ñ@-±\ž. ŒØ€ÿ‚ˆ¥ˆŒþÃûæ? : æ ÿÿÿ€ .WO®@.»P endstream endobj 223 0 obj << /Length 110 /Filter /FlateDecode >> stream xÚ32×3°P0P0b#S3K…C®B.#C ßÄI$çr9yré‡+ré{E¹ô=}JŠJS¹ôœ€¢. Ñ@-±\ž. ŒþÃûæ? ŒC 1ÿcøÿÿq¹zrrp^Ú endstream endobj 224 0 obj << /Length 203 /Filter /FlateDecode >> stream xÚåÐ=ªÂ@ðH˜Â\@ÈœÀMü BÀ0… •…X©¥ ¢­ÉÑö({Ë«ãî+¾¼b†ßü§˜aÖé8åž«|Äý>2ºPî³Ô~±?Ѥ$µá|@jáRRå’o×û‘Ôd5åŒÔŒ·§;*gX@l$Æu¯8lSyÕEÈžñn!Ñ­Á£X#xiTCÄÆ©F•þHjODO' 0¿ôvÒÊÝö§þ³B÷J#n Ò$"¡ˆù&š—´¦ݤ› endstream endobj 225 0 obj << /Length 209 /Filter /FlateDecode >> stream xÚ= Â@…GR¦É2ÐMtý©bSZYˆ•ZZ(Ú‰ÉÑr2EH|›((vÂðí̛ݷ«Ga_<éIÛ=Ý—½Ï'Ö]ˆžQêÎîÈAÄj-ºËj™U´Ëùz`,§â³ eã‹·å(¢8!"«Ê@'-À1¹à4r²Sjed=L A Ñ‹]l»ÓŒßÄñ V0ùee˜þǯÛ̬äsnãÄ…«òíž ²Áœ¬Ì”/óÍKÝ´í*ëßàYÄ+~PûZ> endstream endobj 226 0 obj << /Length 144 /Filter /FlateDecode >> stream xÚ36׳4R0P0a3…C®B.c˜ˆ ’HÎåròäÒW06âÒ÷Šré{ú*”•¦ré;8+ré»(D*Äryº(0ÿ`þðÿ‡üŸÿ?lìþÿ(¨gÿñà?óÏÿ6ügü  u@lÃøŸñþC{Ì ´÷ÿÿpÌåêÉÈÈöPê endstream endobj 227 0 obj << /Length 160 /Filter /FlateDecode >> stream xÚ36׳4R0P0RÐ5T06V03TH1ä*ä26PA3#ˆLr.—“'—~¸‚±—¾P˜KßÓW¡¤¨4•Kß)ÀYÁKßE!ÚPÁ –ËÓEó¡a9$lÄuPüˆÙXþÿÿÿ¡$N#ÌC®ca¨gc{ ùù ì00þ?À”àrõä äùJm endstream endobj 228 0 obj << /Length 162 /Filter /FlateDecode >> stream xÚÍË1 Â@…á·¤L¡°˜ èfqCÊ@Œà‚Vb--+'GË‘<@Ⱥ!Xè l¾âý3©™ŒžóÔpjØZ>ºíÇ„m:”êL…#½c›‘^…™´[óíz?‘.6 6¤KÞNäJV- ð-rÿeÜByD¡z 7ÿ«ÿU}Ä`‡(øD,uxIƒé0nÒ·WR héhKo©b“ endstream endobj 229 0 obj << /Length 197 /Filter /FlateDecode >> stream xÚ=ϱ Â0Æñ¯8nñzO`Z¢  j;:9ˆ ¨£ ¢³y´> stream xÚ½½ ÂP F¿Ò¡¥Ð¼€ÞVn«“‚?`A'qRGE7Áúf}”>BÇÅšÞ‚Šè*3$|9º×î†ì³æV‡uÈQÄÛ€¤}®+ê5“Íž†1©%kŸÔTڤ⟎ç©á|Ä©1¯öר8Ux·èã”À*à%V7±38©“ÂÎ \Aî&°rOP ådeyÜ¿¡>Xý ?c\%éý#øë£æË'q¶(I£©fÔ‰µNšÄ´ ƒ…) endstream endobj 231 0 obj << /Length 131 /Filter /FlateDecode >> stream xÚ3±Ð37U0P°bC33…C®B.c# ßÄI$çr9yré‡+qé{E¹ô=}JŠJS¹ôœ ¹ô]¢  b¹<] >00013Ëñÿ ÿAø9³ùà óÿúóCýÿÿÿa˜ËÕ“+ Ìt^@ endstream endobj 232 0 obj << /Length 259 /Filter /FlateDecode >> stream xÚ]ÐÁJ…@ÆñOf!"·."ç åÚÍE0p»A.‚Zµˆ ¨vµ ôÑ|Á¥‹ËÎgH0?˜ñ?p´¬NÎNmn¹ÊÒ®×ö¹wYUºÏ¹å‹§7ÙÔâîìªw¥§âêkûùñõ"nssa q[{_ØüAê­…ÙÈB´aD4%;˜>Ú#îp¨§Ýà{%*eÌdl”鈧W”]èHÿ‹ùOË·ž¦…dfä 3Âױt¢KÒ‡óF¼oæû¼³MØfl=³oÂ,"†EÌ"pLΉ~WІh–Fš¥F³*Ö4×€& !Œ3ž´DWþËZnåÎvj endstream endobj 233 0 obj << /Length 206 /Filter /FlateDecode >> stream xÚ¥ÐÍjÂ@Àñ„@CÐkBç º·‚Ð õäA ¶GAEÏæÍÌ£äMbö/hèµûƒÙf–Éf¯Ó±Zµ'›èdª?©$¶¹u©{øÞÉ<³Ñl(æ½½“èéxþ3ÿ\h*f©ÛTí—äKõ> stream xÚ¥ÏÍJÃ@ð Ci®Š°» ùX/b Í¡ §ŠPB,íM$–Gé#xôPÔÝ .ÔC¡3ð;ÌÌîÎ&z’§¬8åë˜ÍYÎϽQ›¢âì¦ë<½RQ’\q“\˜2ÉrÉÛÍî…dqÇɯ#VTÎx$ltŽøc¢uZGaýÚL„ÂùÚ¨EeT°†{Øšôk€ç.àÐYàjXà î-æ‚^› Çð Þ:~ÀwÇßޑþ×ÿ'žaðÙ”æ%=Ð//ó]ã endstream endobj 238 0 obj << /Length 106 /Filter /FlateDecode >> stream xÚ36×31R0P0F¦ fF )†\…\`¾ˆ f%çr9yré‡y\ú@a.}O_…’¢ÒT.}§gC.}…hCƒX.O~ûõþ@Àúöø¨ pÙÁåêÉÈ1V2ê endstream endobj 239 0 obj << /Length 287 /Filter /FlateDecode >> stream xڕѽNÃ0à‹> stream xÚåÓ»JÄ@à¶8MÞÀœÐÌÀÞ„°ë ¦´²­VK E[7e°°ô $2EÈ8gfö‚A´³0ðÍ%sù'™ ¦Ç$iH‡Š&’””t£ðÇ#[ËeåÛVw8Ï1½¢ñÓ3®Ç4?§Ç‡§[Lç'dË ºV$—˜/%¸K˜ó DÀºý¿ásÐ¥0­GbŒÇڷ鲸f¼V Æ[÷ÖïöÑ1>8Q†«.ìÝ„y4¿šT1£bÔ<¢[σ¶‡. êÃ| Ø¡ø ü¼Âº¯;í‡ Úý \tõ~˜Ûœ9ù„“ÙAƧÇrà×:ösÂLn˜ÙÿÊrÕnÈà™7ÃІûÂbÓ„/ǵàiŽ—ø »ÆËH endstream endobj 241 0 obj << /Length 262 /Filter /FlateDecode >> stream xÚµ‘±JÄ@†ÿ%ÅÂ4yƒË¼€nnàà pž` A+ ¹J--îP¸B¸«Ø×\_ðSE;ò%ë_ûtòøBë–Ü=û’ܵl“koøuÿöLn}{ɹ ?T\n©Ý0`Bùòð¡h§"à(»Ù vì3…,r£Vˆç ½(R0§(™ºZ1̾‘?¡^3šAÑï RàWÄ^þS…ãML j×3ô)0}1Fè3‘õ¹fšÅš l—iX6e–§©î*y’›XˆÞ i}l±éæM‹ó£«–îè S-zY endstream endobj 242 0 obj << /Length 351 /Filter /FlateDecode >> stream xÚ­‘ÍJÄ0ǧäÈ¥¼€¶‹µ‹§Âº‚=zò ‚ =øu“mÁë£ärì!4ÎLRuD¶„™ÉÌüg¦^îW¦4•Ù;(M}hêÊÜ-Ô£ªKCÿQ•\·jÕªâÒÔ¥*NÑ®Šö̼<½Þ«bu~lªX›«…)¯U»6À_‡GzahBŸ ‚Õï„—ã›t ]æ2 º‡¦G6Da)…Æh˜rûÅÌcf÷EA¿1-Û?pλëÛÕ³«÷³î I}Òˆš6Ä¥£P€gOén Àâܘ’ÝÙ'û+ít‰c¢„036u! è’¡AÒMÄ"9Ñ%ûÈ} |H³=¤X9ÑZ±H v¹÷]Ͻãm³E=L‰QVþgÎq)Ïœ¯ïRþT7éØD]àãn²¤Çó cˆ»Æ’|´M É'bÛ<Î%øªNZu¡>ÚvÔ endstream endobj 243 0 obj << /Length 142 /Filter /FlateDecode >> stream xÚ36×31R0P0bcCKS…C®B.#ßÄ1’s¹œ<¹ôÃŒL¹ô=€¢\úž¾ %E¥©\úNÎ †\ú. ц ±\ž.  Œÿ˜ÿ30°ÿoÀŠAr 5 µTì ü@;þ£af f€áú!Žÿ``üÿè¯ÿ ȘËÕ“+ > stream xÚ36×31R0P0bc#C…C®B.#3 €˜’JÎåròäÒW02ãÒ÷ sé{ú*”•¦ré;8+ré»(D*Äryº(0°70ðÿo`ø†™˜†ëG1Õñÿ ŒÿÃúÿdÌåêÉȸ§‰ô endstream endobj 245 0 obj << /Length 207 /Filter /FlateDecode >> stream xÚíÑ¡Â0à[*–œÙ#pO@·@ ¨%0&H@! $¸ñh%Ø#L"Çu€…D´ùþ¶—KzzµÙ¢ê²™Í"\¢1’CÝÅtíõˆŒAÝ“SÔiŸÖ«Íu{СuBãˆÂ ¦ ²åà³U|0Û€ù‰Ø–ØB%/Q@Px¼·à_åQvØïʲ#€rˆO‚û ^‰Ëç7\©ëŸ‘†ýãgpÓ÷x'A~^ɼ™¹P²Ù/ÀnŠC|U¸ý endstream endobj 246 0 obj << /Length 249 /Filter /FlateDecode >> stream xÚ­‘±NÃ@ †}êÉK!~¸5Ç©©*ÁÔ1#æÜ£õQú3T9l× êÈÝIßɾü±‡Ûë5•TÓUEá†Âš^+üÀ:p°¤PŸ3/ï¸éÐï©è·Fßíèëóû ýæáŽ*ô-=UT>c×€Kxåiôi$Þ«Š@v”#W@Áø!ç'=rå4à8 E\)™æGCÎ †B1Š:‹6ŠÓ½bê¥:wZ¹KÿŠ??²"XÖi=Ì1w«½fùbpêYœ4?Í]óšeä[›ƒã©ÄßÙÄt~xßá#þ°´”ð endstream endobj 247 0 obj << /Length 281 /Filter /FlateDecode >> stream xÚuÐ1NÄ0Ð¥ˆäÆGð\’o$"-‹D $¨(PR€ [mr®â›#¸Lv˜q v š'Ù3þ3Éêì´n¨"O'5ùsj<=׿Íx/—5«¥òôjÖ)ïÉ{S^˵)»úxÿ|1åúö’jSn衦êÑt8ä€å©zÞ[dŒö yDñbDΰƒtÁ‰=Z¨b‹è°M΢ýÇûyqPû¡©“Újë•e^Œ5X*³>ìYëŽYžÌ:#•õB´IjÆ!¥MlGÕ-ƨéÉâH]$?r>Pçäcš6òŸA§Ù ÓìÖ~¢þ¥I"v˜¶ÈfD7¸ˆ(Ÿ0æºl@/]æª3wæׄŒœ endstream endobj 248 0 obj << /Length 191 /Filter /FlateDecode >> stream xÚ35Ò31T0P0RÐ5T01U°°PH1ä*ä21 (XXBd’s¹œ<¹ôÃLŒ¸ô=€Â\úž¾ %E¥©\úNÎ †\ú. Ñ@ƒb¹<] @€ò>’ƒdF"Ù‘H~$RLÚƒÉz0ùD2ƒIþÿ@ÀðƒD1aˆ’Œ¨L²ÿ``n@'Ù˜ÿ0°3€H~`¼ücà1ƒ(¸l@Aÿà(ÀáÍþÿ8¸\=¹¹~@‡Ø endstream endobj 249 0 obj << /Length 203 /Filter /FlateDecode >> stream xÚíÒ¿Aðïr Éî$7/ÀÞÆeQIüI\!¡Rˆ ¥¡æÑîQ<‚ReÌž V÷Ûùv¶ù¶™Ö[mN8åšå¦e×॥-9§Ã„]úHkêfd¦ì™¡ŽÉd#Þï+2Ýq-™>Ï,'sÊúŒ0eQĈ"”ïüå²ÇÜŸÞÑñþñ3‚Ï?£(%V” œÊUè… Ð’“n(6áÁY4nú+|×<>èÈ­h‘\Ð ºEƒŒ&tj8­Ú endstream endobj 250 0 obj << /Length 357 /Filter /FlateDecode >> stream xÚÒÁJÃ0ð¯ôPÈay±æ´k‡Û ƒÂœ`‚ž<ˆ'õ(LQ˜§æÑò(}„{(ÿ4 HÙÁCø~|!!ÿ$åærµKQˆ‹\”Wb]ˆ×œ}°²@s)Ö+7óòÎö5ËEY°ìm–Õwâëóûeûûk‘³ì žr±|fõAcdeŒ"côMd:¢Ê *¢¦%â½s'˜kàŽõcTsk¿Žkç4XNŒÊ±w"]/µ¦‰QSœ…“;GϼË`Ôr ZÀ1üϽÁ¨GäÛÁ¬á­wÛxkI'˜ EÖGoUKX‘¶ndlÝzË4XÁm4ºR‰µòÆy·°ŽG§-·–Î3J‚5Ü%£¹^X“óœâàîùè¤ÛÁ3ï-EÁ=<,FÇý ž{#Rð›Ýèh°?bë·±îFÓhím_üŒÿܹןº²VÞ6ЧÖÒÙÆH¦f75{`¿ŸõÒi endstream endobj 251 0 obj << /Length 335 /Filter /FlateDecode >> stream xÚ}ÒÏKÃ0ðWz(ä°ýÅåÐþ@êÜ`‚ž<ˆ'õ(LQð–Àþ±Üöoô/Ðw(‹/Éëh3&ô‘ORH¿}ÉEv–ó”çü4ŸñŸœ¿d쮦|–Ñ«ç7¶¨XòÀ‹‚%7¸Î’ê–~|½²dqwÅq¾äOŸXµäZk ¡Öêz ºÅªe & '²ƒ©N°ÆM±ÙpŽLÀÏÀ7Vh°2؃zeÊB†—C(ˆ,JXÔÌ:òÐØÈ6tì°%`Ö©‡ÖF¶¡WC`ÖÚƒv‘1«KÚÇš Ö’°!”ðñK˜ütØÆíQØN6GÑ%íAù÷>"ð1î0:@|€y×e¼fx~®¹x ÷¨}P@QS@¡ÜéC))NIGŒÃ%ÅSÔ¦HS Ýý¹ ‘]WìžýÌ%™O endstream endobj 261 0 obj << /Author()/Title()/Subject()/Creator(Emacs 23.4.1 \(Org mode 8.0.6\))/Producer(pdfTeX-1.40.14)/Keywords() /CreationDate (D:20141227203458+01'00') /ModDate (D:20141227203458+01'00') /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.5-1.40.14 (TeX Live 2013/Debian) kpathsea version 6.1.1) >> endobj 2 0 obj << /Type /ObjStm /N 68 /First 547 /Length 3344 /Filter /FlateDecode >> stream xÚíZm·þ®_ÁvpÉá{aðKuÃNдÆ}ïtg5gé éâäß÷î’KI'|u¾®Hj8œ%‡Ï3C­J8a”ðÂ:‘DpB+‘Hh#4áË íP BG|EAJ 3!%L@Q 1{Ë?ˆQ³"±« $(±6Ïi è]øË… ´[è%þ†RÎa¢ÐÞEa‰GW²± °Å@kòZ@”ÚÑ•tt“l*u“°ö`H »:£‰‚ "ÁýI c=¦&Ï>š'ÁaP¯ôD;<¤ F'\40!bÊ”gƒ´ðF³…˜O°ÊŠ xB0R ‹)ïÁaBIóä`. ‰HÚMê¢e =F¤lšÉ`2É‘HÎá ± )`jÈan&¢ZéÀ-<ÍÄÓç¹í„ R†)TÖXþެEœáµáþ>ñ¤°TÔÜnæ×ë=ù÷ðO%ÞŠîå|sÆ=ž<™t?ýq3Ý›éÕlÒ=_.6³Åf-°¨œtogëåíê|¶fOÍ-ßÏ.æÓgËßÅ{…Ï èl+ôäÊbO‹%ô¼‡›æ!±eòõ_¦ÿ²ý—Ë_g“-‹²†I÷îöÃ&×_Ï¿NºgËÕÅl•ÇÖgÝß»WÝó÷¬Z±±ç<#Y µ4¼´–›Ö&%£ñ{*Ž/ð×5ÃYüHx§õ^Z“ŽšA‚FI£¬LÐgI*kŽšaþ3”—JeÐ’Œ†Vém8j†=hÆ]㢈J—¬‚~€¯‘ØJ!JyÖIãÝY}’ü ÝÓ'OòÝÓÃîTèhÇ·¬Ú],wзZYâ=žA˜"€ñ˜lumñ¬} ®)Öš!nÏx­ùñÃxâ¸Ë«OLûÇÝBXùç÷¹ÃaZÿ0w°îr 7pˆicàóØ$¸Ö%à~:Ý.77ð…óéåìB®×ëÛ9ßt7Óó_ñÜë]§Ã˶l¿¬ §X×v-·Öxk]OÙì³a/n4“î‡é§Y¦ôûéf5çå’JgµtÖK<Ëˉ†oˆã DÃâ¬]z¶zלìEÏD»­Ö›ç§+¬Ë¤{=*˜I÷ÏùÅæãš#öì[œ//æ‹+ÝsK²ò5ñÜ…ï­—<Í]ÝñieJy·ß¾ô¶ÄáÑË~W_Qê¾Þg‹”ù†³Î//gØ£¼¢ï­ë¦ùò¸²±“سK$GÝÙ„KµÅën ö4¶ '²-ïÇ–€– ü¨'˜nŠt+رc!4alÁXØSa+¢W¾¬ˆ®¶&ê¦H­’[0^¾ !¥nª•â›æñÍðÍò3«ÑP$³Ü˜o‘oÜYsgÍ9ëÒã0Z³ŠþæøæùÆ5wÖÜ™¸3qg⑉Óîñ¡±¸ÑÕ‹inIL¿p¦”ƒpv(󸡌©w¾”9y-eÈ›Š'Ú«RöX±RÆf¦¡ŒÔÑ—±0½¾Œ…‰u¥o–qsœTÊ +<”1ÕXçZc¤Z¨ZÁâëZAJMµF5µà#µùü¢T\¦T´‚ãÔ òòjAf ZßT -Åj6V ûÅjb­X-@°«Höbµ)_¬(cµKîê8À}GÈN„jý¥PýÍX ÄôñÁXMq «uÅj>=ÙkíöÐZ»®’üØù^aÒIj0Ô8É\—ï\UbáÅñ9K.×N;7µó5J·á¼î/ñ.ÊÌÛ2óŠA¸m²¤CŠ'Éç>Aï$¥¡W–@]Y‚Ô$ü¢¯•¶-Ž`ãúŽÈÑàRm™ÞˆôÏ04C[i ˆ!uéÚhÌ"u }™Èö×ÞܾÜßO Šå )†ª˜e€wˆDÌÀ—/èiÀB._™H0êø €‘/‡>ЈáFTuè¨s£~\ȹpŒ†2ÅàÂ/ºt> »—rpÆB\è|ˆúÂÁ¼™"¢O¾ÐÑKR"¾ùãŒÃ7s*ÍŒ<‚\#ÜãÓYUpK— 6Ù|<”ù@²”!S0BJþ°´-ÚVzB„n‹˜ããÖ‚’XVm‹2>¨,‰/fò#u1q >º,6z~2fàÌ2&–š‰£ò¦u$>å?b9SùêE… +@Q¡Ã h E(Äš3ÅÝû1€JNªƒy«È ÿ6ÊT”fÙv«üDªCŠûAƒ‘p Dû¶–“ÌÛþn24åL$—à:Œ“ý£õ.ðŠùÏ$’D(Tž¡¯ý°¾`Q ÝXTC7ÕÐ ÓF5tóý› #`Õä«&ï X5ygÀŠm€Û-¶ZÚ ÐÒV€–¨¬dZÀJ¶¬äZÀJ¾¬ZÀJ±¬Ôždj2Hµg¤Úà Ríi©ö8ƒ”k‹†°ù 'Ò~0¥”­áÔPÞ, ’Ê>¯ì^шW%äñª„ ^ ±'ãmU‡#'ïí]Õï¶´6ùNVÚ­€ä(äÝýé‡@̃u³€^¹òC©jl_BìFÛFš ³'öß½¦ª=k:šrò.l“äcËæ+àoLÆi/…ÇnG8àš`l}P±Søœ¨3t·m â$¶Á}f¹{Š“¼ŸôaÐâl®iô#~q× V>Ö¥µøÕ š=ó»?jL™©æQŒg5b«Y”ãךŠLÕ´ÒóËF~7jÓJjÓJjÓJ¢6°¢&­tü¦FƒEÔ¤•ÜÏ6èCcZ™_kS9¢6•£1­„vÒÊ/À”¸ùj4”÷0Åp‘: *îС'• x• 7 2Äà *Ø}–°ÿ<42¾pì‘dj[óf†+¥^røy^8Y#‰ô¹ÿÓd ù¤õ\Ø?x;ºGÍ@†Êž¶G9ðj6:X¸˜b{Oæ#±{à Ç{36¨ž9ðªG¼l›‹mÿ« kÚ dmCßd]»¬o Û†vÙØn Ûž~S-E'ëÛÿϯùú[þ“}Òýc~±®o– ïôãíüGüãíæz¾à¾yˆÁzÞ¢ M¯ÕÖŽóÍõLäy* Ö ñSÉ߬f¿ ½}8Ów5µ«:Òu˜øŸmí÷Õ¤¢ÅQb[%wØâª)w+ÉcÛ1 sûèÅòü›w›éjóXô/]ίnW3~¯®÷ ñèëÂõ‡:=½ uƒúðûðØ_¸OÏ@²×óOóÍέäÙ®iÍ ~fK/¶[0xŸßm½‚Ö3N;v£³¬C÷G}ÚŸ_=½ßö¶ÿ‹Ùš_Ätqß·ŸO7ÓëåÕ¤wòú IñÜf­òãS9S`ñï—³îçõltóof‹þõ¡ë`ÿþ~r0 endstream endobj 262 0 obj << /Type /XRef /Index [0 263] /Size 263 /W [1 3 1] /Root 260 0 R /Info 261 0 R /ID [<469C1975548C89295011D5F460D69A58> <469C1975548C89295011D5F460D69A58>] /Length 769 /Filter /FlateDecode >> stream xÚÔgtOwÇñß÷/‰ I$TdÈ2$!ˆ¨Mc´FQjµ‚cÔ&Ñ‘J¬Ö>9ú@ûˆ‡£#Bµf‘ÔjQêØ£F[}î“×¹ÿÿïw÷»îuι×>ç|Îlí.§«(Q(LøDÑM4~¢…(þ"@Ä‹®¢¡A"X„ˆF"T„‰psAõÞs£Í¹p缾ˆy"[DŠö¢HE3#ššó{àÐ\¼!Z‰X‘ Zš«Üêm‰3·ÿ?gîÀ]8øªêáÐ×pxü8Ž„ˆ*øé4õûáØj8þ œ¸'÷Á©:8g’àì¨^5Óá×_àÜa8¿.‹ëáÒçðÛlø}9\Þ WvÂÕKðÇ1¸ö\ß êçZ¸™ìå‘(’D²¹[ñ,ÔæA¢¿ øep7î9¸oBI?æÀ_åP_ÏÓ ðt.<;σáÅx)^UÂ?Ûáßãðz,ããjÀGÖ øMÿRø þ›!èß‚RµFú/ô „} á« ñ|ˆ .I?,ªšìè3ДjX³mМ0¬…Ä´µ\±½!nÄSqK¸‰‰^­Z‹T‘f–´’…dÅÒz¤†CÚ hC¬í÷~Úý 1YY!{)t9º-WIçAÇXèùùЙ9°.Qе * Û5(ÜÝŸAþ^hmEºhgÖs ½é‘õa¬ï4è§Í²à­uPt¥Àày0D%y‡^ÚP%3,GÐ_‘ïfÃH2êý-¼wƨBï+·q[a‚6OÔ§`R|èóBË™"Ëlr. Å¡0EužÊ䨴;0Y³}aæ$˜ÅÀÙGÃ`v$ÌÉ€¹oÃ<Å2?DÃÂtXT‹UÄ%SºÑ{n‘#rÍ–ðÒÙÇL§}r>e¼¶´Ê5p°LÇ/_+nÂʧð…¾üÙ;´£è$òEÑ]¼)zˆž¢—Ùš)ܶ%Óý0ÄÔ endstream endobj startxref 105519 %%EOF gbutils-5.7.1/gbker.10000644000175000017500000000454113246755335011313 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBKER "1" "March 2018" "gbker 5.7.1" "User Commands" .SH NAME gbker \- Produce kernel density estimation .SH SYNOPSIS .B gbker [\fI\,options\/\fR] .SH DESCRIPTION Compute the kernel density estimation on an equispaced grid. Data are read from standard input. The kernel bandwidth, if not provided with the option \fB\-H\fR, is set automatically using simple heuristics. Normally the whole support is displayed. The option \fB\-w\fR can be used to restrict the computation to specific range of values. The method used to compute the density is set by the option \fB\-M\fR. The boundaries of the grid are slightly different in the different cases. .SH OPTIONS .TP \fB\-n\fR number of equispaced points/bins where the density is computed (default 64) .TP \fB\-w\fR set the grid boundaries with min,max (default whole support) .TP \fB\-H\fR set the kernel bandwidth .TP \fB\-S\fR scale the automatic kernel bandwidth .TP \fB\-K\fR choose the kernel to use (default 0) .TP 0 Epanenchnikov .TP 1 Rectangular .TP 2 Gaussian .TP 3 Laplacian .TP \fB\-M\fR choose the method for density computation (default 0) .TP 0 use FFT (# grid points rounded to nearest power of 2) .TP 1 use discrete convolution (compact kernels only; bins>2) .TP 2 explicit summation (boundaries excluded) .TP \fB\-F\fR specify the input fields separators (default " \et") .SH EXAMPLES .TP gbker \-n 128 \-K 2 < file use a Gaussian kernel to compute the density on 128 equispaced points with the FFT approach. All the data in 'file' are used, multiple columns are pooled. .TP gbker \-K 3 \-M 2 < file use a Laplacian kernel to compute the density on 64 points. The method used is the explicit summation. .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/gbhisto2d.10000644000175000017500000000403613246755334012104 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBHISTO2D "1" "March 2018" "gbhisto2d 5.7.1" "User Commands" .SH NAME gbhisto2d \- Produce 2D histogram from data .SH SYNOPSIS .B gbhisto2d [\fI\,options\/\fR] .SH DESCRIPTION 2D histogram on a regular grid. Data are read from standard input as couples (X,Y). If data are treated as continuous, equispaced bins are built and their center coordinates together with the required statistics are printed. For discrete variables, bins are built directly from the given variables. .SS "Options :" .TP \fB\-M\fR choose the statistics to print for each bin (default 0) .TP 0 occurrences number for continuous binned variables (*) .TP 1 relative frequency for continuous binned variables (*) .TP 2 empirical density for continuous binned variables (*) .TP 3 occurrences number for discrete symmetric variables (bins{X}=bins{Y}) .TP 4 relative frequency for discrete symmetric variables (bins{X}=bins{Y}) .TP 5 transition matrix (X=>Y) .TP 6 occurrences number for discrete asymmetric variables .TP 7 relative frequency for discrete asymmetric variables .TP \fB\-n\fR number of equispaced bins where the histogram is computed. For output marked with (*), use comma ',' to specify different values for x and y coordinates. (default 10) .TP \fB\-v\fR verbose mode .TP \fB\-F\fR specify the input fields separators (default " \et") .TP \fB\-h\fR this help .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/gbnlprobit.10000644000175000017500000000664313246755335012370 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBNLPROBIT "1" "March 2018" "gbnlprobit 5.7.1" "User Commands" .SH NAME gbnlprobit \- Non linear probit regression .SH SYNOPSIS .B gbnlprobit [\fI\,options\/\fR] \fI\,\/\fR .SH DESCRIPTION Non linear probit estimation. Minimize the negative log\-likelihood .IP sum_{i in N_0} log(1\-F(g(X_i))) + sum_{i in N_1} log(F(g(X_i))) .PP where N_0 and N_1 are the sets of 0 and 1 observations, g is a generic function of the independent variables and F is the normal CDF. It is also possible to minimize the score function .PP w_0 sum_{i in N_0} theta(F(g(X_i))\-t) + .IP w_1 sum_{i in N_1} theta(t\-F(g(X_i))) .PP where theta is the Heaviside function and t a threshold level. Weights w_0 and w_1 scale the contribution of the two subpopulations. The first column of data contains 0/1 entries. Successive columns are independent variables. The model is specified by a function g(x1,x2...) where x1,.. stands for the first,second .. N\-th column independent variables. .SS "options:" .TP \fB\-O\fR type of output (default 0) .TP 0 parameters .TP 1 parameters and errors .TP 2 and probabilities .TP 3 parameters and variance matrix .TP 4 marginal effects .TP \fB\-V\fR variance matrix estimation (default 0) .TP 0 .TP 1 < J^{\-1} > .TP 2 < H^{\-1} > .TP 3 < H^{\-1} J H^{\-1} > .TP \fB\-z\fR take zscore (not of 0/1 dummies) .TP \fB\-F\fR input fields separators (default " \et") .TP \fB\-v\fR verbosity level (default 0) .TP 0 just results .TP 1 comment headers .TP 2 summary statistics .TP 3 covariance matrix .TP 4 minimization steps (default 10) .TP 5 model definition .TP \fB\-g\fR set number of point for global optimal threshold identification .TP \fB\-h\fR this help .TP \fB\-t\fR set threshold value (default 0) .TP 0 ignore threshold .TP (0,1) user provided threshold .TP 1 compute optimal only global .TP 2 compute optimal .TP \fB\-M\fR estimation method .TP 0 maximum likelihood .TP 1 min. score (w0=w1=1) .TP 2 min. score (w0=1/N0, w1=1/N1) .TP \fB\-A\fR MLL optimization options (default 0.01,0.1,100,1e\-6,1e\-6,5) fields are step,tol,iter,eps,msize,algo. Empty fields for default .TP step initial step size of the searching algorithm .TP tol line search tolerance iter: maximum number of iterations .TP eps gradient tolerance : stopping criteria ||gradient|| .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/gbboot.10000644000175000017500000000347613246755335011503 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBBOOT "1" "March 2018" "gbboot 5.7.1" "User Commands" .SH NAME gbboot \- Bootstrap user provided data .SH SYNOPSIS .B gbboot [\fI\,options\/\fR] .SH DESCRIPTION Data bootstrap. Random sampling with replacement or addition of noise. In the last case the option \fB\-n\fR set the number of times the entire sample is printed with a random noise added. The noise is uniformly distributed around zero with semi\-width equal to the minimal positive distance between consecutives observations times a fraction set with option .SH OPTIONS .TP \fB\-n\fR set the number of deviates (default =sample size) .TP \fB\-O\fR type of output (default 0): .TP 0 flatten input in one distribution .TP 1 multivariate output: rows with independent columns .TP 2 multivariate output: rows with fixed columns .TP 3 flatten and smoothed (EDF linear interpolation) .TP 4 add noise to data .TP 5 multivariate output: rows with fixed blocks .TP \fB\-e\fR noise term ( default .5) .TP \fB\-R\fR set the rng seed (default 0) .TP \fB\-F\fR specify the input fields separators (default " \et") .TP \fB\-h\fR print this help .TP \fB\-v\fR verbose mode .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/gbmstat.10000644000175000017500000000256013246755335011661 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBMSTAT "1" "March 2018" "gbmstat 5.7.1" "User Commands" .SH NAME gbmstat \- Computing statistics in a moving windows .SH SYNOPSIS .B gbmstat [\fI\,options\/\fR] .SH DESCRIPTION Compute moving average. Data are read from standard input. .SH OPTIONS .TP \fB\-s\fR number of steps to average (default 10) .TP \fB\-t\fR compute average for each column of input .TP \fB\-D\fR ignore NAN entries in computation .TP \fB\-O\fR set the output, comma separated list of mean, adev, std, var, skew, kurt, min ,max and nonan (default mean). nonan works only with option \fB\-D\fR .TP \fB\-F\fR specify the input fields separators (default " \et") .TP \fB\-h\fR this help .SH AUTHOR Written by Giulio Bottazzi .SH "REPORTING BUGS" Report bugs to .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/tools.h0000644000175000017500000001454713152231511011434 00000000000000#ifndef GBUTILS_H #define GBUTILS_H 1 /*insert GNU extensions*/ #define _GNU_SOURCE /*in particular, use of NAN extension*/ /* gnulib headers */ #include "lib/getdelim.h" #include "lib/getline.h" #include "lib/getsubopt.h" #include "lib/strchrnul.h" /* -------------- */ #include #include #include #include #include #include #include #include #include #include #include #include #include "config.h" #if defined HAVE_LIBGSL #include #endif #if defined HAVE_LIBZ #include #include #include #endif #if defined HAVE_LIBZ #define GBFILEP gzFile #define GBGETLINE gzgetline #define GBFDOPEN gzdopen #define GBCLOSE gzclose #define GBTELL gztell #else #define GBFILEP FILE * #define GBGETLINE getline #define GBFDOPEN fdopen #define GBCLOSE fclose #define GBTELL ftell #endif /* used by */ /* extern int errno; */ extern char *GB_PROGNAME; void initialize_program(const char *); void finalize_program(); /* variables for reading command line options */ /* ------------------------------------------ */ /* extern char *optarg; */ /* extern int optind, opterr, optopt; */ /* ------------------------------------------ */ /* long options */ extern struct option gb_long_options[]; extern int gb_option_index; /* Output Management */ extern char *FLOAT,*FLOAT_SEP,*FLOAT_NL; extern char *EMPTY,*EMPTY_SEP,*EMPTY_NL; extern char *INT,*INT_SEP,*INT_NL; extern char *SEP,*NL; void printline(FILE *,double *,const size_t); void printmatrixbyrows(FILE *,double **,const size_t,const size_t); void printmatrixbycols(FILE *,double **,const size_t,const size_t); void printnomatrixbycols(FILE *,double **,size_t *,const size_t); void printcol(FILE *,double *,const size_t); void printmatrixbycols_bin(FILE *,double **,const size_t,const size_t); void printnomatrixbycols_bin(FILE *,double **,size_t *,const size_t); void printcol_bin(FILE *,double *,const size_t); /* ----------------- */ /* Input Management */ extern char GBTHSEP; extern char GBRADIX; double mystrtod(const char *); /* ---------------- */ void *my_alloc(size_t); void *my_calloc(size_t,size_t); void *my_realloc(void *,size_t); char *my_strndup(const char *, size_t); int blocks_count(long **,size_t *,int); /* Data loading functions */ int load(double **,size_t *,int,const char*); int loadtable(double ***,size_t *,size_t *,int,const char*); int loadblocks(double ****,size_t *,size_t **,size_t **,int,const char *); int loadtableblocks(double ****,size_t *,size_t *,size_t *,int, const char *); double ** readblock(size_t *,size_t *,unsigned *,GBFILEP, const char *); int load2(double ***,size_t *,int,const char*); int load3(double ***,size_t *,int,const char*); int load_bin(double **,size_t *,int); int loadtable_bin(double ***,size_t *,size_t *,int); int loadblocks_bin(double ****,size_t *,size_t **,size_t **,int); /* ---------------------- */ /* pointer to data printing function */ extern void (* PRINTMATRIXBYCOLS) (FILE *,double **,const size_t,const size_t); extern void (* PRINTMATRIXBYROWS) (FILE *,double **,const size_t,const size_t); extern void (* PRINTNOMATRIXBYCOLS) (FILE *,double **,size_t *,const size_t); extern void (* PRINTCOL) (FILE *,double *,const size_t); /* -------------------------------- */ int sort_by_value(const void *, const void *); void moment(const double [], const size_t, double *, double *, double *, double *, double *, double *, double *,double *); void moment_nonan(const double [], const size_t, double *, double *, double *, double *, double *, double *, double *, double *, double *); void moment_short(const double [], const size_t, double *, double *,double *,double *); void moment_short2(double **, const size_t, double *, double *,double *, double *,double *); void moment_short3(double **, const size_t, double *, double *,double *, double *,double *); void gbutils_header(char const *,FILE *); void moment_short_nonan(const double [], const size_t, double *, double *,double *,double *, double *); void denan(double **,size_t *); void denan_pairs(double **,double **,size_t *); void denan_data(double ***,size_t *,size_t *); int sort2(double *, double *, long int, long int); int sortn(double **, const long int, const long int, const long int, const long int); /* -------------------------------------- */ /* for cygwin portability */ #ifndef NAN #define NAN nan("") #endif /* -------------------------------------- */ /* getline if zlib present */ #if defined HAVE_LIBZ #define GETNLINE_NO_LIMIT ((size_t) -1) /* Read into a buffer *LINEPTR returned from malloc (or NULL), pointing to *LINESIZE bytes of space. Store the input bytes starting at *LINEPTR + OFFSET, and null-terminate them. Reallocate the buffer as necessary, but if NMAX is not GETNLINE_NO_LIMIT then do not allocate more than NMAX bytes; if the line is longer than that, read and discard the extra bytes. Stop reading after after the first occurrence of DELIM1 or DELIM2, whichever comes first; a delimiter equal to EOF stands for no delimiter. Read the input bytes from STREAM. Return the number of bytes read and stored at *LINEPTR + OFFSET (not including the NUL terminator), or -1 on error or EOF. */ extern ssize_t gzgetndelim2 (char **lineptr, size_t *linesize, size_t offset, size_t nmax, int delim1, int delim2, gzFile stream); extern ssize_t gzgetline (char **_lineptr, size_t *_linesize, gzFile _stream); extern ssize_t gzgetdelim (char **_lineptr, size_t *_linesize, int _delimiter, gzFile _stream); #endif /* utility functions for kernel analysis */ extern const double Krectangular_K2; extern const double Klaplace_K2; extern const double Kgauss_K2; extern const double Kepanechnikov_K2; double nearbyint(double); /* for some strange reason this seems required */ double Krectangular(double); double Krectangular_tilde(double); double Klaplace(double); double Klaplace_tilde(double); double Kgauss(double); double Kgauss_tilde(double); double Kepanechnikov(double); double Kepanechnikov_tilde(double); double Krectangular2d(double); double Kepanechnikov2d(double); double Ksilverman2d_1(double); double Ksilverman2d_2(double); /* end GBUTILS_H */ #endif gbutils-5.7.1/gbglreg.c0000644000175000017500000004465513246754720011723 00000000000000/* gbglreg (ver. 5.6) -- Estimate general linear regression model Copyright (C) 2005-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "tools.h" #include #include #include #include #include #include #include void print_glinear_verbose(FILE *file,const int o_weight,const int o_model, const size_t N, const gsl_vector * coeffs, const gsl_matrix * cov,const double sumsq) { size_t i,j; const size_t K = coeffs->size; fprintf(file,"\n"); fprintf(file," ------------------------------------------------------------\n"); fprintf(stderr," number of observations = %zd\n",N); fprintf(stderr," number of indep. variables = %zd\n",K); fprintf(file,"\n"); fprintf(stderr," model (C[i]: i-th column; ci: i-th coefficient; eps: residual;):\n\n"); fprintf(stderr," C[%zd] ~ ",K+1); for(i=0;iSSR | ndf) = %e\n", gsl_cdf_chisq_Q (sumsq,(N-K))); } else{ fprintf(file," sum of weighted squared residual (WSSR) = %f\n",sumsq); fprintf(file," number degrees of freedom (ndf) = %zd\n",N-K); fprintf(file," sqrt(WSSR/ndf) = %f\n",sqrt(sumsq/(N-K))); fprintf(file," chi-square test P(>WSSR | ndf) = %e\n", gsl_cdf_chisq_Q (sumsq,(N-K))); } fprintf(file," ------------------------------------------------------------\n"); /* Normal approximation to chi^2 */ /* fprintf(file," chisq. test Q(ndf/2,WSSR/2) = %e\n", */ /* gsl_cdf_gaussian_Q(sumsq-(size-cov->size1),sqrt(2*(size-cov->size1)))); */ fprintf(file,"\n"); fprintf(file," ------------------------------------------------------------\n"); fprintf(file,"\n"); for(i=0;isize;j++) fprintf(file,"%+f ", gsl_matrix_get(cov,i,j)/sqrt(gsl_matrix_get(cov,i,i)*gsl_matrix_get(cov,j,j))); fprintf(file,"|\n"); } fprintf(file," ------------------------------------------------------------\n"); fprintf(file,"\n"); } void hccs(gsl_vector *Y,gsl_matrix *X,gsl_vector *C,gsl_matrix *COV,int o_covtype) { size_t i,j; const size_t rows = Y->size; const size_t columns = COV->size1+1; /* iS = (X^t X)^{-1} */ gsl_matrix * iS = gsl_matrix_alloc (columns-1,columns-1); /* RESidual */ gsl_vector * RES = gsl_vector_alloc (rows); /* HCCV - diagonal */ gsl_vector * PHI = gsl_vector_alloc (rows); {/* iS = (X^t X)^{-1} */ gsl_matrix * S = gsl_matrix_alloc (columns-1,columns-1); gsl_permutation * P = gsl_permutation_alloc (columns-1); int signum; /* S = X^t X */ gsl_blas_dgemm (CblasTrans,CblasNoTrans,1.0,X,X,0.0,S); /* iS = S^{-1} */ gsl_linalg_LU_decomp (S,P,&signum); gsl_linalg_LU_invert (S,P,iS); gsl_permutation_free(P); gsl_matrix_free(S); } /* RES=Y-XC */ gsl_vector_memcpy (RES,Y); gsl_blas_dgemv (CblasNoTrans,-1.0,X,C,1.0,RES); switch(o_covtype ){ case 1: /* PHI_i = RES_i^2 */ { gsl_vector_memcpy (PHI,RES); gsl_vector_mul (PHI,RES); } break; case 2: /* PHI_i = N/(N-K) RES_i^2 */ { gsl_vector_memcpy (PHI,RES); gsl_vector_mul (PHI,RES); gsl_vector_scale (PHI,rows/(rows-columns+1)); } break; case 3: /* PHI_i = RES_i^2/(1-H_i) */ { for(i=0;i4){ fprintf(stderr,"ERROR (%s): output option '%d' not recognized. Try option -h.\n", GB_PROGNAME,o_output); exit(-1); } } else if(opt=='w'){ /* set third columns as weight */ o_weight = 1; } else if(opt=='V'){ /* set the type of covariance */ o_covtype = atoi(optarg); if(o_covtype<0 || o_covtype>4){ fprintf(stderr,"ERROR (%s): variance option '%d' not recognized. Try option -h.\n", GB_PROGNAME,o_covtype); exit(-1); } } else if(opt=='v'){ /* set verbosity level*/ o_verbose = atoi(optarg); } else if(opt=='h'){ /* print short help */ fprintf(stdout,"General Linear regression. Data are read in columns (X_1 .. X_N Y). The\n"); fprintf(stdout,"last column contains the dependent observations. With option -w standard\n"); fprintf(stdout,"errors associated with the observations can be provided. In this case data\n"); fprintf(stdout,"are read as (X_1...X_N,Y,std(Y)).\n"); fprintf(stdout,"\nUsage: %s [options]\n\n",argv[0]); fprintf(stdout,"Options:\n"); fprintf(stdout," -M the regression model (default 1)\n"); fprintf(stdout," 0 with estimated intercept\n"); fprintf(stdout," 1 with zero intercept \n"); fprintf(stdout," -w consider standard errors \n"); fprintf(stdout," -O the type of output (default 0) \n"); fprintf(stdout," 0 regression coefficients \n"); fprintf(stdout," 1 regression coefficients and errors\n"); fprintf(stdout," 2 x, fitted y, error on y, residual\n"); fprintf(stdout," 3 coefficients and variance matrix\n"); fprintf(stdout," 4 coefficients and explained variance\n"); fprintf(stdout," -V method to estimate variance matrix (default 0)\n"); fprintf(stdout," 0 ordinary least square estimator \n"); fprintf(stdout," 1 heteroscedastic consistent White estimator \n"); fprintf(stdout," 2 Hinkley adjusted White estimator \n"); fprintf(stdout," 3 Horn-Horn-Duncan adjusted White estimator \n"); fprintf(stdout," 4 jacknife estimator \n"); fprintf(stdout," -v verbosity level (default 0)\n"); fprintf(stdout," 0 just output \n"); fprintf(stdout," 1 commented headings \n"); fprintf(stdout," 2 model details \n"); fprintf(stdout," -h print this help \n"); fprintf(stdout," -F specify the input fields separators (default \" \\t\")\n"); exit(0); } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); /* load data */ loadtable(&data,&rows,&columns,0,splitstring); /* set the method to use and initialize variables */ N = rows; switch(o_model){ case 0: if(o_weight) K = columns-1; else K = columns; break; case 1: if(o_weight) K = columns-2; else K = columns-1; break; default: fprintf(stderr,"ERROR (%s): unrecognized model:%d\n", GB_PROGNAME,o_model); exit(-1); break; } /* allocate workspace */ WORK = gsl_multifit_linear_alloc (N,K); /* allocate imput variables */ X = gsl_matrix_alloc (N,K); Y = gsl_vector_alloc (N); /* allocate output variable */ C = gsl_vector_alloc (K); COV = gsl_matrix_alloc (K,K); /* allocate weights */ if(o_weight) W = gsl_vector_alloc (N); /* initialize input variables */ if(o_weight){ size_t i,j; for(i=0;i 0) hccs(Y,X,C,COV,o_covtype); /* ++++++++++++++++++++++++++++++++++++++++ */ /* in case, print verbose output */ if(o_verbose>1) print_glinear_verbose(stdout,o_weight,o_model,N,C,COV,CHISQ); /* ++++++++++++++++++++++++++++++++++++++++ */ /* output */ switch(o_output){ case 0: { size_t i; /* ++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose>0){ fprintf(stdout,"#"); for(i=0;isize;i++){ char *label; int length; length = snprintf(NULL,0,"c%zd",i+1); label = (char *) my_alloc((length+1)*sizeof(char)); snprintf(label,length+1,"c%zd",i+1); fprintf(stdout,EMPTY_SEP,label); free(label); } fprintf(stdout,"\n"); } /* ++++++++++++++++++++++++++++++++++++++++ */ for(i=0;isize;i++) fprintf(stdout,FLOAT_SEP,gsl_vector_get(C,i)); fprintf (stdout,"\n"); } break; case 1: { size_t i; /* ++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose>0){ fprintf(stdout,"#"); for(i=0;isize;i++){ char *label; int length; length = snprintf(NULL,0,"c%zd",i+1); label = (char *) my_alloc((length+1)*sizeof(char)); snprintf(label,length+1,"c%zd",i+1); fprintf(stdout,EMPTY_SEP,label); free(label); fprintf(stdout,EMPTY_SEP,"+/-"); } fprintf(stdout,"\n"); } /* ++++++++++++++++++++++++++++++++++++++++ */ for(i=0;isize;i++){ fprintf(stdout,FLOAT_SEP,gsl_vector_get(C,i)); fprintf(stdout,FLOAT_SEP,sqrt(gsl_matrix_get(COV,i,i))); } fprintf(stdout,"\n"); } break; case 2: { size_t i,j; gsl_vector * RES = gsl_vector_alloc (N); gsl_vector * YERR = gsl_vector_alloc (N); /* compute residuals: RES=Y-XC */ gsl_vector_memcpy (RES,Y); gsl_blas_dgemv (CblasNoTrans,-1.0,X,C,1.0,RES); /* compute errors YERR_n = \sum_{h,k} X_{n,h} X_{n,k} COV_{h,k} */ { gsl_matrix * MTMP = gsl_matrix_alloc (N,K); /* MTMP=X COV */ gsl_blas_dgemm (CblasNoTrans,CblasNoTrans,1.0,X,COV,0.0,MTMP); /* YERR_n = \sum_h MTMP_{n,h} X_{n,h} */ for(i=0;i0){ fprintf(stdout,"#"); for(i=0;isize;i++){ char *label; int length; length = snprintf(NULL,0,"c%zd",i+1); label = (char *) my_alloc((length+1)*sizeof(char)); snprintf(label,length+1,"c%zd",i+1); fprintf(stdout,EMPTY_SEP,label); free(label); fprintf(stdout,EMPTY_SEP,"+/-"); } fprintf(stdout,"\n"); for(i=0;isize;i++){ fprintf(stdout,FLOAT_SEP,gsl_vector_get(C,i)); fprintf(stdout,FLOAT_SEP,sqrt(gsl_matrix_get(COV,i,i))); } fprintf(stdout,"\n"); } /* ++++++++++++++++++++++++++++++++++++++++ */ for(i=0;i0){ fprintf(stdout,"#"); for(i=0;isize;i++){ char *label; int length; length = snprintf(NULL,0,"c%zd",i+1); label = (char *) my_alloc((length+1)*sizeof(char)); snprintf(label,length+1,"c%zd",i+1); fprintf(stdout,EMPTY_SEP,label); free(label); } fprintf(stdout,"\n"); } /* ++++++++++++++++++++++++++++++++++++++++ */ for(i=0;isize;i++) fprintf(stdout,FLOAT_SEP,gsl_vector_get(C,i)); fprintf(stdout,"\n\n\n"); for(i=0;isize;i++){ for(j=0;jsize;j++) fprintf(stdout,FLOAT_SEP,gsl_matrix_get(COV,i,j)); fprintf(stdout,"\n"); } } break; case 4: { size_t i,j; const double YVAR= gsl_stats_tss(Y->data,Y->stride,Y->size)/N; /* variance of dependent variable */ const double RESVAR=CHISQ/N; /* variance of residuals */ /* compute the varcovar matrix of regressors */ /* XVAR_{i,j} = 1/(N-1) \sum_n (X_{n,i}-X_i) (X_{n,j}-X_j) with X_i = 1/N \sum_n X_{n,i} */ gsl_matrix *XVAR = gsl_matrix_alloc (K,K); for (i = 0; i < XVAR->size1; i++) { for (j = 0; j <= i; j++) { const gsl_vector_view tmp1 = gsl_matrix_column (X, i); const gsl_vector_view tmp2 = gsl_matrix_column (X, j); const double dtmp1 = gsl_stats_covariance (tmp1.vector.data, tmp1.vector.stride, tmp2.vector.data, tmp2.vector.stride, tmp1.vector.size); gsl_matrix_set (XVAR, i, j, dtmp1); gsl_matrix_set (XVAR, j, i, dtmp1); } } /* ++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose>0){ fprintf(stdout,"#"); for(i=0;isize;i++){ char *label; int length; length = snprintf(NULL,0,"c%zd",i+1); label = (char *) my_alloc((length+1)*sizeof(char)); snprintf(label,length+1,"c%zd",i+1); fprintf(stdout,EMPTY_SEP,label); free(label); fprintf(stdout,EMPTY_SEP,"expl.var"); } fprintf(stdout,"\n"); } /* ++++++++++++++++++++++++++++++++++++++++ */ for(i=0;isize;i++){ fprintf(stdout,FLOAT_SEP,gsl_vector_get(C,i)); fprintf(stdout,FLOAT_SEP,gsl_matrix_get(XVAR,i,i)*gsl_vector_get(C,i)*gsl_vector_get(C,i)/(YVAR-RESVAR)); } fprintf(stdout,"\n\n\n"); /* print the matrix of s-scores S_{i,j}= C_i C_j XVAR_{i,j}/(YVAR-RESVAR) */ for(i=0;isize1;i++){ for(j=0;jsize2;j++) fprintf(stdout,FLOAT_SEP,gsl_matrix_get(XVAR,i,j)*gsl_vector_get(C,i)*gsl_vector_get(C,j)/(YVAR-RESVAR)); fprintf(stdout,"\n"); } } break; } return 0; } gbutils-5.7.1/gbnlpanel.c0000644000175000017500000016051013246754720012241 00000000000000/* gbnlpanel (ver. 5.6) -- Non-linear panel regression Copyright (C) 2009-2018 Giulio Bottazzi and Davide Pirino This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "tools.h" #include "matheval.h" #include "assert.h" #include "multimin.h" #include #include #include #include #include #include #include #include #include /* handy structure used in computation */ typedef struct function { void *f; size_t argnum; char **argname; void **df; void ***ddf; } Function; struct objdata { Function * F; size_t rows; size_t columns; size_t blocks; double ***data; }; /* Fixed effect object function and variance-covariance */ /* ---------------------------------------------------- */ void obj_fixed_f (const size_t Pnum, const double *x,void *params,double *fval){ const Function *F = ((struct objdata *)params)->F; const size_t rows=((struct objdata *)params)->rows; const size_t columns=((struct objdata *)params)->columns; const size_t blocks=((struct objdata *)params)->blocks; double ***data=((struct objdata *)params)->data; double values[Pnum+blocks]; size_t b,c,r; /* counter for blocks, columns and rows */ size_t nan=0; /* total number of nan */ double trend_f; // sum f over columns (time) and rows (realizations). /* set the parameters */ for(b=blocks;bf,blocks+Pnum,F->argname,values); if(isfinite(dtmp1)){ trend_f +=dtmp1; } else rnan++; } nan+=rnan; } trend_f/=(rows*columns-nan); *fval=0; for(r=0;rf,blocks+Pnum,F->argname,values); if(isfinite(dtmp1)){ rsf+=dtmp1; } else rnan++; } for(c=0;cf,blocks+Pnum,F->argname,values)+trend_f-(rsf/(columns-rnan)); if(isfinite(dtmp1)) *fval+=pow(dtmp1,2); } } *fval/=(rows*columns-nan); } void obj_fixed_df (const size_t Pnum, const double *x,void *params,double *grad){ const Function *F = ((struct objdata *)params)->F; const size_t rows=((struct objdata *)params)->rows; const size_t columns=((struct objdata *)params)->columns; const size_t blocks=((struct objdata *)params)->blocks; double ***data=((struct objdata *)params)->data; double values[Pnum+blocks]; size_t h,b,c,r; /* counter for parameters, blocks, columns and rows */ size_t nan=0; /* total number of nan */ double trend_f; // sum f over columns (time) and rows (realizations). double trend_df[Pnum]; // sum df over columns (time) and rows (realizations). /* set the parameters */ for(b=blocks;bf,blocks+Pnum,F->argname,values); if(isfinite(dtmp1)){ trend_f +=dtmp1; for(h=0;hdf)[h],blocks+Pnum,F->argname,values); trend_df[h]+=dtmp2; } }else rnan++; } nan+=rnan; } trend_f/=(rows*columns-nan); for(h=0;hf,blocks+Pnum,F->argname,values); if(isfinite(dtmp1)){ rsf+=dtmp1; for(h=0;hdf)[h],blocks+Pnum,F->argname,values); rsdf[h]+=dtmp2; } } else rnan++; } for(c=0;cf,blocks+Pnum,F->argname,values)+trend_f-(rsf/(columns-rnan)); if(isfinite(dtmp1)){ for(h=0;hdf)[h],blocks+Pnum,F->argname,values)+trend_df[h]-(rsdf[h]/(columns-rnan)); grad[h]+=dtmp1*dtmp2; } } } } for(h=0;hF; const size_t rows=((struct objdata *)params)->rows; const size_t columns=((struct objdata *)params)->columns; const size_t blocks=((struct objdata *)params)->blocks; double ***data=((struct objdata *)params)->data; double values[Pnum+blocks]; size_t h,b,c,r; /* counter for parameters, blocks, columns and rows */ double trend_f; // sum f over columns (time) and rows (realizations). double trend_df[Pnum]; // sum df over columns (time) and rows (realizations). size_t nan=0; /* initializing grad and trends */ trend_f=0; for(h=0;hf,blocks+Pnum,F->argname,values); if(isfinite(dtmp1)){ trend_f +=dtmp1; for(h=0;hdf)[h],blocks+Pnum,F->argname,values); trend_df[h]+=dtmp2; } } else rnan++; } nan+=rnan; } trend_f/=(rows*columns-nan); for(h=0;hf,blocks+Pnum,F->argname,values); if(isfinite(dtmp1)){ rsf+=dtmp1; for(h=0;hdf)[h],blocks+Pnum,F->argname,values); rsdf[h]+=dtmp2; } } else rnan++; } for(c=0;cf,blocks+Pnum,F->argname,values)+trend_f-(rsf/(columns-rnan)); if(isfinite(dtmp1)){ *f+=pow(dtmp1,2); for(h=0;hdf)[h],blocks+Pnum,F->argname,values)+trend_df[h]-(rsdf[h]/(columns-rnan)); grad[h]+=dtmp1*dtmp2; } } } } *f/=(rows*columns-nan); for(h=0;hf,blocks+Pnum,F->argname,values); if(isfinite(dtmp1)){ trend_f +=dtmp1; for(h=0;hdf)[h],blocks+Pnum,F->argname,values); trend_df[h]+=dtmp2; if(o_varcovar>0){ for(k=0;kddf)[h][k],blocks+Pnum,F->argname,values); trend_ddf[h][k]+=dtmp3; } } } } else rnan++; } nan+=rnan; } if(rows*columns-nan!=0){ trend_f/=(rows*columns-nan); for(h=0;hf,blocks+Pnum,F->argname,values); if(isfinite(dtmp1)){ rsf += dtmp1; rsf2 += pow(dtmp1,2); } else{ rnan++; } } if(columns-rnan!=0) rsf /= (columns-rnan); fixed[r]=rsf-trend_f; for(c=0;cf,blocks+Pnum,F->argname,values); if(isfinite(dtmp1)){ sigma2 += pow(dtmp1-fixed[r],2); } } } if(rows*columns-nan!=0){ sigma2 /= (rows*columns-nan); sigma4 = pow(sigma2,2); } /* ----------------------------------------------------- */ switch(o_varcovar){ case 0: { gsl_permutation * P = gsl_permutation_alloc (Pnum); int signum; gsl_matrix *J = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dJ = gsl_matrix_calloc (Pnum,Pnum); for(r=0;rf,blocks+Pnum,F->argname,values); if(isfinite(dtmp1)){ rsf+=dtmp1; for(k=0;kdf)[k],blocks+Pnum,F->argname,values); rsdf[k]+=dtmp2; } } else rnan++; } for(c=0;cf,blocks+Pnum,F->argname,values)+trend_f-(rsf/(columns-rnan)),2); if(isfinite(dtmp1)){ for(h=0;hdf)[h],blocks+Pnum,F->argname,values)+trend_df[h]-(rsdf[h]/(columns-rnan)); for(k=0;kdf)[k],blocks+Pnum,F->argname,values)+trend_df[k]-(rsdf[k]/(columns-rnan)); gsl_matrix_set(dJ,h,k,dtmp2*dtmp3); } } gsl_matrix_scale (dJ,dtmp1); gsl_matrix_add (J,dJ); } } } gsl_matrix_memcpy (dJ,J); gsl_linalg_LU_decomp (dJ,P,&signum); gsl_linalg_LU_invert (dJ,P,covar); gsl_matrix_free(J); gsl_matrix_free(dJ); gsl_permutation_free(P); gsl_matrix_scale (covar,sigma4); } break; case 1: /* H^{-1} */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); gsl_matrix *H = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dH = gsl_matrix_calloc (Pnum,Pnum); int signum; /* compute hessian */ for(r=0;rdf)[h],blocks+Pnum,F->argname,values); if(isfinite(dtmp1)){ rsdf[h]+=dtmp1; for(k=0;kddf)[h][k],blocks+Pnum,F->argname,values); rsddf[h][k]+=dtmp2; } } } } for(c=0;cf,blocks+Pnum,F->argname,values); if(isfinite(dtmp1)){ for(h=0;hdf)[h],blocks+Pnum,F->argname,values); for(k=0;kdf)[k],blocks+Pnum,F->argname,values); double dtmp4=evaluator_evaluate ((F->ddf)[h][k],blocks+Pnum,F->argname,values); double res=dtmp2*dtmp3; res+=dtmp1*dtmp4; res+=-dtmp2*rsdf[k]/(columns-rnan); res+=-2.0*dtmp1*rsddf[h][k]/(columns-rnan); res+=dtmp2*trend_df[k]; res+=2.0*dtmp1*trend_ddf[h][k]; gsl_matrix_set(dH,k,h,res); } } gsl_matrix_add (H,dH); } } } /* invert Hessian; dH store temporary LU decomp. */ gsl_matrix_memcpy (dH,H); gsl_linalg_LU_decomp (dH,P,&signum); gsl_linalg_LU_invert (dH,P,covar); gsl_matrix_free(H); gsl_matrix_free(dH); gsl_permutation_free(P); gsl_matrix_scale (covar,sigma2); } break; case 2: /* H^{-1} J H^{-1} */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); int signum; gsl_matrix *H = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dH = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *J = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dJ = gsl_matrix_calloc (Pnum,Pnum); size_t h,k; for(r=0;rf,blocks+Pnum,F->argname,values); if(isfinite(dtmp1)){ rsf+=dtmp1; for(h=0;hdf)[h],blocks+Pnum,F->argname,values); rsdf[h]+=dtmp2; for(k=0;kddf)[h][k],blocks+Pnum,F->argname,values); rsddf[h][k]+=dtmp3; } } } else rnan++; } for(c=0;cf,blocks+Pnum,F->argname,values); if(isfinite(dtmp1)){ for(h=0;hdf)[h],blocks+Pnum,F->argname,values); double dtmph=evaluator_evaluate ((F->df)[h],blocks+Pnum,F->argname,values)+trend_df[h]-(rsdf[h]/(columns-rnan)); for(k=0;kdf)[k],blocks+Pnum,F->argname,values); double dtmp4=evaluator_evaluate ((F->ddf)[h][k],blocks+Pnum,F->argname,values); double dtmpk=dtmp3+trend_df[k]-(rsdf[k]/(columns-rnan)); double res=dtmp2*dtmp3; res+=dtmp1*dtmp4; res+=-dtmp2*rsdf[k]/(columns-rnan); res+=-2.0*dtmp1*rsddf[h][k]/(columns-rnan); res+=dtmp2*trend_df[k]; res+=2.0*dtmp1*trend_ddf[h][k]; gsl_matrix_set(dH,k,h,res); gsl_matrix_set(dJ,k,h,dtmph*dtmpk); } } gsl_matrix_scale(dJ,pow(dtmp1+trend_f-(rsf/(columns-rnan)),2.0)); gsl_matrix_add (H,dH); gsl_matrix_add (J,dJ); } } } gsl_matrix_memcpy (dH,H); gsl_linalg_LU_decomp (dH,P,&signum); gsl_linalg_LU_invert (dH,P,H); gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,H,J,0.0,dJ); gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,dJ,H,0.0,covar); gsl_matrix_free(H); gsl_matrix_free(dH); gsl_matrix_free(J); gsl_matrix_free(dJ); gsl_permutation_free(P); } break; case 3: /* J^{-1} */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); int signum; gsl_matrix *J = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dJ = gsl_matrix_calloc (Pnum,Pnum); /* compute information matrix */ for(r=0;rf,blocks+Pnum,F->argname,values)-fixed[r],2); if(isfinite(dtmp1)){ for(h=0;hdf)[h],blocks+Pnum,F->argname,values); for(k=0;kdf)[k],blocks+Pnum,F->argname,values); gsl_matrix_set(dJ,k,h,dtmp1*dtmp2*dtmp3); } } gsl_matrix_add (J,dJ); } } } gsl_matrix_memcpy (dJ,J); gsl_linalg_LU_decomp (dJ,P,&signum); gsl_linalg_LU_invert (dJ,P,covar); gsl_matrix_free(J); gsl_matrix_free(dJ); gsl_permutation_free(P); gsl_matrix_scale (covar,sigma4); } break; case 4: /* H^{-1} */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); gsl_matrix *H = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dH = gsl_matrix_calloc (Pnum,Pnum); int signum; /* compute hessian */ for(r=0;rf,blocks+Pnum,F->argname,values)-fixed[r]; if(isfinite(dtmp1)){ for(h=0;hdf)[h],blocks+Pnum,F->argname,values); for(k=0;kdf)[k],blocks+Pnum,F->argname,values); double dtmp4=evaluator_evaluate((F->ddf)[h][k],blocks+Pnum,F->argname,values); gsl_matrix_set(dH,k,h,dtmp2*dtmp3+dtmp1*dtmp4); } } gsl_matrix_add (H,dH); } } } /* invert Hessian; dH store temporary LU decomp. */ gsl_matrix_memcpy (dH,H); gsl_linalg_LU_decomp (dH,P,&signum); gsl_linalg_LU_invert (dH,P,covar); gsl_matrix_free(H); gsl_matrix_free(dH); gsl_permutation_free(P); gsl_matrix_scale (covar,sigma2); } break; case 5: /* H^{-1} J H^{-1} */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); int signum; gsl_matrix *H = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dH = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *J = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dJ = gsl_matrix_calloc (Pnum,Pnum); /* compute Hessian and information matrix */ for(r=0;rf,blocks+Pnum,F->argname,values)-fixed[r]; if(isfinite(dtmp1)){ for(h=0;hdf)[h],blocks+Pnum,F->argname,values); for(k=0;kdf)[k],blocks+Pnum,F->argname,values); double dtmp4=evaluator_evaluate((F->ddf)[h][k],blocks+Pnum,F->argname,values); gsl_matrix_set(dH,k,h,dtmp2*dtmp3+dtmp1*dtmp4); gsl_matrix_set(dJ,k,h,pow(dtmp1,2)*dtmp2*dtmp3); } } gsl_matrix_add (H,dH); gsl_matrix_add (J,dJ); } } } /* invert Hessian; dH store temporary LU decomp. */ gsl_matrix_memcpy (dH,H); gsl_linalg_LU_decomp (dH,P,&signum); gsl_linalg_LU_invert (dH,P,H); /* dJ = H^{-1} J ; covar = dJ H^{-1} */ gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,H,J,0.0,dJ); gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,dJ,H,0.0,covar); gsl_matrix_free(H); gsl_matrix_free(dH); gsl_matrix_free(J); gsl_matrix_free(dJ); gsl_permutation_free(P); } break; } return covar; } /* ----------------------------------------------------- */ /* Random effect object function and variance-covariance */ /* ----------------------------------------------------- */ void obj_rand_f (const size_t Pnum, const double *x,void *params,double *fval){ const Function *F = ((struct objdata *)params)->F; const size_t rows=((struct objdata *)params)->rows; const size_t columns=((struct objdata *)params)->columns; const size_t blocks=((struct objdata *)params)->blocks; double ***data=((struct objdata *)params)->data; double res=0; double values[Pnum+blocks]; size_t r,b,c; for(b=blocks;bf,blocks+Pnum,F->argname,values); if(isfinite(dtmp5)){ dtmp3 +=dtmp5; dtmp4 +=pow(dtmp5,2); } else{ rnan++; } } nan +=rnan; if (columns-rnan!=0) dtmp1+=dtmp4-pow(dtmp3,2)/(columns-rnan); dtmp2+=pow(dtmp3,2); } dtmp1/=(rows*(columns-1)-nan); dtmp2/=(rows*columns-nan); res=(columns-(double)(nan/rows)-1)*log(dtmp1)+log(dtmp2); res /=(2*(columns-(double)(nan/rows))); *fval=res; } void obj_rand_df (const size_t Pnum, const double *x,void *params,double *grad){ const Function *F = ((struct objdata *)params)->F; const size_t rows=((struct objdata *)params)->rows; const size_t columns=((struct objdata *)params)->columns; const size_t blocks=((struct objdata *)params)->blocks; double ***data=((struct objdata *)params)->data; double values[Pnum+blocks]; double df1[Pnum],df2[Pnum]; size_t k,b,r,c; /* set the parameters */ for(b=blocks;bf,blocks+Pnum,F->argname,values); if (isfinite(dtmp1)){ rsf += dtmp1; rsf2 += dtmp1*dtmp1; for(k=0;kdf)[k],blocks+Pnum,F->argname,values); rsdf[k] += dtmp2; rsfdf[k] += dtmp1*dtmp2; } } } for(c=0;cf,blocks+Pnum,F->argname,values); if (isfinite(dtmp1)){ for(k=0;kF; const size_t rows=((struct objdata *)params)->rows; const size_t columns=((struct objdata *)params)->columns; const size_t blocks=((struct objdata *)params)->blocks; double ***data=((struct objdata *)params)->data; double values[Pnum+blocks]; double df1[Pnum],df2[Pnum]; size_t k,r,b,c; double res; for(b=blocks;bf,blocks+Pnum,F->argname,values); if (isfinite(dtmp1)){ rsf += dtmp1; rsf2 += dtmp1*dtmp1; for(k=0;kdf)[k],blocks+Pnum,F->argname,values); rsdf[k] += dtmp2; rsfdf[k] += dtmp1*dtmp2; } } } for(c=0;cf,blocks+Pnum,F->argname,values); if (isfinite(dtmp1)){ for(k=0;kf,blocks+Pnum,F->argname,values); if (isfinite(dtmp1)){ rsf+=dtmp1; rsf2+=pow(dtmp1,2); } else rnan++; } nan+=rnan; if(columns-rnan>1){ sigma2c+=(pow(rsf,2)-rsf2)/(columns-1-rnan); sigma2+=rsf2-(pow(rsf,2)/(columns-rnan)); } } sigma2c/=(rows*columns-nan); sigma2/=(rows*(columns-1)-nan); size_t Tcorr=columns-(double)(nan/rows); double sigma4=pow(sigma2,2); double ratio=sigma2c/(Tcorr*sigma2c+sigma2); switch(o_varcovar){ case 0: /* J^{-1} */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); int signum; gsl_matrix *J = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dJ = gsl_matrix_calloc (Pnum,Pnum); size_t h,k; for(r=0;rf,blocks+Pnum,F->argname,values); if (isfinite(dtmp1)){ for(k=0;kdf)[k],blocks+Pnum,F->argname,values); } } for(c=0;cf,blocks+Pnum,F->argname,values); if (isfinite(dtmp1)){ for(k=0;kdf)[k],blocks+Pnum,F->argname,values)+ratio*rsdf[k]; for(h=0;hdf)[h],blocks+Pnum,F->argname,values)+ratio*rsdf[h]; double res=dtmp2*dtmp3; gsl_matrix_set(dJ,k,h,res); } } gsl_matrix_scale(dJ,pow(dtmp1,2)); gsl_matrix_add (J,dJ); } } } gsl_matrix_memcpy (dJ,J); gsl_linalg_LU_decomp (dJ,P,&signum); gsl_linalg_LU_invert (dJ,P,covar); gsl_matrix_free(J); gsl_matrix_free(dJ); gsl_permutation_free(P); gsl_matrix_scale (covar,sigma4); } break; case 1: /* H^{-1} */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); gsl_matrix *H = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dH = gsl_matrix_calloc (Pnum,Pnum); int signum; size_t h,k; for(r=0;rf,blocks+Pnum,F->argname,values); if (isfinite(dtmp1)){ for(k=0;kdf)[k],blocks+Pnum,F->argname,values); for(h=0;hddf)[h][k],blocks+Pnum,F->argname,values); } } } } for(c=0;cf,blocks+Pnum,F->argname,values); if (isfinite(dtmp1)){ for(k=0;kdf)[k],blocks+Pnum,F->argname,values); for(h=0;hdf)[h],blocks+Pnum,F->argname,values); double dtmp4=evaluator_evaluate ((F->ddf)[h][k],blocks+Pnum,F->argname,values); double res=dtmp2*dtmp3; res+=dtmp1*dtmp4; res+=ratio*dtmp3*rsdf[k]; res+=ratio*dtmp1*rsddf[h][k]; gsl_matrix_set (dH,k,h,res); } } gsl_matrix_add (H,dH); } } } gsl_matrix_memcpy (dH,H); gsl_linalg_LU_decomp (dH,P,&signum); gsl_linalg_LU_invert (dH,P,covar); gsl_matrix_free(H); gsl_matrix_free(dH); gsl_permutation_free(P); gsl_matrix_scale (covar,sigma2); } break; case 2: /* H^{-1} J H^{-1} */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); int signum; gsl_matrix *H = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dH = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *J = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dJ = gsl_matrix_calloc (Pnum,Pnum); size_t h,k; for(r=0;rf,blocks+Pnum,F->argname,values); if (isfinite(dtmp1)){ for(k=0;kdf)[k],blocks+Pnum,F->argname,values); for(h=0;hddf)[h][k],blocks+Pnum,F->argname,values); } } } } for(c=0;cf,blocks+Pnum,F->argname,values); if (isfinite(dtmp1)){ for(k=0;kdf)[k],blocks+Pnum,F->argname,values); double dtmp3=dtmp2+ratio*rsdf[k]; for(h=0;hdf)[h],blocks+Pnum,F->argname,values); double dtmp5=evaluator_evaluate ((F->ddf)[h][k],blocks+Pnum,F->argname,values); double dtmp6=dtmp4+ratio*rsdf[h]; double res=dtmp2*dtmp4; res+=dtmp1*dtmp5; res+=ratio*dtmp4*rsdf[k]; res+=ratio*dtmp1*rsddf[h][k]; gsl_matrix_set (dJ,k,h,dtmp3*dtmp6); gsl_matrix_set (dH,k,h,res); } } gsl_matrix_scale(dJ,pow(dtmp1,2)); gsl_matrix_add (J,dJ); gsl_matrix_add (H,dH); } } } gsl_matrix_memcpy (dH,H); gsl_linalg_LU_decomp (dH,P,&signum); gsl_linalg_LU_invert (dH,P,H); gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,H,J,0.0,dJ); gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,dJ,H,0.0,covar); gsl_matrix_free(H); gsl_matrix_free(dH); gsl_matrix_free(J); gsl_matrix_free(dJ); gsl_permutation_free(P); } break; case 3: /* J^{-1} */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); int signum; gsl_matrix *J = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dJ = gsl_matrix_calloc (Pnum,Pnum); size_t h,k; for(r=0;rf,blocks+Pnum,F->argname,values); if (isfinite(dtmp1)){ for(k=0;kdf)[k],blocks+Pnum,F->argname,values); } } for(c=0;cf,blocks+Pnum,F->argname,values); if (isfinite(dtmp1)){ for(k=0;kdf)[k],blocks+Pnum,F->argname,values)-ratio*rsdf[k]; for(h=0;hdf)[h],blocks+Pnum,F->argname,values)-ratio*rsdf[h]; double res=dtmp2*dtmp3; gsl_matrix_set(dJ,k,h,res); } } gsl_matrix_scale(dJ,pow(dtmp1,2)); gsl_matrix_add (J,dJ); } } } gsl_matrix_memcpy (dJ,J); gsl_linalg_LU_decomp (dJ,P,&signum); gsl_linalg_LU_invert (dJ,P,covar); gsl_matrix_free(J); gsl_matrix_free(dJ); gsl_permutation_free(P); gsl_matrix_scale (covar,sigma4); } break; case 4: /* H^{-1} */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); gsl_matrix *H = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dH = gsl_matrix_calloc (Pnum,Pnum); int signum; size_t h,k; for(r=0;rf,blocks+Pnum,F->argname,values); if (isfinite(dtmp1)){ for(k=0;kdf)[k],blocks+Pnum,F->argname,values); for(h=0;hddf)[h][k],blocks+Pnum,F->argname,values); } } } } for(c=0;cf,blocks+Pnum,F->argname,values); if (isfinite(dtmp1)){ for(k=0;kdf)[k],blocks+Pnum,F->argname,values); for(h=0;hdf)[h],blocks+Pnum,F->argname,values); double dtmp4=evaluator_evaluate ((F->ddf)[h][k],blocks+Pnum,F->argname,values); double res=dtmp2*dtmp3; res+=dtmp1*dtmp4; res+=-ratio*dtmp3*rsdf[k]; res+=-ratio*dtmp1*rsddf[h][k]; gsl_matrix_set (dH,k,h,res); } } gsl_matrix_add (H,dH); } } } gsl_matrix_memcpy (dH,H); gsl_linalg_LU_decomp (dH,P,&signum); gsl_linalg_LU_invert (dH,P,covar); gsl_matrix_free(H); gsl_matrix_free(dH); gsl_permutation_free(P); gsl_matrix_scale (covar,sigma2); } break; case 5: /* H^{-1} J H^{-1} */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); int signum; gsl_matrix *H = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dH = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *J = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dJ = gsl_matrix_calloc (Pnum,Pnum); size_t h,k; for(r=0;rf,blocks+Pnum,F->argname,values); if (isfinite(dtmp1)){ for(k=0;kdf)[k],blocks+Pnum,F->argname,values); for(h=0;hddf)[h][k],blocks+Pnum,F->argname,values); } } } } for(c=0;cf,blocks+Pnum,F->argname,values); if (isfinite(dtmp1)){ for(k=0;kdf)[k],blocks+Pnum,F->argname,values); double dtmp3=dtmp2-ratio*rsdf[k]; for(h=0;hdf)[h],blocks+Pnum,F->argname,values); double dtmp5=evaluator_evaluate ((F->ddf)[h][k],blocks+Pnum,F->argname,values); double dtmp6=dtmp4-ratio*rsdf[h]; double res=dtmp2*dtmp4; res+=dtmp1*dtmp5; res+=-ratio*dtmp4*rsdf[k]; res+=-ratio*dtmp1*rsddf[h][k]; gsl_matrix_set (dJ,k,h,dtmp3*dtmp6); gsl_matrix_set (dH,k,h,res); } } gsl_matrix_scale(dJ,pow(dtmp1,2)); gsl_matrix_add (J,dJ); gsl_matrix_add (H,dH); } } } gsl_matrix_memcpy (dH,H); gsl_linalg_LU_decomp (dH,P,&signum); gsl_linalg_LU_invert (dH,P,H); gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,H,J,0.0,dJ); gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,dJ,H,0.0,covar); gsl_matrix_free(H); gsl_matrix_free(dH); gsl_matrix_free(J); gsl_matrix_free(dJ); gsl_permutation_free(P); } break; } return covar; } int main(int argc,char* argv[]){ int i; char *splitstring = strdup(" \t"); int o_verbose=0; int o_output=0; int o_varcovar=0; int o_model=0; /* data from sdtin */ size_t rows=0,columns=0,blocks=0; double ***vals=NULL; /* definition of the function */ Function F; char **Param=NULL; double *Pval=NULL; gsl_matrix *Pcovar=NULL; /* covariance matrix */ size_t Pnum=0; double llmin; /* object function parameters */ struct objdata param; /* minimization parameters */ /* step_size,tol,maxiter,epsabs,maxsize,method,verbosity */ struct multimin_params mmparams={0.1,0.1,500,1e-6,1e-6,0}; /* variables for reading command line options */ /* ------------------------------------------ */ int opt; /* ------------------------------------------ */ /* COMMAND LINE PROCESSING */ while((opt=getopt_long(argc,argv,"M:v:hF:O:V:e:A:",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='h'){ /*print help*/ fprintf(stdout,"\ Each row of a block represents a single process realization. Blocks\n\ are separated by two white spaces and represent model variables,\n\ columns represent the time variable. Input is read as\n\ (X1_[r,t],...,Xj_[r,t],... XN_[r,t]), where r is the row, t the\n\ column and j the block. The model assumes that\n\ \n\ FUN(X1_[r,t],...,XN_[t,t]) - c_r = e_{r,t}\n\ \n\ with e i.i.d and 'c' arow specific element, which can be fixed (fixed\n\ effect) or a normal random variable (random effect).\n\ \n"); fprintf(stdout,"\nUsage: %s [options] \n\n",argv[0]); fprintf(stdout,"\ Options:\n\ -M type of model (default 0)\n\ 0 fixed effects\n\ 1 random effects\n\ -O type of output (default 0)\n\ 0 parameters\n\ 1 parameters and errors\n\ 2 and panel statistics\n\ 3 parameters and variance matrix\n\ -V variance matrix estimation (default 0)\n\ 0 < J^{-1} >, computed via fully-reduced log-likelihood\n\ 1 < H^{-1} >, computed via fully-reduced log-likelihood\n\ 2 < H^{-1} J H^{-1} >, computed via fully-reduced log-likelihood\n\ 3 < J^{-1} >, computed via non-reduced log-likelihood\n\ 4 < H^{-1} >, computed via non-reduced log-likelihood\n\ 5 < H^{-1} J H^{-1} >, computed via non-reduced log-likelihood\n\ -v verbosity level (default 0)\n\ 0 just results\n\ 1 comment headers\n\ 2 summary statistics\n\ 3 covariance matrix\n\ 4 minimization steps\n\ 5 model definition\n\ -e minimization tolerance (default 1e-6)\n\ -F input fields separators (default \" \\t\")\n\ -h this help\n\ -A comma separated MLL optimization options:\n\ step,tol,iter,eps,msize,algo. Use empty fields for default.\n\ (default 0.1,0.01,500,1e-6,1e-6,0)\n\ step initial step size of the searching algorithm\n\ tol line search tolerance iter: maximum number of iterations\n\ eps gradient tolerance : stopping criteria ||gradient||0) mmparams.step_size=atof(stmp2); } if( (stmp2=strsep (&stmp1,",")) != NULL){ if(strlen(stmp2)>0) mmparams.tol=atof(stmp2); } if( (stmp2=strsep (&stmp1,",")) != NULL){ if(strlen(stmp2)>0) mmparams.maxiter=(unsigned) atoi(stmp2); } if( (stmp2=strsep (&stmp1,",")) != NULL){ if(strlen(stmp2)>0) mmparams.epsabs=atof(stmp2); } if( (stmp2=strsep (&stmp1,",")) != NULL){ if(strlen(stmp2)>0) mmparams.maxsize=atof(stmp2); } if( (stmp2=strsep (&stmp1,",")) != NULL){ if(strlen(stmp2)>0) mmparams.method= (unsigned) atoi(stmp2); } free(stmp3); } else if(opt=='F'){ /*set the fields separator string*/ free(splitstring); splitstring = strdup(optarg); } else if(opt=='M'){ /* set the type of model */ o_model = atoi(optarg); if(o_model<0 || o_model>1){ fprintf(stderr,"ERROR (%s): model option '%d' not recognized. Try option -h.\n",GB_PROGNAME,o_model); exit(-1); } } else if(opt=='O'){ /* set the type of output */ o_output = atoi(optarg); if(o_output<0 || o_output>3){ fprintf(stderr,"ERROR (%s): output option '%d' not recognized. Try option -h.\n", GB_PROGNAME,o_output); exit(-1); } } else if(opt=='V'){ /* set the type of covariance */ o_varcovar = atoi(optarg); if(o_varcovar<0 || o_varcovar>5){ fprintf(stderr,"ERROR (%s): variance option '%d' not recognized. Try option -h.\n", GB_PROGNAME,o_varcovar); exit(-1); } } else if(opt=='v'){ o_verbose = atoi(optarg); mmparams.verbosity=(o_verbose>2?o_verbose-2:0); } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); /* load data */ loadtableblocks(&vals,&blocks,&rows,&columns,0,splitstring); /* parse line for functions and variables specification */ if(optind == argc){ fprintf(stderr,"ERROR (%s): please provide a function to fit.\n", GB_PROGNAME); exit(-1); } for(i=optind;i0 && strlen(stmp4)>0){ Pnum++; Param=(char **) my_realloc((void *) Param,Pnum*sizeof(char *)); Pval=(double *) my_realloc((void *) Pval,Pnum*sizeof(double)); Param[Pnum-1] = strdup(stmp5); Pval[Pnum-1] = atof(stmp4); } } else{ /* allocate new function */ F.f = evaluator_create (stmp3); assert(F.f); } free(stmp3); } free(piece); } /* check that everything is correct */ if(Pnum==0){ fprintf(stderr,"ERROR (%s): please provide a parameter to estimate.\n", GB_PROGNAME); exit(-1); } { size_t i,j; char **NewParam=NULL; double *NewPval=NULL; size_t NewPnum=0; char **storedname=NULL; size_t storednum=0; /* retrive list of arguments and their number */ /* notice that storedname is not allocated */ { int argnum; evaluator_get_variables (F.f,&storedname,&argnum); storednum = (size_t) argnum; } /* check the definition of the function */ for(i=0;i0?atoi(stmp1+1):0); if(index>blocks){ fprintf(stderr,"ERROR (%s): block %zd not present in data\n", GB_PROGNAME,index); exit(-1); } } else { for(j=0;j0){ F.ddf = (void ***) my_alloc(Pnum*sizeof(void **)); for(i=0;i4){ size_t i,j; fprintf(stderr," ------------------------------------------------------------\n"); fprintf(stderr," Model [xi: i-th data row]:\n"); fprintf(stderr," %s-c ~ i.i.d. N(0,stdev) \n", evaluator_get_string (F.f) ); fprintf (stderr,"\n Parameters and initial conditions:\n"); for(i=0;i0){ fprintf (stderr,"\n Model second derivatives:\n"); for(i=0;i2){ size_t i,j; fprintf(stderr," variance matrix = "); switch(o_varcovar){ case 0: fprintf(stderr,"J^{-1} reduced\n"); break; case 1: fprintf(stderr,"H^{-1} reduced\n"); break; case 2: fprintf(stderr,"H^{-1} J H^{-1} reduced\n"); break; case 3: fprintf(stderr,"J^{-1} non-reduced\n"); break; case 4: fprintf(stderr,"H^{-1} non-reduced\n"); break; case 5: fprintf(stderr,"H^{-1} J H^{-1} non-reduced\n"); break; } fprintf(stderr,"\n"); for(i=0;i0){ fprintf(stdout,"#"); for(i=0;i0){ fprintf(stdout,"#"); for(i=0;i0){ fprintf(stderr,"#"); for(i=0;i1){ sigma2c+=(pow(rsf,2)-rsf2)/(columns-1-rnan); sigma2+=rsf2-(pow(rsf,2)/(columns-rnan)); } } sigma2c/=(rows*columns-nan); sigma2/=(rows*(columns-1)-nan); if (o_verbose>0){ fprintf(stderr,EMPTY_SEP,"#sigma2c"); fprintf(stderr,EMPTY_NL,"#sigma2"); fprintf(stderr,FLOAT_SEP,sigma2c); fprintf(stderr,FLOAT_NL,sigma2); } fprintf(stdout,FLOAT_SEP,sigma2c); fprintf(stdout,FLOAT_NL,sigma2); } } break; case 3: { size_t i; /* +++++++++++++++++++++++++++++++++++ */ if(o_verbose>0){ fprintf(stdout,"#"); for(i=0;i #endif int main(int argc,char* argv[]){ /* default options */ unsigned o_verbose=0; unsigned o_output=0; unsigned o_setn=0; /* default parameters values */ char *splitstring = strdup(" \t"); unsigned n=0; /* number of extractions */ unsigned seed=0; double noise=0.5; /* variables for reading command line options */ /* ------------------------------------------ */ int opt; /* ------------------------------------------ */ while((opt=getopt_long(argc,argv,"vhF:M:O:R:n:e:",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='h'){ /*print help*/ /* print short help */ fprintf(stdout,"Data bootstrap. Random sampling with replacement or addition\n"); fprintf(stdout,"of noise. In the last case the option -n set the number of\n"); fprintf(stdout,"times the entire sample is printed with a random noise added.\n"); fprintf(stdout,"The noise is uniformly distributed around zero with semi-width\n"); fprintf(stdout,"equal to the minimal positive distance between consecutives\n"); fprintf(stdout,"observations times a fraction set with option \n"); fprintf(stdout,"\nUsage: %s [options]\n\n",argv[0]); fprintf(stdout,"Options:\n"); fprintf(stdout," -n set the number of deviates (default =sample size) \n"); fprintf(stdout," -O type of output (default 0): \n"); fprintf(stdout," 0 flatten input in one distribution \n"); fprintf(stdout," 1 multivariate output: rows with independent columns \n"); fprintf(stdout," 2 multivariate output: rows with fixed columns \n"); fprintf(stdout," 3 flatten and smoothed (EDF linear interpolation) \n"); fprintf(stdout," 4 add noise to data \n"); fprintf(stdout," 5 multivariate output: rows with fixed blocks \n"); fprintf(stdout," -e noise term ( default .5) \n"); fprintf(stdout," -R set the rng seed (default 0) \n"); fprintf(stdout," -F specify the input fields separators (default \" \\t\")\n"); fprintf(stdout," -h print this help\n"); fprintf(stdout," -v verbose mode\n"); exit(0); } else if(opt=='F'){ /*set the fields separator string*/ free(splitstring); splitstring = strdup(optarg); } else if(opt=='R'){ /*RNG seed*/ seed = (unsigned) atol(optarg); } else if(opt=='e'){ /*displacement length*/ noise = atof(optarg); } else if(opt=='O'){ /* set the type of output */ o_output = atoi(optarg); } else if(opt=='n'){ /*set the number of generated deviates*/ n=atoi(optarg); o_setn=1; } else if(opt=='v'){ /*set the verbose mode*/ o_verbose=1; } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); /* set the RNG */ srandom(seed); switch(o_output){ case 0: { unsigned j; double *data=NULL; size_t size; load(&data,&size,0,splitstring); /*+++++++++++++++++++++++++++++++++++++++*/ if(o_verbose) fprintf(stdout,"loaded %zd data\n",size); /*+++++++++++++++++++++++++++++++++++++++*/ if(!o_setn) n=size; for(j=0;j0 && dtmp1 < minskip[j] ) minskip[j] = dtmp1; } free(x); } if(!o_setn) n=1; for(i=0;i #include #include #include #include #include #include #include /* handy structure used in computation */ typedef struct function { void *f; size_t argnum; char **argname; void **df; void ***ddf; } Function; struct objdata { Function * F; size_t rows; size_t columns; double theta; double **data; }; /* Quantile estimation */ /* ------------------- */ double qreg_obj_f (const gsl_vector * x, void *params){ const Function *F = ((struct objdata *)params)->F; const size_t rows=((struct objdata *)params)->rows; const size_t columns=((struct objdata *)params)->columns; double **data=((struct objdata *)params)->data; const double theta=((struct objdata *)params)->theta; const size_t pnum = x->size; double values[pnum+columns]; size_t i,j; double sumL=0,sumR=0; /* set the parameter values */ for(i=columns;if,columns+pnum,F->argname,values); if(dtmp1>0) sumR += dtmp1; else sumL += -dtmp1; } sumL/=rows; sumR/=rows; return (1-theta)*sumL+theta*sumR; } /* compute variance-covariance matrix */ gsl_matrix *qreg_varcovar(const int o_varcovar, const gsl_multimin_fminimizer *s, const struct objdata params, const size_t Pnum) { size_t i,j,h; const size_t rows=((struct objdata )params).rows; const size_t columns=((struct objdata )params).columns; double **data=((struct objdata )params).data; const Function *F = ((struct objdata )params).F; const double theta=((struct objdata )params).theta; /* the minimized value */ const double a = s->fval; double values[columns+Pnum]; gsl_matrix *covar = gsl_matrix_alloc (Pnum,Pnum); switch(o_varcovar){ case 0: /* inverse "reduced Hessian", adapted following Numerical Recipes */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); int signum; gsl_matrix *H = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dH = gsl_matrix_calloc (Pnum,Pnum); double df1,df2; /* fill with optimal parameter */ for(i=columns;ix,i-columns); /* compute Hessian */ for(i=0;idf)[j],columns+Pnum,F->argname,values); for(h=0;hdf)[h],columns+Pnum,F->argname,values); gsl_matrix_set (dH,j,h,theta*(1-theta)*df1*df2); } } gsl_matrix_add (H,dH); } /* invert Hessian; dH store temporary LU decomp. */ gsl_matrix_memcpy (dH,H); gsl_linalg_LU_decomp (dH,P,&signum); gsl_linalg_LU_invert (dH,P,covar); gsl_matrix_scale (covar,a*a); gsl_matrix_free(H); gsl_matrix_free(dH); gsl_permutation_free(P); } break; case 1: /* J^{-1} */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); int signum; gsl_matrix *J = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dJ = gsl_matrix_calloc (Pnum,Pnum); double f,df1,df2; /* fill with optimal parameter */ for(i=columns;ix,i-columns); /* compute information matrix */ for(i=0;if,columns+Pnum,F->argname,values); for(j=0;jdf)[j],columns+Pnum,F->argname,values); for(h=0;hdf)[h],columns+Pnum,F->argname,values); gsl_matrix_set (dJ,j,h, df1*df2*(f>0 ? theta*theta : (1-theta)*(1-theta))); } } gsl_matrix_add (J,dJ); } /* invert information matrix; dJ store temporary LU decomp. */ gsl_matrix_memcpy (dJ,J); gsl_linalg_LU_decomp (dJ,P,&signum); gsl_linalg_LU_invert (dJ,P,covar); gsl_matrix_scale (covar,a*a); gsl_matrix_free(J); gsl_matrix_free(dJ); gsl_permutation_free(P); } break; case 2: /* H^{-1} */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); int signum; gsl_matrix *H = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dH = gsl_matrix_calloc (Pnum,Pnum); double f,df1,df2,ddf; /* fill with optimal parameter */ for(i=columns;ix,i-columns); /* compute Hessian */ for(i=0;if,columns+Pnum,F->argname,values); for(j=0;jdf)[j],columns+Pnum,F->argname,values); for(h=0;hdf)[h],columns+Pnum,F->argname,values); ddf = evaluator_evaluate ((F->ddf)[j][h],columns+Pnum,F->argname,values); gsl_matrix_set (dH,j,h,(f>0 ? theta: -(1-theta))*a*ddf +theta*(1-theta)*df1*df2); } } gsl_matrix_add (H,dH); } /* invert Hessian; dH store temporary LU decomp. */ gsl_matrix_memcpy (dH,H); gsl_linalg_LU_decomp (dH,P,&signum); gsl_linalg_LU_invert (dH,P,covar); gsl_matrix_scale (covar,a*a); gsl_matrix_free(H); gsl_matrix_free(dH); gsl_permutation_free(P); } break; case 3: /* H^{-1} J H^{-1} */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); int signum; gsl_matrix *H = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dH = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *J = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dJ = gsl_matrix_calloc (Pnum,Pnum); double f,df1,df2,ddf; /* fill with optimal parameter */ for(i=columns;ix,i-columns); /* compute Hessian and information matrix */ for(i=0;if,columns+Pnum,F->argname,values); for(j=0;jdf)[j],columns+Pnum,F->argname,values); for(h=0;hdf)[h],columns+Pnum,F->argname,values); ddf = evaluator_evaluate ((F->ddf)[j][h],columns+Pnum,F->argname,values); gsl_matrix_set (dH,j,h,(f>0 ? theta: -(1-theta))*a*ddf +theta*(1-theta)*df1*df2); gsl_matrix_set (dJ,j,h, df1*df2*(f>0 ? theta*theta : (1-theta)*(1-theta))); } } gsl_matrix_add (H,dH); gsl_matrix_add (J,dJ); } /* invert Hessian; dH store temporary LU decomp. */ gsl_matrix_memcpy (dH,H); gsl_linalg_LU_decomp (dH,P,&signum); gsl_linalg_LU_invert (dH,P,H); /* dJ = H^{-1} J ; covar = dJ H^{-1} */ gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,H,J,0.0,dJ); gsl_blas_dgemm (CblasNoTrans, CblasNoTrans,1.0,dJ,H,0.0,covar); gsl_matrix_scale (covar,a*a); gsl_matrix_free(H); gsl_matrix_free(dH); gsl_matrix_free(J); gsl_matrix_free(dJ); gsl_permutation_free(P); } break; } return covar; } int main(int argc,char* argv[]){ int i; char *splitstring = strdup(" \t"); int o_verbose=0; int o_output=0; int o_varcovar=0; int o_method=0; /* data from sdtin */ size_t rows=0,columns=0; double **data=NULL; /* definition of the function */ Function F; char **Param=NULL; double *Pval=NULL; gsl_matrix *Pcovar=NULL; /* covariance matrix */ size_t Pnum=0; /* minimization tolerance */ double eps=1e-5; /* initial scaling of simplex size */ double init_scale =1.0; /* max number of steps */ size_t maxsteps = 500; /* quantile */ double theta=0.5; /* variables for reading command line options */ /* ------------------------------------------ */ int opt; /* ------------------------------------------ */ /* COMMAND LINE PROCESSING */ while((opt=getopt_long(argc,argv,"v:hF:O:V:e:q:M:s:",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='h'){ /*print help*/ fprintf(stdout,"Non linear quantile regression. Read data in columns (X_1 .. X_N).\n"); fprintf(stdout,"The model is specified by a function f(x1,x2...) using variables names\n"); fprintf(stdout,"x1,x2,..,xN for the first, second .. N-th column of data. f(x1,x2,...)\n"); fprintf(stdout,"are assumed i.i.d.\n"); fprintf(stdout,"\nUsage: %s [options] \n\n",argv[0]); fprintf(stdout,"Options:\n"); fprintf(stdout," -O type of output (default 0) \n"); fprintf(stdout," 0 parameters \n"); fprintf(stdout," 1 parameters and errors \n"); fprintf(stdout," 2 and residuals \n"); fprintf(stdout," 3 parameters and variance matrix \n"); fprintf(stdout," -V variance matrix estimation (default 0)\n"); fprintf(stdout," 0 \n"); fprintf(stdout," 1 < J^{-1} > \n"); fprintf(stdout," 2 < H^{-1} > \n"); fprintf(stdout," 3 < H^{-1} J H^{-1} > \n"); fprintf(stdout," -q set the quantile (default .5)\n"); fprintf(stdout," -M choose optimization method (default 0) \n"); fprintf(stdout," 0 Nelder-Mead Simplex o(N)\n"); fprintf(stdout," 1 Nelder-Mead Simplex o(N^2)\n"); fprintf(stdout," -s initial simplex scaling (default 1)\n"); fprintf(stdout," -e minimization tolerance (default 1e-5)\n"); fprintf(stdout," -F input fields separators (default \" \\t\")\n"); fprintf(stdout," -h this help \n"); fprintf(stdout," -v verbosity level (default 0)\n"); fprintf(stdout," 0 just results \n"); fprintf(stdout," 1 comment headers \n"); fprintf(stdout," 2 summary statistics \n"); fprintf(stdout," 2 summary statistics \n"); fprintf(stdout," 3 covariance matrix \n"); fprintf(stdout," 4 minimization steps \n"); fprintf(stdout," 5 model definition \n"); fprintf(stdout," -N max minimization steps (default 500) \n"); return(0); } else if(opt=='e'){ /* set the minimization tolerance */ eps = fabs(atof(optarg)); } else if(opt=='s'){ /* set the minimization tolerance */ init_scale = fabs(atof(optarg)); } else if(opt=='q'){ /* set the minimization tolerance */ theta = fabs(atof(optarg)); if(theta <= 0 || theta >=1){ fprintf(stderr,"ERROR (%s): quantile '%f' must be in (0.1). Try option -h.\n", GB_PROGNAME,theta); exit(-1); } } else if(opt=='F'){ /*set the fields separator string*/ free(splitstring); splitstring = strdup(optarg); } else if(opt=='M'){ /*set the estimation method*/ o_method = atoi(optarg); if(o_method<0 || o_method>2){ fprintf(stderr,"ERROR (%s): method option '%d' not recognized. Try option -h.\n", GB_PROGNAME,o_method); exit(-1); } } else if(opt=='O'){ /* set the type of output */ o_output = atoi(optarg); if(o_output<0 || o_output>3){ fprintf(stderr,"ERROR (%s): output option '%d' not recognized. Try option -h.\n", GB_PROGNAME,o_output); exit(-1); } } else if(opt=='V'){ /* set the type of covariance */ o_varcovar = atoi(optarg); if(o_varcovar<0 || o_varcovar>3){ fprintf(stderr,"ERROR (%s): variance option '%d' not recognized. Try option -h.\n", GB_PROGNAME,o_varcovar); exit(-1); } } else if(opt=='v'){ o_verbose = atoi(optarg); } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); /* load data */ loadtable(&data,&rows,&columns,0,splitstring); /* parse line for functions and variables specification */ if(optind == argc){ fprintf(stderr,"ERROR (%s): please provide a function to fit.\n", GB_PROGNAME); exit(-1); } for(i=optind;i0 && strlen(stmp4)>0){ Pnum++; Param=(char **) my_realloc((void *) Param,Pnum*sizeof(char *)); Pval=(double *) my_realloc((void *) Pval,Pnum*sizeof(double)); Param[Pnum-1] = strdup(stmp5); Pval[Pnum-1] = atof(stmp4); } } else{ /* allocate new function */ F.f = evaluator_create (stmp3); assert(F.f); } free(stmp3); } free(piece); } /* check that everything is correct */ if(Pnum==0){ fprintf(stderr,"ERROR (%s): please provide a parameter to estimate.\n", GB_PROGNAME); exit(-1); } { size_t i,j; char **NewParam=NULL; double *NewPval=NULL; size_t NewPnum=0; char **storedname=NULL; size_t storednum=0; /* retrive list of arguments and their number */ /* notice that storedname is not allocated */ { int argnum; evaluator_get_variables (F.f,&storedname,&argnum); storednum = (size_t) argnum; } /* check the definition of the function */ for(i=0;i0?atoi(stmp1+1):0); if(index>columns){ fprintf(stderr,"ERROR (%s): column %zd not present in data\n", GB_PROGNAME,index); exit(-1); } } else { for(j=0;j1){ F.ddf = (void ***) my_alloc(Pnum*sizeof(void **)); for(i=0;i4){ size_t i,j; fprintf(stderr," ------------------------------------------------------------\n"); fprintf(stderr," Model [xi: i-th data column]:\n"); fprintf(stderr," %s\n", evaluator_get_string (F.f) ); fprintf (stderr,"\n Parameters and initial conditions:\n"); for(i=0;i1){ fprintf (stderr,"\n Model second derivatives:\n"); for(i=0;idata)[j]=0.0; for(i=0;idata)[j] += (f>0 ? evaluator_evaluate (F.df[j],F.argnum,F.argname,values) : -evaluator_evaluate (F.df[j],F.argnum,F.argname,values))*init_scale; } } for(j=0;jdata)[j] = fabs((ss->data)[j]/rows); } /* initialize the solver */ s = gsl_multimin_fminimizer_alloc (T, Pnum); gsl_multimin_fminimizer_set (s, &obj, &x.vector, ss); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose>3){ fprintf(stderr," ------------------------------------------------------------\n"); fprintf(stderr," Stopping criteria: max{simplex size} < %g\n\n",eps); fprintf(stderr," Iter "); for(i=0;i3){ fprintf (stderr,"%3zd ",iter); for(i=0;ix, i)); fprintf (stderr," %8.5e %8.5e %s\n", s->fval,size,gsl_strerror (status)); } /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ status=gsl_multimin_test_size (size,eps); } while (status == GSL_CONTINUE && iter < maxsteps); if(iter == maxsteps) fprintf(stderr,"WARNING (%s): failed to converge after %zd iterations\n", GB_PROGNAME,maxsteps); /* store final values */ for(i=0;ix,i); /* build the covariance matrix */ Pcovar = qreg_varcovar(o_varcovar,s,param,Pnum); /* free space */ gsl_vector_free(ss); gsl_multimin_fminimizer_free (s); } /* output */ /* ------ */ /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose>2){ size_t i,j; fprintf(stderr," ------------------------------------------------------------\n"); fprintf(stderr," variance matrix = "); switch(o_varcovar){ case 0: fprintf(stderr,"\n"); break; case 1: fprintf(stderr,"J^{-1}\n"); break; case 2: fprintf(stderr,"H^{-1}\n"); break; case 3: fprintf(stderr,"H^{-1} J H^{-1}\n"); break; } fprintf(stderr,"\n"); for(i=0;i1) fprintf(stderr," ------------------------------------------------------------\n"); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ switch(o_output){ case 0: { size_t i; /* +++++++++++++++++++++++++++++++++++ */ if(o_verbose>0){ fprintf(stdout,"#"); for(i=0;i0){ fprintf(stdout,"#"); for(i=0;i0){ fprintf(stderr,"#"); for(i=0;i0){ fprintf(stdout,"#"); for(i=0;i0){ fprintf(stdout,"#"); for(i=0;i #include #include #include #include #include #include #include /* handy structure used in computation */ typedef struct function { void *f; size_t argnum; char **argname; void **df; void ***ddf; } Function; typedef struct system { Function *fun; size_t fnum; } System; struct objdata { System * S; size_t rows; size_t columns; double **data; }; /* Ordinary Least Squares estimation */ /* --------------------------------- */ int ols_obj_f (const gsl_vector * x, void *params, gsl_vector * f){ const System *S = ((struct objdata *)params)->S; const size_t rows=((struct objdata *)params)->rows; const size_t columns=((struct objdata *)params)->columns; double **data=((struct objdata *)params)->data; const size_t pnum = x->size; double values[pnum+columns]; size_t i,j,h; const size_t fnum =S->fnum; /* set the parameter values */ for(i=columns;ifun)[h]; for(i=0;iS; const size_t rows=((struct objdata *)params)->rows; const size_t columns=((struct objdata *)params)->columns; double **data=((struct objdata *)params)->data; const size_t pnum = x->size; double values[pnum+columns]; size_t i,j,h; const size_t fnum =S->fnum; for(i=columns;ifun)[h]; for(i=0;iS; const size_t rows=((struct objdata *)params)->rows; const size_t columns=((struct objdata *)params)->columns; double **data=((struct objdata *)params)->data; const size_t pnum = x->size; double values[pnum+columns]; size_t i,j,h; const size_t fnum =S->fnum; for(i=columns;ifnum ;h++){ Function F=(S->fun)[h]; for(i=0;iargname[j],values[j]); */ /* printf("-> %f\n",evaluator_evaluate (F->f,columns+pnum,F->argname,values)); */ for(j=0;jf),2.); const double sigma2 = sumsq/(rows-Pnum); gsl_matrix *covar = gsl_matrix_alloc (Pnum,Pnum); switch(o_varcovar){ case 0: /* inverse "reduced Hessian", as in Numerical Recipes */ { #ifdef GSL_VER_2 gsl_matrix *J = gsl_matrix_alloc(rows, Pnum); gsl_multifit_fdfsolver_jac(s, J); #else gsl_matrix *J = s->J; #endif gsl_multifit_covar (J, 1e-6, covar); gsl_matrix_scale (covar,sigma2); #ifdef GSL_VER_2 gsl_matrix_free (J); #endif } break; case 1: /* J^{-1} */ { gsl_permutation * P = gsl_permutation_alloc (Pnum); int signum; gsl_matrix *J = gsl_matrix_calloc (Pnum,Pnum); gsl_matrix *dJ = gsl_matrix_calloc (Pnum,Pnum); double f,df1,df2; double values[columns+Pnum]; /* fill with optimal parameter */ for(i=columns;ix,i-columns); /* compute information matrix */ for(k=0 ; kfnum ;k++){ Function F=(S->fun)[k]; for(i=0;ix,i-columns); /* compute Hessian */ for(k=0 ; kfnum ;k++){ Function F=(S->fun)[k]; for(i=0;ix,i-columns); /* compute Hessian and Jacobian */ for(k=0 ; kfnum ;k++){ Function F=(S->fun)[k]; for(i=0;ifnum; double values[columns+Pnum]; gsl_matrix *covar = gsl_matrix_calloc (fnum,fnum); gsl_matrix *dy = gsl_matrix_calloc (fnum,fnum); /* fill with optimal parameters */ for(i=columns;ix,i-columns); /* compute covariance matrix */ for(i=0;ifun)[h]; double f1 = evaluator_evaluate (F1.f,columns+Pnum,F1.argname,values); for(k=0 ; kfun)[k]; double f2 = evaluator_evaluate (F2.f,columns+Pnum,F2.argname,values); gsl_matrix_set (dy,h,k,f1*f2); } } gsl_matrix_add (covar,dy); } gsl_matrix_free(dy); gsl_matrix_scale (covar,1./sqrt(rows)); return covar; } int main(int argc,char* argv[]){ int i; char *splitstring = strdup(" \t"); int o_verbose=0; int o_output=0; int o_varcovar=0; /* data from sdtin */ size_t rows=0,columns=0; double **data=NULL; /* parameter of the function to minimize */ char **Param=NULL; double *Pval=NULL; gsl_matrix *Pcovar=NULL; /* parameters covariance matrix */ gsl_matrix *Rcovar=NULL; /* residuals covariance matrix */ size_t Pnum=0; /* definition of the system */ System S; /* minimization tolerance */ double eps=1e-5; /* variables for reading command line options */ /* ------------------------------------------ */ int opt; /* ------------------------------------------ */ /* COMMAND LINE PROCESSING */ while((opt=getopt_long(argc,argv,"v:hF:O:V:M:e:",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='h'){ /*print help*/ fprintf(stdout,"Least square estimation of a system of j non linear equations. Read data \n"); fprintf(stdout,"in columns (X_1 .. X_N). The j-th equation is specified by a function f_j(x1,x2...)\n"); fprintf(stdout,"using variables names x1,x2,..,xN for the first, second...N-th column of data.\n"); fprintf(stdout,"The f_j(x1,x2,...)'s are assumed i.i.d. according to a multivariate gaussian\n"); fprintf(stdout,"distribution.\n"); fprintf(stdout,"\nUsage: %s [options] \n\n",argv[0]); fprintf(stdout,"Options:\n"); fprintf(stdout," -O type of output (default 0)\n"); fprintf(stdout," 0 parameters \n"); fprintf(stdout," 1 parameters and errors \n"); fprintf(stdout," 2 and residuals \n"); fprintf(stdout," 3 parameters and variance matrix\n"); fprintf(stdout," -V variance matrix estimation (default 0)\n"); fprintf(stdout," 0 \n"); fprintf(stdout," 1 < J^{-1} > \n"); fprintf(stdout," 2 < H^{-1} > \n"); fprintf(stdout," 3 < H^{-1} J H^{-1} > \n"); fprintf(stdout," -e minimization tolerance (default 1e-5)\n"); fprintf(stdout," -v verbosity level (default 0)\n"); fprintf(stdout," 0 just results \n"); fprintf(stdout," 1 comment headers \n"); fprintf(stdout," 2 summary statistics \n"); fprintf(stdout," 3 covariance matrix \n"); fprintf(stdout," 4 minimization steps \n"); fprintf(stdout," 5 model definition \n"); fprintf(stdout," -F input fields separators (default \" \\t\")\n"); fprintf(stdout," -h this help \n"); return(0); } else if(opt=='e'){ /* set the minimization tolerance */ eps = fabs(atof(optarg)); } else if(opt=='F'){ /*set the fields separator string*/ free(splitstring); splitstring = strdup(optarg); } else if(opt=='O'){ /* set the type of output */ o_output = atoi(optarg); if(o_output<0 || o_output>3){ fprintf(stderr,"ERROR (%s): output option '%d' not recognized. Try option -h.\n", GB_PROGNAME,o_output); exit(-1); } } else if(opt=='V'){ /* set the type of covariance */ o_varcovar = atoi(optarg); if(o_varcovar<0 || o_varcovar>3){ fprintf(stderr,"ERROR (%s): variance option '%d' not recognized. Try option -h.\n", GB_PROGNAME,o_varcovar); exit(-1); } } else if(opt=='v'){ o_verbose = atoi(optarg); } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); /* load data */ loadtable(&data,&rows,&columns,0,splitstring); /* parse line for functions and variables specification */ /* ---------------------------------------------------- */ if(optind == argc){ fprintf(stderr,"ERROR (%s): please provide a system to fit.\n", GB_PROGNAME); exit(-1); } S.fnum=0; S.fun=NULL; for(i=optind;i0 && strlen(stmp4)>0){ Pnum++; Param=(char **) my_realloc((void *) Param,Pnum*sizeof(char *)); Pval=(double *) my_realloc((void *) Pval,Pnum*sizeof(double)); Param[Pnum-1] = strdup(stmp5); Pval[Pnum-1] = atof(stmp4); } } else{ /* allocate new function */ S.fnum++; S.fun = (Function *) my_realloc((void *) S.fun,S.fnum*sizeof(Function)); (S.fun[S.fnum-1]).f = evaluator_create (stmp3); assert((S.fun[S.fnum-1]).f); } free(stmp3); } free(piece); } /* ---------------------------------------------------- */ /* check functions definition and build new list */ /* -------------------------------------------- */ /* check that something to fit is provided */ if(Pnum==0){ fprintf(stderr,"ERROR (%s): please provide a parameter to estimate.\n", GB_PROGNAME); exit(-1); } /* check the definition of function */ { size_t i,j,h; char **NewParam=NULL; double *NewPval=NULL; size_t NewPnum=0; size_t totstorednum=0; char ***storedname= (char ***) my_alloc(S.fnum*sizeof(char **)); size_t *storednum = (size_t *) my_alloc(S.fnum*sizeof(size_t)); /* retrive list of arguments and their number */ /* notice that storedname is not allocated */ for(h=0;h0?atoi(stmp1+1):0); if(index>columns){ fprintf(stderr,"ERROR (%s): column %zd not present in data\n", GB_PROGNAME,index); exit(-1); } } else { for(j=0;jargnum=columns+Pnum; F->argname = (char **) my_alloc((columns+Pnum)*sizeof(char *)); for(i=0;iargname[i] = (char *) my_alloc((length+1)*sizeof(char)); snprintf(F->argname[i],length+1,"x%zd",i+1); } for(i=columns;iargname[i] = (char *) my_alloc((length+1)*sizeof(char)); snprintf(F->argname[i],length+1,"%s",Param[i-columns]); } /* define first order derivatives */ F->df = (void **) my_alloc(Pnum*sizeof(void *)); for(i=0;idf[i] = evaluator_derivative (F->f,Param[i]); assert(F->df[i]); } /* define second order derivatives */ if(o_varcovar>1){ F->ddf = (void ***) my_alloc(Pnum*sizeof(void **)); for(i=0;iddf[i] = (void **) my_alloc(Pnum*sizeof(void *)); for(i=0;iddf[i][j] = evaluator_derivative ((F->df)[i],Param[j]); assert((F->ddf)[i][j]); } } } } /* -------------------------------------------- */ /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ /* print builded functions and variables */ if(o_verbose>4){ size_t i,j,h; fprintf(stderr," ------------------------------------------------------------\n"); fprintf(stderr," Model [xi: i-th data column]:\n"); for(h=0;h1){ fprintf (stderr,"\n Model second derivatives:\n"); for(h=0;h3){ fprintf(stderr," ------------------------------------------------------------\n"); fprintf(stderr," Iter "); for(i=0;if); do { double f,g,df,dg; solver_status = gsl_multifit_fdfsolver_iterate (s); /* compute increment in object and estimates */ f=gsl_blas_dnrm2 (s->f); df=fabs(oldf-f); oldf=f; g=gsl_blas_dnrm2 (s->x); dg=gsl_blas_dnrm2 (s->dx); iter++; /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ /* print status */ if(o_verbose>3){ fprintf (stderr,"%3zd ",iter); for(i=0;ix, i)); fprintf (stderr," %8.5e %8.5e %8.5e %s\n", f,df,dg,gsl_strerror (solver_status)); } /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ /* if (status) */ /* break; */ /* check condition on estimates precision */ if( estimate_status == GSL_CONTINUE && dg < eps && dg < eps*g ) estimate_status = GSL_SUCCESS; /* check condition of object convergence */ if( object_status == GSL_CONTINUE && df>0 && df < eps && df < eps*fabs(f) ) object_status = GSL_SUCCESS; } while ( (estimate_status == GSL_CONTINUE || object_status == GSL_CONTINUE) && iter < 500); /* store final values */ for(i=0;ix,i); /* build the parameters covariance matrix */ Pcovar = ols_varcovar(o_varcovar,s,param,Pnum); /* build the residuals covariance matrix */ Rcovar = res_varcovar(s,param,Pnum); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose>1){ size_t i,j,h; fprintf(stderr, " ------------------------------------------------------------\n"); fprintf(stderr," residuals variance-covariance structure \n\n"); for(i=0;isize1;i++){ fprintf(stderr," e_%zd = %+f | ", i+1, sqrt(gsl_matrix_get(Rcovar,i,i))); for(j=0;jsize2;j++) if(j != i) fprintf(stderr,"%+f ", gsl_matrix_get(Rcovar,i,j)/sqrt(gsl_matrix_get(Rcovar,i,i)*gsl_matrix_get(Rcovar,j,j))); else fprintf(stderr,"%+f ",1.0); fprintf(stderr,"|\n"); } for(i=0;isize1;i++){ const double sumsq=gsl_matrix_get(Rcovar,i,i)*sqrt(rows); size_t ndf = 0; char **storedname=NULL; int storednum=0; /* notice that storedname is not allocated */ evaluator_get_variables (S.fun[i].f,&storedname,&storednum); for(j=0;jSSR | ndf) = %e\n", gsl_cdf_chisq_Q (sumsq,ndf)); } } /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ /* free space */ gsl_multifit_fdfsolver_free (s); } /* output */ /* ------ */ /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ if(o_verbose>2){ size_t i,j; fprintf(stderr," ------------------------------------------------------------\n"); fprintf(stderr," variance matrix = "); switch(o_varcovar){ case 0: fprintf(stderr,"\n"); break; case 1: fprintf(stderr,"J^{-1}\n"); break; case 2: fprintf(stderr,"H^{-1}\n"); break; case 3: fprintf(stderr,"H^{-1} J H^{-1}\n"); break; } fprintf(stderr,"\n"); for(i=0;i1) fprintf(stderr," ------------------------------------------------------------\n"); /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */ switch(o_output){ case 0: { size_t i; /* +++++++++++++++++++++++++++++++++++ */ if(o_verbose>0){ fprintf(stdout,"#"); for(i=0;i0){ fprintf(stdout,"#"); for(i=0;i0){ fprintf(stderr,"#"); for(i=0;i0){ */ /* fprintf(stdout,"#"); */ /* for(i=0;i0){ fprintf(stdout,"#"); for(i=0;i&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ bin_PROGRAMS = gbbin$(EXEEXT) gbdist$(EXEEXT) gbhisto$(EXEEXT) \ gbmave$(EXEEXT) gbstat$(EXEEXT) gbtest$(EXEEXT) \ gbnear$(EXEEXT) gbker2d$(EXEEXT) gbhisto2d$(EXEEXT) \ gbkreg2d$(EXEEXT) gbquant$(EXEEXT) gbboot$(EXEEXT) \ gbenv$(EXEEXT) gbgcorr$(EXEEXT) gbfilternear$(EXEEXT) \ gbmstat$(EXEEXT) gbxcorr$(EXEEXT) @GBGET@ @GBKER@ @GBKREG@ \ @GBMODES@ @GBINTERP@ @GBFUN@ @GBLREG@ @GBGRID@ @GBGLREG@ \ @GBNLREG@ @GBNLPANEL@ @GBNLQREG@ @GBRAND@ @GBHILL@ @GBNLMULT@ \ @GBNLPROBIT@ @GBNLPOLYIT@ @GBACORR@ $(am__empty) EXTRA_PROGRAMS = gbget$(EXEEXT) gbker$(EXEEXT) gbkreg$(EXEEXT) \ gbmodes$(EXEEXT) gbinterp$(EXEEXT) gbfun$(EXEEXT) \ gblreg$(EXEEXT) gbgrid$(EXEEXT) gbglreg$(EXEEXT) \ gbnlreg$(EXEEXT) gbnlpanel$(EXEEXT) gbnlqreg$(EXEEXT) \ gbrand$(EXEEXT) gbhill$(EXEEXT) gbnlmult$(EXEEXT) \ gbnlprobit$(EXEEXT) gbnlpolyit$(EXEEXT) gbacorr$(EXEEXT) subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/getdelim.m4 \ $(top_srcdir)/m4/getline.m4 $(top_srcdir)/m4/getsubopt.m4 \ $(top_srcdir)/m4/gnulib-comp.m4 \ $(top_srcdir)/m4/onceonly_2_57.m4 \ $(top_srcdir)/m4/strchrnul.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \ $(am__configure_deps) $(dist_bin_SCRIPTS) $(am__DIST_COMMON) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" \ "$(DESTDIR)$(man1dir)" PROGRAMS = $(bin_PROGRAMS) am_gbacorr_OBJECTS = gbacorr.$(OBJEXT) tools.$(OBJEXT) gbacorr_OBJECTS = $(am_gbacorr_OBJECTS) gbacorr_LDADD = $(LDADD) gbacorr_DEPENDENCIES = lib/libgnu.a am_gbbin_OBJECTS = gbbin.$(OBJEXT) tools.$(OBJEXT) gbbin_OBJECTS = $(am_gbbin_OBJECTS) gbbin_LDADD = $(LDADD) gbbin_DEPENDENCIES = lib/libgnu.a am_gbboot_OBJECTS = gbboot.$(OBJEXT) tools.$(OBJEXT) gbboot_OBJECTS = $(am_gbboot_OBJECTS) gbboot_LDADD = $(LDADD) gbboot_DEPENDENCIES = lib/libgnu.a am_gbdist_OBJECTS = gbdist.$(OBJEXT) tools.$(OBJEXT) gbdist_OBJECTS = $(am_gbdist_OBJECTS) gbdist_LDADD = $(LDADD) gbdist_DEPENDENCIES = lib/libgnu.a am_gbenv_OBJECTS = gbenv.$(OBJEXT) tools.$(OBJEXT) gbenv_OBJECTS = $(am_gbenv_OBJECTS) gbenv_LDADD = $(LDADD) gbenv_DEPENDENCIES = lib/libgnu.a am_gbfilternear_OBJECTS = gbfilternear.$(OBJEXT) tools.$(OBJEXT) gbfilternear_OBJECTS = $(am_gbfilternear_OBJECTS) gbfilternear_LDADD = $(LDADD) gbfilternear_DEPENDENCIES = lib/libgnu.a am_gbfun_OBJECTS = gbfun.$(OBJEXT) tools.$(OBJEXT) gbfun_OBJECTS = $(am_gbfun_OBJECTS) gbfun_DEPENDENCIES = am_gbgcorr_OBJECTS = gbgcorr.$(OBJEXT) tools.$(OBJEXT) gbgcorr_OBJECTS = $(am_gbgcorr_OBJECTS) gbgcorr_LDADD = $(LDADD) gbgcorr_DEPENDENCIES = lib/libgnu.a am_gbget_OBJECTS = gbget.$(OBJEXT) tools.$(OBJEXT) gbget_OBJECTS = $(am_gbget_OBJECTS) gbget_DEPENDENCIES = am_gbglreg_OBJECTS = gbglreg.$(OBJEXT) tools.$(OBJEXT) gbglreg_OBJECTS = $(am_gbglreg_OBJECTS) gbglreg_LDADD = $(LDADD) gbglreg_DEPENDENCIES = lib/libgnu.a am_gbgrid_OBJECTS = gbgrid.$(OBJEXT) tools.$(OBJEXT) gbgrid_OBJECTS = $(am_gbgrid_OBJECTS) gbgrid_DEPENDENCIES = am_gbhill_OBJECTS = gbhill.$(OBJEXT) exponential_gbhill.$(OBJEXT) \ paretoI_gbhill.$(OBJEXT) paretoIII_gbhill.$(OBJEXT) \ gaussian_gbhill.$(OBJEXT) tools.$(OBJEXT) multimin.$(OBJEXT) gbhill_OBJECTS = $(am_gbhill_OBJECTS) gbhill_LDADD = $(LDADD) gbhill_DEPENDENCIES = lib/libgnu.a am_gbhisto_OBJECTS = gbhisto.$(OBJEXT) tools.$(OBJEXT) gbhisto_OBJECTS = $(am_gbhisto_OBJECTS) gbhisto_LDADD = $(LDADD) gbhisto_DEPENDENCIES = lib/libgnu.a am_gbhisto2d_OBJECTS = gbhisto2d.$(OBJEXT) tools.$(OBJEXT) gbhisto2d_OBJECTS = $(am_gbhisto2d_OBJECTS) gbhisto2d_LDADD = $(LDADD) gbhisto2d_DEPENDENCIES = lib/libgnu.a am_gbinterp_OBJECTS = gbinterp.$(OBJEXT) tools.$(OBJEXT) gbinterp_OBJECTS = $(am_gbinterp_OBJECTS) gbinterp_LDADD = $(LDADD) gbinterp_DEPENDENCIES = lib/libgnu.a am_gbker_OBJECTS = gbker.$(OBJEXT) tools.$(OBJEXT) gbker_OBJECTS = $(am_gbker_OBJECTS) gbker_LDADD = $(LDADD) gbker_DEPENDENCIES = lib/libgnu.a am_gbker2d_OBJECTS = gbker2d.$(OBJEXT) tools.$(OBJEXT) gbker2d_OBJECTS = $(am_gbker2d_OBJECTS) gbker2d_LDADD = $(LDADD) gbker2d_DEPENDENCIES = lib/libgnu.a am_gbkreg_OBJECTS = gbkreg.$(OBJEXT) tools.$(OBJEXT) gbkreg_OBJECTS = $(am_gbkreg_OBJECTS) gbkreg_LDADD = $(LDADD) gbkreg_DEPENDENCIES = lib/libgnu.a am_gbkreg2d_OBJECTS = gbkreg2d.$(OBJEXT) tools.$(OBJEXT) gbkreg2d_OBJECTS = $(am_gbkreg2d_OBJECTS) gbkreg2d_LDADD = $(LDADD) gbkreg2d_DEPENDENCIES = lib/libgnu.a am_gblreg_OBJECTS = gblreg.$(OBJEXT) tools.$(OBJEXT) gblreg_OBJECTS = $(am_gblreg_OBJECTS) gblreg_LDADD = $(LDADD) gblreg_DEPENDENCIES = lib/libgnu.a am_gbmave_OBJECTS = gbmave.$(OBJEXT) tools.$(OBJEXT) gbmave_OBJECTS = $(am_gbmave_OBJECTS) gbmave_LDADD = $(LDADD) gbmave_DEPENDENCIES = lib/libgnu.a am_gbmodes_OBJECTS = gbmodes.$(OBJEXT) tools.$(OBJEXT) gbmodes_OBJECTS = $(am_gbmodes_OBJECTS) gbmodes_LDADD = $(LDADD) gbmodes_DEPENDENCIES = lib/libgnu.a am_gbmstat_OBJECTS = gbmstat.$(OBJEXT) tools.$(OBJEXT) gbmstat_OBJECTS = $(am_gbmstat_OBJECTS) gbmstat_LDADD = $(LDADD) gbmstat_DEPENDENCIES = lib/libgnu.a am_gbnear_OBJECTS = gbnear.$(OBJEXT) tools.$(OBJEXT) gbnear_OBJECTS = $(am_gbnear_OBJECTS) gbnear_LDADD = $(LDADD) gbnear_DEPENDENCIES = lib/libgnu.a am_gbnlmult_OBJECTS = gbnlmult.$(OBJEXT) tools.$(OBJEXT) gbnlmult_OBJECTS = $(am_gbnlmult_OBJECTS) gbnlmult_DEPENDENCIES = am_gbnlpanel_OBJECTS = gbnlpanel.$(OBJEXT) multimin.$(OBJEXT) \ tools.$(OBJEXT) gbnlpanel_OBJECTS = $(am_gbnlpanel_OBJECTS) gbnlpanel_DEPENDENCIES = am_gbnlpolyit_OBJECTS = gbnlpolyit.$(OBJEXT) tools.$(OBJEXT) \ multimin.$(OBJEXT) gbnlpolyit_OBJECTS = $(am_gbnlpolyit_OBJECTS) gbnlpolyit_DEPENDENCIES = am_gbnlprobit_OBJECTS = gbnlprobit.$(OBJEXT) tools.$(OBJEXT) \ multimin.$(OBJEXT) gbnlprobit_OBJECTS = $(am_gbnlprobit_OBJECTS) gbnlprobit_DEPENDENCIES = am_gbnlqreg_OBJECTS = gbnlqreg.$(OBJEXT) tools.$(OBJEXT) gbnlqreg_OBJECTS = $(am_gbnlqreg_OBJECTS) gbnlqreg_DEPENDENCIES = am_gbnlreg_OBJECTS = gbnlreg.$(OBJEXT) tools.$(OBJEXT) gbnlreg_OBJECTS = $(am_gbnlreg_OBJECTS) gbnlreg_DEPENDENCIES = am_gbquant_OBJECTS = gbquant.$(OBJEXT) tools.$(OBJEXT) gbquant_OBJECTS = $(am_gbquant_OBJECTS) gbquant_LDADD = $(LDADD) gbquant_DEPENDENCIES = lib/libgnu.a am_gbrand_OBJECTS = gbrand.$(OBJEXT) tools.$(OBJEXT) gbrand_OBJECTS = $(am_gbrand_OBJECTS) gbrand_LDADD = $(LDADD) gbrand_DEPENDENCIES = lib/libgnu.a am_gbstat_OBJECTS = gbstat.$(OBJEXT) tools.$(OBJEXT) gbstat_OBJECTS = $(am_gbstat_OBJECTS) gbstat_LDADD = $(LDADD) gbstat_DEPENDENCIES = lib/libgnu.a am_gbtest_OBJECTS = gbtest.$(OBJEXT) tools.$(OBJEXT) gbtest_OBJECTS = $(am_gbtest_OBJECTS) gbtest_LDADD = $(LDADD) gbtest_DEPENDENCIES = lib/libgnu.a am_gbxcorr_OBJECTS = gbxcorr.$(OBJEXT) tools.$(OBJEXT) gbxcorr_OBJECTS = $(am_gbxcorr_OBJECTS) gbxcorr_LDADD = $(LDADD) gbxcorr_DEPENDENCIES = lib/libgnu.a am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } SCRIPTS = $(dist_bin_SCRIPTS) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(gbacorr_SOURCES) $(gbbin_SOURCES) $(gbboot_SOURCES) \ $(gbdist_SOURCES) $(gbenv_SOURCES) $(gbfilternear_SOURCES) \ $(gbfun_SOURCES) $(gbgcorr_SOURCES) $(gbget_SOURCES) \ $(gbglreg_SOURCES) $(gbgrid_SOURCES) $(gbhill_SOURCES) \ $(gbhisto_SOURCES) $(gbhisto2d_SOURCES) $(gbinterp_SOURCES) \ $(gbker_SOURCES) $(gbker2d_SOURCES) $(gbkreg_SOURCES) \ $(gbkreg2d_SOURCES) $(gblreg_SOURCES) $(gbmave_SOURCES) \ $(gbmodes_SOURCES) $(gbmstat_SOURCES) $(gbnear_SOURCES) \ $(gbnlmult_SOURCES) $(gbnlpanel_SOURCES) $(gbnlpolyit_SOURCES) \ $(gbnlprobit_SOURCES) $(gbnlqreg_SOURCES) $(gbnlreg_SOURCES) \ $(gbquant_SOURCES) $(gbrand_SOURCES) $(gbstat_SOURCES) \ $(gbtest_SOURCES) $(gbxcorr_SOURCES) DIST_SOURCES = $(gbacorr_SOURCES) $(gbbin_SOURCES) $(gbboot_SOURCES) \ $(gbdist_SOURCES) $(gbenv_SOURCES) $(gbfilternear_SOURCES) \ $(gbfun_SOURCES) $(gbgcorr_SOURCES) $(gbget_SOURCES) \ $(gbglreg_SOURCES) $(gbgrid_SOURCES) $(gbhill_SOURCES) \ $(gbhisto_SOURCES) $(gbhisto2d_SOURCES) $(gbinterp_SOURCES) \ $(gbker_SOURCES) $(gbker2d_SOURCES) $(gbkreg_SOURCES) \ $(gbkreg2d_SOURCES) $(gblreg_SOURCES) $(gbmave_SOURCES) \ $(gbmodes_SOURCES) $(gbmstat_SOURCES) $(gbnear_SOURCES) \ $(gbnlmult_SOURCES) $(gbnlpanel_SOURCES) $(gbnlpolyit_SOURCES) \ $(gbnlprobit_SOURCES) $(gbnlqreg_SOURCES) $(gbnlreg_SOURCES) \ $(gbquant_SOURCES) $(gbrand_SOURCES) $(gbstat_SOURCES) \ $(gbtest_SOURCES) $(gbxcorr_SOURCES) RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac man1dir = $(mandir)/man1 NROFF = nroff MANS = $(dist_man1_MANS) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ cscope distdir dist dist-all distcheck am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ $(LISP)config.h.in # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags CSCOPE = cscope DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(dist_man1_MANS) $(srcdir)/Makefile.in \ $(srcdir)/config.h.in AUTHORS COPYING ChangeLog INSTALL NEWS \ README TODO compile config.guess config.sub depcomp install-sh \ missing DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__post_remove_distdir = $(am__remove_distdir) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best DIST_TARGETS = dist-gzip distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GBACORR = @GBACORR@ GBACORRMAN = @GBACORRMAN@ GBFUN = @GBFUN@ GBFUNMAN = @GBFUNMAN@ GBGET = @GBGET@ GBGETMAN = @GBGETMAN@ GBGLREG = @GBGLREG@ GBGLREGMAN = @GBGLREGMAN@ GBGRID = @GBGRID@ GBGRIDMAN = @GBGRIDMAN@ GBHILL = @GBHILL@ GBHILLMAN = @GBHILLMAN@ GBINTERP = @GBINTERP@ GBINTERPMAN = @GBINTERPMAN@ GBKER = @GBKER@ GBKERMAN = @GBKERMAN@ GBKREG = @GBKREG@ GBKREGMAN = @GBKREGMAN@ GBLREG = @GBLREG@ GBLREGMAN = @GBLREGMAN@ GBMODES = @GBMODES@ GBMODESMAN = @GBMODESMAN@ GBNLMULT = @GBNLMULT@ GBNLMULTMAN = @GBNLMULTMAN@ GBNLPANEL = @GBNLPANEL@ GBNLPANELMAN = @GBNLPANELMAN@ GBNLPOLYIT = @GBNLPOLYIT@ GBNLPOLYITMAN = @GBNLPOLYITMAN@ GBNLPROBIT = @GBNLPROBIT@ GBNLPROBITMAN = @GBNLPROBITMAN@ GBNLQREG = @GBNLQREG@ GBNLQREGMAN = @GBNLQREGMAN@ GBNLREG = @GBNLREG@ GBNLREGMAN = @GBNLREGMAN@ GBRAND = @GBRAND@ GBRANDMAN = @GBRANDMAN@ GREP = @GREP@ HELP2MAN = @HELP2MAN@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ #Addition from gnulib SUBDIRS = lib #-------------------- dist_bin_SCRIPTS = gbconvtable gbdummyfy gbplot EXTRA_SCRIPTS = gbconvtable gbdummyfy gbplot gbget_SOURCES = gbget.c tools.c gbbin_SOURCES = gbbin.c tools.c gbdist_SOURCES = gbdist.c tools.c gbhisto_SOURCES = gbhisto.c tools.c gbmave_SOURCES = gbmave.c tools.c gbstat_SOURCES = gbstat.c tools.c gbtest_SOURCES = gbtest.c tools.c gbnear_SOURCES = gbnear.c tools.c gbker2d_SOURCES = gbker2d.c tools.c gbhisto2d_SOURCES = gbhisto2d.c tools.c gbkreg2d_SOURCES = gbkreg2d.c tools.c gbquant_SOURCES = gbquant.c tools.c gbboot_SOURCES = gbboot.c tools.c gbenv_SOURCES = gbenv.c tools.c gbfilternear_SOURCES = gbfilternear.c tools.c gbmstat_SOURCES = gbmstat.c tools.c gbgcorr_SOURCES = gbgcorr.c tools.c gbxcorr_SOURCES = gbxcorr.c tools.c gbkreg_SOURCES = gbkreg.c tools.c gbker_SOURCES = gbker.c tools.c gbmodes_SOURCES = gbmodes.c tools.c gbinterp_SOURCES = gbinterp.c tools.c gbfun_SOURCES = gbfun.c tools.c gblreg_SOURCES = gblreg.c tools.c gbgrid_SOURCES = gbgrid.c tools.c gbglreg_SOURCES = gbglreg.c tools.c gbnlreg_SOURCES = gbnlreg.c tools.c gbnlpanel_SOURCES = gbnlpanel.c multimin.c tools.c gbnlqreg_SOURCES = gbnlqreg.c tools.c gbrand_SOURCES = gbrand.c tools.c gbhill_SOURCES = gbhill.c exponential_gbhill.c paretoI_gbhill.c paretoIII_gbhill.c gaussian_gbhill.c tools.c multimin.c gbnlmult_SOURCES = gbnlmult.c tools.c gbnlprobit_SOURCES = gbnlprobit.c tools.c multimin.c gbnlpolyit_SOURCES = gbnlpolyit.c tools.c multimin.c gbacorr_SOURCES = gbacorr.c tools.c #Extra linker directives on Cygwin @ISCYGWIN_TRUE@gbfun_LDADD = -lmatheval -lfl @ISCYGWIN_TRUE@gbget_LDADD = -lmatheval -lfl @ISCYGWIN_TRUE@gbgrid_LDADD = -lmatheval -lfl @ISCYGWIN_TRUE@gbnlreg_LDADD = -lmatheval -lfl @ISCYGWIN_TRUE@gbnlpanel_LDADD = -lmatheval -lfl @ISCYGWIN_TRUE@gbnlqreg_LDADD = -lmatheval -lfl @ISCYGWIN_TRUE@gbnlmult_LDADD = -lmatheval -lfl @ISCYGWIN_TRUE@gbnlprobit_LDADD = -lmatheval -lfl @ISCYGWIN_TRUE@gbnlpolyit_LDADD = -lmatheval -lfl #Possibly build man pages dist_man1_MANS = gbplot.1 gbhisto.1 gbbin.1 gbdist.1 gbmave.1 gbstat.1 gbtest.1 gbnear.1 gbker2d.1 gbhisto2d.1 gbkreg2d.1 gbquant.1 gbboot.1 gbgcorr.1 gbfilternear.1 gbmstat.1 gbxcorr.1 @GBGETMAN@ @GBKERMAN@ @GBKREGMAN@ @GBMODESMAN@ @GBINTERPMAN@ @GBFUNMAN@ @GBLREGMAN@ @GBGRIDMAN@ @GBGLREGMAN@ @GBNLREGMAN@ @GBNLPANELMAN@ @GBNLQREGMAN@ @GBRANDMAN@ @GBHILLMAN@ @GBNLMULTMAN@ @GBNLPROBITMAN@ @GBNLPOLYITMAN@ @GBACORRMAN@ gbdummyfy.1 gbenv.1 gbconvtable.1 #extra file to be distributed with the package EXTRA_DIST = tools.h multimin.h gbhill.h test.dat test.dat.gz doc/cygwin_install.pdf doc/cygwin_install.txt doc/gbget.pdf doc/gbget.txt doc/intro.pdf doc/intro.txt doc/overview.pdf doc/overview.txt #Addition from gnulib #EXTRA_DIST += m4 ACLOCAL_AMFLAGS = -I m4 AM_CPPFLAGS = -I$(top_srcdir)/lib LDADD = lib/libgnu.a all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: .SUFFIXES: .c .o .obj am--refresh: Makefile @: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): config.h: stamp-h1 @test -f $@ || rm -f stamp-h1 @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1 stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) gbacorr$(EXEEXT): $(gbacorr_OBJECTS) $(gbacorr_DEPENDENCIES) $(EXTRA_gbacorr_DEPENDENCIES) @rm -f gbacorr$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbacorr_OBJECTS) $(gbacorr_LDADD) $(LIBS) gbbin$(EXEEXT): $(gbbin_OBJECTS) $(gbbin_DEPENDENCIES) $(EXTRA_gbbin_DEPENDENCIES) @rm -f gbbin$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbbin_OBJECTS) $(gbbin_LDADD) $(LIBS) gbboot$(EXEEXT): $(gbboot_OBJECTS) $(gbboot_DEPENDENCIES) $(EXTRA_gbboot_DEPENDENCIES) @rm -f gbboot$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbboot_OBJECTS) $(gbboot_LDADD) $(LIBS) gbdist$(EXEEXT): $(gbdist_OBJECTS) $(gbdist_DEPENDENCIES) $(EXTRA_gbdist_DEPENDENCIES) @rm -f gbdist$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbdist_OBJECTS) $(gbdist_LDADD) $(LIBS) gbenv$(EXEEXT): $(gbenv_OBJECTS) $(gbenv_DEPENDENCIES) $(EXTRA_gbenv_DEPENDENCIES) @rm -f gbenv$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbenv_OBJECTS) $(gbenv_LDADD) $(LIBS) gbfilternear$(EXEEXT): $(gbfilternear_OBJECTS) $(gbfilternear_DEPENDENCIES) $(EXTRA_gbfilternear_DEPENDENCIES) @rm -f gbfilternear$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbfilternear_OBJECTS) $(gbfilternear_LDADD) $(LIBS) gbfun$(EXEEXT): $(gbfun_OBJECTS) $(gbfun_DEPENDENCIES) $(EXTRA_gbfun_DEPENDENCIES) @rm -f gbfun$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbfun_OBJECTS) $(gbfun_LDADD) $(LIBS) gbgcorr$(EXEEXT): $(gbgcorr_OBJECTS) $(gbgcorr_DEPENDENCIES) $(EXTRA_gbgcorr_DEPENDENCIES) @rm -f gbgcorr$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbgcorr_OBJECTS) $(gbgcorr_LDADD) $(LIBS) gbget$(EXEEXT): $(gbget_OBJECTS) $(gbget_DEPENDENCIES) $(EXTRA_gbget_DEPENDENCIES) @rm -f gbget$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbget_OBJECTS) $(gbget_LDADD) $(LIBS) gbglreg$(EXEEXT): $(gbglreg_OBJECTS) $(gbglreg_DEPENDENCIES) $(EXTRA_gbglreg_DEPENDENCIES) @rm -f gbglreg$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbglreg_OBJECTS) $(gbglreg_LDADD) $(LIBS) gbgrid$(EXEEXT): $(gbgrid_OBJECTS) $(gbgrid_DEPENDENCIES) $(EXTRA_gbgrid_DEPENDENCIES) @rm -f gbgrid$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbgrid_OBJECTS) $(gbgrid_LDADD) $(LIBS) gbhill$(EXEEXT): $(gbhill_OBJECTS) $(gbhill_DEPENDENCIES) $(EXTRA_gbhill_DEPENDENCIES) @rm -f gbhill$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbhill_OBJECTS) $(gbhill_LDADD) $(LIBS) gbhisto$(EXEEXT): $(gbhisto_OBJECTS) $(gbhisto_DEPENDENCIES) $(EXTRA_gbhisto_DEPENDENCIES) @rm -f gbhisto$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbhisto_OBJECTS) $(gbhisto_LDADD) $(LIBS) gbhisto2d$(EXEEXT): $(gbhisto2d_OBJECTS) $(gbhisto2d_DEPENDENCIES) $(EXTRA_gbhisto2d_DEPENDENCIES) @rm -f gbhisto2d$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbhisto2d_OBJECTS) $(gbhisto2d_LDADD) $(LIBS) gbinterp$(EXEEXT): $(gbinterp_OBJECTS) $(gbinterp_DEPENDENCIES) $(EXTRA_gbinterp_DEPENDENCIES) @rm -f gbinterp$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbinterp_OBJECTS) $(gbinterp_LDADD) $(LIBS) gbker$(EXEEXT): $(gbker_OBJECTS) $(gbker_DEPENDENCIES) $(EXTRA_gbker_DEPENDENCIES) @rm -f gbker$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbker_OBJECTS) $(gbker_LDADD) $(LIBS) gbker2d$(EXEEXT): $(gbker2d_OBJECTS) $(gbker2d_DEPENDENCIES) $(EXTRA_gbker2d_DEPENDENCIES) @rm -f gbker2d$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbker2d_OBJECTS) $(gbker2d_LDADD) $(LIBS) gbkreg$(EXEEXT): $(gbkreg_OBJECTS) $(gbkreg_DEPENDENCIES) $(EXTRA_gbkreg_DEPENDENCIES) @rm -f gbkreg$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbkreg_OBJECTS) $(gbkreg_LDADD) $(LIBS) gbkreg2d$(EXEEXT): $(gbkreg2d_OBJECTS) $(gbkreg2d_DEPENDENCIES) $(EXTRA_gbkreg2d_DEPENDENCIES) @rm -f gbkreg2d$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbkreg2d_OBJECTS) $(gbkreg2d_LDADD) $(LIBS) gblreg$(EXEEXT): $(gblreg_OBJECTS) $(gblreg_DEPENDENCIES) $(EXTRA_gblreg_DEPENDENCIES) @rm -f gblreg$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gblreg_OBJECTS) $(gblreg_LDADD) $(LIBS) gbmave$(EXEEXT): $(gbmave_OBJECTS) $(gbmave_DEPENDENCIES) $(EXTRA_gbmave_DEPENDENCIES) @rm -f gbmave$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbmave_OBJECTS) $(gbmave_LDADD) $(LIBS) gbmodes$(EXEEXT): $(gbmodes_OBJECTS) $(gbmodes_DEPENDENCIES) $(EXTRA_gbmodes_DEPENDENCIES) @rm -f gbmodes$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbmodes_OBJECTS) $(gbmodes_LDADD) $(LIBS) gbmstat$(EXEEXT): $(gbmstat_OBJECTS) $(gbmstat_DEPENDENCIES) $(EXTRA_gbmstat_DEPENDENCIES) @rm -f gbmstat$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbmstat_OBJECTS) $(gbmstat_LDADD) $(LIBS) gbnear$(EXEEXT): $(gbnear_OBJECTS) $(gbnear_DEPENDENCIES) $(EXTRA_gbnear_DEPENDENCIES) @rm -f gbnear$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbnear_OBJECTS) $(gbnear_LDADD) $(LIBS) gbnlmult$(EXEEXT): $(gbnlmult_OBJECTS) $(gbnlmult_DEPENDENCIES) $(EXTRA_gbnlmult_DEPENDENCIES) @rm -f gbnlmult$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbnlmult_OBJECTS) $(gbnlmult_LDADD) $(LIBS) gbnlpanel$(EXEEXT): $(gbnlpanel_OBJECTS) $(gbnlpanel_DEPENDENCIES) $(EXTRA_gbnlpanel_DEPENDENCIES) @rm -f gbnlpanel$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbnlpanel_OBJECTS) $(gbnlpanel_LDADD) $(LIBS) gbnlpolyit$(EXEEXT): $(gbnlpolyit_OBJECTS) $(gbnlpolyit_DEPENDENCIES) $(EXTRA_gbnlpolyit_DEPENDENCIES) @rm -f gbnlpolyit$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbnlpolyit_OBJECTS) $(gbnlpolyit_LDADD) $(LIBS) gbnlprobit$(EXEEXT): $(gbnlprobit_OBJECTS) $(gbnlprobit_DEPENDENCIES) $(EXTRA_gbnlprobit_DEPENDENCIES) @rm -f gbnlprobit$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbnlprobit_OBJECTS) $(gbnlprobit_LDADD) $(LIBS) gbnlqreg$(EXEEXT): $(gbnlqreg_OBJECTS) $(gbnlqreg_DEPENDENCIES) $(EXTRA_gbnlqreg_DEPENDENCIES) @rm -f gbnlqreg$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbnlqreg_OBJECTS) $(gbnlqreg_LDADD) $(LIBS) gbnlreg$(EXEEXT): $(gbnlreg_OBJECTS) $(gbnlreg_DEPENDENCIES) $(EXTRA_gbnlreg_DEPENDENCIES) @rm -f gbnlreg$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbnlreg_OBJECTS) $(gbnlreg_LDADD) $(LIBS) gbquant$(EXEEXT): $(gbquant_OBJECTS) $(gbquant_DEPENDENCIES) $(EXTRA_gbquant_DEPENDENCIES) @rm -f gbquant$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbquant_OBJECTS) $(gbquant_LDADD) $(LIBS) gbrand$(EXEEXT): $(gbrand_OBJECTS) $(gbrand_DEPENDENCIES) $(EXTRA_gbrand_DEPENDENCIES) @rm -f gbrand$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbrand_OBJECTS) $(gbrand_LDADD) $(LIBS) gbstat$(EXEEXT): $(gbstat_OBJECTS) $(gbstat_DEPENDENCIES) $(EXTRA_gbstat_DEPENDENCIES) @rm -f gbstat$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbstat_OBJECTS) $(gbstat_LDADD) $(LIBS) gbtest$(EXEEXT): $(gbtest_OBJECTS) $(gbtest_DEPENDENCIES) $(EXTRA_gbtest_DEPENDENCIES) @rm -f gbtest$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbtest_OBJECTS) $(gbtest_LDADD) $(LIBS) gbxcorr$(EXEEXT): $(gbxcorr_OBJECTS) $(gbxcorr_DEPENDENCIES) $(EXTRA_gbxcorr_DEPENDENCIES) @rm -f gbxcorr$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gbxcorr_OBJECTS) $(gbxcorr_LDADD) $(LIBS) install-dist_binSCRIPTS: $(dist_bin_SCRIPTS) @$(NORMAL_INSTALL) @list='$(dist_bin_SCRIPTS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n' \ -e 'h;s|.*|.|' \ -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) { files[d] = files[d] " " $$1; \ if (++n[d] == $(am__install_max)) { \ print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ else { print "f", d "/" $$4, $$1 } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-dist_binSCRIPTS: @$(NORMAL_UNINSTALL) @list='$(dist_bin_SCRIPTS)'; test -n "$(bindir)" || exit 0; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 's,.*/,,;$(transform)'`; \ dir='$(DESTDIR)$(bindir)'; $(am__uninstall_files_from_dir) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exponential_gbhill.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gaussian_gbhill.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbacorr.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbbin.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbboot.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbdist.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbenv.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbfilternear.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbfun.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbgcorr.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbget.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbglreg.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbgrid.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbhill.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbhisto.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbhisto2d.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbinterp.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbker.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbker2d.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbkreg.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbkreg2d.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gblreg.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbmave.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbmodes.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbmstat.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbnear.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbnlmult.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbnlpanel.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbnlpolyit.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbnlprobit.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbnlqreg.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbnlreg.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbquant.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbrand.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbstat.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbtest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gbxcorr.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multimin.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/paretoIII_gbhill.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/paretoI_gbhill.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tools.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` install-man1: $(dist_man1_MANS) @$(NORMAL_INSTALL) @list1='$(dist_man1_MANS)'; \ list2=''; \ test -n "$(man1dir)" \ && test -n "`echo $$list1$$list2`" \ || exit 0; \ echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \ $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \ { for i in $$list1; do echo "$$i"; done; \ if test -n "$$list2"; then \ for i in $$list2; do echo "$$i"; done \ | sed -n '/\.1[a-z]*$$/p'; \ fi; \ } | while read p; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; echo "$$p"; \ done | \ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ sed 'N;N;s,\n, ,g' | { \ list=; while read file base inst; do \ if test "$$base" = "$$inst"; then list="$$list $$file"; else \ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \ fi; \ done; \ for i in $$list; do echo "$$i"; done | $(am__base_list) | \ while read files; do \ test -z "$$files" || { \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \ done; } uninstall-man1: @$(NORMAL_UNINSTALL) @list='$(dist_man1_MANS)'; test -n "$(man1dir)" || exit 0; \ files=`{ for i in $$list; do echo "$$i"; done; \ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscope: cscope.files test ! -s cscope.files \ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) clean-cscope: -rm -f cscope.files cscope.files: clean-cscope cscopelist cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -rm -f cscope.out cscope.in.out cscope.po.out cscope.files distdir: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__post_remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__post_remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__post_remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__post_remove_distdir) dist-tarZ: distdir @echo WARNING: "Support for distribution archives compressed with" \ "legacy program 'compress' is deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) dist-shar: distdir @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__post_remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__post_remove_distdir) dist dist-all: $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' $(am__post_remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lz*) \ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir) chmod u+w $(distdir) mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build/sub \ && ../../configure \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ --srcdir=../.. --prefix="$$dc_install_base" \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__post_remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @test -n '$(distuninstallcheck_dir)' || { \ echo 'ERROR: trying to run $@ with an empty' \ '$$(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ $(am__cd) '$(distuninstallcheck_dir)' || { \ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-recursive all-am: Makefile $(PROGRAMS) $(SCRIPTS) $(MANS) config.h installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man1dir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-binPROGRAMS clean-generic mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-hdr distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-man install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-binPROGRAMS install-dist_binSCRIPTS install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-man1 install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-dist_binSCRIPTS \ uninstall-man uninstall-man: uninstall-man1 .MAKE: $(am__recursive_targets) all install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ am--refresh check check-am clean clean-binPROGRAMS \ clean-cscope clean-generic cscope cscopelist-am ctags ctags-am \ dist dist-all dist-bzip2 dist-gzip dist-lzip dist-shar \ dist-tarZ dist-xz dist-zip distcheck distclean \ distclean-compile distclean-generic distclean-hdr \ distclean-tags distcleancheck distdir distuninstallcheck dvi \ dvi-am html html-am info info-am install install-am \ install-binPROGRAMS install-data install-data-am \ install-dist_binSCRIPTS install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-man1 \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-compile mostlyclean-generic pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am \ uninstall-binPROGRAMS uninstall-dist_binSCRIPTS uninstall-man \ uninstall-man1 .PRECIOUS: Makefile #Possibly build man pages #rules to build man pages @H2M_TRUE@gbget.1: gbget.c @H2M_TRUE@ $(HELP2MAN) -n "Basic data extraction and manipulation tool" -N --output=$@ ./gbget @H2M_TRUE@gbker.1: gbker.c @H2M_TRUE@ $(HELP2MAN) -n "Produce kernel density estimation" -N --output=$@ ./gbker @H2M_TRUE@gbhisto.1: gbhisto.c @H2M_TRUE@ $(HELP2MAN) -n "Produce histogram from data" -N --output=$@ ./gbhisto @H2M_TRUE@gbbin.1: gbbin.c @H2M_TRUE@ $(HELP2MAN) -n "A program to bin data" -N --output=$@ ./gbbin @H2M_TRUE@gbdist.1: gbdist.c @H2M_TRUE@ $(HELP2MAN) -n "Produce cumulative distribution from data" -N --output=$@ ./gbdist @H2M_TRUE@gbmave.1: gbmave.c @H2M_TRUE@ $(HELP2MAN) -n "Produce moving average from data" -N --output=$@ ./gbmave @H2M_TRUE@gbstat.1: gbstat.c @H2M_TRUE@ $(HELP2MAN) -n "Basic descriptive statistics of data" -N --output=$@ ./gbstat @H2M_TRUE@gbtest.1: gbtest.c @H2M_TRUE@ $(HELP2MAN) -n "Compute statistical tests on data" -N --output=$@ ./gbtest @H2M_TRUE@gbnear.1: gbnear.c @H2M_TRUE@ $(HELP2MAN) -n "Produce nearest neighborhood density estimate" -N --output=$@ ./gbnear @H2M_TRUE@gbker2d.1: gbker2d.c @H2M_TRUE@ $(HELP2MAN) -n "Kernel density estimate for bivariate data" -N --output=$@ ./gbker2d @H2M_TRUE@gbhisto2d.1: gbhisto2d.c @H2M_TRUE@ $(HELP2MAN) -n "Produce 2D histogram from data" -N --output=$@ ./gbhisto2d @H2M_TRUE@gbkreg2d.1: gbkreg2d.c @H2M_TRUE@ $(HELP2MAN) -n "Kernel non linear regression for bivariate data" -N --output=$@ ./gbkreg2d @H2M_TRUE@gbquant.1: gbquant.c @H2M_TRUE@ $(HELP2MAN) -n "Print quantiles of data distribution" -N --output=$@ ./gbquant @H2M_TRUE@gbboot.1: gbboot.c @H2M_TRUE@ $(HELP2MAN) -n "Bootstrap user provided data" -N --output=$@ ./gbboot @H2M_TRUE@gbgcorr.1: gbgcorr.c @H2M_TRUE@ $(HELP2MAN) -n "Gaussian kernel correlation dimension" -N --output=$@ ./gbgcorr @H2M_TRUE@gbfilternear.1: gbfilternear.c @H2M_TRUE@ $(HELP2MAN) -n "Filter too near data point in Euclidean metric" -N --output=$@ ./gbfilternear @H2M_TRUE@gbmstat.1: gbmstat.c @H2M_TRUE@ $(HELP2MAN) -n "Computing statistics in a moving windows" -N --output=$@ ./gbmstat @H2M_TRUE@gbxcorr.1: gbxcorr.c @H2M_TRUE@ $(HELP2MAN) -n "Compute cross correlation matrix" -N --output=$@ ./gbxcorr @H2M_TRUE@gbacorr.1: gbacorr.c @H2M_TRUE@ $(HELP2MAN) -n "Compute auto/cross-correlation coefficients" -N --output=$@ ./gbacorr @H2M_TRUE@gbkreg.1: gbkreg.c @H2M_TRUE@ $(HELP2MAN) -n "Kernel non linear regression function" -N --output=$@ ./gbkreg @H2M_TRUE@gbmodes.1: gbmodes.c @H2M_TRUE@ $(HELP2MAN) -n "Analyze multimodality in univariate data" -N --output=$@ ./gbmodes @H2M_TRUE@gbinterp.1: gbinterp.c @H2M_TRUE@ $(HELP2MAN) -n "Compute equispaced curve from interpolated" -N --output=$@ ./gbinterp @H2M_TRUE@gbfun.1: gbfun.c @H2M_TRUE@ $(HELP2MAN) -n "Apply functions to table of data" -N --output=$@ ./gbfun @H2M_TRUE@gblreg.1: gblreg.c @H2M_TRUE@ $(HELP2MAN) -n "Estimate linear regression model" -N --output=$@ ./gblreg @H2M_TRUE@gbgrid.1: gbgrid.c @H2M_TRUE@ $(HELP2MAN) -n "Produce grid of data" -N --output=$@ ./gbgrid @H2M_TRUE@gbglreg.1: gbglreg.c @H2M_TRUE@ $(HELP2MAN) -n "Estimate general linear regression model" -N --output=$@ ./gbglreg @H2M_TRUE@gbnlreg.1: gbnlreg.c @H2M_TRUE@ $(HELP2MAN) -n "Non linear regression" -N --output=$@ ./gbnlreg @H2M_TRUE@gbnlpanel.1: gbnlpanel.c @H2M_TRUE@ $(HELP2MAN) -n "Non-linear panel regression" -N --output=$@ ./gbnlpanel @H2M_TRUE@gbnlqreg.1: gbnlqreg.c @H2M_TRUE@ $(HELP2MAN) -n "Non linear quantile regression" -N --output=$@ ./gbnlqreg @H2M_TRUE@gbrand.1: gbrand.c @H2M_TRUE@ $(HELP2MAN) -n "Sampling from random distributions" -N --output=$@ ./gbrand @H2M_TRUE@gbhill.1: gbhill.c @H2M_TRUE@ $(HELP2MAN) -n "Hill Maximum Likelihhod estimation" -N --output=$@ ./gbhill @H2M_TRUE@gbnlmult.1: gbnlmult.c @H2M_TRUE@ $(HELP2MAN) -n "Solve systems of non linear simultaneous equations" -N --output=$@ ./gbnlmult @H2M_TRUE@gbnlprobit.1: gbnlprobit.c @H2M_TRUE@ $(HELP2MAN) -n "Non linear probit regression" -N --output=$@ ./gbnlprobit @H2M_TRUE@gbnlpolyit.1: gbnlpolyit.c @H2M_TRUE@ $(HELP2MAN) -n "Non linear polyit regression" -N --output=$@ ./gbnlpolyit @H2M_TRUE@gbplot.1: gbplot @H2M_TRUE@ $(HELP2MAN) -n "gnuplot command line interface" -N --output=$@ ./gbplot @H2M_TRUE@gbdummyfy.1: gbdummyfy @H2M_TRUE@ $(HELP2MAN) -n "Produce dummies from labels" -N --output=$@ ./gbdummyfy @H2M_TRUE@gbenv.1: gbenv @H2M_TRUE@ $(HELP2MAN) -n "Floating point locale, and gbutils settings" -N --output=$@ ./gbenv @H2M_TRUE@gbconvtable.1: gbconvtable @H2M_TRUE@ $(HELP2MAN) -n "Replace keys with values" -N --output=$@ ./gbconvtable #-------------------- # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: gbutils-5.7.1/gbhill.10000644000175000017500000000534413246755335011464 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.3. .TH GBHILL "1" "March 2018" "gbhill 5.7.1" "User Commands" .SH NAME gbhill \- Hill Maximum Likelihhod estimation .SH SYNOPSIS .B gbhill [\fI\,options\/\fR] \fI\,\/\fR .SH DESCRIPTION Maximum Likelihood estimation of distribution based on extremal (tail) observations. The distributions included are: exponential, pareto1, pareto3, gaussian. Provide the name of the distribution and the initial values of the parameters in the command line. .SH OPTIONS .TP \fB\-O\fR type of output (default 0) .TP 0 parameters and min NLL .TP 1 parameters and errors .TP 2 the distribution function .TP 3 the density function .TP 4 transformed observations: uniform in [0.1] under the null .TP 5 Renyi residuals: iid uniform in [0.1] under the null .TP \fB\-M\fR method used (default 0) .TP 0 unconditional, upper tail .TP 1 threshold, upper tail .TP 2 unconditional, lower tail .TP 3 threshold, lower tail .TP \fB\-V\fR variance matrix estimation (default2) .TP 0 < J^{\-1} > .TP 1 < H^{\-1} > .TP 2 < H^{\-1} J H^{\-1} > .TP \fB\-v\fR verbosity level (default0) .TP 0 just results .TP 1 comment headers .TP 2 summary statistics .IP 3+ minimization steps .TP \fB\-a\fR print entire set for \fB\-O\fR 1,2 .TP \fB\-u\fR observations or threshold (default 1) .TP \fB\-F\fR input fields separators (default " \et") .TP \fB\-h\fR this help .TP \fB\-A\fR comma separated MLL optimization options step,tol,iter,eps,msize, algo. Use empty fields for default (default 0.01,0.01,100,1e\-6,1e\-6,5) .TP step initial step size of the searching algorithm .TP tol line search tolerance iter: maximum number of iterations .TP eps gradient tolerance : stopping criteria ||gradient|| .PP .br Package home page .SH COPYRIGHT Copyright \(co 2001\-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; .PP 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. gbutils-5.7.1/gbacorr.c0000644000175000017500000001724713246755012011721 00000000000000/* gbacorr (ver. 5.6) -- Compute auto/cross-correlation coefficients Copyright (C) 2014-2018 Giulio Bottazzi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation; 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, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "tools.h" #include int main(int argc,char* argv[]){ char *splitstring = strdup(" \t"); size_t rows=0,columns=0; double **vals=NULL,*res=NULL; size_t i; int tini=0,tfin=10; int t; /* OPTIONS */ int o_method=0; int o_confidence=0; double confidence=0.01; /* variables for reading command line options */ /* ------------------------------------------ */ int opt; /* ------------------------------------------ */ /* COMMAND LINE PROCESSING */ while((opt=getopt_long(argc,argv,"hF:M:t:p:",gb_long_options, &gb_option_index))!=EOF){ if(opt==0){ gbutils_header(argv[0],stdout); exit(0); } else if(opt=='?'){ fprintf(stderr,"option %c not recognized\n",optopt); return(-1); } else if(opt=='h'){ /*print help*/ fprintf(stdout,"Compute auto/cross-correlation coefficients\n\n"); fprintf(stdout,"Usage: %s [options]\n",argv[0]); fprintf(stdout," \n"); fprintf(stdout,"If the input is a single columns x_1...X_T, the autocorrelation function \n"); fprintf(stdout,"c(t) is printed, defined as \n"); fprintf(stdout," c_{t} = 1/(T-t-1) \\sum_i (x_i-m) (x_{i+t}-m) /s^2 \n"); fprintf(stdout,"where m is the sample average and s the standard deviation. \n"); fprintf(stdout,"With a second column y_1...y_T, the cross-correlation \n"); fprintf(stdout," c_{t} = 1/(T-t-1) \\sum_i (x_i-mx) (y_{i+t}-my) /(sx sy) \n"); fprintf(stdout,"is printed where mx and my are the average values of the two columns and sx\n"); fprintf(stdout,"and sy their standard deviations. With -M 1 it is mx=my=0, the st.dev. is\n"); fprintf(stdout,"computed accordingly and in the previous formula T-t-1 is replaced by T-t. \n"); fprintf(stdout,"The range of t is set by option -t. \n"); fprintf(stdout,"Options\n"); fprintf(stdout," -M choose the method (default '0'): \n"); fprintf(stdout," 0 auto/cross-correlation with mean removal, \n"); fprintf(stdout," 1 auto/cross-correlation without mean removal \n"); fprintf(stdout," -t set range of t (default '0,10'), accept negative integers\n"); fprintf(stdout," -p specify the confidence level in (0,1). Interval ac_low,ac_hi has a \n"); fprintf(stdout," probability 1-confidence to contain the true value. With this option\n"); fprintf(stdout," the output becomes: lag ac ac_low ac_hi.\n"); fprintf(stdout," -F specify the input fields separators (default \" \\t\") \n"); fprintf(stdout," -h this help\n"); fprintf(stdout,"Examples:\n"); fprintf(stdout," gbacorr -t 0,2 'file(1)' first three a.c. coeff. of the first data column\n"); fprintf(stdout," gbacorr -p 0.05 'file(1:2)' x-corr of the first two columns together with\n"); fprintf(stdout," their 5%% confidence intervals\n"); return(0); } else if(opt=='t'){ /*set the lead-lag range */ char *stmp1=strdup (optarg); char *stmp2; char *stmp3=stmp1; stmp2=strsep (&stmp1,","); if(strlen(stmp2)>0) tini=atoi(stmp2); if(stmp1 != NULL && strlen(stmp1)>0) tfin=atof(stmp1); free(stmp3); if(tini>tfin){ const int dtmp1 = tini; tini=tfin; tfin=dtmp1; } } else if(opt=='M'){ /*set the method to use*/ o_method = atoi(optarg); } else if(opt=='p'){ /*set the method to use*/ o_confidence =1; confidence = atof(optarg); } else if(opt=='F'){ /*set the fields separator string*/ free(splitstring); splitstring = strdup(optarg); } } /* END OF COMMAND LINE PROCESSING */ /* initialize global variables */ initialize_program(argv[0]); /* load data */ loadtable(&vals,&rows,&columns,0,splitstring); /* allocate space for the result */ res = (double *) my_alloc((tfin-tini+1)*sizeof(double)); /* compute the result */ if(o_method==0){/* with mean removal */ if(columns==1){ double ave,sdev,min,max; moment_short(vals[0],rows,&ave,&sdev,&min,&max); for(t=tini;t<=tfin;t++){ size_t startindex = (t<0 ? -t : 0); size_t endindex = (t>0 ? rows-t : rows); res[t-tini]=0.0; for(i=startindex;i < endindex ;i++) res[t-tini] += (vals[0][i]-ave)*(vals[0][i+t]-ave); res[t-tini] /= (endindex-startindex-1)*sdev*sdev; } } else{ double ave1,sdev1,min1,max1; double ave2,sdev2,min2,max2; moment_short(vals[0],rows,&ave1,&sdev1,&min1,&max1); moment_short(vals[1],rows,&ave2,&sdev2,&min2,&max2); for(t=tini;t<=tfin;t++){ size_t startindex = (t<0 ? -t : 0); size_t endindex = (t>0 ? rows-t : rows); res[t-tini]=0.0; for(i=startindex;i < endindex ;i++) res[t-tini] += (vals[0][i]-ave1)*(vals[1][i+t]-ave2); res[t-tini] /= (endindex-startindex-1)*sdev1*sdev2; } } } else if(o_method==1){/* without mean removal */ /* the mean is assumed known and the denominator of the unbiased estimator of standard deviation is #obs. instead of #obs. -1 */ if(columns==1){ double sdev=0; for(i=0;i < rows ;i++) sdev += vals[0][i]*vals[0][i]; sdev /= rows; for(t=tini;t<=tfin;t++){ size_t startindex = (t<0 ? -t : 0); size_t endindex = (t>0 ? rows-t : rows); res[t-tini]=0.0; for(i=startindex;i < endindex ;i++) res[t-tini] += vals[0][i]*vals[0][i+t]; res[t-tini] /= (endindex-startindex)*sdev*sdev; } } else{ double sdev1=0, sdev2=0; for(i=0;i < rows ;i++){ sdev1 += vals[0][i]*vals[0][i]; sdev2 += vals[1][i]*vals[1][i]; } sdev1 /= rows; sdev2 /= rows; for(t=tini;t<=tfin;t++){ size_t startindex = (t<0 ? -t : 0); size_t endindex = (t>0 ? rows-t : rows); res[t-tini]=0.0; for(i=startindex;i < endindex ;i++) res[t-tini] += vals[0][i]*vals[1][i+t]; res[t-tini] /= (endindex-startindex)*sdev1*sdev2; } } } else{/* unknown method */ fprintf(stderr,"ERROR (%s): unknown method; use option -h\n", GB_PROGNAME); exit(+1); } /* print the result */ if(o_confidence==0){ for(t=tini;t<=tfin;t++){ printf(INT_SEP,t); printf(FLOAT_NL,res[t-tini]); } } else if(o_confidence==1){ for(t=tini;t<=tfin;t++){ const double r = res[t-tini]; if(-1 < r && r <1 ){ const double z = 0.5*log((1+r)/(1-r)); /* Fisher transformation */ const double zlow=z-gsl_cdf_ugaussian_Qinv(confidence/2)/sqrt(rows-fabs(t)-4); const double zhi=z+gsl_cdf_ugaussian_Qinv(confidence/2)/sqrt(rows-fabs(t)-4); printf(INT_SEP,t); printf(FLOAT_SEP,(exp(2*zlow)-1)/(exp(2*zlow)+1)); printf(FLOAT_SEP,r); printf(FLOAT_NL,(exp(2*zhi)-1)/(exp(2*zhi)+1)); } else{ printf(INT_SEP,t); printf(FLOAT_SEP,r); printf(FLOAT_SEP,r); printf(FLOAT_NL,r); } } } return(0); }