photoprint-0.4.2-pre2/0000777000175000017500000000000011400250525011570 500000000000000photoprint-0.4.2-pre2/pp_layout_single.h0000644000175000017500000000317311101462351015236 00000000000000#ifndef __PP_LAYOUT_SINGLE_H__ #define __PP_LAYOUT_SINGLE_H__ #include #include #include #include #include #include #include #include "stpui_widgets/units.h" #include "photoprint_state.h" #include "pp_sigcontrol.h" G_BEGIN_DECLS #define PP_LAYOUT_SINGLE_TYPE (pp_layout_single_get_type()) #define PP_LAYOUT_SINGLE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PP_LAYOUT_SINGLE_TYPE, pp_Layout_Single)) #define PP_LAYOUT_SINGLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PP_LAYOUT_SINGLE_TYPE, pp_Layout_SingleClass)) #define IS_PP_LAYOUT_SINGLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PP_LAYOUT_SINGLE_TYPE)) #define IS_PP_LAYOUT_SINGLE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PP_LAYOUT_SINGLE_TYPE)) typedef struct _pp_Layout_Single pp_Layout_Single; typedef struct _pp_Layout_SingleClass pp_Layout_SingleClass; struct _pp_Layout_Single { GtkHBox hbox; GtkWidget *pageview; GtkWidget *page; GtkWidget *pageextent; GtkWidget *hscale; GtkWidget *vscale; GtkWidget *imagecontrol; GtkSizeGroup *sizegroup; PhotoPrint_State *state; }; struct _pp_Layout_SingleClass { GtkHBoxClass parent_class; void (*changed)(pp_Layout_Single *book); void (*popupmenu)(pp_Layout_Single *book); void (*selection_changed)(pp_Layout_Single *book); }; GType pp_layout_single_get_type (void); GtkWidget* pp_layout_single_new (PhotoPrint_State *state); void pp_layout_single_refresh(pp_Layout_Single *ob); void pp_layout_single_set_unit(GtkWidget *wid,enum Units unit); G_END_DECLS #endif /* __PP_LAYOUT_SINGLE_H__ */ photoprint-0.4.2-pre2/pp_cms.cpp0000644000175000017500000005206411317363133013507 00000000000000/* * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include #include #include #include #include #include #include #include #include "pp_cms.h" #include "miscwidgets/simplecombo.h" #include "profilemanager/profileselector.h" #include "profilemanager/intentselector.h" #include "dialogs.h" #include "support/debug.h" #include "config.h" #include "gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) enum { CHANGED_SIGNAL, LAST_SIGNAL }; static guint pp_cms_signals[LAST_SIGNAL] = { 0 }; static void pp_cms_class_init (pp_CMSClass *klass); static void pp_cms_init (pp_CMS *stpuicombo); static void cms_changed(GtkWidget *wid,gpointer *ob) { pp_CMS *lo=(pp_CMS *)ob; pp_cms_refresh(lo); g_signal_emit(G_OBJECT (ob),pp_cms_signals[CHANGED_SIGNAL], 0); } void pp_cms_refresh(pp_CMS *ob) { Debug[TRACE] << "In pp_cms_refresh" << endl; int pa=gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(ob->printeractive)); int ra=gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(ob->rgbactive)); int ca=gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(ob->cmykactive)); int ma=gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(ob->monitoractive)); gtk_widget_set_sensitive(ob->printerprof,pa); gtk_widget_set_sensitive(ob->intent,pa); gtk_widget_set_sensitive(ob->displaymode,ma); gtk_widget_set_sensitive(ob->colourspace,!pa); gtk_widget_set_sensitive(ob->rgbprof,ra); gtk_widget_set_sensitive(ob->cmykprof,ca); gtk_widget_set_sensitive(ob->monitorprof,ma); IS_TYPE colourspace=simplecombo_get_index(SIMPLECOMBO(ob->colourspace)) ? IS_TYPE_CMYK : IS_TYPE_RGB; IS_TYPE dlcolourspace=colourspace; bool isdevicelink=false; Debug[TRACE] << "Getting profiles from widgets..." << endl; // Get colourspace from printer profile, if set. if(pa) { Debug[TRACE] << "Getting printer profile..." << endl; CMSProfile *p=ob->pm->GetProfile(profileselector_get_filename(PROFILESELECTOR(ob->printerprof))); if(p) { Debug[TRACE] << "Got printer profile..." << endl; colourspace=p->GetColourSpace(); if((isdevicelink=p->IsDeviceLink())) { dlcolourspace=colourspace; colourspace=p->GetDeviceLinkOutputSpace(); } delete p; } else { Debug[TRACE] << "Couldn't get printer profile..." << endl; pa=false; } } // Check RGB profile... if(ra) { CMSProfile *p=ob->pm->GetProfile(profileselector_get_filename(PROFILESELECTOR(ob->rgbprof))); if(p) delete p; else ra=false; } // Check CMYK profile... if(ra) { CMSProfile *p=ob->pm->GetProfile(profileselector_get_filename(PROFILESELECTOR(ob->cmykprof))); if(p) delete p; else ca=false; } // Check Monitor profile... if(ra) { CMSProfile *p=ob->pm->GetProfile(profileselector_get_filename(PROFILESELECTOR(ob->monitorprof))); if(p) delete p; else ma=false; } Debug[TRACE] << "Got colourspace: " << colourspace << endl; const gchar *rgbok=GTK_STOCK_NO; const char *rgbstatus=""; // Work out implications of current settings for RGB images if(isdevicelink) // implies printer active... { if(dlcolourspace==IS_TYPE_CMYK) { if(ca && ra) // do we have both RGB and CMYK default profiles { // Devicelink with CMYK input, CMYK profile available rgbok=GTK_STOCK_DIALOG_WARNING; rgbstatus=_("Printer profile is a devicelink with CMYK input - RGB images\nwill first be converted to the default CMYK profile"); } else if(ra) { // Devicelink with CMYK input, no CMYK profile available rgbok=GTK_STOCK_NO; rgbstatus=_("Printer profile is a devicelink with CMYK input - RGB images\ncannot be printed without a default CMYK profile."); } else { // Devicelink with CMYK input, no RGB or CMYK profile available rgbok=GTK_STOCK_NO; rgbstatus=_("Printer profile is a devicelink with CMYK input - RGB images\ncannot be printed without a default RGB and CMYK profile."); // Exception: input RGB files with embedded profiles - but explaining that would be complicated. } } else if(ra) { // Devicelink with RGB input rgbok=GTK_STOCK_DIALOG_WARNING; rgbstatus=_("Printer profile is a devicelink - RGB images with embedded profiles\nwill first be converted to the default RGB profile."); } else { // Devicelink with RGB input rgbok=GTK_STOCK_DIALOG_WARNING; rgbstatus=_("Printer profile is a devicelink - RGB images with embedded profiles will not\nprint correctly, since there is no default RGB profile."); } } else if(pa && ra) { rgbok=GTK_STOCK_YES; rgbstatus=_("RGB images will print correctly"); } else if(pa && colourspace==IS_TYPE_RGB) { rgbok=GTK_STOCK_DIALOG_WARNING; rgbstatus=_("RGB images can be printed but colours depend on the driver\n(Colours will be accurate for images that contain an embedded profile)"); } else if(colourspace==IS_TYPE_RGB) { rgbok=GTK_STOCK_DIALOG_WARNING; rgbstatus=_("RGB images can be printed but colours depend on the driver"); } else if(pa && colourspace==IS_TYPE_CMYK) { rgbok=GTK_STOCK_DIALOG_WARNING; rgbstatus=_("RGB images can only be printed if they have an embedded profile\n(Workflow is CMYK and there is no default RGB profile)"); } else if(colourspace==IS_TYPE_CMYK) { rgbok=GTK_STOCK_NO; rgbstatus=_("RGB images cannot be printed\n(Workflow is CMYK and there is no printer profile)"); } const gchar *cmykok=GTK_STOCK_NO; const char *cmykstatus=""; // Work out implications of current settings for CMYK images... if(isdevicelink) { if(dlcolourspace==IS_TYPE_RGB) { if(ra && ca) { // Devicelink with RGB input, CMYK profile available cmykok=GTK_STOCK_DIALOG_WARNING; cmykstatus=_("Printer profile is a devicelink with RGB input - CMYK images\nwill first be converted to the default RGB profile"); } else if(ca) { // Devicelink with RGB input, no CMYK profile available cmykok=GTK_STOCK_NO; cmykstatus=_("Printer profile is a devicelink with RGB input - CMYK images\ncannot be printed without a default RGB profile."); } else { // Devicelink with RGB input, no RGB or CMYK profile available cmykok=GTK_STOCK_NO; cmykstatus=_("Printer profile is a devicelink with RGB input - CMYK images\ncannot be printed without a default RGB and CMYK profile."); } } else if(ca) { // Devicelink with CMYK input cmykok=GTK_STOCK_DIALOG_WARNING; cmykstatus=_("Printer profile is a devicelink - CMYK images with embedded profiles\nwill first be converted to the default CMYK profile."); } else { // Devicelink with CMYK input cmykok=GTK_STOCK_DIALOG_WARNING; cmykstatus=_("Printer profile is a devicelink - CMYK images with embedded profiles will not\nprint correctly since there is no default CMYK profile."); } } else if(pa && ca) { cmykok=GTK_STOCK_YES; cmykstatus=_("CMYK images will print correctly"); } else if(pa && colourspace==IS_TYPE_CMYK) { cmykok=GTK_STOCK_DIALOG_WARNING; cmykstatus=_("CMYK images can be printed but colours depend on the driver\n(Colours will be accurate for images that contain an embedded profile)"); } else if(colourspace==IS_TYPE_CMYK) { cmykok=GTK_STOCK_DIALOG_WARNING; cmykstatus=_("CMYK images can be printed but colours depend on the driver"); } else if(pa && colourspace==IS_TYPE_RGB) { cmykok=GTK_STOCK_DIALOG_WARNING; cmykstatus=_("CMYK images can only be printed if they have an embedded profile\n(Workflow is RGB and there is no default CMYK profile)"); } else if(colourspace==IS_TYPE_RGB) { cmykok=GTK_STOCK_NO; cmykstatus=_("CMYK images cannot be printed\n(Workflow is RGB and there is no printer profile)"); } const gchar *monok=GTK_STOCK_NO; const char *monstatus=""; if(ma && ra) { monok=GTK_STOCK_YES; monstatus=_("Images will be displayed correctly"); } else if(ma) { monok=GTK_STOCK_DIALOG_WARNING; monstatus=_("Images will only be displayed correctly if they have an embedded profile"); } else { monok=GTK_STOCK_NO; monstatus=_("Images will not be displayed correctly"); } gtk_label_set_text(GTK_LABEL(ob->statusline[0]),rgbstatus); gtk_image_set_from_stock(GTK_IMAGE(ob->indicator[0]),rgbok, GTK_ICON_SIZE_SMALL_TOOLBAR); gtk_label_set_text(GTK_LABEL(ob->statusline[1]),cmykstatus); gtk_image_set_from_stock(GTK_IMAGE(ob->indicator[1]),cmykok, GTK_ICON_SIZE_SMALL_TOOLBAR); gtk_label_set_text(GTK_LABEL(ob->statusline[2]),monstatus); gtk_image_set_from_stock(GTK_IMAGE(ob->indicator[2]),monok, GTK_ICON_SIZE_SMALL_TOOLBAR); } GtkWidget* pp_cms_new (ProfileManager *pm) { pp_CMS *ob=PP_CMS(g_object_new (pp_cms_get_type (), NULL)); gtk_box_set_spacing(GTK_BOX(ob),5); ob->pm=pm; GtkSizeGroup *sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL); GtkWidget *frame; GtkWidget *label; GtkWidget *hbox; GtkWidget *vbox; // Printer frame frame=gtk_frame_new(_("Printer")); gtk_container_set_border_width(GTK_CONTAINER(frame),5); gtk_box_pack_start(GTK_BOX(ob),frame,FALSE,FALSE,0); gtk_widget_show(frame); vbox=gtk_vbox_new(FALSE,0); gtk_container_add(GTK_CONTAINER(frame),vbox); gtk_widget_show(vbox); // Checkbox and file entry. hbox=gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(vbox),hbox,TRUE,TRUE,0); gtk_widget_show(hbox); ob->printeractive=gtk_check_button_new_with_label(_("Printer Profile:")); g_signal_connect(G_OBJECT(ob->printeractive),"toggled",G_CALLBACK(cms_changed),ob); gtk_size_group_add_widget(GTK_SIZE_GROUP(sizegroup),ob->printeractive); gtk_box_pack_start(GTK_BOX(hbox),ob->printeractive,FALSE,FALSE,5); gtk_widget_show(ob->printeractive); ob->printerprof=profileselector_new(pm,IS_TYPE_NULL,true); g_signal_connect(G_OBJECT(ob->printerprof),"changed",G_CALLBACK(cms_changed),ob); gtk_box_pack_start(GTK_BOX(hbox),ob->printerprof,TRUE,TRUE,5); gtk_widget_show(ob->printerprof); // Rendering Intent hbox=gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(vbox),hbox,TRUE,TRUE,5); gtk_widget_show(hbox); label=gtk_label_new(_("Rendering intent:")); gtk_size_group_add_widget(GTK_SIZE_GROUP(sizegroup),label); gtk_box_pack_start(GTK_BOX(hbox),label,FALSE,FALSE,5); gtk_widget_show(label); ob->intent = intentselector_new(pm); gtk_box_pack_start(GTK_BOX(hbox),ob->intent,TRUE,TRUE,5); gtk_widget_show(ob->intent); // Printer Colour Space hbox=gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(vbox),hbox,TRUE,TRUE,5); gtk_widget_show(hbox); label=gtk_label_new(_("Colour space:")); gtk_size_group_add_widget(GTK_SIZE_GROUP(sizegroup),label); gtk_box_pack_start(GTK_BOX(hbox),label,FALSE,FALSE,5); gtk_widget_show(label); // Colourspace SimpleComboOptions csopts; csopts.Add("RGB",_("RGB"),_("Send Red, Green and Blue data to the printer driver")); csopts.Add("CMYK",_("CMYK"),_("Send Cyan, Magenta, Yellow and Black data to the printer driver")); ob->colourspace=simplecombo_new(csopts); g_signal_connect(G_OBJECT(ob->colourspace),"changed",G_CALLBACK(cms_changed),ob); gtk_box_pack_start(GTK_BOX(hbox),ob->colourspace,TRUE,TRUE,5); gtk_widget_show(ob->colourspace); // Monitor frame frame=gtk_frame_new(_("Monitor")); gtk_container_set_border_width(GTK_CONTAINER(frame),5); gtk_box_pack_start(GTK_BOX(ob),frame,FALSE,FALSE,0); gtk_widget_show(frame); vbox=gtk_vbox_new(FALSE,0); gtk_container_add(GTK_CONTAINER(frame),vbox); gtk_widget_show(vbox); hbox=gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(vbox),hbox,TRUE,TRUE,5); gtk_widget_show(hbox); ob->monitoractive=gtk_check_button_new_with_label(_("Monitor Profile:")); g_signal_connect(G_OBJECT(ob->monitoractive),"toggled",G_CALLBACK(cms_changed),ob); gtk_size_group_add_widget(GTK_SIZE_GROUP(sizegroup),ob->monitoractive); gtk_box_pack_start(GTK_BOX(hbox),ob->monitoractive,FALSE,FALSE,5); gtk_widget_show(ob->monitoractive); ob->monitorprof=profileselector_new(pm,IS_TYPE_RGB,false); g_signal_connect(G_OBJECT(ob->monitorprof),"changed",G_CALLBACK(cms_changed),ob); gtk_box_pack_start(GTK_BOX(hbox),ob->monitorprof,TRUE,TRUE,5); gtk_widget_show(ob->monitorprof); hbox=gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(vbox),hbox,TRUE,TRUE,5); gtk_widget_show(hbox); label=gtk_label_new(_("Display mode:")); gtk_size_group_add_widget(GTK_SIZE_GROUP(sizegroup),label); gtk_box_pack_start(GTK_BOX(hbox),label,FALSE,FALSE,5); gtk_widget_show(label); // Proof mode SimpleComboOptions pmopts; pmopts.Add("Normal",_("Normal"),_("Displays images' original colours, transformed to suit the monitor")); pmopts.Add("SimulatePrint",_("Simulate Print"),_("Simulates how colours will look when printed, imitating the paper's white point.")); pmopts.Add("SimulatePrintAdaptWhite",_("Simulate Print, Adapt White"),_("Simulates how colours will look when printed, adapting colours for the monitor's white point.")); ob->displaymode=simplecombo_new(pmopts); gtk_box_pack_start(GTK_BOX(hbox),ob->displaymode,TRUE,TRUE,5); gtk_widget_show(ob->displaymode); // Default Profiles frame frame=gtk_frame_new(_("Default Image Profiles")); gtk_container_set_border_width(GTK_CONTAINER(frame),5); gtk_box_pack_start(GTK_BOX(ob),frame,FALSE,FALSE,0); gtk_widget_show(frame); vbox=gtk_vbox_new(FALSE,0); gtk_container_add(GTK_CONTAINER(frame),vbox); gtk_widget_show(vbox); // RGB Profile - Checkbox and file entry. hbox=gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(vbox),hbox,TRUE,TRUE,0); gtk_widget_show(hbox); ob->rgbactive=gtk_check_button_new_with_label(_("RGB Profile:")); g_signal_connect(G_OBJECT(ob->rgbactive),"toggled",G_CALLBACK(cms_changed),ob); gtk_size_group_add_widget(GTK_SIZE_GROUP(sizegroup),ob->rgbactive); gtk_box_pack_start(GTK_BOX(hbox),ob->rgbactive,FALSE,FALSE,5); gtk_widget_show(ob->rgbactive); ob->rgbprof=profileselector_new(pm,IS_TYPE_RGB,false); g_signal_connect(G_OBJECT(ob->rgbprof),"changed",G_CALLBACK(cms_changed),ob); gtk_box_pack_start(GTK_BOX(hbox),ob->rgbprof,TRUE,TRUE,5); gtk_widget_show(ob->rgbprof); // CMYK Profile - Checkbox and file entry. hbox=gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(vbox),hbox,TRUE,TRUE,5); gtk_widget_show(hbox); ob->cmykactive=gtk_check_button_new_with_label(_("CMYK Profile:")); g_signal_connect(G_OBJECT(ob->cmykactive),"toggled",G_CALLBACK(cms_changed),ob); gtk_size_group_add_widget(GTK_SIZE_GROUP(sizegroup),ob->cmykactive); gtk_box_pack_start(GTK_BOX(hbox),ob->cmykactive,FALSE,FALSE,5); gtk_widget_show(ob->cmykactive); ob->cmykprof=profileselector_new(pm,IS_TYPE_CMYK,false); g_signal_connect(G_OBJECT(ob->cmykprof),"changed",G_CALLBACK(cms_changed),ob); gtk_box_pack_start(GTK_BOX(hbox),ob->cmykprof,TRUE,TRUE,5); gtk_widget_show(ob->cmykprof); GtkWidget *table=gtk_table_new(3,3,FALSE); gtk_table_set_col_spacings(GTK_TABLE(table),12); gtk_table_set_row_spacings(GTK_TABLE(table),3); gtk_box_pack_start(GTK_BOX(ob),table,FALSE,FALSE,3); gtk_widget_show(table); for(int i=0;i<3;++i) { GtkAttachOptions gao = (GtkAttachOptions)(GTK_EXPAND|GTK_FILL); ob->indicator[i]=gtk_image_new(); gtk_table_attach(GTK_TABLE(table),ob->indicator[i],1,2,i,i+1,GTK_SHRINK,gao,0,0); gtk_widget_show(ob->indicator[i]); ob->statusline[i]=gtk_label_new(""); gtk_misc_set_alignment(GTK_MISC(ob->statusline[i]),0,0.5); gtk_table_attach(GTK_TABLE(table),ob->statusline[i],2,3,i,i+1,gao,gao,0,0); gtk_widget_show(ob->statusline[i]); } g_object_unref(G_OBJECT(sizegroup)); pp_cms_refresh(ob); return(GTK_WIDGET(ob)); } GType pp_cms_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo pp_cms_info = { sizeof (pp_CMSClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) pp_cms_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (pp_CMS), 0, (GInstanceInitFunc) pp_cms_init, }; stpuic_type = g_type_register_static (GTK_TYPE_VBOX, "pp_CMS", &pp_cms_info, (GTypeFlags)0); } return stpuic_type; } static void pp_cms_class_init (pp_CMSClass *klass) { pp_cms_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (klass), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_CMSClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void pp_cms_init (pp_CMS *ob) { } void pp_cms_populate(pp_CMS *ob,PhotoPrint_State *db) { const char *pf; char *pf2; Debug[TRACE] << "Populating PP_CMS..." << endl; gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(ob->printeractive),db->profilemanager.FindInt("PrinterProfileActive")); pf=db->profilemanager.FindString("PrinterProfile"); if(pf && strlen(pf)) { if((pf2=db->profilemanager.SearchPaths(pf))) { Debug[TRACE] << "Setting printer profile to " << pf2 << endl; profileselector_set_filename(PROFILESELECTOR(ob->printerprof),pf2); free(pf2); } else profileselector_set_filename(PROFILESELECTOR(ob->printerprof),pf); } gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(ob->rgbactive),db->profilemanager.FindInt("DefaultRGBProfileActive")); pf=db->profilemanager.FindString("DefaultRGBProfile"); Debug[TRACE] << "Default RGB Profile" << pf; if(pf && strlen(pf)) { if((pf2=db->profilemanager.SearchPaths(pf))) { Debug[TRACE] << "Setting RGB profile to " << pf2 << endl; profileselector_set_filename(PROFILESELECTOR(ob->rgbprof),pf2); free(pf2); } else profileselector_set_filename(PROFILESELECTOR(ob->rgbprof),pf); } gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(ob->cmykactive),db->profilemanager.FindInt("DefaultCMYKProfileActive")); pf=db->profilemanager.FindString("DefaultCMYKProfile"); Debug[TRACE] << "Default CMYK Profile" << pf; if(pf && strlen(pf)) { if((pf2=db->profilemanager.SearchPaths(pf))) { Debug[TRACE] << "Setting CMYK profile to " << pf2 << endl; profileselector_set_filename(PROFILESELECTOR(ob->cmykprof),pf2); free(pf2); } else profileselector_set_filename(PROFILESELECTOR(ob->cmykprof),pf); } gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(ob->monitoractive),db->profilemanager.FindInt("MonitorProfileActive")); pf=db->profilemanager.FindString("MonitorProfile"); if(pf && strlen(pf)) { if((pf2=db->profilemanager.SearchPaths(pf))) { Debug[TRACE] << "Setting Monitor profile to " << pf2 << endl; profileselector_set_filename(PROFILESELECTOR(ob->monitorprof),pf2); free(pf2); } else profileselector_set_filename(PROFILESELECTOR(ob->monitorprof),pf); } intentselector_setintent(INTENTSELECTOR(ob->intent),LCMSWrapper_Intent(db->profilemanager.FindInt("RenderingIntent"))); simplecombo_set_index(SIMPLECOMBO(ob->displaymode),db->profilemanager.FindInt("ProofMode")); const char *cs=db->FindString("PrintColourSpace"); simplecombo_set(SIMPLECOMBO(ob->colourspace),cs); } void pp_cms_depopulate(pp_CMS *ob,PhotoPrint_State *db) { char *pf=NULL; db->profilemanager.SetInt("PrinterProfileActive",gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(ob->printeractive))); pf=db->profilemanager.MakeRelative(profileselector_get_filename(PROFILESELECTOR(ob->printerprof))); if(pf) Debug[TRACE] << "Printer profile: " << pf << endl; db->profilemanager.SetString("PrinterProfile",pf); free(pf); db->profilemanager.SetInt("DefaultRGBProfileActive",gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(ob->rgbactive))); pf=db->profilemanager.MakeRelative(profileselector_get_filename(PROFILESELECTOR(ob->rgbprof))); if(pf) Debug[TRACE] << "RGB profile: " << pf << endl; db->profilemanager.SetString("DefaultRGBProfile",pf); free(pf); db->profilemanager.SetInt("DefaultCMYKProfileActive",gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(ob->cmykactive))); pf=db->profilemanager.MakeRelative(profileselector_get_filename(PROFILESELECTOR(ob->cmykprof))); if(pf) Debug[TRACE] << "CMYK profile: " << pf << endl; db->profilemanager.SetString("DefaultCMYKProfile",pf); free(pf); db->profilemanager.SetInt("MonitorProfileActive",gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(ob->monitoractive))); pf=db->profilemanager.MakeRelative(profileselector_get_filename(PROFILESELECTOR(ob->monitorprof))); if(pf) Debug[TRACE] << "Monitor profile: " << pf << endl; db->profilemanager.SetString("MonitorProfile",pf); free(pf); db->profilemanager.SetInt("RenderingIntent",intentselector_getintent(INTENTSELECTOR(ob->intent))); // FIXME - need a better way of handling integer keys db->profilemanager.SetInt("ProofMode",simplecombo_get_index(SIMPLECOMBO(ob->displaymode))); const char *cs=simplecombo_get(SIMPLECOMBO(ob->colourspace)); db->SetString("PrintColourSpace",cs); } void pp_cms_run_dialog(PhotoPrint_State *db,GtkWindow *parent) { GtkWidget *dialog=gtk_dialog_new_with_buttons(_("Colour Management"), parent,GtkDialogFlags(0), GTK_STOCK_CANCEL,GTK_RESPONSE_CANCEL, GTK_STOCK_OK,GTK_RESPONSE_OK, NULL); GtkWidget *cms=pp_cms_new(&db->profilemanager); gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox),cms,FALSE,FALSE,0); gtk_widget_show(cms); pp_cms_populate(PP_CMS(cms),db); gtk_widget_show(dialog); gint result=gtk_dialog_run(GTK_DIALOG(dialog)); switch(result) { case GTK_RESPONSE_CANCEL: break; case GTK_RESPONSE_OK: pp_cms_depopulate(PP_CMS(cms),db); break; } gtk_widget_destroy(dialog); } photoprint-0.4.2-pre2/layout_nup.cpp0000644000175000017500000002460011266365571014433 00000000000000/* * layout_nup.cpp - Has responsibility for tracking the list of images and their layout. * Also has responsibility for building the ImageSource stack at print time. * Subclass of Signature, which provides coordinates of image rectangles in n-up layout. * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * * 2004-12-10: No longer opens the imagesource when placing an image, since we should now * be able to handle anything GdkPixbuf can handle. * * 2004-12-24 Getting the actual imagesource (with CMS transform) from the ImageInfo * is now delegated to the superclasses. * */ #include #include #include "miscwidgets/generaldialogs.h" #include "dialogs.h" #include "pixbufthumbnail/egg-pixbuf-thumbnail.h" #include "imageutils/rotatepixbuf.h" #include "imagesource/imagesource_util.h" #include "imagesource/imagesource_cms.h" #include "imagesource/imagesource_scale.h" #include "imagesource/imagesource_rotate.h" #include "imagesource/imagesource_crop.h" #include "imagesource/imagesource_promote.h" #include "imagesource/imagesource_montage.h" #include "imagesource/imagesource_solid.h" #include "support/debug.h" #include "photoprint_state.h" #include "pp_layout_nup.h" #include "layout_nup.h" using namespace std; ConfigTemplate Layout_NUpDB::Template[]= { ConfigTemplate("Rows",int(2)), ConfigTemplate("Columns",int(2)), ConfigTemplate("HGutter",int(DEFAULTGUTTER)), ConfigTemplate("VGutter",int(DEFAULTGUTTER)), ConfigTemplate("LeftMargin",int(-1)), ConfigTemplate("RightMargin",int(-1)), ConfigTemplate("TopMargin",int(-1)), ConfigTemplate("BottomMargin",int(-1)), ConfigTemplate("CellWidth",int(0)), ConfigTemplate("CellHeight",int(0)), ConfigTemplate("AbsoluteMode",int(0)), ConfigTemplate() }; Layout_NUp_ImageInfo::Layout_NUp_ImageInfo(Layout_NUp &layout, const char *filename,int row,int column,int page,bool allowcropping,PP_ROTATION rotation) : Layout_ImageInfo((Layout &)layout,filename,page,allowcropping,rotation), row(row), column(column) { } Layout_NUp_ImageInfo::Layout_NUp_ImageInfo(Layout_NUp &layout, Layout_ImageInfo *ii,int row,int column,int page) : Layout_ImageInfo((Layout &)layout,ii,page), row(row), column(column) { } Layout_NUp_ImageInfo::~Layout_NUp_ImageInfo() { } LayoutRectangle *Layout_NUp_ImageInfo::GetBounds() { Layout_NUp *l=(Layout_NUp *)&layout; return(l->GetLayoutRectangle(row,column)); } void Layout_NUp_ImageInfo::DrawThumbnail(GtkWidget *widget,int xpos,int ypos,int width,int height) { LayoutRectangle *target=GetBounds(); double scale=width; scale/=layout.pagewidth; target->Scale(scale); Layout_ImageInfo::DrawThumbnail(widget,xpos+target->x,ypos+target->y,target->w,target->h); delete target; } Layout_NUp::Layout_NUp(PhotoPrint_State &state,Layout *oldlayout) : Layout(state,oldlayout), Signature() { } Layout_NUp::~Layout_NUp() { } void Layout_NUp::Reflow() { int row=0; int column=-1; int page=0; CancelRenderThreads(); LayoutIterator it(*this); Layout_NUp_ImageInfo *ii=(Layout_NUp_ImageInfo *)it.FirstImage(); while(ii) { ++column; if(column>=GetColumns()) { column=0; ++row; if(row>=GetRows()) { row=0; ++page; } } ii->row=row; ii->column=column; ii->page=page; ii=(Layout_NUp_ImageInfo *)it.NextImage(); } pages=page+1; if(currentpage>page) currentpage=page; } bool Layout_NUp::PlaceImage(const char *filename,int page,int row, int column,bool cropfit,PP_ROTATION rotate) { Layout_NUp_ImageInfo *ii=NULL; try { ii=new Layout_NUp_ImageInfo(*this,filename,row,column,page,cropfit,rotate); } catch(const char *msg) { Debug[ERROR] << "Caught exception" << msg << endl; ErrorMessage_Dialog(msg); if(ii) delete ii; } if(ii) { imagelist.push_back(ii); if(page>=pages) ++pages; Debug[TRACE] << "Bumped page numbers" << endl; return(true); } return(false); } int Layout_NUp::FreeSlots() { int totalslots=GetRows()*GetColumns(); int count=0; LayoutIterator it(*this); Layout_ImageInfo *ii=it.FirstImage(); while(ii) { if(ii->page==currentpage) ++count; ii=it.NextImage(); } return(totalslots-count); } void Layout_NUp::FindFirstFree(int &page,int &row,int &column) { page=0; row=0; column=-1; LayoutIterator it(*this); Layout_NUp_ImageInfo *ii=(Layout_NUp_ImageInfo *)it.FirstImage(); while(ii) { if(ii->page>=page) { if(ii->page>page) { row=0; column=-1; } page=ii->page; if(ii->row>=row) { if(ii->row>row) column=-1; row=ii->row; if(ii->column>column) column=ii->column; } } ii=(Layout_NUp_ImageInfo *)it.NextImage(); } ++column; if(column>=GetColumns()) { column=0; ++row; if(row>=GetRows()) { row=0; ++page; } } } int Layout_NUp::AddImage(const char *filename,bool allowcropping,PP_ROTATION rotation) { int page,row,column; FindFirstFree(page,row,column); Debug[TRACE] << "Placing image at " << page << ", " << row << ", " << column << endl; if(PlaceImage(filename,page,row,column,allowcropping,rotation)) return(page); else return(currentpage); } void Layout_NUp::CopyImage(Layout_ImageInfo *ii) { int page,row,column; FindFirstFree(page,row,column); ii=new Layout_NUp_ImageInfo(*this,ii,row,column,page); imagelist.push_back(ii); if(page>=pages) ++pages; } ImageSource *Layout_NUp::GetImageSource(int page,CMColourDevice target,CMTransformFactory *factory,int res,bool completepage) { ImageSource *result=NULL; enum IS_TYPE colourspace=GetColourSpace(target); IS_ScalingQuality qual=IS_ScalingQuality(state.FindInt("ScalingQuality")); if(!res) res=state.FindInt("RenderingResolution"); ImageSource_Montage *mon=new ImageSource_Montage(colourspace,res); LayoutIterator it(*this); Layout_NUp_ImageInfo *ii=(Layout_NUp_ImageInfo *)it.FirstImage(); while(ii) { if(ii->page==page) { ImageSource *img=ii->GetImageSource(target,factory); if(img) { LayoutRectangle r(img->width,img->height); LayoutRectangle *target=ii->GetBounds(); double scale=res; scale/=72.0; target->Scale(scale); RectFit *fit=r.Fit(*target,ii->allowcropping,ii->rotation,ii->crop_hpan,ii->crop_vpan); if(fit->rotation) img=new ImageSource_Rotate(img,fit->rotation); img=ISScaleImageBySize(img,fit->width,fit->height,qual); img->SetResolution(res,res); if(fit->width>target->w) fit->width=target->w; if(fit->height>target->h) fit->height=target->h; if(img->widthwidth) fit->width=img->width; if(img->heightheight) fit->height=img->height; Debug[TRACE] << "xoffset: " << fit->xoffset << endl; Debug[TRACE] << "yoffset: " << fit->yoffset << endl; if(ii->allowcropping) { Debug[TRACE] << "Cropping" << endl; img=new ImageSource_Crop(img,fit->xoffset,fit->yoffset,fit->width,fit->height); } else Debug[TRACE] << "Not cropping" << endl; img=ii->ApplyMask(img); mon->Add(img,fit->xpos,fit->ypos); delete fit; } } ii=(Layout_NUp_ImageInfo *)it.NextImage(); } result=mon; // Load background image, if present... if(backgroundfilename) { ImageSource *is=ISLoadImage(backgroundfilename); IS_TYPE colourspace=GetColourSpace(target); if(STRIP_ALPHA(is->type)==IS_TYPE_GREY) is=new ImageSource_Promote(is,colourspace); if(STRIP_ALPHA(is->type)==IS_TYPE_BW) is=new ImageSource_Promote(is,colourspace); if(factory) { CMSTransform *transform=factory->GetTransform(target,is); if(transform) is=new ImageSource_CMS(is,transform); } if((is->widthheight)^(pagewidthAdd(is,0,0); } else if(completepage) { // If the completepage flag is set we need to render a solid background. // This will be used for print preview and TIFF/JPEG export. IS_TYPE colourspace=GetColourSpace(target); ISDataType white[5]={0,0,0,0,0}; if(STRIP_ALPHA(colourspace)==IS_TYPE_RGB) white[0]=white[1]=white[2]=IS_SAMPLEMAX; if(factory) { CMSTransform *transform=factory->GetTransform(target,colourspace); if(transform) transform->Transform(white,white,1); } mon->Add(new ImageSource_Solid(colourspace,(pagewidth*res)/72,(pageheight*res)/72,white),0,0); } return(result); } void Layout_NUp::DBToLayout(LayoutDB &db) { Layout::DBToLayout(db); SetPageExtent(state.printer); SetRows(db.nupdb.FindInt("Rows")); SetColumns(db.nupdb.FindInt("Columns")); SetGutters(db.nupdb.FindInt("HGutter"),db.nupdb.FindInt("VGutter")); SetMargins(db.nupdb.FindInt("LeftMargin"),db.nupdb.FindInt("RightMargin"), db.nupdb.FindInt("TopMargin"),db.nupdb.FindInt("BottomMargin")); if(db.nupdb.FindInt("AbsoluteMode")) { SetCellWidth(db.nupdb.FindInt("CellWidth")); SetCellHeight(db.nupdb.FindInt("CellHeight")); } } void Layout_NUp::LayoutToDB(LayoutDB &db) { Layout::LayoutToDB(db); db.nupdb.SetInt("Rows",GetRows()); db.nupdb.SetInt("Columns",GetColumns()); db.nupdb.SetInt("HGutter",GetHGutter()); db.nupdb.SetInt("VGutter",GetVGutter()); db.nupdb.SetInt("LeftMargin",leftmargin); db.nupdb.SetInt("RightMargin",rightmargin); db.nupdb.SetInt("TopMargin",topmargin); db.nupdb.SetInt("BottomMargin",bottommargin); db.nupdb.SetInt("CellWidth",GetCellWidth()); db.nupdb.SetInt("CellHeight",GetCellHeight()); db.nupdb.SetInt("AbsoluteMode",absolutemode); } Layout_NUp_ImageInfo *Layout_NUp::ImageAt(int page, int row, int column) { Layout_NUp_ImageInfo *result=NULL; LayoutIterator it(*this); Layout_ImageInfo *ii=it.FirstImage(); while(ii) { Layout_NUp_ImageInfo *nii=(Layout_NUp_ImageInfo *)ii; if(nii->page==page && nii->row==row && nii->column==column) { result=nii; } ii=it.NextImage(); } return(result); } GtkWidget *Layout_NUp::CreateWidget() { return(pp_layout_nup_new(&state)); } void Layout_NUp::RefreshWidget(GtkWidget *widget) { pp_layout_nup_refresh(PP_LAYOUT_NUP(widget)); } const char *Layout_NUp::GetType() { return("NUp"); } void (*Layout_NUp::SetUnitFunc())(GtkWidget *wid,enum Units unit) { return(pp_layout_nup_set_unit); } Layout_ImageInfo *Layout_NUp::ImageAtCoord(int x,int y) { int r=RowAt(y); int c=ColumnAt(x); return(ImageAt(GetCurrentPage(),r,c)); } int Layout_NUp::GetCapabilities() { return(PPLAYOUT_CROP|PPLAYOUT_ROTATE|PPLAYOUT_MASK|PPLAYOUT_EFFECTS|PPLAYOUT_BACKGROUND|PPLAYOUT_PROFILE|PPLAYOUT_DUPLICATE); } photoprint-0.4.2-pre2/pp_units.cpp0000644000175000017500000000761311101462351014060 00000000000000/* * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include #include #include #include #include #include #include #include #include "pp_units.h" #include "dialogs.h" #include "config.h" #include "gettext.h" #define _(x) gettext(x) enum { CHANGED_SIGNAL, LAST_SIGNAL }; static guint pp_units_signals[LAST_SIGNAL] = { 0 }; static void pp_units_class_init (pp_UnitsClass *klass); static void pp_units_init (pp_Units *stpuicombo); void pp_units_refresh(pp_Units *ob) { } GtkWidget* pp_units_new () { pp_Units *ob=PP_UNITS(g_object_new (pp_units_get_type (), NULL)); gtk_box_set_spacing(GTK_BOX(ob),5); GtkWidget *label; GtkWidget *hbox; hbox=gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(ob),hbox,TRUE,TRUE,0); gtk_widget_show(hbox); label=gtk_label_new(_("Units:")); gtk_box_pack_start(GTK_BOX(hbox),label,FALSE,FALSE,0); gtk_widget_show(label); ob->unitselector = gtk_option_menu_new (); GtkWidget *menu, *menu_item; menu = gtk_menu_new (); menu_item = gtk_menu_item_new_with_label (_("Points")); gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item); gtk_widget_show (menu_item); menu_item = gtk_menu_item_new_with_label (_("Inches")); gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item); gtk_widget_show (menu_item); menu_item = gtk_menu_item_new_with_label (_("Millimeters")); gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item); gtk_widget_show (menu_item); menu_item = gtk_menu_item_new_with_label (_("Centimeters")); gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item); gtk_widget_show (menu_item); gtk_option_menu_set_menu (GTK_OPTION_MENU (ob->unitselector), menu); gtk_box_pack_start(GTK_BOX(hbox),ob->unitselector,TRUE,TRUE,5); gtk_widget_show(ob->unitselector); pp_units_refresh(ob); return(GTK_WIDGET(ob)); } GType pp_units_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo pp_units_info = { sizeof (pp_UnitsClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) pp_units_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (pp_Units), 0, (GInstanceInitFunc) pp_units_init, }; stpuic_type = g_type_register_static (GTK_TYPE_VBOX, "pp_Units", &pp_units_info, (GTypeFlags)0); } return stpuic_type; } static void pp_units_class_init (pp_UnitsClass *klass) { pp_units_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (klass), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_UnitsClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void pp_units_init (pp_Units *ob) { } void pp_units_set_unit(pp_Units *ob,enum Units unit) { gtk_option_menu_set_history(GTK_OPTION_MENU(ob->unitselector),unit); } enum Units pp_units_get_unit(pp_Units *ob) { int u=gtk_option_menu_get_history(GTK_OPTION_MENU(ob->unitselector)); return(Units(u)); } enum Units pp_units_run_dialog(enum Units unit,GtkWindow *parent) { GtkWidget *dialog=gtk_dialog_new_with_buttons(_("Units"), parent,GtkDialogFlags(0), GTK_STOCK_CANCEL,GTK_RESPONSE_CANCEL, GTK_STOCK_OK,GTK_RESPONSE_OK, NULL); GtkWidget *uw=pp_units_new(); pp_units_set_unit(PP_UNITS(uw),unit); gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox),uw,FALSE,FALSE,0); gtk_widget_show(uw); gtk_widget_show(dialog); gint result=gtk_dialog_run(GTK_DIALOG(dialog)); switch(result) { case GTK_RESPONSE_CANCEL: break; case GTK_RESPONSE_OK: unit=pp_units_get_unit(PP_UNITS(uw)); break; } gtk_widget_destroy(dialog); return(unit); } photoprint-0.4.2-pre2/photoprint.10000644000175000017500000000403411101462351013775 00000000000000.\" Hey, EMACS: -*- nroff -*- .\" First parameter, NAME, should be all caps .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection .\" other parameters are allowed: see man(7), man(1) .TH PHOTOPRINT 1 "Feb 3 2005" .\" Please adjust this date whenever revising the manpage. .\" .\" Some roff macros, for reference: .\" .nh disable hyphenation .\" .hy enable hyphenation .\" .ad l left justify .\" .ad b justify to both left and right margins .\" .nf disable filling .\" .fi enable filling .\" .br insert line break .\" .sp insert n+1 empty lines .\" for manpage-specific macros, see man(7) .SH NAME photoprint \- a utility to print images using Gutenprint. .SH SYNOPSIS .B photoprint [-h] [--help] [-v] [--version] [-p \fI\fP] [--preset \fI\fP] [-b] [--bbatch] [images ...] .SH DESCRIPTION .B photoprint is a utility to print multiple images per sheet, using Gutenprint, with support for 16-bit images and ICC profiles. .PP .\" TeX users may be more comfortable with the \fB\fP and .\" \fI\fP escape sequences to invode bold face and italics, .\" respectively. \fBWARNING\fP This software is experimental - use it at your own risk. .SH OPTIONS These programs follow the usual GNU command line syntax, with long options starting with two dashes (`-'). .TP .B \-h, \-\-help Show summary of options. .TP .B \-v, \-\-version Show version of program. .TP .B \-p, \-\-preset Load a specific preset file on startup. To store you probably want to create a \fI.photoprint\fP directory in your home directory. Then use the printer setup menu options to create settings suitable for your printer, and select Save Preset, Save As or Save Default to store them to disk. .SH SEE ALSO .BR gutenprint (7), .br .SH AUTHOR .B photoprint was written by Alastair M. Robinson . .PP This manual page was written by Christophe Labouisse , for the Debian project (but may be used by others). photoprint-0.4.2-pre2/pp_layout_carousel_pageview.cpp0000644000175000017500000003532111306464220020020 00000000000000 #include #include #include #include #include #include #include "support/debug.h" #include "support/layoutrectangle.h" #include "stpui_widgets/stpui_combo.h" #include "progressbar.h" #include "pp_layout_carousel_pageview.h" #define PAGEVIEW_DEFAULT_WIDTH 250 #define PAGEVIEW_DEFAULT_HEIGHT 320 enum { CHANGED_SIGNAL, REFLOW_SIGNAL, SELECTIONCHANGED_SIGNAL, POPUPMENU_SIGNAL, LAST_SIGNAL }; static guint pp_layout_carousel_pageview_signals[LAST_SIGNAL] = { 0 }; static void pp_layout_carousel_pageview_class_init (pp_Layout_Carousel_PageViewClass *klass); static void pp_layout_carousel_pageview_init (pp_Layout_Carousel_PageView *pageview); static void pp_layout_carousel_pageview_realize (GtkWidget *widget); static void pp_layout_carousel_pageview_size_request (GtkWidget *widget, GtkRequisition *requisition); static void pp_layout_carousel_pageview_size_allocate (GtkWidget *widget, GtkAllocation *allocation); static gboolean pp_layout_carousel_pageview_expose (GtkWidget *widget, GdkEventExpose *event); static gboolean pp_layout_carousel_pageview_button_press (GtkWidget *widget, GdkEventButton *event); static gboolean pp_layout_carousel_pageview_button_release (GtkWidget *widget, GdkEventButton *event); static gboolean pp_layout_carousel_pageview_motion_notify (GtkWidget *widget, GdkEventMotion *event); #define TARGET_URI_LIST 1 static GtkTargetEntry dnd_file_drop_types[] = { { "text/uri-list", 0, TARGET_URI_LIST } }; static gint dnd_file_drop_types_count = 1; static void get_dnd_data(GtkWidget *widget, GdkDragContext *context, gint x, gint y, GtkSelectionData *selection_data, guint info, guint time, gpointer data) { gchar *uris=g_strdup((const gchar *)selection_data->data); gchar *urilist=uris; int lastpage=0; pp_Layout_Carousel_PageView *pv=PP_LAYOUT_CAROUSEL_PAGEVIEW(widget); ProgressBar progress("Adding images...",false); while(*urilist) { if(strncmp(urilist,"file:",5)) { while(*urilist && *urilist!='\n' && *urilist!='\r') ++urilist; while(*urilist=='\n' || *urilist=='\r') *urilist++; } else { Debug[TRACE] << "URIList: " << urilist << endl; gchar *uri=urilist; while(*urilist && *urilist!='\n' && *urilist!='\r') ++urilist; if(*urilist) { while(*urilist=='\n' || *urilist=='\r') *urilist++=0; } if(*uri && *uri!='\n' && *uri!='\r') { gchar *filename=g_filename_from_uri(uri,NULL,NULL); lastpage=pv->layout->AddImage(filename); pp_layout_carousel_pageview_refresh(pv); g_signal_emit_by_name (GTK_OBJECT (pv), "changed"); progress.DoProgress(0,0); } } } pv->layout->SetCurrentPage(lastpage); pp_layout_carousel_pageview_set_page(pv,lastpage); g_signal_emit_by_name (GTK_OBJECT (pv), "changed"); g_free(uris); } /* Local data */ static GtkWidgetClass *parent_class = NULL; GType pp_layout_carousel_pageview_get_type () { static GType pageview_type = 0; if (!pageview_type) { static const GTypeInfo pageview_info = { sizeof (pp_Layout_Carousel_PageViewClass), NULL, NULL, (GClassInitFunc) pp_layout_carousel_pageview_class_init, NULL, NULL, sizeof (pp_Layout_Carousel_PageView), 0, (GInstanceInitFunc) pp_layout_carousel_pageview_init, }; pageview_type = g_type_register_static (GTK_TYPE_WIDGET, "pp_Layout_Carousel_PageView", &pageview_info, GTypeFlags(0)); } return pageview_type; } static void pp_layout_carousel_pageview_class_init (pp_Layout_Carousel_PageViewClass *cl) { GtkObjectClass *object_class; GtkWidgetClass *widget_class; object_class = (GtkObjectClass*) cl; widget_class = (GtkWidgetClass*) cl; parent_class = GTK_WIDGET_CLASS(gtk_type_class (gtk_widget_get_type ())); widget_class->realize = pp_layout_carousel_pageview_realize; widget_class->expose_event = pp_layout_carousel_pageview_expose; widget_class->size_request = pp_layout_carousel_pageview_size_request; widget_class->size_allocate = pp_layout_carousel_pageview_size_allocate; widget_class->button_press_event = pp_layout_carousel_pageview_button_press; widget_class->button_release_event = pp_layout_carousel_pageview_button_release; widget_class->motion_notify_event = pp_layout_carousel_pageview_motion_notify; pp_layout_carousel_pageview_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (cl), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_Layout_Carousel_PageViewClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); pp_layout_carousel_pageview_signals[REFLOW_SIGNAL] = g_signal_new ("reflow", G_TYPE_FROM_CLASS (cl), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_Layout_Carousel_PageViewClass, reflow), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); pp_layout_carousel_pageview_signals[SELECTIONCHANGED_SIGNAL] = g_signal_new ("selection_changed", G_TYPE_FROM_CLASS (cl), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_Layout_Carousel_PageViewClass, selection_changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); pp_layout_carousel_pageview_signals[REFLOW_SIGNAL] = g_signal_new ("popupmenu", G_TYPE_FROM_CLASS (cl), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_Layout_Carousel_PageViewClass, popupmenu), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void pp_layout_carousel_pageview_init (pp_Layout_Carousel_PageView *pageview) { pageview->button = 0; pageview->timer = 0; pageview->selected=NULL; } GtkWidget* pp_layout_carousel_pageview_new (Layout_Carousel *layout) { pp_Layout_Carousel_PageView *pageview; pageview = PP_LAYOUT_CAROUSEL_PAGEVIEW(g_object_new (pp_layout_carousel_pageview_get_type (), NULL)); gtk_drag_dest_set(GTK_WIDGET(pageview), GtkDestDefaults(GTK_DEST_DEFAULT_MOTION | GTK_DEST_DEFAULT_DROP), dnd_file_drop_types, dnd_file_drop_types_count, GdkDragAction(GDK_ACTION_COPY | GDK_ACTION_MOVE | GDK_ACTION_LINK)); g_signal_connect(G_OBJECT(pageview), "drag_data_received", G_CALLBACK(get_dnd_data), NULL); pageview->layout=layout; return GTK_WIDGET (pageview); } static void pp_layout_carousel_pageview_realize (GtkWidget *widget) { pp_Layout_Carousel_PageView *pageview; GdkWindowAttr attributes; gint attributes_mask; g_return_if_fail (widget != NULL); g_return_if_fail (PP_IS_PAGEVIEW (widget)); GTK_WIDGET_SET_FLAGS (widget, GTK_REALIZED); pageview = PP_LAYOUT_CAROUSEL_PAGEVIEW (widget); attributes.x = widget->allocation.x; attributes.y = widget->allocation.y; attributes.width = widget->allocation.width; attributes.height = widget->allocation.height; attributes.wclass = GDK_INPUT_OUTPUT; attributes.window_type = GDK_WINDOW_CHILD; attributes.event_mask = gtk_widget_get_events (widget) | GDK_EXPOSURE_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK; attributes.visual = gtk_widget_get_visual (widget); attributes.colormap = gtk_widget_get_colormap (widget); attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL | GDK_WA_COLORMAP; widget->window = gdk_window_new (widget->parent->window, &attributes, attributes_mask); widget->style = gtk_style_attach (widget->style, widget->window); gdk_window_set_user_data (widget->window, widget); gtk_style_set_background (widget->style, widget->window, GTK_STATE_ACTIVE); } static void pp_layout_carousel_pageview_size_request (GtkWidget *widget, GtkRequisition *requisition) { requisition->width = PAGEVIEW_DEFAULT_WIDTH; requisition->height = PAGEVIEW_DEFAULT_HEIGHT; } static void pp_layout_carousel_pageview_size_allocate (GtkWidget *widget, GtkAllocation *allocation) { pp_Layout_Carousel_PageView *pageview; g_return_if_fail (widget != NULL); g_return_if_fail (PP_IS_PAGEVIEW (widget)); g_return_if_fail (allocation != NULL); widget->allocation = *allocation; pageview = PP_LAYOUT_CAROUSEL_PAGEVIEW (widget); if (GTK_WIDGET_REALIZED (widget)) { gdk_window_move_resize (widget->window, allocation->x, allocation->y, allocation->width, allocation->height); } } static gboolean pp_layout_carousel_pageview_expose( GtkWidget *widget, GdkEventExpose *event ) { pp_Layout_Carousel_PageView *pageview; g_return_val_if_fail (widget != NULL, FALSE); g_return_val_if_fail (PP_IS_PAGEVIEW (widget), FALSE); g_return_val_if_fail (event != NULL, FALSE); if (event->count > 0) return FALSE; pageview = PP_LAYOUT_CAROUSEL_PAGEVIEW (widget); pageview->height=widget->allocation.height; pageview->width=(pageview->layout->pagewidth*pageview->height)/pageview->layout->pageheight; if(pageview->width>widget->allocation.width) { pageview->width=widget->allocation.width; pageview->height=(pageview->layout->pageheight*pageview->width)/pageview->layout->pagewidth; } pageview->top=(widget->allocation.height-pageview->height)/2; pageview->left=(widget->allocation.width-pageview->width)/2; pageview->scale=pageview->width; pageview->scale/=pageview->layout->pagewidth; pageview->layout->DrawPreview(widget,pageview->left,pageview->top,pageview->width,pageview->height); LayoutIterator it(*pageview->layout); Layout_ImageInfo *ii=it.FirstSelected(); while(ii) { if(ii->page==pageview->layout->GetCurrentPage()) { LayoutRectangle *s=ii->GetBounds(); s->Scale(pageview->scale); gdk_draw_rectangle (widget->window, widget->style->dark_gc[widget->state],FALSE, pageview->left+s->x,pageview->top+s->y,s->w,s->h); gdk_draw_rectangle (widget->window, widget->style->dark_gc[widget->state],FALSE, pageview->left+s->x-1,pageview->top+s->y-1,s->w+2,s->h+2); delete s; } ii=it.NextSelected(); } return FALSE; } static gboolean pp_layout_carousel_pageview_button_press( GtkWidget *widget, GdkEventButton *event ) { pp_Layout_Carousel_PageView *pageview; g_return_val_if_fail (widget != NULL, FALSE); g_return_val_if_fail (PP_IS_PAGEVIEW (widget), FALSE); g_return_val_if_fail (event != NULL, FALSE); pageview = PP_LAYOUT_CAROUSEL_PAGEVIEW (widget); int x=int(event->x-pageview->left); int y=int(event->y-pageview->top); bool shift=(event->state&GDK_SHIFT_MASK)!=0; bool ctrl=(event->state&GDK_CONTROL_MASK)!=0; if(x>0 && y>0 && xwidth && yheight && pageview->scale>0.0) { double sx=x/pageview->scale; double sy=y/pageview->scale; Layout_ImageInfo *prevselected=pageview->selected; pageview->selected=pageview->layout->ImageAtCoord(int(sx),int(sy)); switch(event->button) { case 1: if(!(shift||ctrl)) { if(pageview->selected) { pageview->dragging=true; pageview->init_x=x; pageview->init_y=y; pageview->init_hpan=pageview->selected->crop_hpan; pageview->init_vpan=pageview->selected->crop_vpan; gtk_grab_add(widget); } else pageview->dragging=false; pageview->layout->SelectNone(); } if(pageview->selected) { if(ctrl) pageview->selected->ToggleSelected(); else if(shift) { if(prevselected) { LayoutIterator it(*pageview->layout); Layout_ImageInfo *ii=it.FirstImage(); bool selecting=false; while(ii) { if((ii==prevselected) || (ii==pageview->selected)) { if(selecting) ii->SetSelected(true); selecting^=true; } if(selecting) ii->SetSelected(true); ii=it.NextImage(); } } else pageview->selected->SetSelected(true); } else pageview->selected->SetSelected(true); } pp_layout_carousel_pageview_refresh(pageview); g_signal_emit_by_name (GTK_OBJECT (pageview), "selection_changed"); break; case 3: if(!(shift||ctrl)) { if(pageview->selected) { if(!pageview->selected->GetSelected()) pageview->layout->SelectNone(); } else pageview->layout->SelectNone(); } if(pageview->selected) { pageview->selected->SetSelected(true); pp_layout_carousel_pageview_refresh(pageview); g_signal_emit_by_name (GTK_OBJECT (pageview), "selection_changed"); g_signal_emit_by_name (GTK_OBJECT (pageview), "popupmenu"); } break; default: break; } } return FALSE; } static gboolean pp_layout_carousel_pageview_motion_notify( GtkWidget *widget, GdkEventMotion *event ) { pp_Layout_Carousel_PageView *pageview; g_return_val_if_fail (widget != NULL, FALSE); g_return_val_if_fail (PP_IS_PAGEVIEW (widget), FALSE); g_return_val_if_fail (event != NULL, FALSE); pageview = PP_LAYOUT_CAROUSEL_PAGEVIEW (widget); Layout_ImageInfo *ii=pageview->selected; if (pageview->dragging && ii) { int x,y; GdkModifierType mods; gdk_window_get_pointer (widget->window, &x, &y, &mods); int dx=(x-pageview->init_x); int dy=(y-pageview->init_y); int hp=pageview->init_hpan-dx; int vp=pageview->init_vpan-dy; if(hp<0) hp=0; if(hp>LAYOUT_RECTANGLE_PANNING_MAX) hp=LAYOUT_RECTANGLE_PANNING_MAX; if(vp<0) vp=0; if(vp>LAYOUT_RECTANGLE_PANNING_MAX) vp=LAYOUT_RECTANGLE_PANNING_MAX; ii->crop_hpan=LayoutRectangle_Alignment(hp); ii->crop_vpan=LayoutRectangle_Alignment(vp); pageview->layout->FlushPreview(); gtk_widget_queue_draw (GTK_WIDGET (pageview)); } return FALSE; } static gboolean pp_layout_carousel_pageview_button_release( GtkWidget *widget, GdkEventButton *event ) { pp_Layout_Carousel_PageView *pageview; g_return_val_if_fail (widget != NULL, FALSE); g_return_val_if_fail (PP_IS_PAGEVIEW (widget), FALSE); g_return_val_if_fail (event != NULL, FALSE); pageview = PP_LAYOUT_CAROUSEL_PAGEVIEW (widget); switch(event->button) { case 1: if (event->button==1) pageview->dragging=false; gtk_grab_remove(widget); break; default: break; } // g_signal_emit_by_name (GTK_OBJECT (pageview->adjustment), "value_changed"); return FALSE; } void pp_layout_carousel_pageview_refresh(pp_Layout_Carousel_PageView *pv) { pv->layout->FlushPreview(); gtk_widget_queue_draw (GTK_WIDGET (pv)); } void pp_layout_carousel_pageview_set_page(pp_Layout_Carousel_PageView *pv,int page) { pv->layout->SetCurrentPage(page); pp_layout_carousel_pageview_refresh(pv); } photoprint-0.4.2-pre2/layout_nup.h0000644000175000017500000000362711244336107014073 00000000000000#ifndef LAYOUT_NUP_H #define LAYOUT_NUP_H #include #include #include #include #include "support/signature.h" #include "imagesource/imagesource.h" #include "gp_cppsupport/gprinter.h" #include "layoutdb.h" #include "layout.h" class Layout_NUp_ImageInfo; class PhotoPrint_State; class Layout_NUp : public Layout, public Signature { public: Layout_NUp(PhotoPrint_State &state,Layout *oldlayout=NULL); virtual ~Layout_NUp(); const char *GetType(); int GetCapabilities(); int AddImage(const char *filename,bool allowcropping=false,PP_ROTATION rotation=PP_ROTATION_AUTO); void CopyImage(Layout_ImageInfo *ii); bool PlaceImage(const char *filename,int page,int row, int column,bool cropfit,PP_ROTATION rotate); void FindFirstFree(int &page,int &row,int &column); int FreeSlots(); void Reflow(); virtual void LayoutToDB(LayoutDB &db); virtual void DBToLayout(LayoutDB &db); virtual GtkWidget *CreateWidget(); virtual void RefreshWidget(GtkWidget *widget); virtual ImageSource *GetImageSource(int page,CMColourDevice target=CM_COLOURDEVICE_PRINTER, CMTransformFactory *factory=NULL,int res=0,bool completepage=false); Layout_NUp_ImageInfo *ImageAt(int page, int row, int column); virtual void (*SetUnitFunc())(GtkWidget *wid,enum Units unit); virtual Layout_ImageInfo *ImageAtCoord(int x,int y); friend class Layout_NUp_ImageInfo; }; class Layout_NUp_ImageInfo : public Layout_ImageInfo { public: Layout_NUp_ImageInfo(Layout_NUp &layout,const char *filename,int row,int column,int page,bool allowcropping=false, PP_ROTATION rotation=PP_ROTATION_AUTO); Layout_NUp_ImageInfo(Layout_NUp &layout,Layout_ImageInfo *ii,int row,int column,int page); virtual ~Layout_NUp_ImageInfo(); virtual LayoutRectangle *GetBounds(); void DrawThumbnail(GtkWidget *widget,int xpos,int ypos,int width,int height); int row; int column; private: friend class Layout_NUp; }; #endif photoprint-0.4.2-pre2/layout_imageinfo.cpp0000644000175000017500000010174411400246671015561 00000000000000/* * layout_imageinfo.cpp - A base class for layout images. * * Copyright (c) 2004-2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include "config.h" #include "dialogs.h" #include "miscwidgets/generaldialogs.h" #include "pixbufthumbnail/egg-pixbuf-thumbnail.h" #include "imagesource/pixbuf_from_imagesource.h" #include "imageutils/rotatepixbuf.h" #include "imageutils/maskpixbuf.h" #include "support/thread.h" #include "support/progressthread.h" #include "miscwidgets/errordialogqueue.h" #include "imagesource/imagesource.h" #include "imagesource/imagesource_gdkpixbuf.h" #include "imagesource/imagesource_cms.h" #include "imagesource/imagesource_util.h" #include "imagesource/imagesource_mask.h" #include "imagesource/imagesource_rotate.h" #include "imagesource/imagesource_promote.h" #include "imagesource/imagesource_invert.h" #include "imageutils/cachedimage.h" #include "imageutils/tiffsave.h" #include "photoprint_state.h" #include "support/debug.h" #include "support/progress.h" #include "support/util.h" #include "support/layoutrectangle.h" #include "layout_imageinfo.h" using namespace std; class PPIS_Histogram : public ImageSource { public: PPIS_Histogram(ImageSource *source,PPHistogram &hist) : ImageSource(source), source(source,hist), histogram(hist) { Debug[TRACE] << "PPIS_Histogram obtaining Histogram mutex in exclusive mode from " << long(Thread::GetThreadID()) << endl; histogram.ObtainMutex(); Debug[TRACE] << "Histogram address: " << long(&histogram) << endl; } virtual ~PPIS_Histogram() { Debug[TRACE] << "PPIS_Histogram triggering complete signal" << endl; histogram.Trigger(); Debug[TRACE] << "PPIS_Histogram releasing Histogram mutex from " << long(Thread::GetThreadID()) << endl; histogram.ReleaseMutex(); } virtual ISDataType *GetRow(int row) { return(source.GetRow(row)); } protected: ImageSource_Histogram source; PPHistogram &histogram; }; Layout_ImageInfo::Layout_ImageInfo(Layout &layout, const char *filename, int page, bool allowcropping, PP_ROTATION rotation) : PPEffectHeader(), RefCountUI(), page(page), allowcropping(allowcropping), crop_hpan(CENTRE), crop_vpan(CENTRE), rotation(rotation), layout(layout), maskfilename(NULL), thumbnail(NULL), mask(NULL), hrpreview(NULL), selected(false), customprofile(NULL), customintent(LCMSWRAPPER_INTENT_DEFAULT), threadevents(), histogram(threadevents), hrrenderjob(NULL) { bool relative=true; if(filename[0]=='/' || filename[1]==':') relative=false; if(filename[0]=='\\' && filename[1]=='\\') relative=false; if(relative) this->filename=BuildAbsoluteFilename(filename); else this->filename=strdup(filename); ImageSource *is=ISLoadImage(this->filename); if(!is) throw "Can't open image!"; width=is->width; height=is->height; xres=is->xres; yres=is->yres; // FIXME - can we grab the embedded profile's name here (for the ImageInfo widget)? delete is; GetThumbnail(); } Layout_ImageInfo::Layout_ImageInfo(Layout &layout, Layout_ImageInfo *ii, int page) : PPEffectHeader(*ii), RefCountUI(), page(page), allowcropping(false), crop_hpan(CENTRE), crop_vpan(CENTRE), rotation(PP_ROTATION_AUTO), layout(layout), maskfilename(NULL), thumbnail(NULL), mask(NULL), hrpreview(NULL), selected(false), customprofile(NULL), customintent(LCMSWRAPPER_INTENT_DEFAULT), threadevents(), histogram(threadevents), hrrenderjob(NULL) { // Effects are copied by the "PPEffectHeader(*ii) above if(ii) { // We duplicate and reference the thumbnail and mask from the old image... thumbnail=ii->thumbnail; if(thumbnail) g_object_ref(G_OBJECT(thumbnail)); mask=ii->mask; if(mask) g_object_ref(G_OBJECT(mask)); // Duplicate name of manually-applied profile... if(ii->customprofile) { customprofile=strdup(ii->customprofile); Debug[TRACE] << "Copying profile: " << ii->customprofile << endl; } customintent=ii->customintent; // Copy general data if(ii->filename) this->filename=strdup(ii->filename); if(ii->maskfilename) this->maskfilename=strdup(ii->maskfilename); allowcropping=ii->allowcropping; crop_hpan=ii->crop_hpan; crop_vpan=ii->crop_vpan; rotation=ii->rotation; width=ii->width; height=ii->height; xres=ii->xres; yres=ii->yres; } } Layout_ImageInfo::~Layout_ImageInfo() { // Must flush the HRPreview and any rendering thread first - this ensures the thread isn't running any more. FlushHRPreview(); ObtainMutex(); if(thumbnail) g_object_unref(thumbnail); if(mask) g_object_unref(mask); if(customprofile) free(customprofile); free(filename); Debug[COMMENT] << "Layout_ImageInfo successfully disposed" << endl; } // Jobqueue-based replacement for the previous high-res preview code. // This should be cleaner, and should take care of some of the concurrency issues behind the scenes. class HRRenderJob : public Job, public Progress { public: HRRenderJob(Layout_ImageInfo *ii,GtkWidget *wid,int x,int y,int w,int h) : Job(), Progress(), ii(ii), widget(wid), xpos(x), ypos(y), width(w), height(h), transformed(NULL), sync() { // Need to ref the ImageInfo here. Debug[TRACE] << "Creating HRRenderJob " << hex << this << endl; ii->Ref(); } virtual ~HRRenderJob() { Debug[TRACE] << "Deleting HRRenderJob " << hex << this << " - unreferencing ImageInfo..." << endl; ii->UnRef(); Debug[TRACE] << "Done - HRRenderJob disposed" << endl; } bool DoProgress(int i, int maxi) { return(GetJobStatus()!=JOBSTATUS_CANCELLED); } static bool testbreak(void *p) { HRRenderJob *j=(HRRenderJob *)p; return(j->DoProgress(0,0)==false); } virtual void Run(Worker *w) { ImageInfo_Worker *iw=(ImageInfo_Worker *)w; try { // Lock the imageinfo against modification while we're using it. // To avoid a deadlock situation if, say, the Apply Profile dialog is open and GTK decides that // now is a good time to redraw the window, we only attempt the mutex, and bail out if it fails. int count=10; while(!ii->AttemptMutexShared()) { if(count==0) { Debug[WARN] << "HRRenderJob: Giving up attempt on mutex - bailing out" << endl; return; } #ifdef WIN32 Sleep(50); #else usleep(50000); #endif --count; } // We sleep briefly before doing anything time-intensive - that way we can bail out rapidly // if the user's doing something heavily interactive, like panning an image, or resizing the window for(int i=0;i<25;++i) { #ifdef WIN32 Sleep(10); #else usleep(10000); #endif if(!DoProgress(0,0)) { Debug[TRACE] << "Got break signal while pausing - Releasing" << endl; ii->ReleaseMutex(); return; } } if(!DoProgress(0,0)) { Debug[TRACE] << "Subthread releasing mutex and cancelling" << endl; ii->ReleaseMutex(); return; } // Now we start the rendering. CMSProfile *targetprof; CMColourDevice tdev=CM_COLOURDEVICE_NONE; if((targetprof=iw->profilemanager.GetProfile(CM_COLOURDEVICE_PRINTERPROOF))) tdev=CM_COLOURDEVICE_PRINTERPROOF; else if((targetprof=iw->profilemanager.GetProfile(CM_COLOURDEVICE_DISPLAY))) tdev=CM_COLOURDEVICE_DISPLAY; else if((targetprof=iw->profilemanager.GetProfile(CM_COLOURDEVICE_DEFAULTRGB))) tdev=CM_COLOURDEVICE_DEFAULTRGB; if(targetprof) delete targetprof; ImageSource *is=ii->GetImageSource(tdev,iw->factory); LayoutRectangle r(is->width,is->height); LayoutRectangle target(xpos,ypos,width,height); RectFit *fit=r.Fit(target,ii->allowcropping,ii->rotation,ii->crop_hpan,ii->crop_vpan); if(fit->rotation) { ImageSource_Interruptible *ii=new ImageSource_Rotate(is,fit->rotation); ii->SetTestBreak(testbreak,this); is=ii; } is=ISScaleImageBySize(is,fit->width,fit->height,IS_SCALING_AUTOMATIC); delete fit; // We create new Fit in the idle-function because the hpan/vpan may have changed. // Instead of build the GdkPixbuf here we create a cached image and convert to pixbuf in the main thread. transformed=new CachedImage(is); if(transformed) { // Now we defer to the main thread... if(DoProgress(0,0)) { g_timeout_add(1,finish_main,this); sync.WaitCondition(); Debug[TRACE] << "Received sync from main thread - Job complete, deleting transformed..." << endl; } delete transformed; } else Debug[TRACE] << "RenderHRJob cancelled - detected from subthread" << endl; } catch(const char *err) { ErrorDialogs.AddMessage(err); } ii->ReleaseMutex(); } // IdleFunc - runs on the main thread's context, // thus, can safely render into the UI. static gboolean finish_main(gpointer ud) { HRRenderJob *p=(HRRenderJob *)ud; if(p->DoProgress(0,0)) { Debug[TRACE] << "Creating pixbuf from CachedImage" << endl; ImageSource *is=new ImageSource_CachedImage(p->transformed); GdkPixbuf *transformed=pixbuf_from_imagesource(is,p->ii->layout.bgcol.red>>8,p->ii->layout.bgcol.green>>8,p->ii->layout.bgcol.blue>>8,p); LayoutRectangle r(gdk_pixbuf_get_width(transformed),gdk_pixbuf_get_height(transformed)); LayoutRectangle target(p->xpos,p->ypos,p->width,p->height); // Disallow rotation here since the image will be rotated already. RectFit *fit=r.Fit(target,p->ii->allowcropping,PP_ROTATION_NONE,p->ii->crop_hpan,p->ii->crop_vpan); int dw=fit->width; int dh=fit->height; if(dw > p->width) dw=p->width; if(dh > p->height) dh=p->height; if(dw>gdk_pixbuf_get_width(transformed)) dw=gdk_pixbuf_get_width(transformed); if(dh>gdk_pixbuf_get_height(transformed)) dh=gdk_pixbuf_get_height(transformed); if(p->ii->mask) { transformed=gdk_pixbuf_copy(transformed); maskpixbuf(transformed,fit->xoffset,fit->yoffset,dw,dh,p->ii->mask, p->ii->layout.bgcol.red>>8,p->ii->layout.bgcol.green>>8,p->ii->layout.bgcol.blue>>8); } gdk_draw_pixbuf(p->widget->window,NULL,transformed, fit->xoffset,fit->yoffset, fit->xpos,fit->ypos, dw,dh, GDK_RGB_DITHER_NONE,0,0); p->ii->SetHRPreview(transformed); if(p->ii->mask) g_object_unref(transformed); // If drawing the high-res preview obliterates any gridlines we can repair them here. p->ii->layout.DrawGridLines(p->widget); delete fit; } else Debug[TRACE] << "RenderHRJob cancelled - detected from main thread" << endl; if(p->ii->hrrenderjob==p) p->ii->hrrenderjob=NULL; Debug[TRACE] << "Main thread callback complete - signalling subthread" << endl; p->sync.Broadcast(); return(FALSE); } protected: Layout_ImageInfo *ii; GtkWidget *widget; int xpos,ypos; int width,height; CachedImage *transformed; // GdkPixbuf *transformed; ThreadSync sync; }; #if 0 // Subthread for rendering high-resolution previews. // This code uses the subthread to create a GdkPixbuf from // an image, then defers to the main thread to perform the // actual rendering. class hr_payload : public PTMutex, public ThreadFunction { public: hr_payload(ProfileManager *p,CMTransformFactory *f,Layout_ImageInfo *ii,GtkWidget *wid,int x,int y,int w,int h) : PTMutex(), ThreadFunction(), profman(p), factory(f), ii(ii), widget(wid), xpos(x), ypos(y), width(w), height(h), transformed(NULL), thread(this) { thread.Start(); thread.WaitSync(); } ~hr_payload() { } void Stop() { thread.Stop(); } static bool testbreakfunc(void *ud) { Thread *t=(Thread *)ud; return(t->TestBreak()); } virtual int Entry(Thread &t) { ObtainMutex(); // We use this to avoid race conditions when cleaning up. // To avoid a deadlock situation if, say, the Apply Profile dialog is open and GTK decides that // now is a good time to redraw the window, we only attempt the mutex, and bail out if it fails. int count=10; while(!ii->AttemptMutexShared()) { if(count==0) { Debug[WARN] << "Giving up attempt on mutex - bailing out" << endl; // The calling thread is waiting for us to acknowledge startup, so we have to send // the Sync before bailing out. t.SendSync(); g_timeout_add(1,hr_payload::CleanupFunc,this); ReleaseMutex(); return(0); } #ifdef WIN32 Sleep(50); #else usleep(50000); #endif --count; } t.SendSync(); // We sleep briefly before doing anything time-intensive - that way we can bail out rapidly // if the user's doing something heavily interactive, like panning an image, or resizing the window for(int i=0;i<75;++i) { #ifdef WIN32 Sleep(10); #else usleep(10000); #endif if(t.TestBreak()) { // Debug[TRACE] << "Got break signal while pausing - Releasing" << endl; ii->ReleaseMutex(); g_timeout_add(1,hr_payload::CleanupFunc,this); ReleaseMutex(); return(0); } } if(t.TestBreak()) { // Debug[TRACE] << "Subthread releasing mutex and cancelling" << endl; ii->ReleaseMutex(); g_timeout_add(1,hr_payload::CleanupFunc,this); ReleaseMutex(); return(0); } try { CMSProfile *targetprof; CMColourDevice tdev=CM_COLOURDEVICE_NONE; if((targetprof=profman->GetProfile(CM_COLOURDEVICE_PRINTERPROOF))) tdev=CM_COLOURDEVICE_PRINTERPROOF; else if((targetprof=profman->GetProfile(CM_COLOURDEVICE_DISPLAY))) tdev=CM_COLOURDEVICE_DISPLAY; else if((targetprof=profman->GetProfile(CM_COLOURDEVICE_DEFAULTRGB))) tdev=CM_COLOURDEVICE_DEFAULTRGB; if(targetprof) delete targetprof; if(t.TestBreak()) { // Debug[TRACE] << "Subthread releasing mutex and cancelling" << endl; ii->ReleaseMutex(); g_timeout_add(1,hr_payload::CleanupFunc,this); return(0); } // Debug[TRACE] << "Generating high-res preview - Using tdev: " << tdev << endl; ImageSource *is=ii->GetImageSource(tdev,factory); // Debug[TRACE] << "Got imagesource - fitting and rendering" << endl; LayoutRectangle r(is->width,is->height); LayoutRectangle target(xpos,ypos,width,height); RectFit *fit=r.Fit(target,ii->allowcropping,ii->rotation,ii->crop_hpan,ii->crop_vpan); if(fit->rotation) { ImageSource_Interruptible *ii=new ImageSource_Rotate(is,fit->rotation); ii->SetTestBreak(testbreakfunc,&t); is=ii; } is=ISScaleImageBySize(is,fit->width,fit->height,IS_SCALING_AUTOMATIC); delete fit; // We create new Fit in the idle-function because the hpan/vpan may have changed. ProgressThread prog(t); transformed=pixbuf_from_imagesource(is,ii->layout.bgcol.red>>8,ii->layout.bgcol.green>>8,ii->layout.bgcol.blue>>8,&prog); delete is; // Debug[TRACE] << "finished - finalising" << endl; if(transformed) { // Now we defer to the main thread... // We add this as a high-priority event because we want it to be // run as soon as possible, and within a gtk_main_iteration() loop // if necessary. // g_idle_add_full(G_PRIORITY_HIGH,hr_payload::IdleFunc,p,NULL); g_timeout_add(1,hr_payload::IdleFunc,this); // And wait for the main thread to have rendered the preview // Because the rendering will be done via a GTK event callback, there's // a potential deadlock here if the main app attempts to delete this ImageInfo // between the main thread having completed and the idle function being // triggered to draw the thumbnail. For this reason we'll have to use a // tie-break in the ImageInfo destructor. // Debug[TRACE] << "Waiting for all-clear from main thread..." << endl; // t->WaitSync(); } else { // Debug[TRACE] << "Thread cancelled" << endl; g_timeout_add(1,hr_payload::CleanupFunc,this); ii->ReleaseMutex(); ReleaseMutex(); return(0); } } catch (const char *err) { // Debug[TRACE] << "Subthread caught exception: " << err << endl; g_timeout_add(1,hr_payload::CleanupFunc,this); } Debug[COMMENT] << "Subthread waiting for main thread to finish drawing" << endl; thread.WaitSync(); Debug[COMMENT] << "Subthread releasing mutex and exiting" << endl; ii->ReleaseMutex(); ReleaseMutex(); return(0); } // CleanupFunc - runs on the main thread's context. static gboolean CleanupFunc(gpointer ud) { hr_payload *p=(hr_payload *)ud; // Debug[TRACE] << "Main thread sending sync signal" << endl; p->thread.SendSync(); // There's a race condition here. Once we send this signal the subthread will // release the mutex - but it's possible this function will have deleted the object first. // To avoid this, we obtain the mutex here, then release it again. // (In actual fact this race condition should be avoided by the fact that // this class's destructor deletes the thread - thus the subthread should be // guaranteed to have exited before this class is deleted.) // Debug[TRACE] << "Thread cleanup - race prevention - obtaining mutex from thread " << p->thread.GetThreadID() << endl; p->ObtainMutex(); // Debug[TRACE] << "Thread cleanup - race prevention - releasing mutex" << endl; p->ReleaseMutex(); Debug[TRACE] << "Done" << endl; // We clear the renderthread pointer in the ImageInfo here before deleting it // to avoid the main thread trying to cancel it after deletion. // This should be safe since this function runs on the main thread's context. if(p->ii->hrrenderthread==p) p->ii->hrrenderthread=NULL; delete p; return(FALSE); } // IdleFunc - runs on the main thread's context, // thus, can safely render into the UI. static gboolean IdleFunc(gpointer ud) { // Once control reaches here the subthread should have // completed. There's a brief window in which the ImageInfo // could have been deleted by the main thread before this idle-handler // was launched. To fix this, we hold the mutex in the sub-thread, until // this function, running in the main context, has finished with the // ImageInfo. hr_payload *p=(hr_payload *)ud; // This function runs in the context of the main thread, so it's safe // to clear the ImageInfo's RenderThread member, since only the main thread // creates such. // This idle-function is responsible for disposing of the payload, which // will also delete the thread. if(!p->thread.TestBreak()) { if(p->ii->hrrenderthread==p) p->ii->hrrenderthread=NULL; p->ii->SetHRPreview(p->transformed); LayoutRectangle r(gdk_pixbuf_get_width(p->transformed),gdk_pixbuf_get_height(p->transformed)); LayoutRectangle target(p->xpos,p->ypos,p->width,p->height); // Disallow rotation here since the image will be rotated already. RectFit *fit=r.Fit(target,p->ii->allowcropping,PP_ROTATION_NONE,p->ii->crop_hpan,p->ii->crop_vpan); int dw=fit->width; int dh=fit->height; if(dw > p->width) dw=p->width; if(dh > p->height) dh=p->height; if(dw>gdk_pixbuf_get_width(p->transformed)) { dw=gdk_pixbuf_get_width(p->transformed); } if(dh>gdk_pixbuf_get_height(p->transformed)) { dh=gdk_pixbuf_get_height(p->transformed); } if(p->ii->mask) { p->transformed=gdk_pixbuf_copy(p->transformed); maskpixbuf(p->transformed,fit->xoffset,fit->yoffset,dw,dh,p->ii->mask, p->ii->layout.bgcol.red>>8,p->ii->layout.bgcol.green>>8,p->ii->layout.bgcol.blue>>8); } gdk_draw_pixbuf(p->widget->window,NULL,p->transformed, fit->xoffset,fit->yoffset, fit->xpos,fit->ypos, dw,dh, GDK_RGB_DITHER_NONE,0,0); if(p->ii->mask) g_object_unref(p->transformed); delete fit; } // Debug[TRACE] << "Preview drawn - sending sync to sub-thread" << endl; p->thread.SendSync(); // There's a race condition here. Once we send this signal the subthread will // release the mutex - but it's possible this function will have deleted the object first. // To avoid this, we obtain the mutex here, then release it again. // (In actual fact this race condition should be avoided by the fact that // this class's destructor deletes the thread - thus the subthread should be // guaranteed to have exited before this class is deleted.) // Debug[TRACE] << "Thread cleanup - race prevention - obtaining mutex from thread " << p->thread.GetThreadID() << endl; p->ObtainMutex(); Debug[COMMENT] << "Thread cleanup - race prevention - releasing mutex" << endl; p->ReleaseMutex(); // Debug[TRACE] << "Done" << endl; // We clear the renderthread pointer in the ImageInfo here before deleting it // to avoid the main thread trying to cancel it after deletion. // This should be safe since this function runs on the main thread's context. if(p->ii->hrrenderthread==p) p->ii->hrrenderthread=NULL; delete p; return(FALSE); } protected: ProfileManager *profman; CMTransformFactory *factory; Layout_ImageInfo *ii; GtkWidget *widget; int xpos,ypos; int width,height; GdkPixbuf *transformed; Thread thread; }; #endif void Layout_ImageInfo::DrawThumbnail(GtkWidget *widget,int xpos,int ypos,int width,int height) { GdkPixbuf *thumbnail=hrpreview; GdkPixbuf *transformed=NULL; RectFit *fit=NULL; int dw,dh; if(thumbnail) { LayoutRectangle r(gdk_pixbuf_get_width(thumbnail),gdk_pixbuf_get_height(thumbnail)); LayoutRectangle target(xpos,ypos,width,height); fit=r.Fit(target,allowcropping,PP_ROTATION_NONE,crop_hpan,crop_vpan); dw=fit->width; dh=fit->height; if(dw > width) dw=width; if(dh > height) dh=height; if(dw>gdk_pixbuf_get_width(thumbnail)) dw=gdk_pixbuf_get_width(thumbnail); if(dh>gdk_pixbuf_get_height(thumbnail)) dh=gdk_pixbuf_get_height(thumbnail); if(mask) { transformed=gdk_pixbuf_copy(hrpreview); maskpixbuf(transformed,fit->xoffset,fit->yoffset,dw,dh,mask, layout.bgcol.red>>8,layout.bgcol.green>>8,layout.bgcol.blue>>8); thumbnail=transformed; } } else { thumbnail=GetThumbnail(); LayoutRectangle r(gdk_pixbuf_get_width(thumbnail),gdk_pixbuf_get_height(thumbnail)); LayoutRectangle target(xpos,ypos,width,height); fit=r.Fit(target,allowcropping,rotation,crop_hpan,crop_vpan); GdkPixbuf *tmp; switch(fit->rotation) { case 0: transformed=gdk_pixbuf_scale_simple(thumbnail,fit->width,fit->height,GDK_INTERP_NEAREST); break; case 270: tmp=gdk_pixbuf_rotate_simple(thumbnail,GDK_PIXBUF_ROTATE_CLOCKWISE); transformed=gdk_pixbuf_scale_simple(tmp,fit->width,fit->height,GDK_INTERP_NEAREST); g_object_unref(G_OBJECT(tmp)); break; case 180: tmp=gdk_pixbuf_rotate_simple(thumbnail,GDK_PIXBUF_ROTATE_UPSIDEDOWN); transformed=gdk_pixbuf_scale_simple(tmp,fit->width,fit->height,GDK_INTERP_NEAREST); g_object_unref(G_OBJECT(tmp)); break; case 90: tmp=gdk_pixbuf_rotate_simple(thumbnail,GDK_PIXBUF_ROTATE_COUNTERCLOCKWISE); transformed=gdk_pixbuf_scale_simple(tmp,fit->width,fit->height,GDK_INTERP_NEAREST); g_object_unref(G_OBJECT(tmp)); break; } dw=fit->width; dh=fit->height; if(dw > width) dw=width; if(dh > height) dh=height; if(dw>gdk_pixbuf_get_width(transformed)) dw=gdk_pixbuf_get_width(transformed); if(dh>gdk_pixbuf_get_height(transformed)) dh=gdk_pixbuf_get_height(transformed); if(mask) maskpixbuf(transformed,fit->xoffset,fit->yoffset,dw,dh,mask, layout.bgcol.red>>8,layout.bgcol.green>>8,layout.bgcol.blue>>8); thumbnail=transformed; // Trigger a rendering thread if there isn't one already // and if high-res previews are enabled if(hrrenderjob==NULL && layout.state.FindInt("HighresPreviews")) { if(width>192 && height>192) // Generating lots of thumbs simultaneously is expensive, and if the images are small, { // highres previews are of limited value anyway. // hrrenderthread=new hr_payload(&layout.state.profilemanager,layout.factory,this,widget,xpos,ypos,width,height); hrrenderjob=new HRRenderJob(this,widget,xpos,ypos,width,height); layout.jobdispatcher.DeleteCompleted(); layout.jobdispatcher.AddJob(hrrenderjob); } } } gdk_draw_pixbuf(widget->window,NULL,thumbnail, fit->xoffset,fit->yoffset, fit->xpos,fit->ypos, dw,dh, GDK_RGB_DITHER_NONE,0,0); if(transformed) g_object_unref(transformed); delete fit; } void Layout_ImageInfo::SetMask(const char *filename) { if(mask) { g_object_unref(mask); mask=NULL; } if(maskfilename) { free(maskfilename); maskfilename=NULL; } if(filename) maskfilename=strdup(filename); FlushThumbnail(); } GdkPixbuf *Layout_ImageInfo::GetThumbnail() { if(thumbnail) return(thumbnail); GError *err=NULL; if(layout.state.batchmode) return(NULL); if(maskfilename && !mask) { mask=egg_pixbuf_get_thumbnail_for_file (maskfilename, EGG_PIXBUF_THUMBNAIL_LARGE, &err); // Debug[TRACE] << "Attempting to load mask from: " << maskfilename << endl; if(!mask) { Debug[WARN] << "Mask loading failed - trying ImageSource method" << endl; try { ImageSource *src=ISLoadImage(maskfilename); if(src) { int w,h; w=(src->width*256)/src->height; h=256; if(w>256) { w=256; h=(src->height*256)/src->width; } src=ISScaleImageBySize(src,w,h,IS_SCALING_NEARESTNEIGHBOUR); mask=pixbuf_from_imagesource(src); delete src; } } catch(const char *err) { Debug[ERROR] << "Error: " << err << endl; } if(!mask) { if(err && err->message) Debug[ERROR] << "Error: " << err->message << endl; else Debug[ERROR] << "Can't get mask thumbnail" << endl; free(maskfilename); maskfilename=NULL; } } } Debug[TRACE] << "Thumbnail not cached - loading..." << endl; ImageSource *src=NULL; thumbnail=egg_pixbuf_get_thumbnail_for_file (filename, EGG_PIXBUF_THUMBNAIL_LARGE, &err); if(!thumbnail) { Debug[WARN] << "Can't get pixbuf - loading thumbnail via ImageSource..." << endl; src=ISLoadImage(filename); if(src) { int w,h; w=(src->width*256)/src->height; h=256; if(w>256) { w=256; h=(src->height*256)/src->width; } src=ISScaleImageBySize(src,w,h,IS_SCALING_NEARESTNEIGHBOUR); thumbnail=pixbuf_from_imagesource(src); delete src; src=NULL; } if(!thumbnail) { if(err && err->message) throw err->message; else throw "Can't get thumbnail"; } } // Apply effects here... if(thumbnail) { ImageSource *src2=new ImageSource_GdkPixbuf(thumbnail); src2=ApplyEffects(src2,PPEFFECT_PRESCALE); GdkPixbuf *tn2=pixbuf_from_imagesource(src2); delete src2; g_object_unref(G_OBJECT(thumbnail)); thumbnail=tn2; } // If there's no display profile, then we can use the Default RGB profile instead... // Debug[TRACE] << "Checking for Display Profile..." << endl; CMSProfile *targetprof; CMColourDevice target=CM_COLOURDEVICE_NONE; if((targetprof=layout.state.profilemanager.GetProfile(CM_COLOURDEVICE_PRINTERPROOF))) target=CM_COLOURDEVICE_PRINTERPROOF; else if((targetprof=layout.state.profilemanager.GetProfile(CM_COLOURDEVICE_DISPLAY))) target=CM_COLOURDEVICE_DISPLAY; else if((targetprof=layout.state.profilemanager.GetProfile(CM_COLOURDEVICE_DEFAULTRGB))) target=CM_COLOURDEVICE_DEFAULTRGB; if(targetprof) delete targetprof; if(target!=CM_COLOURDEVICE_NONE) { if(!src) { src=ISLoadImage(filename); } CMSTransform *transform=NULL; if(src) { CMSProfile *emb; if(customprofile) emb=new CMSProfile(customprofile); // FIXME: lifespan? else emb=src->GetEmbeddedProfile(); if(emb) { // Debug[TRACE] << "Creating embedded->monitor transform..." << endl; if(emb->GetColourSpace()!=IS_TYPE_RGB) { // Need to replace the RGB thumbnail with a CMYK or Greyscale version! Debug[TRACE] << "Creating new thumbnail - CMYK->monitor" << endl; int w,h; w=(src->width*256)/src->height; h=256; if(w>256) { w=256; h=(src->height*256)/src->width; } src=ISScaleImageBySize(src,w,h,IS_SCALING_NEARESTNEIGHBOUR); if((transform = layout.factory->GetTransform(target,emb,customintent))) src=new ImageSource_CMS(src,transform); thumbnail=pixbuf_from_imagesource(src); delete src; src=NULL; transform=NULL; // Don't want to apply the transform a second time... } else { transform = layout.factory->GetTransform(target,emb,customintent); } } else { // Debug[TRACE] << "Creating default->monitor transform..." << endl; transform = layout.factory->GetTransform(target,IS_TYPE_RGB,customintent); } } if(transform) { // Debug[TRACE] << "Applying transform..." << endl; ImageSource *src2=new ImageSource_GdkPixbuf(thumbnail); src2=new ImageSource_CMS(src2,transform); GdkPixbuf *tn2=pixbuf_from_imagesource(src2); delete src2; g_object_unref(G_OBJECT(thumbnail)); thumbnail=tn2; } } if(src) { delete src; } Debug[TRACE] << "done" << endl; return(thumbnail); } LayoutRectangle *Layout_ImageInfo::GetBounds() { // Dummy function - override in subclasses! throw "Layout_ImageInfo::GetBounds() method should be overridden by subclass!"; } RectFit *Layout_ImageInfo::GetFit(double scale) { RectFit *result=NULL; LayoutRectangle *bounds=GetBounds(); bounds->Scale(scale); LayoutRectangle r(width,height); result=r.Fit(*bounds,allowcropping,rotation,crop_hpan,crop_vpan); delete bounds; return(result); } ImageSource *Layout_ImageInfo::GetImageSource(CMColourDevice target,CMTransformFactory *factory) { ImageSource *result=NULL; ImageSource *is=ISLoadImage(filename); is=ApplyEffects(is,PPEFFECT_PRESCALE); IS_TYPE colourspace=layout.GetColourSpace(target); if(STRIP_ALPHA(is->type)==IS_TYPE_GREY) is=new ImageSource_Promote(is,colourspace); if(STRIP_ALPHA(is->type)==IS_TYPE_BW) is=new ImageSource_Promote(is,colourspace); // If this fails we don't bother with the histogram, since another thread has it // locked for writing. if(histogram.AttemptMutexShared()) { is=new PPIS_Histogram(is,histogram); histogram.ReleaseMutexShared(); // ReleaseShared because the Histogram itself holds an exclusive lock // and we don't want to cancel its exclusivity! } CMSTransform *transform=NULL; if(factory) { CMSProfile *emb; if(customprofile) emb=new CMSProfile(customprofile); // FIXME: Lifespan! else emb=is->GetEmbeddedProfile(); if(emb) { // Debug[TRACE] << "Has embedded / assigned profile..." << endl; transform=factory->GetTransform(target,emb,customintent); // FIXME: intent! } else { // Debug[TRACE] << "No embedded profile - using default" << endl; transform=factory->GetTransform(target,IS_TYPE(STRIP_ALPHA(is->type)),customintent); } if(transform) is=new ImageSource_CMS(is,transform); } result=is; return(result); } ImageSource *Layout_ImageInfo::ApplyMask(ImageSource *is) { if(maskfilename) { ImageSource *mask=ISLoadImage(maskfilename); if((is->width>is->height)^(mask->width>mask->height)) { mask=new ImageSource_Rotate(mask,90); // Debug[TRACE] << "Rotating mask" << endl; } mask=ISScaleImageBySize(mask,is->width,is->height,IS_SCALING_AUTOMATIC); mask=new ImageSource_Invert(mask); is=new ImageSource_Mask(is,mask); } return(is); } bool Layout_ImageInfo::GetSelected() { return(selected); } void Layout_ImageInfo::SetSelected(bool sel) { selected=sel; } void Layout_ImageInfo::ToggleSelected() { selected=!selected; } const char *Layout_ImageInfo::GetFilename() { return(filename); } void Layout_ImageInfo::FlushThumbnail() { if(thumbnail) g_object_unref(thumbnail); thumbnail=NULL; FlushHRPreview(); } void Layout_ImageInfo::CancelRenderThread() { if(hrrenderjob) { layout.jobdispatcher.CancelJob(hrrenderjob); // hrrenderthread->Stop(); // We don't actually delete it here - the thread is responsible for its own // demise (by way of a GTK Idle function running on the main thread's context) // but having signalled it to stop, we can discard this pointer to it. } // hrrenderthread=NULL; hrrenderjob=NULL; } void Layout_ImageInfo::FlushHRPreview() { CancelRenderThread(); if(hrpreview) g_object_unref(hrpreview); hrpreview=NULL; } void Layout_ImageInfo::SetHRPreview(GdkPixbuf *preview) { if(hrpreview) g_object_unref(hrpreview); hrpreview=NULL; hrpreview=preview; } void Layout_ImageInfo::AssignProfile(const char *filename) { if(customprofile) free(customprofile); customprofile=NULL; if(filename) customprofile=strdup(filename); FlushThumbnail(); } const char *Layout_ImageInfo::GetAssignedProfile() { return(customprofile); } void Layout_ImageInfo::SetRenderingIntent(LCMSWrapper_Intent intent) { FlushThumbnail(); customintent=intent; } LCMSWrapper_Intent Layout_ImageInfo::GetRenderingIntent() { return(customintent); } int Layout_ImageInfo::GetWidth() { return(width); } int Layout_ImageInfo::GetHeight() { return(height); } int Layout_ImageInfo::GetXRes() { return(xres); } int Layout_ImageInfo::GetYRes() { return(yres); } // Because the only reason you would need to ObtainMutex() the ImageInfo (rather than ObtainShared()) // is to make a write-change to it, we flush the high-res preview on the assumption that the change // will invalidate it. Note, also, we won't be able to obtain the exclusive lock while the thread's // running. // FIXME - would be better to require an explicit flush() of some kind. void Layout_ImageInfo::ObtainMutex() { // Debug[TRACE] << "In custom Obtain method - flushing preview..." << endl; FlushHRPreview(); // Debug[TRACE] << "Now attempting to obtain exclusive lock..." << endl; while(!PPEffectHeader::AttemptMutex()) { // Debug[TRACE] << "Can't get exclusive lock - performing main loop iteration" << endl; gtk_main_iteration(); } // Debug[TRACE] << "Done" << endl; } PPHistogram &Layout_ImageInfo::GetHistogram() { return(histogram); } photoprint-0.4.2-pre2/INSTALL0000644000175000017500000002231011101462351012533 00000000000000Installation Instructions ************************* Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, 2006 Free Software Foundation, Inc. This file is free documentation; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. 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. 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. 4. Type `make install' to install the programs and any data files and documentation. 5. 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. 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 `..'. 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. 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'. 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. 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'. Optional Features ================= 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. 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 the options to `configure', and exit. `--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. `configure' also accepts some other, not widely useful, options. Run `configure --help' for more details. photoprint-0.4.2-pre2/pp_layout_carousel.cpp0000644000175000017500000003334311266365301016140 00000000000000#include #include #include #include #include #include #include #include #include "stpui_widgets/dimension.h" #include "stpui_widgets/stpui_combo.h" #include "layout.h" #include "dialogs.h" #include "pp_pageextent.h" #include "pp_imagecontrol.h" #include "pp_layout_carousel_pageview.h" #include "pp_layout_carousel.h" #include "layout_carousel.h" #include "support/debug.h" #include "config.h" #include "gettext.h" #define _(x) gettext(x) enum { CHANGED_SIGNAL, POPUPMENU_SIGNAL, SELECTIONCHANGED_SIGNAL, LAST_SIGNAL }; static guint pp_layout_carousel_signals[LAST_SIGNAL] = { 0 }; static void pp_layout_carousel_class_init (pp_Layout_CarouselClass *klass); static void pp_layout_carousel_init (pp_Layout_Carousel *stpuicombo); static void reflow(GtkWidget *wid,gpointer *ob) { pp_Layout_Carousel *lo=(pp_Layout_Carousel *)ob; pp_Layout_Carousel_PageView *pv=PP_LAYOUT_CAROUSEL_PAGEVIEW(lo->pageview); Layout_Carousel *l=(Layout_Carousel*)lo->state->layout; l->Reflow(); pp_layout_carousel_pageview_refresh(PP_LAYOUT_CAROUSEL_PAGEVIEW(pv)); g_signal_emit(G_OBJECT (lo),pp_layout_carousel_signals[CHANGED_SIGNAL], 0); } static void pe_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_Carousel *lo=(pp_Layout_Carousel *)ob; pp_Layout_Carousel_PageView *pv=PP_LAYOUT_CAROUSEL_PAGEVIEW(lo->pageview); pp_layout_carousel_pageview_refresh(pv); g_signal_emit(G_OBJECT (ob),pp_layout_carousel_signals[CHANGED_SIGNAL], 0); } static void ic_changed(GtkWidget *wid,gpointer *ob) { Debug[TRACE] << "Got changed signal from ImageControl" << endl; pp_Layout_Carousel *lo=(pp_Layout_Carousel *)ob; pp_Layout_Carousel_PageView *pv=PP_LAYOUT_CAROUSEL_PAGEVIEW(lo->pageview); pp_layout_carousel_pageview_refresh(PP_LAYOUT_CAROUSEL_PAGEVIEW(pv)); g_signal_emit(G_OBJECT (ob),pp_layout_carousel_signals[CHANGED_SIGNAL], 0); } static void segments_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_Carousel *lo=(pp_Layout_Carousel *)ob; int segs=gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(lo->segments)); Layout_Carousel *l=(Layout_Carousel *)lo->state->layout; l->SetSegments(segs); g_signal_emit(G_OBJECT (lo),pp_layout_carousel_signals[CHANGED_SIGNAL], 0); } static void overlap_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_Carousel *lo=(pp_Layout_Carousel *)ob; int overlap=gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(lo->overlap)); Layout_Carousel *l=(Layout_Carousel *)lo->state->layout; l->SetOverlap(overlap); g_signal_emit(G_OBJECT (lo),pp_layout_carousel_signals[CHANGED_SIGNAL], 0); } static void innerradius_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_Carousel *lo=(pp_Layout_Carousel *)ob; Dimension *d=DIMENSION(lo->innerradius); int ir=int(dimension_get_pt(d)); Layout_Carousel *l=(Layout_Carousel *)lo->state->layout; l->SetInnerRadius(ir); g_signal_emit(G_OBJECT (lo),pp_layout_carousel_signals[CHANGED_SIGNAL], 0); } static void angleoffset_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_Carousel *lo=(pp_Layout_Carousel *)ob; int angleoffset=gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(lo->angleoffset)); Layout_Carousel *l=(Layout_Carousel *)lo->state->layout; l->SetAngleOffset(angleoffset); g_signal_emit(G_OBJECT (lo),pp_layout_carousel_signals[CHANGED_SIGNAL], 0); } static void page_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_Carousel *lo=(pp_Layout_Carousel *)ob; pp_Layout_Carousel_PageView *pv=PP_LAYOUT_CAROUSEL_PAGEVIEW(lo->pageview); pp_layout_carousel_pageview_set_page(pv,gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(lo->page))-1); g_signal_emit(G_OBJECT (lo),pp_layout_carousel_signals[CHANGED_SIGNAL], 0); } static void pageview_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_Carousel *lo=(pp_Layout_Carousel *)ob; g_signal_emit(G_OBJECT (lo),pp_layout_carousel_signals[CHANGED_SIGNAL], 0); } static void pageview_popupmenu(GtkWidget *wid,gpointer *ob) { pp_Layout_Carousel *lo=(pp_Layout_Carousel *)ob; g_signal_emit(G_OBJECT (lo),pp_layout_carousel_signals[POPUPMENU_SIGNAL], 0); } static void pageview_selection_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_Carousel *lo=(pp_Layout_Carousel *)ob; pp_imagecontrol_refresh(PP_IMAGECONTROL(lo->imagecontrol)); g_signal_emit(G_OBJECT (lo),pp_layout_carousel_signals[SELECTIONCHANGED_SIGNAL], 0); } void pp_layout_carousel_refresh(pp_Layout_Carousel *ob) { ob->state->layout->LayoutToDB(ob->state->layoutdb); int pages=ob->state->layout->GetPages(); int currentpage=ob->state->layout->GetCurrentPage(); gtk_widget_set_sensitive(ob->page,pages!=1); if(pages>1) { gtk_spin_button_set_range(GTK_SPIN_BUTTON(ob->page),1.0,pages); gtk_spin_button_set_value(GTK_SPIN_BUTTON(ob->page),currentpage+1); } Layout_Carousel *l=(Layout_Carousel *)ob->state->layout; int ms=l->CountImages(currentpage); ms=(ms+1)&~1; gtk_spin_button_set_range(GTK_SPIN_BUTTON(ob->segments),ms,16); gtk_spin_button_set_value(GTK_SPIN_BUTTON(ob->segments),l->GetSegments()); gtk_spin_button_set_value(GTK_SPIN_BUTTON(ob->overlap),l->GetOverlap()); dimension_set_pt(DIMENSION(ob->innerradius),l->GetInnerRadius()); pp_Layout_Carousel_PageView *pv=PP_LAYOUT_CAROUSEL_PAGEVIEW(ob->pageview); if(pv) pp_layout_carousel_pageview_refresh(pv); pp_pageextent_refresh(PP_PAGEEXTENT(ob->pageextent)); } void pp_layout_carousel_set_unit(GtkWidget *wid,enum Units unit) { pp_Layout_Carousel *ob=PP_LAYOUT_CAROUSEL(wid); pp_pageextent_set_unit(PP_PAGEEXTENT(ob->pageextent),unit); } static void expander_callback (GObject *object, GParamSpec *param_spec, gpointer userdata) { pp_Layout_Carousel *ob=PP_LAYOUT_CAROUSEL(userdata); ob->state->SetInt("ExpanderState_Carousel",gtk_expander_get_expanded (GTK_EXPANDER(object))); } GtkWidget* pp_layout_carousel_new (PhotoPrint_State *state) { pp_Layout_Carousel *ob=PP_LAYOUT_CAROUSEL(g_object_new (pp_layout_carousel_get_type (), NULL)); Layout_Carousel *l=(Layout_Carousel *)state->layout; gtk_container_set_border_width(GTK_CONTAINER(&ob->hbox),10); ob->state=state; GtkWidget *vbox; GtkWidget *hbox; GtkWidget *label; GtkWidget *frame = gtk_frame_new (NULL); gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN); gtk_box_pack_start(GTK_BOX (&ob->hbox), frame,TRUE,TRUE,0); gtk_widget_show (frame); ob->pageview = pp_layout_carousel_pageview_new ((Layout_Carousel *)ob->state->layout); g_signal_connect(G_OBJECT(ob->pageview),"changed",G_CALLBACK(pageview_changed),ob); g_signal_connect(G_OBJECT(ob->pageview),"reflow",G_CALLBACK(reflow),ob); g_signal_connect(G_OBJECT(ob->pageview),"popupmenu",G_CALLBACK(pageview_popupmenu),ob); g_signal_connect(G_OBJECT(ob->pageview),"selection_changed",G_CALLBACK(pageview_selection_changed),ob); gtk_container_add (GTK_CONTAINER (frame), ob->pageview); gtk_widget_show (ob->pageview); // Scroll Window GtkWidget *scrollwin=gtk_scrolled_window_new(NULL,NULL); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrollwin), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); vbox = gtk_vbox_new (FALSE, 5); gtk_box_pack_start(GTK_BOX(&ob->hbox),vbox,FALSE,FALSE,0); gtk_widget_show (vbox); gtk_box_pack_start(GTK_BOX(vbox),scrollwin,TRUE,TRUE,0); gtk_widget_show (scrollwin); // Page number hbox=gtk_hbox_new(FALSE,5); label=gtk_label_new(_("Page:")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_box_pack_start(GTK_BOX(hbox),label,TRUE,TRUE,0); gtk_widget_show(label); ob->page=gtk_spin_button_new_with_range(1.0,2.0,1.0); g_signal_connect(G_OBJECT(ob->page),"value-changed",G_CALLBACK(page_changed),ob); gtk_widget_show(ob->page); gtk_box_pack_start(GTK_BOX(hbox),ob->page,FALSE,FALSE,0); gtk_box_pack_start(GTK_BOX(vbox),hbox,FALSE,FALSE,0); gtk_widget_show(hbox); // Contents of scrollwindow GtkWidget *hbox2=gtk_hbox_new(FALSE,0); gtk_widget_show (hbox2); vbox = gtk_vbox_new (FALSE, 0); gtk_box_pack_start(GTK_BOX(hbox2),vbox,TRUE,TRUE,5); gtk_scrolled_window_add_with_viewport (GTK_SCROLLED_WINDOW (scrollwin), hbox2); // gtk_container_foreach(GTK_CONTAINER(scrollwin),killshadow,NULL); gtk_widget_show (vbox); // Carousel frame=gtk_expander_new(_("Carousel")); gtk_expander_set_expanded(GTK_EXPANDER(frame),state->FindInt("ExpanderState_Carousel")); g_signal_connect(frame, "notify::expanded",G_CALLBACK (expander_callback), ob); gtk_box_pack_start(GTK_BOX(vbox),frame,FALSE,FALSE,0); gtk_widget_show(frame); GtkWidget *table=gtk_table_new(2,4,false); gtk_table_set_row_spacings(GTK_TABLE(table),5); // gtk_table_set_row_spacing(GTK_TABLE(table),4,5); gtk_table_set_col_spacings(GTK_TABLE(table),3); gtk_container_add(GTK_CONTAINER(frame),table); gtk_widget_show(table); // Segments spin button label=gtk_label_new(_("Segments:")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_table_attach_defaults(GTK_TABLE(table),label,0,1,0,1); gtk_widget_show(label); ob->segments=gtk_spin_button_new_with_range(4.0,16.0,2.0); gtk_spin_button_set_value(GTK_SPIN_BUTTON(ob->segments),l->GetSegments()); g_signal_connect(G_OBJECT(ob->segments),"value-changed",G_CALLBACK(segments_changed),ob); gtk_widget_show(ob->segments); gtk_table_attach_defaults(GTK_TABLE(table),ob->segments,1,2,0,1); // Overlap spin button label=gtk_label_new(_("Overlap (%):")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_table_attach_defaults(GTK_TABLE(table),label,0,1,1,2); gtk_widget_show(label); ob->overlap=gtk_spin_button_new_with_range(0.0,50.0,1.0); gtk_spin_button_set_value(GTK_SPIN_BUTTON(ob->overlap),l->GetOverlap()); g_signal_connect(G_OBJECT(ob->overlap),"value-changed",G_CALLBACK(overlap_changed),ob); gtk_widget_show(ob->overlap); gtk_table_attach_defaults(GTK_TABLE(table),ob->overlap,1,2,1,2); // AngleOffset spin button label=gtk_label_new(_("Starting angle:")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_table_attach_defaults(GTK_TABLE(table),label,0,1,2,3); gtk_widget_show(label); ob->angleoffset=gtk_spin_button_new_with_range(0.0,90.0,1.0); gtk_spin_button_set_value(GTK_SPIN_BUTTON(ob->angleoffset),l->GetAngleOffset()); g_signal_connect(G_OBJECT(ob->angleoffset),"value-changed",G_CALLBACK(angleoffset_changed),ob); gtk_widget_show(ob->angleoffset); gtk_table_attach_defaults(GTK_TABLE(table),ob->angleoffset,1,2,2,3); // Inner radius dimension widget label=gtk_label_new(_("Inner Radius:")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_table_attach_defaults(GTK_TABLE(table),label,0,1,3,4); gtk_widget_show(label); enum Units unit=state->GetUnits(); ob->innerradius=dimension_new(0.0,100.0,unit); // g_signal_connect(G_OBJECT(ob->innerradius),"value-changed",G_CALLBACK(innerradius_changed),ob); gtk_spin_button_set_value(GTK_SPIN_BUTTON(ob->overlap),l->GetOverlap()); g_signal_connect(G_OBJECT(ob->innerradius),"value-changed",G_CALLBACK(innerradius_changed),ob); gtk_widget_show(ob->innerradius); gtk_table_attach_defaults(GTK_TABLE(table),ob->innerradius,1,2,3,4); // PageExtent ob->pageextent=pp_pageextent_new((Layout_Carousel *)ob->state->layout,ob->state); g_signal_connect(G_OBJECT(ob->pageextent),"changed",G_CALLBACK(pe_changed),ob); gtk_box_pack_start(GTK_BOX(vbox),ob->pageextent,FALSE,FALSE,0); gtk_widget_show(ob->pageextent); // ImageControl ob->imagecontrol=pp_imagecontrol_new(ob->state->layout); gtk_box_pack_start(GTK_BOX(vbox),ob->imagecontrol,TRUE,TRUE,0); g_signal_connect(G_OBJECT(ob->imagecontrol),"changed",G_CALLBACK(ic_changed),ob); gtk_widget_show(ob->imagecontrol); #if 0 // Spacer box tmp=gtk_vbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(vbox),tmp,TRUE,TRUE,0); gtk_widget_show(tmp); // Page number hbox=gtk_hbox_new(FALSE,5); label=gtk_label_new(_("Page:")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_box_pack_start(GTK_BOX(hbox),label,TRUE,TRUE,0); gtk_widget_show(label); ob->page=gtk_spin_button_new_with_range(1.0,2.0,1.0); g_signal_connect(G_OBJECT(ob->page),"value-changed",G_CALLBACK(page_changed),ob); gtk_widget_show(ob->page); gtk_box_pack_start(GTK_BOX(hbox),ob->page,FALSE,FALSE,0); gtk_box_pack_start(GTK_BOX(vbox),hbox,FALSE,FALSE,0); gtk_widget_show(hbox); #endif pp_layout_carousel_refresh(ob); return(GTK_WIDGET(ob)); } GType pp_layout_carousel_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo pp_layout_carousel_info = { sizeof (pp_Layout_CarouselClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) pp_layout_carousel_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (pp_Layout_Carousel), 0, (GInstanceInitFunc) pp_layout_carousel_init, }; stpuic_type = g_type_register_static (GTK_TYPE_HBOX, "pp_Layout_Carousel", &pp_layout_carousel_info, (GTypeFlags)0); } return stpuic_type; } static void pp_layout_carousel_class_init (pp_Layout_CarouselClass *klass) { pp_layout_carousel_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (klass), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_Layout_CarouselClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); pp_layout_carousel_signals[POPUPMENU_SIGNAL] = g_signal_new ("popupmenu", G_TYPE_FROM_CLASS (klass), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_Layout_CarouselClass, popupmenu), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); pp_layout_carousel_signals[SELECTIONCHANGED_SIGNAL] = g_signal_new ("selection_changed", G_TYPE_FROM_CLASS (klass), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_Layout_CarouselClass, selection_changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void pp_layout_carousel_init (pp_Layout_Carousel *ob) { ob->state=NULL; ob->pageview=NULL; ob->imagecontrol=NULL; } photoprint-0.4.2-pre2/carouselcheck.cpp0000644000175000017500000000305111266364767015052 00000000000000#include #include #include "imagesource/imagesource_util.h" #include "imagesource/pixbuf_from_imagesource.h" #include "imagesource/imagesource_montage.h" #include "imagesource/imagesource_segmentmask.h" #include "imagesource/imagesource_mask.h" #include "miscwidgets/pixbufview.h" #include "support/debug.h" #include "layout_carousel.h" #include "config.h" #include "gettext.h" #define _(x) gettext(x) using namespace std; int main(int argc,char**argv) { gtk_init(&argc,&argv); try { GtkWidget *win=gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_window_set_title (GTK_WINDOW (win), _("PixBufView Test")); gtk_signal_connect (GTK_OBJECT (win), "delete_event", (GtkSignalFunc) gtk_main_quit, NULL); GtkWidget *pview=pixbufview_new(NULL,false); gtk_container_add (GTK_CONTAINER (win), pview); gtk_widget_show(pview); gtk_widget_show(win); if(argc>1) { ImageSource_Montage *mon=new ImageSource_Montage(IS_TYPE_RGBA,300); CircleMontage c(512,512); c.SetSegments(6,25,25); c.SetInnerRadius(20); CMSegment *targetseg=c.GetSegmentExtent(0); ImageSource *is=ISLoadImage(argv[1]); ImageSource *mask=new ImageSource_SegmentMask(targetseg,true); is=ISScaleImageBySize(is,mask->width,mask->height); is=new ImageSource_Mask(is,mask); mon->Add(is,0,0); GdkPixbuf *pb=pixbuf_from_imagesource(mon,128,128,128); pixbufview_set_pixbuf(PIXBUFVIEW(pview),pb); // g_object_unref(G_OBJECT(pview)); } gtk_main(); } catch(const char *err) { Debug[ERROR] << "Error: " << err << endl; } return(0); } photoprint-0.4.2-pre2/pp_menu_shortcuts.cpp0000644000175000017500000000724511327647531016020 00000000000000#include #include #include #include #include #include #include "pp_menu_shortcuts.h" #include "pp_mainwindow.h" #include "dialogs.h" #include "miscwidgets/generaldialogs.h" #include "support/debug.h" #include "progressbar.h" #include "support/pathsupport.h" #include "support/searchpath.h" #include "support/dirtreewalker.h" #include "support/configdb.h" #include "config.h" #include "gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) using namespace std; class ShortcutMenuItem : public ConfigFile, public ConfigDB { public: ShortcutMenuItem(string path,GtkActionGroup *group, pp_MainWindow *mw) : ConfigDB(Template), path(path), mw(mw) { // Extract the display name from the shortcut... new ConfigDBHandler(this,"[Shortcut]",this); ParseConfigFile(path.c_str()); Debug[TRACE] << "Have menu item: " << FindString("DisplayName") << endl; action.name=action.label=FindString("DisplayName"); action.stock_id=NULL; action.accelerator=NULL; action.tooltip=FindString("ToolTip"); action.callback=G_CALLBACK(selected); gtk_action_group_add_actions_full(group,&action,1,this,destroy); } ~ShortcutMenuItem() { } static void selected(GtkAction *action,gpointer ob) { ShortcutMenuItem *sm=(ShortcutMenuItem *)ob; sm->mw->state->ParseSupplementaryConfig(sm->path.c_str()); pp_mainwindow_rebuild(sm->mw); } static void destroy(gpointer ob) { ShortcutMenuItem *sm=(ShortcutMenuItem *)ob; delete sm; } protected: string path; pp_MainWindow *mw; GtkActionEntry action; ConfigFile config; static ConfigTemplate Template[]; }; ConfigTemplate ShortcutMenuItem::Template[]= { ConfigTemplate("DisplayName",""), ConfigTemplate("ToolTip",""), ConfigTemplate() }; static GtkActionEntry shortcutsmenu_entries[] = { { "ShortcutsMenu", NULL, N_("_Shortcuts") } }; void BuildShortcutsMenu(void *userdata,GtkUIManager *ui_manager) { pp_MainWindow *mw=(pp_MainWindow *)userdata; GError *error=NULL; GtkActionGroup *action_group; action_group = gtk_action_group_new ("ShortcutsMenuActions"); gtk_action_group_set_translation_domain(action_group,PACKAGE); // Now we scan for shortcuts... const char *path=mw->state->FindString("ShortcutsPath"); SearchPathHandler sp; sp.AddPath(path); SearchPathIterator spi(sp); string uidesc="\n"; gtk_action_group_add_actions (action_group, shortcutsmenu_entries, G_N_ELEMENTS (shortcutsmenu_entries), userdata); path=NULL; while((path=spi.GetNextPath(path))) { // For each path in turn we scan for files... DirTreeWalker dtw(path); DirTreeWalker *dir=dtw.NextDirectory(); bool separator=false; while(dir) { vector strlist; const char *file; while((file=dir->NextFile())) strlist.push_back(string(file)); sort(strlist.begin(),strlist.end()); vector::const_iterator it; for(it=strlist.begin(); it!=strlist.end(); ++it) { if(separator) { uidesc+="\n"; separator=false; } // Now we have a list of files in alphabetical order, extract display names // and construct menu items... ShortcutMenuItem *item=new ShortcutMenuItem(*it,action_group,mw); uidesc+="\n"; } separator=true; dir=dir->NextDirectory(); } } uidesc+=""; gtk_ui_manager_insert_action_group (ui_manager, action_group, 0); if (!gtk_ui_manager_add_ui_from_string (ui_manager, uidesc.c_str(), -1, &error)) throw error->message; } photoprint-0.4.2-pre2/layout_single.cpp0000644000175000017500000002730511377026501015105 00000000000000/* * layout_single.cpp - Has responsibility for tracking the list of images and their layout. * Also has responsibility for building the ImageSource stack at print time. * * Copyright (c) 2004 - 2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * * 2004-12-24: Now opens the imagesource when placing an image, since we need both the * natural size of the image (which the thumbnail code could provide) * and the resolution of the image (which the thumbnail code can't provide). * Getting the actual imagesource (with CMS transform) from the ImageInfo * is now delegated to the superclasses. * * 2005-08-21: Added allowcropping and allowrotation parameters to allow for the menu * generalisation. * * 2008-09-25: Opening the imagesource and fetching the resolution is now handled * by the Layout_ImageInfo superclass, since the UI needs to present * physical size information for all layout types. */ #include #include #include "miscwidgets/generaldialogs.h" #include "dialogs.h" #include "pixbufthumbnail/egg-pixbuf-thumbnail.h" #include "imageutils/rotatepixbuf.h" #include "imagesource/imagesource_util.h" #include "imagesource/imagesource_crop.h" #include "imagesource/imagesource_rotate.h" #include "photoprint_state.h" #include "pp_layout_single.h" #include "support/debug.h" #include "layout_single.h" using namespace std; ConfigTemplate Layout_SingleDB::Template[]= { ConfigTemplate("LeftMargin",10), ConfigTemplate("RightMargin",10), ConfigTemplate("TopMargin",10), ConfigTemplate("BottomMargin",10), ConfigTemplate() }; void Layout_Single_ImageInfo::Init() { Layout_Single *l=(Layout_Single *)&layout; l->GetImageableArea(); float sw=(width*72.0)/xres; float sh=(height*72.0)/yres; int mm=(l->imageablewidth>l->imageableheight); mm^=width>height; if(mm) { rotation=PP_ROTATION_90; sw=(height*72.0)/yres; sh=(width*72.0)/xres; } else rotation=PP_ROTATION_NONE; float s=100.0; float s2=100.0; if(sw>l->imageablewidth) s=(100.0*l->imageablewidth)/sw; if(sh>l->imageableheight) s2=(100.0*l->imageableheight)/sh; if(s2pagewidth); h=int(ph*dheight/l->pageheight); transformed=gdk_pixbuf_scale_simple(thumbnail,w,h,GDK_INTERP_NEAREST); } break; case PP_ROTATION_90: { double pw=width*72; pw/=yr; double ph=height*72; ph/=xr; GdkPixbuf *tmp=gdk_pixbuf_rotate_simple(thumbnail,GDK_PIXBUF_ROTATE_COUNTERCLOCKWISE); w=int(ph*dwidth/l->pagewidth); h=int(pw*dheight/l->pageheight); transformed=gdk_pixbuf_scale_simple(tmp,w,h,GDK_INTERP_NEAREST); g_object_unref(G_OBJECT(tmp)); } break; case PP_ROTATION_180: { double pw=width*72; pw/=yr; double ph=height*72; ph/=xr; GdkPixbuf *tmp=gdk_pixbuf_rotate_simple(thumbnail,GDK_PIXBUF_ROTATE_UPSIDEDOWN); w=int(pw*dwidth/l->pagewidth); h=int(ph*dheight/l->pageheight); transformed=gdk_pixbuf_scale_simple(tmp,w,h,GDK_INTERP_NEAREST); g_object_unref(G_OBJECT(tmp)); } break; case PP_ROTATION_270: { double pw=width*72; pw/=yr; double ph=height*72; ph/=xr; GdkPixbuf *tmp=gdk_pixbuf_rotate_simple(thumbnail,GDK_PIXBUF_ROTATE_CLOCKWISE); w=int(ph*dwidth/l->pagewidth); h=int(pw*dheight/l->pageheight); transformed=gdk_pixbuf_scale_simple(tmp,w,h,GDK_INTERP_NEAREST); g_object_unref(G_OBJECT(tmp)); } break; } l->GetImageableArea(); int iw=(l->imageablewidth*dwidth)/l->pagewidth; if(w>iw) w=iw; int ih=(l->imageableheight*dheight)/l->pageheight; if(h>ih) h=ih; int lm=(l->leftmargin*dwidth)/l->pagewidth; int tm=(l->topmargin*dheight)/l->pageheight; gdk_draw_pixbuf(widget->window,NULL,transformed, 0,0, xpos+lm,ypos+tm, w,h, GDK_RGB_DITHER_NONE,0,0); g_object_unref(transformed); Debug[TRACE] << "Finished drawing" << endl; } ImageSource *Layout_Single_ImageInfo::GetImageSource(CMColourDevice target,CMTransformFactory *factory) { ImageSource *is=Layout_ImageInfo::GetImageSource(target,factory); // Need to swap H and V scale if the image is rotated. switch(rotation) { case PP_ROTATION_NONE: case PP_ROTATION_180: is->xres=(xres*100)/hscale; is->yres=(yres*100)/vscale; break; case PP_ROTATION_90: case PP_ROTATION_270: is->xres=(xres*100)/vscale; is->yres=(yres*100)/hscale; break; } return(is); } LayoutRectangle *Layout_Single_ImageInfo::GetBounds() { Debug[TRACE] << "Pixel width: " << width << endl; Debug[TRACE] << "HScale: " << hscale << endl; Debug[TRACE] << "XRes: " << xres << endl; Debug[TRACE] << "Pixel height: " << height << endl; Debug[TRACE] << "VScale: " << vscale << endl; Debug[TRACE] << "YRes: " << yres << endl; float w,h; switch(rotation) { case PP_ROTATION_90: case PP_ROTATION_270: Debug[TRACE] << "Rotated" << endl; w=(width*72*vscale)/(xres*100); h=(height*72*hscale)/(yres*100); break; default: Debug[TRACE] << "No rotation" << endl; w=(width*72*hscale)/(xres*100); h=(height*72*vscale)/(yres*100); break; } return(new LayoutRectangle(0,0,w,h)); } RectFit *Layout_Single_ImageInfo::GetFit(double scale) { LayoutRectangle *r=GetBounds(); RectFit *result=new RectFit; result->xpos=result->ypos=result->xoffset=result->yoffset=0; result->width=r->w; result->height=r->h; result->scale=1.0; result->rotation=PP_ROTATION_NONE; delete r; return(result); } Layout_Single::Layout_Single(PhotoPrint_State &state,Layout *oldlayout) : Layout(state,oldlayout) { } Layout_Single::~Layout_Single() { } void Layout_Single::Reflow() { int page=0; LayoutIterator it(*this); Layout_Single_ImageInfo *ii=(Layout_Single_ImageInfo *)it.FirstImage(); while(ii) { ii->page=page; ii=(Layout_Single_ImageInfo *)it.NextImage(); ++page; } if(page<1) page=1; pages=page; if(currentpage>=page) currentpage=page-1; } int Layout_Single::AddImage(const char *filename,bool allowcropping,PP_ROTATION rotation) { int page=pages+1; for(int i=0;i<=pages;++i) { if(!ImageAt(i)) { Debug[WARN] << "No image found at page " << i << endl; page=i; i=pages; } } Debug[TRACE] << "Adding image to page " << page << endl; Layout_Single_ImageInfo *ii=NULL; try { ii=new Layout_Single_ImageInfo(*this,filename,page,false,rotation); } catch(const char *msg) { ErrorMessage_Dialog(msg); } if(ii) { imagelist.push_back(ii); if(page>=pages) ++pages; } else page=currentpage; return(page); } void Layout_Single::CopyImage(Layout_ImageInfo *ii) { int page=pages+1; for(int i=0;i<=pages;++i) { if(!ImageAt(i)) { Debug[WARN] << "No image found at page " << i << endl; page=i; i=pages; } } ii=new Layout_Single_ImageInfo(*this,ii,page); imagelist.push_back(ii); if(page>=pages) ++pages; } ImageSource *Layout_Single::GetImageSource(int page,CMColourDevice target,CMTransformFactory *factory,int res,bool completepage) { ImageSource *result=NULL; try { Layout_Single_ImageInfo *ii=(Layout_Single_ImageInfo *)ImageAt(page); if(ii) { ImageSource *is=ii->GetImageSource(target,factory); switch(ii->rotation) { case PP_ROTATION_90: is=new ImageSource_Rotate(is,90); break; case PP_ROTATION_180: is=new ImageSource_Rotate(is,180); break; case PP_ROTATION_270: is=new ImageSource_Rotate(is,270); break; default: break; } xoffset=leftmargin; yoffset=topmargin; GetImageableArea(); int iw=int((imageablewidth*is->xres)/72.0); int ih=int((imageableheight*is->yres)/72.0); if((iwwidth) || (ihheight)) { is=new ImageSource_Crop(is,0,0,iw,ih); } return(is); } } catch (const char *msg) { ErrorMessage_Dialog(msg); } return(result); } void Layout_Single::SetPageExtent(PageExtent &pe) { pe.GetImageableArea(); pagewidth=pe.pagewidth; pageheight=pe.pageheight; leftmargin=pe.leftmargin; rightmargin=pe.rightmargin; topmargin=pe.topmargin; bottommargin=pe.bottommargin; GetImageableArea(); } void Layout_Single::DBToLayout(LayoutDB &db) { Layout::DBToLayout(db); SetPageExtent(state.printer); SetMargins(db.singledb.FindInt("LeftMargin"),db.singledb.FindInt("RightMargin"), db.singledb.FindInt("TopMargin"),db.singledb.FindInt("BottomMargin")); } void Layout_Single::LayoutToDB(LayoutDB &db) { Layout::LayoutToDB(db); db.singledb.SetInt("LeftMargin",leftmargin); db.singledb.SetInt("RightMargin",rightmargin); db.singledb.SetInt("TopMargin",topmargin); db.singledb.SetInt("BottomMargin",bottommargin); } Layout_Single_ImageInfo *Layout_Single::ImageAt(int page) { Layout_Single_ImageInfo *result=NULL; LayoutIterator it(*this); Layout_ImageInfo *ii=it.FirstImage(); while(ii) { Layout_Single_ImageInfo *nii=(Layout_Single_ImageInfo *)ii; if(nii->page==page) { result=nii; } ii=it.NextImage(); } return(result); } GtkWidget *Layout_Single::CreateWidget() { return(pp_layout_single_new(&state)); } void Layout_Single::RefreshWidget(GtkWidget *widget) { pp_layout_single_refresh(PP_LAYOUT_SINGLE(widget)); } const char *Layout_Single::GetType() { return("Single"); } void (*Layout_Single::SetUnitFunc())(GtkWidget *wid,enum Units unit) { return(pp_layout_single_set_unit); } int Layout_Single::GetCapabilities() { return(PPLAYOUT_ROTATE|PPLAYOUT_MASK|PPLAYOUT_EFFECTS|PPLAYOUT_PROFILE); } // We override this to set the top/left margin void Layout_Single::Print(Progress *p) { xoffset=leftmargin; yoffset=topmargin; Layout::Print(p); } bool Layout_Single_ImageInfo::GetSelected() { Layout_Single *l=(Layout_Single *)&layout; return(page==l->currentpage); } #if 0 class LayoutIterator_Single : public LayoutIterator { LayoutIterator_Single(Layout_Single &header) : LayoutIterator(header) { } virtual ~LayoutIterator_Single() { } virtual Layout_ImageInfo *FirstSelected() { Layout_ImageInfo *ii=FirstImage(); while(ii) { if(ii->page==header.currentpage) return(ii); ii=NextSelected(); } return(NULL); } virtual Layout_ImageInfo *NextSelected() { Layout_ImageInfo *ii=NextImage(); while(ii) { if(ii->page==header.currentpage) return(ii); ii=NextSelected(); } return(NULL); } }; LayoutIterator Layout_Single::GetIterator() { return(LayoutIterator_Single(*this)); } #endif #if 0 // Re-implement this with a subclass of LayoutIterator Layout_ImageInfo *Layout_Single::FirstSelected() { Layout_ImageInfo *ii=FirstImage(); while(ii) { if(ii->page==currentpage) return(ii); ii=NextSelected(); } return(NULL); } Layout_ImageInfo *Layout_Single::NextSelected() { Layout_ImageInfo *ii=NextImage(); while(ii) { if(ii->page==currentpage) return(ii); ii=NextSelected(); } return(NULL); } #endif photoprint-0.4.2-pre2/pp_layout_carousel.h0000644000175000017500000000332011101462351015564 00000000000000#ifndef __PP_LAYOUT_CAROUSEL_H__ #define __PP_LAYOUT_CAROUSEL_H__ #include #include #include #include #include #include #include #include "stpui_widgets/units.h" #include "photoprint_state.h" #include "pp_sigcontrol.h" G_BEGIN_DECLS #define PP_LAYOUT_CAROUSEL_TYPE (pp_layout_carousel_get_type()) #define PP_LAYOUT_CAROUSEL(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PP_LAYOUT_CAROUSEL_TYPE, pp_Layout_Carousel)) #define PP_LAYOUT_CAROUSEL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PP_LAYOUT_CAROUSEL_TYPE, pp_Layout_CarouselClass)) #define IS_PP_LAYOUT_CAROUSEL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PP_LAYOUT_CAROUSEL_TYPE)) #define IS_PP_LAYOUT_CAROUSEL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PP_LAYOUT_CAROUSEL_TYPE)) typedef struct _pp_Layout_Carousel pp_Layout_Carousel; typedef struct _pp_Layout_CarouselClass pp_Layout_CarouselClass; struct _pp_Layout_Carousel { GtkHBox hbox; GtkWidget *pageview; GtkWidget *page; GtkWidget *pageextent; GtkWidget *segments; GtkWidget *overlap; GtkWidget *angleoffset; GtkWidget *innerradius; GtkWidget *imagecontrol; PhotoPrint_State *state; }; struct _pp_Layout_CarouselClass { GtkHBoxClass parent_class; void (*changed)(pp_Layout_Carousel *book); void (*popupmenu)(pp_Layout_Carousel *book); void (*selection_changed)(pp_Layout_Carousel *book); }; GType pp_layout_carousel_get_type (void); GtkWidget* pp_layout_carousel_new (PhotoPrint_State *state); void pp_layout_carousel_refresh(pp_Layout_Carousel *ob); void pp_layout_carousel_set_unit(GtkWidget *wid,enum Units unit); G_END_DECLS #endif /* __PP_LAYOUT_CAROUSEL_H__ */ photoprint-0.4.2-pre2/pp_menu_layout.h0000644000175000017500000000051511101462351014716 00000000000000#ifndef PP_MENU_LAYOUT_H #define PP_MENU_LAYOUT_H #include #include void BuildLayoutMenu(void *userdata,GtkUIManager *ui_manager); void LayoutMenu_SetLayout(GtkUIManager *ui_manager,const char *layouttype); void LayoutMenu_SetLayoutCapabilities(GtkUIManager *ui_manager,int features); #endif photoprint-0.4.2-pre2/photoprint_state.cpp0000644000175000017500000002171311266365261015640 00000000000000/* * photoprint_state.cpp - class containing most of PhotoPrint's state. * Passed around the various GUI routines. * Contains: * Layout - deals with rows, columns, margins and image list. * LayoutDB - deals with storing layout parameters for loading and saving. * PrintOutput - keeps track of print destination * GPrinter - actual printer class, maintains printer settings as well as * performing actual printing. * CMSDB - Colour management settings for both input (image) and output (printer) profiles. * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include "imagesource/imagesource_util.h" #include "photoprint_state.h" #include "layout_nup.h" #include "layout_single.h" #include "layout_poster.h" #include "layout_carousel.h" #include "support/debug.h" #include "support/searchpathdbhandler.h" #include "support/pathsupport.h" #include "miscwidgets/generaldialogs.h" #define DEFAULTPRESETVERSION 29 #define CURRENTPRESETVERSION 41 using namespace std; ConfigTemplate PhotoPrint_State::Template[]= { ConfigTemplate("PresetVersion",int(DEFAULTPRESETVERSION)), // Default to a pre-0.3.0 version. ConfigTemplate("PrintColourSpace","RGB"), ConfigTemplate("ScalingQuality",int(IS_SCALING_AUTOMATIC)), ConfigTemplate("Units","MM"), ConfigTemplate("RenderingResolution",int(360)), ConfigTemplate("Win_X",int(0)), ConfigTemplate("Win_Y",int(0)), ConfigTemplate("Win_W",int(0)), ConfigTemplate("Win_H",int(0)), ConfigTemplate("HighresPreviews",int(1)), ConfigTemplate("ExpanderState_SigControl",int(1)), ConfigTemplate("ExpanderState_Carousel",int(1)), ConfigTemplate("ExpanderState_Single",int(1)), ConfigTemplate("ExpanderState_Poster",int(1)), ConfigTemplate("ExpanderState_PosterOverlap",int(1)), ConfigTemplate("ExpanderState_PageExtent",int(1)), ConfigTemplate("ExpanderState_ImageInfo",int(1)), ConfigTemplate("ExpanderState_Histogram",int(1)), ConfigTemplate("ExpanderState_EffectSelector",int(1)), // Now obsolete, left in for compatibility with pre-0.3.0 preset files. ConfigTemplate("DefaultRGBProfile",""), ConfigTemplate("DefaultRGBProfileActive",int(0)), ConfigTemplate("DefaultCMYKProfile",""), ConfigTemplate("DefaultCMYKProfileActive",int(0)), ConfigTemplate("PrinterProfile",""), ConfigTemplate("PrinterProfileActive",int(0)), ConfigTemplate("MonitorProfile",""), ConfigTemplate("MonitorProfileActive",int(0)), ConfigTemplate("RenderingIntent",int(0)), // End of obsolete items... #ifdef WIN32 // FIXME - where should these be installed under Win32? $HOME is fine for a single user... ConfigTemplate("BorderPath","$HOME/.photoprint/borders"), ConfigTemplate("BackgroundPath","$HOME/.photoprint/backgrounds"), ConfigTemplate("ShortcutsPath","$HOME/.photoprint/shortcuts"), #else ConfigTemplate("BorderPath","/usr/share/photoprint/borders" SEARCHPATH_DELIMITER_S "/usr/local/share/photoprint/borders" SEARCHPATH_DELIMITER_S "$HOME/.photoprint/borders"), ConfigTemplate("BackgroundPath","/usr/share/photoprint/backgrounds" SEARCHPATH_DELIMITER_S "/usr/local/share/photoprint/backgrounds" SEARCHPATH_DELIMITER_S "$HOME/.photoprint/backgrounds"), ConfigTemplate("ShortcutsPath","/usr/share/photoprint/shortcuts" SEARCHPATH_DELIMITER_S "/usr/local/share/photoprint/shortcuts" SEARCHPATH_DELIMITER_S "$HOME/.photoprint/shortcuts"), #endif // Null-terminated ConfigTemplate() }; class PPPathDBHandler : public ConfigDBHandler { public: PPPathDBHandler(ConfigFile *file,const char *section,ConfigDB *db,PhotoPrint_State &state) : ConfigDBHandler(file,section,db), db(db), state(state) { state.bordersearchpath.AddPath(db->FindString("BorderPath")); state.backgroundsearchpath.AddPath(db->FindString("BackgroundPath")); } virtual ~PPPathDBHandler() { } virtual void LeaveSection() { state.bordersearchpath.ClearPaths(); state.bordersearchpath.AddPath(db->FindString("BorderPath")); state.backgroundsearchpath.ClearPaths(); state.backgroundsearchpath.AddPath(db->FindString("BackgroundPath")); ConfigDBHandler::LeaveSection(); } virtual void SaveSection(FILE *file) { char *p; p=state.bordersearchpath.GetPaths(); db->SetString("BorderPath",p); free(p); p=state.backgroundsearchpath.GetPaths(); db->SetString("BackgroundPath",p); free(p); ConfigDBHandler::SaveSection(file); } protected: ConfigDB *db; PhotoPrint_State &state; }; PhotoPrint_State::PhotoPrint_State(bool batchmode) : ConfigFile(), ConfigDB(Template), layout(NULL), filename(NULL), layoutdb(this,"[Layout]"), printoutput(this,"[Output]"), printer(printoutput,this,"[Print]"), profilemanager(this,"[ColourManagement]"), bordersearchpath(), backgroundsearchpath(), batchmode(batchmode) { new PPPathDBHandler(this,"[General]",this,*this); SetDefaultFilename(); } PhotoPrint_State::~PhotoPrint_State() { if(filename) free(filename); if(layout) delete layout; } void PhotoPrint_State::SetFilename(const char *file) { if(filename) free(filename); filename=strdup(file); } void PhotoPrint_State::SetDefaultFilename() { if(filename) free(filename); filename=NULL; filename=substitute_homedir("$HOME" SEARCHPATH_SEPARATOR_S ".photoprint" SEARCHPATH_SEPARATOR_S "default.preset"); } void PhotoPrint_State::ParseSupplementaryConfig(const char *filename) { printoutput.QueuesToDB(); ConfigFile::ParseConfigFile(filename); } void PhotoPrint_State::ParseConfigFile() { // Config files from newer than 0.2.9 will override this SetInt("PresetVersion",29); printer.Reset(); if(!ConfigFile::ParseConfigFile(filename)) { Debug[WARN] << "Parsing of config file failed" << endl; Debug[TRACE] << "Default queue is: " << printoutput.FindString("Queue") << endl; // Shoudn't need to do this any more, since the GPrinterSettings class now ensures a sane // default is set. // if(printoutput.GetPPD()) // Debug[TRACE] << "Default PPD is: " << printoutput.GetPPD() << endl; // Debug[TRACE] << "Setting default driver" << endl; // printer.SetDriver("ps2"); } // Code to update older config files goes here... int v=FindInt("PresetVersion"); if(v<30) { // Transfer colour management settings to the new DB... // But only if there are settings wortht transferring! const char *pf=FindString("DefaultRGBProfile"); if(pf && strlen(pf)) { profilemanager.SetString("DefaultRGBProfile",FindString("DefaultRGBProfile")); profilemanager.SetInt("DefaultRGBProfileActive",FindInt("DefaultRGBProfileActive")); profilemanager.SetString("DefaultCMYKProfile",FindString("DefaultCMYKProfile")); profilemanager.SetInt("DefaultCMYKProfileActive",FindInt("DefaultCMYKProfileActive")); profilemanager.SetString("PrinterProfile",FindString("PrinterProfile")); profilemanager.SetInt("PrinterProfileActive",FindInt("PrinterProfileActive")); profilemanager.SetInt("RenderingIntent",FindInt("RenderingIntent")); // And clear the obsolete settings... SetString("DefaultRGBProfile",""); SetInt("DefaultRGBProfileActive",0); SetString("DefaultCMYKProfile",""); SetInt("DefaultCMYKProfileActive",0); SetString("PrinterProfile",""); SetInt("PrinterProfileActive",0); } } printer.Validate(); } bool PhotoPrint_State::SaveConfigFile() { // Ensure that saved preset have the current PresetVersion... SetInt("PresetVersion",CURRENTPRESETVERSION); // Update the appropriate DB from the current layout... layout->LayoutToDB(layoutdb); Debug[TRACE] << "Filename : " << filename << endl; return(ConfigFile::SaveConfigFile(filename)); } bool PhotoPrint_State::NewLayout(Progress *p) { const char *type=layoutdb.FindString("LayoutType"); Layout *nl=NULL; if(strcmp(type,"NUp")==0) { Debug[TRACE] << "Building NUp Layout" << endl; nl=new Layout_NUp(*this,layout); } else if(strcmp(type,"Single")==0) { Debug[TRACE] << "Building Single Layout" << endl; nl=new Layout_Single(*this,layout); } else if(strcmp(type,"Poster")==0) { Debug[TRACE] << "Building Poster Layout" << endl; nl=new Layout_Poster(*this,layout); } else if(strcmp(type,"Carousel")==0) { Debug[TRACE] << "Building Carousel Layout" << endl; nl=new Layout_Carousel(*this,layout); } else throw "Unknown layout type"; nl->DBToLayout(layoutdb); if(layout) { nl->TransferImages(layout,p); delete layout; } layout=nl; return(true); } void PhotoPrint_State::SetUnits(enum Units unit) { switch(unit) { case UNIT_POINTS: SetString("Units","PT"); break; case UNIT_INCHES: SetString("Units","IN"); break; case UNIT_MILLIMETERS: SetString("Units","MM"); break; case UNIT_CENTIMETERS: SetString("Units","CM"); break; } } enum Units PhotoPrint_State::GetUnits() { enum Units result=UNIT_POINTS; const char *u=FindString("Units"); if(strcasecmp(u,"PT")==0) result=UNIT_POINTS; else if(strcasecmp(u,"IN")==0) result=UNIT_INCHES; else if(strcasecmp(u,"MM")==0) result=UNIT_MILLIMETERS; else if(strcasecmp(u,"CM")==0) result=UNIT_CENTIMETERS; return(result); } photoprint-0.4.2-pre2/configure.ac0000644000175000017500000000570311321422517014003 00000000000000# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) AC_INIT([photoprint], [0.4.2-pre2], [blackfive@fakenhamweb.co.uk]) AC_CONFIG_AUX_DIR([scripts]) AC_CONFIG_SRCDIR([photoprint.cpp]) AM_CONFIG_HEADER([config.h]) AM_INIT_AUTOMAKE([1.9 foreign]) AM_GNU_GETTEXT_VERSION([0.17]) AM_GNU_GETTEXT([external]) # Checks for programs. AC_PROG_LIBTOOL AC_PROG_CXX AC_PROG_CC AC_PROG_MAKE_SET AC_PROG_CPP # Are we building for Win32? case $host_os in *mingw32* ) echo "Configuring for mingw"; LIBS="-lwinspool $LIBS -mwindows" ;; esac # Checks for libraries. PKG_CHECK_MODULES([GLIB2], [glib-2.0]) PKG_CHECK_MODULES([GTHREAD], [gthread-2.0]) PKG_CHECK_MODULES([GTK2], [gtk+-2.0]) PKG_CHECK_MODULES([GDKPIXBUF2], [gdk-pixbuf-2.0]) PKG_CHECK_MODULES([GP], [gutenprint]) PKG_CHECK_MODULES([LCMS], [lcms]) AC_CHECK_LIB(m,pow, LIBM_LIBS="-lm") AC_SUBST([LIBM_LIBS]) AC_CHECK_LIB([pnm], [pnm_readpaminit],,,[-lm]) AC_CHECK_LIB([netpbm], [pnm_readpaminit],,,[-lm]) # Some distributions have the pam.h header in a netpbm subfolder AC_CHECK_HEADERS([netpbm/pam.h]) AC_CHECK_LIB([tiff], [TIFFOpen], [TIFF_LIBS="-ltiff"], [unset ac_cv_lib_tiff_TIFFOpen AC_CHECK_LIB([tiff], [TIFFOpen],[TIFF_LIBS="-ltiff"], AC_CHECK_LIB([tiff3], [TIFFOpen],[TIFF_LIBS="-ltiff3"], AC_MSG_FAILURE([libtiff or devel files not found])), [-lm]) ]) AC_SUBST([TIFF_LIBS]) AC_CHECK_LIB([jpeg], [jpeg_read_header],, AC_CHECK_LIB([jpeg62], [jpeg_read_header],JPEG_LIBS="-ljpeg62",AC_MSG_FAILURE([libjpeg or devel files not found]))) AC_SUBST([JPEG_LIBS]) AC_CHECK_LIB([pthread], [pthread_attr_init]) AC_CHECK_LIB([pthreadGC2], [pthread_attr_init],,) AC_CHECK_LIB([gnugetopt], [getopt_long], [GETOPT_LIBS=-lgnugetopt]) AC_SUBST([GETOPT_LIBS]) AC_CHECK_LIB(socket,socket, if test "$uname" != "IRIX"; then LIBS="-lsocket $LIBS" else echo "Not using -lsocket since you are running IRIX." fi) AC_CHECK_LIB(nsl,gethostbyaddr, if test "$uname" != "IRIX"; then LIBS="-lnsl $LIBS" else echo "Not using -lnsl since you are running IRIX." fi) AC_CHECK_LIB(cups,httpConnect) # Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS([fcntl.h stdlib.h string.h unistd.h]) # Checks for typedefs, structures, and compiler characteristics. AC_HEADER_STDBOOL AC_C_CONST AC_TYPE_SIZE_T # Checks for library functions. AC_FUNC_MALLOC AC_FUNC_STAT AC_CHECK_FUNCS([memset mkdir strcasecmp strdup strncasecmp]) AC_CONFIG_FILES([Makefile po/Makefile.in imagesource/Makefile imageutils/Makefile miscwidgets/Makefile support/Makefile profilemanager/Makefile pixbufthumbnail/Makefile effects/Makefile stpui_widgets/Makefile stp_support/Makefile gp_cppsupport/Makefile splashscreen/Makefile shortcuts/Makefile borders/Makefile]) AC_OUTPUT photoprint-0.4.2-pre2/pp_layout_nup_pageview.cpp0000644000175000017500000003525211306464340017013 00000000000000 #include #include #include #include #include #include "stpui_widgets/stpui_combo.h" #include "pp_sigcontrol.h" #include "support/debug.h" #include "progressbar.h" #include "pp_menu_image.h" #include "dialogs.h" #include "pp_layout_nup_pageview.h" #define PAGEVIEW_DEFAULT_WIDTH 250 #define PAGEVIEW_DEFAULT_HEIGHT 320 enum { CHANGED_SIGNAL, REFLOW_SIGNAL, SELECTIONCHANGED_SIGNAL, POPUPMENU_SIGNAL, LAST_SIGNAL }; static guint pp_layout_nup_pageview_signals[LAST_SIGNAL] = { 0 }; static void pp_layout_nup_pageview_class_init (pp_Layout_NUp_PageViewClass *klass); static void pp_layout_nup_pageview_init (pp_Layout_NUp_PageView *pageview); static void pp_layout_nup_pageview_realize (GtkWidget *widget); static void pp_layout_nup_pageview_size_request (GtkWidget *widget, GtkRequisition *requisition); static void pp_layout_nup_pageview_size_allocate (GtkWidget *widget, GtkAllocation *allocation); static gboolean pp_layout_nup_pageview_expose (GtkWidget *widget, GdkEventExpose *event); static gboolean pp_layout_nup_pageview_button_press (GtkWidget *widget, GdkEventButton *event); static gboolean pp_layout_nup_pageview_button_release (GtkWidget *widget, GdkEventButton *event); static gboolean pp_layout_nup_pageview_motion_notify (GtkWidget *widget, GdkEventMotion *event ); #define TARGET_URI_LIST 1 static GtkTargetEntry dnd_file_drop_types[] = { { "text/uri-list", 0, TARGET_URI_LIST } }; static gint dnd_file_drop_types_count = 1; static void get_dnd_data(GtkWidget *widget, GdkDragContext *context, gint x, gint y, GtkSelectionData *selection_data, guint info, guint time, gpointer data) { gchar *uris=g_strdup((const gchar *)selection_data->data); gchar *urilist=uris; int lastpage=0; pp_Layout_NUp_PageView *pv=PP_LAYOUT_NUP_PAGEVIEW(widget); ProgressBar progress("Adding images...",false); while(*urilist) { if(strncmp(urilist,"file:",5)) { while(*urilist && *urilist!='\n' && *urilist!='\r') ++urilist; while(*urilist=='\n' || *urilist=='\r') *urilist++; } else { Debug[TRACE] << "URIList: " << urilist << endl; gchar *uri=urilist; while(*urilist && *urilist!='\n' && *urilist!='\r') ++urilist; if(*urilist) { while(*urilist=='\n' || *urilist=='\r') *urilist++=0; } if(*uri && *uri!='\n' && *uri!='\r') { gchar *filename=g_filename_from_uri(uri,NULL,NULL); lastpage=pv->layout->AddImage(filename); pp_layout_nup_pageview_refresh(pv); g_signal_emit_by_name (GTK_OBJECT (pv), "changed"); progress.DoProgress(0,0); } } } pp_layout_nup_pageview_set_page(pv,lastpage); g_signal_emit_by_name (GTK_OBJECT (pv), "changed"); g_free(uris); } /* Local data */ static GtkWidgetClass *parent_class = NULL; GType pp_layout_nup_pageview_get_type () { static GType pageview_type = 0; if (!pageview_type) { static const GTypeInfo pageview_info = { sizeof (pp_Layout_NUp_PageViewClass), NULL, NULL, (GClassInitFunc) pp_layout_nup_pageview_class_init, NULL, NULL, sizeof (pp_Layout_NUp_PageView), 0, (GInstanceInitFunc) pp_layout_nup_pageview_init, }; pageview_type = g_type_register_static (GTK_TYPE_WIDGET, "pp_Layout_NUp_PageView", &pageview_info, GTypeFlags(0)); } return pageview_type; } static void pp_layout_nup_pageview_class_init (pp_Layout_NUp_PageViewClass *cl) { GtkObjectClass *object_class; GtkWidgetClass *widget_class; object_class = (GtkObjectClass*) cl; widget_class = (GtkWidgetClass*) cl; parent_class = GTK_WIDGET_CLASS(gtk_type_class (gtk_widget_get_type ())); widget_class->realize = pp_layout_nup_pageview_realize; widget_class->expose_event = pp_layout_nup_pageview_expose; widget_class->size_request = pp_layout_nup_pageview_size_request; widget_class->size_allocate = pp_layout_nup_pageview_size_allocate; widget_class->button_press_event = pp_layout_nup_pageview_button_press; widget_class->button_release_event = pp_layout_nup_pageview_button_release; widget_class->motion_notify_event = pp_layout_nup_pageview_motion_notify; pp_layout_nup_pageview_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (cl), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_Layout_NUp_PageViewClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); pp_layout_nup_pageview_signals[REFLOW_SIGNAL] = g_signal_new ("reflow", G_TYPE_FROM_CLASS (cl), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_Layout_NUp_PageViewClass, reflow), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); pp_layout_nup_pageview_signals[SELECTIONCHANGED_SIGNAL] = g_signal_new ("selection_changed", G_TYPE_FROM_CLASS (cl), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_Layout_NUp_PageViewClass, selectionchanged), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); pp_layout_nup_pageview_signals[POPUPMENU_SIGNAL] = g_signal_new ("popupmenu", G_TYPE_FROM_CLASS (cl), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_Layout_NUp_PageViewClass, popupmenu), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void pp_layout_nup_pageview_init (pp_Layout_NUp_PageView *pageview) { pageview->button = 0; pageview->timer = 0; pageview->dragging=FALSE; pageview->selected=NULL; } GtkWidget* pp_layout_nup_pageview_new (Layout_NUp *layout) { pp_Layout_NUp_PageView *pageview; pageview = PP_LAYOUT_NUP_PAGEVIEW(g_object_new (pp_layout_nup_pageview_get_type (), NULL)); gtk_drag_dest_set(GTK_WIDGET(pageview), GtkDestDefaults(GTK_DEST_DEFAULT_MOTION | GTK_DEST_DEFAULT_DROP), dnd_file_drop_types, dnd_file_drop_types_count, GdkDragAction(GDK_ACTION_COPY | GDK_ACTION_MOVE | GDK_ACTION_LINK)); g_signal_connect(G_OBJECT(pageview), "drag_data_received", G_CALLBACK(get_dnd_data), NULL); pageview->layout=layout; return GTK_WIDGET (pageview); } static void pp_layout_nup_pageview_realize (GtkWidget *widget) { pp_Layout_NUp_PageView *pageview; GdkWindowAttr attributes; gint attributes_mask; g_return_if_fail (widget != NULL); g_return_if_fail (PP_IS_PAGEVIEW (widget)); GTK_WIDGET_SET_FLAGS (widget, GTK_REALIZED); pageview = PP_LAYOUT_NUP_PAGEVIEW (widget); attributes.x = widget->allocation.x; attributes.y = widget->allocation.y; attributes.width = widget->allocation.width; attributes.height = widget->allocation.height; attributes.wclass = GDK_INPUT_OUTPUT; attributes.window_type = GDK_WINDOW_CHILD; attributes.event_mask = gtk_widget_get_events (widget) | GDK_EXPOSURE_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK; attributes.visual = gtk_widget_get_visual (widget); attributes.colormap = gtk_widget_get_colormap (widget); attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL | GDK_WA_COLORMAP; widget->window = gdk_window_new (widget->parent->window, &attributes, attributes_mask); widget->style = gtk_style_attach (widget->style, widget->window); gdk_window_set_user_data (widget->window, widget); gtk_style_set_background (widget->style, widget->window, GTK_STATE_ACTIVE); } static void pp_layout_nup_pageview_size_request (GtkWidget *widget, GtkRequisition *requisition) { requisition->width = PAGEVIEW_DEFAULT_WIDTH; requisition->height = PAGEVIEW_DEFAULT_HEIGHT; } static void pp_layout_nup_pageview_size_allocate (GtkWidget *widget, GtkAllocation *allocation) { pp_Layout_NUp_PageView *pageview; g_return_if_fail (widget != NULL); g_return_if_fail (PP_IS_PAGEVIEW (widget)); g_return_if_fail (allocation != NULL); widget->allocation = *allocation; pageview = PP_LAYOUT_NUP_PAGEVIEW (widget); if (GTK_WIDGET_REALIZED (widget)) { gdk_window_move_resize (widget->window, allocation->x, allocation->y, allocation->width, allocation->height); } pageview->layout->FlushHRPreviews(); } static gboolean pp_layout_nup_pageview_expose( GtkWidget *widget, GdkEventExpose *event ) { pp_Layout_NUp_PageView *pageview=PP_LAYOUT_NUP_PAGEVIEW (widget); g_return_val_if_fail (widget != NULL, FALSE); g_return_val_if_fail (PP_IS_PAGEVIEW (widget), FALSE); g_return_val_if_fail (event != NULL, FALSE); if (event->count > 0) return FALSE; pageview->height=widget->allocation.height; pageview->width=(pageview->layout->pagewidth*pageview->height)/pageview->layout->pageheight; if(pageview->width>widget->allocation.width) { pageview->width=widget->allocation.width; pageview->height=(pageview->layout->pageheight*pageview->width)/pageview->layout->pagewidth; } pageview->top=(widget->allocation.height-pageview->height)/2; pageview->left=(widget->allocation.width-pageview->width)/2; pageview->layout->GetImageableArea(); pageview->scale=pageview->width; pageview->scale/=pageview->layout->pagewidth; pageview->layout->DrawPreview(widget,pageview->left,pageview->top,pageview->width,pageview->height); for(int row=0;rowlayout->GetRows();++row) { for(int column=0;columnlayout->GetColumns();++column) { LayoutRectangle *s=pageview->layout->GetLayoutRectangle(row,column); s->Scale(pageview->scale); Layout_ImageInfo *ii=pageview->layout->ImageAt(pageview->layout->GetCurrentPage(),row,column); if(ii && ii->GetSelected()) { gdk_draw_rectangle (widget->window, widget->style->dark_gc[widget->state],FALSE, pageview->left+s->x,pageview->top+s->y,s->w,s->h); gdk_draw_rectangle (widget->window, widget->style->dark_gc[widget->state],FALSE, pageview->left+s->x-1,pageview->top+s->y-1,s->w+2,s->h+2); } else gdk_draw_rectangle (widget->window, widget->style->mid_gc[widget->state],FALSE, pageview->left+s->x,pageview->top+s->y,s->w,s->h); delete s; } } return FALSE; } static gboolean pp_layout_nup_pageview_button_press( GtkWidget *widget, GdkEventButton *event ) { pp_Layout_NUp_PageView *pageview; g_return_val_if_fail (widget != NULL, FALSE); g_return_val_if_fail (PP_IS_PAGEVIEW (widget), FALSE); g_return_val_if_fail (event != NULL, FALSE); pageview = PP_LAYOUT_NUP_PAGEVIEW (widget); int x=int(event->x-pageview->left); int y=int(event->y-pageview->top); bool shift=(event->state&GDK_SHIFT_MASK)!=0; bool ctrl=(event->state&GDK_CONTROL_MASK)!=0; if(x>0 && y>0 && xwidth && yheight && pageview->scale>0.0) { double sx=x/pageview->scale; double sy=y/pageview->scale; Layout_ImageInfo *prevselected=pageview->selected; pageview->selected=pageview->layout->ImageAtCoord(int(sx),int(sy)); switch(event->button) { case 1: if(!(shift||ctrl)) { if(pageview->selected && pageview->selected->allowcropping) { pageview->dragging=true; pageview->init_x=x; pageview->init_y=y; pageview->init_hpan=pageview->selected->crop_hpan; pageview->init_vpan=pageview->selected->crop_vpan; gtk_grab_add(widget); } else pageview->dragging=false; pageview->layout->SelectNone(); } if(pageview->selected) { if(ctrl) pageview->selected->ToggleSelected(); else if(shift) { if(prevselected) { LayoutIterator it(*pageview->layout); Layout_ImageInfo *ii=it.FirstImage(); bool selecting=false; while(ii) { if((ii==prevselected) || (ii==pageview->selected)) { if(selecting) ii->SetSelected(true); selecting^=true; } if(selecting) ii->SetSelected(true); ii=it.NextImage(); } } else pageview->selected->SetSelected(true); } else pageview->selected->SetSelected(true); } pp_layout_nup_pageview_refresh(pageview); g_signal_emit_by_name (GTK_OBJECT (pageview), "selection_changed"); break; case 3: if(!(shift||ctrl)) { if(pageview->selected) { if(!pageview->selected->GetSelected()) pageview->layout->SelectNone(); } else pageview->layout->SelectNone(); } if(pageview->selected) { pageview->selected->SetSelected(true); pp_layout_nup_pageview_refresh(pageview); g_signal_emit_by_name (GTK_OBJECT (pageview), "selection_changed"); g_signal_emit_by_name (GTK_OBJECT (pageview), "popupmenu"); } break; default: break; } } return FALSE; } static gboolean pp_layout_nup_pageview_button_release( GtkWidget *widget, GdkEventButton *event ) { pp_Layout_NUp_PageView *pageview; g_return_val_if_fail (widget != NULL, FALSE); g_return_val_if_fail (PP_IS_PAGEVIEW (widget), FALSE); g_return_val_if_fail (event != NULL, FALSE); pageview = PP_LAYOUT_NUP_PAGEVIEW (widget); switch(event->button) { case 1: if (event->button==1) pageview->dragging=false; gtk_grab_remove(widget); break; default: break; } // g_signal_emit_by_name (GTK_OBJECT (pageview->adjustment), "value_changed"); return FALSE; } static gboolean pp_layout_nup_pageview_motion_notify( GtkWidget *widget, GdkEventMotion *event ) { pp_Layout_NUp_PageView *pageview; g_return_val_if_fail (widget != NULL, FALSE); g_return_val_if_fail (PP_IS_PAGEVIEW (widget), FALSE); g_return_val_if_fail (event != NULL, FALSE); pageview = PP_LAYOUT_NUP_PAGEVIEW (widget); Layout_ImageInfo *ii=pageview->selected; if (pageview->dragging && ii) { int x,y; GdkModifierType mods; gdk_window_get_pointer (widget->window, &x, &y, &mods); int dx=(x-pageview->init_x); int dy=(y-pageview->init_y); int hp=pageview->init_hpan-dx; int vp=pageview->init_vpan-dy; if(hp<0) hp=0; if(hp>LAYOUT_RECTANGLE_PANNING_MAX) hp=LAYOUT_RECTANGLE_PANNING_MAX; if(vp<0) vp=0; if(vp>LAYOUT_RECTANGLE_PANNING_MAX) vp=LAYOUT_RECTANGLE_PANNING_MAX; ii->crop_hpan=LayoutRectangle_Alignment(hp); ii->crop_vpan=LayoutRectangle_Alignment(vp); gtk_widget_queue_draw (GTK_WIDGET (pageview)); } return FALSE; } void pp_layout_nup_pageview_refresh(pp_Layout_NUp_PageView *pv) { gtk_widget_queue_draw (GTK_WIDGET (pv)); } void pp_layout_nup_pageview_set_page(pp_Layout_NUp_PageView *pv,int page) { pv->layout->SetCurrentPage(page); pp_layout_nup_pageview_refresh(pv); } photoprint-0.4.2-pre2/pp_imagecontrol.h0000644000175000017500000000265511221454230015047 00000000000000#ifndef __PP_IMAGECONTROL_H__ #define __PP_IMAGECONTROL_H__ #include #include #include #include #include #include #include #include #include "stpui_widgets/units.h" G_BEGIN_DECLS #define PP_IMAGECONTROL_TYPE (pp_imagecontrol_get_type()) #define PP_IMAGECONTROL(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PP_IMAGECONTROL_TYPE, pp_ImageControl)) #define PP_IMAGECONTROL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PP_IMAGECONTROL_TYPE, pp_ImageControlClass)) #define IS_PP_IMAGECONTROL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PP_IMAGECONTROL_TYPE)) #define IS_PP_IMAGECONTROL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PP_IMAGECONTROL_TYPE)) typedef struct _pp_ImageControl pp_ImageControl; typedef struct _pp_ImageControlClass pp_ImageControlClass; class Layout; struct _pp_ImageControl { GtkVBox box; GtkWidget *imageinfo; GtkWidget *effectselector; GtkWidget *histogram; GtkWidget *expander1; GtkWidget *expander2; Layout *layout; }; struct _pp_ImageControlClass { GtkVBoxClass parent_class; void (*changed)(pp_ImageControl *sig); }; GType pp_imagecontrol_get_type (void); GtkWidget* pp_imagecontrol_new (Layout *layout); void pp_imagecontrol_refresh(pp_ImageControl *ob); void pp_imagecontrol_set_image(pp_ImageControl *ob); G_END_DECLS #endif /* __PP_IMAGECONTROL_H__ */ photoprint-0.4.2-pre2/layout_poster.h0000644000175000017500000000435011400246736014601 00000000000000#ifndef LAYOUT_POSTER_H #define LAYOUT_POSTER_H #include #include #include #include #include "imagesource/imagesource.h" #include "support/pageextent.h" #include "gp_cppsupport/gprinter.h" #include "layoutdb.h" #include "layout.h" class Layout_Poster_ImageInfo; class PhotoPrint_State; struct PosterFit { int width,height; int xpos,ypos; int xoffset,yoffset; int rotation; double scale; }; class Layout_Poster : public Layout { public: Layout_Poster(PhotoPrint_State &state,Layout *oldlayout=NULL); virtual ~Layout_Poster(); const char *GetType(); int GetCapabilities(); int AddImage(const char *filename,bool allowcropping=true,PP_ROTATION rotation=PP_ROTATION_AUTO); void CopyImage(Layout_ImageInfo *ii); void Reflow(); void SetPageExtent(PageExtent &pe); void SetMargins(int left,int right,int top,int bottom); void TilesFromSize(); void SizeFromTiles(); virtual void LayoutToDB(LayoutDB &db); virtual void DBToLayout(LayoutDB &db); virtual GtkWidget *CreateWidget(); virtual void RefreshWidget(GtkWidget *widget); virtual void DrawGridLines(GtkWidget *widget); virtual void SetCurrentPage(int page); ImageSource *GetImageSource(int page,CMColourDevice target=CM_COLOURDEVICE_PRINTER, CMTransformFactory *factory=NULL,int res=0,bool completepage=false); Layout_Poster_ImageInfo *ImageAt(int page); void DrawPreview(GtkWidget *widget,int xpos,int ypos,int width,int height); virtual void (*SetUnitFunc())(GtkWidget *wid,enum Units unit); int posters,currentposter; int posterwidth,posterheight; int paperwidth,paperheight; int hoverlap,voverlap; int htiles,vtiles; friend class Layout_Poster_ImageInfo; }; class Layout_Poster_ImageInfo : public Layout_ImageInfo { public: Layout_Poster_ImageInfo(Layout_Poster &layout,const char *filename,int page,bool allowcropping=false,PP_ROTATION rotation=PP_ROTATION_AUTO); Layout_Poster_ImageInfo(Layout_Poster &layout,Layout_ImageInfo *ii,int page); virtual ~Layout_Poster_ImageInfo(); virtual LayoutRectangle *GetBounds(); virtual bool GetSelected(); void DrawThumbnail(GtkWidget *widget,int xpos,int ypos,int width,int height); // ImageSource *GetImageSource(); // int rotation; private: friend class Layout_Poster; }; #endif photoprint-0.4.2-pre2/effects/0000777000175000017500000000000011400250525013207 500000000000000photoprint-0.4.2-pre2/effects/dialogcheck.cpp0000644000175000017500000000215111101462351016063 00000000000000#include #include #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "effectlist.h" #include "effects_dialog.h" #include "ppeffect_desaturate.h" #include "ppeffect_temperature.h" #include "egg-pixbuf-thumbnail.h" using namespace std; int main(int argc,char **argv) { cerr << "Starting..." << endl; if(argc==2) { gtk_init(&argc,&argv); PPEffectHeader header; GError *err=NULL; char *filename=argv[1]; GdkPixbuf *pb=egg_pixbuf_get_thumbnail_for_file(filename,EGG_PIXBUF_THUMBNAIL_LARGE,&err); EffectsDialog(header,NULL,pb); g_object_unref(G_OBJECT(pb)); } else { cerr << "No argument supplied" << endl; PPEffectHeader header; EffectListSource fxs; fxs.CreateEffect(0,header); fxs.CreateEffect(1,header); fxs.CreateEffect(2,header); PPEffect *e=header.Find(fxs.GetID(1)); if(e) delete e; else cerr << "not found" << endl; fxs.CreateEffect(1,header); e=header.Find(fxs.GetID(1)); if(e) delete e; else cerr << "not found" << endl; fxs.CreateEffect(1,header); e=header.Find(fxs.GetID(1)); if(e) delete e; } return(0); } photoprint-0.4.2-pre2/effects/TemperatureIcon.bmp0000644000175000017500000001106611101462351016735 00000000000000BM66(@  }ÃÊÄÊ‚ÄʃÄʇÄɉÄÊŒÄÊÄÉÄÉ“ÄÉ”ÄɘÄÉ™ÅÉÅÉŸÅÉ¢ÅÉ£ÅɧÅÈ©ÅÉ«ÇÈ®ÅȰÅȲÅÈ´ÇǸÅȺÇǽÇÇ¿ÇÈÂÇÈÄÅÇÇÇÇÇÅÅÇÃÃÇÀÂÇ¿¿Ç½¾Ç»»Ç¹ºÇ¸¹Ç··Ç´µÇ²´Ç°²Ç®°Ç­®Çª­Ç©«Ç§©Ç¥¨Ç¤¥Ç¢¤Ç £Çž ÇŸÇšžÇ˜œÇ•™Ç•˜Ç“•Ç’”Ǔǒ}ÄÊÄÊ‚ÄÉ„ÄÊ…ÄɉÄÊŒÄÉÄÉÄÉ“ÅÉ•ÄɘÄÉšÅÈÄÉŸÅÈ¢ÅȤÅÈ¥ÅÉ©ÇÈ«ÅÈ®ÅȰÅȳÇÇ´ÇȸÅȺÅǽÇÈ¿ÇÇÂÇÇÄÇÇÇÇÇÇÅÄÇÃÃÇÂÂÇ¿¿Ç½¾Ç»½Ç¹ºÇ¸¹Çµ¸Ç´µÇ³´Ç°³Ç®°Ç­®Ç«­Ç©«Ç¨ªÇ¥¨Ç£§Ç¢¤ÇŸ¢Çž ÇœžÇ™žÇ™œÇ—™Ç•˜Ç“—Ç’•ÇŽ“Ç’}ÃÊÃÊÄÉ„ÄʇÄʉÄÉŒÄÊŽÄÉÄÉ“ÅÉ•ÄÉ—ÅÉšÅÉœÅÉŸÅÉ¢ÄȤÅȧÅÈ©ÇÈ«ÅÈ®ÅȰÅȳÅÈ´ÇǸÅǺÅȽÅÇ¿ÇÇÀÇÈÄÇÇÇÇÇÇÅÄÇÃÄÇÀÀÇ¿¿Ç½¾Ç»»Ç¹»Ç¸¹Çµ·Ç´µÇ³³Ç°³Ç®¯Ç­®Çª­Ç¨«Ç§ªÇ¥¨Ç£¥Ç¢¤ÇŸ£Ç ÇŸÇ™Ç˜œÇ—™Ç”˜Ç’—ǔǓǒ}ÃÊ~ÄÊ‚ÄÊ„ÄɇÄʈÄÉŒÄÉŽÄÉÄÉ“ÅÉ•ÅɘÄÉšÅÉÄÉŸÄÈ¢ÅȤÄȧÅÈ©ÅÉ«ÅÈ®ÅȰÇȳÇȵÅǸÅȺÅȽÇÇ¿ÇÈÂÇÈÄÇÇÇÇÇÇÅÅÇÃÄÇÂÂÇ¿Àǽ¾Ç»½ÇººÇ¸¹Ç·¸Ç´µÇ²³Ç°²Ç®°Ç­¯Çª­Ç©«Ç§©Ç¤¨Ç£§Ç¢¤ÇŸ¢Çž ÇœŸÇšžÇ™œÇ—šÇ”˜Ç’•Ç’•Ç“Ç}ÄÊÄÊ‚ÄɃÄÊ…ÄʈÄÉŒÄÊŽÄÉÅÉ“ÅÉ•ÄɘÄÉšÅÉÅÈŸÄÉ¢ÅɤÅÈ¥ÅÈ©ÅÈ«ÅÈ®ÅȰÅDzÅȵÅǸÇȺÇÈ»ÇÇ¿ÇÇÂÇÈÄÇÇÇÇÇÇÅÅÇÃÄÇÂÂÇ¿¿Ç¾¾Ç»½Ç¹»Ç¸¹Çµ·Ç´µÇ²´Ç°²Ç®°Ç­¯Çª­Ç©«Ç§©Ç¥¨Ç£¥Ç¢¤Ç £Çž ÇœŸÇšžÇ™œÇ•šÇ•˜Ç“—ǔǓÇ}ÃÉ~ÄÊ‚ÄÊ„ÄɇÄʈÄÉŒÄÉÄÉÄÉ“ÄÉ•ÄɘÅÉšÅÉÅÉŸÄÈ¢ÅȤÅȧÅÉ©ÅÈ«ÅÈ®ÇȰÇȳÇȵÅǸÅȺÅÇÂÇÇÄÇÇÇÇÇÇÄÅÇÃÃÇÂÂÇ»½Ç¹»Ç¸¹Ç··Ç´µÇ²´Ç°²Ç®°Ç­¯Ç«­Ç©ªÇ§©Ç¥¨Ç£§Ç¢¤Ç £Çž ÇžÇšÇ˜œÇ—™Ç”™Ç“—ǔǓǒ}ÄÊÄÊ‚ÄÉ„ÄÊ…ÄʈÄÊŒÄÊŽÄÉÄÉ“ÄÉ•ÅɘÅÉšÅÈÄÉŸÄÉ¢ÅȤÄȧÅÈ©ÅÈ«ÅÈ®ÅȰÅȳÅȵÇǸÅÇÿÿÿÂÇÈÄÇÇÇÇÇÇÄÅÇÃÃÇÀÂÿÿÿǹ»Ç¸¸Ç·¸Ç´µÇ³³Ç¯²Ç®°Ç«®Çª­Ç©«Ç§ªÇ¤§Ç¤§Ç ¤Ç £Çž ÇœŸÇšÇ™œÇ•™Ç”™Ç“•ǕǓÇ}ÃÉÄÊ‚ÄÊ„ÄɇÄɈÄÉŠÄÉŽÄÊÄÉ’ÅÉ•ÄɘÅÉšÄÉœÅÉŸÄÉ ÅÉ£ÄȧÅÈ©ÅÉ«ÅÈ®ÇȰÇȳÇǵÇÈÿÿÿÿÿÿÂÇÈÄÇÇÇÇÇÇÅÅÇÃÃÇÀÂÿÿÿÿÿÿǸ¹Çµ¸Ç´µÇ³³Ç°³Ç®°Ç­®Çª­Ç©ªÇ§©Ç¥¨Ç¤§Ç¢¤Ç ¢Çž ÇœžÇšÇ™œÇ—šÇ•˜Ç“—ǔǓÇ}ÄÊÃÉ‚ÄʃÄÊ…ÄʈÄÊŒÄÊÄÊÄÉ“ÄÉ•ÅÉ—ÅÉ™ÅÉÅÉŸÅÉ¢ÅɤÅɧÅÉ©ÅÈ«ÅÈ®ÅȰÅȳÅÈÿÿÿÿÿÿ¿ÇÈÂÇÇÄÅÇÇÇÇÇÅÄÇÃÃÇÂÂÇ¿¿ÿÿÿÿÿÿÇ··Ç´µÇ²´Ç°³Ç¯°Ç­¯Çª­Ç©«Ç§©Ç¥¨Ç¤¥Ç¢¤Ç £Çž ÇœŸÇšÇ™œÇ—™Ç•˜Ç“—ǔǓǎ’|ÃÉÄÊÃÊ„ÄʇÄɉÄÉŒÅÉŽÄÉÄÉ“ÅÉ•ÄɘÄÉšÄÉœÄÉŸÄÈ¢ÅɤÅɧÅÈ©ÅȪÅÈ®ÅȯÇÈÿÿÿÿÿÿÿÿÿÿÿÿÇ´µÇ³³Ç°²Ç®°Ç­®Çª­Ç©ªÇ¨©Ç¥¨Ç£¥Ç¢¤Ç £Çž ÇŸÇ™Ç™œÇ—šÇ•˜Ç“—Ç’”Ç“Ç}ÄÊÄÊ‚ÄÉ„ÄɇÄʈÄÊŒÄÉÅÉÅÉ“ÄÉ•ÄɘÄÉšÅÉÄÉŸÅÉ¢ÄȤÅȧÅȨÅȪÅÈ­ÅÈÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿdz³Ç°²Ç®°Ç­®Çª­Ç©«Ç¨©Ç¥¨Ç£¥Ç¢¤ÇŸ£Çž ÇœŸÇšÇ˜œÇ—šÇ”™Ç“—ǔǓǒ}ÃÊÄÊ‚ÃÉ„ÃɇÄɈÄÊŠÄÉŽÅÉÄÊ“ÅÉ”ÅɘÅÉšÄÈÅÉŸÅÉ¢ÅȤÅɧÅÉ©ÅȪÅÈ®ÅÈÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿDz³Ç°²Ç®¯Ç­¯Çª­Ç©«Ç¨©Ç¥¨Ç¤¥Ç¢¤ÇŸ£Çž ÇŸÇšžÇ˜œÇ—šÇ”˜Ç“—ǕǓǒ}ÃÊÄÊ‚ÄʃÄɇÄɉÄÉŠÄÉŽÅÉÄÉ“ÅÉ•ÄÉ—ÅÉšÅÈÅÉŸÅÈ ÄÈ£ÅɧÅÈ©ÅÉ«ÅÈ®ÅȰÅÈÿÿÿÿÿÿÿÿÿÿÿÿÇ´µÇ²³Ç°²Ç¯°Ç­¯Ç«­Ç¨«Ç§©Ç¥¨Ç¤§Ç¢¤ÇŸ£Ç ÇœŸÇšÇ˜œÇ—™Ç•˜Ç’—ǔǓÇ}ÃÊÄÊ‚ÄÊ„ÄʇÄɉÄÉŒÄÉÅÊÄÉ“ÄÉ”ÅɘÅÉšÅÉÄÉžÅÈ ÅȤÅɧÅÉ©ÅȪÅÈ®ÅȰÅȳÇÇÿÿÿÿÿÿ¿ÇÇÂÇÈÄÇÇÇÇÇÇÅÅÇÃÃÇÀÂǾ¿ÿÿÿÿÿÿǵ¸Ç´µÇ³³Ç¯²Ç®¯Ç«¯Ç«­Ç©ªÇ¨©Ç¥¨Ç¤¥Ç¢¤ÇŸ¢Çž ÇœŸÇšÇ˜œÇ—™Ç”˜Ç“—ǕǓǎ’|ÄÊÃÊ‚ÄÉ„ÄɇÄɉÄÉŒÄÊÄÉÄÉ“ÄÉ•ÄÉ—ÄÉšÅÉÅÉŸÅÉ¢ÅȤÅɧÅÉ©ÅÈ«ÅÈ®ÇȯÅȳÅȵÅÇÿÿÿÿÿÿÂÇÈÄÅÇÇÇÇÇÄÅÇÃÃÇÀÀÿÿÿÿÿÿǸ¸Ç··Ç´µÇ³³Ç°²Ç¯°Ç­¯Çª­Ç©«Ç§ªÇ¥¨Ç£§Ç¢¤ÇŸ¢Çž ÇŸÇšÇ™œÇ•šÇ•™Ç“•ǔǓǒ}ÄÊ~ÃÉ‚ÄʃÄɇÄʉÄÊŒÄÊŽÄÉÅÉ“ÄÉ•ÄɘÅÈšÅÈÄÉŸÅÉ¢ÅɤÅȧÅÉ©ÇÈ«ÅÈ­ÇȰÅȳÇȵÅȸÅÇÿÿÿÂÅÇÄÇÈÇÇÇÇÄÄÇÃÃÇÀÂÿÿÿǺºÇ¸¹Ç··Ç³µÇ³´Ç°²Ç®°Ç­¯Ç«­Ç©«Ç§ªÇ¥¨Ç£¥Ç¢¤ÇŸ£Çž¢ÇŸÇšÇ™œÇ—šÇ•™Ç“—ǕǓǒ}ÄÊÄÊ‚ÃÉ„ÄɇÄɈÄÊŠÄÉÄÉÅÉ“ÄÉ•ÅɘÅÈšÅÉœÅÉŸÅÉ¢ÄɤÄȧÅÈ©ÅÈ«ÅÈ®ÅȰÅȳÇǵÅǸÇȺÇÈÂÇÇÄÇÇÇÇÇÇÄÅÇÃÄÇÂÂÇ»½ÇººÇ¸¹Ç··Ç´µÇ²´Ç°²Ç¯°Ç­®Çª­Ç©ªÇ§©Ç¥¨Ç¤§Ç¢¤ÇŸ¢Çž¢ÇŸÇšžÇ˜œÇ—šÇ•˜Ç“—ǕǓÇ|ÄÉÃÉ‚ÄÊ„ÄÊ…ÄʉÅÉŒÄÊŽÅÉÄÉ“ÄÉ•ÄɘÄÉšÅÉÅÉžÅÈ¢ÅȤÅȧÅÈ©ÅÈ«ÅÈ®ÅȰÅȳÅȵÅȸÅȹÅȽÇÈ¿ÇÈÂÇÇÄÇÇÇÇÇÇÄÅÇÃÃÇÂÂÇ¿ÀǾ¾Ç»½Ç¹ºÇ¸¹Çµ¸Ç´µÇ³´Ç°²Ç¯¯Ç­®Çª­Ç©«Ç¨©Ç¥¨Ç£¥Ç¢¤Ç £Ç ÇœŸÇšžÇ˜œÇ—™Ç•˜Ç“—ǕǓǒ}ÄÊÄÊ‚ÄÉ„ÄʇÄɉÄÉŒÅÉŽÄÉÄÉ“ÄÉ•ÅÉ—ÅÉšÅÉœÄÉŸÅÉ¢ÅÉ£ÅÈ¥ÅÉ©ÅÈ«ÅÈ®ÇȰÅdzÅȵÇǸÅȺÅǽÇÇ¿ÇÈÂÇÇÄÇÇÇÇÇÇÄÅÇÃÃÇÂÂÇ¿Àǽ¾Ç»½Ç¹ºÇ¸¸Ç·¸Ç´µÇ³³Ç°²Ç¯°Ç­®Ç«­Ç¨ªÇ§©Ç¥¨Ç£¥Ç¢¤ÇŸ£Çž ÇŸÇšÇ˜œÇ—šÇ”™Ç“—ǔǓǎ’|ÄÊ~ÄÊÄÊ„ÄʇÄʈÄÉŠÄÉŽÅÉÄÉ“ÄÉ•ÅɘÄÉšÄÈÅÉžÄÉ¢ÅȤÅɧÅȨÅÈ«ÅÈ®ÇȰÅȳÅȵÇȸÅȹÅȽÇÈ¿ÇÇÂÇÇÄÇÇÇÇÇÇÅÄÇÃÃÇÂÂÇ¿Àǽ¾Ç»»ÇººÇ¸¹Çµ¸Ç´µÇ²´Ç°²Ç®°Ç­¯Çª­Ç©«Ç§©Ç¥¨Ç¤¥Ç ¤Ç ¢Çž ÇœŸÇšžÇ˜œÇ—šÇ”™Ç“—ǕǓǒ}ÃÊÄÊ‚ÄÊ„ÄÊ…ÄɉÄÉŒÅÉŽÅÉÄÉ’ÅÉ•ÄɘÄÉšÄÉÄÈžÅÉ¢ÅɤÅɧÅÈ©ÅÈ«ÅÈ®ÅȰÅȳÅȵÅȸÇȺÇȽÇÇ¿ÇÈÂÇÇÄÇÇÇÇÇÇÅÅÇÃÃÇÂÂÇ¿¿Ç¾¾Ç»½Ç¹»Ç¸¸Ç··Ç´µÇ²´Ç°³Ç¯°Ç­®Çª­Ç©«Ç§©Ç¥§Ç£¥Ç¢¤ÇŸ£Çž ÇœŸÇšÇ˜œÇ•™Ç”˜Ç“—ǔǓǎ’|ÄÊÃÉ‚ÄɃÄʇÄɉÄÉŠÄÉŽÄÉÄÉ“ÅÉ”ÄɘÄÈšÅÈœÄÉŸÅÉ¢ÅɤÅȧÅÈ©ÅÉ«ÅÈ®ÅȰÅȳÅȵÇȸÅǺÅÈ»ÇÇ¿ÇÈÂÇÇÄÇÇÇÇÇÇÅÄÇÃÃÇÀÂÇ¿ÀǾ¾Ç»»ÇººÇ¸¸Ç··Ç´µÇ²³Ç°³Ç¯¯Ç­®Çª­Ç©ªÇ§©Ç¥¨Ç£¥Ç¢¤Ç £Çž ÇžÇšžÇ™œÇ—™Ç”˜Ç’—ǕǓǎphotoprint-0.4.2-pre2/effects/UnsharpMaskIcon.bmp0000644000175000017500000001106611101462351016674 00000000000000BM66(@  µ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµˆvµŠyµŽ~µ•†µž’µª µ¶¯µÂ½µËɵÒѵÖÖµØÙµÙÚµÙÚµÙÚ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡u¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµˆvµŠyµŽ~µ•†µž’µª µ¶¯µÂ½µËɵÒѵÖÖµØÙµÙÚµÙÚµÙÚ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµl¶áå¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµˆvµŠyµŽ~µ•†µž‘µ©Ÿµ¶®µÁ¼µÊȵÑеÕյרµØÙµØÙµØÙµÙÚµÙÚµÙÚµÙÚµÙÚµÙÚµÙÚµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµl¶áå¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµˆvµŠyµŽ~µ•†µž‘µ©Ÿµ¶®µÁ¼µÊȵÑеÕյרµØÙµØÙµØÙµÙÚµÙÚµÙÚµÙÚµÙÚµÙÚµÙÚµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµl¶áå¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµˆvµŠyµŽ~µ•†µž‘µ©Ÿµ¶®µÁ¼µÊȵÑеÕյרµØÙµØÙµØÙµÙÚµÙÚµÙÚµÙÚµÙÚµÙÚµÙÚµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµl¶áå¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛµˆvµˆvµˆvµˆvµˆvµˆvµˆvµˆvµˆvµ‰wµ‹zµµ•‡µž’µª µµ®µÀ¼µÉǵÐϵÔÔµÖ׵רµ×Øµ×ØµØÙµØÙµØÙµØÙµØÙµØÙµØÙµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµl¶áå¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛµŠyµŠyµŠyµŠyµŠyµŠyµŠyµŠyµŠyµ‹zµ}µ‘µ—‰µŸ“µª µµ®µÀ»µÈŵÎ͵ÒѵÔÔµÕÕµÕÕµÕÕµÖÖµÖÖµÖÖµÖÖµÖÖµÖÖµÖÖµ‡uµ‡uµ‡uÿÿÿµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµl¶áå¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛµŽ~µŽ~µŽ~µŽ~µŽ~µŽ~µŽ~µŽ~µŽ~µµ‘µ”…µ™Œµ¡•µª¡µµ­µ¾¹µÆÂµËɵÎ͵ÐϵÑеÑеÑеÒѵÒѵÒѵÒѵÒѵÒѵÒѵ‡uµ‡uµ‡uÿÿÿÿÿÿµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµl¶áå¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛµ•†µ•†µ•†µ•†µ•†µ•†µ•†µ•†µ•†µ–‡µ—‰µšŒµž‘µ¤™µ«¢µ³¬µ»µµÁ½µÅµÈŵÉǵÊȵÊȵÊȵËɵËɵËɵËɵËɵËɵËɵ‡uµ‡uµ‡uµ‡uÿÿÿÿÿÿµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµl¶áå¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛµž’µž’µž’µž’µž’µž’µž’µž’µž’µž’µŸ“µ¡–µ¤™µ¨žµ­¤µ²ªµ·°µ»µµ¾¸µÀ»µÁ¼µÁ¼µÁ¼ÿÿÿÿÿÿµ‡uµ‡uµ‡uµ‡uµ‡uµl¶áå¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛµª µª µª µª µª µª µª µª µª µª µª µ«¡µ¬¢µ­¤µ¯¦µ°¨µ²ªµ³¬µ´­µµ®µµ®µµ®µµ®ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿµlµlµlµlµ|h¶äè¶áå¶áå¶áå¶áå¶áå¶áå¶áå¶áå¶áå¶áå¶áå¶áå¶áå¶áå¶ÚÛµ¶¯µ¶¯µ¶¯µ¶¯µ¶¯µ¶¯µ¶¯µµ®µµ®µµ®µµ®µ´­µ³¬µ²ªµ°¨µ¯¦µ­¤µ¬¢µ«¡µª µª µª µª ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¶áå¶áå¶áå¶áå¶äèµ|hµlµlµlµlµlµlµlµlµlµlµlµlµlµlµ‡uµÂ½µÂ½µÂ½µÂ½µÂ½µÂ½µÂ½µÁ¼µÁ¼µÁ¼µÀ»µ¾¸µ»µµ·°µ²ªµ­¤µ¨žµ¤™µ¡–µŸ“µž’µž’µž’ÿÿÿÿÿÿ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶áåµlµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµËɵËɵËɵËɵËɵËɵËɵÊȵÊȵÉǵÈŵŵÁ½µ»µµ´¬µ¬¢µ¤™µž‘µšŒµ—‰µ–‡µ•†µ•†µ•†µ•†µ•†µ•†µ•†µ•†µ•†µ•†¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛÿÿÿÿÿÿ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶áåµlµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµÒѵÒѵÒѵÒѵÒѵÒѵÒѵÑеÑеÐϵÎ͵ËɵÆÂµ¾¹µµ­µª¡µ¡•µ™Œµ”…µ‘µµŽ~µŽ~µŽ~µŽ~µŽ~µŽ~µŽ~µŽ~µŽ~µŽ~¶ÚÛ¶ÚÛ¶ÚÛÿÿÿÿÿÿ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶áåµlµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµÖÖµÖÖµÖÖµÖÖµÖÖµÖÖµÖÖµÕÕµÕÕµÔÔµÒѵÎ͵ÈŵÀ»µµ®µª µŸ“µ—‰µ‘µ}µ‹zµŠyµŠyµŠyµŠyµŠyµŠyµŠyµŠyµŠyµŠy¶ÚÛ¶ÚÛ¶ÚÛÿÿÿ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶áåµlµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµØÙµØÙµØÙµØÙµØÙµØÙµØÙµ×Øµ×ØµÖ×µÔÔµÐϵÊǵÁ¼µµ®µª µŸ’µ–‡µµ‹zµ‰wµˆvµˆvµˆvµˆvµˆvµˆvµˆvµˆvµˆvµˆv¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶áåµlµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµÙÚµÙÚµÙÚµÙÚµÙÚµÙÚµÙÚµØÙµØÙµ×صÕÕµÑеÊȵÁ½µ¶¯µ© µž’µ•†µŽ~µŠyµˆvµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡u¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶áåµlµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµÙÚµÙÚµÙÚµÙÚµÙÚµÙÚµÙÚµØÙµØÙµ×صÕÕµÑеÊȵÁ½µ¶¯µ© µž’µ•†µŽ~µŠyµˆvµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡u¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶áåµlµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡u¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛµÙÚµÙÚµØÙµÖÖµÒѵËɵ½µ¶¯µª µž’µ•†µŽ~µŠyµˆvµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡u¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶áåµlµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡u¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛµÙÚµÙÚµØÙµÖÖµÒѵËɵ½µ¶¯µª µž’µ•†µŽ~µŠyµˆvµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡u¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶áåµlµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡u¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛµÙÚµÙÚµØÙµÖÖµÒѵËɵ½µ¶¯µª µž’µ•†µŽ~µŠyµˆvµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡u¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛ¶ÚÛµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uµ‡uphotoprint-0.4.2-pre2/effects/effectwidget_tempchange.cpp0000644000175000017500000000641211266375361020505 00000000000000/* * effectwidget_tempchange.c - provides a list of available effects. * * Copyright (c) 2007 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include "../support/debug.h" #include "ppeffect.h" #include "ppeffect_desaturate.h" #include "ppeffect_temperature.h" #include "effectlist.h" #include "effectwidget_tempchange.h" #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) using namespace std; enum { CHANGED_SIGNAL, LAST_SIGNAL }; static guint effectwidget_tempchange_signals[LAST_SIGNAL] = { 0 }; static void effectwidget_tempchange_class_init (EffectWidget_TempChangeClass *klass); static void effectwidget_tempchange_init (EffectWidget_TempChange *sel); static void value_changed(GtkWidget *wid,gpointer obj) { Debug[TRACE] << "Tempchange got changed signal from slider - emitting signal" << endl; g_signal_emit(G_OBJECT (obj),effectwidget_tempchange_signals[CHANGED_SIGNAL], 0); } static gchar* format_value_callback (GtkScale *scale,gdouble value,gpointer userdata) { int t=int(value); return(g_strdup_printf (_("%d degrees K"),t*50)); } GtkWidget* effectwidget_tempchange_new () { EffectWidget_TempChange *c=EFFECTWIDGET_TEMPCHANGE(g_object_new (effectwidget_tempchange_get_type (), NULL)); c->slider=gtk_hscale_new_with_range(-40,40,1); gtk_box_pack_start(GTK_BOX(c),c->slider,TRUE,TRUE,0); g_signal_connect(GTK_WIDGET(c->slider),"format-value",G_CALLBACK(format_value_callback),c); g_signal_connect(GTK_WIDGET(c->slider),"value-changed",G_CALLBACK(value_changed),c); gtk_widget_show(c->slider); return(GTK_WIDGET(c)); } GType effectwidget_tempchange_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo effectwidget_tempchange_info = { sizeof (EffectWidget_TempChangeClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) effectwidget_tempchange_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (EffectWidget_TempChange), 0, (GInstanceInitFunc) effectwidget_tempchange_init, }; stpuic_type = g_type_register_static (GTK_TYPE_VBOX, "EffectWidget_TempChange", &effectwidget_tempchange_info, GTypeFlags(0)); } return stpuic_type; } //static void *parent_class=NULL; static void effectwidget_tempchange_class_init (EffectWidget_TempChangeClass *cls) { // GtkObjectClass *object_class=(GtkObjectClass *)cls; // parent_class = gtk_type_class (gtk_widget_get_type ()); effectwidget_tempchange_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (cls), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (EffectWidget_TempChangeClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void effectwidget_tempchange_init (EffectWidget_TempChange *c) { c->slider=NULL; } int effectwidget_tempchange_get(EffectWidget_TempChange *tc) { int result=int(gtk_range_get_value(GTK_RANGE(tc->slider))); return(result*50); } void effectwidget_tempchange_set(EffectWidget_TempChange *tc,int temp) { gtk_range_set_value(GTK_RANGE(tc->slider),temp/50); } photoprint-0.4.2-pre2/effects/DesaturateIcon.bmp0000644000175000017500000001106611101462351016541 00000000000000BM66(@  ÿ1ÿcÿ”ÿÅÿöÿÿÖÿ¥ÿtÿBÿ!ÿSÿ„ÿµÿæÿÿæÿµÿƒÿRÿ!ÿÿBÿtÿ¤ÿÖ÷ÿÅÿ”ÿcÿ2ÿÿ1ÿcÿ”ÿÅÿ÷ÿÿÕÿ¤ÿsÿBÿ!ÿRÿƒÿµÿæÿÿæÿµÿƒÿRÿ!ÿÿBÿsÿ¥ÿÖ÷ÿÆÿ”ÿcÿ1ÿÿ1ÿcÿ”ÿÆÿ÷ÿÿÖÿ¤ÿsÿBÿ!ÿRÿƒÿµÿçÿÿæÿµÿ„ÿRÿ!ÿÿAÿtÿ¤ÿÖ÷ÿÆÿ”ÿcÿ1ÿÿ2ÿcÿ”ÿÆÿ÷ÿÿÖÿ¥ÿsÿAÿ!ÿRÿƒÿµÿçÿÿæÿµÿ„ÿRÿ!ÿÿAÿtÿ¥ÿÖöÿÆÿ”ÿcÿ1ÿÿ2ÿcÿ”ÿÅÿ÷ÿÿÕÿ¤ÿtÿBÿ!ÿRÿ„ÿ´ÿçÿÿæÿµÿ„ÿRÿ!ÿÿBÿsÿ¤ÿÖ÷ÿÅÿ”ÿcÿ2ÿÿ1ÿcÿ”ÿÅÿöÿÿÖÿ¥ÿsÿBÿ ÿRÿ„ÿµÿçÿÿçÿµÿ„ÿSÿ!ÿÿBÿsÿ¤ÿÖ÷ÿÆÿ”ÿcÿ2ÿÿ1ÿcÿ”ÿÅÿ÷ÿÿÖÿ¥ÿsÿBÿ!ÿSÿ„ÿµÿæÿÿæÿ´ÿ„ÿRÿ!ÿÿBÿsÿ¤ÿÖöÿÅÿ”ÿcÿ1ÿÿÿÿÿ2ÿbÿ”ÿÅÿöÿÿÖÿ¥ÿsÿBÿ ÿRÿƒÿµÿæÿÿæÿµÿ„ÿRÿ!ÿÿBÿsÿ¥ÿÖ÷ÿÅÿ”ÿcÿ1ÿÿÿÿÿÿÿÿ2ÿcÿ”ÿÅÿ÷ÿÿÖÿ¥ÿsÿAÿ!ÿRÿ„ÿµÿæÿÿæÿµÿ„ÿSÿ!ÿÿAÿsÿ¥ÿÖ÷ÿÆÿ”ÿcÿ2ÿÿÿÿÿÿÿÿ1ÿcÿ”ÿÆÿ÷ÿÿÖÿ¤ÿsÿBÿ!ÿRÿ„ÿµÿçÿÿçÿµÿ„ÿRÿ!ÿÿBÿÿÿÿÿÿÿ1ÿbÿ”ÿÅÿ÷ÿÿÖÿ¥ÿtÿBÿ!ÿRÿƒÿµÿæÿÿæÿµÿƒÿRÿ!ÿÿBÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ1ÿcÿ”ÿÅÿ÷ÿÿÖÿ¥ÿsÿBÿ ÿSÿ„ÿµÿæÿÿæÿµÿ„ÿRÿ!ÿÿBÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ1ÿcÿ”ÿÆÿ÷ÿÿÖÿ¥ÿsÿBÿ!ÿSÿ„ÿµÿæÿÿçÿµÿƒÿRÿ!ÿÿBÿÿÿÿÿÿÿ1ÿbÿ”ÿÆÿ÷ÿÿÖÿ¥ÿsÿBÿ!ÿRÿ„ÿµÿçÿÿæÿµÿ„ÿRÿ!ÿÿBÿsÿ¤ÿÕ÷ÿÅÿ”ÿcÿ1ÿÿÿÿÿÿÿÿ1ÿbÿ”ÿÅÿ÷ÿÿÖÿ¤ÿsÿBÿ!ÿSÿƒÿµÿæÿÿæÿµÿƒÿRÿ!ÿÿBÿsÿ¤ÿÖ÷ÿÆÿ”ÿcÿ1ÿÿÿÿÿÿÿÿ1ÿcÿ”ÿÅÿ÷ÿÿÖÿ¤ÿsÿAÿ!ÿRÿ„ÿµÿæÿÿçÿ´ÿƒÿSÿ!ÿÿBÿsÿ¥ÿÖöÿÅÿ”ÿcÿ2ÿÿÿÿÿ1ÿcÿ”ÿÆÿ÷ÿÿÖÿ¥ÿsÿAÿ!ÿRÿƒÿµÿæÿÿæÿµÿƒÿSÿ!ÿÿBÿsÿ¤ÿÖ÷ÿÆÿ”ÿcÿ1ÿÿ2ÿbÿ•ÿÆÿöÿÿÖÿ¥ÿsÿAÿ!ÿSÿ„ÿµÿçÿÿçÿµÿ„ÿRÿ!ÿÿBÿsÿ¤ÿÖ÷ÿÅÿ”ÿcÿ1ÿÿ2ÿcÿ”ÿÅÿ÷ÿÿÕÿ¥ÿsÿBÿ!ÿRÿƒÿµÿçÿÿæÿµÿ„ÿRÿ!ÿÿBÿsÿ¤ÿÖ÷ÿÅÿ”ÿbÿ2ÿÿ2ÿcÿ”ÿÅÿ÷ÿÿÖÿ¥ÿsÿBÿ ÿRÿ„ÿµÿæÿÿæÿµÿ„ÿRÿ!ÿÿBÿsÿ¥ÿÖöÿÅÿ”ÿcÿ1ÿÿ1ÿcÿ”ÿÆÿ÷ÿÿÖÿ¤ÿsÿAÿ!ÿRÿƒÿµÿæÿÿæÿµÿƒÿRÿ!ÿÿAÿsÿ¤ÿÖöÿÆÿ”ÿbÿ1ÿÿ2ÿcÿ”ÿÆÿ÷ÿÿÖÿ¥ÿsÿBÿ!ÿRÿƒÿµÿçÿÿçÿµÿƒÿRÿ!ÿÿAÿsÿ¤ÿÕöÿÆÿ”ÿbÿ1ÿphotoprint-0.4.2-pre2/effects/ppeffect_unsharpmask.cpp0000644000175000017500000000254711101462351020047 00000000000000#include #include #include #include "imagesource_unsharpmask.h" #include "layout.h" #include "ppeffect_unsharpmask.h" #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) const char *PPEffect_UnsharpMask::ID="UnsharpMask"; const char *PPEffect_UnsharpMask::GetID() { return(ID); } const char *PPEffect_UnsharpMask::Name=_("Sharpen"); const char *PPEffect_UnsharpMask::GetName() { return(Name); } PPEffect_UnsharpMask::PPEffect_UnsharpMask(PPEffectHeader &header,int priority,enum PPEFFECT_STAGE stage) : PPEffect(header,priority,stage), radius(3.0), amount(1.5) { } PPEffect_UnsharpMask::~PPEffect_UnsharpMask() { } PPEffect_UnsharpMask *PPEffect_UnsharpMask::Clone(PPEffectHeader &head) { PPEffect_UnsharpMask *result=new PPEffect_UnsharpMask(head,priority,stage); result->SetRadius(GetRadius()); result->SetAmount(GetAmount()); return(result); } ImageSource *PPEffect_UnsharpMask::Apply(ImageSource *source) { return(new ImageSource_UnsharpMask(source,radius,amount)); } float PPEffect_UnsharpMask::GetRadius() { return(radius); } void PPEffect_UnsharpMask::SetRadius(float radius) { this->radius=radius; } float PPEffect_UnsharpMask::GetAmount() { return(amount); } void PPEffect_UnsharpMask::SetAmount(float amount) { this->amount=amount; } photoprint-0.4.2-pre2/effects/effectwidget_unsharpmask.h0000644000175000017500000000347511101462351020361 00000000000000#ifndef __EFFECTWIDGET_UNSHARPMASK_H__ #define __EFFECTWIDGET_UNSHARPMASK_H__ #include #include #include #include #include #include #include #include #include #include G_BEGIN_DECLS #define EFFECTWIDGET_UNSHARPMASK_TYPE (effectwidget_unsharpmask_get_type()) #define EFFECTWIDGET_UNSHARPMASK(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), EFFECTWIDGET_UNSHARPMASK_TYPE, EffectWidget_UnsharpMask)) #define EFFECTWIDGET_UNSHARPMASK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), EFFECTWIDGET_UNSHARPMASK_TYPE, EffectWidget_UnsharpMaskClass)) #define IS_EFFECTWIDGET_UNSHARPMASK(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EFFECTWIDGET_UNSHARPMASK_TYPE)) #define IS_EFFECTWIDGET_UNSHARPMASK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), EFFECTWIDGET_UNSHARPMASK_TYPE)) typedef struct _EffectWidget_UnsharpMask EffectWidget_UnsharpMask; typedef struct _EffectWidget_UnsharpMaskClass EffectWidget_UnsharpMaskClass; class EffectListSource; struct _EffectWidget_UnsharpMask { GtkVBox box; GtkWidget *radiusslider; GtkWidget *amountslider; GtkWidgetClass *parent_class; }; struct _EffectWidget_UnsharpMaskClass { GtkVBoxClass parent_class; void (*changed)(EffectWidget_UnsharpMask *combo); }; GType effectwidget_unsharpmask_get_type (void); GtkWidget* effectwidget_unsharpmask_new(); float effectwidget_unsharpmask_get_radius(EffectWidget_UnsharpMask *pe); void effectwidget_unsharpmask_set_radius(EffectWidget_UnsharpMask *es,float radius); float effectwidget_unsharpmask_get_amount(EffectWidget_UnsharpMask *pe); void effectwidget_unsharpmask_set_amount(EffectWidget_UnsharpMask *es,float amount); G_END_DECLS #endif /* __EFFECTWIDGET_UNSHARPMASK_H__ */ photoprint-0.4.2-pre2/effects/effectselector.cpp0000644000175000017500000002767311266375334016663 00000000000000/* * effectselector.c - provides a list of available effects. * * Copyright (c) 2007 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include #include #include #include #include #include #include #include "../support/debug.h" #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "../miscwidgets/generaldialogs.h" #include "ppeffect.h" #include "ppeffect_desaturate.h" #include "ppeffect_temperature.h" #include "effectlist.h" #include "effectselector.h" #include "gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) using namespace std; enum { CHANGED_SIGNAL, ADDEFFECT_SIGNAL, REMOVEEFFECT_SIGNAL, LAST_SIGNAL }; static guint effectselector_signals[LAST_SIGNAL] = { 0 }; static void effectselector_class_init (EffectSelectorClass *klass); static void effectselector_init (EffectSelector *sel); static PPEffect *getcurrenteffect(EffectSelector *sel) { PPEffect *result=NULL; if(sel->current) { // int item=effectselector_get_selected(sel); result=sel->current->Find(sel->available->GetID(sel->selected)); } return(result); } static void effectwidget_changed(GtkWidget *wid,gpointer user_data) { EffectSelector *pe=EFFECTSELECTOR(user_data); effectselector_apply(pe,pe->current); g_signal_emit(G_OBJECT (pe),effectselector_signals[CHANGED_SIGNAL], 0); } void effectselector_apply(EffectSelector *sel,PPEffectHeader *target) { if(target) { target->ObtainMutex(); // Exclusive int item=effectselector_get_selected(sel); PPEffect *effect=target->Find(sel->available->GetID(item)); if(effect) { sel->available->WidgetToEffect(sel->effectwidget,effect); } target->ReleaseMutex(); } } static void selection_changed(GtkTreeSelection *select,gpointer user_data) { EffectSelector *pe=EFFECTSELECTOR(user_data); int item=effectselector_get_selected(pe); pe->selected=item; if(pe->effectwidget) gtk_widget_destroy(pe->effectwidget); pe->effectwidget=NULL; PPEffect *effect=NULL; if(pe->current) effect=pe->current->Find(pe->available->GetID(item)); pe->effectwidget=pe->available->CreateWidget(item,effect); if(pe->effectwidget) { gtk_box_pack_start(GTK_BOX(pe),pe->effectwidget,FALSE,FALSE,0); g_signal_connect (G_OBJECT (pe->effectwidget), "changed", G_CALLBACK (effectwidget_changed),pe); gtk_widget_show(pe->effectwidget); } } // Declare multiple columns for GTK's tree model. The columnns can contain widgets, // not just static display, and don't have to be visible, so we can include userdata. enum { ACTIVE_COLUMN = 0, // Checkmark ICON_COLUMN, // Pixbuf LABEL_COLUMN, // Effect name (string) // Now non-displayed fields: EFFECTINDEX_COLUMN, // Index of effect in EffectListSource. NUM_COLUMNS }; static void populate_list(EffectSelector *es) { GtkTreeIter iter; int c=es->available->EffectCount(); for(int i=0;itreestore), &iter, NULL); gtk_tree_store_set (GTK_TREE_STORE(es->treestore), &iter, ACTIVE_COLUMN, FALSE, LABEL_COLUMN, es->available->GetName(i), ICON_COLUMN, es->available->GetIcon(i), EFFECTINDEX_COLUMN, i, -1); } } static void item_toggled (GtkCellRendererToggle *cell,gchar *path_str,gpointer data) { EffectSelector *sel=EFFECTSELECTOR(data); GtkTreeModel *model = GTK_TREE_MODEL(sel->treestore); GtkTreePath *path = gtk_tree_path_new_from_string (path_str); GtkTreeIter iter; gboolean toggle_item; // It seems the checkbox state has to be toggled manually by the callback... gint *column = (gint *)g_object_get_data (G_OBJECT (cell), "column"); /* get toggled iter */ gtk_tree_model_get_iter (model, &iter, path); gtk_tree_model_get (model, &iter, column, &toggle_item, -1); /* do something with the value */ toggle_item ^= 1; /* set new value */ gtk_tree_store_set (GTK_TREE_STORE (model), &iter, column, toggle_item, -1); // Housekeeping finished - can now process the result. // Set the current item int item; gtk_tree_model_get (model, &iter, EFFECTINDEX_COLUMN, &item, -1); sel->selected=item; // Here we either add the effect to the header, or remove it. if(toggle_item) { effectselector_add_selected_effect(sel,sel->current); if(sel->effectwidget) gtk_widget_set_sensitive(sel->effectwidget,TRUE); g_signal_emit(G_OBJECT (sel),effectselector_signals[ADDEFFECT_SIGNAL], 0); } else { effectselector_remove_selected_effect(sel,sel->current); // if(pe) // { // Debug[TRACE] << "About to delete item of type: " << pe->GetID() << endl; // delete pe; // } if(sel->effectwidget) gtk_widget_set_sensitive(sel->effectwidget,FALSE); g_signal_emit(G_OBJECT (sel),effectselector_signals[REMOVEEFFECT_SIGNAL], 0); } // Emit the Changed signal g_signal_emit(G_OBJECT (sel),effectselector_signals[CHANGED_SIGNAL], 0); // Clean up gtk_tree_path_free (path); } static void setup_renderers(EffectSelector *sel) { gint col_offset; GtkCellRenderer *renderer; // Active column renderer = gtk_cell_renderer_toggle_new (); g_signal_connect (renderer, "toggled", G_CALLBACK (item_toggled), sel); col_offset = gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (sel->treeview), -1, _("Active"), renderer, "active", ACTIVE_COLUMN, NULL); // Pixbuf column renderer=gtk_cell_renderer_pixbuf_new(); col_offset=gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW (sel->treeview), -1,_("Icon"), renderer, "pixbuf", ICON_COLUMN, NULL); // column for names renderer = gtk_cell_renderer_text_new (); g_object_set (renderer, "xalign", 0.0, NULL); g_object_set (renderer, "xpad", 10, NULL); col_offset = gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (sel->treeview), -1, _("Name"), renderer, "text", LABEL_COLUMN, NULL); } GtkWidget* effectselector_new () { EffectSelector *c=EFFECTSELECTOR(g_object_new (effectselector_get_type (), NULL)); c->available=new EffectListSource; c->treestore = gtk_tree_store_new (NUM_COLUMNS, G_TYPE_BOOLEAN, GDK_TYPE_PIXBUF, G_TYPE_STRING, G_TYPE_INT, G_TYPE_POINTER ); GtkWidget *sw = gtk_scrolled_window_new (NULL, NULL); gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (sw),GTK_SHADOW_ETCHED_IN); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (sw),GTK_POLICY_NEVER,GTK_POLICY_AUTOMATIC); gtk_box_pack_start (GTK_BOX (c), sw, TRUE, TRUE, 0); gtk_widget_show(sw); c->treeview=gtk_tree_view_new_with_model(GTK_TREE_MODEL(c->treestore)); gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(c->treeview),false); setup_renderers(c); GtkTreeSelection *select; select = gtk_tree_view_get_selection (GTK_TREE_VIEW (c->treeview)); gtk_tree_selection_set_mode (select, GTK_SELECTION_SINGLE); g_signal_connect (G_OBJECT (select), "changed", G_CALLBACK (selection_changed),c); gtk_container_add(GTK_CONTAINER(sw),c->treeview); gtk_widget_show(c->treeview); GtkWidget *hbox=gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(c),hbox,FALSE,FALSE,0); gtk_widget_show(hbox); gtk_widget_set_sensitive(GTK_WIDGET(c),false); populate_list(c); return(GTK_WIDGET(c)); } GType effectselector_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo effectselector_info = { sizeof (EffectSelectorClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) effectselector_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (EffectSelector), 0, (GInstanceInitFunc) effectselector_init, }; stpuic_type = g_type_register_static (GTK_TYPE_VBOX, "EffectSelector", &effectselector_info, GTypeFlags(0)); } return stpuic_type; } static void *parent_class=NULL; static void effectselector_destroy(GtkObject *object) { if(object && IS_EFFECTSELECTOR(object)) { EffectSelector *es=EFFECTSELECTOR(object); if(es->available) delete es->available; es->available=NULL; if (GTK_OBJECT_CLASS (parent_class)->destroy) (* GTK_OBJECT_CLASS (parent_class)->destroy) (object); } } static void effectselector_class_init (EffectSelectorClass *cls) { GtkObjectClass *object_class=(GtkObjectClass *)cls; parent_class = gtk_type_class (gtk_widget_get_type ()); object_class->destroy = effectselector_destroy; effectselector_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (cls), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (EffectSelectorClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); effectselector_signals[ADDEFFECT_SIGNAL] = g_signal_new ("addeffect", G_TYPE_FROM_CLASS (cls), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (EffectSelectorClass, addeffect), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); effectselector_signals[REMOVEEFFECT_SIGNAL] = g_signal_new ("removeeffect", G_TYPE_FROM_CLASS (cls), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (EffectSelectorClass, removeeffect), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void effectselector_init (EffectSelector *c) { c->available=NULL; c->current=NULL; c->effectwidget=NULL; } gboolean effectselector_refresh(EffectSelector *c) { return(true); } int effectselector_get_selected(EffectSelector *pe) { GtkTreeSelection *select; select = gtk_tree_view_get_selection (GTK_TREE_VIEW (pe->treeview)); int i=0; GtkTreeIter iter; GtkTreeModel *model; if (gtk_tree_selection_get_selected (select,&model, &iter)) gtk_tree_model_get (model, &iter, EFFECTINDEX_COLUMN, &i, -1); return(i); } // This will be called for each entry in the "available" list. // We need to check against the current list, and mark the // checkboxes accordingly. static gboolean set_current_list_foreach_func(GtkTreeModel *model,GtkTreePath *path,GtkTreeIter *iter,gpointer data) { EffectSelector *es=EFFECTSELECTOR(data); int i; gtk_tree_model_get (model, iter, EFFECTINDEX_COLUMN, &i, -1); PPEffect *pe=es->current->Find(es->available->GetID(i)); if(pe) { gtk_tree_store_set (GTK_TREE_STORE (model), iter, ACTIVE_COLUMN, TRUE, -1); } else { gtk_tree_store_set (GTK_TREE_STORE (model), iter, ACTIVE_COLUMN, FALSE, -1); } return(false); } void effectselector_set_current_list(EffectSelector *es,PPEffectHeader *current) { es->current=current; if(current) { gtk_widget_set_sensitive(GTK_WIDGET(es),TRUE); gtk_tree_model_foreach(GTK_TREE_MODEL(es->treestore),set_current_list_foreach_func,es); } else { // Loop through and set all checkboxes to FALSE? gtk_widget_set_sensitive(GTK_WIDGET(es),FALSE); } if(es->effectwidget) { PPEffect *effect=getcurrenteffect(es); if(effect) { gtk_widget_set_sensitive(GTK_WIDGET(es->effectwidget),(current!=NULL)); es->available->EffectToWidget(es->effectwidget,effect); } else gtk_widget_set_sensitive(GTK_WIDGET(es->effectwidget),FALSE); } } PPEffect *effectselector_add_selected_effect(EffectSelector *es,PPEffectHeader *chain) { PPEffect *result=NULL; chain->ObtainMutex(); // Exclusive if(chain) { if(chain->Find(es->available->GetID(es->selected))) Debug[TRACE] << "Effect already present - skipping..." << endl; else { Debug[TRACE] << "About to create a new item of type: " << es->available->GetID(es->selected) << endl; result=es->available->CreateEffect(es->selected,*chain); Debug[TRACE] << "Done" << endl; } } chain->ReleaseMutex(); return(result); } void effectselector_remove_selected_effect(EffectSelector *es,PPEffectHeader *chain) { if(chain) { Debug[TRACE] << "RemoveEffect: Obtain" << endl; chain->ObtainMutex(); // Exclusive PPEffect *pe=chain->Find(es->available->GetID(es->selected)); if(pe) delete pe; else Debug[WARN] << "Effect not found - not deleting!" << endl; Debug[TRACE] << "RemoveEffect: Release" << endl; chain->ReleaseMutex(); } } photoprint-0.4.2-pre2/effects/ppeffect.cpp0000644000175000017500000001154011317677265015451 00000000000000#include #include #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "../support/debug.h" #include "ppeffect.h" using namespace std; PPEffectHeader::PPEffectHeader() : RWMutex(), firsteffect(NULL) { } PPEffectHeader::PPEffectHeader(PPEffectHeader &pp) : RWMutex(), firsteffect(NULL) { Debug[TRACE] << "In PPEffectHeader's Copy Constructor" << endl; pp.ObtainMutexShared(); PPEffect *e=pp.GetFirstEffect(); while(e) { e->Clone(*this); e=e->Next(); } pp.ReleaseMutex(); } PPEffectHeader::~PPEffectHeader() { Debug[TRACE] << "In PPEffectHeader's Destructor" << endl; ObtainMutex(); while(firsteffect) delete firsteffect; ReleaseMutex(); } ImageSource *PPEffectHeader::ApplyEffects(ImageSource *source,enum PPEFFECT_STAGE stage) { Debug[TRACE] << "ApplyEffects - Obtain" << endl; ObtainMutexShared(); PPEffect *effect=GetFirstEffect(stage); while(effect) { source=effect->Apply(source); effect=effect->Next(stage); } Debug[TRACE] << "ApplyEffects - Release" << endl; ReleaseMutex(); return(source); } int PPEffectHeader::EffectCount(enum PPEFFECT_STAGE stage) { Debug[TRACE] << "EffectCount - obtain" << endl; ObtainMutexShared(); PPEffect *effect=GetFirstEffect(stage); int count=0; while(effect) { count++; effect=effect->Next(stage); } Debug[TRACE] << "EffectCount - Release" << endl; ReleaseMutex(); return(count); } PPEffect *PPEffectHeader::GetFirstEffect(enum PPEFFECT_STAGE stage) { Debug[TRACE] << "GetFirstEffect - Obtain" << endl; // if(!AttemptMutex()) // Debug[TRACE] << "GetFirstEffect - deadlock..." << endl; ObtainMutexShared(); PPEffect *result=NULL; PPEffect *tmp=firsteffect; while(tmp) { if(tmp->stage & stage) { result=tmp; tmp=NULL; } else tmp=tmp->Next(stage); } Debug[TRACE] << "GetFirstEffect - Release" << endl; ReleaseMutex(); return(result); } PPEffect *PPEffectHeader::Find(const char *id) { if(!id) throw "PPEffectHeader::Find: No ID provided"; Debug[TRACE] << "Find - Obtain" << endl; // if(!AttemptMutex()) // Debug[TRACE] << "Find - deadlock..." << endl; ObtainMutexShared(); PPEffect *result=NULL; PPEffect *tmp=firsteffect; while(tmp) { if(strcmp(tmp->GetID(),id)==0) { result=tmp; tmp=false; } else tmp=tmp->Next(PPEFFECT_DONTCARE); } Debug[TRACE] << "Find - Releasing" << endl; ReleaseMutex(); return(result); } void PPEffectHeader::ObtainMutex() { // We over-ride the ObtainMutex virtual function here RWMutex::ObtainMutex(); } // We have a node list that works like this: // Header <-> Node 1 <-> Node 2 <-> Node 3... // Each node contains a priority field, so we can slot newly inserted nodes // into the correct point. PPEffect::PPEffect(PPEffectHeader &header,int priority,enum PPEFFECT_STAGE stage) : priority(priority), stage(stage), header(header),prev(NULL),next(NULL) { Debug[TRACE] << "Effect constructor - obtain" << endl; header.ObtainMutex(); // Exclusive lock needed PPEffect *node; if((node=header.firsteffect)) { // Header <-> node <-> ... bool done=false; do { if(priority>node->priority) { // We've found a node with lower priority than this new one // So insert beforehand. next=node; // Header <-> ... this node... if(node->prev==NULL) { // If the node being examined has no previous node, we're at the // head of the list, so we mark it in the header. node->prev=this; header.firsteffect=this; prev=NULL; done=true; // Header <-> this <-> node... } else { // Otherwise, slot this node between the prev node and the one // before that. node->prev->next=this; // Header <-> ... this node <-> ... prev=node->prev; // Header <-> ... <-> this node <-> ... node->prev=this; // Header <-> ... <-> this <-> node <-> ... done=true; } } // Next node. if(node) { if(node->next) node=node->next; else if (!done) { // We've reached the end of the list, and not found any nodes of // lower priority - so we tack this node on the end of the list. node->next=this; prev=node; done=true; } } } while(!done); } else { // Situation is: // Header <-> - easy to deal with. header.firsteffect=this; } Debug[TRACE] << "effect constructor - release" << endl; header.ReleaseMutex(); } PPEffect::~PPEffect() { Debug[TRACE] << "Effect destructor - Obtain" << endl; header.ObtainMutex(); // Exclusive lock if(prev) prev->next=next; else header.firsteffect=next; if(next) next->prev=prev; Debug[TRACE] << "Effect destructor - Release" << endl; header.ReleaseMutex(); } PPEffect *PPEffect::Next(enum PPEFFECT_STAGE stage) { PPEffect *effect=next; while(effect) { if(effect->stage & stage) return(effect); effect=effect->next; } return(NULL); } photoprint-0.4.2-pre2/effects/effectwidget_tempchange.h0000644000175000017500000000311711101462351020131 00000000000000#ifndef __EFFECTWIDGET_TEMPCHANGE_H__ #define __EFFECTWIDGET_TEMPCHANGE_H__ #include #include #include #include #include #include #include #include #include #include G_BEGIN_DECLS #define EFFECTWIDGET_TEMPCHANGE_TYPE (effectwidget_tempchange_get_type()) #define EFFECTWIDGET_TEMPCHANGE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), EFFECTWIDGET_TEMPCHANGE_TYPE, EffectWidget_TempChange)) #define EFFECTWIDGET_TEMPCHANGE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), EFFECTWIDGET_TEMPCHANGE_TYPE, EffectWidget_TempChangeClass)) #define IS_EFFECTWIDGET_TEMPCHANGE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EFFECTWIDGET_TEMPCHANGE_TYPE)) #define IS_EFFECTWIDGET_TEMPCHANGE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), EFFECTWIDGET_TEMPCHANGE_TYPE)) typedef struct _EffectWidget_TempChange EffectWidget_TempChange; typedef struct _EffectWidget_TempChangeClass EffectWidget_TempChangeClass; class EffectListSource; struct _EffectWidget_TempChange { GtkVBox box; GtkWidget *slider; GtkWidgetClass *parent_class; }; struct _EffectWidget_TempChangeClass { GtkVBoxClass parent_class; void (*changed)(EffectWidget_TempChange *combo); }; GType effectwidget_tempchange_get_type (void); GtkWidget* effectwidget_tempchange_new(); int effectwidget_tempchange_get(EffectWidget_TempChange *pe); void effectwidget_tempchange_set(EffectWidget_TempChange *es,int temp); G_END_DECLS #endif /* __EFFECTWIDGET_TEMPCHANGE_H__ */ photoprint-0.4.2-pre2/effects/ppeffect_temperature.cpp0000644000175000017500000000435211101462351020044 00000000000000#include #include #include #include #include "imagesource_cms.h" #include "layout.h" #include "ppeffect_temperature.h" #include "ppeffect_temperature_icon.cpp" #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) const char *PPEffect_Temperature::ID="Temperature"; const char *PPEffect_Temperature::GetID() { return(ID); } const char *PPEffect_Temperature::Name=N_("Warm/Cool"); const char *PPEffect_Temperature::GetName() { return(gettext(Name)); } PPEffect_Temperature::PPEffect_Temperature(PPEffectHeader &header,int priority,enum PPEFFECT_STAGE stage) : PPEffect(header,priority,stage), tempchange(0), transform(NULL) { } PPEffect_Temperature::~PPEffect_Temperature() { if(transform) delete transform; } PPEffect_Temperature *PPEffect_Temperature::Clone(PPEffectHeader &head) { PPEffect_Temperature *result=new PPEffect_Temperature(head,priority,stage); result->SetTempChange(GetTempChange()); return(result); } void PPEffect_Temperature::MakeTransform(IS_TYPE type) { CMSRGBGamma RGBGamma(2.2,2.2,2.2); CMSGamma GreyGamma(2.2); CMSWhitePoint srcwp(6500+tempchange); CMSWhitePoint dstwp(6500); CMSProfile *source; switch(STRIP_ALPHA(type)) { case IS_TYPE_RGB: source=new CMSProfile(CMSPrimaries_Rec709,RGBGamma,srcwp); break; case IS_TYPE_GREY: source=new CMSProfile(GreyGamma,srcwp); break; default: throw "Only RGB and Greyscale images are currently supported"; } if(!source) throw "Can't create source profile"; CMSProfile dest(CMSPrimaries_Rec709,RGBGamma,dstwp); transform=new CMSTransform(source,&dest,LCMSWRAPPER_INTENT_ABSOLUTE_COLORIMETRIC); delete source; } ImageSource *PPEffect_Temperature::Apply(ImageSource *source) { if(!transform) MakeTransform(source->type); if(transform->GetInputColourSpace()!=STRIP_ALPHA(source->type)) { delete transform; transform=NULL; MakeTransform(source->type); } return(new ImageSource_CMS(source,transform)); } void PPEffect_Temperature::SetTempChange(int tempchange) { if(transform) delete transform; transform=NULL; this->tempchange=tempchange; } int PPEffect_Temperature::GetTempChange() { return (tempchange); } photoprint-0.4.2-pre2/effects/Makefile.in0000644000175000017500000004401211400237521015172 00000000000000# Makefile.in generated by automake 1.10.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 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@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@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@ check_PROGRAMS = dialogcheck$(EXEEXT) subdir = effects DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/scripts/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libppeffects_la_LIBADD = am_libppeffects_la_OBJECTS = effectlist.lo effects_dialog.lo \ effectselector.lo effectwidget_tempchange.lo \ effectwidget_unsharpmask.lo ppeffect.lo ppeffect_desaturate.lo \ ppeffect_temperature.lo ppeffect_unsharpmask.lo libppeffects_la_OBJECTS = $(am_libppeffects_la_OBJECTS) libppeffects_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(libppeffects_la_LDFLAGS) $(LDFLAGS) -o $@ am_dialogcheck_OBJECTS = dialogcheck.$(OBJEXT) dialogcheck_OBJECTS = $(am_dialogcheck_OBJECTS) am__DEPENDENCIES_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/scripts/depcomp am__depfiles_maybe = depfiles CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) CXXLD = $(CXX) CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ SOURCES = $(libppeffects_la_SOURCES) $(dialogcheck_SOURCES) DIST_SOURCES = $(libppeffects_la_SOURCES) $(dialogcheck_SOURCES) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DSYMUTIL = @DSYMUTIL@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ GDKPIXBUF2_CFLAGS = @GDKPIXBUF2_CFLAGS@ GDKPIXBUF2_LIBS = @GDKPIXBUF2_LIBS@ GETOPT_LIBS = @GETOPT_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIB2_CFLAGS = @GLIB2_CFLAGS@ GLIB2_LIBS = @GLIB2_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GP_CFLAGS = @GP_CFLAGS@ GP_LIBS = @GP_LIBS@ GREP = @GREP@ GTHREAD_CFLAGS = @GTHREAD_CFLAGS@ GTHREAD_LIBS = @GTHREAD_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ JPEG_LIBS = @JPEG_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ LCMS_LIBS = @LCMS_LIBS@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBM_LIBS = @LIBM_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NMEDIT = @NMEDIT@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ POSUB = @POSUB@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ TIFF_LIBS = @TIFF_LIBS@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ 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@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ 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 = $(datadir)/locale localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ CLEANFILES = ppeffect_desaturate_icon.cpp ppeffect_temperature_icon.cpp AM_CXXFLAGS = -DLOCALEDIR=\"$(localedir)\" -Wall -I../ -I../imagesource/ -I../pixbufthumbnail -I../support/ -I../profilemanager $(LCMS_CFLAGS) $(GTK2_CFLAGS) noinst_LTLIBRARIES = libppeffects.la libppeffects_la_SOURCES = \ effectlist.cpp \ effectlist.h \ effects_dialog.cpp \ effects_dialog.h \ effectselector.cpp \ effectselector.h \ effectwidget_tempchange.cpp \ effectwidget_tempchange.h \ effectwidget_unsharpmask.cpp \ effectwidget_unsharpmask.h \ ppeffect.cpp \ ppeffect.h \ ppeffect_desaturate.cpp \ ppeffect_desaturate.h \ ppeffect_temperature.cpp \ ppeffect_temperature.h \ ppeffect_unsharpmask.cpp \ ppeffect_unsharpmask.h libppeffects_la_LDFLAGS = -static BUILT_SOURCES = ppeffect_temperature_icon.cpp ppeffect_desaturate_icon.cpp ppeffect_unsharpmask_icon.cpp dialogcheck_SOURCES = dialogcheck.cpp dialogcheck_DEPENDENCIES = libppeffects.la ../pixbufthumbnail/libpixbufthumbnail.la \ ../imagesource/libimagesource.la ../profilemanager/libprofilemanager.la \ ../support/libsupport.la dialogcheck_LDADD = -L. -lppeffects -L../imagesource -limagesource -L../profilemanager -lprofilemanager \ -L../support -lsupport -L../pixbufthumbnail -lpixbufthumbnail $(LIBINTL) $(TIFF_LIBS) $(LCMS_LIBS) $(GTK2_LIBS) EXTRA_DIST = TemperatureIcon.bmp DesaturateIcon.bmp UnsharpMaskIcon.bmp \ ppeffect_temperature_icon.cpp ppeffect_desaturate_icon.cpp ppeffect_unsharpmask_icon.cpp all: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) all-am .SUFFIXES: .SUFFIXES: .cpp .lo .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 \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign effects/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign effects/Makefile .PRECIOUS: 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 clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libppeffects.la: $(libppeffects_la_OBJECTS) $(libppeffects_la_DEPENDENCIES) $(libppeffects_la_LINK) $(libppeffects_la_OBJECTS) $(libppeffects_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ echo " rm -f $$p $$f"; \ rm -f $$p $$f ; \ done dialogcheck$(EXEEXT): $(dialogcheck_OBJECTS) $(dialogcheck_DEPENDENCIES) @rm -f dialogcheck$(EXEEXT) $(CXXLINK) $(dialogcheck_OBJECTS) $(dialogcheck_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dialogcheck.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/effectlist.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/effects_dialog.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/effectselector.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/effectwidget_tempchange.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/effectwidget_unsharpmask.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ppeffect.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ppeffect_desaturate.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ppeffect_temperature.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ppeffect_unsharpmask.Plo@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here 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 $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$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 $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) check: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) check-am all-am: Makefile $(LTLIBRARIES) 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: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) 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) clean: clean-am clean-am: clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-dvi: install-dvi-am 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 installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool 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 mostlyclean-libtool pdf pdf-am ps ps-am \ tags uninstall uninstall-am ppeffect_temperature_icon.cpp: TemperatureIcon.bmp gdk-pixbuf-csource --name=PPEffect_Temperature_Icon >ppeffect_temperature_icon.cpp TemperatureIcon.bmp ppeffect_desaturate_icon.cpp: DesaturateIcon.bmp gdk-pixbuf-csource --name=PPEffect_Desaturate_Icon >ppeffect_desaturate_icon.cpp DesaturateIcon.bmp ppeffect_unsharpmask_icon.cpp: UnsharpMaskIcon.bmp gdk-pixbuf-csource --name=PPEffect_UnsharpMask_Icon >ppeffect_unsharpmask_icon.cpp UnsharpMaskIcon.bmp # 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: photoprint-0.4.2-pre2/effects/ppeffect_temperature_icon.cpp0000644000175000017500000004164711317704755021104 00000000000000/* GdkPixbuf RGB C-Source image dump 1-byte-run-length-encoded */ #ifdef __SUNPRO_C #pragma align 4 (PPEffect_Temperature_Icon) #endif #ifdef __GNUC__ static const guint8 PPEffect_Temperature_Icon[] __attribute__ ((__aligned__ (4))) = #else static const guint8 PPEffect_Temperature_Icon[] = #endif { "" /* Pixbuf magic (0x47646b50) */ "GdkP" /* length: header (24) + pixel_data (4024) */ "\0\0\17\320" /* pixdata_type (0x2010001) */ "\2\1\0\1" /* rowstride (192) */ "\0\0\0\300" /* width (64) */ "\0\0\0@" /* height (24) */ "\0\0\0\30" /* pixel_data: */ "\301\0\0\0>\312\304|\311\303\177\311\304\202\312\304\203\311\304\207" "\311\304\211\311\304\212\311\304\216\311\304\220\311\305\223\311\304" "\224\310\304\230\310\305\232\311\304\234\311\305\237\311\305\242\310" "\305\244\310\305\247\311\305\251\310\305\253\310\305\256\310\305\260" "\310\305\263\310\307\265\307\305\270\310\305\272\307\307\273\310\307" "\277\307\307\302\307\307\304\307\307\307\304\305\307\303\303\307\302" "\300\307\300\277\307\276\276\307\273\273\307\272\272\307\270\270\307" "\267\267\307\265\264\307\263\262\307\263\260\307\257\257\307\256\255" "\307\255\252\307\252\251\307\251\247\307\250\245\307\245\243\307\244" "\242\307\243\240\307\240\236\307\236\235\307\236\232\307\234\231\307" "\231\227\307\230\224\307\227\222\307\225\220\307\223\217\307\220\216" "\307\202\0\0\0>\312\303}\312\304\177\312\304\202\312\304\204\311\304" "\205\311\304\211\311\305\214\311\305\216\311\304\217\311\305\222\311" "\304\225\311\304\230\311\304\232\310\304\235\311\305\236\311\305\242" "\311\305\244\310\305\247\310\305\251\310\305\253\310\305\256\310\305" "\260\310\305\263\310\305\265\310\307\270\310\307\272\307\307\275\310" "\307\277\307\307\302\307\307\304\307\307\307\305\305\307\303\303\307" "\302\302\307\277\277\307\276\276\307\275\273\307\273\271\307\270\270" "\307\267\267\307\265\264\307\264\262\307\263\260\307\260\257\307\256" "\255\307\255\252\307\253\251\307\251\247\307\247\245\307\245\243\307" "\244\242\307\243\237\307\240\236\307\237\234\307\235\232\307\234\230" "\307\231\225\307\230\224\307\227\223\307\224\220\307\223\217\307\222" "\216\307\202\0\0\0>\312\304|\312\304~\312\304\201\312\304\204\312\304" "\207\311\304\210\311\304\212\311\305\216\311\304\220\311\304\223\311" "\305\225\311\304\230\310\304\232\311\305\235\311\304\236\310\305\242" "\311\305\244\310\305\247\310\305\250\310\305\253\310\307\256\310\305" "\260\310\305\263\310\307\265\310\305\270\310\305\271\310\307\275\307" "\307\277\307\307\302\307\307\304\307\307\307\304\305\307\303\303\307" "\302\302\307\300\277\307\276\275\307\273\273\307\272\272\307\271\270" "\307\270\265\307\265\264\307\264\262\307\262\260\307\260\256\307\257" "\255\307\255\252\307\253\251\307\251\247\307\250\245\307\245\244\307" "\244\240\307\242\240\307\240\236\307\237\234\307\236\232\307\234\230" "\307\232\227\307\231\224\307\227\223\307\225\220\307\223\217\307\222" "\215\307\202\0\0\0>\312\304}\312\304\177\311\304\202\312\304\204\311" "\304\207\311\304\211\311\305\214\311\304\216\311\304\220\311\304\223" "\311\305\225\311\305\227\311\305\232\311\304\234\311\305\237\311\305" "\242\310\305\243\311\305\245\310\305\251\310\305\253\310\307\256\307" "\305\260\310\305\263\307\307\265\310\305\270\307\305\272\307\307\275" "\310\307\277\307\307\302\307\307\304\307\307\307\305\304\307\303\303" "\307\302\302\307\300\277\307\276\275\307\275\273\307\272\271\307\270" "\270\307\270\267\307\265\264\307\263\263\307\262\260\307\260\257\307" "\256\255\307\255\253\307\252\250\307\251\247\307\250\245\307\245\243" "\307\244\242\307\243\237\307\240\236\307\237\235\307\235\232\307\234" "\230\307\232\227\307\231\224\307\227\223\307\224\220\307\223\217\307" "\222\216\307\202\0\0\0>\311\304|\311\303\177\312\304\202\312\304\204" "\312\304\205\311\305\211\312\304\214\311\305\216\311\304\220\311\304" "\223\311\304\225\311\304\230\311\305\232\311\305\235\310\305\236\310" "\305\242\310\305\244\310\305\247\310\305\251\310\305\253\310\305\256" "\310\305\260\310\305\263\310\305\265\310\305\270\310\305\271\310\307" "\275\310\307\277\307\307\302\307\307\304\307\307\307\305\304\307\303" "\303\307\302\302\307\300\277\307\276\276\307\275\273\307\272\271\307" "\271\270\307\270\265\307\265\264\307\264\263\307\262\260\307\257\257" "\307\256\255\307\255\252\307\253\251\307\251\250\307\250\245\307\245" "\243\307\244\242\307\243\240\307\240\235\307\237\234\307\236\232\307" "\234\230\307\231\227\307\230\225\307\227\223\307\225\220\307\223\217" "\307\222\215\307\202\0\0\0\32\312\304}\312\304\177\311\303\202\311\304" "\204\311\304\207\312\304\210\311\304\212\311\304\215\311\305\220\311" "\304\223\311\305\225\310\305\230\311\305\232\311\305\234\311\305\237" "\311\304\242\310\304\244\310\305\247\310\305\251\310\305\253\310\305" "\256\310\305\260\307\307\263\307\305\265\310\307\270\310\307\272\202" "\0\0\0\6\307\307\302\307\307\304\307\307\307\305\304\307\304\303\307" "\302\302\307\202\0\0\0\32\275\273\307\272\272\307\271\270\307\267\267" "\307\265\264\307\264\262\307\262\260\307\260\257\307\256\255\307\255" "\252\307\252\251\307\251\247\307\250\245\307\247\244\307\244\242\307" "\242\237\307\242\236\307\237\235\307\236\232\307\234\230\307\232\227" "\307\230\225\307\227\223\307\225\220\307\223\217\307\220\215\307\202" "\0\0\0>\312\304}\311\303~\312\304\202\311\304\203\312\304\207\312\304" "\211\312\304\214\311\304\216\311\305\217\311\304\223\311\304\225\310" "\305\230\310\305\232\311\304\235\311\305\237\311\305\242\310\305\244" "\311\305\247\310\307\251\310\305\253\310\307\255\310\305\260\310\307" "\263\310\305\265\307\305\270\0\0\0\377\377\377\0\0\0\307\305\302\310" "\307\304\307\307\307\304\304\307\303\303\307\302\300\307\0\0\0\377\377" "\377\0\0\0\272\272\307\271\270\307\267\267\307\265\263\307\264\263\307" "\262\260\307\260\256\307\257\255\307\255\253\307\253\251\307\252\247" "\307\250\245\307\245\243\307\244\242\307\243\237\307\242\236\307\237" "\235\307\235\232\307\234\231\307\232\227\307\231\225\307\227\223\307" "\225\220\307\223\217\307\222\215\307\202\0\0\0\31\312\304|\312\303\177" "\311\304\202\311\304\204\311\304\207\311\304\211\312\304\214\311\304" "\215\311\304\220\311\304\223\311\304\225\311\304\227\311\305\232\311" "\305\235\311\305\237\310\305\242\311\305\244\311\305\247\310\305\251" "\310\305\253\310\307\256\310\305\257\310\305\263\307\305\265\0\0\0\202" "\377\377\377\10\0\0\0\310\307\302\307\305\304\307\307\307\305\304\307" "\303\303\307\300\300\307\0\0\0\202\377\377\377\31\0\0\0\270\270\307\267" "\267\307\265\264\307\263\263\307\262\260\307\260\257\307\257\255\307" "\255\252\307\253\251\307\252\247\307\250\245\307\247\243\307\244\242" "\307\242\237\307\240\236\307\237\235\307\235\232\307\234\231\307\232" "\225\307\231\225\307\225\223\307\224\220\307\223\217\307\222\215\307" "\202\0\0\0\30\312\303}\312\304\177\312\304\202\312\304\204\311\304\207" "\311\304\211\311\304\214\312\305\215\311\304\220\311\304\223\311\305" "\224\311\305\230\311\305\232\311\304\235\310\305\236\310\305\240\311" "\305\244\311\305\247\310\305\251\310\305\252\310\305\256\310\305\260" "\307\307\263\0\0\0\202\377\377\377\12\0\0\0\307\307\277\310\307\302\307" "\307\304\307\307\307\305\305\307\303\303\307\302\300\307\277\276\307" "\0\0\0\202\377\377\377\30\0\0\0\270\265\307\265\264\307\263\263\307\262" "\257\307\257\256\307\257\253\307\255\253\307\252\251\307\251\250\307" "\250\245\307\245\244\307\244\242\307\242\237\307\240\236\307\237\234" "\307\235\232\307\234\230\307\231\227\307\230\224\307\227\223\307\225" "\220\307\223\217\307\222\216\307\202\0\0\0\27\312\303}\312\304\177\312" "\304\202\311\304\203\311\304\207\311\304\211\311\304\212\311\305\216" "\311\304\217\311\305\223\311\304\225\311\305\227\310\305\232\311\305" "\235\310\305\237\310\304\240\311\305\243\310\305\247\311\305\251\310" "\305\253\310\305\256\310\305\260\0\0\0\202\377\377\377\214\0\0\0\202" "\377\377\377\27\0\0\0\265\264\307\263\262\307\262\260\307\260\257\307" "\257\255\307\255\253\307\253\250\307\251\247\307\250\245\307\247\244" "\307\244\242\307\243\237\307\240\235\307\237\234\307\235\232\307\234" "\230\307\231\227\307\230\225\307\227\222\307\224\220\307\223\217\307" "\220\215\307\202\0\0\0\26\312\303}\312\304\177\311\303\202\311\303\204" "\311\304\207\312\304\210\311\304\212\311\305\216\312\304\220\311\305" "\223\311\305\224\311\305\230\310\304\232\311\305\235\311\305\237\310" "\305\242\311\305\244\311\305\247\310\305\251\310\305\252\310\305\256" "\0\0\0\222\377\377\377\26\0\0\0\263\262\307\262\260\307\257\256\307\257" "\255\307\255\252\307\253\251\307\251\250\307\250\245\307\245\244\307" "\244\242\307\243\237\307\240\236\307\237\235\307\236\232\307\234\230" "\307\232\227\307\230\224\307\227\223\307\225\220\307\223\217\307\222" "\215\307\202\0\0\0\26\312\304}\312\304\177\311\304\202\311\304\204\312" "\304\207\312\304\210\311\304\214\311\305\215\311\305\220\311\304\223" "\311\304\225\311\304\230\311\305\232\311\304\235\311\305\237\310\304" "\242\310\305\244\310\305\247\310\305\250\310\305\252\310\305\255\0\0" "\0\222\377\377\377\26\0\0\0\263\263\307\262\260\307\260\256\307\256\255" "\307\255\252\307\253\251\307\251\250\307\250\245\307\245\243\307\244" "\242\307\243\237\307\240\236\307\237\234\307\235\232\307\234\230\307" "\232\227\307\231\224\307\227\223\307\224\220\307\223\217\307\222\215" "\307\202\0\0\0\27\311\303|\312\304\177\312\303\201\312\304\204\311\304" "\207\311\304\211\311\305\214\311\304\216\311\304\220\311\305\223\311" "\304\225\311\304\230\311\304\232\311\304\234\310\304\237\311\305\242" "\311\305\244\310\305\247\310\305\251\310\305\252\310\305\256\310\307" "\257\0\0\0\202\377\377\377\214\0\0\0\202\377\377\377\27\0\0\0\265\264" "\307\263\263\307\262\260\307\260\256\307\256\255\307\255\252\307\252" "\251\307\251\250\307\250\245\307\245\243\307\244\242\307\243\240\307" "\240\236\307\237\235\307\235\231\307\234\231\307\232\227\307\230\225" "\307\227\223\307\224\222\307\223\217\307\220\215\307\202\0\0\0\30\312" "\304}\311\303\177\312\304\202\312\304\203\312\304\205\312\304\210\312" "\304\214\312\304\215\311\304\220\311\304\223\311\305\225\311\305\227" "\311\305\231\311\305\235\311\305\237\311\305\242\311\305\244\311\305" "\247\310\305\251\310\305\253\310\305\256\310\305\260\310\305\263\0\0" "\0\202\377\377\377\12\0\0\0\310\307\277\307\307\302\307\305\304\307\307" "\307\304\305\307\303\303\307\302\302\307\277\277\307\0\0\0\202\377\377" "\377\30\0\0\0\267\267\307\265\264\307\264\262\307\263\260\307\260\257" "\307\257\255\307\255\252\307\253\251\307\251\247\307\250\245\307\245" "\244\307\244\242\307\243\240\307\240\236\307\237\234\307\235\232\307" "\234\231\307\231\227\307\230\225\307\227\223\307\224\220\307\223\217" "\307\222\216\307\202\0\0\0\31\311\303}\312\304\177\312\304\202\311\304" "\204\311\304\207\311\304\210\311\304\212\312\304\216\311\304\220\311" "\305\222\311\304\225\311\305\230\311\304\232\311\305\234\311\304\237" "\311\305\240\310\304\243\310\305\247\311\305\251\310\305\253\310\307" "\256\310\307\260\307\307\263\310\307\265\0\0\0\202\377\377\377\10\0\0" "\0\310\307\302\307\307\304\307\307\307\305\305\307\303\303\307\302\300" "\307\0\0\0\202\377\377\377\31\0\0\0\271\270\307\270\265\307\265\264\307" "\263\263\307\263\260\307\260\256\307\256\255\307\255\252\307\252\251" "\307\251\247\307\250\245\307\247\244\307\244\242\307\242\240\307\240" "\236\307\236\234\307\235\232\307\234\231\307\232\227\307\230\225\307" "\227\223\307\224\220\307\223\217\307\220\215\307\202\0\0\0""0\312\304" "}\312\304\177\311\304\202\312\304\204\312\304\205\312\304\210\312\304" "\214\311\304\216\311\304\217\311\304\223\311\305\225\311\305\230\310" "\305\232\311\304\235\311\304\237\310\305\242\310\304\244\310\305\247" "\310\305\251\310\305\253\310\305\256\310\305\260\310\305\263\307\307" "\265\307\305\270\0\0\0\377\377\377\0\0\0\310\307\302\307\307\304\307" "\307\307\305\304\307\303\303\307\302\300\307\0\0\0\377\377\377\0\0\0" "\273\271\307\270\270\307\270\267\307\265\264\307\263\263\307\262\257" "\307\260\256\307\256\253\307\255\252\307\253\251\307\252\247\307\202" "\247\244\307\14\244\240\307\243\240\307\240\236\307\237\234\307\235\232" "\307\234\231\307\231\225\307\231\224\307\225\223\307\225\220\307\223" "\217\307\220\215\307\202\0\0\0\32\311\303}\312\304~\312\304\202\311\304" "\204\312\304\207\311\304\210\311\304\214\311\304\215\311\304\220\311" "\304\223\311\304\225\311\305\230\311\305\232\311\305\235\310\304\237" "\310\305\242\310\305\244\311\305\247\310\305\251\310\305\253\310\307" "\256\310\307\260\310\307\263\307\305\265\310\305\270\307\305\272\202" "\0\0\0\6\307\307\302\307\307\304\307\307\307\305\304\307\303\303\307" "\302\302\307\202\0\0\0\32\275\273\307\273\271\307\271\270\307\267\267" "\307\265\264\307\264\262\307\262\260\307\260\256\307\257\255\307\255" "\253\307\252\251\307\251\247\307\250\245\307\247\243\307\244\242\307" "\243\240\307\240\236\307\236\235\307\235\232\307\234\230\307\231\227" "\307\231\224\307\227\223\307\224\220\307\223\217\307\222\215\307\202" "\0\0\0>\312\304}\312\304\177\311\304\202\312\304\203\312\304\205\311" "\304\210\312\304\214\311\304\216\311\305\220\311\305\223\311\304\225" "\311\304\230\311\305\232\310\305\235\311\304\237\311\305\242\310\305" "\244\310\305\245\310\305\251\310\305\253\310\305\256\307\305\260\310" "\305\262\307\305\265\310\307\270\310\307\272\307\307\273\307\307\277" "\310\307\302\307\307\304\307\307\307\305\305\307\304\303\307\302\302" "\307\277\277\307\276\276\307\275\273\307\273\271\307\271\270\307\267" "\265\307\265\264\307\264\262\307\262\260\307\260\256\307\257\255\307" "\255\252\307\253\251\307\251\247\307\250\245\307\245\243\307\244\242" "\307\243\240\307\240\236\307\237\234\307\236\232\307\234\231\307\232" "\225\307\230\225\307\227\223\307\224\220\307\223\217\307\220\215\307" "\202\0\0\0:\312\303}\312\304~\312\304\202\311\304\204\312\304\207\311" "\304\210\311\304\214\311\304\216\311\304\220\311\305\223\311\305\225" "\311\304\230\311\305\232\311\304\235\310\304\237\310\305\242\310\304" "\244\310\305\247\311\305\251\310\305\253\310\305\256\310\307\260\310" "\307\263\307\305\265\310\305\270\310\305\272\307\307\275\310\307\277" "\310\307\302\307\307\304\307\307\307\305\305\307\304\303\307\302\302" "\307\300\277\307\276\275\307\275\273\307\272\272\307\271\270\307\270" "\267\307\265\264\307\263\262\307\262\260\307\260\256\307\257\255\307" "\255\252\307\253\251\307\251\247\307\250\244\307\247\243\307\244\242" "\307\242\237\307\240\236\307\237\234\307\236\232\307\234\231\307\232" "\227\307\230\224\307\202\225\222\307\2\223\217\307\220\215\307\202\0" "\0\0>\312\303}\312\303\177\311\304\201\312\304\204\312\304\207\311\304" "\211\312\304\214\311\304\216\311\304\217\311\305\223\311\304\225\311" "\305\227\311\305\232\311\305\234\311\305\237\310\304\242\310\305\244" "\310\305\247\310\307\251\310\305\253\310\305\256\310\305\260\310\305" "\263\307\307\264\307\305\270\310\305\272\307\305\275\307\307\277\310" "\307\300\307\307\304\307\307\307\304\305\307\304\303\307\300\300\307" "\277\277\307\276\275\307\273\273\307\273\271\307\271\270\307\267\265" "\307\265\264\307\263\263\307\263\260\307\257\256\307\256\255\307\255" "\252\307\253\250\307\252\247\307\250\245\307\245\243\307\244\242\307" "\243\237\307\240\235\307\237\235\307\235\231\307\234\230\307\231\227" "\307\230\224\307\227\222\307\224\220\307\223\217\307\222\215\307\202" "\0\0\0>\312\304}\312\304\177\311\304\202\312\304\204\311\304\205\312" "\304\211\311\304\214\311\304\215\311\304\220\311\305\223\311\304\225" "\311\304\230\310\305\232\311\304\235\310\305\237\310\305\242\310\305" "\244\311\305\245\310\307\251\310\305\253\310\305\256\310\305\260\307" "\307\263\310\307\264\310\305\270\307\305\272\310\307\275\307\307\277" "\307\307\302\307\307\304\307\307\307\304\305\307\303\303\307\302\302" "\307\277\277\307\276\275\307\275\273\307\272\271\307\271\270\307\270" "\265\307\265\264\307\264\263\307\263\260\307\260\256\307\256\255\307" "\255\253\307\253\251\307\252\250\307\250\245\307\247\243\307\244\242" "\307\242\237\307\240\236\307\236\234\307\236\231\307\234\231\307\231" "\227\307\230\225\307\227\223\307\225\222\307\223\216\307\222\215\307" "\202\0\0\0>\312\303}\312\304\177\312\304\202\312\304\203\311\304\207" "\312\304\211\312\304\214\311\304\215\311\304\217\311\304\223\311\304" "\224\311\304\230\311\305\231\311\305\235\311\305\237\311\305\242\311" "\305\243\310\305\247\311\305\251\310\307\253\310\305\256\310\305\260" "\310\305\262\307\307\264\310\305\270\307\307\272\307\307\275\310\307" "\277\310\307\302\307\305\304\307\307\307\305\305\307\303\303\307\302" "\300\307\277\277\307\276\275\307\273\273\307\272\271\307\271\270\307" "\267\267\307\265\264\307\264\262\307\262\260\307\260\256\307\256\255" "\307\255\252\307\253\251\307\251\247\307\250\245\307\245\244\307\244" "\242\307\243\240\307\240\236\307\237\235\307\236\232\307\234\230\307" "\231\225\307\230\225\307\225\223\307\224\222\307\223\217\307\222\215" "\307\301\0\0\0"}; photoprint-0.4.2-pre2/effects/effectselector.h0000644000175000017500000000446711101462351016304 00000000000000#ifndef __EFFECTSELECTOR_H__ #define __EFFECTSELECTOR_H__ #include #include #include #include #include #include #include #include #include #include G_BEGIN_DECLS #define EFFECTSELECTOR_TYPE (effectselector_get_type()) #define EFFECTSELECTOR(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), EFFECTSELECTOR_TYPE, EffectSelector)) #define EFFECTSELECTOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), EFFECTSELECTOR_TYPE, EffectSelectorClass)) #define IS_EFFECTSELECTOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EFFECTSELECTOR_TYPE)) #define IS_EFFECTSELECTOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), EFFECTSELECTOR_TYPE)) typedef struct _EffectSelector EffectSelector; typedef struct _EffectSelectorClass EffectSelectorClass; class EffectListSource; struct _EffectSelector { GtkVBox box; GtkTreeStore *treestore; GtkWidget *treeview; EffectListSource *available; PPEffectHeader *current; int selected; GtkWidget *effectwidget; GtkWidgetClass *parent_class; }; struct _EffectSelectorClass { GtkVBoxClass parent_class; void (*changed)(EffectSelector *es); void (*addeffect)(EffectSelector *es); void (*removeeffect)(EffectSelector *es); }; GType effectselector_get_type (void); GtkWidget* effectselector_new(); int effectselector_get_selected(EffectSelector *pe); void effectselector_set_current_list(EffectSelector *es,PPEffectHeader *current); gboolean effectselector_refresh(EffectSelector *c); // The effectselector's operation is autonomous provided you only need to // manipulate a single effect chain. If you need to manipulate multiple effect // chains - say, you have multiple images selected - then these functions // will help. // After receiving the "changed" signal, call this function on each effect chain // in turn... void effectselector_apply(EffectSelector *es,PPEffectHeader *target); // and this after receiving the "addeffect" signal... PPEffect *effectselector_add_selected_effect(EffectSelector *es,PPEffectHeader *target); // and this after receiving the "removeeffect" signal... void effectselector_remove_selected_effect(EffectSelector *es,PPEffectHeader *target); G_END_DECLS #endif /* __EFFECTSELECTOR_H__ */ photoprint-0.4.2-pre2/effects/ppeffect_unsharpmask_icon.cpp0000644000175000017500000001513611101462351021055 00000000000000/* GdkPixbuf RGB C-Source image dump 1-byte-run-length-encoded */ #ifdef __SUNPRO_C #pragma align 4 (PPEffect_UnsharpMask_Icon) #endif #ifdef __GNUC__ static const guint8 PPEffect_UnsharpMask_Icon[] __attribute__ ((__aligned__ (4))) = #else static const guint8 PPEffect_UnsharpMask_Icon[] = #endif { "" /* Pixbuf magic (0x47646b50) */ "GdkP" /* length: header (24) + pixel_data (1606) */ "\0\0\6^" /* pixdata_type (0x2010001) */ "\2\1\0\1" /* rowstride (192) */ "\0\0\0\300" /* width (64) */ "\0\0\0@" /* height (24) */ "\0\0\0\30" /* pixel_data: */ "\301\0\0\0\207\333\332\266\202\332\331\265\14\331\330\265\326\326\265" "\321\322\265\311\313\265\275\302\265\257\266\265\240\252\265\222\236" "\265\206\225\265~\216\265y\212\265v\210\265\212u\207\265\217\333\332" "\266\220u\207\265\202\0\0\0\207\333\332\266\202\332\331\265\14\331\330" "\265\326\326\265\321\322\265\311\313\265\275\302\265\257\266\265\240" "\252\265\222\236\265\206\225\265~\216\265y\212\265v\210\265\212u\207" "\265\216\333\332\266\2\345\341\266l\177\265\217u\207\265\202\0\0\0\207" "\333\332\266\202\332\331\265\14\331\330\265\326\326\265\321\322\265\311" "\313\265\275\302\265\257\266\265\240\252\265\222\236\265\206\225\265" "~\216\265y\212\265v\210\265\212u\207\265\216\333\332\266\2\345\341\266" "l\177\265\217u\207\265\202\0\0\0\207\332\331\265\202\331\330\265\14\330" "\327\265\325\325\265\320\321\265\310\312\265\275\301\265\257\266\265" "\240\251\265\222\236\265\206\225\265~\216\265y\212\265v\210\265\212u" "\207\265\216\333\332\266\2\345\341\266l\177\265\217u\207\265\202\0\0" "\0\207\332\331\265\202\331\330\265\14\330\327\265\325\325\265\320\321" "\265\310\312\265\275\301\265\257\266\265\240\251\265\222\236\265\206" "\225\265~\216\265y\212\265v\210\265\212u\207\265\216\333\332\266\2\345" "\341\266l\177\265\217u\207\265\202\0\0\0\207\331\330\265\202\330\327" "\265\14\327\326\265\324\324\265\317\320\265\307\312\265\274\301\265\256" "\265\265\240\252\265\222\237\265\207\226\265\177\217\265z\213\265w\211" "\265\212v\210\265\203\333\332\266\202\0\0\0\211\333\332\266\2\345\341" "\266l\177\265\217u\207\265\202\0\0\0\207\326\326\265\202\325\325\265" "\14\324\324\265\321\322\265\315\316\265\305\310\265\273\300\265\256\265" "\265\240\252\265\223\237\265\211\227\265\201\221\265}\215\265z\213\265" "\212y\212\265\203\333\332\266\3\0\0\0\377\377\377\0\0\0\210\333\332\266" "\2\345\341\266l\177\265\217u\207\265\202\0\0\0\207\321\322\265\202\320" "\321\265\14\317\320\265\315\316\265\311\313\265\302\306\265\271\276\265" "\255\265\265\241\252\265\225\241\265\214\231\265\205\224\265\201\221" "\265\177\217\265\212~\216\265\203\333\332\266\1\0\0\0\202\377\377\377" "\1\0\0\0\207\333\332\266\2\345\341\266l\177\265\217u\207\265\202\0\0" "\0\207\311\313\265\202\310\312\265\14\307\311\265\305\310\265\302\305" "\265\275\301\265\265\273\265\254\264\265\242\254\265\231\244\265\221" "\236\265\214\232\265\211\227\265\207\226\265\212\206\225\265\204\333" "\332\266\1\0\0\0\202\377\377\377\1\0\0\0\206\333\332\266\2\345\341\266" "l\177\265\217u\207\265\202\0\0\0\207\275\302\265\203\274\301\265\12\273" "\300\265\270\276\265\265\273\265\260\267\265\252\262\265\244\255\265" "\236\250\265\231\244\265\226\241\265\223\237\265\203\222\236\265\216" "\0\0\0\202\377\377\377\1\0\0\0\205\333\332\266\2\345\341\266l\177\265" "\217u\207\265\202\0\0\0\207\257\266\265\204\256\265\265\10\255\264\265" "\254\263\265\252\262\265\250\260\265\246\257\265\244\255\265\242\254" "\265\241\253\265\204\240\252\265\1\0\0\0\220\377\377\377\1\0\0\0\204" "\345\341\266\2\350\344\266h|\265\216l\177\265\1u\207\265\202\0\0\0\213" "\240\252\265\10\241\253\265\242\254\265\244\255\265\246\257\265\250\260" "\265\252\262\265\254\263\265\255\264\265\204\256\265\265\1\0\0\0\220" "\377\377\377\1\0\0\0\204l\177\265\2h|\265\350\344\266\216\345\341\266" "\1\333\332\266\202\0\0\0\212\222\236\265\12\223\237\265\226\241\265\231" "\244\265\236\250\265\244\255\265\252\262\265\260\267\265\265\273\265" "\270\276\265\273\300\265\203\274\301\265\216\0\0\0\202\377\377\377\1" "\0\0\0\205u\207\265\2l\177\265\345\341\266\217\333\332\266\202\0\0\0" "\211\206\225\265\14\207\226\265\211\227\265\214\232\265\221\236\265\231" "\244\265\242\253\265\254\263\265\265\273\265\275\301\265\302\305\265" "\305\310\265\307\311\265\203\310\312\265\207\311\313\265\204u\207\265" "\1\0\0\0\202\377\377\377\1\0\0\0\206u\207\265\2l\177\265\345\341\266" "\217\333\332\266\202\0\0\0\211~\216\265\14\177\217\265\201\221\265\205" "\224\265\214\231\265\225\241\265\241\252\265\255\265\265\271\276\265" "\302\306\265\311\313\265\315\316\265\317\320\265\203\320\321\265\207" "\321\322\265\203u\207\265\1\0\0\0\202\377\377\377\1\0\0\0\207u\207\265" "\2l\177\265\345\341\266\217\333\332\266\202\0\0\0\211y\212\265\14z\213" "\265}\215\265\201\221\265\211\227\265\223\237\265\240\252\265\256\265" "\265\273\300\265\305\310\265\315\316\265\321\322\265\324\324\265\203" "\325\325\265\207\326\326\265\203u\207\265\3\0\0\0\377\377\377\0\0\0\210" "u\207\265\2l\177\265\345\341\266\217\333\332\266\202\0\0\0\211v\210\265" "\14w\211\265z\213\265\177\217\265\207\225\265\222\236\265\240\252\265" "\256\265\265\274\300\265\307\311\265\317\320\265\324\324\265\327\326" "\265\203\330\327\265\207\331\330\265\203u\207\265\202\0\0\0\211u\207" "\265\2l\177\265\345\341\266\217\333\332\266\202\0\0\0\211u\207\265\14" "v\210\265y\212\265~\216\265\206\225\265\221\236\265\237\251\265\256\266" "\265\274\301\265\310\312\265\320\321\265\325\325\265\330\327\265\203" "\331\330\265\207\332\331\265\216u\207\265\2l\177\265\345\341\266\217" "\333\332\266\202\0\0\0\211u\207\265\14v\210\265y\212\265~\216\265\206" "\225\265\221\236\265\237\251\265\256\266\265\274\301\265\310\312\265" "\320\321\265\325\325\265\330\327\265\203\331\330\265\207\332\331\265" "\216u\207\265\2l\177\265\345\341\266\217\333\332\266\202\0\0\0\211u\207" "\265\14v\210\265y\212\265~\216\265\206\225\265\221\236\265\237\251\265" "\256\266\265\274\301\265\310\312\265\320\321\265\325\325\265\330\327" "\265\203\331\330\265\207\332\331\265\216u\207\265\2l\177\265\345\341" "\266\217\333\332\266\202\0\0\0\211u\207\265\14v\210\265y\212\265~\216" "\265\206\225\265\222\236\265\240\252\265\257\266\265\275\302\265\311" "\313\265\321\322\265\326\326\265\331\330\265\203\332\331\265\207\333" "\332\266\216u\207\265\2l\177\265\345\341\266\217\333\332\266\202\0\0" "\0\211u\207\265\14v\210\265y\212\265~\216\265\206\225\265\222\236\265" "\240\252\265\257\266\265\275\302\265\311\313\265\321\322\265\326\326" "\265\331\330\265\203\332\331\265\207\333\332\266\217u\207\265\220\333" "\332\266\301\0\0\0"}; photoprint-0.4.2-pre2/effects/ppeffect_desaturate.cpp0000644000175000017500000000172511101462351017651 00000000000000#include #include #include #include "imagesource_desaturate.h" #include "layout.h" #include "ppeffect_desaturate.h" #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) const char *PPEffect_Desaturate::ID="Desaturate"; const char *PPEffect_Desaturate::GetID() { return(ID); } const char *PPEffect_Desaturate::Name=N_("Desaturate"); const char *PPEffect_Desaturate::GetName() { return(Name); } PPEffect_Desaturate::PPEffect_Desaturate(PPEffectHeader &header,int priority,enum PPEFFECT_STAGE stage) : PPEffect(header,priority,stage) { } PPEffect_Desaturate::~PPEffect_Desaturate() { } PPEffect_Desaturate *PPEffect_Desaturate::Clone(PPEffectHeader &head) { PPEffect_Desaturate *result=new PPEffect_Desaturate(head,priority,stage); return(result); } ImageSource *PPEffect_Desaturate::Apply(ImageSource *source) { return(new ImageSource_Desaturate(source)); } photoprint-0.4.2-pre2/effects/effectlist.cpp0000644000175000017500000001773511266375236016015 00000000000000#include #include #include #include "effectlist.h" #include "ppeffect.h" #include "ppeffect_temperature.h" #include "effectwidget_tempchange.h" #include "effectwidget_unsharpmask.h" #include "ppeffect_temperature_icon.cpp" #include "ppeffect_desaturate.h" #include "ppeffect_desaturate_icon.cpp" #include "ppeffect_unsharpmask.h" #include "ppeffect_unsharpmask_icon.cpp" #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) using namespace std; enum EFFECT_PRIORITIES {PRIORITY_UNSHARPMASK,PRIORITY_TEMPERATURE,PRIORITY_DESATURATE}; // Abstract base class class EffectListEntry { public: EffectListEntry() { } virtual ~EffectListEntry() { } virtual const char *GetID()=0; virtual const char *GetName()=0; virtual GdkPixbuf *GetIcon()=0; virtual PPEffect *CreateEffect(PPEffectHeader &header)=0; virtual GtkWidget *CreateWidget(PPEffect *effect=NULL) { return(NULL); } virtual void EffectToWidget(GtkWidget *widget,PPEffect *effect) { } virtual void WidgetToEffect(GtkWidget *widget,PPEffect *effect) { } protected: }; // Subclass for Temperature effect class EffectListEntry_Temperature : public EffectListEntry { public: EffectListEntry_Temperature() : EffectListEntry(), icon(NULL), tempchange(0) { } virtual ~EffectListEntry_Temperature() { } virtual const char *GetID() { return(PPEffect_Temperature::ID); } virtual const char *GetName() { return(gettext(PPEffect_Temperature::Name)); } virtual GdkPixbuf *GetIcon() { if(icon) return(icon); GdkPixdata pd; GError *err; if(!gdk_pixdata_deserialize(&pd,sizeof(PPEffect_Temperature_Icon),PPEffect_Temperature_Icon,&err)) throw(err->message); if(!(icon=gdk_pixbuf_from_pixdata(&pd,false,&err))) throw(err->message); return(icon); } virtual PPEffect *CreateEffect(PPEffectHeader &header) { PPEffect_Temperature *result=new PPEffect_Temperature(header,PRIORITY_TEMPERATURE,PPEFFECT_PRESCALE); result->SetTempChange(tempchange); return(result); } virtual GtkWidget *CreateWidget(PPEffect *effect) { PPEffect_Temperature *pe=(PPEffect_Temperature *)effect; GtkWidget *result=NULL; result=effectwidget_tempchange_new(); if(pe) EffectToWidget(result,effect); else effectwidget_tempchange_set(EFFECTWIDGET_TEMPCHANGE(result),tempchange); gtk_widget_set_sensitive(result,(pe!=NULL)); return(result); } virtual void EffectToWidget(GtkWidget *widget,PPEffect *effect) { PPEffect_Temperature *pe=(PPEffect_Temperature *)effect; if(pe) effectwidget_tempchange_set(EFFECTWIDGET_TEMPCHANGE(widget),pe->GetTempChange()); } virtual void WidgetToEffect(GtkWidget *widget,PPEffect *effect) { PPEffect_Temperature *pe=(PPEffect_Temperature *)effect; tempchange=effectwidget_tempchange_get(EFFECTWIDGET_TEMPCHANGE(widget)); if(pe) pe->SetTempChange(tempchange); } protected: GdkPixbuf *icon; int tempchange; }; // Subclass for Desaturate effect class EffectListEntry_Desaturate : public EffectListEntry { public: EffectListEntry_Desaturate() : EffectListEntry(), icon(NULL) { } virtual ~EffectListEntry_Desaturate() { } virtual const char *GetID() { return(PPEffect_Desaturate::ID); } virtual const char *GetName() { return(gettext(PPEffect_Desaturate::Name)); } virtual GdkPixbuf *GetIcon() { if(icon) return(icon); GdkPixdata pd; GError *err; if(!gdk_pixdata_deserialize(&pd,sizeof(PPEffect_Desaturate_Icon),PPEffect_Desaturate_Icon,&err)) throw(err->message); if(!(icon=gdk_pixbuf_from_pixdata(&pd,false,&err))) throw(err->message); return(icon); } virtual PPEffect *CreateEffect(PPEffectHeader &header) { PPEffect_Desaturate *result=new PPEffect_Desaturate(header,PRIORITY_DESATURATE,PPEFFECT_PRESCALE); return(result); } protected: GdkPixbuf *icon; }; // Subclass for UnsharpMask effect class EffectListEntry_UnsharpMask : public EffectListEntry { public: EffectListEntry_UnsharpMask() : EffectListEntry(), icon(NULL), radius(3.0), amount(1.5) { } virtual ~EffectListEntry_UnsharpMask() { } virtual const char *GetID() { return(PPEffect_UnsharpMask::ID); } virtual const char *GetName() { return(gettext(PPEffect_UnsharpMask::Name)); } virtual GdkPixbuf *GetIcon() { if(icon) return(icon); GdkPixdata pd; GError *err; if(!gdk_pixdata_deserialize(&pd,sizeof(PPEffect_UnsharpMask_Icon),PPEffect_UnsharpMask_Icon,&err)) throw(err->message); if(!(icon=gdk_pixbuf_from_pixdata(&pd,false,&err))) throw(err->message); return(icon); } virtual PPEffect *CreateEffect(PPEffectHeader &header) { PPEffect_UnsharpMask *result=new PPEffect_UnsharpMask(header,PRIORITY_UNSHARPMASK,PPEFFECT_PRESCALE); result->SetRadius(radius); result->SetAmount(amount); return(result); } virtual GtkWidget *CreateWidget(PPEffect *effect) { PPEffect_UnsharpMask *pe=(PPEffect_UnsharpMask *)effect; GtkWidget *result=NULL; result=effectwidget_unsharpmask_new(); if(pe) EffectToWidget(result,effect); else { effectwidget_unsharpmask_set_radius(EFFECTWIDGET_UNSHARPMASK(result),radius); effectwidget_unsharpmask_set_amount(EFFECTWIDGET_UNSHARPMASK(result),amount); } gtk_widget_set_sensitive(result,(pe!=NULL)); return(result); } virtual void EffectToWidget(GtkWidget *widget,PPEffect *effect) { PPEffect_UnsharpMask *pe=(PPEffect_UnsharpMask *)effect; if(pe) { effectwidget_unsharpmask_set_radius(EFFECTWIDGET_UNSHARPMASK(widget),pe->GetRadius()); effectwidget_unsharpmask_set_amount(EFFECTWIDGET_UNSHARPMASK(widget),pe->GetAmount()); } } virtual void WidgetToEffect(GtkWidget *widget,PPEffect *effect) { PPEffect_UnsharpMask *pe=(PPEffect_UnsharpMask *)effect; radius=effectwidget_unsharpmask_get_radius(EFFECTWIDGET_UNSHARPMASK(widget)); amount=effectwidget_unsharpmask_get_amount(EFFECTWIDGET_UNSHARPMASK(widget)); if(pe) { pe->SetRadius(radius); pe->SetAmount(amount); } } protected: GdkPixbuf *icon; float radius; float amount; }; // Table of effects... static EffectListEntry_Desaturate effectlistentry_desaturate; static EffectListEntry_Temperature effectlistentry_temperature; static EffectListEntry_UnsharpMask effectlistentry_unsharpmask; static EffectListEntry *effectlistsources[]= { &effectlistentry_desaturate, &effectlistentry_temperature, &effectlistentry_unsharpmask }; #define SOURCECOUNT (sizeof(effectlistsources)/sizeof(EffectListEntry *)) // EffectListSource member functions. EffectListSource::EffectListSource() { } EffectListSource::~EffectListSource() { } int EffectListSource::EffectCount() { return(SOURCECOUNT); } const char *EffectListSource::GetID(unsigned int effect) { if((effect>=0) && (effectGetID()); return(NULL); } const char *EffectListSource::GetName(unsigned int effect) { if((effect>=0) && (effectGetName()); return(NULL); } GdkPixbuf *EffectListSource::GetIcon(unsigned int effect) { if((effect>=0) && (effectGetIcon()); return(NULL); } PPEffect *EffectListSource::CreateEffect(unsigned int effect,PPEffectHeader &header) { if((effect>=0) && (effectCreateEffect(header)); return(NULL); } GtkWidget *EffectListSource::CreateWidget(unsigned int idx,PPEffect *effect) { if((idx>=0) && (idxCreateWidget(effect)); return(NULL); } void EffectListSource::WidgetToEffect(GtkWidget *widget,PPEffect *effect) { const char *id=effect->GetID(); for(unsigned int i=0;iGetID(),id)==0) { effectlistsources[i]->WidgetToEffect(widget,effect); } } } void EffectListSource::EffectToWidget(GtkWidget *widget,PPEffect *effect) { const char *id=effect->GetID(); for(unsigned int i=0;iGetID(),id)==0) { effectlistsources[i]->EffectToWidget(widget,effect); } } } photoprint-0.4.2-pre2/effects/effects_dialog.cpp0000644000175000017500000000500411266375274016607 00000000000000#include #include #include "ppeffect.h" #include "effects_dialog.h" #include "effectselector.h" #include "effectlist.h" #include "../support/debug.h" #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) using namespace std; struct dialogstate { PPEffectHeader *header; GtkWidget *preview; GdkPixbuf *previewsourcepb; GtkWidget *availselector; GtkWidget *currentselector; }; #if 0 static void add_effect(GtkWidget *w,gpointer userdata) { struct dialogstate *ds=(struct dialogstate *)userdata; EffectListItem *eli; if((eli=effectselector_get_selected(EFFECTSELECTOR(ds->availselector)))) { Debug[TRACE] << "Got selection: " << eli->GetName() << endl; // eli->Action(); // Add effect to PPEffectHeader here. effectselector_refresh(EFFECTSELECTOR(ds->currentselector)); } } static void effect_settings(GtkWidget *w,gpointer userdata) { struct dialogstate *ds=(struct dialogstate *)userdata; EffectListItem *eli; if((eli=effectselector_get_selected(EFFECTSELECTOR(ds->currentselector)))) { Debug[TRACE] << "Got selection: " << eli->GetName() << endl; // eli->Action(); } } static void remove_effect(GtkWidget *w,gpointer userdata) { struct dialogstate *ds=(struct dialogstate *)userdata; EffectListItem *eli; if((eli=effectselector_get_selected(EFFECTSELECTOR(ds->currentselector)))) { Debug[TRACE] << "Got selection: " << eli->GetName() << endl; eli->Remove(); effectselector_refresh(EFFECTSELECTOR(ds->currentselector)); } } #endif void EffectsDialog(PPEffectHeader &header,GtkWindow *parent,GdkPixbuf *thumbnail) { dialogstate st; st.header=&header; st.previewsourcepb=thumbnail; GtkWidget *dialog; dialog=gtk_dialog_new_with_buttons(_("Effects..."), parent,GtkDialogFlags(0), // GTK_STOCK_CANCEL,GTK_RESPONSE_CANCEL, GTK_STOCK_OK,GTK_RESPONSE_OK, NULL); gtk_window_set_default_size(GTK_WINDOW(dialog),400,400); st.availselector=effectselector_new(); gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox),st.availselector,TRUE,TRUE,0); gtk_widget_show(st.availselector); gtk_widget_show(dialog); effectselector_set_current_list(EFFECTSELECTOR(st.availselector),&header); // effectselector_set_current_list(EFFECTSELECTOR(st.availselector),NULL); bool done=false; while(!done) { gint result=gtk_dialog_run(GTK_DIALOG(dialog)); switch(result) { case GTK_RESPONSE_CANCEL: done=true; break; case GTK_RESPONSE_OK: done=true; break; } } gtk_widget_destroy(dialog); } photoprint-0.4.2-pre2/effects/ppeffect_unsharpmask.h0000644000175000017500000000114011101462351017500 00000000000000#ifndef PPEFFECT_UNSHARPMASK_H #include "ppeffect.h" class PPEffect_UnsharpMask : public PPEffect { public: PPEffect_UnsharpMask(PPEffectHeader &header,int priority,enum PPEFFECT_STAGE stage); virtual ~PPEffect_UnsharpMask(); virtual PPEffect_UnsharpMask *Clone(PPEffectHeader &head); virtual ImageSource *Apply(ImageSource *source); static const char *ID; static const char *Name; virtual const char *GetID(); virtual const char *GetName(); float GetRadius(); void SetRadius(float radius); float GetAmount(); void SetAmount(float amount); protected: float radius; float amount; }; #endif photoprint-0.4.2-pre2/effects/ppeffect.h0000644000175000017500000000254111101462351015072 00000000000000#ifndef PPEFFECT_H #define PPEFFECT_H #include #include #include "../imagesource/imagesource.h" #include "../support/thread.h" #include "../support/rwmutex.h" // These can be compared with bitwise and. enum PPEFFECT_STAGE {PPEFFECT_PRESCALE=1,PPEFFECT_POSTSCALE,PPEFFECT_DONTCARE}; class PPEffect; class PPEffectHeader : public RWMutex { public: PPEffectHeader(); PPEffectHeader(PPEffectHeader &pp); virtual ~PPEffectHeader(); ImageSource *ApplyEffects(ImageSource *source,enum PPEFFECT_STAGE stage=PPEFFECT_DONTCARE); int EffectCount(enum PPEFFECT_STAGE stage); PPEffect *GetFirstEffect(enum PPEFFECT_STAGE stage=PPEFFECT_DONTCARE); PPEffect *Find(const char *ID); virtual void ObtainMutex(); private: PPEffect *firsteffect; friend class PPEffect; }; class PPEffect { public: PPEffect(PPEffectHeader &header,int priority,enum PPEFFECT_STAGE stage); virtual ~PPEffect(); virtual PPEffect *Clone(PPEffectHeader &header)=0; virtual ImageSource *Apply(ImageSource *source)=0; // virtual bool Dialog(GtkWindow *parent,GdkPixbuf *preview)=0; virtual PPEffect *Next(enum PPEFFECT_STAGE stage=PPEFFECT_DONTCARE); virtual const char *GetID()=0; virtual const char *GetName()=0; protected: int priority; enum PPEFFECT_STAGE stage; PPEffectHeader &header; PPEffect *prev,*next; friend class PPEffectHeader; }; #endif photoprint-0.4.2-pre2/effects/effectlist.h0000644000175000017500000000142611101462351015427 00000000000000// Class to access a list of available effects. // Handles both internal and translated names, UI Icons, // and has a method to create a widget for manipulating the effect. #ifndef EFFECTLIST_H #include "ppeffect.h" class EffectListSource { public: EffectListSource(); virtual ~EffectListSource(); virtual int EffectCount(); virtual const char *GetID(unsigned int effect); virtual const char *GetName(unsigned int effect); virtual GdkPixbuf *GetIcon(unsigned int effect); virtual PPEffect *CreateEffect(unsigned int effect,PPEffectHeader &header); virtual GtkWidget *CreateWidget(unsigned int effect,PPEffect *peffect=NULL); virtual void EffectToWidget(GtkWidget *widget,PPEffect *effect); virtual void WidgetToEffect(GtkWidget *widget,PPEffect *effect); private: }; #endif photoprint-0.4.2-pre2/effects/Makefile.am0000644000175000017500000000372411246732243015177 00000000000000CLEANFILES = ppeffect_desaturate_icon.cpp ppeffect_temperature_icon.cpp localedir=$(datadir)/locale AM_CXXFLAGS = -DLOCALEDIR=\"$(localedir)\" -Wall -I../ -I../imagesource/ -I../pixbufthumbnail -I../support/ -I../profilemanager $(LCMS_CFLAGS) $(GTK2_CFLAGS) noinst_LTLIBRARIES = libppeffects.la libppeffects_la_SOURCES = \ effectlist.cpp \ effectlist.h \ effects_dialog.cpp \ effects_dialog.h \ effectselector.cpp \ effectselector.h \ effectwidget_tempchange.cpp \ effectwidget_tempchange.h \ effectwidget_unsharpmask.cpp \ effectwidget_unsharpmask.h \ ppeffect.cpp \ ppeffect.h \ ppeffect_desaturate.cpp \ ppeffect_desaturate.h \ ppeffect_temperature.cpp \ ppeffect_temperature.h \ ppeffect_unsharpmask.cpp \ ppeffect_unsharpmask.h libppeffects_la_LDFLAGS = -static BUILT_SOURCES = ppeffect_temperature_icon.cpp ppeffect_desaturate_icon.cpp ppeffect_unsharpmask_icon.cpp ppeffect_temperature_icon.cpp: TemperatureIcon.bmp gdk-pixbuf-csource --name=PPEffect_Temperature_Icon >ppeffect_temperature_icon.cpp TemperatureIcon.bmp ppeffect_desaturate_icon.cpp: DesaturateIcon.bmp gdk-pixbuf-csource --name=PPEffect_Desaturate_Icon >ppeffect_desaturate_icon.cpp DesaturateIcon.bmp ppeffect_unsharpmask_icon.cpp: UnsharpMaskIcon.bmp gdk-pixbuf-csource --name=PPEffect_UnsharpMask_Icon >ppeffect_unsharpmask_icon.cpp UnsharpMaskIcon.bmp check_PROGRAMS = dialogcheck dialogcheck_SOURCES = dialogcheck.cpp dialogcheck_DEPENDENCIES = libppeffects.la ../pixbufthumbnail/libpixbufthumbnail.la \ ../imagesource/libimagesource.la ../profilemanager/libprofilemanager.la \ ../support/libsupport.la dialogcheck_LDADD = -L. -lppeffects -L../imagesource -limagesource -L../profilemanager -lprofilemanager \ -L../support -lsupport -L../pixbufthumbnail -lpixbufthumbnail $(LIBINTL) $(TIFF_LIBS) $(LCMS_LIBS) $(GTK2_LIBS) EXTRA_DIST = TemperatureIcon.bmp DesaturateIcon.bmp UnsharpMaskIcon.bmp \ ppeffect_temperature_icon.cpp ppeffect_desaturate_icon.cpp ppeffect_unsharpmask_icon.cpp photoprint-0.4.2-pre2/effects/ppeffect_desaturate_icon.cpp0000644000175000017500000001731211317704755020700 00000000000000/* GdkPixbuf RGB C-Source image dump 1-byte-run-length-encoded */ #ifdef __SUNPRO_C #pragma align 4 (PPEffect_Desaturate_Icon) #endif #ifdef __GNUC__ static const guint8 PPEffect_Desaturate_Icon[] __attribute__ ((__aligned__ (4))) = #else static const guint8 PPEffect_Desaturate_Icon[] = #endif { "" /* Pixbuf magic (0x47646b50) */ "GdkP" /* length: header (24) + pixel_data (2306) */ "\0\0\11\32" /* pixdata_type (0x2010001) */ "\2\1\0\1" /* rowstride (192) */ "\0\0\0\300" /* width (64) */ "\0\0\0@" /* height (24) */ "\0\0\0\30" /* pixel_data: */ "\301\0\0\0\37\377\0\0\3772\0\377c\0\377\224\0\377\306\0\377\367\0\326" "\377\0\245\377\0s\377\0B\377\0\21\377\0\0\377!\0\377R\0\377\203\0\377" "\265\0\377\347\0\347\377\0\265\377\0\203\377\0R\377\0!\377\20\0\377A" "\0\377s\0\377\244\0\377\325\0\377\377\0\366\377\0\306\377\0\224\377\0" "b\377\0""1\237\177\177\177\202\0\0\0\37\377\0\0\3771\0\377c\0\377\224" "\0\377\306\0\377\367\0\326\377\0\244\377\0s\377\0A\377\0\20\377\0\0\377" "!\0\377R\0\377\203\0\377\265\0\377\346\0\346\377\0\265\377\0\203\377" "\0R\377\0!\377\20\0\377A\0\377s\0\377\244\0\377\326\0\377\377\0\366\377" "\0\306\377\0\224\377\0b\377\0""1\237\177\177\177\202\0\0\0\37\377\0\0" "\3772\0\377c\0\377\224\0\377\305\0\377\367\0\326\377\0\245\377\0s\377" "\0B\377\0\20\377\0\0\377\40\0\377R\0\377\204\0\377\265\0\377\346\0\346" "\377\0\265\377\0\204\377\0R\377\0!\377\20\0\377B\0\377s\0\377\245\0\377" "\326\0\377\377\0\366\377\0\305\377\0\224\377\0c\377\0""1\237\177\177" "\177\202\0\0\0\37\377\0\0\3772\0\377c\0\377\224\0\377\305\0\377\367\0" "\325\377\0\245\377\0s\377\0B\377\0\20\377\0\0\377!\0\377R\0\377\203\0" "\377\265\0\377\347\0\346\377\0\265\377\0\204\377\0R\377\0!\377\20\0\377" "B\0\377s\0\377\244\0\377\326\0\377\377\0\367\377\0\305\377\0\224\377" "\0b\377\0""2\237\177\177\177\202\0\0\0\37\377\0\0\3772\0\377b\0\377\225" "\0\377\306\0\377\366\0\326\377\0\245\377\0s\377\0A\377\0\20\377\0\0\377" "!\0\377S\0\377\204\0\377\265\0\377\347\0\347\377\0\265\377\0\204\377" "\0R\377\0!\377\21\0\377B\0\377s\0\377\244\0\377\326\0\377\377\0\367\377" "\0\305\377\0\224\377\0c\377\0""1\237\177\177\177\202\0\0\0\37\377\0\0" "\3771\0\377c\0\377\224\0\377\306\0\377\367\0\326\377\0\245\377\0s\377" "\0A\377\0\20\377\0\0\377!\0\377R\0\377\203\0\377\265\0\377\346\0\346" "\377\0\265\377\0\203\377\0S\377\0!\377\21\0\377B\0\377s\0\377\244\0\377" "\326\0\377\377\0\367\377\0\306\377\0\224\377\0c\377\0""1\203\177\177" "\177\202\0\0\0\232\177\177\177\202\0\0\0\37\377\0\0\3771\0\377c\0\377" "\224\0\377\305\0\377\367\0\326\377\0\244\377\0s\377\0A\377\0\20\377\0" "\0\377!\0\377R\0\377\204\0\377\265\0\377\346\0\347\377\0\264\377\0\203" "\377\0S\377\0!\377\21\0\377B\0\377s\0\377\245\0\377\326\0\377\377\0\366" "\377\0\305\377\0\224\377\0c\377\0""2\203\177\177\177\3\0\0\0\377\377" "\377\0\0\0\231\177\177\177\202\0\0\0\37\377\0\0\3771\0\377b\0\377\224" "\0\377\305\0\377\367\0\326\377\0\244\377\0s\377\0B\377\0\21\377\0\0\377" "!\0\377S\0\377\203\0\377\265\0\377\346\0\346\377\0\265\377\0\203\377" "\0R\377\0!\377\21\0\377B\0\377s\0\377\244\0\377\326\0\377\377\0\367\377" "\0\306\377\0\224\377\0c\377\0""1\203\177\177\177\1\0\0\0\202\377\377" "\377\1\0\0\0\230\177\177\177\202\0\0\0\37\377\0\0\3771\0\377b\0\377\224" "\0\377\306\0\377\367\0\326\377\0\245\377\0s\377\0B\377\0\20\377\0\0\377" "!\0\377R\0\377\204\0\377\265\0\377\347\0\346\377\0\265\377\0\204\377" "\0R\377\0!\377\20\0\377B\0\377s\0\377\244\0\377\325\0\377\377\0\367\377" "\0\305\377\0\224\377\0c\377\0""1\204\177\177\177\1\0\0\0\202\377\377" "\377\1\0\0\0\227\177\177\177\202\0\0\0\27\377\0\0\3771\0\377c\0\377\224" "\0\377\306\0\377\367\0\326\377\0\245\377\0s\377\0B\377\0\20\377\0\0\377" "!\0\377S\0\377\204\0\377\265\0\377\346\0\347\377\0\265\377\0\203\377" "\0R\377\0!\377\20\0\377B\0\377\216\0\0\0\202\377\377\377\1\0\0\0\226" "\177\177\177\202\0\0\0\30\377\0\0\3771\0\377c\0\377\224\0\377\305\0\377" "\367\0\326\377\0\245\377\0s\377\0B\377\0\20\377\0\0\377\40\0\377S\0\377" "\204\0\377\265\0\377\346\0\346\377\0\265\377\0\204\377\0R\377\0!\377" "\20\0\377B\0\377\0\0\0\220\377\377\377\1\0\0\0\225\177\177\177\202\0" "\0\0\30\377\0\0\3771\0\377b\0\377\224\0\377\305\0\377\367\0\326\377\0" "\245\377\0t\377\0B\377\0\20\377\0\0\377!\0\377R\0\377\203\0\377\265\0" "\377\346\0\346\377\0\265\377\0\203\377\0R\377\0!\377\21\0\377B\0\377" "\0\0\0\220\377\377\377\1\0\0\0\225\177\177\177\202\0\0\0\27\377\0\0\377" "1\0\377c\0\377\224\0\377\306\0\377\367\0\326\377\0\244\377\0s\377\0B" "\377\0\21\377\0\0\377!\0\377R\0\377\204\0\377\265\0\377\347\0\347\377" "\0\265\377\0\204\377\0R\377\0!\377\20\0\377B\0\377\216\0\0\0\202\377" "\377\377\1\0\0\0\226\177\177\177\202\0\0\0\37\377\0\0\3772\0\377c\0\377" "\224\0\377\305\0\377\367\0\326\377\0\245\377\0s\377\0A\377\0\20\377\0" "\0\377!\0\377R\0\377\204\0\377\265\0\377\346\0\346\377\0\265\377\0\204" "\377\0S\377\0!\377\20\0\377A\0\377s\0\377\245\0\377\326\0\377\377\0\367" "\377\0\306\377\0\224\377\0c\377\0""2\204\177\177\177\1\0\0\0\202\377" "\377\377\1\0\0\0\227\177\177\177\202\0\0\0\37\377\0\0\3772\0\377b\0\377" "\224\0\377\305\0\377\366\0\326\377\0\245\377\0s\377\0B\377\0\20\377\0" "\0\377\40\0\377R\0\377\203\0\377\265\0\377\346\0\346\377\0\265\377\0" "\204\377\0R\377\0!\377\20\0\377B\0\377s\0\377\245\0\377\326\0\377\377" "\0\367\377\0\305\377\0\224\377\0c\377\0""1\203\177\177\177\1\0\0\0\202" "\377\377\377\1\0\0\0\230\177\177\177\202\0\0\0\37\377\0\0\3771\0\377" "c\0\377\224\0\377\305\0\377\367\0\326\377\0\245\377\0s\377\0B\377\0\21" "\377\0\0\377!\0\377S\0\377\204\0\377\265\0\377\346\0\346\377\0\264\377" "\0\204\377\0R\377\0!\377\20\0\377B\0\377s\0\377\244\0\377\326\0\377\377" "\0\366\377\0\305\377\0\224\377\0c\377\0""1\203\177\177\177\3\0\0\0\377" "\377\377\0\0\0\231\177\177\177\202\0\0\0\37\377\0\0\3771\0\377c\0\377" "\224\0\377\305\0\377\366\0\326\377\0\245\377\0s\377\0B\377\0\21\377\0" "\0\377\40\0\377R\0\377\204\0\377\265\0\377\347\0\347\377\0\265\377\0" "\204\377\0S\377\0!\377\21\0\377B\0\377s\0\377\244\0\377\326\0\377\377" "\0\367\377\0\306\377\0\224\377\0c\377\0""2\203\177\177\177\202\0\0\0" "\232\177\177\177\202\0\0\0\37\377\0\0\3772\0\377c\0\377\224\0\377\305" "\0\377\367\0\325\377\0\244\377\0t\377\0B\377\0\21\377\0\0\377!\0\377" "R\0\377\204\0\377\264\0\377\347\0\346\377\0\265\377\0\204\377\0R\377" "\0!\377\20\0\377B\0\377s\0\377\244\0\377\326\0\377\377\0\367\377\0\305" "\377\0\224\377\0c\377\0""2\237\177\177\177\202\0\0\0\37\377\0\0\3772" "\0\377c\0\377\224\0\377\306\0\377\367\0\326\377\0\245\377\0s\377\0A\377" "\0\20\377\0\0\377!\0\377R\0\377\203\0\377\265\0\377\347\0\346\377\0\265" "\377\0\204\377\0R\377\0!\377\21\0\377A\0\377t\0\377\245\0\377\326\0\377" "\377\0\366\377\0\306\377\0\224\377\0c\377\0""1\237\177\177\177\202\0" "\0\0\37\377\0\0\3771\0\377c\0\377\224\0\377\306\0\377\367\0\326\377\0" "\244\377\0s\377\0B\377\0\20\377\0\0\377!\0\377R\0\377\203\0\377\265\0" "\377\347\0\346\377\0\265\377\0\204\377\0R\377\0!\377\21\0\377A\0\377" "t\0\377\244\0\377\326\0\377\377\0\367\377\0\306\377\0\224\377\0c\377" "\0""1\237\177\177\177\202\0\0\0\37\377\0\0\3771\0\377c\0\377\224\0\377" "\305\0\377\367\0\325\377\0\244\377\0s\377\0B\377\0\21\377\0\0\377!\0" "\377R\0\377\203\0\377\265\0\377\346\0\346\377\0\265\377\0\203\377\0R" "\377\0!\377\20\0\377B\0\377s\0\377\245\0\377\326\0\377\377\0\367\377" "\0\306\377\0\224\377\0c\377\0""1\237\177\177\177\202\0\0\0\37\377\0\0" "\3771\0\377c\0\377\224\0\377\305\0\377\366\0\326\377\0\245\377\0t\377" "\0B\377\0\21\377\0\0\377!\0\377S\0\377\204\0\377\265\0\377\346\0\346" "\377\0\265\377\0\203\377\0R\377\0!\377\21\0\377B\0\377t\0\377\244\0\377" "\326\0\377\377\0\367\377\0\305\377\0\224\377\0c\377\0""2\237\177\177" "\177\301\0\0\0"}; photoprint-0.4.2-pre2/effects/effects_dialog.h0000644000175000017500000000033311101462351016231 00000000000000#ifndef EFFECTS_DIALOG_H #define EFFECTS_DIALOG_H #include "ppeffect.h" #include "gtk/gtkwindow.h" #include "gdk/gdkpixbuf.h" void EffectsDialog(PPEffectHeader &header,GtkWindow *parent,GdkPixbuf *thumbnail); #endif photoprint-0.4.2-pre2/effects/ppeffect_desaturate.h0000644000175000017500000000107711101462351017316 00000000000000#ifndef PPEFFECT_DESATURATE_H #include "ppeffect.h" class PPEffect_Desaturate : public PPEffect { public: PPEffect_Desaturate(PPEffectHeader &header,int priority,enum PPEFFECT_STAGE stage); virtual ~PPEffect_Desaturate(); virtual PPEffect_Desaturate *Clone(PPEffectHeader &header); virtual ImageSource *Apply(ImageSource *source); // virtual bool Dialog(GtkWindow *parent,GdkPixbuf *preview); // virtual GtkWidget *SettingsWidget(); static const char *ID; static const char *Name; virtual const char *GetID(); virtual const char *GetName(); protected: }; #endif photoprint-0.4.2-pre2/effects/ppeffect_temperature.h0000644000175000017500000000134211101462351017505 00000000000000#ifndef PPEFFECT_TEMPERATURE_H #include "ppeffect.h" class CMSTransform; class PPEffect_Temperature : public PPEffect { public: PPEffect_Temperature(PPEffectHeader &header,int priority,enum PPEFFECT_STAGE stage); virtual ~PPEffect_Temperature(); virtual PPEffect_Temperature *Clone(PPEffectHeader &header); virtual ImageSource *Apply(ImageSource *source); // virtual GtkWidget *SettingsWidget(); // virtual bool Dialog(GtkWindow *parent,GdkPixbuf *preview); void SetTempChange(int tempchange); int GetTempChange(); static const char *ID; static const char *Name; virtual const char *GetID(); virtual const char *GetName(); protected: void MakeTransform(IS_TYPE type); int tempchange; CMSTransform *transform; }; #endif photoprint-0.4.2-pre2/effects/effectwidget_unsharpmask.cpp0000644000175000017500000000771311266375366020740 00000000000000/* * effectwidget_unsharpmask.cpp * * Copyright (c) 2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include "../support/debug.h" #include "ppeffect.h" #include "ppeffect_desaturate.h" #include "ppeffect_temperature.h" #include "effectlist.h" #include "effectwidget_unsharpmask.h" #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) using namespace std; enum { CHANGED_SIGNAL, LAST_SIGNAL }; static guint effectwidget_unsharpmask_signals[LAST_SIGNAL] = { 0 }; static void effectwidget_unsharpmask_class_init (EffectWidget_UnsharpMaskClass *klass); static void effectwidget_unsharpmask_init (EffectWidget_UnsharpMask *sel); static void value_changed(GtkWidget *wid,gpointer obj) { g_signal_emit(G_OBJECT (obj),effectwidget_unsharpmask_signals[CHANGED_SIGNAL], 0); } static gchar* format_value_callback (GtkScale *scale,gdouble value,const gpointer userdata) { const gchar *fmt=(const char *)userdata; return(g_strdup_printf (fmt,value)); } GtkWidget* effectwidget_unsharpmask_new () { EffectWidget_UnsharpMask *c=EFFECTWIDGET_UNSHARPMASK(g_object_new (effectwidget_unsharpmask_get_type (), NULL)); c->radiusslider=gtk_hscale_new_with_range(0.1,100,0.1); gtk_box_pack_start(GTK_BOX(c),c->radiusslider,TRUE,TRUE,0); g_signal_connect(GTK_WIDGET(c->radiusslider),"format-value",G_CALLBACK(format_value_callback),(void*)_("Radius: %1.2f")); g_signal_connect(GTK_WIDGET(c->radiusslider),"value-changed",G_CALLBACK(value_changed),c); gtk_widget_show(c->radiusslider); c->amountslider=gtk_hscale_new_with_range(0.1,5,0.1); gtk_box_pack_start(GTK_BOX(c),c->amountslider,TRUE,TRUE,0); g_signal_connect(GTK_WIDGET(c->amountslider),"format-value",G_CALLBACK(format_value_callback),(void*)_("Amount: %1.2f")); g_signal_connect(GTK_WIDGET(c->amountslider),"value-changed",G_CALLBACK(value_changed),c); gtk_widget_show(c->amountslider); return(GTK_WIDGET(c)); } GType effectwidget_unsharpmask_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo effectwidget_unsharpmask_info = { sizeof (EffectWidget_UnsharpMaskClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) effectwidget_unsharpmask_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (EffectWidget_UnsharpMask), 0, (GInstanceInitFunc) effectwidget_unsharpmask_init, }; stpuic_type = g_type_register_static (GTK_TYPE_VBOX, "EffectWidget_UnsharpMask", &effectwidget_unsharpmask_info, GTypeFlags(0)); } return stpuic_type; } //static void *parent_class=NULL; static void effectwidget_unsharpmask_class_init (EffectWidget_UnsharpMaskClass *cls) { // GtkObjectClass *object_class=(GtkObjectClass *)cls; // parent_class = gtk_type_class (gtk_widget_get_type ()); effectwidget_unsharpmask_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (cls), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (EffectWidget_UnsharpMaskClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void effectwidget_unsharpmask_init (EffectWidget_UnsharpMask *c) { c->radiusslider=NULL; c->amountslider=NULL; } float effectwidget_unsharpmask_get_radius(EffectWidget_UnsharpMask *tc) { float result=gtk_range_get_value(GTK_RANGE(tc->radiusslider)); return(result); } void effectwidget_unsharpmask_set_radius(EffectWidget_UnsharpMask *tc,float radius) { gtk_range_set_value(GTK_RANGE(tc->radiusslider),radius); } float effectwidget_unsharpmask_get_amount(EffectWidget_UnsharpMask *tc) { float result=gtk_range_get_value(GTK_RANGE(tc->amountslider)); return(result); } void effectwidget_unsharpmask_set_amount(EffectWidget_UnsharpMask *tc,float amount) { gtk_range_set_value(GTK_RANGE(tc->amountslider),amount); } photoprint-0.4.2-pre2/pp_menu_file.h0000644000175000017500000000025511101462351014321 00000000000000#ifndef PP_MENU_FILE_H #define PP_MENU_FILE_H #include #include void BuildFileMenu(void *userdata,GtkUIManager *ui_manager); #endif photoprint-0.4.2-pre2/pp_layout_nup.h0000644000175000017500000000271511101462351014560 00000000000000#ifndef __PP_LAYOUT_NUP_H__ #define __PP_LAYOUT_NUP_H__ #include #include #include #include #include #include #include #include "stpui_widgets/units.h" #include "pp_layout_nup_pageview.h" G_BEGIN_DECLS #define PP_LAYOUT_NUP_TYPE (pp_layout_nup_get_type()) #define PP_LAYOUT_NUP(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PP_LAYOUT_NUP_TYPE, pp_Layout_NUp)) #define PP_LAYOUT_NUP_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PP_LAYOUT_NUP_TYPE, pp_Layout_NUpClass)) #define IS_PP_LAYOUT_NUP(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PP_LAYOUT_NUP_TYPE)) #define IS_PP_LAYOUT_NUP_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PP_LAYOUT_NUP_TYPE)) typedef struct _pp_Layout_NUp pp_Layout_NUp; typedef struct _pp_Layout_NUpClass pp_Layout_NUpClass; class PhotoPrint_State; struct _pp_Layout_NUp { GtkHBox hbox; GtkWidget *pageview; GtkWidget *sigcontrol; GtkWidget *pageextent; GtkWidget *imagecontrol; GtkWidget *page; PhotoPrint_State *state; }; struct _pp_Layout_NUpClass { GtkHBoxClass parent_class; void (*changed)(pp_Layout_NUp *book); void (*popupmenu)(pp_Layout_NUp *book); }; GType pp_layout_nup_get_type (void); GtkWidget* pp_layout_nup_new (PhotoPrint_State *state); void pp_layout_nup_refresh(pp_Layout_NUp *ob); void pp_layout_nup_set_unit(GtkWidget *wid,enum Units unit); G_END_DECLS #endif /* __PP_LAYOUT_NUP_H__ */ photoprint-0.4.2-pre2/profilemanager/0000777000175000017500000000000011400250525014563 500000000000000photoprint-0.4.2-pre2/profilemanager/profilemanager.h0000644000175000017500000001040211342324311017640 00000000000000#ifndef COLOURMANAGEMENT_H #define COLOURMANAGEMENT_H #include "imagesource.h" #include "lcmswrapper.h" #include "configdb.h" #include "searchpath.h" #ifndef WIN32 #include #endif #define SYSTEMMONITORPROFILE_ESCAPESTRING "" #define BUILTINSRGB_ESCAPESTRING "" #define NOPROFILE_ESCAPESTRING "" enum CMColourDevice { CM_COLOURDEVICE_NONE=0, CM_COLOURDEVICE_DISPLAY, CM_COLOURDEVICE_PRINTERPROOF, CM_COLOURDEVICE_EXPORT, CM_COLOURDEVICE_PRINTER, CM_COLOURDEVICE_DEFAULTRGB, CM_COLOURDEVICE_DEFAULTCMYK, CM_COLOURDEVICE_DEFAULTGREY }; enum CMProofMode { CM_PROOFMODE_NONE, CM_PROOFMODE_SIMULATEPRINT, CM_PROOFMODE_SIMULATEPRINTADAPTWHITE }; class CMTransformFactory; class ProfileInfo; class ProfileManager : public ConfigDB, public SearchPathHandler { public: ProfileManager(ConfigFile *Configfile,const char *section); virtual ~ProfileManager(); CMSProfile *GetProfile(const char *name); CMSProfile *GetProfile(CMColourDevice target); CMSProfile *GetDefaultProfile(IS_TYPE colourspace); void SetProfile(CMColourDevice *target,const char *name); void SetDefaultProfile(IS_TYPE colourspace,const char *name); void SetProofMode(enum CMProofMode mode); CMTransformFactory *GetTransformFactory(); // path handling - we override these functions from the SearchPathHandler // so we can invalidate the ProfileInfo list when the path changes. virtual void AddPath(const char *path); virtual void RemovePath(const char *path); virtual void ClearPaths(); virtual char *SearchPaths(const char *path); virtual const char *GetNextFilename(const char *prev); ProfileInfo *GetFirstProfileInfo(); ProfileInfo *GetProfileInfo(int i); int GetProfileInfoCount(); ProfileInfo *FindProfileInfo(const char *fn); int GetIntentCount(); const char *GetIntentName(LCMSWrapper_Intent intent); const char *GetIntentDescription(LCMSWrapper_Intent intent); protected: static ConfigTemplate Template[]; void BuildProfileInfoList(); void FlushProfileInfoList(); ProfileInfo *first; void GetProfileFromDisplay(); #ifdef WIN32 char displayprofilename[MAX_PATH]; #else Display *xdisplay; unsigned char *proffromdisplay; #endif long proffromdisplay_size; SearchPathIterator spiter; friend class ProfileInfo; }; class CMTransformFactoryNode { public: CMTransformFactoryNode(CMTransformFactory *header,CMSTransform *transform,MD5Digest &d1,MD5Digest &d2,LCMSWrapper_Intent intent,bool proof=false); ~CMTransformFactoryNode(); protected: CMTransformFactory *header; CMTransformFactoryNode *prev,*next; CMSTransform *transform; MD5Digest digest1; MD5Digest digest2; LCMSWrapper_Intent intent; bool proof; friend class CMTransformFactory; }; class CMTransformFactory { public: CMTransformFactory(ProfileManager &cm); ~CMTransformFactory(); CMSTransform *GetTransform(enum CMColourDevice target,CMSProfile *srcprofile,LCMSWrapper_Intent intent=LCMSWRAPPER_INTENT_DEFAULT); CMSTransform *GetTransform(CMSProfile *targetprofile,CMSProfile *srcprofile,LCMSWrapper_Intent intent=LCMSWRAPPER_INTENT_DEFAULT); CMSTransform *GetTransform(enum CMColourDevice target,ImageSource *src,LCMSWrapper_Intent intent=LCMSWRAPPER_INTENT_DEFAULT); CMSTransform *GetTransform(enum CMColourDevice target,IS_TYPE type,LCMSWrapper_Intent intent=LCMSWRAPPER_INTENT_DEFAULT); CMSTransform *GetTransform(CMSProfile *destprofile,CMSProfile *srcprofile,CMSProfile *proofprofile,LCMSWrapper_Intent intent=LCMSWRAPPER_INTENT_DEFAULT,int displayintent=LCMSWRAPPER_INTENT_DEFAULT); CMSTransform *Search(MD5Digest *srcdigest,MD5Digest *dstdigest,LCMSWrapper_Intent intent,bool proof=0); void Flush(); protected: ProfileManager &manager; CMTransformFactoryNode *first; friend class CMTransformFactoryNode; }; class ProfileInfo { public: ProfileInfo(ProfileManager &pm,const char *filename); ~ProfileInfo(); ProfileInfo *Next(); const char *GetFilename(); const char *GetDescription(); IS_TYPE GetColourSpace(); bool IsDeviceLink(); protected: void GetInfo(); ProfileManager &profilemanager; ProfileInfo *next,*prev; char *filename; bool iscached; char *description; IS_TYPE colourspace; bool isdevicelink; friend class ProfileManager; }; #endif photoprint-0.4.2-pre2/profilemanager/Makefile.in0000644000175000017500000003641611400237522016560 00000000000000# Makefile.in generated by automake 1.10.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 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@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@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 = profilemanager DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/scripts/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libprofilemanager_la_LIBADD = am_libprofilemanager_la_OBJECTS = lcmswrapper.lo profilemanager.lo \ profileselector.lo intentselector.lo ciesupport.lo libprofilemanager_la_OBJECTS = $(am_libprofilemanager_la_OBJECTS) libprofilemanager_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(libprofilemanager_la_LDFLAGS) $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/scripts/depcomp am__depfiles_maybe = depfiles CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) CXXLD = $(CXX) CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ SOURCES = $(libprofilemanager_la_SOURCES) DIST_SOURCES = $(libprofilemanager_la_SOURCES) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DSYMUTIL = @DSYMUTIL@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ GDKPIXBUF2_CFLAGS = @GDKPIXBUF2_CFLAGS@ GDKPIXBUF2_LIBS = @GDKPIXBUF2_LIBS@ GETOPT_LIBS = @GETOPT_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIB2_CFLAGS = @GLIB2_CFLAGS@ GLIB2_LIBS = @GLIB2_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GP_CFLAGS = @GP_CFLAGS@ GP_LIBS = @GP_LIBS@ GREP = @GREP@ GTHREAD_CFLAGS = @GTHREAD_CFLAGS@ GTHREAD_LIBS = @GTHREAD_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ JPEG_LIBS = @JPEG_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ LCMS_LIBS = @LCMS_LIBS@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBM_LIBS = @LIBM_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NMEDIT = @NMEDIT@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ POSUB = @POSUB@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ TIFF_LIBS = @TIFF_LIBS@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ 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@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ 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 = $(datadir)/locale localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CXXFLAGS = -DLOCALEDIR=\"$(localedir)\" -Wall -I../imagesource/ -I../support/ $(LCMS_CFLAGS) $(GTK2_CFLAGS) noinst_LTLIBRARIES = libprofilemanager.la libprofilemanager_la_SOURCES = \ lcmswrapper.cpp \ lcmswrapper.h \ profilemanager.cpp \ profilemanager.h \ profileselector.cpp \ profileselector.h \ intentselector.cpp \ intentselector.h \ ciesupport.cpp \ ciesupport.h libprofilemanager_la_LDFLAGS = -static all: all-am .SUFFIXES: .SUFFIXES: .cpp .lo .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 \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign profilemanager/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign profilemanager/Makefile .PRECIOUS: 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 clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libprofilemanager.la: $(libprofilemanager_la_OBJECTS) $(libprofilemanager_la_DEPENDENCIES) $(libprofilemanager_la_LINK) $(libprofilemanager_la_OBJECTS) $(libprofilemanager_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ciesupport.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/intentselector.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcmswrapper.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/profilemanager.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/profileselector.Plo@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here 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 $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$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: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: 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: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_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-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-dvi: install-dvi-am 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 installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ 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 mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am # 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: photoprint-0.4.2-pre2/profilemanager/ciesupport.h0000644000175000017500000000154211243750446017063 00000000000000#ifndef CIESUPPORT_H #define CIESUPPORT_H #include // Base types for handling XYZ and CIEL*ab values. class XYZValue { public: XYZValue() : X(0),Y(0),Z(0) {} XYZValue(double X,double Y,double Z) : X(X),Y(Y),Z(Z) {} ~XYZValue() {} double X,Y,Z; }; extern XYZValue D50ReferenceWhite; extern XYZValue D65ReferenceWhite; class LabValue { public: LabValue(); LabValue(XYZValue &xyz,XYZValue &refwhite=D50ReferenceWhite); LabValue(const LabValue &lab); LabValue(double L, double a, double b); LabValue operator-(const LabValue &other); LabValue &operator-=(const LabValue &other); LabValue &operator=(const LabValue &other); double Magnitude(); // sqrt(L*L + a*a + b*b); double dE(const LabValue &other); // Euclidean distance between this and other double L,a,b; friend std::ostream& operator<<(std::ostream &s,LabValue &l); }; #endif photoprint-0.4.2-pre2/profilemanager/intentselector.h0000644000175000017500000000243511076423574017735 00000000000000#ifndef __INTENTSELECTOR_H__ #define __INTENTSELECTOR_H__ #include #include #include #include #include #include "profilemanager.h" G_BEGIN_DECLS #define INTENTSELECTOR_TYPE (intentselector_get_type()) #define INTENTSELECTOR(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), INTENTSELECTOR_TYPE, IntentSelector)) #define INTENTSELECTOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), INTENTSELECTOR_TYPE, IntentSelectorClass)) #define IS_INTENTSELECTOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), INTENTSELECTOR_TYPE)) #define IS_INTENTSELECTOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), INTENTSELECTOR_TYPE)) typedef struct _IntentSelector IntentSelector; typedef struct _IntentSelectorClass IntentSelectorClass; struct _IntentSelector { GtkHBox box; GtkWidget *optionmenu; GtkWidget *menu; ProfileManager *pm; GtkTooltips *tips; }; struct _IntentSelectorClass { GtkHBoxClass parent_class; void (*changed)(IntentSelector *combo); }; GType intentselector_get_type (void); GtkWidget* intentselector_new (ProfileManager *pm); LCMSWrapper_Intent intentselector_getintent(IntentSelector *c); void intentselector_setintent(IntentSelector *c,LCMSWrapper_Intent intent); G_END_DECLS #endif /* __INTENTSELECTOR_H__ */ photoprint-0.4.2-pre2/profilemanager/lcmswrapper.cpp0000644000175000017500000003735511367264577017607 00000000000000/* * lcmswrapper.cpp - encapsulates typical "user" functions of LittleCMS, * providing a Profile and Transform class * * Copyright (c) 2004-2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * * 2005-05-01: No longer depends on ini.h - the neccesary data for generating * rough-cast profiles is now encapsulated in suitable classes. * 2006-09-04: Added filename, since LCMS doesn't provide pointer to raw data * which is needed for TIFF embedding... * * TODO: pixel type, support Lab, XYZ, etc. * */ #include #include #include "../support/debug.h" #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) #include "imagesource.h" #include "lcmswrapper.h" using namespace std; CMSRGBPrimaries CMSPrimaries_Rec709(.64,.33,.3,.6,.15,.06); CMSRGBPrimaries CMSPrimaries_Adobe(0.64, 0.33,0.21, 0.71,0.15, 0.06); CMSRGBPrimaries CMSPrimaries_NTSC(0.67, 0.33, 0.21, 0.71,0.14, 0.08); CMSRGBPrimaries CMSPrimaries_EBU(0.64, 0.33, 0.29, 0.60, 0.15, 0.06); CMSRGBPrimaries CMSPrimaries_SMPTE(0.63, 0.34, 0.31, 0.595, 0.155, 0.070); CMSRGBPrimaries CMSPrimaries_HDTV(0.670, 0.330, 0.210, 0.710,0.150, 0.060); CMSRGBPrimaries CMSPrimaries_CIE(0.7355,0.2645,0.2658,0.7243,0.1669,0.0085); CMSProfile::CMSProfile(const char *fn) : md5(NULL), generated(false), filename(NULL), buffer(NULL), buflen(0) { if(!fn) throw "NULL profile filename provided"; cmsErrorAction(LCMS_ERROR_SHOW); filename=strdup(fn); if(!(prof=cmsOpenProfileFromFile(filename,"r"))) throw "Can't open profile"; CalcMD5(); } void CMSProfile::CalcMD5() { if(generated) { Debug[TRACE] << "Saving profile to RAM for MD5 calculation." << endl; size_t plen=0; _cmsSaveProfileToMem(prof,NULL,&plen); if(plen>0) { Debug[TRACE] << "Plen = " << plen << endl; buflen=plen; buffer=(char *)malloc(buflen); if(_cmsSaveProfileToMem(prof,buffer,&plen)) { Debug[TRACE] << "Saved successfully" << endl; md5=new MD5Digest(buffer+sizeof(icHeader),buflen-sizeof(icHeader)); } } } else if(filename) { ifstream f(filename); f.seekg(0,ios::end); int filelen=f.tellg(); f.seekg(0); char *data=(char *)malloc(filelen); f.read((char *)data,filelen); f.close(); md5=new MD5Digest(data+sizeof(icHeader),filelen-sizeof(icHeader)); free(data); } else { md5=new MD5Digest(buffer+sizeof(icHeader),buflen-sizeof(icHeader)); } } CMSProfile::CMSProfile(CMSRGBPrimaries &primaries,CMSRGBGamma &gamma,CMSWhitePoint &whitepoint) : md5(NULL), generated(true), filename(NULL), buffer(NULL), buflen(0) { if(!(prof=cmsCreateRGBProfile(&whitepoint.whitepoint,&primaries,gamma.gammatables))) throw "Can't create virtual RGB profile"; CalcMD5(); } CMSProfile::CMSProfile(CMSGamma &gamma,CMSWhitePoint &whitepoint) : md5(NULL), generated(true), filename(NULL), buffer(NULL), buflen(0) { if(!(prof=cmsCreateGrayProfile(&whitepoint.whitepoint,gamma.GetGammaTable()))) throw "Can't create virtual Grey profile"; CalcMD5(); } CMSProfile::CMSProfile(CMSWhitePoint &whitepoint) : md5(NULL), generated(true), filename(NULL), buffer(NULL), buflen(0) { if(!(prof=cmsCreateLabProfile(&whitepoint.whitepoint))) throw "Can't create virtual LAB profile"; CalcMD5(); } CMSProfile::CMSProfile(char *srcbuf,int length) : md5(NULL), generated(false), filename(NULL), buffer(NULL), buflen(0) { buffer=(char *)malloc(length); buflen=length; memcpy(buffer,srcbuf,buflen); if(!(prof=cmsOpenProfileFromMem(buffer,buflen))) throw "Can't open profile"; CalcMD5(); } CMSProfile::CMSProfile() : md5(NULL), generated(true), filename(NULL), buffer(NULL), buflen(0) { if(!(prof=cmsCreate_sRGBProfile())) throw "Can't create virtual sRGB profile"; CalcMD5(); } CMSProfile::CMSProfile(const CMSProfile &src) : md5(NULL), generated(src.generated), filename(NULL), buffer(NULL), buflen(0) { Debug[TRACE] << "In CMSProfile Copy Constructor" << endl; if(src.filename) { filename=strdup(src.filename); if(!(prof=cmsOpenProfileFromFile(filename,"r"))) throw "Can't open profile"; } else { buffer=(char *)malloc(src.buflen); buflen=src.buflen; memcpy(buffer,src.buffer,src.buflen); if(!(prof=cmsOpenProfileFromMem(buffer,buflen))) throw "Can't open profile"; } md5=new MD5Digest(*src.md5); } CMSProfile::~CMSProfile() { if(filename) free(filename); if(prof) cmsCloseProfile(prof); if(buffer) free(buffer); if(md5) delete md5; } bool CMSProfile::operator==(const CMSProfile &other) { if(md5&&other.md5) { return(*md5==*other.md5); } else return(false); } bool CMSProfile::IsDeviceLink() { return(cmsGetDeviceClass(prof) == icSigLinkClass); } bool CMSProfile::IsV4() { Debug[TRACE] << "Profile version: " << cmsGetProfileICCversion(prof) << endl; return(cmsGetProfileICCversion(prof) >= 0x04000000L); } enum IS_TYPE CMSProfile::GetColourSpace() { icColorSpaceSignature sig=cmsGetColorSpace(prof); switch(sig) { case icSigGrayData: return(IS_TYPE_GREY); break; case icSigRgbData: return(IS_TYPE_RGB); break; case icSigCmykData: return(IS_TYPE_CMYK); break; case icSigLabData: return(IS_TYPE_LAB); break; default: return(IS_TYPE_NULL); break; } } enum IS_TYPE CMSProfile::GetDeviceLinkOutputSpace() { if(!IsDeviceLink()) throw "GetDeviceLinkOutputSpace() can only be used on DeviceLink profiles!"; icColorSpaceSignature sig=cmsGetPCS(prof); switch(sig) { case icSigGrayData: return(IS_TYPE_GREY); break; case icSigRgbData: return(IS_TYPE_RGB); break; case icSigCmykData: return(IS_TYPE_CMYK); break; case icSigLabData: return(IS_TYPE_LAB); break; default: return(IS_TYPE_NULL); break; } } const char *CMSProfile::GetName() { const char *txt=cmsTakeProductName(prof); if(txt) return(txt); else return("unknown"); } const char *CMSProfile::GetManufacturer() { const char *txt=cmsTakeManufacturer(prof); if(txt) return(txt); else return("unknown"); } const char *CMSProfile::GetModel() { const char *txt=cmsTakeModel(prof); if(txt) return(txt); else return("unknown"); } const char *CMSProfile::GetDescription() { const char *txt=cmsTakeProductDesc(prof); if(txt) return(txt); else return("unknown"); } const char *CMSProfile::GetInfo() { const char *txt=cmsTakeProductInfo(prof); if(txt) return(txt); else return("unknown"); } const char *CMSProfile::GetCopyright() { const char *txt=cmsTakeCopyright(prof); if(txt) return(txt); else return("unknown"); } MD5Digest *CMSProfile::GetMD5() { return(md5); } const char *CMSProfile::GetFilename() { return(filename); } bool CMSProfile::Save(const char *outfn) { try { // (Since we now save a generated profile to memory so we can calc an MD5 hash // we can simply save that, like an embedded profile, if we need to. // if(generated) // If profile was generated on the fly, then we use LCMS function // { // to save it; // return(_cmsSaveProfile(prof,outfn)); // } // else // { if(filename) // If profile was loaded from disk, we need to load it again { ifstream f(filename); f.exceptions(fstream::badbit); f.seekg(0,ios::end); buflen=f.tellg(); f.seekg(0); buffer=(char *)malloc(buflen); f.read((char *)buffer,buflen); f.close(); } if(outfn) { Debug[TRACE] << "Saving buffer: " << long(buffer) << ", length: " << buflen << endl; ofstream f(outfn,ios::out|ios::binary); f.write(buffer,buflen); f.close(); } if(filename) // Did we load the profile from disk? Need to free buffer if so { free(buffer); buffer=NULL; buflen=0; } // } } catch(fstream::failure e) { return(false); } return(true); } std::ostream& operator<<(std::ostream &s,CMSProfile &cp) { return(s << cp.GetDescription()); } CMSTransform::CMSTransform() { inputtype=IS_TYPE_NULL; outputtype=IS_TYPE_NULL; } CMSTransform::CMSTransform(CMSProfile *in,CMSProfile *out,LCMSWrapper_Intent intent) { inputtype=in->GetColourSpace(); outputtype=out->GetColourSpace(); MakeTransform(in,out,intent); } CMSTransform::CMSTransform(CMSProfile *devicelink,LCMSWrapper_Intent intent) { inputtype=devicelink->GetColourSpace(); outputtype=devicelink->GetDeviceLinkOutputSpace(); MakeTransform(devicelink,NULL,intent); } CMSTransform::CMSTransform(CMSProfile *profiles[],int profilecount,LCMSWrapper_Intent intent) { inputtype=profiles[0]->GetColourSpace(); if(profiles[profilecount-1]->IsDeviceLink()) outputtype=profiles[profilecount-1]->GetDeviceLinkOutputSpace(); else outputtype=profiles[profilecount-1]->GetColourSpace(); cmsHPROFILE *p; if((p=(cmsHPROFILE *)malloc(sizeof(cmsHPROFILE)*profilecount))) { for(int i=0;iprof; } int it,ot; switch(inputtype) { case IS_TYPE_GREY: it=TYPE_GRAY_16_REV; break; case IS_TYPE_RGB: it=TYPE_RGB_16; break; case IS_TYPE_CMYK: it=TYPE_CMYK_16; break; case IS_TYPE_LAB: it=TYPE_Lab_16; break; default: throw "Unsupported colour space (input)"; break; } switch(outputtype) { case IS_TYPE_GREY: ot=TYPE_GRAY_16_REV; break; case IS_TYPE_RGB: ot=TYPE_RGB_16; break; case IS_TYPE_CMYK: ot=TYPE_CMYK_16; break; case IS_TYPE_LAB: ot=TYPE_Lab_16; break; default: throw "Unsupported colour space (output)"; break; } transform = cmsCreateMultiprofileTransform(p,profilecount, it, ot, CMS_GetLCMSIntent(intent), CMS_GetLCMSFlags(intent)); free(p); } else throw "Can't create multi-profile transform"; } CMSTransform::~CMSTransform() { if(transform) cmsDeleteTransform(transform); } void CMSTransform::Transform(unsigned short *src,unsigned short *dst,int pixels) { cmsDoTransform(transform,src,dst,pixels); } IS_TYPE CMSTransform::GetInputColourSpace() { return(inputtype); } IS_TYPE CMSTransform::GetOutputColourSpace() { return(outputtype); } void CMSTransform::MakeTransform(CMSProfile *in,CMSProfile *out,LCMSWrapper_Intent intent) { int it,ot; switch(GetInputColourSpace()) { case IS_TYPE_GREY: it=TYPE_GRAY_16_REV; break; case IS_TYPE_RGB: it=TYPE_RGB_16; break; case IS_TYPE_CMYK: it=TYPE_CMYK_16; break; case IS_TYPE_LAB: it=TYPE_Lab_16; break; default: throw "Unsupported colour space (input)"; break; } switch(GetOutputColourSpace()) { case IS_TYPE_GREY: ot=TYPE_GRAY_16_REV; break; case IS_TYPE_RGB: ot=TYPE_RGB_16; break; case IS_TYPE_CMYK: ot=TYPE_CMYK_16; break; case IS_TYPE_LAB: ot=TYPE_Lab_16; break; default: throw "Unsupported colour space (output)"; break; } transform = cmsCreateTransform(in->prof, it, (out ? out->prof : NULL), ot, CMS_GetLCMSIntent(intent), CMS_GetLCMSFlags(intent)); } // FIXME - this will need to be updated if LCMS supports new intents at some point // in the future... static const char *intent_names[]= { N_("Perceptual"), N_("Relative Colorimetric"), N_("Relative Colorimetric with BPC"), N_("Saturation"), N_("Absolute Colorimetric") }; static const char *intent_descriptions[]= { N_("Aims for pleasing photographic results by preserving relationships between colours, and avoiding clipping of unattainable colours"), N_("Attempts to preserve the original colours, relative to white-point differences."), N_("Attempts to preserve the original colours, relative to white-point differences. Uses Black Point Compensation to avoid clipping of highlights and shadows."), N_("Attempts to provide brighter, more saturated colours, at the expense of colour relationships."), N_("Mimics the original colours (including white point) as closely as possible, for side-by-side comparisons. Clips unattainable colours.") }; static const int intent_lcmsintents[]= { INTENT_PERCEPTUAL, INTENT_RELATIVE_COLORIMETRIC, INTENT_RELATIVE_COLORIMETRIC, INTENT_SATURATION, INTENT_ABSOLUTE_COLORIMETRIC }; static const int intent_lcmsflags[]= { 0, 0, cmsFLAGS_BLACKPOINTCOMPENSATION, 0, 0 }; int CMS_GetIntentCount() { return(sizeof(intent_names)/sizeof(intent_names[0])); } const char *CMS_GetIntentName(int intent) { if(intent=0) return(gettext(intent_names[intent])); return(NULL); } const char *CMS_GetIntentDescription(int intent) { if(intent=0) return(gettext(intent_descriptions[intent])); return(NULL); } const int CMS_GetLCMSIntent(int intent) { if(intent=0) return(intent_lcmsintents[intent]); return(0); } const int CMS_GetLCMSFlags(int intent) { if(intent=0) return(intent_lcmsflags[intent]); return(0); } CMSProofingTransform::CMSProofingTransform(CMSProfile *in,CMSProfile *out,CMSProfile *proof,int proofintent,int viewintent) { inputtype=in->GetColourSpace(); if(out) outputtype=out->GetColourSpace(); else outputtype=in->GetDeviceLinkOutputSpace(); int it,ot; switch(inputtype) { case IS_TYPE_GREY: it=TYPE_GRAY_16_REV; break; case IS_TYPE_RGB: it=TYPE_RGB_16; break; case IS_TYPE_CMYK: it=TYPE_CMYK_16; break; case IS_TYPE_LAB: it=TYPE_Lab_16; break; default: throw "Unsupported colour space (input)"; break; } switch(outputtype) { case IS_TYPE_GREY: ot=TYPE_GRAY_16_REV; break; case IS_TYPE_RGB: ot=TYPE_RGB_16; break; case IS_TYPE_CMYK: ot=TYPE_CMYK_16; break; case IS_TYPE_LAB: ot=TYPE_Lab_16; break; default: throw "Unsupported colour space (output)"; break; } // if(in->GetFilename()) // Debug[TRACE] << "In: " << in->GetFilename() << endl; // Debug[TRACE] << "In: " << in->GetDescription() << endl; if(out) { // if(out->GetFilename()) // Debug[TRACE] << "Out: " << out->GetFilename() << endl; // Debug[TRACE] << "Out: " << out->GetDescription() << endl; } // if(proof->GetFilename()) // Debug[TRACE] << "Proof: " << proof->GetFilename() << endl; // Debug[TRACE] << "Proof: " << proof->GetDescription() << endl; // Debug[TRACE] << "Viewing intent: " << viewintent << endl; // Debug[TRACE] << "Rendering intent: " << proofintent << endl; transform = cmsCreateProofingTransform(in->prof, it, (out ? out->prof : NULL), ot, proof->prof, CMS_GetLCMSIntent(proofintent), CMS_GetLCMSIntent(viewintent), CMS_GetLCMSFlags(proofintent)|cmsFLAGS_SOFTPROOFING); } CMSProofingTransform::CMSProofingTransform(CMSProfile *devicelink,CMSProfile *proof,int proofintent,int viewintent) { inputtype=devicelink->GetColourSpace(); outputtype=devicelink->GetDeviceLinkOutputSpace(); int it,ot; switch(inputtype) { case IS_TYPE_GREY: it=TYPE_GRAY_16_REV; break; case IS_TYPE_RGB: it=TYPE_RGB_16; break; case IS_TYPE_CMYK: it=TYPE_CMYK_16; break; case IS_TYPE_LAB: it=TYPE_Lab_16; break; default: throw "Unsupported colour space (input)"; break; } switch(outputtype) { case IS_TYPE_GREY: ot=TYPE_GRAY_16_REV; break; case IS_TYPE_RGB: ot=TYPE_RGB_16; break; case IS_TYPE_CMYK: ot=TYPE_CMYK_16; break; case IS_TYPE_LAB: ot=TYPE_Lab_16; break; default: throw "Unsupported colour space (output)"; break; } // if(devicelink->GetFilename()) // Debug[TRACE] << "DeviceLink: " << devicelink->GetFilename() << endl; // Debug[TRACE] << "DeviceLink: " << devicelink->GetDescription() << endl; // if(proof->GetFilename()) // Debug[TRACE] << "Proof: " << proof->GetFilename() << endl; // Debug[TRACE] << "Proof: " << proof->GetDescription() << endl; // Debug[TRACE] << "Viewing intent: " << viewintent << endl; // Debug[TRACE] << "Rendering intent: " << proofintent << endl; transform = cmsCreateProofingTransform(devicelink->prof, it, NULL, ot, proof->prof, CMS_GetLCMSIntent(proofintent), CMS_GetLCMSIntent(viewintent), CMS_GetLCMSFlags(proofintent)|cmsFLAGS_SOFTPROOFING); } photoprint-0.4.2-pre2/profilemanager/lcmswrapper.h0000644000175000017500000001234011151555561017222 00000000000000/* * lcmswrapper.cpp - encapsulates typical "user" functions of LittleCMS, * providing a Profile and Transform class * * Copyright (c) 2004-2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * * TODO: Report pixel type, support Lab, XYZ, etc. * */ #ifndef LCMSWRAPPER_H #define LCMSWRAPPER_H #ifdef HAVE_CONFIG_H #ifndef VERSION #include "config.h" #endif #endif #include #include "md5.h" #include "imagesource_types.h" enum LCMSWrapper_Intent { LCMSWRAPPER_INTENT_DEFAULT=-1, LCMSWRAPPER_INTENT_PERCEPTUAL, LCMSWRAPPER_INTENT_RELATIVE_COLORIMETRIC, LCMSWRAPPER_INTENT_RELATIVE_COLORIMETRIC_BPC, LCMSWRAPPER_INTENT_SATURATION, LCMSWRAPPER_INTENT_ABSOLUTE_COLORIMETRIC, }; class CMSWhitePoint; class CMSRGBPrimaries; class CMSRGBGamma; class CMSGamma; class CMSProfile { public: CMSProfile(const char *filename); CMSProfile(char *buffer,int length); // Should remain valid for lifetime of CMSProfile CMSProfile(CMSRGBPrimaries &primaries,CMSRGBGamma &gamma,CMSWhitePoint &whitepoint); // Create virtual RGB profile CMSProfile(CMSGamma &gamma,CMSWhitePoint &whitepoint); // Create virtual Grey profile CMSProfile(CMSWhitePoint &whitepoint); // Create a virtual LAB profile CMSProfile(); // Create a virtual sRGB profile CMSProfile(const CMSProfile &src); // Copy constructor ~CMSProfile(); enum IS_TYPE GetColourSpace(); enum IS_TYPE GetDeviceLinkOutputSpace(); bool IsDeviceLink(); bool IsV4(); const char *GetName(); const char *GetManufacturer(); const char *GetModel(); const char *GetDescription(); const char *GetInfo(); const char *GetCopyright(); const char *GetFilename(); MD5Digest *GetMD5(); bool Save(const char *filename); bool operator==(const CMSProfile &other); protected: void CalcMD5(); MD5Digest *md5; cmsHPROFILE prof; bool generated; // Was this profile generated on the fly? char *filename; // Only used if profile is on disk. char *buffer; // Only used if profile int buflen; // is loaded from memory friend class CMSTransform; friend class CMSProofingTransform; friend std::ostream& operator<<(std::ostream &s,CMSProfile &sp); }; class CMSTransform { public: CMSTransform(); CMSTransform(CMSProfile *in,CMSProfile *out,LCMSWrapper_Intent intent=LCMSWRAPPER_INTENT_PERCEPTUAL); CMSTransform(CMSProfile *devicelink,LCMSWrapper_Intent intent=LCMSWRAPPER_INTENT_PERCEPTUAL); CMSTransform(CMSProfile *profiles[],int profilecount,LCMSWrapper_Intent intent=LCMSWRAPPER_INTENT_PERCEPTUAL); virtual ~CMSTransform(); virtual void Transform(unsigned short *src,unsigned short *dst,int pixels); enum IS_TYPE GetInputColourSpace(); enum IS_TYPE GetOutputColourSpace(); protected: virtual void MakeTransform(CMSProfile *in,CMSProfile *out,LCMSWrapper_Intent intent); enum IS_TYPE inputtype; enum IS_TYPE outputtype; cmsHTRANSFORM transform; }; class CMSProofingTransform : public CMSTransform { public: CMSProofingTransform(CMSProfile *in,CMSProfile *out,CMSProfile *proof,int proofintent=INTENT_PERCEPTUAL,int viewintent=INTENT_ABSOLUTE_COLORIMETRIC); CMSProofingTransform(CMSProfile *devicelink,CMSProfile *proof,int proofintent=INTENT_PERCEPTUAL,int viewintent=INTENT_ABSOLUTE_COLORIMETRIC); }; class CMSWhitePoint { public: CMSWhitePoint(int degk) { cmsWhitePointFromTemp(degk,&whitepoint); } protected: cmsCIExyY whitepoint; friend class CMSProfile; }; class CMSRGBPrimaries : public cmsCIExyYTRIPLE { public: CMSRGBPrimaries() { } CMSRGBPrimaries(float rx,float ry,float gx,float gy,float bx,float by) { Red.x=rx; Red.y=ry; Red.Y=1.0; Green.x=gx; Green.y=gy; Green.Y=1.0; Blue.x=bx; Blue.y=by; Blue.Y=1.0; } protected: friend class CMSProfile; }; class CMSGamma { public: CMSGamma(float gamma) { gammatable=cmsBuildGamma(256,gamma); } ~CMSGamma() { cmsFreeGamma(gammatable); } LPGAMMATABLE GetGammaTable() { return(gammatable); } protected: LPGAMMATABLE gammatable; friend class CMSProfile; friend class CMSRGBGamma; }; class CMSRGBGamma { public: CMSRGBGamma(float rgamma,float ggamma,float bgamma) : redgamma(rgamma),greengamma(ggamma),bluegamma(bgamma) { gammatables[0]=redgamma.GetGammaTable(); gammatables[1]=greengamma.GetGammaTable(); gammatables[2]=bluegamma.GetGammaTable(); } CMSRGBGamma(float gamma) : redgamma(gamma),greengamma(gamma),bluegamma(gamma) { gammatables[0]=redgamma.GetGammaTable(); gammatables[1]=greengamma.GetGammaTable(); gammatables[2]=bluegamma.GetGammaTable(); } protected: CMSGamma redgamma,greengamma,bluegamma; LPGAMMATABLE gammatables[3]; friend class CMSProfile; }; extern CMSRGBPrimaries CMSPrimaries_Rec709; extern CMSRGBPrimaries CMSPrimaries_Adobe; extern CMSRGBPrimaries CMSPrimaries_NTSC; extern CMSRGBPrimaries CMSPrimaries_EBU; extern CMSRGBPrimaries CMSPrimaries_SMPTE; extern CMSRGBPrimaries CMSPrimaries_HDTV; extern CMSRGBPrimaries CMSPrimaries_CIE; int CMS_GetIntentCount(); const char *CMS_GetIntentName(int intent); const char *CMS_GetIntentDescription(int intent); const int CMS_GetLCMSIntent(int intent); const int CMS_GetLCMSFlags(int intent); #endif photoprint-0.4.2-pre2/profilemanager/profilemanager.cpp0000644000175000017500000005576311342611432020221 00000000000000#include #ifdef WIN32 #include #else #include #endif #include "../support/debug.h" #include "profilemanager.h" #include "searchpathdbhandler.h" #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "gettext.h" #define _(x) gettext(x) using namespace std; // ProfileManager ConfigTemplate ProfileManager::Template[]= { ConfigTemplate("DefaultRGBProfile",BUILTINSRGB_ESCAPESTRING), ConfigTemplate("DefaultRGBProfileActive",int(1)), ConfigTemplate("DefaultCMYKProfile","USWebCoatedSWOP.icc"), ConfigTemplate("DefaultCMYKProfileActive",int(0)), ConfigTemplate("DefaultGreyProfile",""), ConfigTemplate("DefaultGreyProfileActive",int(0)), ConfigTemplate("PrinterProfile",""), ConfigTemplate("PrinterProfileActive",int(0)), ConfigTemplate("ExportProfile",""), ConfigTemplate("ExportProfileActive",int(0)), ConfigTemplate("MonitorProfile",SYSTEMMONITORPROFILE_ESCAPESTRING), ConfigTemplate("MonitorProfileActive",int(1)), ConfigTemplate("RenderingIntent",int(LCMSWRAPPER_INTENT_PERCEPTUAL)), ConfigTemplate("ProofMode",int(CM_PROOFMODE_NONE)), #ifdef WIN32 ConfigTemplate("ProfilePath","c:\\winnt\\system32\\spool\\drivers\\color\\;c:\\windows\\system32\\spool\\drivers\\color"), #else ConfigTemplate("ProfilePath","/usr/share/color/icc:/usr/local/share/color/icc/:$HOME/.color/icc"), #endif ConfigTemplate() }; ProfileManager::ProfileManager(ConfigFile *inifile,const char *section) : ConfigDB(Template), SearchPathHandler(), first(NULL), proffromdisplay_size(0), spiter(*this) { #ifndef WIN32 xdisplay = XOpenDisplay(NULL); proffromdisplay=NULL; #endif new SearchPathHandlerDBHandler(inifile,section,this,this,"ProfilePath"); AddPath(FindString("ProfilePath")); GetProfileFromDisplay(); if(proffromdisplay_size) SetInt("MonitorProfileActive",1); } ProfileManager::~ProfileManager() { #ifndef WIN32 if(proffromdisplay) XFree(proffromdisplay); proffromdisplay=NULL; XCloseDisplay (xdisplay); #endif ProfileInfo *pi; while((pi=first)) delete first; } CMSProfile *ProfileManager::GetProfile(const char *name) { CMSProfile *result=NULL; if(name && strlen(name)) { if(strcmp(name,SYSTEMMONITORPROFILE_ESCAPESTRING)==0 && proffromdisplay_size) { #ifdef WIN32 result=new CMSProfile(displayprofilename); #else result=new CMSProfile((char *)proffromdisplay,proffromdisplay_size); #endif if(!result) { Debug[TRACE] << "Couldn't open monitor profile - falling back to builtin sRGB" << endl; result=new CMSProfile(); } } else if(strcmp(name,BUILTINSRGB_ESCAPESTRING)==0) { result=new CMSProfile(); } else { char *fn=SearchPaths(name); if(fn && strlen(fn)) { try { result=new CMSProfile(fn); } catch(const char *err) { Debug[ERROR] << err << endl; result=NULL; } } if(fn) free(fn); } } return(result); } CMSProfile *ProfileManager::GetProfile(enum CMColourDevice target) { const char *profilename=NULL; switch(target) { case CM_COLOURDEVICE_DISPLAY: if(FindInt("MonitorProfileActive")) profilename=FindString("MonitorProfile"); break; case CM_COLOURDEVICE_PRINTERPROOF: if(FindInt("MonitorProfileActive")) profilename=FindString("MonitorProfile"); break; case CM_COLOURDEVICE_EXPORT: if(FindInt("ExportProfileActive")) profilename=FindString("ExportProfile"); break; case CM_COLOURDEVICE_PRINTER: if(FindInt("PrinterProfileActive")) profilename=FindString("PrinterProfile"); break; case CM_COLOURDEVICE_DEFAULTGREY: if(FindInt("DefaultGreyProfileActive")) profilename=FindString("DefaultGreyProfile"); break; case CM_COLOURDEVICE_DEFAULTRGB: if(FindInt("DefaultRGBProfileActive")) profilename=FindString("DefaultRGBProfile"); break; case CM_COLOURDEVICE_DEFAULTCMYK: if(FindInt("DefaultCMYKProfileActive")) profilename=FindString("DefaultCMYKProfile"); break; default: break; } if(profilename) return(GetProfile(profilename)); else return(NULL); } CMSProfile *ProfileManager::GetDefaultProfile(IS_TYPE colourspace) { const char *profilename=NULL; switch(STRIP_ALPHA(colourspace)) { case IS_TYPE_GREY: if(FindInt("DefaultGreyProfileActive")) profilename=FindString("DefaultGreyProfile"); break; case IS_TYPE_RGB: if(FindInt("DefaultRGBProfileActive")) profilename=FindString("DefaultRGBProfile"); break; case IS_TYPE_CMYK: if(FindInt("DefaultCMYKProfileActive")) profilename=FindString("DefaultCMYKProfile"); break; default: throw "Image colourspace not yet handled..."; break; } if(profilename) return(GetProfile(profilename)); else return(NULL); } void ProfileManager::SetProofMode(enum CMProofMode mode) { if(mode!=CM_PROOFMODE_NONE) { const char *err=NULL; CMSProfile *t=NULL; if((t=GetProfile(CM_COLOURDEVICE_PRINTER))) delete t; else err=_("Can't do proofing without a valid Printer profile!"); if((t=GetProfile(CM_COLOURDEVICE_DISPLAY))) delete t; else err=_("Can't do proofing without a valid Monitor profile!"); if((t=GetProfile(CM_COLOURDEVICE_DEFAULTRGB))) delete t; else err=_("Can't do proofing without a valid Default RGB profile!"); if(err) throw err; } SetInt("ProofMode",mode); } CMTransformFactory *ProfileManager::GetTransformFactory() { return(new CMTransformFactory(*this)); } // CMTransformFactory // CMTransformFactoryNode CMTransformFactoryNode::CMTransformFactoryNode(CMTransformFactory *header,CMSTransform *transform,MD5Digest &d1,MD5Digest &d2,LCMSWrapper_Intent intent,bool proof) : header(header), prev(NULL), next(NULL), transform(transform), digest1(d1), digest2(d2), intent(intent), proof(proof) { prev=header->first; if((prev=header->first)) { while(prev->next) prev=prev->next; prev->next=this; } else header->first=this; } CMTransformFactoryNode::~CMTransformFactoryNode() { if(next) next->prev=prev; if(prev) prev->next=next; else header->first=next; if(transform) delete transform; } // CMTransformFactory proper CMTransformFactory::CMTransformFactory(ProfileManager &pm) : manager(pm), first(NULL) { } CMTransformFactory::~CMTransformFactory() { while(first) delete first; } CMSTransform *CMTransformFactory::Search(MD5Digest *srcdigest,MD5Digest *dstdigest,LCMSWrapper_Intent intent,bool proof) { CMTransformFactoryNode *tfn=first; while(tfn) { Debug[TRACE] << "Evaluating transform from " << tfn->digest1.GetPrintableDigest() << " to " << tfn->digest2.GetPrintableDigest() << " and intent " << tfn->intent << endl; if((*srcdigest==tfn->digest1)&&(*dstdigest==tfn->digest2)&&(intent==tfn->intent)&&(proof==tfn->proof)) return(tfn->transform); tfn=tfn->next; } return(NULL); } CMSTransform *CMTransformFactory::GetTransform(enum CMColourDevice target,IS_TYPE type,LCMSWrapper_Intent intent) { Debug[TRACE] << "TransformFactory getting default profile for image of type: " << type << endl; CMSProfile *srcprofile=manager.GetDefaultProfile(type); if(srcprofile) Debug[TRACE] << "Have source profile with input space" << srcprofile->GetColourSpace() << endl; else Debug[TRACE] << "Unable to open default profile" << endl; CMSTransform *t=NULL; try { t=GetTransform(target,srcprofile,intent); } catch(const char *err) { } delete srcprofile; return(t); } CMSTransform *CMTransformFactory::GetTransform(enum CMColourDevice target,ImageSource *src,LCMSWrapper_Intent intent) { Debug[TRACE] << "TransformFactory trying embedded profile..." << endl; CMSProfile *srcprofile=src->GetEmbeddedProfile(); if(srcprofile) return(GetTransform(target,srcprofile,intent)); else return(GetTransform(target,IS_TYPE(STRIP_ALPHA(src->type)),intent)); } CMSTransform *CMTransformFactory::GetTransform(enum CMColourDevice target,CMSProfile *srcprofile,LCMSWrapper_Intent intent) { CMSTransform *result=NULL; // If a NULL profile is supplied, we currently bail out. // Theoretically we could continue if the target's profile is a DeviceLink, // or we could assume a colourspace to match the target's profile, // and fall back gracefully. if(!srcprofile) return(NULL); Debug[TRACE] << "TransformFactory using source profile of type: " << srcprofile->GetColourSpace() << endl; CMSProfile *destprofile=manager.GetProfile(target); if(target==CM_COLOURDEVICE_PRINTERPROOF) { CMSProfile *proofprofile=NULL; switch(manager.FindInt("ProofMode")) { case CM_PROOFMODE_NONE: // Debug[TRACE] << "Proofmode: None - using normal transform" << endl; result=GetTransform(destprofile,srcprofile,intent); break; case CM_PROOFMODE_SIMULATEPRINT: // Debug[TRACE] << "Proofmode: Simulate Printer - using abs.col. proof transform" << endl; proofprofile=manager.GetProfile(CM_COLOURDEVICE_PRINTER); if(proofprofile) result=GetTransform(destprofile,srcprofile,proofprofile,intent,LCMSWRAPPER_INTENT_ABSOLUTE_COLORIMETRIC); break; case CM_PROOFMODE_SIMULATEPRINTADAPTWHITE: // Debug[TRACE] << "Proofmode: Simulate Printer, Adapt White - using rel.col. proof transform" << endl; proofprofile=manager.GetProfile(CM_COLOURDEVICE_PRINTER); if(proofprofile) result=GetTransform(destprofile,srcprofile,proofprofile,intent,LCMSWRAPPER_INTENT_RELATIVE_COLORIMETRIC); break; default: break; } if(proofprofile) delete proofprofile; } else result=GetTransform(destprofile,srcprofile,intent); delete destprofile; return(result); } CMSTransform *CMTransformFactory::GetTransform(CMSProfile *destprofile,CMSProfile *srcprofile,LCMSWrapper_Intent intent) { // No point whatever in continuing without an output device profile... if(!destprofile) return(NULL); if(srcprofile) Debug[TRACE] << "TransformFactory using source profile of type: " << srcprofile->GetColourSpace() << endl; else Debug[TRACE] << "TransformFactory - no source profile present." << endl; CMSTransform *transform=NULL; if(intent==LCMSWRAPPER_INTENT_DEFAULT) intent=LCMSWrapper_Intent(manager.FindInt("RenderingIntent")); if(intent==LCMSWRAPPER_INTENT_DEFAULT) intent=LCMSWRAPPER_INTENT_PERCEPTUAL; // Debug[TRACE] << "Using intent: " << intent << endl; // We use MD5 digests to compare profiles for equality. MD5Digest *d1,*d2; d2=destprofile->GetMD5(); const char *fn=destprofile->GetFilename(); Debug[TRACE] << "Destination profile (" << (fn ? fn : "") << ")" << "has hash: " << d2->GetPrintableDigest() << endl; if(destprofile->IsDeviceLink()) { Debug[TRACE] << "Device link profile detected" << endl; // Device link profiles make life awkward if we have to use a source profile // (which we must do in the case of an image having an embedded profile). // What we do here is convert from the source profile to the appropriate // colour space's default profile, and then apply the devicelink. CMSProfile *defprofile=NULL; if(srcprofile) { // Need to use default profile for the devicelink's *input* - // thus taking care of RGB -> CMYK devlinks used with CMYK input files. defprofile=manager.GetDefaultProfile(destprofile->GetColourSpace()); } // If we have both source and default profiles, and they're not equal, // create a multi-profile transform: src -> default -> devicelink. if((srcprofile)&&(defprofile)&&(*srcprofile->GetMD5()!=*defprofile->GetMD5())) { Debug[TRACE] << "Source and default profiles don't match - building transform chain..." << endl; CMSProfile *profiles[3]; profiles[0]=srcprofile; profiles[1]=defprofile; profiles[2]=destprofile; d1=srcprofile->GetMD5(); const char *fn=srcprofile->GetFilename(); Debug[TRACE] << "Source profile (" << (fn ? fn : "") << ")" << "has hash: " << d1->GetPrintableDigest() << endl; // Search for an existing transform by source / devicelink MD5s... transform=Search(d1,d2,intent); if(!transform) { Debug[TRACE] << "No suitable cached transform found - creating a new one..." << endl; transform=new CMSTransform(profiles,3,intent); new CMTransformFactoryNode(this,transform,*d1,*d2,intent); } } else { Debug[TRACE] << "Source and default profiles match - using devicelink in isolation..." << endl; // If there's no default profile, or the source and default profiles match // then we can just use the devicelink profile in isolation. d1=d2; transform=Search(d1,d2,intent); if(!transform) { Debug[TRACE] << "No suitable cached transform found - creating a new one..." << endl; transform=new CMSTransform(destprofile,intent); new CMTransformFactoryNode(this,transform,*d1,*d2,intent); } } if(defprofile) delete defprofile; } else { // The non-device link case is much easier to deal with... d1=srcprofile->GetMD5(); const char *fn=srcprofile->GetFilename(); Debug[TRACE] << "Source profile (" << (fn ? fn : "") << ")" << "has hash: " << d1->GetPrintableDigest() << endl; // Don't bother transforming if src/dest are the same profile... if(*d1==*d2) { Debug[TRACE] << "Source and target profiles are identical - no need to transform" << endl; return(NULL); } transform=Search(d1,d2,intent); if(!transform) { Debug[TRACE] << "No suitable cached transform found - creating a new one..." << endl; transform=new CMSTransform(srcprofile,destprofile,intent); new CMTransformFactoryNode(this,transform,*d1,*d2,intent); } } return(transform); } CMSTransform *CMTransformFactory::GetTransform(CMSProfile *destprofile,CMSProfile *srcprofile,CMSProfile *proofprofile,LCMSWrapper_Intent intent,int displayintent) { // Debug[TRACE] << "Getting proofing transform - Using intent: " << intent << endl; // No point whatever in continuing without an output device profile... if(!destprofile) return(NULL); if(!proofprofile) throw _("No Proof profile provided!"); CMSTransform *transform=NULL; if(intent==LCMSWRAPPER_INTENT_DEFAULT) intent=LCMSWrapper_Intent(manager.FindInt("RenderingIntent")); if(intent==LCMSWRAPPER_INTENT_DEFAULT) intent=LCMSWRAPPER_INTENT_PERCEPTUAL; if(displayintent==LCMSWRAPPER_INTENT_DEFAULT) displayintent=LCMSWRAPPER_INTENT_ABSOLUTE_COLORIMETRIC; // Debug[TRACE] << "Using intent: " << intent << endl; // We use MD5 digests to compare profiles for equality. MD5Digest *d1,*d2; d2=destprofile->GetMD5(); if(destprofile->IsDeviceLink()) { // Debug[TRACE] << "Device link profile detected" << endl; // Device link profiles make life awkward if we have to use a source profile // (which we must do in the case of an image having an embedded profile). // What we do here is convert from the source profile to the appropriate // colour space's default profile, and then apply the devicelink. CMSProfile *defprofile=NULL; if(srcprofile) defprofile=manager.GetDefaultProfile(srcprofile->GetColourSpace()); // If we have both source and default profiles, and they're not equal, // create a multi-profile transform: src -> default -> devicelink. if((srcprofile)&&(defprofile)&&(*srcprofile->GetMD5()!=*defprofile->GetMD5())) { // Debug[TRACE] << "Source and default profiles don't match - building transform chain..." << endl; CMSProfile *profiles[3]; profiles[0]=srcprofile; profiles[1]=defprofile; profiles[2]=destprofile; d1=srcprofile->GetMD5(); // Search for an existing transform by source / devicelink MD5s... transform=Search(d1,d2,intent,true); if(!transform) { // Debug[TRACE] << "No suitable cached transform found - creating a new one..." << endl; // Debug[TRACE] << "But can't (yet?) create embedded->default->devicelink->proof transform!" << endl; // FIXME - need a version of CMSProofingTransform that can cope with // multiple profiles! transform=new CMSTransform(profiles,3,intent); new CMTransformFactoryNode(this,transform,*d1,*d2,intent); } } else { // Debug[TRACE] << "Source and default profiles match - using devicelink in isolation..." << endl; // If there's no default profile, or the source and default profiles match // then we can just use the devicelink profile in isolation. d1=d2; transform=Search(d1,d2,intent,true); if(!transform) { // Debug[TRACE] << "No suitable cached transform found - creating a new one..." << endl; // FIXME - need a version of CMSProofingTransform that can cope with // devicelink profiles transform=new CMSProofingTransform(destprofile,proofprofile,intent,displayintent); new CMTransformFactoryNode(this,transform,*d1,*d2,intent,true); } } if(defprofile) delete defprofile; } else { // The non-device link case is much easier to deal with... d1=srcprofile->GetMD5(); // Don't bother transforming if src/dest are the same profile... // (Actually, if we're proofing, we still need to transform, after all! // if(*d1==*d2) // return(NULL); transform=Search(d1,d2,intent,true); if(!transform) { // Debug[TRACE] << "No suitable cached transform found - creating a new proofing transform..." << endl; transform=new CMSProofingTransform(srcprofile,destprofile,proofprofile,intent,displayintent); new CMTransformFactoryNode(this,transform,*d1,*d2,intent,true); } } return(transform); } void CMTransformFactory::Flush() { while(first) delete first; } // Path handling static const char *findextension(const char *filename) { int t=strlen(filename)-1; int c; for(c=t;c>0;--c) { if(filename[c]=='.') return(filename+c); } return(filename); } const char *ProfileManager::GetNextFilename(const char *prev) { const char *result=prev; while((result=spiter.GetNextFilename(result))) { const char *ext=findextension(result); if(strncasecmp(ext,".ICM",4)==0) return(result); if(strncasecmp(ext,".icm",4)==0) return(result); if(strncasecmp(ext,".ICC",4)==0) return(result); if(strncasecmp(ext,".icc",4)==0) return(result); } return(result); } void ProfileManager::AddPath(const char *path) { FlushProfileInfoList(); SearchPathHandler::AddPath(path); } void ProfileManager::RemovePath(const char *path) { FlushProfileInfoList(); SearchPathHandler::RemovePath(path); } void ProfileManager::ClearPaths() { FlushProfileInfoList(); SearchPathHandler::ClearPaths(); } char *ProfileManager::SearchPaths(const char *file) { if(file) { if(strcmp(file,SYSTEMMONITORPROFILE_ESCAPESTRING)==0) return(strdup(file)); if(strcmp(file,BUILTINSRGB_ESCAPESTRING)==0) return(strdup(file)); } return(SearchPathHandler::SearchPaths(file)); } ProfileInfo *ProfileManager::GetFirstProfileInfo() { if(!first) BuildProfileInfoList(); return(first); } void ProfileManager::BuildProfileInfoList() { // Debug[TRACE] << "Building ProfileInfo List:" << endl; const char *f=NULL; FlushProfileInfoList(); new ProfileInfo(*this,BUILTINSRGB_ESCAPESTRING); while((f=GetNextFilename(f))) { if(!(FindProfileInfo(f))) new ProfileInfo(*this,f); } GetProfileFromDisplay(); if(proffromdisplay_size) new ProfileInfo(*this,SYSTEMMONITORPROFILE_ESCAPESTRING); } void ProfileManager::FlushProfileInfoList() { while(first) delete first; } ProfileInfo *ProfileManager::FindProfileInfo(const char *filename) { ProfileInfo *pi=first; while(pi) { const char *fn=pi->filename; if(strcmp(fn,filename)==0) { Debug[TRACE] << "Found " << filename << endl; return(pi); } pi=pi->Next(); } return(NULL); } int ProfileManager::GetProfileInfoCount() { int c=0; ProfileInfo *pi=GetFirstProfileInfo(); while(pi) { ++c; pi=pi->Next(); } return(c); } ProfileInfo *ProfileManager::GetProfileInfo(int i) { ProfileInfo *pi=GetFirstProfileInfo(); while(i && pi) { --i; pi=pi->Next(); } return(pi); } // ProfileInfo ProfileInfo::ProfileInfo(ProfileManager &pm,const char *filename) : profilemanager(pm), next(NULL), prev(NULL), filename(NULL), iscached(false), description(NULL), isdevicelink(false) { if(!filename) throw "ProfileInfo: Null Filename"; if((next=profilemanager.first)) next->prev=this; profilemanager.first=this; this->filename=strdup(filename); } ProfileInfo::~ProfileInfo() { if(filename) free(filename); if(description) free(description); if(prev) prev->next=next; else profilemanager.first=next; if(next) next->prev=prev; } ProfileInfo *ProfileInfo::Next() { return(next); } void ProfileInfo::GetInfo() { if(iscached) return; CMSProfile *profile=profilemanager.GetProfile(filename); if(profile) { colourspace=profile->GetColourSpace(); isdevicelink=profile->IsDeviceLink(); description=strdup(profile->GetDescription()); delete profile; iscached=true; } else throw "ProfileInfo: Can't open profile"; } const char *ProfileInfo::GetFilename() { GetInfo(); return(filename); } const char *ProfileInfo::GetDescription() { GetInfo(); return(description); } bool ProfileInfo::IsDeviceLink() { GetInfo(); return(isdevicelink); } IS_TYPE ProfileInfo::GetColourSpace() { GetInfo(); return(colourspace); } int ProfileManager::GetIntentCount() { return(CMS_GetIntentCount()); } const char *ProfileManager::GetIntentName(LCMSWrapper_Intent intent) { if(intent==LCMSWRAPPER_INTENT_DEFAULT) return(_("Default")); else return(CMS_GetIntentName(intent)); } const char *ProfileManager::GetIntentDescription(LCMSWrapper_Intent intent) { if(intent==LCMSWRAPPER_INTENT_DEFAULT) return(_("Default rendering intent")); else return(CMS_GetIntentDescription(intent)); } void ProfileManager::GetProfileFromDisplay() { #ifdef WIN32 HDC handle=GetDC(0); // Get the default screen handle DWORD dpsize=sizeof(displayprofilename)-1; // Older Mingw wingdi.h files have a faulty definition of the following function, // with the second param as DWORD instead of LPDWORD. if(GetICMProfile(handle,&dpsize,displayprofilename)) { proffromdisplay_size=dpsize; Debug[TRACE] << "Got profile: " << displayprofilename << ", " << displayprofilename << " characters" << endl; } else Debug[TRACE] << "No profile associated with default display." << endl; #else if(proffromdisplay) XFree(proffromdisplay); proffromdisplay=NULL; if(xdisplay) { // Debug[TRACE] << "Got display" << endl; Atom icc_atom; icc_atom = XInternAtom (xdisplay, "_ICC_PROFILE", False); if (icc_atom != None) { // Debug[TRACE] << "Got atom" << endl; Window w=DefaultRootWindow(xdisplay); if(w) { // Debug[TRACE] << "Got window" << endl; Atom type; int format=0; unsigned long nitems=0; unsigned long bytes_after=0; int result=0; result = XGetWindowProperty (xdisplay, w, icc_atom, 0, 0x7fffffff,0, XA_CARDINAL, &type, &format, &nitems, &bytes_after, &proffromdisplay); proffromdisplay_size=nitems*(format/8); if(result!=Success) { Debug[WARN] <<"Failed to retrieve ICC Profile from display..." << endl; proffromdisplay=NULL; proffromdisplay_size=0; } } } } // XCloseDisplay (dpy); #endif } photoprint-0.4.2-pre2/profilemanager/intentselector.cpp0000644000175000017500000000733311076423574020272 00000000000000/* * intentselector.c - provides a custom widget for choosing a rendering intent * * Copyright (c) 2006 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include #include #include #include "intentselector.h" using namespace std; enum { CHANGED_SIGNAL, LAST_SIGNAL }; static guint intentselector_signals[LAST_SIGNAL] = { 0 }; static void intentselector_class_init (IntentSelectorClass *klass); static void intentselector_init (IntentSelector *stpuicombo); static void intentselector_build_options(IntentSelector *c) { if(c->menu) gtk_option_menu_remove_menu(GTK_OPTION_MENU(c->optionmenu)); c->menu=gtk_menu_new(); int count=c->pm->GetIntentCount(); for(int i=-1;ipm->GetIntentName(LCMSWrapper_Intent(i)); if(name) { GtkWidget *menu_item = gtk_menu_item_new_with_label (name); gtk_menu_shell_append (GTK_MENU_SHELL (c->menu), menu_item); gtk_widget_show (menu_item); } } gtk_option_menu_set_menu(GTK_OPTION_MENU(c->optionmenu),c->menu); } static void intentselector_entry_changed(GtkEntry *entry,gpointer user_data) { IntentSelector *c=INTENTSELECTOR(user_data); int index=intentselector_getintent(c); const char *desc=c->pm->GetIntentDescription(LCMSWrapper_Intent(index)); if(desc && strlen(desc)>0) { gtk_tooltips_set_tip(c->tips,c->optionmenu,desc,desc); gtk_tooltips_enable(c->tips); } else gtk_tooltips_disable(c->tips); g_signal_emit(G_OBJECT (c),intentselector_signals[CHANGED_SIGNAL], 0); } GtkWidget* intentselector_new (ProfileManager *pm) { IntentSelector *c=INTENTSELECTOR(g_object_new (intentselector_get_type (), NULL)); c->pm=pm; c->tips=gtk_tooltips_new(); c->optionmenu=gtk_option_menu_new(); c->menu=NULL; // Built on demand... intentselector_build_options(c); gtk_box_pack_start(GTK_BOX(c),GTK_WIDGET(c->optionmenu),TRUE,TRUE,0); gtk_widget_show(c->optionmenu); g_signal_connect(c->optionmenu,"changed",G_CALLBACK(intentselector_entry_changed),c); return(GTK_WIDGET(c)); } GType intentselector_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo intentselector_info = { sizeof (IntentSelectorClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) intentselector_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (IntentSelector), 0, (GInstanceInitFunc) intentselector_init, }; stpuic_type = g_type_register_static (GTK_TYPE_HBOX, "IntentSelector", &intentselector_info, GTypeFlags(0)); } return stpuic_type; } static void intentselector_class_init (IntentSelectorClass *klass) { intentselector_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (klass), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (IntentSelectorClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void intentselector_init (IntentSelector *c) { c->optionmenu=NULL; c->menu=NULL; c->pm=NULL; } LCMSWrapper_Intent intentselector_getintent(IntentSelector *c) { gint index=gtk_option_menu_get_history(GTK_OPTION_MENU(c->optionmenu)); return(LCMSWrapper_Intent(index-1)); } void intentselector_setintent(IntentSelector *c,LCMSWrapper_Intent intent) { int index=intent; gtk_option_menu_set_history(GTK_OPTION_MENU(c->optionmenu),index+1); const char *desc=c->pm->GetIntentDescription(intent); if(desc) { gtk_tooltips_set_tip(c->tips,c->optionmenu,desc,desc); gtk_tooltips_enable(c->tips); } else gtk_tooltips_disable(c->tips); } photoprint-0.4.2-pre2/profilemanager/profileselector.cpp0000644000175000017500000002416411342325750020423 00000000000000/* * profileselector.c - provides a custom widget for selecting ICC profiles * given a SearchPath pointing to the profile locations. * * Copyright (c) 2006 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ /* FIXME: A destructor is needed for this class, to free up the option list. As it stands, a certain amount of memory will be lost when the widget is destroyed. */ #include #include #include #include #include #include #include #include "../miscwidgets/generaldialogs.h" #include "../support/debug.h" #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) #include "profileselector.h" static const char *PS_ESCAPESTRING=N_("Other..."); using namespace std; enum { CHANGED_SIGNAL, LAST_SIGNAL }; static guint profileselector_signals[LAST_SIGNAL] = { 0 }; static void profileselector_class_init (ProfileSelectorClass *klass); static void profileselector_init (ProfileSelector *sel); class profsel_entry { public: profsel_entry(const char *filename,const char *uiname) : filename(NULL), uiname(NULL) { this->filename=g_strdup(filename); this->uiname=g_strdup(uiname); } ~profsel_entry() { if(filename) g_free(filename); if(uiname) g_free(uiname); } int filenamecmp(profsel_entry &a) { return(strcmp(a.filename,filename)); } int uinamecmp(profsel_entry &a) { return(strcmp(a.uiname,uiname)); } gchar *filename; gchar *uiname; }; static int mycmp(const void *s1,const void *s2) { profsel_entry *ps1=(profsel_entry *)s1; profsel_entry *ps2=(profsel_entry *)s2; return(ps1->filenamecmp(*ps2)); } static int mycmp_desc(const void *s1,const void *s2) { profsel_entry *ps1=(profsel_entry *)s1; profsel_entry *ps2=(profsel_entry *)s2; return(ps1->uinamecmp(*ps2)); } static bool verifyprofile(ProfileSelector *c,ProfileInfo *pi) { try { if(c->colourspace || (!c->allowdevicelink)) { if(c->colourspace) { if(pi->GetColourSpace()!=c->colourspace) throw "Ignoring profile - wrong colourspace"; } if(!c->allowdevicelink) { if(pi->IsDeviceLink()) throw "Ignoring profile - can't use devicelinks"; } } return(true); } catch(const char *err) { Debug[TRACE] << "Profile Selector: " << err << endl; } return(false); } static void rebuild_menu(ProfileSelector *c) { if(c->menu) gtk_option_menu_remove_menu(GTK_OPTION_MENU(c->optionmenu)); c->menu=gtk_menu_new(); // Build popup menu from optionlist... GList *iter=c->optionlist; while(iter) { profsel_entry *ps=(profsel_entry *)iter->data; gchar *text=ps->uiname; GtkWidget *menu_item = gtk_menu_item_new_with_label (text); gtk_menu_shell_append (GTK_MENU_SHELL (c->menu), menu_item); gtk_widget_show (menu_item); iter=g_list_next(iter); } gtk_option_menu_set_menu(GTK_OPTION_MENU(c->optionmenu),c->menu); } static void profileselector_build_options(ProfileSelector *c) { if(c->optionlist) { GList *element; element=c->optionlist; while(element) { g_free(element->data); element=g_list_next(element); } g_list_free(c->optionlist); c->optionlist=NULL; } Debug[TRACE] << "Building profile option list" << endl; ProfileInfo *pi=c->pm->GetFirstProfileInfo(); while(pi) { try { const char *filename=pi->GetFilename(); Debug[TRACE] << "Filename : " << filename << endl; const char *uiname=pi->GetDescription(); Debug[TRACE] << "UIName : " << uiname << endl; profsel_entry *ps=new profsel_entry(filename,uiname); if(!g_list_find_custom(c->optionlist,ps,mycmp)) { if(verifyprofile(c,pi)) { profsel_entry *ps2=new profsel_entry(filename,uiname); c->optionlist=g_list_append(c->optionlist,ps2); } } delete ps; } catch (const char *err) { Debug[ERROR] << "Error opening profile: " << err << endl; } pi=pi->Next(); } Debug[TRACE] << "Done" << endl; c->optionlist=g_list_sort(c->optionlist,mycmp_desc); // "None" option - needs to go at the head... if(c->allownone) { profsel_entry *noneps=new profsel_entry(NOPROFILE_ESCAPESTRING,gettext("None")); c->optionlist=g_list_prepend(c->optionlist,noneps); } // "Other..." option, pops up a file selector. profsel_entry *otherps=new profsel_entry(PS_ESCAPESTRING,gettext(PS_ESCAPESTRING)); c->optionlist=g_list_append(c->optionlist,otherps); rebuild_menu(c); } static void profileselector_changed(GtkWidget *widget,gpointer user_data) { ProfileSelector *c=PROFILESELECTOR(user_data); GtkOptionMenu *om=GTK_OPTION_MENU(c->optionmenu); gint index=gtk_option_menu_get_history(om); profsel_entry *ps=NULL; const char *val=NULL; if(c->optionlist) ps=(profsel_entry *)g_list_nth_data(c->optionlist,index); if(ps) val=ps->filename; if(val && strlen(val)) { if(strcmp(val,PS_ESCAPESTRING)==0) { char *fn=File_Dialog("Choose ICC Profile...",NULL,NULL); if(fn) { Debug[TRACE] << "Setting new filename..." << endl; profileselector_set_filename(c,fn); val=NULL; Debug[TRACE] << "New filename set" << endl; } else val=c->filename; } else if(index==c->currentidx) { // If the user has simply reselected the current profile // we don't want to trigger a signal. return; } if(val) profileselector_set_filename(c,val); Debug[TRACE] << "Emitting changed signal" << endl; g_signal_emit(G_OBJECT (c), profileselector_signals[CHANGED_SIGNAL], 0); } } GtkWidget* profileselector_new (ProfileManager *pm,IS_TYPE colourspace,bool allowdevicelink,bool allownone) { ProfileSelector *c=PROFILESELECTOR(g_object_new (profileselector_get_type (), NULL)); c->pm=pm; c->colourspace=colourspace; c->allowdevicelink=allowdevicelink; c->allownone=allownone; c->optionmenu=gtk_option_menu_new(); c->menu=NULL; // Built on demand... c->tips=gtk_tooltips_new(); gtk_tooltips_enable(c->tips); gtk_box_pack_start(GTK_BOX(c),GTK_WIDGET(c->optionmenu),TRUE,TRUE,0); gtk_widget_show(c->optionmenu); profileselector_build_options(c); g_signal_connect(c->optionmenu,"changed",G_CALLBACK(profileselector_changed),c); gint index=gtk_option_menu_get_history(GTK_OPTION_MENU(c->optionmenu)); profsel_entry *pe=NULL; const char *val=NULL; if(c->optionlist) pe=(profsel_entry *)g_list_nth_data(c->optionlist,index); if(pe) val=pe->filename; if(val) profileselector_set_filename(c,val); return(GTK_WIDGET(c)); } GType profileselector_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo profileselector_info = { sizeof (ProfileSelectorClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) profileselector_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (ProfileSelector), 0, (GInstanceInitFunc) profileselector_init, }; stpuic_type = g_type_register_static (GTK_TYPE_VBOX, "ProfileSelector", &profileselector_info, GTypeFlags(0)); } return stpuic_type; } static void profileselector_class_init (ProfileSelectorClass *klass) { profileselector_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (klass), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (ProfileSelectorClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void profileselector_init (ProfileSelector *c) { c->optionlist=NULL; c->filename=NULL; } gboolean profileselector_refresh(ProfileSelector *c) { g_signal_handlers_block_matched (G_OBJECT (c->optionmenu), G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, c); profileselector_build_options(c); g_signal_handlers_unblock_matched (G_OBJECT (c->optionmenu), G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, c); return(true); } void profileselector_set_type(ProfileSelector *c,IS_TYPE colourspace) { colourspace=IS_TYPE(STRIP_ALPHA(colourspace)); IS_TYPE oldcolourspace=c->colourspace; if(colourspace!=IS_TYPE_NULL && (oldcolourspace!=colourspace)) { c->colourspace=colourspace; profileselector_build_options(c); rebuild_menu(c); const char *def=NULL; CMSProfile *defp=c->pm->GetDefaultProfile(colourspace); if(defp) { if((def=defp->GetFilename())) profileselector_set_filename(c,def); delete defp; } } } void profileselector_set_filename(ProfileSelector *c,const char *filename) { char *fn=c->pm->MakeRelative(filename); try { if(c->filename) free(c->filename); c->filename=fn; // Don't free fn, c->filename has "adopted" it. // If the filename is not present, add it. CMSProfile *tp=NULL; try { tp=c->pm->GetProfile(c->filename); } catch(const char *err) { Debug[WARN] << err << endl; } profsel_entry tempps(c->filename,tp ? tp->GetDescription() : _("Please choose a valid ICC profile")); delete tp; GList *node; if((node=g_list_find_custom(c->optionlist,&tempps,mycmp))) { gint i=g_list_position(c->optionlist,node); gtk_option_menu_set_history(GTK_OPTION_MENU(c->optionmenu),i); c->currentidx=i; } else { g_signal_handlers_block_matched (G_OBJECT (c->optionmenu), G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, c); profsel_entry *newps=new profsel_entry(c->filename,tempps.uiname); c->optionlist=g_list_append(c->optionlist,newps); rebuild_menu(c); gint i=g_list_length(c->optionlist)-1; gtk_option_menu_set_history(GTK_OPTION_MENU(c->optionmenu),i); c->currentidx=i; g_signal_handlers_unblock_matched (G_OBJECT (c->optionmenu), G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, c); } gsize in,out; gchar *entry=g_locale_to_utf8(c->filename,-1,&in,&out,NULL); gtk_tooltips_set_tip(c->tips,c->optionmenu,entry,entry); } catch(const char *err) { Debug[TRACE] << "Profile Selector: " << err << endl; } } const char *profileselector_get_filename(ProfileSelector *p) { return(p->filename); } photoprint-0.4.2-pre2/profilemanager/Makefile.am0000644000175000017500000000070711262215603016543 00000000000000 localedir=$(datadir)/locale AM_CXXFLAGS = -DLOCALEDIR=\"$(localedir)\" -Wall -I../imagesource/ -I../support/ $(LCMS_CFLAGS) $(GTK2_CFLAGS) noinst_LTLIBRARIES = libprofilemanager.la libprofilemanager_la_SOURCES = \ lcmswrapper.cpp \ lcmswrapper.h \ profilemanager.cpp \ profilemanager.h \ profileselector.cpp \ profileselector.h \ intentselector.cpp \ intentselector.h \ ciesupport.cpp \ ciesupport.h libprofilemanager_la_LDFLAGS = -static photoprint-0.4.2-pre2/profilemanager/ciesupport.cpp0000644000175000017500000000313711250514260017406 00000000000000#include #include #include "ciesupport.h" using namespace std; XYZValue D50ReferenceWhite(96.42,100.00,82.49); XYZValue D65ReferenceWhite(95.05,100.00,108.90); LabValue::LabValue() : L(0.0),a(0.0),b(0.0) { } LabValue::LabValue(double L, double a, double b) : L(L),a(a),b(b) { } #define kappa 903.3 #define epsilon 0.008856 LabValue::LabValue(XYZValue &xyz,XYZValue &refwhite) : L(0.0), a(0.0), b(0.0) { double x_r=xyz.X/refwhite.X; double y_r=xyz.Y/refwhite.Y; double z_r=xyz.Z/refwhite.Z; double fx,fy,fz; if(x_r<=epsilon) fx=(kappa*x_r+16.0)/116.0; else fx=pow(x_r,1.0/3.0); if(y_r<=epsilon) fy=(kappa*y_r+16.0)/116.0; else fy=pow(y_r,1.0/3.0); if(z_r<=epsilon) fz=(kappa*z_r+16.0)/116.0; else fz=pow(z_r,1.0/3.0); L=116.0*fy-16.0; a=500.0*(fx-fy); b=200.0*(fy-fz); } LabValue::LabValue(const LabValue &lab) { L=lab.L; a=lab.a; b=lab.b; } double LabValue::Magnitude() { double result=sqrt(L*L+a*a+b*b); return(result); } double LabValue::dE(const LabValue &other) { double dL=other.L-L; double da=other.a-a; double db=other.b-b; double result=sqrt(dL*dL+da*da+db*db); return(result); } LabValue &LabValue::operator-=(const LabValue &other) { L-=other.L; a-=other.a; b-=other.b; return(*this); } LabValue &LabValue::operator=(const LabValue &other) { L=other.L; a=other.a; b=other.b; return(*this); } LabValue LabValue::operator-(const LabValue &other) { LabValue result(*this); result-=other; return(result); } std::ostream& operator<<(std::ostream &s,LabValue &l) { s << "(" << l.L << ", " << l.a << ", " << l.b << ")"; return(s); } photoprint-0.4.2-pre2/profilemanager/profileselector.h0000644000175000017500000000370311342324230020054 00000000000000#ifndef __PROFILESELECTOR_H__ #define __PROFILESELECTOR_H__ #include #include #include #include #include #include #include #include #include #include #include #include #include "profilemanager.h" G_BEGIN_DECLS #define PROFILESELECTOR_TYPE (profileselector_get_type()) #define PROFILESELECTOR(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PROFILESELECTOR_TYPE, ProfileSelector)) #define PROFILESELECTOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PROFILESELECTOR_TYPE, ProfileSelectorClass)) #define IS_PROFILESELECTOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PROFILESELECTOR_TYPE)) #define IS_PROFILESELECTOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PROFILESELECTOR_TYPE)) typedef struct _ProfileSelector ProfileSelector; typedef struct _ProfileSelectorClass ProfileSelectorClass; struct _ProfileSelector { GtkVBox box; // GtkWidget *description; GtkWidget *optionmenu; GtkWidget *menu; GList *optionlist; GtkListStore *liststore; GtkWidget *combobox; GtkTooltips *tips; ProfileManager *pm; IS_TYPE colourspace; bool allowdevicelink; bool allownone; gchar *filename; int currentidx; }; struct _ProfileSelectorClass { GtkVBoxClass parent_class; void (*changed)(ProfileSelector *combo); }; GType profileselector_get_type (void); GtkWidget* profileselector_new (ProfileManager *pm,IS_TYPE colourspace=IS_TYPE_NULL,bool allowdevicelink=false, bool allownone=false); // Pass IS_TYPE_NULL to match any colourspace const char *profileselector_get_filename(ProfileSelector *c); void profileselector_set_filename(ProfileSelector *c, const char *filename); void profileselector_set_type(ProfileSelector *c,IS_TYPE colourspace=IS_TYPE_NULL); gboolean profileselector_refresh(ProfileSelector *c); G_END_DECLS #endif /* __PROFILESELECTOR_H__ */ photoprint-0.4.2-pre2/cmtransformworker.h0000644000175000017500000000112111317517527015454 00000000000000#ifndef CMTRANSFORMWORKER_H #define CMTRANSFORMWORKER_H ////////////// Conversion Worker Thread - /////////////// // A subclass of the generic worker thread which has a // thread-specific TransformFactory, to dodge LCMS's thread safety issues. class CMTransformWorker : public Worker { public: CMTransformWorker(JobQueue &queue,ProfileManager &pm) : Worker(queue), profilemanager(pm) { factory=profilemanager.GetTransformFactory(); } virtual ~CMTransformWorker() { WaitCompletion(); delete factory; } ProfileManager &profilemanager; CMTransformFactory *factory; }; #endif photoprint-0.4.2-pre2/layout.h0000644000175000017500000000722511400246347013207 00000000000000#ifndef LAYOUT_H #define LAYOUT_H #include #include #include #include #include #include "profilemanager/profilemanager.h" #include "imagesource/imagesource.h" #include "stpui_widgets/units.h" #include "support/pageextent.h" #include "support/layoutrectangle.h" #include "support/thread.h" #include "support/jobqueue.h" #include "effects/ppeffect.h" #include "layoutdb.h" #include "layout_imageinfo.h" class Layout_ImageInfo; class PhotoPrint_State; class Progress; // Layout capabilities - needed by the UI: #define PPLAYOUT_CROP 1 #define PPLAYOUT_ROTATE 2 #define PPLAYOUT_MASK 4 #define PPLAYOUT_PROFILE 8 #define PPLAYOUT_BACKGROUND 16 #define PPLAYOUT_EFFECTS 32 #define PPLAYOUT_DUPLICATE 64 class LayoutIterator { public: LayoutIterator(Layout &header); ~LayoutIterator(); Layout_ImageInfo *FirstImage(); Layout_ImageInfo *NextImage(); Layout_ImageInfo *FirstSelected(); Layout_ImageInfo *NextSelected(); protected: Layout &header; std::list::iterator iterator; }; class Layout : public virtual PageExtent { public: // Housekeeping Layout(PhotoPrint_State &state,Layout *oldlayout=NULL); virtual ~Layout(); virtual void Delete(Layout_ImageInfo *ii); virtual const char *GetType()=0; virtual int GetCapabilities(); virtual int AddImage(const char *filename,bool allowcropping=false,PP_ROTATION rotation=PP_ROTATION_AUTO); virtual void CopyImage(Layout_ImageInfo *ii); virtual void TransferImages(Layout *oldlayout,Progress *p=NULL); virtual void Clear(); virtual int GetPages(); virtual int FreeSlots(); // Count the number of free slots on the current page virtual void Reflow(); virtual ImageSource *GetImageSource(int page,CMColourDevice target=CM_COLOURDEVICE_PRINTER, CMTransformFactory *factory=NULL,int res=0,bool completepage=false); virtual IS_TYPE GetColourSpace(CMColourDevice target); // Do we still need this? virtual void UpdatePageSize(); virtual void LayoutToDB(LayoutDB &db); virtual void DBToLayout(LayoutDB &db); // Image list / selections virtual int CountSelected(); virtual void SelectAll(); virtual void SelectNone(); virtual Layout_ImageInfo *ImageAtCoord(int x,int y); virtual int GetCurrentPage(); virtual void SetCurrentPage(int page); // UI-related virtual GtkWidget *CreateWidget(); virtual void RefreshWidget(GtkWidget *widget); virtual void Print(Progress *p); virtual void DrawGridLines(GtkWidget *widget); virtual void DrawPreviewBorder(GtkWidget *widget); virtual void DrawPreviewBG(GtkWidget *widget,int xpos,int ypos,int width,int height); virtual void DrawPreview(GtkWidget *widget,int xpos,int ypos,int width,int height); virtual void SetBackground(const char *filename); virtual void FlushThumbnails(); virtual void FlushHRPreviews(); virtual void CancelRenderThreads(); virtual void (*SetUnitFunc())(GtkWidget *wid,enum Units unit); PhotoPrint_State &state; protected: void MakeGC(GtkWidget *widget); // Xoffset and yoffset are the top left corner of the print. // Some layouts will want to set this to the top/left margin // The best way to do so is to override the print method. int xoffset,yoffset; int pages; int currentpage; // Background image char *backgroundfilename; GdkPixbuf *background; GdkPixbuf *backgroundtransformed; // Housekeeping list imagelist; // For thumbnails and preview... CMTransformFactory *factory; GdkGC *gc; GdkColor bgcol; GdkColor bgcol2; // JobDispatcher - for tracking the high-res preview rendering. JobDispatcher jobdispatcher; friend class Layout_ImageInfo; friend class hr_payload; friend class HRRenderJob; friend class LayoutIterator; }; #endif photoprint-0.4.2-pre2/dialogs.cpp0000644000175000017500000010477311400237315013650 00000000000000/* * dialogs.cpp - routines to handle PhotoPrint's dialogs - namely: * Print setup * Colour Management setup * * Copyright (c) 2004-2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include #include #include #include #include "gp_cppsupport/printoutputselector.h" #include "pp_cms.h" #include "pp_units.h" #include "pp_scaling.h" #include "stpui_widgets/stpui_optionbook.h" #include "splashscreen/splashscreen.h" #include "miscwidgets/patheditor.h" #include "miscwidgets/imageselector.h" #include "miscwidgets/generaldialogs.h" #include "miscwidgets/pixbufview.h" #include "miscwidgets/simplecombo.h" #include "support/debug.h" #include "support/pathsupport.h" #include "support/rangeparser.h" #include "miscwidgets/progressbar.h" #include "support/util.h" #include "imageutils/tiffsave.h" #include "imageutils/jpegsave.h" #include "imagesource/pixbuf_from_imagesource.h" #include "profilemanager/profileselector.h" #include "profilemanager/intentselector.h" #include "config.h" #include "gettext.h" #define _(x) gettext(x) #include "dialogs.h" using namespace std; // Colour Management void ColourManagement_Dialog(GtkWindow *parent,PhotoPrint_State &state) { pp_cms_run_dialog(&state,parent); } class crt_dialog : public Progress { public: crt_dialog(GtkWindow *parent,PhotoPrint_State &state) : Progress(), state(state), storedlabel(NULL), resultlabel(NULL), progressbar(NULL), button(NULL), image(NULL), existing(NULL) { window=gtk_dialog_new_with_buttons(_("Colour Response Hash"), parent,GtkDialogFlags(0), GTK_STOCK_OK,GTK_RESPONSE_OK, NULL); gtk_window_set_default_size(GTK_WINDOW(window),400,50); gtk_widget_show(window); GtkWidget *vbox=GTK_DIALOG(window)->vbox; GtkWidget *hbox=gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(vbox),hbox,FALSE,FALSE,8); gtk_widget_show(hbox); GtkWidget *table=gtk_table_new(2,6,FALSE); gtk_table_set_col_spacing(GTK_TABLE(table),0,12); gtk_table_set_col_spacing(GTK_TABLE(table),1,12); gtk_table_set_row_spacings(GTK_TABLE(table),12); gtk_box_pack_start(GTK_BOX(hbox),table,TRUE,TRUE,12); gtk_widget_show(table); GtkWidget *tmp; tmp=gtk_label_new(_("This \"hash\" value is derived from the printer driver's output,\n" "and can be used to verify that no changes have occurred which\n" "might invalidate a colour profile for the printer")); gtk_table_attach_defaults(GTK_TABLE(table),tmp,0,3,0,1); gtk_widget_show(tmp); image=gtk_image_new_from_stock(GTK_STOCK_DIALOG_QUESTION,GTK_ICON_SIZE_DIALOG); gtk_table_attach_defaults(GTK_TABLE(table),image,2,3,1,3); gtk_widget_show(image); tmp=gtk_label_new(_("Current hash:")); gtk_table_attach_defaults(GTK_TABLE(table),tmp,0,1,1,2); gtk_widget_show(tmp); tmp=gtk_label_new(_("Stored in preset:")); gtk_table_attach_defaults(GTK_TABLE(table),tmp,0,1,2,3); gtk_widget_show(tmp); existing=state.printoutput.FindString("ResponseHash"); if(strlen(existing)==0) storedlabel=gtk_label_new(_("No hash stored yet")); else storedlabel=gtk_label_new(existing); gtk_label_set_selectable(GTK_LABEL(storedlabel),TRUE); gtk_table_attach_defaults(GTK_TABLE(table),storedlabel,1,2,2,3); gtk_widget_show(storedlabel); resultlabel=gtk_label_new(_("Calculating hash of printer response\nwith current driver settings")); gtk_table_attach_defaults(GTK_TABLE(table),resultlabel,1,3,4,7); gtk_widget_show(resultlabel); button=gtk_button_new_with_label(_("Store in preset")); g_signal_connect(G_OBJECT(button),"clicked",G_CALLBACK(clicked),this); gtk_table_attach_defaults(GTK_TABLE(table),button,0,1,5,6); gtk_widget_set_sensitive(button,FALSE); gtk_widget_show(button); progressbar=gtk_progress_bar_new(); gtk_table_attach_defaults(GTK_TABLE(table),progressbar,1,2,1,2); gtk_widget_show(progressbar); responsetag=state.printer.GetResponseHash(this); gtk_widget_destroy(progressbar); progressbar=NULL; tmp=gtk_label_new(responsetag.c_str()); gtk_label_set_selectable(GTK_LABEL(tmp),TRUE); gtk_table_attach_defaults(GTK_TABLE(table),tmp,1,2,1,2); gtk_widget_show(tmp); if(strcmp(existing,responsetag.c_str())==0) { gtk_label_set_text(GTK_LABEL(resultlabel),_("MATCH - No changes in driver\nor printer settings detected")); gtk_image_set_from_stock(GTK_IMAGE(image),GTK_STOCK_YES,GTK_ICON_SIZE_DIALOG); } else { if(strlen(existing)==0) gtk_label_set_text(GTK_LABEL(resultlabel),_("This hash can be used to detect changes\nin printer settings or driver versions\nthat might invalidate colour profiles")); else gtk_label_set_text(GTK_LABEL(resultlabel),_("MISMATCH - change detected in printer response!\nPrinter's colour profile might no longer be accurate.")); gtk_widget_set_sensitive(button,TRUE); gtk_image_set_from_stock(GTK_IMAGE(image),GTK_STOCK_DIALOG_WARNING,GTK_ICON_SIZE_DIALOG); } gtk_dialog_run(GTK_DIALOG(window)); } ~crt_dialog() { gtk_widget_destroy(window); } static void clicked(GtkWidget *wid,gpointer userdata) { crt_dialog *c=(crt_dialog *)userdata; c->state.printoutput.SetString("ResponseHash",c->responsetag.c_str()); c->existing=c->responsetag.c_str(); gtk_label_set_text(GTK_LABEL(c->storedlabel),c->existing); } bool DoProgress(int i,int maxi) { if(!progressbar) return(false); Progress::DoProgress(i,maxi); if(maxi) { float v=i; v/=maxi; gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(progressbar),v); } else gtk_progress_bar_pulse(GTK_PROGRESS_BAR(progressbar)); while(gtk_events_pending()) gtk_main_iteration_do(false); return(true); } void SetMessage(const char *msg) { } protected: PhotoPrint_State &state; GtkWidget *window; GtkWidget *storedlabel; GtkWidget *resultlabel; GtkWidget *progressbar; GtkWidget *button; GtkWidget *image; const char *existing; string responsetag; }; void ColourResponseTag_Dialog(GtkWidget *parent,PhotoPrint_State &state) { crt_dialog dlg(GTK_WINDOW(parent),state); } void Units_Dialog(GtkWindow *parent,PhotoPrint_State &state) { enum Units units=state.GetUnits(); enum Units newunits=pp_units_run_dialog(units,parent); if(units!=newunits) state.SetUnits(newunits); } void Scaling_Dialog(GtkWindow *parent,PhotoPrint_State &state) { IS_ScalingQuality q=IS_ScalingQuality(state.FindInt("ScalingQuality")); q=pp_scaling_run_dialog(parent,q); state.SetInt("ScalingQuality",q); } // Print Setup struct printsetupdata { PhotoPrint_State *state; GtkWidget *optionbook; GtkWidget *printoutput; GtkWidget *dialog; stp_vars_t *backupvars; char *olddriver; stpui_optionbook_custompage custompage; }; static void driver_changed(GtkWidget *wid,gpointer data) { Debug[TRACE] << "In driver_changed()" << endl; struct printsetupdata *cbd=(struct printsetupdata *)data; PrintOutput *po=&cbd->state->printoutput; const char *driver=po->FindString("Driver"); Debug[TRACE] << "Driver=" << driver << endl; if(!(cbd->state->printer.SetDriver(po->FindString("Driver")))) { Debug[TRACE] << "Setting driver failed - reverting to default" << endl; po->SetString("Driver",DEFAULT_PRINTER_DRIVER); cbd->state->printer.SetDriver(po->FindString("Driver")); printoutputselector_refresh(PRINTOUTPUTSELECTOR(cbd->printoutput)); } stpui_optionbook_rebuild(STPUI_OPTIONBOOK(cbd->optionbook)); } void PrintSetup_Dialog(GtkWindow *parent,PhotoPrint_State &state) { printsetupdata dialogdata; Debug[TRACE] << "Opening print setup dialog" << endl; dialogdata.state=&state; dialogdata.backupvars=stp_vars_create_copy(state.printer.stpvars); dialogdata.olddriver=g_strdup(state.printoutput.FindString("Driver")); dialogdata.dialog=gtk_dialog_new_with_buttons(_("Printer Setup"), parent,GtkDialogFlags(0), GTK_STOCK_CANCEL,GTK_RESPONSE_CANCEL, GTK_STOCK_OK,GTK_RESPONSE_OK, NULL); gtk_window_set_default_size(GTK_WINDOW(dialogdata.dialog),500,350); Debug[TRACE] << "Creating PrintOutput widget..." << endl; dialogdata.printoutput=printoutputselector_new(&state.printoutput); g_object_ref(G_OBJECT(dialogdata.printoutput)); Debug[TRACE] << "Created PrintOutput widget..." << endl; dialogdata.custompage.name=_("Output"); dialogdata.custompage.widget=dialogdata.printoutput; dialogdata.optionbook=stpui_optionbook_new(state.printer.stpvars,&dialogdata.custompage,1); gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialogdata.dialog)->vbox),dialogdata.optionbook,TRUE,TRUE,0); gtk_widget_show(dialogdata.optionbook); g_signal_connect(G_OBJECT(dialogdata.printoutput),"changed",G_CALLBACK(driver_changed),&dialogdata); gtk_widget_show(dialogdata.dialog); gint result=gtk_dialog_run(GTK_DIALOG(dialogdata.dialog)); switch(result) { case GTK_RESPONSE_CANCEL: state.printoutput.DBToQueues(); stp_vars_copy(state.printer.stpvars,dialogdata.backupvars); state.printoutput.SetString("Driver",dialogdata.olddriver); break; case GTK_RESPONSE_OK: state.printoutput.QueuesToDB(); const char *p1=stp_get_string_parameter(dialogdata.backupvars,"PageSize"); const char *p2=stp_get_string_parameter(state.printer.stpvars,"PageSize"); if(p1 && p2 && strcmp(p1,p2)!=0) state.layout->UpdatePageSize(); // Needs to be run every time, but preserve margins. break; } g_object_unref(G_OBJECT(dialogdata.printoutput)); stp_vars_destroy(dialogdata.backupvars); g_free(dialogdata.olddriver); gtk_widget_destroy(dialogdata.dialog); } // About dialog void About_Dialog(GtkWindow *parent) { GtkWidget *dialog=gtk_dialog_new_with_buttons(_("About"), parent,GtkDialogFlags(0), GTK_STOCK_OK,GTK_RESPONSE_OK, NULL); GdkPixbuf *pb=SplashScreen::GetPixbuf(); GtkWidget *image=gtk_image_new_from_pixbuf(pb); gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox),image,FALSE,FALSE,0); gtk_widget_show(image); GtkWidget *label=gtk_label_new(_("PhotoPrint " PACKAGE_VERSION " - copyright (c) 2004-2010\n" "by Alastair M. Robinson (amr@blackfiveservices.co.uk)\nDistributed under the terms\nof the GNU General Public Licence.\n" "See the file 'COPYING' for more details.\n" "The borders pack is released under the Creative Commons\nAttribution 2.0 UK: England & Wales Licence")); gtk_label_set_justify(GTK_LABEL(label),GTK_JUSTIFY_CENTER); gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox),label,TRUE,FALSE,5); gtk_widget_show(label); gtk_widget_show(dialog); gtk_dialog_run(GTK_DIALOG(dialog)); gtk_widget_destroy(dialog); g_object_unref(G_OBJECT(pb)); } // FIXME! Horrible hack to get around a symbol clash on Win32. #define SearchPathHandlerA SearchPathHandler struct PathDialogData { SearchPathHandler sp; ImageSelector *is; PathEditor *pe; }; static void paths_changed(GtkWidget *widget,gpointer user_data) { PathDialogData *dd=(PathDialogData *)user_data; patheditor_get_paths(dd->pe,&dd->sp); imageselector_refresh(IMAGESELECTOR(dd->is)); } void Paths_Dialog(GtkWindow *parent,PhotoPrint_State &state) { GtkWidget *dialog; dialog=gtk_dialog_new_with_buttons(_("Set paths..."), parent,GtkDialogFlags(0), GTK_STOCK_CANCEL,GTK_RESPONSE_CANCEL, GTK_STOCK_OK,GTK_RESPONSE_OK, NULL); gtk_window_set_default_size(GTK_WINDOW(dialog),500,350); GtkWidget *book=gtk_notebook_new(); gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox),book,TRUE,TRUE,0); gtk_widget_show(book); GtkWidget *label; GtkWidget *frame; frame=gtk_frame_new(NULL); gtk_frame_set_shadow_type(GTK_FRAME(frame),GTK_SHADOW_NONE); gtk_container_set_border_width(GTK_CONTAINER(frame),4); GtkWidget *profilepath=patheditor_new(&state.profilemanager); gtk_container_add(GTK_CONTAINER(frame),profilepath); gtk_widget_show(profilepath); gtk_widget_show(frame); label=gtk_label_new(_("ICC Profiles")); gtk_notebook_append_page(GTK_NOTEBOOK(book),frame,label); // Border path selector... PathDialogData dd; frame=gtk_frame_new(NULL); gtk_frame_set_shadow_type(GTK_FRAME(frame),GTK_SHADOW_NONE); gtk_container_set_border_width(GTK_CONTAINER(frame),4); gtk_widget_show(frame); GtkWidget *hbox=gtk_hbox_new(FALSE,0); gtk_widget_show(hbox); gtk_container_add(GTK_CONTAINER(frame),hbox); GtkWidget *borderpath=patheditor_new(&state.bordersearchpath); dd.pe=PATHEDITOR(borderpath); patheditor_get_paths(dd.pe,&dd.sp); gtk_box_pack_start(GTK_BOX(hbox),borderpath,TRUE,TRUE,0); gtk_widget_show(borderpath); GtkWidget *imagesel=imageselector_new(&dd.sp,GTK_SELECTION_NONE); dd.is=IMAGESELECTOR(imagesel); g_signal_connect(imagesel,"changed",G_CALLBACK(paths_changed),&dd); gtk_box_pack_start(GTK_BOX(hbox),imagesel,FALSE,FALSE,0); gtk_widget_show(imagesel); g_signal_connect(borderpath,"changed",G_CALLBACK(paths_changed),&dd); label=gtk_label_new(_("Borders")); gtk_notebook_append_page(GTK_NOTEBOOK(book),frame,label); // Background path selector... PathDialogData bgdd; frame=gtk_frame_new(NULL); gtk_frame_set_shadow_type(GTK_FRAME(frame),GTK_SHADOW_NONE); gtk_container_set_border_width(GTK_CONTAINER(frame),4); gtk_widget_show(frame); hbox=gtk_hbox_new(FALSE,0); gtk_widget_show(hbox); gtk_container_add(GTK_CONTAINER(frame),hbox); GtkWidget *bgpath=patheditor_new(&state.backgroundsearchpath); bgdd.pe=PATHEDITOR(bgpath); patheditor_get_paths(bgdd.pe,&bgdd.sp); gtk_box_pack_start(GTK_BOX(hbox),bgpath,TRUE,TRUE,0); gtk_widget_show(bgpath); imagesel=imageselector_new(&bgdd.sp,GTK_SELECTION_NONE); bgdd.is=IMAGESELECTOR(imagesel); g_signal_connect(imagesel,"changed",G_CALLBACK(paths_changed),&bgdd); gtk_box_pack_start(GTK_BOX(hbox),imagesel,FALSE,FALSE,0); gtk_widget_show(imagesel); g_signal_connect(bgpath,"changed",G_CALLBACK(paths_changed),&bgdd); label=gtk_label_new(_("Backgrounds")); gtk_notebook_append_page(GTK_NOTEBOOK(book),frame,label); gtk_widget_show(dialog); imageselector_refresh(IMAGESELECTOR(dd.is)); imageselector_refresh(IMAGESELECTOR(bgdd.is)); gint result=gtk_dialog_run(GTK_DIALOG(dialog)); switch(result) { case GTK_RESPONSE_CANCEL: break; case GTK_RESPONSE_OK: patheditor_get_paths(PATHEDITOR(profilepath),&state.profilemanager); patheditor_get_paths(PATHEDITOR(borderpath),&state.bordersearchpath); patheditor_get_paths(PATHEDITOR(bgpath),&state.backgroundsearchpath); break; } gtk_widget_destroy(dialog); } char *ImageMask_Dialog(GtkWindow *parent,PhotoPrint_State &state,char *oldfn) { char *nfn=oldfn; GtkWidget *dialog; dialog=gtk_dialog_new_with_buttons(_("Select a border..."), parent,GtkDialogFlags(0), GTK_STOCK_CANCEL,GTK_RESPONSE_CANCEL, GTK_STOCK_OK,GTK_RESPONSE_OK, NULL); gtk_window_set_default_size(GTK_WINDOW(dialog),250,350); GtkWidget *imagesel=imageselector_new(&state.bordersearchpath,GTK_SELECTION_SINGLE); gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox),imagesel,TRUE,TRUE,0); gtk_widget_show(imagesel); gtk_widget_show(dialog); imageselector_refresh(IMAGESELECTOR(imagesel)); imageselector_set_filename(IMAGESELECTOR(imagesel),oldfn); gint result=gtk_dialog_run(GTK_DIALOG(dialog)); switch(result) { case GTK_RESPONSE_CANCEL: break; case GTK_RESPONSE_OK: if(oldfn) free(oldfn); nfn=NULL; const char *nstr=imageselector_get_filename(IMAGESELECTOR(imagesel)); if(nstr) nfn=strdup(nstr); break; } gtk_widget_destroy(dialog); return(nfn); } static void profenable_changed(GtkWidget *widget,gpointer user_data) { GtkWidget *psel=GTK_WIDGET(user_data); bool enabled=gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget)); gtk_widget_set_sensitive(GTK_WIDGET(psel),enabled); } void ExportTiff_Dialog(GtkWindow *parent,PhotoPrint_State &state) { GtkWidget *dialog; GtkWidget *hbox; dialog=gtk_dialog_new_with_buttons(_("Export TIFF..."), parent,GtkDialogFlags(0), GTK_STOCK_CANCEL,GTK_RESPONSE_CANCEL, GTK_STOCK_OK,GTK_RESPONSE_OK, NULL); hbox=gtk_hbox_new(FALSE,5); GtkWidget *filechooser = gtk_file_chooser_widget_new (GTK_FILE_CHOOSER_ACTION_SAVE); gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox),hbox,TRUE,TRUE,5); gtk_box_pack_start(GTK_BOX(hbox),filechooser,TRUE,TRUE,5); gtk_widget_show(filechooser); gtk_widget_show(hbox); GtkWidget *table=gtk_table_new(2,3,FALSE); gtk_container_set_border_width(GTK_CONTAINER(table),5); gtk_table_set_col_spacings(GTK_TABLE(table),0); gtk_table_set_row_spacings(GTK_TABLE(table),5); gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox),table,FALSE,FALSE,5); gtk_widget_show(table); // Filename GtkWidget *label; // Pages label=gtk_label_new(_("Page range:")); gtk_table_attach_defaults(GTK_TABLE(table),label,0,1,1,2); gtk_widget_show(label); hbox=gtk_hbox_new(FALSE,0); GtkWidget *pagesentry=gtk_entry_new(); gtk_entry_set_width_chars(GTK_ENTRY(pagesentry),7); gtk_box_pack_start(GTK_BOX(hbox),GTK_WIDGET(pagesentry),TRUE,TRUE,0); gtk_widget_show(pagesentry); // Resolution label=gtk_label_new(_("Resolution (dpi):")); gtk_box_pack_start(GTK_BOX(hbox),GTK_WIDGET(label),TRUE,TRUE,20); gtk_widget_show(label); GtkWidget *resspin=gtk_spin_button_new_with_range(72,2880,1); gtk_box_pack_start(GTK_BOX(hbox),GTK_WIDGET(resspin),TRUE,TRUE,0); gtk_widget_show(resspin); GtkWidget *deepcolour=gtk_check_button_new_with_label(_("Save as 16-bit:")); gtk_box_pack_start(GTK_BOX(hbox),GTK_WIDGET(deepcolour),TRUE,TRUE,20); gtk_widget_show(deepcolour); gtk_table_attach_defaults(GTK_TABLE(table),hbox,1,2,1,2); gtk_widget_show(hbox); // hbox=gtk_hbox_new(FALSE,5); // gtk_table_attach_defaults(GTK_TABLE(table),hbox,1,2,2,3); // gtk_widget_show(hbox); // Colour management GtkWidget *outputprof=profileselector_new(&state.profilemanager,IS_TYPE_NULL,true); gtk_table_attach_defaults(GTK_TABLE(table),outputprof,1,2,3,4); gtk_widget_show(outputprof); GtkWidget *profactive=gtk_check_button_new_with_label(_("Output Profile:")); g_signal_connect(G_OBJECT(profactive),"toggled",G_CALLBACK(profenable_changed),outputprof); gtk_table_attach_defaults(GTK_TABLE(table),profactive,0,1,3,4); gtk_widget_show(profactive); char *dirname=substitute_homedir("$HOME_PICTURES"); gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(filechooser),dirname); gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(filechooser),"exported.tif"); free(dirname); gtk_entry_set_text(GTK_ENTRY(pagesentry),"1-"); const char *fn=state.profilemanager.FindString("ExportProfile"); if((!fn) || (strlen(fn)==0)) fn=state.profilemanager.FindString("DefaultRGBProfile"); if(fn && strlen(fn)) profileselector_set_filename(PROFILESELECTOR(outputprof),fn); gtk_toggle_button_set_state(GTK_TOGGLE_BUTTON(profactive),state.profilemanager.FindInt("ExportProfileActive")); profenable_changed(profactive,outputprof); gtk_widget_show(dialog); bool done=false; while(!done) { gint result=gtk_dialog_run(GTK_DIALOG(dialog)); switch(result) { case GTK_RESPONSE_CANCEL: done=true; break; case GTK_RESPONSE_OK: try { const char *profile=profileselector_get_filename(PROFILESELECTOR(outputprof)); bool profileactive=gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(profactive)); const char *pagerange=gtk_entry_get_text(GTK_ENTRY(pagesentry)); char *outputfilename=gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(filechooser)); int res=int(gtk_spin_button_get_value(GTK_SPIN_BUTTON(resspin))); bool save16bit=gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(deepcolour)); if(outputfilename) { struct stat statbuf; if(stat(outputfilename,&statbuf)==0) { GtkWidget *confirm = gtk_message_dialog_new (GTK_WINDOW(parent),GtkDialogFlags(0), GTK_MESSAGE_WARNING,GTK_BUTTONS_OK_CANCEL, "File exists - OK to overwrite?"); gint response=gtk_dialog_run (GTK_DIALOG (confirm)); Debug[TRACE] << "Response: " << response << endl; if(response!=GTK_RESPONSE_OK) { g_free(outputfilename); outputfilename=NULL; } gtk_widget_destroy (confirm); } } else ErrorMessage_Dialog(_("Please provide a filename."),GTK_WIDGET(parent)); if(outputfilename) { state.profilemanager.SetInt("ExportProfileActive",profileactive); if(profileactive) state.profilemanager.SetString("ExportProfile",profile); Debug[TRACE] << "Page range: " << pagerange << endl; Debug[TRACE] << "Resolution: " << res << endl; Debug[TRACE] << "Using profile?: " << profileactive << endl; if(profileactive) Debug[TRACE] << " " << profile << endl; RangeParser rp(pagerange,state.layout->GetPages()); int p; CMTransformFactory *factory=state.profilemanager.GetTransformFactory(); while((p=rp.Next())) { Debug[TRACE] << "Exporting page " << p << " of " << state.layout->GetPages() << endl; Debug[TRACE] << "To filename... "; char *ftmp; if(state.layout->GetPages()>1) ftmp=SerialiseFilename(outputfilename,p,state.layout->GetPages()); else ftmp=strdup(outputfilename); Debug[TRACE] << ftmp << endl; ImageSource *is=state.layout->GetImageSource(p-1,CM_COLOURDEVICE_EXPORT,factory,res,true); if(is) { ProgressBar p(_("Exporting..."),true,GTK_WIDGET(parent)); if(profileactive) { CMSProfile *prof=state.profilemanager.GetProfile(CM_COLOURDEVICE_EXPORT); Debug[TRACE] << "Got profile " << prof->GetFilename() << endl; is->SetEmbeddedProfile(prof); Debug[TRACE] << "Set profile - saving..." << endl; } TIFFSaver ts(ftmp,is,save16bit); ts.SetProgress(&p); ts.Save(); delete is; } free(ftmp); } delete factory; g_free(outputfilename); outputfilename=NULL; done=true; } } catch (const char *error) { ErrorMessage_Dialog(error,GTK_WIDGET(parent)); } break; } } gtk_widget_destroy(dialog); } void ExportJPEG_Dialog(GtkWindow *parent,PhotoPrint_State &state) { GtkWidget *dialog; GtkWidget *hbox; dialog=gtk_dialog_new_with_buttons(_("Export JPEG..."), parent,GtkDialogFlags(0), GTK_STOCK_CANCEL,GTK_RESPONSE_CANCEL, GTK_STOCK_OK,GTK_RESPONSE_OK, NULL); // gtk_window_set_default_size(GTK_WINDOW(dialog),250,350); hbox=gtk_hbox_new(FALSE,5); GtkWidget *filechooser = gtk_file_chooser_widget_new (GTK_FILE_CHOOSER_ACTION_SAVE); gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox),hbox,TRUE,TRUE,5); gtk_box_pack_start(GTK_BOX(hbox),filechooser,TRUE,TRUE,5); gtk_widget_show(filechooser); gtk_widget_show(hbox); GtkWidget *table=gtk_table_new(2,5,FALSE); gtk_container_set_border_width(GTK_CONTAINER(table),5); gtk_table_set_col_spacings(GTK_TABLE(table),0); gtk_table_set_row_spacings(GTK_TABLE(table),5); gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox),table,FALSE,FALSE,5); gtk_widget_show(table); // Filename GtkWidget *label; // Pages hbox=gtk_hbox_new(FALSE,0); label=gtk_label_new(_("Page range:")); gtk_table_attach_defaults(GTK_TABLE(table),label,0,1,1,2); gtk_widget_show(label); GtkWidget *pagesentry=gtk_entry_new(); gtk_box_pack_start(GTK_BOX(hbox),GTK_WIDGET(pagesentry),TRUE,TRUE,0); gtk_widget_show(pagesentry); // Resolution label=gtk_label_new(_("Resolution (dpi):")); gtk_box_pack_start(GTK_BOX(hbox),GTK_WIDGET(label),TRUE,TRUE,20); gtk_widget_show(label); GtkWidget *resspin=gtk_spin_button_new_with_range(72,2880,1); gtk_box_pack_start(GTK_BOX(hbox),GTK_WIDGET(resspin),TRUE,TRUE,0); gtk_widget_show(resspin); gtk_table_attach_defaults(GTK_TABLE(table),hbox,1,2,1,2); gtk_widget_show(hbox); // JPEG Quality hbox=gtk_hbox_new(FALSE,5); gtk_table_attach_defaults(GTK_TABLE(table),hbox,1,2,2,3); gtk_widget_show(hbox); label=gtk_label_new(_("JPEG Quality:")); gtk_misc_set_alignment(GTK_MISC(label),0.95,0.5); gtk_box_pack_start(GTK_BOX(hbox),GTK_WIDGET(label),TRUE,TRUE,0); gtk_widget_show(label); GtkWidget *qualspin=gtk_spin_button_new_with_range(60,100,1); gtk_box_pack_start(GTK_BOX(hbox),GTK_WIDGET(qualspin),FALSE,FALSE,0); gtk_widget_show(qualspin); // Colour management GtkWidget *outputprof=profileselector_new(&state.profilemanager,IS_TYPE_NULL,true); gtk_table_attach_defaults(GTK_TABLE(table),outputprof,1,2,4,5); gtk_widget_show(outputprof); GtkWidget *profactive=gtk_check_button_new_with_label(_("Output Profile:")); g_signal_connect(G_OBJECT(profactive),"toggled",G_CALLBACK(profenable_changed),outputprof); gtk_table_attach_defaults(GTK_TABLE(table),profactive,0,1,4,5); gtk_widget_show(profactive); char *dirname=substitute_homedir("$HOME_PICTURES"); gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(filechooser),dirname); gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(filechooser),"exported.jpg"); free(dirname); gtk_entry_set_text(GTK_ENTRY(pagesentry),"1-"); gtk_spin_button_set_value(GTK_SPIN_BUTTON(qualspin),85.0); const char *fn=state.profilemanager.FindString("ExportProfile"); if((!fn) || (strlen(fn)==0)) fn=state.profilemanager.FindString("DefaultRGBProfile"); if(fn && strlen(fn)) profileselector_set_filename(PROFILESELECTOR(outputprof),fn); gtk_toggle_button_set_state(GTK_TOGGLE_BUTTON(profactive),state.profilemanager.FindInt("ExportProfileActive")); profenable_changed(profactive,outputprof); gtk_widget_show(dialog); bool done=false; while(!done) { gint result=gtk_dialog_run(GTK_DIALOG(dialog)); switch(result) { case GTK_RESPONSE_CANCEL: done=true; break; case GTK_RESPONSE_OK: try { const char *profile=profileselector_get_filename(PROFILESELECTOR(outputprof)); bool profileactive=gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(profactive)); const char *pagerange=gtk_entry_get_text(GTK_ENTRY(pagesentry)); const char *outputfilename=gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(filechooser)); int res=int(gtk_spin_button_get_value(GTK_SPIN_BUTTON(resspin))); int quality=int(gtk_spin_button_get_value(GTK_SPIN_BUTTON(qualspin))); if(outputfilename) { state.profilemanager.SetInt("ExportProfileActive",profileactive); if(profileactive) state.profilemanager.SetString("ExportProfile",profile); Debug[TRACE] << "Page range: " << pagerange << endl; Debug[TRACE] << "Resolution: " << res << endl; Debug[TRACE] << "Using profile?: " << profileactive << endl; if(profileactive) Debug[TRACE] << " " << profile << endl; RangeParser rp(pagerange,state.layout->GetPages()); int p; CMTransformFactory *factory=state.profilemanager.GetTransformFactory(); while((p=rp.Next())) { Debug[TRACE] << "Exporting page " << p << " of " << state.layout->GetPages() << endl; Debug[TRACE] << "To filename... "; char *ftmp; if(state.layout->GetPages()>1) ftmp=SerialiseFilename(outputfilename,p,state.layout->GetPages()); else ftmp=strdup(outputfilename); Debug[TRACE] << ftmp << endl; ImageSource *is=state.layout->GetImageSource(p-1,CM_COLOURDEVICE_EXPORT,factory,res,true); if(is) { ProgressBar p(_("Exporting..."),true,GTK_WIDGET(parent)); if(profileactive) { CMSProfile *prof=state.profilemanager.GetProfile(CM_COLOURDEVICE_EXPORT); Debug[TRACE] << "Got profile " << prof->GetFilename() << endl; is->SetEmbeddedProfile(prof); Debug[TRACE] << "Set profile - saving..." << endl; } JPEGSaver ts(ftmp,is,quality); ts.SetProgress(&p); ts.Save(); delete is; } free(ftmp); } delete factory; done=true; } else ErrorMessage_Dialog(_("Please provide a filename."),GTK_WIDGET(parent)); } catch (const char *error) { ErrorMessage_Dialog(error,GTK_WIDGET(parent)); } break; } } gtk_widget_destroy(dialog); } char *Background_Dialog(GtkWindow *parent,PhotoPrint_State &state,char *oldfn) { char *nfn=oldfn; GtkWidget *dialog; dialog=gtk_dialog_new_with_buttons(_("Select a background..."), parent,GtkDialogFlags(0), GTK_STOCK_CANCEL,GTK_RESPONSE_CANCEL, GTK_STOCK_OK,GTK_RESPONSE_OK, NULL); gtk_window_set_default_size(GTK_WINDOW(dialog),250,350); GtkWidget *imagesel=imageselector_new(&state.backgroundsearchpath,GTK_SELECTION_SINGLE); gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox),imagesel,TRUE,TRUE,0); gtk_widget_show(imagesel); gtk_widget_show(dialog); imageselector_refresh(IMAGESELECTOR(imagesel)); imageselector_set_filename(IMAGESELECTOR(imagesel),oldfn); gint result=gtk_dialog_run(GTK_DIALOG(dialog)); switch(result) { case GTK_RESPONSE_CANCEL: break; case GTK_RESPONSE_OK: if(oldfn) free(oldfn); nfn=NULL; const char *nstr=imageselector_get_filename(IMAGESELECTOR(imagesel)); if(nstr) nfn=strdup(nstr); break; } gtk_widget_destroy(dialog); return(nfn); } struct customprofstate { Layout_ImageInfo *ii; GtkWidget *preview; GtkWidget *profselector; GtkWidget *profenabled; GtkWidget *intent; PhotoPrint_State *state; char *id; }; static void refreshprofiledialog(GtkWidget *wid,gpointer obj) { customprofstate *st=(customprofstate *)obj; const char *profile=profileselector_get_filename(PROFILESELECTOR(st->profselector)); bool profileactive=gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(st->profenabled)); if(profile) profile=st->state->profilemanager.SearchPaths(profile); Debug[TRACE] << "Got profileactive: " << profileactive << endl; if(profile) Debug[TRACE] << "Got profile: " << profile << endl; if(profileactive) st->ii->AssignProfile(profile); else st->ii->AssignProfile(NULL); LCMSWrapper_Intent intent=intentselector_getintent(INTENTSELECTOR(st->intent)); st->ii->SetRenderingIntent(intent); Debug[TRACE] << "Rendering intent: " << intent << endl; Debug[TRACE] << "Assigned" << endl; // FIXME - deal with Intent here. GdkPixbuf *tn=st->ii->GetThumbnail(); Debug[TRACE] << "Drawing new image" << endl; gtk_image_set_from_pixbuf(GTK_IMAGE(st->preview),tn); } static void profiledialog_profilechanged(GtkWidget *wid,gpointer obj) { customprofstate *st=(customprofstate *)obj; gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(st->profenabled),true); refreshprofiledialog(wid,obj); } void SetCustomProfileDialog(GtkWindow *parent,PhotoPrint_State &state,Layout_ImageInfo *ii) { if(!ii) { ErrorMessage_Dialog(_("Please select an image first!"),GTK_WIDGET(parent)); return; } // Disable the second preview if there's no monitor or default profile! // (A more elegant solution might be to have the profile manager fall back // to the built-in sRGB profile if there's no default profile!) CMSProfile *targetprof; CMColourDevice target=CM_COLOURDEVICE_NONE; if((targetprof=state.profilemanager.GetProfile(CM_COLOURDEVICE_DISPLAY))) target=CM_COLOURDEVICE_DISPLAY; else if((targetprof=state.profilemanager.GetProfile(CM_COLOURDEVICE_DEFAULTRGB))) target=CM_COLOURDEVICE_DEFAULTRGB; if(targetprof) delete targetprof; // Store the original CustomProfile and intent; strdup filename. const char *octmp=ii->GetAssignedProfile(); char *oldcustomprofile=NULL; if(octmp) oldcustomprofile=strdup(octmp); LCMSWrapper_Intent oldintent=ii->GetRenderingIntent(); customprofstate st; st.ii=ii; st.state=&state; GtkWidget *dialog; // GtkWidget *hbox; GtkWidget *label; dialog=gtk_dialog_new_with_buttons(_("Set Custom Profile..."), parent,GtkDialogFlags(0), GTK_STOCK_CANCEL,GTK_RESPONSE_CANCEL, GTK_STOCK_OK,GTK_RESPONSE_OK, NULL); GtkWidget *table=gtk_table_new(2,2,FALSE); gtk_container_set_border_width(GTK_CONTAINER(table),5); gtk_table_set_col_spacings(GTK_TABLE(table),10); gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox),table,FALSE,FALSE,5); gtk_widget_show(table); label=gtk_label_new(_("Before:")); gtk_table_attach_defaults(GTK_TABLE(table),label,0,1,0,1); gtk_widget_show(label); label=gtk_label_new(_("After:")); gtk_table_attach_defaults(GTK_TABLE(table),label,1,2,0,1); gtk_widget_show(label); GdkPixbuf *tn1=ii->GetThumbnail(); GtkWidget *image1 = gtk_image_new_from_pixbuf(tn1); GtkWidget *image2 = gtk_image_new_from_pixbuf(tn1); gtk_table_attach_defaults(GTK_TABLE(table),image1,0,1,1,2); gtk_widget_show(image1); if(target==CM_COLOURDEVICE_NONE) { label=gtk_label_new(_("Can't show a colour managed\npreview unless you choose\na Default RGB or Monitor profile\nin the Options->Colour Management\ndialog!")); gtk_table_attach_defaults(GTK_TABLE(table),label,1,2,1,2); gtk_widget_show(label); } else { gtk_table_attach_defaults(GTK_TABLE(table),image2,1,2,1,2); gtk_widget_show(image2); } st.preview=image2; table=gtk_table_new(2,3,FALSE); gtk_container_set_border_width(GTK_CONTAINER(table),5); gtk_table_set_col_spacings(GTK_TABLE(table),0); gtk_table_set_row_spacings(GTK_TABLE(table),5); gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox),table,FALSE,FALSE,5); gtk_widget_show(table); // Colour management ImageSource *is=ISLoadImage(ii->GetFilename()); IS_TYPE t=IS_TYPE(STRIP_ALPHA(is->type)); if(is->GetEmbeddedProfile()) { GtkWidget *tmp=gtk_label_new(_("Warning: Image already has an embedded profile\nAssigning a new one will over-ride it!")); gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox),tmp,FALSE,FALSE,5); gtk_widget_show(tmp); } delete is; // Analyse the image and fetch its colourspace. GtkWidget *outputprof=profileselector_new(&state.profilemanager,t,true); if(oldcustomprofile) profileselector_set_filename(PROFILESELECTOR(outputprof),oldcustomprofile); g_signal_connect(G_OBJECT(outputprof),"changed",G_CALLBACK(profiledialog_profilechanged),&st); gtk_table_attach_defaults(GTK_TABLE(table),outputprof,1,2,0,1); gtk_widget_show(outputprof); st.profselector=outputprof; GtkWidget *profactive=gtk_check_button_new_with_label(_("Assign Profile:")); gtk_toggle_button_set_state(GTK_TOGGLE_BUTTON(profactive),(oldcustomprofile!=NULL)); g_signal_connect(G_OBJECT(profactive),"toggled",G_CALLBACK(refreshprofiledialog),&st); gtk_table_attach_defaults(GTK_TABLE(table),profactive,0,1,0,1); gtk_widget_show(profactive); st.profenabled=profactive; label=gtk_label_new(_("Rendering intent:")); gtk_table_attach_defaults(GTK_TABLE(table),label,0,1,1,2); gtk_widget_show(label); st.intent = intentselector_new(&state.profilemanager); intentselector_setintent(INTENTSELECTOR(st.intent),oldintent); g_signal_connect(G_OBJECT(st.intent),"changed",G_CALLBACK(refreshprofiledialog),&st); gtk_table_attach_defaults(GTK_TABLE(table),st.intent,1,2,1,2); gtk_widget_show(st.intent); gtk_widget_show(dialog); bool done=false; while(!done) { gint result=gtk_dialog_run(GTK_DIALOG(dialog)); switch(result) { case GTK_RESPONSE_CANCEL: // restore original values... ii->AssignProfile(oldcustomprofile); ii->SetRenderingIntent(oldintent); done=true; break; case GTK_RESPONSE_OK: done=true; break; } } if(oldcustomprofile) free(oldcustomprofile); gtk_widget_destroy(dialog); } photoprint-0.4.2-pre2/pp_menu_help.h0000644000175000017500000000025411101462351014331 00000000000000#ifndef PP_MENU_HELP_H #define PP_MENU_HELP_H #include #include void BuildHelpMenu(void *userdata,GtkUIManager *ui_manager); #endif photoprint-0.4.2-pre2/pp_layout_single.cpp0000644000175000017500000002621511244336107015602 00000000000000#include #include #include #include #include #include #include #include #include "stpui_widgets/stpui_combo.h" #include "layout.h" #include "dialogs.h" #include "pp_pageextent.h" #include "pp_imagecontrol.h" #include "pp_layout_single_pageview.h" #include "pp_layout_single.h" #include "config.h" #include "gettext.h" #define _(x) gettext(x) enum { CHANGED_SIGNAL, POPUPMENU_SIGNAL, SELECTIONCHANGED_SIGNAL, LAST_SIGNAL }; static guint pp_layout_single_signals[LAST_SIGNAL] = { 0 }; static void pp_layout_single_class_init (pp_Layout_SingleClass *klass); static void pp_layout_single_init (pp_Layout_Single *stpuicombo); static void reflow(GtkWidget *wid,gpointer *ob) { pp_Layout_Single *lo=(pp_Layout_Single *)ob; pp_Layout_Single_PageView *pv=PP_LAYOUT_SINGLE_PAGEVIEW(lo->pageview); Layout_Single *l=(Layout_Single*)lo->state->layout; l->Reflow(); pp_layout_single_pageview_refresh(PP_LAYOUT_SINGLE_PAGEVIEW(pv)); int pages=l->GetPages(); gtk_widget_set_sensitive(lo->page,pages!=1); gtk_spin_button_set_range(GTK_SPIN_BUTTON(lo->page),1.0,pages); g_signal_emit(G_OBJECT (lo),pp_layout_single_signals[CHANGED_SIGNAL], 0); } static void pe_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_Single *lo=(pp_Layout_Single *)ob; pp_Layout_Single_PageView *pv=PP_LAYOUT_SINGLE_PAGEVIEW(lo->pageview); pp_layout_single_pageview_refresh(pv); g_signal_emit(G_OBJECT (ob),pp_layout_single_signals[CHANGED_SIGNAL], 0); } static void ic_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_Single *lo=(pp_Layout_Single *)ob; pp_Layout_Single_PageView *pv=PP_LAYOUT_SINGLE_PAGEVIEW(lo->pageview); pp_layout_single_pageview_refresh(PP_LAYOUT_SINGLE_PAGEVIEW(pv)); g_signal_emit(G_OBJECT (ob),pp_layout_single_signals[CHANGED_SIGNAL], 0); } static void hscale_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_Single *lo=(pp_Layout_Single *)ob; float hs=gtk_spin_button_get_value_as_float(GTK_SPIN_BUTTON(lo->hscale)); Layout_Single *l=(Layout_Single *)lo->state->layout; int page=l->GetCurrentPage(); Layout_Single_ImageInfo *ii=l->ImageAt(page); if(ii) { if(hs>=10.0 && hs<=1000.0) ii->hscale=hs; } g_signal_emit(G_OBJECT (lo),pp_layout_single_signals[CHANGED_SIGNAL], 0); } static void vscale_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_Single *lo=(pp_Layout_Single *)ob; float vs=gtk_spin_button_get_value_as_float(GTK_SPIN_BUTTON(lo->vscale)); Layout_Single *l=(Layout_Single *)lo->state->layout; int page=l->GetCurrentPage(); Layout_Single_ImageInfo *ii=l->ImageAt(page); if(ii) { if(vs>=10.0 && vs<=1000.0) ii->vscale=vs; } g_signal_emit(G_OBJECT (lo),pp_layout_single_signals[CHANGED_SIGNAL], 0); } static void page_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_Single *lo=(pp_Layout_Single *)ob; pp_Layout_Single_PageView *pv=PP_LAYOUT_SINGLE_PAGEVIEW(lo->pageview); pp_layout_single_pageview_set_page(pv,gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(lo->page))-1); g_signal_emit(G_OBJECT (lo),pp_layout_single_signals[CHANGED_SIGNAL], 0); } static void pageview_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_Single *lo=(pp_Layout_Single *)ob; g_signal_emit(G_OBJECT (lo),pp_layout_single_signals[CHANGED_SIGNAL], 0); } static void pageview_popupmenu(GtkWidget *wid,gpointer *ob) { pp_Layout_Single *lo=(pp_Layout_Single *)ob; g_signal_emit(G_OBJECT (lo),pp_layout_single_signals[POPUPMENU_SIGNAL], 0); } static void pageview_selectionchanged(GtkWidget *wid,gpointer *ob) { pp_Layout_Single *lo=(pp_Layout_Single *)ob; g_signal_emit(G_OBJECT (lo),pp_layout_single_signals[SELECTIONCHANGED_SIGNAL], 0); } void pp_layout_single_refresh(pp_Layout_Single *ob) { ob->state->layout->LayoutToDB(ob->state->layoutdb); int pages=ob->state->layout->GetPages(); int currentpage=ob->state->layout->GetCurrentPage(); gtk_widget_set_sensitive(ob->page,pages!=1); if(pages>1) { gtk_spin_button_set_range(GTK_SPIN_BUTTON(ob->page),1.0,pages); gtk_spin_button_set_value(GTK_SPIN_BUTTON(ob->page),currentpage+1); } Layout_Single *l=(Layout_Single *)ob->state->layout; Layout_Single_ImageInfo *ii=l->ImageAt(currentpage); gtk_widget_set_sensitive(ob->hscale,ii!=0); gtk_widget_set_sensitive(ob->vscale,ii!=0); if(ii) { l->SelectNone(); ii->SetSelected(true); pp_imagecontrol_set_image(PP_IMAGECONTROL(ob->imagecontrol)); gtk_spin_button_set_value(GTK_SPIN_BUTTON(ob->hscale),ii->hscale); gtk_spin_button_set_value(GTK_SPIN_BUTTON(ob->vscale),ii->vscale); } pp_Layout_Single_PageView *pv=PP_LAYOUT_SINGLE_PAGEVIEW(ob->pageview); if(pv) pp_layout_single_pageview_refresh(pv); pp_imagecontrol_refresh(PP_IMAGECONTROL(ob->imagecontrol)); pp_pageextent_refresh(PP_PAGEEXTENT(ob->pageextent)); } void pp_layout_single_set_unit(GtkWidget *wid,enum Units unit) { pp_Layout_Single *ob=PP_LAYOUT_SINGLE(wid); pp_pageextent_set_unit(PP_PAGEEXTENT(ob->pageextent),unit); } static void expander_callback(GObject *object, GParamSpec *param_spec, gpointer userdata) { pp_Layout_Single *ob=PP_LAYOUT_SINGLE(userdata); ob->state->SetInt("ExpanderState_Single",gtk_expander_get_expanded (GTK_EXPANDER(object))); } GtkWidget* pp_layout_single_new (PhotoPrint_State *state) { pp_Layout_Single *ob=PP_LAYOUT_SINGLE(g_object_new (pp_layout_single_get_type (), NULL)); gtk_container_set_border_width(GTK_CONTAINER(&ob->hbox),10); ob->state=state; GtkWidget *vbox; GtkWidget *hbox; GtkWidget *label; GtkWidget *frame = gtk_frame_new (NULL); gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN); gtk_box_pack_start(GTK_BOX (&ob->hbox), frame,TRUE,TRUE,0); gtk_widget_show (frame); ob->pageview = pp_layout_single_pageview_new ((Layout_Single *)ob->state->layout); g_signal_connect(G_OBJECT(ob->pageview),"changed",G_CALLBACK(pageview_changed),ob); g_signal_connect(G_OBJECT(ob->pageview),"reflow",G_CALLBACK(reflow),ob); g_signal_connect(G_OBJECT(ob->pageview),"popupmenu",G_CALLBACK(pageview_popupmenu),ob); g_signal_connect(G_OBJECT(ob->pageview),"selection_changed",G_CALLBACK(pageview_selectionchanged),ob); gtk_container_add (GTK_CONTAINER (frame), ob->pageview); gtk_widget_show (ob->pageview); // Scroll Window GtkWidget *scrollwin=gtk_scrolled_window_new(NULL,NULL); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrollwin), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); vbox = gtk_vbox_new (FALSE, 5); gtk_box_pack_start(GTK_BOX(&ob->hbox),vbox,FALSE,FALSE,0); gtk_widget_show (vbox); gtk_box_pack_start(GTK_BOX(vbox),scrollwin,TRUE,TRUE,0); gtk_widget_show (scrollwin); // Page number hbox=gtk_hbox_new(FALSE,5); label=gtk_label_new(_("Page:")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_box_pack_start(GTK_BOX(hbox),label,TRUE,TRUE,0); gtk_widget_show(label); ob->page=gtk_spin_button_new_with_range(1.0,2.0,1.0); g_signal_connect(G_OBJECT(ob->page),"value-changed",G_CALLBACK(page_changed),ob); gtk_widget_show(ob->page); gtk_box_pack_start(GTK_BOX(hbox),ob->page,FALSE,FALSE,0); gtk_box_pack_start(GTK_BOX(vbox),hbox,FALSE,FALSE,0); gtk_widget_show(hbox); // Contents of scrollwindow GtkWidget *hbox2=gtk_hbox_new(FALSE,0); gtk_widget_show (hbox2); vbox = gtk_vbox_new (FALSE, 0); gtk_box_pack_start(GTK_BOX(hbox2),vbox,TRUE,TRUE,5); gtk_scrolled_window_add_with_viewport (GTK_SCROLLED_WINDOW (scrollwin), hbox2); // gtk_container_foreach(GTK_CONTAINER(scrollwin),killshadow,NULL); gtk_widget_show (vbox); // Scale frame=gtk_expander_new(_("Manual scaling")); gtk_expander_set_expanded(GTK_EXPANDER(frame),state->FindInt("ExpanderState_Single")); g_signal_connect(frame, "notify::expanded",G_CALLBACK (expander_callback), ob); gtk_box_pack_start(GTK_BOX(vbox),frame,FALSE,FALSE,0); gtk_widget_show(frame); GtkWidget *table=gtk_table_new(4,2,false); gtk_table_set_row_spacing(GTK_TABLE(table),0,5); gtk_table_set_row_spacing(GTK_TABLE(table),2,3); gtk_table_set_col_spacings(GTK_TABLE(table),3); gtk_container_add(GTK_CONTAINER(frame),table); gtk_widget_show(table); // HScale spin button label=gtk_label_new(_("H (%):")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_table_attach_defaults(GTK_TABLE(table),label,0,1,0,1); gtk_widget_show(label); ob->hscale=gtk_spin_button_new_with_range(10.0,1000.0,0.1); gtk_spin_button_set_value(GTK_SPIN_BUTTON(ob->hscale),100); g_signal_connect(G_OBJECT(ob->hscale),"value-changed",G_CALLBACK(hscale_changed),ob); gtk_table_attach_defaults(GTK_TABLE(table),ob->hscale,1,2,0,1); gtk_widget_show(ob->hscale); // VScale spin button label=gtk_label_new(_("V (%):")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_table_attach_defaults(GTK_TABLE(table),label,0,1,1,2); gtk_widget_show(label); ob->vscale=gtk_spin_button_new_with_range(10.0,1000.0,0.1); gtk_spin_button_set_value(GTK_SPIN_BUTTON(ob->vscale),100); g_signal_connect(G_OBJECT(ob->vscale),"value-changed",G_CALLBACK(vscale_changed),ob); gtk_table_attach_defaults(GTK_TABLE(table),ob->vscale,1,2,1,2); gtk_widget_show(ob->vscale); // PageExtent ob->pageextent=pp_pageextent_new((Layout_Single *)ob->state->layout,ob->state); g_signal_connect(G_OBJECT(ob->pageextent),"changed",G_CALLBACK(pe_changed),ob); gtk_box_pack_start(GTK_BOX(vbox),ob->pageextent,FALSE,FALSE,0); gtk_widget_show(ob->pageextent); // ImageControl ob->imagecontrol=pp_imagecontrol_new(ob->state->layout); gtk_box_pack_start(GTK_BOX(vbox),ob->imagecontrol,TRUE,TRUE,0); g_signal_connect(G_OBJECT(ob->imagecontrol),"changed",G_CALLBACK(ic_changed),ob); gtk_widget_show(ob->imagecontrol); pp_layout_single_refresh(ob); return(GTK_WIDGET(ob)); } GType pp_layout_single_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo pp_layout_single_info = { sizeof (pp_Layout_SingleClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) pp_layout_single_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (pp_Layout_Single), 0, (GInstanceInitFunc) pp_layout_single_init, }; stpuic_type = g_type_register_static (GTK_TYPE_HBOX, "pp_Layout_Single", &pp_layout_single_info, (GTypeFlags)0); } return stpuic_type; } static void pp_layout_single_class_init (pp_Layout_SingleClass *klass) { pp_layout_single_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (klass), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_Layout_SingleClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); pp_layout_single_signals[POPUPMENU_SIGNAL] = g_signal_new ("popupmenu", G_TYPE_FROM_CLASS (klass), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_Layout_SingleClass, popupmenu), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); pp_layout_single_signals[SELECTIONCHANGED_SIGNAL] = g_signal_new ("selection_changed", G_TYPE_FROM_CLASS (klass), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_Layout_SingleClass, selection_changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void pp_layout_single_init (pp_Layout_Single *ob) { ob->state=NULL; ob->pageview=NULL; ob->imagecontrol=NULL; } photoprint-0.4.2-pre2/COPYING0000644000175000017500000004311011101462351012536 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. photoprint-0.4.2-pre2/README0000644000175000017500000000232611270552275012403 00000000000000PhotoPrint 0.4.2 - a utility to print multiple images per sheet, using Gutenprint, with support for 16-bit images and ICC profiles. *WARNING* This software is experimental - use it at your own risk. Currently JPG, BMP, TIFF and PNM images are supported natively, and other formats are supported through the use of GdkPixbuf. If you come across any file that PhotoPrint won't handle, please contact me at blackfive@fakenhamweb.co.uk, with a copy of the offending image, and I'll do my best to fix the problem. Requirements: ~~~~~~~~~~~~~ To compile and run PhotoPrint you will need: * Gutenprint 5.0.0 or later * LittleCMS * GTK+ 2.4 or later * NetPBM * LibJPEG * LibTIFF * CUPS (optional) (For compiling, of course, you need GCC and all the appropriate -devel packages installed.) Usage: ~~~~~~ photoprint [options] [image1] ... options are: -p - use alternative preset file -b - batch mode Create a folder in your home directory to store photoprint's preset files, called .photoprint Use the printer setup menu options to create settings suitable for your printer, and select Save Preset, Save As or Save Default to store them to disk. The user interface should be reasonably self-explanatory. photoprint-0.4.2-pre2/fotoprint.desktop0000644000175000017500000000103611131443557015135 00000000000000[Desktop Entry] Version=1.0 #Encoding=UTF-8 Name=PhotoPrint Name[ru]=ÐŸÐ°ÐºÐµÑ‚Ð½Ð°Ñ Ð¿ÐµÑ‡Ð°Ñ‚ÑŒ фотографий в PhotoPrint GenericName=Photo Printing GenericName[ru]=Печать фотографий Comment=Color managed printing of multiple photos on single page Comment[ru]=ЦветоуправлÑÐµÐ¼Ð°Ñ Ð¿Ð°ÐºÐµÑ‚Ð½Ð°Ñ Ð¿ÐµÑ‡Ð°Ñ‚ÑŒ фотографий Exec=photoprint %F Icon=fotoprint StartupNotify=true Terminal=false Type=Application Categories=Graphics;Photography;GNOME;GTK; MimeType=image/tiff;image/jpeg;image/png; photoprint-0.4.2-pre2/pp_menu_options.h0000644000175000017500000000057511101462351015102 00000000000000#ifndef PP_MENU_OPTIONS_H #define PP_MENU_OPTIONS_H #include #include #include "profilemanager/profilemanager.h" void BuildOptionsMenu(void *userdata,GtkUIManager *ui_manager); void OptionsMenu_SetProofMode(GtkUIManager *ui_manager,enum CMProofMode item); void OptionsMenu_SetHighresPreviews(GtkUIManager *ui_manager,int hrpreview); #endif photoprint-0.4.2-pre2/Makefile.in0000644000175000017500000011145311400237522013560 00000000000000# Makefile.in generated by automake 1.10.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 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@ # Makefile.am # RL 28/11/04 VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@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 = photoprint$(EXEEXT) check_PROGRAMS = menucheck$(EXEEXT) carouselcheck$(EXEEXT) \ misccheck$(EXEEXT) subdir = . DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/config.h.in \ $(top_srcdir)/configure ABOUT-NLS COPYING ChangeLog INSTALL \ NEWS TODO scripts/config.guess scripts/config.rpath \ scripts/config.sub scripts/depcomp scripts/install-sh \ scripts/ltmain.sh scripts/missing scripts/mkinstalldirs ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(SHELL) $(top_srcdir)/scripts/mkinstalldirs CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(desktopdir)" \ "$(DESTDIR)$(icondir)" binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) PROGRAMS = $(bin_PROGRAMS) am_carouselcheck_OBJECTS = carouselcheck.$(OBJEXT) carouselcheck_OBJECTS = $(am_carouselcheck_OBJECTS) carouselcheck_LDADD = $(LDADD) am__DEPENDENCIES_1 = carouselcheck_DEPENDENCIES = effects/libppeffects.la \ imagesource/libimagesource.la imageutils/libimageutils.la \ miscwidgets/libmiscwidgets.la \ profilemanager/libprofilemanager.la support/libsupport.la \ gp_cppsupport/libgp_cppsupport.la \ stpui_widgets/libstpui_widgets.la \ stp_support/libstp_support.la \ pixbufthumbnail/libpixbufthumbnail.la \ splashscreen/libsplashscreen.la $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) am_menucheck_OBJECTS = menucheck.$(OBJEXT) menucheck_OBJECTS = $(am_menucheck_OBJECTS) menucheck_LDADD = $(LDADD) menucheck_DEPENDENCIES = effects/libppeffects.la \ imagesource/libimagesource.la imageutils/libimageutils.la \ miscwidgets/libmiscwidgets.la \ profilemanager/libprofilemanager.la support/libsupport.la \ gp_cppsupport/libgp_cppsupport.la \ stpui_widgets/libstpui_widgets.la \ stp_support/libstp_support.la \ pixbufthumbnail/libpixbufthumbnail.la \ splashscreen/libsplashscreen.la $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) am_misccheck_OBJECTS = misccheck.$(OBJEXT) misccheck_OBJECTS = $(am_misccheck_OBJECTS) misccheck_LDADD = $(LDADD) misccheck_DEPENDENCIES = effects/libppeffects.la \ imagesource/libimagesource.la imageutils/libimageutils.la \ miscwidgets/libmiscwidgets.la \ profilemanager/libprofilemanager.la support/libsupport.la \ gp_cppsupport/libgp_cppsupport.la \ stpui_widgets/libstpui_widgets.la \ stp_support/libstp_support.la \ pixbufthumbnail/libpixbufthumbnail.la \ splashscreen/libsplashscreen.la $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) am_photoprint_OBJECTS = dialogs.$(OBJEXT) layout.$(OBJEXT) \ layout_imageinfo.$(OBJEXT) layout_carousel.$(OBJEXT) \ layout_nup.$(OBJEXT) layout_poster.$(OBJEXT) \ layout_single.$(OBJEXT) histogram.$(OBJEXT) \ photoprint.$(OBJEXT) photoprint_state.$(OBJEXT) \ pp_cms.$(OBJEXT) pp_imagecontrol.$(OBJEXT) \ pp_mainwindow.$(OBJEXT) pp_menu_file.$(OBJEXT) \ pp_menu_edit.$(OBJEXT) pp_menu_layout.$(OBJEXT) \ pp_menu_image.$(OBJEXT) pp_menu_options.$(OBJEXT) \ pp_menu_shortcuts.$(OBJEXT) pp_menu_help.$(OBJEXT) \ pp_layout_carousel.$(OBJEXT) \ pp_layout_carousel_pageview.$(OBJEXT) pp_layout_nup.$(OBJEXT) \ pp_layout_nup_pageview.$(OBJEXT) pp_layout_poster.$(OBJEXT) \ pp_layout_poster_pageview.$(OBJEXT) pp_layout_single.$(OBJEXT) \ pp_layout_single_pageview.$(OBJEXT) pp_histogram.$(OBJEXT) \ pp_pageextent.$(OBJEXT) pp_scaling.$(OBJEXT) \ pp_sigcontrol.$(OBJEXT) pp_units.$(OBJEXT) \ pp_imageinfo.$(OBJEXT) printpreview.$(OBJEXT) photoprint_OBJECTS = $(am_photoprint_OBJECTS) photoprint_LDADD = $(LDADD) photoprint_DEPENDENCIES = effects/libppeffects.la \ imagesource/libimagesource.la imageutils/libimageutils.la \ miscwidgets/libmiscwidgets.la \ profilemanager/libprofilemanager.la support/libsupport.la \ gp_cppsupport/libgp_cppsupport.la \ stpui_widgets/libstpui_widgets.la \ stp_support/libstp_support.la \ pixbufthumbnail/libpixbufthumbnail.la \ splashscreen/libsplashscreen.la $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) DEFAULT_INCLUDES = -I.@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/scripts/depcomp am__depfiles_maybe = depfiles CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) CXXLD = $(CXX) CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ SOURCES = $(carouselcheck_SOURCES) $(menucheck_SOURCES) \ $(misccheck_SOURCES) $(photoprint_SOURCES) DIST_SOURCES = $(carouselcheck_SOURCES) $(menucheck_SOURCES) \ $(misccheck_SOURCES) $(photoprint_SOURCES) RECURSIVE_TARGETS = all-recursive check-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 uninstall-recursive 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 = `echo $$p | sed -e 's|^.*/||'`; desktopDATA_INSTALL = $(INSTALL_DATA) iconDATA_INSTALL = $(INSTALL_DATA) DATA = $(desktop_DATA) $(icon_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ { test ! -d $(distdir) \ || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -fr $(distdir); }; } DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best distuninstallcheck_listfiles = find . -type f -print distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DSYMUTIL = @DSYMUTIL@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ GDKPIXBUF2_CFLAGS = @GDKPIXBUF2_CFLAGS@ GDKPIXBUF2_LIBS = @GDKPIXBUF2_LIBS@ GETOPT_LIBS = @GETOPT_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIB2_CFLAGS = @GLIB2_CFLAGS@ GLIB2_LIBS = @GLIB2_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GP_CFLAGS = @GP_CFLAGS@ GP_LIBS = @GP_LIBS@ GREP = @GREP@ GTHREAD_CFLAGS = @GTHREAD_CFLAGS@ GTHREAD_LIBS = @GTHREAD_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ JPEG_LIBS = @JPEG_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ LCMS_LIBS = @LCMS_LIBS@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBM_LIBS = @LIBM_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NMEDIT = @NMEDIT@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ POSUB = @POSUB@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ TIFF_LIBS = @TIFF_LIBS@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ 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@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ 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 = $(datadir)/locale localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = po support imagesource imageutils miscwidgets stpui_widgets stp_support gp_cppsupport pixbufthumbnail \ splashscreen profilemanager effects borders shortcuts AM_CXXFLAGS = -DLOCALEDIR=\"$(localedir)\" -Wall -I./support/ -I./miscwidgets -I./imagesource/ -I./splashscreen -I./profilemanager -I./effects \ $(LCMS_CFLAGS) $(GP_CFLAGS) $(GTK2_CFLAGS) photoprint_SOURCES = \ dialogs.cpp \ dialogs.h \ layoutdb.h \ layout.cpp \ layout.h \ layout_imageinfo.cpp \ layout_imageinfo.h \ layout_carousel.cpp \ layout_carousel.h \ layout_nup.cpp \ layout_nup.h \ layout_poster.cpp \ layout_poster.h \ layout_single.cpp \ layout_single.h \ histogram.cpp \ histogram.h \ photoprint.cpp \ photoprint_state.cpp \ photoprint_state.h \ pp_cms.cpp \ pp_cms.h \ pp_imagecontrol.cpp \ pp_imagecontrol.h \ pp_mainwindow.cpp \ pp_mainwindow.h \ pp_menu_file.cpp \ pp_menu_file.h \ pp_menu_edit.cpp \ pp_menu_edit.h \ pp_menu_layout.cpp \ pp_menu_layout.h \ pp_menu_image.cpp \ pp_menu_image.h \ pp_menu_options.cpp \ pp_menu_options.h \ pp_menu_shortcuts.cpp \ pp_menu_shortcuts.h \ pp_menu_help.cpp \ pp_menu_help.h \ pp_layout_carousel.cpp \ pp_layout_carousel.h \ pp_layout_carousel_pageview.cpp \ pp_layout_carousel_pageview.h \ pp_layout_nup.cpp \ pp_layout_nup.h \ pp_layout_nup_pageview.cpp \ pp_layout_nup_pageview.h \ pp_layout_poster.cpp \ pp_layout_poster.h \ pp_layout_poster_pageview.cpp \ pp_layout_poster_pageview.h \ pp_layout_single.cpp \ pp_layout_single.h \ pp_layout_single_pageview.cpp \ pp_layout_single_pageview.h \ pp_histogram.cpp \ pp_histogram.h \ pp_pageextent.cpp \ pp_pageextent.h \ pp_scaling.cpp \ pp_scaling.h \ pp_sigcontrol.cpp \ pp_sigcontrol.h \ pp_units.cpp \ pp_units.h \ pp_imageinfo.cpp \ pp_imageinfo.h \ printpreview.cpp \ printpreview.h \ cmtransformworker.h \ gettext.h LDADD = \ effects/libppeffects.la \ imagesource/libimagesource.la \ imageutils/libimageutils.la \ miscwidgets/libmiscwidgets.la \ profilemanager/libprofilemanager.la \ support/libsupport.la \ gp_cppsupport/libgp_cppsupport.la \ stpui_widgets/libstpui_widgets.la \ stp_support/libstp_support.la \ pixbufthumbnail/libpixbufthumbnail.la \ splashscreen/libsplashscreen.la \ $(LIBINTL) $(LIBM_LIBS) $(GETOPT_LIBS) $(JPEG_LIBS) $(PNM_LIBS) $(TIFF_LIBS) $(LCMS_LIBS) $(GP_LIBS) $(GTK2_LIBS) menucheck_SOURCES = menucheck.cpp carouselcheck_SOURCES = carouselcheck.cpp misccheck_SOURCES = misccheck.cpp desktopdir = $(datadir)/applications desktop_DATA = fotoprint.desktop icondir = $(datadir)/icons/hicolor/48x48/apps/ icon_DATA = fotoprint.png EXTRA_DIST = COPYING README INSTALL TODO photoprint.1 fotoprint.desktop fotoprint.png all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: .SUFFIXES: .cpp .lo .o .obj am--refresh: @: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign '; \ cd $(srcdir) && $(AUTOMAKE) --foreign \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign Makefile .PRECIOUS: 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) cd $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) config.h: stamp-h1 @if test ! -f $@; then \ rm -f stamp-h1; \ $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \ else :; fi 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) cd $(top_srcdir) && $(AUTOHEADER) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" @list='$(bin_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ else :; fi; \ done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ rm -f "$(DESTDIR)$(bindir)/$$f"; \ done clean-binPROGRAMS: @list='$(bin_PROGRAMS)'; for p in $$list; do \ f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ echo " rm -f $$p $$f"; \ rm -f $$p $$f ; \ done clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ echo " rm -f $$p $$f"; \ rm -f $$p $$f ; \ done carouselcheck$(EXEEXT): $(carouselcheck_OBJECTS) $(carouselcheck_DEPENDENCIES) @rm -f carouselcheck$(EXEEXT) $(CXXLINK) $(carouselcheck_OBJECTS) $(carouselcheck_LDADD) $(LIBS) menucheck$(EXEEXT): $(menucheck_OBJECTS) $(menucheck_DEPENDENCIES) @rm -f menucheck$(EXEEXT) $(CXXLINK) $(menucheck_OBJECTS) $(menucheck_LDADD) $(LIBS) misccheck$(EXEEXT): $(misccheck_OBJECTS) $(misccheck_DEPENDENCIES) @rm -f misccheck$(EXEEXT) $(CXXLINK) $(misccheck_OBJECTS) $(misccheck_LDADD) $(LIBS) photoprint$(EXEEXT): $(photoprint_OBJECTS) $(photoprint_DEPENDENCIES) @rm -f photoprint$(EXEEXT) $(CXXLINK) $(photoprint_OBJECTS) $(photoprint_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/carouselcheck.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dialogs.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/histogram.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/layout.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/layout_carousel.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/layout_imageinfo.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/layout_nup.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/layout_poster.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/layout_single.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/menucheck.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/misccheck.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/photoprint.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/photoprint_state.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pp_cms.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pp_histogram.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pp_imagecontrol.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pp_imageinfo.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pp_layout_carousel.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pp_layout_carousel_pageview.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pp_layout_nup.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pp_layout_nup_pageview.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pp_layout_poster.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pp_layout_poster_pageview.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pp_layout_single.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pp_layout_single_pageview.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pp_mainwindow.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pp_menu_edit.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pp_menu_file.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pp_menu_help.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pp_menu_image.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pp_menu_layout.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pp_menu_options.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pp_menu_shortcuts.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pp_pageextent.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pp_scaling.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pp_sigcontrol.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pp_units.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/printpreview.Po@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool install-desktopDATA: $(desktop_DATA) @$(NORMAL_INSTALL) test -z "$(desktopdir)" || $(MKDIR_P) "$(DESTDIR)$(desktopdir)" @list='$(desktop_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ echo " $(desktopDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(desktopdir)/$$f'"; \ $(desktopDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(desktopdir)/$$f"; \ done uninstall-desktopDATA: @$(NORMAL_UNINSTALL) @list='$(desktop_DATA)'; for p in $$list; do \ f=$(am__strip_dir) \ echo " rm -f '$(DESTDIR)$(desktopdir)/$$f'"; \ rm -f "$(DESTDIR)$(desktopdir)/$$f"; \ done install-iconDATA: $(icon_DATA) @$(NORMAL_INSTALL) test -z "$(icondir)" || $(MKDIR_P) "$(DESTDIR)$(icondir)" @list='$(icon_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ echo " $(iconDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(icondir)/$$f'"; \ $(iconDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(icondir)/$$f"; \ done uninstall-iconDATA: @$(NORMAL_UNINSTALL) @list='$(icon_DATA)'; for p in $$list; do \ f=$(am__strip_dir) \ echo " rm -f '$(DESTDIR)$(icondir)/$$f'"; \ rm -f "$(DESTDIR)$(icondir)/$$f"; \ done # 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. $(RECURSIVE_TARGETS): @failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; 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; \ (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" $(RECURSIVE_CLEAN_TARGETS): @failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ 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 || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags 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 $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$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 \ test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ distdir=`$(am__cd) $(distdir) && pwd`; \ top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$top_distdir" \ distdir="$$distdir/$$subdir" \ am__remove_distdir=: \ am__skip_length_check=: \ distdir) \ || exit 1; \ fi; \ done -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -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__remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 $(am__remove_distdir) dist-lzma: distdir tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma $(am__remove_distdir) dist-tarZ: distdir tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__remove_distdir) dist-shar: distdir shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__remove_distdir) dist dist-all: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__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) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir); chmod a+w $(distdir) mkdir $(distdir)/_build mkdir $(distdir)/_inst chmod a-w $(distdir) dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && cd $(distdir)/_build \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(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 $(am__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: @cd $(distuninstallcheck_dir) \ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ || { 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 $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) check: check-recursive all-am: Makefile $(PROGRAMS) $(DATA) config.h installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(icondir)"; 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: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_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-checkPROGRAMS clean-generic \ clean-libtool 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-libtool distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive info: info-recursive info-am: install-data-am: install-desktopDATA install-iconDATA install-dvi: install-dvi-recursive install-exec-am: install-binPROGRAMS install-html: install-html-recursive install-info: install-info-recursive install-man: install-pdf: install-pdf-recursive install-ps: install-ps-recursive 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 \ mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-desktopDATA \ uninstall-iconDATA .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ install-strip .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am am--refresh check check-am clean clean-binPROGRAMS \ clean-checkPROGRAMS clean-generic clean-libtool ctags \ ctags-recursive dist dist-all dist-bzip2 dist-gzip dist-lzma \ dist-shar dist-tarZ dist-zip distcheck distclean \ distclean-compile distclean-generic distclean-hdr \ distclean-libtool 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-desktopDATA install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-iconDATA install-info install-info-am install-man \ 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 \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \ uninstall uninstall-am uninstall-binPROGRAMS \ uninstall-desktopDATA uninstall-iconDATA imagesource/libimagesource.la: cd imagesource $(MAKE) libimagesource.la support/libsupport.la: cd support $(MAKE) libsupport.la profilemanager/libprofilemanager.la: cd profilemanager $(MAKE) libprofilemanager.la stpui_widgets/libstpui_widgets.la: cd stpui_widgets $(MAKE) libstpui_widgets.la stp_support/libstp_support.la: cd stp_support $(MAKE) libstp_support.la gp_cppsupport/libgp_cppsupport.la: cd gp_cppsupport $(MAKE) libgp_cppsupport.la pixbufthumbnail/libpixbufthumbnail.la: cd pixbufthumbnail $(MAKE) libpixbufthumbnail.la effects/libppeffects.la: cd effects $(MAKE) libppeffects.la splashscreen/libsplashscreen.la: cd splashscreen $(MAKE) libsplashscreen.la # 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: photoprint-0.4.2-pre2/pp_layout_poster.h0000644000175000017500000000314111400247371015271 00000000000000#ifndef __PP_LAYOUT_POSTER_H__ #define __PP_LAYOUT_POSTER_H__ #include #include #include #include #include #include #include #include "stpui_widgets/units.h" #include "photoprint_state.h" #include "pp_sigcontrol.h" G_BEGIN_DECLS #define PP_LAYOUT_POSTER_TYPE (pp_layout_poster_get_type()) #define PP_LAYOUT_POSTER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PP_LAYOUT_POSTER_TYPE, pp_Layout_Poster)) #define PP_LAYOUT_POSTER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PP_LAYOUT_POSTER_TYPE, pp_Layout_PosterClass)) #define IS_PP_LAYOUT_POSTER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PP_LAYOUT_POSTER_TYPE)) #define IS_PP_LAYOUT_POSTER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PP_LAYOUT_POSTER_TYPE)) typedef struct _pp_Layout_Poster pp_Layout_Poster; typedef struct _pp_Layout_PosterClass pp_Layout_PosterClass; struct _pp_Layout_Poster { GtkHBox hbox; GtkWidget *pageview; GtkWidget *page; GtkWidget *pageextent; GtkWidget *posterwidth; GtkWidget *posterheight; GtkWidget *hoverlap; GtkWidget *voverlap; GtkWidget *htiles; GtkWidget *vtiles; GtkWidget *imagecontrol; PhotoPrint_State *state; }; struct _pp_Layout_PosterClass { GtkHBoxClass parent_class; void (*changed)(pp_Layout_Poster *book); }; GType pp_layout_poster_get_type (void); GtkWidget* pp_layout_poster_new (PhotoPrint_State *state); void pp_layout_poster_refresh(pp_Layout_Poster *ob); void pp_layout_poster_set_unit(GtkWidget *wid,enum Units unit); G_END_DECLS #endif /* __PP_LAYOUT_POSTER_H__ */ photoprint-0.4.2-pre2/pp_menu_layout.cpp0000644000175000017500000001413711306464310015262 00000000000000#include #include #include #include #include #include "pp_menu_layout.h" #include "pp_mainwindow.h" #include "dialogs.h" #include "miscwidgets/generaldialogs.h" #include "progressbar.h" #include "support/debug.h" #include "config.h" #include "gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) using namespace std; enum LAYOUTRADIOOPTIONS {LAYOUT_NUP,LAYOUT_SINGLE,LAYOUT_POSTER,LAYOUT_CAROUSEL}; static void layoutmenu_clearlayout(GtkAction *act,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; mw->state->layout->Clear(); pp_mainwindow_refresh(mw); } static void layoutmenu_single(gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; if(strcmp(mw->state->layoutdb.FindString("LayoutType"),"Single")==0) return; mw->state->layoutdb.SetString("LayoutType","Single"); if(mw->layout) mw->state->layout->LayoutToDB(mw->state->layoutdb); pp_mainwindow_rebuild(mw); } static void layoutmenu_nup(gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; if(strcmp(mw->state->layoutdb.FindString("LayoutType"),"NUp")==0) return; mw->state->layoutdb.SetString("LayoutType","NUp"); if(mw->layout) mw->state->layout->LayoutToDB(mw->state->layoutdb); pp_mainwindow_rebuild(mw); } static void layoutmenu_carousel(gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; if(strcmp(mw->state->layoutdb.FindString("LayoutType"),"Carousel")==0) return; mw->state->layoutdb.SetString("LayoutType","Carousel"); if(mw->layout) mw->state->layout->LayoutToDB(mw->state->layoutdb); pp_mainwindow_rebuild(mw); } static void layoutmenu_poster(gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; if(strcmp(mw->state->layoutdb.FindString("LayoutType"),"Poster")==0) return; mw->state->layoutdb.SetString("LayoutType","Poster"); if(mw->layout) mw->state->layout->LayoutToDB(mw->state->layoutdb); pp_mainwindow_rebuild(mw); } static void layoutmenu_radio_dispatch(GtkAction *act,GtkRadioAction *ra,gpointer *ob) { switch(gtk_radio_action_get_current_value(ra)) { case LAYOUT_NUP: layoutmenu_nup(ob); break; case LAYOUT_SINGLE: layoutmenu_single(ob); break; case LAYOUT_CAROUSEL: layoutmenu_carousel(ob); break; case LAYOUT_POSTER: layoutmenu_poster(ob); break; } } static void layoutmenu_setbackground(GtkAction *act,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; static char *prevfile=NULL; // Need to get existing filename... char *bg=Background_Dialog(&mw->window,*mw->state,prevfile); if(bg) Debug[TRACE] << "Selected " << bg << endl; mw->state->layout->SetBackground(bg); // if(prevfile) // free(prevfile); prevfile=bg; pp_mainwindow_refresh(mw); } static GtkActionEntry layoutmenu_entries[] = { { "LayoutMenu", NULL, N_("_Layout") }, { "ClearLayout", NULL, N_("_Clear Layout"), "K", N_("Remove all images from the layout"), G_CALLBACK(layoutmenu_clearlayout) }, { "SetBackground", NULL, N_("Set _Background"), "B", N_("Set a background image for the current layout"), G_CALLBACK(layoutmenu_setbackground) }, }; static GtkRadioActionEntry layoutmenu_radio_entries[] = { { "AutoLayout", NULL, N_("_Auto Layout"), NULL, N_("Automatically place images in a grid"), LAYOUT_NUP }, { "Poster", NULL, N_("_Poster"), NULL, N_("Print an image in multiple pages, to be assembled into a poster"), LAYOUT_POSTER }, { "Carousel", NULL, N_("_Carousel"), NULL, N_("Fade images into a circular 'carousel' - ideal for CD labels."), LAYOUT_CAROUSEL }, { "ManualSize", NULL, N_("_Manual Size"), NULL, N_("Print images on a single sheet, at a specified scale."), LAYOUT_SINGLE } }; static const char *layoutmenu_ui_description = "" " " " " " " " " " " " " " " " " " " " " " " ""; void BuildLayoutMenu(void *userdata,GtkUIManager *ui_manager) { GError *error=NULL; GtkActionGroup *action_group; action_group = gtk_action_group_new ("LayoutMenuActions"); gtk_action_group_set_translation_domain(action_group,PACKAGE); gtk_action_group_add_actions (action_group, layoutmenu_entries, G_N_ELEMENTS (layoutmenu_entries), userdata); gtk_action_group_add_radio_actions (action_group, layoutmenu_radio_entries, G_N_ELEMENTS (layoutmenu_radio_entries), 0, G_CALLBACK(layoutmenu_radio_dispatch), userdata); gtk_ui_manager_insert_action_group (ui_manager, action_group, 0); if (!gtk_ui_manager_add_ui_from_string (ui_manager, layoutmenu_ui_description, -1, &error)) throw error->message; } void LayoutMenu_SetLayout(GtkUIManager *ui_manager,const char *layouttype) { enum LAYOUTRADIOOPTIONS item=LAYOUT_NUP; if(strcmp(layouttype,"Single")==0) item=LAYOUT_SINGLE; if(strcmp(layouttype,"NUp")==0) item=LAYOUT_NUP; if(strcmp(layouttype,"Poster")==0) item=LAYOUT_POSTER; if(strcmp(layouttype,"Carousel")==0) item=LAYOUT_CAROUSEL; #if 0 GtkAction *act=gtk_ui_manager_get_action(ui_manager,"/MainMenu/LayoutMenu/AutoLayout"); if(act) gtk_radio_action_set_current_value(GTK_RADIO_ACTION(act),item); #else const char *menupaths[]= { "/MainMenu/LayoutMenu/AutoLayout", "/MainMenu/LayoutMenu/ManualSize", "/MainMenu/LayoutMenu/Poster", "/MainMenu/LayoutMenu/Carousel" }; GtkWidget *w; for(unsigned int i=0;i<(sizeof(menupaths)/sizeof(const char *));++i) { w=gtk_ui_manager_get_widget(ui_manager,menupaths[i]); if(w) { gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(w),(enum LAYOUTRADIOOPTIONS)i==item); } } #endif } void LayoutMenu_SetLayoutCapabilities(GtkUIManager *ui_manager,int features) { struct menucapentry { const char *path; int flag; }; menucapentry tags[]={ {"/MainMenu/LayoutMenu/SetBackground",PPLAYOUT_BACKGROUND}, {NULL,0} }; menucapentry *p=&tags[0]; while(p->flag) { GtkWidget *w=gtk_ui_manager_get_widget(ui_manager,p->path); if(w) gtk_widget_set_sensitive(w,(features&p->flag)!=0); ++p; } } photoprint-0.4.2-pre2/photoprint_state.h0000644000175000017500000000216211244336107015273 00000000000000#ifndef PHOTOPRINT_STATE_H #define PHOTOPRINT_STATE_H #include "layout.h" #include "support/configdb.h" #include "stpui_widgets/units.h" #include "gp_cppsupport/printoutput.h" #include "gp_cppsupport/gprinter.h" #include "support/progress.h" #include "profilemanager/profilemanager.h" #include "support/searchpath.h" class PhotoPrint_State : public ConfigFile, public ConfigDB { public: PhotoPrint_State(bool batchmode=FALSE); ~PhotoPrint_State(); void SetFilename(const char *file); void SetDefaultFilename(); void ParseConfigFile(); // Parses a file but doesn't update filename or reset printer // used to apply supplementary options, such as layout or profiling modes. void ParseSupplementaryConfig(const char *filename); bool SaveConfigFile(); bool NewLayout(Progress *p=NULL); void SetUnits(enum Units unit); enum Units GetUnits(); Layout *layout; char *filename; LayoutDB layoutdb; PrintOutput printoutput; GPrinter printer; ProfileManager profilemanager; SearchPathHandler bordersearchpath; SearchPathHandler backgroundsearchpath; bool batchmode; protected: static ConfigTemplate Template[]; }; #endif photoprint-0.4.2-pre2/gp_cppsupport/0000777000175000017500000000000011400250525014475 500000000000000photoprint-0.4.2-pre2/gp_cppsupport/printerqueueswrapper.h0000644000175000017500000000156711316353305021115 00000000000000#ifndef PRINTERQUEUES_WRAPPER_H #define PRINTERQUEUES_WRAPPER_H #include "stp_support/printerqueues.h" class PrinterQueues { public: PrinterQueues(); ~PrinterQueues(); int GetPrinterCount(); char *GetPrinterName(int idx); char *GetPrinterDriver(const char *printername); char *GetPrinterDriver(); const char *GetPrinterQueue(); void SetPrinterQueue(const char *queue); bool PrinterQueueExists(const char *queue); char *GetDriver(); char *GetPPD(); const char *GetCustomCommand(); void SetCustomCommand(const char *cmd); void SetDataType(enum pqinfo_datatype type); bool InitialiseJob(const char *extendedopts=NULL); // CUPS options to pass on the command line void InitialisePage(); void EndPage(); void EndJob(); void CancelJob(); int WriteData(const char *data,int bytecount); struct pqinfo *GetPQInfo(); protected: struct pqinfo *queues; }; #endif photoprint-0.4.2-pre2/gp_cppsupport/gprintersettings.cpp0000644000175000017500000003506211266334346020554 00000000000000/* * gprintersettings.cpp - Bridges GutenPrint's stp_vars_t and the configuration file. * A subclass of ConfigSectionHandler. * * Copyright (c) 2004, 2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * * TODO: Add support for multi-line parameters (heredoc syntax?) */ #include #include #include #include #include "stp_support/stputil.h" #include "gprintersettings.h" #include "../support/debug.h" #include "../support/util.h" #include "../miscwidgets/generaldialogs.h" #include "../config.h" #include "../gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) #define DEFAULT_PPD_STRING "" using namespace std; static void dumpstrings(const stp_parameter_t *desc) { int j,strcount; stp_string_list_t *strlist=desc->bounds.str; if(strlist) { strcount=stp_string_list_count(strlist); for(j=0;jtext,p->name); } } else fprintf(stderr," No string list!\n"); } static void dumpvars(stp_vars_t *v) { stp_parameter_list_t params = stp_get_parameter_list(v); int count = stp_parameter_list_count(params); for (int i = 0; i < count; i++) { const stp_parameter_t *p = stp_parameter_list_param(params, i); // if((p->p_level<=STP_PARAMETER_LEVEL_ADVANCED4) // && ((p->p_class==STP_PARAMETER_CLASS_FEATURE) || (p->p_class==STP_PARAMETER_CLASS_OUTPUT))) { stp_parameter_t desc; stp_describe_parameter(v,p->name,&desc); const char *str; int ival; double fval; fprintf(stderr,"%s, %d, %d, %d, %d ",desc.name,desc.p_type,p->p_type,desc.p_class,desc.p_level); if(desc.is_active) { fprintf(stderr,", Active"); } else { fprintf(stderr,", Inactive"); } switch(desc.p_type) { case STP_PARAMETER_TYPE_STRING_LIST: str=stp_get_string_parameter(v,desc.name); fprintf(stderr,", StringList\n"); dumpstrings(&desc); if(str) fprintf(stderr," Currently set to: %s\n",str); break; case STP_PARAMETER_TYPE_INT: ival=stp_get_int_parameter(v,desc.name); fprintf(stderr,", Int\n"); fprintf(stderr," Currently set to: %d\n",ival); break; case STP_PARAMETER_TYPE_BOOLEAN: ival=stp_get_boolean_parameter(v,desc.name); fprintf(stderr,", Boolean\n"); fprintf(stderr," Currently set to: %d\n",ival); break; case STP_PARAMETER_TYPE_DOUBLE: fval=stp_get_float_parameter(v,desc.name); fprintf(stderr,", Double\n"); fprintf(stderr," Currently set to: %f\n",fval); break; default: fprintf(stderr,", Other\n"); break; } } } stp_parameter_list_destroy(params); } void GPrinterSettings::Dump() { dumpvars(stpvars); } GPrinterSettings::GPrinterSettings(PrintOutput &output,ConfigFile *inf,const char *section) : ConfigSectionHandler(inf,section), PageExtent(), stpvars(NULL), output(output), initialised(false), ppdsizes_workaround_done(false) { stpvars=stp_vars_create(); // Set the driver to that of the default queue in case no preset is loaded const char *driver=output.FindString("Driver"); if(!SetDriver(driver)) output.SetString("Driver",DEFAULT_PRINTER_DRIVER); } GPrinterSettings::~GPrinterSettings() { if(stpvars) stp_vars_destroy(stpvars); } void GPrinterSettings::SelectSection() { /* Slight hack here: The printer driver is stored in the [Output] section which is prior to the [Print] section. Clearing this forces the driver to be set before the printer options are set */ initialised=false; } void GPrinterSettings::ParseString(const char *string) { if(!initialised) { const char *driver=output.FindString("Driver"); if(!SetDriver(driver)) output.SetString("Driver",DEFAULT_PRINTER_DRIVER); initialised=true; } while(*string==' ') ++string; char *value; char *token; value=token=strdup(string); int l=strlen(token)-1; while((l>0) && ((token[l]=='\n') || (token[l]=='\r'))) --l; token[l+1]=0; while(1) { switch (*value) { case '\0': free(token); return; break; case '=': *value='\0'; ++value; if(*value) { if(strcmp("CustomWidth",token)==0) { Debug[TRACE] << "Setting custom width to: " << value << endl; stp_set_page_width(stpvars,pagewidth=atoi(value)); } else if(strcmp("CustomHeight",token)==0) { Debug[TRACE] << "Setting custom height to: " << value << endl; stp_set_page_height(stpvars,pageheight=atoi(value)); } else { stp_parameter_t param; stp_describe_parameter(stpvars,token,¶m); switch(param.p_type) { case STP_PARAMETER_TYPE_STRING_LIST: if(strcmp("PageSize",token)==0) Debug[TRACE] << "Setting PageSize to: " << value << endl; stp_set_string_parameter(stpvars,token,value); break; case STP_PARAMETER_TYPE_FILE: // Because the queue PPD filenames returned by CUPS // aren't persistent between sessions, we have to // save an escape string, and substitute the current // filename at preset loading time. if(strcmp(value,DEFAULT_PPD_STRING)==0) { Debug[TRACE] << "*** Fetching default PPD filename" << endl; char *defppd=output.GetPPD(); if(defppd) { Debug[TRACE] << "Got default PPD filename: " << defppd << endl; stp_set_file_parameter(stpvars,token,defppd); free(defppd); stp_parameter_t desc2; stp_describe_parameter(stpvars,"PageSize",&desc2); Debug[TRACE] << "After setting PPD Default page size is now: " << desc2.deflt.str << endl; stp_set_string_parameter(stpvars,"PageSize",desc2.deflt.str); stp_parameter_description_destroy(&desc2); ppdsizes_workaround_done=true; } else Debug[TRACE] << "Couldn't get default PPD." << endl; } else stp_set_file_parameter(stpvars,token,value); break; case STP_PARAMETER_TYPE_INT: // Debug[TRACE] << "Setting " << token << " to " << value << endl; stp_set_int_parameter(stpvars,token,atoi(value)); break; case STP_PARAMETER_TYPE_BOOLEAN: // Debug[TRACE] << "Setting " << token << " to " << value << endl; stp_set_boolean_parameter(stpvars,token,atoi(value)); break; case STP_PARAMETER_TYPE_DOUBLE: // Debug[TRACE] << "Setting " << token << " to " << value << endl; stp_set_float_parameter(stpvars,token,atof(value)); break; default: break; } stp_parameter_description_destroy(¶m); } } free(token); return; break; } ++value; } } void GPrinterSettings::SaveSection(FILE *file) { stp_parameter_list_t params = stp_get_parameter_list(stpvars); stp_parameter_t desc; desc.is_active=false; int count = stp_parameter_list_count(params); // PPDFile parameter must be saved first, because it must be restored // before other parameters upon loading. // Because CUPS returns a local temporary filename for a queue's PPD // which is not persistent between sessions, we must save an escape // string to indicate that the queue's default should be used. stp_describe_parameter(stpvars,"PPDFile",&desc); if(desc.is_active) { Debug[TRACE] << "Saving PPDFile parameter..." << endl; const char *ppd=stp_get_file_parameter(stpvars,"PPDFile"); char *defppd=output.GetPPD(); if(ppd) Debug[TRACE] << "Current PPD: " << ppd << endl; if(defppd) Debug[TRACE] << "Default PPD: " << defppd << endl; if(defppd && ppd && CompareFiles(defppd,ppd)) ppd=DEFAULT_PPD_STRING; if(!ppd) ppd=DEFAULT_PPD_STRING; if(defppd) free(defppd); fprintf(file,"PPDFile=%s\n",ppd); } for (int i = 0; i < count; i++) { const stp_parameter_t *p = stp_parameter_list_param(params, i); if((p->p_level<=STP_PARAMETER_LEVEL_ADVANCED4)) { stp_parameter_t desc; stp_describe_parameter(stpvars,p->name,&desc); if(desc.is_active) { switch(desc.p_type) { case STP_PARAMETER_TYPE_STRING_LIST: { if(stp_check_string_parameter(stpvars,desc.name,STP_PARAMETER_DEFAULTED)) { const char *str=stp_get_string_parameter(stpvars,desc.name); // if(!desc.is_mandatory || strcmp(str,desc.deflt.str)!=0) fprintf(file,"%s=%s\n",desc.name,str); } } break; case STP_PARAMETER_TYPE_INT: { if(stp_check_int_parameter(stpvars,desc.name,STP_PARAMETER_DEFAULTED)) { int val=stp_get_int_parameter(stpvars,desc.name); // if(!desc.is_mandatory || val!=desc.deflt.integer) fprintf(file,"%s=%d\n",desc.name,val); } } break; case STP_PARAMETER_TYPE_BOOLEAN: { if(stp_check_boolean_parameter(stpvars,desc.name,STP_PARAMETER_DEFAULTED)) { int val=stp_get_boolean_parameter(stpvars,desc.name); // if(!desc.is_mandatory || val!=desc.deflt.boolean) fprintf(file,"%s=%d\n",desc.name,val); } } break; case STP_PARAMETER_TYPE_DOUBLE: { if(stp_check_float_parameter(stpvars,desc.name,STP_PARAMETER_DEFAULTED)) { double val=stp_get_float_parameter(stpvars,desc.name); // if(!desc.is_mandatory || val!=desc.deflt.dbl) fprintf(file,"%s=%f\n",desc.name,val); } } break; default: break; } } stp_parameter_description_destroy(&desc); } } fprintf(file,"CustomWidth=%d\n",pagewidth); fprintf(file,"CustomHeight=%d\n",pageheight); stp_parameter_list_destroy(params); } // SetDriver // Returns false if the driver isn't recognised, true otherwise. bool GPrinterSettings::SetDriver(const char *driver) { bool result=true; bool driverchanged=false; // FIXME - Not pretty. We need to strdup() the result of this because it's // not valid after the driver has changed. const char *_oldpagesize=stp_get_string_parameter(stpvars,"PageSize"); char *oldpagesize=NULL; if(_oldpagesize) { oldpagesize=strdup(_oldpagesize); Debug[TRACE] << "Old page size is: " << oldpagesize << endl; } Debug[TRACE] << "Checking stpvars" << endl; if(stpvars) { // We avoid messing with this stuff as much as possible if the driver didn't change - // that way you can change from a printer's queue to "Save to file" without // messing up the print settings. const char *olddriver=stp_get_driver(stpvars); Debug[TRACE] << "Checking olddriver" << endl; if(!olddriver) olddriver="None"; Debug[TRACE] << "Checking driver" << endl; if(!driver) driver=DEFAULT_PRINTER_DRIVER; Debug[TRACE] << "Comparing drivers:" << olddriver << " against " << driver << endl; if(strcmp(driver,olddriver)==0) // If the driver hasn't changed... { // We ensure we can get the printer. If we can't, chances are the Gutenprint // data files weren't loaded correctly. if(!stp_get_printer(stpvars)) throw _("Can't obtain printer from Gutenprint\nCheck STP_DATA_PATH and Gutenprint version!"); } else { driverchanged=true; Debug[TRACE] << "SetDriver(): Setting driver to " << driver << endl; // Work around the non-defaulting of inactive settings... const stp_vars_t *defaults=stp_default_settings(); stp_vars_copy(stpvars,defaults); stp_set_driver(stpvars,driver); output.SetString("Driver",driver); const stp_printer_t *printer=stp_get_printer(stpvars); Debug[TRACE] << "Checking printer" << endl; if(printer) { Debug[TRACE] << "Setting defaults" << endl; stp_set_printer_defaults(stpvars,printer); } else { Debug[TRACE] << "Unable to get printer - reverting to default driver" << endl; output.SetString("Driver",DEFAULT_PRINTER_DRIVER); stp_set_driver(stpvars,DEFAULT_PRINTER_DRIVER); Debug[TRACE] << "Checking printer again" << endl; if((printer=stp_get_printer(stpvars))) stp_set_printer_defaults(stpvars,printer); else Debug[TRACE] << "Still can't get printer!" << endl; result=false; } } stp_set_page_width(stpvars,pagewidth); stp_set_page_height(stpvars,pageheight); stp_parameter_t desc; desc.is_active=false; stp_describe_parameter(stpvars,"PPDFile",&desc); if(desc.is_active) { driverchanged=true; Debug[TRACE] << "Getting default PPD..." << endl; char *defppd=output.GetPPD(); Debug[TRACE] << "Checking defppd" << endl; if(defppd) { Debug[TRACE] << "Setting PPDFile to " << defppd << endl; stp_set_file_parameter(stpvars,"PPDFile",defppd); free(defppd); Debug[TRACE] << "Checking ppdsizes_workaround_done" << endl; if(!ppdsizes_workaround_done) { stp_parameter_t desc2; stp_describe_parameter(stpvars,"PageSize",&desc2); Debug[TRACE] << "After setting PPD Default page size is now: " << desc2.deflt.str << endl; stp_set_string_parameter(stpvars,"PageSize",desc2.deflt.str); stp_parameter_description_destroy(&desc2); ppdsizes_workaround_done=true; } } } stp_parameter_description_destroy(&desc); if(driverchanged) { // We attempt to set the previously used pagesize if possible. // We do this by looping through the known papersizes for the // new driver and comparing against the old papersize. if(oldpagesize) { Debug[TRACE] << "Old page size is: " << oldpagesize << endl; stp_describe_parameter(stpvars,"PageSize",&desc); stp_string_list_t *strlist=desc.bounds.str; if(strlist) { int strcount=stp_string_list_count(strlist); for(int j=0;jtext << endl; if(strcmp(p->text,oldpagesize)==0) { stp_set_string_parameter(stpvars,"PageSize",oldpagesize); j=strcount; } } } stp_parameter_description_destroy(&desc); free(oldpagesize); } Validate(); } } else Debug[TRACE] << "No stp vars!" << endl; return(result); } void GPrinterSettings::Validate() { stputil_validate_parameters(stpvars); } void GPrinterSettings::Reset() { stp_vars_destroy(stpvars); stpvars=stp_vars_create(); // FIXME - a bit of a hack this - set the driver so we can compare against it. // (We set the queue's own driver here in case the app doesn't over-ride it // Make sure this doesn't break anything...) const char *driver=output.FindString("Driver"); if(!SetDriver(driver)) output.SetString("Driver",DEFAULT_PRINTER_DRIVER); // stp_set_driver(stpvars,"ps"); Debug[TRACE] << "Created fresh stp_vars" << endl; initialised=false; } photoprint-0.4.2-pre2/gp_cppsupport/printoutput.cpp0000644000175000017500000000556011341062376017551 00000000000000#include #include #include #include using namespace std; #include "../miscwidgets/generaldialogs.h" #include "../support/debug.h" #include "printoutput.h" #include "printoutputselector.h" class PODBHandler : public ConfigDBHandler { public: PODBHandler(ConfigFile *inif,const char *section,PrintOutput *po) : ConfigDBHandler(inif,section,po), printoutput(po) { } ~PODBHandler() { } void LeaveSection() { Debug[TRACE] << "*** Leaving PrintOutput section" << endl; printoutput->DBToQueues(); } private: PrintOutput *printoutput; }; PrintOutput::PrintOutput(ConfigFile *inif,const char *section) : ConfigDB(Template), PrinterQueues() { Debug[TRACE] << "In PrintOutput constructor..." << endl; new PODBHandler(inif,section,this); const char *defaultqueue=FindString("Queue"); if(strlen(defaultqueue)==0 && GetPrinterCount()>0) { char *queue=GetPrinterName(0); if(queue) { SetPrinterQueue(queue); SetString("Queue",queue); char *driver=GetPrinterDriver(queue); if(driver) { SetString("Driver",driver); free(driver); } free(queue); } else SetString("Driver",DEFAULT_PRINTER_DRIVER); } Debug[TRACE] << "Done..." << endl; } class Consumer_Queue : public Consumer { public: Consumer_Queue(PrinterQueues &pq,const char *queuename,const char *extendedopts=NULL) : pq(pq) { pq.SetPrinterQueue(queuename); if(!pq.InitialiseJob(extendedopts)) throw "Can't initialise!"; pq.InitialisePage(); } virtual ~Consumer_Queue() { pq.EndPage(); pq.EndJob(); } virtual bool Write(const char *buffer, int length) { return(pq.WriteData(buffer,length)); } virtual void Cancel() { pq.CancelJob(); } protected: PrinterQueues &pq; }; Consumer *PrintOutput::GetConsumer(const char *extendedopts) { const char *str; str=FindString("Driver"); if(str[0]=='p' && str[1]=='s') // Are we printing in PostScript mode? SetDataType(PQINFO_POSTSCRIPT); else SetDataType(PQINFO_RAW); if(strlen(str=FindString("Queue"))) { try { Consumer *result=new Consumer_Queue(*this,str,extendedopts); return(result); } catch(const char *err) { return(NULL); } } else return(NULL); } void PrintOutput::DBToQueues() { const char *tmp=FindString("Queue"); if(PrinterQueueExists(tmp)) Debug[TRACE] << "Printer queue exists" << endl; else { Debug[TRACE] << "Warning - printer queue not found" << endl; printoutput_queue_dialog(this); tmp=FindString("Queue"); } SetPrinterQueue(tmp); tmp=FindString("Command"); SetCustomCommand(tmp); } void PrintOutput::QueuesToDB() { const char *tmp=GetPrinterQueue(); SetString("Queue",tmp); tmp=GetCustomCommand(); SetString("Command",tmp); } ConfigTemplate PrintOutput::Template[]= { ConfigTemplate("Queue",""), ConfigTemplate("Driver",""), ConfigTemplate("Command",""), ConfigTemplate("ResponseHash",""), ConfigTemplate() }; photoprint-0.4.2-pre2/gp_cppsupport/Makefile.in0000644000175000017500000003662311400237521016471 00000000000000# Makefile.in generated by automake 1.10.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 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@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@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 = gp_cppsupport DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/scripts/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libgp_cppsupport_la_LIBADD = am_libgp_cppsupport_la_OBJECTS = gprintersettings.lo \ gpdevicensupport.lo printoutput.lo printerqueueswrapper.lo \ gprinter.lo printoutputselector.lo libgp_cppsupport_la_OBJECTS = $(am_libgp_cppsupport_la_OBJECTS) libgp_cppsupport_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(libgp_cppsupport_la_LDFLAGS) $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/scripts/depcomp am__depfiles_maybe = depfiles CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) CXXLD = $(CXX) CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ SOURCES = $(libgp_cppsupport_la_SOURCES) DIST_SOURCES = $(libgp_cppsupport_la_SOURCES) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DSYMUTIL = @DSYMUTIL@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ GDKPIXBUF2_CFLAGS = @GDKPIXBUF2_CFLAGS@ GDKPIXBUF2_LIBS = @GDKPIXBUF2_LIBS@ GETOPT_LIBS = @GETOPT_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIB2_CFLAGS = @GLIB2_CFLAGS@ GLIB2_LIBS = @GLIB2_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GP_CFLAGS = @GP_CFLAGS@ GP_LIBS = @GP_LIBS@ GREP = @GREP@ GTHREAD_CFLAGS = @GTHREAD_CFLAGS@ GTHREAD_LIBS = @GTHREAD_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ JPEG_LIBS = @JPEG_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ LCMS_LIBS = @LCMS_LIBS@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBM_LIBS = @LIBM_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NMEDIT = @NMEDIT@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ POSUB = @POSUB@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ TIFF_LIBS = @TIFF_LIBS@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ 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@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ 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@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = -Wall AM_CXXFLAGS = -Wall $(GP_CFLAGS) $(GTK2_CFLAGS) noinst_LTLIBRARIES = libgp_cppsupport.la libgp_cppsupport_la_SOURCES = \ gprintersettings.cpp \ gprintersettings.h \ gpdevicensupport.cpp \ gpdevicensupport.h \ printoutput.cpp \ printoutput.h \ printerqueueswrapper.cpp \ printerqueueswrapper.h \ gprinter.cpp \ gprinter.h \ printoutputselector.cpp \ printoutputselector.h libgp_cppsupport_la_LDFLAGS = -static EXTRA_DIST = all: all-am .SUFFIXES: .SUFFIXES: .cpp .lo .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 \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign gp_cppsupport/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign gp_cppsupport/Makefile .PRECIOUS: 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 clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libgp_cppsupport.la: $(libgp_cppsupport_la_OBJECTS) $(libgp_cppsupport_la_DEPENDENCIES) $(libgp_cppsupport_la_LINK) $(libgp_cppsupport_la_OBJECTS) $(libgp_cppsupport_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gpdevicensupport.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gprinter.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gprintersettings.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/printerqueueswrapper.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/printoutput.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/printoutputselector.Plo@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here 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 $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$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: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: 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: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_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-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-dvi: install-dvi-am 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 installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ 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 mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am # 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: photoprint-0.4.2-pre2/gp_cppsupport/gpdevicensupport.cpp0000644000175000017500000001245411365665730020546 00000000000000#include #include #include #include "support/util.h" #include "gpdevicensupport.h" #include "gettext.h" #define _(x) gettext(x) using namespace std; int GetPrinterColorantCount(stp_vars_t *vars) { int result=0; stp_parameter_t desc; stp_describe_parameter(vars,"ChannelNames",&desc); stp_string_list_t *strlist=desc.bounds.str; if(strlist) result=stp_string_list_count(strlist); stp_parameter_description_destroy(&desc); return(result); } ////////////////////////////////////////////////////////////////////////////// GPColorantList::GPColorantList(stp_vars_t *vars) : DeviceNColorantList() { BuildList(vars); } GPColorantList::GPColorantList(GPrinterSettings *gp) : DeviceNColorantList() { BuildList(gp->stpvars); } GPColorantList::~GPColorantList() { } // Builds a DeviceNColorantList from an stp_vars_t's // ChannelNames variable. // Dummy entries will be created for unknown channels, // to retain the 1:1 mapping between colorant index and // printer raw channels. // Should no longer be necessary since 2009-01-04 static const char *ChannelOrder[]= { "Black","Matte Black","Photo Black","Light Black","Light Light Black","Cyan","Light Cyan", "Magenta","Vivid Magenta","Light Magenta","Vivid Light Magenta","Yellow","Red","Blue","Gloss Optimizer",NULL }; void GPColorantList::BuildList(stp_vars_t *vars) { if(!vars) vars=cachedvars; if(!vars) throw "BuildList_Raw: No stp_vars provided!"; while((*this)[0]) delete (*this)[0]; const char *mode=stp_get_string_parameter(vars,"InputImageType"); if(!mode) { stp_set_string_parameter(vars,"InputImageType","CMYK"); mode="CMYK"; } if(strcmp(mode,"Raw")==0) { BuildList_Raw(vars); } else if(strcmp(mode,"Greyscale")==0) { new DeviceNColorant(*this,"Black"); } else if(strcmp(mode,"RGB")==0) { new DeviceNColorant(*this,"Red"); new DeviceNColorant(*this,"Green"); new DeviceNColorant(*this,"Blue"); } else if(strcmp(mode,"CMYK")==0) { new DeviceNColorant(*this,"Cyan"); new DeviceNColorant(*this,"Magenta"); new DeviceNColorant(*this,"Yellow"); new DeviceNColorant(*this,"Black"); } } void GPColorantList::BuildList_Raw(stp_vars_t *vars) { if(!vars) vars=cachedvars; if(!vars) throw "BuildList_Raw: No stp_vars provided!"; // Set printer to use all available colorants before asking for channel names... char chans[4]={0}; sprintf(chans,"%d",GetPrinterColorantCount(vars)); cerr << "Setting rawchannels to:" << chans << endl; stp_set_string_parameter(vars,"RawChannels",chans); stp_parameter_t desc; // We try to use the new RawChannelNames parameter from Gutenprint_5_2_branch stp_describe_parameter(vars,"RawChannelNames",&desc); stp_string_list_t *strlist=desc.bounds.str; if(strlist) { int ncol=stp_string_list_count(strlist); cerr << "Have " << ncol << " raw channels" << endl; cerr << "(Printer has " << GetPrinterColorantCount(vars) << " ink channels in total)" << endl; for(int j=0;jname << " : " << p->text << endl; try { new DeviceNColorant(*this,p->name,p->text); } catch(const char *err) { cerr << "Ignoring colorant: " << p->name << endl; new DeviceNColorant(*this,NULL); // We include a dummy colorant for unrecognised // channels (gloss optimiser, mainly) so that // each colorant's position in the list continues // to match its raw channel number. } } } else { cerr << "Falling back to ChannelNames[]" << endl; stp_describe_parameter(vars,"ChannelNames",&desc); stp_string_list_t *strlist=desc.bounds.str; if(strlist) { int i=0; int ncol=stp_string_list_count(strlist); cerr << "Have " << ncol << " raw channels" << endl; while(ChannelOrder[i]) { for(int j=0;jname,ChannelOrder[i])==0) { try { new DeviceNColorant(*this,p->name); } catch(const char *err) { cerr << "Ignoring colorant: " << p->name << endl; new DeviceNColorant(*this,NULL); // We include a dummy colorant for unrecognised // channels (gloss optimiser, mainly) so that // each colorant's position in the list continues // to match its raw channel number. } j=ncol; } } ++i; } } } stp_parameter_description_destroy(&desc); } #if 0 void GPColorantList::BuildList(stp_vars_t *vars) { stp_parameter_t desc; stp_describe_parameter(vars,"ChannelNames",&desc); stp_string_list_t *strlist=desc.bounds.str; if(strlist) { int ncol=stp_string_list_count(strlist); cerr << "Have " << ncol << " raw channels" << endl; for(int j=0;jname << endl; try { new GPColorant(*this,p->name); } catch(const char *err) { cerr << "Ignoring colorant: " << p->name << endl; new GPColorant(*this); // We include a dummy colorant for unrecognised // channels (gloss optimiser, mainly) so that // each colorant's position in the list continues // to match its raw channel number. } } } stp_parameter_description_destroy(&desc); } #endif photoprint-0.4.2-pre2/gp_cppsupport/printoutput.h0000644000175000017500000000071711316353104017207 00000000000000#ifndef PRINTOUTPUT_H #define PRINTOUTPUT_H #include "support/configdb.h" #include "support/consumer.h" #include "printerqueueswrapper.h" #define DEFAULT_PRINTER_DRIVER "ps2" class PrintOutput : public ConfigDB, public PrinterQueues { public: PrintOutput(ConfigFile *inif,const char *section); Consumer *GetConsumer(const char *extendedopts=NULL); void DBToQueues(); void QueuesToDB(); private: static ConfigTemplate Template[]; char *str2; }; #endif photoprint-0.4.2-pre2/gp_cppsupport/gpdevicensupport.h0000644000175000017500000000140711365672131020200 00000000000000#ifndef GPDEVICENSUPPORT_H #define GPDEVICENSUPPORT_H #include #include "gp_cppsupport/gprintersettings.h" #include "imagesource/devicencolorant.h" #include "imagesource/imagesource_devicen_preview.h" // List header subclass - not strictly necessary, // but avoids the need for untidy casts elsewhere. class GPColorantList : public DeviceNColorantList { public: GPColorantList(stp_vars_t *vars); GPColorantList(GPrinterSettings *gp); virtual ~GPColorantList(); // Virtual so we can override with a version which provides greys for dropsize calibration virtual void BuildList(stp_vars_t *vars=NULL); protected: void BuildList_Raw(stp_vars_t *vars=NULL); stp_vars_t *cachedvars; }; int GetPrinterColorantCount(stp_vars_t *vars); #endif photoprint-0.4.2-pre2/gp_cppsupport/printoutputselector.cpp0000644000175000017500000001356111266334703021314 00000000000000// FIXME - need a destructor to clean up the printer queue strings. #include #include #include #include #include #include #include #include #include "stpui_widgets/stpui_queue.h" #include "stpui_widgets/stpui_printerselector.h" #include "../support/debug.h" #include "printoutputselector.h" #include "config.h" #include "gettext.h" #define _(x) gettext(x) using namespace std; enum { CHANGED_SIGNAL, LAST_SIGNAL }; static guint printoutputselector_signals[LAST_SIGNAL] = { 0 }; static void printoutputselector_class_init (PrintOutputSelectorClass *klass); static void printoutputselector_init (PrintOutputSelector *stpuicombo); static void printersel_changed(GtkWidget *wid,gpointer *ob) { Debug[TRACE] << "In printersel_changed()" << endl; PrintOutputSelector *lo=(PrintOutputSelector *)ob; const char *driver=stpui_printerselector_get_driver(STPUI_PRINTERSELECTOR(wid)); if(driver) { lo->po->SetString("Driver",driver); g_signal_emit(G_OBJECT (ob),printoutputselector_signals[CHANGED_SIGNAL], 0); } } static void printoutputselector_queue_changed(GtkEntry *entry,gpointer *ud) { Debug[TRACE] << "In printoutputselectorqueue_changed()" << endl; PrintOutputSelector *ob=PRINTOUTPUTSELECTOR(ud); PrintOutput *po=ob->po; Debug[TRACE] << "Getting printer queue..." << endl; const char *val=po->GetPrinterQueue(); if(val && strlen(val)) { Debug[TRACE] << "Got printer queue: " << val << endl; char *driver=po->GetPrinterDriver(); if(driver) { Debug[TRACE] << "Got driver: " << driver << " from Queue" << endl; po->SetString("Driver",driver); stpui_printerselector_set_driver(STPUI_PRINTERSELECTOR(ob->printersel),driver); free(driver); } g_signal_emit(G_OBJECT (ob),printoutputselector_signals[CHANGED_SIGNAL], 0); } } void printoutputselector_refresh(PrintOutputSelector *ob) { Debug[TRACE] << "In printoutputselectorrefresh()" << endl; PrintOutput *po=ob->po; const char *driver=po->FindString("Driver"); if(driver) { Debug[TRACE] << "Setting driver to " << driver << endl; stpui_printerselector_set_driver(STPUI_PRINTERSELECTOR(ob->printersel),driver); } const char *command=po->FindString("Command"); if(command) { gtk_entry_set_text(GTK_ENTRY(ob->string),command); } } GtkWidget* printoutputselector_new (PrintOutput *po) { PrintOutputSelector *ob=PRINTOUTPUTSELECTOR(g_object_new (printoutputselector_get_type (), NULL)); gtk_box_set_spacing(GTK_BOX(ob),5); ob->po=po; GtkWidget *label; GtkWidget *table=gtk_table_new(2,3,FALSE); gtk_container_set_border_width(GTK_CONTAINER(table),5); gtk_box_pack_start(GTK_BOX(ob),table,FALSE,FALSE,0); gtk_widget_show(table); label=gtk_label_new(_("Print Queue:")); gtk_table_attach_defaults(GTK_TABLE(table),label,0,1,0,1); gtk_widget_show(label); Debug[TRACE] << "Calling DBToQueues()" << endl; po->DBToQueues(); Debug[TRACE] << "Getting PQInfo" << endl; struct pqinfo *pq=po->GetPQInfo(); Debug[TRACE] << "Building stpui_queue" << endl; ob->combo=stpui_queue_new(pq); Debug[TRACE] << "Done" << endl; gtk_table_attach_defaults(GTK_TABLE(table),ob->combo,1,2,0,1); gtk_widget_show(ob->combo); g_signal_connect(GTK_WIDGET(ob->combo),"changed",G_CALLBACK(printoutputselector_queue_changed),ob); label=gtk_label_new(_("Printer Model:")); gtk_table_attach_defaults(GTK_TABLE(table),label,0,1,1,2); gtk_widget_show(label); ob->printersel=stpui_printerselector_new(); gtk_table_attach_defaults(GTK_TABLE(table),ob->printersel,1,2,1,2); g_signal_connect(G_OBJECT(ob->printersel),"changed",G_CALLBACK(printersel_changed),ob); stpui_printerselector_set_driver(STPUI_PRINTERSELECTOR(ob->printersel),po->FindString("Driver")); gtk_widget_show(ob->printersel); return(GTK_WIDGET(ob)); } GType printoutputselector_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo printoutputselector_info = { sizeof (PrintOutputSelectorClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) printoutputselector_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (PrintOutputSelector), 0, (GInstanceInitFunc) printoutputselector_init, }; stpuic_type = g_type_register_static (GTK_TYPE_VBOX, "PrintOutputSelector", &printoutputselector_info, (GTypeFlags)0); } return stpuic_type; } static void printoutputselector_class_init (PrintOutputSelectorClass *klass) { printoutputselector_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (klass), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (PrintOutputSelectorClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void printoutputselector_init (PrintOutputSelector *ob) { ob->po=NULL; } void printoutput_queue_dialog(PrintOutput *po) { const char *oldqueue=po->FindString("Queue"); char *labeltext=g_strdup_printf(_("The printer queue %s\n is not found - please choose another"),oldqueue); GtkWidget *dlg=gtk_dialog_new_with_buttons(_("Printer queue not found"),NULL, GtkDialogFlags(0),GTK_STOCK_OK,GTK_RESPONSE_OK,NULL); GtkWidget *vbox=gtk_vbox_new(FALSE,5); gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dlg)->vbox),vbox,TRUE,TRUE,8); gtk_widget_show(vbox); GtkWidget *label=gtk_label_new(labeltext); gtk_label_set_justify(GTK_LABEL(label),GTK_JUSTIFY_CENTER); g_free(labeltext); gtk_widget_show(label); gtk_box_pack_start(GTK_BOX(vbox),label,TRUE,TRUE,0); Debug[TRACE] << "Getting PQInfo" << endl; struct pqinfo *pq=po->GetPQInfo(); Debug[TRACE] << "Building stpui_queue" << endl; GtkWidget *combo=stpui_queue_new(pq); gtk_widget_show(combo); gtk_box_pack_start(GTK_BOX(vbox),combo,FALSE,FALSE,8); gint result=gtk_dialog_run(GTK_DIALOG(dlg)); switch(result) { case GTK_RESPONSE_OK: po->QueuesToDB(); gtk_widget_destroy(dlg); break; } } photoprint-0.4.2-pre2/gp_cppsupport/gprintersettings.h0000644000175000017500000000117411101462351020200 00000000000000#ifndef GPRINTERSETTINGS_H #define GPRINTERSETTINGS_H #include #include "support/pageextent.h" #include "printoutput.h" class GPrinterSettings : public ConfigSectionHandler, public PageExtent { public: GPrinterSettings(PrintOutput &output,ConfigFile *inf,const char *section); ~GPrinterSettings(); void ParseString(const char *string); void SaveSection(FILE *file); void SelectSection(); bool SetDriver(const char *driver); void Validate(); void Reset(); void Dump(); stp_vars_t *stpvars; protected: PrintOutput &output; private: bool initialised; bool ppdsizes_workaround_done; }; #endif photoprint-0.4.2-pre2/gp_cppsupport/gprinter.cpp0000644000175000017500000004362011366414737016776 00000000000000 /* * print.cpp - encapsulates printing via GIMP-Print/GutenPrint * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * * 2005-12-24: Zeroed out firstrow and firstpixel in GetDimensions, * in the hope that it'll fix an intermittent offset bug. * */ #include #include #include #include #include #include #include #include #include #include #include "../imagesource/imagesource.h" #include "../imagesource/imagesource_flatten.h" #include "../support/debug.h" #include "../support/util.h" #include "../support/md5.h" #include "../miscwidgets/generaldialogs.h" #include "gprinter.h" #include "../config.h" #include "../gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) #define USE16BITPRINTING using namespace std; // We use this to ensure that stp_init() has been called once and only once. class GPrinter_StaticInitializer { public: GPrinter_StaticInitializer() { if(stp_init()) { // Don't use Debug object here - can't guarantee it will be initialised by this point! cerr << "Couldn't initialize Gutenprint - check STP_DATA_PATH variable" << endl; // throw "Couldn't initialize Gutenprint - check STP_DATA_PATH variable"; } } } gpstaticinitializer; /* Get dimensions from the printer driver, and calculate position on page from image size. Image must have been loaded first. */ void GPrinter::get_dimensions() { int rndfactor,rndwidth,rndheight; GetImageableArea(); int xres=int(source->xres); int yres=int(source->yres); int w=pixelwidth=source->width; w*=72; w/=xres; ptwidth=w; int h=pixelheight=source->height; h*=72; h/=yres; ptheight=h; firstpixel=0; firstrow=0; if(ypos<0) { if(ptheight<=imageableheight) { papertop=topmargin+(imageableheight-ptheight)/2; firstrow=0; } else { int clipped; Debug[WARN] << "Warning: Image is taller than usable page - clipping." << endl; papertop=topmargin; clipped=(ptheight-imageableheight)/2; clipped*=yres; clipped/=72; firstrow=clipped; pixelheight-=2*clipped; ptheight=imageableheight; } } else { int clipped; papertop=ypos; if(ypos(pageheight-bottommargin)) { Debug[WARN] << "Warning: Image is clipped by bottom margin." << endl; clipped=(papertop+ptheight)-(pageheight-bottommargin); ptheight-=clipped; clipped*=yres; clipped/=72; pixelheight-=clipped; } } if(xpos<0) { if(ptwidth<=imageablewidth) { paperleft=leftmargin+(imageablewidth-ptwidth)/2; firstpixel=0; } else { int clipped; Debug[WARN] << "Warning: Image is wider than usable page - clipping." << endl; paperleft=leftmargin; clipped=(ptwidth-imageablewidth)/2; clipped*=xres; clipped/=72; firstpixel=clipped; pixelwidth-=2*clipped; ptwidth=imageablewidth; } } else { int clipped; paperleft=xpos; if(xpos(pagewidth-rightmargin)) { Debug[WARN] << "Warning: Image is clipped by right margin." << endl; clipped=(paperleft+ptwidth)-(pagewidth-rightmargin); ptwidth-=clipped; clipped*=xres; clipped/=72; pixelwidth-=clipped; } } /* Avoid moire patterns by adjusting the pixel width and height to be a round number of points */ if(xres>72) { rndfactor=xres/72; rndwidth=pixelwidth/rndfactor; rndwidth*=rndfactor; pixelwidth=rndwidth; } if(yres>72) { rndfactor=yres/72; rndheight=pixelheight/rndfactor; rndheight*=rndfactor; pixelheight=rndheight; } } static void parameter_help(stp_parameter_t &dparam) { switch(dparam.p_type) { case STP_PARAMETER_TYPE_STRING_LIST: { int strcount,j; printf("Parameter: %s\n",dparam.name); stp_string_list_t *strlist=dparam.bounds.str; if(strlist) { strcount=stp_string_list_count(strlist); for(j=0;jname,p->text); } } } break; case STP_PARAMETER_TYPE_INT: printf("Parameter: %s\n",dparam.name); printf(" %d - %d\n",dparam.bounds.integer.lower,dparam.bounds.integer.upper); break; case STP_PARAMETER_TYPE_DOUBLE: printf("Parameter: %s\n",dparam.name); printf(" %f - %f\n",dparam.bounds.dbl.lower,dparam.bounds.dbl.upper); break; case STP_PARAMETER_TYPE_BOOLEAN: printf("Parameter: %s\n",dparam.name); printf(" 0/1\n"); break; case STP_PARAMETER_TYPE_INVALID: printf("Parameter: %s\n",dparam.name); printf(" Paramter not valid for this printer\n"); break; default: // printf("Parameter: %s\n",dparam.name); // printf(" FIXME: Can't handle param type %d\n",dparam.p_type); break; } } void GPrinter::Help() { const stp_vars_t *v = stp_printer_get_defaults(the_printer); stp_parameter_list_t params = stp_get_parameter_list(v); int count = stp_parameter_list_count(params); for (int i = 0; i < count; i++) { const stp_parameter_t *p = stp_parameter_list_param(params, i); if((p->p_level<=STP_PARAMETER_LEVEL_ADVANCED4)) { stp_parameter_t desc; stp_describe_parameter(v,p->name,&desc); if(desc.is_active) { parameter_help(desc); } stp_parameter_description_destroy(&desc); } } } void GPrinter::writefunc(void *obj, const char *buf, size_t bytes) { if(bytes) // Have seen requests to write zero bytes - catch them // otherwise cons->Write() will quite correctly report that // it's written zero byes and result in job termination! { Consumer *cons=(Consumer *)obj; bool result=false; if(cons) result=cons->Write(buf,bytes); if(!result) { writeerror=true; Debug[TRACE] << "cons->Write() returned " << result << endl; } } } string GPrinter::get_extendedopts() { string result; stp_string_list_t *external_options = stp_get_external_options(stpvars); if(external_options) { int count = stp_string_list_count(external_options); for(int i=0; iname); string value=ShellQuote(param->text); result+=" -o"+name+"="+value; } stp_string_list_destroy(external_options); } return(result); } void GPrinter::Print(ImageSource *src,int xpos,int ypos,Consumer *cons) { Debug[TRACE] << "*** GPrinter: Printing at position: " << xpos << ", " << ypos << endl; if(HAS_ALPHA(src->type)) src=new ImageSource_Flatten(src); source=src; switch(source->type) { case IS_TYPE_RGB: Debug[TRACE] << "Printing in RGB mode" << endl; stp_set_string_parameter(stpvars, "InputImageType", "RGB"); break; case IS_TYPE_CMYK: Debug[TRACE] << "Printing in CMYK mode" << endl; stp_set_string_parameter(stpvars, "InputImageType", "CMYK"); break; case IS_TYPE_DEVICEN: Debug[TRACE] << "Printing in DeviceN mode" << endl; stp_set_string_parameter(stpvars, "InputImageType", "Raw"); { char nchan[10]; sprintf(nchan,"%d",source->samplesperpixel); stp_set_string_parameter(stpvars, "RawChannels", nchan); } break; default: throw "Only RGB and CMYK images are currently supported!"; break; } #ifdef USE8BITPRINTING stp_set_string_parameter(stpvars, "ChannelBitDepth", "8"); #else stp_set_string_parameter(stpvars, "ChannelBitDepth", "16"); #endif Debug[TRACE] << "Checking PrintingMode:" << endl; const char *pm=stp_get_string_parameter(stpvars,"PrintingMode"); if(pm) Debug[TRACE] << "PrintingMode currently set to:" << pm << endl; else Debug[TRACE] << "PrintingMode currently not set." << endl; // stp_set_string_parameter(stpvars, "PrintingMode", "Color"); this->xpos=xpos; this->ypos=ypos; get_dimensions(); stp_set_width(stpvars, ptwidth); stp_set_height(stpvars, ptheight); Debug[TRACE] << "Paperleft: " << paperleft << endl; Debug[TRACE] << "Papertop: " << papertop << endl; stp_set_left(stpvars, paperleft-leftbleed); stp_set_top(stpvars, papertop-topbleed); string extendedopts=get_extendedopts(); if(!(consumer=cons)) consumer=output.GetConsumer(extendedopts.c_str()); if(!consumer) return; stp_set_outfunc(stpvars, writefunc); stp_set_outdata(stpvars, consumer); stp_vars_t *tmpvars=stp_vars_create_copy(stpvars); const stp_vars_t *current_vars = stp_printer_get_defaults(stp_get_printer(stpvars)); stp_merge_printvars(tmpvars, current_vars); writeerror=false; // Dump(); bool result=true; const char *error=_("Unable to generate print data"); result&=stp_verify(tmpvars); if(result) { result&=stp_print(tmpvars, &stpImage); error=NULL; } stp_vars_destroy(tmpvars); if(!cons) delete consumer; if(result==0 && error) throw error; if(writeerror) throw "Write error: check your print command"; } // Deal with borderless mode by adding the bleed area to the media size // and reducing the negative margins to zero. // Obsolete hack - but shouldn't cause problems now borderless is working // properly in Gutenprint - so leave it for now: // The bottom bleed is excessively large on the R300 - presumably because // the driver just increases the form length to work around the lack of // a true bleed option. // Can we shuffle things around so that a saner bottom bleed is presented // to the user? void GPrinter::GetImageableArea() { // pagewidth=pageheight=0; // stp_get_media_size(stpvars, &pagewidth, &pageheight); // Debug[TRACE] << "Media size returned: " << pagewidth << " by " << pageheight << endl; const char *papersize=stp_get_string_parameter(stpvars,"PageSize"); bool gotpapersize=false; if(papersize) { const stp_papersize_t *paper=stp_get_papersize_by_name(papersize); if(paper) { gotpapersize=true; if(paper->width) { pagewidth=minwidth=maxwidth=paper->width; stp_set_page_width(stpvars,pagewidth); Debug[TRACE] << "Width: " << pagewidth << endl; } else { int mw,mh,nw,nh; pagewidth=stp_get_page_width(stpvars); stp_get_size_limit(stpvars,&mw,&mh,&nw,&nh); minwidth=nw; maxwidth=mw; Debug[TRACE] << "Custom width..." << endl; } if(paper->height) { pageheight=minheight=maxheight=paper->height; stp_set_page_height(stpvars,pageheight); Debug[TRACE] << "Height: " << pageheight << endl; } else { int mw,mh,nw,nh; pageheight=stp_get_page_height(stpvars); stp_get_size_limit(stpvars,&mw,&mh,&nw,&nh); minheight=nh; maxheight=mh; Debug[TRACE] << "Custom height..." << endl; } } } if(!gotpapersize) { pagewidth=pageheight=0; stp_get_media_size(stpvars, &pagewidth, &pageheight); } int l,r,t,b; stp_get_imageable_area(stpvars, &l, &r, &b, &t); Debug[TRACE] << "Imageable area from GP: L: " << l << ", R: " << r << ", T: " << t << ", B: " << b << endl; leftbleed=rightbleed=topbleed=bottombleed=0; // *** HACK *** // We reduce the bottom bleed to 7pt max, to work around the // extremely large bottom bleed reported by the R300. if((pageheight-b)<-7 && t<=0) b=pageheight+7; if(r>pagewidth) { rightbleed=r-pagewidth; pagewidth=r; } if(l<0) { pagewidth-=l; leftbleed=-l; r-=l; l=0; } if(b>pageheight) { bottombleed=b-pageheight; pageheight=b; } if(t<0) { pageheight-=t; topbleed=-t; b-=t; t=0; } leftmargin=l; topmargin=t; rightmargin=pagewidth-r; bottommargin=pageheight-b; Debug[TRACE] << "Pagewidth: " << pagewidth << endl; Debug[TRACE] << "Pageheight: " << pageheight << endl; PageExtent::GetImageableArea(); Debug[TRACE] << "Imageable width: " << imageablewidth << endl; Debug[TRACE] << "Imageable height: " << imageableheight << endl; Debug[TRACE] << "Left bleed: " << leftbleed << endl; Debug[TRACE] << "Right bleed: " << rightbleed << endl; Debug[TRACE] << "Top bleed: " << topbleed << endl; Debug[TRACE] << "Bottom bleed: " << bottombleed << endl; // HACK // There seems to be a problem with GutenPrint's setlocale() calls. Debug[TRACE] << "After reading papersize and margins: " << setlocale(LC_ALL,"") << endl; } void GPrinter::GetSizeLimits(int &minw,int &maxw,int &minh,int &maxh) { minw=minwidth; maxw=maxwidth; minh=minheight; maxh=maxheight; } void GPrinter::SetCustomWidth(int w) { Debug[TRACE] << "New width = " << w << endl; Debug[TRACE] << "New width without bleed = " << w-(leftbleed+rightbleed) << endl; stp_set_page_width(stpvars,w-(leftbleed+rightbleed)); pagewidth=w-(leftbleed+rightbleed); } void GPrinter::SetCustomHeight(int h) { Debug[TRACE] << "New height = " << h << endl; Debug[TRACE] << "New height without bleed = " << h-(topbleed+bottombleed) << endl; stp_set_page_height(stpvars,h-(topbleed+bottombleed)); pageheight=h-(topbleed+bottombleed); } GPrinter::GPrinter(PrintOutput &output,ConfigFile *ini,const char *section) : GPrinterSettings(output,ini,section), source(NULL), firstrow(0), firstpixel(0), progress(NULL) { stpImage.rep=this; staticinitializer=&gpstaticinitializer; } void GPrinter::SetProgress(Progress *p) { progress=p; } GPrinter::~GPrinter() { } int GPrinter::Image_width(struct stp_image *image) { GPrinter *gp=(GPrinter *)image->rep; return(gp->pixelwidth); } int GPrinter::Image_height(struct stp_image *image) { GPrinter *gp=(GPrinter *)image->rep; return(gp->pixelheight); } stp_image_status_t GPrinter::GetRowStub(struct stp_image *image, unsigned char *data, size_t byte_limit, int row) { stp_image_status_t result; GPrinter *gp=(GPrinter *)image->rep; result=gp->GetRow(row,data); return(result); } stp_image_status_t GPrinter::GetRow(int row,unsigned char *data) { stp_image_status_t result=STP_IMAGE_STATUS_OK; ISDataType *src; #ifdef USE8BITPRINTING unsigned char *dst=(unsigned char *)data; #else unsigned short *dst=(unsigned short *)data; #endif int i; src=source->GetRow(row+firstrow); src+=(source->samplesperpixel*firstpixel); if(progress && !(row&31)) { if(!(progress->DoProgress(row,pixelheight))) { result=STP_IMAGE_STATUS_ABORT; consumer->Cancel(); } } switch(source->type) { case IS_TYPE_RGB: case IS_TYPE_CMYK: case IS_TYPE_DEVICEN: for(i=0;isamplesperpixel;++i) { #ifdef USE8BITPRINTING ISDataType t=*src++; *dst++=ISTOEIGHT(t); #else *dst++=*src++; #endif } break; default: result=STP_IMAGE_STATUS_ABORT; break; } if(writeerror) result=STP_IMAGE_STATUS_ABORT; return result; } const char *GPrinter::Image_get_appname(struct stp_image *image) { return("Gutenprint output component"); } bool GPrinter::writeerror; stp_image_t GPrinter::stpImage = { NULL, NULL, GPrinter::Image_width, GPrinter::Image_height, GPrinter::GetRowStub, GPrinter::Image_get_appname, NULL, NULL }; // ----------- ResponseHash ---------------- // Prints a known test image at a known position on the page, and instead of printing // the result, generates an MD5 Hash. This can be used as an indicator of whether // anything's changed with the printer driver or settings. // Simple rainbow testpattern. Fades from full saturation RGB testpattern at the head // to solid black at the foot. class ImageSource_RainbowSweep : public ImageSource { public: ImageSource_RainbowSweep(int width,int height) : ImageSource(width,height,IS_TYPE_RGB) { randomaccess=true; MakeRowBuffer(); } ~ImageSource_RainbowSweep() { } ISDataType *GetRow(int row) { if(currentrow==row) return(rowbuffer); double a=row; a/=height; for(int x=0;x768) r-=1536; if(r<0) r=-r; r=512-r; if(r<0) r=0; if(r>255) r=255; int g=c-512; if(g<0) g=-g; g=512-g; if(g<0) g=0; if(g>255) g=255; int b=c-1024; if(b<0) b=-b; b=512-b; if(b<0) b=0; if(b>255) b=255; r=r*(1-a); g=g*(1-a); b=b*(1-a); rowbuffer[x*3]=EIGHTTOIS(r); rowbuffer[x*3+1]=EIGHTTOIS(g); rowbuffer[x*3+2]=EIGHTTOIS(b); } currentrow=row; return(rowbuffer); } }; // A variation on the consumer class which maintains an MD5 hash instead of sending the data anywhere. class MD5Consumer : public Consumer, public MD5Digest { public: MD5Consumer() : Consumer(), MD5Digest() { } virtual ~MD5Consumer() { } virtual bool Write(const char *buffer,int length) { Update(buffer,length); // There's an issue with the PostScript driver in that it includes the creation date // so the MD5 hash will be different every time. To get around this we reset the MD5 if we // encounter a CreationDate comment. if(length>14 && strncmp(buffer,"%%CreationDate",14)==0) InitMD5Context(); return(true); } virtual void Cancel() { } }; std::string GPrinter::GetResponseHash(Progress *p) { ImageSource *is=new ImageSource_RainbowSweep(360,200); is->SetResolution(180,180); MD5Consumer cons; // Disable borderless mode and set a standard papersize... bool prevborderless=false; const char *prevpaper=NULL; char *paper=NULL; stp_parameter_t desc; stp_describe_parameter(stpvars,"FullBleed",&desc); if(desc.is_active) { prevborderless=stp_get_boolean_parameter(stpvars,"FullBleed"); prevpaper=stp_get_string_parameter(stpvars,"PageSize"); if(prevpaper) paper=strdup(prevpaper); stp_set_boolean_parameter(stpvars,"FullBleed",false); stp_set_string_parameter(stpvars,"PageSize","A4"); } SetProgress(p); Print(is,72,72,&cons); SetProgress(NULL); if(desc.is_active) { stp_set_boolean_parameter(stpvars,"FullBleed",prevborderless); if(paper) { stp_set_string_parameter(stpvars,"PageSize",paper); free(paper); } GetImageableArea(); }; delete is; return(std::string(cons.GetPrintableDigest())); } photoprint-0.4.2-pre2/gp_cppsupport/printoutputselector.h0000644000175000017500000000275311111313067020747 00000000000000#ifndef __PRINTOUTPUTSELECTOR_H__ #define __PRINTOUTPUTSELECTOR_H__ #include #include #include #include #include #include #include #include #include #include "printoutput.h" G_BEGIN_DECLS #define PRINTOUTPUTSELECTOR_TYPE (printoutputselector_get_type()) #define PRINTOUTPUTSELECTOR(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PRINTOUTPUTSELECTOR_TYPE, PrintOutputSelector)) #define PRINTOUTPUTSELECTOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PRINTOUTPUTSELECTOR_TYPE, PrintOutputSelectorClass)) #define IS_PRINTOUTPUTSELECTOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PRINTOUTPUTSELECTOR_TYPE)) #define IS_PRINTOUTPUTSELECTOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PRINTOUTPUTSELECTOR_TYPE)) typedef struct _PrintOutputSelector PrintOutputSelector; typedef struct _PrintOutputSelectorClass PrintOutputSelectorClass; struct _PrintOutputSelector { GtkVBox box; GtkWidget *string; GtkWidget *combo; GtkWidget *printersel; GList *queues; PrintOutput *po; }; struct _PrintOutputSelectorClass { GtkVBoxClass parent_class; void (*changed)(PrintOutputSelector *book); }; GType printoutputselector_get_type (void); GtkWidget* printoutputselector_new (PrintOutput *po); void printoutputselector_refresh(PrintOutputSelector *ob); void printoutput_queue_dialog(PrintOutput *po); G_END_DECLS #endif /* __PRINTOUTPUTSELECTOR_H__ */ photoprint-0.4.2-pre2/gp_cppsupport/printerqueueswrapper.cpp0000644000175000017500000000525411341063266021447 00000000000000#include #include #include #include #include "printerqueueswrapper.h" #include "../miscwidgets/generaldialogs.h" #include "../support/debug.h" using namespace std; static char *getfilename(void *userdata) { return(File_Save_Dialog("Save printer spool file",NULL)); } PrinterQueues::PrinterQueues() { queues=pqinfo_create(); queues->SetGetFilenameCallback(queues,getfilename,NULL); } PrinterQueues::~PrinterQueues() { if(queues) queues->Dispose(queues); Debug[TRACE] << "Done" << endl; } char *PrinterQueues::GetPrinterName(int idx) { return(queues->GetPrinterName(queues,idx)); } int PrinterQueues::GetPrinterCount() { return(queues->GetPrinterCount(queues)); } char *PrinterQueues::GetPrinterDriver(const char *printername) { queues->SetPrinterQueue(queues,printername); return(queues->GetDriver(queues)); } char *PrinterQueues::GetPrinterDriver() { return(queues->GetDriver(queues)); } struct pqinfo *PrinterQueues::GetPQInfo() { return(queues); } const char *PrinterQueues::GetPrinterQueue() { return(queues->GetPrinterQueue(queues)); } void PrinterQueues::SetPrinterQueue(const char *queue) { queues->SetPrinterQueue(queues,queue); } bool PrinterQueues::PrinterQueueExists(const char *queue) { int qc=GetPrinterCount(); for(int i=0;iGetDriver(queues)); } char *PrinterQueues::GetPPD() { const char *queue=GetPrinterQueue(); if(queue) { Debug[TRACE] << "Current queue: " << queue << endl; } char *ppd=queues->GetPPD(queues); if(ppd) Debug[TRACE] << "PPD: " << ppd << endl; else Debug[TRACE] << "No PPD found" << endl; return(ppd); } const char *PrinterQueues::GetCustomCommand() { #ifndef WIN32 return(queues->GetCustomCommand(queues)); #else return(NULL); #endif } void PrinterQueues::SetCustomCommand(const char *cmd) { #ifndef WIN32 queues->SetCustomCommand(queues,cmd); #endif } void PrinterQueues::SetDataType(enum pqinfo_datatype type) { queues->SetDataType(queues,type); } bool PrinterQueues::InitialiseJob(const char *extendedopts) { queues->SetExtendedOptions(queues,extendedopts); return(queues->InitialiseJob(queues)!=0); } void PrinterQueues::InitialisePage() { queues->InitialisePage(queues); } void PrinterQueues::EndPage() { queues->EndPage(queues); } void PrinterQueues::EndJob() { queues->EndJob(queues); } void PrinterQueues::CancelJob() { queues->CancelJob(queues); } int PrinterQueues::WriteData(const char *data,int bytecount) { return(queues->WriteData(queues,data,bytecount)); } photoprint-0.4.2-pre2/gp_cppsupport/Makefile.am0000644000175000017500000000071411365651024016460 00000000000000AM_CFLAGS = -Wall AM_CXXFLAGS = -Wall $(GP_CFLAGS) $(GTK2_CFLAGS) noinst_LTLIBRARIES = libgp_cppsupport.la libgp_cppsupport_la_SOURCES = \ gprintersettings.cpp \ gprintersettings.h \ gpdevicensupport.cpp \ gpdevicensupport.h \ printoutput.cpp \ printoutput.h \ printerqueueswrapper.cpp \ printerqueueswrapper.h \ gprinter.cpp \ gprinter.h \ printoutputselector.cpp \ printoutputselector.h libgp_cppsupport_la_LDFLAGS = -static EXTRA_DIST = photoprint-0.4.2-pre2/gp_cppsupport/gprinter.h0000644000175000017500000000400511316355212016420 00000000000000/* * print.cpp - encapsulates printing via GIMP-Print/GutenPrint * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #ifndef PRINT_H #define PRINT_H #include #include "support/configdb.h" #include "support/pageextent.h" #include "support/consumer.h" #include "printoutput.h" #include "support/progress.h" #include #include "gprintersettings.h" class ImageSource; // Forward Declaration class GPrinter : public GPrinterSettings { public: GPrinter(PrintOutput &output,ConfigFile *inf,const char *section); ~GPrinter(); void Print(ImageSource *source,int xpos,int ypos,Consumer *consumer=NULL); void Help(); void SetProgress(Progress *p); void GetImageableArea(); void GetSizeLimits(int &minw,int &maxw,int &minh,int &maxh); void SetCustomWidth(int w); void SetCustomHeight(int h); std::string GetResponseHash(Progress *p=NULL); protected: stp_image_status_t GetRow(int row,unsigned char *data); std::string get_extendedopts(); void get_dimensions(); void custom_get_dimensions(); void print_dimensions(); ImageSource *source; Consumer *consumer; int xpos,ypos; int ptwidth, ptheight; int pixelwidth, pixelheight; int paperleft; int papertop; int firstrow; int firstpixel; int leftbleed; int rightbleed; int topbleed; int bottombleed; int minwidth; int maxwidth; int minheight; int maxheight; const stp_printer_t *the_printer; Progress *progress; /* Static members and stubs */ static stp_image_t stpImage; static bool writeerror; static void writefunc(void *file, const char *buf, size_t bytes); static void Image_init(stp_image_t *img); static stp_image_status_t GetRowStub(stp_image_t *img, unsigned char *data, size_t byte_limit, int row); static int Image_width(stp_image_t *img); static int Image_height(stp_image_t *img); static const char *Image_get_appname(struct stp_image *image); void *staticinitializer; }; #endif photoprint-0.4.2-pre2/pixbufthumbnail/0000777000175000017500000000000011400250525014771 500000000000000photoprint-0.4.2-pre2/pixbufthumbnail/COPYING0000644000175000017500000006347611076423574015777 00000000000000 GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 Copyright (C) 1991, 1999 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. [This is the first released version of the Lesser GPL. It also counts as the successor of the GNU Library Public License, version 2, hence the version number 2.1.] Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below. When we speak of free software, we are referring to freedom of use, 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 and use pieces of it in new free programs; and that you are informed that you can do these things. To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it. For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights. We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library. To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others. Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license. Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. We call this license the "Lesser" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances. For example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License. In other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system. Although the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library. The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, whereas the latter must be combined with the library in order to run. GNU LESSER GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called "this License"). Each licensee is addressed as "you". A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) "Source code" for a work means the preferred form of the work for making modifications to it. For a library, 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 library. Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. 1. You may copy and distribute verbatim copies of the Library's complete 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 distribute a copy of this License along with the Library. 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 Library or any portion of it, thus forming a work based on the Library, 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) The modified work must itself be a software library. b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. (For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, 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 Library, 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 Library. In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. This option is useful when you wish to copy part of the code of the Library into a program that is not a library. 4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you 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. If distribution of 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 satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. 5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. 6. As an exception to the Sections above, you may also combine or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications. You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with. c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be 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. It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. 7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library 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. 9. 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 Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. 10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library 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 with this License. 11. 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 Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library 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 Library. 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. 12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library 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. 13. The Free Software Foundation may publish revised and/or new versions of the Lesser 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 Library 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 Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. 14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, 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 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "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 LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. 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 LIBRARY 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 LIBRARY (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 LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), 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 Libraries If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License). To apply these terms, attach the following notices to the library. 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 library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; 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. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the library `Frob' (a library for tweaking knobs) written by James Random Hacker. , 1 April 1990 Ty Coon, President of Vice That's all there is to it! photoprint-0.4.2-pre2/pixbufthumbnail/Makefile.in0000644000175000017500000003455111400237522016764 00000000000000# Makefile.in generated by automake 1.10.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 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@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@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 = pixbufthumbnail DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in COPYING ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/scripts/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libpixbufthumbnail_la_DEPENDENCIES = am_libpixbufthumbnail_la_OBJECTS = eggmd5.lo egg-pixbuf-thumbnail.lo libpixbufthumbnail_la_OBJECTS = $(am_libpixbufthumbnail_la_OBJECTS) libpixbufthumbnail_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(libpixbufthumbnail_la_LDFLAGS) $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/scripts/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ SOURCES = $(libpixbufthumbnail_la_SOURCES) DIST_SOURCES = $(libpixbufthumbnail_la_SOURCES) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DSYMUTIL = @DSYMUTIL@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ GDKPIXBUF2_CFLAGS = @GDKPIXBUF2_CFLAGS@ GDKPIXBUF2_LIBS = @GDKPIXBUF2_LIBS@ GETOPT_LIBS = @GETOPT_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIB2_CFLAGS = @GLIB2_CFLAGS@ GLIB2_LIBS = @GLIB2_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GP_CFLAGS = @GP_CFLAGS@ GP_LIBS = @GP_LIBS@ GREP = @GREP@ GTHREAD_CFLAGS = @GTHREAD_CFLAGS@ GTHREAD_LIBS = @GTHREAD_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ JPEG_LIBS = @JPEG_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ LCMS_LIBS = @LCMS_LIBS@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBM_LIBS = @LIBM_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NMEDIT = @NMEDIT@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ POSUB = @POSUB@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ TIFF_LIBS = @TIFF_LIBS@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ 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@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ 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@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = $(GTK2_CFLAGS) noinst_LTLIBRARIES = libpixbufthumbnail.la libpixbufthumbnail_la_SOURCES = \ eggmd5.c \ eggmd5.h \ egg-pixbuf-thumbnail.c \ egg-pixbuf-thumbnail.h libpixbufthumbnail_la_LIBADD = $(GTK_LIBS) libpixbufthumbnail_la_LDFLAGS = -static EXTRA_DIST = COPYING all: all-am .SUFFIXES: .SUFFIXES: .c .lo .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 \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign pixbufthumbnail/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign pixbufthumbnail/Makefile .PRECIOUS: 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 clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libpixbufthumbnail.la: $(libpixbufthumbnail_la_OBJECTS) $(libpixbufthumbnail_la_DEPENDENCIES) $(libpixbufthumbnail_la_LINK) $(libpixbufthumbnail_la_OBJECTS) $(libpixbufthumbnail_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/egg-pixbuf-thumbnail.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eggmd5.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here 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 $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$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: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: 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: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_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-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-dvi: install-dvi-am 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 installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ 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 mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am # 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: photoprint-0.4.2-pre2/pixbufthumbnail/egg-pixbuf-thumbnail.h0000644000175000017500000001336711076423574021125 00000000000000/* Egg Libraries: egg-pixbuf-thumbnail.h * * Copyright (c) 2004 James M. Cape * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #ifndef __EGG_PIXBUF_THUMBNAIL_H__ #define __EGG_PIXBUF_THUMBNAIL_H__ 1 #include #include G_BEGIN_DECLS typedef enum /* */ { EGG_PIXBUF_THUMBNAIL_UNKNOWN = -1, EGG_PIXBUF_THUMBNAIL_NORMAL = 128, EGG_PIXBUF_THUMBNAIL_LARGE = 256 } EggPixbufThumbnailSize; GdkPixbuf *egg_pixbuf_get_thumbnail_for_file (const gchar *filename, EggPixbufThumbnailSize size, GError **error); GdkPixbuf *egg_pixbuf_get_thumbnail_for_file_at_size (const gchar *filename, gint pixel_size, GError **error); GdkPixbuf *egg_pixbuf_get_thumbnail_for_pixbuf (GdkPixbuf *pixbuf, const gchar *uri, time_t mtime, EggPixbufThumbnailSize size); GdkPixbuf *egg_pixbuf_load_thumbnail (const gchar *uri, time_t mtime, EggPixbufThumbnailSize size); GdkPixbuf *egg_pixbuf_load_thumbnail_at_size (const gchar *uri, time_t mtime, gint pixel_size); gboolean egg_pixbuf_save_thumbnail (GdkPixbuf *thumbnail, GError **error, ...); gboolean egg_pixbuf_save_thumbnailv (GdkPixbuf *thumbnail, gchar **keys, gchar **values, GError **error); gboolean egg_pixbuf_has_failed_thumbnail (const gchar *uri, time_t mtime, GError **error); void egg_pixbuf_save_failed_thumbnail (const gchar *uri, time_t mtime, const GError *error); gboolean egg_pixbuf_is_thumbnail (GdkPixbuf *pixbuf, const gchar *uri, time_t mtime); EggPixbufThumbnailSize egg_pixbuf_get_thumbnail_size (GdkPixbuf *thumbnail); void egg_pixbuf_set_thumbnail_size (GdkPixbuf *thumbnail, EggPixbufThumbnailSize size); G_CONST_RETURN gchar *egg_pixbuf_get_thumbnail_uri (GdkPixbuf *thumbnail); void egg_pixbuf_set_thumbnail_uri (GdkPixbuf *thumbnail, const gchar *uri); G_CONST_RETURN gchar *egg_pixbuf_get_thumbnail_mime_type (GdkPixbuf *thumbnail); void egg_pixbuf_set_thumbnail_mime_type (GdkPixbuf *thumbnail, const gchar *mime_type); G_CONST_RETURN gchar *egg_pixbuf_get_thumbnail_description (GdkPixbuf *thumbnail); void egg_pixbuf_set_thumbnail_description (GdkPixbuf *thumbnail, const gchar *description); time_t egg_pixbuf_get_thumbnail_mtime (GdkPixbuf *thumbnail); void egg_pixbuf_set_thumbnail_mtime (GdkPixbuf *thumbnail, time_t mtime); gssize egg_pixbuf_get_thumbnail_filesize (GdkPixbuf *thumbnail); void egg_pixbuf_set_thumbnail_filesize (GdkPixbuf *thumbnail, gssize filesize); gint egg_pixbuf_get_thumbnail_image_width (GdkPixbuf *thumbnail); void egg_pixbuf_set_thumbnail_image_width (GdkPixbuf *thumbnail, gint image_width); gint egg_pixbuf_get_thumbnail_image_height (GdkPixbuf *thumbnail); void egg_pixbuf_set_thumbnail_image_height (GdkPixbuf *thumbnail, gint image_height); gint egg_pixbuf_get_thumbnail_document_pages (GdkPixbuf *thumbnail); void egg_pixbuf_set_thumbnail_document_pages (GdkPixbuf *thumbnail, gint document_pages); time_t egg_pixbuf_get_thumbnail_movie_length (GdkPixbuf *thumbnail); void egg_pixbuf_set_thumbnail_movie_length (GdkPixbuf *thumbnail, time_t movie_length); G_CONST_RETURN gchar *egg_pixbuf_get_thumbnail_software (GdkPixbuf *thumbnail); gchar *egg_pixbuf_get_thumbnail_filename (const gchar *uri, EggPixbufThumbnailSize size); /* gchar *egg_pixbuf_get_local_thumbnail_uri (const gchar *uri, EggPixbufThumbnailSize size); */ G_END_DECLS #endif /* !__EGG_PIXBUF_THUMBNAIL_H__ */ photoprint-0.4.2-pre2/pixbufthumbnail/egg-pixbuf-thumbnail.c0000644000175000017500000014514011076423574021113 00000000000000/* Egg Libraries: egg-pixbuf-thumbnail.c * * Copyright (c) 2004 James M. Cape * Copyright (c) 2002 Red Hat, Inc. * * Minor changes by AMR for compatibility with GTK+-2.0 * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif /* HAVE_CONFIG_H */ #include #include #include #include #include #include #include #include // AMR - not available with GTK+ <2.4/2.6 #if 0 #include #include #else #define _ #define g_filename_display_name g_strdup #define g_fopen fopen #endif #include #include "eggmd5.h" #include "egg-pixbuf-thumbnail.h" /* **************** * * Private Macros * * **************** */ /* 30 days in seconds */ #define EXPIRATION_TIME 2592000 /* Metadata Keys */ /* Standard */ #define THUMB_URI_KEY "tEXt::Thumb::URI" #define THUMB_MTIME_KEY "tEXt::Thumb::MTime" #define THUMB_MIME_TYPE_KEY "tEXt::Thumb::Mimetype" #define THUMB_FILESIZE_KEY "tEXt::Thumb::Size" #define THUMB_WIDTH_KEY "tEXt::Thumb::Image::Width" #define THUMB_HEIGHT_KEY "tEXt::Thumb::Image::Height" #define THUMB_PAGES_KEY "tEXt::Thumb::Document::Pages" #define THUMB_LENGTH_KEY "tEXt::Thumb::Movie::Length" #define THUMB_DESCRIPTION_KEY "tEXt::Description" #define THUMB_SOFTWARE_KEY "tEXt::Software" /* Used by failed creation attempts */ #define THUMB_ERROR_DOMAIN_KEY "tEXt::X-GdkPixbuf::FailDomain" #define FILE_ERROR_NAME "file" #define PIXBUF_ERROR_NAME "pixbuf" #define THUMB_ERROR_CODE_KEY "tEXt::X-GdkPixbuf::FailCode" #define THUMB_ERROR_MESSAGE_KEY "tEXt::X-GdkPixbuf::FailMessage" /* Misc Strings */ #define NORMAL_DIR_NAME "normal" #define LARGE_DIR_NAME "large" #define FAIL_DIR_NAME "fail" #define APP_DIR_NAME "gdk-pixbuf-2" #define THUMB_SOFTWARE_VALUE "GdkPixbuf" #define THUMBNAIL_DATA_QUARK (thumbnail_data_get_quark ()) #define SIZE_TO_DIR(size) ({\ const gchar *__r; \ if (size == EGG_PIXBUF_THUMBNAIL_NORMAL) \ __r = NORMAL_DIR_NAME; \ else if (size == EGG_PIXBUF_THUMBNAIL_LARGE) \ __r = LARGE_DIR_NAME; \ else \ __r = NULL; \ __r; \ }) /* ******************** * * Private Structures * * ******************** */ typedef struct { /* Required */ gint size; gchar *uri; time_t mtime; /* Optional Generic */ long filesize; // Change by AMR for GTK+-2.0 compatibility gchar *mime_type; gchar *description; gchar *software; /* Optional Image */ gint image_width; gint image_height; /* Optional Document */ gint document_pages; /* Optional Movie */ time_t movie_length; } ThumbnailData; typedef struct { gint orig_width; gint orig_height; gint size; } ImageInfo; /* ************************* * * ThumbnailData Functions * * ************************* */ static GQuark thumbnail_data_get_quark (void) { static GQuark quark = 0; if (G_UNLIKELY (quark == 0)) quark = g_quark_from_static_string ("egg-pixbuf-thumbnail-data"); return quark; } static void thumbnail_data_free (ThumbnailData *data) { if (!data) return; g_free (data->uri); g_free (data->mime_type); g_free (data->description); g_free (data->software); g_free (data); } static ThumbnailData * get_thumbnail_data (GdkPixbuf *thumbnail) { return g_object_get_qdata (G_OBJECT (thumbnail), THUMBNAIL_DATA_QUARK); } static ThumbnailData * ensure_thumbnail_data (GdkPixbuf *thumbnail) { ThumbnailData *data; data = get_thumbnail_data (thumbnail); if (!data) { data = g_new (ThumbnailData, 1); data->uri = NULL; data->mtime = -1; data->size = EGG_PIXBUF_THUMBNAIL_UNKNOWN; data->filesize = -1; data->mime_type = NULL; data->description = NULL; data->software = NULL; data->image_width = -1; data->image_height = -1; data->document_pages = -1; data->movie_length = -1; g_object_set_qdata_full (G_OBJECT (thumbnail), THUMBNAIL_DATA_QUARK, data, (GDestroyNotify) thumbnail_data_free); } return data; } static gboolean parse_thumbnail_data (GdkPixbuf *thumbnail, EggPixbufThumbnailSize size, GError **error) { ThumbnailData *data; const gchar *tmp; glong value; guint8 data_required; data_required = 2; data = NULL; if (error) { GQuark domain; tmp = gdk_pixbuf_get_option (thumbnail, THUMB_ERROR_DOMAIN_KEY); if (tmp) domain = g_quark_from_string (tmp); else domain = g_quark_from_static_string ("egg-pixbuf-thumbnail-error"); tmp = gdk_pixbuf_get_option (thumbnail, THUMB_ERROR_CODE_KEY); if (tmp) value = strtol (tmp, NULL, 10); else value = -1; tmp = gdk_pixbuf_get_option (thumbnail, THUMB_ERROR_MESSAGE_KEY); *error = g_error_new_literal (domain, value, tmp); } tmp = gdk_pixbuf_get_option (thumbnail, THUMB_URI_KEY); if (tmp) { data = ensure_thumbnail_data (thumbnail); data->uri = g_strdup (tmp); data_required--; } tmp = gdk_pixbuf_get_option (thumbnail, THUMB_MTIME_KEY); if (tmp) { data = ensure_thumbnail_data (thumbnail); value = strtol (tmp, NULL, 10); if (value != G_MAXINT && value != G_MININT) { data->mtime = value; data_required--; } } tmp = gdk_pixbuf_get_option (thumbnail, THUMB_MIME_TYPE_KEY); if (tmp) { data = ensure_thumbnail_data (thumbnail); data->mime_type = g_strdup (tmp); } tmp = gdk_pixbuf_get_option (thumbnail, THUMB_DESCRIPTION_KEY); if (tmp) { data = ensure_thumbnail_data (thumbnail); data->description = g_strdup (tmp); } tmp = gdk_pixbuf_get_option (thumbnail, THUMB_SOFTWARE_KEY); if (tmp) { data = ensure_thumbnail_data (thumbnail); data->software = g_strdup (tmp); } tmp = gdk_pixbuf_get_option (thumbnail, THUMB_FILESIZE_KEY); if (tmp) { data = ensure_thumbnail_data (thumbnail); value = strtol (tmp, NULL, 10); if (value != G_MAXINT && value != G_MININT) data->filesize = value; } tmp = gdk_pixbuf_get_option (thumbnail, THUMB_WIDTH_KEY); if (tmp) { data = ensure_thumbnail_data (thumbnail); value = strtol (tmp, NULL, 10); if (value != G_MAXINT && value != G_MININT) data->image_width = value; } tmp = gdk_pixbuf_get_option (thumbnail, THUMB_HEIGHT_KEY); if (tmp) { data = ensure_thumbnail_data (thumbnail); value = strtol (tmp, NULL, 10); if (value != G_MAXINT && value != G_MININT) data->image_height = value; } tmp = gdk_pixbuf_get_option (thumbnail, THUMB_PAGES_KEY); if (tmp) { data = ensure_thumbnail_data (thumbnail); value = strtol (tmp, NULL, 10); if (value != G_MAXINT && value != G_MININT) data->document_pages = value; } tmp = gdk_pixbuf_get_option (thumbnail, THUMB_LENGTH_KEY); if (tmp) { data = ensure_thumbnail_data (thumbnail); value = strtol (tmp, NULL, 10); if (value != G_MAXINT && value != G_MININT) data->movie_length = value; } if (!data_required) data->size = size; return (!data_required); } /* *************************************** * * Global Thumbnails Directory Functions * * *************************************** */ static gboolean ensure_one_dir (const gchar *path, GError **error) { #ifdef WIN32 if (!g_file_test (path, G_FILE_TEST_IS_DIR) && mkdir (path) < 0) #else if (!g_file_test (path, G_FILE_TEST_IS_DIR) && mkdir (path, 0700) < 0) #endif { gchar *utf8_path; utf8_path = g_filename_to_utf8 (path, -1, NULL, NULL, NULL); g_set_error (error, G_FILE_ERROR, g_file_error_from_errno (errno), _("Error creating directory `%s': %s"), utf8_path, g_strerror (errno)); g_free (utf8_path); return FALSE; } return TRUE; } static gboolean ensure_thumbnail_dirs (GError **error) { gchar *path, *tmp; path = g_build_filename (g_get_home_dir (), ".thumbnails", NULL); if (!ensure_one_dir (path, error)) { g_free (path); return FALSE; } tmp = path; path = g_build_filename (tmp, NORMAL_DIR_NAME, NULL); if (!ensure_one_dir (path, error)) { g_free (path); g_free (tmp); return FALSE; } g_free (path); path = g_build_filename (tmp, LARGE_DIR_NAME, NULL); if (!ensure_one_dir (path, error)) { g_free (path); g_free (tmp); return FALSE; } g_free (path); path = g_build_filename (tmp, FAIL_DIR_NAME, NULL); if (!ensure_one_dir (path, error)) { g_free (path); g_free (tmp); return FALSE; } g_free (path); path = g_build_filename (tmp, FAIL_DIR_NAME, APP_DIR_NAME, NULL); if (!ensure_one_dir (path, error)) { g_free (path); g_free (tmp); return FALSE; } g_free (tmp); g_free (path); return TRUE; } /* ****************************** * * Thumbnail Creation Functions * * ****************************** */ static void loader_size_prepared_cb (GdkPixbufLoader *loader, gint width, gint height, gpointer user_data) { ImageInfo *info; info = user_data; info->orig_width = width; info->orig_height = height; if (info->size > 0 && (width > info->size || height > info->size)) { gdouble scale; if (width > height) scale = (gdouble) info->size / width; else scale = (gdouble) info->size / height; gdk_pixbuf_loader_set_size (loader, width * scale, height * scale); } } static GdkPixbuf * load_image_at_max_size (const gchar *filename, ImageInfo *info, gchar **mime_type, GError **error) { GdkPixbuf *retval; GdkPixbufLoader *loader; FILE *f; gsize result; guchar buffer[8192]; f = g_fopen (filename, "rb"); if (!f) { gchar *display_name; display_name = g_filename_display_name (filename); g_set_error (error, G_FILE_ERROR, g_file_error_from_errno (errno), _("Error opening `%s': %s"), display_name, g_strerror (errno)); g_free (display_name); return NULL; } loader = gdk_pixbuf_loader_new (); g_signal_connect (loader, "size-prepared", G_CALLBACK (loader_size_prepared_cb), info); result = fread (buffer, 1, sizeof (buffer), f); if (!result) { gchar *display_name; display_name = g_filename_display_name (filename); g_set_error (error, G_FILE_ERROR, g_file_error_from_errno (errno), _("Error reading `%s': file contains no data."), display_name); g_free (display_name); fclose (f); return NULL; } fseek (f, 0, SEEK_SET); do { result = fread (buffer, 1, sizeof (buffer), f); /* Die on read() error. */ if (!result && ferror (f)) { gchar *display_name; gdk_pixbuf_loader_close (loader, NULL); fclose (f); g_object_unref (loader); display_name = g_filename_display_name (filename); g_set_error (error, G_FILE_ERROR, g_file_error_from_errno (errno), _("Error reading `%s': %s"), display_name, g_strerror (errno)); g_free (display_name); return NULL; } /* Die on loader error. */ else if (!gdk_pixbuf_loader_write (loader, buffer, result, error)) { gdk_pixbuf_loader_close (loader, NULL); fclose (f); g_object_unref (loader); return NULL; } } while (!feof (f)); fclose (f); if (!gdk_pixbuf_loader_close (loader, error)) { g_object_unref (loader); return NULL; } retval = gdk_pixbuf_loader_get_pixbuf (loader); if (!retval) { gchar *display_name; display_name = g_filename_display_name (filename); g_set_error (error, GDK_PIXBUF_ERROR, GDK_PIXBUF_ERROR_FAILED, _("Failed to load image '%s': reason not known, probably a corrupt image file"), display_name ? display_name : "???"); g_free (display_name); } else { g_object_ref (retval); if (mime_type) { GdkPixbufFormat *format; gchar **mime_types; format = gdk_pixbuf_loader_get_format (loader); mime_types = gdk_pixbuf_format_get_mime_types (format); if (mime_types && mime_types[0]) *mime_type = g_strdup (mime_types[0]); g_strfreev (mime_types); } } g_object_unref (loader); return retval; } /** * egg_pixbuf_get_thumbnail_for_file: * @filename: the path to the original file. * @size: the desired size of the thumnail. * @error: a pointer to a location to store errors in. * * Convenience function which first checks if a failure attempt for @filename * exists. If it does, @error will be set to the reason for that failure. If it * does not, this function attempts to load the thumbnail for @filename at * @size. If that load fails, this function will attempt to create a new * thumbnail. If creating a new thumbnail fails, then a new failure attempt * will be saved. * * In other words, this function handles all the intricasies of thumbnailing * local images internally, and you should see if using it makes sense before * trying more complicated schemes. * * Returns: the thumbnail of @filename, or %NULL. * * Since: 2.6 **/ GdkPixbuf * egg_pixbuf_get_thumbnail_for_file (const gchar *filename, EggPixbufThumbnailSize size, GError **error) { GdkPixbuf *retval; gchar *uri; struct stat st; #ifdef WIN32 // g_return_val_if_fail (filename != NULL && (filename[1] == ':' || filename[1] == '\\'), NULL); #else // g_return_val_if_fail (filename != NULL && filename[0] == '/', NULL); #endif g_return_val_if_fail(g_path_is_absolute(filename),NULL); g_return_val_if_fail (size == EGG_PIXBUF_THUMBNAIL_NORMAL || size == EGG_PIXBUF_THUMBNAIL_LARGE, NULL); g_return_val_if_fail (error == NULL || *error == NULL, FALSE); if (stat (filename, &st) < 0) { gchar *display_name; display_name = g_filename_display_name (filename); g_set_error (error, G_FILE_ERROR, g_file_error_from_errno (errno), _("Error verifying `%s': %s"), display_name, g_strerror (errno)); g_free (display_name); return NULL; } #ifdef WIN32 if (!S_ISREG (st.st_mode)) #else if (!S_ISREG (st.st_mode) && !S_ISLNK (st.st_mode)) #endif { gchar *display_name; display_name = g_filename_display_name (filename); g_set_error (error, G_FILE_ERROR, g_file_error_from_errno (errno), _("Error reading `%s': file is not a regular file or symbolic link."), display_name); g_free (display_name); return NULL; } uri = g_filename_to_uri (filename, NULL, error); if (!uri) { return NULL; } if (egg_pixbuf_has_failed_thumbnail (uri, st.st_mtime, error)) { g_free (uri); return NULL; } retval = egg_pixbuf_load_thumbnail (uri, st.st_mtime, size); if (!retval) { GError *real_error; gchar *mime_type; ImageInfo info; info.size = size; mime_type = NULL; real_error = NULL; retval = load_image_at_max_size (filename, &info, &mime_type, &real_error); if (!retval) { /* * Don't save failures for filetypes not supported by GdkPixbuf. * * I *think* this is the proper way to go, as there's no need to * spill a half-gig of disk space telling the thumbnailing world * that GdkPixbuf doesn't understand "blah/autogen.sh". */ if (real_error->domain != GDK_PIXBUF_ERROR || real_error->code != GDK_PIXBUF_ERROR_UNKNOWN_TYPE) egg_pixbuf_save_failed_thumbnail (uri, st.st_mtime, real_error); if (error != NULL) *error = real_error; else g_error_free (real_error); } else { ThumbnailData *data; data = ensure_thumbnail_data (retval); data->size = size; data->uri = g_strdup (uri); data->mtime = st.st_mtime; data->mime_type = g_strdup (mime_type); data->description = g_strdup (gdk_pixbuf_get_option (retval, THUMB_DESCRIPTION_KEY)); data->mime_type = g_strdup (mime_type); data->image_width = info.orig_width; data->image_height = info.orig_height; data->filesize = st.st_size; egg_pixbuf_save_thumbnailv (retval, NULL, NULL, NULL); } g_free (mime_type); } g_free (uri); return retval; } /** * egg_pixbuf_load_thumbnail: * @uri: the URI of the thumbnailed file. * @size: the size of the thumbnail to load. * @mtime: the last modified time of @uri, or %-1 if unknown. * * Attempts to load the thumbnail for @uri at @size. If the thumbnail for @uri * at @size does not already exist, %NULL will be returned. * * Returns: the thumbnail pixbuf of @uri at @size which must be un-referenced * with g_object_unref() when no longer needed, or %NULL. * * Since: 2.6 **/ GdkPixbuf * egg_pixbuf_load_thumbnail (const gchar *uri, time_t mtime, EggPixbufThumbnailSize size) { GdkPixbuf *retval; gchar *filename; g_return_val_if_fail (uri != NULL && uri[0] != '\0', NULL); g_return_val_if_fail (mtime >= 0, NULL); g_return_val_if_fail (size == EGG_PIXBUF_THUMBNAIL_NORMAL || size == EGG_PIXBUF_THUMBNAIL_LARGE, NULL); filename = egg_pixbuf_get_thumbnail_filename (uri, size); retval = gdk_pixbuf_new_from_file (filename, NULL); g_free (filename); if (retval != NULL && (!parse_thumbnail_data (retval, size, NULL) || !egg_pixbuf_is_thumbnail (retval, uri, mtime))) { g_object_unref (retval); return NULL; } return retval; } /** * egg_pixbuf_load_thumbnail_at_size: * @uri: the URI of the thumbnailed file. * @mtime: the last modified time of @uri, or %-1 if unknown. * @pixel_size: the desired pixel size. * * Attempts to load the thumbnail for @uri at @size. If the thumbnail for @uri * at @size does not already exist, %NULL will be returned. * * Returns: the thumbnail pixbuf of @uri at @size which must be un-referenced * with g_object_unref() when no longer needed, or %NULL. * * Since: 2.6 **/ GdkPixbuf * egg_pixbuf_load_thumbnail_at_size (const gchar *uri, time_t mtime, gint pixel_size) { ImageInfo info; GdkPixbuf *retval; gchar *filename; g_return_val_if_fail (uri != NULL && uri[0] != '\0', NULL); g_return_val_if_fail (mtime >= 0, NULL); if (pixel_size <= EGG_PIXBUF_THUMBNAIL_NORMAL) { info.size = EGG_PIXBUF_THUMBNAIL_NORMAL; filename = egg_pixbuf_get_thumbnail_filename (uri, EGG_PIXBUF_THUMBNAIL_NORMAL); } else if (pixel_size <= EGG_PIXBUF_THUMBNAIL_LARGE) { info.size = EGG_PIXBUF_THUMBNAIL_LARGE; filename = egg_pixbuf_get_thumbnail_filename (uri, EGG_PIXBUF_THUMBNAIL_LARGE); } else if (strncmp (uri, "file://", 7) == 0) { info.size = -1; filename = g_strdup (uri + 7); } else { info.size = -1; filename = egg_pixbuf_get_thumbnail_filename (uri, EGG_PIXBUF_THUMBNAIL_LARGE); } retval = load_image_at_max_size (filename, &info, NULL, NULL); g_free (filename); if (retval != NULL && (!parse_thumbnail_data (retval, info.size, NULL) || !egg_pixbuf_is_thumbnail (retval, uri, mtime))) { g_object_unref (retval); return NULL; } return retval; } /* ****************** * * Saving Functions * * ****************** */ static void collect_save_options (va_list opts, gchar ***keys, gchar ***vals) { gchar *key; gchar *val; gchar *next; gint count; count = 0; *keys = NULL; *vals = NULL; next = va_arg (opts, gchar*); while (next) { key = next; val = va_arg (opts, gchar*); ++count; /* woo, slow */ *keys = g_realloc (*keys, sizeof(gchar*) * (count + 1)); *vals = g_realloc (*vals, sizeof(gchar*) * (count + 1)); (*keys)[count-1] = g_strdup (key); (*vals)[count-1] = g_strdup (val); (*keys)[count] = NULL; (*vals)[count] = NULL; next = va_arg (opts, gchar*); } } /** * egg_pixbuf_save_thumbnail: * @thumbnail: the valid thumbnail pixbuf to save. * @error: a location to a pointer to store an error. * @Varargs: a %NULL-terminated metadata key/value pair list. * * Saves @thumbnail to it's appropriate file. Note that @thumbnail must have * it's URI, mtime, and size metadata set before this function is called. Any * additional metadata can be saved using the %NULL-terminated * variable-arguments list. If an error occurs while saving the thumbnail, a * failure thumbnail will be automatically created and saved. * * Returns: %TRUE if the thumbnail was successfully saved, %FALSE if it was not. * * Since: 2.6 **/ gboolean egg_pixbuf_save_thumbnail (GdkPixbuf *thumbnail, GError **error, ...) { va_list args; gboolean retval; gchar **keys, **values; g_return_val_if_fail (egg_pixbuf_is_thumbnail (thumbnail, NULL, -1), FALSE); g_return_val_if_fail (error == NULL || *error == NULL, FALSE); keys = NULL; values = NULL; va_start (args, error); collect_save_options (args, &keys, &values); va_end (args); retval = egg_pixbuf_save_thumbnailv (thumbnail, keys, values, error); g_strfreev (values); g_strfreev (keys); return retval; } static gchar ** create_pair_array (const gchar *key, const gchar *value) { gchar **retval; retval = g_new (gchar *, 2); retval[0] = g_strdup (key); retval[1] = g_strdup (value); return retval; } static inline void merge_keys_values_and_thumbnail_data (GdkPixbuf *thumbnail, gchar **src_keys, gchar **src_values, gchar ***dest_keys, gchar ***dest_values) { ThumbnailData *data; GSList *list; guint n_pairs, i; gchar *tmp; data = g_object_get_qdata (G_OBJECT (thumbnail), THUMBNAIL_DATA_QUARK); if (!data) { *dest_keys = g_strdupv (src_keys); *dest_values = g_strdupv (src_values); return; } list = g_slist_prepend (NULL, create_pair_array (THUMB_SOFTWARE_KEY, THUMB_SOFTWARE_VALUE)); if (data->uri) list = g_slist_prepend (list, create_pair_array (THUMB_URI_KEY, data->uri)); if (data->mtime >= 0) { tmp = g_strdup_printf ("%ld", data->mtime); list = g_slist_prepend (list, create_pair_array (THUMB_MTIME_KEY, tmp)); g_free (tmp); } if (data->description) list = g_slist_prepend (list, create_pair_array (THUMB_DESCRIPTION_KEY, data->description)); if (data->mime_type) list = g_slist_prepend (list, create_pair_array (THUMB_MIME_TYPE_KEY, data->mime_type)); if (data->software) list = g_slist_prepend (list, create_pair_array (THUMB_SOFTWARE_KEY, data->software)); if (data->filesize > 0) { // tmp = g_strdup_printf ("%" G_GSSIZE_FORMAT, data->filesize); // Change by AMR for GTK+-2.0 compatibility tmp = g_strdup_printf ("%ld", data->filesize); list = g_slist_prepend (list, create_pair_array (THUMB_FILESIZE_KEY, tmp)); g_free (tmp); } if (data->image_width > 0) { tmp = g_strdup_printf ("%d", data->image_width); list = g_slist_prepend (list, create_pair_array (THUMB_WIDTH_KEY, tmp)); g_free (tmp); } if (data->image_height > 0) { tmp = g_strdup_printf ("%d", data->image_height); list = g_slist_prepend (list, create_pair_array (THUMB_HEIGHT_KEY, tmp)); g_free (tmp); } if (data->document_pages > 0) { tmp = g_strdup_printf ("%d", data->document_pages); list = g_slist_prepend (list, create_pair_array (THUMB_PAGES_KEY, tmp)); g_free (tmp); } if (data->movie_length >= 0) { tmp = g_strdup_printf ("%ld", data->movie_length); list = g_slist_prepend (list, create_pair_array (THUMB_MTIME_KEY, tmp)); g_free (tmp); } /* Get a count of the keys in src_keys */ if (src_keys) { for (n_pairs = 0; src_keys[n_pairs] != NULL; n_pairs++); } else n_pairs = 0; n_pairs += g_slist_length (list); *dest_keys = g_new0 (gchar *, n_pairs + 1); *dest_values = g_new0 (gchar *, n_pairs + 1); if (src_keys) { for (i = 0; src_keys[i] != NULL; i++) { (*dest_keys)[i] = g_strdup (src_keys[i]); (*dest_values)[i] = g_strdup (src_values[i]); } } else i = 0; while (list) { gchar **pair; pair = list->data; (*dest_keys)[i] = pair[0]; (*dest_values)[i] = pair[1]; g_free (pair); list = g_slist_remove_link (list, list); i++; } } /** * egg_pixbuf_save_thumbnailv: * @thumbnail: the thumbnail to save. * @keys: a NULL-terminated array of metadata keys. * @values: a NULL-terminated array of metadata values. * @error: a pointer to a location to store errors in. * * This function is primarily useful to language bindings. Applications should * use egg_pixbuf_save_thumbnail(). * * Returns: %TRUE if the thumbnail was successfully saved, %FALSE if it was not. * * Since: 2.6 **/ gboolean egg_pixbuf_save_thumbnailv (GdkPixbuf *thumbnail, gchar **keys, gchar **values, GError **error) { const gchar *uri; gchar *filename, *tmp_filename; gchar **real_keys, **real_values; gint fd; gboolean retval; GError *real_error; g_return_val_if_fail (GDK_IS_PIXBUF (thumbnail), FALSE); g_return_val_if_fail (egg_pixbuf_is_thumbnail (thumbnail, NULL, -1), FALSE); g_return_val_if_fail (error == NULL || *error == NULL, FALSE); if (!ensure_thumbnail_dirs (error)) return FALSE; uri = egg_pixbuf_get_thumbnail_uri (thumbnail); filename = egg_pixbuf_get_thumbnail_filename (uri, egg_pixbuf_get_thumbnail_size (thumbnail)); tmp_filename = g_strconcat (filename, ".XXXXXX", NULL); fd = g_mkstemp (tmp_filename); if (fd < 0) { real_error = g_error_new (G_FILE_ERROR, g_file_error_from_errno (errno), _("Error creating temporary thumbnail file for `%s': %s"), uri, g_strerror (errno)); g_free (tmp_filename); g_free (filename); egg_pixbuf_save_failed_thumbnail (egg_pixbuf_get_thumbnail_uri (thumbnail), egg_pixbuf_get_thumbnail_mtime (thumbnail), real_error); if (error != NULL) *error = real_error; else g_error_free (real_error); return FALSE; } else { close (fd); chmod (tmp_filename, 0600); } real_error = NULL; merge_keys_values_and_thumbnail_data (thumbnail, keys, values, &real_keys, &real_values); retval = gdk_pixbuf_savev (thumbnail, tmp_filename, "png", real_keys, real_values, &real_error); g_strfreev (real_keys); g_strfreev (real_values); if (retval) rename (tmp_filename, filename); else { egg_pixbuf_save_failed_thumbnail (egg_pixbuf_get_thumbnail_uri (thumbnail), egg_pixbuf_get_thumbnail_mtime (thumbnail), real_error); if (error != NULL) *error = real_error; else g_error_free (real_error); } g_free (tmp_filename); g_free (filename); return retval; } /* ******************* * * Failure Functions * * ******************* */ /** * egg_pixbuf_has_failed_thumbnail: * @uri: the URI of the thumbnailed file to check. * @mtime: the last modified time of @uri. * @error: a pointer to a location to store an error. * * Checks to see if creating a thumbnail for @uri which was changed on @mtime * has already been tried and failed. If it has, the error which prevented the * thumbnail from being created will be stored in @error. * * Returns: %TRUE if the thumbnail creation has already failed, %FALSE if it * has not. * * Since: 2.6 **/ gboolean egg_pixbuf_has_failed_thumbnail (const gchar *uri, time_t mtime, GError **error) { gchar *md5, *basename, *filename; gboolean retval; GdkPixbuf *thumb; g_return_val_if_fail (uri != NULL && uri[0] != '\0', FALSE); g_return_val_if_fail (error == NULL || *error == NULL, FALSE); retval = FALSE; md5 = egg_str_get_md5_str (uri); basename = g_strconcat (md5, ".png", NULL); g_free (md5); filename = g_build_filename (g_get_home_dir (), ".thumbnails", FAIL_DIR_NAME, APP_DIR_NAME, basename, NULL); thumb = gdk_pixbuf_new_from_file (filename, NULL); g_free (filename); if (thumb) { retval = (parse_thumbnail_data (thumb, EGG_PIXBUF_THUMBNAIL_UNKNOWN, error) && egg_pixbuf_is_thumbnail (thumb, uri, mtime)); g_object_unref (thumb); } else retval = FALSE; return retval; } /** * egg_pixbuf_save_failed_thumbnail: * @uri: the URI which the thumbnail creation failed for. * @mtime: the time that @uri was last modified. * @error: the error which occurred while trying to create the thumbnail. * * Saves a "failure thumbnail" for the @uri with @mtime. This lets other * applications using the EggPixbufThumbnail API know that a thumbnail attempt * was tried for @uri when it was modified last at @mtime. The @error parameter * lets other applications know exactly why the thumbnail creation failed. * * @error must be in either the #G_FILE_ERROR or #GDK_PIXBUF_ERROR * domain. * * Since: 2.6 **/ void egg_pixbuf_save_failed_thumbnail (const gchar *uri, time_t mtime, const GError *error) { GdkPixbuf *pixbuf; GError *err_ret; gchar *md5, *basename, *filename, *tmp_filename, *mtime_str; gboolean saved_ok; gint fd; g_return_if_fail (uri != NULL && uri[0] != '\0'); g_return_if_fail (error == NULL || error->domain == G_FILE_ERROR || error->domain == GDK_PIXBUF_ERROR); err_ret = NULL; if (!ensure_thumbnail_dirs (&err_ret)) { g_warning ("%s", err_ret->message); g_error_free (err_ret); return; } md5 = egg_str_get_md5_str (uri); basename = g_strconcat (md5, ".png", NULL); g_free (md5); filename = g_build_filename (g_get_home_dir (), ".thumbnails", FAIL_DIR_NAME, APP_DIR_NAME, basename, NULL); g_free (basename); tmp_filename = g_strconcat (filename, ".XXXXXX", NULL); fd = g_mkstemp (tmp_filename); if (fd < 0) { g_free (tmp_filename); g_free (filename); return; } else close (fd); pixbuf = gdk_pixbuf_new (GDK_COLORSPACE_RGB, TRUE, 8, 1, 1); mtime_str = g_strdup_printf ("%ld", mtime); if (error) { gchar *code_str; const gchar *domain; if (error->domain == G_FILE_ERROR) domain = FILE_ERROR_NAME; else domain = PIXBUF_ERROR_NAME; code_str = g_strdup_printf ("%d", error->code); saved_ok = gdk_pixbuf_save (pixbuf, tmp_filename, "png", &err_ret, THUMB_URI_KEY, uri, THUMB_MTIME_KEY, mtime_str, THUMB_SOFTWARE_KEY, THUMB_SOFTWARE_VALUE, THUMB_ERROR_DOMAIN_KEY, domain, THUMB_ERROR_CODE_KEY, code_str, THUMB_ERROR_MESSAGE_KEY, error->message, NULL); g_free (code_str); } else { saved_ok = gdk_pixbuf_save (pixbuf, tmp_filename, "png", &err_ret, THUMB_URI_KEY, uri, THUMB_MTIME_KEY, mtime_str, THUMB_SOFTWARE_KEY, THUMB_SOFTWARE_VALUE, NULL); } if (!saved_ok) { g_message ("Error saving fail thumbnail: %s", err_ret->message); g_error_free (err_ret); } else { chmod (tmp_filename, 0600); rename (tmp_filename, filename); } g_free (tmp_filename); g_free (filename); g_free (mtime_str); } /** * egg_pixbuf_get_thumbnail_for_pixbuf: * @pixbuf: the full-sized source pixbuf. * @size: the size of the thumbnailnail to generate. * @uri: the URI location of @pixbuf. * @mtime: the last-modified time of @uri. * * Creates a thumbnail of the in-memory @pixbuf at @size, using @uri and * @mtime for the pre-requisite metadata. * * Returns: a new thumbnail of @pixbuf which must be un-referenced with * g_object_unref() when no longer needed, or %NULL. * * Since: 2.6 **/ GdkPixbuf * egg_pixbuf_get_thumbnail_for_pixbuf (GdkPixbuf *pixbuf, const gchar *uri, time_t mtime, EggPixbufThumbnailSize size) { GdkPixbuf *retval; gint width, height; g_return_val_if_fail (GDK_IS_PIXBUF (pixbuf), NULL); g_return_val_if_fail (size == EGG_PIXBUF_THUMBNAIL_NORMAL || size == EGG_PIXBUF_THUMBNAIL_LARGE, NULL); g_return_val_if_fail (uri != NULL && uri[0] != '\0', NULL); width = gdk_pixbuf_get_width (pixbuf); height = gdk_pixbuf_get_height (pixbuf); if (width > size || height > size) { gdouble scale; if (width > height) scale = (gdouble) size / width; else scale = (gdouble) size / height; retval = gdk_pixbuf_scale_simple (pixbuf, scale * width, scale *height, GDK_INTERP_BILINEAR); } else { retval = gdk_pixbuf_copy (pixbuf); } egg_pixbuf_set_thumbnail_uri (retval, uri); egg_pixbuf_set_thumbnail_mtime (retval, mtime); egg_pixbuf_set_thumbnail_size (retval, size); egg_pixbuf_set_thumbnail_description (retval, gdk_pixbuf_get_option (pixbuf, THUMB_DESCRIPTION_KEY)); return retval; } /* ******************* * * Testing Functions * * ******************* */ /** * egg_pixbuf_is_thumbnail: * @pixbuf: the pixbuf to test. * @uri: the source URI of pixbuf (or %NULL to ignore this test). * @mtime: the modification time of @uri (or %-1 to ignore this test). * * This function will always check for thumbnail metadata attached to @pixbuf, * specifically the existance of a URI value. If @uri is non-%NULL, then the URI * value on @pixbuf will be compared with it. If @mtime is greater than or equal * to %0, then the modification time value will also be checked. * * See also: egg_pixbuf_set_thumbnail_uri(), egg_pixbuf_set_thumbnail_mtime(). * * Returns: %TRUE if @pixbuf can be used as a thumbnail, %FALSE if it cannot. * * Since: 2.6 **/ gboolean egg_pixbuf_is_thumbnail (GdkPixbuf *pixbuf, const gchar *uri, time_t mtime) { ThumbnailData *data; g_return_val_if_fail (GDK_IS_PIXBUF (pixbuf), FALSE); g_return_val_if_fail (uri == NULL || uri[0] != '\0', FALSE); data = get_thumbnail_data (pixbuf); /* Must have thumbnail data and matching URIs. */ if (!data || !data->uri || (uri && strcmp (data->uri, uri) != 0)) return FALSE; /* Thumbnails of local URIs must have matching mtime. */ if (mtime >= 0 && uri && g_ascii_strncasecmp (data->uri, "file:", 5) == 0) { if (data->mtime != mtime) return FALSE; } /* Thumbnails of remote URIs expire after 30 days. We could require the user pass the proper mtime value for remote URIs, but why? */ else if (mtime >= 0) { time_t current_time; current_time = time (NULL); if (data->mtime + EXPIRATION_TIME < current_time) return FALSE; } return TRUE; } /* ***************** * * Getters/Setters * * ***************** */ /** * egg_pixbuf_get_thumbnail_size: * @thumbnail: the thumbnail to examine. * * Retreives the escaped URI that @thumbnail is a preview of. * * Returns: a character array which should not be modified or freed. * * Since: 2.6 **/ EggPixbufThumbnailSize egg_pixbuf_get_thumbnail_size (GdkPixbuf *thumbnail) { ThumbnailData *data; g_return_val_if_fail (GDK_IS_PIXBUF (thumbnail), EGG_PIXBUF_THUMBNAIL_UNKNOWN); data = get_thumbnail_data (thumbnail); return (data ? data->size : EGG_PIXBUF_THUMBNAIL_UNKNOWN); } /** * egg_pixbuf_set_thumbnail_size: * @thumbnail: the thumbnail to modify. * @size: the size of @thumbnail. * * Sets the size metadata for @thumbnail. This function may only be * called once for a particular pixbuf. * * Since: 2.6 **/ void egg_pixbuf_set_thumbnail_size (GdkPixbuf *thumbnail, EggPixbufThumbnailSize size) { ThumbnailData *data; g_return_if_fail (GDK_IS_PIXBUF (thumbnail)); g_return_if_fail (size == EGG_PIXBUF_THUMBNAIL_NORMAL || size == EGG_PIXBUF_THUMBNAIL_LARGE); data = ensure_thumbnail_data (thumbnail); data->size = size; } /** * egg_pixbuf_get_thumbnail_uri: * @thumbnail: the thumbnail to examine. * * Retreives the escaped URI that @thumbnail is a preview of. * * Returns: a character array which should not be modified or freed. * * Since: 2.6 **/ G_CONST_RETURN gchar * egg_pixbuf_get_thumbnail_uri (GdkPixbuf *thumbnail) { ThumbnailData *data; g_return_val_if_fail (GDK_IS_PIXBUF (thumbnail), NULL); data = get_thumbnail_data (thumbnail); return (data ? data->uri : NULL); } /** * egg_pixbuf_set_thumbnail_uri: * @thumbnail: the thumbnail to modify. * @uri: the escaped URI that @thumbnail is a preview of. * * Sets the URI metadata for @thumbnail. This function may only be * called once for a particular pixbuf. * * Since: 2.6 **/ void egg_pixbuf_set_thumbnail_uri (GdkPixbuf *thumbnail, const gchar *uri) { ThumbnailData *data; g_return_if_fail (GDK_IS_PIXBUF (thumbnail)); g_return_if_fail (uri != NULL && uri[0] != '\0'); data = ensure_thumbnail_data (thumbnail); g_free (data->uri); data->uri = g_strdup (uri); } /** * egg_pixbuf_get_thumbnail_mime_type: * @thumbnail: the thumbnail to examine. * * Retreives the mime-type of the file that @thumbnail is a preview of. * * Returns: a character array which should not be modified or freed. * * Since: 2.6 **/ G_CONST_RETURN gchar * egg_pixbuf_get_thumbnail_mime_type (GdkPixbuf *thumbnail) { ThumbnailData *data; g_return_val_if_fail (GDK_IS_PIXBUF (thumbnail), NULL); data = get_thumbnail_data (thumbnail); return (data ? data->mime_type : NULL); } /** * egg_pixbuf_set_thumbnail_mime_type: * @thumbnail: the thumbnail to modify. * @mime_type: the mime type of the file that @thumbnail is a preview of. * * Sets the @mime_type metadata for @thumbnail. This function may only be called * once on a particular pixbuf. * * Since: 2.6 **/ void egg_pixbuf_set_thumbnail_mime_type (GdkPixbuf *thumbnail, const gchar *mime_type) { ThumbnailData *data; g_return_if_fail (GDK_IS_PIXBUF (thumbnail)); g_return_if_fail (mime_type != NULL && mime_type[0] != '\0'); data = ensure_thumbnail_data (thumbnail); g_free (data->mime_type); data->mime_type = g_strdup (mime_type); } /** * egg_pixbuf_get_thumbnail_description: * @thumbnail: the thumbnail to examine. * * Retreives the user-specified description (comment) for the file that * @thumbnail is a preview of. If this metadata was not saved (or does not * exist for @thumbnail), NULL will be returned. * * Returns: a character array which should not be modified or freed. * * Since: 2.6 **/ G_CONST_RETURN gchar * egg_pixbuf_get_thumbnail_description (GdkPixbuf *thumbnail) { ThumbnailData *data; g_return_val_if_fail (GDK_IS_PIXBUF (thumbnail), NULL); data = get_thumbnail_data (thumbnail); return (data ? data->description : NULL); } /** * egg_pixbuf_set_thumbnail_description: * @thumbnail: the thumbnail to modify. * @description: the description of the file that @thumbnail is a preview of. * * Sets the user-specified @description metadata for @thumbnail. This function * may only be called once on a particular pixbuf. * * Since: 2.6 **/ void egg_pixbuf_set_thumbnail_description (GdkPixbuf *thumbnail, const gchar *description) { ThumbnailData *data; g_return_if_fail (GDK_IS_PIXBUF (thumbnail)); g_return_if_fail (description != NULL && description[0] != '\0'); data = ensure_thumbnail_data (thumbnail); g_free (data->description); data->description = g_strdup (description); } /** * egg_pixbuf_get_thumbnail_mtime: * @thumbnail: the thumbnail to examine. * * Retreives the UNIX time (seconds since the epoch/time_t) the file which * @thumbnail is a preview of was modified on when the @thumbnail was created. * If this metadata was not saved with @thumbnail, %-1 will be returned. * * Returns: a UNIX seconds-since-epoch time value, or %-1. * * Since: 2.6 **/ time_t egg_pixbuf_get_thumbnail_mtime (GdkPixbuf *thumbnail) { ThumbnailData *data; g_return_val_if_fail (GDK_IS_PIXBUF (thumbnail), -1); data = get_thumbnail_data (thumbnail); return (data ? data->mtime : -1); } /** * egg_pixbuf_set_thumbnail_mtime: * @thumbnail: the thumbnail to modify. * @mtime: the last-modified time of the file that @thumbnail is a preview of. * * Sets the last-modified @mtime metadata for @thumbnail. This function * may only be called once on a particular pixbuf. * * Since: 2.6 **/ void egg_pixbuf_set_thumbnail_mtime (GdkPixbuf *thumbnail, time_t mtime) { ThumbnailData *data; g_return_if_fail (GDK_IS_PIXBUF (thumbnail)); data = ensure_thumbnail_data (thumbnail); data->mtime = mtime; } /** * egg_pixbuf_get_thumbnail_filesize: * @thumbnail: the thumbnail to examine. * * Retreives the size in bytes of the file which @thumbnail is a preview of. If * this metadata was not saved with @thumbnail, %-1 will be returned. * * Returns: a 64-bit integer. * * Since: 2.6 **/ gssize egg_pixbuf_get_thumbnail_filesize (GdkPixbuf *thumbnail) { ThumbnailData *data; g_return_val_if_fail (GDK_IS_PIXBUF (thumbnail), -1); data = get_thumbnail_data (thumbnail); return (data ? data->filesize : -1); } /** * egg_pixbuf_set_thumbnail_filesize: * @thumbnail: the thumbnail to modify. * @filesize: the size (in bytes) of the file that @thumbnail is a preview of. * * Sets the @filesize metadata for @thumbnail. This function may only be called * once on a particular pixbuf. * * Since: 2.6 **/ void egg_pixbuf_set_thumbnail_filesize (GdkPixbuf *thumbnail, gssize filesize) { ThumbnailData *data; g_return_if_fail (GDK_IS_PIXBUF (thumbnail)); data = ensure_thumbnail_data (thumbnail); data->filesize = filesize; } /** * egg_pixbuf_get_thumbnail_image_width: * @thumbnail: the thumbnail to examine. * * Retreives the width (in pixels) of the image contained in the file that * @thumbnail is a preview of. If this metadata was not saved with @thumbnail * (e.g. if the original file was not an image), %-1 will be returned. * * Returns: an integer. * * Since: 2.6 **/ gint egg_pixbuf_get_thumbnail_image_width (GdkPixbuf *thumbnail) { ThumbnailData *data; g_return_val_if_fail (GDK_IS_PIXBUF (thumbnail), -1); data = get_thumbnail_data (thumbnail); return (data ? data->image_width : -1); } /** * egg_pixbuf_set_thumbnail_image_width: * @thumbnail: the thumbnail to modify. * @image_width: the width (in pixels) of the image file that @thumbnail is a preview of. * * Sets the @image_width metadata for @thumbnail. This function may only be * called once on a particular pixbuf. * * Since: 2.6 **/ void egg_pixbuf_set_thumbnail_image_width (GdkPixbuf *thumbnail, gint image_width) { ThumbnailData *data; g_return_if_fail (GDK_IS_PIXBUF (thumbnail)); data = ensure_thumbnail_data (thumbnail); data->image_width = image_width; } /** * egg_pixbuf_get_thumbnail_image_height: * @thumbnail: the thumbnail to examine. * * Retreives the height (in pixels) of the image contained in the file that * @thumbnail is a preview of. If this metadata was not saved with @thumbnail * (e.g. if the original file was not an image), %-1 will be returned. * * Returns: an integer. * * Since: 2.6 **/ gint egg_pixbuf_get_thumbnail_image_height (GdkPixbuf *thumbnail) { ThumbnailData *data; g_return_val_if_fail (GDK_IS_PIXBUF (thumbnail), -1); data = get_thumbnail_data (thumbnail); return (data ? data->image_height : -1); } /** * egg_pixbuf_set_thumbnail_image_height: * @thumbnail: the thumbnail to modify. * @image_height: the height (in pixels) of the image file that @thumbnail is a preview of. * * Sets the @image_height metadata for @thumbnail. This function may only be * called once on a particular pixbuf. * * Since: 2.6 **/ void egg_pixbuf_set_thumbnail_image_height (GdkPixbuf *thumbnail, gint image_height) { ThumbnailData *data; g_return_if_fail (GDK_IS_PIXBUF (thumbnail)); data = ensure_thumbnail_data (thumbnail); data->image_height = image_height; } /** * egg_pixbuf_get_thumbnail_document_pages: * @thumbnail: the thumbnail to examine. * * Retreives the number of pages in the document contained in the file that * @thumbnail is a preview of. If this metadata was not saved with @thumbnail * (e.g. if the original file was not a paged document), %-1 will be returned. * * Returns: an integer. * * Since: 2.6 **/ gint egg_pixbuf_get_thumbnail_document_pages (GdkPixbuf *thumbnail) { ThumbnailData *data; g_return_val_if_fail (GDK_IS_PIXBUF (thumbnail), -1); data = get_thumbnail_data (thumbnail); return (data ? data->document_pages : -1); } /** * egg_pixbuf_set_thumbnail_document_pages: * @thumbnail: the thumbnail to modify. * @document_pages: the number of pages in the document file that @thumbnail is * a preview of. * * Sets the @document_pages metadata for @thumbnail. This function may only be * called once on a particular pixbuf. * * Since: 2.6 **/ void egg_pixbuf_set_thumbnail_document_pages (GdkPixbuf *thumbnail, gint document_pages) { ThumbnailData *data; g_return_if_fail (GDK_IS_PIXBUF (thumbnail)); data = ensure_thumbnail_data (thumbnail); data->document_pages = document_pages; } /** * egg_pixbuf_get_thumbnail_movie_length: * @thumbnail: the thumbnail to examine. * * Retreives the length (in seconds) of the movie contained in the file that * @thumbnail is a preview of. If this metadata was not saved with @thumbnail * (e.g. if the original file was not a movie), %-1 will be returned. * * Returns: a 64-bit integer. * * Since: 2.6 **/ time_t egg_pixbuf_get_thumbnail_movie_length (GdkPixbuf *thumbnail) { ThumbnailData *data; g_return_val_if_fail (GDK_IS_PIXBUF (thumbnail), -1); data = get_thumbnail_data (thumbnail); return (data ? data->movie_length : -1); } /** * egg_pixbuf_set_thumbnail_movie_length: * @thumbnail: the thumbnail to modify. * @movie_length: the length (in seconds) of the movie file that @thumbnail is a preview of. * * Sets the @movie_length metadata for @thumbnail. This function may only be * called once on a particular pixbuf. * * Since: 2.6 **/ void egg_pixbuf_set_thumbnail_movie_length (GdkPixbuf *thumbnail, time_t movie_length) { ThumbnailData *data; g_return_if_fail (GDK_IS_PIXBUF (thumbnail)); data = ensure_thumbnail_data (thumbnail); data->movie_length = movie_length; } /** * egg_pixbuf_get_thumbnail_software: * @thumbnail: the thumbnail to examine. * * Retreives the name of the software which originally created @thumbnail. If * this metadata was not saved (or does not exist for @thumbnail), NULL will be * returned. * * Returns: a character array which should not be modified or freed. * * Since: 2.6 **/ G_CONST_RETURN gchar * egg_pixbuf_get_thumbnail_software (GdkPixbuf *thumbnail) { ThumbnailData *data; g_return_val_if_fail (GDK_IS_PIXBUF (thumbnail), NULL); data = get_thumbnail_data (thumbnail); return (data ? data->software : NULL); } /* ******************** * * Filename Functions * * ******************** */ /** * egg_pixbuf_get_thumbnail_filename: * @uri: the URI of the file to thumbnail. * @size: the desired size of the thumbnail. * * Constructs the global thumbnail filename for @uri at @size. This filename * can be used to open and save the thumbnail. * * Returns: a newly-allocated character array which should be freed with * g_free() when no longer needed. * * Since: 2.6 **/ gchar * egg_pixbuf_get_thumbnail_filename (const gchar *uri, EggPixbufThumbnailSize size) { const gchar *home_dir = NULL; gchar *md5, *basename, *filename; g_return_val_if_fail (uri != NULL && uri[0] != '\0', NULL); g_return_val_if_fail (size == EGG_PIXBUF_THUMBNAIL_NORMAL || size == EGG_PIXBUF_THUMBNAIL_LARGE, FALSE); if (home_dir == NULL) home_dir = g_get_home_dir (); else home_dir = g_get_tmp_dir (); md5 = egg_str_get_md5_str (uri); basename = g_strconcat (md5, ".png", NULL); filename = g_build_filename (home_dir, ".thumbnails", SIZE_TO_DIR (size), basename, NULL); g_free (basename); return filename; } #if 0 /** * egg_pixbuf_get_local_thumbnail_uri: * @uri: the URI of the file to thumbnail. * @size: the desired size of the thumbnail. * * Constructs the correct thumbnail URI for the "local" thumbnail directory, * intended for removable media. * * Returns: a string URI which must be freed with g_free() when no longer * needed, or %NULL. * * Since: 2.6 **/ gchar * egg_pixbuf_get_local_thumbnail_uri (const gchar *uri, EggPixbufThumbnailSize size) { gchar *retval; g_return_val_if_fail (uri != NULL && uri[0] != '\0', NULL); g_return_val_if_fail (size == EGG_PIXBUF_THUMBNAIL_NORMAL || size == EGG_PIXBUF_THUMBNAIL_LARGE, FALSE); retval = NULL; return retval; } #endif /* Disabled */ photoprint-0.4.2-pre2/pixbufthumbnail/eggmd5.h0000644000175000017500000000324211076423574016246 00000000000000/* Egg Libraries: eggmd5.h * * Copyright (c) 2004 James M. Cape * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #ifndef __EGG_MD5_H__ #define __EGG_MD5_H__ 1 #include G_BEGIN_DECLS #define EGG_TYPE_MD5_DIGEST (egg_md5_digest_get_type ()) typedef struct _EggMd5Digest EggMd5Digest; struct _EggMd5Digest { guchar digest[16]; }; GType egg_md5_digest_get_type (void) G_GNUC_CONST; EggMd5Digest *egg_str_get_md5_digest (const gchar *contents); gchar *egg_str_get_md5_str (const gchar *contents); EggMd5Digest *egg_md5_str_to_digest (const gchar *str_digest); gchar *egg_md5_digest_to_str (const EggMd5Digest *md5_digest); EggMd5Digest *egg_md5_digest_dup (const EggMd5Digest *src); #define egg_md5_digest_free g_free guint egg_md5_digest_hash (gconstpointer digest); gboolean egg_md5_digest_equal (gconstpointer digest1, gconstpointer digest2); G_END_DECLS #endif /* !__EGG_MD5_H__ */ photoprint-0.4.2-pre2/pixbufthumbnail/Makefile.am0000644000175000017500000000044611076423574016764 00000000000000AM_CFLAGS = $(GTK2_CFLAGS) noinst_LTLIBRARIES = libpixbufthumbnail.la libpixbufthumbnail_la_SOURCES = \ eggmd5.c \ eggmd5.h \ egg-pixbuf-thumbnail.c \ egg-pixbuf-thumbnail.h libpixbufthumbnail_la_LIBADD = $(GTK_LIBS) libpixbufthumbnail_la_LDFLAGS = -static EXTRA_DIST = COPYING photoprint-0.4.2-pre2/pixbufthumbnail/eggmd5.c0000644000175000017500000003414711076423574016251 00000000000000/* Egg Libraries: eggmd5.c * * Copyright (C) 2004 James M. Cape * Copyright (C) 2002 Red Hat, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif /* HAVE_CONFIG_H */ #include #include "eggmd5.h" typedef struct _Md5Context Md5Context; static void get_md5 (const gchar *str, guchar digest[16]); static void md5_init (Md5Context *context); static void md5_update (Md5Context *context, guchar const *buf, guint len); static void md5_final (guchar digest[16], Md5Context *context); static void md5_transform (guint32 buf[4], guint32 const in[16]); /* ************************************************************************** * * PUBLIC API * * ************************************************************************** */ GType egg_md5_digest_get_type (void) { GType type = G_TYPE_INVALID; if (type == G_TYPE_INVALID) { type = g_boxed_type_register_static ("EggMd5Digest", (GBoxedCopyFunc) egg_md5_digest_dup, g_free); } return type; } /** * egg_str_get_md5_digest: * @str: the string to create a digest of. * * Creates a binary MD5 digest of the contents of @str. * * Returns: a new binary MD5 digest. It should be freed with g_free() when no * longer needed. * * Since: 2.6 **/ EggMd5Digest * egg_str_get_md5_digest (const gchar *str) { EggMd5Digest *retval; g_return_val_if_fail (str != NULL, NULL); retval = g_new (EggMd5Digest, 1); get_md5 (str, retval->digest); return retval; } /** * egg_str_get_md5_str: * @str: the string to create a digest of. * * Creates an character array MD5 digest of the contents of @str. * * Returns: a newly-allocated character array which should be freed with * g_free() when no longer needed. * * Since: 2.6 **/ gchar * egg_str_get_md5_str (const gchar *str) { EggMd5Digest digest; g_return_val_if_fail (str != NULL, NULL); get_md5 (str, digest.digest); return egg_md5_digest_to_str (&digest); } /** * egg_md5_digest_to_str: * @digest: the binary MD5 digest to convert. * * Converts the binary @digest to an ASCII character array digest. The result * can be used as an ordinary C string. * * Returns: a newly-allocated character array which should be freed with * g_free() when no longer needed. * * Since: 2.6 **/ gchar * egg_md5_digest_to_str (const EggMd5Digest *digest) { static gchar hex_digits[] = "0123456789abcdef"; guchar *retval; gint i; g_return_val_if_fail (digest != NULL, NULL); retval = g_new (guchar, 33); for (i = 0; i < 16; i++) { retval[2 * i] = hex_digits[digest->digest[i] >> 4]; retval[2 * i + 1] = hex_digits[digest->digest[i] & 0xf]; } retval[32] = 0; return retval; } /** * egg_md5_str_to_digest: * @str_digest: the character array digest to convert. * * Converts the @str_digest character array digest to a binary digest. * * Returns: a newly allocated binary digest. It should be freed with * g_free() when no longer needed. * * Since: 2.6 **/ EggMd5Digest * egg_md5_str_to_digest (const gchar *str_digest) { EggMd5Digest *retval; guint i; g_return_val_if_fail (str_digest != NULL, NULL); g_return_val_if_fail (strlen (str_digest) == 32, NULL); retval = g_new (EggMd5Digest, 1); for (i = 0; i < 16; i++) { retval->digest[i] = g_ascii_xdigit_value (str_digest[2 * i]) << 4 | g_ascii_xdigit_value (str_digest[2 * i + 1]); } return retval; } /** * egg_md5_digest_dup: * @src: the digest to copy. * * Duplicates the contents of the @src binary MD5 digest. * * Returns: a new binary MD5 digest. It should be freed with g_free() when no * longer needed. * * Since: 2.6 **/ EggMd5Digest * egg_md5_digest_dup (const EggMd5Digest *src) { return g_memdup (src, sizeof (EggMd5Digest)); } /** * egg_md5_digest_hash: * @digest: the #EggMd5Digest to hash. * * Gets the numeric hash of @digest, for use in #GHashTable and #GCache. * * Returns: an unsigned integer hash of the digest. * * Since: 2.6 **/ guint egg_md5_digest_hash (gconstpointer digest) { return *((guint *) digest); } /** * egg_md5_digest_equal: * @digest1: the first #EggMd5Digest to compare. * @digest2: the second #EggMd5Digest to compare. * * Tests the equality of @digest1 and @digest2, useful for #GHashTable and * #GCashe. * * Returns: %TRUE if both digests are equal, %FALSE otherwise. * * Since: 1.0 **/ gboolean egg_md5_digest_equal (gconstpointer digest1, gconstpointer digest2) { guint *d1, *d2; guint i; /* Both NULL or same digest */ if (digest1 == digest2) return TRUE; /* One is NULL and the other isn't */ if (digest1 == NULL || digest2 == NULL) return FALSE; d1 = (guint *) digest1; d2 = (guint *) digest2; for (i = 0; i < (16 / sizeof (guint)); i++) { if (*d1 != *d2) return FALSE; d1 += i; d2 += i; } return TRUE; } /* ************************************************************************** * * MD5 Digests * * ************************************************************************** */ /* * This code implements the MD5 message-digest algorithm. * The algorithm is due to Ron Rivest. This code was * written by Colin Plumb in 1993, no copyright is claimed. * This code is in the public domain; do with it what you wish. * * Equivalent code is available from RSA Data Security, Inc. * This code has been tested against that, and is equivalent, * except that you don't need to include two pages of legalese * with every copy. * * To compute the message digest of a chunk of bytes, declare an * ThumbMD5Context structure, pass it to thumb_md5_init, call * thumb_md5_update as needed on buffers full of bytes, and then call * thumb_md5_final, which will fill a supplied 32-byte array with the * digest in ascii form. * */ struct _Md5Context { guint32 buf[4]; guint32 bits[2]; guchar in[64]; }; static void get_md5 (const char *string, unsigned char digest[16]) { Md5Context md5_context; md5_init (&md5_context); md5_update (&md5_context, string, strlen (string)); md5_final (digest, &md5_context); } #if G_BYTE_ORDER == G_LITTLE_ENDIAN #define byteReverse(buf, len) /* Nothing */ #else /* * Note: this code is harmless on little-endian machines. */ static void byteReverse(unsigned char *buf, unsigned longs) { guint32 t; do { t = (guint32) ((unsigned) buf[3] << 8 | buf[2]) << 16 | ((unsigned) buf[1] << 8 | buf[0]); *(guint32 *) buf = t; buf += 4; } while (--longs); } #endif /* * Start MD5 accumulation. Set bit count to 0 and buffer to mysterious * initialization constants. */ static void md5_init (Md5Context *ctx) { ctx->buf[0] = 0x67452301; ctx->buf[1] = 0xefcdab89; ctx->buf[2] = 0x98badcfe; ctx->buf[3] = 0x10325476; ctx->bits[0] = 0; ctx->bits[1] = 0; } /* * Update context to reflect the concatenation of another buffer full * of bytes. */ static void md5_update (Md5Context *ctx, unsigned char const *buf, unsigned len) { guint32 t; /* Update bitcount */ t = ctx->bits[0]; if ((ctx->bits[0] = t + ((guint32) len << 3)) < t) ctx->bits[1]++; /* Carry from low to high */ ctx->bits[1] += len >> 29; t = (t >> 3) & 0x3f; /* Bytes already in shsInfo->data */ /* Handle any leading odd-sized chunks */ if (t) { unsigned char *p = (unsigned char *) ctx->in + t; t = 64 - t; if (len < t) { memcpy (p, buf, len); return; } memcpy (p, buf, t); byteReverse (ctx->in, 16); md5_transform (ctx->buf, (guint32 *) ctx->in); buf += t; len -= t; } /* Process data in 64-byte chunks */ while (len >= 64) { memcpy (ctx->in, buf, 64); byteReverse (ctx->in, 16); md5_transform (ctx->buf, (guint32 *) ctx->in); buf += 64; len -= 64; } /* Handle any remaining bytes of data. */ memcpy(ctx->in, buf, len); } /* * Final wrapup - pad to 64-byte boundary with the bit pattern * 1 0* (64-bit count of bits processed, MSB-first) */ static void md5_final (unsigned char digest[16], Md5Context *ctx) { unsigned count; unsigned char *p; /* Compute number of bytes mod 64 */ count = (ctx->bits[0] >> 3) & 0x3F; /* Set the first char of padding to 0x80. This is safe since there is always at least one byte free */ p = ctx->in + count; *p++ = 0x80; /* Bytes of padding needed to make 64 bytes */ count = 64 - 1 - count; /* Pad out to 56 mod 64 */ if (count < 8) { /* Two lots of padding: Pad the first block to 64 bytes */ memset (p, 0, count); byteReverse (ctx->in, 16); md5_transform (ctx->buf, (guint32 *) ctx->in); /* Now fill the next block with 56 bytes */ memset(ctx->in, 0, 56); } else { /* Pad block to 56 bytes */ memset(p, 0, count - 8); } byteReverse(ctx->in, 14); /* Append length in bits and transform */ ((guint32 *) ctx->in)[14] = ctx->bits[0]; ((guint32 *) ctx->in)[15] = ctx->bits[1]; md5_transform (ctx->buf, (guint32 *) ctx->in); byteReverse ((unsigned char *) ctx->buf, 4); memcpy (digest, ctx->buf, 16); memset (ctx, 0, sizeof(ctx)); /* In case it's sensitive */ } /* The four core functions - F1 is optimized somewhat */ #define F1(x, y, z) (z ^ (x & (y ^ z))) #define F2(x, y, z) F1 (z, x, y) #define F3(x, y, z) (x ^ y ^ z) #define F4(x, y, z) (y ^ (x | ~z)) /* This is the central step in the MD5 algorithm. */ #define md5_step(f, w, x, y, z, data, s) \ ( w += f(x, y, z) + data, w = w<>(32-s), w += x ) /* * The core of the MD5 algorithm, this alters an existing MD5 hash to * reflect the addition of 16 longwords of new data. Md5Update blocks * the data and converts bytes into longwords for this routine. */ static void md5_transform (guint32 buf[4], guint32 const in[16]) { register guint32 a, b, c, d; a = buf[0]; b = buf[1]; c = buf[2]; d = buf[3]; md5_step(F1, a, b, c, d, in[0] + 0xd76aa478, 7); md5_step(F1, d, a, b, c, in[1] + 0xe8c7b756, 12); md5_step(F1, c, d, a, b, in[2] + 0x242070db, 17); md5_step(F1, b, c, d, a, in[3] + 0xc1bdceee, 22); md5_step(F1, a, b, c, d, in[4] + 0xf57c0faf, 7); md5_step(F1, d, a, b, c, in[5] + 0x4787c62a, 12); md5_step(F1, c, d, a, b, in[6] + 0xa8304613, 17); md5_step(F1, b, c, d, a, in[7] + 0xfd469501, 22); md5_step(F1, a, b, c, d, in[8] + 0x698098d8, 7); md5_step(F1, d, a, b, c, in[9] + 0x8b44f7af, 12); md5_step(F1, c, d, a, b, in[10] + 0xffff5bb1, 17); md5_step(F1, b, c, d, a, in[11] + 0x895cd7be, 22); md5_step(F1, a, b, c, d, in[12] + 0x6b901122, 7); md5_step(F1, d, a, b, c, in[13] + 0xfd987193, 12); md5_step(F1, c, d, a, b, in[14] + 0xa679438e, 17); md5_step(F1, b, c, d, a, in[15] + 0x49b40821, 22); md5_step(F2, a, b, c, d, in[1] + 0xf61e2562, 5); md5_step(F2, d, a, b, c, in[6] + 0xc040b340, 9); md5_step(F2, c, d, a, b, in[11] + 0x265e5a51, 14); md5_step(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20); md5_step(F2, a, b, c, d, in[5] + 0xd62f105d, 5); md5_step(F2, d, a, b, c, in[10] + 0x02441453, 9); md5_step(F2, c, d, a, b, in[15] + 0xd8a1e681, 14); md5_step(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20); md5_step(F2, a, b, c, d, in[9] + 0x21e1cde6, 5); md5_step(F2, d, a, b, c, in[14] + 0xc33707d6, 9); md5_step(F2, c, d, a, b, in[3] + 0xf4d50d87, 14); md5_step(F2, b, c, d, a, in[8] + 0x455a14ed, 20); md5_step(F2, a, b, c, d, in[13] + 0xa9e3e905, 5); md5_step(F2, d, a, b, c, in[2] + 0xfcefa3f8, 9); md5_step(F2, c, d, a, b, in[7] + 0x676f02d9, 14); md5_step(F2, b, c, d, a, in[12] + 0x8d2a4c8a, 20); md5_step(F3, a, b, c, d, in[5] + 0xfffa3942, 4); md5_step(F3, d, a, b, c, in[8] + 0x8771f681, 11); md5_step(F3, c, d, a, b, in[11] + 0x6d9d6122, 16); md5_step(F3, b, c, d, a, in[14] + 0xfde5380c, 23); md5_step(F3, a, b, c, d, in[1] + 0xa4beea44, 4); md5_step(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11); md5_step(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16); md5_step(F3, b, c, d, a, in[10] + 0xbebfbc70, 23); md5_step(F3, a, b, c, d, in[13] + 0x289b7ec6, 4); md5_step(F3, d, a, b, c, in[0] + 0xeaa127fa, 11); md5_step(F3, c, d, a, b, in[3] + 0xd4ef3085, 16); md5_step(F3, b, c, d, a, in[6] + 0x04881d05, 23); md5_step(F3, a, b, c, d, in[9] + 0xd9d4d039, 4); md5_step(F3, d, a, b, c, in[12] + 0xe6db99e5, 11); md5_step(F3, c, d, a, b, in[15] + 0x1fa27cf8, 16); md5_step(F3, b, c, d, a, in[2] + 0xc4ac5665, 23); md5_step(F4, a, b, c, d, in[0] + 0xf4292244, 6); md5_step(F4, d, a, b, c, in[7] + 0x432aff97, 10); md5_step(F4, c, d, a, b, in[14] + 0xab9423a7, 15); md5_step(F4, b, c, d, a, in[5] + 0xfc93a039, 21); md5_step(F4, a, b, c, d, in[12] + 0x655b59c3, 6); md5_step(F4, d, a, b, c, in[3] + 0x8f0ccc92, 10); md5_step(F4, c, d, a, b, in[10] + 0xffeff47d, 15); md5_step(F4, b, c, d, a, in[1] + 0x85845dd1, 21); md5_step(F4, a, b, c, d, in[8] + 0x6fa87e4f, 6); md5_step(F4, d, a, b, c, in[15] + 0xfe2ce6e0, 10); md5_step(F4, c, d, a, b, in[6] + 0xa3014314, 15); md5_step(F4, b, c, d, a, in[13] + 0x4e0811a1, 21); md5_step(F4, a, b, c, d, in[4] + 0xf7537e82, 6); md5_step(F4, d, a, b, c, in[11] + 0xbd3af235, 10); md5_step(F4, c, d, a, b, in[2] + 0x2ad7d2bb, 15); md5_step(F4, b, c, d, a, in[9] + 0xeb86d391, 21); buf[0] += a; buf[1] += b; buf[2] += c; buf[3] += d; } photoprint-0.4.2-pre2/menucheck.cpp0000644000175000017500000002261311266365225014174 00000000000000#include #include #include #include "pp_menu_file.h" #include "pp_menu_edit.h" #include "support/debug.h" #include "config.h" #include "gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) using namespace std; #if 0 /* File Menu */ static GtkActionEntry filemenu_entries[] = { { "FileMenu", NULL, N_("_File") }, { "OpenPreset", GTK_STOCK_OPEN, N_("_Open Preset..."), "O", N_("Open a preset"), NULL }, { "SavePreset", GTK_STOCK_SAVE, N_("_Save Preset"), "S", N_("Save a preset"), NULL }, { "SaveAs", NULL, N_("Save _As..."), NULL, N_("Save preset with a new filename"), NULL }, { "SaveDefault", NULL, N_("Save _Default"), NULL, N_("Save preset as the default"), NULL }, { "ExportTiff", NULL, N_("E_xport TIFF..."), NULL, N_("Export pages as TIFF files"), NULL }, { "PrintPreview", NULL, N_("Print Pre_view..."), NULL, N_("Preview how the printed page will look"), NULL }, { "PrintSetup", NULL, N_("Print S_etup..."), NULL, N_("Set printer driver and options"), NULL }, { "Print", NULL, N_("_Print"), "P", N_("Print pages"), NULL }, { "Quit", NULL, N_("_Quit"), "Q", N_("Exit PhotoPrint"), NULL }, }; static const char *filemenu_ui_description = "" " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " ""; #endif /* Normal items */ static GtkActionEntry entries[] = { { "LayoutMenu", NULL, N_("_Layout") }, { "ImageMenu", NULL, N_("_Image") }, { "OptionsMenu", NULL, N_("_Options") }, { "HelpMenu", NULL, N_("_Help") }, { "ClearLayout", NULL, N_("_Clear Layout"), "K", N_("Remove all images from the layout"), NULL }, { "Set Background", NULL, N_("Set _Background"), "B", N_("Set a background image for the current layout"), NULL }, { "AddImage", NULL, N_("_Add Image..."), "I", N_("Add images to the current layout"), NULL }, { "RemoveImage", NULL, N_("_Remove Image"), NULL, N_("Remove selected images from the layout"), NULL }, { "Rotation", NULL, N_("_Rotation") }, { "SetImageMask", NULL, N_("Set Image _Mask..."), NULL, N_("Set a border mask for the selected image"), NULL }, { "Effects", NULL, N_("_Effects..."), NULL, N_("Apply effects to the selected image"), NULL }, { "SetColourProfile", NULL, N_("Set Colour _Profile..."), NULL, N_("Assign an ICC profile or custom rendering intent to the image"), NULL }, { "Paths", NULL, N_("_Paths..."), NULL, N_("Set search paths for ICC profiles, borders, etc."), NULL }, { "ColourManagement", NULL, N_("_Colour Management..."), NULL, N_("Set colour management options"), NULL }, { "Units", NULL, N_("_Units..."), NULL, N_("Select the units used throughout PhotoPrint"), NULL }, { "Scaling", NULL, N_("_Scaling..."), NULL, N_("Select the preferred scaling method."), NULL }, { "About", NULL, N_("About..."), NULL, N_("Some information about PhotoPrint"), NULL }, }; /* Toggle items */ static GtkToggleActionEntry toggle_entries[] = { { "AllowCropping", NULL, N_("Allow _Cropping"), NULL, N_("Crop the selected images to fill the available space"), NULL, FALSE } }; /* Radio items */ static GtkRadioActionEntry layout_radio_entries[] = { { "AutoLayout", NULL, N_("_Auto Layout"), NULL, N_("Automatically place images in a grid"), 0 }, { "Poster", NULL, N_("_Poster"), NULL, N_("Print an image in multiple pages, to be assembled into a poster"), 1 }, { "Carousel", NULL, N_("_Carousel"), NULL, N_("Fade images into a circular 'carousel' - ideal for CD labels."), 2 }, { "ManualSize", NULL, N_("_Manual Size"), NULL, N_("Print images on a single sheet, at a specified scale."), 3 } }; static GtkRadioActionEntry rotation_radio_entries[] = { { "RotationAuto", NULL, N_("_Auto"), NULL, N_("Automatically choose rotation to fit the available space."), 0 }, { "RotationNone", NULL, N_("_None"), NULL, N_("No rotation."), 1 }, { "Rotation90", NULL, N_("_90 Degrees"), NULL, N_("Rotate 90 degrees clockwise."), 2 }, { "Rotation180", NULL, N_("_180 Degrees"), NULL, N_("Rotate 180 degrees."), 3 }, { "Rotation270", NULL, N_("_270 Degrees"), NULL, N_("Rotate 90 degrees anticlockwise."), 4 } }; static const char *ui_description = "" " " " " " " " " " " " " " " " " " " " \n" " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " \n" " " " " " " " " " " " \n" " " " " " " " " ""; #if 0 int main(int argc,char **argv) { gtk_init(&argc,&argv); GtkWidget *window=gtk_window_new(GTK_WINDOW_TOPLEVEL); // GtkWidget *menu=pp_menu_new(); GtkWidget *menubar; GtkActionGroup *action_group; GtkUIManager *ui_manager; GtkAccelGroup *accel_group; GError *error; ui_manager = gtk_ui_manager_new (); // BuildFileMenu(window,ui_manager); // Layout menu action_group = gtk_action_group_new ("MenuActions"); gtk_action_group_add_actions (action_group, entries, G_N_ELEMENTS (entries), window); gtk_action_group_add_toggle_actions (action_group, toggle_entries, G_N_ELEMENTS (toggle_entries), window); gtk_action_group_add_radio_actions (action_group, layout_radio_entries, G_N_ELEMENTS (layout_radio_entries), 0, NULL, window); gtk_action_group_add_radio_actions (action_group, rotation_radio_entries, G_N_ELEMENTS (rotation_radio_entries), 0, NULL, window); gtk_ui_manager_insert_action_group (ui_manager, action_group, 0); error = NULL; if (!gtk_ui_manager_add_ui_from_string (ui_manager, ui_description, -1, &error)) throw error->message; accel_group = gtk_ui_manager_get_accel_group (ui_manager); gtk_window_add_accel_group (GTK_WINDOW (window), accel_group); GtkWidget *tmp; tmp=gtk_ui_manager_get_widget(ui_manager,"/MainMenu/FileMenu/PrintPreview"); gtk_widget_set_sensitive(tmp,false); tmp=gtk_ui_manager_get_widget(ui_manager,"/MainMenu/EditMenu/Cut"); gtk_widget_set_sensitive(tmp,false); tmp=gtk_ui_manager_get_widget(ui_manager,"/MainMenu/EditMenu/Copy"); gtk_widget_set_sensitive(tmp,false); tmp=gtk_ui_manager_get_widget(ui_manager,"/MainMenu/EditMenu/Paste"); gtk_widget_set_sensitive(tmp,false); menubar = gtk_ui_manager_get_widget (ui_manager, "/MainMenu"); gtk_container_add(GTK_CONTAINER(window),menubar); gtk_widget_show(menubar); gtk_widget_show(window); gtk_main(); return(0); } #endif #define TEST_STRING "Initializing..." void check(const char *tag) { Debug[TRACE] << tag << ": "; if(strcmp(_(TEST_STRING),TEST_STRING)==0) Debug[TRACE] << "Failed!" << endl; else Debug[TRACE] << "ok" << endl; setlocale(LC_ALL,""); } #if 1 int main(int argc,char **argv) { setlocale(LC_ALL,""); bindtextdomain(PACKAGE,LOCALEDIR); bind_textdomain_codeset(PACKAGE, "UTF-8"); textdomain(PACKAGE); check("Startup"); stp_init(); check("stp_init()"); Debug[TRACE] << "Dither Algorithm -> " << dgettext("gutenprint","Dither Algorithm") << endl; stp_vars_t *vars=stp_vars_create(); check("stp_vars_create()"); stp_set_driver(vars,"ps2"); check("stp_set_driver()"); stp_parameter_t desc; stp_describe_parameter(vars,"Brightness",&desc); check("stp_describe_paramater()"); stp_describe_parameter(vars,"PageSize",&desc); check("stp_describe_paramater()"); stp_set_string_parameter(vars,"PageSize","A4"); check("stp_set_string_parameter()"); int l,r,t,b; stp_get_imageable_area(vars, &l, &r, &b, &t); check("stp_get_imageable_area()"); return(0); } #else int main(int argc,char **argv) { setlocale(LC_ALL,""); bindtextdomain(PACKAGE,LOCALEDIR); bind_textdomain_codeset(PACKAGE, "UTF-8"); textdomain(PACKAGE); check("Startup"); Debug[TRACE] << "Setting locale to 'C'" << endl; char *oldlocale=setlocale(LC_ALL,NULL); char *savedlocale=strdup(oldlocale); Debug[TRACE] << "Old locale setting: " << oldlocale << endl; char *result=setlocale(LC_ALL,"C"); Debug[TRACE] << "Old locale setting: " << oldlocale << endl; Debug[TRACE] << "Result of setlocale: " << result << endl; check("Checking translation (this should fail)"); Debug[TRACE] << "Restoring locale" << endl; setlocale(LC_ALL,savedlocale); free(savedlocale); check("Checking translation (this should succeed)"); return(0); } #endif photoprint-0.4.2-pre2/pp_layout_poster_pageview.cpp0000644000175000017500000003401611400241250017506 00000000000000 #include #include #include #include #include #include #include "support/layoutrectangle.h" #include "support/debug.h" #include "stpui_widgets/stpui_combo.h" #include "progressbar.h" #include "dialogs.h" #include "pp_layout_poster_pageview.h" #define PAGEVIEW_DEFAULT_WIDTH 250 #define PAGEVIEW_DEFAULT_HEIGHT 320 enum { CHANGED_SIGNAL, REFLOW_SIGNAL, POPUPMENU_SIGNAL, LAST_SIGNAL }; static guint pp_layout_poster_pageview_signals[LAST_SIGNAL] = { 0 }; static void pp_layout_poster_pageview_class_init (pp_Layout_Poster_PageViewClass *klass); static void pp_layout_poster_pageview_init (pp_Layout_Poster_PageView *pageview); static void pp_layout_poster_pageview_realize (GtkWidget *widget); static void pp_layout_poster_pageview_size_request (GtkWidget *widget, GtkRequisition *requisition); static void pp_layout_poster_pageview_size_allocate (GtkWidget *widget, GtkAllocation *allocation); static gboolean pp_layout_poster_pageview_expose (GtkWidget *widget, GdkEventExpose *event); static gboolean pp_layout_poster_pageview_button_press (GtkWidget *widget, GdkEventButton *event); static gboolean pp_layout_poster_pageview_button_release (GtkWidget *widget, GdkEventButton *event); static gboolean pp_layout_poster_pageview_motion_notify (GtkWidget *widget, GdkEventMotion *event); #define TARGET_URI_LIST 1 static GtkTargetEntry dnd_file_drop_types[] = { { "text/uri-list", 0, TARGET_URI_LIST } }; static gint dnd_file_drop_types_count = 1; static void get_dnd_data(GtkWidget *widget, GdkDragContext *context, gint x, gint y, GtkSelectionData *selection_data, guint info, guint time, gpointer data) { gchar *uris=g_strdup((const gchar *)selection_data->data); gchar *urilist=uris; int lastpage=0; pp_Layout_Poster_PageView *pv=PP_LAYOUT_POSTER_PAGEVIEW(widget); ProgressBar progress("Adding images...",false); while(*urilist) { if(strncmp(urilist,"file:",5)) { while(*urilist && *urilist!='\n' && *urilist!='\r') ++urilist; while(*urilist=='\n' || *urilist=='\r') *urilist++; } else { Debug[TRACE] << "URIList: " << urilist << endl; gchar *uri=urilist; while(*urilist && *urilist!='\n' && *urilist!='\r') ++urilist; if(*urilist) { while(*urilist=='\n' || *urilist=='\r') *urilist++=0; } if(*uri && *uri!='\n' && *uri!='\r') { gchar *filename=g_filename_from_uri(uri,NULL,NULL); lastpage=pv->layout->AddImage(filename); pp_layout_poster_pageview_refresh(pv); g_signal_emit_by_name (GTK_OBJECT (pv), "changed"); progress.DoProgress(0,0); } } } pp_layout_poster_pageview_set_page(pv,lastpage); g_signal_emit_by_name (GTK_OBJECT (pv), "changed"); g_free(uris); } /* Local data */ static GtkWidgetClass *parent_class = NULL; GType pp_layout_poster_pageview_get_type () { static GType pageview_type = 0; if (!pageview_type) { static const GTypeInfo pageview_info = { sizeof (pp_Layout_Poster_PageViewClass), NULL, NULL, (GClassInitFunc) pp_layout_poster_pageview_class_init, NULL, NULL, sizeof (pp_Layout_Poster_PageView), 0, (GInstanceInitFunc) pp_layout_poster_pageview_init, }; pageview_type = g_type_register_static (GTK_TYPE_WIDGET, "pp_Layout_Poster_PageView", &pageview_info, GTypeFlags(0)); } return pageview_type; } static void pp_layout_poster_pageview_class_init (pp_Layout_Poster_PageViewClass *cl) { GtkObjectClass *object_class; GtkWidgetClass *widget_class; object_class = (GtkObjectClass*) cl; widget_class = (GtkWidgetClass*) cl; parent_class = GTK_WIDGET_CLASS(gtk_type_class (gtk_widget_get_type ())); widget_class->realize = pp_layout_poster_pageview_realize; widget_class->expose_event = pp_layout_poster_pageview_expose; widget_class->size_request = pp_layout_poster_pageview_size_request; widget_class->size_allocate = pp_layout_poster_pageview_size_allocate; widget_class->button_press_event = pp_layout_poster_pageview_button_press; widget_class->button_release_event = pp_layout_poster_pageview_button_release; widget_class->motion_notify_event = pp_layout_poster_pageview_motion_notify; pp_layout_poster_pageview_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (cl), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_Layout_Poster_PageViewClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); pp_layout_poster_pageview_signals[REFLOW_SIGNAL] = g_signal_new ("reflow", G_TYPE_FROM_CLASS (cl), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_Layout_Poster_PageViewClass, reflow), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); pp_layout_poster_pageview_signals[POPUPMENU_SIGNAL] = g_signal_new ("popupmenu", G_TYPE_FROM_CLASS (cl), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_Layout_Poster_PageViewClass, reflow), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void pp_layout_poster_pageview_init (pp_Layout_Poster_PageView *pageview) { pageview->button = 0; pageview->timer = 0; pageview->selected=NULL; } GtkWidget* pp_layout_poster_pageview_new (Layout_Poster *layout) { pp_Layout_Poster_PageView *pageview; pageview = PP_LAYOUT_POSTER_PAGEVIEW(g_object_new (pp_layout_poster_pageview_get_type (), NULL)); gtk_drag_dest_set(GTK_WIDGET(pageview), GtkDestDefaults(GTK_DEST_DEFAULT_MOTION | GTK_DEST_DEFAULT_DROP), dnd_file_drop_types, dnd_file_drop_types_count, GdkDragAction(GDK_ACTION_COPY | GDK_ACTION_MOVE | GDK_ACTION_LINK)); g_signal_connect(G_OBJECT(pageview), "drag_data_received", G_CALLBACK(get_dnd_data), NULL); pageview->layout=layout; return GTK_WIDGET (pageview); } static void pp_layout_poster_pageview_realize (GtkWidget *widget) { pp_Layout_Poster_PageView *pageview; GdkWindowAttr attributes; gint attributes_mask; g_return_if_fail (widget != NULL); g_return_if_fail (PP_IS_PAGEVIEW (widget)); GTK_WIDGET_SET_FLAGS (widget, GTK_REALIZED); pageview = PP_LAYOUT_POSTER_PAGEVIEW (widget); attributes.x = widget->allocation.x; attributes.y = widget->allocation.y; attributes.width = widget->allocation.width; attributes.height = widget->allocation.height; attributes.wclass = GDK_INPUT_OUTPUT; attributes.window_type = GDK_WINDOW_CHILD; attributes.event_mask = gtk_widget_get_events (widget) | GDK_EXPOSURE_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK; attributes.visual = gtk_widget_get_visual (widget); attributes.colormap = gtk_widget_get_colormap (widget); attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL | GDK_WA_COLORMAP; widget->window = gdk_window_new (widget->parent->window, &attributes, attributes_mask); widget->style = gtk_style_attach (widget->style, widget->window); gdk_window_set_user_data (widget->window, widget); gtk_style_set_background (widget->style, widget->window, GTK_STATE_ACTIVE); } static void pp_layout_poster_pageview_size_request (GtkWidget *widget, GtkRequisition *requisition) { requisition->width = PAGEVIEW_DEFAULT_WIDTH; requisition->height = PAGEVIEW_DEFAULT_HEIGHT; } static void pp_layout_poster_pageview_size_allocate (GtkWidget *widget, GtkAllocation *allocation) { pp_Layout_Poster_PageView *pageview; g_return_if_fail (widget != NULL); g_return_if_fail (PP_IS_PAGEVIEW (widget)); g_return_if_fail (allocation != NULL); widget->allocation = *allocation; pageview = PP_LAYOUT_POSTER_PAGEVIEW (widget); if (GTK_WIDGET_REALIZED (widget)) { gdk_window_move_resize (widget->window, allocation->x, allocation->y, allocation->width, allocation->height); } pageview->layout->FlushHRPreviews(); } static gboolean pp_layout_poster_pageview_expose( GtkWidget *widget, GdkEventExpose *event ) { pp_Layout_Poster_PageView *pageview; g_return_val_if_fail (widget != NULL, FALSE); g_return_val_if_fail (PP_IS_PAGEVIEW (widget), FALSE); g_return_val_if_fail (event != NULL, FALSE); if (event->count > 0) return FALSE; pageview = PP_LAYOUT_POSTER_PAGEVIEW (widget); pageview->height=widget->allocation.height; pageview->width=(pageview->layout->paperwidth*pageview->height)/pageview->layout->paperheight; if(pageview->width>widget->allocation.width) { pageview->width=widget->allocation.width; pageview->height=(pageview->layout->paperheight*pageview->width)/pageview->layout->paperwidth; } pageview->top=(widget->allocation.height-pageview->height)/2; pageview->left=(widget->allocation.width-pageview->width)/2; pageview->scale=pageview->width; pageview->scale/=pageview->layout->paperwidth; pageview->layout->DrawPreview(widget,pageview->left,pageview->top,pageview->width,pageview->height); pp_layout_poster_pageview_draw_gridlines(pageview); return FALSE; } void pp_layout_poster_pageview_draw_gridlines(pp_Layout_Poster_PageView *pageview) { GtkWidget *widget=GTK_WIDGET(pageview); pageview->height=widget->allocation.height; pageview->width=(pageview->layout->paperwidth*pageview->height)/pageview->layout->paperheight; if(pageview->width>widget->allocation.width) { pageview->width=widget->allocation.width; pageview->height=(pageview->layout->paperheight*pageview->width)/pageview->layout->paperwidth; } pageview->top=(widget->allocation.height-pageview->height)/2; pageview->left=(widget->allocation.width-pageview->width)/2; pageview->scale=pageview->width; pageview->scale/=pageview->layout->paperwidth; for(int ht=0;htlayout->htiles;++ht) { for(int vt=0;vtlayout->vtiles;++vt) { double l=pageview->scale*(pageview->layout->leftmargin+ht*(pageview->layout->imageablewidth-pageview->layout->hoverlap)); double r=pageview->scale*(pageview->layout->leftmargin+(ht+1)*pageview->layout->imageablewidth-ht*pageview->layout->hoverlap); double t=pageview->scale*(pageview->layout->topmargin+vt*(pageview->layout->imageableheight-pageview->layout->voverlap)); double b=pageview->scale*(pageview->layout->topmargin+(vt+1)*pageview->layout->imageableheight-vt*pageview->layout->voverlap); int w=int(r-l+0.5); int h=int(b-t+0.5); Debug[TRACE] << "Left: " << l << ", Right: " << r << endl; Debug[TRACE] << "Top: " << t << ", Bottom: " << b << endl; gdk_draw_rectangle (widget->window, widget->style->mid_gc[widget->state],FALSE, pageview->left+int(l+0.5),pageview->top+int(t+0.5),w,h); } } } static gboolean pp_layout_poster_pageview_button_press( GtkWidget *widget, GdkEventButton *event ) { pp_Layout_Poster_PageView *pageview; g_return_val_if_fail (widget != NULL, FALSE); g_return_val_if_fail (PP_IS_PAGEVIEW (widget), FALSE); g_return_val_if_fail (event != NULL, FALSE); pageview = PP_LAYOUT_POSTER_PAGEVIEW (widget); int x=int(event->x-pageview->left); int y=int(event->y-pageview->top); if(x>0 && y>0 && xwidth && yheight && pageview->scale>0.0) { int currentpage=pageview->layout->GetCurrentPage(); currentpage/=pageview->layout->htiles*pageview->layout->vtiles; pageview->selected=pageview->layout->ImageAt(currentpage); switch(event->button) { case 1: if(pageview->selected && pageview->selected->allowcropping) { pageview->dragging=true; pageview->init_x=x; pageview->init_y=y; pageview->init_hpan=pageview->selected->crop_hpan; pageview->init_vpan=pageview->selected->crop_vpan; gtk_grab_add(widget); } else pageview->dragging=false; pageview->layout->SelectNone(); break; case 3: if(pageview->selected) { pageview->selected->SetSelected(true); g_signal_emit_by_name (GTK_OBJECT (pageview), "popupmenu"); } break; default: break; } } return FALSE; } static gboolean pp_layout_poster_pageview_button_release( GtkWidget *widget, GdkEventButton *event ) { pp_Layout_Poster_PageView *pageview; g_return_val_if_fail (widget != NULL, FALSE); g_return_val_if_fail (PP_IS_PAGEVIEW (widget), FALSE); g_return_val_if_fail (event != NULL, FALSE); pageview = PP_LAYOUT_POSTER_PAGEVIEW (widget); switch(event->button) { case 1: if (event->button==1) pageview->dragging=false; gtk_grab_remove(widget); break; default: break; } return FALSE; } static gboolean pp_layout_poster_pageview_motion_notify( GtkWidget *widget, GdkEventMotion *event ) { pp_Layout_Poster_PageView *pageview; g_return_val_if_fail (widget != NULL, FALSE); g_return_val_if_fail (PP_IS_PAGEVIEW (widget), FALSE); g_return_val_if_fail (event != NULL, FALSE); pageview = PP_LAYOUT_POSTER_PAGEVIEW (widget); Layout_ImageInfo *ii=pageview->selected; if (pageview->dragging && ii) { int x,y; GdkModifierType mods; gdk_window_get_pointer (widget->window, &x, &y, &mods); int dx=(x-pageview->init_x); int dy=(y-pageview->init_y); int hp=pageview->init_hpan-dx; int vp=pageview->init_vpan-dy; if(hp<0) hp=0; if(hp>LAYOUT_RECTANGLE_PANNING_MAX) hp=LAYOUT_RECTANGLE_PANNING_MAX; if(vp<0) vp=0; if(vp>LAYOUT_RECTANGLE_PANNING_MAX) vp=LAYOUT_RECTANGLE_PANNING_MAX; ii->crop_hpan=LayoutRectangle_Alignment(hp); ii->crop_vpan=LayoutRectangle_Alignment(vp); gtk_widget_queue_draw (GTK_WIDGET (pageview)); } return FALSE; } void pp_layout_poster_pageview_refresh(pp_Layout_Poster_PageView *pv) { gtk_widget_queue_draw (GTK_WIDGET (pv)); } void pp_layout_poster_pageview_set_page(pp_Layout_Poster_PageView *pv,int page) { Debug[TRACE] << "Lastpage: " << page << endl; pv->layout->SetCurrentPage(page); pp_layout_poster_pageview_refresh(pv); } photoprint-0.4.2-pre2/pp_layout_nup.cpp0000644000175000017500000002261111266333553015125 00000000000000#include #include #include #include #include #include #include #include #include #include "config.h" #include "stpui_widgets/stpui_combo.h" #include "pp_imagecontrol.h" #include "support/debug.h" #include "effects/ppeffect.h" #include "effects/effectselector.h" #include "pp_imageinfo.h" #include "pp_sigcontrol.h" #include "pp_pageextent.h" #include "photoprint_state.h" #include "pp_layout_nup.h" #include "layout.h" #include "dialogs.h" #include "gettext.h" #define _(x) gettext(x) enum { CHANGED_SIGNAL, POPUPMENU_SIGNAL, SELECTIONCHANGED_SIGNAL, LAST_SIGNAL }; static guint pp_layout_nup_signals[LAST_SIGNAL] = { 0 }; static void pp_layout_nup_class_init (pp_Layout_NUpClass *klass); static void pp_layout_nup_init (pp_Layout_NUp *stpuicombo); static void sig_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_NUp *lo=(pp_Layout_NUp *)ob; pp_Layout_NUp_PageView *pv=PP_LAYOUT_NUP_PAGEVIEW(lo->pageview); Layout_NUp *l=(Layout_NUp*)lo->state->layout; l->FlushHRPreviews(); pp_layout_nup_pageview_refresh(PP_LAYOUT_NUP_PAGEVIEW(pv)); g_signal_emit(G_OBJECT (ob),pp_layout_nup_signals[CHANGED_SIGNAL], 0); } static void pe_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_NUp *lo=(pp_Layout_NUp *)ob; Layout_NUp *l=(Layout_NUp*)lo->state->layout; l->FlushHRPreviews(); pp_Layout_NUp_PageView *pv=PP_LAYOUT_NUP_PAGEVIEW(lo->pageview); pp_layout_nup_pageview_refresh(PP_LAYOUT_NUP_PAGEVIEW(pv)); g_signal_emit(G_OBJECT (ob),pp_layout_nup_signals[CHANGED_SIGNAL], 0); } static void ic_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_NUp *lo=(pp_Layout_NUp *)ob; pp_Layout_NUp_PageView *pv=PP_LAYOUT_NUP_PAGEVIEW(lo->pageview); Layout_NUp *l=(Layout_NUp*)lo->state->layout; Debug[TRACE] << "Flushing due to ic_changed" << endl; // Loop through twice for performance reasons - firstly to cancel the // thread, secondly to wait for thread exit, and delete the preview. LayoutIterator it(*l); Layout_ImageInfo *ii=it.FirstSelected(); { ii->CancelRenderThread(); ii=it.NextSelected(); } ii=it.FirstSelected(); { ii->FlushHRPreview(); ii=it.NextSelected(); } pp_layout_nup_pageview_refresh(PP_LAYOUT_NUP_PAGEVIEW(pv)); g_signal_emit(G_OBJECT (ob),pp_layout_nup_signals[CHANGED_SIGNAL], 0); } static void reflow(GtkWidget *wid,gpointer *ob) { pp_Layout_NUp *lo=(pp_Layout_NUp *)ob; // pp_Layout_NUp_PageView *pv=PP_LAYOUT_NUP_PAGEVIEW(lo->pageview); Layout_NUp *l=(Layout_NUp*)lo->state->layout; l->CancelRenderThreads(); l->Reflow(); g_signal_emit(G_OBJECT (lo),pp_layout_nup_signals[CHANGED_SIGNAL], 0); } static void page_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_NUp *lo=(pp_Layout_NUp *)ob; pp_Layout_NUp_PageView *pv=PP_LAYOUT_NUP_PAGEVIEW(lo->pageview); Layout_NUp *l=(Layout_NUp*)lo->state->layout; l->CancelRenderThreads(); pp_layout_nup_pageview_set_page(pv,gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(lo->page))-1); g_signal_emit(G_OBJECT (lo),pp_layout_nup_signals[CHANGED_SIGNAL], 0); } static void pageview_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_NUp *lo=(pp_Layout_NUp *)ob; g_signal_emit(G_OBJECT (lo),pp_layout_nup_signals[CHANGED_SIGNAL], 0); } static void pageview_popupmenu(GtkWidget *wid,gpointer *ob) { pp_Layout_NUp *lo=(pp_Layout_NUp *)ob; g_signal_emit(G_OBJECT (lo),pp_layout_nup_signals[POPUPMENU_SIGNAL], 0); } static void pageview_selection_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_NUp *lo=(pp_Layout_NUp *)ob; pp_imagecontrol_set_image(PP_IMAGECONTROL(lo->imagecontrol)); g_signal_emit(G_OBJECT (lo),pp_layout_nup_signals[SELECTIONCHANGED_SIGNAL], 0); } void pp_layout_nup_refresh(pp_Layout_NUp *ob) { pp_Layout_NUp_PageView *pv=PP_LAYOUT_NUP_PAGEVIEW(ob->pageview); ob->state->layout->LayoutToDB(ob->state->layoutdb); int pages=ob->state->layout->GetPages(); gtk_widget_set_sensitive(ob->page,pages!=1); gtk_spin_button_set_range(GTK_SPIN_BUTTON(ob->page),1.0,pages); gtk_spin_button_set_value(GTK_SPIN_BUTTON(ob->page),ob->state->layout->GetCurrentPage()+1); pp_layout_nup_pageview_refresh(pv); pp_pageextent_refresh(PP_PAGEEXTENT(ob->pageextent)); pp_imagecontrol_refresh(PP_IMAGECONTROL(ob->imagecontrol)); } void pp_layout_nup_set_unit(GtkWidget *wid,enum Units unit) { pp_Layout_NUp *ob=PP_LAYOUT_NUP(wid); pp_pageextent_set_unit(PP_PAGEEXTENT(ob->pageextent),unit); pp_sigcontrol_set_unit(PP_SIGCONTROL(ob->sigcontrol),unit); } #if 0 static void killshadow(GtkWidget *wid,gpointer data) { gtk_viewport_set_shadow_type(GTK_VIEWPORT(wid),GTK_SHADOW_NONE); } #endif GtkWidget* pp_layout_nup_new (PhotoPrint_State *state) { pp_Layout_NUp *ob=PP_LAYOUT_NUP(g_object_new (pp_layout_nup_get_type (), NULL)); gtk_container_set_border_width(GTK_CONTAINER(&ob->hbox),10); ob->state=state; GtkWidget *hbox; GtkWidget *vbox; GtkWidget *label; enum Units unit=state->GetUnits(); GtkWidget *frame = gtk_frame_new (NULL); gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN); gtk_box_pack_start(GTK_BOX (&ob->hbox), frame,TRUE,TRUE,0); gtk_widget_show (frame); ob->pageview = pp_layout_nup_pageview_new ((Layout_NUp *)ob->state->layout); g_signal_connect(G_OBJECT(ob->pageview),"changed",G_CALLBACK(pageview_changed),ob); g_signal_connect(G_OBJECT(ob->pageview),"reflow",G_CALLBACK(reflow),ob); g_signal_connect(G_OBJECT(ob->pageview),"popupmenu",G_CALLBACK(pageview_popupmenu),ob); g_signal_connect(G_OBJECT(ob->pageview),"selection_changed",G_CALLBACK(pageview_selection_changed),ob); gtk_container_add (GTK_CONTAINER (frame), ob->pageview); gtk_widget_show (ob->pageview); // Scroll Window GtkWidget *scrollwin=gtk_scrolled_window_new(NULL,NULL); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrollwin), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); vbox = gtk_vbox_new (FALSE, 5); gtk_box_pack_start(GTK_BOX(&ob->hbox),vbox,FALSE,FALSE,0); gtk_widget_show (vbox); gtk_box_pack_start(GTK_BOX(vbox),scrollwin,TRUE,TRUE,0); gtk_widget_show (scrollwin); // Page number hbox=gtk_hbox_new(FALSE,5); label=gtk_label_new(_("Page:")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_box_pack_start(GTK_BOX(hbox),label,TRUE,TRUE,0); gtk_widget_show(label); ob->page=gtk_spin_button_new_with_range(1.0,2.0,1.0); g_signal_connect(G_OBJECT(ob->page),"value-changed",G_CALLBACK(page_changed),ob); gtk_widget_show(ob->page); gtk_box_pack_start(GTK_BOX(hbox),ob->page,FALSE,FALSE,0); gtk_box_pack_start(GTK_BOX(vbox),hbox,FALSE,FALSE,0); gtk_widget_show(hbox); // Contents of scrollwindow GtkWidget *hbox2=gtk_hbox_new(FALSE,0); gtk_widget_show (hbox2); vbox = gtk_vbox_new (FALSE, 0); gtk_box_pack_start(GTK_BOX(hbox2),vbox,TRUE,TRUE,5); gtk_scrolled_window_add_with_viewport (GTK_SCROLLED_WINDOW (scrollwin), hbox2); // gtk_container_foreach(GTK_CONTAINER(scrollwin),killshadow,NULL); gtk_widget_show (vbox); // SigControl ob->sigcontrol=pp_sigcontrol_new((Layout_NUp *)ob->state->layout,unit); gtk_box_pack_start(GTK_BOX(vbox),ob->sigcontrol,FALSE,FALSE,0); g_signal_connect(G_OBJECT(ob->sigcontrol),"changed",G_CALLBACK(sig_changed),ob); g_signal_connect(G_OBJECT(ob->sigcontrol),"reflow",G_CALLBACK(reflow),ob); gtk_widget_show(ob->sigcontrol); // PageExtent ob->pageextent=pp_pageextent_new((Layout_NUp *)ob->state->layout,ob->state); g_signal_connect(G_OBJECT(ob->pageextent),"changed",G_CALLBACK(pe_changed),ob); gtk_box_pack_start(GTK_BOX(vbox),ob->pageextent,FALSE,FALSE,0); gtk_widget_show(ob->pageextent); // ImageControl ob->imagecontrol=pp_imagecontrol_new(ob->state->layout); gtk_box_pack_start(GTK_BOX(vbox),ob->imagecontrol,TRUE,TRUE,0); g_signal_connect(G_OBJECT(ob->imagecontrol),"changed",G_CALLBACK(ic_changed),ob); gtk_widget_show(ob->imagecontrol); pp_layout_nup_refresh(ob); return(GTK_WIDGET(ob)); } GType pp_layout_nup_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo pp_layout_nup_info = { sizeof (pp_Layout_NUpClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) pp_layout_nup_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (pp_Layout_NUp), 0, (GInstanceInitFunc) pp_layout_nup_init, }; stpuic_type = g_type_register_static (GTK_TYPE_HBOX, "pp_Layout_NUp", &pp_layout_nup_info, (GTypeFlags)0); } return stpuic_type; } static void pp_layout_nup_class_init (pp_Layout_NUpClass *klass) { pp_layout_nup_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (klass), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_Layout_NUpClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); pp_layout_nup_signals[SELECTIONCHANGED_SIGNAL] = g_signal_new ("selection_changed", G_TYPE_FROM_CLASS (klass), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_Layout_NUpClass, popupmenu), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); pp_layout_nup_signals[POPUPMENU_SIGNAL] = g_signal_new ("popupmenu", G_TYPE_FROM_CLASS (klass), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_Layout_NUpClass, popupmenu), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void pp_layout_nup_init (pp_Layout_NUp *ob) { ob->state=NULL; ob->pageview=NULL; ob->sigcontrol=NULL; ob->pageextent=NULL; ob->imagecontrol=NULL; ob->page=NULL; } photoprint-0.4.2-pre2/miscwidgets/0000777000175000017500000000000011400250524014111 500000000000000photoprint-0.4.2-pre2/miscwidgets/uitab.h0000644000175000017500000000137311326561342015320 00000000000000#ifndef UITAB_H #define UITAB_H #include #include "refcountui.h" class UITab; class UITab : public RefCountUI { public: UITab(GtkWidget *notebook,const char *tabname=NULL); virtual ~UITab(); GtkWidget *GetBox(); void SetTabText(const char *text); void AddTabWidget(GtkWidget *widget); // Inserts a widget between label and close button void AddTabButton(GtkWidget *button); // As above but removes border relief and sets custom style protected: static void deleteclicked(GtkWidget *wid,gpointer userdata); static void setclosebuttonsize(GtkWidget *wid,GtkStyle *style,gpointer userdata); static bool style_applied; static void apply_style(); GtkWidget *hbox; GtkWidget *labelbox; GtkWidget *label; GtkWidget *notebook; }; #endif photoprint-0.4.2-pre2/miscwidgets/spinner.cpp0000644000175000017500000000261111326600324016213 00000000000000#include #include "spinner.h" #include "miscwidgets/pixbuf_from_imagedata.h" #include "miscwidgets/spinner1.cpp" #include "miscwidgets/spinner2.cpp" #include "miscwidgets/spinner3.cpp" #include "miscwidgets/spinner4.cpp" #include "miscwidgets/spinner5.cpp" #include "miscwidgets/spinner6.cpp" #include "miscwidgets/spinner7.cpp" #include "miscwidgets/spinner8.cpp" Spinner::Spinner() { frames[0]=PixbufFromImageData(spinner1_data,sizeof(spinner1_data)); frames[1]=PixbufFromImageData(spinner2_data,sizeof(spinner2_data)); frames[2]=PixbufFromImageData(spinner3_data,sizeof(spinner3_data)); frames[3]=PixbufFromImageData(spinner4_data,sizeof(spinner4_data)); frames[4]=PixbufFromImageData(spinner5_data,sizeof(spinner5_data)); frames[5]=PixbufFromImageData(spinner6_data,sizeof(spinner6_data)); frames[6]=PixbufFromImageData(spinner7_data,sizeof(spinner7_data)); frames[7]=PixbufFromImageData(spinner8_data,sizeof(spinner8_data)); spinner=gtk_image_new(); g_object_ref(G_OBJECT(spinner)); gtk_widget_show(spinner); SetFrame(0); } Spinner::~Spinner() { for(int i=0;i<8;++i) { if(frames[i]) g_object_unref(frames[i]); } if(spinner) gtk_widget_destroy(spinner); g_object_unref(G_OBJECT(spinner)); } void Spinner::SetFrame(int f) { f=f&7; // clamp to range 0-7 gtk_image_set_from_pixbuf(GTK_IMAGE(spinner),frames[f]); } GtkWidget *Spinner::GetWidget() { return(spinner); } photoprint-0.4.2-pre2/miscwidgets/spinner2.cpp0000644000175000017500000000637611330153377016317 00000000000000/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ #ifdef __SUNPRO_C #pragma align 4 (spinner2_data) #endif #ifdef __GNUC__ static const guint8 spinner2_data[] __attribute__ ((__aligned__ (4))) = #else static const guint8 spinner2_data[] = #endif { "" /* Pixbuf magic (0x47646b50) */ "GdkP" /* length: header (24) + pixel_data (1149) */ "\0\0\4\225" /* pixdata_type (0x2010002) */ "\2\1\0\2" /* rowstride (80) */ "\0\0\0P" /* width (20) */ "\0\0\0\24" /* height (20) */ "\0\0\0\24" /* pixel_data: */ "\210\0\0\0\0\1\0\0\0\17\202\0\0\0\301\1\0\0\0\17\212\0\0\0\0\3\0\0\0" "\1\0\0\0\14\0\0\0\1\203\0\0\0\0\4\0\0\0\20\0\0\0\321\0\0\0\320\0\0\0" "\20\203\0\0\0\0\3\0\0\0\1\0\0\0\17\0\0\0\1\203\0\0\0\0\5\0\0\0\1\0\0" "\0\31\0\0\0\233\0\0\0\31\0\0\0\1\202\0\0\0\0\1\0\0\0\20\202\0\0\0\320" "\1\0\0\0\20\202\0\0\0\0\5\0\0\0\1\0\0\0\40\0\0\0\316\0\0\0\40\0\0\0\1" "\202\0\0\0\0\10\0\0\0\14\0\0\0\233\0\0\0\275\0\0\0\247\0\0\0\31\0\0\0" "\1\0\0\0\0\0\0\0\20\202\0\0\0\320\10\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\40" "\0\0\0\337\0\0\0\373\0\0\0\316\0\0\0\17\202\0\0\0\0\10\0\0\0\1\0\0\0" "\31\0\0\0\247\0\0\0\276\0\0\0\247\0\0\0\31\0\0\0\1\0\0\0\20\202\0\0\0" "\320\10\0\0\0\20\0\0\0\1\0\0\0\40\0\0\0\337\0\0\0\374\0\0\0\337\0\0\0" "\40\0\0\0\1\203\0\0\0\0\7\0\0\0\1\0\0\0\31\0\0\0\247\0\0\0\276\0\0\0" "\247\0\0\0\31\0\0\0\21\202\0\0\0\320\7\0\0\0\21\0\0\0\40\0\0\0\337\0" "\0\0\374\0\0\0\337\0\0\0\40\0\0\0\1\205\0\0\0\0\6\0\0\0\1\0\0\0\31\0" "\0\0\250\0\0\0\276\0\0\0\246\0\0\0\33\202\0\0\0\301\6\0\0\0\37\0\0\0" "\336\0\0\0\374\0\0\0\337\0\0\0\40\0\0\0\1\207\0\0\0\0\5\0\0\0\1\0\0\0" "\31\0\0\0\246\0\0\0\245\0\0\0\16\202\0\0\0\17\5\0\0\0\22\0\0\0\334\0" "\0\0\336\0\0\0\40\0\0\0\1\204\0\0\0\0\1\0\0\0\12\202\0\0\0\13\202\0\0" "\0\14\4\0\0\0\15\0\0\0\30\0\0\0\16\0\0\0\1\202\0\0\0\0\4\0\0\0\1\0\0" "\0\21\0\0\0\23\0\0\0\3\205\0\0\0\2\1\0\0\0\212\202\0\0\0\225\1\0\0\0" "\230\202\0\0\0\227\2\0\0\0\221\0\0\0\13\204\0\0\0\0\2\0\0\0\2\0\0\0\34" "\205\0\0\0\36\2\0\0\0\34\0\0\0\213\202\0\0\0\226\1\0\0\0\225\202\0\0" "\0\226\2\0\0\0\213\0\0\0\13\204\0\0\0\0\2\0\0\0\2\0\0\0\34\205\0\0\0" "\36\2\0\0\0\34\0\0\0\12\204\0\0\0\13\4\0\0\0\14\0\0\0\23\0\0\0\11\0\0" "\0\1\203\0\0\0\0\2\0\0\0\5\0\0\0\7\206\0\0\0\2\204\0\0\0\0\5\0\0\0\1" "\0\0\0\20\0\0\0p\0\0\0o\0\0\0\11\202\0\0\0\7\1\0\0\0\5\202\0\0\0""8\1" "\0\0\0\11\210\0\0\0\0\15\0\0\0\1\0\0\0\20\0\0\0q\0\0\0\205\0\0\0q\0\0" "\0\17\0\0\0T\0\0\0S\0\0\0\13\0\0\0""9\0\0\0A\0\0\0""9\0\0\0\11\206\0" "\0\0\0\7\0\0\0\1\0\0\0\20\0\0\0p\0\0\0\177\0\0\0q\0\0\0\20\0\0\0\7\202" "\0\0\0Y\6\0\0\0\7\0\0\0\11\0\0\0""8\0\0\0@\0\0\0""8\0\0\0\11\204\0\0" "\0\0\10\0\0\0\1\0\0\0\20\0\0\0p\0\0\0\203\0\0\0p\0\0\0\20\0\0\0\1\0\0" "\0\7\202\0\0\0Y\7\0\0\0\7\0\0\0\0\0\0\0\11\0\0\0""9\0\0\0B\0\0\0""9\0" "\0\0\11\203\0\0\0\0\10\0\0\0\10\0\0\0h\0\0\0~\0\0\0q\0\0\0\20\0\0\0\1" "\0\0\0\0\0\0\0\7\202\0\0\0Y\1\0\0\0\7\202\0\0\0\0\5\0\0\0\11\0\0\0""9" "\0\0\0C\0\0\0""4\0\0\0\4\202\0\0\0\0\5\0\0\0\1\0\0\0\20\0\0\0h\0\0\0" "\20\0\0\0\1\202\0\0\0\0\1\0\0\0\7\202\0\0\0Y\1\0\0\0\7\203\0\0\0\0\3" "\0\0\0\11\0\0\0""4\0\0\0\11\204\0\0\0\0\3\0\0\0\1\0\0\0\10\0\0\0\1\203" "\0\0\0\0\1\0\0\0\7\202\0\0\0Y\1\0\0\0\7\204\0\0\0\0\1\0\0\0\4\213\0\0" "\0\0\4\0\0\0\6\0\0\0T\0\0\0S\0\0\0\6\210\0\0\0\0"}; photoprint-0.4.2-pre2/miscwidgets/spinner3.cpp0000644000175000017500000000614311330153377016310 00000000000000/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ #ifdef __SUNPRO_C #pragma align 4 (spinner3_data) #endif #ifdef __GNUC__ static const guint8 spinner3_data[] __attribute__ ((__aligned__ (4))) = #else static const guint8 spinner3_data[] = #endif { "" /* Pixbuf magic (0x47646b50) */ "GdkP" /* length: header (24) + pixel_data (1091) */ "\0\0\4[" /* pixdata_type (0x2010002) */ "\2\1\0\2" /* rowstride (80) */ "\0\0\0P" /* width (20) */ "\0\0\0\24" /* height (20) */ "\0\0\0\24" /* pixel_data: */ "\210\0\0\0\0\1\0\0\0\15\202\0\0\0\245\1\0\0\0\15\212\0\0\0\0\3\0\0\0" "\1\0\0\0\12\0\0\0\1\203\0\0\0\0\1\0\0\0\16\202\0\0\0\262\1\0\0\0\16\203" "\0\0\0\0\3\0\0\0\1\0\0\0\16\0\0\0\1\203\0\0\0\0\5\0\0\0\1\0\0\0\24\0" "\0\0\201\0\0\0\24\0\0\0\1\202\0\0\0\0\1\0\0\0\16\202\0\0\0\262\1\0\0" "\0\16\202\0\0\0\0\5\0\0\0\1\0\0\0\34\0\0\0\265\0\0\0\34\0\0\0\1\202\0" "\0\0\0\10\0\0\0\11\0\0\0\201\0\0\0\236\0\0\0\214\0\0\0\24\0\0\0\1\0\0" "\0\0\0\0\0\16\202\0\0\0\262\10\0\0\0\16\0\0\0\0\0\0\0\1\0\0\0\34\0\0" "\0\304\0\0\0\335\0\0\0\265\0\0\0\16\202\0\0\0\0\10\0\0\0\1\0\0\0\24\0" "\0\0\214\0\0\0\237\0\0\0\215\0\0\0\24\0\0\0\1\0\0\0\16\202\0\0\0\262" "\10\0\0\0\16\0\0\0\1\0\0\0\34\0\0\0\304\0\0\0\336\0\0\0\304\0\0\0\34" "\0\0\0\1\203\0\0\0\0\7\0\0\0\1\0\0\0\24\0\0\0\214\0\0\0\237\0\0\0\214" "\0\0\0\24\0\0\0\17\202\0\0\0\262\7\0\0\0\17\0\0\0\34\0\0\0\304\0\0\0" "\337\0\0\0\304\0\0\0\34\0\0\0\1\205\0\0\0\0\6\0\0\0\1\0\0\0\24\0\0\0" "\214\0\0\0\237\0\0\0\213\0\0\0\27\202\0\0\0\245\6\0\0\0\33\0\0\0\302" "\0\0\0\336\0\0\0\304\0\0\0\34\0\0\0\1\207\0\0\0\0\5\0\0\0\1\0\0\0\24" "\0\0\0\214\0\0\0\212\0\0\0\13\202\0\0\0\15\5\0\0\0\20\0\0\0\301\0\0\0" "\302\0\0\0\34\0\0\0\1\204\0\0\0\0\1\0\0\0\10\204\0\0\0\11\4\0\0\0\12" "\0\0\0\23\0\0\0\13\0\0\0\1\202\0\0\0\0\4\0\0\0\1\0\0\0\20\0\0\0\37\0" "\0\0\23\204\0\0\0\22\2\0\0\0\21\0\0\0p\205\0\0\0x\2\0\0\0p\0\0\0\10\204" "\0\0\0\0\2\0\0\0\21\0\0\0\334\205\0\0\0\355\2\0\0\0\334\0\0\0p\205\0" "\0\0x\2\0\0\0p\0\0\0\10\204\0\0\0\0\2\0\0\0\21\0\0\0\334\205\0\0\0\355" "\2\0\0\0\334\0\0\0\10\204\0\0\0\11\3\0\0\0\12\0\0\0\17\0\0\0\7\204\0" "\0\0\0\2\0\0\0\3\0\0\0\23\205\0\0\0\22\1\0\0\0\21\205\0\0\0\0\4\0\0\0" "\14\0\0\0U\0\0\0S\0\0\0\7\202\0\0\0\4\4\0\0\0\2\0\0\0\34\0\0\0\33\0\0" "\0\4\211\0\0\0\0\5\0\0\0\14\0\0\0U\0\0\0a\0\0\0S\0\0\0\12\202\0\0\0""7" "\5\0\0\0\7\0\0\0\34\0\0\0\40\0\0\0\34\0\0\0\4\207\0\0\0\0\6\0\0\0\14" "\0\0\0T\0\0\0_\0\0\0U\0\0\0\14\0\0\0\5\202\0\0\0;\6\0\0\0\5\0\0\0\4\0" "\0\0\34\0\0\0\40\0\0\0\33\0\0\0\4\205\0\0\0\0\7\0\0\0\14\0\0\0T\0\0\0" "`\0\0\0U\0\0\0\14\0\0\0\0\0\0\0\5\202\0\0\0;\7\0\0\0\5\0\0\0\0\0\0\0" "\4\0\0\0\34\0\0\0\37\0\0\0\34\0\0\0\4\203\0\0\0\0\5\0\0\0\6\0\0\0M\0" "\0\0_\0\0\0U\0\0\0\14\202\0\0\0\0\1\0\0\0\5\202\0\0\0;\1\0\0\0\5\202" "\0\0\0\0\5\0\0\0\4\0\0\0\34\0\0\0\40\0\0\0\32\0\0\0\2\203\0\0\0\0\3\0" "\0\0\14\0\0\0M\0\0\0\14\203\0\0\0\0\1\0\0\0\5\202\0\0\0<\1\0\0\0\5\203" "\0\0\0\0\3\0\0\0\4\0\0\0\31\0\0\0\4\205\0\0\0\0\1\0\0\0\6\204\0\0\0\0" "\1\0\0\0\5\202\0\0\0;\1\0\0\0\5\204\0\0\0\0\1\0\0\0\2\213\0\0\0\0\1\0" "\0\0\5\202\0\0\0""7\1\0\0\0\5\210\0\0\0\0"}; photoprint-0.4.2-pre2/miscwidgets/spinner5.cpp0000644000175000017500000000615311330153377016313 00000000000000/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ #ifdef __SUNPRO_C #pragma align 4 (spinner5_data) #endif #ifdef __GNUC__ static const guint8 spinner5_data[] __attribute__ ((__aligned__ (4))) = #else static const guint8 spinner5_data[] = #endif { "" /* Pixbuf magic (0x47646b50) */ "GdkP" /* length: header (24) + pixel_data (1090) */ "\0\0\4Z" /* pixdata_type (0x2010002) */ "\2\1\0\2" /* rowstride (80) */ "\0\0\0P" /* width (20) */ "\0\0\0\24" /* height (20) */ "\0\0\0\24" /* pixel_data: */ "\210\0\0\0\0\1\0\0\0\10\202\0\0\0p\1\0\0\0\10\213\0\0\0\0\1\0\0\0\6\204" "\0\0\0\0\1\0\0\0\11\202\0\0\0x\1\0\0\0\11\203\0\0\0\0\3\0\0\0\1\0\0\0" "\11\0\0\0\1\204\0\0\0\0\3\0\0\0\14\0\0\0M\0\0\0\14\203\0\0\0\0\1\0\0" "\0\11\202\0\0\0x\1\0\0\0\11\202\0\0\0\0\5\0\0\0\1\0\0\0\24\0\0\0\201" "\0\0\0\24\0\0\0\1\202\0\0\0\0\5\0\0\0\6\0\0\0M\0\0\0_\0\0\0T\0\0\0\14" "\202\0\0\0\0\1\0\0\0\11\202\0\0\0x\10\0\0\0\11\0\0\0\0\0\0\0\1\0\0\0" "\24\0\0\0\214\0\0\0\236\0\0\0\201\0\0\0\12\203\0\0\0\0\7\0\0\0\14\0\0" "\0U\0\0\0`\0\0\0T\0\0\0\14\0\0\0\0\0\0\0\11\202\0\0\0x\10\0\0\0\11\0" "\0\0\1\0\0\0\24\0\0\0\214\0\0\0\237\0\0\0\214\0\0\0\24\0\0\0\1\204\0" "\0\0\0\6\0\0\0\14\0\0\0U\0\0\0_\0\0\0U\0\0\0\14\0\0\0\12\202\0\0\0x\7" "\0\0\0\12\0\0\0\24\0\0\0\214\0\0\0\237\0\0\0\215\0\0\0\24\0\0\0\1\206" "\0\0\0\0\5\0\0\0\14\0\0\0U\0\0\0a\0\0\0U\0\0\0\17\202\0\0\0p\6\0\0\0" "\23\0\0\0\214\0\0\0\237\0\0\0\214\0\0\0\24\0\0\0\1\210\0\0\0\0\1\0\0" "\0\14\202\0\0\0S\1\0\0\0\7\202\0\0\0\10\5\0\0\0\13\0\0\0\212\0\0\0\213" "\0\0\0\24\0\0\0\1\204\0\0\0\0\206\0\0\0\5\2\0\0\0\12\0\0\0\7\203\0\0" "\0\0\4\0\0\0\1\0\0\0\13\0\0\0\27\0\0\0\17\204\0\0\0\16\4\0\0\0\15\0\0" "\0""7\0\0\0;\0\0\0<\203\0\0\0;\2\0\0\0""7\0\0\0\4\204\0\0\0\0\2\0\0\0" "\15\0\0\0\245\205\0\0\0\262\4\0\0\0\245\0\0\0""7\0\0\0;\0\0\0<\203\0" "\0\0;\2\0\0\0""7\0\0\0\4\204\0\0\0\0\2\0\0\0\15\0\0\0\245\205\0\0\0\262" "\1\0\0\0\245\206\0\0\0\5\2\0\0\0\7\0\0\0\2\203\0\0\0\0\4\0\0\0\1\0\0" "\0\20\0\0\0\33\0\0\0\17\204\0\0\0\16\1\0\0\0\15\205\0\0\0\0\1\0\0\0\4" "\202\0\0\0\34\1\0\0\0\3\202\0\0\0\21\5\0\0\0\20\0\0\0\301\0\0\0\302\0" "\0\0\34\0\0\0\1\210\0\0\0\0\5\0\0\0\4\0\0\0\34\0\0\0\40\0\0\0\33\0\0" "\0\23\202\0\0\0\334\6\0\0\0\37\0\0\0\302\0\0\0\336\0\0\0\304\0\0\0\34" "\0\0\0\1\206\0\0\0\0\6\0\0\0\4\0\0\0\34\0\0\0\40\0\0\0\34\0\0\0\4\0\0" "\0\22\202\0\0\0\355\7\0\0\0\23\0\0\0\34\0\0\0\304\0\0\0\337\0\0\0\304" "\0\0\0\34\0\0\0\1\204\0\0\0\0\7\0\0\0\4\0\0\0\34\0\0\0\37\0\0\0\33\0" "\0\0\4\0\0\0\0\0\0\0\22\202\0\0\0\355\10\0\0\0\22\0\0\0\1\0\0\0\34\0" "\0\0\304\0\0\0\336\0\0\0\304\0\0\0\34\0\0\0\1\202\0\0\0\0\5\0\0\0\2\0" "\0\0\31\0\0\0\40\0\0\0\34\0\0\0\4\202\0\0\0\0\1\0\0\0\22\202\0\0\0\355" "\10\0\0\0\22\0\0\0\0\0\0\0\1\0\0\0\34\0\0\0\304\0\0\0\335\0\0\0\265\0" "\0\0\16\203\0\0\0\0\3\0\0\0\4\0\0\0\32\0\0\0\4\203\0\0\0\0\1\0\0\0\22" "\202\0\0\0\355\1\0\0\0\22\202\0\0\0\0\5\0\0\0\1\0\0\0\34\0\0\0\265\0" "\0\0\34\0\0\0\1\204\0\0\0\0\1\0\0\0\2\204\0\0\0\0\1\0\0\0\22\202\0\0" "\0\355\1\0\0\0\22\203\0\0\0\0\3\0\0\0\1\0\0\0\16\0\0\0\1\212\0\0\0\0" "\1\0\0\0\21\202\0\0\0\334\1\0\0\0\21\210\0\0\0\0"}; photoprint-0.4.2-pre2/miscwidgets/imageselector_noborder_image.h0000644000175000017500000001665311076423574022110 00000000000000/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ #ifdef __SUNPRO_C #pragma align 4 (noborder) #endif #ifdef __GNUC__ static const guint8 noborder[] __attribute__ ((__aligned__ (4))) = #else static const guint8 noborder[] = #endif { "" /* Pixbuf magic (0x47646b50) */ "GdkP" /* length: header (24) + pixel_data (1895) */ "\0\0\7\177" /* pixdata_type (0x2010002) */ "\2\1\0\2" /* rowstride (512) */ "\0\0\2\0" /* width (128) */ "\0\0\0\200" /* height (96) */ "\0\0\0`" /* pixel_data: */ "\377\0\0\0\377\202\0\0\0\377\1@@@\377\374\177\177\177\377\1@@@\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1\177\177\177\377\374\377\377\377\377\1\177\177\177\377\202" "\0\0\0\377\1@@@\377\374\177\177\177\377\1@@@\377\377\0\0\0\377\202\0" "\0\0\377"}; photoprint-0.4.2-pre2/miscwidgets/imageselector.cpp0000644000175000017500000003640511362300711017365 00000000000000/* * imageselector.cpp - provides a custom widget for selecting a border image. * * Copyright (c) 2006-2009 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "../support/debug.h" #include "egg-pixbuf-thumbnail.h" #include "generaldialogs.h" #include "imageselector.h" #include "imageselector_noborder_image.h" #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "gettext.h" #define _(x) gettext(x) using namespace std; enum { CHANGED_SIGNAL, DOUBLECLICKED_SIGNAL, LAST_SIGNAL }; static guint imageselector_signals[LAST_SIGNAL] = { 0 }; static void imageselector_class_init (ImageSelectorClass *klass); static void imageselector_init (ImageSelector *sel); struct ImageEntry { GdkPixbuf *pixbuf; char *filename; }; static ImageEntry *find_filename(ImageSelector *il,const char *filename) { GList *iter=il->imagelist; while(iter) { ImageEntry *ii=(ImageEntry *)iter->data; if(ii && (ii->filename==NULL) && (filename==NULL)) return(ii); if(ii && ii->filename && strcmp(ii->filename,filename)==0) return(ii); iter=g_list_next(iter); } return(NULL); } static ImageEntry *find_pixbuf(ImageSelector *il,GdkPixbuf *pb) { GList *iter=il->imagelist; while(iter) { ImageEntry *ii=(ImageEntry *)iter->data; if(ii && ii->pixbuf==pb) return(ii); iter=g_list_next(iter); } return(NULL); } static gint is_cmpfunc(const void *p1,const void *p2) { ImageEntry *i1=(ImageEntry *)p1; ImageEntry *i2=(ImageEntry *)p2; return(strcmp(i1->filename,i2->filename)); } static void clear_list(ImageSelector *il) { gtk_list_store_clear(il->liststore); GList *iter=il->imagelist; while(iter) { ImageEntry *ii=(ImageEntry *)iter->data; if(ii->pixbuf) g_object_unref(G_OBJECT(ii->pixbuf)); if(ii->filename); free(ii->filename); GList *niter=g_list_next(iter); il->imagelist=g_list_delete_link(il->imagelist,iter); delete ii; iter=niter; } il->imagelist=NULL; } static ImageEntry *add_node(ImageSelector *il,const char *filename,GdkPixbuf *pb=NULL) { ImageEntry *ii=NULL; GError *err=NULL; if(il->searchpath) { char *rel=il->searchpath->MakeRelative(filename); if((ii=find_filename(il,rel))) { free(rel); return(ii); } free(rel); } if(filename && !pb) pb=egg_pixbuf_get_thumbnail_for_file(filename,EGG_PIXBUF_THUMBNAIL_NORMAL,&err); if(pb) { ii=new ImageEntry; if(il->searchpath) ii->filename=il->searchpath->MakeRelative(filename); else ii->filename=strdup(filename); ii->pixbuf=pb; il->imagelist=g_list_append(il->imagelist,ii); GtkTreeIter iter1; gtk_list_store_append(il->liststore,&iter1); gtk_list_store_set(il->liststore,&iter1,0,ii->pixbuf,-1); } else cerr << "Thumbnail loading failed" << endl; return(ii); } static void populate_list(ImageSelector *il) { if(!il->searchpath) return; GtkTreeIter iter1; cerr << "Fetching filenames..." << endl; SearchPathIterator spi(*il->searchpath); const char *path=spi.GetNextFilename(NULL); while(path) { if(!find_filename(il,path)) { ImageEntry *ii=new ImageEntry; ii->filename=strdup(path); ii->pixbuf=NULL; il->imagelist=g_list_append(il->imagelist,ii); } path=spi.GetNextFilename(path); } cerr << "Sorting list..." << endl; il->imagelist=g_list_sort(il->imagelist,is_cmpfunc); GdkPixdata pd; GError *err=NULL; ImageEntry *ii=new ImageEntry; gdk_pixdata_deserialize(&pd,sizeof(noborder),noborder,&err); ii->pixbuf=gdk_pixbuf_from_pixdata(&pd,false,&err); ii->filename=NULL; il->imagelist=g_list_prepend(il->imagelist,ii); cerr << "Fetching thumbnails and showing list nodes..." << endl; GList *liter=il->imagelist; while(liter) { GError *err=NULL; ImageEntry *ii=(ImageEntry *)liter->data; if(!ii) cerr << "PANIC - Null node!" << endl; GdkPixbuf *pb=NULL; if(ii->filename) pb=egg_pixbuf_get_thumbnail_for_file(il->searchpath->SearchPaths(ii->filename),EGG_PIXBUF_THUMBNAIL_NORMAL,&err); else pb=ii->pixbuf; if(pb) { ii->pixbuf=pb; gtk_list_store_append(il->liststore,&iter1); gtk_list_store_set(il->liststore,&iter1,0,ii->pixbuf,-1); while(gtk_events_pending()) gtk_main_iteration_do(false); liter=g_list_next(liter); } else { free(ii->filename); GList *niter=g_list_next(liter); il->imagelist=g_list_delete_link(il->imagelist,liter); delete ii; liter=niter; } } // If we've already got a filename selected, make sure it's added // if it's not already part of the list. ii=find_filename(il,il->filename); if(!ii) ii=add_node(il,il->filename); } static void rebuild_liststore(ImageSelector *c) { if(!c->imagelist) populate_list(c); // else // { // Rebuild list view from ImageSelector GList *iter=c->imagelist; GtkTreeIter iter1; gtk_list_store_clear(c->liststore); while(iter) { ImageEntry *ii=(ImageEntry *)iter->data; gtk_list_store_append(c->liststore,&iter1); gtk_list_store_set(c->liststore,&iter1,0,ii->pixbuf,-1); iter=g_list_next(iter); } // } } class multiselectdata { public: multiselectdata(ImageSelector *sel,GtkTreeModel *model) : sel(sel), model(model) { if(sel->selectionlist) delete sel->selectionlist; sel->selectionlist=new vector; } ~multiselectdata() { } static void add_name(gpointer data,gpointer userdata) { DebugLevel oldlevel=Debug.SetLevel(TRACE); multiselectdata *msd=(multiselectdata *)userdata; GtkTreePath *treepath=(GtkTreePath *)data; GtkTreeIter iter; GdkPixbuf *pb; if(gtk_tree_model_get_iter(msd->model,&iter,treepath)) { gtk_tree_model_get(msd->model,&iter,0,&pb,-1); ImageEntry *ii=find_pixbuf(msd->sel,pb); if(ii && ii->filename && msd->sel->selectionlist) { msd->sel->selectionlist->push_back(string(ii->filename)); Debug[TRACE] << "MultiSelectData - Found: " << ii->filename << endl; } } else Debug[WARN] << "MultiSelectData: Unable to select path" << endl; Debug.SetLevel(oldlevel); } protected: ImageSelector *sel; GtkTreeModel *model; }; static void selection_changed(GtkTreeSelection *select,gpointer user_data) { ImageSelector *pe=IMAGESELECTOR(user_data); if(pe->selmode==GTK_SELECTION_MULTIPLE) { GtkTreeModel *model; GList *list=gtk_tree_selection_get_selected_rows(select,&model); multiselectdata msd(pe,model); g_list_foreach (list, multiselectdata::add_name,&msd); g_list_foreach (list, (GFunc)gtk_tree_path_free, NULL); g_list_free (list); cerr << "Selection_changed - list size: " << pe->selectionlist->size() << endl; } else { GtkTreeIter iter; GtkTreeModel *model; if (gtk_tree_selection_get_selected (select,&model, &iter)) { GdkPixbuf *pb; gtk_tree_model_get (model, &iter, 0, &pb, -1); ImageEntry *ii=find_pixbuf(pe,pb); if(ii) { if(pe->filename) free(pe->filename); pe->filename=NULL; if(ii->filename) { if(pe->searchpath) pe->filename=pe->searchpath->SearchPaths(ii->filename); else pe->filename=strdup(ii->filename); } } g_signal_emit(G_OBJECT (pe),imageselector_signals[CHANGED_SIGNAL], 0); } } } static void row_activated(GtkTreeView *tree_view,GtkTreePath *path, GtkTreeViewColumn *column, gpointer user_data) { ImageSelector *pe=IMAGESELECTOR(user_data); cerr << "Got row-activated signal" << endl; g_signal_emit(G_OBJECT (pe),imageselector_signals[DOUBLECLICKED_SIGNAL], 0); } static void imageselector_other(GtkTreeSelection *select,gpointer user_data) { ImageSelector *is=IMAGESELECTOR(user_data); char *fn; if((fn=File_Dialog("Select image...",NULL,NULL,true))) { imageselector_set_filename(is,fn); g_free(fn); g_signal_emit(G_OBJECT (is),imageselector_signals[CHANGED_SIGNAL], 0); } } #define TARGET_URI_LIST 1 static GtkTargetEntry dnd_file_drop_types[] = { { "text/uri-list", 0, TARGET_URI_LIST } }; static gint dnd_file_drop_types_count = 1; static void get_dnd_data(GtkWidget *widget, GdkDragContext *context, gint x, gint y, GtkSelectionData *selection_data, guint info, guint time, gpointer data) { gchar *urilist=g_strdup((const gchar *)selection_data->data); ImageSelector *is=IMAGESELECTOR(widget); while(*urilist) { if(strncmp(urilist,"file:",5)) { g_print("Warning: only local files (file://) are currently supported\n"); while(*urilist && *urilist!='\n' && *urilist!='\r') ++urilist; while(*urilist=='\n' || *urilist=='\r') *urilist++; } else { gchar *uri=urilist; while(*urilist && *urilist!='\n' && *urilist!='\r') ++urilist; if(*urilist) { while(*urilist=='\n' || *urilist=='\r') *urilist++=0; gchar *filename=g_filename_from_uri(uri,NULL,NULL); imageselector_set_filename(is,filename); } } } g_signal_emit_by_name (GTK_OBJECT (widget), "changed"); } GtkWidget* imageselector_new (SearchPathHandler *sp,GtkSelectionMode selmode,bool allowother) { ImageSelector *c=IMAGESELECTOR(g_object_new (imageselector_get_type (), NULL)); c->liststore=gtk_list_store_new(1,GDK_TYPE_PIXBUF); c->searchpath=sp; c->selmode=selmode; if(allowother) { gtk_drag_dest_set(GTK_WIDGET(c), GtkDestDefaults(GTK_DEST_DEFAULT_MOTION | GTK_DEST_DEFAULT_DROP), dnd_file_drop_types, dnd_file_drop_types_count, GdkDragAction(GDK_ACTION_COPY | GDK_ACTION_MOVE | GDK_ACTION_LINK)); g_signal_connect(G_OBJECT(c), "drag_data_received", G_CALLBACK(get_dnd_data), NULL); } GtkWidget *sw = gtk_scrolled_window_new (NULL, NULL); gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (sw),GTK_SHADOW_ETCHED_IN); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (sw),GTK_POLICY_NEVER,GTK_POLICY_AUTOMATIC); gtk_box_pack_start (GTK_BOX (c), sw, TRUE, TRUE, 0); gtk_widget_show(sw); c->treeview=gtk_tree_view_new_with_model(GTK_TREE_MODEL(c->liststore)); GtkCellRenderer *renderer; GtkTreeViewColumn *column; renderer=gtk_cell_renderer_pixbuf_new(); g_object_set(G_OBJECT(renderer),"xpad",4,NULL); g_object_set(G_OBJECT(renderer),"ypad",4,NULL); column=gtk_tree_view_column_new_with_attributes(_("Image"),renderer,"pixbuf",0,NULL); gtk_tree_view_append_column(GTK_TREE_VIEW(c->treeview),column); g_signal_connect (G_OBJECT (c->treeview), "row-activated", G_CALLBACK (row_activated),c); GtkTreeSelection *select; select = gtk_tree_view_get_selection (GTK_TREE_VIEW (c->treeview)); gtk_tree_selection_set_mode (select, c->selmode); g_signal_connect (G_OBJECT (select), "changed", G_CALLBACK (selection_changed),c); gtk_container_add(GTK_CONTAINER(sw),c->treeview); gtk_widget_show(c->treeview); GtkWidget *hbox=gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(c),hbox,FALSE,FALSE,0); gtk_widget_show(hbox); if((c->selmode==GTK_SELECTION_SINGLE) && allowother) { GtkWidget *addbutton=gtk_button_new_with_label(_("Other...")); gtk_box_pack_start(GTK_BOX(c),addbutton,FALSE,FALSE,0); g_signal_connect(addbutton,"clicked",G_CALLBACK(imageselector_other),c); gtk_widget_show(addbutton); } return(GTK_WIDGET(c)); } GType imageselector_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo imageselector_info = { sizeof (ImageSelectorClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) imageselector_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (ImageSelector), 0, (GInstanceInitFunc) imageselector_init, }; stpuic_type = g_type_register_static (GTK_TYPE_VBOX, "ImageSelector", &imageselector_info, GTypeFlags(0)); } return stpuic_type; } static void *parent_class=NULL; static void imageselector_destroy(GtkObject *object) { ImageSelector *il=(ImageSelector *)object; if (GTK_OBJECT_CLASS (parent_class)->destroy) (* GTK_OBJECT_CLASS (parent_class)->destroy) (object); clear_list(il); if(il->filename) free(il->filename); il->filename=NULL; } static void imageselector_class_init (ImageSelectorClass *cls) { GtkObjectClass *object_class=(GtkObjectClass *)cls; // GtkWidgetClass *widget_class=(GtkWidgetClass *)cls; parent_class = gtk_type_class (gtk_widget_get_type ()); object_class->destroy = imageselector_destroy; imageselector_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (cls), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (ImageSelectorClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); imageselector_signals[DOUBLECLICKED_SIGNAL] = g_signal_new ("double-clicked", G_TYPE_FROM_CLASS (cls), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (ImageSelectorClass, doubleclicked), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void imageselector_init (ImageSelector *c) { c->searchpath=NULL; c->imagelist=NULL; c->filename=NULL; c->selectionlist=NULL; } gboolean imageselector_refresh(ImageSelector *c) { cerr << "Clearing existing list" << endl; clear_list(c); cerr << "Rebuilding list" << endl; rebuild_liststore(c); return(true); } const char *imageselector_get_filename(ImageSelector *c,unsigned int idx) { if(c->selectionlist) { Debug[TRACE] << "Checking selection list" << endl; if(idxselectionlist->size()) return((*c->selectionlist)[idx].c_str()); else Debug[TRACE] << "No filename in selectionlist at index " << idx << endl; return(NULL); } else return(c->filename); } bool imageselector_add_filename(ImageSelector *c,const char *filename,GdkPixbuf *pb) { ImageEntry *ii=find_filename(c,filename); if(!ii) ii=add_node(c,filename,pb); return(ii!=NULL); } void imageselector_set_filename(ImageSelector *c,const char *filename) { ImageEntry *ii=find_filename(c,filename); if(!ii) ii=add_node(c,filename); if(ii) { if(c->filename) free(c->filename); c->filename=NULL; if(filename) c->filename=strdup(filename); GtkTreeIter iter; GtkTreePath *path; if(gtk_tree_model_get_iter_first(GTK_TREE_MODEL(c->liststore),&iter)) { do { GdkPixbuf *pb; gtk_tree_model_get(GTK_TREE_MODEL(c->liststore),&iter,0,&pb,-1); if(pb==ii->pixbuf) { path=gtk_tree_model_get_path(GTK_TREE_MODEL(c->liststore),&iter); gtk_tree_view_set_cursor(GTK_TREE_VIEW(c->treeview),path,NULL,false); gtk_tree_path_free(path); break; } } while(gtk_tree_model_iter_next(GTK_TREE_MODEL(c->liststore),&iter)); } } } static void removebyname(ImageSelector *c,const char *filename) { if(filename) { GList *iter=c->imagelist; while(iter) { ImageEntry *ii=(ImageEntry *)iter->data; if(ii && ii->filename && strcmp(ii->filename,filename)==0) { c->imagelist=g_list_delete_link(c->imagelist,iter); delete ii; break; } iter=g_list_next(iter); } } } void imageselector_remove(ImageSelector *c,const char *fn) { if(fn) { removebyname(c,fn); } else { if(c->selectionlist) { Debug[TRACE] << "Checking selection list" << endl; for(int i=0;iselectionlist->size();++i) removebyname(c,(*c->selectionlist)[i].c_str()); } else removebyname(c,c->filename); } rebuild_liststore(c); } photoprint-0.4.2-pre2/miscwidgets/generaldialogs.h0000644000175000017500000000076411130232130017156 00000000000000#ifndef GENERAL_DIALOGS_H #define GENERAL_DIALOGS_H #include void ErrorMessage_Dialog(const char *message,GtkWidget *parent=NULL); bool Query_Dialog(const char *message,GtkWidget *parent); char *File_Dialog(const char *title,const char *oldfilename,GtkWidget *parent=NULL,bool preview=false); char *File_Save_Dialog(const char *title,const char *oldfilename,GtkWidget *parent=NULL); char *Directory_Dialog(const char *title,const char *oldfilename,GtkWidget *parent=NULL); #endif photoprint-0.4.2-pre2/miscwidgets/colorantselector.cpp0000644000175000017500000001735511326564704020145 00000000000000/* * colorantselector.cpp * Provides a list of available colorants, * with a sample and a checkmark beside each one. * * Copyright (c) 2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include #include #include #include #include #include #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "imagesource/imagesource_gdkpixbuf.h" #include "imagesource/imagesource_greyscale.h" #include "imagesource/imagesource_devicen_preview.h" #include "imagesource/devicencolorant.h" #include "imagesource/pixbuf_from_imagesource.h" #include "miscwidgets/generaldialogs.h" #include "pixbuf_from_imagedata.h" #include "colorantselector.h" #include "gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) #include "squiggledata.cpp" using namespace std; enum { CHANGED_SIGNAL, LAST_SIGNAL }; static guint colorantselector_signals[LAST_SIGNAL] = { 0 }; static void colorantselector_class_init (ColorantSelectorClass *klass); static void colorantselector_init (ColorantSelector *sel); static void selection_changed(GtkTreeSelection *select,gpointer user_data) { // ColorantSelector *pe=COLORANTSELECTOR(user_data); } // Declare multiple columns for GTK's tree model. The columnns can contain widgets, // not just static display, and don't have to be visible, so we can include userdata. enum { ACTIVE_COLUMN = 0, // Checkmark ICON_COLUMN, // Pixbuf LABEL_COLUMN, // Colorant name (string) // Now non-displayed fields: COLORANT_COLUMN, // gpointer to this colorant. NUM_COLUMNS }; static void populate_list(ColorantSelector *es) { if(es->list) { GtkTreeIter iter; GdkPixbuf *icon=PixbufFromImageData(squiggle_data,sizeof(squiggle_data)); DeviceNColorant *col=es->list->FirstColorant(); int i=0; while(col) { if(col->GetName()) { // Colorize the icon here ImageSource *is=new ImageSource_GdkPixbuf(icon); is=new ImageSource_Greyscale(is); is=new ImageSource_DeviceN_Preview(is,es->list,i); GdkPixbuf *colicon=pixbuf_from_imagesource(is); gtk_tree_store_append (GTK_TREE_STORE(es->treestore), &iter, NULL); gtk_tree_store_set (GTK_TREE_STORE(es->treestore), &iter, ACTIVE_COLUMN, col->GetEnabled(), LABEL_COLUMN, strdup(col->GetDisplayName()), ICON_COLUMN, colicon, COLORANT_COLUMN,col, -1); } ++i; col=col->NextColorant(); } g_object_unref(icon); } } static void item_toggled (GtkCellRendererToggle *cell,gchar *path_str,gpointer data) { ColorantSelector *sel=COLORANTSELECTOR(data); GtkTreeModel *model = GTK_TREE_MODEL(sel->treestore); GtkTreePath *path = gtk_tree_path_new_from_string (path_str); GtkTreeIter iter; gboolean toggle_item; // It seems the checkbox state has to be toggled manually by the callback... gint *column = (gint *)g_object_get_data (G_OBJECT (cell), "column"); /* get toggled iter */ gtk_tree_model_get_iter (model, &iter, path); gtk_tree_model_get (model, &iter, column, &toggle_item, -1); /* do something with the value */ toggle_item ^= 1; /* set new value */ gtk_tree_store_set (GTK_TREE_STORE (model), &iter, column, toggle_item, -1); gpointer *ptr=NULL; gtk_tree_model_get (model, &iter, COLORANT_COLUMN,&ptr, -1); if(ptr) { DeviceNColorant *col=(DeviceNColorant *)ptr; if(toggle_item) col->Enable(); else col->Disable(); } // Emit the Changed signal g_signal_emit(G_OBJECT (sel),colorantselector_signals[CHANGED_SIGNAL], 0); // Clean up gtk_tree_path_free (path); } static void setup_renderers(ColorantSelector *sel) { gint col_offset; GtkCellRenderer *renderer; // Active column renderer = gtk_cell_renderer_toggle_new (); g_signal_connect (renderer, "toggled", G_CALLBACK (item_toggled), sel); col_offset = gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (sel->treeview), -1, _("Active"), renderer, "active", ACTIVE_COLUMN, NULL); // Pixbuf column renderer=gtk_cell_renderer_pixbuf_new(); col_offset=gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW (sel->treeview), -1,_("Icon"), renderer, "pixbuf", ICON_COLUMN, NULL); // column for names renderer = gtk_cell_renderer_text_new (); g_object_set (renderer, "xalign", 0.0, NULL); g_object_set (renderer, "xpad", 3, NULL); col_offset = gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (sel->treeview), -1, _("Name"), renderer, "text", LABEL_COLUMN, NULL); } GtkWidget* colorantselector_new (DeviceNColorantList *list) { ColorantSelector *c=COLORANTSELECTOR(g_object_new (colorantselector_get_type (), NULL)); c->list=list; c->treestore = gtk_tree_store_new (NUM_COLUMNS, G_TYPE_BOOLEAN, GDK_TYPE_PIXBUF, G_TYPE_STRING, G_TYPE_POINTER ); GtkWidget *sw = gtk_scrolled_window_new (NULL, NULL); gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (sw),GTK_SHADOW_ETCHED_IN); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (sw),GTK_POLICY_NEVER,GTK_POLICY_AUTOMATIC); gtk_box_pack_start (GTK_BOX (c), sw, TRUE, TRUE, 0); gtk_widget_show(sw); c->treeview=gtk_tree_view_new_with_model(GTK_TREE_MODEL(c->treestore)); gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(c->treeview),false); setup_renderers(c); GtkTreeSelection *select; select = gtk_tree_view_get_selection (GTK_TREE_VIEW (c->treeview)); gtk_tree_selection_set_mode (select, GTK_SELECTION_SINGLE); g_signal_connect (G_OBJECT (select), "changed", G_CALLBACK (selection_changed),c); gtk_container_add(GTK_CONTAINER(sw),c->treeview); gtk_widget_show(c->treeview); GtkWidget *hbox=gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(c),hbox,FALSE,FALSE,0); gtk_widget_show(hbox); populate_list(c); return(GTK_WIDGET(c)); } GType colorantselector_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo colorantselector_info = { sizeof (ColorantSelectorClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) colorantselector_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (ColorantSelector), 0, (GInstanceInitFunc) colorantselector_init, }; stpuic_type = g_type_register_static (GTK_TYPE_VBOX, "ColorantSelector", &colorantselector_info, GTypeFlags(0)); } return stpuic_type; } static void *parent_class=NULL; static void colorantselector_destroy(GtkObject *object) { if(object && IS_COLORANTSELECTOR(object)) { // ColorantSelector *es=COLORANTSELECTOR(object); // FIXME - should free the colorant names here... if (GTK_OBJECT_CLASS (parent_class)->destroy) (* GTK_OBJECT_CLASS (parent_class)->destroy) (object); } } static void colorantselector_class_init (ColorantSelectorClass *cls) { GtkObjectClass *object_class=(GtkObjectClass *)cls; parent_class = gtk_type_class (gtk_widget_get_type ()); object_class->destroy = colorantselector_destroy; colorantselector_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (cls), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (ColorantSelectorClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void colorantselector_init (ColorantSelector *c) { } // Rebuilds the listview from the ColorantList void colorantselector_refresh(ColorantSelector *c) { if(c) { // FIXME - should go through the list first, freeing // pixbufs and names? gtk_tree_store_clear(c->treestore); populate_list(c); } } void colorantselector_set_colorants(ColorantSelector *c,DeviceNColorantList *list) { gtk_tree_store_clear(c->treestore); c->list=list; populate_list(c); } photoprint-0.4.2-pre2/miscwidgets/pixbuf_from_imagedata.cpp0000644000175000017500000000055011326133742021056 00000000000000#include #include "pixbuf_from_imagedata.h" GdkPixbuf *PixbufFromImageData(const guint8 *data,size_t len) { GdkPixdata pd; GdkPixbuf *result; GError *err; if(!gdk_pixdata_deserialize(&pd,len,data,&err)) throw(err->message); if(!(result=gdk_pixbuf_from_pixdata(&pd,false,&err))) throw(err->message); return(result); } photoprint-0.4.2-pre2/miscwidgets/pixbuf_from_imagedata.h0000644000175000017500000000040111326133413020511 00000000000000#ifndef PIXBUFFROMIMAGEDATA_H #define PIXBUFFROMIMAGEDATA_H // Wrapper around Gdk functions to parse inline image data as created by // gdk-pixbuf-csource #include GdkPixbuf *PixbufFromImageData(const guint8 *data,size_t len); #endif photoprint-0.4.2-pre2/miscwidgets/refcountui.h0000644000175000017500000000406011354233251016367 00000000000000#ifndef REFCOUNTUI_H #define REFCOUNTUI_H #include #include "../support/refcount.h" #include "../support/thread.h" #include "../support/debug.h" // A UI-safe variant of the reference count class. // It differs from the regular RefCount class in two ways: // // 1. If the mutex is held by a subthread, instead of waiting, we spin the GTK event loop // which gives idle/timeout handlers a chance to run. This is important because the subthread // that holds the mutex may be waiting for an idle/timeout handler to complete before releasing. // // 2. If asked to unref the object from a thread other than the one that created it, a timeout handler // is invoked to do the actual unreferencing, thus ensuring that object deletion happens from // the main thread. // class RefCountUI : public RefCount { public: RefCountUI() : RefCount() { threadid=Thread::GetThreadID(); } virtual ~RefCountUI() { Debug[TRACE] << "In RefCountUI Destructor" << std::endl; } virtual void ObtainRefMutex() { Debug[TRACE] << "In UI variant of ObtainRefMutex" << std::endl; if(threadid==Thread::GetThreadID()) { if(!RefCount::refmutex.AttemptMutex()) { Debug[TRACE] << "Pumping gtk_main_iteration until we can obtain the mutex" << std::endl; while(!RefCount::refmutex.AttemptMutex()) { gtk_main_iteration_do(TRUE); } } } else RefCount::refmutex.ObtainMutex(); } virtual void UnRef() { if(threadid==Thread::GetThreadID()) { Debug[TRACE] << "RefCountUI: Unreferencing from same thread as creation - unreferencing directly..." << std::endl; RefCount::UnRef(); Debug[TRACE] << "RefCountUI: UnReferenced" << std::endl; } else { Debug[TRACE] << "RefCountUI: Unreferencing from a different thread - deferring..." << std::endl; g_timeout_add(1,unreffunc,this); } } protected: static gboolean unreffunc(gpointer ud) { RefCountUI *rc=(RefCountUI *)ud; Debug[TRACE] << "Performing deferred UnReference..." << std::endl; rc->RefCount::UnRef(); return(FALSE); } ThreadID threadid; }; #endif photoprint-0.4.2-pre2/miscwidgets/spinner7.cpp0000644000175000017500000000614311330153377016314 00000000000000/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ #ifdef __SUNPRO_C #pragma align 4 (spinner7_data) #endif #ifdef __GNUC__ static const guint8 spinner7_data[] __attribute__ ((__aligned__ (4))) = #else static const guint8 spinner7_data[] = #endif { "" /* Pixbuf magic (0x47646b50) */ "GdkP" /* length: header (24) + pixel_data (1091) */ "\0\0\4[" /* pixdata_type (0x2010002) */ "\2\1\0\2" /* rowstride (80) */ "\0\0\0P" /* width (20) */ "\0\0\0\24" /* height (20) */ "\0\0\0\24" /* pixel_data: */ "\210\0\0\0\0\1\0\0\0\5\202\0\0\0""7\1\0\0\0\5\213\0\0\0\0\1\0\0\0\2\204" "\0\0\0\0\1\0\0\0\5\202\0\0\0;\1\0\0\0\5\204\0\0\0\0\1\0\0\0\6\205\0\0" "\0\0\3\0\0\0\4\0\0\0\31\0\0\0\4\203\0\0\0\0\1\0\0\0\5\202\0\0\0<\1\0" "\0\0\5\203\0\0\0\0\3\0\0\0\14\0\0\0M\0\0\0\14\203\0\0\0\0\5\0\0\0\2\0" "\0\0\32\0\0\0\40\0\0\0\34\0\0\0\4\202\0\0\0\0\1\0\0\0\5\202\0\0\0;\1" "\0\0\0\5\202\0\0\0\0\5\0\0\0\14\0\0\0U\0\0\0_\0\0\0M\0\0\0\6\203\0\0" "\0\0\7\0\0\0\4\0\0\0\34\0\0\0\37\0\0\0\34\0\0\0\4\0\0\0\0\0\0\0\5\202" "\0\0\0;\7\0\0\0\5\0\0\0\0\0\0\0\14\0\0\0U\0\0\0`\0\0\0T\0\0\0\14\205" "\0\0\0\0\6\0\0\0\4\0\0\0\33\0\0\0\40\0\0\0\34\0\0\0\4\0\0\0\5\202\0\0" "\0;\6\0\0\0\5\0\0\0\14\0\0\0U\0\0\0_\0\0\0T\0\0\0\14\207\0\0\0\0\5\0" "\0\0\4\0\0\0\34\0\0\0\40\0\0\0\34\0\0\0\7\202\0\0\0""7\5\0\0\0\12\0\0" "\0S\0\0\0a\0\0\0U\0\0\0\14\211\0\0\0\0\4\0\0\0\4\0\0\0\33\0\0\0\34\0" "\0\0\2\202\0\0\0\4\4\0\0\0\7\0\0\0S\0\0\0U\0\0\0\14\205\0\0\0\0\1\0\0" "\0\21\205\0\0\0\22\2\0\0\0\23\0\0\0\3\204\0\0\0\0\3\0\0\0\7\0\0\0\17" "\0\0\0\12\204\0\0\0\11\2\0\0\0\10\0\0\0\334\205\0\0\0\355\2\0\0\0\334" "\0\0\0\21\204\0\0\0\0\2\0\0\0\10\0\0\0p\205\0\0\0x\2\0\0\0p\0\0\0\334" "\205\0\0\0\355\2\0\0\0\334\0\0\0\21\204\0\0\0\0\2\0\0\0\10\0\0\0p\205" "\0\0\0x\2\0\0\0p\0\0\0\21\204\0\0\0\22\4\0\0\0\23\0\0\0\37\0\0\0\20\0" "\0\0\1\202\0\0\0\0\4\0\0\0\1\0\0\0\13\0\0\0\23\0\0\0\12\204\0\0\0\11" "\1\0\0\0\10\204\0\0\0\0\5\0\0\0\1\0\0\0\34\0\0\0\302\0\0\0\301\0\0\0" "\20\202\0\0\0\15\5\0\0\0\13\0\0\0\212\0\0\0\214\0\0\0\24\0\0\0\1\207" "\0\0\0\0\6\0\0\0\1\0\0\0\34\0\0\0\304\0\0\0\336\0\0\0\302\0\0\0\33\202" "\0\0\0\245\6\0\0\0\27\0\0\0\213\0\0\0\237\0\0\0\214\0\0\0\24\0\0\0\1" "\205\0\0\0\0\7\0\0\0\1\0\0\0\34\0\0\0\304\0\0\0\337\0\0\0\304\0\0\0\34" "\0\0\0\17\202\0\0\0\262\7\0\0\0\17\0\0\0\24\0\0\0\214\0\0\0\237\0\0\0" "\214\0\0\0\24\0\0\0\1\203\0\0\0\0\10\0\0\0\1\0\0\0\34\0\0\0\304\0\0\0" "\336\0\0\0\304\0\0\0\34\0\0\0\1\0\0\0\16\202\0\0\0\262\10\0\0\0\16\0" "\0\0\1\0\0\0\24\0\0\0\215\0\0\0\237\0\0\0\214\0\0\0\24\0\0\0\1\202\0" "\0\0\0\10\0\0\0\16\0\0\0\265\0\0\0\335\0\0\0\304\0\0\0\34\0\0\0\1\0\0" "\0\0\0\0\0\16\202\0\0\0\262\10\0\0\0\16\0\0\0\0\0\0\0\1\0\0\0\24\0\0" "\0\214\0\0\0\236\0\0\0\201\0\0\0\11\202\0\0\0\0\5\0\0\0\1\0\0\0\34\0" "\0\0\265\0\0\0\34\0\0\0\1\202\0\0\0\0\1\0\0\0\16\202\0\0\0\262\1\0\0" "\0\16\202\0\0\0\0\5\0\0\0\1\0\0\0\24\0\0\0\201\0\0\0\24\0\0\0\1\203\0" "\0\0\0\3\0\0\0\1\0\0\0\16\0\0\0\1\203\0\0\0\0\1\0\0\0\16\202\0\0\0\262" "\1\0\0\0\16\203\0\0\0\0\3\0\0\0\1\0\0\0\12\0\0\0\1\212\0\0\0\0\1\0\0" "\0\15\202\0\0\0\245\1\0\0\0\15\210\0\0\0\0"}; photoprint-0.4.2-pre2/miscwidgets/coloranttoggle.cpp0000644000175000017500000002037511331077207017573 00000000000000/* * coloranttoggle.cpp * Provides a list of available colorants, * with a sample and a checkmark beside each one. * * Copyright (c) 2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include #include #include #include #include #include #include #include #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "imagesource/imagesource_gdkpixbuf.h" #include "imagesource/imagesource_greyscale.h" #include "imagesource/imagesource_solid.h" #include "imagesource/imagesource_mask.h" #include "imagesource/imagesource_devicen_preview.h" #include "imagesource/devicencolorant.h" #include "imagesource/pixbuf_from_imagesource.h" #include "miscwidgets/generaldialogs.h" #include "pixbuf_from_imagedata.h" #include "coloranttoggle.h" #include "debug.h" #include "gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) #include "dabdata.cpp" using namespace std; enum { CHANGED_SIGNAL, LAST_SIGNAL }; static guint coloranttoggle_signals[LAST_SIGNAL] = { 0 }; static void coloranttoggle_class_init (ColorantToggleClass *klass); static void coloranttoggle_init (ColorantToggle *sel); static bool style_applied=false; static void apply_style() { if(style_applied) return; gtk_rc_parse_string("style \"mystyle\"\n" "{\n" " GtkWidget::focus-padding = 0\n" " GtkWidget::focus-line-width = 0\n" " xthickness = 0\n" " ythickness = 0\n" "}\n" "widget \"*.colourtoggle-button\" style \"mystyle\"\n"); style_applied=true; } void ToggleData::toggled(GtkWidget *wid,gpointer user_data) { ToggleData *td=(ToggleData *)user_data; int state=gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(td->button)); if(state) td->col.Enable(); else td->col.Disable(); g_signal_emit(G_OBJECT(td->toggle),coloranttoggle_signals[CHANGED_SIGNAL], 0); } void ToggleData::paint(GtkWidget *widget,GdkEventExpose *eev,gpointer userdata) { ToggleData *td=(ToggleData *)userdata; int width = widget->allocation.width; int height = widget->allocation.height; cairo_t *cr = gdk_cairo_create (widget->window); if(!cr) return; // Yuk. gdk_draw_rectangle (widget->window, widget->style->bg_gc[widget->state],TRUE, 0,0,width,height); // draw ellipse cairo_new_path(cr); cairo_set_source_rgb(cr,td->col.red/255.0,td->col.green/255.0,td->col.blue/255.0); cairo_save (cr); cairo_translate (cr, width/2, height/2); cairo_rotate(cr,(3*M_PI)/4); cairo_scale (cr, width / 2., height / 2.5); cairo_arc (cr, 0., 0., 1., 0., 2 * M_PI); cairo_close_path(cr); cairo_fill(cr); cairo_restore (cr); if(td->level>=0) { char buf[10]; int l=(100 * td->level) / IS_SAMPLEMAX; sprintf(buf,"%d",l<100 ? l : 100); // We try to figure out whether black or white will contrast better with the blob... // Coefficients from http://www.brucelindbloom.com/index.html?Eqn_RGB_XYZ_Matrix.html double total=0.2126729*td->col.red + 0.7151522 * td->col.green + 0.0721750*td->col.blue; if(total<128) cairo_set_source_rgb(cr,1.0,1.0,1.0); else cairo_set_source_rgb(cr,0.0,0.0,0.0); cairo_select_font_face (cr, "Sans", CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_BOLD); cairo_set_font_size (cr, 12); cairo_text_extents_t extents; cairo_text_extents(cr,buf,&extents); // Is the graphic too narrow to hold the text? if((width-2)buttons.size()) { delete c->buttons[0]; c->buttons.pop_front(); } if (GTK_OBJECT_CLASS (parent_class)->destroy) (* GTK_OBJECT_CLASS (parent_class)->destroy) (object); } } static void coloranttoggle_class_init (ColorantToggleClass *cls) { GtkObjectClass *object_class=(GtkObjectClass *)cls; parent_class = gtk_type_class (gtk_widget_get_type ()); object_class->destroy = coloranttoggle_destroy; coloranttoggle_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (cls), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (ColorantToggleClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void coloranttoggle_init (ColorantToggle *c) { // Because the class is malloced, and no constructor is called, we need to // arrange for the deque to be constructed, via placement new. new (&c->buttons) std::deque; // Yeah, I know - yuk } void coloranttoggle_refresh(ColorantToggle *c) { if(c) { for(int i=0;ibuttons.size();++i) { c->buttons[i]->refresh(); } } } void coloranttoggle_set_colorants(ColorantToggle *c,DeviceNColorantList *list) { apply_style(); // Free toggle buttons here, and create a new set... while(c->buttons.size()) { cerr << "Have " << c->buttons.size() << " entries in button list..." << endl; delete c->buttons[0]; c->buttons.pop_front(); } if(c && list) { // GdkPixbuf *icon=PixbufFromImageData(dab_data,sizeof(dab_data)); DeviceNColorant *col=list->FirstColorant(); int i=0; while(col) { if(col->GetName()) { // Colorize the icon here #if 0 ImageSource *mask=new ImageSource_GdkPixbuf(icon); mask=new ImageSource_Greyscale(mask); DeviceNColorant *col=(*list)[i]; ISDataType solid[3]; solid[0]=EIGHTTOIS(col->red); solid[1]=EIGHTTOIS(col->green); solid[2]=EIGHTTOIS(col->blue); ImageSource *is=new ImageSource_Solid(IS_TYPE_RGB,mask->width,mask->height,solid); is=new ImageSource_Mask(is,mask); GdkPixbuf *colicon=pixbuf_alpha_from_imagesource(is); #endif // We now have a pixbuf with alpha channel #if 0 GtkWidget *img=gtk_image_new_from_pixbuf(colicon); GtkWidget *togglebutton=gtk_toggle_button_new(); gtk_button_set_image(GTK_BUTTON(togglebutton),img); gtk_box_pack_start(GTK_BOX(c),togglebutton,FALSE,FALSE,0); gtk_widget_show(togglebutton); gtk_widget_show(img); #endif // GtkWidget *img=gtk_image_new_from_pixbuf(colicon); // GtkWidget *togglebutton=gtk_check_button_new(); // gtk_button_set_image(GTK_BUTTON(togglebutton),img); // gtk_box_pack_start(GTK_BOX(c),togglebutton,FALSE,FALSE,0); // gtk_box_pack_start(GTK_BOX(c),img,FALSE,FALSE,0); // gtk_widget_show(togglebutton); // gtk_widget_show(img); // delete is; // Now create a list entry for the colorant... ToggleData *td=new ToggleData(c,*col); td->refresh(); c->buttons.push_back(td); // g_signal_connect(G_OBJECT(togglebutton),"toggled",G_CALLBACK(ToggleData::toggled),td); } ++i; col=col->NextColorant(); } // g_object_unref(icon); } } void coloranttoggle_set_value(ColorantToggle *c,ISDeviceNValue &value) { for(int i=0;ibuttons.size();++i) { c->buttons[i]->redraw(value[i]); } } photoprint-0.4.2-pre2/miscwidgets/errordialogqueue.cpp0000644000175000017500000000253711362276615020136 00000000000000#include #include "errordialogqueue.h" #include "generaldialogs.h" ErrorMessageQueue::ErrorMessageQueue() : PTMutex() { } ErrorMessageQueue::~ErrorMessageQueue() { } void ErrorMessageQueue::AddMessage(const char *message) { std::cerr << "***Queuing error message: " << message << std::endl; ObtainMutex(); messages.push_back(message); ReleaseMutex(); } std::string ErrorMessageQueue::GetMessages() // Returns a string with all currently queued messages concatenated, newline separated { std::string result; ObtainMutex(); while(messages.size()) { result+=messages[0]; messages.pop_front(); if(messages.size()) result+=std::string("\n"); } ReleaseMutex(); return(result); } ErrorDialogQueue::ErrorDialogQueue(GtkWidget *parent) : ErrorMessageQueue(), parent(parent) { } ErrorDialogQueue::~ErrorDialogQueue() { } void ErrorDialogQueue::SetParent(GtkWidget *newparent) { parent=newparent; } void ErrorDialogQueue::AddMessage(const char *message) { ErrorMessageQueue::AddMessage(message); g_timeout_add(1,displaymessages,this); } gboolean ErrorDialogQueue::displaymessages(gpointer ud) { ErrorDialogQueue *q=(ErrorDialogQueue *)ud; q->ObtainMutex(); if(q->messages.size()) { std::string m=q->GetMessages(); ErrorMessage_Dialog(m.c_str(),q->parent); } q->ReleaseMutex(); return(FALSE); } ErrorDialogQueue ErrorDialogs; photoprint-0.4.2-pre2/miscwidgets/Makefile.in0000644000175000017500000004276311400237522016111 00000000000000# Makefile.in generated by automake 1.10.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 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@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@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 = miscwidgets DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/scripts/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libmiscwidgets_la_LIBADD = am_libmiscwidgets_la_OBJECTS = generaldialogs.lo errordialogqueue.lo \ simplecombo.lo colorantselector.lo coloranttoggle.lo \ pixbufview.lo progressbar.lo uitab.lo spinner.lo patheditor.lo \ imageselector.lo pixbuf_from_imagedata.lo libmiscwidgets_la_OBJECTS = $(am_libmiscwidgets_la_OBJECTS) libmiscwidgets_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(libmiscwidgets_la_LDFLAGS) $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/scripts/depcomp am__depfiles_maybe = depfiles CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) CXXLD = $(CXX) CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ SOURCES = $(libmiscwidgets_la_SOURCES) DIST_SOURCES = $(libmiscwidgets_la_SOURCES) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DSYMUTIL = @DSYMUTIL@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ GDKPIXBUF2_CFLAGS = @GDKPIXBUF2_CFLAGS@ GDKPIXBUF2_LIBS = @GDKPIXBUF2_LIBS@ GETOPT_LIBS = @GETOPT_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIB2_CFLAGS = @GLIB2_CFLAGS@ GLIB2_LIBS = @GLIB2_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GP_CFLAGS = @GP_CFLAGS@ GP_LIBS = @GP_LIBS@ GREP = @GREP@ GTHREAD_CFLAGS = @GTHREAD_CFLAGS@ GTHREAD_LIBS = @GTHREAD_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ JPEG_LIBS = @JPEG_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ LCMS_LIBS = @LCMS_LIBS@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBM_LIBS = @LIBM_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NMEDIT = @NMEDIT@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ POSUB = @POSUB@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ TIFF_LIBS = @TIFF_LIBS@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ 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@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ 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@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CXXFLAGS = -Wall -I../imagesource/ -I../pixbufthumbnail -I../profilemanager -I../support $(LCMS_CFLAGS) $(GTK2_CFLAGS) ${PNM_CFLAGS} noinst_LTLIBRARIES = libmiscwidgets.la libmiscwidgets_la_SOURCES = \ generaldialogs.cpp \ generaldialogs.h \ errordialogqueue.cpp \ errordialogqueue.h \ simplecombo.cpp \ simplecombo.h \ \ colorantselector.cpp \ colorantselector.h \ coloranttoggle.cpp \ coloranttoggle.h \ \ pixbufview.cpp \ pixbufview.h \ \ progressbar.cpp \ progressbar.h \ \ uitab.cpp \ uitab.h \ \ spinner.cpp \ spinner.h \ progressspinner.h \ patheditor.cpp \ patheditor.h \ imageselector.cpp \ imageselector.h \ imageselector_noborder_image.h \ \ pixbuf_from_imagedata.cpp \ pixbuf_from_imagedata.h \ \ refcountui.h BUILT_SOURCES = squiggledata.cpp dabdata.cpp spinner1.cpp spinner2.cpp spinner3.cpp \ spinner4.cpp spinner5.cpp spinner6.cpp spinner7.cpp spinner8.cpp libmiscwidgets_la_LDFLAGS = -static EXTRA_DIST = squiggledata.cpp dabdata.cpp spinner1.cpp spinner2.cpp spinner3.cpp \ spinner4.cpp spinner5.cpp spinner6.cpp spinner7.cpp spinner8.cpp all: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) all-am .SUFFIXES: .SUFFIXES: .cpp .lo .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 \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign miscwidgets/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign miscwidgets/Makefile .PRECIOUS: 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 clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libmiscwidgets.la: $(libmiscwidgets_la_OBJECTS) $(libmiscwidgets_la_DEPENDENCIES) $(libmiscwidgets_la_LINK) $(libmiscwidgets_la_OBJECTS) $(libmiscwidgets_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/colorantselector.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/coloranttoggle.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/errordialogqueue.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/generaldialogs.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/imageselector.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/patheditor.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pixbuf_from_imagedata.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pixbufview.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/progressbar.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/simplecombo.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/spinner.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/uitab.Plo@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here 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 $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$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 $(LTLIBRARIES) 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: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) 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) clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-dvi: install-dvi-am 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 installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ 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 mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am squiggledata.cpp: gdk-pixbuf-csource --name=squiggle_data >squiggledata.cpp squiggle.tif dabdata.cpp: gdk-pixbuf-csource --name=dab_data >dabdata.cpp dab.tif spinner1.cpp: gdk-pixbuf-csource --name=spinner1_data >spinner1.cpp spinner1.png spinner2.cpp: gdk-pixbuf-csource --name=spinner2_data >spinner2.cpp spinner2.png spinner3.cpp: gdk-pixbuf-csource --name=spinner3_data >spinner3.cpp spinner3.png spinner4.cpp: gdk-pixbuf-csource --name=spinner4_data >spinner4.cpp spinner4.png spinner5.cpp: gdk-pixbuf-csource --name=spinner5_data >spinner5.cpp spinner5.png spinner6.cpp: gdk-pixbuf-csource --name=spinner6_data >spinner6.cpp spinner6.png spinner7.cpp: gdk-pixbuf-csource --name=spinner7_data >spinner7.cpp spinner7.png spinner8.cpp: gdk-pixbuf-csource --name=spinner8_data >spinner8.cpp spinner8.png # 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: photoprint-0.4.2-pre2/miscwidgets/progressbar.h0000644000175000017500000000161611362275201016541 00000000000000#ifndef PP_PROGRESS_H #define PP_PROGRESS_H #include "progress.h" #include "thread.h" #include "refcountui.h" #include class ProgressBar : public Progress { public: ProgressBar(const char *message,bool cancelbutton,GtkWidget *parent=NULL,bool modal=false); ~ProgressBar(); bool DoProgress(int i,int maxi); void SetMessage(const char *msg); void ErrorMessage(const char *msg); static void cancel_callback(GtkWidget *wid,gpointer *ob); static gboolean update(gpointer ud); private: char *message; GtkWidget *window; GtkWidget *progressbar; GtkWidget *label; bool cancelled; int current,max; ThreadID threadid; }; class ProgressBar_RefCount : public ProgressBar, public RefCountUI { public: ProgressBar_RefCount(const char *message,bool cancelbutton,GtkWidget *parent=NULL,bool modal=false) : ProgressBar(message,cancelbutton,parent,modal), RefCountUI() { } }; #endif photoprint-0.4.2-pre2/miscwidgets/progressspinner.h0000644000175000017500000000057111326601523017452 00000000000000#ifndef PP_PROGRESSSPIN_H #define PP_PROGRESSSPIN_H #include "progress.h" #include "spinner.h" class ProgressSpinner : public Progress, public Spinner { public: ProgressSpinner() : Progress(), Spinner(), frame(0) { } virtual ~ProgressSpinner() { } bool DoProgress(int i,int maxi) { ++frame; SetFrame(frame); return(true); } protected: int frame; }; #endif photoprint-0.4.2-pre2/miscwidgets/simplecombo.cpp0000644000175000017500000001654311336642036017066 00000000000000/* * simplecombo.c - provides a custom widget for choosing * one of a static list of options, where the internal * and displayed names are different. * * Copyright (c) 2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include #include #include #include #include "simplecombo.h" #include "config.h" #include "gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) using namespace std; enum { CHANGED_SIGNAL, LAST_SIGNAL }; static guint simplecombo_signals[LAST_SIGNAL] = { 0 }; static void simplecombo_class_init (SimpleComboClass *klass); static void simplecombo_init (SimpleCombo *stpuicombo); static void simplecombo_destroy(GtkObject *object); static void simplecombo_entry_changed(GtkEntry *entry,gpointer user_data) { SimpleCombo *c=SIMPLECOMBO(user_data); int index=gtk_option_menu_get_history(GTK_OPTION_MENU(c->optionmenu)); SimpleComboOption *o=(*c->opts)[index]; if(index==c->previdx) { if(!(o && o->repeat)) return; } c->previdx=index; if(o && o->tooltip && (strlen(o->tooltip)>0)) { gtk_tooltips_set_tip(c->tips,c->optionmenu,o->tooltip,o->tooltip); gtk_tooltips_enable(c->tips); } else { // gtk_tooltips_set_tip(c->tips,c->optionmenu,"",""); gtk_tooltips_disable(c->tips); } g_signal_emit(G_OBJECT (c),simplecombo_signals[CHANGED_SIGNAL], 0); } void simplecombo_set_opts(SimpleCombo *c,SimpleComboOptions &opts) { string oldkey; int oldidx=-1; if(c->optionmenu) { oldidx=simplecombo_get_index(c); oldkey=opts[oldidx]->key; gtk_widget_destroy(c->optionmenu); } c->optionmenu=c->menu=NULL; if(c->opts) delete c->opts; c->opts=new SimpleComboOptions(opts); c->optionmenu=gtk_option_menu_new(); c->menu=gtk_menu_new(); SimpleComboOption *o=c->opts->FirstOption(); while(o) { GtkWidget *menu_item = gtk_menu_item_new_with_label (o->displayname); gtk_menu_shell_append (GTK_MENU_SHELL (c->menu), menu_item); gtk_widget_show (menu_item); o=o->NextOption(); } gtk_option_menu_set_menu(GTK_OPTION_MENU(c->optionmenu),c->menu); gtk_box_pack_start(GTK_BOX(c),GTK_WIDGET(c->optionmenu),TRUE,TRUE,0); gtk_widget_show(c->optionmenu); if(oldkey.size()) simplecombo_set(c,oldkey.c_str()); else if(oldidx>=0) simplecombo_set_index(c,oldidx); g_signal_connect(c->optionmenu,"changed",G_CALLBACK(simplecombo_entry_changed),c); } GtkWidget *simplecombo_new (SimpleComboOptions &opts) { SimpleCombo *c=SIMPLECOMBO(g_object_new (simplecombo_get_type (), NULL)); c->tips=gtk_tooltips_new(); simplecombo_set_opts(c,opts); return(GTK_WIDGET(c)); } GType simplecombo_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo simplecombo_info = { sizeof (SimpleComboClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) simplecombo_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (SimpleCombo), 0, (GInstanceInitFunc) simplecombo_init, }; stpuic_type = g_type_register_static (GTK_TYPE_HBOX, "SimpleCombo", &simplecombo_info, GTypeFlags(0)); } return stpuic_type; } static void simplecombo_class_init (SimpleComboClass *cl) { GtkObjectClass *object_class; GtkWidgetClass *widget_class; object_class = (GtkObjectClass*) cl; widget_class = (GtkWidgetClass*) cl; object_class->destroy = simplecombo_destroy; simplecombo_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (cl), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (SimpleComboClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void *parent_class=NULL; static void simplecombo_destroy(GtkObject *object) { if(object && IS_SIMPLECOMBO(object)) { if (GTK_OBJECT_CLASS (parent_class)->destroy) (* GTK_OBJECT_CLASS (parent_class)->destroy) (object); // FIXME - cleanup? Memory leak here? SimpleCombo *c=SIMPLECOMBO(object); if(c->opts) delete c->opts; c->opts=NULL; } } static void simplecombo_init (SimpleCombo *c) { parent_class = gtk_type_class (gtk_widget_get_type ()); c->optionmenu=NULL; c->menu=NULL; c->previdx=-1; } const char *simplecombo_get(SimpleCombo *c) { gint index=gtk_option_menu_get_history(GTK_OPTION_MENU(c->optionmenu)); SimpleComboOption *o=(*c->opts)[index]; if(o) return(o->key); else return(NULL); } int simplecombo_get_index(SimpleCombo *c) { return(gtk_option_menu_get_history(GTK_OPTION_MENU(c->optionmenu))); } bool simplecombo_set(SimpleCombo *c,const char *key) { int i=0; if(key) { SimpleComboOption *o=c->opts->FirstOption(); while(o) { if(strcmp(key,o->key)==0) { gtk_option_menu_set_history(GTK_OPTION_MENU(c->optionmenu),i); return(true); } ++i; o=o->NextOption(); } } return(false); } void simplecombo_set_index(SimpleCombo *c,int index) { gtk_option_menu_set_history(GTK_OPTION_MENU(c->optionmenu),index); } // Class definitions for SimpleComboOpt(s) SimpleComboOption::SimpleComboOption(SimpleComboOptions &header,const char *key,const char *displayname,const char *tooltip, bool repeat) : key(NULL),displayname(NULL),tooltip(NULL),repeat(repeat),header(header),prevopt(NULL),nextopt(NULL) { if((prevopt=header.firstopt)) { while(prevopt->nextopt) prevopt=prevopt->nextopt; prevopt->nextopt=this; } else header.firstopt=this; this->key=strdup(key); this->displayname=strdup(displayname); if(tooltip) this->tooltip=strdup(tooltip); } SimpleComboOption::SimpleComboOption(SimpleComboOptions &header,SimpleComboOption &other) : key(NULL),displayname(NULL),tooltip(NULL),repeat(other.repeat),header(header),prevopt(NULL),nextopt(NULL) { if((prevopt=header.firstopt)) { while(prevopt->nextopt) prevopt=prevopt->nextopt; prevopt->nextopt=this; } else header.firstopt=this; key=strdup(other.key); displayname=strdup(other.displayname); if(other.tooltip) tooltip=strdup(other.tooltip); } SimpleComboOption::~SimpleComboOption() { if(prevopt) prevopt->nextopt=nextopt; else header.firstopt=nextopt; if(nextopt) nextopt->prevopt=prevopt; if(tooltip) free(tooltip); if(displayname) free(displayname); if(key) free(key); } SimpleComboOption *SimpleComboOption::NextOption() { return(nextopt); } SimpleComboOption *SimpleComboOption::PrevOption() { return(prevopt); } SimpleComboOptions::SimpleComboOptions() : firstopt(NULL) { } SimpleComboOptions::SimpleComboOptions(SimpleComboOptions &other) : firstopt(NULL) { SimpleComboOption *opt=other.FirstOption(); while(opt) { new SimpleComboOption(*this,*opt); opt=opt->NextOption(); } } SimpleComboOptions::~SimpleComboOptions() { Clear(); } SimpleComboOption *SimpleComboOptions::Add(const char *key,const char *displayname,const char *tooltip,bool repeat) { return(new SimpleComboOption(*this,key,displayname,tooltip,repeat)); } void SimpleComboOptions::Clear() { while(firstopt) delete firstopt; } SimpleComboOption *SimpleComboOptions::FirstOption() { return(firstopt); } SimpleComboOption *SimpleComboOptions::operator[](int idx) { SimpleComboOption *opt=FirstOption(); while(opt) { if(idx==0) return(opt); opt=opt->NextOption(); --idx; } if(!opt) throw "SimpleComboOptions::[] Index out of range"; return(opt); } photoprint-0.4.2-pre2/miscwidgets/patheditor.h0000644000175000017500000000265511130232130016342 00000000000000#ifndef __PATHEDITOR_H__ #define __PATHEDITOR_H__ #include #include #include #include #include #include #include #include #include #include #include "searchpath.h" G_BEGIN_DECLS #define PATHEDITOR_TYPE (patheditor_get_type()) #define PATHEDITOR(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PATHEDITOR_TYPE, PathEditor)) #define PATHEDITOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PATHEDITOR_TYPE, PathEditorClass)) #define IS_PATHEDITOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PATHEDITOR_TYPE)) #define IS_PATHEDITOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PATHEDITOR_TYPE)) typedef struct _PathEditor PathEditor; typedef struct _PathEditorClass PathEditorClass; struct _PathEditor { GtkVBox box; GtkWidget *list; GtkWidget *entry; GtkListStore *liststore; GtkWidget *treeview; GList *pathlist; SearchPathHandler *searchpathhandler; }; struct _PathEditorClass { GtkVBoxClass parent_class; void (*changed)(PathEditor *combo); }; GType patheditor_get_type (void); GtkWidget* patheditor_new (SearchPathHandler *pm); void patheditor_get_paths(PathEditor *p,SearchPathHandler *sp); void patheditor_set_paths(PathEditor *p,SearchPathHandler *sp); gboolean patheditor_refresh(PathEditor *c); G_END_DECLS #endif /* __PATHEDITOR_H__ */ photoprint-0.4.2-pre2/miscwidgets/generaldialogs.cpp0000644000175000017500000001251111266350101017513 00000000000000/* * generaldialogs.cpp - routines to handle general-purpose dialogs - namely: * Error message dialog * File dialog (returns a char *filename to be freed by the app) * * Copyright (c) 2004-2006 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include "egg-pixbuf-thumbnail.h" #include "generaldialogs.h" #include "searchpath.h" using namespace std; // Error message handling void ErrorMessage_Dialog(const char *message,GtkWidget *parent) { GtkWidget *dialog = gtk_message_dialog_new (GTK_WINDOW(parent),GtkDialogFlags(0), GTK_MESSAGE_ERROR,GTK_BUTTONS_CLOSE, "%s",message); gtk_dialog_run (GTK_DIALOG (dialog)); gtk_widget_destroy (dialog); } bool Query_Dialog(const char *message,GtkWidget *parent) { GtkWidget *dialog = gtk_message_dialog_new (GTK_WINDOW(parent),GtkDialogFlags(0), GTK_MESSAGE_QUESTION,GTK_BUTTONS_YES_NO, "%s",message); int response=gtk_dialog_run (GTK_DIALOG (dialog)); gtk_widget_destroy (dialog); return(response==GTK_RESPONSE_YES); } // File dialog static void updatepreview(GtkWidget *fc,void *ud) { GtkWidget *preview=GTK_WIDGET(ud); gchar *fn=gtk_file_chooser_get_preview_filename(GTK_FILE_CHOOSER(fc)); bool active=false; if(fn) { GError *err=NULL; GdkPixbuf *pb=egg_pixbuf_get_thumbnail_for_file(fn,EGG_PIXBUF_THUMBNAIL_NORMAL,&err); if(pb) { gtk_image_set_from_pixbuf(GTK_IMAGE(preview),pb); g_object_unref(pb); active=true; } } gtk_file_chooser_set_preview_widget_active(GTK_FILE_CHOOSER(fc),active); } char *File_Dialog(const char *title,const char *oldfilename,GtkWidget *parent,bool preview) { #if 0 char *newfile=NULL; GtkWidget *sel=gtk_file_selection_new(title); if(oldfilename) gtk_file_selection_set_filename(GTK_FILE_SELECTION(sel),oldfilename); gint result=gtk_dialog_run(GTK_DIALOG(sel)); if(result==GTK_RESPONSE_OK) newfile=g_strdup(gtk_file_selection_get_filename(GTK_FILE_SELECTION(sel))); gtk_widget_destroy(GTK_WIDGET(sel)); return(newfile); #else char *newfile=NULL; GtkWidget *dialog; dialog = gtk_file_chooser_dialog_new (title, GTK_WINDOW(parent), GTK_FILE_CHOOSER_ACTION_OPEN, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT, NULL); if(oldfilename) { // gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dialog),g_path_get_dirname(oldfilename)); gtk_file_chooser_select_filename(GTK_FILE_CHOOSER(dialog),oldfilename); } if(preview) { GtkWidget *preview=gtk_image_new(); gtk_file_chooser_set_preview_widget(GTK_FILE_CHOOSER(dialog),GTK_WIDGET(preview)); g_signal_connect(G_OBJECT(dialog),"selection-changed",G_CALLBACK(updatepreview),preview); } if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT) newfile = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog)); gtk_widget_destroy (dialog); return(newfile); #endif } char *File_Save_Dialog(const char *title,const char *oldfilename,GtkWidget *parent) { #if 0 char *newfile=NULL; GtkWidget *sel=gtk_file_selection_new(title); if(oldfilename) gtk_file_selection_set_filename(GTK_FILE_SELECTION(sel),oldfilename); gint result=gtk_dialog_run(GTK_DIALOG(sel)); if(result==GTK_RESPONSE_OK) newfile=g_strdup(gtk_file_selection_get_filename(GTK_FILE_SELECTION(sel))); gtk_widget_destroy(GTK_WIDGET(sel)); return(newfile); #else char *newfile=NULL; GtkWidget *dialog; dialog = gtk_file_chooser_dialog_new (title, GTK_WINDOW(parent), GTK_FILE_CHOOSER_ACTION_SAVE, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT, NULL); if(oldfilename) cerr << "Setting old filename to: " << oldfilename << endl; if(oldfilename) { gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dialog),g_path_get_dirname(oldfilename)); gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(dialog),g_path_get_basename(oldfilename)); } if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT) { newfile = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog)); cerr << "Checking if file " << newfile << " already exists?" << endl; struct stat statbuf; if(stat(newfile,&statbuf)==0) { cerr << "Yes - asking for confirmation before overwriting..." << endl; GtkWidget *confirm = gtk_message_dialog_new (GTK_WINDOW(parent),GtkDialogFlags(0), GTK_MESSAGE_WARNING,GTK_BUTTONS_OK_CANCEL, "File exists - OK to overwrite?"); gint response=gtk_dialog_run (GTK_DIALOG (confirm)); cerr << "Response: " << response << endl; if(response!=GTK_RESPONSE_OK) { g_free(newfile); newfile=NULL; } gtk_widget_destroy (confirm); } } gtk_widget_destroy (dialog); return(newfile); #endif } char *Directory_Dialog(const char *title,const char *oldfilename,GtkWidget *parent) { char *dirname=NULL; GtkWidget *dialog; dialog = gtk_file_chooser_dialog_new (title, GTK_WINDOW(parent), GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT, NULL); if(oldfilename) { gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dialog),g_path_get_dirname(oldfilename)); } if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT) dirname = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog)); gtk_widget_destroy (dialog); return(dirname); } photoprint-0.4.2-pre2/miscwidgets/colorantselector.h0000644000175000017500000000275511234432352017577 00000000000000#ifndef __COLORANTSELECTOR_H__ #define __COLORANTSELECTOR_H__ #include #include #include #include #include #include #include #include #include #include #include "imagesource/devicencolorant.h" #define COLORANTSELECTOR_TYPE (colorantselector_get_type()) #define COLORANTSELECTOR(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), COLORANTSELECTOR_TYPE, ColorantSelector)) #define COLORANTSELECTOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), COLORANTSELECTOR_TYPE, ColorantSelectorClass)) #define IS_COLORANTSELECTOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), COLORANTSELECTOR_TYPE)) #define IS_COLORANTSELECTOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), COLORANTSELECTOR_TYPE)) typedef struct _ColorantSelector ColorantSelector; typedef struct _ColorantSelectorClass ColorantSelectorClass; struct _ColorantSelector { GtkVBox box; GtkTreeStore *treestore; GtkWidget *treeview; DeviceNColorantList *list; GtkWidgetClass *parent_class; }; struct _ColorantSelectorClass { GtkVBoxClass parent_class; void (*changed)(ColorantSelector *es); }; GType colorantselector_get_type (void); GtkWidget* colorantselector_new(DeviceNColorantList *list); void colorantselector_refresh(ColorantSelector *c); void colorantselector_set_colorants(ColorantSelector *c,DeviceNColorantList *list); #endif /* __COLORANTSELECTOR_H__ */ photoprint-0.4.2-pre2/miscwidgets/spinner.h0000644000175000017500000000041211326600504015655 00000000000000#ifndef SPINNER_H #define SPINNER_H #include #include class Spinner { public: Spinner(); virtual ~Spinner(); void SetFrame(int f); GtkWidget *GetWidget(); protected: GdkPixbuf *frames[8]; GtkWidget *spinner; }; #endif photoprint-0.4.2-pre2/miscwidgets/uitab.cpp0000644000175000017500000000520411326564430015651 00000000000000#include #include #include "uitab.h" #include "../support/debug.h" #include "config.h" #include "gettext.h" #define _(x) gettext(x) using namespace std; bool UITab::style_applied=false; void UITab::apply_style() { if(style_applied) return; gtk_rc_parse_string("style \"mystyle\"\n" "{\n" " GtkWidget::focus-padding = 0\n" " GtkWidget::focus-line-width = 0\n" " xthickness = 0\n" " ythickness = 0\n" "}\n" "widget \"*.tab-close-button\" style \"mystyle\"\n"); style_applied=true; } UITab::UITab(GtkWidget *notebook,const char *tabname) : RefCountUI(), notebook(notebook) { apply_style(); labelbox=gtk_hbox_new(FALSE,0); label=gtk_label_new(tabname); gtk_box_pack_start(GTK_BOX(labelbox),label,TRUE,TRUE,0); GtkWidget *closeimg=gtk_image_new_from_stock(GTK_STOCK_CLOSE,GTK_ICON_SIZE_MENU); GtkWidget *tmp=gtk_button_new(); gtk_button_set_image(GTK_BUTTON(tmp),closeimg); g_signal_connect(G_OBJECT(tmp),"clicked",G_CALLBACK(deleteclicked),this); AddTabButton(tmp); gtk_widget_show_all(labelbox); hbox=gtk_hbox_new(FALSE,0); gtk_widget_show(GTK_WIDGET(hbox)); gtk_notebook_append_page(GTK_NOTEBOOK(notebook),GTK_WIDGET(hbox),labelbox); gtk_notebook_set_current_page(GTK_NOTEBOOK(notebook),-1); gtk_notebook_set_tab_label_packing(GTK_NOTEBOOK(notebook),hbox, TRUE, TRUE,GTK_PACK_START); } UITab::~UITab() { int page=gtk_notebook_page_num(GTK_NOTEBOOK(notebook),hbox); gtk_notebook_remove_page(GTK_NOTEBOOK(notebook),page); } GtkWidget *UITab::GetBox() { return(hbox); } void UITab::AddTabButton(GtkWidget *button) { AddTabWidget(button); gtk_widget_set_name(button,"tab-close-button"); gtk_button_set_relief(GTK_BUTTON(button),GTK_RELIEF_NONE); g_signal_connect(G_OBJECT(button),"style-set",G_CALLBACK(setclosebuttonsize),this); gtk_widget_show(button); } void UITab::AddTabWidget(GtkWidget *widget) { gtk_box_pack_start(GTK_BOX(labelbox),widget,FALSE,FALSE,4); gtk_box_reorder_child(GTK_BOX(labelbox),widget,1); } void UITab::SetTabText(const char *text) { gtk_label_set_text(GTK_LABEL(label),text); } void UITab::deleteclicked(GtkWidget *wid,gpointer userdata) { UITab *ui=(UITab *)userdata; // Disable the close button here in case it gets clicked again while we're // waiting for thread termination. gtk_widget_set_sensitive(wid,FALSE); Debug[TRACE] << "Unreferencing tab" << endl; ui->UnRef(); } void UITab::setclosebuttonsize(GtkWidget *wid,GtkStyle *style,gpointer userdata) { GtkSettings *settings=gtk_widget_get_settings(wid); int x,y; gtk_icon_size_lookup_for_settings(settings,GTK_ICON_SIZE_MENU,&x,&y); gtk_widget_set_size_request(wid,x+2,y+2); } photoprint-0.4.2-pre2/miscwidgets/simplecombo.h0000644000175000017500000000517311336636360016533 00000000000000#ifndef __SIMPLECOMBO_H__ #define __SIMPLECOMBO_H__ #include #include #include #include #include G_BEGIN_DECLS #define SIMPLECOMBO_TYPE (simplecombo_get_type()) #define SIMPLECOMBO(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), SIMPLECOMBO_TYPE, SimpleCombo)) #define SIMPLECOMBO_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SIMPLECOMBO_TYPE, SimpleComboClass)) #define IS_SIMPLECOMBO(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SIMPLECOMBO_TYPE)) #define IS_SIMPLECOMBO_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SIMPLECOMBO_TYPE)) typedef struct _SimpleCombo SimpleCombo; typedef struct _SimpleComboClass SimpleComboClass; // Define your options like so: // SimpleComboOptions opts; // opts.Add("Key1 ",_("Displayed text 1"),_("Optional tooltip")); // opts.Add("Key2 ",_("Displayed text 2"),_("Optional tooltip")); // opts.Add("Other",_("Other..."),_("Optional tooltip"),true); // Allow "other" to be triggered even if it's already selected... // // The options list will be copied, so can be safely constructed in local storage. class SimpleComboOption; class SimpleComboOptions { public: SimpleComboOptions(); SimpleComboOptions(SimpleComboOptions &other); ~SimpleComboOptions(); SimpleComboOption *Add(const char *key,const char *displayname,const char *tooltip=NULL,bool repeat=false); void Clear(); SimpleComboOption *FirstOption(); SimpleComboOption *operator[](int idx); protected: SimpleComboOption *firstopt; friend class SimpleComboOption; }; class SimpleComboOption { public: SimpleComboOption(SimpleComboOptions &header,const char *key,const char *displayname,const char *tooltip=NULL,bool repeat=false); SimpleComboOption(SimpleComboOptions &header,SimpleComboOption &other); ~SimpleComboOption(); SimpleComboOption *NextOption(); SimpleComboOption *PrevOption(); char *key; char *displayname; char *tooltip; bool repeat; protected: SimpleComboOptions &header; SimpleComboOption *prevopt,*nextopt; }; struct _SimpleCombo { GtkHBox box; GtkWidget *optionmenu; GtkWidget *menu; GtkTooltips *tips; SimpleComboOptions *opts; int previdx; }; struct _SimpleComboClass { GtkHBoxClass parent_class; void (*changed)(SimpleCombo *combo); }; GType simplecombo_get_type (void); GtkWidget* simplecombo_new(SimpleComboOptions &opts); const char *simplecombo_get(SimpleCombo *c); bool simplecombo_set(SimpleCombo *c,const char *key); int simplecombo_get_index(SimpleCombo *c); void simplecombo_set_index(SimpleCombo *c,int index); void simplecombo_set_opts(SimpleCombo *c,SimpleComboOptions &opts); G_END_DECLS #endif /* __SIMPLECOMBO_H__ */ photoprint-0.4.2-pre2/miscwidgets/errordialogqueue.h0000644000175000017500000000276211317521030017563 00000000000000#ifndef ERRORDIALOGQUEUE_H #define ERRORDIALOGQUEUE_H // ErrorDialogQueue provides a thread-safe method of presenting a simple error message dialog to the user. // Because on Win32 all GTK+ calls are supposed to happen from the main thread, the global ErrorDialogs object // queues up error messages, and also queues a GTK timeout handler, which when triggers displays all queued messages // in a single dialog. // Use like this: // #include "errordialogqueue.h" // ... // ErrorDialogs.SetParent(window); // optional // ErrorDialogs.AddMessage("My error messages..."); // // The message will be displayed the next time the main thread enters the gtk_main loop. // // FIXME - add mutex protection for multi-threaded use. #include #include #include #include "support/ptmutex.h" using namespace std; class ErrorMessageQueue : public PTMutex { public: ErrorMessageQueue(); virtual ~ErrorMessageQueue(); virtual void AddMessage(const char *message); virtual std::string GetMessages(); // Returns a string with all currently queued messages concatenated, newline separated protected: std::deque messages; }; class ErrorDialogQueue : public ErrorMessageQueue { public: ErrorDialogQueue(GtkWidget *parent=NULL); virtual ~ErrorDialogQueue(); virtual void SetParent(GtkWidget *newparent); virtual void AddMessage(const char *message); protected: static gboolean displaymessages(gpointer ud); GtkWidget *parent; }; extern ErrorDialogQueue ErrorDialogs; #endif photoprint-0.4.2-pre2/miscwidgets/pixbufview.h0000644000175000017500000000366511371614343016412 00000000000000#ifndef __PIXBUFVIEW_H__ #define __PIXBUFVIEW_H__ #include #include #include G_BEGIN_DECLS #define PIXBUFVIEW(obj) GTK_CHECK_CAST (obj, pixbufview_get_type (), PixbufView) #define PIXBUFVIEW_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, pixbufview_get_type (), PixbufViewClass) #define IS_PIXBUFVIEW(obj) GTK_CHECK_TYPE (obj, pixbufview_get_type ()) typedef struct _PixbufView PixbufView; typedef struct _PixbufViewClass PixbufViewClass; // Signals: // // "changed" - emitted when the view changes // "mousemove" - emitted when the mouse position changes but the widget is not being manipulated struct _PixbufView { GtkWidget wid; GdkPixbuf *pb_scaled; bool resized; bool scaletofit; int xoffset,yoffset; bool dragging; int prev_x,prev_y; int currentpage; int mousex,mousey; std::deque pages; }; struct _PixbufViewClass { GtkWidgetClass parent_class; void (*changed)(PixbufView *pv); void (*popupmenu)(PixbufView *pv); }; GtkWidget* pixbufview_new(GdkPixbuf *pb=NULL,bool scaletofit=true); GtkType pixbufview_get_type(void); void pixbufview_set_pixbuf(PixbufView *pv,GdkPixbuf *pb,unsigned int page=0); GdkPixbuf *pixbufview_get_pixbuf(PixbufView *pv,unsigned int page=0); void pixbufview_refresh(PixbufView *pv); // Get mouse position, in image coordinates. int pixbufview_get_mousex(PixbufView *pv); int pixbufview_get_mousey(PixbufView *pv); // Get view parameters. int pixbufview_get_xoffset(PixbufView *pv); int pixbufview_get_yoffset(PixbufView *pv); bool pixbufview_get_scale(PixbufView *pv); // Set view parameters void pixbufview_set_offset(PixbufView *pv,int xoff,int yoff); void pixbufview_set_scale(PixbufView *pv,bool scaletofit); // Add and remove pages void pixbufview_add_page(PixbufView *pv,GdkPixbuf *pb); void pixbufview_set_page(PixbufView *pb,unsigned int page); void pixbufview_clear_pages(PixbufView *pb); G_END_DECLS #endif /* __PIXBUFVIEW_H__ */ photoprint-0.4.2-pre2/miscwidgets/progressbar.cpp0000644000175000017500000000637611362276155017115 00000000000000/* * progressbar.cpp - A subclass of Progress; this provides a dialog with * a progress meter embedded within it, and optionally, a cancel button. * * Copyright (c) 2004-2006 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include #include #include #include #include #include "errordialogqueue.h" #include "progressbar.h" #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) using namespace std; void ProgressBar::cancel_callback(GtkWidget *wid,gpointer *ob) { ProgressBar *p=(ProgressBar *)ob; p->cancelled=true; } ProgressBar::ProgressBar(const char *message,bool cancel,GtkWidget *parent,bool modal) : Progress(), message(NULL), label(NULL), cancelled(false), threadid(Thread::GetThreadID()) { if(message) this->message=strdup(message); window=gtk_window_new(GTK_WINDOW_TOPLEVEL); if(parent) gtk_window_set_transient_for(GTK_WINDOW(window),GTK_WINDOW(parent)); gtk_window_set_modal(GTK_WINDOW(window),modal); gtk_window_set_title(GTK_WINDOW(window),_("Progress...")); gtk_window_set_default_size(GTK_WINDOW(window),150,30); gtk_widget_show(window); gtk_container_set_border_width(GTK_CONTAINER(window),10); GtkWidget *vbox=gtk_vbox_new(FALSE,0); gtk_container_add(GTK_CONTAINER(window),vbox); gtk_widget_show(vbox); if(this->message) { label=gtk_label_new(this->message); gtk_label_set_justify(GTK_LABEL(label),GTK_JUSTIFY_CENTER); gtk_box_pack_start(GTK_BOX(vbox),label,FALSE,FALSE,0); gtk_widget_show(label); } progressbar=gtk_progress_bar_new(); gtk_box_pack_start(GTK_BOX(vbox),progressbar,FALSE,FALSE,0); gtk_widget_show(progressbar); if(cancel) { GtkWidget *c=gtk_button_new_from_stock(GTK_STOCK_CANCEL); gtk_box_pack_start(GTK_BOX(vbox),c,FALSE,FALSE,0); gtk_widget_show(c); g_signal_connect(G_OBJECT(c),"clicked",G_CALLBACK(cancel_callback),this); } DoProgress(0,1); } ProgressBar::~ProgressBar() { if(message) free(message); gtk_widget_destroy(window); } bool ProgressBar::DoProgress(int i,int maxi) { Progress::DoProgress(i,maxi); current=i; max=maxi; if(threadid==Thread::GetThreadID()) { // We can call directly... update(this); } else { // Need to defer update to main thread g_timeout_add(1,update,this); } if(cancelled) return(false); else return(true); } gboolean ProgressBar::update(gpointer ud) { ProgressBar *pb=(ProgressBar *)ud; if(pb->max) { float v=pb->current; v/=pb->max; gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(pb->progressbar),v); } else gtk_progress_bar_pulse(GTK_PROGRESS_BAR(pb->progressbar)); while(gtk_events_pending()) gtk_main_iteration_do(false); return(FALSE); } void ProgressBar::SetMessage(const char *msg) { if(message) free(message); message=NULL; if(msg) message=strdup(msg); if(label) gtk_label_set_text(GTK_LABEL(label),message); } // Presents an error message to the user by way of the ErrorDialogQueue system. void ProgressBar::ErrorMessage(const char *msg) { ErrorDialogs.AddMessage(msg); } photoprint-0.4.2-pre2/miscwidgets/squiggledata.cpp0000644000175000017500000002407511326564631017231 00000000000000/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ #ifdef __SUNPRO_C #pragma align 4 (squiggle_data) #endif #ifdef __GNUC__ static const guint8 squiggle_data[] __attribute__ ((__aligned__ (4))) = #else static const guint8 squiggle_data[] = #endif { "" /* Pixbuf magic (0x47646b50) */ "GdkP" /* length: header (24) + pixel_data (2895) */ "\0\0\13g" /* pixdata_type (0x2010002) */ "\2\1\0\2" /* rowstride (160) */ "\0\0\0\240" /* width (40) */ "\0\0\0(" /* height (30) */ "\0\0\0\36" /* pixel_data: */ "\212\0\0\0\377\4\5\5\5\377(((\377...\377\15\15\15\377\236\0\0\0\377\2" "\3\3\3\377\7\7\7\377\204\0\0\0\377\4PPP\377\211\211\211\377\200\200\200" "\377EEE\377\236\0\0\0\377\3'''\377!!!\377\10\10\10\377\202\0\0\0\377" "\5CCC\377\207\207\207\377\203\203\203\377\210\210\210\377VVV\377\202" "\0\0\0\377\4""555\377ppp\377aaa\377\24\24\24\377\227\0\0\0\377\7&&&\377" "AAA\377;;;\377\10\10\10\377\0\0\0\377999\377~~~\377\202\201\201\201\377" "\10\210\210\210\377\27\27\27\377\0\0\0\377KKK\377\210\210\210\377\205" "\205\205\377\204\204\204\377eee\377\203\0\0\0\377\5\35\35\35\377\200" "\200\200\377\243\243\243\377\207\207\207\377\26\26\26\377\216\0\0\0\377" "\22\5\5\5\377PPP\377QQQ\377>>>\377\0\0\0\377\34\34\34\377xxx\377\200" "\200\200\377\177\177\177\377\203\203\203\377YYY\377\0\0\0\377AAA\377" "\206\206\206\377\203\203\203\377~~~\377\205\205\205\377www\377\202\0" "\0\0\377\6jjj\377\254\254\254\377\246\246\246\377\243\243\243\377\251" "\251\251\377\223\223\223\377\216\0\0\0\377\16:::\377^^^\377YYY\377''" "'\377\0\0\0\377nnn\377|||\377}}}\377\177\177\177\377rrr\377\0\0\0\377" "555\377\205\205\205\377\177\177\177\377\202~~~\377\13\204\204\204\377" "KKK\377\0\0\0\377\223\223\223\377\247\247\247\377\231\231\231\377\232" "\232\232\377\233\233\233\377\241\241\241\377\251\251\251\377\5\5\5\377" "\215\0\0\0\377\6___\377bbb\377XXX\377\14\14\14\377ccc\377zzz\377\202" "}}}\377\4uuu\377---\377000\377\201\201\201\377\202~~~\377\202}}}\377" "\6sss\377\"\"\"\377\221\221\221\377\243\243\243\377\226\226\226\377\230" "\230\230\377\202\232\232\232\377\2\247\247\247\377\225\225\225\377\215" "\0\0\0\377\14\32\32\32\377mmm\377ddd\377GGG\377OOO\377www\377|||\377" "{{{\377uuu\377UUU\377===\377~~~\377\202|||\377\10\177\177\177\377|||" "\377sss\377^^^\377\212\212\212\377\240\240\240\377\225\225\225\377\224" "\224\224\377\202\233\233\233\377\3\235\235\235\377\262\262\262\37733" "3\377\214\0\0\0\377\33\2\2\2\377TTT\377kkk\377aaa\377___\377nnn\377x" "xx\377}}}\377uuu\377eee\377XXX\377zzz\377{{{\377zzz\377\200\200\200\377" "~~~\377vvv\377qqq\377\222\222\222\377\232\232\232\377\227\227\227\377" "\224\224\224\377\233\233\233\377\234\234\234\377\235\235\235\377\252" "\252\252\377\206\206\206\377\215\0\0\0\377\10\23\23\23\377ppp\377jjj" "\377ppp\377nnn\377rrr\377}}}\377www\377\202lll\377\21www\377{{{\377x" "xx\377\200\200\200\377\177\177\177\377xxx\377vvv\377\224\224\224\377" "\231\231\231\377\226\226\226\377\224\224\224\377\231\231\231\377\235" "\235\235\377\234\234\234\377\245\245\245\377\256\256\256\377\21\21\21" "\377\215\0\0\0\377\2'''\377uuu\377\202www\377\26lll\377www\377yyy\377" "ooo\377vvv\377uuu\377yyy\377vvv\377}}}\377\202\202\202\377zzz\377www" "\377\223\223\223\377\231\231\231\377\227\227\227\377\224\224\224\377" "\226\226\226\377\236\236\236\377\237\237\237\377\242\242\242\377\266" "\266\266\377FFF\377\216\0\0\0\377\1***\377\202yyy\377\26ttt\377mmm\377" "xxx\377qqq\377www\377yyy\377zzz\377yyy\377{{{\377\204\204\204\377\200" "\200\200\377zzz\377\215\215\215\377\231\231\231\377\227\227\227\377\225" "\225\225\377\221\221\221\377\237\237\237\377\243\243\243\377\244\244" "\244\377\262\262\262\377\177\177\177\377\202\0\0\0\377\4)))\377zzz\377" "\221\221\221\377PPP\377\211\0\0\0\377\10\20\20\20\377ddd\377ttt\377d" "dd\377nnn\377qqq\377uuu\377}}}\377\202yyy\377\1vvv\377\202\204\204\204" "\377\7\202\202\202\377\212\212\212\377\231\231\231\377\227\227\227\377" "\230\230\230\377\223\223\223\377\217\217\217\377\202\244\244\244\377" "\2\253\253\253\377\250\250\250\377\202\0\0\0\377\6\247\247\247\377\334" "\334\334\377\323\323\323\377\321\321\321\377\334\334\334\377~~~\377\212" "\0\0\0\377\15\13\13\13\377***\377vvv\377xxx\377\177\177\177\377|||\377" "{{{\377ttt\377}}}\377\210\210\210\377\205\205\205\377\211\211\211\377" "\230\230\230\377\202\227\227\227\377\17\224\224\224\377vvv\377\250\250" "\250\377\253\253\253\377\250\250\250\377\260\260\260\377\34\34\34\377" "333\377\321\321\321\377\316\316\316\377\275\275\275\377\271\271\271\377" "\273\273\273\377\304\304\304\377\336\336\336\377\213\0\0\0\377\7ppp\377" "}}}\377~~~\377}}}\377{{{\377www\377ppp\377\203\212\212\212\377\11\230" "\230\230\377\227\227\227\377\230\230\230\377\227\227\227\377\201\201" "\201\377\245\245\245\377\264\264\264\377\257\257\257\377\255\255\255" "\377\202uuu\377\2\323\323\323\377\304\304\304\377\202\271\271\271\377" "\202\274\274\274\377\3\275\275\275\377\344\344\344\377&&&\377\211\0\0" "\0\377\27:::\377\202\202\202\377\201\201\201\377\177\177\177\377}}}\377" "zzz\377fff\377\204\204\204\377\220\220\220\377\215\215\215\377\227\227" "\227\377\231\231\231\377\227\227\227\377\233\233\233\377|||\377\225\225" "\225\377\267\267\267\377\263\263\263\377\260\260\260\377\255\255\255" "\377\250\250\250\377\304\304\304\377\275\275\275\377\202\270\270\270" "\377\1\271\271\271\377\203\274\274\274\377\2\345\345\345\377\21\21\21" "\377\211\0\0\0\377\2hhh\377\206\206\206\377\202\200\200\200\377\22\177" "\177\177\377eee\377hhh\377\225\225\225\377\220\220\220\377\226\226\226" "\377\232\232\232\377\226\226\226\377\237\237\237\377\223\223\223\377" "QQQ\377\277\277\277\377\265\265\265\377\260\260\260\377\261\261\261\377" "\272\272\272\377\273\273\273\377\271\271\271\377\203\270\270\270\377" "\1\271\271\271\377\202\272\272\272\377\2\302\302\302\377\324\324\324" "\377\212\0\0\0\377\7fff\377\205\205\205\377\177\177\177\377\205\205\205" "\377sss\377666\377\227\227\227\377\202\226\226\226\377\11\230\230\230" "\377\227\227\227\377\237\237\237\377\246\246\246\377\34\34\34\377\252" "\252\252\377\275\275\275\377\263\263\263\377\262\262\262\377\204\270" "\270\270\377\4\275\275\275\377\276\276\276\377\265\265\265\377\276\276" "\276\377\202\272\272\272\377\7\302\302\302\377zzz\377\0\0\0\377]]]\377" "\255\255\255\377\310\310\310\377\222\222\222\377\205\0\0\0\377\22""0" "00\377|||\377\205\205\205\377www\377\16\16\16\377ooo\377\234\234\234" "\377\226\226\226\377\230\230\230\377\227\227\227\377\235\235\235\377" "\255\255\255\377DDD\377###\377\314\314\314\377\264\264\264\377\265\265" "\265\377\267\267\267\377\203\270\270\270\377\5\301\301\301\377\317\317" "\317\377nnn\377\235\235\235\377\275\275\275\377\202\272\272\272\377\10" "\302\302\302\377\240\240\240\377\321\321\321\377\333\333\333\377\320" "\320\320\377\322\322\322\377\340\340\340\377\327\327\327\377\205\0\0" "\0\377\20\36\36\36\377222\377\0\0\0\377\36\36\36\377\247\247\247\377" "\231\231\231\377\230\230\230\377\227\227\227\377\232\232\232\377\253" "\253\253\377ggg\377\0\0\0\377\246\246\246\377\303\303\303\377\266\266" "\266\377\271\271\271\377\203\270\270\270\377\21\302\302\302\377\327\327" "\327\377RRR\377\25\25\25\377\321\321\321\377\276\276\276\377\271\271" "\271\377\273\273\273\377\301\301\301\377\277\277\277\377\301\301\301" "\377\274\274\274\377\304\304\304\377\306\306\306\377\310\310\310\377" "\350\350\350\377ttt\377\207\0\0\0\377\7\206\206\206\377\243\243\243\377" "\230\230\230\377\227\227\227\377\233\233\233\377\252\252\252\377|||\377" "\202\0\0\0\377\3\331\331\331\377\273\273\273\377\271\271\271\377\202" "\270\270\270\377\10\267\267\267\377\305\305\305\377\327\327\327\377S" "SS\377\0\0\0\377\257\257\257\377\312\312\312\377\273\273\273\377\202" "\274\274\274\377\203\275\275\275\377\1\274\274\274\377\203\310\310\310" "\377\2\337\337\337\377\235\235\235\377\206\0\0\0\377\7\2\2\2\377\257" "\257\257\377\236\236\236\377\226\226\226\377\236\236\236\377\253\253" "\253\377www\377\202\0\0\0\377\2>>>\377\331\331\331\377\203\270\270\270" "\377\10\272\272\272\377\306\306\306\377\325\325\325\377@@@\377\0\0\0" "\377\26\26\26\377\341\341\341\377\300\300\300\377\204\275\275\275\377" "\4\276\276\276\377\275\275\275\377\300\300\300\377\312\312\312\377\202" "\307\307\307\377\2\343\343\343\377\202\202\202\377\206\0\0\0\377\2\2" "\2\2\377\245\245\245\377\202\243\243\243\377\2\256\256\256\377lll\377" "\203\0\0\0\377\10DDD\377\331\331\331\377\271\271\271\377\270\270\270" "\377\273\273\273\377\314\314\314\377\316\316\316\377%%%\377\202\0\0\0" "\377\2\204\204\204\377\327\327\327\377\203\275\275\275\377\12\273\273" "\273\377\277\277\277\377\316\316\316\377\300\300\300\377\305\305\305" "\377\314\314\314\377\310\310\310\377\311\311\311\377\357\357\357\377" "@@@\377\207\0\0\0\377\4<<<\377\236\236\236\377\235\235\235\377EEE\377" "\204\0\0\0\377\7\17\17\17\377\327\327\327\377\307\307\307\377\304\304" "\304\377\323\323\323\377\304\304\304\377\5\5\5\377\203\0\0\0\377\2\246" "\246\246\377\325\325\325\377\203\275\275\275\377\11\303\303\303\377\331" "\331\331\377\260\260\260\377\3\3\3\377\311\311\311\377\313\313\313\377" "\310\310\310\377\317\317\317\377\356\356\356\377\221\0\0\0\377\4JJJ\377" "\272\272\272\377\311\311\311\377\210\210\210\377\205\0\0\0\377\12SSS" "\377\346\346\346\377\307\307\307\377\301\301\301\377\315\315\315\377" "\340\340\340\377~~~\377\0\0\0\377%%%\377\351\351\351\377\202\310\310" "\310\377\2\330\330\330\377\233\233\233\377\233\0\0\0\377\5zzz\377\350" "\350\350\377\351\351\351\377\314\314\314\377888\377\202\0\0\0\377\2\207" "\207\207\377\345\345\345\377\202\307\307\307\377\2\330\330\330\377rr" "r\377\235\0\0\0\377\1\24\24\24\377\204\0\0\0\377\2ddd\377\350\350\350" "\377\202\310\310\310\377\4\324\324\324\377\263\263\263\377]]]\377\4\4" "\4\377\240\0\0\0\377\10\21\21\21\377\357\357\357\377\323\323\323\377" "\311\311\311\377\306\306\306\377\254\254\254\377\177\177\177\377\21\21" "\21\377\241\0\0\0\377\7XXX\377\340\340\340\377\327\327\327\377\276\276" "\276\377\255\255\255\377UUU\377\7\7\7\377\242\0\0\0\377\6\37\37\37\377" "RRR\377VVV\377111\377\10\10\10\377\0\0\0\377"}; photoprint-0.4.2-pre2/miscwidgets/spinner4.cpp0000644000175000017500000000635311330153377016314 00000000000000/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ #ifdef __SUNPRO_C #pragma align 4 (spinner4_data) #endif #ifdef __GNUC__ static const guint8 spinner4_data[] __attribute__ ((__aligned__ (4))) = #else static const guint8 spinner4_data[] = #endif { "" /* Pixbuf magic (0x47646b50) */ "GdkP" /* length: header (24) + pixel_data (1143) */ "\0\0\4\217" /* pixdata_type (0x2010002) */ "\2\1\0\2" /* rowstride (80) */ "\0\0\0P" /* width (20) */ "\0\0\0\24" /* height (20) */ "\0\0\0\24" /* pixel_data: */ "\210\0\0\0\0\4\0\0\0\12\0\0\0\213\0\0\0\212\0\0\0\12\212\0\0\0\0\3\0" "\0\0\1\0\0\0\10\0\0\0\1\203\0\0\0\0\4\0\0\0\13\0\0\0\226\0\0\0\225\0" "\0\0\13\203\0\0\0\0\3\0\0\0\1\0\0\0\14\0\0\0\1\203\0\0\0\0\5\0\0\0\1" "\0\0\0\20\0\0\0h\0\0\0\20\0\0\0\1\202\0\0\0\0\4\0\0\0\13\0\0\0\226\0" "\0\0\225\0\0\0\13\202\0\0\0\0\5\0\0\0\1\0\0\0\31\0\0\0\233\0\0\0\31\0" "\0\0\1\202\0\0\0\0\22\0\0\0\10\0\0\0h\0\0\0~\0\0\0p\0\0\0\20\0\0\0\1" "\0\0\0\0\0\0\0\13\0\0\0\225\0\0\0\230\0\0\0\14\0\0\0\0\0\0\0\1\0\0\0" "\31\0\0\0\247\0\0\0\275\0\0\0\233\0\0\0\14\202\0\0\0\0\22\0\0\0\1\0\0" "\0\20\0\0\0q\0\0\0\203\0\0\0p\0\0\0\20\0\0\0\1\0\0\0\13\0\0\0\226\0\0" "\0\227\0\0\0\14\0\0\0\1\0\0\0\31\0\0\0\247\0\0\0\276\0\0\0\247\0\0\0" "\31\0\0\0\1\203\0\0\0\0\20\0\0\0\1\0\0\0\20\0\0\0p\0\0\0\177\0\0\0q\0" "\0\0\20\0\0\0\14\0\0\0\226\0\0\0\227\0\0\0\15\0\0\0\31\0\0\0\250\0\0" "\0\276\0\0\0\247\0\0\0\31\0\0\0\1\205\0\0\0\0\16\0\0\0\1\0\0\0\20\0\0" "\0q\0\0\0\205\0\0\0p\0\0\0\23\0\0\0\213\0\0\0\221\0\0\0\30\0\0\0\246" "\0\0\0\276\0\0\0\247\0\0\0\31\0\0\0\1\207\0\0\0\0\5\0\0\0\1\0\0\0\20" "\0\0\0q\0\0\0o\0\0\0\11\202\0\0\0\13\5\0\0\0\16\0\0\0\245\0\0\0\246\0" "\0\0\31\0\0\0\1\204\0\0\0\0\1\0\0\0\6\205\0\0\0\7\3\0\0\0\17\0\0\0\11" "\0\0\0\1\202\0\0\0\0\4\0\0\0\1\0\0\0\16\0\0\0\33\0\0\0\21\204\0\0\0\20" "\2\0\0\0\17\0\0\0T\205\0\0\0Y\2\0\0\0T\0\0\0\7\204\0\0\0\0\2\0\0\0\17" "\0\0\0\301\204\0\0\0\320\3\0\0\0\321\0\0\0\301\0\0\0S\205\0\0\0Y\2\0" "\0\0S\0\0\0\7\204\0\0\0\0\2\0\0\0\17\0\0\0\301\205\0\0\0\320\2\0\0\0" "\301\0\0\0\6\205\0\0\0\7\2\0\0\0\13\0\0\0\5\203\0\0\0\0\4\0\0\0\1\0\0" "\0\22\0\0\0\37\0\0\0\21\204\0\0\0\20\1\0\0\0\17\205\0\0\0\0\4\0\0\0\11" "\0\0\0""9\0\0\0""8\0\0\0\5\202\0\0\0\2\5\0\0\0\21\0\0\0\334\0\0\0\336" "\0\0\0\40\0\0\0\1\210\0\0\0\0\5\0\0\0\11\0\0\0""8\0\0\0A\0\0\0""8\0\0" "\0\7\202\0\0\0\34\6\0\0\0\23\0\0\0\336\0\0\0\374\0\0\0\337\0\0\0\40\0" "\0\0\1\206\0\0\0\0\6\0\0\0\11\0\0\0""9\0\0\0@\0\0\0""9\0\0\0\11\0\0\0" "\2\202\0\0\0\36\7\0\0\0\3\0\0\0\40\0\0\0\337\0\0\0\374\0\0\0\337\0\0" "\0\40\0\0\0\1\204\0\0\0\0\7\0\0\0\11\0\0\0""9\0\0\0B\0\0\0""8\0\0\0\11" "\0\0\0\0\0\0\0\2\202\0\0\0\36\10\0\0\0\2\0\0\0\1\0\0\0\40\0\0\0\337\0" "\0\0\374\0\0\0\337\0\0\0\40\0\0\0\1\202\0\0\0\0\5\0\0\0\4\0\0\0""4\0" "\0\0C\0\0\0""9\0\0\0\11\202\0\0\0\0\1\0\0\0\2\202\0\0\0\36\10\0\0\0\2" "\0\0\0\0\0\0\0\1\0\0\0\40\0\0\0\337\0\0\0\373\0\0\0\316\0\0\0\17\203" "\0\0\0\0\3\0\0\0\11\0\0\0""4\0\0\0\11\203\0\0\0\0\1\0\0\0\2\202\0\0\0" "\36\1\0\0\0\2\202\0\0\0\0\5\0\0\0\1\0\0\0\40\0\0\0\316\0\0\0\40\0\0\0" "\1\204\0\0\0\0\1\0\0\0\4\204\0\0\0\0\1\0\0\0\2\202\0\0\0\36\1\0\0\0\2" "\203\0\0\0\0\3\0\0\0\1\0\0\0\17\0\0\0\1\212\0\0\0\0\1\0\0\0\2\202\0\0" "\0\34\1\0\0\0\2\210\0\0\0\0"}; photoprint-0.4.2-pre2/miscwidgets/spinner6.cpp0000644000175000017500000000637611330153377016323 00000000000000/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ #ifdef __SUNPRO_C #pragma align 4 (spinner6_data) #endif #ifdef __GNUC__ static const guint8 spinner6_data[] __attribute__ ((__aligned__ (4))) = #else static const guint8 spinner6_data[] = #endif { "" /* Pixbuf magic (0x47646b50) */ "GdkP" /* length: header (24) + pixel_data (1149) */ "\0\0\4\225" /* pixdata_type (0x2010002) */ "\2\1\0\2" /* rowstride (80) */ "\0\0\0P" /* width (20) */ "\0\0\0\24" /* height (20) */ "\0\0\0\24" /* pixel_data: */ "\210\0\0\0\0\4\0\0\0\6\0\0\0S\0\0\0T\0\0\0\6\213\0\0\0\0\1\0\0\0\4\204" "\0\0\0\0\1\0\0\0\7\202\0\0\0Y\1\0\0\0\7\203\0\0\0\0\3\0\0\0\1\0\0\0\10" "\0\0\0\1\204\0\0\0\0\3\0\0\0\11\0\0\0""4\0\0\0\11\203\0\0\0\0\1\0\0\0" "\7\202\0\0\0Y\1\0\0\0\7\202\0\0\0\0\5\0\0\0\1\0\0\0\20\0\0\0h\0\0\0\20" "\0\0\0\1\202\0\0\0\0\5\0\0\0\4\0\0\0""4\0\0\0C\0\0\0""9\0\0\0\11\202" "\0\0\0\0\1\0\0\0\7\202\0\0\0Y\10\0\0\0\7\0\0\0\0\0\0\0\1\0\0\0\20\0\0" "\0q\0\0\0~\0\0\0h\0\0\0\10\203\0\0\0\0\7\0\0\0\11\0\0\0""9\0\0\0B\0\0" "\0""9\0\0\0\11\0\0\0\0\0\0\0\7\202\0\0\0Y\10\0\0\0\7\0\0\0\1\0\0\0\20" "\0\0\0p\0\0\0\203\0\0\0p\0\0\0\20\0\0\0\1\204\0\0\0\0\6\0\0\0\11\0\0" "\0""8\0\0\0@\0\0\0""8\0\0\0\11\0\0\0\7\202\0\0\0Y\7\0\0\0\7\0\0\0\20" "\0\0\0q\0\0\0\177\0\0\0p\0\0\0\20\0\0\0\1\206\0\0\0\0\15\0\0\0\11\0\0" "\0""9\0\0\0A\0\0\0""9\0\0\0\13\0\0\0S\0\0\0T\0\0\0\17\0\0\0q\0\0\0\205" "\0\0\0q\0\0\0\20\0\0\0\1\210\0\0\0\0\1\0\0\0\11\202\0\0\0""8\1\0\0\0" "\5\202\0\0\0\7\5\0\0\0\11\0\0\0o\0\0\0p\0\0\0\20\0\0\0\1\204\0\0\0\0" "\206\0\0\0\2\2\0\0\0\7\0\0\0\5\203\0\0\0\0\4\0\0\0\1\0\0\0\11\0\0\0\23" "\0\0\0\14\204\0\0\0\13\2\0\0\0\12\0\0\0\34\205\0\0\0\36\2\0\0\0\34\0" "\0\0\2\204\0\0\0\0\2\0\0\0\13\0\0\0\213\202\0\0\0\226\1\0\0\0\225\202" "\0\0\0\226\2\0\0\0\213\0\0\0\34\205\0\0\0\36\2\0\0\0\34\0\0\0\2\204\0" "\0\0\0\2\0\0\0\13\0\0\0\221\202\0\0\0\227\1\0\0\0\230\202\0\0\0\225\1" "\0\0\0\212\205\0\0\0\2\4\0\0\0\3\0\0\0\23\0\0\0\21\0\0\0\1\202\0\0\0" "\0\4\0\0\0\1\0\0\0\16\0\0\0\30\0\0\0\15\202\0\0\0\14\202\0\0\0\13\1\0" "\0\0\12\204\0\0\0\0\5\0\0\0\1\0\0\0\40\0\0\0\336\0\0\0\334\0\0\0\22\202" "\0\0\0\17\5\0\0\0\16\0\0\0\245\0\0\0\246\0\0\0\31\0\0\0\1\207\0\0\0\0" "\6\0\0\0\1\0\0\0\40\0\0\0\337\0\0\0\374\0\0\0\336\0\0\0\37\202\0\0\0" "\301\6\0\0\0\33\0\0\0\246\0\0\0\276\0\0\0\250\0\0\0\31\0\0\0\1\205\0" "\0\0\0\7\0\0\0\1\0\0\0\40\0\0\0\337\0\0\0\374\0\0\0\337\0\0\0\40\0\0" "\0\21\202\0\0\0\320\7\0\0\0\21\0\0\0\31\0\0\0\247\0\0\0\276\0\0\0\247" "\0\0\0\31\0\0\0\1\203\0\0\0\0\10\0\0\0\1\0\0\0\40\0\0\0\337\0\0\0\374" "\0\0\0\337\0\0\0\40\0\0\0\1\0\0\0\20\202\0\0\0\320\10\0\0\0\20\0\0\0" "\1\0\0\0\31\0\0\0\247\0\0\0\276\0\0\0\247\0\0\0\31\0\0\0\1\202\0\0\0" "\0\10\0\0\0\17\0\0\0\316\0\0\0\373\0\0\0\337\0\0\0\40\0\0\0\1\0\0\0\0" "\0\0\0\20\202\0\0\0\320\10\0\0\0\20\0\0\0\0\0\0\0\1\0\0\0\31\0\0\0\247" "\0\0\0\275\0\0\0\233\0\0\0\14\202\0\0\0\0\5\0\0\0\1\0\0\0\40\0\0\0\316" "\0\0\0\40\0\0\0\1\202\0\0\0\0\1\0\0\0\20\202\0\0\0\320\1\0\0\0\20\202" "\0\0\0\0\5\0\0\0\1\0\0\0\31\0\0\0\233\0\0\0\31\0\0\0\1\203\0\0\0\0\3" "\0\0\0\1\0\0\0\17\0\0\0\1\203\0\0\0\0\4\0\0\0\20\0\0\0\320\0\0\0\321" "\0\0\0\20\203\0\0\0\0\3\0\0\0\1\0\0\0\14\0\0\0\1\212\0\0\0\0\1\0\0\0" "\17\202\0\0\0\301\1\0\0\0\17\210\0\0\0\0"}; photoprint-0.4.2-pre2/miscwidgets/Makefile.am0000644000175000017500000000360311330153340016063 00000000000000AM_CXXFLAGS = -Wall -I../imagesource/ -I../pixbufthumbnail -I../profilemanager -I../support $(LCMS_CFLAGS) $(GTK2_CFLAGS) ${PNM_CFLAGS} noinst_LTLIBRARIES = libmiscwidgets.la libmiscwidgets_la_SOURCES = \ generaldialogs.cpp \ generaldialogs.h \ errordialogqueue.cpp \ errordialogqueue.h \ simplecombo.cpp \ simplecombo.h \ \ colorantselector.cpp \ colorantselector.h \ coloranttoggle.cpp \ coloranttoggle.h \ \ pixbufview.cpp \ pixbufview.h \ \ progressbar.cpp \ progressbar.h \ \ uitab.cpp \ uitab.h \ \ spinner.cpp \ spinner.h \ progressspinner.h \ patheditor.cpp \ patheditor.h \ imageselector.cpp \ imageselector.h \ imageselector_noborder_image.h \ \ pixbuf_from_imagedata.cpp \ pixbuf_from_imagedata.h \ \ refcountui.h BUILT_SOURCES = squiggledata.cpp dabdata.cpp spinner1.cpp spinner2.cpp spinner3.cpp \ spinner4.cpp spinner5.cpp spinner6.cpp spinner7.cpp spinner8.cpp squiggledata.cpp: gdk-pixbuf-csource --name=squiggle_data >squiggledata.cpp squiggle.tif dabdata.cpp: gdk-pixbuf-csource --name=dab_data >dabdata.cpp dab.tif spinner1.cpp: gdk-pixbuf-csource --name=spinner1_data >spinner1.cpp spinner1.png spinner2.cpp: gdk-pixbuf-csource --name=spinner2_data >spinner2.cpp spinner2.png spinner3.cpp: gdk-pixbuf-csource --name=spinner3_data >spinner3.cpp spinner3.png spinner4.cpp: gdk-pixbuf-csource --name=spinner4_data >spinner4.cpp spinner4.png spinner5.cpp: gdk-pixbuf-csource --name=spinner5_data >spinner5.cpp spinner5.png spinner6.cpp: gdk-pixbuf-csource --name=spinner6_data >spinner6.cpp spinner6.png spinner7.cpp: gdk-pixbuf-csource --name=spinner7_data >spinner7.cpp spinner7.png spinner8.cpp: gdk-pixbuf-csource --name=spinner8_data >spinner8.cpp spinner8.png libmiscwidgets_la_LDFLAGS = -static EXTRA_DIST = squiggledata.cpp dabdata.cpp spinner1.cpp spinner2.cpp spinner3.cpp \ spinner4.cpp spinner5.cpp spinner6.cpp spinner7.cpp spinner8.cpp photoprint-0.4.2-pre2/miscwidgets/spinner1.cpp0000644000175000017500000000615311330153377016307 00000000000000/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ #ifdef __SUNPRO_C #pragma align 4 (spinner1_data) #endif #ifdef __GNUC__ static const guint8 spinner1_data[] __attribute__ ((__aligned__ (4))) = #else static const guint8 spinner1_data[] = #endif { "" /* Pixbuf magic (0x47646b50) */ "GdkP" /* length: header (24) + pixel_data (1090) */ "\0\0\4Z" /* pixdata_type (0x2010002) */ "\2\1\0\2" /* rowstride (80) */ "\0\0\0P" /* width (20) */ "\0\0\0\24" /* height (20) */ "\0\0\0\24" /* pixel_data: */ "\210\0\0\0\0\1\0\0\0\21\202\0\0\0\334\1\0\0\0\21\212\0\0\0\0\3\0\0\0" "\1\0\0\0\16\0\0\0\1\203\0\0\0\0\1\0\0\0\22\202\0\0\0\355\1\0\0\0\22\204" "\0\0\0\0\1\0\0\0\2\204\0\0\0\0\5\0\0\0\1\0\0\0\34\0\0\0\265\0\0\0\34" "\0\0\0\1\202\0\0\0\0\1\0\0\0\22\202\0\0\0\355\1\0\0\0\22\203\0\0\0\0" "\3\0\0\0\4\0\0\0\32\0\0\0\4\203\0\0\0\0\10\0\0\0\16\0\0\0\265\0\0\0\335" "\0\0\0\304\0\0\0\34\0\0\0\1\0\0\0\0\0\0\0\22\202\0\0\0\355\1\0\0\0\22" "\202\0\0\0\0\5\0\0\0\4\0\0\0\34\0\0\0\40\0\0\0\31\0\0\0\2\202\0\0\0\0" "\10\0\0\0\1\0\0\0\34\0\0\0\304\0\0\0\336\0\0\0\304\0\0\0\34\0\0\0\1\0" "\0\0\22\202\0\0\0\355\7\0\0\0\22\0\0\0\0\0\0\0\4\0\0\0\33\0\0\0\37\0" "\0\0\34\0\0\0\4\204\0\0\0\0\7\0\0\0\1\0\0\0\34\0\0\0\304\0\0\0\337\0" "\0\0\304\0\0\0\34\0\0\0\23\202\0\0\0\355\6\0\0\0\22\0\0\0\4\0\0\0\34" "\0\0\0\40\0\0\0\34\0\0\0\4\206\0\0\0\0\6\0\0\0\1\0\0\0\34\0\0\0\304\0" "\0\0\336\0\0\0\302\0\0\0\37\202\0\0\0\334\5\0\0\0\23\0\0\0\33\0\0\0\40" "\0\0\0\34\0\0\0\4\210\0\0\0\0\5\0\0\0\1\0\0\0\34\0\0\0\302\0\0\0\301" "\0\0\0\20\202\0\0\0\21\1\0\0\0\3\202\0\0\0\34\1\0\0\0\4\205\0\0\0\0\1" "\0\0\0\15\204\0\0\0\16\4\0\0\0\17\0\0\0\33\0\0\0\20\0\0\0\1\203\0\0\0" "\0\2\0\0\0\2\0\0\0\7\206\0\0\0\5\1\0\0\0\245\205\0\0\0\262\2\0\0\0\245" "\0\0\0\15\204\0\0\0\0\2\0\0\0\4\0\0\0""7\203\0\0\0;\4\0\0\0<\0\0\0;\0" "\0\0""7\0\0\0\245\205\0\0\0\262\2\0\0\0\245\0\0\0\15\204\0\0\0\0\2\0" "\0\0\4\0\0\0""7\203\0\0\0;\4\0\0\0<\0\0\0;\0\0\0""7\0\0\0\15\204\0\0" "\0\16\4\0\0\0\17\0\0\0\27\0\0\0\13\0\0\0\1\203\0\0\0\0\2\0\0\0\7\0\0" "\0\12\206\0\0\0\5\204\0\0\0\0\5\0\0\0\1\0\0\0\24\0\0\0\213\0\0\0\212" "\0\0\0\13\202\0\0\0\10\1\0\0\0\7\202\0\0\0S\1\0\0\0\14\210\0\0\0\0\6" "\0\0\0\1\0\0\0\24\0\0\0\214\0\0\0\237\0\0\0\214\0\0\0\23\202\0\0\0p\5" "\0\0\0\17\0\0\0U\0\0\0a\0\0\0U\0\0\0\14\206\0\0\0\0\7\0\0\0\1\0\0\0\24" "\0\0\0\215\0\0\0\237\0\0\0\214\0\0\0\24\0\0\0\12\202\0\0\0x\6\0\0\0\12" "\0\0\0\14\0\0\0U\0\0\0_\0\0\0U\0\0\0\14\204\0\0\0\0\10\0\0\0\1\0\0\0" "\24\0\0\0\214\0\0\0\237\0\0\0\214\0\0\0\24\0\0\0\1\0\0\0\11\202\0\0\0" "x\7\0\0\0\11\0\0\0\0\0\0\0\14\0\0\0T\0\0\0`\0\0\0U\0\0\0\14\203\0\0\0" "\0\10\0\0\0\12\0\0\0\201\0\0\0\236\0\0\0\214\0\0\0\24\0\0\0\1\0\0\0\0" "\0\0\0\11\202\0\0\0x\1\0\0\0\11\202\0\0\0\0\5\0\0\0\14\0\0\0T\0\0\0_" "\0\0\0M\0\0\0\6\202\0\0\0\0\5\0\0\0\1\0\0\0\24\0\0\0\201\0\0\0\24\0\0" "\0\1\202\0\0\0\0\1\0\0\0\11\202\0\0\0x\1\0\0\0\11\203\0\0\0\0\3\0\0\0" "\14\0\0\0M\0\0\0\14\204\0\0\0\0\3\0\0\0\1\0\0\0\11\0\0\0\1\203\0\0\0" "\0\1\0\0\0\11\202\0\0\0x\1\0\0\0\11\204\0\0\0\0\1\0\0\0\6\213\0\0\0\0" "\1\0\0\0\10\202\0\0\0p\1\0\0\0\10\210\0\0\0\0"}; photoprint-0.4.2-pre2/miscwidgets/imageselector.h0000644000175000017500000000374211337356144017045 00000000000000#ifndef __IMAGESELECTOR_H__ #define __IMAGESELECTOR_H__ #include #include #include #include #include #include #include #include #include #include #include #include #include "searchpath.h" #define IMAGESELECTOR_TYPE (imageselector_get_type()) #define IMAGESELECTOR(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), IMAGESELECTOR_TYPE, ImageSelector)) #define IMAGESELECTOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), IMAGESELECTOR_TYPE, ImageSelectorClass)) #define IS_IMAGESELECTOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), IMAGESELECTOR_TYPE)) #define IS_IMAGESELECTOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), IMAGESELECTOR_TYPE)) typedef struct _ImageSelector ImageSelector; typedef struct _ImageSelectorClass ImageSelectorClass; struct _ImageSelector { GtkVBox box; GtkListStore *liststore; GtkWidget *treeview; GList *imagelist; SearchPathHandler *searchpath; GtkWidgetClass *parent_class; char *filename; GtkSelectionMode selmode; std::vector *selectionlist; }; struct _ImageSelectorClass { GtkVBoxClass parent_class; void (*changed)(ImageSelector *combo); void (*doubleclicked)(ImageSelector *combo); }; GType imageselector_get_type (void); GtkWidget* imageselector_new (SearchPathHandler *pm,GtkSelectionMode sel=GTK_SELECTION_SINGLE,bool allowother=true); gboolean imageselector_refresh(ImageSelector *c); const char *imageselector_get_filename(ImageSelector *c, unsigned int idx=0); void imageselector_set_filename(ImageSelector *c,const char *filename); bool imageselector_add_filename(ImageSelector *c,const char *filename,GdkPixbuf *pb=NULL); // Remove an image from the selector. If no filename's provided, the widget will remove any selected images. void imageselector_remove(ImageSelector *c,const char *filename=NULL); #endif /* __IMAGESELECTOR_H__ */ photoprint-0.4.2-pre2/miscwidgets/patheditor.cpp0000644000175000017500000001211711261202276016704 00000000000000/* * patheditor.c - provides a custom widget for manipulating a SearchPathHandler object. * * Copyright (c) 2006 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ /* FIXME: A destructor is needed for this class, to free up the option list. As it stands, a certain amount of memory will be lost when the widget is destroyed. */ #include #include #include #include #include #include #include #include "generaldialogs.h" #include "patheditor.h" #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "gettext.h" #define _(x) gettext(x) using namespace std; enum { CHANGED_SIGNAL, LAST_SIGNAL }; static guint patheditor_signals[LAST_SIGNAL] = { 0 }; static void patheditor_class_init (PathEditorClass *klass); static void patheditor_init (PathEditor *sel); static void patheditor_addpath(GtkWidget *button,gpointer user_data) { PathEditor *pe=PATHEDITOR(user_data); char *dir=NULL; if((dir=Directory_Dialog(_("Select directory..."),NULL,NULL))) { GtkTreeIter iter1; gtk_list_store_append(pe->liststore,&iter1); gtk_list_store_set(pe->liststore,&iter1,0,dir,-1); g_signal_emit(G_OBJECT (pe),patheditor_signals[CHANGED_SIGNAL], 0); } } static void patheditor_removepath(GtkWidget *button,gpointer user_data) { PathEditor *pe=PATHEDITOR(user_data); GtkTreeIter iter; GtkTreeSelection *select; GtkTreeModel *model; select = gtk_tree_view_get_selection (GTK_TREE_VIEW (pe->treeview)); if (gtk_tree_selection_get_selected (select, &model, &iter)) { gtk_list_store_remove(pe->liststore,&iter); g_signal_emit(G_OBJECT (pe),patheditor_signals[CHANGED_SIGNAL], 0); } } GtkWidget* patheditor_new (SearchPathHandler *sp) { PathEditor *c=PATHEDITOR(g_object_new (patheditor_get_type (), NULL)); c->liststore=gtk_list_store_new(1,G_TYPE_STRING); GtkWidget *sw = gtk_scrolled_window_new (NULL, NULL); gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (sw),GTK_SHADOW_ETCHED_IN); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (sw),GTK_POLICY_NEVER,GTK_POLICY_AUTOMATIC); gtk_box_pack_start (GTK_BOX (c), sw, TRUE, TRUE, 0); gtk_widget_show(sw); c->treeview=gtk_tree_view_new_with_model(GTK_TREE_MODEL(c->liststore)); GtkCellRenderer *renderer; GtkTreeViewColumn *column; renderer=gtk_cell_renderer_text_new(); column=gtk_tree_view_column_new_with_attributes(_("Path"),renderer,"text",0,NULL); gtk_tree_view_append_column(GTK_TREE_VIEW(c->treeview),column); gtk_container_add(GTK_CONTAINER(sw),c->treeview); gtk_widget_show(c->treeview); patheditor_set_paths(c,sp); GtkWidget *hbox=gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(c),hbox,FALSE,FALSE,0); gtk_widget_show(hbox); GtkWidget *addbutton,*removebutton; addbutton=gtk_button_new_with_label(_("Add...")); gtk_box_pack_start(GTK_BOX(hbox),addbutton,TRUE,TRUE,0); g_signal_connect(addbutton,"clicked",G_CALLBACK(patheditor_addpath),c); gtk_widget_show(addbutton); removebutton=gtk_button_new_with_label(_("Remove")); gtk_box_pack_start(GTK_BOX(hbox),removebutton,TRUE,TRUE,0); g_signal_connect(removebutton,"clicked",G_CALLBACK(patheditor_removepath),c); gtk_widget_show(removebutton); return(GTK_WIDGET(c)); } GType patheditor_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo patheditor_info = { sizeof (PathEditorClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) patheditor_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (PathEditor), 0, (GInstanceInitFunc) patheditor_init, }; stpuic_type = g_type_register_static (GTK_TYPE_VBOX, "PathEditor", &patheditor_info, GTypeFlags(0)); } return stpuic_type; } static void patheditor_class_init (PathEditorClass *klass) { patheditor_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (klass), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (PathEditorClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void patheditor_init (PathEditor *c) { c->list=NULL; c->entry=NULL; c->pathlist=NULL; c->searchpathhandler=NULL; } gboolean patheditor_refresh(PathEditor *c) { return(true); } void patheditor_get_paths(PathEditor *p,SearchPathHandler *sp) { GtkTreeIter iter; gboolean valid; valid=gtk_tree_model_get_iter_first(GTK_TREE_MODEL(p->liststore),&iter); sp->ClearPaths(); while(valid) { gchar *path; gtk_tree_model_get(GTK_TREE_MODEL(p->liststore),&iter,0,&path,-1); cerr << "Adding: " << path << endl; sp->AddPath(path); valid=gtk_tree_model_iter_next(GTK_TREE_MODEL(p->liststore),&iter); } } void patheditor_set_paths(PathEditor *p,SearchPathHandler *sp) { p->searchpathhandler=sp; GtkTreeIter iter1; SearchPathIterator spi(*sp); const char *path=spi.GetNextPath(NULL); while(path) { gtk_list_store_append(p->liststore,&iter1); gtk_list_store_set(p->liststore,&iter1,0,path,-1); path=spi.GetNextPath(path); } } photoprint-0.4.2-pre2/miscwidgets/dabdata.cpp0000644000175000017500000001463611326564752016145 00000000000000/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ #ifdef __SUNPRO_C #pragma align 4 (dab_data) #endif #ifdef __GNUC__ static const guint8 dab_data[] __attribute__ ((__aligned__ (4))) = #else static const guint8 dab_data[] = #endif { "" /* Pixbuf magic (0x47646b50) */ "GdkP" /* length: header (24) + pixel_data (1707) */ "\0\0\6\303" /* pixdata_type (0x2010002) */ "\2\1\0\2" /* rowstride (96) */ "\0\0\0`" /* width (24) */ "\0\0\0\30" /* height (24) */ "\0\0\0\30" /* pixel_data: */ "\214\0\0\0\377\3\2\2\2\377\4\4\4\377\7\7\7\377\202\10\10\10\377\3\6\6" "\6\377\3\3\3\377\1\1\1\377\216\0\0\0\377\13\3\3\3\377\14\14\14\377\31" "\31\31\377&&&\377...\377000\377---\377'''\377\32\32\32\377\15\15\15\377" "\3\3\3\377\213\0\0\0\377\16\2\2\2\377\15\15\15\377###\377AAA\377```\377" "rrr\377www\377sss\377hhh\377[[[\377JJJ\377333\377\31\31\31\377\6\6\6" "\377\211\0\0\0\377\20\5\5\5\377\31\31\31\377BBB\377ttt\377\230\230\230" "\377\251\251\251\377\256\256\256\377\255\255\255\377\246\246\246\377" "\233\233\233\377\213\213\213\377{{{\377jjj\377JJJ\377!!!\377\5\5\5\377" "\207\0\0\0\377\22\10\10\10\377###\377]]]\377\233\233\233\377\273\273" "\273\377\310\310\310\377\314\314\314\377\316\316\316\377\317\317\317" "\377\314\314\314\377\300\300\300\377\256\256\256\377\235\235\235\377" "\223\223\223\377\202\202\202\377SSS\377\31\31\31\377\1\1\1\377\205\0" "\0\0\377\11\10\10\10\377)))\377mmm\377\261\261\261\377\320\320\320\377" "\334\334\334\377\341\341\341\377\344\344\344\377\350\350\350\377\202" "\352\352\352\377\10\341\341\341\377\314\314\314\377\267\267\267\377\253" "\253\253\377\244\244\244\377\205\205\205\377999\377\6\6\6\377\204\0\0" "\0\377\12\7\7\7\377)))\377ppp\377\270\270\270\377\333\333\333\377\347" "\347\347\377\354\354\354\377\360\360\360\377\363\363\363\377\366\366" "\366\377\202\370\370\370\377\10\364\364\364\377\345\345\345\377\317\317" "\317\377\277\277\277\377\267\267\267\377\237\237\237\377VVV\377\16\16" "\16\377\203\0\0\0\377\12\3\3\3\377\40\40\40\377eee\377\261\261\261\377" "\334\334\334\377\354\354\354\377\362\362\362\377\364\364\364\377\370" "\370\370\377\373\373\373\377\203\375\375\375\377\10\373\373\373\377\363" "\363\363\377\337\337\337\377\316\316\316\377\304\304\304\377\253\253" "\253\377___\377\20\20\20\377\202\0\0\0\377\12\1\1\1\377\24\24\24\377" "NNN\377\240\240\240\377\325\325\325\377\355\355\355\377\365\365\365\377" "\367\367\367\377\372\372\372\377\374\374\374\377\204\376\376\376\377" "\10\375\375\375\377\371\371\371\377\352\352\352\377\332\332\332\377\315" "\315\315\377\255\255\255\377XXX\377\15\15\15\377\202\0\0\0\377\12\11" "\11\11\377666\377\204\204\204\377\304\304\304\377\347\347\347\377\365" "\365\365\377\371\371\371\377\373\373\373\377\375\375\375\377\376\376" "\376\377\204\377\377\377\377\21\376\376\376\377\374\374\374\377\360\360" "\360\377\340\340\340\377\317\317\317\377\244\244\244\377CCC\377\6\6\6" "\377\0\0\0\377\2\2\2\377\36\36\36\377ccc\377\254\254\254\377\330\330" "\330\377\361\361\361\377\372\372\372\377\374\374\374\377\202\376\376" "\376\377\205\377\377\377\377\20\376\376\376\377\375\375\375\377\363\363" "\363\377\340\340\340\377\312\312\312\377\214\214\214\377&&&\377\1\1\1" "\377\0\0\0\377\12\12\12\377;;;\377\212\212\212\377\300\300\300\377\344" "\344\344\377\367\367\367\377\374\374\374\377\202\376\376\376\377\207" "\377\377\377\377\20\374\374\374\377\361\361\361\377\333\333\333\377\274" "\274\274\377aaa\377\15\15\15\377\0\0\0\377\1\1\1\377\27\27\27\377[[[" "\377\242\242\242\377\314\314\314\377\354\354\354\377\372\372\372\377" "\375\375\375\377\376\376\376\377\207\377\377\377\377\17\376\376\376\377" "\372\372\372\377\352\352\352\377\323\323\323\377\240\240\240\377333\377" "\2\2\2\377\0\0\0\377\3\3\3\377(((\377www\377\260\260\260\377\321\321" "\321\377\360\360\360\377\374\374\374\377\202\376\376\376\377\207\377" "\377\377\377\20\375\375\375\377\363\363\363\377\337\337\337\377\305\305" "\305\377ppp\377\25\25\25\377\1\1\1\377\0\0\0\377\6\6\6\377666\377\210" "\210\210\377\267\267\267\377\324\324\324\377\361\361\361\377\374\374" "\374\377\376\376\376\377\207\377\377\377\377\7\375\375\375\377\367\367" "\367\377\346\346\346\377\323\323\323\377\242\242\242\377999\377\7\7\7" "\377\202\0\0\0\377\10\10\10\10\377>>>\377\220\220\220\377\272\272\272" "\377\324\324\324\377\361\361\361\377\374\374\374\377\376\376\376\377" "\206\377\377\377\377\10\375\375\375\377\367\367\367\377\351\351\351\377" "\330\330\330\377\276\276\276\377eee\377\24\24\24\377\2\2\2\377\202\0" "\0\0\377\7\10\10\10\377@@@\377\221\221\221\377\272\272\272\377\322\322" "\322\377\354\354\354\377\372\372\372\377\203\376\376\376\377\202\377" "\377\377\377\11\376\376\376\377\374\374\374\377\366\366\366\377\352\352" "\352\377\333\333\333\377\314\314\314\377\211\211\211\377)))\377\4\4\4" "\377\203\0\0\0\377\24\6\6\6\377777\377\212\212\212\377\267\267\267\377" "\313\313\313\377\344\344\344\377\363\363\363\377\372\372\372\377\375" "\375\375\377\376\376\376\377\375\375\375\377\374\374\374\377\371\371" "\371\377\363\363\363\377\352\352\352\377\337\337\337\377\322\322\322" "\377\243\243\243\377@@@\377\10\10\10\377\204\0\0\0\377\23\3\3\3\377%" "%%\377uuu\377\256\256\256\377\304\304\304\377\331\331\331\377\347\347" "\347\377\361\361\361\377\365\365\365\377\366\366\366\377\364\364\364" "\377\361\361\361\377\353\353\353\377\343\343\343\377\333\333\333\377" "\321\321\321\377\252\252\252\377QQQ\377\17\17\17\377\205\0\0\0\377\23" "\1\1\1\377\21\21\21\377NNN\377\230\230\230\377\272\272\272\377\314\314" "\314\377\333\333\333\377\344\344\344\377\351\351\351\377\352\352\352" "\377\347\347\347\377\341\341\341\377\331\331\331\377\320\320\320\377" "\305\305\305\377\231\231\231\377JJJ\377\22\22\22\377\1\1\1\377\206\0" "\0\0\377\7\5\5\5\377$$$\377ggg\377\240\240\240\377\273\273\273\377\312" "\312\312\377\324\324\324\377\202\331\331\331\377\10\325\325\325\377\315" "\315\315\377\301\301\301\377\252\252\252\377xxx\377444\377\13\13\13\377" "\1\1\1\377\210\0\0\0\377\6\11\11\11\377***\377]]]\377\212\212\212\377" "\246\246\246\377\266\266\266\377\202\275\275\275\377\6\265\265\265\377" "\241\241\241\377yyy\377CCC\377\30\30\30\377\5\5\5\377\213\0\0\0\377\13" "\7\7\7\377\31\31\31\377333\377OOO\377ccc\377lll\377ggg\377SSS\377444" "\377\27\27\27\377\6\6\6\377\216\0\0\0\377\3\1\1\1\377\6\6\6\377\13\13" "\13\377\202\20\20\20\377\4\14\14\14\377\7\7\7\377\2\2\2\377\1\1\1\377" "\213\0\0\0\377"}; photoprint-0.4.2-pre2/miscwidgets/pixbufview.cpp0000644000175000017500000003463611372114210016734 00000000000000#include #include #include #include #include "pixbufview.h" #include "../support/debug.h" using namespace std; enum { CHANGED_SIGNAL, MOUSEMOVE_SIGNAL, LAST_SIGNAL }; static guint pixbufview_signals[LAST_SIGNAL] = { 0 }; static void pixbufview_class_init (PixbufViewClass *klass); static void pixbufview_init (PixbufView *pageview); static void pixbufview_realize (GtkWidget *widget); static void pixbufview_size_request (GtkWidget *widget, GtkRequisition *requisition); static void pixbufview_size_allocate (GtkWidget *widget, GtkAllocation *allocation); static gboolean pixbufview_expose (GtkWidget *widget, GdkEventExpose *event); static gboolean pixbufview_motion_notify( GtkWidget *widget,GdkEventMotion *event ); static gboolean pixbufview_button_release( GtkWidget *widget,GdkEventButton *event ); static gboolean pixbufview_button_press( GtkWidget *widget,GdkEventButton *event ); static void pixbufview_destroy(GtkObject *object); GType pixbufview_get_type () { static GType pageview_type = 0; if (!pageview_type) { static const GTypeInfo pageview_info = { sizeof (PixbufViewClass), NULL, NULL, (GClassInitFunc) pixbufview_class_init, NULL, NULL, sizeof (PixbufView), 0, (GInstanceInitFunc) pixbufview_init, }; pageview_type = g_type_register_static (GTK_TYPE_WIDGET, "PixbufView", &pageview_info, GTypeFlags(0)); } return pageview_type; } static void pixbufview_class_init (PixbufViewClass *cl) { GtkObjectClass *object_class; GtkWidgetClass *widget_class; object_class = (GtkObjectClass*) cl; widget_class = (GtkWidgetClass*) cl; object_class->destroy = pixbufview_destroy; widget_class->realize = pixbufview_realize; widget_class->expose_event = pixbufview_expose; widget_class->size_request = pixbufview_size_request; widget_class->size_allocate = pixbufview_size_allocate; widget_class->button_press_event = pixbufview_button_press; widget_class->button_release_event = pixbufview_button_release; widget_class->motion_notify_event = pixbufview_motion_notify; pixbufview_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (cl), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (PixbufViewClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); pixbufview_signals[MOUSEMOVE_SIGNAL] = g_signal_new ("mousemove", G_TYPE_FROM_CLASS (cl), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (PixbufViewClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } GtkWidget *pixbufview_new (GdkPixbuf *pb,bool scaletofit) { PixbufView *pv = PIXBUFVIEW(g_object_new (pixbufview_get_type (), NULL)); pv->currentpage=0; pixbufview_set_scale(pv,scaletofit); if(pb) pixbufview_set_pixbuf(pv,pb); return GTK_WIDGET (pv); } static void pixbufview_realize (GtkWidget *widget) { PixbufView *pageview; GdkWindowAttr attributes; gint attributes_mask; g_return_if_fail (widget != NULL); g_return_if_fail (IS_PIXBUFVIEW (widget)); GTK_WIDGET_SET_FLAGS (widget, GTK_REALIZED); pageview = PIXBUFVIEW (widget); attributes.x = widget->allocation.x; attributes.y = widget->allocation.y; attributes.width = widget->allocation.width; attributes.height = widget->allocation.height; attributes.wclass = GDK_INPUT_OUTPUT; attributes.window_type = GDK_WINDOW_CHILD; attributes.event_mask = gtk_widget_get_events (widget) | GDK_EXPOSURE_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK; attributes.visual = gtk_widget_get_visual (widget); attributes.colormap = gtk_widget_get_colormap (widget); attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL | GDK_WA_COLORMAP; widget->window = gdk_window_new (widget->parent->window, &attributes, attributes_mask); widget->style = gtk_style_attach (widget->style, widget->window); gdk_window_set_user_data (widget->window, widget); gtk_style_set_background (widget->style, widget->window, GTK_STATE_ACTIVE); } static void pixbufview_size_request (GtkWidget *widget, GtkRequisition *requisition) { requisition->width = 128; requisition->height = 128; } static void pixbufview_size_allocate (GtkWidget *widget, GtkAllocation *allocation) { g_return_if_fail (widget != NULL); g_return_if_fail (IS_PIXBUFVIEW (widget)); g_return_if_fail (allocation != NULL); widget->allocation = *allocation; PixbufView *pv=PIXBUFVIEW(widget); if (GTK_WIDGET_REALIZED (widget)) { gdk_window_move_resize (widget->window, allocation->x, allocation->y, allocation->width, allocation->height); pv->resized=true; } } static void draw_scaled(GtkWidget *widget,GdkEventExpose *event) { PixbufView *pv=PIXBUFVIEW(widget); if(pv->resized) { if(pv->pb_scaled) g_object_unref(G_OBJECT(pv->pb_scaled)); pv->pb_scaled=NULL; GdkPixbuf *pb=pixbufview_get_pixbuf(pv,pv->currentpage); if(pb) { int height=widget->allocation.height; int width=widget->allocation.width; int pw=gdk_pixbuf_get_width(pb); int ph=gdk_pixbuf_get_height(pb); int nw,nh; nh=height; nw=(pw*nh)/ph; if(nw>width) { nw=width; nh=(ph*nw)/pw; } pv->pb_scaled=gdk_pixbuf_scale_simple(pb,nw,nh,GDK_INTERP_BILINEAR); pv->resized=false; } } int height=widget->allocation.height; int width=widget->allocation.width; gdk_draw_rectangle (widget->window, widget->style->bg_gc[widget->state],TRUE, 0,0,width,height); if(pv->pb_scaled) { int height=widget->allocation.height; int width=widget->allocation.width; int pw=gdk_pixbuf_get_width(pv->pb_scaled); int ph=gdk_pixbuf_get_height(pv->pb_scaled); gdk_draw_pixbuf(widget->window,NULL,pv->pb_scaled, 0,0, (width-pw)/2,(height-ph)/2, pw,ph, GDK_RGB_DITHER_NONE,0,0); } } static void draw_panned(GtkWidget *widget,GdkEventExpose *event) { PixbufView *pv=PIXBUFVIEW(widget); int height=widget->allocation.height; int width=widget->allocation.width; gdk_draw_rectangle (widget->window, widget->style->bg_gc[widget->state],TRUE, 0,0,width,height); GdkPixbuf *pb=pixbufview_get_pixbuf(pv,pv->currentpage); if(pb) { int height=widget->allocation.height; int width=widget->allocation.width; int pw=gdk_pixbuf_get_width(pb); int ph=gdk_pixbuf_get_height(pb); int xo=0; int yo=0; int xt=0; int yt=0; if(pwxoffset<0) pv->xoffset=0; if((pv->xoffset+width)>pw) pv->xoffset=pw-width; xo=pv->xoffset; } if(phyoffset<0) pv->yoffset=0; if((pv->yoffset+height)>ph) pv->yoffset=ph-height; yo=pv->yoffset; } gdk_draw_pixbuf(widget->window,NULL,pb, xo,yo, xt,yt, pw-xo,ph-yo, GDK_RGB_DITHER_NONE,0,0); } } static gboolean pixbufview_expose( GtkWidget *widget, GdkEventExpose *event ) { PixbufView *pv=PIXBUFVIEW(widget); g_return_val_if_fail (widget != NULL, FALSE); g_return_val_if_fail (IS_PIXBUFVIEW (widget), FALSE); g_return_val_if_fail (event != NULL, FALSE); if (event->count > 0) return FALSE; if(pv->scaletofit) draw_scaled(widget,event); else draw_panned(widget,event); return FALSE; } static gboolean pixbufview_button_press( GtkWidget *widget, GdkEventButton *event ) { PixbufView *pv; g_return_val_if_fail (widget != NULL, FALSE); g_return_val_if_fail (PIXBUFVIEW(widget), FALSE); g_return_val_if_fail (event != NULL, FALSE); pv = PIXBUFVIEW(widget); switch(event->button) { case 1: pv->dragging=true; int x,y; GdkModifierType mods; gdk_window_get_pointer (widget->window, &x, &y, &mods); pv->prev_x=x; pv->prev_y=y; gtk_grab_add(widget); break; case 3: break; default: break; } return FALSE; } static gboolean pixbufview_button_release( GtkWidget *widget, GdkEventButton *event ) { PixbufView *pageview; g_return_val_if_fail (widget != NULL, FALSE); g_return_val_if_fail (IS_PIXBUFVIEW (widget), FALSE); g_return_val_if_fail (event != NULL, FALSE); pageview = PIXBUFVIEW(widget); switch(event->button) { case 1: pageview->dragging=false; gtk_grab_remove(widget); break; case 3: pageview->scaletofit=!pageview->scaletofit; { GdkPixbuf *pb=pixbufview_get_pixbuf(pageview,pageview->currentpage); if(pb) { int height=widget->allocation.height; int width=widget->allocation.width; int pw=gdk_pixbuf_get_width(pb); int ph=gdk_pixbuf_get_height(pb); int x,y; GdkModifierType mods; gdk_window_get_pointer (widget->window, &x, &y, &mods); // Work out which pixel of the image was clicked on. int nw,nh; nh=height; nw=(pw*nh)/ph; if(nw>width) { nw=width; nh=(ph*nw)/pw; } if(pw>width) { int cx=(pw*(x-(width-nw)/2))/nw; pageview->xoffset=cx-width/2; } if(ph>height) { int cy=(ph*(y-(height-nh)/2))/nh; pageview->yoffset=cy-height/2; } gtk_widget_queue_draw (GTK_WIDGET (pageview)); } } break; default: break; } g_signal_emit_by_name (GTK_OBJECT (pageview), "changed"); return FALSE; } static gboolean pixbufview_motion_notify( GtkWidget *widget, GdkEventMotion *event ) { PixbufView *pageview; g_return_val_if_fail (widget != NULL, FALSE); g_return_val_if_fail (IS_PIXBUFVIEW(widget), FALSE); g_return_val_if_fail (event != NULL, FALSE); pageview = PIXBUFVIEW(widget); if (pageview->dragging && !pageview->scaletofit) { int x,y; GdkModifierType mods; gdk_window_get_pointer (widget->window, &x, &y, &mods); int dx=(x-pageview->prev_x); int dy=(y-pageview->prev_y); pageview->prev_x=x; pageview->prev_y=y; pageview->xoffset-=dx; if(pageview->xoffset<0) pageview->xoffset=0; pageview->yoffset-=dy; if(pageview->yoffset<0) pageview->yoffset=0; gtk_widget_queue_draw (GTK_WIDGET (pageview)); g_signal_emit_by_name (GTK_OBJECT (pageview), "mousemove"); } else { int x,y; GdkModifierType mods; gdk_window_get_pointer (widget->window, &x, &y, &mods); GdkPixbuf *pb=pixbufview_get_pixbuf(pageview,pageview->currentpage); if(pb) { int pw=gdk_pixbuf_get_width(pb); int ph=gdk_pixbuf_get_height(pb); int height=widget->allocation.height; int width=widget->allocation.width; if(pageview->scaletofit) { // Calculate scaled size... int nw,nh; nh=height; nw=(pw*nh)/ph; if(nw>width) { nw=width; nh=(ph*nw)/pw; } x-=(width-nw)/2; y-=(height-nh)/2; pageview->mousex=(x*pw)/nw; pageview->mousey=(y*ph)/nh; } else { if(pwmousex=x+pageview->xoffset; pageview->mousey=y+pageview->yoffset; } if(pageview->mousex<0) pageview->mousex=0; if(pageview->mousey<0) pageview->mousey=0; if(pageview->mousex>=pw) pageview->mousex=pw-1; if(pageview->mousey>=ph) pageview->mousey=ph-1; g_signal_emit_by_name (GTK_OBJECT (pageview), "changed"); } } return FALSE; } static void *parent_class=NULL; static void pixbufview_destroy(GtkObject *object) { if(object && IS_PIXBUFVIEW(object)) { if (GTK_OBJECT_CLASS (parent_class)->destroy) (* GTK_OBJECT_CLASS (parent_class)->destroy) (object); // FIXME - cleanup? Memory leak here? pixbufview_clear_pages(PIXBUFVIEW(object)); } } static void pixbufview_init (PixbufView *pv) { parent_class = gtk_type_class (gtk_widget_get_type ()); pv->pb_scaled=NULL; pv->resized=false; pv->xoffset=0; pv->yoffset=0; new (&pv->pages) std::deque; } void pixbufview_refresh(PixbufView *pv) { pv->resized=true; gtk_widget_queue_draw (GTK_WIDGET (pv)); } void pixbufview_set_pixbuf(PixbufView *pv,GdkPixbuf *pb,unsigned int page) { // pixbufview_clear_pages(pv); // pixbufview_add_page(pv,pb); Debug[TRACE] << "Setting image on page " << page << " - list has " << pv->pages.size() << " entries" << endl; // If we're trying to set the image of a page that doesn't exist // we need to create pages until it does! int newpages=(page+1); newpages-=pv->pages.size(); for(int i=0;icurrentpage) // Is this the current page? { if(pv->pb_scaled) g_object_unref(G_OBJECT(pv->pb_scaled)); pv->pb_scaled=NULL; refresh=true; } if(pv->pages[page]) g_object_unref(G_OBJECT(pv->pages[page])); pv->pages[page]=pb; if(pb) g_object_ref(G_OBJECT(pb)); if(refresh) pixbufview_refresh(pv); } int pixbufview_get_xoffset(PixbufView *pv) { if(pv) return(pv->xoffset); else return(0); } int pixbufview_get_yoffset(PixbufView *pv) { if(pv) return(pv->yoffset); else return(0); } bool pixbufview_get_scale(PixbufView *pv) { if(pv) return(pv->scaletofit); else return(false); } void pixbufview_set_offset(PixbufView *pv,int xoff,int yoff) { if(pv) { pv->xoffset=xoff; pv->yoffset=yoff; } } void pixbufview_set_scale(PixbufView *pv,bool scaletofit) { if(pv) { pv->scaletofit=scaletofit; } } void pixbufview_add_page(PixbufView *pv,GdkPixbuf *pb) { Debug[TRACE] << "Adding page with pixbuf " << (long)pb << endl; pv->pages.push_back(pb); if(pb) { g_object_ref(G_OBJECT(pb)); pixbufview_set_page(pv,pv->pages.size()-1); } } void pixbufview_set_page(PixbufView *pv,unsigned int page) { Debug[TRACE] << "Setting pview page to " << page << endl; if(pagepages.size()) { if(pv->pb_scaled) g_object_unref(G_OBJECT(pv->pb_scaled)); pv->pb_scaled=NULL; pv->currentpage=page; Debug[TRACE] << "Refreshing..." << endl; pixbufview_refresh(pv); } } void pixbufview_clear_pages(PixbufView *pv) { if(pv->pb_scaled) g_object_unref(G_OBJECT(pv->pb_scaled)); pv->pb_scaled=NULL; while(pv->pages.size()) { if(pv->pages[0]) g_object_unref(G_OBJECT(pv->pages[0])); pv->pages.pop_front(); } } GdkPixbuf *pixbufview_get_pixbuf(PixbufView *pv,unsigned int page) { GdkPixbuf *result=NULL; if(pagepages.size()) result=pv->pages[page]; return(result); } int pixbufview_get_mousex(PixbufView *pv) { if(pv) return(pv->mousex); return(0); } int pixbufview_get_mousey(PixbufView *pv) { if(pv) return(pv->mousey); return(0); } photoprint-0.4.2-pre2/miscwidgets/spinner8.cpp0000644000175000017500000000635111330153377016316 00000000000000/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ #ifdef __SUNPRO_C #pragma align 4 (spinner8_data) #endif #ifdef __GNUC__ static const guint8 spinner8_data[] __attribute__ ((__aligned__ (4))) = #else static const guint8 spinner8_data[] = #endif { "" /* Pixbuf magic (0x47646b50) */ "GdkP" /* length: header (24) + pixel_data (1143) */ "\0\0\4\217" /* pixdata_type (0x2010002) */ "\2\1\0\2" /* rowstride (80) */ "\0\0\0P" /* width (20) */ "\0\0\0\24" /* height (20) */ "\0\0\0\24" /* pixel_data: */ "\210\0\0\0\0\1\0\0\0\2\202\0\0\0\34\1\0\0\0\2\212\0\0\0\0\3\0\0\0\1\0" "\0\0\17\0\0\0\1\203\0\0\0\0\1\0\0\0\2\202\0\0\0\36\1\0\0\0\2\204\0\0" "\0\0\1\0\0\0\4\204\0\0\0\0\5\0\0\0\1\0\0\0\40\0\0\0\316\0\0\0\40\0\0" "\0\1\202\0\0\0\0\1\0\0\0\2\202\0\0\0\36\1\0\0\0\2\203\0\0\0\0\3\0\0\0" "\11\0\0\0""4\0\0\0\11\203\0\0\0\0\10\0\0\0\17\0\0\0\316\0\0\0\373\0\0" "\0\337\0\0\0\40\0\0\0\1\0\0\0\0\0\0\0\2\202\0\0\0\36\1\0\0\0\2\202\0" "\0\0\0\5\0\0\0\11\0\0\0""9\0\0\0C\0\0\0""4\0\0\0\4\202\0\0\0\0\10\0\0" "\0\1\0\0\0\40\0\0\0\337\0\0\0\374\0\0\0\337\0\0\0\40\0\0\0\1\0\0\0\2" "\202\0\0\0\36\7\0\0\0\2\0\0\0\0\0\0\0\11\0\0\0""8\0\0\0B\0\0\0""9\0\0" "\0\11\204\0\0\0\0\7\0\0\0\1\0\0\0\40\0\0\0\337\0\0\0\374\0\0\0\337\0" "\0\0\40\0\0\0\3\202\0\0\0\36\6\0\0\0\2\0\0\0\11\0\0\0""9\0\0\0@\0\0\0" "9\0\0\0\11\206\0\0\0\0\6\0\0\0\1\0\0\0\40\0\0\0\337\0\0\0\374\0\0\0\336" "\0\0\0\23\202\0\0\0\34\5\0\0\0\7\0\0\0""8\0\0\0A\0\0\0""8\0\0\0\11\210" "\0\0\0\0\5\0\0\0\1\0\0\0\40\0\0\0\336\0\0\0\334\0\0\0\21\202\0\0\0\2" "\4\0\0\0\5\0\0\0""8\0\0\0""9\0\0\0\11\205\0\0\0\0\1\0\0\0\17\204\0\0" "\0\20\4\0\0\0\21\0\0\0\37\0\0\0\22\0\0\0\1\203\0\0\0\0\2\0\0\0\5\0\0" "\0\13\205\0\0\0\7\2\0\0\0\6\0\0\0\301\205\0\0\0\320\2\0\0\0\301\0\0\0" "\17\204\0\0\0\0\2\0\0\0\7\0\0\0S\205\0\0\0Y\3\0\0\0S\0\0\0\301\0\0\0" "\321\204\0\0\0\320\2\0\0\0\301\0\0\0\17\204\0\0\0\0\2\0\0\0\7\0\0\0T" "\205\0\0\0Y\2\0\0\0T\0\0\0\17\204\0\0\0\20\4\0\0\0\21\0\0\0\33\0\0\0" "\16\0\0\0\1\202\0\0\0\0\3\0\0\0\1\0\0\0\11\0\0\0\17\205\0\0\0\7\1\0\0" "\0\6\204\0\0\0\0\5\0\0\0\1\0\0\0\31\0\0\0\246\0\0\0\245\0\0\0\16\202" "\0\0\0\13\5\0\0\0\11\0\0\0o\0\0\0q\0\0\0\20\0\0\0\1\207\0\0\0\0\16\0" "\0\0\1\0\0\0\31\0\0\0\247\0\0\0\276\0\0\0\246\0\0\0\30\0\0\0\221\0\0" "\0\213\0\0\0\23\0\0\0p\0\0\0\205\0\0\0q\0\0\0\20\0\0\0\1\205\0\0\0\0" "\20\0\0\0\1\0\0\0\31\0\0\0\247\0\0\0\276\0\0\0\250\0\0\0\31\0\0\0\15" "\0\0\0\227\0\0\0\226\0\0\0\14\0\0\0\20\0\0\0q\0\0\0\177\0\0\0p\0\0\0" "\20\0\0\0\1\203\0\0\0\0\22\0\0\0\1\0\0\0\31\0\0\0\247\0\0\0\276\0\0\0" "\247\0\0\0\31\0\0\0\1\0\0\0\14\0\0\0\227\0\0\0\226\0\0\0\13\0\0\0\1\0" "\0\0\20\0\0\0p\0\0\0\203\0\0\0q\0\0\0\20\0\0\0\1\202\0\0\0\0\22\0\0\0" "\14\0\0\0\233\0\0\0\275\0\0\0\247\0\0\0\31\0\0\0\1\0\0\0\0\0\0\0\14\0" "\0\0\230\0\0\0\225\0\0\0\13\0\0\0\0\0\0\0\1\0\0\0\20\0\0\0p\0\0\0~\0" "\0\0h\0\0\0\10\202\0\0\0\0\5\0\0\0\1\0\0\0\31\0\0\0\233\0\0\0\31\0\0" "\0\1\202\0\0\0\0\4\0\0\0\13\0\0\0\225\0\0\0\226\0\0\0\13\202\0\0\0\0" "\5\0\0\0\1\0\0\0\20\0\0\0h\0\0\0\20\0\0\0\1\203\0\0\0\0\3\0\0\0\1\0\0" "\0\14\0\0\0\1\203\0\0\0\0\4\0\0\0\13\0\0\0\225\0\0\0\226\0\0\0\13\203" "\0\0\0\0\3\0\0\0\1\0\0\0\10\0\0\0\1\212\0\0\0\0\4\0\0\0\12\0\0\0\212" "\0\0\0\213\0\0\0\12\210\0\0\0\0"}; photoprint-0.4.2-pre2/miscwidgets/coloranttoggle.h0000644000175000017500000000475111331077547017247 00000000000000#ifndef __COLORANTTOGGLE_H__ #define __COLORANTTOGGLE_H__ #include #include #include #include #include #include #include #include #include #include #include #include #include "imagesource/devicencolorant.h" #define COLORANTTOGGLE_TYPE (coloranttoggle_get_type()) #define COLORANTTOGGLE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), COLORANTTOGGLE_TYPE, ColorantToggle)) #define COLORANTTOGGLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), COLORANTTOGGLE_TYPE, ColorantToggleClass)) #define IS_COLORANTTOGGLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), COLORANTTOGGLE_TYPE)) #define IS_COLORANTTOGGLE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), COLORANTTOGGLE_TYPE)) typedef struct _ColorantToggle ColorantToggle; typedef struct _ColorantToggleClass ColorantToggleClass; class ToggleData { public: ToggleData(ColorantToggle *toggle,DeviceNColorant &col) : toggle(toggle), button(NULL), canvas(NULL), col(col), level(-1) { canvas = gtk_drawing_area_new(); gtk_widget_set_size_request(canvas,20,20); g_signal_connect(G_OBJECT (canvas), "expose-event",G_CALLBACK(paint), this); gtk_widget_show(canvas); button=gtk_check_button_new(); gtk_button_set_image(GTK_BUTTON(button),canvas); gtk_box_pack_start(GTK_BOX(toggle),button,FALSE,FALSE,0); g_signal_connect(G_OBJECT(button),"toggled",G_CALLBACK(toggled),this); gtk_widget_show(button); // gtk_box_pack_start(GTK_BOX(toggle),canvas,TRUE,TRUE,0); } ~ToggleData() { gtk_widget_destroy(GTK_WIDGET(button)); } static void toggled(GtkWidget *wid,gpointer user_data); static void paint(GtkWidget *widget,GdkEventExpose *eev,gpointer userdata); void redraw(int level=-1); void refresh(); protected: ColorantToggle *toggle; GtkWidget *button; GtkWidget *canvas; DeviceNColorant &col; int level; }; struct _ColorantToggle { GtkHBox box; std::deque buttons; GtkWidgetClass *parent_class; }; struct _ColorantToggleClass { GtkHBoxClass parent_class; void (*changed)(ColorantToggle *es); }; GType coloranttoggle_get_type (void); GtkWidget* coloranttoggle_new(DeviceNColorantList *list); void coloranttoggle_refresh(ColorantToggle *c); void coloranttoggle_set_colorants(ColorantToggle *c,DeviceNColorantList *list); void coloranttoggle_set_value(ColorantToggle *c,ISDeviceNValue &value); #endif /* __COLORANTTOGGLE_H__ */ photoprint-0.4.2-pre2/layout_imageinfo.h0000644000175000017500000000714211317630315015222 00000000000000#ifndef LAYOUT_IMAGEINFO_H #define LAYOUT_IMAGEINFO_H #include #include #include #include #include "profilemanager/profilemanager.h" #include "imagesource/imagesource.h" #include "stpui_widgets/units.h" #include "support/pageextent.h" #include "support/layoutrectangle.h" #include "support/thread.h" #include "support/threadevent.h" #include "support/jobqueue.h" #include "effects/ppeffect.h" #include "cmtransformworker.h" #include "miscwidgets/refcountui.h" #include "histogram.h" #include "layoutdb.h" class Layout; class PhotoPrint_State; class Progress; class ImageInfo_Worker : public CMTransformWorker { public: ImageInfo_Worker(JobQueue &queue,ProfileManager &pm) : CMTransformWorker(queue,pm) { } virtual ~ImageInfo_Worker() { } }; class HRRenderJob; class hr_payload; class Layout_ImageInfo : public PPEffectHeader, public RefCountUI { public: Layout_ImageInfo(Layout &layout,const char *filename,int page,bool allowcropping=false,PP_ROTATION rotation=PP_ROTATION_AUTO); Layout_ImageInfo(Layout &layout,Layout_ImageInfo *oldii,int page); // Housekeeping virtual ~Layout_ImageInfo(); virtual bool GetSelected(); virtual void SetSelected(bool sel); virtual void ToggleSelected(); virtual void ObtainMutex(); // Overriding the inherited ObtainMutex exclusive lock // method allows for any running preview-generating // threads to be cancelled before locking for writing. // Image details virtual const char *GetFilename(); virtual int GetWidth(); virtual int GetHeight(); virtual int GetXRes(); virtual int GetYRes(); virtual LayoutRectangle *GetBounds(); // The dimensions of the image's "slot". virtual RectFit *GetFit(double scale); // Details of the image's size after fitting to its slot. virtual void SetMask(const char *filename); virtual ImageSource *ApplyMask(ImageSource *is); virtual void AssignProfile(const char *filename); virtual const char *GetAssignedProfile(); virtual void SetRenderingIntent(LCMSWrapper_Intent intent); virtual LCMSWrapper_Intent GetRenderingIntent(); virtual ImageSource *GetImageSource(CMColourDevice target=CM_COLOURDEVICE_PRINTER,CMTransformFactory *factory=NULL); // Thumbnail/preview related virtual GdkPixbuf *GetThumbnail(); virtual void DrawThumbnail(GtkWidget *widget,int xpos,int ypos,int width,int height); virtual void FlushThumbnail(); // Top-level flush routine - flushes low and high-res previews, and cancels render thread virtual void FlushHRPreview(); // Flushes just the high-res preview, cancels thread virtual void CancelRenderThread(); // Cancels rendering thread. // WARNING - for efficiency, these routines may return before a rendering thread // has actually finished running. Thus, you should call ObtainMutex() on this // before freeing anything on which the rendering thread may depend - such as the // transform factory. virtual void SetHRPreview(GdkPixbuf *preview); // Called by idle handler once render thread has completed. virtual PPHistogram &GetHistogram(); int page; bool allowcropping; LayoutRectangle_Alignment crop_hpan; LayoutRectangle_Alignment crop_vpan; enum PP_ROTATION rotation; Layout &layout; protected: char *filename; char *maskfilename; int width,height; double xres,yres; GdkPixbuf *thumbnail; GdkPixbuf *mask; GdkPixbuf *hrpreview; bool selected; char *customprofile; LCMSWrapper_Intent customintent; // hr_payload *hrrenderthread; ThreadEventHandler threadevents; PPHistogram histogram; Job *hrrenderjob; friend class Layout; friend class hr_payload; friend class HRRenderJob; }; #endif photoprint-0.4.2-pre2/printpreview.cpp0000644000175000017500000002103411306464324014757 00000000000000 /* * dialogs.cpp - routines to handle PhotoPrint's dialogs - namely: * Print setup * Colour Management setup * * Copyright (c) 2004-2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include "miscwidgets/generaldialogs.h" #include "miscwidgets/pixbufview.h" #include "miscwidgets/simplecombo.h" #include "support/debug.h" #include "progressbar.h" #include "support/util.h" #include "imagesource/pixbuf_from_imagesource.h" #include "config.h" #include "gettext.h" #define _(x) gettext(x) #include "dialogs.h" using namespace std; class printpreviewprogress : public Progress { public: printpreviewprogress(const char *message,GtkWidget *parent) : Progress(), message(NULL), label(NULL) { if(message) this->message=strdup(message); window=gtk_window_new(GTK_WINDOW_POPUP); if(parent) gtk_window_set_transient_for(GTK_WINDOW(window),GTK_WINDOW(parent)); gtk_window_set_default_size(GTK_WINDOW(window),150,30); gtk_window_set_position(GTK_WINDOW(window),GTK_WIN_POS_CENTER_ON_PARENT); gtk_widget_show(window); gtk_container_set_border_width(GTK_CONTAINER(window),10); GtkWidget *vbox=gtk_vbox_new(FALSE,0); gtk_container_add(GTK_CONTAINER(window),vbox); gtk_widget_show(vbox); if(this->message) { label=gtk_label_new(this->message); gtk_label_set_justify(GTK_LABEL(label),GTK_JUSTIFY_CENTER); gtk_box_pack_start(GTK_BOX(vbox),label,FALSE,FALSE,0); gtk_widget_show(label); } progressbar=gtk_progress_bar_new(); gtk_box_pack_start(GTK_BOX(vbox),progressbar,FALSE,FALSE,0); gtk_widget_show(progressbar); DoProgress(0,1); } ~printpreviewprogress() { if(message) free(message); gtk_widget_destroy(window); } bool DoProgress(int i,int maxi) { Progress::DoProgress(i,maxi); if(maxi) { float v=i; v/=maxi; gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(progressbar),v); } else gtk_progress_bar_pulse(GTK_PROGRESS_BAR(progressbar)); while(gtk_events_pending()) gtk_main_iteration_do(false); return(true); } void SetMessage(const char *msg) { if(message) free(message); message=NULL; if(msg) message=strdup(msg); if(label) gtk_label_set_text(GTK_LABEL(label),message); } protected: GtkWidget *window; char *message; GtkWidget *label; GtkWidget *progressbar; }; class printpreviewdata { public: printpreviewdata(PhotoPrint_State &state) : state(state) { factory=state.profilemanager.GetTransformFactory(); window=gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_window_set_default_size(GTK_WINDOW(window),800,600); gtk_widget_set_name(GTK_WIDGET(window),"PrintPreview"); gtk_window_fullscreen(GTK_WINDOW(window)); g_signal_connect(G_OBJECT(window),"delete-event",G_CALLBACK(deleteevent),this); pview=pixbufview_new(NULL,false); gtk_container_add(GTK_CONTAINER(window),pview); gtk_widget_show_all(window); popupshown=false; popup=gtk_window_new(GTK_WINDOW_POPUP); gtk_window_set_transient_for(GTK_WINDOW(popup),GTK_WINDOW(window)); GtkWidget *vbox=gtk_vbox_new(FALSE,0); gtk_container_set_border_width(GTK_CONTAINER(popup),8); gtk_container_add(GTK_CONTAINER(popup),vbox); g_signal_connect(G_OBJECT(popup),"delete-event",G_CALLBACK(deleteevent),this); GtkWidget *tmp; GtkWidget *hbox=gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(vbox),hbox,FALSE,FALSE,0); tmp=gtk_label_new(_("Page:")); gtk_box_pack_start(GTK_BOX(hbox),tmp,FALSE,FALSE,0); pagewidget=gtk_spin_button_new_with_range(1,state.layout->GetPages(),1); g_signal_connect(G_OBJECT(pagewidget),"value-changed",G_CALLBACK(page_changed),this); gtk_box_pack_start(GTK_BOX(hbox),pagewidget,FALSE,FALSE,8); tmp=gtk_label_new(_("Preview resolution:")); gtk_box_pack_start(GTK_BOX(hbox),tmp,TRUE,TRUE,0); SimpleComboOptions opts; opts.Add("180",_("180 dots per inch")); opts.Add("240",_("240 dots per inch")); opts.Add("300",_("300 dots per inch")); opts.Add("360",_("360 dots per inch")); reswidget=simplecombo_new(opts); g_signal_connect(G_OBJECT(reswidget),"changed",G_CALLBACK(res_changed),this); gtk_box_pack_start(GTK_BOX(hbox),reswidget,FALSE,FALSE,8); tmp=gtk_label_new(_("Click-and-drag to pan around the preview.\nRight-click to toggle magnification.")); gtk_box_pack_start(GTK_BOX(hbox),tmp,TRUE,TRUE,24); tmp=gtk_button_new_with_label(_("Close")); g_signal_connect(G_OBJECT(tmp),"clicked",G_CALLBACK(closeclicked),this); gtk_box_pack_start(GTK_BOX(hbox),tmp,FALSE,FALSE,0); // gtk_widget_show_all(popup); g_signal_connect(G_OBJECT(window),"key-press-event",G_CALLBACK(keypress),this); g_signal_connect(G_OBJECT(window),"motion-notify-event",G_CALLBACK(mousemove),this); SetBG(); drawing=close=false; DrawPage(); } ~printpreviewdata() { gtk_widget_destroy(window); gtk_widget_destroy(popup); if(factory) delete factory; } void SetBG() { GdkColor bgcol; bgcol.pixel=0; bgcol.red=32767; bgcol.green=32767; bgcol.blue=32767; CMSProfile *targetprof; CMColourDevice target=CM_COLOURDEVICE_NONE; if((targetprof=state.profilemanager.GetProfile(CM_COLOURDEVICE_PRINTERPROOF))) target=CM_COLOURDEVICE_PRINTERPROOF; else if((targetprof=state.profilemanager.GetProfile(CM_COLOURDEVICE_DISPLAY))) target=CM_COLOURDEVICE_DISPLAY; else if((targetprof=state.profilemanager.GetProfile(CM_COLOURDEVICE_DEFAULTRGB))) target=CM_COLOURDEVICE_DEFAULTRGB; if(targetprof) delete targetprof; if(target!=CM_COLOURDEVICE_NONE) { CMSTransform *transform=NULL; transform = factory->GetTransform(target,IS_TYPE_RGB,LCMSWRAPPER_INTENT_DEFAULT); if(transform) { ISDataType rgbtriple[3]; rgbtriple[0]=bgcol.red; rgbtriple[1]=bgcol.green; rgbtriple[2]=bgcol.blue; transform->Transform(rgbtriple,rgbtriple,1); bgcol.red=rgbtriple[0]; bgcol.green=rgbtriple[1]; bgcol.blue=rgbtriple[2]; } } gtk_widget_modify_bg(pview,GTK_STATE_NORMAL,&bgcol); } void DrawPage() { gtk_widget_set_sensitive(this->popup,false); drawing=true; int page=gtk_spin_button_get_value(GTK_SPIN_BUTTON(pagewidget)); int resolutions[]={180,240,300,360}; int idx=simplecombo_get_index(SIMPLECOMBO(reswidget)); int res=resolutions[idx]; printpreviewprogress prog(_("Drawing preview"),window); ImageSource *is=state.layout->GetImageSource(page-1,CM_COLOURDEVICE_PRINTERPROOF,factory,res,true); if(is) { GdkPixbuf *pb=pixbuf_from_imagesource(is,255,255,255,&prog); delete is; pixbufview_set_pixbuf(PIXBUFVIEW(pview),pb); g_object_unref(G_OBJECT(pb)); } else Debug[ERROR] << "Failed to obtain imagesource for page" << page << endl; gtk_widget_set_sensitive(this->popup,true); drawing=false; if(close) delete this; } static void page_changed(GtkWidget *wid,gpointer userdata) { printpreviewdata *pv=(printpreviewdata *)userdata; pv->DrawPage(); } static void res_changed(GtkWidget *wid,gpointer userdata) { printpreviewdata *pv=(printpreviewdata *)userdata; pv->DrawPage(); } static void closeclicked(GtkWidget *wid,gpointer userdata) { printpreviewdata *pv=(printpreviewdata *)userdata; pv->close=true; if(!pv->drawing) delete pv; } static gboolean deleteevent(GtkWidget *wid,GdkEvent *ev,gpointer userdata) { printpreviewdata *pv=(printpreviewdata *)userdata; pv->close=true; if(!pv->drawing) delete pv; return(TRUE); // Don't want the default deletion to happen as well! } static gboolean keypress(GtkWidget *widget,GdkEventKey *key, gpointer userdata) { printpreviewdata *pv=(printpreviewdata *)userdata; if(key->type == GDK_KEY_PRESS) { switch(key->keyval) { case GDK_Escape: delete pv; break; } } return FALSE; } static gboolean mousemove(GtkWidget *widget,GdkEventMotion *event, gpointer userdata) { printpreviewdata *pv=(printpreviewdata *)userdata; int x,y; GdkModifierType mods; gdk_window_get_pointer (widget->window, &x, &y, &mods); int w,h; gtk_window_get_size(GTK_WINDOW(pv->window),&w,&h); if(pv->popupshown && y>(h/8)) { gtk_widget_hide_all(pv->popup); pv->popupshown=false; } if(!pv->popupshown && y<(h/8)) { gtk_widget_show_all(pv->popup); pv->popupshown=true; } return(FALSE); } protected: PhotoPrint_State &state; GtkWidget *window; GtkWidget *popup; bool popupshown; GtkWidget *pview; GtkWidget *pagewidget; GtkWidget *reswidget; CMTransformFactory *factory; bool drawing; bool close; }; void PrintPreview_Dialog(GtkWindow *parent,PhotoPrint_State &state) { new printpreviewdata(state); } photoprint-0.4.2-pre2/histogram.h0000644000175000017500000000105011221660214013647 00000000000000#ifndef HISTOGRAM_H #define HISTOGRAM_H #include #include "imagesource/imagesource_histogram.h" #include "support/rwmutex.h" #include "support/threadevent.h" class PPHistogram : public ISHistogram, public RWMutex, public ThreadEvent { public: PPHistogram(ThreadEventHandler &header) : ISHistogram(), RWMutex(), ThreadEvent(header,"HistogramBuilt") { } ~PPHistogram() { ObtainMutex(); } virtual void ReleaseMutex() { RWMutex::ReleaseMutex(); } virtual GdkPixbuf *DrawHistogram(int w,int h); protected: }; #endif photoprint-0.4.2-pre2/po/0000777000175000017500000000000011400250524012205 500000000000000photoprint-0.4.2-pre2/po/insert-header.sin0000644000175000017500000000124011101462351015364 00000000000000# Sed script that inserts the file called HEADER before the header entry. # # At each occurrence of a line starting with "msgid ", we execute the following # commands. At the first occurrence, insert the file. At the following # occurrences, do nothing. The distinction between the first and the following # occurrences is achieved by looking at the hold space. /^msgid /{ x # Test if the hold space is empty. s/m/m/ ta # Yes it was empty. First occurrence. Read the file. r HEADER # Output the file's contents by reading the next line. But don't lose the # current line while doing this. g N bb :a # The hold space was nonempty. Following occurrences. Do nothing. x :b } photoprint-0.4.2-pre2/po/Rules-quot0000644000175000017500000000337611101462351014136 00000000000000# Special Makefile rules for English message catalogs with quotation marks. DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot .SUFFIXES: .insert-header .po-update-en en@quot.po-create: $(MAKE) en@quot.po-update en@boldquot.po-create: $(MAKE) en@boldquot.po-update en@quot.po-update: en@quot.po-update-en en@boldquot.po-update: en@boldquot.po-update-en .insert-header.po-update-en: @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \ if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`/../src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)/src && pwd`; export GETTEXTLIBDIR; fi; \ tmpdir=`pwd`; \ echo "$$lang:"; \ ll=`echo $$lang | sed -e 's/@.*//'`; \ LC_ALL=C; export LC_ALL; \ cd $(srcdir); \ if $(MSGINIT) -i $(DOMAIN).pot --no-translator -l $$ll -o - 2>/dev/null | sed -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | $(MSGFILTER) sed -f `echo $$lang | sed -e 's/.*@//'`.sed 2>/dev/null > $$tmpdir/$$lang.new.po; then \ if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ rm -f $$tmpdir/$$lang.new.po; \ else \ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ :; \ else \ echo "creation of $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ exit 1; \ fi; \ fi; \ else \ echo "creation of $$lang.po failed!" 1>&2; \ rm -f $$tmpdir/$$lang.new.po; \ fi en@quot.insert-header: insert-header.sin sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header en@boldquot.insert-header: insert-header.sin sed -e '/^#/d' -e 's/HEADER/en@boldquot.header/g' $(srcdir)/insert-header.sin > en@boldquot.insert-header mostlyclean: mostlyclean-quot mostlyclean-quot: rm -f *.insert-header photoprint-0.4.2-pre2/po/Makefile.in.in0000644000175000017500000003552411101462351014605 00000000000000# Makefile for PO directory in any package using GNU gettext. # Copyright (C) 1995-1997, 2000-2007 by Ulrich Drepper # # This file can be copied and used freely without restrictions. It can # be used in projects which are not available under the GNU General Public # License but which still want to provide support for the GNU gettext # functionality. # Please note that the actual code of GNU gettext is covered by the GNU # General Public License and is *not* in the public domain. # # Origin: gettext-0.17 GETTEXT_MACRO_VERSION = 0.17 PACKAGE = @PACKAGE@ VERSION = @VERSION@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ SHELL = /bin/sh @SET_MAKE@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ prefix = @prefix@ exec_prefix = @exec_prefix@ datarootdir = @datarootdir@ datadir = @datadir@ localedir = @localedir@ gettextsrcdir = $(datadir)/gettext/po INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ # We use $(mkdir_p). # In automake <= 1.9.x, $(mkdir_p) is defined either as "mkdir -p --" or as # "$(mkinstalldirs)" or as "$(install_sh) -d". For these automake versions, # @install_sh@ does not start with $(SHELL), so we add it. # In automake >= 1.10, @mkdir_p@ is derived from ${MKDIR_P}, which is defined # either as "/path/to/mkdir -p" or ".../install-sh -c -d". For these automake # versions, $(mkinstalldirs) and $(install_sh) are unused. mkinstalldirs = $(SHELL) @install_sh@ -d install_sh = $(SHELL) @install_sh@ MKDIR_P = @MKDIR_P@ mkdir_p = @mkdir_p@ GMSGFMT_ = @GMSGFMT@ GMSGFMT_no = @GMSGFMT@ GMSGFMT_yes = @GMSGFMT_015@ GMSGFMT = $(GMSGFMT_$(USE_MSGCTXT)) MSGFMT_ = @MSGFMT@ MSGFMT_no = @MSGFMT@ MSGFMT_yes = @MSGFMT_015@ MSGFMT = $(MSGFMT_$(USE_MSGCTXT)) XGETTEXT_ = @XGETTEXT@ XGETTEXT_no = @XGETTEXT@ XGETTEXT_yes = @XGETTEXT_015@ XGETTEXT = $(XGETTEXT_$(USE_MSGCTXT)) MSGMERGE = msgmerge MSGMERGE_UPDATE = @MSGMERGE@ --update MSGINIT = msginit MSGCONV = msgconv MSGFILTER = msgfilter POFILES = @POFILES@ GMOFILES = @GMOFILES@ UPDATEPOFILES = @UPDATEPOFILES@ DUMMYPOFILES = @DUMMYPOFILES@ DISTFILES.common = Makefile.in.in remove-potcdate.sin \ $(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3) DISTFILES = $(DISTFILES.common) Makevars POTFILES.in \ $(POFILES) $(GMOFILES) \ $(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3) POTFILES = \ CATALOGS = @CATALOGS@ # Makevars gets inserted here. (Don't remove this line!) .SUFFIXES: .SUFFIXES: .po .gmo .mo .sed .sin .nop .po-create .po-update .po.mo: @echo "$(MSGFMT) -c -o $@ $<"; \ $(MSGFMT) -c -o t-$@ $< && mv t-$@ $@ .po.gmo: @lang=`echo $* | sed -e 's,.*/,,'`; \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o $${lang}.gmo $${lang}.po"; \ cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo .sin.sed: sed -e '/^#/d' $< > t-$@ mv t-$@ $@ all: check-macro-version all-@USE_NLS@ all-yes: stamp-po all-no: # Ensure that the gettext macros and this Makefile.in.in are in sync. check-macro-version: @test "$(GETTEXT_MACRO_VERSION)" = "@GETTEXT_MACRO_VERSION@" \ || { echo "*** error: gettext infrastructure mismatch: using a Makefile.in.in from gettext version $(GETTEXT_MACRO_VERSION) but the autoconf macros are from gettext version @GETTEXT_MACRO_VERSION@" 1>&2; \ exit 1; \ } # $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no # internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because # we don't want to bother translators with empty POT files). We assume that # LINGUAS is empty in this case, i.e. $(POFILES) and $(GMOFILES) are empty. # In this case, stamp-po is a nop (i.e. a phony target). # stamp-po is a timestamp denoting the last time at which the CATALOGS have # been loosely updated. Its purpose is that when a developer or translator # checks out the package via CVS, and the $(DOMAIN).pot file is not in CVS, # "make" will update the $(DOMAIN).pot and the $(CATALOGS), but subsequent # invocations of "make" will do nothing. This timestamp would not be necessary # if updating the $(CATALOGS) would always touch them; however, the rule for # $(POFILES) has been designed to not touch files that don't need to be # changed. stamp-po: $(srcdir)/$(DOMAIN).pot test ! -f $(srcdir)/$(DOMAIN).pot || \ test -z "$(GMOFILES)" || $(MAKE) $(GMOFILES) @test ! -f $(srcdir)/$(DOMAIN).pot || { \ echo "touch stamp-po" && \ echo timestamp > stamp-poT && \ mv stamp-poT stamp-po; \ } # Note: Target 'all' must not depend on target '$(DOMAIN).pot-update', # otherwise packages like GCC can not be built if only parts of the source # have been downloaded. # This target rebuilds $(DOMAIN).pot; it is an expensive operation. # Note that $(DOMAIN).pot is not touched if it doesn't need to be changed. $(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed if LC_ALL=C grep 'GNU @PACKAGE@' $(top_srcdir)/* 2>/dev/null | grep -v 'libtool:' >/dev/null; then \ package_gnu='GNU '; \ else \ package_gnu=''; \ fi; \ if test -n '$(MSGID_BUGS_ADDRESS)' || test '$(PACKAGE_BUGREPORT)' = '@'PACKAGE_BUGREPORT'@'; then \ msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \ else \ msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \ fi; \ case `$(XGETTEXT) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \ $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ --files-from=$(srcdir)/POTFILES.in \ --copyright-holder='$(COPYRIGHT_HOLDER)' \ --msgid-bugs-address="$$msgid_bugs_address" \ ;; \ *) \ $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ --files-from=$(srcdir)/POTFILES.in \ --copyright-holder='$(COPYRIGHT_HOLDER)' \ --package-name="$${package_gnu}@PACKAGE@" \ --package-version='@VERSION@' \ --msgid-bugs-address="$$msgid_bugs_address" \ ;; \ esac test ! -f $(DOMAIN).po || { \ if test -f $(srcdir)/$(DOMAIN).pot; then \ sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ else \ rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ fi; \ else \ mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ fi; \ } # This rule has no dependencies: we don't need to update $(DOMAIN).pot at # every "make" invocation, only create it when it is missing. # Only "make $(DOMAIN).pot-update" or "make dist" will force an update. $(srcdir)/$(DOMAIN).pot: $(MAKE) $(DOMAIN).pot-update # This target rebuilds a PO file if $(DOMAIN).pot has changed. # Note that a PO file is not touched if it doesn't need to be changed. $(POFILES): $(srcdir)/$(DOMAIN).pot @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ if test -f "$(srcdir)/$${lang}.po"; then \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}$(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot"; \ cd $(srcdir) && $(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot; \ else \ $(MAKE) $${lang}.po-create; \ fi install: install-exec install-data install-exec: install-data: install-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \ for file in $(DISTFILES.common) Makevars.template; do \ $(INSTALL_DATA) $(srcdir)/$$file \ $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ for file in Makevars; do \ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi install-data-no: all install-data-yes: all $(mkdir_p) $(DESTDIR)$(datadir) @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ $(mkdir_p) $(DESTDIR)$$dir; \ if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ if test -n "$$lc"; then \ if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ for file in *; do \ if test -f $$file; then \ ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ fi; \ done); \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ else \ if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ :; \ else \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ fi; \ fi; \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \ fi; \ done; \ done install-strip: install installdirs: installdirs-exec installdirs-data installdirs-exec: installdirs-data: installdirs-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \ else \ : ; \ fi installdirs-data-no: installdirs-data-yes: $(mkdir_p) $(DESTDIR)$(datadir) @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ $(mkdir_p) $(DESTDIR)$$dir; \ for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ if test -n "$$lc"; then \ if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ for file in *; do \ if test -f $$file; then \ ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ fi; \ done); \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ else \ if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ :; \ else \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ fi; \ fi; \ fi; \ done; \ done # Define this as empty until I found a useful application. installcheck: uninstall: uninstall-exec uninstall-data uninstall-exec: uninstall-data: uninstall-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ for file in $(DISTFILES.common) Makevars.template; do \ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi uninstall-data-no: uninstall-data-yes: catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ done; \ done check: all info dvi ps pdf html tags TAGS ctags CTAGS ID: mostlyclean: rm -f remove-potcdate.sed rm -f stamp-poT rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po rm -fr *.o clean: mostlyclean distclean: clean rm -f Makefile Makefile.in POTFILES *.mo maintainer-clean: distclean @echo "This command is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." rm -f stamp-po $(GMOFILES) distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) dist distdir: $(MAKE) update-po @$(MAKE) dist2 # This is a separate target because 'update-po' must be executed before. dist2: stamp-po $(DISTFILES) dists="$(DISTFILES)"; \ if test "$(PACKAGE)" = "gettext-tools"; then \ dists="$$dists Makevars.template"; \ fi; \ if test -f $(srcdir)/$(DOMAIN).pot; then \ dists="$$dists $(DOMAIN).pot stamp-po"; \ fi; \ if test -f $(srcdir)/ChangeLog; then \ dists="$$dists ChangeLog"; \ fi; \ for i in 0 1 2 3 4 5 6 7 8 9; do \ if test -f $(srcdir)/ChangeLog.$$i; then \ dists="$$dists ChangeLog.$$i"; \ fi; \ done; \ if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \ for file in $$dists; do \ if test -f $$file; then \ cp -p $$file $(distdir) || exit 1; \ else \ cp -p $(srcdir)/$$file $(distdir) || exit 1; \ fi; \ done update-po: Makefile $(MAKE) $(DOMAIN).pot-update test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES) $(MAKE) update-gmo # General rule for creating PO files. .nop.po-create: @lang=`echo $@ | sed -e 's/\.po-create$$//'`; \ echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \ exit 1 # General rule for updating PO files. .nop.po-update: @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ if test "$(PACKAGE)" = "gettext-tools"; then PATH=`pwd`/../src:$$PATH; fi; \ tmpdir=`pwd`; \ echo "$$lang:"; \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}$(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ cd $(srcdir); \ if $(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$tmpdir/$$lang.new.po; then \ if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ rm -f $$tmpdir/$$lang.new.po; \ else \ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ :; \ else \ echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ exit 1; \ fi; \ fi; \ else \ echo "msgmerge for $$lang.po failed!" 1>&2; \ rm -f $$tmpdir/$$lang.new.po; \ fi $(DUMMYPOFILES): update-gmo: Makefile $(GMOFILES) @: Makefile: Makefile.in.in Makevars $(top_builddir)/config.status @POMAKEFILEDEPS@ cd $(top_builddir) \ && $(SHELL) ./config.status $(subdir)/$@.in po-directories force: # Tell versions [3.59,3.63) of GNU make not to export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: photoprint-0.4.2-pre2/po/pl.gmo0000644000175000017500000004032111400237673013252 00000000000000Þ•ñ¤K,X Yflu‹ ’³ºJË@W^ àë û# -==O{›Ë]g9Å$ÿ $08@ HV€\Ý æ!ò &4'=e4x&­ÔÜ óþ ( GU&f•¥!­4Ï*2@]ž·ÇÖåõ  ;=HJ† Ñ9Û).GNQY kx} ƒŽ• ¥ ³ÁÈÎàò † ”œ­ ²¿ Æ ÐÞíöý  "8 NZ2`“ ˜!£Åàþ  & : L Y ?i 5© ß ë ó ! !!!9! B! N! [!i!!ž!!¥!&Ç!1î! "2" D"P"W" k"Œ"©" ¯" º" Æ" Ô"â"ò" #-# <# F# R#_#v#‰#›#$¯#+Ô#$$-$@$-P$(~$§$ Å$Ò$0ñ$"%*%:%I%e%‚%!‡%©%Â%×%:ç%"&(&-&D&b&h&o&v&y& |&U†&Ü& ã& ð& ý& '' ' *' 4'B'X']'n' t'€'†'Œ'“' ›'¨'®'¾'Î'×' Þ'è'ð'÷' ý' ( ( "( .(8( ;(G(J(M( T(`(c(j(q(Wt( Ì) Ø)ä)ó)*#*<*E*pY*gÊ*2+ˆ6+ ¿+É+à+*ï+,G+,>s,Ÿ²,RR-A¥-(ç-.. .(. /.<.…D.Ê. Ó.#Þ.//)/#2/V/>k/"ª/ Í/×/ ð/ü/0'0G0[0+o0›0¤0¼0$Ã08è0!1:1/S1Yƒ1Ý1ù12+2>2V2!n2!2²2EÃ2[ 3 e37r3ª3È3Ñ3í3ô3÷3#ý3 !4-43494O4T4c4w4†44“4ª4¿4 Ò4mÜ4J5R5c5 i5w5€5™5©5¼5 Ä5Ð5 ã5ð566 :6H6*P6 {6 …6 ‘6²6Ð6ð6÷6(7/7D7X7Np7;¿7û7 88#848!H8j8r8 ƒ88Ÿ8¹8Ù8 ß8!92"9U9p9‡9˜9Ÿ92³91æ9: !:+:;:M:^:o:!:±:Ã:Õ:ï: ;;.;H;.[;.Š;¹;Õ;ó; <#<+8<#d<ˆ<& <IÇ< ==.=">=#a=…='=µ=Ó=ï=;><>B>J>)d> Ž> ˜>£>ª>­> °>b¾>!? (? 4? @? K?X? g? u??‘?¨?°?À?È?Ð?Ö?Ý?ä?ì?õ?û?@$@+@ 2@=@E@ M@ W@d@l@|@ ‹@™@ œ@§@ª@­@ ²@¼@¿@Ç@Î@7´ Ð*TjwÓ‚Yu¥@Ý¢E¿9: ™;âÖË䯝P2“»²Š8m=Åσšª·kéJ]¬+b§%‘½XSà~”Ì Ø&{1©l °ÉçÑÙ³"5V| $µè‹.¡Ò4í±ê‡0OÔið/c›Í¦)Gæ«ßtëʶžFÜ’}£rsDñHz¸oÇW¼vî®L!Q(×CœÛÚMã,­Î†?„ÃR[–áI¤6dxBh>^ Zf˜ÞnŒï<a¹`ÀÄ_Ny•Žˆº-Ÿ#UÁ…€qA eKì—‰g3¨på\'ÕȾ%d degrees KAboutAbout...Absolute ColorimetricActiveAdd images to the current layoutAdd...Adding images...Adjust colours on screen to imitate printed colours, including paper whiteAdjust colours to imitate printed colours, excluding paper whiteAfter:Aims for pleasing photographic results by preserving relationships between colours, and avoiding clipping of unattainable coloursAlgorithm:Allow _CroppingAmount: %1.2fApply effects to the selected imageAssign Profile:Assign an ICC profile or custom rendering intent to the imageAttempts to preserve the original colours, relative to white-point differences.Attempts to preserve the original colours, relative to white-point differences. Uses Black Point Compensation to avoid clipping of highlights and shadows.Attempts to provide brighter, more saturated colours, at the expense of colour relationships.Automatically choose rotation to fit the available space.Automatically place images in a gridBackgroundsBefore:BordersBottom:CMYK Profile:C_opyCan't show a colour managed preview unless you choose a Default RGB or Monitor profile in the Options->Colour Management dialog!CarouselCentimetersChecking .photoprint directory...Colour ManagementColour space:Columns:Copy the current image to the clipboardCreating layout...Crop the selected images to fill the available spaceCut the current image to the clipboardDefaultDefault Image ProfilesDesaturateDeselect all imagesDimensions:Display colours with no print simulationDisplay mode:Dither AlgorithmDuplicate the currently selected imageE_xportE_xport TIFF...EffectsError creating directory `%s': %sError creating temporary thumbnail file for `%s': %sError opening `%s': %sError reading `%s': %sError reading `%s': file contains no data.Error reading `%s': file is not a regular file or symbolic link.Error verifying `%s': %sExit PhotoPrintExport JPEG...Export TIFF...Export _JPEG...Export _TIFF...Export pages as JPEG filesExport pages as TIFF filesExporting...Fade images into a circular 'carousel' - ideal for CD labels.Failed to load image '%s': reason not known, probably a corrupt image fileFilename:Fill the page with copies of the currently selected imageFrom selected imageGap:Generating print data...H (%):H:Height:High-res PreviewsICC ProfilesIconImageImage InfoInchesInitializing...Inner Radius:JPEG Quality:LayoutLeft:Loading images...Loading preset...Manual scalingMillimetersMimics the original colours (including white point) as closely as possible, for side-by-side comparisons. Clips unattainable colours.MonitorMonitor Profile:NameNo rotation.NormalOpen FileOpen a presetOpen preset...Other...OutputOutput Profile:OverlapOverlap (%):Page Size and MarginsPage is already full!Page range:Page:Paste the contents of the clipboard as a new imagePathPerceptualPlease choose a valid ICC profilePlease provide a filename.Please select an image first!PointsPoster LayoutPreview how the printed page will lookPrint Pre_view...Print Queue:Print S_etup...Print an image in multiple pages, to be assembled into a posterPrint images on a single sheet, at a specified scale.Print pagesPrinterPrinter Model:Printer Profile:Printer SetupPrinter queue not foundProfile:Progress...RGB Profile:Radius: %1.2fRelative ColorimetricRelative Colorimetric with BPCRemoveRemove all images from the layoutRemove selected images from the layoutRender high-resolution previews in the backgroundRendering intent:Resolution (dpi):Resolution:Right:Rotate 180 degrees.Rotate 90 degrees anticlockwise.Rotate 90 degrees clockwise.Rows:SaturationSave _As...Save _DefaultSave a presetSave as 16-bit:Save preset as the defaultSave preset with a new filenameSave preset...Segments:Select _AllSelect _NoneSelect a background...Select a border...Select all imagesSelect directory...Select the preferred scaling method.Select the units used throughout PhotoPrintSet Colour _Profile...Set Custom Profile...Set Image _Mask...Set _BackgroundSet a background image for the current layoutSet a border mask for the selected imageSet colour management optionsSet paths...Set printer driver and optionsSet search paths for ICC profiles, borders, etc.SharpenSimulate Prin_tSimulate PrintSimulate Print, Adapt WhiteSimulate Print, _Adapt WhiteSizeSome information about PhotoPrintSpecify image dimensionsSpecify rows/columnsStarting angle:The printer queue %s is not found - please choose anotherTilesTop:Transferring images...Unable to generate print dataUnitsUnits:V (%):V:W:Warm/CoolWarning: Image already has an embedded profile Assigning a new one will over-ride it!Width:_180 Degrees_270 Degrees_90 Degrees_Add Image..._Auto_Auto Layout_Carousel_Clear Layout_Colour Management..._Cut_Duplicate Image_Edit_Effects..._File_Help_Image_Layout_Manual Size_None_Normal Display_Open Preset..._Options_Paste_Paths..._Poster_Print_Quit_Remove Image_Rotation_Save Preset_Scaling..._Units...bycentimeterscmininchesmillimetersmmpixelspointsptProject-Id-Version: photoprint 0.4.0 Report-Msgid-Bugs-To: blackfive@fakenhamweb.co.uk POT-Creation-Date: 2010-05-29 17:24+0100 PO-Revision-Date: 2009-04-15 09:26+0100 Last-Translator: Artur Szymanski Language-Team: Polish MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit %d stopni KO programieO programie...BezwzglÄ™dna kolorymetrycznaAktywnyDodaje obrazy do aktualnego ukÅ‚aduDodaj...Dodawanie obrazu...Dopasowuje kolory widoczne na ekranie tak jak bÄ™dÄ… wyglÄ…daÅ‚y na wydruku z biaÅ‚ym kolorem papieru włącznieDopasowuje kolory widoczne na ekranie tak jak bÄ™dÄ… wyglÄ…daÅ‚y na wydruku bez biaÅ‚ego koloru papieruPo:Zachowanie zwiÄ…zku pomiÄ™dzy kolorami i ograniczenie utraty informacji o kolorach spoza zakresu - najbliższa temu co widać na ekranieAlgorytm:Zezwól na ka_drowanieRozmiar: %1.2fZastosowuje efekty do zaznaczonego obrazu Przypisz profil:Przypisuje profil ICC lub wÅ‚asnÄ… metodÄ™ konwersji kolorów do obrazuStara siÄ™ zachować oryginalne kolory wzglÄ™dem punktu bieli Stara siÄ™ zachować oryginalne kolory wzglÄ™dem punktu bieli. Wykorzystuje kompensacjÄ™ punktu czerni BPC w celu unikniÄ™cia obcinania rozjaÅ›nieÅ„ i cienia. Stara siÄ™ rozjaÅ›nić i nasycić kolory kosztem zachowania dokÅ‚adnoÅ›ci kolorówAutomatycznie wybiera obrót aby dopasować do wolnej przestrzeniAutomatycznie umieszcza obrazy na siatceTÅ‚oPrzed:ObramowaniaDolny:Profil CMYK:K_opiujNie można wyÅ›wietlić podglÄ…du dopóki nie zostanie wybrany domyÅ›lny profil RGB lub monitora w menu Opcje->ZarzÄ…dzanie kolorami!KaruzelaCentymetrySprawdzanie katalogu .photoprint...ZarzÄ…dzanie koloremPrzestrzeÅ„ barw:Kolumny:Kopiuje zaznaczony obraz do schowkaTworzenie ukÅ‚adu...Kadruje zaznaczony obraz aby wypeÅ‚niÅ‚ dostÄ™pnÄ… przestrzeÅ„Wycina zaznaczony obraz do schowkaDomyÅ›lnyDomyÅ›lne profile obrazuDesaturacjaOdznacza wszystkie obrazyWymiary:WyÅ›wietla kolory bez symulowania drukuTryb wyÅ›wietlania:Algorytm ditheringuTworzy kopiÄ™ aktualnie zaznaczonego obrazuE_ksport_Eksportuj jako TIFF...EfektyBłąd w tworzeniu katalogu `%s': %sBłąd przy tworzeniu tymczasowej miniatury dla `%s': %sBłąd otwarcia `%s': %sBłąd czytania `%s': %sBłąd czytania `%s': plik nie zawiera danych. Błąd czytania `%s': plik nie jest zwykÅ‚ym plikiem lub jest dowiÄ…zaniem symbolicznym. Błąd weryfikacji `%s': %sWychodzi z programu PhotoPrintEksport do JPEG...Eksport do TIFF...Eksportuj jako _JPEG...Eksportuj jako _TIFF...Eksportuje strony do formatu JPEGEksportuje strony do formatu TIFFEksportowanie...Nanosi obrazy na okrÄ…głą 'karuzelÄ™' - opcja idealna do nadruku CDNie udaÅ‚o siÄ™ zaÅ‚adować obrazu '%s': przyczyna nieznana, prawdopodobnie uszkodzony plikNazwa pliku:WypeÅ‚nia stronÄ™ kopiami aktualnie zaznaczonego obrazuPobierz z zaznaczonego obrazuPrzerwa:Tworzenie danych wydruku...H (%):H:Wys.:PodglÄ…d w wysokiej rozdzielczoÅ›ciProfile ICCIkonaObrazWÅ‚aÅ›ciwoÅ›ci obrazuCaleInicjowanie...PromieÅ„ Å›rodkowy:Jakość JPEG:UkÅ‚adLewy:Åadowanie obrazów...Åadowanie wzorca...Skalowanie rÄ™czneMilimetryImituje oryginalne kolory (wraz z punktem bieli) tak dokÅ‚adnie jak to możliwe. Obcina kolory spoza zakresu.MonitorProfil monitora:NazwaBez obracaniaNormalnyWybór pliku do otwarciaOtwiera wzorzecOtwórz wzorzec...Inne...UrzÄ…dzenieProfil wyjÅ›ciowy:Zachodzenie:Zachodzenie (%):Format papieru i marginesyStrona jest już zapeÅ‚niona!Zakres stron:Strona:Wkleja zawartość schowka jako nowy obrazÅšcieżkaPercepcyjnaWybierz profil kolorystyczny ICCProszÄ™ wpisać nazwÄ™ pliku.Najpierw należy wybrać obraz!PunktyUkÅ‚ad plakatuWyÅ›wietla jak bÄ™dzie wyglÄ…daÅ‚ wydruk_PodglÄ…d wydruku...Kolejka drukowania:Ustawi_enia drukarki...Drukuje obraz na wielu stronach w celu umożliwienia połączenia ich w plakatDrukuje obrazy na pojedynczym arkuszu wedÅ‚ug podanej skaliDrukuje stronyDrukarkaModel drukarki:Profil drukarki:Ustawienia drukarkiNie znaleziono kolejki drukowaniaProfil:Przetwarzanie...Profil RGB:PromieÅ„: %1.2fWzglÄ™dna kolorymetrycznaWzglÄ™dna kolorymetryczna z BPCUsuÅ„Usuwa wszystkie obrazy z ukÅ‚aduUsuwa zaznaczone obrazy z ukÅ‚aduRenderuje w tle podglÄ…d wysokiej rozdzielczoÅ›ci Metoda konwersji kolorów:Rozdzielczość (dpi):Rozdzielczość:Prawy:Obraca o 180 stopniObraca o 90 stopni przeciwnie do wskazówek zegaraObraca o 90 stopni zgodnie ze wskazówkami zegaraWiersze:NasycenieZ_apisz jako...Zapisz _domyÅ›lneZapisuje wzorzecZapisz w 16-bit:Zapisuje wzorzec jako domyÅ›lnyZapisuje wzorzec pod nowÄ… nazwÄ…Zapisz wzorzec...Ilość części:Z_aznacz wszystkie obrazyOdz_nacz wszystkie obrazyWybór tÅ‚a...Wybór obramowania...Zaznacza wszystkie obrazyWybierz katalog...Wybiera preferowanÄ… metodÄ™ skalowania obrazuWybiera jednostki miary używane w PhotoPrint Ustaw _profil kolorystycznyWÅ‚asne ustawienia profilu...Ustaw _maskÄ™ obrazuUstaw _TÅ‚oUstawia tÅ‚o dla aktualnego ukÅ‚aduUstawia obramowanie dla zaznaczonego obrazuUstawia opcje zarzÄ…dzania koloramiUstawienia Å›cieżek...Ustawienia sterownika drukarki i opcjeUstawia Å›cieżki katalogów zawierajÄ…cych profile ICC, obramowania itp.WyostrzenieSymulacja druk_uSymulacja drukuSymulacja druku, dopasowanie bieliSymulacja druku, dop_asowanie bieliRozmiarTrochÄ™ informacji na temat PhotoPrint Na podstawie wymiarów obrazuNa podstawie kolumn/wierszyKÄ…t nachylenia:Nie znaleziono kolejki drukowania %s ProszÄ™ wybrać innÄ…KafleGórny:Przetwarzanie obrazów...Nie można wygenerować danych do wydrukuJednostkiJednostki:V (%):V:W:CiepÅ‚y/zimnyOstrzeżenie: Obraz posiada już wbudowany profil Przypisanie nowego spowoduje nadpisanie starego!Szer.:_180 stopni_270 stopni_90 stopni_Dodaj obraz_Automatycznie_Automatyczny_Karuzela_Wyczyść ukÅ‚adZ_arzÄ…dzanie kolorami_Wytnij_Duplikuj obraz_Edycja_Efekty_PlikPomo_cO_braz_UkÅ‚ad_RÄ™czny_BrakWyÅ›wietlanie _normalne_Otwórz wzorzec_OpcjeW_klejÅš_cieżki_Plakat_Drukuj_ZakoÅ„cz_UsuÅ„ obrazO_brótZapi_sz wzorzec_Skalowanie...Jedn_ostki...nacentymetrycmincalemilimetrymmpikselipunktyptphotoprint-0.4.2-pre2/po/pt.po0000644000175000017500000010520111400237672013114 00000000000000# translation of PhotoPrint to Brazilian Portuguese # Copyright (C) 2007 Alastair M. Robinson # This file is distributed under the same license as the PhotoPrint package. # # Translator: Krishnamurti Lelis Lima Vieira Nunes , 2007. # Revisors welcome! msgid "" msgstr "" "Project-Id-Version: pt_BR\n" "Report-Msgid-Bugs-To: blackfive@fakenhamweb.co.uk\n" "POT-Creation-Date: 2010-05-29 17:24+0100\n" "PO-Revision-Date: 2007-07-14 00:26-0300\n" "Last-Translator: Krishnamurti Lelis Lima Vieira Nunes \n" "Language-Team: Krishnamurti Lelis Lima Vieira Nunes \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: dialogs.cpp:75 #, fuzzy msgid "Colour Response Hash" msgstr "Gerenciamento de _Cor" #: dialogs.cpp:96 msgid "" "This \"hash\" value is derived from the printer driver's output,\n" "and can be used to verify that no changes have occurred which\n" "might invalidate a colour profile for the printer" msgstr "" #: dialogs.cpp:108 #, fuzzy msgid "Current hash:" msgstr "Usado Atualmente:" #: dialogs.cpp:112 #, fuzzy msgid "Stored in preset:" msgstr "Salva uma pré-seleção" #: dialogs.cpp:118 msgid "No hash stored yet" msgstr "" #: dialogs.cpp:127 msgid "" "Calculating hash of printer response\n" "with current driver settings" msgstr "" #: dialogs.cpp:132 #, fuzzy msgid "Store in preset" msgstr "Salva uma pré-seleção" #: dialogs.cpp:156 msgid "" "MATCH - No changes in driver\n" "or printer settings detected" msgstr "" #: dialogs.cpp:162 msgid "" "This hash can be used to detect changes\n" "in printer settings or driver versions\n" "that might invalidate colour profiles" msgstr "" #: dialogs.cpp:164 msgid "" "MISMATCH - change detected in printer response!\n" "Printer's colour profile might no longer be accurate." msgstr "" #: dialogs.cpp:287 msgid "Printer Setup" msgstr "Configuração da Impressora " #: dialogs.cpp:301 msgid "Output" msgstr "" #: dialogs.cpp:338 msgid "About" msgstr "Sobre" #: dialogs.cpp:349 #, fuzzy msgid "PhotoPrint " msgstr "Sai do PhotoPrint" #: dialogs.cpp:388 msgid "Set paths..." msgstr "Definir caminhos..." #: dialogs.cpp:413 msgid "ICC Profiles" msgstr "Perfis ICC" #: dialogs.cpp:445 msgid "Borders" msgstr "Bordas" #: dialogs.cpp:476 msgid "Backgrounds" msgstr "Backgrounds" #: dialogs.cpp:504 msgid "Select a border..." msgstr "Selecionar uma borda" #: dialogs.cpp:551 msgid "Export TIFF..." msgstr "Exportar TIFF" #: dialogs.cpp:577 dialogs.cpp:776 msgid "Page range:" msgstr "Intervalo de páginas" #: dialogs.cpp:590 dialogs.cpp:786 msgid "Resolution (dpi):" msgstr "Resolução (dpi)" #: dialogs.cpp:598 msgid "Save as 16-bit:" msgstr "" #: dialogs.cpp:617 dialogs.cpp:821 msgid "Output Profile:" msgstr "Arquivo de saída" #: dialogs.cpp:677 dialogs.cpp:914 msgid "Please provide a filename." msgstr "Por favor forneça um nome de arquivo" #: dialogs.cpp:708 dialogs.cpp:892 msgid "Exporting..." msgstr "Exportando..." #: dialogs.cpp:747 #, fuzzy msgid "Export JPEG..." msgstr "Exportar TIFF" #: dialogs.cpp:805 msgid "JPEG Quality:" msgstr "" #: dialogs.cpp:931 msgid "Select a background..." msgstr "Selecione um background..." #: dialogs.cpp:1023 pp_menu_image.cpp:276 msgid "Please select an image first!" msgstr "Por favor insira uma imagem primeiro! " #: dialogs.cpp:1054 msgid "Set Custom Profile..." msgstr "Defina perfil padrão" #: dialogs.cpp:1066 msgid "Before:" msgstr "Antes:" #: dialogs.cpp:1070 msgid "After:" msgstr "Depois:" #: dialogs.cpp:1084 msgid "" "Can't show a colour managed\n" "preview unless you choose\n" "a Default RGB or Monitor profile\n" "in the Options->Colour Management\n" "dialog!" msgstr "" "Não é possível mostrar uma cor usada \n" "previamente a não ser que que você escolha\n" "um RGB padrão ou um perfil Monitor \n" "em Options->Gerenciamento de cor" #: dialogs.cpp:1109 msgid "" "Warning: Image already has an embedded profile\n" "Assigning a new one will over-ride it!" msgstr "" "Advertência: uma imagem já foi incluída no perfil\n" "Incluir outra vai sobrescrevê-la!" #: dialogs.cpp:1126 msgid "Assign Profile:" msgstr "Definir Perfil:" #: dialogs.cpp:1134 pp_cms.cpp:349 msgid "Rendering intent:" msgstr "Tentar Renderização:" #: effects/ppeffect_temperature.cpp:28 msgid "Warm/Cool" msgstr "" #: effects/effectselector.cpp:222 msgid "Active" msgstr "" #: effects/effectselector.cpp:231 msgid "Icon" msgstr "" #: effects/effectselector.cpp:243 msgid "Name" msgstr "" #: effects/ppeffect_desaturate.cpp:25 msgid "Desaturate" msgstr "" #: effects/effectwidget_tempchange.cpp:57 #, fuzzy, c-format msgid "%d degrees K" msgstr "_90 Graus" #: effects/ppeffect_unsharpmask.cpp:25 msgid "Sharpen" msgstr "" #: effects/effectwidget_unsharpmask.cpp:66 #, c-format msgid "Radius: %1.2f" msgstr "" #: effects/effectwidget_unsharpmask.cpp:72 #, c-format msgid "Amount: %1.2f" msgstr "" #: menucheck.cpp:23 pp_menu_file.cpp:135 msgid "_File" msgstr "_Arquivo" #: menucheck.cpp:25 pp_menu_file.cpp:137 msgid "_Open Preset..." msgstr "A_brir Pré-seleção..." #: menucheck.cpp:25 pp_menu_file.cpp:137 msgid "Open a preset" msgstr "Abre uma pré-seleção" #: menucheck.cpp:26 pp_menu_file.cpp:138 msgid "_Save Preset" msgstr "_Salvar Pré-seleção" #: menucheck.cpp:26 pp_menu_file.cpp:138 msgid "Save a preset" msgstr "Salva uma pré-seleção" #: menucheck.cpp:27 pp_menu_file.cpp:139 msgid "Save _As..." msgstr "Salvar _Como..." #: menucheck.cpp:27 pp_menu_file.cpp:139 msgid "Save preset with a new filename" msgstr "Salva uma pré-seleção com um novo nome de arquivo" #: menucheck.cpp:28 pp_menu_file.cpp:140 msgid "Save _Default" msgstr "Salvar _Padrão" #: menucheck.cpp:28 pp_menu_file.cpp:140 msgid "Save preset as the default" msgstr "Salva a pré-seleção como padrão" #: menucheck.cpp:29 #, fuzzy msgid "E_xport TIFF..." msgstr "Exportar TIFF" #: menucheck.cpp:29 pp_menu_file.cpp:142 msgid "Export pages as TIFF files" msgstr "Exporta páginas como arquivos TIFF" #: menucheck.cpp:30 pp_menu_file.cpp:144 msgid "Print Pre_view..." msgstr "Imprimir Pré-visualização" #: menucheck.cpp:30 pp_menu_file.cpp:144 msgid "Preview how the printed page will look" msgstr "Prevê a aparência da impressão da página" #: menucheck.cpp:31 pp_menu_file.cpp:145 msgid "Print S_etup..." msgstr "Configuração de Impr_essora" #: menucheck.cpp:31 pp_menu_file.cpp:145 msgid "Set printer driver and options" msgstr "Configura impressora e opções" #: menucheck.cpp:32 pp_menu_file.cpp:146 msgid "_Print" msgstr "_Imprimir" #: menucheck.cpp:32 pp_menu_file.cpp:146 msgid "Print pages" msgstr "Imprime páginas" #: menucheck.cpp:33 pp_menu_file.cpp:147 msgid "_Quit" msgstr "Sai_r" #: menucheck.cpp:33 pp_menu_file.cpp:147 msgid "Exit PhotoPrint" msgstr "Sai do PhotoPrint" #: menucheck.cpp:62 pp_menu_layout.cpp:131 msgid "_Layout" msgstr "_Layout" #: menucheck.cpp:63 pp_menu_image.cpp:316 msgid "_Image" msgstr "_Imagem" #: menucheck.cpp:64 pp_menu_options.cpp:108 msgid "_Options" msgstr "_Opções" #: menucheck.cpp:65 pp_menu_help.cpp:29 msgid "_Help" msgstr "_Ajuda" #: menucheck.cpp:67 pp_menu_layout.cpp:133 msgid "_Clear Layout" msgstr "L_impar Layout" #: menucheck.cpp:67 pp_menu_layout.cpp:133 msgid "Remove all images from the layout" msgstr "Remove todas as imagens do layout" #: menucheck.cpp:68 pp_menu_layout.cpp:134 msgid "Set _Background" msgstr "Selecionar _Background" #: menucheck.cpp:68 pp_menu_layout.cpp:134 msgid "Set a background image for the current layout" msgstr "Define um background para o layout atual" #: menucheck.cpp:70 pp_menu_image.cpp:318 msgid "_Add Image..." msgstr "_Adicionar Imagem..." #: menucheck.cpp:70 pp_menu_image.cpp:318 msgid "Add images to the current layout" msgstr "Adiciona imagens ao layout atual" #: menucheck.cpp:71 pp_menu_image.cpp:319 msgid "_Remove Image" msgstr "_Remover Imagem" #: menucheck.cpp:71 pp_menu_image.cpp:319 msgid "Remove selected images from the layout" msgstr "Remove as imagens selecionadas do layout" #: menucheck.cpp:73 pp_menu_image.cpp:323 msgid "_Rotation" msgstr "R_otação" #: menucheck.cpp:75 msgid "Set Image _Mask..." msgstr "Selecionar _Máscara da Imagem..." #: menucheck.cpp:75 pp_menu_image.cpp:325 msgid "Set a border mask for the selected image" msgstr "Define uma borda para a imagem selecionada" #: menucheck.cpp:76 msgid "_Effects..." msgstr "_Efeitos" #: menucheck.cpp:76 msgid "Apply effects to the selected image" msgstr "Aplica efeitos à imagem selecionada" #: menucheck.cpp:77 pp_menu_image.cpp:327 msgid "Set Colour _Profile..." msgstr "Configurar _Perfil de Cor" #: menucheck.cpp:77 pp_menu_image.cpp:327 msgid "Assign an ICC profile or custom rendering intent to the image" msgstr "Associa um perfil ICC ou rendering intent padrão à imagem" #: menucheck.cpp:79 pp_menu_options.cpp:110 msgid "_Paths..." msgstr "C_aminhos" #: menucheck.cpp:79 pp_menu_options.cpp:110 msgid "Set search paths for ICC profiles, borders, etc." msgstr "Define caminhos para busca de perfis ICC, bordas, etc." #: menucheck.cpp:80 pp_menu_options.cpp:111 msgid "_Colour Management..." msgstr "Gerenciamento de _Cor" #: menucheck.cpp:80 pp_menu_options.cpp:111 msgid "Set colour management options" msgstr "Define opções para gerenciamento de cores" #: menucheck.cpp:81 pp_menu_options.cpp:113 msgid "_Units..." msgstr "_Uniddes" #: menucheck.cpp:81 pp_menu_options.cpp:113 msgid "Select the units used throughout PhotoPrint" msgstr "Seleciona as unidades usadas em todo o PhotoPrint" #: menucheck.cpp:82 pp_menu_options.cpp:114 msgid "_Scaling..." msgstr "_Redimensionamento" #: menucheck.cpp:82 pp_menu_options.cpp:114 msgid "Select the preferred scaling method." msgstr "Seleciona o método preferido para redimensionamento." #: menucheck.cpp:84 pp_menu_help.cpp:31 msgid "About..." msgstr "Sobre" #: menucheck.cpp:84 pp_menu_help.cpp:31 msgid "Some information about PhotoPrint" msgstr "Exibe alguma informação sobre o PhotoPrint" #: menucheck.cpp:89 pp_menu_image.cpp:332 msgid "Allow _Cropping" msgstr "Permitir _Corte" #: menucheck.cpp:89 pp_menu_image.cpp:332 msgid "Crop the selected images to fill the available space" msgstr "Corta as imagens selecionadas para caber no espaço disponível" #: menucheck.cpp:94 pp_menu_layout.cpp:139 msgid "_Auto Layout" msgstr "Layout _Automático" #: menucheck.cpp:94 pp_menu_layout.cpp:139 msgid "Automatically place images in a grid" msgstr "Posiciona as imagens em uma grade automaticamente" #: menucheck.cpp:95 pp_menu_layout.cpp:140 msgid "_Poster" msgstr "_Cartaz" #: menucheck.cpp:95 pp_menu_layout.cpp:140 msgid "Print an image in multiple pages, to be assembled into a poster" msgstr "Imprime uma imagem em várias páginas, para serem montadas em um cartaz" #: menucheck.cpp:96 pp_menu_layout.cpp:141 msgid "_Carousel" msgstr "_Roda" #: menucheck.cpp:96 pp_menu_layout.cpp:141 msgid "Fade images into a circular 'carousel' - ideal for CD labels." msgstr "Vai apagando a imagem em um círculo - ideal para rótulos de CDs." #: menucheck.cpp:97 pp_menu_layout.cpp:142 msgid "_Manual Size" msgstr "Tamanho _Manual" #: menucheck.cpp:97 pp_menu_layout.cpp:142 msgid "Print images on a single sheet, at a specified scale." msgstr "Imprime imagens em uma única página, com uma dimensão especificada" #: menucheck.cpp:101 pp_menu_image.cpp:337 msgid "_Auto" msgstr "A_uto" #: menucheck.cpp:101 pp_menu_image.cpp:337 msgid "Automatically choose rotation to fit the available space." msgstr "Escolhe automaticamente a rotação para adequar ao espaço disponível" #: menucheck.cpp:102 pp_menu_image.cpp:338 msgid "_None" msgstr "_Nenhuma" #: menucheck.cpp:102 pp_menu_image.cpp:338 msgid "No rotation." msgstr "Nenhuma rotação" #: menucheck.cpp:103 pp_menu_image.cpp:339 msgid "_90 Degrees" msgstr "_90 Graus" #: menucheck.cpp:103 pp_menu_image.cpp:339 msgid "Rotate 90 degrees clockwise." msgstr "Rotaciona 90 graus no sentido horário" #: menucheck.cpp:104 pp_menu_image.cpp:340 msgid "_180 Degrees" msgstr "_180 Graus" #: menucheck.cpp:104 pp_menu_image.cpp:340 msgid "Rotate 180 degrees." msgstr "Rotaciona 180 graus." #: menucheck.cpp:105 pp_menu_image.cpp:341 msgid "_270 Degrees" msgstr "_270 Graus" #: menucheck.cpp:105 pp_menu_image.cpp:341 msgid "Rotate 90 degrees anticlockwise." msgstr "Rotaciona 90 graus no sentido anti-horário." #: menucheck.cpp:229 #, fuzzy msgid "Dither Algorithm" msgstr "Algoritmo:" #: photoprint.cpp:135 msgid "Initializing..." msgstr "Iniciando..." #: photoprint.cpp:144 msgid "Checking .photoprint directory..." msgstr "Verificando pasta .photoprint..." #: photoprint.cpp:149 msgid "Loading preset..." msgstr "Carregando pré-seleções..." #: photoprint.cpp:154 msgid "Creating layout..." msgstr "Criando layout..." #: photoprint.cpp:197 msgid "Loading images..." msgstr "Carregando imagens..." #: pixbufthumbnail/egg-pixbuf-thumbnail.c:349 #, c-format msgid "Error creating directory `%s': %s" msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:463 #, c-format msgid "Error opening `%s': %s" msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:481 #, c-format msgid "Error reading `%s': file contains no data." msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:505 #, c-format msgid "Error reading `%s': %s" msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:540 #, c-format msgid "" "Failed to load image '%s': reason not known, probably a corrupt image file" msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:613 #, c-format msgid "Error verifying `%s': %s" msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:629 #, c-format msgid "Error reading `%s': file is not a regular file or symbolic link." msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:1071 #, c-format msgid "Error creating temporary thumbnail file for `%s': %s" msgstr "" #: pp_cms.cpp:148 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "will first be converted to the default CMYK profile" msgstr "" #: pp_cms.cpp:154 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "cannot be printed without a default CMYK profile." msgstr "" #: pp_cms.cpp:160 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "cannot be printed without a default RGB and CMYK profile." msgstr "" #: pp_cms.cpp:168 msgid "" "Printer profile is a devicelink - RGB images with embedded profiles\n" "will first be converted to the default RGB profile." msgstr "" #: pp_cms.cpp:174 msgid "" "Printer profile is a devicelink - RGB images with embedded profiles will " "not\n" "print correctly, since there is no default RGB profile." msgstr "" #: pp_cms.cpp:180 msgid "RGB images will print correctly" msgstr "" #: pp_cms.cpp:185 msgid "" "RGB images can be printed but colours depend on the driver\n" "(Colours will be accurate for images that contain an embedded profile)" msgstr "" #: pp_cms.cpp:190 msgid "RGB images can be printed but colours depend on the driver" msgstr "" #: pp_cms.cpp:195 msgid "" "RGB images can only be printed if they have an embedded profile\n" "(Workflow is CMYK and there is no default RGB profile)" msgstr "" #: pp_cms.cpp:200 msgid "" "RGB images cannot be printed\n" "(Workflow is CMYK and there is no printer profile)" msgstr "" #: pp_cms.cpp:215 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "will first be converted to the default RGB profile" msgstr "" #: pp_cms.cpp:221 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "cannot be printed without a default RGB profile." msgstr "" #: pp_cms.cpp:227 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "cannot be printed without a default RGB and CMYK profile." msgstr "" #: pp_cms.cpp:234 msgid "" "Printer profile is a devicelink - CMYK images with embedded profiles\n" "will first be converted to the default CMYK profile." msgstr "" #: pp_cms.cpp:240 msgid "" "Printer profile is a devicelink - CMYK images with embedded profiles will " "not\n" "print correctly since there is no default CMYK profile." msgstr "" #: pp_cms.cpp:246 msgid "CMYK images will print correctly" msgstr "" #: pp_cms.cpp:251 msgid "" "CMYK images can be printed but colours depend on the driver\n" "(Colours will be accurate for images that contain an embedded profile)" msgstr "" #: pp_cms.cpp:256 msgid "CMYK images can be printed but colours depend on the driver" msgstr "" #: pp_cms.cpp:261 msgid "" "CMYK images can only be printed if they have an embedded profile\n" "(Workflow is RGB and there is no default CMYK profile)" msgstr "" #: pp_cms.cpp:266 msgid "" "CMYK images cannot be printed\n" "(Workflow is RGB and there is no printer profile)" msgstr "" #: pp_cms.cpp:276 msgid "Images will be displayed correctly" msgstr "" #: pp_cms.cpp:281 msgid "" "Images will only be displayed correctly if they have an embedded profile" msgstr "" #: pp_cms.cpp:286 msgid "Images will not be displayed correctly" msgstr "" #: pp_cms.cpp:317 msgid "Printer" msgstr "Impressora" #: pp_cms.cpp:332 msgid "Printer Profile:" msgstr "Perfil de impressora:" #: pp_cms.cpp:364 msgid "Colour space:" msgstr "Espaço de cor:" #: pp_cms.cpp:372 msgid "RGB" msgstr "" #: pp_cms.cpp:372 msgid "Send Red, Green and Blue data to the printer driver" msgstr "" #: pp_cms.cpp:373 msgid "CMYK" msgstr "" #: pp_cms.cpp:373 msgid "Send Cyan, Magenta, Yellow and Black data to the printer driver" msgstr "" #: pp_cms.cpp:383 msgid "Monitor" msgstr "Monitor" #: pp_cms.cpp:396 msgid "Monitor Profile:" msgstr "Perfil do Monitor:" #: pp_cms.cpp:411 msgid "Display mode:" msgstr "Modo de exibição" #: pp_cms.cpp:420 msgid "Normal" msgstr "Normal" #: pp_cms.cpp:420 msgid "Displays images' original colours, transformed to suit the monitor" msgstr "" #: pp_cms.cpp:421 msgid "Simulate Print" msgstr "Simular impressão" #: pp_cms.cpp:421 msgid "" "Simulates how colours will look when printed, imitating the paper's white " "point." msgstr "" #: pp_cms.cpp:422 msgid "Simulate Print, Adapt White" msgstr "Simular impressão, Adapt White" #: pp_cms.cpp:422 msgid "" "Simulates how colours will look when printed, adapting colours for the " "monitor's white point." msgstr "" #: pp_cms.cpp:432 msgid "Default Image Profiles" msgstr "Perfis de imagem padrão" #: pp_cms.cpp:447 msgid "RGB Profile:" msgstr "Perfil RGB:" #: pp_cms.cpp:464 msgid "CMYK Profile:" msgstr "Perfil CMYK:" #: pp_cms.cpp:666 msgid "Colour Management" msgstr "Gerenciamento de cor" #: pp_histogram.cpp:282 msgid "Histogram" msgstr "" #: pp_imagecontrol.cpp:134 #, fuzzy msgid "Effects" msgstr "Efeitos..." #: pp_imageinfo.cpp:107 msgid "in" msgstr "" #: pp_imageinfo.cpp:110 msgid "pt" msgstr "" #: pp_imageinfo.cpp:115 msgid "cm" msgstr "" #: pp_imageinfo.cpp:120 msgid "mm" msgstr "" #: pp_imageinfo.cpp:168 #, fuzzy msgid "Image Info" msgstr "Imagem" #: pp_imageinfo.cpp:195 msgid "Filename:" msgstr "" #: pp_imageinfo.cpp:208 msgid "Dimensions:" msgstr "" #: pp_imageinfo.cpp:228 #, fuzzy msgid "Resolution:" msgstr "Resolução (dpi)" #: pp_imageinfo.cpp:241 #, fuzzy msgid "Profile:" msgstr "Perfil RGB:" #: pp_imageinfo.cpp:351 msgid "pixels" msgstr "" #: pp_imageinfo.cpp:380 profilemanager/profilemanager.cpp:831 #, fuzzy msgid "Default" msgstr "Salvar _Padrão" #: pp_layout_carousel.cpp:247 pp_layout_carousel.cpp:379 pp_layout_nup.cpp:222 #: pp_layout_poster.cpp:312 pp_layout_poster.cpp:464 pp_layout_single.cpp:233 #: printpreview.cpp:146 msgid "Page:" msgstr "Página:" #: pp_layout_carousel.cpp:275 msgid "Carousel" msgstr "Roda" #: pp_layout_carousel.cpp:291 msgid "Segments:" msgstr "Segmentos:" #: pp_layout_carousel.cpp:306 msgid "Overlap (%):" msgstr "Sobreposição(%):" #: pp_layout_carousel.cpp:321 msgid "Starting angle:" msgstr "Ângulo inicial:" #: pp_layout_carousel.cpp:336 msgid "Inner Radius:" msgstr "Raio interno" #: pp_layout_poster.cpp:339 #, fuzzy msgid "Poster Layout" msgstr "L_impar Layout" #: pp_layout_poster.cpp:354 #, fuzzy msgid "Size" msgstr "Tamanho da página" #: pp_layout_poster.cpp:366 pp_layout_poster.cpp:390 msgid "by" msgstr "" #: pp_layout_poster.cpp:378 #, fuzzy msgid "Tiles" msgstr "Largura das divisões:" #: pp_layout_poster.cpp:400 #, fuzzy msgid "Overlap" msgstr "Sobreposição" #: pp_layout_poster.cpp:414 pp_pageextent.cpp:262 msgid "H:" msgstr "H:" #: pp_layout_poster.cpp:426 msgid "V:" msgstr "V:" #: pp_layout_single.cpp:261 #, fuzzy msgid "Manual scaling" msgstr "Tamanho _Manual" #: pp_layout_single.cpp:277 msgid "H (%):" msgstr "H (%)" #: pp_layout_single.cpp:291 msgid "V (%):" msgstr "V (%):" #: pp_mainwindow.cpp:228 msgid "Transferring images..." msgstr "Transferindo imagens:" #: pp_menu_edit.cpp:37 msgid "_Edit" msgstr "_Editar" #: pp_menu_edit.cpp:39 msgid "Select _All" msgstr "Selecionar _Tudo" #: pp_menu_edit.cpp:39 msgid "Select all images" msgstr "Selecionar todas as imagens" #: pp_menu_edit.cpp:40 msgid "Select _None" msgstr "Selecionar _Nada" #: pp_menu_edit.cpp:40 msgid "Deselect all images" msgstr "Desselecionar" #: pp_menu_edit.cpp:41 msgid "_Cut" msgstr "_Recortar" #: pp_menu_edit.cpp:41 msgid "Cut the current image to the clipboard" msgstr "Recorta a imagem atual para a área de troca" #: pp_menu_edit.cpp:42 msgid "C_opy" msgstr "_Copiar" #: pp_menu_edit.cpp:42 msgid "Copy the current image to the clipboard" msgstr "Copia a imagem atual para a área de troca" #: pp_menu_edit.cpp:43 msgid "_Paste" msgstr "Co_lar" #: pp_menu_edit.cpp:43 msgid "Paste the contents of the clipboard as a new image" msgstr "Cola o conteúdo da área de troca como uma nova imagem" #: pp_menu_file.cpp:38 msgid "Open preset..." msgstr "Abrir pré-definição..." #: pp_menu_file.cpp:64 msgid "Save preset..." msgstr "Salvar pré-definições" #: pp_menu_file.cpp:115 msgid "Generating print data..." msgstr "Gerando dados de impressão..." #: pp_menu_file.cpp:141 #, fuzzy msgid "E_xport" msgstr "E_xportar TIFF..." #: pp_menu_file.cpp:142 #, fuzzy msgid "Export _TIFF..." msgstr "Exportar TIFF" #: pp_menu_file.cpp:143 #, fuzzy msgid "Export _JPEG..." msgstr "Exportar TIFF" #: pp_menu_file.cpp:143 #, fuzzy msgid "Export pages as JPEG files" msgstr "Exporta páginas como arquivos TIFF" #: pp_menu_shortcuts.cpp:78 msgid "_Shortcuts" msgstr "" #: pp_menu_shortcuts.cpp:131 msgid "Error fetching preset name!" msgstr "" #: pp_menu_image.cpp:64 msgid "Open File" msgstr "Abre arquivo" #: pp_menu_image.cpp:104 msgid "Adding images..." msgstr "Adicionando imagens ..." #: pp_menu_image.cpp:186 msgid "Page is already full!" msgstr "" #: pp_menu_image.cpp:320 msgid "_Duplicate Image" msgstr "" #: pp_menu_image.cpp:320 #, fuzzy msgid "Duplicate the currently selected image" msgstr "Aplica efeitos à imagem selecionada" #: pp_menu_image.cpp:321 msgid "Duplicate to _Fill Page" msgstr "" #: pp_menu_image.cpp:321 msgid "Fill the page with copies of the currently selected image" msgstr "" #: pp_menu_image.cpp:325 #, fuzzy msgid "Set Image _Border..." msgstr "Selecionar uma borda" #: pp_menu_options.cpp:112 #, fuzzy msgid "_Colour Response Hash..." msgstr "Gerenciamento de _Cor" #: pp_menu_options.cpp:112 msgid "Create a hash for verifying printer settings" msgstr "" #: pp_menu_options.cpp:118 msgid "High-res Previews" msgstr "" #: pp_menu_options.cpp:118 msgid "Render high-resolution previews in the background" msgstr "" #: pp_menu_options.cpp:122 msgid "_Normal Display" msgstr "" #: pp_menu_options.cpp:122 msgid "Display colours with no print simulation" msgstr "" #: pp_menu_options.cpp:123 #, fuzzy msgid "Simulate Prin_t" msgstr "Simular impressão" #: pp_menu_options.cpp:123 msgid "" "Adjust colours on screen to imitate printed colours, including paper white" msgstr "" #: pp_menu_options.cpp:124 #, fuzzy msgid "Simulate Print, _Adapt White" msgstr "Simular impressão, Adapt White" #: pp_menu_options.cpp:124 msgid "Adjust colours to imitate printed colours, excluding paper white" msgstr "" #: pp_pageextent.cpp:228 msgid "Page Size and Margins" msgstr "" #: pp_pageextent.cpp:252 msgid "W:" msgstr "" #: pp_pageextent.cpp:275 msgid "Left:" msgstr "Esquerda:" #: pp_pageextent.cpp:291 msgid "Right:" msgstr "Direita:" #: pp_pageextent.cpp:304 msgid "Top:" msgstr "Topo:" #: pp_pageextent.cpp:315 msgid "Bottom:" msgstr "Pé:" #: gp_cppsupport/printoutputselector.cpp:114 msgid "Print Queue:" msgstr "Fila de Impressão:" #: gp_cppsupport/printoutputselector.cpp:133 msgid "Printer Model:" msgstr "Modelo de Impressora:" #: gp_cppsupport/printoutputselector.cpp:196 #, c-format msgid "" "The printer queue %s\n" " is not found - please choose another" msgstr "" #: gp_cppsupport/printoutputselector.cpp:197 #, fuzzy msgid "Printer queue not found" msgstr "Configuração da Impressora " #: gp_cppsupport/gprinter.cpp:387 #, fuzzy msgid "Unable to generate print data" msgstr "Gerando dados de impressão..." #: pp_scaling.cpp:72 msgid "Algorithm:" msgstr "Algoritmo:" #: pp_scaling.cpp:184 #, fuzzy msgid "Scaling" msgstr "_Redimensionamento" #: pp_sigcontrol.cpp:187 msgid "Columns:" msgstr "Colunas:" #: pp_sigcontrol.cpp:201 msgid "Rows:" msgstr "Linhas:" #: pp_sigcontrol.cpp:215 pp_sigcontrol.cpp:229 msgid "Gap:" msgstr "" #: pp_sigcontrol.cpp:254 msgid "Width:" msgstr "Largura:" #: pp_sigcontrol.cpp:268 msgid "Height:" msgstr "Altura:" #: pp_sigcontrol.cpp:280 #, fuzzy msgid "From selected image" msgstr "Desselecionar" #: pp_sigcontrol.cpp:338 msgid "Layout" msgstr "Leyout:" #: pp_sigcontrol.cpp:341 msgid "Specify rows/columns" msgstr "" #: pp_sigcontrol.cpp:342 msgid "Specify image dimensions" msgstr "" #: pp_units.cpp:60 msgid "Units:" msgstr "Unidades:" #: pp_units.cpp:68 msgid "Points" msgstr "Pontos:" #: pp_units.cpp:71 msgid "Inches" msgstr "Polegadas" #: pp_units.cpp:74 msgid "Millimeters" msgstr "Milímetros" #: pp_units.cpp:77 msgid "Centimeters" msgstr "Centímetros" #: pp_units.cpp:151 msgid "Units" msgstr "Unidades" #: printpreview.cpp:153 #, fuzzy msgid "Preview resolution:" msgstr "Resolução (dpi)" #: printpreview.cpp:157 msgid "180 dots per inch" msgstr "" #: printpreview.cpp:158 msgid "240 dots per inch" msgstr "" #: printpreview.cpp:159 msgid "300 dots per inch" msgstr "" #: printpreview.cpp:160 msgid "360 dots per inch" msgstr "" #: printpreview.cpp:165 msgid "" "Click-and-drag to pan around the preview.\n" "Right-click to toggle magnification." msgstr "" #: printpreview.cpp:168 #, fuzzy msgid "Close" msgstr "Roda" #: printpreview.cpp:236 #, fuzzy msgid "Drawing preview" msgstr "Imprimir Pré-visualização" #: gp_cppsupport/gprintersettings.cpp:413 msgid "" "Can't obtain printer from Gutenprint\n" "Check STP_DATA_PATH and Gutenprint version!" msgstr "" #: profilemanager/lcmswrapper.cpp:553 msgid "Perceptual" msgstr "Percentual" #: profilemanager/lcmswrapper.cpp:554 msgid "Relative Colorimetric" msgstr "Colorimétrica Relativa" #: profilemanager/lcmswrapper.cpp:555 msgid "Relative Colorimetric with BPC" msgstr "Colorimétrica Relativa com BPC" #: profilemanager/lcmswrapper.cpp:556 msgid "Saturation" msgstr "Saturação" #: profilemanager/lcmswrapper.cpp:557 msgid "Absolute Colorimetric" msgstr "Colorimétrica Absoluta" #: profilemanager/lcmswrapper.cpp:562 msgid "" "Aims for pleasing photographic results by preserving relationships between " "colours, and avoiding clipping of unattainable colours" msgstr "" "Tenta privilegiar os resultados fotográficos preservando o relacionamento " "entre as cores e evitando clipping of unattainable colours" #: profilemanager/lcmswrapper.cpp:563 msgid "" "Attempts to preserve the original colours, relative to white-point " "differences." msgstr "" "Tenta preservar as cores originais, relativas às diferenças dos pontos-" "brancos" #: profilemanager/lcmswrapper.cpp:564 msgid "" "Attempts to preserve the original colours, relative to white-point " "differences. Uses Black Point Compensation to avoid clipping of highlights " "and shadows." msgstr "" "Tenta preservar as cores originais, relativas às diferenças dos pontos-" "brancos. Usa Compensação de Pontos Pretos para evitar acentuar os reflexos e " "sombras." #: profilemanager/lcmswrapper.cpp:565 msgid "" "Attempts to provide brighter, more saturated colours, at the expense of " "colour relationships." msgstr "" "Tenta obter cores mais brilhantes e saturadas, em detrimento de " "relacionamentos entre as cores." #: profilemanager/lcmswrapper.cpp:566 msgid "" "Mimics the original colours (including white point) as closely as possible, " "for side-by-side comparisons. Clips unattainable colours." msgstr "" "Imita as cores originais (incluindo pontos brancos) o mais fielmente " "possível, para comparações lado-a-lado. Clips unattainable colours." #: profilemanager/profileselector.cpp:39 miscwidgets/imageselector.cpp:478 msgid "Other..." msgstr "Outro..." #: profilemanager/profileselector.cpp:193 #, fuzzy msgid "None" msgstr "_Nenhuma" #: profilemanager/profileselector.cpp:392 msgid "Please choose a valid ICC profile" msgstr "" #: profilemanager/profilemanager.cpp:207 msgid "Can't do proofing without a valid Printer profile!" msgstr "" #: profilemanager/profilemanager.cpp:212 msgid "Can't do proofing without a valid Monitor profile!" msgstr "" #: profilemanager/profilemanager.cpp:217 msgid "Can't do proofing without a valid Default RGB profile!" msgstr "" #: profilemanager/profilemanager.cpp:497 msgid "No Proof profile provided!" msgstr "" #: profilemanager/profilemanager.cpp:839 #, fuzzy msgid "Default rendering intent" msgstr "Tentar Renderização:" #: stpui_widgets/dimension.c:161 #, fuzzy msgid "points" msgstr "Pontos:" #: stpui_widgets/dimension.c:165 #, fuzzy msgid "inches" msgstr "Polegadas" #: stpui_widgets/dimension.c:169 #, fuzzy msgid "millimeters" msgstr "Milímetros" #: stpui_widgets/dimension.c:173 #, fuzzy msgid "centimeters" msgstr "Centímetros" #: stpui_widgets/stpui_optionbook.c:117 msgid "General" msgstr "" #: stpui_widgets/stpui_optionbook.c:120 #, fuzzy msgid "Manual Settings" msgstr "Tamanho _Manual" #: stpui_widgets/stpui_optionbook.c:123 #, fuzzy msgid "Colour (Basic)" msgstr "Espaço de cor:" #: stpui_widgets/stpui_optionbook.c:126 msgid "Colour (Fine-tuning)" msgstr "" #: stpui_widgets/stpui_optionbook.c:129 msgid "Colour (Extra)" msgstr "" #: miscwidgets/patheditor.cpp:53 msgid "Select directory..." msgstr "Selecionar pasta..." #: miscwidgets/patheditor.cpp:98 msgid "Path" msgstr "Caminho" #: miscwidgets/patheditor.cpp:112 msgid "Add..." msgstr "Adicionar..." #: miscwidgets/patheditor.cpp:117 msgid "Remove" msgstr "Remover" #: miscwidgets/imageselector.cpp:458 msgid "Image" msgstr "Imagem" #: miscwidgets/progressbar.cpp:52 msgid "Progress..." msgstr "" #: imagesource/imagesource_util.cpp:32 msgid "Automatic" msgstr "" #: imagesource/imagesource_util.cpp:32 msgid "Selects a scaling algorithm based on scale factor" msgstr "" #: imagesource/imagesource_util.cpp:33 #, fuzzy msgid "Fast" msgstr "Co_lar" #: imagesource/imagesource_util.cpp:33 msgid "Very fast scaling with no interpolation" msgstr "" #: imagesource/imagesource_util.cpp:34 msgid "Bilinear" msgstr "" #: imagesource/imagesource_util.cpp:34 msgid "An interpolation filter with mediocre speed and quality" msgstr "" #: imagesource/imagesource_util.cpp:35 msgid "LanczosSinc" msgstr "" #: imagesource/imagesource_util.cpp:35 msgid "Slow but very high quality interpolation filter" msgstr "" #: imagesource/imagesource_util.cpp:37 msgid "Downsample" msgstr "" #: imagesource/imagesource_util.cpp:37 msgid "High quality filter for reductions only" msgstr "" #~ msgid "Change Colour Temperature..." #~ msgstr "Mudar Temperatura da Cor..." #~ msgid "Effects..." #~ msgstr "Efeitos..." #~ msgid "Available:" #~ msgstr "Disponível..." #~ msgid "Add" #~ msgstr "Adicionar" #~ msgid "Settings..." #~ msgstr "Configurações..." #, fuzzy #~ msgid "/_File" #~ msgstr "_Arquivo" #, fuzzy #~ msgid "/File/_Open Preset..." #~ msgstr "A_brir Pré-seleção..." #, fuzzy #~ msgid "/File/_Save Preset" #~ msgstr "_Salvar Pré-seleção" #, fuzzy #~ msgid "/File/Save _As..." #~ msgstr "Salvar _Como..." #, fuzzy #~ msgid "/File/Save _Default" #~ msgstr "Salvar _Padrão" #, fuzzy #~ msgid "/File/E_xport TIFF..." #~ msgstr "Exportar TIFF" #, fuzzy #~ msgid "/File/Print Pre_view..." #~ msgstr "Imprimir Pré-visualização" #, fuzzy #~ msgid "/File/Print S_etup..." #~ msgstr "Configuração de Impr_essora" #, fuzzy #~ msgid "/File/_Print" #~ msgstr "_Imprimir" #, fuzzy #~ msgid "/File/_Quit" #~ msgstr "Sai_r" #, fuzzy #~ msgid "/Edit/Select _All" #~ msgstr "Selecionar _Tudo" #, fuzzy #~ msgid "/Edit/Select _None" #~ msgstr "Selecionar _Nada" #, fuzzy #~ msgid "/_Layout" #~ msgstr "_Layout" #, fuzzy #~ msgid "/Layout/_Clear Layout" #~ msgstr "L_impar Layout" #, fuzzy #~ msgid "/Layout/Set _Background" #~ msgstr "Selecionar _Background" #, fuzzy #~ msgid "/Layout/sep" #~ msgstr "Leyout:" #, fuzzy #~ msgid "/Image/_Add Image" #~ msgstr "_Adicionar Imagem..." #, fuzzy #~ msgid "/Image/_Remove Image" #~ msgstr "_Remover Imagem" #, fuzzy #~ msgid "/Image/sep" #~ msgstr "Imagem" #, fuzzy #~ msgid "/Image/Allow _Cropping" #~ msgstr "Permitir _Corte" #, fuzzy #~ msgid "/Image/Rotation/_90 degrees" #~ msgstr "Rotaciona 180 graus." #, fuzzy #~ msgid "/Image/Rotation/_180 degrees" #~ msgstr "Rotaciona 180 graus." #, fuzzy #~ msgid "/Image/Set image _mask..." #~ msgstr "Selecionar _Máscara da Imagem..." #, fuzzy #~ msgid "/Image/_Effects..." #~ msgstr "_Efeitos" #, fuzzy #~ msgid "/Image/Set colour _profile..." #~ msgstr "Configurar _Perfil de Cor" #, fuzzy #~ msgid "/Layout/_Auto Layout" #~ msgstr "Layout _Automático" #, fuzzy #~ msgid "/Layout/_Poster" #~ msgstr "_Cartaz" #, fuzzy #~ msgid "/Layout/_Carousel" #~ msgstr "_Roda" #, fuzzy #~ msgid "/Layout/_Manual Size" #~ msgstr "Tamanho _Manual" #, fuzzy #~ msgid "/_Options" #~ msgstr "_Opções" #, fuzzy #~ msgid "/Options/_Paths..." #~ msgstr "C_aminhos" #, fuzzy #~ msgid "/Options/Colour _Management..." #~ msgstr "Gerenciamento de _Cor" #, fuzzy #~ msgid "/Options/_Units..." #~ msgstr "_Uniddes" #, fuzzy #~ msgid "/Options/_Scaling..." #~ msgstr "_Redimensionamento" #, fuzzy #~ msgid "/_Help" #~ msgstr "_Ajuda" #, fuzzy #~ msgid "/_Remove Image" #~ msgstr "_Remover Imagem" #, fuzzy #~ msgid "/Allow _Cropping" #~ msgstr "Permitir _Corte" #, fuzzy #~ msgid "/Rotation/Auto" #~ msgstr "R_otação" #, fuzzy #~ msgid "/Rotation/None" #~ msgstr "R_otação" #, fuzzy #~ msgid "/Rotation/90 degrees" #~ msgstr "Rotaciona 180 graus." #, fuzzy #~ msgid "/Rotation/180 degrees" #~ msgstr "Rotaciona 180 graus." #, fuzzy #~ msgid "/Rotation/270 degrees" #~ msgstr "Rotaciona 180 graus." #, fuzzy #~ msgid "/Set image mask..." #~ msgstr "Selecionar _Máscara da Imagem..." #, fuzzy #~ msgid "/_Effects..." #~ msgstr "_Efeitos" #, fuzzy #~ msgid "/Set colour _profile..." #~ msgstr "Configurar _Perfil de Cor" #~ msgid "Poster Size:" #~ msgstr "Tamanho do Cartaz:" #~ msgid "Tiles high:" #~ msgstr "Altura das divisões:" #~ msgid "Scale" #~ msgstr "Escala" #~ msgid "Margins" #~ msgstr "Margens" #~ msgid "Horizontal:" #~ msgstr "Horinzontal:" #~ msgid "Vertical:" #~ msgstr "Vertical:" photoprint-0.4.2-pre2/po/LINGUAS0000644000175000017500000000004211257255552013162 00000000000000ru fr pt pt_BR es da cs pl nl de photoprint-0.4.2-pre2/po/pl.po0000644000175000017500000007730211400237672013116 00000000000000# Polish translation for Photo Print. # Copyright (C) 2007 Alastair M. Robinson # This file is distributed under the same license as the photoprint package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: photoprint 0.4.0\n" "Report-Msgid-Bugs-To: blackfive@fakenhamweb.co.uk\n" "POT-Creation-Date: 2010-05-29 17:24+0100\n" "PO-Revision-Date: 2009-04-15 09:26+0100\n" "Last-Translator: Artur Szymanski \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #: dialogs.cpp:75 #, fuzzy msgid "Colour Response Hash" msgstr "Z_arzÄ…dzanie kolorami" #: dialogs.cpp:96 msgid "" "This \"hash\" value is derived from the printer driver's output,\n" "and can be used to verify that no changes have occurred which\n" "might invalidate a colour profile for the printer" msgstr "" #: dialogs.cpp:108 msgid "Current hash:" msgstr "" #: dialogs.cpp:112 #, fuzzy msgid "Stored in preset:" msgstr "Zapisuje wzorzec" #: dialogs.cpp:118 msgid "No hash stored yet" msgstr "" #: dialogs.cpp:127 msgid "" "Calculating hash of printer response\n" "with current driver settings" msgstr "" #: dialogs.cpp:132 #, fuzzy msgid "Store in preset" msgstr "Zapisuje wzorzec" #: dialogs.cpp:156 msgid "" "MATCH - No changes in driver\n" "or printer settings detected" msgstr "" #: dialogs.cpp:162 msgid "" "This hash can be used to detect changes\n" "in printer settings or driver versions\n" "that might invalidate colour profiles" msgstr "" #: dialogs.cpp:164 msgid "" "MISMATCH - change detected in printer response!\n" "Printer's colour profile might no longer be accurate." msgstr "" #: dialogs.cpp:287 msgid "Printer Setup" msgstr "Ustawienia drukarki" #: dialogs.cpp:301 msgid "Output" msgstr "UrzÄ…dzenie" #: dialogs.cpp:338 msgid "About" msgstr "O programie" #: dialogs.cpp:349 #, fuzzy msgid "PhotoPrint " msgstr "Wychodzi z programu PhotoPrint" #: dialogs.cpp:388 msgid "Set paths..." msgstr "Ustawienia Å›cieżek..." #: dialogs.cpp:413 msgid "ICC Profiles" msgstr "Profile ICC" #: dialogs.cpp:445 msgid "Borders" msgstr "Obramowania" #: dialogs.cpp:476 msgid "Backgrounds" msgstr "TÅ‚o" #: dialogs.cpp:504 msgid "Select a border..." msgstr "Wybór obramowania..." #: dialogs.cpp:551 msgid "Export TIFF..." msgstr "Eksport do TIFF..." #: dialogs.cpp:577 dialogs.cpp:776 msgid "Page range:" msgstr "Zakres stron:" #: dialogs.cpp:590 dialogs.cpp:786 msgid "Resolution (dpi):" msgstr "Rozdzielczość (dpi):" #: dialogs.cpp:598 msgid "Save as 16-bit:" msgstr "Zapisz w 16-bit:" #: dialogs.cpp:617 dialogs.cpp:821 msgid "Output Profile:" msgstr "Profil wyjÅ›ciowy:" #: dialogs.cpp:677 dialogs.cpp:914 msgid "Please provide a filename." msgstr "ProszÄ™ wpisać nazwÄ™ pliku." #: dialogs.cpp:708 dialogs.cpp:892 msgid "Exporting..." msgstr "Eksportowanie..." #: dialogs.cpp:747 msgid "Export JPEG..." msgstr "Eksport do JPEG..." #: dialogs.cpp:805 msgid "JPEG Quality:" msgstr "Jakość JPEG:" #: dialogs.cpp:931 msgid "Select a background..." msgstr "Wybór tÅ‚a..." #: dialogs.cpp:1023 pp_menu_image.cpp:276 msgid "Please select an image first!" msgstr "Najpierw należy wybrać obraz!" #: dialogs.cpp:1054 msgid "Set Custom Profile..." msgstr "WÅ‚asne ustawienia profilu..." #: dialogs.cpp:1066 msgid "Before:" msgstr "Przed:" #: dialogs.cpp:1070 msgid "After:" msgstr "Po:" #: dialogs.cpp:1084 msgid "" "Can't show a colour managed\n" "preview unless you choose\n" "a Default RGB or Monitor profile\n" "in the Options->Colour Management\n" "dialog!" msgstr "" "Nie można wyÅ›wietlić podglÄ…du\n" "dopóki nie zostanie wybrany domyÅ›lny\n" "profil RGB lub monitora w menu\n" "Opcje->ZarzÄ…dzanie kolorami!" #: dialogs.cpp:1109 msgid "" "Warning: Image already has an embedded profile\n" "Assigning a new one will over-ride it!" msgstr "" "Ostrzeżenie: Obraz posiada już wbudowany profil\n" "Przypisanie nowego spowoduje nadpisanie starego!" #: dialogs.cpp:1126 msgid "Assign Profile:" msgstr "Przypisz profil:" #: dialogs.cpp:1134 pp_cms.cpp:349 msgid "Rendering intent:" msgstr "Metoda konwersji kolorów:" #: effects/ppeffect_temperature.cpp:28 msgid "Warm/Cool" msgstr "CiepÅ‚y/zimny" #: effects/effectselector.cpp:222 msgid "Active" msgstr "Aktywny" #: effects/effectselector.cpp:231 msgid "Icon" msgstr "Ikona" #: effects/effectselector.cpp:243 msgid "Name" msgstr "Nazwa" #: effects/ppeffect_desaturate.cpp:25 msgid "Desaturate" msgstr "Desaturacja" #: effects/effectwidget_tempchange.cpp:57 #, c-format msgid "%d degrees K" msgstr "%d stopni K" #: effects/ppeffect_unsharpmask.cpp:25 msgid "Sharpen" msgstr "Wyostrzenie" #: effects/effectwidget_unsharpmask.cpp:66 #, c-format msgid "Radius: %1.2f" msgstr "PromieÅ„: %1.2f" #: effects/effectwidget_unsharpmask.cpp:72 #, c-format msgid "Amount: %1.2f" msgstr "Rozmiar: %1.2f" #: menucheck.cpp:23 pp_menu_file.cpp:135 msgid "_File" msgstr "_Plik" #: menucheck.cpp:25 pp_menu_file.cpp:137 msgid "_Open Preset..." msgstr "_Otwórz wzorzec" #: menucheck.cpp:25 pp_menu_file.cpp:137 msgid "Open a preset" msgstr "Otwiera wzorzec" #: menucheck.cpp:26 pp_menu_file.cpp:138 msgid "_Save Preset" msgstr "Zapi_sz wzorzec" #: menucheck.cpp:26 pp_menu_file.cpp:138 msgid "Save a preset" msgstr "Zapisuje wzorzec" #: menucheck.cpp:27 pp_menu_file.cpp:139 msgid "Save _As..." msgstr "Z_apisz jako..." #: menucheck.cpp:27 pp_menu_file.cpp:139 msgid "Save preset with a new filename" msgstr "Zapisuje wzorzec pod nowÄ… nazwÄ…" #: menucheck.cpp:28 pp_menu_file.cpp:140 msgid "Save _Default" msgstr "Zapisz _domyÅ›lne" #: menucheck.cpp:28 pp_menu_file.cpp:140 msgid "Save preset as the default" msgstr "Zapisuje wzorzec jako domyÅ›lny" #: menucheck.cpp:29 msgid "E_xport TIFF..." msgstr "_Eksportuj jako TIFF..." #: menucheck.cpp:29 pp_menu_file.cpp:142 msgid "Export pages as TIFF files" msgstr "Eksportuje strony do formatu TIFF" #: menucheck.cpp:30 pp_menu_file.cpp:144 msgid "Print Pre_view..." msgstr "_PodglÄ…d wydruku..." #: menucheck.cpp:30 pp_menu_file.cpp:144 msgid "Preview how the printed page will look" msgstr "WyÅ›wietla jak bÄ™dzie wyglÄ…daÅ‚ wydruk" #: menucheck.cpp:31 pp_menu_file.cpp:145 msgid "Print S_etup..." msgstr "Ustawi_enia drukarki..." #: menucheck.cpp:31 pp_menu_file.cpp:145 msgid "Set printer driver and options" msgstr "Ustawienia sterownika drukarki i opcje" #: menucheck.cpp:32 pp_menu_file.cpp:146 msgid "_Print" msgstr "_Drukuj" #: menucheck.cpp:32 pp_menu_file.cpp:146 msgid "Print pages" msgstr "Drukuje strony" #: menucheck.cpp:33 pp_menu_file.cpp:147 msgid "_Quit" msgstr "_ZakoÅ„cz" #: menucheck.cpp:33 pp_menu_file.cpp:147 msgid "Exit PhotoPrint" msgstr "Wychodzi z programu PhotoPrint" #: menucheck.cpp:62 pp_menu_layout.cpp:131 msgid "_Layout" msgstr "_UkÅ‚ad" #: menucheck.cpp:63 pp_menu_image.cpp:316 msgid "_Image" msgstr "O_braz" #: menucheck.cpp:64 pp_menu_options.cpp:108 msgid "_Options" msgstr "_Opcje" #: menucheck.cpp:65 pp_menu_help.cpp:29 msgid "_Help" msgstr "Pomo_c" #: menucheck.cpp:67 pp_menu_layout.cpp:133 msgid "_Clear Layout" msgstr "_Wyczyść ukÅ‚ad" #: menucheck.cpp:67 pp_menu_layout.cpp:133 msgid "Remove all images from the layout" msgstr "Usuwa wszystkie obrazy z ukÅ‚adu" #: menucheck.cpp:68 pp_menu_layout.cpp:134 msgid "Set _Background" msgstr "Ustaw _TÅ‚o" #: menucheck.cpp:68 pp_menu_layout.cpp:134 msgid "Set a background image for the current layout" msgstr "Ustawia tÅ‚o dla aktualnego ukÅ‚adu" #: menucheck.cpp:70 pp_menu_image.cpp:318 msgid "_Add Image..." msgstr "_Dodaj obraz" #: menucheck.cpp:70 pp_menu_image.cpp:318 msgid "Add images to the current layout" msgstr "Dodaje obrazy do aktualnego ukÅ‚adu" #: menucheck.cpp:71 pp_menu_image.cpp:319 msgid "_Remove Image" msgstr "_UsuÅ„ obraz" #: menucheck.cpp:71 pp_menu_image.cpp:319 msgid "Remove selected images from the layout" msgstr "Usuwa zaznaczone obrazy z ukÅ‚adu" #: menucheck.cpp:73 pp_menu_image.cpp:323 msgid "_Rotation" msgstr "O_brót" #: menucheck.cpp:75 msgid "Set Image _Mask..." msgstr "Ustaw _maskÄ™ obrazu" #: menucheck.cpp:75 pp_menu_image.cpp:325 msgid "Set a border mask for the selected image" msgstr "Ustawia obramowanie dla zaznaczonego obrazu" #: menucheck.cpp:76 msgid "_Effects..." msgstr "_Efekty" #: menucheck.cpp:76 msgid "Apply effects to the selected image" msgstr "Zastosowuje efekty do zaznaczonego obrazu " #: menucheck.cpp:77 pp_menu_image.cpp:327 msgid "Set Colour _Profile..." msgstr "Ustaw _profil kolorystyczny" #: menucheck.cpp:77 pp_menu_image.cpp:327 msgid "Assign an ICC profile or custom rendering intent to the image" msgstr "Przypisuje profil ICC lub wÅ‚asnÄ… metodÄ™ konwersji kolorów do obrazu" #: menucheck.cpp:79 pp_menu_options.cpp:110 msgid "_Paths..." msgstr "Åš_cieżki" #: menucheck.cpp:79 pp_menu_options.cpp:110 msgid "Set search paths for ICC profiles, borders, etc." msgstr "Ustawia Å›cieżki katalogów zawierajÄ…cych profile ICC, obramowania itp." #: menucheck.cpp:80 pp_menu_options.cpp:111 msgid "_Colour Management..." msgstr "Z_arzÄ…dzanie kolorami" #: menucheck.cpp:80 pp_menu_options.cpp:111 msgid "Set colour management options" msgstr "Ustawia opcje zarzÄ…dzania kolorami" #: menucheck.cpp:81 pp_menu_options.cpp:113 msgid "_Units..." msgstr "Jedn_ostki..." #: menucheck.cpp:81 pp_menu_options.cpp:113 msgid "Select the units used throughout PhotoPrint" msgstr "Wybiera jednostki miary używane w PhotoPrint " #: menucheck.cpp:82 pp_menu_options.cpp:114 msgid "_Scaling..." msgstr "_Skalowanie..." #: menucheck.cpp:82 pp_menu_options.cpp:114 msgid "Select the preferred scaling method." msgstr "Wybiera preferowanÄ… metodÄ™ skalowania obrazu" #: menucheck.cpp:84 pp_menu_help.cpp:31 msgid "About..." msgstr "O programie..." #: menucheck.cpp:84 pp_menu_help.cpp:31 msgid "Some information about PhotoPrint" msgstr "TrochÄ™ informacji na temat PhotoPrint " #: menucheck.cpp:89 pp_menu_image.cpp:332 msgid "Allow _Cropping" msgstr "Zezwól na ka_drowanie" #: menucheck.cpp:89 pp_menu_image.cpp:332 msgid "Crop the selected images to fill the available space" msgstr "Kadruje zaznaczony obraz aby wypeÅ‚niÅ‚ dostÄ™pnÄ… przestrzeÅ„" #: menucheck.cpp:94 pp_menu_layout.cpp:139 msgid "_Auto Layout" msgstr "_Automatyczny" #: menucheck.cpp:94 pp_menu_layout.cpp:139 msgid "Automatically place images in a grid" msgstr "Automatycznie umieszcza obrazy na siatce" #: menucheck.cpp:95 pp_menu_layout.cpp:140 msgid "_Poster" msgstr "_Plakat" #: menucheck.cpp:95 pp_menu_layout.cpp:140 msgid "Print an image in multiple pages, to be assembled into a poster" msgstr "" "Drukuje obraz na wielu stronach w celu umożliwienia połączenia ich w plakat" #: menucheck.cpp:96 pp_menu_layout.cpp:141 msgid "_Carousel" msgstr "_Karuzela" #: menucheck.cpp:96 pp_menu_layout.cpp:141 msgid "Fade images into a circular 'carousel' - ideal for CD labels." msgstr "Nanosi obrazy na okrÄ…głą 'karuzelÄ™' - opcja idealna do nadruku CD" #: menucheck.cpp:97 pp_menu_layout.cpp:142 msgid "_Manual Size" msgstr "_RÄ™czny" #: menucheck.cpp:97 pp_menu_layout.cpp:142 msgid "Print images on a single sheet, at a specified scale." msgstr "Drukuje obrazy na pojedynczym arkuszu wedÅ‚ug podanej skali" #: menucheck.cpp:101 pp_menu_image.cpp:337 msgid "_Auto" msgstr "_Automatycznie" #: menucheck.cpp:101 pp_menu_image.cpp:337 msgid "Automatically choose rotation to fit the available space." msgstr "Automatycznie wybiera obrót aby dopasować do wolnej przestrzeni" #: menucheck.cpp:102 pp_menu_image.cpp:338 msgid "_None" msgstr "_Brak" #: menucheck.cpp:102 pp_menu_image.cpp:338 msgid "No rotation." msgstr "Bez obracania" #: menucheck.cpp:103 pp_menu_image.cpp:339 msgid "_90 Degrees" msgstr "_90 stopni" #: menucheck.cpp:103 pp_menu_image.cpp:339 msgid "Rotate 90 degrees clockwise." msgstr "Obraca o 90 stopni zgodnie ze wskazówkami zegara" #: menucheck.cpp:104 pp_menu_image.cpp:340 msgid "_180 Degrees" msgstr "_180 stopni" #: menucheck.cpp:104 pp_menu_image.cpp:340 msgid "Rotate 180 degrees." msgstr "Obraca o 180 stopni" #: menucheck.cpp:105 pp_menu_image.cpp:341 msgid "_270 Degrees" msgstr "_270 stopni" #: menucheck.cpp:105 pp_menu_image.cpp:341 msgid "Rotate 90 degrees anticlockwise." msgstr "Obraca o 90 stopni przeciwnie do wskazówek zegara" #: menucheck.cpp:229 msgid "Dither Algorithm" msgstr "Algorytm ditheringu" #: photoprint.cpp:135 msgid "Initializing..." msgstr "Inicjowanie..." #: photoprint.cpp:144 msgid "Checking .photoprint directory..." msgstr "Sprawdzanie katalogu .photoprint..." #: photoprint.cpp:149 msgid "Loading preset..." msgstr "Åadowanie wzorca..." #: photoprint.cpp:154 msgid "Creating layout..." msgstr "Tworzenie ukÅ‚adu..." #: photoprint.cpp:197 msgid "Loading images..." msgstr "Åadowanie obrazów..." #: pixbufthumbnail/egg-pixbuf-thumbnail.c:349 #, c-format msgid "Error creating directory `%s': %s" msgstr "Błąd w tworzeniu katalogu `%s': %s" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:463 #, c-format msgid "Error opening `%s': %s" msgstr "Błąd otwarcia `%s': %s" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:481 #, c-format msgid "Error reading `%s': file contains no data." msgstr "Błąd czytania `%s': plik nie zawiera danych. " #: pixbufthumbnail/egg-pixbuf-thumbnail.c:505 #, c-format msgid "Error reading `%s': %s" msgstr "Błąd czytania `%s': %s" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:540 #, c-format msgid "" "Failed to load image '%s': reason not known, probably a corrupt image file" msgstr "" "Nie udaÅ‚o siÄ™ zaÅ‚adować obrazu '%s': przyczyna nieznana, prawdopodobnie " "uszkodzony plik" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:613 #, c-format msgid "Error verifying `%s': %s" msgstr "Błąd weryfikacji `%s': %s" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:629 #, c-format msgid "Error reading `%s': file is not a regular file or symbolic link." msgstr "" "Błąd czytania `%s': plik nie jest zwykÅ‚ym plikiem lub jest dowiÄ…zaniem " "symbolicznym. " #: pixbufthumbnail/egg-pixbuf-thumbnail.c:1071 #, c-format msgid "Error creating temporary thumbnail file for `%s': %s" msgstr "Błąd przy tworzeniu tymczasowej miniatury dla `%s': %s" #: pp_cms.cpp:148 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "will first be converted to the default CMYK profile" msgstr "" #: pp_cms.cpp:154 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "cannot be printed without a default CMYK profile." msgstr "" #: pp_cms.cpp:160 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "cannot be printed without a default RGB and CMYK profile." msgstr "" #: pp_cms.cpp:168 msgid "" "Printer profile is a devicelink - RGB images with embedded profiles\n" "will first be converted to the default RGB profile." msgstr "" #: pp_cms.cpp:174 msgid "" "Printer profile is a devicelink - RGB images with embedded profiles will " "not\n" "print correctly, since there is no default RGB profile." msgstr "" #: pp_cms.cpp:180 msgid "RGB images will print correctly" msgstr "" #: pp_cms.cpp:185 msgid "" "RGB images can be printed but colours depend on the driver\n" "(Colours will be accurate for images that contain an embedded profile)" msgstr "" #: pp_cms.cpp:190 msgid "RGB images can be printed but colours depend on the driver" msgstr "" #: pp_cms.cpp:195 msgid "" "RGB images can only be printed if they have an embedded profile\n" "(Workflow is CMYK and there is no default RGB profile)" msgstr "" #: pp_cms.cpp:200 msgid "" "RGB images cannot be printed\n" "(Workflow is CMYK and there is no printer profile)" msgstr "" #: pp_cms.cpp:215 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "will first be converted to the default RGB profile" msgstr "" #: pp_cms.cpp:221 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "cannot be printed without a default RGB profile." msgstr "" #: pp_cms.cpp:227 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "cannot be printed without a default RGB and CMYK profile." msgstr "" #: pp_cms.cpp:234 msgid "" "Printer profile is a devicelink - CMYK images with embedded profiles\n" "will first be converted to the default CMYK profile." msgstr "" #: pp_cms.cpp:240 msgid "" "Printer profile is a devicelink - CMYK images with embedded profiles will " "not\n" "print correctly since there is no default CMYK profile." msgstr "" #: pp_cms.cpp:246 msgid "CMYK images will print correctly" msgstr "" #: pp_cms.cpp:251 msgid "" "CMYK images can be printed but colours depend on the driver\n" "(Colours will be accurate for images that contain an embedded profile)" msgstr "" #: pp_cms.cpp:256 msgid "CMYK images can be printed but colours depend on the driver" msgstr "" #: pp_cms.cpp:261 msgid "" "CMYK images can only be printed if they have an embedded profile\n" "(Workflow is RGB and there is no default CMYK profile)" msgstr "" #: pp_cms.cpp:266 msgid "" "CMYK images cannot be printed\n" "(Workflow is RGB and there is no printer profile)" msgstr "" #: pp_cms.cpp:276 msgid "Images will be displayed correctly" msgstr "" #: pp_cms.cpp:281 msgid "" "Images will only be displayed correctly if they have an embedded profile" msgstr "" #: pp_cms.cpp:286 msgid "Images will not be displayed correctly" msgstr "" #: pp_cms.cpp:317 msgid "Printer" msgstr "Drukarka" #: pp_cms.cpp:332 msgid "Printer Profile:" msgstr "Profil drukarki:" #: pp_cms.cpp:364 msgid "Colour space:" msgstr "PrzestrzeÅ„ barw:" #: pp_cms.cpp:372 msgid "RGB" msgstr "" #: pp_cms.cpp:372 msgid "Send Red, Green and Blue data to the printer driver" msgstr "" #: pp_cms.cpp:373 msgid "CMYK" msgstr "" #: pp_cms.cpp:373 msgid "Send Cyan, Magenta, Yellow and Black data to the printer driver" msgstr "" #: pp_cms.cpp:383 msgid "Monitor" msgstr "Monitor" #: pp_cms.cpp:396 msgid "Monitor Profile:" msgstr "Profil monitora:" #: pp_cms.cpp:411 msgid "Display mode:" msgstr "Tryb wyÅ›wietlania:" #: pp_cms.cpp:420 msgid "Normal" msgstr "Normalny" #: pp_cms.cpp:420 msgid "Displays images' original colours, transformed to suit the monitor" msgstr "" #: pp_cms.cpp:421 msgid "Simulate Print" msgstr "Symulacja druku" #: pp_cms.cpp:421 msgid "" "Simulates how colours will look when printed, imitating the paper's white " "point." msgstr "" #: pp_cms.cpp:422 msgid "Simulate Print, Adapt White" msgstr "Symulacja druku, dopasowanie bieli" #: pp_cms.cpp:422 msgid "" "Simulates how colours will look when printed, adapting colours for the " "monitor's white point." msgstr "" #: pp_cms.cpp:432 msgid "Default Image Profiles" msgstr "DomyÅ›lne profile obrazu" #: pp_cms.cpp:447 msgid "RGB Profile:" msgstr "Profil RGB:" #: pp_cms.cpp:464 msgid "CMYK Profile:" msgstr "Profil CMYK:" #: pp_cms.cpp:666 msgid "Colour Management" msgstr "ZarzÄ…dzanie kolorem" #: pp_histogram.cpp:282 msgid "Histogram" msgstr "" #: pp_imagecontrol.cpp:134 msgid "Effects" msgstr "Efekty" #: pp_imageinfo.cpp:107 msgid "in" msgstr "in" #: pp_imageinfo.cpp:110 msgid "pt" msgstr "pt" #: pp_imageinfo.cpp:115 msgid "cm" msgstr "cm" #: pp_imageinfo.cpp:120 msgid "mm" msgstr "mm" #: pp_imageinfo.cpp:168 msgid "Image Info" msgstr "WÅ‚aÅ›ciwoÅ›ci obrazu" #: pp_imageinfo.cpp:195 msgid "Filename:" msgstr "Nazwa pliku:" #: pp_imageinfo.cpp:208 msgid "Dimensions:" msgstr "Wymiary:" #: pp_imageinfo.cpp:228 msgid "Resolution:" msgstr "Rozdzielczość:" #: pp_imageinfo.cpp:241 msgid "Profile:" msgstr "Profil:" #: pp_imageinfo.cpp:351 msgid "pixels" msgstr "pikseli" #: pp_imageinfo.cpp:380 profilemanager/profilemanager.cpp:831 msgid "Default" msgstr "DomyÅ›lny" #: pp_layout_carousel.cpp:247 pp_layout_carousel.cpp:379 pp_layout_nup.cpp:222 #: pp_layout_poster.cpp:312 pp_layout_poster.cpp:464 pp_layout_single.cpp:233 #: printpreview.cpp:146 msgid "Page:" msgstr "Strona:" #: pp_layout_carousel.cpp:275 msgid "Carousel" msgstr "Karuzela" #: pp_layout_carousel.cpp:291 msgid "Segments:" msgstr "Ilość części:" #: pp_layout_carousel.cpp:306 msgid "Overlap (%):" msgstr "Zachodzenie (%):" #: pp_layout_carousel.cpp:321 msgid "Starting angle:" msgstr "KÄ…t nachylenia:" #: pp_layout_carousel.cpp:336 msgid "Inner Radius:" msgstr "PromieÅ„ Å›rodkowy:" #: pp_layout_poster.cpp:339 msgid "Poster Layout" msgstr "UkÅ‚ad plakatu" #: pp_layout_poster.cpp:354 msgid "Size" msgstr "Rozmiar" #: pp_layout_poster.cpp:366 pp_layout_poster.cpp:390 msgid "by" msgstr "na" #: pp_layout_poster.cpp:378 msgid "Tiles" msgstr "Kafle" #: pp_layout_poster.cpp:400 msgid "Overlap" msgstr "Zachodzenie:" #: pp_layout_poster.cpp:414 pp_pageextent.cpp:262 msgid "H:" msgstr "H:" #: pp_layout_poster.cpp:426 msgid "V:" msgstr "V:" #: pp_layout_single.cpp:261 msgid "Manual scaling" msgstr "Skalowanie rÄ™czne" #: pp_layout_single.cpp:277 msgid "H (%):" msgstr "H (%):" #: pp_layout_single.cpp:291 msgid "V (%):" msgstr "V (%):" #: pp_mainwindow.cpp:228 msgid "Transferring images..." msgstr "Przetwarzanie obrazów..." #: pp_menu_edit.cpp:37 msgid "_Edit" msgstr "_Edycja" #: pp_menu_edit.cpp:39 msgid "Select _All" msgstr "Z_aznacz wszystkie obrazy" #: pp_menu_edit.cpp:39 msgid "Select all images" msgstr "Zaznacza wszystkie obrazy" #: pp_menu_edit.cpp:40 msgid "Select _None" msgstr "Odz_nacz wszystkie obrazy" #: pp_menu_edit.cpp:40 msgid "Deselect all images" msgstr "Odznacza wszystkie obrazy" #: pp_menu_edit.cpp:41 msgid "_Cut" msgstr "_Wytnij" #: pp_menu_edit.cpp:41 msgid "Cut the current image to the clipboard" msgstr "Wycina zaznaczony obraz do schowka" #: pp_menu_edit.cpp:42 msgid "C_opy" msgstr "K_opiuj" #: pp_menu_edit.cpp:42 msgid "Copy the current image to the clipboard" msgstr "Kopiuje zaznaczony obraz do schowka" #: pp_menu_edit.cpp:43 msgid "_Paste" msgstr "W_klej" #: pp_menu_edit.cpp:43 msgid "Paste the contents of the clipboard as a new image" msgstr "Wkleja zawartość schowka jako nowy obraz" #: pp_menu_file.cpp:38 msgid "Open preset..." msgstr "Otwórz wzorzec..." #: pp_menu_file.cpp:64 msgid "Save preset..." msgstr "Zapisz wzorzec..." #: pp_menu_file.cpp:115 msgid "Generating print data..." msgstr "Tworzenie danych wydruku..." #: pp_menu_file.cpp:141 msgid "E_xport" msgstr "E_ksport" #: pp_menu_file.cpp:142 msgid "Export _TIFF..." msgstr "Eksportuj jako _TIFF..." #: pp_menu_file.cpp:143 msgid "Export _JPEG..." msgstr "Eksportuj jako _JPEG..." #: pp_menu_file.cpp:143 msgid "Export pages as JPEG files" msgstr "Eksportuje strony do formatu JPEG" #: pp_menu_shortcuts.cpp:78 msgid "_Shortcuts" msgstr "" #: pp_menu_shortcuts.cpp:131 msgid "Error fetching preset name!" msgstr "" #: pp_menu_image.cpp:64 msgid "Open File" msgstr "Wybór pliku do otwarcia" #: pp_menu_image.cpp:104 msgid "Adding images..." msgstr "Dodawanie obrazu..." #: pp_menu_image.cpp:186 msgid "Page is already full!" msgstr "Strona jest już zapeÅ‚niona!" #: pp_menu_image.cpp:320 msgid "_Duplicate Image" msgstr "_Duplikuj obraz" #: pp_menu_image.cpp:320 msgid "Duplicate the currently selected image" msgstr "Tworzy kopiÄ™ aktualnie zaznaczonego obrazu" #: pp_menu_image.cpp:321 #, fuzzy msgid "Duplicate to _Fill Page" msgstr "_Duplikuj wypeÅ‚niajÄ…c stronÄ™ " #: pp_menu_image.cpp:321 msgid "Fill the page with copies of the currently selected image" msgstr "WypeÅ‚nia stronÄ™ kopiami aktualnie zaznaczonego obrazu" #: pp_menu_image.cpp:325 #, fuzzy msgid "Set Image _Border..." msgstr "Wybór obramowania..." #: pp_menu_options.cpp:112 #, fuzzy msgid "_Colour Response Hash..." msgstr "Z_arzÄ…dzanie kolorami" #: pp_menu_options.cpp:112 msgid "Create a hash for verifying printer settings" msgstr "" #: pp_menu_options.cpp:118 msgid "High-res Previews" msgstr "PodglÄ…d w wysokiej rozdzielczoÅ›ci" #: pp_menu_options.cpp:118 msgid "Render high-resolution previews in the background" msgstr "Renderuje w tle podglÄ…d wysokiej rozdzielczoÅ›ci " #: pp_menu_options.cpp:122 msgid "_Normal Display" msgstr "WyÅ›wietlanie _normalne" #: pp_menu_options.cpp:122 msgid "Display colours with no print simulation" msgstr "WyÅ›wietla kolory bez symulowania druku" #: pp_menu_options.cpp:123 msgid "Simulate Prin_t" msgstr "Symulacja druk_u" #: pp_menu_options.cpp:123 msgid "" "Adjust colours on screen to imitate printed colours, including paper white" msgstr "" "Dopasowuje kolory widoczne na ekranie tak jak bÄ™dÄ… wyglÄ…daÅ‚y na wydruku\n" "z biaÅ‚ym kolorem papieru włącznie" #: pp_menu_options.cpp:124 msgid "Simulate Print, _Adapt White" msgstr "Symulacja druku, dop_asowanie bieli" #: pp_menu_options.cpp:124 msgid "Adjust colours to imitate printed colours, excluding paper white" msgstr "" "Dopasowuje kolory widoczne na ekranie tak jak bÄ™dÄ… wyglÄ…daÅ‚y na wydruku\n" "bez biaÅ‚ego koloru papieru" #: pp_pageextent.cpp:228 msgid "Page Size and Margins" msgstr "Format papieru i marginesy" #: pp_pageextent.cpp:252 msgid "W:" msgstr "W:" #: pp_pageextent.cpp:275 msgid "Left:" msgstr "Lewy:" #: pp_pageextent.cpp:291 msgid "Right:" msgstr "Prawy:" #: pp_pageextent.cpp:304 msgid "Top:" msgstr "Górny:" #: pp_pageextent.cpp:315 msgid "Bottom:" msgstr "Dolny:" #: gp_cppsupport/printoutputselector.cpp:114 msgid "Print Queue:" msgstr "Kolejka drukowania:" #: gp_cppsupport/printoutputselector.cpp:133 msgid "Printer Model:" msgstr "Model drukarki:" #: gp_cppsupport/printoutputselector.cpp:196 #, c-format msgid "" "The printer queue %s\n" " is not found - please choose another" msgstr "" "Nie znaleziono kolejki drukowania %s\n" " ProszÄ™ wybrać innÄ…" #: gp_cppsupport/printoutputselector.cpp:197 msgid "Printer queue not found" msgstr "Nie znaleziono kolejki drukowania" #: gp_cppsupport/gprinter.cpp:387 msgid "Unable to generate print data" msgstr "Nie można wygenerować danych do wydruku" #: pp_scaling.cpp:72 msgid "Algorithm:" msgstr "Algorytm:" #: pp_scaling.cpp:184 #, fuzzy msgid "Scaling" msgstr "_Skalowanie..." #: pp_sigcontrol.cpp:187 msgid "Columns:" msgstr "Kolumny:" #: pp_sigcontrol.cpp:201 msgid "Rows:" msgstr "Wiersze:" #: pp_sigcontrol.cpp:215 pp_sigcontrol.cpp:229 msgid "Gap:" msgstr "Przerwa:" #: pp_sigcontrol.cpp:254 msgid "Width:" msgstr "Szer.:" #: pp_sigcontrol.cpp:268 msgid "Height:" msgstr "Wys.:" #: pp_sigcontrol.cpp:280 msgid "From selected image" msgstr "Pobierz z zaznaczonego obrazu" #: pp_sigcontrol.cpp:338 msgid "Layout" msgstr "UkÅ‚ad" #: pp_sigcontrol.cpp:341 msgid "Specify rows/columns" msgstr "Na podstawie kolumn/wierszy" #: pp_sigcontrol.cpp:342 msgid "Specify image dimensions" msgstr "Na podstawie wymiarów obrazu" #: pp_units.cpp:60 msgid "Units:" msgstr "Jednostki:" #: pp_units.cpp:68 msgid "Points" msgstr "Punkty" #: pp_units.cpp:71 msgid "Inches" msgstr "Cale" #: pp_units.cpp:74 msgid "Millimeters" msgstr "Milimetry" #: pp_units.cpp:77 msgid "Centimeters" msgstr "Centymetry" #: pp_units.cpp:151 msgid "Units" msgstr "Jednostki" #: printpreview.cpp:153 #, fuzzy msgid "Preview resolution:" msgstr "Rozdzielczość:" #: printpreview.cpp:157 msgid "180 dots per inch" msgstr "" #: printpreview.cpp:158 msgid "240 dots per inch" msgstr "" #: printpreview.cpp:159 msgid "300 dots per inch" msgstr "" #: printpreview.cpp:160 msgid "360 dots per inch" msgstr "" #: printpreview.cpp:165 msgid "" "Click-and-drag to pan around the preview.\n" "Right-click to toggle magnification." msgstr "" #: printpreview.cpp:168 #, fuzzy msgid "Close" msgstr "Karuzela" #: printpreview.cpp:236 #, fuzzy msgid "Drawing preview" msgstr "_PodglÄ…d wydruku..." #: gp_cppsupport/gprintersettings.cpp:413 msgid "" "Can't obtain printer from Gutenprint\n" "Check STP_DATA_PATH and Gutenprint version!" msgstr "" #: profilemanager/lcmswrapper.cpp:553 msgid "Perceptual" msgstr "Percepcyjna" #: profilemanager/lcmswrapper.cpp:554 msgid "Relative Colorimetric" msgstr "WzglÄ™dna kolorymetryczna" #: profilemanager/lcmswrapper.cpp:555 msgid "Relative Colorimetric with BPC" msgstr "WzglÄ™dna kolorymetryczna z BPC" #: profilemanager/lcmswrapper.cpp:556 msgid "Saturation" msgstr "Nasycenie" #: profilemanager/lcmswrapper.cpp:557 msgid "Absolute Colorimetric" msgstr "BezwzglÄ™dna kolorymetryczna" #: profilemanager/lcmswrapper.cpp:562 msgid "" "Aims for pleasing photographic results by preserving relationships between " "colours, and avoiding clipping of unattainable colours" msgstr "" "Zachowanie zwiÄ…zku pomiÄ™dzy kolorami i ograniczenie utraty informacji o " "kolorach spoza zakresu - najbliższa temu co widać na ekranie" #: profilemanager/lcmswrapper.cpp:563 msgid "" "Attempts to preserve the original colours, relative to white-point " "differences." msgstr "Stara siÄ™ zachować oryginalne kolory wzglÄ™dem punktu bieli " #: profilemanager/lcmswrapper.cpp:564 msgid "" "Attempts to preserve the original colours, relative to white-point " "differences. Uses Black Point Compensation to avoid clipping of highlights " "and shadows." msgstr "" "Stara siÄ™ zachować oryginalne kolory wzglÄ™dem punktu bieli. Wykorzystuje " "kompensacjÄ™ punktu czerni BPC w celu unikniÄ™cia obcinania rozjaÅ›nieÅ„ i " "cienia. " #: profilemanager/lcmswrapper.cpp:565 msgid "" "Attempts to provide brighter, more saturated colours, at the expense of " "colour relationships." msgstr "" "Stara siÄ™ rozjaÅ›nić i nasycić kolory kosztem zachowania dokÅ‚adnoÅ›ci kolorów" #: profilemanager/lcmswrapper.cpp:566 msgid "" "Mimics the original colours (including white point) as closely as possible, " "for side-by-side comparisons. Clips unattainable colours." msgstr "" "Imituje oryginalne kolory (wraz z punktem bieli) tak dokÅ‚adnie jak to " "możliwe. Obcina kolory spoza zakresu." #: profilemanager/profileselector.cpp:39 miscwidgets/imageselector.cpp:478 msgid "Other..." msgstr "Inne..." #: profilemanager/profileselector.cpp:193 #, fuzzy msgid "None" msgstr "_Brak" #: profilemanager/profileselector.cpp:392 msgid "Please choose a valid ICC profile" msgstr "Wybierz profil kolorystyczny ICC" #: profilemanager/profilemanager.cpp:207 msgid "Can't do proofing without a valid Printer profile!" msgstr "" #: profilemanager/profilemanager.cpp:212 msgid "Can't do proofing without a valid Monitor profile!" msgstr "" #: profilemanager/profilemanager.cpp:217 msgid "Can't do proofing without a valid Default RGB profile!" msgstr "" #: profilemanager/profilemanager.cpp:497 msgid "No Proof profile provided!" msgstr "" #: profilemanager/profilemanager.cpp:839 #, fuzzy msgid "Default rendering intent" msgstr "Metoda konwersji kolorów:" #: stpui_widgets/dimension.c:161 msgid "points" msgstr "punkty" #: stpui_widgets/dimension.c:165 msgid "inches" msgstr "cale" #: stpui_widgets/dimension.c:169 msgid "millimeters" msgstr "milimetry" #: stpui_widgets/dimension.c:173 msgid "centimeters" msgstr "centymetry" #: stpui_widgets/stpui_optionbook.c:117 msgid "General" msgstr "" #: stpui_widgets/stpui_optionbook.c:120 #, fuzzy msgid "Manual Settings" msgstr "Skalowanie rÄ™czne" #: stpui_widgets/stpui_optionbook.c:123 #, fuzzy msgid "Colour (Basic)" msgstr "PrzestrzeÅ„ barw:" #: stpui_widgets/stpui_optionbook.c:126 msgid "Colour (Fine-tuning)" msgstr "" #: stpui_widgets/stpui_optionbook.c:129 msgid "Colour (Extra)" msgstr "" #: miscwidgets/patheditor.cpp:53 msgid "Select directory..." msgstr "Wybierz katalog..." #: miscwidgets/patheditor.cpp:98 msgid "Path" msgstr "Åšcieżka" #: miscwidgets/patheditor.cpp:112 msgid "Add..." msgstr "Dodaj..." #: miscwidgets/patheditor.cpp:117 msgid "Remove" msgstr "UsuÅ„" #: miscwidgets/imageselector.cpp:458 msgid "Image" msgstr "Obraz" #: miscwidgets/progressbar.cpp:52 msgid "Progress..." msgstr "Przetwarzanie..." #: imagesource/imagesource_util.cpp:32 msgid "Automatic" msgstr "" #: imagesource/imagesource_util.cpp:32 msgid "Selects a scaling algorithm based on scale factor" msgstr "" #: imagesource/imagesource_util.cpp:33 #, fuzzy msgid "Fast" msgstr "W_klej" #: imagesource/imagesource_util.cpp:33 msgid "Very fast scaling with no interpolation" msgstr "" #: imagesource/imagesource_util.cpp:34 msgid "Bilinear" msgstr "" #: imagesource/imagesource_util.cpp:34 msgid "An interpolation filter with mediocre speed and quality" msgstr "" #: imagesource/imagesource_util.cpp:35 msgid "LanczosSinc" msgstr "" #: imagesource/imagesource_util.cpp:35 msgid "Slow but very high quality interpolation filter" msgstr "" #: imagesource/imagesource_util.cpp:37 msgid "Downsample" msgstr "" #: imagesource/imagesource_util.cpp:37 msgid "High quality filter for reductions only" msgstr "" photoprint-0.4.2-pre2/po/Makevars0000644000175000017500000000343111101462351013617 00000000000000# Makefile variables for PO directory in any package using GNU gettext. # Usually the message domain is the same as the package name. DOMAIN = $(PACKAGE) # These two variables depend on the location of this directory. subdir = po top_builddir = .. # These options get passed to xgettext. XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ # This is the copyright holder that gets inserted into the header of the # $(DOMAIN).pot file. Set this to the copyright holder of the surrounding # package. (Note that the msgstr strings, extracted from the package's # sources, belong to the copyright holder of the package.) Translators are # expected to transfer the copyright for their translations to this person # or entity, or to disclaim their copyright. The empty string stands for # the public domain; in this case the translators are expected to disclaim # their copyright. COPYRIGHT_HOLDER = Alastair M. Robinson # This is the email address or URL to which the translators shall report # bugs in the untranslated strings: # - Strings which are not entire sentences, see the maintainer guidelines # in the GNU gettext documentation, section 'Preparing Strings'. # - Strings which use unclear terms or require additional context to be # understood. # - Strings which make invalid assumptions about notation of date, time or # money. # - Pluralisation problems. # - Incorrect English spelling. # - Incorrect formatting. # It can be your email address, or a mailing list address where translators # can write to without being subscribed, or the URL of a web page through # which the translators can contact you. MSGID_BUGS_ADDRESS = $(PACKAGE_BUGREPORT) # This is the list of locale categories, beyond LC_MESSAGES, for which the # message catalogs shall be used. It is usually empty. EXTRA_LOCALE_CATEGORIES = photoprint-0.4.2-pre2/po/cs.gmo0000644000175000017500000006565611400237673013266 00000000000000Þ•> ¯ü¸ ¹ÆØêü3 :[bJs@¾ÿ ˆ“ £7±#é =O[›«]G ¥9¯$é "+3; @;N‚Šw O… Õ ö Aü 6>!2u!2¨!PÛ!€,"­" ¶"!Â"Nä"3#9#H#W#l#~# “#¡#'ª#,Ò#ÿ#4$ G$&U$|$„$›$ ´$¿$ Ó$(ß$ %B%Y% j%u%&…%¬%Ä%Ì%Ü%!ä%4&;&R&*i&@”&Õ&î&þ& '','<'W' r'='J½'( (9(Q(e(j(r(‹(’(•('(Å( ×( á(î(ó( ù(")&')HN)—)ž) ®) ¼) Ê)Ö)Ý)ã)õ)9*eA*§*·* Æ*†Ò*Y+a+r+w+’+ ¥+²+ ¹+ Ã+Ñ+à+é+ð+, ,,+, A,M,2S,†, ‹, –,!¢,Ä,ß,ý, -&-9-M- _-l-?|-5¼- ò-þ-.. &.y4.…®.w4/„¬/n10v 0p1vˆ1mÿ1om2Ý2õ2 þ2 3 3:3V3vØ3OO4Ÿ4 ¿4Í4ã45! 5&+51R5„5–5 ¨5´5»5 Ï5ð5 6 6 6 *6 86F6V6q6‘6 6 ¨6 ²6 ¾6Ë6â6õ67$7+@71l7?ž73Þ78)8?8T8g8-w8(¥8Î8 ì8ù809I9Q9a9p9Œ9]©9P:X:/]:!:¯:È:Ý:í:ý::;®J;tù;n<t<y<<®<´<»<Â<'Å<í< ð<Uú<P= W= d= q= }=‹= ‘= ž= ¨=¶=Ì=å=ê=û= > >>> > (>5>;>K>[>d> k>u>}>„> Š> ˜> ¢> ¯> »> Æ>Ð> Ó>ß>â>å> ì>ø>û>? ?ª ? ·@Å@Ø@ë@þ@ A A*ABA(KA tAAS›ASïACBˆGB ÐBÜBóB=C$@CeCOxCMÈC¥DT¼D EBE*`E‹E“E šE§E­EµE ºELÇE“F†¨Fa/G)‘G »GLÇG3H6HH7H]·H†IœI ¤I$¯IuÔIJJSJ cJqJ JJ¥J ·J*ÁJ5ìJ"KH:KƒK)”K ¾KÈKäKL. L :L!DLfLIyLÃLÝLõL. M:M TM`MtM,{MH¨M$ñMN=6NRtN%ÇNíNOO-OAO%UO${O OK´OYPZPbP7rPªPÄPÌP ÔPõPQQ.Q @Q aQ kQwQ}Q†Q#›Q%¿QHåQ.R4RGR ZR hR tR€R‡R¢RS½RnS€S“S ¤S†®S 5T?TQT-XT"†T ©T ·TÂTÕTèT U UU'U/U?U[UsU „U+ŽUºUÀU ÐU!ÜUþU#VBVGV*OVzVV©VºVSÏVK#W oW }W‡W˜WªW¿W–?X}ÖX”TYzéY€dZxåZ€^[yß[wY\Ñ\ñ\ ù\] ]L]’b]…õ]a{^(Ý^__._ L_%V_3|_6°_ç_ü_ ``$`7=`:u` °` º`Ç`Ø`ë`þ`!a%3aYaqa‚a ”a¡a²aÃa(Òaûa6 b2Cb7vbR®bFcHc%bcˆc¤cÀc2Òc0d"6dYd)ld=–d ÔdÞdîd&ýd%$elJe]·ef1f%OfufŽf®fÃfÙf;ñfÀ-g†îguh~h†h£hÃh Ìh Öhâh.åhiia(i Ši ”i ¢i °i½i Òißiôiýi jj9jBjWj `jkj sj j‰j‘j £j­jÃjÜjãj ìjöjÿj kk !k,k@kUk jkwk zk…kˆk‹k ‘k›kžk¦k«kw<Ìë’ œ“ó<Ä–  73/g‹Cl&2äÈ€rIN8{#!c¤-8Y¶k&s¢ù© ¡„Q=)4ßT-¼M¸´»£+'L ×Õ2ê4(íÿ¹,…AJ;öèÚ`ªƒ”; i:Ò Ÿ›@á¨/51fƱ*÷¿1d°Í"‡xD}ÇåÐé$¬q?%ˆ¾²Ö.UÃ^)Þç#ŽVvÓ6õhÅF•Œ>ÊRšñàÁ†§æ­®³¥u0(n]ã«!Ñ™%Šj¯0E ~ÉzÎ|‘m½e*µKBÔOØ"þ·ÛH‰.bPý‚GpoaÜ òX9yZË>úS[—95,ô : 7Ù_üW˜ï6\âû'ø+tîž$=3 ÀºÝÏì¦ð%d degrees K180 dots per inch240 dots per inch300 dots per inch360 dots per inchAboutAbout...Absolute ColorimetricActiveAdd images to the current layoutAdd...Adding images...Adjust colours on screen to imitate printed colours, including paper whiteAdjust colours to imitate printed colours, excluding paper whiteAfter:Aims for pleasing photographic results by preserving relationships between colours, and avoiding clipping of unattainable coloursAlgorithm:Allow _CroppingAmount: %1.2fAn interpolation filter with mediocre speed and qualityApply effects to the selected imageAssign Profile:Assign an ICC profile or custom rendering intent to the imageAttempts to preserve the original colours, relative to white-point differences.Attempts to preserve the original colours, relative to white-point differences. Uses Black Point Compensation to avoid clipping of highlights and shadows.Attempts to provide brighter, more saturated colours, at the expense of colour relationships.AutomaticAutomatically choose rotation to fit the available space.Automatically place images in a gridBackgroundsBefore:BilinearBordersBottom:CMYKCMYK Profile:CMYK images can be printed but colours depend on the driverCMYK images can be printed but colours depend on the driver (Colours will be accurate for images that contain an embedded profile)CMYK images can only be printed if they have an embedded profile (Workflow is RGB and there is no default CMYK profile)CMYK images cannot be printed (Workflow is RGB and there is no printer profile)CMYK images will print correctlyC_opyCalculating hash of printer response with current driver settingsCan't do proofing without a valid Default RGB profile!Can't do proofing without a valid Monitor profile!Can't do proofing without a valid Printer profile!Can't obtain printer from Gutenprint Check STP_DATA_PATH and Gutenprint version!Can't show a colour managed preview unless you choose a Default RGB or Monitor profile in the Options->Colour Management dialog!CarouselCentimetersChecking .photoprint directory...Click-and-drag to pan around the preview. Right-click to toggle magnification.CloseColour (Basic)Colour (Extra)Colour (Fine-tuning)Colour ManagementColour Response HashColour space:Columns:Copy the current image to the clipboardCreate a hash for verifying printer settingsCreating layout...Crop the selected images to fill the available spaceCurrent hash:Cut the current image to the clipboardDefaultDefault Image ProfilesDefault rendering intentDesaturateDeselect all imagesDimensions:Display colours with no print simulationDisplay mode:Displays images' original colours, transformed to suit the monitorDither AlgorithmDownsampleDrawing previewDuplicate the currently selected imageDuplicate to _Fill PageE_xportE_xport TIFF...EffectsError creating directory `%s': %sError creating temporary thumbnail file for `%s': %sError opening `%s': %sError reading `%s': %sError reading `%s': file contains no data.Error reading `%s': file is not a regular file or symbolic link.Error verifying `%s': %sExit PhotoPrintExport JPEG...Export TIFF...Export _JPEG...Export _TIFF...Export pages as JPEG filesExport pages as TIFF filesExporting...Fade images into a circular 'carousel' - ideal for CD labels.Failed to load image '%s': reason not known, probably a corrupt image fileFastFilename:Fill the page with copies of the currently selected imageFrom selected imageGap:GeneralGenerating print data...H (%):H:Height:High quality filter for reductions onlyHigh-res PreviewsHistogramICC ProfilesIconImageImage InfoImages will be displayed correctlyImages will not be displayed correctlyImages will only be displayed correctly if they have an embedded profileInchesInitializing...Inner Radius:JPEG Quality:LanczosSincLayoutLeft:Loading images...Loading preset...MATCH - No changes in driver or printer settings detectedMISMATCH - change detected in printer response! Printer's colour profile might no longer be accurate.Manual SettingsManual scalingMillimetersMimics the original colours (including white point) as closely as possible, for side-by-side comparisons. Clips unattainable colours.MonitorMonitor Profile:NameNo Proof profile provided!No hash stored yetNo rotation.NormalOpen FileOpen a presetOpen preset...Other...OutputOutput Profile:OverlapOverlap (%):Page Size and MarginsPage is already full!Page range:Page:Paste the contents of the clipboard as a new imagePathPerceptualPhotoPrint Please choose a valid ICC profilePlease provide a filename.Please select an image first!PointsPoster LayoutPreview how the printed page will lookPreview resolution:Print Pre_view...Print Queue:Print S_etup...Print an image in multiple pages, to be assembled into a posterPrint images on a single sheet, at a specified scale.Print pagesPrinterPrinter Model:Printer Profile:Printer SetupPrinter profile is a devicelink - CMYK images with embedded profiles will first be converted to the default CMYK profile.Printer profile is a devicelink - CMYK images with embedded profiles will not print correctly since there is no default CMYK profile.Printer profile is a devicelink - RGB images with embedded profiles will first be converted to the default RGB profile.Printer profile is a devicelink - RGB images with embedded profiles will not print correctly, since there is no default RGB profile.Printer profile is a devicelink with CMYK input - RGB images cannot be printed without a default CMYK profile.Printer profile is a devicelink with CMYK input - RGB images cannot be printed without a default RGB and CMYK profile.Printer profile is a devicelink with CMYK input - RGB images will first be converted to the default CMYK profilePrinter profile is a devicelink with RGB input - CMYK images cannot be printed without a default RGB and CMYK profile.Printer profile is a devicelink with RGB input - CMYK images cannot be printed without a default RGB profile.Printer profile is a devicelink with RGB input - CMYK images will first be converted to the default RGB profilePrinter queue not foundProfile:Progress...RGBRGB Profile:RGB images can be printed but colours depend on the driverRGB images can be printed but colours depend on the driver (Colours will be accurate for images that contain an embedded profile)RGB images can only be printed if they have an embedded profile (Workflow is CMYK and there is no default RGB profile)RGB images cannot be printed (Workflow is CMYK and there is no printer profile)RGB images will print correctlyRadius: %1.2fRelative ColorimetricRelative Colorimetric with BPCRemoveRemove all images from the layoutRemove selected images from the layoutRender high-resolution previews in the backgroundRendering intent:Resolution (dpi):Resolution:Right:Rotate 180 degrees.Rotate 90 degrees anticlockwise.Rotate 90 degrees clockwise.Rows:SaturationSave _As...Save _DefaultSave a presetSave as 16-bit:Save preset as the defaultSave preset with a new filenameSave preset...ScalingSegments:Select _AllSelect _NoneSelect a background...Select a border...Select all imagesSelect directory...Select the preferred scaling method.Select the units used throughout PhotoPrintSelects a scaling algorithm based on scale factorSend Cyan, Magenta, Yellow and Black data to the printer driverSend Red, Green and Blue data to the printer driverSet Colour _Profile...Set Custom Profile...Set Image _Border...Set Image _Mask...Set _BackgroundSet a background image for the current layoutSet a border mask for the selected imageSet colour management optionsSet paths...Set printer driver and optionsSet search paths for ICC profiles, borders, etc.SharpenSimulate Prin_tSimulate PrintSimulate Print, Adapt WhiteSimulate Print, _Adapt WhiteSimulates how colours will look when printed, adapting colours for the monitor's white point.Simulates how colours will look when printed, imitating the paper's white point.SizeSlow but very high quality interpolation filterSome information about PhotoPrintSpecify image dimensionsSpecify rows/columnsStarting angle:Store in presetStored in preset:The printer queue %s is not found - please choose anotherThis "hash" value is derived from the printer driver's output, and can be used to verify that no changes have occurred which might invalidate a colour profile for the printerThis hash can be used to detect changes in printer settings or driver versions that might invalidate colour profilesTilesTop:Transferring images...Unable to generate print dataUnitsUnits:V (%):V:Very fast scaling with no interpolationW:Warm/CoolWarning: Image already has an embedded profile Assigning a new one will over-ride it!Width:_180 Degrees_270 Degrees_90 Degrees_Add Image..._Auto_Auto Layout_Carousel_Clear Layout_Colour Management..._Colour Response Hash..._Cut_Duplicate Image_Edit_Effects..._File_Help_Image_Layout_Manual Size_None_Normal Display_Open Preset..._Options_Paste_Paths..._Poster_Print_Quit_Remove Image_Rotation_Save Preset_Scaling..._Shortcuts_Units...bycentimeterscmininchesmillimetersmmpixelspointsptProject-Id-Version: photoprint 0.4.0 Report-Msgid-Bugs-To: blackfive@fakenhamweb.co.uk POT-Creation-Date: 2010-05-29 17:24+0100 PO-Revision-Date: 2010-04-23 18:04+0200 Last-Translator: Marek ÄŒernocký Language-Team: Czech MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2; %d stupňů K180 bodů na palec240 bodů na palec300 bodů na palec360 bodů na palecO aplikaciO aplikaci…Absolutní kolorimetrieAktivníPÅ™idá obrázky do souÄasného návrhuPÅ™idat…PÅ™idávají se obrázky…PÅ™izpůsobí barvy na obrazovce napodobení tiskových barev mimo bílého papíruPÅ™izpůsobí barvy na obrazovce napodobení tiskových barev mimo bílého papíruPo:Pokusí se o příjemný fotografický výsledek pomocí zachování vztahů mezi barvami a zabránÄ›ní oÅ™ezání nedostupných barev.Algoritmus:Povolit oÅ™_ezáváníHodnota: %1.2fInterpolaÄní filtr s kompromisem mezi rychlostí a kvalitouPoužije efekty na vybraný obrázekPÅ™iÅ™adit profil:PÅ™iÅ™adí obrázku profil ICC nebo upÅ™ednostňovaný výsledek vykreslováníPokusí se zachovat originální barvy relativnÄ› k rozdílům bílého bodu.Pokusí se zachovat originální barvy relativnÄ› k rozdílům bílého bodu. Použije kompenzaci Äerného bodu (BPC), aby se zabránilo oÅ™ezání jasů a stínů.Pokusí se poskytnout jasnÄ›jší a sytÄ›jší barvy na úÄet vztahů mezi barvami.AutomatickyAutomaticky zvolí otoÄení tak, aby se vyplnila dostupná plochaAutomaticky umístí obrázky do mřížkyPozadíPÅ™ed:BilineárníMaskyDolní:CMYKProfil CMYK:Obrázky CMYK bude možné tisknout, ale v barvách závislých na ovladaÄiObrázky CMYK bude možné tisknout, ale v barvách závislých na ovladaÄi (Barvy budou správné u obrázků, které obsahují vložený profil)Obrázky CMYK bude možné tisknout, pokud obsahují vložený profil (Pracovní postup je RGB a není žádný výchozí profil CMYK)Obrázky CMYK nebude možné tisknout (Pracovní postup je RGB a není žádný profil tiskárny)Obrázky CMYK budou vytisknuty správnÄ›._KopírovatVypoÄítává se heÅ¡ odezvy tiskárny s nastavením souÄasného ovladaÄeBez výchozího profilu RGB nelze provést korekci!Bez platného profilu monitoru nelze provést korekci!Bez platného profilu tiskárny nelze provést korekci!Nelze získat tiskárnu ze systému Gutenprint Zkontrolujte STP_DATA_PATH a verzi Gutenprint!Nelze zobrazit náhled s použitím správy barev dokud nevyberete výchozí profil RGB nebo obrazovky v dialogu Volby->Správa barev!KoláÄCentimetryKontroluje se složka .photoprint…ZmáÄknÄ›te první tlaÄítko myÅ¡i a posouvejte zábÄ›r náhledu. Kliknutí druhým tlaÄítkem mÄ›ní zvÄ›tÅ¡ení.ZavřítBarvy (základ)Barvy (extra)Barvy (detaily)Správa barevHeÅ¡ odezvy pro barvyBarevný prostor:Sloupců:Kopíruje aktuální obrázek do schránkyVytvoÅ™it heÅ¡ pro ověřování nastavení tiskárnyVytváří se návrh…OÅ™ezání vybraných obrázků tak, aby vyplnily celou dostupnou plochuSouÄasný heÅ¡:PÅ™esune aktuální obrázek do schránkyVýchozíVýchozí profily obrázkůVýchozí cíl vykreslováníOdbarvitZruší oznaÄení vÅ¡ech vybraných obrázkůRozmÄ›ry:Zobrazí barvy bez simulace tiskuRežim zobrazení:Zobrazí originální barvy obrázku, pÅ™izpůsobené vybavení monitoru.Algoritmus rozptylu barvySnížení vzrokováníVykresluje se náhledVytvoří kopii aktuálnÄ› vybraného obrázku_Vyplnit stránku kopiemiE_xportovatE_xportovat TIFF…EfektyChyba pÅ™i vytváření složky „%s“: %sChyba pÅ™i vytváření doÄasného souboru s náhledem pro „%s“: %sChyba pÅ™i otevírání „%s“: %sChyba pÅ™i Ätení „%s“: %sChyba pÅ™i Ätení „%s“: soubor neobsahuje žádná data.Chyba pÅ™i Ätení „%s“: soubor není normální soubor ani symbolický odkaz.Chyba pÅ™i ověřování „%s“: %sUkonÄí PhotoPrintExportování JPEG…Exportování TIFF…Exportovat _JPEG…Exportovat _TIFF…Exportovat stránky jako JPEG souboryExportuje stránky jako soubory TIFFProbíhá export…Prolne obrázky do kruhového „koláÄe“ - ideální pro Å¡títky na CDSelhalo naÄtení obrázku „%s“: neznámý důvod, pravdÄ›podobnÄ› poÅ¡kozený souborRychlýNázev souboru:Vyplní stránku kopiemi aktuálnÄ› vybraného obrázkuPodle vybraného obrázkuMezera:ObecnéVytvářejí se tisková data…VodorovnÄ› (%):V:Výška:Vysoce kvalitní filtr pouze pro zmenÅ¡ováníNáhledy ve vysokém rozliÅ¡eníHistogramProfily ICCIkonaObrázekInformace o obrázkuObrázky budou zobrazeny správnÄ›.Obrázky nebudou zobrazeny správnÄ›.Obrázky budou zobrazeny správnÄ› jen pokud obsahují vložený profil.PalceInicializuje se…PolomÄ›r vnitÅ™ku:Kvalita JPEG:LanczosSincRozvrženíLevý:NaÄítají se obrázky…NaÄítá se nastavení…SOUHLASà - Nebyly zjiÅ¡tÄ›ny žádné zmÄ›ny v ovladaÄi nebo nastavení tiskárnyNESOUHLASà - zjiÅ¡tÄ›ny zmÄ›ny v odezvÄ› tiskárny! Barevný profil tiskárny nemusí být nadále správný.RuÄní nastaveníRuÄní velikostMilimetryNapodobí originální barvy (vÄetnÄ› bílého bodu) jak nejlépe to půjde pÅ™i vzájemném porovnání. Ořízne nedostupné barvy.ObrazovkaProfil obrazovky:NázevNení poskytován žádný korekÄní profil!Zatím není uložen žádný heÅ¡Bez otoÄeníNormálníOtevÅ™ení souboruOtevÅ™e nastaveníOtevÅ™ení nastavení…Další…VýstupVýstupní profil:PÅ™esahPÅ™ekrytí (%):Velikost stránky a okrajůStránka je již plná!Rozsah stránek:Stránka:Vloží obsah schránky jako nový obrázekCestaVizuální vjemPhotoPrint Zvolte prosím platný profil ICCZadejte prosím název souboru.Nejdříve prosím zvolte obrázek!BodyPlakátNáhled jak bude vypadat tisková stránkaRozliÅ¡ení náhledu:_Náhled pÅ™ed tiskem…Tisková fronta:Nastavení t_isku…Vytiskne jeden obrázek na více stránek tak, že jej můžete slepit jako plakátVytiskne obrázky na jednotlivé listy se zadaným zmenÅ¡ením/zvÄ›tÅ¡enímTisk stránekTiskárnaModel tiskárny:Profil tiskárny:Nastavení tiskárnyProfil tiskárny je typu DeviceLink - obrázky CMYK s vloženými profily budou nejprve pÅ™evedeny do výchozího profilu CMYK.Profil tiskárny je typu DeviceLink - obrázky CMYK s vloženými profily nebudou vytisknuty správnÄ›, protože není žádný výchozí profil CMYK.Profil tiskárny je typu DeviceLink - obrázky RGB s vloženými profily budou nejprve pÅ™evedeny do výchozího profilu RGB.Profil tiskárny je typu DeviceLink - obrázky RGB s vloženými profily nebudou vytisknuty správnÄ›, protože není žádný výchozí profil RGB.Profil tiskárny je typu DeviceLink se vstupem CMYK - obrázky RGB nebude možné vytisknout bez výchozího profilu CMYK.Profil tiskárny je typu DeviceLink se vstupem CMYK - obrázky RGB nebude možné vytisknout bez výchozího profilu RGB a CMYK.Profil tiskárny je typu DeviceLink se vstupem CMYK - obrázky RGB budou nejprve pÅ™evedeny do výchozího profilu CMYK.Profil tiskárny je typu DeviceLink se vstupem RGB - obrázky CMYK nebude možné vytisknout bez výchozího profilu RGB a CMYK.Profil tiskárny je typu DeviceLink se vstupem RGB - obrázky CMYK nebude možné vytisknout bez výchozího profilu RGB.Profil tiskárny je typu DeviceLink se vstupem RGB - obrázky CMYK budou nejprve pÅ™evedeny do výchozího profilu RGB.Tisková fronta nebyla nalezenaProfil:PrůbÄ›h…RGBProfil RGB:Obrázky RGB bude možné tisknout, ale v barvách závislých na ovladaÄi.Obrázky RGB bude možné tisknout, ale v barvách závislých na ovladaÄi (Barvy budou správné u obrázků, které obsahují vložený profil)Obrázky RGB bude možné tisknout, pokud obsahují vložený profil (Pracovní postup je CMYK a není žádný výchozí profil RGB)Obrázky RGB nebude možné tisknout (Pracovní postup je CMYK a není žádný profil tiskárny)Obrázky RGB budou vytisknuty správnÄ›.PolomÄ›r: %1.2fRelativní kolorimetrieRelativní kolorimetrie s BPCOdstranitOdstraní z návrhu vÅ¡echny obrázkyOdstraní vybrané obrázky ze souÄasného návrhuNa pozadí vytvářet náhledy ve vysokém rozliÅ¡eníCíl vykreslování:RozliÅ¡ení (dpi):RozliÅ¡ení:Pravý:OtoÄení o 180 stupňůOtoÄení o 90 stupňů ve smÄ›ru hodinových ruÄiÄekOtoÄení o 90 stupňů proti smÄ›ru hodinových ruÄiÄekŘádků:Sytost barevUložit _jako…Uložit _výchozíUloží nastaveníUložit 16bitovÄ›:Uloží nastavení jako výchozíUloží nastavení do nového souboruUložení nastavení…ZmÄ›na velikostiPoÄet segmentů:Vybr_at vÅ¡e_ZruÅ¡it výbÄ›rVolba pozadí…Volba masky…OznaÄí vÅ¡echny obrázky jako vybranéVolba složky…VýbÄ›r upÅ™ednostňované metody pro zmÄ›nu velikostiVýbÄ›r jednotek, které má PhotoPrint používatZvolí algoritmus pro zmÄ›nu velikosti podle měřítkaOdeslat do tiskového ovladaÄe data azurové, purpurové, žluté a Äerné barvyOdeslat do tiskového ovladaÄe data Äervené, zelené a modré barvyNastavit pro_fil barev…Nastavení uživatelského profilu…Nastavit okraj o_brázku…Nastavit _masku obrázku…Nastavit po_zadíNastaví obrázek na pozadí pro aktuální návrhNastaví omezující masku pro vybraný obrázekNastavení voleb pro správu barevNastavení cest…Nastavení tiskových zařízení a volebNastavení prohledávaných cest pro profily ICC, masky, atd.OstÅ™eníSimulovat _tiskSimulace tiskuSimulace tisku, pÅ™izpůsobení bíléSimulovat tisk, pÅ™izpůsobit bí_louSimuluje, jak budou barvy vypadat po vytisknutí, pÅ™iÄemž pÅ™izpůsobuje barvy pro bílou barvu monitoru.Simuluje, jak budou barvy vypadat po vytisknutí, pÅ™iÄemž napodobuje bílou barvu papíru.RozmÄ›rPomalý, ale velmi kvalitní interpolaÄní filtrPár informací o aplikaci PhotoPrintUrÄit rozmÄ›ry obrázkuUrÄit poÄet řádků/sloupcůPoÄáteÄní úhel:Uložit do nastaveníUložený v nastavení:Tisková fronta %s nebyla nalezena - vyberte prosím jinouTato hodnota „heš“ je odvozena z výstupu ovladaÄe tiskárny a může být použita k ověření, že nenastaly žádné zmÄ›ny, které by mohly znehodnotit barevný profil pro tiskárnuTento heÅ¡ lze použít ke zjiÅ¡tÄ›ní zmÄ›n v nastavení tiskárny nebo verzích ovladaÄe, které mohou znehodnotit barevné profilyDÄ›leníHorní:PÅ™enášejí se obrázky…Nelze vygenerovat tisková dataJednotkyJednotky:Svisle (%):S:Velmi rychlá zmÄ›na velikosti bez interpolaceÅ :Teplý/StudenýVarování: Obrázek již obsahuje uložený profil. PÅ™iÅ™azením nového původní potlaÄíte.Šířka:_180 stupňů_270 stupňů_90 stupňů_PÅ™idat obrázek…_Automaticky_Automatický návrh_KoláÄ_Vymazat návrhSpráva _barev…_HeÅ¡ odezvy pro barvy…_Vyjmout_Duplikovat obrázek_Upravit_Efekty…_Soubor_NápovÄ›da_ObrázekNáv_rh_RuÄní rozmÄ›ryŽá_dnéNormální zobrazení_Otevřít nastavení…_VolbyV_ložit_Cesty…_Plakát_TiskU_konÄit_Odebrat obrázekO_toÄení_Uložit nastaveníZmÄ›na _velikosti…_Klávesové zkratky_Jednotky…×centimetrycminpalcemilimetrymmpixelůbodyptphotoprint-0.4.2-pre2/po/pt_BR.gmo0000644000175000017500000002747311400237673013662 00000000000000Þ•©d㬠89?H ^†—ž +#;_=oO­›ý]™9÷$1 Vbjr zˆ€Ž !$F Xf'o—4ª&ß 1?O^ y=†ÄÝäç ïü  '.4F X†dëó   "0?H X eq2wª ¯ºÕó&ú! 3@?P5 ÆÒÚé ú +J!Q&sš¬¾Å Ùú  ( 4 BPk‹ š ¤ °½Ôçù$ +2^u‹ž-®(Ü #00O€!«ÍÝâùÿ Uf m z ‡ “¡ § ´ ¾Ìâç íùÿ  !'7@ GQY` f t ~ ‹ —Û¡}ƒ‰ ¡ ÂÏç†ï v$‘¶;ÆP  S _ô GT!1œ! Î!Ú!á!è! í!ú!›"ž" £" °"Ñ"æ"ö"*ÿ"*#?<#,|#©# Â#Ð#ã# õ##$ '$B5$x$—$$ $ ¨$³$ º$ Ä$ Ñ$Þ$ æ$ð$% $%Œ0%½%Å%Ø%ê% ñ%þ%&0&9&K&^&t&7}&µ& ½&%È&&î&','J'g'{'H™'Eâ'(( 9(D(Z(p( Ž(š(²(Ò(!Ú((ü(%)<)N)W),l)&™)À) È)Ô)ä)ô)# *41*f* *Š*›*¬*Ç*Ü*ø*5 +1B+t+Ž+!¤+Æ+(Ý+*,+1,],q,6‘,È,Û,,û,(-9-?-U- ^-h-o-Wr-Ê- Ó- Þ- é-ó-..".(.7. M.W._.h.q.x.€.ˆ.˜.¡. º.Ä. Ë.Õ. Ý.ç.í. ý.//2/=¦`;„—X{.3ž@”~œ©dZ b™?"|’x] Gya-LC£OSJ+HMv€›W/FrŸN29ku%!jz_V'Qo‚:ŠYw§R#7)˜•l>n¡0 I,hf<‘s¨†DU¤ cm5\ŽAšK6Œ ¥eˆB(E–8“‰Ti&g}*ƒ¢1$…4p P‡q[‹t^AboutAbout...Absolute ColorimetricAdd images to the current layoutAdd...Adding images...After:Aims for pleasing photographic results by preserving relationships between colours, and avoiding clipping of unattainable coloursAlgorithm:Allow _CroppingApply effects to the selected imageAssign Profile:Assign an ICC profile or custom rendering intent to the imageAttempts to preserve the original colours, relative to white-point differences.Attempts to preserve the original colours, relative to white-point differences. Uses Black Point Compensation to avoid clipping of highlights and shadows.Attempts to provide brighter, more saturated colours, at the expense of colour relationships.Automatically choose rotation to fit the available space.Automatically place images in a gridBackgroundsBefore:BordersBottom:CMYK Profile:C_opyCan't show a colour managed preview unless you choose a Default RGB or Monitor profile in the Options->Colour Management dialog!CarouselCentimetersChecking .photoprint directory...Colour ManagementColour space:Columns:Copy the current image to the clipboardCreating layout...Crop the selected images to fill the available spaceCut the current image to the clipboardDefault Image ProfilesDeselect all imagesDisplay mode:Exit PhotoPrintExport TIFF...Export pages as TIFF filesExporting...Fade images into a circular 'carousel' - ideal for CD labels.Generating print data...H (%):H:Height:ICC ProfilesImageInchesInitializing...Inner Radius:LayoutLeft:Loading images...Loading preset...MillimetersMimics the original colours (including white point) as closely as possible, for side-by-side comparisons. Clips unattainable colours.MonitorMonitor Profile:No rotation.NormalOpen FileOpen a presetOpen preset...Other...Output Profile:Overlap (%):Page range:Page:Paste the contents of the clipboard as a new imagePathPerceptualPlease provide a filename.Please select an image first!PointsPreview how the printed page will lookPrint Pre_view...Print Queue:Print S_etup...Print an image in multiple pages, to be assembled into a posterPrint images on a single sheet, at a specified scale.Print pagesPrinterPrinter Model:Printer Profile:Printer SetupRGB Profile:Relative ColorimetricRelative Colorimetric with BPCRemoveRemove all images from the layoutRemove selected images from the layoutRendering intent:Resolution (dpi):Right:Rotate 180 degrees.Rotate 90 degrees anticlockwise.Rotate 90 degrees clockwise.Rows:SaturationSave _As...Save _DefaultSave a presetSave preset as the defaultSave preset with a new filenameSave preset...Segments:Select _AllSelect _NoneSelect a background...Select a border...Select all imagesSelect directory...Select the preferred scaling method.Select the units used throughout PhotoPrintSet Colour _Profile...Set Custom Profile...Set Image _Mask...Set _BackgroundSet a background image for the current layoutSet a border mask for the selected imageSet colour management optionsSet paths...Set printer driver and optionsSet search paths for ICC profiles, borders, etc.Simulate PrintSimulate Print, Adapt WhiteSome information about PhotoPrintStarting angle:Top:Transferring images...UnitsUnits:V (%):V:Warning: Image already has an embedded profile Assigning a new one will over-ride it!Width:_180 Degrees_270 Degrees_90 Degrees_Add Image..._Auto_Auto Layout_Carousel_Clear Layout_Colour Management..._Cut_Edit_Effects..._File_Help_Image_Layout_Manual Size_None_Open Preset..._Options_Paste_Paths..._Poster_Print_Quit_Remove Image_Rotation_Save Preset_Scaling..._Units...Project-Id-Version: pt_BR Report-Msgid-Bugs-To: blackfive@fakenhamweb.co.uk POT-Creation-Date: 2010-05-29 17:24+0100 PO-Revision-Date: 2007-07-14 00:26-0300 Last-Translator: Krishnamurti Lelis Lima Vieira Nunes Language-Team: Krishnamurti Lelis Lima Vieira Nunes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: KBabel 1.11.4 Plural-Forms: nplurals=2; plural=(n > 1); SobreSobreColorimétrica AbsolutaAdiciona imagens ao layout atualAdicionar...Adicionando imagens ...Depois:Tenta privilegiar os resultados fotográficos preservando o relacionamento entre as cores e evitando clipping of unattainable coloursAlgoritmo:Permitir _CorteAplica efeitos à imagem selecionadaDefinir Perfil:Associa um perfil ICC ou rendering intent padrão à imagemTenta preservar as cores originais, relativas às diferenças dos pontos-brancosTenta preservar as cores originais, relativas às diferenças dos pontos-brancos. Usa Compensação de Pontos Pretos para evitar acentuar os reflexos e sombras.Tenta obter cores mais brilhantes e saturadas, em detrimento de relacionamentos entre as cores.Escolhe automaticamente a rotação para adequar ao espaço disponívelPosiciona as imagens em uma grade automaticamenteBackgroundsAntes:BordasPé:Perfil CMYK:_CopiarNão é possível mostrar uma cor usada previamente a não ser que que você escolha um RGB padrão ou um perfil Monitor em Options->Gerenciamento de corRodaCentímetrosVerificando pasta .photoprint...Gerenciamento de corEspaço de cor:Colunas:Copia a imagem atual para a área de trocaCriando layout...Corta as imagens selecionadas para caber no espaço disponívelRecorta a imagem atual para a área de trocaPerfis de imagem padrãoDesselecionarModo de exibiçãoSai do PhotoPrintExportar TIFFExporta páginas como arquivos TIFFExportando...Vai apagando a imagem em um círculo - ideal para rótulos de CDs.Gerando dados de impressão...H (%)H:Altura:Perfis ICCImagemPolegadasIniciando...Raio internoLeyout:Esquerda:Carregando imagens...Carregando pré-seleções...MilímetrosImita as cores originais (incluindo pontos brancos) o mais fielmente possível, para comparações lado-a-lado. Clips unattainable colours.MonitorPerfil do Monitor:Nenhuma rotaçãoNormalAbre arquivoAbre uma pré-seleçãoAbrir pré-definição...Outro...Arquivo de saídaSobreposição(%):Intervalo de páginasPágina:Cola o conteúdo da área de troca como uma nova imagemCaminhoPercentualPor favor forneça um nome de arquivoPor favor insira uma imagem primeiro! Pontos:Prevê a aparência da impressão da páginaImprimir Pré-visualizaçãoFila de Impressão:Configuração de Impr_essoraImprime uma imagem em várias páginas, para serem montadas em um cartazImprime imagens em uma única página, com uma dimensão especificadaImprime páginasImpressoraModelo de Impressora:Perfil de impressora:Configuração da Impressora Perfil RGB:Colorimétrica RelativaColorimétrica Relativa com BPCRemoverRemove todas as imagens do layoutRemove as imagens selecionadas do layoutTentar Renderização:Resolução (dpi)Direita:Rotaciona 180 graus.Rotaciona 90 graus no sentido anti-horário.Rotaciona 90 graus no sentido horárioLinhas:SaturaçãoSalvar _Como...Salvar _PadrãoSalva uma pré-seleçãoSalva a pré-seleção como padrãoSalva uma pré-seleção com um novo nome de arquivoSalvar pré-definiçõesSegmentos:Selecionar _TudoSelecionar _NadaSelecione um background...Selecionar uma bordaSelecionar todas as imagensSelecionar pasta...Seleciona o método preferido para redimensionamento.Seleciona as unidades usadas em todo o PhotoPrintConfigurar _Perfil de CorDefina perfil padrãoSelecionar _Máscara da Imagem...Selecionar _BackgroundDefine um background para o layout atualDefine uma borda para a imagem selecionadaDefine opções para gerenciamento de coresDefinir caminhos...Configura impressora e opçõesDefine caminhos para busca de perfis ICC, bordas, etc.Simular impressãoSimular impressão, Adapt WhiteExibe alguma informação sobre o PhotoPrintÂngulo inicial:Topo:Transferindo imagens:UnidadesUnidades:V (%):V:Advertência: uma imagem já foi incluída no perfil Incluir outra vai sobrescrevê-la!Largura:_180 Graus_270 Graus_90 Graus_Adicionar Imagem...A_utoLayout _Automático_RodaL_impar LayoutGerenciamento de _Cor_Recortar_Editar_Efeitos_Arquivo_Ajuda_Imagem_LayoutTamanho _Manual_NenhumaA_brir Pré-seleção..._OpçõesCo_larC_aminhos_Cartaz_ImprimirSai_r_Remover ImagemR_otação_Salvar Pré-seleção_Redimensionamento_Uniddesphotoprint-0.4.2-pre2/po/ru.gmo0000644000175000017500000005124311400237673013272 00000000000000Þ•îŒ=üð ñþ # *KRJc@®ïö xƒ “#¡Å=ÕO›c]ÿ9]$— ¼ÈÐØ àî€ôu ~!Ь ¾Ì'Õý4&Elt ‹– ª(¶ ßí&þ%-=!E4gœ³*Ê@õ6O_n}¸ Ó=àJ i9s­²ËÒÕÝ ïü  ) 7ELRdv …†‘ 1 6C J Tbqz‘ ™¦¼ ÒÞ2ä !'Id‚ ‰&—¾ ÐÝ?í5- c o w † — ¥ ½ Æ Ò ß í !"!!)!&K!1r!¤!¶! È!Ô!Û! ï!"-" 3" >" J" X"f"v"‘"±" À" Ê" Ö"ã"ú" ##$3#+X#„#›#±#Ä#-Ô#($+$ I$V$0u$¦$®$¾$Í$é$%! %-%:=%x%~%ƒ%š%¸%¾%Å%Ì%Ï% Ò%UÜ%2& 9& F& S& _&m& s& €& Š&˜&®&³&Ä& Ê&Ö&Ü&â&é& ñ&þ&''$'-' 4'>'F'M' S' a' k' x' „'Ž' ‘'' '£' ª'¶'¹'À'Ç'øÊ'Ã)É)ß)7ø)0*5?*u*0‰*º*’:+ Í+²Ù+Œ,ž,±,PÍ,"-€A-ƒÂ-F.›`/rü/To0Ä0â0 è0ó011 /1:2K26^2!•2)·2á2Wó2 K3xl3Qå374CO4“4B°4ó4U5)Y5ƒ5H•5Þ5ñ5ú5> 6iH6-²6)à6I 7˜T7/í7"8@8Z8t8}8D†8DË8*9~;9˜º9S:kf:Ò:4ä:;!; >;1L;~; ‘; ž;«;Ê;Ó;"ñ;<*< 1<0><4o<-¤<Ò<¨å<Ž= =¾=!Ï=ñ=>)>+B>#n> ’>>º>Ï>)é>7? K?l?h~?ç?@8@!V@@x@ ¹@Ä@OÞ@'.A!VA'xA~ AmBB©B¸B ×B#øB/CLC\CpC„C=˜CqÖCHD<WDH”DcÝDAE]EyEE@žEGßE?'F gFsFˆF<¦F-ãFGK(GLtG0ÁGòGHH>HYH.uH"¤HRÇHTI)oI)™I:ÃI0þIQ/J]J4ßJ*KQ?KO‘K#áK"L!(LRJLSL ñL"þL!MZ>M™M­M.¾MEíM!3N"UNxN€N™NN±»N mO{O‚O‰OO¤OÂOÖOèO%P+P=P [PiP |P†P –P ¤P°PËP&ÓP-úP(QÞF(ÈA›ª³ m¯aqO®2&©¹1ådÇ¡C$Ô‹|¨Ûw˜^×P¾+HèíoÕ“€?z XŸ{¤uIÁˆ530œ½¶U\V²eÚÊä!9il†»<TÜ£Œ•x)µæyËÑ/7ßÖ­jÅZÝÓ4¬¥L_·Eg,¼ ë-º]8M±vrذìžš*ã#;YDb‡ Î[‘âK‚@fê‰.%d degrees KAboutAbout...Absolute ColorimetricActiveAdd images to the current layoutAdd...Adding images...Adjust colours on screen to imitate printed colours, including paper whiteAdjust colours to imitate printed colours, excluding paper whiteAfter:Aims for pleasing photographic results by preserving relationships between colours, and avoiding clipping of unattainable coloursAlgorithm:Allow _CroppingAmount: %1.2fApply effects to the selected imageAssign Profile:Assign an ICC profile or custom rendering intent to the imageAttempts to preserve the original colours, relative to white-point differences.Attempts to preserve the original colours, relative to white-point differences. Uses Black Point Compensation to avoid clipping of highlights and shadows.Attempts to provide brighter, more saturated colours, at the expense of colour relationships.Automatically choose rotation to fit the available space.Automatically place images in a gridBackgroundsBefore:BordersBottom:CMYK Profile:C_opyCan't show a colour managed preview unless you choose a Default RGB or Monitor profile in the Options->Colour Management dialog!CarouselCentimetersChecking .photoprint directory...Colour ManagementColour space:Columns:Copy the current image to the clipboardCreating layout...Crop the selected images to fill the available spaceCut the current image to the clipboardDefaultDefault Image ProfilesDesaturateDeselect all imagesDimensions:Display colours with no print simulationDisplay mode:Dither AlgorithmDuplicate the currently selected imageE_xportE_xport TIFF...EffectsError creating directory `%s': %sError creating temporary thumbnail file for `%s': %sError opening `%s': %sError reading `%s': %sError reading `%s': file contains no data.Error reading `%s': file is not a regular file or symbolic link.Error verifying `%s': %sExit PhotoPrintExport JPEG...Export TIFF...Export _JPEG...Export _TIFF...Export pages as JPEG filesExport pages as TIFF filesExporting...Fade images into a circular 'carousel' - ideal for CD labels.Failed to load image '%s': reason not known, probably a corrupt image fileFilename:Fill the page with copies of the currently selected imageGap:Generating print data...H (%):H:Height:High-res PreviewsICC ProfilesIconImageImage InfoInchesInitializing...Inner Radius:JPEG Quality:LayoutLeft:Loading images...Loading preset...Manual scalingMillimetersMimics the original colours (including white point) as closely as possible, for side-by-side comparisons. Clips unattainable colours.MonitorMonitor Profile:NameNo rotation.NormalOpen FileOpen a presetOpen preset...Other...OutputOutput Profile:OverlapOverlap (%):Page Size and MarginsPage is already full!Page range:Page:Paste the contents of the clipboard as a new imagePathPerceptualPlease choose a valid ICC profilePlease provide a filename.Please select an image first!PointsPoster LayoutPreview how the printed page will lookPrint Pre_view...Print Queue:Print S_etup...Print an image in multiple pages, to be assembled into a posterPrint images on a single sheet, at a specified scale.Print pagesPrinterPrinter Model:Printer Profile:Printer SetupPrinter queue not foundProfile:Progress...RGB Profile:Radius: %1.2fRelative ColorimetricRelative Colorimetric with BPCRemoveRemove all images from the layoutRemove selected images from the layoutRender high-resolution previews in the backgroundRendering intent:Resolution (dpi):Resolution:Right:Rotate 180 degrees.Rotate 90 degrees anticlockwise.Rotate 90 degrees clockwise.Rows:SaturationSave _As...Save _DefaultSave a presetSave as 16-bit:Save preset as the defaultSave preset with a new filenameSave preset...Segments:Select _AllSelect _NoneSelect a background...Select a border...Select all imagesSelect directory...Select the preferred scaling method.Select the units used throughout PhotoPrintSet Colour _Profile...Set Custom Profile...Set Image _Mask...Set _BackgroundSet a background image for the current layoutSet a border mask for the selected imageSet colour management optionsSet paths...Set printer driver and optionsSet search paths for ICC profiles, borders, etc.SharpenSimulate Prin_tSimulate PrintSimulate Print, Adapt WhiteSimulate Print, _Adapt WhiteSizeSome information about PhotoPrintStarting angle:The printer queue %s is not found - please choose anotherTilesTop:Transferring images...Unable to generate print dataUnitsUnits:V (%):V:W:Warm/CoolWarning: Image already has an embedded profile Assigning a new one will over-ride it!Width:_180 Degrees_270 Degrees_90 Degrees_Add Image..._Auto_Auto Layout_Carousel_Clear Layout_Colour Management..._Cut_Duplicate Image_Edit_Effects..._File_Help_Image_Layout_Manual Size_None_Normal Display_Open Preset..._Options_Paste_Paths..._Poster_Print_Quit_Remove Image_Rotation_Save Preset_Scaling..._Units...bycentimeterscmininchesmillimetersmmpixelspointsptProject-Id-Version: ru Report-Msgid-Bugs-To: blackfive@fakenhamweb.co.uk POT-Creation-Date: 2010-05-29 17:24+0100 PO-Revision-Date: 2008-12-23 02:22+0300 Last-Translator: Alexandre Prokoudine Language-Team: Russian MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: KBabel 1.11.4 Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2); %d°KО программеО программе...ÐбÑÐ¾Ð»ÑŽÑ‚Ð½Ð°Ñ ÐºÐ¾Ð»Ð¾Ñ€Ð¸Ð¼ÐµÑ‚Ñ€Ð¸Ñ‡ÐµÑкаÑÐктивенДобавить Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð² макетДобавить...ДобавлÑÑŽÑ‚ÑÑ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ...Скорректировать цвета на Ñкране Ð´Ð»Ñ Ð¸Ð¼Ð¸Ñ‚Ð°Ñ†Ð¸Ð¸ оттиÑка на белой бумагеСкорректировать цвета на Ñкране Ð´Ð»Ñ Ð¸Ð¼Ð¸Ñ‚Ð°Ñ†Ð¸Ð¸ оттиÑка без имитации белой бумагиПоÑле:Оптимально Ð´Ð»Ñ Ð¿ÐµÑ‡Ð°Ñ‚Ð¸ фотографий, цвета ÑохранÑÑŽÑ‚ÑÑ, Ð²Ñ‹Ñ€ÐµÐ·Ð°Ð½Ð¸Ñ Ð½ÐµÐ´Ð¾Ñтупных цветов не проиÑходитÐлгоритм:_Без полейКоличеÑтво: %1.2fПрименить Ñффекты к выбранному изображениÑÐазначить профиль:Ðазначить профиль ICC или изменить конечную цветопередачу изображениÑПытаетÑÑ Ñохранить иÑходные цвета отноÑительно разницы Ñ Ð±ÐµÐ»Ð¾Ð¹ точкой.ПытаетÑÑ Ñохранить иÑходные цвета отноÑительно разницы Ñ Ð±ÐµÐ»Ð¾Ð¹ точкой. ИÑпользует компенÑацию чёрной точки во избежание обрезки Ñрких учаÑтков и теней.ПытаетÑÑ Ð¾Ð±ÐµÑпечить Ñркие, более наÑыщенные цвета ценой корректноÑти цветопередачиÐвтоматичеÑки выбирать угол поворота Ð´Ð»Ñ Ð·Ð°Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ ÑтраницыÐвтоматичеÑки размеÑтить Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð² ÑеткеФоновый риÑунокДо:РамкиÐижнее: Профиль CMYK:С_копироватьЦветоуправлÑемый предпроÑмотр невозможен, пока вы не выберите профиль "Default RGB" или профиль монитора в диалоге «Параметры > Управление цветом...».КаруÑельСантиметрПроверÑетÑÑ ÐºÐ°Ñ‚Ð°Ð»Ð¾Ð³ ~/.photoprint...Управление цветомЦветовое проÑтранÑтвоСтолбцов:Скопировать текущее изображение в буфер обменаСоздаётÑÑ Ð¼Ð°ÐºÐµÑ‚...Обрезать выбранные Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð´Ð»Ñ Ð·Ð°Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ Ð´Ð¾Ñтупной облаÑтиВырезать текущее изображение в буфер обменаПо умолчаниюСтандартные профили Ð´Ð»Ñ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ð¹ÐžÐ±ÐµÑцвечиваниеСнÑть выделение Ñо вÑех изображенийРазмеры:Ðе имитировать принтер при отображении цветовРежим работы монитора:Ðлгоритм:Продублировать выделенное изображение_ЭкÑпорт..._TIFF...ЭффектыОшибка при Ñоздании каталога `%s': %sОшибка при Ñоздании временного ÑÑкизного файла Ð´Ð»Ñ Â«%s»: %sОшибка при открытии `%s': %sОшибка при чтении `%s': %sОшибка при чтении `%s': в файле нет данных.Ошибка при чтении «%s»: файл не ÑвлÑетÑÑ Ð½Ð¸ обычным файлом, ни ÑимволичеÑкой ÑÑылкойОшибка при проверке «%s»: %sВыйти из программыЭкÑпорт в JPEG...ЭкÑпорт в TIFF..._JPEG..._TIFF...ЭкÑпортировать Ñтраницы как файлы JPEGЭкÑпортировать Ñтраницы как файлы TIFFПроизводитÑÑ ÑкÑпорт...ПомеÑтить Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð½Ð° круговую каруÑель — идеально Ð´Ð»Ñ Ð¾Ð±Ð»Ð¾Ð¶ÐµÐº CDÐе удалоÑÑŒ загрузить Ñнимок «%s»: причина неизвеÑтна, вероÑтно файл Ñнимка иÑÐ¿Ð¾Ñ€Ñ‡ÐµÐ½Ð˜Ð¼Ñ Ñ„Ð°Ð¹Ð»Ð°:Заполнить Ñтраницу копиÑми выбранного ÑÐµÐ¹Ñ‡Ð°Ñ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸ÑИнтервал:СоздаютÑÑ Ð¿ÐµÑ‡Ð°Ñ‚Ð°ÐµÐ¼Ñ‹Ðµ данныеГ (%):По горизонтали:Ð’Ñ‹Ñота:Ð’Ñ‹ÑококачеÑтвенные ÑÑкизыПрофили ICCЗначокСнимокСводка по ÑнимкуДюймИнициализациÑ...Внутренний радиуÑ:КачеÑтво JPEGВидЛевое: ЗагружаютÑÑ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ...ЗагружаетÑÑ Ð¿Ñ€ÐµÐ´ÑƒÑтановка...МаÑштабирование вручнуюМиллиметрÐаиболее приближение к иÑходным цветам (Ð²ÐºÐ»ÑŽÑ‡Ð°Ñ Ð±ÐµÐ»ÑƒÑŽ точку), недоÑтупные цвета вырезаютÑÑ.МониторПрофиль монитора:ÐазваниеÐикакого вращениÑОбычныйОткрыть файлОткрыть предуÑтановкуОткрытие предуÑтановкиДобавить из файла...ВыводПрофиль вывода:ПерекрытиеПерекрытие (%):Размер и Ð¿Ð¾Ð»Ñ ÑтраницыÐа Ñтранице не оÑталоÑÑŒ меÑта!Диапазон Ñтраниц:Страница:Ð’Ñтавить Ñодержимое буфера обмена как новое изображениеРаÑположениеВоÑпринимаемаÑВыберите корректный профиль ICCУкажите Ð¸Ð¼Ñ Ñ„Ð°Ð¹Ð»Ð°.Сначала необходимо выбрать Ñнимок!ПунктМакет плакатаПроÑмотр Ñтраниц, которые будут напечатаныПроÑ_мотреть печать...Очередь на печать:ÐаÑтройка пр_интера...Ðапечатать изображение на неÑкольких Ñтраницах, Ñобираемых в плакатÐапечатать Ñнимки на одиночном лиÑте Ñ ÑƒÐºÐ°Ð·Ð°Ð½Ð½Ñ‹Ð¼ маÑштабомПечать ÑтраницПринтерМодель принтера:Профиль принтера:ÐаÑтройка принтераОчередь печати не найденаПрофиль:ПрогреÑÑ...Профиль RGB:РадиуÑ: %1.2fОтноÑÐ¸Ñ‚ÐµÐ»ÑŒÐ½Ð°Ñ ÐºÐ¾Ð»Ð¾Ñ€Ð¸Ð¼ÐµÑ‚Ñ€Ð¸Ñ‡ÐµÑкаÑОтноÑÐ¸Ñ‚ÐµÐ»ÑŒÐ½Ð°Ñ ÐºÐ¾Ð»Ð¾Ñ€Ð¸Ð¼ÐµÑ‚Ñ€Ð¸Ñ‡ÐµÑÐºÐ°Ñ Ñ ÐºÐ¾Ð¼Ð¿ÐµÐ½Ñацией чёрной точкиУдалитьУбрать вÑе Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð¸Ð· макетаУдалить выбранные Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ñ Ð¼Ð°ÐºÐµÑ‚Ð°Ð¡Ð¾Ð·Ð´Ð°Ð²Ð°Ñ‚ÑŒ выÑококачеÑтвенные ÑÑкизы в фоновом режимеЦветопередача:Разрешение (dpi):Разрешение:Правое: Повернуть на 180° по чаÑовой ÑтрелкеПовернуть на 90° против чаÑовой ÑтрелкиПовернуть на 90° по чаÑовой ÑтрелкеСтрок:ÐаÑыщеннаÑСохранить _как...Сохранить параметры как _типовыеСохранить предуÑтановку16-разрÑдный:Сохранить предуÑтановку как ÑтандартнуюСохранить предуÑтановку под новым именемСохранить предуÑтановку...Сегментов:Ð’_ыделить вÑёС_нÑть выделениеВыберите фон...Выберите рамкуВыделить вÑе изображениÑВыберите каталог...Выбор типа интерполÑции при маÑштабированииВыбор единицы измерениÑ, иÑпользуемой в PhotoPrint_Ðазначить профиль ICC...Укажите иной профиль...УÑтановить _маÑку изображениÑ...У_казать фоновый риÑунок...Выбрать фоновый риÑунок Ð´Ð»Ñ Ñ‚ÐµÐºÑƒÑ‰ÐµÐ³Ð¾ макетаУÑтановить маÑку рамки Ð´Ð»Ñ Ð²Ñ‹Ð±Ñ€Ð°Ð½Ð½Ð¾Ð³Ð¾ изображениÑÐаÑтройка ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ñ†Ð²ÐµÑ‚Ð¾Ð¼Ð£ÐºÐ°Ð·Ð°Ñ‚ÑŒ раÑположение...Указать драйвер и параметры работы принтераУказать пути поиÑка профилей ICC, рамок и Ñ‚.д.Повышение резкоÑти_Ð˜Ð¼Ð¸Ñ‚Ð°Ñ†Ð¸Ñ Ð¿Ñ€Ð¸Ð½Ñ‚ÐµÑ€Ð°Ð˜Ð¼Ð¸Ñ‚Ð°Ñ†Ð¸Ñ Ð¿Ñ€Ð¸Ð½Ñ‚ÐµÑ€Ð°Ð˜Ð¼Ð¸Ñ‚Ð°Ñ†Ð¸Ñ Ð¿Ñ€Ð¸Ð½Ñ‚ÐµÑ€Ð°, Ð±Ð°Ð»Ð°Ð½Ñ Ð±ÐµÐ»Ð¾Ð³Ð¾ по мониторуИ_Ð¼Ð¸Ñ‚Ð°Ñ†Ð¸Ñ Ð¿Ñ€Ð¸Ð½Ñ‚ÐµÑ€Ð°, Ð±Ð°Ð»Ð°Ð½Ñ Ð±ÐµÐ»Ð¾Ð³Ð¾ по Ð¼Ð¾Ð½Ð¸Ñ‚Ð¾Ñ€ÑƒÐ Ð°Ð·Ð¼ÐµÑ€Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾ PhotoPrintÐачальный угол:Очередь печати %s не обнаружена — выберите другуюЭлементов:Верхнее: ПередаютÑÑ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ...Ðевозможно Ñоздать печатаемые данныеЕдиницы измерениÑЕдиница измерениÑ:Ð’ (%):По вертикали:Ш:Теплее/ХолоднееПредупреждение: в Ñнимок уже вÑтроен профиль. При назначении нового Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ Ñтарый будет удален!Ширина:_180°_270°_90°_Добавить..._ÐвтоматичеÑкое_Ðвтомакет_КаруÑельО_чиÑтить макет_Управление цветом..._Вырезать_Продублировать_ПравкаЭ_ффекты..._Файл_СправкаСн_имок_Макет_Другой размер_Ðет_Обычное отображение_Открыть предуÑтановку...П_араметрыВÑÑ‚_авить_РаÑположение данных..._ПлакатÐа_печататьВ_ыйти_Удалить_Вращение_Сохранить предуÑтановку..._ИнтерполÑциÑ..._Единицы измерениÑ...поÑантиметрыcminдюймымиллиметрыmmпикÑеловпунктыptphotoprint-0.4.2-pre2/po/en@quot.header0000644000175000017500000000226311101462351014712 00000000000000# All this catalog "translates" are quotation characters. # The msgids must be ASCII and therefore cannot contain real quotation # characters, only substitutes like grave accent (0x60), apostrophe (0x27) # and double quote (0x22). These substitutes look strange; see # http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html # # This catalog translates grave accent (0x60) and apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019). # It also translates pairs of apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019) # and pairs of quotation mark (0x22) to # left double quotation mark (U+201C) and right double quotation mark (U+201D). # # When output to an UTF-8 terminal, the quotation characters appear perfectly. # When output to an ISO-8859-1 terminal, the single quotation marks are # transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to # grave/acute accent (by libiconv), and the double quotation marks are # transliterated to 0x22. # When output to an ASCII terminal, the single quotation marks are # transliterated to apostrophes, and the double quotation marks are # transliterated to 0x22. # photoprint-0.4.2-pre2/po/cs.po0000644000175000017500000011072311400237672013103 00000000000000# Czech translations for photoprint package. # Copyright (C) 2009 Alastair M. Robinson # This file is distributed under the same license as the PACKAGE package. # # Marek ÄŒernocký , 20, 2010. msgid "" msgstr "" "Project-Id-Version: photoprint 0.4.0\n" "Report-Msgid-Bugs-To: blackfive@fakenhamweb.co.uk\n" "POT-Creation-Date: 2010-05-29 17:24+0100\n" "PO-Revision-Date: 2010-04-23 18:04+0200\n" "Last-Translator: Marek ÄŒernocký \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: dialogs.cpp:75 msgid "Colour Response Hash" msgstr "HeÅ¡ odezvy pro barvy" #: dialogs.cpp:96 msgid "" "This \"hash\" value is derived from the printer driver's output,\n" "and can be used to verify that no changes have occurred which\n" "might invalidate a colour profile for the printer" msgstr "" "Tato hodnota „heš“ je odvozena z výstupu ovladaÄe tiskárny a\n" "může být použita k ověření, že nenastaly žádné zmÄ›ny, které\n" "by mohly znehodnotit barevný profil pro tiskárnu" #: dialogs.cpp:108 msgid "Current hash:" msgstr "SouÄasný heÅ¡:" #: dialogs.cpp:112 msgid "Stored in preset:" msgstr "Uložený v nastavení:" #: dialogs.cpp:118 msgid "No hash stored yet" msgstr "Zatím není uložen žádný heÅ¡" #: dialogs.cpp:127 msgid "" "Calculating hash of printer response\n" "with current driver settings" msgstr "" "VypoÄítává se heÅ¡ odezvy tiskárny\n" "s nastavením souÄasného ovladaÄe" #: dialogs.cpp:132 msgid "Store in preset" msgstr "Uložit do nastavení" #: dialogs.cpp:156 msgid "" "MATCH - No changes in driver\n" "or printer settings detected" msgstr "" "SOUHLASà - Nebyly zjiÅ¡tÄ›ny žádné zmÄ›ny\n" "v ovladaÄi nebo nastavení tiskárny" #: dialogs.cpp:162 msgid "" "This hash can be used to detect changes\n" "in printer settings or driver versions\n" "that might invalidate colour profiles" msgstr "" "Tento heÅ¡ lze použít ke zjiÅ¡tÄ›ní zmÄ›n\n" "v nastavení tiskárny nebo verzích ovladaÄe,\n" "které mohou znehodnotit barevné profily" #: dialogs.cpp:164 msgid "" "MISMATCH - change detected in printer response!\n" "Printer's colour profile might no longer be accurate." msgstr "" "NESOUHLASà - zjiÅ¡tÄ›ny zmÄ›ny v odezvÄ› tiskárny!\n" "Barevný profil tiskárny nemusí být nadále správný." #: dialogs.cpp:287 msgid "Printer Setup" msgstr "Nastavení tiskárny" #: dialogs.cpp:301 msgid "Output" msgstr "Výstup" #: dialogs.cpp:338 msgid "About" msgstr "O aplikaci" #: dialogs.cpp:349 msgid "PhotoPrint " msgstr "PhotoPrint " #: dialogs.cpp:388 msgid "Set paths..." msgstr "Nastavení cest…" #: dialogs.cpp:413 msgid "ICC Profiles" msgstr "Profily ICC" #: dialogs.cpp:445 msgid "Borders" msgstr "Masky" #: dialogs.cpp:476 msgid "Backgrounds" msgstr "Pozadí" #: dialogs.cpp:504 msgid "Select a border..." msgstr "Volba masky…" #: dialogs.cpp:551 msgid "Export TIFF..." msgstr "Exportování TIFF…" #: dialogs.cpp:577 dialogs.cpp:776 msgid "Page range:" msgstr "Rozsah stránek:" #: dialogs.cpp:590 dialogs.cpp:786 msgid "Resolution (dpi):" msgstr "RozliÅ¡ení (dpi):" #: dialogs.cpp:598 msgid "Save as 16-bit:" msgstr "Uložit 16bitovÄ›:" #: dialogs.cpp:617 dialogs.cpp:821 msgid "Output Profile:" msgstr "Výstupní profil:" #: dialogs.cpp:677 dialogs.cpp:914 msgid "Please provide a filename." msgstr "Zadejte prosím název souboru." #: dialogs.cpp:708 dialogs.cpp:892 msgid "Exporting..." msgstr "Probíhá export…" #: dialogs.cpp:747 msgid "Export JPEG..." msgstr "Exportování JPEG…" #: dialogs.cpp:805 msgid "JPEG Quality:" msgstr "Kvalita JPEG:" #: dialogs.cpp:931 msgid "Select a background..." msgstr "Volba pozadí…" #: dialogs.cpp:1023 pp_menu_image.cpp:276 msgid "Please select an image first!" msgstr "Nejdříve prosím zvolte obrázek!" #: dialogs.cpp:1054 msgid "Set Custom Profile..." msgstr "Nastavení uživatelského profilu…" #: dialogs.cpp:1066 msgid "Before:" msgstr "PÅ™ed:" #: dialogs.cpp:1070 msgid "After:" msgstr "Po:" #: dialogs.cpp:1084 msgid "" "Can't show a colour managed\n" "preview unless you choose\n" "a Default RGB or Monitor profile\n" "in the Options->Colour Management\n" "dialog!" msgstr "" "Nelze zobrazit náhled s použitím\n" "správy barev dokud nevyberete\n" "výchozí profil RGB nebo obrazovky\n" "v dialogu Volby->Správa barev!" #: dialogs.cpp:1109 msgid "" "Warning: Image already has an embedded profile\n" "Assigning a new one will over-ride it!" msgstr "" "Varování: Obrázek již obsahuje uložený profil.\n" "PÅ™iÅ™azením nového původní potlaÄíte." #: dialogs.cpp:1126 msgid "Assign Profile:" msgstr "PÅ™iÅ™adit profil:" #: dialogs.cpp:1134 pp_cms.cpp:349 msgid "Rendering intent:" msgstr "Cíl vykreslování:" #: effects/ppeffect_temperature.cpp:28 msgid "Warm/Cool" msgstr "Teplý/Studený" #: effects/effectselector.cpp:222 msgid "Active" msgstr "Aktivní" #: effects/effectselector.cpp:231 msgid "Icon" msgstr "Ikona" #: effects/effectselector.cpp:243 msgid "Name" msgstr "Název" #: effects/ppeffect_desaturate.cpp:25 msgid "Desaturate" msgstr "Odbarvit" #: effects/effectwidget_tempchange.cpp:57 #, c-format msgid "%d degrees K" msgstr "%d stupňů K" #: effects/ppeffect_unsharpmask.cpp:25 msgid "Sharpen" msgstr "OstÅ™ení" #: effects/effectwidget_unsharpmask.cpp:66 #, c-format msgid "Radius: %1.2f" msgstr "PolomÄ›r: %1.2f" #: effects/effectwidget_unsharpmask.cpp:72 #, c-format msgid "Amount: %1.2f" msgstr "Hodnota: %1.2f" #: menucheck.cpp:23 pp_menu_file.cpp:135 msgid "_File" msgstr "_Soubor" #: menucheck.cpp:25 pp_menu_file.cpp:137 msgid "_Open Preset..." msgstr "_Otevřít nastavení…" #: menucheck.cpp:25 pp_menu_file.cpp:137 msgid "Open a preset" msgstr "OtevÅ™e nastavení" #: menucheck.cpp:26 pp_menu_file.cpp:138 msgid "_Save Preset" msgstr "_Uložit nastavení" #: menucheck.cpp:26 pp_menu_file.cpp:138 msgid "Save a preset" msgstr "Uloží nastavení" #: menucheck.cpp:27 pp_menu_file.cpp:139 msgid "Save _As..." msgstr "Uložit _jako…" #: menucheck.cpp:27 pp_menu_file.cpp:139 msgid "Save preset with a new filename" msgstr "Uloží nastavení do nového souboru" #: menucheck.cpp:28 pp_menu_file.cpp:140 msgid "Save _Default" msgstr "Uložit _výchozí" #: menucheck.cpp:28 pp_menu_file.cpp:140 msgid "Save preset as the default" msgstr "Uloží nastavení jako výchozí" #: menucheck.cpp:29 msgid "E_xport TIFF..." msgstr "E_xportovat TIFF…" #: menucheck.cpp:29 pp_menu_file.cpp:142 msgid "Export pages as TIFF files" msgstr "Exportuje stránky jako soubory TIFF" #: menucheck.cpp:30 pp_menu_file.cpp:144 msgid "Print Pre_view..." msgstr "_Náhled pÅ™ed tiskem…" #: menucheck.cpp:30 pp_menu_file.cpp:144 msgid "Preview how the printed page will look" msgstr "Náhled jak bude vypadat tisková stránka" #: menucheck.cpp:31 pp_menu_file.cpp:145 msgid "Print S_etup..." msgstr "Nastavení t_isku…" #: menucheck.cpp:31 pp_menu_file.cpp:145 msgid "Set printer driver and options" msgstr "Nastavení tiskových zařízení a voleb" #: menucheck.cpp:32 pp_menu_file.cpp:146 msgid "_Print" msgstr "_Tisk" #: menucheck.cpp:32 pp_menu_file.cpp:146 msgid "Print pages" msgstr "Tisk stránek" #: menucheck.cpp:33 pp_menu_file.cpp:147 msgid "_Quit" msgstr "U_konÄit" #: menucheck.cpp:33 pp_menu_file.cpp:147 msgid "Exit PhotoPrint" msgstr "UkonÄí PhotoPrint" #: menucheck.cpp:62 pp_menu_layout.cpp:131 msgid "_Layout" msgstr "Náv_rh" #: menucheck.cpp:63 pp_menu_image.cpp:316 msgid "_Image" msgstr "_Obrázek" #: menucheck.cpp:64 pp_menu_options.cpp:108 msgid "_Options" msgstr "_Volby" #: menucheck.cpp:65 pp_menu_help.cpp:29 msgid "_Help" msgstr "_NápovÄ›da" #: menucheck.cpp:67 pp_menu_layout.cpp:133 msgid "_Clear Layout" msgstr "_Vymazat návrh" #: menucheck.cpp:67 pp_menu_layout.cpp:133 msgid "Remove all images from the layout" msgstr "Odstraní z návrhu vÅ¡echny obrázky" #: menucheck.cpp:68 pp_menu_layout.cpp:134 msgid "Set _Background" msgstr "Nastavit po_zadí" #: menucheck.cpp:68 pp_menu_layout.cpp:134 msgid "Set a background image for the current layout" msgstr "Nastaví obrázek na pozadí pro aktuální návrh" #: menucheck.cpp:70 pp_menu_image.cpp:318 msgid "_Add Image..." msgstr "_PÅ™idat obrázek…" #: menucheck.cpp:70 pp_menu_image.cpp:318 msgid "Add images to the current layout" msgstr "PÅ™idá obrázky do souÄasného návrhu" #: menucheck.cpp:71 pp_menu_image.cpp:319 msgid "_Remove Image" msgstr "_Odebrat obrázek" #: menucheck.cpp:71 pp_menu_image.cpp:319 msgid "Remove selected images from the layout" msgstr "Odstraní vybrané obrázky ze souÄasného návrhu" #: menucheck.cpp:73 pp_menu_image.cpp:323 msgid "_Rotation" msgstr "O_toÄení" #: menucheck.cpp:75 msgid "Set Image _Mask..." msgstr "Nastavit _masku obrázku…" #: menucheck.cpp:75 pp_menu_image.cpp:325 msgid "Set a border mask for the selected image" msgstr "Nastaví omezující masku pro vybraný obrázek" #: menucheck.cpp:76 msgid "_Effects..." msgstr "_Efekty…" #: menucheck.cpp:76 msgid "Apply effects to the selected image" msgstr "Použije efekty na vybraný obrázek" #: menucheck.cpp:77 pp_menu_image.cpp:327 msgid "Set Colour _Profile..." msgstr "Nastavit pro_fil barev…" #: menucheck.cpp:77 pp_menu_image.cpp:327 msgid "Assign an ICC profile or custom rendering intent to the image" msgstr "PÅ™iÅ™adí obrázku profil ICC nebo upÅ™ednostňovaný výsledek vykreslování" #: menucheck.cpp:79 pp_menu_options.cpp:110 msgid "_Paths..." msgstr "_Cesty…" #: menucheck.cpp:79 pp_menu_options.cpp:110 msgid "Set search paths for ICC profiles, borders, etc." msgstr "Nastavení prohledávaných cest pro profily ICC, masky, atd." #: menucheck.cpp:80 pp_menu_options.cpp:111 msgid "_Colour Management..." msgstr "Správa _barev…" #: menucheck.cpp:80 pp_menu_options.cpp:111 msgid "Set colour management options" msgstr "Nastavení voleb pro správu barev" #: menucheck.cpp:81 pp_menu_options.cpp:113 msgid "_Units..." msgstr "_Jednotky…" #: menucheck.cpp:81 pp_menu_options.cpp:113 msgid "Select the units used throughout PhotoPrint" msgstr "VýbÄ›r jednotek, které má PhotoPrint používat" #: menucheck.cpp:82 pp_menu_options.cpp:114 msgid "_Scaling..." msgstr "ZmÄ›na _velikosti…" #: menucheck.cpp:82 pp_menu_options.cpp:114 msgid "Select the preferred scaling method." msgstr "VýbÄ›r upÅ™ednostňované metody pro zmÄ›nu velikosti" #: menucheck.cpp:84 pp_menu_help.cpp:31 msgid "About..." msgstr "O aplikaci…" #: menucheck.cpp:84 pp_menu_help.cpp:31 msgid "Some information about PhotoPrint" msgstr "Pár informací o aplikaci PhotoPrint" #: menucheck.cpp:89 pp_menu_image.cpp:332 msgid "Allow _Cropping" msgstr "Povolit oÅ™_ezávání" #: menucheck.cpp:89 pp_menu_image.cpp:332 msgid "Crop the selected images to fill the available space" msgstr "OÅ™ezání vybraných obrázků tak, aby vyplnily celou dostupnou plochu" #: menucheck.cpp:94 pp_menu_layout.cpp:139 msgid "_Auto Layout" msgstr "_Automatický návrh" #: menucheck.cpp:94 pp_menu_layout.cpp:139 msgid "Automatically place images in a grid" msgstr "Automaticky umístí obrázky do mřížky" #: menucheck.cpp:95 pp_menu_layout.cpp:140 msgid "_Poster" msgstr "_Plakát" #: menucheck.cpp:95 pp_menu_layout.cpp:140 msgid "Print an image in multiple pages, to be assembled into a poster" msgstr "" "Vytiskne jeden obrázek na více stránek tak, že jej můžete slepit jako plakát" #: menucheck.cpp:96 pp_menu_layout.cpp:141 msgid "_Carousel" msgstr "_KoláÄ" #: menucheck.cpp:96 pp_menu_layout.cpp:141 msgid "Fade images into a circular 'carousel' - ideal for CD labels." msgstr "Prolne obrázky do kruhového „koláÄe“ - ideální pro Å¡títky na CD" #: menucheck.cpp:97 pp_menu_layout.cpp:142 msgid "_Manual Size" msgstr "_RuÄní rozmÄ›ry" #: menucheck.cpp:97 pp_menu_layout.cpp:142 msgid "Print images on a single sheet, at a specified scale." msgstr "Vytiskne obrázky na jednotlivé listy se zadaným zmenÅ¡ením/zvÄ›tÅ¡ením" #: menucheck.cpp:101 pp_menu_image.cpp:337 msgid "_Auto" msgstr "_Automaticky" #: menucheck.cpp:101 pp_menu_image.cpp:337 msgid "Automatically choose rotation to fit the available space." msgstr "Automaticky zvolí otoÄení tak, aby se vyplnila dostupná plocha" #: menucheck.cpp:102 pp_menu_image.cpp:338 msgid "_None" msgstr "Žá_dné" #: menucheck.cpp:102 pp_menu_image.cpp:338 msgid "No rotation." msgstr "Bez otoÄení" #: menucheck.cpp:103 pp_menu_image.cpp:339 msgid "_90 Degrees" msgstr "_90 stupňů" #: menucheck.cpp:103 pp_menu_image.cpp:339 msgid "Rotate 90 degrees clockwise." msgstr "OtoÄení o 90 stupňů proti smÄ›ru hodinových ruÄiÄek" #: menucheck.cpp:104 pp_menu_image.cpp:340 msgid "_180 Degrees" msgstr "_180 stupňů" #: menucheck.cpp:104 pp_menu_image.cpp:340 msgid "Rotate 180 degrees." msgstr "OtoÄení o 180 stupňů" #: menucheck.cpp:105 pp_menu_image.cpp:341 msgid "_270 Degrees" msgstr "_270 stupňů" #: menucheck.cpp:105 pp_menu_image.cpp:341 msgid "Rotate 90 degrees anticlockwise." msgstr "OtoÄení o 90 stupňů ve smÄ›ru hodinových ruÄiÄek" #: menucheck.cpp:229 msgid "Dither Algorithm" msgstr "Algoritmus rozptylu barvy" #: photoprint.cpp:135 msgid "Initializing..." msgstr "Inicializuje se…" #: photoprint.cpp:144 msgid "Checking .photoprint directory..." msgstr "Kontroluje se složka .photoprint…" #: photoprint.cpp:149 msgid "Loading preset..." msgstr "NaÄítá se nastavení…" #: photoprint.cpp:154 msgid "Creating layout..." msgstr "Vytváří se návrh…" #: photoprint.cpp:197 msgid "Loading images..." msgstr "NaÄítají se obrázky…" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:349 #, c-format msgid "Error creating directory `%s': %s" msgstr "Chyba pÅ™i vytváření složky „%s“: %s" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:463 #, c-format msgid "Error opening `%s': %s" msgstr "Chyba pÅ™i otevírání „%s“: %s" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:481 #, c-format msgid "Error reading `%s': file contains no data." msgstr "Chyba pÅ™i Ätení „%s“: soubor neobsahuje žádná data." #: pixbufthumbnail/egg-pixbuf-thumbnail.c:505 #, c-format msgid "Error reading `%s': %s" msgstr "Chyba pÅ™i Ätení „%s“: %s" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:540 #, c-format msgid "" "Failed to load image '%s': reason not known, probably a corrupt image file" msgstr "" "Selhalo naÄtení obrázku „%s“: neznámý důvod, pravdÄ›podobnÄ› poÅ¡kozený soubor" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:613 #, c-format msgid "Error verifying `%s': %s" msgstr "Chyba pÅ™i ověřování „%s“: %s" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:629 #, c-format msgid "Error reading `%s': file is not a regular file or symbolic link." msgstr "" "Chyba pÅ™i Ätení „%s“: soubor není normální soubor ani symbolický odkaz." #: pixbufthumbnail/egg-pixbuf-thumbnail.c:1071 #, c-format msgid "Error creating temporary thumbnail file for `%s': %s" msgstr "Chyba pÅ™i vytváření doÄasného souboru s náhledem pro „%s“: %s" #: pp_cms.cpp:148 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "will first be converted to the default CMYK profile" msgstr "" "Profil tiskárny je typu DeviceLink se vstupem CMYK - obrázky\n" "RGB budou nejprve pÅ™evedeny do výchozího profilu CMYK." #: pp_cms.cpp:154 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "cannot be printed without a default CMYK profile." msgstr "" "Profil tiskárny je typu DeviceLink se vstupem CMYK - obrázky\n" "RGB nebude možné vytisknout bez výchozího profilu CMYK." #: pp_cms.cpp:160 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "cannot be printed without a default RGB and CMYK profile." msgstr "" "Profil tiskárny je typu DeviceLink se vstupem CMYK - obrázky\n" "RGB nebude možné vytisknout bez výchozího profilu RGB a CMYK." #: pp_cms.cpp:168 msgid "" "Printer profile is a devicelink - RGB images with embedded profiles\n" "will first be converted to the default RGB profile." msgstr "" "Profil tiskárny je typu DeviceLink - obrázky RGB s vloženými\n" "profily budou nejprve pÅ™evedeny do výchozího profilu RGB." #: pp_cms.cpp:174 msgid "" "Printer profile is a devicelink - RGB images with embedded profiles will " "not\n" "print correctly, since there is no default RGB profile." msgstr "" "Profil tiskárny je typu DeviceLink - obrázky RGB s vloženými profily\n" "nebudou vytisknuty správnÄ›, protože není žádný výchozí profil RGB." #: pp_cms.cpp:180 msgid "RGB images will print correctly" msgstr "Obrázky RGB budou vytisknuty správnÄ›." #: pp_cms.cpp:185 msgid "" "RGB images can be printed but colours depend on the driver\n" "(Colours will be accurate for images that contain an embedded profile)" msgstr "" "Obrázky RGB bude možné tisknout, ale v barvách závislých na ovladaÄi\n" "(Barvy budou správné u obrázků, které obsahují vložený profil)" #: pp_cms.cpp:190 msgid "RGB images can be printed but colours depend on the driver" msgstr "Obrázky RGB bude možné tisknout, ale v barvách závislých na ovladaÄi." #: pp_cms.cpp:195 msgid "" "RGB images can only be printed if they have an embedded profile\n" "(Workflow is CMYK and there is no default RGB profile)" msgstr "" "Obrázky RGB bude možné tisknout, pokud obsahují vložený profil\n" "(Pracovní postup je CMYK a není žádný výchozí profil RGB)" #: pp_cms.cpp:200 msgid "" "RGB images cannot be printed\n" "(Workflow is CMYK and there is no printer profile)" msgstr "" "Obrázky RGB nebude možné tisknout\n" "(Pracovní postup je CMYK a není žádný profil tiskárny)" #: pp_cms.cpp:215 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "will first be converted to the default RGB profile" msgstr "" "Profil tiskárny je typu DeviceLink se vstupem RGB - obrázky\n" "CMYK budou nejprve pÅ™evedeny do výchozího profilu RGB." #: pp_cms.cpp:221 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "cannot be printed without a default RGB profile." msgstr "" "Profil tiskárny je typu DeviceLink se vstupem RGB - obrázky\n" "CMYK nebude možné vytisknout bez výchozího profilu RGB." #: pp_cms.cpp:227 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "cannot be printed without a default RGB and CMYK profile." msgstr "" "Profil tiskárny je typu DeviceLink se vstupem RGB - obrázky\n" "CMYK nebude možné vytisknout bez výchozího profilu RGB a CMYK." #: pp_cms.cpp:234 msgid "" "Printer profile is a devicelink - CMYK images with embedded profiles\n" "will first be converted to the default CMYK profile." msgstr "" "Profil tiskárny je typu DeviceLink - obrázky CMYK s vloženými\n" "profily budou nejprve pÅ™evedeny do výchozího profilu CMYK." #: pp_cms.cpp:240 msgid "" "Printer profile is a devicelink - CMYK images with embedded profiles will " "not\n" "print correctly since there is no default CMYK profile." msgstr "" "Profil tiskárny je typu DeviceLink - obrázky CMYK s vloženými profily\n" "nebudou vytisknuty správnÄ›, protože není žádný výchozí profil CMYK." #: pp_cms.cpp:246 msgid "CMYK images will print correctly" msgstr "Obrázky CMYK budou vytisknuty správnÄ›." #: pp_cms.cpp:251 msgid "" "CMYK images can be printed but colours depend on the driver\n" "(Colours will be accurate for images that contain an embedded profile)" msgstr "" "Obrázky CMYK bude možné tisknout, ale v barvách závislých na ovladaÄi\n" "(Barvy budou správné u obrázků, které obsahují vložený profil)" #: pp_cms.cpp:256 msgid "CMYK images can be printed but colours depend on the driver" msgstr "Obrázky CMYK bude možné tisknout, ale v barvách závislých na ovladaÄi" #: pp_cms.cpp:261 msgid "" "CMYK images can only be printed if they have an embedded profile\n" "(Workflow is RGB and there is no default CMYK profile)" msgstr "" "Obrázky CMYK bude možné tisknout, pokud obsahují vložený profil\n" "(Pracovní postup je RGB a není žádný výchozí profil CMYK)" #: pp_cms.cpp:266 msgid "" "CMYK images cannot be printed\n" "(Workflow is RGB and there is no printer profile)" msgstr "" "Obrázky CMYK nebude možné tisknout\n" "(Pracovní postup je RGB a není žádný profil tiskárny)" #: pp_cms.cpp:276 msgid "Images will be displayed correctly" msgstr "Obrázky budou zobrazeny správnÄ›." #: pp_cms.cpp:281 msgid "" "Images will only be displayed correctly if they have an embedded profile" msgstr "Obrázky budou zobrazeny správnÄ› jen pokud obsahují vložený profil." #: pp_cms.cpp:286 msgid "Images will not be displayed correctly" msgstr "Obrázky nebudou zobrazeny správnÄ›." #: pp_cms.cpp:317 msgid "Printer" msgstr "Tiskárna" #: pp_cms.cpp:332 msgid "Printer Profile:" msgstr "Profil tiskárny:" #: pp_cms.cpp:364 msgid "Colour space:" msgstr "Barevný prostor:" #: pp_cms.cpp:372 msgid "RGB" msgstr "RGB" #: pp_cms.cpp:372 msgid "Send Red, Green and Blue data to the printer driver" msgstr "Odeslat do tiskového ovladaÄe data Äervené, zelené a modré barvy" #: pp_cms.cpp:373 msgid "CMYK" msgstr "CMYK" #: pp_cms.cpp:373 msgid "Send Cyan, Magenta, Yellow and Black data to the printer driver" msgstr "" "Odeslat do tiskového ovladaÄe data azurové, purpurové, žluté a Äerné barvy" #: pp_cms.cpp:383 msgid "Monitor" msgstr "Obrazovka" #: pp_cms.cpp:396 msgid "Monitor Profile:" msgstr "Profil obrazovky:" #: pp_cms.cpp:411 msgid "Display mode:" msgstr "Režim zobrazení:" #: pp_cms.cpp:420 msgid "Normal" msgstr "Normální" #: pp_cms.cpp:420 msgid "Displays images' original colours, transformed to suit the monitor" msgstr "Zobrazí originální barvy obrázku, pÅ™izpůsobené vybavení monitoru." #: pp_cms.cpp:421 msgid "Simulate Print" msgstr "Simulace tisku" #: pp_cms.cpp:421 msgid "" "Simulates how colours will look when printed, imitating the paper's white " "point." msgstr "" "Simuluje, jak budou barvy vypadat po vytisknutí, pÅ™iÄemž napodobuje bílou " "barvu papíru." #: pp_cms.cpp:422 msgid "Simulate Print, Adapt White" msgstr "Simulace tisku, pÅ™izpůsobení bílé" #: pp_cms.cpp:422 msgid "" "Simulates how colours will look when printed, adapting colours for the " "monitor's white point." msgstr "" "Simuluje, jak budou barvy vypadat po vytisknutí, pÅ™iÄemž pÅ™izpůsobuje barvy " "pro bílou barvu monitoru." #: pp_cms.cpp:432 msgid "Default Image Profiles" msgstr "Výchozí profily obrázků" #: pp_cms.cpp:447 msgid "RGB Profile:" msgstr "Profil RGB:" #: pp_cms.cpp:464 msgid "CMYK Profile:" msgstr "Profil CMYK:" #: pp_cms.cpp:666 msgid "Colour Management" msgstr "Správa barev" #: pp_histogram.cpp:282 msgid "Histogram" msgstr "Histogram" #: pp_imagecontrol.cpp:134 msgid "Effects" msgstr "Efekty" #: pp_imageinfo.cpp:107 msgid "in" msgstr "in" #: pp_imageinfo.cpp:110 msgid "pt" msgstr "pt" #: pp_imageinfo.cpp:115 msgid "cm" msgstr "cm" #: pp_imageinfo.cpp:120 msgid "mm" msgstr "mm" #: pp_imageinfo.cpp:168 msgid "Image Info" msgstr "Informace o obrázku" #: pp_imageinfo.cpp:195 msgid "Filename:" msgstr "Název souboru:" #: pp_imageinfo.cpp:208 msgid "Dimensions:" msgstr "RozmÄ›ry:" #: pp_imageinfo.cpp:228 msgid "Resolution:" msgstr "RozliÅ¡ení:" #: pp_imageinfo.cpp:241 msgid "Profile:" msgstr "Profil:" #: pp_imageinfo.cpp:351 msgid "pixels" msgstr "pixelů" #: pp_imageinfo.cpp:380 profilemanager/profilemanager.cpp:831 msgid "Default" msgstr "Výchozí" #: pp_layout_carousel.cpp:247 pp_layout_carousel.cpp:379 pp_layout_nup.cpp:222 #: pp_layout_poster.cpp:312 pp_layout_poster.cpp:464 pp_layout_single.cpp:233 #: printpreview.cpp:146 msgid "Page:" msgstr "Stránka:" #: pp_layout_carousel.cpp:275 msgid "Carousel" msgstr "KoláÄ" #: pp_layout_carousel.cpp:291 msgid "Segments:" msgstr "PoÄet segmentů:" #: pp_layout_carousel.cpp:306 msgid "Overlap (%):" msgstr "PÅ™ekrytí (%):" #: pp_layout_carousel.cpp:321 msgid "Starting angle:" msgstr "PoÄáteÄní úhel:" #: pp_layout_carousel.cpp:336 msgid "Inner Radius:" msgstr "PolomÄ›r vnitÅ™ku:" #: pp_layout_poster.cpp:339 msgid "Poster Layout" msgstr "Plakát" #: pp_layout_poster.cpp:354 msgid "Size" msgstr "RozmÄ›r" #: pp_layout_poster.cpp:366 pp_layout_poster.cpp:390 msgid "by" msgstr "×" #: pp_layout_poster.cpp:378 msgid "Tiles" msgstr "DÄ›lení" #: pp_layout_poster.cpp:400 msgid "Overlap" msgstr "PÅ™esah" #: pp_layout_poster.cpp:414 pp_pageextent.cpp:262 msgid "H:" msgstr "V:" #: pp_layout_poster.cpp:426 msgid "V:" msgstr "S:" #: pp_layout_single.cpp:261 msgid "Manual scaling" msgstr "RuÄní velikost" #: pp_layout_single.cpp:277 msgid "H (%):" msgstr "VodorovnÄ› (%):" #: pp_layout_single.cpp:291 msgid "V (%):" msgstr "Svisle (%):" #: pp_mainwindow.cpp:228 msgid "Transferring images..." msgstr "PÅ™enášejí se obrázky…" #: pp_menu_edit.cpp:37 msgid "_Edit" msgstr "_Upravit" #: pp_menu_edit.cpp:39 msgid "Select _All" msgstr "Vybr_at vÅ¡e" #: pp_menu_edit.cpp:39 msgid "Select all images" msgstr "OznaÄí vÅ¡echny obrázky jako vybrané" #: pp_menu_edit.cpp:40 msgid "Select _None" msgstr "_ZruÅ¡it výbÄ›r" #: pp_menu_edit.cpp:40 msgid "Deselect all images" msgstr "Zruší oznaÄení vÅ¡ech vybraných obrázků" #: pp_menu_edit.cpp:41 msgid "_Cut" msgstr "_Vyjmout" #: pp_menu_edit.cpp:41 msgid "Cut the current image to the clipboard" msgstr "PÅ™esune aktuální obrázek do schránky" #: pp_menu_edit.cpp:42 msgid "C_opy" msgstr "_Kopírovat" #: pp_menu_edit.cpp:42 msgid "Copy the current image to the clipboard" msgstr "Kopíruje aktuální obrázek do schránky" #: pp_menu_edit.cpp:43 msgid "_Paste" msgstr "V_ložit" #: pp_menu_edit.cpp:43 msgid "Paste the contents of the clipboard as a new image" msgstr "Vloží obsah schránky jako nový obrázek" #: pp_menu_file.cpp:38 msgid "Open preset..." msgstr "OtevÅ™ení nastavení…" #: pp_menu_file.cpp:64 msgid "Save preset..." msgstr "Uložení nastavení…" #: pp_menu_file.cpp:115 msgid "Generating print data..." msgstr "Vytvářejí se tisková data…" #: pp_menu_file.cpp:141 msgid "E_xport" msgstr "E_xportovat" #: pp_menu_file.cpp:142 msgid "Export _TIFF..." msgstr "Exportovat _TIFF…" #: pp_menu_file.cpp:143 msgid "Export _JPEG..." msgstr "Exportovat _JPEG…" #: pp_menu_file.cpp:143 msgid "Export pages as JPEG files" msgstr "Exportovat stránky jako JPEG soubory" #: pp_menu_shortcuts.cpp:78 msgid "_Shortcuts" msgstr "_Klávesové zkratky" #: pp_menu_shortcuts.cpp:131 msgid "Error fetching preset name!" msgstr "" #: pp_menu_image.cpp:64 msgid "Open File" msgstr "OtevÅ™ení souboru" #: pp_menu_image.cpp:104 msgid "Adding images..." msgstr "PÅ™idávají se obrázky…" #: pp_menu_image.cpp:186 msgid "Page is already full!" msgstr "Stránka je již plná!" #: pp_menu_image.cpp:320 msgid "_Duplicate Image" msgstr "_Duplikovat obrázek" #: pp_menu_image.cpp:320 msgid "Duplicate the currently selected image" msgstr "Vytvoří kopii aktuálnÄ› vybraného obrázku" #: pp_menu_image.cpp:321 msgid "Duplicate to _Fill Page" msgstr "_Vyplnit stránku kopiemi" #: pp_menu_image.cpp:321 msgid "Fill the page with copies of the currently selected image" msgstr "Vyplní stránku kopiemi aktuálnÄ› vybraného obrázku" #: pp_menu_image.cpp:325 msgid "Set Image _Border..." msgstr "Nastavit okraj o_brázku…" #: pp_menu_options.cpp:112 msgid "_Colour Response Hash..." msgstr "_HeÅ¡ odezvy pro barvy…" #: pp_menu_options.cpp:112 msgid "Create a hash for verifying printer settings" msgstr "VytvoÅ™it heÅ¡ pro ověřování nastavení tiskárny" #: pp_menu_options.cpp:118 msgid "High-res Previews" msgstr "Náhledy ve vysokém rozliÅ¡ení" #: pp_menu_options.cpp:118 msgid "Render high-resolution previews in the background" msgstr "Na pozadí vytvářet náhledy ve vysokém rozliÅ¡ení" #: pp_menu_options.cpp:122 msgid "_Normal Display" msgstr "Normální zobrazení" #: pp_menu_options.cpp:122 msgid "Display colours with no print simulation" msgstr "Zobrazí barvy bez simulace tisku" #: pp_menu_options.cpp:123 msgid "Simulate Prin_t" msgstr "Simulovat _tisk" #: pp_menu_options.cpp:123 msgid "" "Adjust colours on screen to imitate printed colours, including paper white" msgstr "" "PÅ™izpůsobí barvy na obrazovce napodobení tiskových barev mimo bílého papíru" #: pp_menu_options.cpp:124 msgid "Simulate Print, _Adapt White" msgstr "Simulovat tisk, pÅ™izpůsobit bí_lou" #: pp_menu_options.cpp:124 msgid "Adjust colours to imitate printed colours, excluding paper white" msgstr "" "PÅ™izpůsobí barvy na obrazovce napodobení tiskových barev mimo bílého papíru" #: pp_pageextent.cpp:228 msgid "Page Size and Margins" msgstr "Velikost stránky a okrajů" #: pp_pageextent.cpp:252 msgid "W:" msgstr "Å :" #: pp_pageextent.cpp:275 msgid "Left:" msgstr "Levý:" #: pp_pageextent.cpp:291 msgid "Right:" msgstr "Pravý:" #: pp_pageextent.cpp:304 msgid "Top:" msgstr "Horní:" #: pp_pageextent.cpp:315 msgid "Bottom:" msgstr "Dolní:" #: gp_cppsupport/printoutputselector.cpp:114 msgid "Print Queue:" msgstr "Tisková fronta:" #: gp_cppsupport/printoutputselector.cpp:133 msgid "Printer Model:" msgstr "Model tiskárny:" #: gp_cppsupport/printoutputselector.cpp:196 #, c-format msgid "" "The printer queue %s\n" " is not found - please choose another" msgstr "" "Tisková fronta %s\n" " nebyla nalezena - vyberte prosím jinou" #: gp_cppsupport/printoutputselector.cpp:197 msgid "Printer queue not found" msgstr "Tisková fronta nebyla nalezena" #: gp_cppsupport/gprinter.cpp:387 msgid "Unable to generate print data" msgstr "Nelze vygenerovat tisková data" #: pp_scaling.cpp:72 msgid "Algorithm:" msgstr "Algoritmus:" #: pp_scaling.cpp:184 msgid "Scaling" msgstr "ZmÄ›na velikosti" #: pp_sigcontrol.cpp:187 msgid "Columns:" msgstr "Sloupců:" #: pp_sigcontrol.cpp:201 msgid "Rows:" msgstr "Řádků:" #: pp_sigcontrol.cpp:215 pp_sigcontrol.cpp:229 msgid "Gap:" msgstr "Mezera:" #: pp_sigcontrol.cpp:254 msgid "Width:" msgstr "Šířka:" #: pp_sigcontrol.cpp:268 msgid "Height:" msgstr "Výška:" #: pp_sigcontrol.cpp:280 msgid "From selected image" msgstr "Podle vybraného obrázku" #: pp_sigcontrol.cpp:338 msgid "Layout" msgstr "Rozvržení" #: pp_sigcontrol.cpp:341 msgid "Specify rows/columns" msgstr "UrÄit poÄet řádků/sloupců" #: pp_sigcontrol.cpp:342 msgid "Specify image dimensions" msgstr "UrÄit rozmÄ›ry obrázku" #: pp_units.cpp:60 msgid "Units:" msgstr "Jednotky:" #: pp_units.cpp:68 msgid "Points" msgstr "Body" #: pp_units.cpp:71 msgid "Inches" msgstr "Palce" #: pp_units.cpp:74 msgid "Millimeters" msgstr "Milimetry" #: pp_units.cpp:77 msgid "Centimeters" msgstr "Centimetry" #: pp_units.cpp:151 msgid "Units" msgstr "Jednotky" #: printpreview.cpp:153 msgid "Preview resolution:" msgstr "RozliÅ¡ení náhledu:" #: printpreview.cpp:157 msgid "180 dots per inch" msgstr "180 bodů na palec" #: printpreview.cpp:158 msgid "240 dots per inch" msgstr "240 bodů na palec" #: printpreview.cpp:159 msgid "300 dots per inch" msgstr "300 bodů na palec" #: printpreview.cpp:160 msgid "360 dots per inch" msgstr "360 bodů na palec" #: printpreview.cpp:165 msgid "" "Click-and-drag to pan around the preview.\n" "Right-click to toggle magnification." msgstr "" "ZmáÄknÄ›te první tlaÄítko myÅ¡i a posouvejte zábÄ›r náhledu.\n" "Kliknutí druhým tlaÄítkem mÄ›ní zvÄ›tÅ¡ení." #: printpreview.cpp:168 msgid "Close" msgstr "Zavřít" #: printpreview.cpp:236 msgid "Drawing preview" msgstr "Vykresluje se náhled" #: gp_cppsupport/gprintersettings.cpp:413 msgid "" "Can't obtain printer from Gutenprint\n" "Check STP_DATA_PATH and Gutenprint version!" msgstr "" "Nelze získat tiskárnu ze systému Gutenprint\n" "Zkontrolujte STP_DATA_PATH a verzi Gutenprint!" #: profilemanager/lcmswrapper.cpp:553 msgid "Perceptual" msgstr "Vizuální vjem" #: profilemanager/lcmswrapper.cpp:554 msgid "Relative Colorimetric" msgstr "Relativní kolorimetrie" #: profilemanager/lcmswrapper.cpp:555 msgid "Relative Colorimetric with BPC" msgstr "Relativní kolorimetrie s BPC" #: profilemanager/lcmswrapper.cpp:556 msgid "Saturation" msgstr "Sytost barev" #: profilemanager/lcmswrapper.cpp:557 msgid "Absolute Colorimetric" msgstr "Absolutní kolorimetrie" #: profilemanager/lcmswrapper.cpp:562 msgid "" "Aims for pleasing photographic results by preserving relationships between " "colours, and avoiding clipping of unattainable colours" msgstr "" "Pokusí se o příjemný fotografický výsledek pomocí zachování vztahů mezi " "barvami a zabránÄ›ní oÅ™ezání nedostupných barev." #: profilemanager/lcmswrapper.cpp:563 msgid "" "Attempts to preserve the original colours, relative to white-point " "differences." msgstr "Pokusí se zachovat originální barvy relativnÄ› k rozdílům bílého bodu." #: profilemanager/lcmswrapper.cpp:564 msgid "" "Attempts to preserve the original colours, relative to white-point " "differences. Uses Black Point Compensation to avoid clipping of highlights " "and shadows." msgstr "" "Pokusí se zachovat originální barvy relativnÄ› k rozdílům bílého bodu. " "Použije kompenzaci Äerného bodu (BPC), aby se zabránilo oÅ™ezání jasů a stínů." #: profilemanager/lcmswrapper.cpp:565 msgid "" "Attempts to provide brighter, more saturated colours, at the expense of " "colour relationships." msgstr "" "Pokusí se poskytnout jasnÄ›jší a sytÄ›jší barvy na úÄet vztahů mezi barvami." #: profilemanager/lcmswrapper.cpp:566 msgid "" "Mimics the original colours (including white point) as closely as possible, " "for side-by-side comparisons. Clips unattainable colours." msgstr "" "Napodobí originální barvy (vÄetnÄ› bílého bodu) jak nejlépe to půjde pÅ™i " "vzájemném porovnání. Ořízne nedostupné barvy." #: profilemanager/profileselector.cpp:39 miscwidgets/imageselector.cpp:478 msgid "Other..." msgstr "Další…" #: profilemanager/profileselector.cpp:193 #, fuzzy msgid "None" msgstr "Žá_dné" #: profilemanager/profileselector.cpp:392 msgid "Please choose a valid ICC profile" msgstr "Zvolte prosím platný profil ICC" #: profilemanager/profilemanager.cpp:207 msgid "Can't do proofing without a valid Printer profile!" msgstr "Bez platného profilu tiskárny nelze provést korekci!" #: profilemanager/profilemanager.cpp:212 msgid "Can't do proofing without a valid Monitor profile!" msgstr "Bez platného profilu monitoru nelze provést korekci!" #: profilemanager/profilemanager.cpp:217 msgid "Can't do proofing without a valid Default RGB profile!" msgstr "Bez výchozího profilu RGB nelze provést korekci!" #: profilemanager/profilemanager.cpp:497 msgid "No Proof profile provided!" msgstr "Není poskytován žádný korekÄní profil!" #: profilemanager/profilemanager.cpp:839 msgid "Default rendering intent" msgstr "Výchozí cíl vykreslování" #: stpui_widgets/dimension.c:161 msgid "points" msgstr "body" #: stpui_widgets/dimension.c:165 msgid "inches" msgstr "palce" #: stpui_widgets/dimension.c:169 msgid "millimeters" msgstr "milimetry" #: stpui_widgets/dimension.c:173 msgid "centimeters" msgstr "centimetry" #: stpui_widgets/stpui_optionbook.c:117 msgid "General" msgstr "Obecné" #: stpui_widgets/stpui_optionbook.c:120 msgid "Manual Settings" msgstr "RuÄní nastavení" #: stpui_widgets/stpui_optionbook.c:123 msgid "Colour (Basic)" msgstr "Barvy (základ)" #: stpui_widgets/stpui_optionbook.c:126 msgid "Colour (Fine-tuning)" msgstr "Barvy (detaily)" #: stpui_widgets/stpui_optionbook.c:129 msgid "Colour (Extra)" msgstr "Barvy (extra)" #: miscwidgets/patheditor.cpp:53 msgid "Select directory..." msgstr "Volba složky…" #: miscwidgets/patheditor.cpp:98 msgid "Path" msgstr "Cesta" #: miscwidgets/patheditor.cpp:112 msgid "Add..." msgstr "PÅ™idat…" #: miscwidgets/patheditor.cpp:117 msgid "Remove" msgstr "Odstranit" #: miscwidgets/imageselector.cpp:458 msgid "Image" msgstr "Obrázek" #: miscwidgets/progressbar.cpp:52 msgid "Progress..." msgstr "PrůbÄ›h…" #: imagesource/imagesource_util.cpp:32 msgid "Automatic" msgstr "Automaticky" #: imagesource/imagesource_util.cpp:32 msgid "Selects a scaling algorithm based on scale factor" msgstr "Zvolí algoritmus pro zmÄ›nu velikosti podle měřítka" #: imagesource/imagesource_util.cpp:33 msgid "Fast" msgstr "Rychlý" #: imagesource/imagesource_util.cpp:33 msgid "Very fast scaling with no interpolation" msgstr "Velmi rychlá zmÄ›na velikosti bez interpolace" #: imagesource/imagesource_util.cpp:34 msgid "Bilinear" msgstr "Bilineární" #: imagesource/imagesource_util.cpp:34 msgid "An interpolation filter with mediocre speed and quality" msgstr "InterpolaÄní filtr s kompromisem mezi rychlostí a kvalitou" #: imagesource/imagesource_util.cpp:35 msgid "LanczosSinc" msgstr "LanczosSinc" #: imagesource/imagesource_util.cpp:35 msgid "Slow but very high quality interpolation filter" msgstr "Pomalý, ale velmi kvalitní interpolaÄní filtr" #: imagesource/imagesource_util.cpp:37 msgid "Downsample" msgstr "Snížení vzrokování" #: imagesource/imagesource_util.cpp:37 msgid "High quality filter for reductions only" msgstr "Vysoce kvalitní filtr pouze pro zmenÅ¡ování" photoprint-0.4.2-pre2/po/da.po0000644000175000017500000007642611400237672013075 00000000000000# Danish translation of PhotoPrint. # Copyright (C) 2008 Alastair M. Robinson # This file is distributed under the same license as the package. # # Mogens Jaeger , 2008. msgid "" msgstr "" "Project-Id-Version: photoprint 0.3.8\n" "Report-Msgid-Bugs-To: blackfive@fakenhamweb.co.uk\n" "POT-Creation-Date: 2010-05-29 17:24+0100\n" "PO-Revision-Date: 2008-10-25 13:25+0200\n" "Last-Translator: Mogens Jaeger \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" #: dialogs.cpp:75 #, fuzzy msgid "Colour Response Hash" msgstr "_Farvestyring..." #: dialogs.cpp:96 msgid "" "This \"hash\" value is derived from the printer driver's output,\n" "and can be used to verify that no changes have occurred which\n" "might invalidate a colour profile for the printer" msgstr "" #: dialogs.cpp:108 msgid "Current hash:" msgstr "" #: dialogs.cpp:112 #, fuzzy msgid "Stored in preset:" msgstr "Gem et sæt af forudindstillinger" #: dialogs.cpp:118 msgid "No hash stored yet" msgstr "" #: dialogs.cpp:127 msgid "" "Calculating hash of printer response\n" "with current driver settings" msgstr "" #: dialogs.cpp:132 #, fuzzy msgid "Store in preset" msgstr "Gem et sæt af forudindstillinger" #: dialogs.cpp:156 msgid "" "MATCH - No changes in driver\n" "or printer settings detected" msgstr "" #: dialogs.cpp:162 msgid "" "This hash can be used to detect changes\n" "in printer settings or driver versions\n" "that might invalidate colour profiles" msgstr "" #: dialogs.cpp:164 msgid "" "MISMATCH - change detected in printer response!\n" "Printer's colour profile might no longer be accurate." msgstr "" #: dialogs.cpp:287 msgid "Printer Setup" msgstr "Indstil printer" #: dialogs.cpp:301 msgid "Output" msgstr "Uddata" #: dialogs.cpp:338 msgid "About" msgstr "Om" #: dialogs.cpp:349 #, fuzzy msgid "PhotoPrint " msgstr "Afslut PhotoPrint" #: dialogs.cpp:388 msgid "Set paths..." msgstr "Sæt stier..." #: dialogs.cpp:413 msgid "ICC Profiles" msgstr "ICC profiler" #: dialogs.cpp:445 msgid "Borders" msgstr "Rammer" #: dialogs.cpp:476 msgid "Backgrounds" msgstr "Baggrunde" #: dialogs.cpp:504 msgid "Select a border..." msgstr "Vælg en ramme..." #: dialogs.cpp:551 msgid "Export TIFF..." msgstr "Eksportér TIFF..." #: dialogs.cpp:577 dialogs.cpp:776 msgid "Page range:" msgstr "SideomrÃ¥de:" #: dialogs.cpp:590 dialogs.cpp:786 msgid "Resolution (dpi):" msgstr "Opløsning (dpi):" #: dialogs.cpp:598 msgid "Save as 16-bit:" msgstr "Gem som 16-bit:" #: dialogs.cpp:617 dialogs.cpp:821 msgid "Output Profile:" msgstr "Uddataprofil:" #: dialogs.cpp:677 dialogs.cpp:914 msgid "Please provide a filename." msgstr "Angiv et filnavn." #: dialogs.cpp:708 dialogs.cpp:892 msgid "Exporting..." msgstr "Eksporterer..." #: dialogs.cpp:747 msgid "Export JPEG..." msgstr "Eksportér JPEG..." #: dialogs.cpp:805 msgid "JPEG Quality:" msgstr "JPEG kalitet:" #: dialogs.cpp:931 msgid "Select a background..." msgstr "Vælg en baggrund..." #: dialogs.cpp:1023 pp_menu_image.cpp:276 msgid "Please select an image first!" msgstr "Vælg et billede først!" #: dialogs.cpp:1054 msgid "Set Custom Profile..." msgstr "Sæt brugerprofil..." #: dialogs.cpp:1066 msgid "Before:" msgstr "Før:" #: dialogs.cpp:1070 msgid "After:" msgstr "Efter:" #: dialogs.cpp:1084 msgid "" "Can't show a colour managed\n" "preview unless you choose\n" "a Default RGB or Monitor profile\n" "in the Options->Colour Management\n" "dialog!" msgstr "" "Kan ikke vise en farvestyret\n" "forhÃ¥ndsvisning før du har valgt\n" "en standard RGB- eller skærm-profil\n" "i Indstillinger->Farvestyring dialogen!" #: dialogs.cpp:1109 msgid "" "Warning: Image already has an embedded profile\n" "Assigning a new one will over-ride it!" msgstr "" "Advarsel: Billedet har allerede en indlejret profil\n" "Fastsættelse af en ny vil overskrive den!" #: dialogs.cpp:1126 msgid "Assign Profile:" msgstr "Fastsæt profil:" #: dialogs.cpp:1134 pp_cms.cpp:349 msgid "Rendering intent:" msgstr "FarvegengivelsesmÃ¥de:" #: effects/ppeffect_temperature.cpp:28 msgid "Warm/Cool" msgstr "Varm/kold" #: effects/effectselector.cpp:222 msgid "Active" msgstr "Aktiv" #: effects/effectselector.cpp:231 msgid "Icon" msgstr "Ikon" #: effects/effectselector.cpp:243 msgid "Name" msgstr "Navn" #: effects/ppeffect_desaturate.cpp:25 msgid "Desaturate" msgstr "Afmætning" #: effects/effectwidget_tempchange.cpp:57 #, c-format msgid "%d degrees K" msgstr "%d grader K" #: effects/ppeffect_unsharpmask.cpp:25 msgid "Sharpen" msgstr "Skærpe" #: effects/effectwidget_unsharpmask.cpp:66 #, c-format msgid "Radius: %1.2f" msgstr "Radius: %1.2f" #: effects/effectwidget_unsharpmask.cpp:72 #, c-format msgid "Amount: %1.2f" msgstr "Mængde: %1.2f" #: menucheck.cpp:23 pp_menu_file.cpp:135 msgid "_File" msgstr "_Fil" #: menucheck.cpp:25 pp_menu_file.cpp:137 msgid "_Open Preset..." msgstr "Ã…ben f_orudindstillet..." #: menucheck.cpp:25 pp_menu_file.cpp:137 msgid "Open a preset" msgstr "Ã…bn et sæt af forudindstillinger" #: menucheck.cpp:26 pp_menu_file.cpp:138 msgid "_Save Preset" msgstr "Gem forudind_stilling" #: menucheck.cpp:26 pp_menu_file.cpp:138 msgid "Save a preset" msgstr "Gem et sæt af forudindstillinger" #: menucheck.cpp:27 pp_menu_file.cpp:139 msgid "Save _As..." msgstr "_Gem som..." #: menucheck.cpp:27 pp_menu_file.cpp:139 msgid "Save preset with a new filename" msgstr "Gem forudindstilling med et filnavn" #: menucheck.cpp:28 pp_menu_file.cpp:140 msgid "Save _Default" msgstr "Gem stan_dard" #: menucheck.cpp:28 pp_menu_file.cpp:140 msgid "Save preset as the default" msgstr "Gem forudindstillet som standard" #: menucheck.cpp:29 msgid "E_xport TIFF..." msgstr "E_ksporter TIFF..." #: menucheck.cpp:29 pp_menu_file.cpp:142 msgid "Export pages as TIFF files" msgstr "Eksporter sider som TIFF-filer" #: menucheck.cpp:30 pp_menu_file.cpp:144 msgid "Print Pre_view..." msgstr "Udskriv forhÃ¥nds_visning..." #: menucheck.cpp:30 pp_menu_file.cpp:144 msgid "Preview how the printed page will look" msgstr "Se hvordan udskriften vil blive" #: menucheck.cpp:31 pp_menu_file.cpp:145 msgid "Print S_etup..." msgstr "Udskrifts indstilling_er..." #: menucheck.cpp:31 pp_menu_file.cpp:145 msgid "Set printer driver and options" msgstr "Indstil printerdrivere og indstillinger" #: menucheck.cpp:32 pp_menu_file.cpp:146 msgid "_Print" msgstr "_Udskriv" #: menucheck.cpp:32 pp_menu_file.cpp:146 msgid "Print pages" msgstr "Udskriv sider" #: menucheck.cpp:33 pp_menu_file.cpp:147 msgid "_Quit" msgstr "_Afslut" #: menucheck.cpp:33 pp_menu_file.cpp:147 msgid "Exit PhotoPrint" msgstr "Afslut PhotoPrint" #: menucheck.cpp:62 pp_menu_layout.cpp:131 msgid "_Layout" msgstr "_Layout" #: menucheck.cpp:63 pp_menu_image.cpp:316 msgid "_Image" msgstr "B_illede" #: menucheck.cpp:64 pp_menu_options.cpp:108 msgid "_Options" msgstr "_Indstillinger" #: menucheck.cpp:65 pp_menu_help.cpp:29 msgid "_Help" msgstr "_Hjælp" #: menucheck.cpp:67 pp_menu_layout.cpp:133 msgid "_Clear Layout" msgstr "_Ryd layout" #: menucheck.cpp:67 pp_menu_layout.cpp:133 msgid "Remove all images from the layout" msgstr "Fjer alle billeder fra layoutet" #: menucheck.cpp:68 pp_menu_layout.cpp:134 msgid "Set _Background" msgstr "Vælg _baggrund" #: menucheck.cpp:68 pp_menu_layout.cpp:134 msgid "Set a background image for the current layout" msgstr "Vælg et baggrundsbillede til det nuværende layout" #: menucheck.cpp:70 pp_menu_image.cpp:318 msgid "_Add Image..." msgstr "_Tilføj billede..." #: menucheck.cpp:70 pp_menu_image.cpp:318 msgid "Add images to the current layout" msgstr "Tilføj billeder til det nuværende layout" #: menucheck.cpp:71 pp_menu_image.cpp:319 msgid "_Remove Image" msgstr "_Fjern billede" #: menucheck.cpp:71 pp_menu_image.cpp:319 msgid "Remove selected images from the layout" msgstr "Fjern valgt billede fra layoutet" #: menucheck.cpp:73 pp_menu_image.cpp:323 msgid "_Rotation" msgstr "_Rotation" #: menucheck.cpp:75 msgid "Set Image _Mask..." msgstr "Vælg billedra_mmer..." #: menucheck.cpp:75 pp_menu_image.cpp:325 msgid "Set a border mask for the selected image" msgstr "Vælg en ramme til det valgte billede" #: menucheck.cpp:76 msgid "_Effects..." msgstr "_Effekter..." #: menucheck.cpp:76 msgid "Apply effects to the selected image" msgstr "Tilføj effekter til det valgte billede" #: menucheck.cpp:77 pp_menu_image.cpp:327 msgid "Set Colour _Profile..." msgstr "Vælg farve_profil..." #: menucheck.cpp:77 pp_menu_image.cpp:327 msgid "Assign an ICC profile or custom rendering intent to the image" msgstr "" "Tilknyt en ICC-profil, eller en bruger farvegengivelsesmÃ¥de til billedet" #: menucheck.cpp:79 pp_menu_options.cpp:110 msgid "_Paths..." msgstr "_Stier..." #: menucheck.cpp:79 pp_menu_options.cpp:110 msgid "Set search paths for ICC profiles, borders, etc." msgstr "Sæt søgestier til ICC-profiler, rammer, m.m." #: menucheck.cpp:80 pp_menu_options.cpp:111 msgid "_Colour Management..." msgstr "_Farvestyring..." #: menucheck.cpp:80 pp_menu_options.cpp:111 msgid "Set colour management options" msgstr "Sæt farvestyrings indstillinger" #: menucheck.cpp:81 pp_menu_options.cpp:113 msgid "_Units..." msgstr "_Enheder..." #: menucheck.cpp:81 pp_menu_options.cpp:113 msgid "Select the units used throughout PhotoPrint" msgstr "Vælg enheder til brug i hele PhotoPrint" #: menucheck.cpp:82 pp_menu_options.cpp:114 msgid "_Scaling..." msgstr "_Skalering..." #: menucheck.cpp:82 pp_menu_options.cpp:114 msgid "Select the preferred scaling method." msgstr "Vælg foretrukket skaleringsmetode." #: menucheck.cpp:84 pp_menu_help.cpp:31 msgid "About..." msgstr "Om..." #: menucheck.cpp:84 pp_menu_help.cpp:31 msgid "Some information about PhotoPrint" msgstr "Nogle informationer om PhotoPrint" #: menucheck.cpp:89 pp_menu_image.cpp:332 msgid "Allow _Cropping" msgstr "Tillad _beskæring" #: menucheck.cpp:89 pp_menu_image.cpp:332 msgid "Crop the selected images to fill the available space" msgstr "Beskær det valgte billede, sÃ¥ det udfylder det tilgængelige omrÃ¥de" #: menucheck.cpp:94 pp_menu_layout.cpp:139 msgid "_Auto Layout" msgstr "_Auto layout" #: menucheck.cpp:94 pp_menu_layout.cpp:139 msgid "Automatically place images in a grid" msgstr "Automatisk placere billeder i et gitter" #: menucheck.cpp:95 pp_menu_layout.cpp:140 msgid "_Poster" msgstr "_Plakat" #: menucheck.cpp:95 pp_menu_layout.cpp:140 msgid "Print an image in multiple pages, to be assembled into a poster" msgstr "Udskriv et billede pÃ¥ flere sider, sÃ¥ de kan samles til en plakat" #: menucheck.cpp:96 pp_menu_layout.cpp:141 msgid "_Carousel" msgstr "_Karrusel" #: menucheck.cpp:96 pp_menu_layout.cpp:141 msgid "Fade images into a circular 'carousel' - ideal for CD labels." msgstr "Udton billeder i en cirkulær 'karrusel' - ideelt til cd-labels." #: menucheck.cpp:97 pp_menu_layout.cpp:142 msgid "_Manual Size" msgstr "_Manuel størrelse" #: menucheck.cpp:97 pp_menu_layout.cpp:142 msgid "Print images on a single sheet, at a specified scale." msgstr "Udskriv billeder pÃ¥ et enkelt ark, i angivet skala." #: menucheck.cpp:101 pp_menu_image.cpp:337 msgid "_Auto" msgstr "_Auto" #: menucheck.cpp:101 pp_menu_image.cpp:337 msgid "Automatically choose rotation to fit the available space." msgstr "Automatisk valg af rotation til at passe ind i tilgængeligt omrÃ¥de." #: menucheck.cpp:102 pp_menu_image.cpp:338 msgid "_None" msgstr "_Ingen" #: menucheck.cpp:102 pp_menu_image.cpp:338 msgid "No rotation." msgstr "Ingen rotation." #: menucheck.cpp:103 pp_menu_image.cpp:339 msgid "_90 Degrees" msgstr "_90 grader" #: menucheck.cpp:103 pp_menu_image.cpp:339 msgid "Rotate 90 degrees clockwise." msgstr "Rotér 90 grader med uret." #: menucheck.cpp:104 pp_menu_image.cpp:340 msgid "_180 Degrees" msgstr "_180 grader" #: menucheck.cpp:104 pp_menu_image.cpp:340 msgid "Rotate 180 degrees." msgstr "Rotér 180 grader" #: menucheck.cpp:105 pp_menu_image.cpp:341 msgid "_270 Degrees" msgstr "_270 grader" #: menucheck.cpp:105 pp_menu_image.cpp:341 msgid "Rotate 90 degrees anticlockwise." msgstr "Rotér 90 grader mod uret." #: menucheck.cpp:229 msgid "Dither Algorithm" msgstr "Dither-algoritme" #: photoprint.cpp:135 msgid "Initializing..." msgstr "Initialisering..." #: photoprint.cpp:144 msgid "Checking .photoprint directory..." msgstr "Kontrollerer photoprint biblioteker..." #: photoprint.cpp:149 msgid "Loading preset..." msgstr "Indlæser forudindstillinger..." #: photoprint.cpp:154 msgid "Creating layout..." msgstr "Danner layout..." #: photoprint.cpp:197 msgid "Loading images..." msgstr "Indlæser billeder..." #: pixbufthumbnail/egg-pixbuf-thumbnail.c:349 #, c-format msgid "Error creating directory `%s': %s" msgstr "Fejl ved dannelse af bibliotek `%s': %s" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:463 #, c-format msgid "Error opening `%s': %s" msgstr "Fejl ved Ã¥bning af `%s': %s" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:481 #, c-format msgid "Error reading `%s': file contains no data." msgstr "Fejl ved læsning af `%s': filen indeholder ingen data." #: pixbufthumbnail/egg-pixbuf-thumbnail.c:505 #, c-format msgid "Error reading `%s': %s" msgstr "Fejl ved læsning af `%s': %s" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:540 #, c-format msgid "" "Failed to load image '%s': reason not known, probably a corrupt image file" msgstr "" "Fejlede ved indlæsning af billede `%s': ukendt fejl, mÃ¥ske en ødelagt " "billedfil" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:613 #, c-format msgid "Error verifying `%s': %s" msgstr "Fejl ved verificering af `%s': %s" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:629 #, c-format msgid "Error reading `%s': file is not a regular file or symbolic link." msgstr "" "Fejl ved læsning af `%s': det er ikke en almindelig fil eller symbolsk link." #: pixbufthumbnail/egg-pixbuf-thumbnail.c:1071 #, c-format msgid "Error creating temporary thumbnail file for `%s': %s" msgstr "Fejl ved dannelse af midlertidig miniaturefil for `%s': %s" #: pp_cms.cpp:148 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "will first be converted to the default CMYK profile" msgstr "" #: pp_cms.cpp:154 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "cannot be printed without a default CMYK profile." msgstr "" #: pp_cms.cpp:160 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "cannot be printed without a default RGB and CMYK profile." msgstr "" #: pp_cms.cpp:168 msgid "" "Printer profile is a devicelink - RGB images with embedded profiles\n" "will first be converted to the default RGB profile." msgstr "" #: pp_cms.cpp:174 msgid "" "Printer profile is a devicelink - RGB images with embedded profiles will " "not\n" "print correctly, since there is no default RGB profile." msgstr "" #: pp_cms.cpp:180 msgid "RGB images will print correctly" msgstr "" #: pp_cms.cpp:185 msgid "" "RGB images can be printed but colours depend on the driver\n" "(Colours will be accurate for images that contain an embedded profile)" msgstr "" #: pp_cms.cpp:190 msgid "RGB images can be printed but colours depend on the driver" msgstr "" #: pp_cms.cpp:195 msgid "" "RGB images can only be printed if they have an embedded profile\n" "(Workflow is CMYK and there is no default RGB profile)" msgstr "" #: pp_cms.cpp:200 msgid "" "RGB images cannot be printed\n" "(Workflow is CMYK and there is no printer profile)" msgstr "" #: pp_cms.cpp:215 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "will first be converted to the default RGB profile" msgstr "" #: pp_cms.cpp:221 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "cannot be printed without a default RGB profile." msgstr "" #: pp_cms.cpp:227 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "cannot be printed without a default RGB and CMYK profile." msgstr "" #: pp_cms.cpp:234 msgid "" "Printer profile is a devicelink - CMYK images with embedded profiles\n" "will first be converted to the default CMYK profile." msgstr "" #: pp_cms.cpp:240 msgid "" "Printer profile is a devicelink - CMYK images with embedded profiles will " "not\n" "print correctly since there is no default CMYK profile." msgstr "" #: pp_cms.cpp:246 msgid "CMYK images will print correctly" msgstr "" #: pp_cms.cpp:251 msgid "" "CMYK images can be printed but colours depend on the driver\n" "(Colours will be accurate for images that contain an embedded profile)" msgstr "" #: pp_cms.cpp:256 msgid "CMYK images can be printed but colours depend on the driver" msgstr "" #: pp_cms.cpp:261 msgid "" "CMYK images can only be printed if they have an embedded profile\n" "(Workflow is RGB and there is no default CMYK profile)" msgstr "" #: pp_cms.cpp:266 msgid "" "CMYK images cannot be printed\n" "(Workflow is RGB and there is no printer profile)" msgstr "" #: pp_cms.cpp:276 msgid "Images will be displayed correctly" msgstr "" #: pp_cms.cpp:281 msgid "" "Images will only be displayed correctly if they have an embedded profile" msgstr "" #: pp_cms.cpp:286 msgid "Images will not be displayed correctly" msgstr "" #: pp_cms.cpp:317 msgid "Printer" msgstr "Printer" #: pp_cms.cpp:332 msgid "Printer Profile:" msgstr "Printerprofil:" #: pp_cms.cpp:364 msgid "Colour space:" msgstr "Farverum:" #: pp_cms.cpp:372 msgid "RGB" msgstr "" #: pp_cms.cpp:372 msgid "Send Red, Green and Blue data to the printer driver" msgstr "" #: pp_cms.cpp:373 msgid "CMYK" msgstr "" #: pp_cms.cpp:373 msgid "Send Cyan, Magenta, Yellow and Black data to the printer driver" msgstr "" #: pp_cms.cpp:383 msgid "Monitor" msgstr "Skærm" #: pp_cms.cpp:396 msgid "Monitor Profile:" msgstr "Skærmprofil:" #: pp_cms.cpp:411 msgid "Display mode:" msgstr "Visningstilstand:" #: pp_cms.cpp:420 msgid "Normal" msgstr "Normal" #: pp_cms.cpp:420 msgid "Displays images' original colours, transformed to suit the monitor" msgstr "" #: pp_cms.cpp:421 msgid "Simulate Print" msgstr "Simuler udskrift" #: pp_cms.cpp:421 msgid "" "Simulates how colours will look when printed, imitating the paper's white " "point." msgstr "" #: pp_cms.cpp:422 msgid "Simulate Print, Adapt White" msgstr "Simuler udskrift, tilpasset hvid" #: pp_cms.cpp:422 msgid "" "Simulates how colours will look when printed, adapting colours for the " "monitor's white point." msgstr "" #: pp_cms.cpp:432 msgid "Default Image Profiles" msgstr "Standard-billed profiler" #: pp_cms.cpp:447 msgid "RGB Profile:" msgstr "RGB profil:" #: pp_cms.cpp:464 msgid "CMYK Profile:" msgstr "CMYK profil:" #: pp_cms.cpp:666 msgid "Colour Management" msgstr "Farvestyring" #: pp_histogram.cpp:282 msgid "Histogram" msgstr "" #: pp_imagecontrol.cpp:134 msgid "Effects" msgstr "Effekter" #: pp_imageinfo.cpp:107 msgid "in" msgstr "tommer" #: pp_imageinfo.cpp:110 msgid "pt" msgstr "punkter" #: pp_imageinfo.cpp:115 msgid "cm" msgstr "cm" #: pp_imageinfo.cpp:120 msgid "mm" msgstr "mm" #: pp_imageinfo.cpp:168 msgid "Image Info" msgstr "Billed info" #: pp_imageinfo.cpp:195 msgid "Filename:" msgstr "Filnavn:" #: pp_imageinfo.cpp:208 msgid "Dimensions:" msgstr "Dimensioner:" #: pp_imageinfo.cpp:228 msgid "Resolution:" msgstr "Opløsning:" #: pp_imageinfo.cpp:241 msgid "Profile:" msgstr "Profil:" #: pp_imageinfo.cpp:351 msgid "pixels" msgstr "pixels" #: pp_imageinfo.cpp:380 profilemanager/profilemanager.cpp:831 msgid "Default" msgstr "Standard" #: pp_layout_carousel.cpp:247 pp_layout_carousel.cpp:379 pp_layout_nup.cpp:222 #: pp_layout_poster.cpp:312 pp_layout_poster.cpp:464 pp_layout_single.cpp:233 #: printpreview.cpp:146 msgid "Page:" msgstr "Side:" #: pp_layout_carousel.cpp:275 msgid "Carousel" msgstr "Karrusel" #: pp_layout_carousel.cpp:291 msgid "Segments:" msgstr "Udsnit:" #: pp_layout_carousel.cpp:306 msgid "Overlap (%):" msgstr "Overlap (%):" #: pp_layout_carousel.cpp:321 msgid "Starting angle:" msgstr "Startvinkel:" #: pp_layout_carousel.cpp:336 msgid "Inner Radius:" msgstr "Indre radius:" #: pp_layout_poster.cpp:339 msgid "Poster Layout" msgstr "Posterlayout" #: pp_layout_poster.cpp:354 msgid "Size" msgstr "Størrelse" #: pp_layout_poster.cpp:366 pp_layout_poster.cpp:390 msgid "by" msgstr "af" #: pp_layout_poster.cpp:378 msgid "Tiles" msgstr "Dele" #: pp_layout_poster.cpp:400 msgid "Overlap" msgstr "Overlapning" #: pp_layout_poster.cpp:414 pp_pageextent.cpp:262 msgid "H:" msgstr "V:" #: pp_layout_poster.cpp:426 msgid "V:" msgstr "L:" #: pp_layout_single.cpp:261 msgid "Manual scaling" msgstr "Manuel skalering" #: pp_layout_single.cpp:277 msgid "H (%):" msgstr "V (%):" #: pp_layout_single.cpp:291 msgid "V (%):" msgstr "L (%):" #: pp_mainwindow.cpp:228 msgid "Transferring images..." msgstr "Overfører billeder..." #: pp_menu_edit.cpp:37 msgid "_Edit" msgstr "_Redigér" #: pp_menu_edit.cpp:39 msgid "Select _All" msgstr "Vælg _alt" #: pp_menu_edit.cpp:39 msgid "Select all images" msgstr "Vælg alle billeder" #: pp_menu_edit.cpp:40 msgid "Select _None" msgstr "Ingen _valgt" #: pp_menu_edit.cpp:40 msgid "Deselect all images" msgstr "Fravælg alle billeder" #: pp_menu_edit.cpp:41 msgid "_Cut" msgstr "_Klip" #: pp_menu_edit.cpp:41 msgid "Cut the current image to the clipboard" msgstr "Klip det valgte billede til klippebordet" #: pp_menu_edit.cpp:42 msgid "C_opy" msgstr "K_opi" #: pp_menu_edit.cpp:42 msgid "Copy the current image to the clipboard" msgstr "Kopiér det valgte billede til klippebordet" #: pp_menu_edit.cpp:43 msgid "_Paste" msgstr "_Indsæt" #: pp_menu_edit.cpp:43 msgid "Paste the contents of the clipboard as a new image" msgstr "Indsæt indholdet af klippebordet som et nyt billede" #: pp_menu_file.cpp:38 msgid "Open preset..." msgstr "Ã…ben forudindstillet..." #: pp_menu_file.cpp:64 msgid "Save preset..." msgstr "Gem forudindstillet..." #: pp_menu_file.cpp:115 msgid "Generating print data..." msgstr "Danner printerdata..." #: pp_menu_file.cpp:141 msgid "E_xport" msgstr "E_xport" #: pp_menu_file.cpp:142 msgid "Export _TIFF..." msgstr "Export _TIFF..." #: pp_menu_file.cpp:143 msgid "Export _JPEG..." msgstr "Export _JPEG..." #: pp_menu_file.cpp:143 msgid "Export pages as JPEG files" msgstr "Exporter sider som JPEG filer" #: pp_menu_shortcuts.cpp:78 msgid "_Shortcuts" msgstr "" #: pp_menu_shortcuts.cpp:131 msgid "Error fetching preset name!" msgstr "" #: pp_menu_image.cpp:64 msgid "Open File" msgstr "Ã…bn fil" #: pp_menu_image.cpp:104 msgid "Adding images..." msgstr "Tilføj billeder..." #: pp_menu_image.cpp:186 msgid "Page is already full!" msgstr "Siden er allerede fuld!" #: pp_menu_image.cpp:320 msgid "_Duplicate Image" msgstr "_Duplikere billede" #: pp_menu_image.cpp:320 msgid "Duplicate the currently selected image" msgstr "Duplikér det valgte billede" #: pp_menu_image.cpp:321 #, fuzzy msgid "Duplicate to _Fill Page" msgstr "_Duplikér til fyld-side" #: pp_menu_image.cpp:321 msgid "Fill the page with copies of the currently selected image" msgstr "Fyld siden med kopier af det valgte billede" #: pp_menu_image.cpp:325 #, fuzzy msgid "Set Image _Border..." msgstr "Vælg en ramme..." #: pp_menu_options.cpp:112 #, fuzzy msgid "_Colour Response Hash..." msgstr "_Farvestyring..." #: pp_menu_options.cpp:112 msgid "Create a hash for verifying printer settings" msgstr "" #: pp_menu_options.cpp:118 msgid "High-res Previews" msgstr "Højopløsnings-forhÃ¥ndsvisning" #: pp_menu_options.cpp:118 msgid "Render high-resolution previews in the background" msgstr "Dan højopløsnings-forhÃ¥ndsvisninger i baggrunden" #: pp_menu_options.cpp:122 msgid "_Normal Display" msgstr "_Standard visning" #: pp_menu_options.cpp:122 msgid "Display colours with no print simulation" msgstr "Vis farver uden printer-simulering" #: pp_menu_options.cpp:123 msgid "Simulate Prin_t" msgstr "Simulér prin_t" #: pp_menu_options.cpp:123 msgid "" "Adjust colours on screen to imitate printed colours, including paper white" msgstr "" "Justér farverne pÃ¥ skærmen, sÃ¥ de imiterer farverne i udskriften, inklusiv " "papir-hvid" #: pp_menu_options.cpp:124 msgid "Simulate Print, _Adapt White" msgstr "Simulér print, _inklusiv hvid" #: pp_menu_options.cpp:124 msgid "Adjust colours to imitate printed colours, excluding paper white" msgstr "" "Justér farverne pÃ¥ skærmen, sÃ¥ de imiterer farverne i udskriften, uden papir-" "hvid" #: pp_pageextent.cpp:228 msgid "Page Size and Margins" msgstr "Papirstørrelser og marginer" #: pp_pageextent.cpp:252 msgid "W:" msgstr "B:" #: pp_pageextent.cpp:275 msgid "Left:" msgstr "Venstre:" #: pp_pageextent.cpp:291 msgid "Right:" msgstr "Højre:" #: pp_pageextent.cpp:304 msgid "Top:" msgstr "Top:" #: pp_pageextent.cpp:315 msgid "Bottom:" msgstr "Bund:" #: gp_cppsupport/printoutputselector.cpp:114 msgid "Print Queue:" msgstr "Printerkø:" #: gp_cppsupport/printoutputselector.cpp:133 msgid "Printer Model:" msgstr "Printer model:" #: gp_cppsupport/printoutputselector.cpp:196 #, c-format msgid "" "The printer queue %s\n" " is not found - please choose another" msgstr "" #: gp_cppsupport/printoutputselector.cpp:197 #, fuzzy msgid "Printer queue not found" msgstr "Indstil printer" #: gp_cppsupport/gprinter.cpp:387 #, fuzzy msgid "Unable to generate print data" msgstr "Danner printerdata..." #: pp_scaling.cpp:72 msgid "Algorithm:" msgstr "Algoritme:" #: pp_scaling.cpp:184 #, fuzzy msgid "Scaling" msgstr "_Skalering..." #: pp_sigcontrol.cpp:187 msgid "Columns:" msgstr "Kolonne:" #: pp_sigcontrol.cpp:201 msgid "Rows:" msgstr "Række:" #: pp_sigcontrol.cpp:215 pp_sigcontrol.cpp:229 msgid "Gap:" msgstr "Mellemrum:" #: pp_sigcontrol.cpp:254 msgid "Width:" msgstr "" #: pp_sigcontrol.cpp:268 #, fuzzy msgid "Height:" msgstr "Højre:" #: pp_sigcontrol.cpp:280 #, fuzzy msgid "From selected image" msgstr "Fravælg alle billeder" #: pp_sigcontrol.cpp:338 msgid "Layout" msgstr "Layout" #: pp_sigcontrol.cpp:341 msgid "Specify rows/columns" msgstr "" #: pp_sigcontrol.cpp:342 msgid "Specify image dimensions" msgstr "" #: pp_units.cpp:60 msgid "Units:" msgstr "Enheder:" #: pp_units.cpp:68 msgid "Points" msgstr "Punkter" #: pp_units.cpp:71 msgid "Inches" msgstr "Tommer" #: pp_units.cpp:74 msgid "Millimeters" msgstr "Millimeter" #: pp_units.cpp:77 msgid "Centimeters" msgstr "Centimeter" #: pp_units.cpp:151 msgid "Units" msgstr "Enheder" #: printpreview.cpp:153 #, fuzzy msgid "Preview resolution:" msgstr "Opløsning:" #: printpreview.cpp:157 msgid "180 dots per inch" msgstr "" #: printpreview.cpp:158 msgid "240 dots per inch" msgstr "" #: printpreview.cpp:159 msgid "300 dots per inch" msgstr "" #: printpreview.cpp:160 msgid "360 dots per inch" msgstr "" #: printpreview.cpp:165 msgid "" "Click-and-drag to pan around the preview.\n" "Right-click to toggle magnification." msgstr "" #: printpreview.cpp:168 #, fuzzy msgid "Close" msgstr "Karrusel" #: printpreview.cpp:236 #, fuzzy msgid "Drawing preview" msgstr "Udskriv forhÃ¥nds_visning..." #: gp_cppsupport/gprintersettings.cpp:413 msgid "" "Can't obtain printer from Gutenprint\n" "Check STP_DATA_PATH and Gutenprint version!" msgstr "" #: profilemanager/lcmswrapper.cpp:553 msgid "Perceptual" msgstr "Perceptuel" #: profilemanager/lcmswrapper.cpp:554 msgid "Relative Colorimetric" msgstr "Relativ kolorimetrisk" #: profilemanager/lcmswrapper.cpp:555 msgid "Relative Colorimetric with BPC" msgstr "Relativ kolorimetrisk med BPC" #: profilemanager/lcmswrapper.cpp:556 msgid "Saturation" msgstr "Mætning" #: profilemanager/lcmswrapper.cpp:557 msgid "Absolute Colorimetric" msgstr "Absolut kolorimetrisk" #: profilemanager/lcmswrapper.cpp:562 msgid "" "Aims for pleasing photographic results by preserving relationships between " "colours, and avoiding clipping of unattainable colours" msgstr "" "Tilstræber et venligt fotografisk resultat, gennem bevaring af forholdet " "mellem farverne, og undgÃ¥r klipning af uopnÃ¥elige farver" #: profilemanager/lcmswrapper.cpp:563 msgid "" "Attempts to preserve the original colours, relative to white-point " "differences." msgstr "" "Forsøger at bevare de oprindelige farver, relativt til hvid-punkts afvigelse." #: profilemanager/lcmswrapper.cpp:564 msgid "" "Attempts to preserve the original colours, relative to white-point " "differences. Uses Black Point Compensation to avoid clipping of highlights " "and shadows." msgstr "" "Forsøger at bevare de oprindelige farver, relativt til hvid-punkts " "afvigelse. Anvender sort-punkts kompensation for at undgÃ¥ klipning i højlys " "og skygger." #: profilemanager/lcmswrapper.cpp:565 msgid "" "Attempts to provide brighter, more saturated colours, at the expense of " "colour relationships." msgstr "" "Forsøger at frembringe lysere, mere mættede farver, pÃ¥ bekostning af " "forholdet mellem farverne." #: profilemanager/lcmswrapper.cpp:566 msgid "" "Mimics the original colours (including white point) as closely as possible, " "for side-by-side comparisons. Clips unattainable colours." msgstr "" "Gengiver de originale farver (inklusive hvid-punkt) sÃ¥ godt som muligt, a.h." "t. sammenligning. Klipper uopnÃ¥elige farver." #: profilemanager/profileselector.cpp:39 miscwidgets/imageselector.cpp:478 msgid "Other..." msgstr "Andet..." #: profilemanager/profileselector.cpp:193 #, fuzzy msgid "None" msgstr "_Ingen" #: profilemanager/profileselector.cpp:392 msgid "Please choose a valid ICC profile" msgstr "Vælg en gyldig ICC-profil" #: profilemanager/profilemanager.cpp:207 msgid "Can't do proofing without a valid Printer profile!" msgstr "" #: profilemanager/profilemanager.cpp:212 msgid "Can't do proofing without a valid Monitor profile!" msgstr "" #: profilemanager/profilemanager.cpp:217 msgid "Can't do proofing without a valid Default RGB profile!" msgstr "" #: profilemanager/profilemanager.cpp:497 msgid "No Proof profile provided!" msgstr "" #: profilemanager/profilemanager.cpp:839 #, fuzzy msgid "Default rendering intent" msgstr "FarvegengivelsesmÃ¥de:" #: stpui_widgets/dimension.c:161 msgid "points" msgstr "punkter" #: stpui_widgets/dimension.c:165 msgid "inches" msgstr "tommer" #: stpui_widgets/dimension.c:169 msgid "millimeters" msgstr "millimetre" #: stpui_widgets/dimension.c:173 msgid "centimeters" msgstr "centimetre" #: stpui_widgets/stpui_optionbook.c:117 msgid "General" msgstr "" #: stpui_widgets/stpui_optionbook.c:120 #, fuzzy msgid "Manual Settings" msgstr "Manuel skalering" #: stpui_widgets/stpui_optionbook.c:123 #, fuzzy msgid "Colour (Basic)" msgstr "Farverum:" #: stpui_widgets/stpui_optionbook.c:126 msgid "Colour (Fine-tuning)" msgstr "" #: stpui_widgets/stpui_optionbook.c:129 msgid "Colour (Extra)" msgstr "" #: miscwidgets/patheditor.cpp:53 msgid "Select directory..." msgstr "Vælg bibliotek..." #: miscwidgets/patheditor.cpp:98 msgid "Path" msgstr "Sti" #: miscwidgets/patheditor.cpp:112 msgid "Add..." msgstr "Tilføj..." #: miscwidgets/patheditor.cpp:117 msgid "Remove" msgstr "Fjern" #: miscwidgets/imageselector.cpp:458 msgid "Image" msgstr "Billede" #: miscwidgets/progressbar.cpp:52 msgid "Progress..." msgstr "Fremgang..." #: imagesource/imagesource_util.cpp:32 msgid "Automatic" msgstr "" #: imagesource/imagesource_util.cpp:32 msgid "Selects a scaling algorithm based on scale factor" msgstr "" #: imagesource/imagesource_util.cpp:33 #, fuzzy msgid "Fast" msgstr "_Indsæt" #: imagesource/imagesource_util.cpp:33 msgid "Very fast scaling with no interpolation" msgstr "" #: imagesource/imagesource_util.cpp:34 msgid "Bilinear" msgstr "" #: imagesource/imagesource_util.cpp:34 msgid "An interpolation filter with mediocre speed and quality" msgstr "" #: imagesource/imagesource_util.cpp:35 msgid "LanczosSinc" msgstr "" #: imagesource/imagesource_util.cpp:35 msgid "Slow but very high quality interpolation filter" msgstr "" #: imagesource/imagesource_util.cpp:37 msgid "Downsample" msgstr "" #: imagesource/imagesource_util.cpp:37 msgid "High quality filter for reductions only" msgstr "" photoprint-0.4.2-pre2/po/fr.po0000644000175000017500000010265411400237672013111 00000000000000msgid "" msgstr "" "Project-Id-Version: Photoprint\n" "Report-Msgid-Bugs-To: blackfive@fakenhamweb.co.uk\n" "POT-Creation-Date: 2010-05-29 17:24+0100\n" "PO-Revision-Date: 2006-12-03 16:52+0100\n" "Last-Translator: Skadge \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: French\n" #: dialogs.cpp:75 #, fuzzy msgid "Colour Response Hash" msgstr "Gestion des couleurs" #: dialogs.cpp:96 msgid "" "This \"hash\" value is derived from the printer driver's output,\n" "and can be used to verify that no changes have occurred which\n" "might invalidate a colour profile for the printer" msgstr "" #: dialogs.cpp:108 msgid "Current hash:" msgstr "" #: dialogs.cpp:112 #, fuzzy msgid "Stored in preset:" msgstr "Enregistrer les réglages..." #: dialogs.cpp:118 msgid "No hash stored yet" msgstr "" #: dialogs.cpp:127 msgid "" "Calculating hash of printer response\n" "with current driver settings" msgstr "" #: dialogs.cpp:132 #, fuzzy msgid "Store in preset" msgstr "Enregistrer les réglages..." #: dialogs.cpp:156 msgid "" "MATCH - No changes in driver\n" "or printer settings detected" msgstr "" #: dialogs.cpp:162 msgid "" "This hash can be used to detect changes\n" "in printer settings or driver versions\n" "that might invalidate colour profiles" msgstr "" #: dialogs.cpp:164 msgid "" "MISMATCH - change detected in printer response!\n" "Printer's colour profile might no longer be accurate." msgstr "" #: dialogs.cpp:287 msgid "Printer Setup" msgstr "Configuration de l'impression" #: dialogs.cpp:301 msgid "Output" msgstr "" #: dialogs.cpp:338 msgid "About" msgstr "À propos" #: dialogs.cpp:349 msgid "PhotoPrint " msgstr "" #: dialogs.cpp:388 msgid "Set paths..." msgstr "Définir les chemins..." #: dialogs.cpp:413 msgid "ICC Profiles" msgstr "Profils ICC" #: dialogs.cpp:445 msgid "Borders" msgstr "Bordures" #: dialogs.cpp:476 msgid "Backgrounds" msgstr "Arrière-plans" #: dialogs.cpp:504 msgid "Select a border..." msgstr "Choisir une bordure..." #: dialogs.cpp:551 msgid "Export TIFF..." msgstr "Exporter au format TIFF..." #: dialogs.cpp:577 dialogs.cpp:776 msgid "Page range:" msgstr "Ensemble de pages :" #: dialogs.cpp:590 dialogs.cpp:786 msgid "Resolution (dpi):" msgstr "Résolution (ppp) :" #: dialogs.cpp:598 msgid "Save as 16-bit:" msgstr "" #: dialogs.cpp:617 dialogs.cpp:821 msgid "Output Profile:" msgstr "Profil de sortie :" #: dialogs.cpp:677 dialogs.cpp:914 msgid "Please provide a filename." msgstr "Il faut spécifier un nom de fichier !" #: dialogs.cpp:708 dialogs.cpp:892 msgid "Exporting..." msgstr "Exportation en cours..." #: dialogs.cpp:747 #, fuzzy msgid "Export JPEG..." msgstr "Exporter au format TIFF..." #: dialogs.cpp:805 msgid "JPEG Quality:" msgstr "" #: dialogs.cpp:931 msgid "Select a background..." msgstr "Choisir un arrière-plan..." #: dialogs.cpp:1023 pp_menu_image.cpp:276 msgid "Please select an image first!" msgstr "Il faut d'abord choisir une image !" #: dialogs.cpp:1054 msgid "Set Custom Profile..." msgstr "Choisir un profil personnalisé..." #: dialogs.cpp:1066 msgid "Before:" msgstr "Avant :" #: dialogs.cpp:1070 msgid "After:" msgstr "Après :" #: dialogs.cpp:1084 msgid "" "Can't show a colour managed\n" "preview unless you choose\n" "a Default RGB or Monitor profile\n" "in the Options->Colour Management\n" "dialog!" msgstr "" "Impossible d'afficher un aperçu\n" "avec la gestion des couleurs tant que\n" "vous n'avez pas sélectionné un profil\n" "de moniteur ou RVB par défaut dans\n" "le menu Options->Gestion des couleurs" #: dialogs.cpp:1109 msgid "" "Warning: Image already has an embedded profile\n" "Assigning a new one will over-ride it!" msgstr "" "Attention : cette image est déjà accompagnée d'un profil\n" "En définir un nouveau écrasera le précédent !" #: dialogs.cpp:1126 msgid "Assign Profile:" msgstr "Définir le profil :" #: dialogs.cpp:1134 pp_cms.cpp:349 msgid "Rendering intent:" msgstr "Rendu désiré :" #: effects/ppeffect_temperature.cpp:28 msgid "Warm/Cool" msgstr "" #: effects/effectselector.cpp:222 msgid "Active" msgstr "" #: effects/effectselector.cpp:231 msgid "Icon" msgstr "" #: effects/effectselector.cpp:243 msgid "Name" msgstr "" #: effects/ppeffect_desaturate.cpp:25 msgid "Desaturate" msgstr "" #: effects/effectwidget_tempchange.cpp:57 #, fuzzy, c-format msgid "%d degrees K" msgstr "90 degrés" #: effects/ppeffect_unsharpmask.cpp:25 msgid "Sharpen" msgstr "" #: effects/effectwidget_unsharpmask.cpp:66 #, c-format msgid "Radius: %1.2f" msgstr "" #: effects/effectwidget_unsharpmask.cpp:72 #, c-format msgid "Amount: %1.2f" msgstr "" #: menucheck.cpp:23 pp_menu_file.cpp:135 msgid "_File" msgstr "_Fichier" #: menucheck.cpp:25 pp_menu_file.cpp:137 msgid "_Open Preset..." msgstr "Ouvrir les réglages pré-enregistrés..." #: menucheck.cpp:25 pp_menu_file.cpp:137 msgid "Open a preset" msgstr "Ouvrir les réglages pré-enregistrés..." #: menucheck.cpp:26 pp_menu_file.cpp:138 msgid "_Save Preset" msgstr "_Enregistrer les réglages..." #: menucheck.cpp:26 pp_menu_file.cpp:138 msgid "Save a preset" msgstr "Enregistrer les réglages..." #: menucheck.cpp:27 pp_menu_file.cpp:139 msgid "Save _As..." msgstr "Enregistrer _sous..." #: menucheck.cpp:27 pp_menu_file.cpp:139 msgid "Save preset with a new filename" msgstr "" #: menucheck.cpp:28 pp_menu_file.cpp:140 msgid "Save _Default" msgstr "" #: menucheck.cpp:28 pp_menu_file.cpp:140 msgid "Save preset as the default" msgstr "" #: menucheck.cpp:29 #, fuzzy msgid "E_xport TIFF..." msgstr "Exporter au format TIFF..." #: menucheck.cpp:29 pp_menu_file.cpp:142 msgid "Export pages as TIFF files" msgstr "" #: menucheck.cpp:30 pp_menu_file.cpp:144 msgid "Print Pre_view..." msgstr "Impression de l'a_perçu" #: menucheck.cpp:30 pp_menu_file.cpp:144 msgid "Preview how the printed page will look" msgstr "" #: menucheck.cpp:31 pp_menu_file.cpp:145 msgid "Print S_etup..." msgstr "Confi_guration de l'impression" #: menucheck.cpp:31 pp_menu_file.cpp:145 msgid "Set printer driver and options" msgstr "" #: menucheck.cpp:32 pp_menu_file.cpp:146 msgid "_Print" msgstr "Imprimante" #: menucheck.cpp:32 pp_menu_file.cpp:146 msgid "Print pages" msgstr "Imprimante" #: menucheck.cpp:33 pp_menu_file.cpp:147 msgid "_Quit" msgstr "_Quitter" #: menucheck.cpp:33 pp_menu_file.cpp:147 msgid "Exit PhotoPrint" msgstr "" #: menucheck.cpp:62 pp_menu_layout.cpp:131 msgid "_Layout" msgstr "_Mise en page" #: menucheck.cpp:63 pp_menu_image.cpp:316 msgid "_Image" msgstr "_Image" #: menucheck.cpp:64 pp_menu_options.cpp:108 msgid "_Options" msgstr "_Options" #: menucheck.cpp:65 pp_menu_help.cpp:29 msgid "_Help" msgstr "_Aide" #: menucheck.cpp:67 pp_menu_layout.cpp:133 msgid "_Clear Layout" msgstr "_Effacer la mise en page" #: menucheck.cpp:67 pp_menu_layout.cpp:133 msgid "Remove all images from the layout" msgstr "" #: menucheck.cpp:68 pp_menu_layout.cpp:134 msgid "Set _Background" msgstr "Définir un _arrière-plan" #: menucheck.cpp:68 pp_menu_layout.cpp:134 msgid "Set a background image for the current layout" msgstr "" #: menucheck.cpp:70 pp_menu_image.cpp:318 msgid "_Add Image..." msgstr "Ajout des images..." #: menucheck.cpp:70 pp_menu_image.cpp:318 msgid "Add images to the current layout" msgstr "" #: menucheck.cpp:71 pp_menu_image.cpp:319 msgid "_Remove Image" msgstr "_Retirer l'image" #: menucheck.cpp:71 pp_menu_image.cpp:319 msgid "Remove selected images from the layout" msgstr "" #: menucheck.cpp:73 pp_menu_image.cpp:323 msgid "_Rotation" msgstr "_Rotation" #: menucheck.cpp:75 msgid "Set Image _Mask..." msgstr "Appliquer un _masque..." #: menucheck.cpp:75 pp_menu_image.cpp:325 msgid "Set a border mask for the selected image" msgstr "" #: menucheck.cpp:76 msgid "_Effects..." msgstr "Appliquer un _masque..." #: menucheck.cpp:76 msgid "Apply effects to the selected image" msgstr "" #: menucheck.cpp:77 pp_menu_image.cpp:327 msgid "Set Colour _Profile..." msgstr "Définir un _profil de couleurs..." #: menucheck.cpp:77 pp_menu_image.cpp:327 msgid "Assign an ICC profile or custom rendering intent to the image" msgstr "" #: menucheck.cpp:79 pp_menu_options.cpp:110 msgid "_Paths..." msgstr "Définir les chemins..." #: menucheck.cpp:79 pp_menu_options.cpp:110 msgid "Set search paths for ICC profiles, borders, etc." msgstr "" #: menucheck.cpp:80 pp_menu_options.cpp:111 msgid "_Colour Management..." msgstr "Gestion des couleurs" #: menucheck.cpp:80 pp_menu_options.cpp:111 msgid "Set colour management options" msgstr "Gestion des couleurs" #: menucheck.cpp:81 pp_menu_options.cpp:113 msgid "_Units..." msgstr "Unités" #: menucheck.cpp:81 pp_menu_options.cpp:113 msgid "Select the units used throughout PhotoPrint" msgstr "" #: menucheck.cpp:82 pp_menu_options.cpp:114 msgid "_Scaling..." msgstr "Mise à l'échelle..." #: menucheck.cpp:82 pp_menu_options.cpp:114 msgid "Select the preferred scaling method." msgstr "" #: menucheck.cpp:84 pp_menu_help.cpp:31 msgid "About..." msgstr "À propos" #: menucheck.cpp:84 pp_menu_help.cpp:31 msgid "Some information about PhotoPrint" msgstr "" #: menucheck.cpp:89 pp_menu_image.cpp:332 msgid "Allow _Cropping" msgstr "Permettre le re_cadrage" #: menucheck.cpp:89 pp_menu_image.cpp:332 msgid "Crop the selected images to fill the available space" msgstr "" #: menucheck.cpp:94 pp_menu_layout.cpp:139 msgid "_Auto Layout" msgstr "Mise en page _automatique" #: menucheck.cpp:94 pp_menu_layout.cpp:139 msgid "Automatically place images in a grid" msgstr "" #: menucheck.cpp:95 pp_menu_layout.cpp:140 msgid "_Poster" msgstr "_Poster" #: menucheck.cpp:95 pp_menu_layout.cpp:140 msgid "Print an image in multiple pages, to be assembled into a poster" msgstr "" #: menucheck.cpp:96 pp_menu_layout.cpp:141 msgid "_Carousel" msgstr "Caroussel" #: menucheck.cpp:96 pp_menu_layout.cpp:141 msgid "Fade images into a circular 'carousel' - ideal for CD labels." msgstr "" #: menucheck.cpp:97 pp_menu_layout.cpp:142 msgid "_Manual Size" msgstr "_Taille manuelle" #: menucheck.cpp:97 pp_menu_layout.cpp:142 msgid "Print images on a single sheet, at a specified scale." msgstr "" #: menucheck.cpp:101 pp_menu_image.cpp:337 msgid "_Auto" msgstr "" #: menucheck.cpp:101 pp_menu_image.cpp:337 msgid "Automatically choose rotation to fit the available space." msgstr "" #: menucheck.cpp:102 pp_menu_image.cpp:338 msgid "_None" msgstr "" #: menucheck.cpp:102 pp_menu_image.cpp:338 msgid "No rotation." msgstr "" #: menucheck.cpp:103 pp_menu_image.cpp:339 msgid "_90 Degrees" msgstr "90 degrés" #: menucheck.cpp:103 pp_menu_image.cpp:339 msgid "Rotate 90 degrees clockwise." msgstr "" #: menucheck.cpp:104 pp_menu_image.cpp:340 msgid "_180 Degrees" msgstr "180 degrés" #: menucheck.cpp:104 pp_menu_image.cpp:340 msgid "Rotate 180 degrees." msgstr "180 degrés" #: menucheck.cpp:105 pp_menu_image.cpp:341 msgid "_270 Degrees" msgstr "270 degrés" #: menucheck.cpp:105 pp_menu_image.cpp:341 msgid "Rotate 90 degrees anticlockwise." msgstr "" #: menucheck.cpp:229 #, fuzzy msgid "Dither Algorithm" msgstr "Algotithme :" #: photoprint.cpp:135 msgid "Initializing..." msgstr "Initialisation..." #: photoprint.cpp:144 msgid "Checking .photoprint directory..." msgstr "Vérification du dossier .photoprint..." #: photoprint.cpp:149 msgid "Loading preset..." msgstr "Chargement des réglages..." #: photoprint.cpp:154 msgid "Creating layout..." msgstr "Création de la mise en page..." #: photoprint.cpp:197 msgid "Loading images..." msgstr "Chargement des images..." #: pixbufthumbnail/egg-pixbuf-thumbnail.c:349 #, c-format msgid "Error creating directory `%s': %s" msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:463 #, c-format msgid "Error opening `%s': %s" msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:481 #, c-format msgid "Error reading `%s': file contains no data." msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:505 #, c-format msgid "Error reading `%s': %s" msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:540 #, c-format msgid "" "Failed to load image '%s': reason not known, probably a corrupt image file" msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:613 #, c-format msgid "Error verifying `%s': %s" msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:629 #, c-format msgid "Error reading `%s': file is not a regular file or symbolic link." msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:1071 #, c-format msgid "Error creating temporary thumbnail file for `%s': %s" msgstr "" #: pp_cms.cpp:148 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "will first be converted to the default CMYK profile" msgstr "" #: pp_cms.cpp:154 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "cannot be printed without a default CMYK profile." msgstr "" #: pp_cms.cpp:160 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "cannot be printed without a default RGB and CMYK profile." msgstr "" #: pp_cms.cpp:168 msgid "" "Printer profile is a devicelink - RGB images with embedded profiles\n" "will first be converted to the default RGB profile." msgstr "" #: pp_cms.cpp:174 msgid "" "Printer profile is a devicelink - RGB images with embedded profiles will " "not\n" "print correctly, since there is no default RGB profile." msgstr "" #: pp_cms.cpp:180 msgid "RGB images will print correctly" msgstr "" #: pp_cms.cpp:185 msgid "" "RGB images can be printed but colours depend on the driver\n" "(Colours will be accurate for images that contain an embedded profile)" msgstr "" #: pp_cms.cpp:190 msgid "RGB images can be printed but colours depend on the driver" msgstr "" #: pp_cms.cpp:195 msgid "" "RGB images can only be printed if they have an embedded profile\n" "(Workflow is CMYK and there is no default RGB profile)" msgstr "" #: pp_cms.cpp:200 msgid "" "RGB images cannot be printed\n" "(Workflow is CMYK and there is no printer profile)" msgstr "" #: pp_cms.cpp:215 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "will first be converted to the default RGB profile" msgstr "" #: pp_cms.cpp:221 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "cannot be printed without a default RGB profile." msgstr "" #: pp_cms.cpp:227 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "cannot be printed without a default RGB and CMYK profile." msgstr "" #: pp_cms.cpp:234 msgid "" "Printer profile is a devicelink - CMYK images with embedded profiles\n" "will first be converted to the default CMYK profile." msgstr "" #: pp_cms.cpp:240 msgid "" "Printer profile is a devicelink - CMYK images with embedded profiles will " "not\n" "print correctly since there is no default CMYK profile." msgstr "" #: pp_cms.cpp:246 msgid "CMYK images will print correctly" msgstr "" #: pp_cms.cpp:251 msgid "" "CMYK images can be printed but colours depend on the driver\n" "(Colours will be accurate for images that contain an embedded profile)" msgstr "" #: pp_cms.cpp:256 msgid "CMYK images can be printed but colours depend on the driver" msgstr "" #: pp_cms.cpp:261 msgid "" "CMYK images can only be printed if they have an embedded profile\n" "(Workflow is RGB and there is no default CMYK profile)" msgstr "" #: pp_cms.cpp:266 msgid "" "CMYK images cannot be printed\n" "(Workflow is RGB and there is no printer profile)" msgstr "" #: pp_cms.cpp:276 msgid "Images will be displayed correctly" msgstr "" #: pp_cms.cpp:281 msgid "" "Images will only be displayed correctly if they have an embedded profile" msgstr "" #: pp_cms.cpp:286 msgid "Images will not be displayed correctly" msgstr "" #: pp_cms.cpp:317 msgid "Printer" msgstr "Imprimante" #: pp_cms.cpp:332 msgid "Printer Profile:" msgstr "Profil de l'imprimante :" #: pp_cms.cpp:364 msgid "Colour space:" msgstr "Espace de couleurs :" #: pp_cms.cpp:372 msgid "RGB" msgstr "" #: pp_cms.cpp:372 msgid "Send Red, Green and Blue data to the printer driver" msgstr "" #: pp_cms.cpp:373 msgid "CMYK" msgstr "" #: pp_cms.cpp:373 msgid "Send Cyan, Magenta, Yellow and Black data to the printer driver" msgstr "" #: pp_cms.cpp:383 msgid "Monitor" msgstr "Moniteur" #: pp_cms.cpp:396 msgid "Monitor Profile:" msgstr "Profile du moniteur :" #: pp_cms.cpp:411 msgid "Display mode:" msgstr "Mode d'affichage :" #: pp_cms.cpp:420 msgid "Normal" msgstr "Normal" #: pp_cms.cpp:420 msgid "Displays images' original colours, transformed to suit the monitor" msgstr "" #: pp_cms.cpp:421 msgid "Simulate Print" msgstr "Simuler une impression" #: pp_cms.cpp:421 msgid "" "Simulates how colours will look when printed, imitating the paper's white " "point." msgstr "" #: pp_cms.cpp:422 msgid "Simulate Print, Adapt White" msgstr "Simuler une impression en adaptant les blancs" #: pp_cms.cpp:422 msgid "" "Simulates how colours will look when printed, adapting colours for the " "monitor's white point." msgstr "" #: pp_cms.cpp:432 msgid "Default Image Profiles" msgstr "Profils d'image par défaut" #: pp_cms.cpp:447 msgid "RGB Profile:" msgstr "Profil RVB :" #: pp_cms.cpp:464 msgid "CMYK Profile:" msgstr "Profil CMJN :" #: pp_cms.cpp:666 msgid "Colour Management" msgstr "Gestion des couleurs" #: pp_histogram.cpp:282 msgid "Histogram" msgstr "" #: pp_imagecontrol.cpp:134 #, fuzzy msgid "Effects" msgstr "Appliquer un _masque..." #: pp_imageinfo.cpp:107 msgid "in" msgstr "" #: pp_imageinfo.cpp:110 msgid "pt" msgstr "" #: pp_imageinfo.cpp:115 msgid "cm" msgstr "" #: pp_imageinfo.cpp:120 msgid "mm" msgstr "" #: pp_imageinfo.cpp:168 #, fuzzy msgid "Image Info" msgstr "Image" #: pp_imageinfo.cpp:195 msgid "Filename:" msgstr "" #: pp_imageinfo.cpp:208 msgid "Dimensions:" msgstr "" #: pp_imageinfo.cpp:228 #, fuzzy msgid "Resolution:" msgstr "Résolution (ppp) :" #: pp_imageinfo.cpp:241 #, fuzzy msgid "Profile:" msgstr "Profil RVB :" #: pp_imageinfo.cpp:351 msgid "pixels" msgstr "" #: pp_imageinfo.cpp:380 profilemanager/profilemanager.cpp:831 msgid "Default" msgstr "" #: pp_layout_carousel.cpp:247 pp_layout_carousel.cpp:379 pp_layout_nup.cpp:222 #: pp_layout_poster.cpp:312 pp_layout_poster.cpp:464 pp_layout_single.cpp:233 #: printpreview.cpp:146 msgid "Page:" msgstr "Page :" #: pp_layout_carousel.cpp:275 msgid "Carousel" msgstr "Caroussel" #: pp_layout_carousel.cpp:291 msgid "Segments:" msgstr "Segments :" #: pp_layout_carousel.cpp:306 msgid "Overlap (%):" msgstr "Superposition (%) :" #: pp_layout_carousel.cpp:321 msgid "Starting angle:" msgstr "Angle de départ :" #: pp_layout_carousel.cpp:336 msgid "Inner Radius:" msgstr "Rayon intérieur :" #: pp_layout_poster.cpp:339 #, fuzzy msgid "Poster Layout" msgstr "_Effacer la mise en page" #: pp_layout_poster.cpp:354 #, fuzzy msgid "Size" msgstr "Taille de la page" #: pp_layout_poster.cpp:366 pp_layout_poster.cpp:390 msgid "by" msgstr "" #: pp_layout_poster.cpp:378 #, fuzzy msgid "Tiles" msgstr "Largeur des vignettes :" #: pp_layout_poster.cpp:400 #, fuzzy msgid "Overlap" msgstr "Superposition :" #: pp_layout_poster.cpp:414 pp_pageextent.cpp:262 msgid "H:" msgstr "H :" #: pp_layout_poster.cpp:426 msgid "V:" msgstr "V :" #: pp_layout_single.cpp:261 #, fuzzy msgid "Manual scaling" msgstr "_Taille manuelle" #: pp_layout_single.cpp:277 msgid "H (%):" msgstr "H (%) :" #: pp_layout_single.cpp:291 msgid "V (%):" msgstr "V (%) :" #: pp_mainwindow.cpp:228 msgid "Transferring images..." msgstr "Transfert des images..." #: pp_menu_edit.cpp:37 msgid "_Edit" msgstr "" #: pp_menu_edit.cpp:39 msgid "Select _All" msgstr "_Tout sélectionner" #: pp_menu_edit.cpp:39 msgid "Select all images" msgstr "Il faut d'abord choisir une image !" #: pp_menu_edit.cpp:40 msgid "Select _None" msgstr "Tout _déselectionner" #: pp_menu_edit.cpp:40 msgid "Deselect all images" msgstr "Il faut d'abord choisir une image !" #: pp_menu_edit.cpp:41 msgid "_Cut" msgstr "" #: pp_menu_edit.cpp:41 msgid "Cut the current image to the clipboard" msgstr "" #: pp_menu_edit.cpp:42 msgid "C_opy" msgstr "" #: pp_menu_edit.cpp:42 msgid "Copy the current image to the clipboard" msgstr "" #: pp_menu_edit.cpp:43 msgid "_Paste" msgstr "" #: pp_menu_edit.cpp:43 msgid "Paste the contents of the clipboard as a new image" msgstr "" #: pp_menu_file.cpp:38 msgid "Open preset..." msgstr "Ouvrir les réglages pré-enregistrés..." #: pp_menu_file.cpp:64 msgid "Save preset..." msgstr "Enregistrer les réglages..." #: pp_menu_file.cpp:115 msgid "Generating print data..." msgstr "Génération des données d'impression..." #: pp_menu_file.cpp:141 #, fuzzy msgid "E_xport" msgstr "Exporter au format TIFF..." #: pp_menu_file.cpp:142 #, fuzzy msgid "Export _TIFF..." msgstr "Exporter au format TIFF..." #: pp_menu_file.cpp:143 #, fuzzy msgid "Export _JPEG..." msgstr "Exporter au format TIFF..." #: pp_menu_file.cpp:143 msgid "Export pages as JPEG files" msgstr "" #: pp_menu_shortcuts.cpp:78 msgid "_Shortcuts" msgstr "" #: pp_menu_shortcuts.cpp:131 msgid "Error fetching preset name!" msgstr "" #: pp_menu_image.cpp:64 msgid "Open File" msgstr "Ouvrir un fichier" #: pp_menu_image.cpp:104 msgid "Adding images..." msgstr "Ajout des images..." #: pp_menu_image.cpp:186 msgid "Page is already full!" msgstr "" #: pp_menu_image.cpp:320 msgid "_Duplicate Image" msgstr "" #: pp_menu_image.cpp:320 msgid "Duplicate the currently selected image" msgstr "" #: pp_menu_image.cpp:321 msgid "Duplicate to _Fill Page" msgstr "" #: pp_menu_image.cpp:321 msgid "Fill the page with copies of the currently selected image" msgstr "" #: pp_menu_image.cpp:325 #, fuzzy msgid "Set Image _Border..." msgstr "Choisir une bordure..." #: pp_menu_options.cpp:112 #, fuzzy msgid "_Colour Response Hash..." msgstr "Gestion des couleurs" #: pp_menu_options.cpp:112 msgid "Create a hash for verifying printer settings" msgstr "" #: pp_menu_options.cpp:118 msgid "High-res Previews" msgstr "" #: pp_menu_options.cpp:118 msgid "Render high-resolution previews in the background" msgstr "" #: pp_menu_options.cpp:122 msgid "_Normal Display" msgstr "" #: pp_menu_options.cpp:122 msgid "Display colours with no print simulation" msgstr "" #: pp_menu_options.cpp:123 #, fuzzy msgid "Simulate Prin_t" msgstr "Simuler une impression" #: pp_menu_options.cpp:123 msgid "" "Adjust colours on screen to imitate printed colours, including paper white" msgstr "" #: pp_menu_options.cpp:124 #, fuzzy msgid "Simulate Print, _Adapt White" msgstr "Simuler une impression en adaptant les blancs" #: pp_menu_options.cpp:124 msgid "Adjust colours to imitate printed colours, excluding paper white" msgstr "" #: pp_pageextent.cpp:228 msgid "Page Size and Margins" msgstr "" #: pp_pageextent.cpp:252 msgid "W:" msgstr "" #: pp_pageextent.cpp:275 msgid "Left:" msgstr "Gauche :" #: pp_pageextent.cpp:291 msgid "Right:" msgstr "Droite :" #: pp_pageextent.cpp:304 msgid "Top:" msgstr "Haut :" #: pp_pageextent.cpp:315 msgid "Bottom:" msgstr "Bas :" #: gp_cppsupport/printoutputselector.cpp:114 msgid "Print Queue:" msgstr "Impressions en attente :" #: gp_cppsupport/printoutputselector.cpp:133 msgid "Printer Model:" msgstr "Modèle d'imprimante :" #: gp_cppsupport/printoutputselector.cpp:196 #, c-format msgid "" "The printer queue %s\n" " is not found - please choose another" msgstr "" #: gp_cppsupport/printoutputselector.cpp:197 #, fuzzy msgid "Printer queue not found" msgstr "Configuration de l'impression" #: gp_cppsupport/gprinter.cpp:387 #, fuzzy msgid "Unable to generate print data" msgstr "Génération des données d'impression..." #: pp_scaling.cpp:72 msgid "Algorithm:" msgstr "Algotithme :" #: pp_scaling.cpp:184 #, fuzzy msgid "Scaling" msgstr "Mise à l'échelle..." #: pp_sigcontrol.cpp:187 msgid "Columns:" msgstr "Colonnes :" #: pp_sigcontrol.cpp:201 msgid "Rows:" msgstr "Lignes :" #: pp_sigcontrol.cpp:215 pp_sigcontrol.cpp:229 msgid "Gap:" msgstr "" #: pp_sigcontrol.cpp:254 msgid "Width:" msgstr "Largeur :" #: pp_sigcontrol.cpp:268 msgid "Height:" msgstr "Hauteur :" #: pp_sigcontrol.cpp:280 #, fuzzy msgid "From selected image" msgstr "Il faut d'abord choisir une image !" #: pp_sigcontrol.cpp:338 msgid "Layout" msgstr "Mise en page" #: pp_sigcontrol.cpp:341 msgid "Specify rows/columns" msgstr "" #: pp_sigcontrol.cpp:342 msgid "Specify image dimensions" msgstr "" #: pp_units.cpp:60 msgid "Units:" msgstr "Unités :" #: pp_units.cpp:68 msgid "Points" msgstr "Points" #: pp_units.cpp:71 msgid "Inches" msgstr "Pouces" #: pp_units.cpp:74 msgid "Millimeters" msgstr "Millimètres" #: pp_units.cpp:77 msgid "Centimeters" msgstr "Centimètres" #: pp_units.cpp:151 msgid "Units" msgstr "Unités" #: printpreview.cpp:153 #, fuzzy msgid "Preview resolution:" msgstr "Résolution (ppp) :" #: printpreview.cpp:157 msgid "180 dots per inch" msgstr "" #: printpreview.cpp:158 msgid "240 dots per inch" msgstr "" #: printpreview.cpp:159 msgid "300 dots per inch" msgstr "" #: printpreview.cpp:160 msgid "360 dots per inch" msgstr "" #: printpreview.cpp:165 msgid "" "Click-and-drag to pan around the preview.\n" "Right-click to toggle magnification." msgstr "" #: printpreview.cpp:168 #, fuzzy msgid "Close" msgstr "Caroussel" #: printpreview.cpp:236 #, fuzzy msgid "Drawing preview" msgstr "Impression de l'a_perçu" #: gp_cppsupport/gprintersettings.cpp:413 msgid "" "Can't obtain printer from Gutenprint\n" "Check STP_DATA_PATH and Gutenprint version!" msgstr "" #: profilemanager/lcmswrapper.cpp:553 msgid "Perceptual" msgstr "Perceptuel" #: profilemanager/lcmswrapper.cpp:554 msgid "Relative Colorimetric" msgstr "Colométrie relative" #: profilemanager/lcmswrapper.cpp:555 msgid "Relative Colorimetric with BPC" msgstr "Colométrie relative" #: profilemanager/lcmswrapper.cpp:556 msgid "Saturation" msgstr "Saturation" #: profilemanager/lcmswrapper.cpp:557 msgid "Absolute Colorimetric" msgstr "Colométrie absolue" #: profilemanager/lcmswrapper.cpp:562 msgid "" "Aims for pleasing photographic results by preserving relationships between " "colours, and avoiding clipping of unattainable colours" msgstr "" "Tente d'obtenir des résultats photographiques agréables en maintenant les " "relation entre les couleurs, et en évitant les artefacts liés aux couleurs " "hors de la gamme." #: profilemanager/lcmswrapper.cpp:563 msgid "" "Attempts to preserve the original colours, relative to white-point " "differences." msgstr "" "Tente de préserver les couleurs originales, par rapport aux blancs qui " "peuvent bouger. Écarte les couleurs hors gamme." #: profilemanager/lcmswrapper.cpp:564 #, fuzzy msgid "" "Attempts to preserve the original colours, relative to white-point " "differences. Uses Black Point Compensation to avoid clipping of highlights " "and shadows." msgstr "" "Tente de préserver les couleurs originales, par rapport aux blancs qui " "peuvent bouger. Écarte les couleurs hors gamme." #: profilemanager/lcmswrapper.cpp:565 msgid "" "Attempts to provide brighter, more saturated colours, at the expense of " "colour relationships." msgstr "" "Rendu plus lumineux avec des couleurs plus saturées, aux dépends des " "relations entre les couleurs." #: profilemanager/lcmswrapper.cpp:566 msgid "" "Mimics the original colours (including white point) as closely as possible, " "for side-by-side comparisons. Clips unattainable colours." msgstr "" "Imite au plus près les couleurs originales (y compris les blancs), pour " "permettre par exemple des comparaisons rigoureuses. Écarte les couleurs hors " "gamme." #: profilemanager/profileselector.cpp:39 miscwidgets/imageselector.cpp:478 msgid "Other..." msgstr "Autre..." #: profilemanager/profileselector.cpp:193 msgid "None" msgstr "" #: profilemanager/profileselector.cpp:392 msgid "Please choose a valid ICC profile" msgstr "" #: profilemanager/profilemanager.cpp:207 msgid "Can't do proofing without a valid Printer profile!" msgstr "" #: profilemanager/profilemanager.cpp:212 msgid "Can't do proofing without a valid Monitor profile!" msgstr "" #: profilemanager/profilemanager.cpp:217 msgid "Can't do proofing without a valid Default RGB profile!" msgstr "" #: profilemanager/profilemanager.cpp:497 msgid "No Proof profile provided!" msgstr "" #: profilemanager/profilemanager.cpp:839 #, fuzzy msgid "Default rendering intent" msgstr "Rendu désiré :" #: stpui_widgets/dimension.c:161 #, fuzzy msgid "points" msgstr "Points" #: stpui_widgets/dimension.c:165 #, fuzzy msgid "inches" msgstr "Pouces" #: stpui_widgets/dimension.c:169 #, fuzzy msgid "millimeters" msgstr "Millimètres" #: stpui_widgets/dimension.c:173 #, fuzzy msgid "centimeters" msgstr "Centimètres" #: stpui_widgets/stpui_optionbook.c:117 msgid "General" msgstr "" #: stpui_widgets/stpui_optionbook.c:120 #, fuzzy msgid "Manual Settings" msgstr "_Taille manuelle" #: stpui_widgets/stpui_optionbook.c:123 #, fuzzy msgid "Colour (Basic)" msgstr "Espace de couleurs :" #: stpui_widgets/stpui_optionbook.c:126 msgid "Colour (Fine-tuning)" msgstr "" #: stpui_widgets/stpui_optionbook.c:129 msgid "Colour (Extra)" msgstr "" #: miscwidgets/patheditor.cpp:53 msgid "Select directory..." msgstr "Choisir un dossier..." #: miscwidgets/patheditor.cpp:98 msgid "Path" msgstr "Chemin" #: miscwidgets/patheditor.cpp:112 msgid "Add..." msgstr "Ajouter..." #: miscwidgets/patheditor.cpp:117 msgid "Remove" msgstr "Supprimer" #: miscwidgets/imageselector.cpp:458 msgid "Image" msgstr "Image" #: miscwidgets/progressbar.cpp:52 msgid "Progress..." msgstr "" #: imagesource/imagesource_util.cpp:32 msgid "Automatic" msgstr "" #: imagesource/imagesource_util.cpp:32 msgid "Selects a scaling algorithm based on scale factor" msgstr "" #: imagesource/imagesource_util.cpp:33 msgid "Fast" msgstr "" #: imagesource/imagesource_util.cpp:33 msgid "Very fast scaling with no interpolation" msgstr "" #: imagesource/imagesource_util.cpp:34 msgid "Bilinear" msgstr "" #: imagesource/imagesource_util.cpp:34 msgid "An interpolation filter with mediocre speed and quality" msgstr "" #: imagesource/imagesource_util.cpp:35 msgid "LanczosSinc" msgstr "" #: imagesource/imagesource_util.cpp:35 msgid "Slow but very high quality interpolation filter" msgstr "" #: imagesource/imagesource_util.cpp:37 msgid "Downsample" msgstr "" #: imagesource/imagesource_util.cpp:37 msgid "High quality filter for reductions only" msgstr "" #~ msgid "Effects..." #~ msgstr "Appliquer un _masque..." #~ msgid "Add" #~ msgstr "Ajouter..." #~ msgid "Settings..." #~ msgstr "Définir les chemins..." #, fuzzy #~ msgid "/_File" #~ msgstr "_Fichier" #, fuzzy #~ msgid "/File/_Open Preset..." #~ msgstr "Ouvrir les réglages pré-enregistrés..." #, fuzzy #~ msgid "/File/_Save Preset" #~ msgstr "_Enregistrer les réglages..." #, fuzzy #~ msgid "/File/Save _As..." #~ msgstr "Enregistrer _sous..." #, fuzzy #~ msgid "/File/E_xport TIFF..." #~ msgstr "Exporter au format TIFF..." #, fuzzy #~ msgid "/File/Print Pre_view..." #~ msgstr "Impression de l'a_perçu" #, fuzzy #~ msgid "/File/Print S_etup..." #~ msgstr "Confi_guration de l'impression" #, fuzzy #~ msgid "/File/_Print" #~ msgstr "Imprimante" #, fuzzy #~ msgid "/File/_Quit" #~ msgstr "_Quitter" #, fuzzy #~ msgid "/Edit/Select _All" #~ msgstr "_Tout sélectionner" #, fuzzy #~ msgid "/Edit/Select _None" #~ msgstr "Tout _déselectionner" #, fuzzy #~ msgid "/_Layout" #~ msgstr "_Mise en page" #, fuzzy #~ msgid "/Layout/_Clear Layout" #~ msgstr "_Effacer la mise en page" #, fuzzy #~ msgid "/Layout/Set _Background" #~ msgstr "Définir un _arrière-plan" #, fuzzy #~ msgid "/Layout/sep" #~ msgstr "Mise en page" #, fuzzy #~ msgid "/Image/_Add Image" #~ msgstr "Ajout des images..." #, fuzzy #~ msgid "/Image/_Remove Image" #~ msgstr "_Retirer l'image" #, fuzzy #~ msgid "/Image/sep" #~ msgstr "Image" #, fuzzy #~ msgid "/Image/Allow _Cropping" #~ msgstr "Permettre le re_cadrage" #, fuzzy #~ msgid "/Image/Rotation/_90 degrees" #~ msgstr "180 degrés" #, fuzzy #~ msgid "/Image/Rotation/_180 degrees" #~ msgstr "180 degrés" #, fuzzy #~ msgid "/Image/Set image _mask..." #~ msgstr "Appliquer un _masque..." #, fuzzy #~ msgid "/Image/_Effects..." #~ msgstr "/Image/Appliquer un _masque..." #, fuzzy #~ msgid "/Image/Set colour _profile..." #~ msgstr "Définir un _profil de couleurs..." #, fuzzy #~ msgid "/Layout/_Auto Layout" #~ msgstr "Mise en page _automatique" #, fuzzy #~ msgid "/Layout/_Poster" #~ msgstr "_Poster" #, fuzzy #~ msgid "/Layout/_Carousel" #~ msgstr "Caroussel" #, fuzzy #~ msgid "/Layout/_Manual Size" #~ msgstr "_Taille manuelle" #, fuzzy #~ msgid "/_Options" #~ msgstr "_Options" #, fuzzy #~ msgid "/Options/_Paths..." #~ msgstr "Définir les chemins..." #, fuzzy #~ msgid "/Options/Colour _Management..." #~ msgstr "Gestion des couleurs" #, fuzzy #~ msgid "/Options/_Units..." #~ msgstr "Unités" #, fuzzy #~ msgid "/Options/_Scaling..." #~ msgstr "Mise à l'échelle..." #, fuzzy #~ msgid "/_Help" #~ msgstr "_Aide" #, fuzzy #~ msgid "/_Remove Image" #~ msgstr "_Retirer l'image" #, fuzzy #~ msgid "/Allow _Cropping" #~ msgstr "Permettre le re_cadrage" #, fuzzy #~ msgid "/Rotation/Auto" #~ msgstr "_Rotation" #, fuzzy #~ msgid "/Rotation/None" #~ msgstr "_Rotation" #, fuzzy #~ msgid "/Rotation/90 degrees" #~ msgstr "180 degrés" #, fuzzy #~ msgid "/Rotation/180 degrees" #~ msgstr "180 degrés" #, fuzzy #~ msgid "/Rotation/270 degrees" #~ msgstr "180 degrés" #, fuzzy #~ msgid "/Set image mask..." #~ msgstr "Appliquer un _masque..." #, fuzzy #~ msgid "/_Effects..." #~ msgstr "Appliquer un _masque..." #, fuzzy #~ msgid "/Set colour _profile..." #~ msgstr "Définir un _profil de couleurs..." #~ msgid "Poster Size:" #~ msgstr "Taille de poster :" #~ msgid "Tiles high:" #~ msgstr "Hauteur des vignettes :" #~ msgid "Scale" #~ msgstr "Échelle" #~ msgid "Margins" #~ msgstr "Marges" #~ msgid "Horizontal:" #~ msgstr "Horizontal :" #~ msgid "Vertical:" #~ msgstr "Vertical :" #~ msgid "" #~ "Attempts to preserve the original colours, relative to white-point " #~ "differences. Clips unattainable colours." #~ msgstr "" #~ "Tente de préserver les couleurs originales, par rapport aux blancs qui " #~ "peuvent bouger. Écarte les couleurs hors gamme." photoprint-0.4.2-pre2/po/de.po0000644000175000017500000010231611400237673013066 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Alastair M. Robinson # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: photoprint 0.4.1-pre3\n" "Report-Msgid-Bugs-To: blackfive@fakenhamweb.co.uk\n" "POT-Creation-Date: 2010-05-29 17:24+0100\n" "PO-Revision-Date: 2009-10-23 08:42+0200\n" "Last-Translator: Heinrich Schwietering \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #: dialogs.cpp:75 msgid "Colour Response Hash" msgstr "Farbwert-Prüfsumme:" #: dialogs.cpp:96 msgid "" "This \"hash\" value is derived from the printer driver's output,\n" "and can be used to verify that no changes have occurred which\n" "might invalidate a colour profile for the printer" msgstr "" "Dieser \"Prüfsummenwert\" wird aus der Drucker-Ausgabe generiert\n" "und kann dazu genutzt werden, sicherzustellen, dass keine Veränderungen\n" "eingetreten sind, die eine Farbprofil für den Drucker verfälschen könnten" #: dialogs.cpp:108 msgid "Current hash:" msgstr "Derzeitige Prüfsumme:" #: dialogs.cpp:112 msgid "Stored in preset:" msgstr "Speichere in Einstellung:" #: dialogs.cpp:118 msgid "No hash stored yet" msgstr "Noch keine Prüfsumme gespeichert" #: dialogs.cpp:127 msgid "" "Calculating hash of printer response\n" "with current driver settings" msgstr "" "Berechnung der Prüfsumme aus den Druckerwerten\n" "mit den derzeitigen Treiber-Einstellungen" #: dialogs.cpp:132 msgid "Store in preset" msgstr "Speichere in Einstellung" #: dialogs.cpp:156 msgid "" "MATCH - No changes in driver\n" "or printer settings detected" msgstr "" "MATCH - Keine Veränderung in den\n" "Treiber- oder Druckereinstellungen entdeckt" #: dialogs.cpp:162 msgid "" "This hash can be used to detect changes\n" "in printer settings or driver versions\n" "that might invalidate colour profiles" msgstr "" "Diese Prüfsumme kann genutzt werden, um Veränderungen\n" "in den Drucker- oder Treiberversionen zu entdecken,\n" "die Farbeprofile verfälschen könnten" #: dialogs.cpp:164 msgid "" "MISMATCH - change detected in printer response!\n" "Printer's colour profile might no longer be accurate." msgstr "" "MISMATCH - Veränderung im Druckerwert!\n" "Das Farbprofil könnte nicht mehr exakt sein." #: dialogs.cpp:287 msgid "Printer Setup" msgstr "Druckereinrichtung" #: dialogs.cpp:301 msgid "Output" msgstr "Ausgabe" #: dialogs.cpp:338 msgid "About" msgstr "Über" #: dialogs.cpp:349 msgid "PhotoPrint " msgstr "PhotoPrint" #: dialogs.cpp:388 msgid "Set paths..." msgstr "Pfade definieren..." #: dialogs.cpp:413 msgid "ICC Profiles" msgstr "ICC-Profile" #: dialogs.cpp:445 msgid "Borders" msgstr "Ränder" #: dialogs.cpp:476 msgid "Backgrounds" msgstr "Hintergrund" #: dialogs.cpp:504 msgid "Select a border..." msgstr "Wähle einen Rand..." #: dialogs.cpp:551 msgid "Export TIFF..." msgstr "Als TIFF exportieren..." #: dialogs.cpp:577 dialogs.cpp:776 msgid "Page range:" msgstr "Seitenmaß:" #: dialogs.cpp:590 dialogs.cpp:786 msgid "Resolution (dpi):" msgstr "Auflösung (dpi):" #: dialogs.cpp:598 msgid "Save as 16-bit:" msgstr "In 16-bit speichern:" #: dialogs.cpp:617 dialogs.cpp:821 msgid "Output Profile:" msgstr "Ausgabeprofil:" #: dialogs.cpp:677 dialogs.cpp:914 msgid "Please provide a filename." msgstr "Bitte einen Dateinamen angeben." #: dialogs.cpp:708 dialogs.cpp:892 msgid "Exporting..." msgstr "Exportiere..." #: dialogs.cpp:747 msgid "Export JPEG..." msgstr "Exportiere JPEG..." #: dialogs.cpp:805 msgid "JPEG Quality:" msgstr "JPEG-Qualität:" #: dialogs.cpp:931 msgid "Select a background..." msgstr "Wähle einen Hintergrund..." #: dialogs.cpp:1023 pp_menu_image.cpp:276 msgid "Please select an image first!" msgstr "Bitte erst ein Bild auswählen!" #: dialogs.cpp:1054 msgid "Set Custom Profile..." msgstr "Eigenes Profil festlegen..." #: dialogs.cpp:1066 msgid "Before:" msgstr "Vorher:" #: dialogs.cpp:1070 msgid "After:" msgstr "Nachher:" #: dialogs.cpp:1084 msgid "" "Can't show a colour managed\n" "preview unless you choose\n" "a Default RGB or Monitor profile\n" "in the Options->Colour Management\n" "dialog!" msgstr "" "Eine Vorschau mit Farbmanagment\n" "kann nur angezeigt werden, wenn\n" "im Dialog \"Optionen->Farbmanagement\"\n" "ein Standard-RGB- oder Bildschirm-Profil\n" "ausgewählt ist!" #: dialogs.cpp:1109 msgid "" "Warning: Image already has an embedded profile\n" "Assigning a new one will over-ride it!" msgstr "" "Warnung: Das Bild hat bereits ein integriertes Profil\n" "Eine Neuzuweisung wird dieses überschreiben!" #: dialogs.cpp:1126 msgid "Assign Profile:" msgstr "Profil zuweisen:" #: dialogs.cpp:1134 pp_cms.cpp:349 msgid "Rendering intent:" msgstr "Rendering-Anweisung:" #: effects/ppeffect_temperature.cpp:28 msgid "Warm/Cool" msgstr "Warm/Kalt" #: effects/effectselector.cpp:222 msgid "Active" msgstr "Aktiviert" #: effects/effectselector.cpp:231 msgid "Icon" msgstr "Icon" #: effects/effectselector.cpp:243 msgid "Name" msgstr "Name" #: effects/ppeffect_desaturate.cpp:25 msgid "Desaturate" msgstr "Entsättigen" #: effects/effectwidget_tempchange.cpp:57 #, c-format msgid "%d degrees K" msgstr "%d Grad in K" #: effects/ppeffect_unsharpmask.cpp:25 msgid "Sharpen" msgstr "Schärfen" #: effects/effectwidget_unsharpmask.cpp:66 #, c-format msgid "Radius: %1.2f" msgstr "Radius: %1.2f" #: effects/effectwidget_unsharpmask.cpp:72 #, c-format msgid "Amount: %1.2f" msgstr "Stärke: %1.2f" #: menucheck.cpp:23 pp_menu_file.cpp:135 msgid "_File" msgstr "_Datei" #: menucheck.cpp:25 pp_menu_file.cpp:137 msgid "_Open Preset..." msgstr "V_orlage öffnen" #: menucheck.cpp:25 pp_menu_file.cpp:137 msgid "Open a preset" msgstr "Öffne eine Vorlage" #: menucheck.cpp:26 pp_menu_file.cpp:138 msgid "_Save Preset" msgstr "_Speichere Vorlage" #: menucheck.cpp:26 pp_menu_file.cpp:138 msgid "Save a preset" msgstr "Speichere eine Vorlage" #: menucheck.cpp:27 pp_menu_file.cpp:139 msgid "Save _As..." msgstr "Speichere _als" #: menucheck.cpp:27 pp_menu_file.cpp:139 msgid "Save preset with a new filename" msgstr "Speichere Vorlage unter neuem Dateinamen" #: menucheck.cpp:28 pp_menu_file.cpp:140 msgid "Save _Default" msgstr "Speichere Standar_d-Vorlage" #: menucheck.cpp:28 pp_menu_file.cpp:140 msgid "Save preset as the default" msgstr "Speichere Vorlage als Standard" #: menucheck.cpp:29 msgid "E_xport TIFF..." msgstr "Als TIFF e_xportieren" #: menucheck.cpp:29 pp_menu_file.cpp:142 msgid "Export pages as TIFF files" msgstr "Exportiere Seiten als TIFF-Dateien" #: menucheck.cpp:30 pp_menu_file.cpp:144 msgid "Print Pre_view..." msgstr "Druck_vorschau" #: menucheck.cpp:30 pp_menu_file.cpp:144 msgid "Preview how the printed page will look" msgstr "Vorschau auf das Druckergebnis" #: menucheck.cpp:31 pp_menu_file.cpp:145 msgid "Print S_etup..." msgstr "Drucker-Einst_ellung..." #: menucheck.cpp:31 pp_menu_file.cpp:145 msgid "Set printer driver and options" msgstr "Richte Drucker und Optionen ein" #: menucheck.cpp:32 pp_menu_file.cpp:146 msgid "_Print" msgstr "_Drucke" #: menucheck.cpp:32 pp_menu_file.cpp:146 msgid "Print pages" msgstr "Drucke die Seiten" #: menucheck.cpp:33 pp_menu_file.cpp:147 msgid "_Quit" msgstr "_Beenden" #: menucheck.cpp:33 pp_menu_file.cpp:147 msgid "Exit PhotoPrint" msgstr "Beende PhotoPrint" #: menucheck.cpp:62 pp_menu_layout.cpp:131 msgid "_Layout" msgstr "_Layout" #: menucheck.cpp:63 pp_menu_image.cpp:316 msgid "_Image" msgstr "_Bild" #: menucheck.cpp:64 pp_menu_options.cpp:108 msgid "_Options" msgstr "_Optionen" #: menucheck.cpp:65 pp_menu_help.cpp:29 msgid "_Help" msgstr "_Hilfe" #: menucheck.cpp:67 pp_menu_layout.cpp:133 msgid "_Clear Layout" msgstr "L_eere Layout" #: menucheck.cpp:67 pp_menu_layout.cpp:133 msgid "Remove all images from the layout" msgstr "Entferne alle Bilder aus dem Layout" #: menucheck.cpp:68 pp_menu_layout.cpp:134 msgid "Set _Background" msgstr "Richte _Hintergrund ein" #: menucheck.cpp:68 pp_menu_layout.cpp:134 msgid "Set a background image for the current layout" msgstr "Richte einen Hintergrund für das derzeitige Layout ein" #: menucheck.cpp:70 pp_menu_image.cpp:318 msgid "_Add Image..." msgstr "Bild hin_zufügen" #: menucheck.cpp:70 pp_menu_image.cpp:318 msgid "Add images to the current layout" msgstr "Füge dem Layout ein Bild hinzu" #: menucheck.cpp:71 pp_menu_image.cpp:319 msgid "_Remove Image" msgstr "Entfe_rne Bild" #: menucheck.cpp:71 pp_menu_image.cpp:319 msgid "Remove selected images from the layout" msgstr "Entferne die ausgewählten Bilder aus dem Layout" #: menucheck.cpp:73 pp_menu_image.cpp:323 msgid "_Rotation" msgstr "_Drehung" #: menucheck.cpp:75 msgid "Set Image _Mask..." msgstr "Richte Bilderrah_men ein" #: menucheck.cpp:75 pp_menu_image.cpp:325 msgid "Set a border mask for the selected image" msgstr "Richte einen Bilderrahmen für das ausgewählte Bild ein" #: menucheck.cpp:76 msgid "_Effects..." msgstr "_Effekte..." #: menucheck.cpp:76 msgid "Apply effects to the selected image" msgstr "Wende Effekte auf das ausgewählte Bild an" #: menucheck.cpp:77 pp_menu_image.cpp:327 msgid "Set Colour _Profile..." msgstr "Richte Farb-_Profile ein..." #: menucheck.cpp:77 pp_menu_image.cpp:327 msgid "Assign an ICC profile or custom rendering intent to the image" msgstr "Weise dem Bild ein ICC-Profil oder eigene Rendering-Anweisung zu" #: menucheck.cpp:79 pp_menu_options.cpp:110 msgid "_Paths..." msgstr "_Pfade..." #: menucheck.cpp:79 pp_menu_options.cpp:110 msgid "Set search paths for ICC profiles, borders, etc." msgstr "Richte Suchpfade für ICC-Profile, Bilderrahmen usw. ein" #: menucheck.cpp:80 pp_menu_options.cpp:111 msgid "_Colour Management..." msgstr "_Farbmanagement..." #: menucheck.cpp:80 pp_menu_options.cpp:111 msgid "Set colour management options" msgstr "Richte Farbmanagement-Optionen ein" #: menucheck.cpp:81 pp_menu_options.cpp:113 msgid "_Units..." msgstr "_Einheiten..." #: menucheck.cpp:81 pp_menu_options.cpp:113 msgid "Select the units used throughout PhotoPrint" msgstr "Wähle diese Einheit durchgängig für PhotoPrint" #: menucheck.cpp:82 pp_menu_options.cpp:114 msgid "_Scaling..." msgstr "_Skalierung..." #: menucheck.cpp:82 pp_menu_options.cpp:114 msgid "Select the preferred scaling method." msgstr "Wähle die gewünschte Skalierungs-Methode." #: menucheck.cpp:84 pp_menu_help.cpp:31 msgid "About..." msgstr "Über..." #: menucheck.cpp:84 pp_menu_help.cpp:31 msgid "Some information about PhotoPrint" msgstr "Einige Informationen zu PhotoPrint" #: menucheck.cpp:89 pp_menu_image.cpp:332 msgid "Allow _Cropping" msgstr "Ermögliche Zus_chnitt" #: menucheck.cpp:89 pp_menu_image.cpp:332 msgid "Crop the selected images to fill the available space" msgstr "" "Schneide das ausgewählte Bild so zu, dass der verfügbare Platz ausgefüllt " "wird" #: menucheck.cpp:94 pp_menu_layout.cpp:139 msgid "_Auto Layout" msgstr "_Automatisches Layout" #: menucheck.cpp:94 pp_menu_layout.cpp:139 msgid "Automatically place images in a grid" msgstr "Füge Bilder automatisch in ein Raster ein" #: menucheck.cpp:95 pp_menu_layout.cpp:140 msgid "_Poster" msgstr "_Poster" #: menucheck.cpp:95 pp_menu_layout.cpp:140 msgid "Print an image in multiple pages, to be assembled into a poster" msgstr "" "Drucke ein Bild über meherer Seiten aus, um daraus ein Poster zusammenzufügen" #: menucheck.cpp:96 pp_menu_layout.cpp:141 msgid "_Carousel" msgstr "_Karussell" #: menucheck.cpp:96 pp_menu_layout.cpp:141 msgid "Fade images into a circular 'carousel' - ideal for CD labels." msgstr "Überblende Bilder in einem runden 'Karussell' - ideal zum CD-Druck" #: menucheck.cpp:97 pp_menu_layout.cpp:142 msgid "_Manual Size" msgstr "_Manuelle Größeneinstellung" #: menucheck.cpp:97 pp_menu_layout.cpp:142 msgid "Print images on a single sheet, at a specified scale." msgstr "Drucke Bilder mit angegebener Skalierung auf einem einzelnen Blatt." #: menucheck.cpp:101 pp_menu_image.cpp:337 msgid "_Auto" msgstr "_Auto" #: menucheck.cpp:101 pp_menu_image.cpp:337 msgid "Automatically choose rotation to fit the available space." msgstr "Wähle Drehung automatisch, um verfügbaren Platz zu füllen" #: menucheck.cpp:102 pp_menu_image.cpp:338 msgid "_None" msgstr "Kei_ne" #: menucheck.cpp:102 pp_menu_image.cpp:338 msgid "No rotation." msgstr "Keine Drehung." #: menucheck.cpp:103 pp_menu_image.cpp:339 msgid "_90 Degrees" msgstr "_90 Grad" #: menucheck.cpp:103 pp_menu_image.cpp:339 msgid "Rotate 90 degrees clockwise." msgstr "Drehe um 90 Grad im Uhrzeigersinn." #: menucheck.cpp:104 pp_menu_image.cpp:340 msgid "_180 Degrees" msgstr "_180 Grad" #: menucheck.cpp:104 pp_menu_image.cpp:340 msgid "Rotate 180 degrees." msgstr "Drehe um 180 Grad." #: menucheck.cpp:105 pp_menu_image.cpp:341 msgid "_270 Degrees" msgstr "_270 Grad" #: menucheck.cpp:105 pp_menu_image.cpp:341 msgid "Rotate 90 degrees anticlockwise." msgstr "Drehe um 90 Grad gegen den Uhrzeigersinn." #: menucheck.cpp:229 msgid "Dither Algorithm" msgstr "Dither-Algorithmus" #: photoprint.cpp:135 msgid "Initializing..." msgstr "Initialisierung..." #: photoprint.cpp:144 msgid "Checking .photoprint directory..." msgstr "Überprüfe .photoprint-Ordner..." #: photoprint.cpp:149 msgid "Loading preset..." msgstr "Lade Vorlage..." #: photoprint.cpp:154 msgid "Creating layout..." msgstr "Erstelle Layout..." #: photoprint.cpp:197 msgid "Loading images..." msgstr "Lade Bilder..." #: pixbufthumbnail/egg-pixbuf-thumbnail.c:349 #, c-format msgid "Error creating directory `%s': %s" msgstr "Fehler bein Erstellen des Ordners `%s': %s" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:463 #, c-format msgid "Error opening `%s': %s" msgstr "Fehler beim Öffnen von `%s': %s" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:481 #, c-format msgid "Error reading `%s': file contains no data." msgstr "Fehler beim Lesen von `%s': Datei enthält keine Daten" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:505 #, c-format msgid "Error reading `%s': %s" msgstr "Fehler beim Lesen von `%s': %s" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:540 #, c-format msgid "" "Failed to load image '%s': reason not known, probably a corrupt image file" msgstr "" "Laden des Bildes '%s' nicht möglich: Grund unbekannt, ggf. defekte Bilddatei" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:613 #, c-format msgid "Error verifying `%s': %s" msgstr "Fehler beim Verifizieren von `%s': %s" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:629 #, c-format msgid "Error reading `%s': file is not a regular file or symbolic link." msgstr "" "Fehler beim Lesen von `%s': Datei ist keine reguläre Datei oder symbolische " "Verknüpfung." #: pixbufthumbnail/egg-pixbuf-thumbnail.c:1071 #, c-format msgid "Error creating temporary thumbnail file for `%s': %s" msgstr "Fehler beim Erstellen der temporären Vorschau für `%s': %s" #: pp_cms.cpp:148 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "will first be converted to the default CMYK profile" msgstr "" #: pp_cms.cpp:154 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "cannot be printed without a default CMYK profile." msgstr "" #: pp_cms.cpp:160 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "cannot be printed without a default RGB and CMYK profile." msgstr "" #: pp_cms.cpp:168 msgid "" "Printer profile is a devicelink - RGB images with embedded profiles\n" "will first be converted to the default RGB profile." msgstr "" #: pp_cms.cpp:174 msgid "" "Printer profile is a devicelink - RGB images with embedded profiles will " "not\n" "print correctly, since there is no default RGB profile." msgstr "" #: pp_cms.cpp:180 msgid "RGB images will print correctly" msgstr "" #: pp_cms.cpp:185 msgid "" "RGB images can be printed but colours depend on the driver\n" "(Colours will be accurate for images that contain an embedded profile)" msgstr "" #: pp_cms.cpp:190 msgid "RGB images can be printed but colours depend on the driver" msgstr "" #: pp_cms.cpp:195 msgid "" "RGB images can only be printed if they have an embedded profile\n" "(Workflow is CMYK and there is no default RGB profile)" msgstr "" #: pp_cms.cpp:200 msgid "" "RGB images cannot be printed\n" "(Workflow is CMYK and there is no printer profile)" msgstr "" #: pp_cms.cpp:215 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "will first be converted to the default RGB profile" msgstr "" #: pp_cms.cpp:221 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "cannot be printed without a default RGB profile." msgstr "" #: pp_cms.cpp:227 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "cannot be printed without a default RGB and CMYK profile." msgstr "" #: pp_cms.cpp:234 msgid "" "Printer profile is a devicelink - CMYK images with embedded profiles\n" "will first be converted to the default CMYK profile." msgstr "" #: pp_cms.cpp:240 msgid "" "Printer profile is a devicelink - CMYK images with embedded profiles will " "not\n" "print correctly since there is no default CMYK profile." msgstr "" #: pp_cms.cpp:246 msgid "CMYK images will print correctly" msgstr "" #: pp_cms.cpp:251 msgid "" "CMYK images can be printed but colours depend on the driver\n" "(Colours will be accurate for images that contain an embedded profile)" msgstr "" #: pp_cms.cpp:256 msgid "CMYK images can be printed but colours depend on the driver" msgstr "" #: pp_cms.cpp:261 msgid "" "CMYK images can only be printed if they have an embedded profile\n" "(Workflow is RGB and there is no default CMYK profile)" msgstr "" #: pp_cms.cpp:266 msgid "" "CMYK images cannot be printed\n" "(Workflow is RGB and there is no printer profile)" msgstr "" #: pp_cms.cpp:276 msgid "Images will be displayed correctly" msgstr "" #: pp_cms.cpp:281 msgid "" "Images will only be displayed correctly if they have an embedded profile" msgstr "" #: pp_cms.cpp:286 msgid "Images will not be displayed correctly" msgstr "" #: pp_cms.cpp:317 msgid "Printer" msgstr "Drucker" #: pp_cms.cpp:332 msgid "Printer Profile:" msgstr "Druckerprofil:" #: pp_cms.cpp:364 msgid "Colour space:" msgstr "Farbraum:" #: pp_cms.cpp:372 msgid "RGB" msgstr "RGB" #: pp_cms.cpp:372 msgid "Send Red, Green and Blue data to the printer driver" msgstr "Sende Rot-, Grün- und Blau-Daten an den Druckertreiber" #: pp_cms.cpp:373 msgid "CMYK" msgstr "CMYK" #: pp_cms.cpp:373 msgid "Send Cyan, Magenta, Yellow and Black data to the printer driver" msgstr "Sende Zyan-, Magenta-, Gelb- und Schwarz-Daten an den Druckertreiber" #: pp_cms.cpp:383 msgid "Monitor" msgstr "Bildschirm" #: pp_cms.cpp:396 msgid "Monitor Profile:" msgstr "Bildschirmprofil:" #: pp_cms.cpp:411 msgid "Display mode:" msgstr "Darstellungsmodus:" #: pp_cms.cpp:420 msgid "Normal" msgstr "Normal" #: pp_cms.cpp:420 msgid "Displays images' original colours, transformed to suit the monitor" msgstr "Stelle die Originalfarben des Bildes an den Bildschirm angepasst dar" #: pp_cms.cpp:421 msgid "Simulate Print" msgstr "Simuliere Ausdruck" #: pp_cms.cpp:421 msgid "" "Simulates how colours will look when printed, imitating the paper's white " "point." msgstr "Simuliere die Farben im Ausdruck, angepasst an das Weiß des Papiers." #: pp_cms.cpp:422 msgid "Simulate Print, Adapt White" msgstr "Simuliere Ausdruck mit Weißabgleich" #: pp_cms.cpp:422 msgid "" "Simulates how colours will look when printed, adapting colours for the " "monitor's white point." msgstr "" "Simuliere die Farben im Ausdruck, angepasst an den Weißpunkt des Bildschirms." #: pp_cms.cpp:432 msgid "Default Image Profiles" msgstr "Standard Bild-Profile" #: pp_cms.cpp:447 msgid "RGB Profile:" msgstr "RGB-Profil:" #: pp_cms.cpp:464 msgid "CMYK Profile:" msgstr "CMYK-Profil:" #: pp_cms.cpp:666 msgid "Colour Management" msgstr "Farbmanagement" #: pp_histogram.cpp:282 msgid "Histogram" msgstr "Histogramm" #: pp_imagecontrol.cpp:134 msgid "Effects" msgstr "Effekte" #: pp_imageinfo.cpp:107 msgid "in" msgstr "Zoll" #: pp_imageinfo.cpp:110 msgid "pt" msgstr "Punkt" #: pp_imageinfo.cpp:115 msgid "cm" msgstr "cm" #: pp_imageinfo.cpp:120 msgid "mm" msgstr "mm" #: pp_imageinfo.cpp:168 msgid "Image Info" msgstr "Bild-Info" #: pp_imageinfo.cpp:195 msgid "Filename:" msgstr "Dateiname:" #: pp_imageinfo.cpp:208 msgid "Dimensions:" msgstr "Ausmaß:" #: pp_imageinfo.cpp:228 msgid "Resolution:" msgstr "Auflösung:" #: pp_imageinfo.cpp:241 msgid "Profile:" msgstr "Profil:" #: pp_imageinfo.cpp:351 msgid "pixels" msgstr "Pixel" #: pp_imageinfo.cpp:380 profilemanager/profilemanager.cpp:831 msgid "Default" msgstr "Standard" #: pp_layout_carousel.cpp:247 pp_layout_carousel.cpp:379 pp_layout_nup.cpp:222 #: pp_layout_poster.cpp:312 pp_layout_poster.cpp:464 pp_layout_single.cpp:233 #: printpreview.cpp:146 msgid "Page:" msgstr "Seite:" #: pp_layout_carousel.cpp:275 msgid "Carousel" msgstr "Karussell" #: pp_layout_carousel.cpp:291 msgid "Segments:" msgstr "Segmente:" #: pp_layout_carousel.cpp:306 msgid "Overlap (%):" msgstr "Überlappung (%):" #: pp_layout_carousel.cpp:321 msgid "Starting angle:" msgstr "Ausgangswinkel:" #: pp_layout_carousel.cpp:336 msgid "Inner Radius:" msgstr "Innendurchmesser:" #: pp_layout_poster.cpp:339 msgid "Poster Layout" msgstr "Poster-Layout" #: pp_layout_poster.cpp:354 msgid "Size" msgstr "Größe" #: pp_layout_poster.cpp:366 pp_layout_poster.cpp:390 msgid "by" msgstr "mal" #: pp_layout_poster.cpp:378 msgid "Tiles" msgstr "Einzelteile" #: pp_layout_poster.cpp:400 msgid "Overlap" msgstr "Überlappung" #: pp_layout_poster.cpp:414 pp_pageextent.cpp:262 msgid "H:" msgstr "Waagerecht:" #: pp_layout_poster.cpp:426 msgid "V:" msgstr "Senkrecht:" #: pp_layout_single.cpp:261 msgid "Manual scaling" msgstr "Manuelle Skalierung" #: pp_layout_single.cpp:277 msgid "H (%):" msgstr "waagerecht (%):" #: pp_layout_single.cpp:291 msgid "V (%):" msgstr "senkrecht (%):" #: pp_mainwindow.cpp:228 msgid "Transferring images..." msgstr "Übertrage Bilder..." #: pp_menu_edit.cpp:37 msgid "_Edit" msgstr "_Bearbeiten" #: pp_menu_edit.cpp:39 msgid "Select _All" msgstr "Wähle _alle aus" #: pp_menu_edit.cpp:39 msgid "Select all images" msgstr "Wähle alle Bilder aus" #: pp_menu_edit.cpp:40 msgid "Select _None" msgstr "Auswahl aufhebe_n" #: pp_menu_edit.cpp:40 msgid "Deselect all images" msgstr "Hebe gesamte Auswahl auf" #: pp_menu_edit.cpp:41 msgid "_Cut" msgstr "_Ausschneiden" #: pp_menu_edit.cpp:41 msgid "Cut the current image to the clipboard" msgstr "Stelle das derzeitige Bild in die Zwischenablage" #: pp_menu_edit.cpp:42 msgid "C_opy" msgstr "K_opieren" #: pp_menu_edit.cpp:42 msgid "Copy the current image to the clipboard" msgstr "Kopiere das derzeitige Bild in die Zwischenablage" #: pp_menu_edit.cpp:43 msgid "_Paste" msgstr "_Einfügen" #: pp_menu_edit.cpp:43 msgid "Paste the contents of the clipboard as a new image" msgstr "Füge den Inhalt der Zwischenablage als neues Bild ein" #: pp_menu_file.cpp:38 msgid "Open preset..." msgstr "Öffne Volage..." #: pp_menu_file.cpp:64 msgid "Save preset..." msgstr "Speichere Vorlage..." #: pp_menu_file.cpp:115 msgid "Generating print data..." msgstr "Bereite Druckdaten auf..." #: pp_menu_file.cpp:141 msgid "E_xport" msgstr "E_xportiere" #: pp_menu_file.cpp:142 msgid "Export _TIFF..." msgstr "Exportiere als _TIFF..." #: pp_menu_file.cpp:143 msgid "Export _JPEG..." msgstr "Exportiere als _JPEG..." #: pp_menu_file.cpp:143 msgid "Export pages as JPEG files" msgstr "Exportiere Seiten als JPEG-Dateien" #: pp_menu_shortcuts.cpp:78 msgid "_Shortcuts" msgstr "_Kürzel" #: pp_menu_shortcuts.cpp:131 msgid "Error fetching preset name!" msgstr "" #: pp_menu_image.cpp:64 msgid "Open File" msgstr "Öffne Datei" #: pp_menu_image.cpp:104 msgid "Adding images..." msgstr "Füge Bilder hinzu..." #: pp_menu_image.cpp:186 msgid "Page is already full!" msgstr "Seite ist breits gefüllt!" #: pp_menu_image.cpp:320 msgid "_Duplicate Image" msgstr "_Dupliziere Bild" #: pp_menu_image.cpp:320 msgid "Duplicate the currently selected image" msgstr "Dupliziere das derzeit ausgewählte Bild" #: pp_menu_image.cpp:321 msgid "Duplicate to _Fill Page" msgstr "Vervielfältige, bis Seite ge_füllt ist" #: pp_menu_image.cpp:321 msgid "Fill the page with copies of the currently selected image" msgstr "Fülle die Seite mit Kopien des derzeit ausgewählten Bildes" #: pp_menu_image.cpp:325 msgid "Set Image _Border..." msgstr "Richte _Bilderrahmen ein..." #: pp_menu_options.cpp:112 msgid "_Colour Response Hash..." msgstr "_Farbwert-Prüfsumme..." #: pp_menu_options.cpp:112 msgid "Create a hash for verifying printer settings" msgstr "Erstelle eine Prüfsumme, um die Drucker-Einstellungen zu verifizieren" #: pp_menu_options.cpp:118 msgid "High-res Previews" msgstr "Hochauflösende Vorschau" #: pp_menu_options.cpp:118 msgid "Render high-resolution previews in the background" msgstr "Bearbeite hochauflösende Vorschauen im Hintergrund" #: pp_menu_options.cpp:122 msgid "_Normal Display" msgstr "_Normale Darstellung" #: pp_menu_options.cpp:122 msgid "Display colours with no print simulation" msgstr "Stelle Farben ohne Drucksimulation dar" #: pp_menu_options.cpp:123 msgid "Simulate Prin_t" msgstr "Simuliere Aus_druck" #: pp_menu_options.cpp:123 msgid "" "Adjust colours on screen to imitate printed colours, including paper white" msgstr "" "Passe Bildschirmfarben unter Einbeziehung der Papierweiß an, um Ausdruck zu " "simulieren" #: pp_menu_options.cpp:124 msgid "Simulate Print, _Adapt White" msgstr "Simuliere Ausdruck, Weiß_abgleich" #: pp_menu_options.cpp:124 msgid "Adjust colours to imitate printed colours, excluding paper white" msgstr "" "Passe Bildschirmfarben ohne Einbeziehung der Papierweiß an, um Ausdruck zu " "simulieren" #: pp_pageextent.cpp:228 msgid "Page Size and Margins" msgstr "Seitengröße und -ränder" #: pp_pageextent.cpp:252 msgid "W:" msgstr "Breite:" #: pp_pageextent.cpp:275 msgid "Left:" msgstr "Links:" #: pp_pageextent.cpp:291 msgid "Right:" msgstr "Rechts:" #: pp_pageextent.cpp:304 msgid "Top:" msgstr "Oben:" #: pp_pageextent.cpp:315 msgid "Bottom:" msgstr "Unten:" #: gp_cppsupport/printoutputselector.cpp:114 msgid "Print Queue:" msgstr "Druckerwarteschlange:" #: gp_cppsupport/printoutputselector.cpp:133 msgid "Printer Model:" msgstr "Druckermodell:" #: gp_cppsupport/printoutputselector.cpp:196 #, c-format msgid "" "The printer queue %s\n" " is not found - please choose another" msgstr "" "Druckerwarteschleife %s nicht auffindbar - \n" "Bitte eine andere auswählen" #: gp_cppsupport/printoutputselector.cpp:197 msgid "Printer queue not found" msgstr "Druckerwarteschleife nicht auffindbar" #: gp_cppsupport/gprinter.cpp:387 msgid "Unable to generate print data" msgstr "Erstellen der Druckdaten nicht möglich" #: pp_scaling.cpp:72 msgid "Algorithm:" msgstr "Algorithmus:" #: pp_scaling.cpp:184 #, fuzzy msgid "Scaling" msgstr "_Skalierung..." #: pp_sigcontrol.cpp:187 msgid "Columns:" msgstr "Spalten:" #: pp_sigcontrol.cpp:201 msgid "Rows:" msgstr "Reihen:" #: pp_sigcontrol.cpp:215 pp_sigcontrol.cpp:229 msgid "Gap:" msgstr "Zwischenraum:" #: pp_sigcontrol.cpp:254 msgid "Width:" msgstr "Breite:" #: pp_sigcontrol.cpp:268 msgid "Height:" msgstr "Höhe:" #: pp_sigcontrol.cpp:280 msgid "From selected image" msgstr "Vom ausgewählten Bild" #: pp_sigcontrol.cpp:338 msgid "Layout" msgstr "Layout" #: pp_sigcontrol.cpp:341 msgid "Specify rows/columns" msgstr "Reihen/Spalten festlegen" #: pp_sigcontrol.cpp:342 msgid "Specify image dimensions" msgstr "Bildmaße festlegen" #: pp_units.cpp:60 msgid "Units:" msgstr "Einheiten:" #: pp_units.cpp:68 msgid "Points" msgstr "Punkte" #: pp_units.cpp:71 msgid "Inches" msgstr "Zoll" #: pp_units.cpp:74 msgid "Millimeters" msgstr "Millimeter" #: pp_units.cpp:77 msgid "Centimeters" msgstr "Zentimeter" #: pp_units.cpp:151 msgid "Units" msgstr "Einheiten" #: printpreview.cpp:153 msgid "Preview resolution:" msgstr "Vorschau-Auflösung:" #: printpreview.cpp:157 msgid "180 dots per inch" msgstr "180 dpi" #: printpreview.cpp:158 msgid "240 dots per inch" msgstr "240 dpi" #: printpreview.cpp:159 msgid "300 dots per inch" msgstr "300 dpi" #: printpreview.cpp:160 msgid "360 dots per inch" msgstr "360 dpi" #: printpreview.cpp:165 msgid "" "Click-and-drag to pan around the preview.\n" "Right-click to toggle magnification." msgstr "" "Zum Bewegen die Vorschau anklicken und ziehen.\n" "Rechtsklick zum Wechsel der Vergrößerung." #: printpreview.cpp:168 msgid "Close" msgstr "Schließen" #: printpreview.cpp:236 msgid "Drawing preview" msgstr "Erstelle Vorschau" #: gp_cppsupport/gprintersettings.cpp:413 msgid "" "Can't obtain printer from Gutenprint\n" "Check STP_DATA_PATH and Gutenprint version!" msgstr "" "Kann keinen Gutenprint-Drucker erreichen\n" "Bitte STP_DATA_PATH und Gutenberg-Version überprüfen!" #: profilemanager/lcmswrapper.cpp:553 msgid "Perceptual" msgstr "wahrnehmungsorientiert" #: profilemanager/lcmswrapper.cpp:554 msgid "Relative Colorimetric" msgstr "Relativ farbmetrisch" #: profilemanager/lcmswrapper.cpp:555 msgid "Relative Colorimetric with BPC" msgstr "Relativ farbmetrisch mit Schwarzpunk-Kompensation" #: profilemanager/lcmswrapper.cpp:556 msgid "Saturation" msgstr "Sättigung" #: profilemanager/lcmswrapper.cpp:557 msgid "Absolute Colorimetric" msgstr "Absolut farbmetrisch" #: profilemanager/lcmswrapper.cpp:562 msgid "" "Aims for pleasing photographic results by preserving relationships between " "colours, and avoiding clipping of unattainable colours" msgstr "" "Zielt darauf ab, ansprechende fotgrafische Ergebnisse durch Bewahrung der " "Verhältnisse zwischen den Farben, und dem Vermeiden des Filterns nicht-" "darstellbarer Farben zu erreichen" #: profilemanager/lcmswrapper.cpp:563 msgid "" "Attempts to preserve the original colours, relative to white-point " "differences." msgstr "" "Versucht die Originalfarben im Verhältnis zu den Weißpunkt-Abweichungen zu " "bewahren" #: profilemanager/lcmswrapper.cpp:564 msgid "" "Attempts to preserve the original colours, relative to white-point " "differences. Uses Black Point Compensation to avoid clipping of highlights " "and shadows." msgstr "" "Versucht die Originalfarben im Verhältnis zu den Weißpunkt-Abweichungen zu " "bewahren. Verwendet Schwarzpunkt-Kompensation um Filterung in den " "Glanzlichtern und Schatten zu vermeiden" #: profilemanager/lcmswrapper.cpp:565 msgid "" "Attempts to provide brighter, more saturated colours, at the expense of " "colour relationships." msgstr "" "Versucht strahlendere, gesättigtere Farben zu erzielen; auf Kosten derFarb-" "Verhältnisse" #: profilemanager/lcmswrapper.cpp:566 msgid "" "Mimics the original colours (including white point) as closely as possible, " "for side-by-side comparisons. Clips unattainable colours." msgstr "" "Imitiert die Originalfarben (inklusive des Weißpunktes) so gut wie möglich," "für direkte Vergleiche. Filtert nicht-darstellbare Farben." #: profilemanager/profileselector.cpp:39 miscwidgets/imageselector.cpp:478 msgid "Other..." msgstr "Andere..." #: profilemanager/profileselector.cpp:193 #, fuzzy msgid "None" msgstr "Kei_ne" #: profilemanager/profileselector.cpp:392 msgid "Please choose a valid ICC profile" msgstr "Bitte ein gültiges ICC-Profil auswählen" #: profilemanager/profilemanager.cpp:207 msgid "Can't do proofing without a valid Printer profile!" msgstr "" #: profilemanager/profilemanager.cpp:212 msgid "Can't do proofing without a valid Monitor profile!" msgstr "" #: profilemanager/profilemanager.cpp:217 msgid "Can't do proofing without a valid Default RGB profile!" msgstr "" #: profilemanager/profilemanager.cpp:497 msgid "No Proof profile provided!" msgstr "" #: profilemanager/profilemanager.cpp:839 #, fuzzy msgid "Default rendering intent" msgstr "Rendering-Anweisung:" #: stpui_widgets/dimension.c:161 msgid "points" msgstr "Punkte" #: stpui_widgets/dimension.c:165 msgid "inches" msgstr "Zoll" #: stpui_widgets/dimension.c:169 msgid "millimeters" msgstr "Millimeter" #: stpui_widgets/dimension.c:173 msgid "centimeters" msgstr "Zentimeter" #: stpui_widgets/stpui_optionbook.c:117 msgid "General" msgstr "Allgemein" #: stpui_widgets/stpui_optionbook.c:120 msgid "Manual Settings" msgstr "Manuelle Einstellungen" #: stpui_widgets/stpui_optionbook.c:123 msgid "Colour (Basic)" msgstr "Farbe (Grundeinstellungen)" #: stpui_widgets/stpui_optionbook.c:126 msgid "Colour (Fine-tuning)" msgstr "Farbe (Feineinstellungen)" #: stpui_widgets/stpui_optionbook.c:129 msgid "Colour (Extra)" msgstr "Farbe (Extras)" #: miscwidgets/patheditor.cpp:53 msgid "Select directory..." msgstr "Wähle Verzeichnis..." #: miscwidgets/patheditor.cpp:98 msgid "Path" msgstr "Pfad" #: miscwidgets/patheditor.cpp:112 msgid "Add..." msgstr "Hinzufügen..." #: miscwidgets/patheditor.cpp:117 msgid "Remove" msgstr "Entfernen" #: miscwidgets/imageselector.cpp:458 msgid "Image" msgstr "Bild" #: miscwidgets/progressbar.cpp:52 msgid "Progress..." msgstr "Fortschritt..." #: imagesource/imagesource_util.cpp:32 msgid "Automatic" msgstr "" #: imagesource/imagesource_util.cpp:32 msgid "Selects a scaling algorithm based on scale factor" msgstr "" #: imagesource/imagesource_util.cpp:33 msgid "Fast" msgstr "" #: imagesource/imagesource_util.cpp:33 msgid "Very fast scaling with no interpolation" msgstr "" #: imagesource/imagesource_util.cpp:34 msgid "Bilinear" msgstr "" #: imagesource/imagesource_util.cpp:34 msgid "An interpolation filter with mediocre speed and quality" msgstr "" #: imagesource/imagesource_util.cpp:35 msgid "LanczosSinc" msgstr "" #: imagesource/imagesource_util.cpp:35 msgid "Slow but very high quality interpolation filter" msgstr "" #: imagesource/imagesource_util.cpp:37 msgid "Downsample" msgstr "" #: imagesource/imagesource_util.cpp:37 msgid "High quality filter for reductions only" msgstr "" photoprint-0.4.2-pre2/po/POTFILES.in0000644000175000017500000000242511316360706013713 00000000000000dialogs.cpp effects/ppeffect_temperature.cpp effects/effectlist.cpp effects/effectselector.cpp effects/ppeffect_desaturate.cpp effects/effectwidget_tempchange.cpp effects/ppeffect_unsharpmask.cpp effects/effectwidget_unsharpmask.cpp menucheck.cpp photoprint.cpp pixbufthumbnail/egg-pixbuf-thumbnail.c pp_cms.cpp pp_histogram.cpp pp_imagecontrol.cpp pp_imageinfo.cpp pp_layout_carousel.cpp pp_layout_nup.cpp pp_layout_poster.cpp pp_layout_single.cpp pp_mainwindow.cpp pp_menu_edit.cpp pp_menu_file.cpp pp_menu_shortcuts.cpp pp_menu_help.cpp pp_menu_image.cpp pp_menu_layout.cpp pp_menu_options.cpp pp_pageextent.cpp gp_cppsupport/printoutputselector.cpp gp_cppsupport/gprinter.cpp pp_scaling.cpp pp_sigcontrol.cpp pp_units.cpp printpreview.cpp gp_cppsupport/gprintersettings.cpp profilemanager/lcmswrapper.cpp profilemanager/profileselector.cpp profilemanager/profilemanager.cpp stpui_widgets/dimension.c stpui_widgets/stpui_optionbook.c miscwidgets/patheditor.cpp miscwidgets/imageselector.cpp miscwidgets/progressbar.cpp shortcuts/A4-10x8-1up.preset shortcuts/A4Profiling.preset shortcuts/Letter-8x6-1up.preset shortcuts/A4-7x5-2up.preset shortcuts/Letter-10x8-1up.preset shortcuts/LetterProfiling.preset shortcuts/A4-8x6-1up.preset shortcuts/Letter-7x5-2up.preset imagesource/imagesource_util.cpp photoprint-0.4.2-pre2/po/ru.po0000644000175000017500000012231611400237672013125 00000000000000# translation of Rawstudio to Russian # translation of ru.po to Russian # Copyright (C) YEAR Alastair M. Robinson # This file is distributed under the same license as the PACKAGE package. # # Alexandre Prokoudine , 2006, 2007. msgid "" msgstr "" "Project-Id-Version: ru\n" "Report-Msgid-Bugs-To: blackfive@fakenhamweb.co.uk\n" "POT-Creation-Date: 2010-05-29 17:24+0100\n" "PO-Revision-Date: 2008-12-23 02:22+0300\n" "Last-Translator: Alexandre Prokoudine \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: dialogs.cpp:75 #, fuzzy msgid "Colour Response Hash" msgstr "_Управление цветом..." #: dialogs.cpp:96 msgid "" "This \"hash\" value is derived from the printer driver's output,\n" "and can be used to verify that no changes have occurred which\n" "might invalidate a colour profile for the printer" msgstr "" #: dialogs.cpp:108 #, fuzzy msgid "Current hash:" msgstr "ИÑпользуемые:" #: dialogs.cpp:112 #, fuzzy msgid "Stored in preset:" msgstr "Сохранить предуÑтановку" #: dialogs.cpp:118 msgid "No hash stored yet" msgstr "" #: dialogs.cpp:127 msgid "" "Calculating hash of printer response\n" "with current driver settings" msgstr "" #: dialogs.cpp:132 #, fuzzy msgid "Store in preset" msgstr "Сохранить предуÑтановку" #: dialogs.cpp:156 msgid "" "MATCH - No changes in driver\n" "or printer settings detected" msgstr "" #: dialogs.cpp:162 msgid "" "This hash can be used to detect changes\n" "in printer settings or driver versions\n" "that might invalidate colour profiles" msgstr "" #: dialogs.cpp:164 msgid "" "MISMATCH - change detected in printer response!\n" "Printer's colour profile might no longer be accurate." msgstr "" #: dialogs.cpp:287 msgid "Printer Setup" msgstr "ÐаÑтройка принтера" #: dialogs.cpp:301 msgid "Output" msgstr "Вывод" #: dialogs.cpp:338 msgid "About" msgstr "О программе" #: dialogs.cpp:349 #, fuzzy msgid "PhotoPrint " msgstr "Выйти из программы" #: dialogs.cpp:388 msgid "Set paths..." msgstr "Указать раÑположение..." #: dialogs.cpp:413 msgid "ICC Profiles" msgstr "Профили ICC" #: dialogs.cpp:445 msgid "Borders" msgstr "Рамки" #: dialogs.cpp:476 msgid "Backgrounds" msgstr "Фоновый риÑунок" #: dialogs.cpp:504 msgid "Select a border..." msgstr "Выберите рамку" #: dialogs.cpp:551 msgid "Export TIFF..." msgstr "ЭкÑпорт в TIFF..." #: dialogs.cpp:577 dialogs.cpp:776 msgid "Page range:" msgstr "Диапазон Ñтраниц:" #: dialogs.cpp:590 dialogs.cpp:786 msgid "Resolution (dpi):" msgstr "Разрешение (dpi):" #: dialogs.cpp:598 msgid "Save as 16-bit:" msgstr "16-разрÑдный:" #: dialogs.cpp:617 dialogs.cpp:821 msgid "Output Profile:" msgstr "Профиль вывода:" #: dialogs.cpp:677 dialogs.cpp:914 msgid "Please provide a filename." msgstr "Укажите Ð¸Ð¼Ñ Ñ„Ð°Ð¹Ð»Ð°." #: dialogs.cpp:708 dialogs.cpp:892 msgid "Exporting..." msgstr "ПроизводитÑÑ ÑкÑпорт..." #: dialogs.cpp:747 msgid "Export JPEG..." msgstr "ЭкÑпорт в JPEG..." #: dialogs.cpp:805 msgid "JPEG Quality:" msgstr "КачеÑтво JPEG" #: dialogs.cpp:931 msgid "Select a background..." msgstr "Выберите фон..." #: dialogs.cpp:1023 pp_menu_image.cpp:276 msgid "Please select an image first!" msgstr "Сначала необходимо выбрать Ñнимок!" #: dialogs.cpp:1054 msgid "Set Custom Profile..." msgstr "Укажите иной профиль..." #: dialogs.cpp:1066 msgid "Before:" msgstr "До:" #: dialogs.cpp:1070 msgid "After:" msgstr "ПоÑле:" #: dialogs.cpp:1084 msgid "" "Can't show a colour managed\n" "preview unless you choose\n" "a Default RGB or Monitor profile\n" "in the Options->Colour Management\n" "dialog!" msgstr "" "ЦветоуправлÑемый предпроÑмотр невозможен,\n" "пока вы не выберите профиль \"Default RGB\" \n" "или профиль монитора в диалоге \n" "«Параметры > Управление цветом...»." #: dialogs.cpp:1109 msgid "" "Warning: Image already has an embedded profile\n" "Assigning a new one will over-ride it!" msgstr "" "Предупреждение: в Ñнимок уже вÑтроен профиль.\n" "При назначении нового Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ Ñтарый будет удален!" #: dialogs.cpp:1126 msgid "Assign Profile:" msgstr "Ðазначить профиль:" #: dialogs.cpp:1134 pp_cms.cpp:349 msgid "Rendering intent:" msgstr "Цветопередача:" #: effects/ppeffect_temperature.cpp:28 msgid "Warm/Cool" msgstr "Теплее/Холоднее" #: effects/effectselector.cpp:222 msgid "Active" msgstr "Ðктивен" #: effects/effectselector.cpp:231 msgid "Icon" msgstr "Значок" #: effects/effectselector.cpp:243 msgid "Name" msgstr "Ðазвание" #: effects/ppeffect_desaturate.cpp:25 msgid "Desaturate" msgstr "ОбеÑцвечивание" #: effects/effectwidget_tempchange.cpp:57 #, c-format msgid "%d degrees K" msgstr "%d°K" #: effects/ppeffect_unsharpmask.cpp:25 msgid "Sharpen" msgstr "Повышение резкоÑти" #: effects/effectwidget_unsharpmask.cpp:66 #, c-format msgid "Radius: %1.2f" msgstr "РадиуÑ: %1.2f" #: effects/effectwidget_unsharpmask.cpp:72 #, c-format msgid "Amount: %1.2f" msgstr "КоличеÑтво: %1.2f" #: menucheck.cpp:23 pp_menu_file.cpp:135 msgid "_File" msgstr "_Файл" #: menucheck.cpp:25 pp_menu_file.cpp:137 msgid "_Open Preset..." msgstr "_Открыть предуÑтановку..." #: menucheck.cpp:25 pp_menu_file.cpp:137 msgid "Open a preset" msgstr "Открыть предуÑтановку" #: menucheck.cpp:26 pp_menu_file.cpp:138 msgid "_Save Preset" msgstr "_Сохранить предуÑтановку..." #: menucheck.cpp:26 pp_menu_file.cpp:138 msgid "Save a preset" msgstr "Сохранить предуÑтановку" #: menucheck.cpp:27 pp_menu_file.cpp:139 msgid "Save _As..." msgstr "Сохранить _как..." #: menucheck.cpp:27 pp_menu_file.cpp:139 msgid "Save preset with a new filename" msgstr "Сохранить предуÑтановку под новым именем" #: menucheck.cpp:28 pp_menu_file.cpp:140 msgid "Save _Default" msgstr "Сохранить параметры как _типовые" #: menucheck.cpp:28 pp_menu_file.cpp:140 msgid "Save preset as the default" msgstr "Сохранить предуÑтановку как Ñтандартную" #: menucheck.cpp:29 msgid "E_xport TIFF..." msgstr "_TIFF..." #: menucheck.cpp:29 pp_menu_file.cpp:142 msgid "Export pages as TIFF files" msgstr "ЭкÑпортировать Ñтраницы как файлы TIFF" #: menucheck.cpp:30 pp_menu_file.cpp:144 msgid "Print Pre_view..." msgstr "ПроÑ_мотреть печать..." #: menucheck.cpp:30 pp_menu_file.cpp:144 msgid "Preview how the printed page will look" msgstr "ПроÑмотр Ñтраниц, которые будут напечатаны" #: menucheck.cpp:31 pp_menu_file.cpp:145 msgid "Print S_etup..." msgstr "ÐаÑтройка пр_интера..." #: menucheck.cpp:31 pp_menu_file.cpp:145 msgid "Set printer driver and options" msgstr "Указать драйвер и параметры работы принтера" #: menucheck.cpp:32 pp_menu_file.cpp:146 msgid "_Print" msgstr "Ðа_печатать" #: menucheck.cpp:32 pp_menu_file.cpp:146 msgid "Print pages" msgstr "Печать Ñтраниц" #: menucheck.cpp:33 pp_menu_file.cpp:147 msgid "_Quit" msgstr "Ð’_ыйти" #: menucheck.cpp:33 pp_menu_file.cpp:147 msgid "Exit PhotoPrint" msgstr "Выйти из программы" #: menucheck.cpp:62 pp_menu_layout.cpp:131 msgid "_Layout" msgstr "_Макет" #: menucheck.cpp:63 pp_menu_image.cpp:316 msgid "_Image" msgstr "Сн_имок" #: menucheck.cpp:64 pp_menu_options.cpp:108 msgid "_Options" msgstr "П_араметры" #: menucheck.cpp:65 pp_menu_help.cpp:29 msgid "_Help" msgstr "_Справка" #: menucheck.cpp:67 pp_menu_layout.cpp:133 msgid "_Clear Layout" msgstr "О_чиÑтить макет" #: menucheck.cpp:67 pp_menu_layout.cpp:133 msgid "Remove all images from the layout" msgstr "Убрать вÑе Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð¸Ð· макета" #: menucheck.cpp:68 pp_menu_layout.cpp:134 msgid "Set _Background" msgstr "У_казать фоновый риÑунок..." #: menucheck.cpp:68 pp_menu_layout.cpp:134 msgid "Set a background image for the current layout" msgstr "Выбрать фоновый риÑунок Ð´Ð»Ñ Ñ‚ÐµÐºÑƒÑ‰ÐµÐ³Ð¾ макета" #: menucheck.cpp:70 pp_menu_image.cpp:318 msgid "_Add Image..." msgstr "_Добавить..." #: menucheck.cpp:70 pp_menu_image.cpp:318 msgid "Add images to the current layout" msgstr "Добавить Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð² макет" #: menucheck.cpp:71 pp_menu_image.cpp:319 msgid "_Remove Image" msgstr "_Удалить" #: menucheck.cpp:71 pp_menu_image.cpp:319 msgid "Remove selected images from the layout" msgstr "Удалить выбранные Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ñ Ð¼Ð°ÐºÐµÑ‚Ð°" #: menucheck.cpp:73 pp_menu_image.cpp:323 msgid "_Rotation" msgstr "_Вращение" #: menucheck.cpp:75 msgid "Set Image _Mask..." msgstr "УÑтановить _маÑку изображениÑ..." #: menucheck.cpp:75 pp_menu_image.cpp:325 msgid "Set a border mask for the selected image" msgstr "УÑтановить маÑку рамки Ð´Ð»Ñ Ð²Ñ‹Ð±Ñ€Ð°Ð½Ð½Ð¾Ð³Ð¾ изображениÑ" #: menucheck.cpp:76 msgid "_Effects..." msgstr "Э_ффекты..." #: menucheck.cpp:76 msgid "Apply effects to the selected image" msgstr "Применить Ñффекты к выбранному изображениÑ" #: menucheck.cpp:77 pp_menu_image.cpp:327 msgid "Set Colour _Profile..." msgstr "_Ðазначить профиль ICC..." #: menucheck.cpp:77 pp_menu_image.cpp:327 msgid "Assign an ICC profile or custom rendering intent to the image" msgstr "Ðазначить профиль ICC или изменить конечную цветопередачу изображениÑ" #: menucheck.cpp:79 pp_menu_options.cpp:110 msgid "_Paths..." msgstr "_РаÑположение данных..." #: menucheck.cpp:79 pp_menu_options.cpp:110 msgid "Set search paths for ICC profiles, borders, etc." msgstr "Указать пути поиÑка профилей ICC, рамок и Ñ‚.д." #: menucheck.cpp:80 pp_menu_options.cpp:111 msgid "_Colour Management..." msgstr "_Управление цветом..." #: menucheck.cpp:80 pp_menu_options.cpp:111 msgid "Set colour management options" msgstr "ÐаÑтройка ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ñ†Ð²ÐµÑ‚Ð¾Ð¼" #: menucheck.cpp:81 pp_menu_options.cpp:113 msgid "_Units..." msgstr "_Единицы измерениÑ..." #: menucheck.cpp:81 pp_menu_options.cpp:113 msgid "Select the units used throughout PhotoPrint" msgstr "Выбор единицы измерениÑ, иÑпользуемой в PhotoPrint" #: menucheck.cpp:82 pp_menu_options.cpp:114 msgid "_Scaling..." msgstr "_ИнтерполÑциÑ..." #: menucheck.cpp:82 pp_menu_options.cpp:114 msgid "Select the preferred scaling method." msgstr "Выбор типа интерполÑции при маÑштабировании" #: menucheck.cpp:84 pp_menu_help.cpp:31 msgid "About..." msgstr "О программе..." #: menucheck.cpp:84 pp_menu_help.cpp:31 msgid "Some information about PhotoPrint" msgstr "Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾ PhotoPrint" #: menucheck.cpp:89 pp_menu_image.cpp:332 msgid "Allow _Cropping" msgstr "_Без полей" #: menucheck.cpp:89 pp_menu_image.cpp:332 msgid "Crop the selected images to fill the available space" msgstr "Обрезать выбранные Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð´Ð»Ñ Ð·Ð°Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ Ð´Ð¾Ñтупной облаÑти" #: menucheck.cpp:94 pp_menu_layout.cpp:139 msgid "_Auto Layout" msgstr "_Ðвтомакет" #: menucheck.cpp:94 pp_menu_layout.cpp:139 msgid "Automatically place images in a grid" msgstr "ÐвтоматичеÑки размеÑтить Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð² Ñетке" #: menucheck.cpp:95 pp_menu_layout.cpp:140 msgid "_Poster" msgstr "_Плакат" #: menucheck.cpp:95 pp_menu_layout.cpp:140 msgid "Print an image in multiple pages, to be assembled into a poster" msgstr "Ðапечатать изображение на неÑкольких Ñтраницах, Ñобираемых в плакат" #: menucheck.cpp:96 pp_menu_layout.cpp:141 msgid "_Carousel" msgstr "_КаруÑель" #: menucheck.cpp:96 pp_menu_layout.cpp:141 msgid "Fade images into a circular 'carousel' - ideal for CD labels." msgstr "ПомеÑтить Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð½Ð° круговую каруÑель — идеально Ð´Ð»Ñ Ð¾Ð±Ð»Ð¾Ð¶ÐµÐº CD" #: menucheck.cpp:97 pp_menu_layout.cpp:142 msgid "_Manual Size" msgstr "_Другой размер" #: menucheck.cpp:97 pp_menu_layout.cpp:142 msgid "Print images on a single sheet, at a specified scale." msgstr "Ðапечатать Ñнимки на одиночном лиÑте Ñ ÑƒÐºÐ°Ð·Ð°Ð½Ð½Ñ‹Ð¼ маÑштабом" #: menucheck.cpp:101 pp_menu_image.cpp:337 msgid "_Auto" msgstr "_ÐвтоматичеÑкое" #: menucheck.cpp:101 pp_menu_image.cpp:337 msgid "Automatically choose rotation to fit the available space." msgstr "ÐвтоматичеÑки выбирать угол поворота Ð´Ð»Ñ Ð·Ð°Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ Ñтраницы" #: menucheck.cpp:102 pp_menu_image.cpp:338 msgid "_None" msgstr "_Ðет" #: menucheck.cpp:102 pp_menu_image.cpp:338 msgid "No rotation." msgstr "Ðикакого вращениÑ" #: menucheck.cpp:103 pp_menu_image.cpp:339 msgid "_90 Degrees" msgstr "_90°" #: menucheck.cpp:103 pp_menu_image.cpp:339 msgid "Rotate 90 degrees clockwise." msgstr "Повернуть на 90° по чаÑовой Ñтрелке" #: menucheck.cpp:104 pp_menu_image.cpp:340 msgid "_180 Degrees" msgstr "_180°" #: menucheck.cpp:104 pp_menu_image.cpp:340 msgid "Rotate 180 degrees." msgstr "Повернуть на 180° по чаÑовой Ñтрелке" #: menucheck.cpp:105 pp_menu_image.cpp:341 msgid "_270 Degrees" msgstr "_270°" #: menucheck.cpp:105 pp_menu_image.cpp:341 msgid "Rotate 90 degrees anticlockwise." msgstr "Повернуть на 90° против чаÑовой Ñтрелки" #: menucheck.cpp:229 msgid "Dither Algorithm" msgstr "Ðлгоритм:" #: photoprint.cpp:135 msgid "Initializing..." msgstr "ИнициализациÑ..." #: photoprint.cpp:144 msgid "Checking .photoprint directory..." msgstr "ПроверÑетÑÑ ÐºÐ°Ñ‚Ð°Ð»Ð¾Ð³ ~/.photoprint..." #: photoprint.cpp:149 msgid "Loading preset..." msgstr "ЗагружаетÑÑ Ð¿Ñ€ÐµÐ´ÑƒÑтановка..." #: photoprint.cpp:154 msgid "Creating layout..." msgstr "СоздаётÑÑ Ð¼Ð°ÐºÐµÑ‚..." #: photoprint.cpp:197 msgid "Loading images..." msgstr "ЗагружаютÑÑ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ..." #: pixbufthumbnail/egg-pixbuf-thumbnail.c:349 #, c-format msgid "Error creating directory `%s': %s" msgstr "Ошибка при Ñоздании каталога `%s': %s" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:463 #, c-format msgid "Error opening `%s': %s" msgstr "Ошибка при открытии `%s': %s" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:481 #, c-format msgid "Error reading `%s': file contains no data." msgstr "Ошибка при чтении `%s': в файле нет данных." #: pixbufthumbnail/egg-pixbuf-thumbnail.c:505 #, c-format msgid "Error reading `%s': %s" msgstr "Ошибка при чтении `%s': %s" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:540 #, c-format msgid "" "Failed to load image '%s': reason not known, probably a corrupt image file" msgstr "" "Ðе удалоÑÑŒ загрузить Ñнимок «%s»: причина неизвеÑтна, вероÑтно файл Ñнимка " "иÑпорчен" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:613 #, c-format msgid "Error verifying `%s': %s" msgstr "Ошибка при проверке «%s»: %s" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:629 #, c-format msgid "Error reading `%s': file is not a regular file or symbolic link." msgstr "" "Ошибка при чтении «%s»: файл не ÑвлÑетÑÑ Ð½Ð¸ обычным файлом, ни ÑимволичеÑкой " "ÑÑылкой" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:1071 #, c-format msgid "Error creating temporary thumbnail file for `%s': %s" msgstr "Ошибка при Ñоздании временного ÑÑкизного файла Ð´Ð»Ñ Â«%s»: %s" #: pp_cms.cpp:148 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "will first be converted to the default CMYK profile" msgstr "" #: pp_cms.cpp:154 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "cannot be printed without a default CMYK profile." msgstr "" #: pp_cms.cpp:160 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "cannot be printed without a default RGB and CMYK profile." msgstr "" #: pp_cms.cpp:168 msgid "" "Printer profile is a devicelink - RGB images with embedded profiles\n" "will first be converted to the default RGB profile." msgstr "" #: pp_cms.cpp:174 msgid "" "Printer profile is a devicelink - RGB images with embedded profiles will " "not\n" "print correctly, since there is no default RGB profile." msgstr "" #: pp_cms.cpp:180 msgid "RGB images will print correctly" msgstr "" #: pp_cms.cpp:185 msgid "" "RGB images can be printed but colours depend on the driver\n" "(Colours will be accurate for images that contain an embedded profile)" msgstr "" #: pp_cms.cpp:190 msgid "RGB images can be printed but colours depend on the driver" msgstr "" #: pp_cms.cpp:195 msgid "" "RGB images can only be printed if they have an embedded profile\n" "(Workflow is CMYK and there is no default RGB profile)" msgstr "" #: pp_cms.cpp:200 msgid "" "RGB images cannot be printed\n" "(Workflow is CMYK and there is no printer profile)" msgstr "" #: pp_cms.cpp:215 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "will first be converted to the default RGB profile" msgstr "" #: pp_cms.cpp:221 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "cannot be printed without a default RGB profile." msgstr "" #: pp_cms.cpp:227 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "cannot be printed without a default RGB and CMYK profile." msgstr "" #: pp_cms.cpp:234 msgid "" "Printer profile is a devicelink - CMYK images with embedded profiles\n" "will first be converted to the default CMYK profile." msgstr "" #: pp_cms.cpp:240 msgid "" "Printer profile is a devicelink - CMYK images with embedded profiles will " "not\n" "print correctly since there is no default CMYK profile." msgstr "" #: pp_cms.cpp:246 msgid "CMYK images will print correctly" msgstr "" #: pp_cms.cpp:251 msgid "" "CMYK images can be printed but colours depend on the driver\n" "(Colours will be accurate for images that contain an embedded profile)" msgstr "" #: pp_cms.cpp:256 msgid "CMYK images can be printed but colours depend on the driver" msgstr "" #: pp_cms.cpp:261 msgid "" "CMYK images can only be printed if they have an embedded profile\n" "(Workflow is RGB and there is no default CMYK profile)" msgstr "" #: pp_cms.cpp:266 msgid "" "CMYK images cannot be printed\n" "(Workflow is RGB and there is no printer profile)" msgstr "" #: pp_cms.cpp:276 msgid "Images will be displayed correctly" msgstr "" #: pp_cms.cpp:281 msgid "" "Images will only be displayed correctly if they have an embedded profile" msgstr "" #: pp_cms.cpp:286 msgid "Images will not be displayed correctly" msgstr "" #: pp_cms.cpp:317 msgid "Printer" msgstr "Принтер" #: pp_cms.cpp:332 msgid "Printer Profile:" msgstr "Профиль принтера:" #: pp_cms.cpp:364 msgid "Colour space:" msgstr "Цветовое проÑтранÑтво" #: pp_cms.cpp:372 msgid "RGB" msgstr "" #: pp_cms.cpp:372 msgid "Send Red, Green and Blue data to the printer driver" msgstr "" #: pp_cms.cpp:373 msgid "CMYK" msgstr "" #: pp_cms.cpp:373 msgid "Send Cyan, Magenta, Yellow and Black data to the printer driver" msgstr "" #: pp_cms.cpp:383 msgid "Monitor" msgstr "Монитор" #: pp_cms.cpp:396 msgid "Monitor Profile:" msgstr "Профиль монитора:" #: pp_cms.cpp:411 msgid "Display mode:" msgstr "Режим работы монитора:" #: pp_cms.cpp:420 msgid "Normal" msgstr "Обычный" #: pp_cms.cpp:420 msgid "Displays images' original colours, transformed to suit the monitor" msgstr "" #: pp_cms.cpp:421 msgid "Simulate Print" msgstr "Ð˜Ð¼Ð¸Ñ‚Ð°Ñ†Ð¸Ñ Ð¿Ñ€Ð¸Ð½Ñ‚ÐµÑ€Ð°" #: pp_cms.cpp:421 msgid "" "Simulates how colours will look when printed, imitating the paper's white " "point." msgstr "" #: pp_cms.cpp:422 msgid "Simulate Print, Adapt White" msgstr "Ð˜Ð¼Ð¸Ñ‚Ð°Ñ†Ð¸Ñ Ð¿Ñ€Ð¸Ð½Ñ‚ÐµÑ€Ð°, Ð±Ð°Ð»Ð°Ð½Ñ Ð±ÐµÐ»Ð¾Ð³Ð¾ по монитору" #: pp_cms.cpp:422 msgid "" "Simulates how colours will look when printed, adapting colours for the " "monitor's white point." msgstr "" #: pp_cms.cpp:432 msgid "Default Image Profiles" msgstr "Стандартные профили Ð´Ð»Ñ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ð¹" #: pp_cms.cpp:447 msgid "RGB Profile:" msgstr "Профиль RGB:" #: pp_cms.cpp:464 msgid "CMYK Profile:" msgstr "Профиль CMYK:" #: pp_cms.cpp:666 msgid "Colour Management" msgstr "Управление цветом" #: pp_histogram.cpp:282 msgid "Histogram" msgstr "" #: pp_imagecontrol.cpp:134 msgid "Effects" msgstr "Эффекты" #: pp_imageinfo.cpp:107 msgid "in" msgstr "in" #: pp_imageinfo.cpp:110 msgid "pt" msgstr "pt" #: pp_imageinfo.cpp:115 msgid "cm" msgstr "cm" #: pp_imageinfo.cpp:120 msgid "mm" msgstr "mm" #: pp_imageinfo.cpp:168 msgid "Image Info" msgstr "Сводка по Ñнимку" #: pp_imageinfo.cpp:195 msgid "Filename:" msgstr "Ð˜Ð¼Ñ Ñ„Ð°Ð¹Ð»Ð°:" #: pp_imageinfo.cpp:208 msgid "Dimensions:" msgstr "Размеры:" #: pp_imageinfo.cpp:228 msgid "Resolution:" msgstr "Разрешение:" #: pp_imageinfo.cpp:241 msgid "Profile:" msgstr "Профиль:" #: pp_imageinfo.cpp:351 msgid "pixels" msgstr "пикÑелов" #: pp_imageinfo.cpp:380 profilemanager/profilemanager.cpp:831 msgid "Default" msgstr "По умолчанию" #: pp_layout_carousel.cpp:247 pp_layout_carousel.cpp:379 pp_layout_nup.cpp:222 #: pp_layout_poster.cpp:312 pp_layout_poster.cpp:464 pp_layout_single.cpp:233 #: printpreview.cpp:146 msgid "Page:" msgstr "Страница:" #: pp_layout_carousel.cpp:275 msgid "Carousel" msgstr "КаруÑель" #: pp_layout_carousel.cpp:291 msgid "Segments:" msgstr "Сегментов:" #: pp_layout_carousel.cpp:306 msgid "Overlap (%):" msgstr "Перекрытие (%):" #: pp_layout_carousel.cpp:321 msgid "Starting angle:" msgstr "Ðачальный угол:" #: pp_layout_carousel.cpp:336 msgid "Inner Radius:" msgstr "Внутренний радиуÑ:" #: pp_layout_poster.cpp:339 msgid "Poster Layout" msgstr "Макет плаката" #: pp_layout_poster.cpp:354 msgid "Size" msgstr "Размер" #: pp_layout_poster.cpp:366 pp_layout_poster.cpp:390 msgid "by" msgstr "по" #: pp_layout_poster.cpp:378 msgid "Tiles" msgstr "Элементов:" #: pp_layout_poster.cpp:400 msgid "Overlap" msgstr "Перекрытие" #: pp_layout_poster.cpp:414 pp_pageextent.cpp:262 msgid "H:" msgstr "По горизонтали:" #: pp_layout_poster.cpp:426 msgid "V:" msgstr "По вертикали:" #: pp_layout_single.cpp:261 msgid "Manual scaling" msgstr "МаÑштабирование вручную" #: pp_layout_single.cpp:277 msgid "H (%):" msgstr "Г (%):" #: pp_layout_single.cpp:291 msgid "V (%):" msgstr "Ð’ (%):" #: pp_mainwindow.cpp:228 msgid "Transferring images..." msgstr "ПередаютÑÑ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ..." #: pp_menu_edit.cpp:37 msgid "_Edit" msgstr "_Правка" #: pp_menu_edit.cpp:39 msgid "Select _All" msgstr "Ð’_ыделить вÑÑ‘" #: pp_menu_edit.cpp:39 msgid "Select all images" msgstr "Выделить вÑе изображениÑ" #: pp_menu_edit.cpp:40 msgid "Select _None" msgstr "С_нÑть выделение" #: pp_menu_edit.cpp:40 msgid "Deselect all images" msgstr "СнÑть выделение Ñо вÑех изображений" #: pp_menu_edit.cpp:41 msgid "_Cut" msgstr "_Вырезать" #: pp_menu_edit.cpp:41 msgid "Cut the current image to the clipboard" msgstr "Вырезать текущее изображение в буфер обмена" #: pp_menu_edit.cpp:42 msgid "C_opy" msgstr "С_копировать" #: pp_menu_edit.cpp:42 msgid "Copy the current image to the clipboard" msgstr "Скопировать текущее изображение в буфер обмена" #: pp_menu_edit.cpp:43 msgid "_Paste" msgstr "Ð’ÑÑ‚_авить" #: pp_menu_edit.cpp:43 msgid "Paste the contents of the clipboard as a new image" msgstr "Ð’Ñтавить Ñодержимое буфера обмена как новое изображение" #: pp_menu_file.cpp:38 msgid "Open preset..." msgstr "Открытие предуÑтановки" #: pp_menu_file.cpp:64 msgid "Save preset..." msgstr "Сохранить предуÑтановку..." #: pp_menu_file.cpp:115 msgid "Generating print data..." msgstr "СоздаютÑÑ Ð¿ÐµÑ‡Ð°Ñ‚Ð°ÐµÐ¼Ñ‹Ðµ данные" #: pp_menu_file.cpp:141 msgid "E_xport" msgstr "_ЭкÑпорт..." #: pp_menu_file.cpp:142 msgid "Export _TIFF..." msgstr "_TIFF..." #: pp_menu_file.cpp:143 msgid "Export _JPEG..." msgstr "_JPEG..." #: pp_menu_file.cpp:143 msgid "Export pages as JPEG files" msgstr "ЭкÑпортировать Ñтраницы как файлы JPEG" #: pp_menu_shortcuts.cpp:78 msgid "_Shortcuts" msgstr "" #: pp_menu_shortcuts.cpp:131 msgid "Error fetching preset name!" msgstr "" #: pp_menu_image.cpp:64 msgid "Open File" msgstr "Открыть файл" #: pp_menu_image.cpp:104 msgid "Adding images..." msgstr "ДобавлÑÑŽÑ‚ÑÑ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ..." #: pp_menu_image.cpp:186 msgid "Page is already full!" msgstr "Ðа Ñтранице не оÑталоÑÑŒ меÑта!" #: pp_menu_image.cpp:320 msgid "_Duplicate Image" msgstr "_Продублировать" #: pp_menu_image.cpp:320 msgid "Duplicate the currently selected image" msgstr "Продублировать выделенное изображение" #: pp_menu_image.cpp:321 #, fuzzy msgid "Duplicate to _Fill Page" msgstr "_Заполнить им Ñтраницу" #: pp_menu_image.cpp:321 msgid "Fill the page with copies of the currently selected image" msgstr "Заполнить Ñтраницу копиÑми выбранного ÑÐµÐ¹Ñ‡Ð°Ñ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ" #: pp_menu_image.cpp:325 #, fuzzy msgid "Set Image _Border..." msgstr "Выберите рамку" #: pp_menu_options.cpp:112 #, fuzzy msgid "_Colour Response Hash..." msgstr "_Управление цветом..." #: pp_menu_options.cpp:112 msgid "Create a hash for verifying printer settings" msgstr "" #: pp_menu_options.cpp:118 msgid "High-res Previews" msgstr "Ð’Ñ‹ÑококачеÑтвенные ÑÑкизы" #: pp_menu_options.cpp:118 msgid "Render high-resolution previews in the background" msgstr "Создавать выÑококачеÑтвенные ÑÑкизы в фоновом режиме" #: pp_menu_options.cpp:122 msgid "_Normal Display" msgstr "_Обычное отображение" #: pp_menu_options.cpp:122 msgid "Display colours with no print simulation" msgstr "Ðе имитировать принтер при отображении цветов" #: pp_menu_options.cpp:123 msgid "Simulate Prin_t" msgstr "_Ð˜Ð¼Ð¸Ñ‚Ð°Ñ†Ð¸Ñ Ð¿Ñ€Ð¸Ð½Ñ‚ÐµÑ€Ð°" #: pp_menu_options.cpp:123 msgid "" "Adjust colours on screen to imitate printed colours, including paper white" msgstr "Скорректировать цвета на Ñкране Ð´Ð»Ñ Ð¸Ð¼Ð¸Ñ‚Ð°Ñ†Ð¸Ð¸ оттиÑка на белой бумаге" #: pp_menu_options.cpp:124 msgid "Simulate Print, _Adapt White" msgstr "И_Ð¼Ð¸Ñ‚Ð°Ñ†Ð¸Ñ Ð¿Ñ€Ð¸Ð½Ñ‚ÐµÑ€Ð°, Ð±Ð°Ð»Ð°Ð½Ñ Ð±ÐµÐ»Ð¾Ð³Ð¾ по монитору" #: pp_menu_options.cpp:124 msgid "Adjust colours to imitate printed colours, excluding paper white" msgstr "" "Скорректировать цвета на Ñкране Ð´Ð»Ñ Ð¸Ð¼Ð¸Ñ‚Ð°Ñ†Ð¸Ð¸ оттиÑка без имитации белой " "бумаги" #: pp_pageextent.cpp:228 msgid "Page Size and Margins" msgstr "Размер и Ð¿Ð¾Ð»Ñ Ñтраницы" #: pp_pageextent.cpp:252 msgid "W:" msgstr "Ш:" #: pp_pageextent.cpp:275 msgid "Left:" msgstr "Левое: " #: pp_pageextent.cpp:291 msgid "Right:" msgstr "Правое: " #: pp_pageextent.cpp:304 msgid "Top:" msgstr "Верхнее: " #: pp_pageextent.cpp:315 msgid "Bottom:" msgstr "Ðижнее: " #: gp_cppsupport/printoutputselector.cpp:114 msgid "Print Queue:" msgstr "Очередь на печать:" #: gp_cppsupport/printoutputselector.cpp:133 msgid "Printer Model:" msgstr "Модель принтера:" #: gp_cppsupport/printoutputselector.cpp:196 #, c-format msgid "" "The printer queue %s\n" " is not found - please choose another" msgstr "" "Очередь печати %s\n" "не обнаружена — выберите другую" #: gp_cppsupport/printoutputselector.cpp:197 msgid "Printer queue not found" msgstr "Очередь печати не найдена" #: gp_cppsupport/gprinter.cpp:387 msgid "Unable to generate print data" msgstr "Ðевозможно Ñоздать печатаемые данные" #: pp_scaling.cpp:72 msgid "Algorithm:" msgstr "Ðлгоритм:" #: pp_scaling.cpp:184 #, fuzzy msgid "Scaling" msgstr "_ИнтерполÑциÑ..." #: pp_sigcontrol.cpp:187 msgid "Columns:" msgstr "Столбцов:" #: pp_sigcontrol.cpp:201 msgid "Rows:" msgstr "Строк:" #: pp_sigcontrol.cpp:215 pp_sigcontrol.cpp:229 msgid "Gap:" msgstr "Интервал:" #: pp_sigcontrol.cpp:254 msgid "Width:" msgstr "Ширина:" #: pp_sigcontrol.cpp:268 msgid "Height:" msgstr "Ð’Ñ‹Ñота:" #: pp_sigcontrol.cpp:280 #, fuzzy msgid "From selected image" msgstr "СнÑть выделение Ñо вÑех изображений" #: pp_sigcontrol.cpp:338 msgid "Layout" msgstr "Вид" #: pp_sigcontrol.cpp:341 msgid "Specify rows/columns" msgstr "" #: pp_sigcontrol.cpp:342 msgid "Specify image dimensions" msgstr "" #: pp_units.cpp:60 msgid "Units:" msgstr "Единица измерениÑ:" #: pp_units.cpp:68 msgid "Points" msgstr "Пункт" #: pp_units.cpp:71 msgid "Inches" msgstr "Дюйм" #: pp_units.cpp:74 msgid "Millimeters" msgstr "Миллиметр" #: pp_units.cpp:77 msgid "Centimeters" msgstr "Сантиметр" #: pp_units.cpp:151 msgid "Units" msgstr "Единицы измерениÑ" #: printpreview.cpp:153 #, fuzzy msgid "Preview resolution:" msgstr "Разрешение:" #: printpreview.cpp:157 msgid "180 dots per inch" msgstr "" #: printpreview.cpp:158 msgid "240 dots per inch" msgstr "" #: printpreview.cpp:159 msgid "300 dots per inch" msgstr "" #: printpreview.cpp:160 msgid "360 dots per inch" msgstr "" #: printpreview.cpp:165 msgid "" "Click-and-drag to pan around the preview.\n" "Right-click to toggle magnification." msgstr "" #: printpreview.cpp:168 #, fuzzy msgid "Close" msgstr "КаруÑель" #: printpreview.cpp:236 #, fuzzy msgid "Drawing preview" msgstr "ПроÑ_мотреть печать..." #: gp_cppsupport/gprintersettings.cpp:413 msgid "" "Can't obtain printer from Gutenprint\n" "Check STP_DATA_PATH and Gutenprint version!" msgstr "" #: profilemanager/lcmswrapper.cpp:553 msgid "Perceptual" msgstr "ВоÑпринимаемаÑ" #: profilemanager/lcmswrapper.cpp:554 msgid "Relative Colorimetric" msgstr "ОтноÑÐ¸Ñ‚ÐµÐ»ÑŒÐ½Ð°Ñ ÐºÐ¾Ð»Ð¾Ñ€Ð¸Ð¼ÐµÑ‚Ñ€Ð¸Ñ‡ÐµÑкаÑ" #: profilemanager/lcmswrapper.cpp:555 msgid "Relative Colorimetric with BPC" msgstr "ОтноÑÐ¸Ñ‚ÐµÐ»ÑŒÐ½Ð°Ñ ÐºÐ¾Ð»Ð¾Ñ€Ð¸Ð¼ÐµÑ‚Ñ€Ð¸Ñ‡ÐµÑÐºÐ°Ñ Ñ ÐºÐ¾Ð¼Ð¿ÐµÐ½Ñацией чёрной точки" #: profilemanager/lcmswrapper.cpp:556 msgid "Saturation" msgstr "ÐаÑыщеннаÑ" #: profilemanager/lcmswrapper.cpp:557 msgid "Absolute Colorimetric" msgstr "ÐбÑÐ¾Ð»ÑŽÑ‚Ð½Ð°Ñ ÐºÐ¾Ð»Ð¾Ñ€Ð¸Ð¼ÐµÑ‚Ñ€Ð¸Ñ‡ÐµÑкаÑ" #: profilemanager/lcmswrapper.cpp:562 msgid "" "Aims for pleasing photographic results by preserving relationships between " "colours, and avoiding clipping of unattainable colours" msgstr "" "Оптимально Ð´Ð»Ñ Ð¿ÐµÑ‡Ð°Ñ‚Ð¸ фотографий, цвета ÑохранÑÑŽÑ‚ÑÑ, Ð²Ñ‹Ñ€ÐµÐ·Ð°Ð½Ð¸Ñ Ð½ÐµÐ´Ð¾Ñтупных " "цветов не проиÑходит" #: profilemanager/lcmswrapper.cpp:563 msgid "" "Attempts to preserve the original colours, relative to white-point " "differences." msgstr "ПытаетÑÑ Ñохранить иÑходные цвета отноÑительно разницы Ñ Ð±ÐµÐ»Ð¾Ð¹ точкой." #: profilemanager/lcmswrapper.cpp:564 msgid "" "Attempts to preserve the original colours, relative to white-point " "differences. Uses Black Point Compensation to avoid clipping of highlights " "and shadows." msgstr "" "ПытаетÑÑ Ñохранить иÑходные цвета отноÑительно разницы Ñ Ð±ÐµÐ»Ð¾Ð¹ точкой. " "ИÑпользует компенÑацию чёрной точки во избежание обрезки Ñрких учаÑтков и " "теней." #: profilemanager/lcmswrapper.cpp:565 msgid "" "Attempts to provide brighter, more saturated colours, at the expense of " "colour relationships." msgstr "" "ПытаетÑÑ Ð¾Ð±ÐµÑпечить Ñркие, более наÑыщенные цвета ценой корректноÑти " "цветопередачи" #: profilemanager/lcmswrapper.cpp:566 msgid "" "Mimics the original colours (including white point) as closely as possible, " "for side-by-side comparisons. Clips unattainable colours." msgstr "" "Ðаиболее приближение к иÑходным цветам (Ð²ÐºÐ»ÑŽÑ‡Ð°Ñ Ð±ÐµÐ»ÑƒÑŽ точку), недоÑтупные " "цвета вырезаютÑÑ." #: profilemanager/profileselector.cpp:39 miscwidgets/imageselector.cpp:478 msgid "Other..." msgstr "Добавить из файла..." #: profilemanager/profileselector.cpp:193 #, fuzzy msgid "None" msgstr "_Ðет" #: profilemanager/profileselector.cpp:392 msgid "Please choose a valid ICC profile" msgstr "Выберите корректный профиль ICC" #: profilemanager/profilemanager.cpp:207 msgid "Can't do proofing without a valid Printer profile!" msgstr "" #: profilemanager/profilemanager.cpp:212 msgid "Can't do proofing without a valid Monitor profile!" msgstr "" #: profilemanager/profilemanager.cpp:217 msgid "Can't do proofing without a valid Default RGB profile!" msgstr "" #: profilemanager/profilemanager.cpp:497 msgid "No Proof profile provided!" msgstr "" #: profilemanager/profilemanager.cpp:839 #, fuzzy msgid "Default rendering intent" msgstr "Цветопередача:" #: stpui_widgets/dimension.c:161 msgid "points" msgstr "пункты" #: stpui_widgets/dimension.c:165 msgid "inches" msgstr "дюймы" #: stpui_widgets/dimension.c:169 msgid "millimeters" msgstr "миллиметры" #: stpui_widgets/dimension.c:173 msgid "centimeters" msgstr "Ñантиметры" #: stpui_widgets/stpui_optionbook.c:117 msgid "General" msgstr "" #: stpui_widgets/stpui_optionbook.c:120 #, fuzzy msgid "Manual Settings" msgstr "МаÑштабирование вручную" #: stpui_widgets/stpui_optionbook.c:123 #, fuzzy msgid "Colour (Basic)" msgstr "Цветовое проÑтранÑтво" #: stpui_widgets/stpui_optionbook.c:126 msgid "Colour (Fine-tuning)" msgstr "" #: stpui_widgets/stpui_optionbook.c:129 msgid "Colour (Extra)" msgstr "" #: miscwidgets/patheditor.cpp:53 msgid "Select directory..." msgstr "Выберите каталог..." #: miscwidgets/patheditor.cpp:98 msgid "Path" msgstr "РаÑположение" #: miscwidgets/patheditor.cpp:112 msgid "Add..." msgstr "Добавить..." #: miscwidgets/patheditor.cpp:117 msgid "Remove" msgstr "Удалить" #: miscwidgets/imageselector.cpp:458 msgid "Image" msgstr "Снимок" #: miscwidgets/progressbar.cpp:52 msgid "Progress..." msgstr "ПрогреÑÑ..." #: imagesource/imagesource_util.cpp:32 msgid "Automatic" msgstr "" #: imagesource/imagesource_util.cpp:32 msgid "Selects a scaling algorithm based on scale factor" msgstr "" #: imagesource/imagesource_util.cpp:33 #, fuzzy msgid "Fast" msgstr "Ð’ÑÑ‚_авить" #: imagesource/imagesource_util.cpp:33 msgid "Very fast scaling with no interpolation" msgstr "" #: imagesource/imagesource_util.cpp:34 msgid "Bilinear" msgstr "" #: imagesource/imagesource_util.cpp:34 msgid "An interpolation filter with mediocre speed and quality" msgstr "" #: imagesource/imagesource_util.cpp:35 msgid "LanczosSinc" msgstr "" #: imagesource/imagesource_util.cpp:35 msgid "Slow but very high quality interpolation filter" msgstr "" #: imagesource/imagesource_util.cpp:37 msgid "Downsample" msgstr "" #: imagesource/imagesource_util.cpp:37 msgid "High quality filter for reductions only" msgstr "" #~ msgid "Cool/Warm" #~ msgstr "Теплее/Холоднее" #~ msgid "Effects..." #~ msgstr "Эффекты..." #~ msgid "Change Colour Temperature..." #~ msgstr "Изменить температуру цвета..." #~ msgid "Available:" #~ msgstr "ДоÑтупные:" #~ msgid "Add" #~ msgstr "Добавить" #~ msgid "Settings..." #~ msgstr "Параметры..." #, fuzzy #~ msgid "/_File" #~ msgstr "_Файл" #, fuzzy #~ msgid "/File/_Open Preset..." #~ msgstr "_Открыть предуÑтановку..." #, fuzzy #~ msgid "/File/_Save Preset" #~ msgstr "_Сохранить предуÑтановку..." #, fuzzy #~ msgid "/File/Save _As..." #~ msgstr "Сохранить _как..." #, fuzzy #~ msgid "/File/Save _Default" #~ msgstr "Сохранить Ñтандартную" #, fuzzy #~ msgid "/File/E_xport TIFF..." #~ msgstr "ЭкÑпорт в TIFF..." #, fuzzy #~ msgid "/File/Print Pre_view..." #~ msgstr "ПроÑ_мотреть печать..." #, fuzzy #~ msgid "/File/Print S_etup..." #~ msgstr "ÐаÑтройка пр_интера..." #, fuzzy #~ msgid "/File/_Print" #~ msgstr "Ðа_печатать" #, fuzzy #~ msgid "/File/_Quit" #~ msgstr "Ð’_ыход" #, fuzzy #~ msgid "/Edit/Select _All" #~ msgstr "Ð’_ыделить вÑÑ‘" #, fuzzy #~ msgid "/Edit/Select _None" #~ msgstr "С_нÑть выделение" #, fuzzy #~ msgid "/_Layout" #~ msgstr "_Макет" #, fuzzy #~ msgid "/Layout/_Clear Layout" #~ msgstr "О_чиÑтить макет" #, fuzzy #~ msgid "/Layout/Set _Background" #~ msgstr "У_казать фоновый риÑунок..." #, fuzzy #~ msgid "/Layout/sep" #~ msgstr "Вид" #, fuzzy #~ msgid "/Image/_Add Image" #~ msgstr "_Добавить..." #, fuzzy #~ msgid "/Image/_Remove Image" #~ msgstr "_Удалить изображение" #, fuzzy #~ msgid "/Image/sep" #~ msgstr "_Изображение" #, fuzzy #~ msgid "/Image/Allow _Cropping" #~ msgstr "Разрешить о_брезку" #, fuzzy #~ msgid "/Image/Rotation/_90 degrees" #~ msgstr "Повернуть на 180° по чаÑовой Ñтрелке" #, fuzzy #~ msgid "/Image/Rotation/_180 degrees" #~ msgstr "Повернуть на 180° по чаÑовой Ñтрелке" #, fuzzy #~ msgid "/Image/Set image _mask..." #~ msgstr "УÑтановить _маÑку изображениÑ..." #, fuzzy #~ msgid "/Image/_Effects..." #~ msgstr "Э_ффекты..." #, fuzzy #~ msgid "/Image/Set colour _profile..." #~ msgstr "_Ðазначить ICC-профиль..." #, fuzzy #~ msgid "/Layout/_Auto Layout" #~ msgstr "_Ðвтомакет" #, fuzzy #~ msgid "/Layout/_Poster" #~ msgstr "_Плакат" #, fuzzy #~ msgid "/Layout/_Carousel" #~ msgstr "_КаруÑель" #, fuzzy #~ msgid "/Layout/_Manual Size" #~ msgstr "_Другой размер" #, fuzzy #~ msgid "/_Options" #~ msgstr "П_араметры" #, fuzzy #~ msgid "/Options/_Paths..." #~ msgstr "_Пути..." #, fuzzy #~ msgid "/Options/Colour _Management..." #~ msgstr "_Управление цветом..." #, fuzzy #~ msgid "/Options/_Units..." #~ msgstr "_Единицы измерениÑ..." #, fuzzy #~ msgid "/Options/_Scaling..." #~ msgstr "_ИнтерполÑциÑ..." #, fuzzy #~ msgid "/_Help" #~ msgstr "_Справка" #, fuzzy #~ msgid "/_Remove Image" #~ msgstr "_Удалить изображение" #, fuzzy #~ msgid "/Allow _Cropping" #~ msgstr "Разрешить о_брезку" #, fuzzy #~ msgid "/Rotation/Auto" #~ msgstr "_Вращение" #, fuzzy #~ msgid "/Rotation/None" #~ msgstr "_Вращение" #, fuzzy #~ msgid "/Rotation/90 degrees" #~ msgstr "Повернуть на 180° по чаÑовой Ñтрелке" #, fuzzy #~ msgid "/Rotation/180 degrees" #~ msgstr "Повернуть на 180° по чаÑовой Ñтрелке" #, fuzzy #~ msgid "/Rotation/270 degrees" #~ msgstr "Повернуть на 180° по чаÑовой Ñтрелке" #, fuzzy #~ msgid "/Set image mask..." #~ msgstr "УÑтановить _маÑку изображениÑ..." #, fuzzy #~ msgid "/_Effects..." #~ msgstr "Э_ффекты..." #, fuzzy #~ msgid "/Set colour _profile..." #~ msgstr "_Ðазначить ICC-профиль..." #~ msgid "Poster Size:" #~ msgstr "Размер плаката:" #~ msgid "Tiles high:" #~ msgstr "Ячеек в выÑоту:" #~ msgid "Scale" #~ msgstr "МаÑштаб:" #~ msgid "Margins" #~ msgstr "ПолÑ" #~ msgid "Gutters" #~ msgstr "Интервалы" #~ msgid "Horizontal:" #~ msgstr "По горизонтали:" #~ msgid "Vertical:" #~ msgstr "По вертикали:" photoprint-0.4.2-pre2/po/da.gmo0000644000175000017500000003646711400237673013243 00000000000000Þ•éd7¬ˆ ‰–œ¥» ÂãêJû@F‡Ž  +#9]=mO«›û]—9õ$/ T`hp x†€Œ  !"D Vd'm•4¨&Ý  #. B(N w…&–½ÅÕ!Ý4ÿ4K*b@Îç÷%5P k=xJ¶ 9 EJcjm Œ‘ —¢© ¹ ÇÕÜâô †!¨°Á ÆÓ Ú äò ! )6L bn2t§ ¬!·Ùô &'N `m?}5½ óÿ  ' 5 > J W e { š !¡ &à 1ê !.! @!L!S! g!ˆ!¥! «! ¶! Â! Ð!Þ!î! ")" 8" B" N"["r"…"—"$«"+Ð"ü"#)#<#-L#(z#£# Á#Î#0í#$&$6$E$a$~$!ƒ$¥$µ$»$À$×$Ý$ä$ë$î$ ñ$Uû$ Q% ^% k% w%…% ‹% ˜% ¢%°%Æ%Ë%Ü% â%î%ô%ú%& &&&,&<&E& L&V&^&e& k& y& ƒ& & œ&¦& ©&µ&¸&»& Â&Î&Ñ&Ø&ß&„â& g(s(v(|(’(*˜( Ã(Î(Yâ(U<)’)„™) *)*<*'K*s*I„*NÎ*+b»+E,'d, Œ,–,œ,£, ©,¶,Œ¼,I- R-&]- „- ‘-›-+¤-Ð-Fá-((.Q.Z. s.~. •."¢.Å.×.è./ / /')/:Q/Œ/©/7Ç/Mÿ/!M0o00”0§0·0Ç0å01@1RT1§1+°1 Ü1ç1ý12 2 (252:2 B2N2U2 g2 u2ƒ2Š2“2©2É2 Ú2{å2a3 h3v3{3‹3’3"›3¾3×3à3 ç3 õ3 44+4 C4P44V4‹4 4š4µ4Ç4à4 è4õ45 25>5CZ54ž5 Ó5á5é5ø566 6 +6 76E6[6y66 Ÿ63À6ô6 7 7)717C7^7y77 Š7 –7!¤7Æ7 Ö7#÷7828 :8 E8R8g8y88# 8(Ä8í899/93?9%s9 ™9 º9'È9.ð9:':7: H:i: ˆ:!“: µ:Â:Ç:Ì:ã:ë:ô:û:þ: ;^ ; j; v; ‚;;¡; §; ´; ¾;Ê;Û;á; ô; þ; <<<!<)<<<C<U<o<~< ‡<‘<™<¢<ª< ¹<Ã< Ù< ç<ó< ö<== = == ='=/=t)ºj,5ƒnÓUa™^_w¿Þ†­PA’¬©á\¨l¦ÈG [Õ(:š"”³xÔÖÁÉ9`޲sªŠ~Œ{¯‚Y@Sbh°Cu$Å=¢'ØÆ¾ÇpçÎàäéTР¶r„zË}£2âK8.‡è‹—¥×1…¡‘–žEV?À*W !B7;Ùycg¼ßŸ»m·QNÜœ›Ï½ kF҈͓¸H|]‰qÝRãÑ´JD& ÊÄ6+µM0 3d §¤¹Ì>#«LIvf<Ûi-åoæ%Ø®4e/€•±ÚXZO%d degrees KAboutAbout...Absolute ColorimetricActiveAdd images to the current layoutAdd...Adding images...Adjust colours on screen to imitate printed colours, including paper whiteAdjust colours to imitate printed colours, excluding paper whiteAfter:Aims for pleasing photographic results by preserving relationships between colours, and avoiding clipping of unattainable coloursAlgorithm:Allow _CroppingAmount: %1.2fApply effects to the selected imageAssign Profile:Assign an ICC profile or custom rendering intent to the imageAttempts to preserve the original colours, relative to white-point differences.Attempts to preserve the original colours, relative to white-point differences. Uses Black Point Compensation to avoid clipping of highlights and shadows.Attempts to provide brighter, more saturated colours, at the expense of colour relationships.Automatically choose rotation to fit the available space.Automatically place images in a gridBackgroundsBefore:BordersBottom:CMYK Profile:C_opyCan't show a colour managed preview unless you choose a Default RGB or Monitor profile in the Options->Colour Management dialog!CarouselCentimetersChecking .photoprint directory...Colour ManagementColour space:Columns:Copy the current image to the clipboardCreating layout...Crop the selected images to fill the available spaceCut the current image to the clipboardDefaultDefault Image ProfilesDesaturateDeselect all imagesDimensions:Display colours with no print simulationDisplay mode:Dither AlgorithmDuplicate the currently selected imageE_xportE_xport TIFF...EffectsError creating directory `%s': %sError creating temporary thumbnail file for `%s': %sError opening `%s': %sError reading `%s': %sError reading `%s': file contains no data.Error reading `%s': file is not a regular file or symbolic link.Error verifying `%s': %sExit PhotoPrintExport JPEG...Export TIFF...Export _JPEG...Export _TIFF...Export pages as JPEG filesExport pages as TIFF filesExporting...Fade images into a circular 'carousel' - ideal for CD labels.Failed to load image '%s': reason not known, probably a corrupt image fileFilename:Fill the page with copies of the currently selected imageGap:Generating print data...H (%):H:High-res PreviewsICC ProfilesIconImageImage InfoInchesInitializing...Inner Radius:JPEG Quality:LayoutLeft:Loading images...Loading preset...Manual scalingMillimetersMimics the original colours (including white point) as closely as possible, for side-by-side comparisons. Clips unattainable colours.MonitorMonitor Profile:NameNo rotation.NormalOpen FileOpen a presetOpen preset...Other...OutputOutput Profile:OverlapOverlap (%):Page Size and MarginsPage is already full!Page range:Page:Paste the contents of the clipboard as a new imagePathPerceptualPlease choose a valid ICC profilePlease provide a filename.Please select an image first!PointsPoster LayoutPreview how the printed page will lookPrint Pre_view...Print Queue:Print S_etup...Print an image in multiple pages, to be assembled into a posterPrint images on a single sheet, at a specified scale.Print pagesPrinterPrinter Model:Printer Profile:Printer SetupProfile:Progress...RGB Profile:Radius: %1.2fRelative ColorimetricRelative Colorimetric with BPCRemoveRemove all images from the layoutRemove selected images from the layoutRender high-resolution previews in the backgroundRendering intent:Resolution (dpi):Resolution:Right:Rotate 180 degrees.Rotate 90 degrees anticlockwise.Rotate 90 degrees clockwise.Rows:SaturationSave _As...Save _DefaultSave a presetSave as 16-bit:Save preset as the defaultSave preset with a new filenameSave preset...Segments:Select _AllSelect _NoneSelect a background...Select a border...Select all imagesSelect directory...Select the preferred scaling method.Select the units used throughout PhotoPrintSet Colour _Profile...Set Custom Profile...Set Image _Mask...Set _BackgroundSet a background image for the current layoutSet a border mask for the selected imageSet colour management optionsSet paths...Set printer driver and optionsSet search paths for ICC profiles, borders, etc.SharpenSimulate Prin_tSimulate PrintSimulate Print, Adapt WhiteSimulate Print, _Adapt WhiteSizeSome information about PhotoPrintStarting angle:TilesTop:Transferring images...UnitsUnits:V (%):V:W:Warm/CoolWarning: Image already has an embedded profile Assigning a new one will over-ride it!_180 Degrees_270 Degrees_90 Degrees_Add Image..._Auto_Auto Layout_Carousel_Clear Layout_Colour Management..._Cut_Duplicate Image_Edit_Effects..._File_Help_Image_Layout_Manual Size_None_Normal Display_Open Preset..._Options_Paste_Paths..._Poster_Print_Quit_Remove Image_Rotation_Save Preset_Scaling..._Units...bycentimeterscmininchesmillimetersmmpixelspointsptProject-Id-Version: photoprint 0.3.8 Report-Msgid-Bugs-To: blackfive@fakenhamweb.co.uk POT-Creation-Date: 2010-05-29 17:24+0100 PO-Revision-Date: 2008-10-25 13:25+0200 Last-Translator: Mogens Jaeger Language-Team: Danish MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: KBabel 1.11.4 %d grader KOmOm...Absolut kolorimetriskAktivTilføj billeder til det nuværende layoutTilføj...Tilføj billeder...Justér farverne pÃ¥ skærmen, sÃ¥ de imiterer farverne i udskriften, inklusiv papir-hvidJustér farverne pÃ¥ skærmen, sÃ¥ de imiterer farverne i udskriften, uden papir-hvidEfter:Tilstræber et venligt fotografisk resultat, gennem bevaring af forholdet mellem farverne, og undgÃ¥r klipning af uopnÃ¥elige farverAlgoritme:Tillad _beskæringMængde: %1.2fTilføj effekter til det valgte billedeFastsæt profil:Tilknyt en ICC-profil, eller en bruger farvegengivelsesmÃ¥de til billedetForsøger at bevare de oprindelige farver, relativt til hvid-punkts afvigelse.Forsøger at bevare de oprindelige farver, relativt til hvid-punkts afvigelse. Anvender sort-punkts kompensation for at undgÃ¥ klipning i højlys og skygger.Forsøger at frembringe lysere, mere mættede farver, pÃ¥ bekostning af forholdet mellem farverne.Automatisk valg af rotation til at passe ind i tilgængeligt omrÃ¥de.Automatisk placere billeder i et gitterBaggrundeFør:RammerBund:CMYK profil:K_opiKan ikke vise en farvestyret forhÃ¥ndsvisning før du har valgt en standard RGB- eller skærm-profil i Indstillinger->Farvestyring dialogen!KarruselCentimeterKontrollerer photoprint biblioteker...FarvestyringFarverum:Kolonne:Kopiér det valgte billede til klippebordetDanner layout...Beskær det valgte billede, sÃ¥ det udfylder det tilgængelige omrÃ¥deKlip det valgte billede til klippebordetStandardStandard-billed profilerAfmætningFravælg alle billederDimensioner:Vis farver uden printer-simuleringVisningstilstand:Dither-algoritmeDuplikér det valgte billedeE_xportE_ksporter TIFF...EffekterFejl ved dannelse af bibliotek `%s': %sFejl ved dannelse af midlertidig miniaturefil for `%s': %sFejl ved Ã¥bning af `%s': %sFejl ved læsning af `%s': %sFejl ved læsning af `%s': filen indeholder ingen data.Fejl ved læsning af `%s': det er ikke en almindelig fil eller symbolsk link.Fejl ved verificering af `%s': %sAfslut PhotoPrintEksportér JPEG...Eksportér TIFF...Export _JPEG...Export _TIFF...Exporter sider som JPEG filerEksporter sider som TIFF-filerEksporterer...Udton billeder i en cirkulær 'karrusel' - ideelt til cd-labels.Fejlede ved indlæsning af billede `%s': ukendt fejl, mÃ¥ske en ødelagt billedfilFilnavn:Fyld siden med kopier af det valgte billedeMellemrum:Danner printerdata...V (%):V:Højopløsnings-forhÃ¥ndsvisningICC profilerIkonBilledeBilled infoTommerInitialisering...Indre radius:JPEG kalitet:LayoutVenstre:Indlæser billeder...Indlæser forudindstillinger...Manuel skaleringMillimeterGengiver de originale farver (inklusive hvid-punkt) sÃ¥ godt som muligt, a.h.t. sammenligning. Klipper uopnÃ¥elige farver.SkærmSkærmprofil:NavnIngen rotation.NormalÃ…bn filÃ…bn et sæt af forudindstillingerÃ…ben forudindstillet...Andet...UddataUddataprofil:OverlapningOverlap (%):Papirstørrelser og marginerSiden er allerede fuld!SideomrÃ¥de:Side:Indsæt indholdet af klippebordet som et nyt billedeStiPerceptuelVælg en gyldig ICC-profilAngiv et filnavn.Vælg et billede først!PunkterPosterlayoutSe hvordan udskriften vil bliveUdskriv forhÃ¥nds_visning...Printerkø:Udskrifts indstilling_er...Udskriv et billede pÃ¥ flere sider, sÃ¥ de kan samles til en plakatUdskriv billeder pÃ¥ et enkelt ark, i angivet skala.Udskriv siderPrinterPrinter model:Printerprofil:Indstil printerProfil:Fremgang...RGB profil:Radius: %1.2fRelativ kolorimetriskRelativ kolorimetrisk med BPCFjernFjer alle billeder fra layoutetFjern valgt billede fra layoutetDan højopløsnings-forhÃ¥ndsvisninger i baggrundenFarvegengivelsesmÃ¥de:Opløsning (dpi):Opløsning:Højre:Rotér 180 graderRotér 90 grader mod uret.Rotér 90 grader med uret.Række:Mætning_Gem som...Gem stan_dardGem et sæt af forudindstillingerGem som 16-bit:Gem forudindstillet som standardGem forudindstilling med et filnavnGem forudindstillet...Udsnit:Vælg _altIngen _valgtVælg en baggrund...Vælg en ramme...Vælg alle billederVælg bibliotek...Vælg foretrukket skaleringsmetode.Vælg enheder til brug i hele PhotoPrintVælg farve_profil...Sæt brugerprofil...Vælg billedra_mmer...Vælg _baggrundVælg et baggrundsbillede til det nuværende layoutVælg en ramme til det valgte billedeSæt farvestyrings indstillingerSæt stier...Indstil printerdrivere og indstillingerSæt søgestier til ICC-profiler, rammer, m.m.SkærpeSimulér prin_tSimuler udskriftSimuler udskrift, tilpasset hvidSimulér print, _inklusiv hvidStørrelseNogle informationer om PhotoPrintStartvinkel:DeleTop:Overfører billeder...EnhederEnheder:L (%):L:B:Varm/koldAdvarsel: Billedet har allerede en indlejret profil Fastsættelse af en ny vil overskrive den!_180 grader_270 grader_90 grader_Tilføj billede..._Auto_Auto layout_Karrusel_Ryd layout_Farvestyring..._Klip_Duplikere billede_Redigér_Effekter..._Fil_HjælpB_illede_Layout_Manuel størrelse_Ingen_Standard visningÃ…ben f_orudindstillet..._Indstillinger_Indsæt_Stier..._Plakat_Udskriv_Afslut_Fjern billede_RotationGem forudind_stilling_Skalering..._Enheder...afcentimetrecmtommertommermillimetremmpixelspunkterpunkterphotoprint-0.4.2-pre2/po/quot.sed0000644000175000017500000000023111101462351013603 00000000000000s/"\([^"]*\)"/“\1â€/g s/`\([^`']*\)'/‘\1’/g s/ '\([^`']*\)' / ‘\1’ /g s/ '\([^`']*\)'$/ ‘\1’/g s/^'\([^`']*\)' /‘\1’ /g s/“â€/""/g photoprint-0.4.2-pre2/po/stamp-po0000644000175000017500000000001211400237673013607 00000000000000timestamp photoprint-0.4.2-pre2/po/fr.gmo0000644000175000017500000002072211400237673013251 00000000000000Þ•„<³\( ) / 8 N U f m ï ú  O ]j È Ô Ü ä ì €ú { „ ! ² Ä Ò Û î  ' 6C\cf n{ˆ ˜¦­³Å ׆ãjrƒ Š ”¢±º Ê ×ãé îù29 KX ht|‹ œ ª·Íìó2 8 C O] l v ‚¦¹Ëßö / MZi…•š±·¾ÅUÈ % 2 ? K Y f p~ ” ¦¬³ »ÈØ áëóú    % 1Q;  —¡ µÀÔªÝ ˆ•­xÂd; ¯·À Æ¸Ô  —'¤Ìá ö!#=at)§ÑÙ Ý çóù %2;T p}$:A)S)}§°Ã×ëò ù&#+OVoˆ § ²½Ôí - BL]q z† š¯Ì éô:#Qu"‹"®Ñé1-Hv‰¨ °ºÂmÆ 4 > J V a u ™ ² Ç ß è î õ !)!>!G!_! g!r!{! Œ!–!´!Ê!=6)W*oc8Ka Y'G<#,d75TSI_/:pPl4 UQer xV‚A(DNCX;EMh|qsi^Rtƒgb0uw >\%2H.}f !J m"jkZ`n1$?O+&]yzF~{3L9v[-„B@€AboutAbout...Absolute ColorimetricAdd...Adding images...After:Aims for pleasing photographic results by preserving relationships between colours, and avoiding clipping of unattainable coloursAlgorithm:Allow _CroppingAssign Profile:Attempts to preserve the original colours, relative to white-point differences.Attempts to provide brighter, more saturated colours, at the expense of colour relationships.BackgroundsBefore:BordersBottom:CMYK Profile:Can't show a colour managed preview unless you choose a Default RGB or Monitor profile in the Options->Colour Management dialog!CarouselCentimetersChecking .photoprint directory...Colour ManagementColour space:Columns:Creating layout...Default Image ProfilesDeselect all imagesDisplay mode:Export TIFF...Exporting...Generating print data...H (%):H:Height:ICC ProfilesImageInchesInitializing...Inner Radius:LayoutLeft:Loading images...Loading preset...MillimetersMimics the original colours (including white point) as closely as possible, for side-by-side comparisons. Clips unattainable colours.MonitorMonitor Profile:NormalOpen FileOpen a presetOpen preset...Other...Output Profile:Overlap (%):Page range:Page:PathPerceptualPlease provide a filename.Please select an image first!PointsPrint Pre_view...Print Queue:Print S_etup...Print pagesPrinterPrinter Model:Printer Profile:Printer SetupRGB Profile:Relative ColorimetricRelative Colorimetric with BPCRemoveRendering intent:Resolution (dpi):Right:Rotate 180 degrees.Rows:SaturationSave _As...Save a presetSave preset...Segments:Select _AllSelect _NoneSelect a background...Select a border...Select all imagesSelect directory...Set Colour _Profile...Set Custom Profile...Set Image _Mask...Set _BackgroundSet colour management optionsSet paths...Simulate PrintSimulate Print, Adapt WhiteStarting angle:Top:Transferring images...UnitsUnits:V (%):V:Warning: Image already has an embedded profile Assigning a new one will over-ride it!Width:_180 Degrees_270 Degrees_90 Degrees_Add Image..._Auto Layout_Carousel_Clear Layout_Colour Management..._Effects..._File_Help_Image_Layout_Manual Size_Open Preset..._Options_Paths..._Poster_Print_Quit_Remove Image_Rotation_Save Preset_Scaling..._Units...Project-Id-Version: Photoprint Report-Msgid-Bugs-To: blackfive@fakenhamweb.co.uk POT-Creation-Date: 2010-05-29 17:24+0100 PO-Revision-Date: 2006-12-03 16:52+0100 Last-Translator: Skadge Language-Team: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Poedit-Language: French À proposÀ proposColométrie absolueAjouter...Ajout des images...Après :Tente d'obtenir des résultats photographiques agréables en maintenant les relation entre les couleurs, et en évitant les artefacts liés aux couleurs hors de la gamme.Algotithme :Permettre le re_cadrageDéfinir le profil :Tente de préserver les couleurs originales, par rapport aux blancs qui peuvent bouger. Écarte les couleurs hors gamme.Rendu plus lumineux avec des couleurs plus saturées, aux dépends des relations entre les couleurs.Arrière-plansAvant :BorduresBas :Profil CMJN :Impossible d'afficher un aperçu avec la gestion des couleurs tant que vous n'avez pas sélectionné un profil de moniteur ou RVB par défaut dans le menu Options->Gestion des couleursCarousselCentimètresVérification du dossier .photoprint...Gestion des couleursEspace de couleurs :Colonnes :Création de la mise en page...Profils d'image par défautIl faut d'abord choisir une image !Mode d'affichage :Exporter au format TIFF...Exportation en cours...Génération des données d'impression...H (%) :H :Hauteur :Profils ICCImagePoucesInitialisation...Rayon intérieur :Mise en pageGauche :Chargement des images...Chargement des réglages...MillimètresImite au plus près les couleurs originales (y compris les blancs), pour permettre par exemple des comparaisons rigoureuses. Écarte les couleurs hors gamme.MoniteurProfile du moniteur :NormalOuvrir un fichierOuvrir les réglages pré-enregistrés...Ouvrir les réglages pré-enregistrés...Autre...Profil de sortie :Superposition (%) :Ensemble de pages :Page :CheminPerceptuelIl faut spécifier un nom de fichier !Il faut d'abord choisir une image !PointsImpression de l'a_perçuImpressions en attente :Confi_guration de l'impressionImprimanteImprimanteModèle d'imprimante :Profil de l'imprimante :Configuration de l'impressionProfil RVB :Colométrie relativeColométrie relativeSupprimerRendu désiré :Résolution (ppp) :Droite :180 degrésLignes :SaturationEnregistrer _sous...Enregistrer les réglages...Enregistrer les réglages...Segments :_Tout sélectionnerTout _déselectionnerChoisir un arrière-plan...Choisir une bordure...Il faut d'abord choisir une image !Choisir un dossier...Définir un _profil de couleurs...Choisir un profil personnalisé...Appliquer un _masque...Définir un _arrière-planGestion des couleursDéfinir les chemins...Simuler une impressionSimuler une impression en adaptant les blancsAngle de départ :Haut :Transfert des images...UnitésUnités :V (%) :V :Attention : cette image est déjà accompagnée d'un profil En définir un nouveau écrasera le précédent !Largeur :180 degrés270 degrés90 degrésAjout des images...Mise en page _automatiqueCaroussel_Effacer la mise en pageGestion des couleursAppliquer un _masque..._Fichier_Aide_Image_Mise en page_Taille manuelleOuvrir les réglages pré-enregistrés..._OptionsDéfinir les chemins..._PosterImprimante_Quitter_Retirer l'image_Rotation_Enregistrer les réglages...Mise à l'échelle...Unitésphotoprint-0.4.2-pre2/po/nl.po0000644000175000017500000011066611400237672013115 00000000000000# Nederlandse vertaling van PhotoPrint. # Copyright (C) 2009 Lex Wernars # This file is distributed under the same license as the PACKAGE package. # # Lex Wernars , 2009. # Kenny Verstraete , 2010. msgid "" msgstr "" "Project-Id-Version: photoprint 0.4.1-pre1\n" "Report-Msgid-Bugs-To: blackfive@fakenhamweb.co.uk\n" "POT-Creation-Date: 2010-05-29 17:24+0100\n" "PO-Revision-Date: 2010-02-08 23:29+0100\n" "Last-Translator: Kenny Verstraete \n" "Language-Team: Dutch <>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: dialogs.cpp:75 msgid "Colour Response Hash" msgstr "Kleur reactie hash" #: dialogs.cpp:96 msgid "" "This \"hash\" value is derived from the printer driver's output,\n" "and can be used to verify that no changes have occurred which\n" "might invalidate a colour profile for the printer" msgstr "" "Deze \"hash\" waarde is afgeleid van de uitvoer van de printerdriver,\n" "en kan gebruikt worden om te controleren dat er geen veranderingen " "plaatsgevonden hebben die\n" "mogelijks een kleurenprofiel voor de printer ongeldig maken" #: dialogs.cpp:108 msgid "Current hash:" msgstr "Huidige hash:" #: dialogs.cpp:112 msgid "Stored in preset:" msgstr "Opgeslagen in voorkeur:" #: dialogs.cpp:118 msgid "No hash stored yet" msgstr "Nog geen hash opgeslagen" #: dialogs.cpp:127 msgid "" "Calculating hash of printer response\n" "with current driver settings" msgstr "" "Hash berekenen van printer reactie\n" "met de huidige driverinstellingen" #: dialogs.cpp:132 msgid "Store in preset" msgstr "Opslaan in voorkeur" #: dialogs.cpp:156 msgid "" "MATCH - No changes in driver\n" "or printer settings detected" msgstr "" "PASSEND - geen veranderingen in driver\n" "of printerinstellingen gedetecteerd" #: dialogs.cpp:162 msgid "" "This hash can be used to detect changes\n" "in printer settings or driver versions\n" "that might invalidate colour profiles" msgstr "" "Deze hash kan gebruikt worden om wijzigingen te detecteren\n" "in printerinstellingen of driverversies\n" "die ervoor kunnen zorgen dat kleurenprofielen ongeldig gemaakt worden" #: dialogs.cpp:164 msgid "" "MISMATCH - change detected in printer response!\n" "Printer's colour profile might no longer be accurate." msgstr "" "NIET PASSEND - verandering gedetecteerd in printer reactie!\n" "Het kleurenprofiel van de printer is mogelijk niet langer accuraat." #: dialogs.cpp:287 msgid "Printer Setup" msgstr "Printer instellingen" #: dialogs.cpp:301 msgid "Output" msgstr "Uitvoer" #: dialogs.cpp:338 msgid "About" msgstr "Over" #: dialogs.cpp:349 msgid "PhotoPrint " msgstr "PhotoPrint " #: dialogs.cpp:388 msgid "Set paths..." msgstr "Paden instellen..." #: dialogs.cpp:413 msgid "ICC Profiles" msgstr "ICC Profielen" #: dialogs.cpp:445 msgid "Borders" msgstr "Randen" #: dialogs.cpp:476 msgid "Backgrounds" msgstr "Achtergronden" #: dialogs.cpp:504 msgid "Select a border..." msgstr "Kies een rand..." #: dialogs.cpp:551 msgid "Export TIFF..." msgstr "Exporteer naar TIFF..." #: dialogs.cpp:577 dialogs.cpp:776 msgid "Page range:" msgstr "Paginabereik:" #: dialogs.cpp:590 dialogs.cpp:786 msgid "Resolution (dpi):" msgstr "Resolutie (dpi):" #: dialogs.cpp:598 msgid "Save as 16-bit:" msgstr "Opslaan als 16-bit:" #: dialogs.cpp:617 dialogs.cpp:821 msgid "Output Profile:" msgstr "Uitvoer profiel:" #: dialogs.cpp:677 dialogs.cpp:914 msgid "Please provide a filename." msgstr "Geef een bestandsnaam op." #: dialogs.cpp:708 dialogs.cpp:892 msgid "Exporting..." msgstr "Exporteren..." #: dialogs.cpp:747 msgid "Export JPEG..." msgstr "Exporteer naar JPEG..." #: dialogs.cpp:805 msgid "JPEG Quality:" msgstr "JPEG kwaliteit:" #: dialogs.cpp:931 msgid "Select a background..." msgstr "Kies een achtergrond..." #: dialogs.cpp:1023 pp_menu_image.cpp:276 msgid "Please select an image first!" msgstr "Kies eerst een afbeelding!" #: dialogs.cpp:1054 msgid "Set Custom Profile..." msgstr "Stel eigen profiel in..." #: dialogs.cpp:1066 msgid "Before:" msgstr "Voor:" #: dialogs.cpp:1070 msgid "After:" msgstr "Na:" #: dialogs.cpp:1084 msgid "" "Can't show a colour managed\n" "preview unless you choose\n" "a Default RGB or Monitor profile\n" "in the Options->Colour Management\n" "dialog!" msgstr "" "Kan geen kleur beheerd voorbeeld\n" "tonen, vooraleer er gekozen is voor\n" "een standaard RGB- of beeldschermprofiel\n" "in de Opties->Kleurbeheer\n" "dialoog!" #: dialogs.cpp:1109 msgid "" "Warning: Image already has an embedded profile\n" "Assigning a new one will over-ride it!" msgstr "" "Waarschuwing: De afbeelding bevat al een kleurprofiel\n" "Een nieuw kiezen zal het oude overschrijven!" #: dialogs.cpp:1126 msgid "Assign Profile:" msgstr "Toewijzen profiel:" #: dialogs.cpp:1134 pp_cms.cpp:349 msgid "Rendering intent:" msgstr "Gewenst resultaat:" #: effects/ppeffect_temperature.cpp:28 msgid "Warm/Cool" msgstr "Warm/koud" #: effects/effectselector.cpp:222 msgid "Active" msgstr "Actief" #: effects/effectselector.cpp:231 msgid "Icon" msgstr "Icoon" #: effects/effectselector.cpp:243 msgid "Name" msgstr "Naam" #: effects/ppeffect_desaturate.cpp:25 msgid "Desaturate" msgstr "Onverzadigen" #: effects/effectwidget_tempchange.cpp:57 #, c-format msgid "%d degrees K" msgstr "%d graden Kelvin" #: effects/ppeffect_unsharpmask.cpp:25 msgid "Sharpen" msgstr "Verscherpen" #: effects/effectwidget_unsharpmask.cpp:66 #, c-format msgid "Radius: %1.2f" msgstr "Radius: %1.2f" #: effects/effectwidget_unsharpmask.cpp:72 #, c-format msgid "Amount: %1.2f" msgstr "Hoeveelheid: %1.2f" #: menucheck.cpp:23 pp_menu_file.cpp:135 msgid "_File" msgstr "_Bestand" #: menucheck.cpp:25 pp_menu_file.cpp:137 msgid "_Open Preset..." msgstr "_Open voorkeur..." #: menucheck.cpp:25 pp_menu_file.cpp:137 msgid "Open a preset" msgstr "Open een voorkeur" #: menucheck.cpp:26 pp_menu_file.cpp:138 msgid "_Save Preset" msgstr "_Sla voorkeur op" #: menucheck.cpp:26 pp_menu_file.cpp:138 msgid "Save a preset" msgstr "Sla een voorkeur op" #: menucheck.cpp:27 pp_menu_file.cpp:139 msgid "Save _As..." msgstr "Opslaan als..." #: menucheck.cpp:27 pp_menu_file.cpp:139 msgid "Save preset with a new filename" msgstr "Sla voorkeur op met een nieuwe bestandsnaam" #: menucheck.cpp:28 pp_menu_file.cpp:140 msgid "Save _Default" msgstr "Opslaan stan_daard-instellingen" #: menucheck.cpp:28 pp_menu_file.cpp:140 msgid "Save preset as the default" msgstr "Sla voorkeur op als standaard" #: menucheck.cpp:29 msgid "E_xport TIFF..." msgstr "E_xporteer naar TIFF..." #: menucheck.cpp:29 pp_menu_file.cpp:142 msgid "Export pages as TIFF files" msgstr "Exporteer pagina's als TIFF-bestanden" #: menucheck.cpp:30 pp_menu_file.cpp:144 msgid "Print Pre_view..." msgstr "Afdruk_voorbeeld" #: menucheck.cpp:30 pp_menu_file.cpp:144 msgid "Preview how the printed page will look" msgstr "Voorbeeldweergave van hoe de afgedrukte pagina er zal uitzien" #: menucheck.cpp:31 pp_menu_file.cpp:145 msgid "Print S_etup..." msgstr "Afdrukinst_ellingen" #: menucheck.cpp:31 pp_menu_file.cpp:145 msgid "Set printer driver and options" msgstr "Stel de printerdriver en opties in" #: menucheck.cpp:32 pp_menu_file.cpp:146 msgid "_Print" msgstr "_Afdrukken" #: menucheck.cpp:32 pp_menu_file.cpp:146 msgid "Print pages" msgstr "Pagina's afdrukken" #: menucheck.cpp:33 pp_menu_file.cpp:147 msgid "_Quit" msgstr "_Afsluiten" #: menucheck.cpp:33 pp_menu_file.cpp:147 msgid "Exit PhotoPrint" msgstr "PhotoPrint afsluiten" #: menucheck.cpp:62 pp_menu_layout.cpp:131 msgid "_Layout" msgstr "_Layout" #: menucheck.cpp:63 pp_menu_image.cpp:316 msgid "_Image" msgstr "Afbeeld_ing" #: menucheck.cpp:64 pp_menu_options.cpp:108 msgid "_Options" msgstr "_Opties" #: menucheck.cpp:65 pp_menu_help.cpp:29 msgid "_Help" msgstr "_Help" #: menucheck.cpp:67 pp_menu_layout.cpp:133 msgid "_Clear Layout" msgstr "Layout ops_chonen" #: menucheck.cpp:67 pp_menu_layout.cpp:133 msgid "Remove all images from the layout" msgstr "Verwijder alle afbeeldingen van de layout" #: menucheck.cpp:68 pp_menu_layout.cpp:134 msgid "Set _Background" msgstr "Stel _Achtergrond in" #: menucheck.cpp:68 pp_menu_layout.cpp:134 msgid "Set a background image for the current layout" msgstr "Stel een achtergrondafbeelding in voor de huidige layout" #: menucheck.cpp:70 pp_menu_image.cpp:318 msgid "_Add Image..." msgstr "_Afbeelding toevoegen" #: menucheck.cpp:70 pp_menu_image.cpp:318 msgid "Add images to the current layout" msgstr "_Afbeeldingen toevoegen aan de huidige layout" #: menucheck.cpp:71 pp_menu_image.cpp:319 msgid "_Remove Image" msgstr "Verwijde_r afbeelding" #: menucheck.cpp:71 pp_menu_image.cpp:319 msgid "Remove selected images from the layout" msgstr "Verwijder de geselecteerde afbeeldingen van de layout" #: menucheck.cpp:73 pp_menu_image.cpp:323 msgid "_Rotation" msgstr "_Rotatie" #: menucheck.cpp:75 msgid "Set Image _Mask..." msgstr "Stel afbeeldingsmasker in..." #: menucheck.cpp:75 pp_menu_image.cpp:325 msgid "Set a border mask for the selected image" msgstr "Stel een randmasker in voor de gekozen afbeelding" #: menucheck.cpp:76 msgid "_Effects..." msgstr "_Effecten..." #: menucheck.cpp:76 msgid "Apply effects to the selected image" msgstr "Effecten toepassen op de geselecteerde afbeelding" #: menucheck.cpp:77 pp_menu_image.cpp:327 msgid "Set Colour _Profile..." msgstr "Stel kleurenprofiel in..." #: menucheck.cpp:77 pp_menu_image.cpp:327 msgid "Assign an ICC profile or custom rendering intent to the image" msgstr "Wijs een ICC-profiel of een ander profiel toe aan de afbeelding" #: menucheck.cpp:79 pp_menu_options.cpp:110 msgid "_Paths..." msgstr "_Paden..." #: menucheck.cpp:79 pp_menu_options.cpp:110 msgid "Set search paths for ICC profiles, borders, etc." msgstr "Stel de zoekpaden in voor de ICC-profielen, randen, etc." #: menucheck.cpp:80 pp_menu_options.cpp:111 msgid "_Colour Management..." msgstr "_Kleurbeheer..." #: menucheck.cpp:80 pp_menu_options.cpp:111 msgid "Set colour management options" msgstr "Stel kleurbeheer opties in" #: menucheck.cpp:81 pp_menu_options.cpp:113 msgid "_Units..." msgstr "_Eenheden..." #: menucheck.cpp:81 pp_menu_options.cpp:113 msgid "Select the units used throughout PhotoPrint" msgstr "Kies de eenheden die door PhotoPrint gebruikt worden" #: menucheck.cpp:82 pp_menu_options.cpp:114 msgid "_Scaling..." msgstr "_Schalen..." #: menucheck.cpp:82 pp_menu_options.cpp:114 msgid "Select the preferred scaling method." msgstr "Kies de gewenste manier om te schalen." #: menucheck.cpp:84 pp_menu_help.cpp:31 msgid "About..." msgstr "Over..." #: menucheck.cpp:84 pp_menu_help.cpp:31 msgid "Some information about PhotoPrint" msgstr "Informatie over PhotoPrint" #: menucheck.cpp:89 pp_menu_image.cpp:332 msgid "Allow _Cropping" msgstr "Bij_snijden toestaan" #: menucheck.cpp:89 pp_menu_image.cpp:332 msgid "Crop the selected images to fill the available space" msgstr "Afbeelding bijsnijden om de beschikbare ruimte op te vullen" #: menucheck.cpp:94 pp_menu_layout.cpp:139 msgid "_Auto Layout" msgstr "_Automatische layout" #: menucheck.cpp:94 pp_menu_layout.cpp:139 msgid "Automatically place images in a grid" msgstr "Plaats de afbeeldingen automatisch in een raster" #: menucheck.cpp:95 pp_menu_layout.cpp:140 msgid "_Poster" msgstr "_Poster" #: menucheck.cpp:95 pp_menu_layout.cpp:140 msgid "Print an image in multiple pages, to be assembled into a poster" msgstr "" "Afbeelding afdrukken op meerdere pagina's, om daarna een poster samen te " "stellen." #: menucheck.cpp:96 pp_menu_layout.cpp:141 msgid "_Carousel" msgstr "_Carrousel" #: menucheck.cpp:96 pp_menu_layout.cpp:141 msgid "Fade images into a circular 'carousel' - ideal for CD labels." msgstr "" "Verwerk afbeeldingen tot een cirkelvormig 'carrousel' - ideaal voor CD-" "labels." #: menucheck.cpp:97 pp_menu_layout.cpp:142 msgid "_Manual Size" msgstr "Hand_matige grootte" #: menucheck.cpp:97 pp_menu_layout.cpp:142 msgid "Print images on a single sheet, at a specified scale." msgstr "Afbeeldingen afdrukken op een enkele pagina, op een bepaalde schaal." #: menucheck.cpp:101 pp_menu_image.cpp:337 msgid "_Auto" msgstr "_Auto" #: menucheck.cpp:101 pp_menu_image.cpp:337 msgid "Automatically choose rotation to fit the available space." msgstr "Automatisch rotatie kiezen om de beschikbare ruimte te vullen." #: menucheck.cpp:102 pp_menu_image.cpp:338 msgid "_None" msgstr "Gee_n" #: menucheck.cpp:102 pp_menu_image.cpp:338 msgid "No rotation." msgstr "Geen rotatie" #: menucheck.cpp:103 pp_menu_image.cpp:339 msgid "_90 Degrees" msgstr "_90 graden" #: menucheck.cpp:103 pp_menu_image.cpp:339 msgid "Rotate 90 degrees clockwise." msgstr "Roteer 90 graden klokgewijs." #: menucheck.cpp:104 pp_menu_image.cpp:340 msgid "_180 Degrees" msgstr "_180 graden" #: menucheck.cpp:104 pp_menu_image.cpp:340 msgid "Rotate 180 degrees." msgstr "Roteer 180 graden." #: menucheck.cpp:105 pp_menu_image.cpp:341 msgid "_270 Degrees" msgstr "_270 graden" #: menucheck.cpp:105 pp_menu_image.cpp:341 msgid "Rotate 90 degrees anticlockwise." msgstr "Roteer 90 graden ani-klokgewijs." #: menucheck.cpp:229 msgid "Dither Algorithm" msgstr "Dither algoritme" #: photoprint.cpp:135 msgid "Initializing..." msgstr "Initialiseren..." #: photoprint.cpp:144 msgid "Checking .photoprint directory..." msgstr "Bezig met controleren van .photoprint map..." #: photoprint.cpp:149 msgid "Loading preset..." msgstr "Voorkeur laden...." #: photoprint.cpp:154 msgid "Creating layout..." msgstr "Layout maken..." #: photoprint.cpp:197 msgid "Loading images..." msgstr "Afbeeldingen laden..." #: pixbufthumbnail/egg-pixbuf-thumbnail.c:349 #, c-format msgid "Error creating directory `%s': %s" msgstr "Fout bij het aanmaken van map `%s': %s" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:463 #, c-format msgid "Error opening `%s': %s" msgstr "Fout bij openen `%s': %s" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:481 #, c-format msgid "Error reading `%s': file contains no data." msgstr "Leesfout `%s': bestand bevat geen data." #: pixbufthumbnail/egg-pixbuf-thumbnail.c:505 #, c-format msgid "Error reading `%s': %s" msgstr "Leesfout `%s': %s" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:540 #, c-format msgid "" "Failed to load image '%s': reason not known, probably a corrupt image file" msgstr "" "Laden van afbeelding '%s' mislukt: Reden onbekend, waarschijnlijk een " "corrupt afbeeldingsbestand" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:613 #, c-format msgid "Error verifying `%s': %s" msgstr "Fout bij verifiëren `%s': %s" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:629 #, c-format msgid "Error reading `%s': file is not a regular file or symbolic link." msgstr "Leesfout `%s': bestand is geen bestand en ook geen snelkoppeling." #: pixbufthumbnail/egg-pixbuf-thumbnail.c:1071 #, c-format msgid "Error creating temporary thumbnail file for `%s': %s" msgstr "Fout bij het maken van een thumbnail voor `%s': %s" #: pp_cms.cpp:148 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "will first be converted to the default CMYK profile" msgstr "" "Printerprofiel is een apparaatlink met CMYK invoer - RGB afbeeldingen\n" "zullen eerst worden geconverteerd naar het standaard CMYK profiel." #: pp_cms.cpp:154 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "cannot be printed without a default CMYK profile." msgstr "" "Printerprofiel is een apparaatlink met CMYK invoer - RGB afbeeldingen\n" "kunnen niet afgedrukt worden met een standaard CMYK profiel." #: pp_cms.cpp:160 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "cannot be printed without a default RGB and CMYK profile." msgstr "" "Printerprofiel is een apparaatlink met CMYK invoer - RGB afbeeldingen\n" "kunnen niet afgedrukt worden zonder een standaard RGB en CMYK profiel." #: pp_cms.cpp:168 msgid "" "Printer profile is a devicelink - RGB images with embedded profiles\n" "will first be converted to the default RGB profile." msgstr "" "Printerprofiel is een apparaatlink - RGB afbeeldingen met ingebedde " "profielen\n" "zullen eerst geconverteerd worden naar het standaard RGB profiel." #: pp_cms.cpp:174 msgid "" "Printer profile is a devicelink - RGB images with embedded profiles will " "not\n" "print correctly, since there is no default RGB profile." msgstr "" "Printerprofiel is een apparaatlink - RGB afbeeldingen met ingebedde " "profielen zullen niet\n" "correct afgedrukt worden daar er geen standaard RGB profiel is." #: pp_cms.cpp:180 msgid "RGB images will print correctly" msgstr "RGB afbeeldingen zullen correct afdrukken" #: pp_cms.cpp:185 msgid "" "RGB images can be printed but colours depend on the driver\n" "(Colours will be accurate for images that contain an embedded profile)" msgstr "" "RGB afbeeldingen kunnen worden afgedrukt maar de kleuren hangen af van de " "driver\n" "(kleuren zullen accuraat zijn voor afbeeldingen die een ingebed profiel " "bevatten)" #: pp_cms.cpp:190 msgid "RGB images can be printed but colours depend on the driver" msgstr "" "RGB afbeeldingen kunnen worden afgedrukt maar de kleuren hangen af van de " "driver" #: pp_cms.cpp:195 msgid "" "RGB images can only be printed if they have an embedded profile\n" "(Workflow is CMYK and there is no default RGB profile)" msgstr "" "RGB afbeeldingen kunnen alleen afgedrukt worden als ze een ingebed profiel " "hebben\n" "(Werkstroom is CMYK en er is geen standaard RGB profiel)" #: pp_cms.cpp:200 msgid "" "RGB images cannot be printed\n" "(Workflow is CMYK and there is no printer profile)" msgstr "" "RGB afbeeldingen kunnen niet afgedrukt worden\n" "(Werkstroom is CMYK en er is geen printerprofiel)" #: pp_cms.cpp:215 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "will first be converted to the default RGB profile" msgstr "" "Printerprofiel is een apparaatlink met RGB invoer - CMYK afbeeldingen\n" "zullen eerst geconverteerd worden naar het standaard RGB profiel." #: pp_cms.cpp:221 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "cannot be printed without a default RGB profile." msgstr "" "Printerprofiel is een apparaatlink met RGB invoer - CMYK afbeeldingen\n" "kunnen niet afgedrukt worden met een standaard RGB profiel." #: pp_cms.cpp:227 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "cannot be printed without a default RGB and CMYK profile." msgstr "" "Printerprofiel is een apparaatlink met RGB invoer - CMYK afbeeldingen\n" "kunnen niet worden afgedrukt zonder een standaard RGB en CMYK profiel." #: pp_cms.cpp:234 msgid "" "Printer profile is a devicelink - CMYK images with embedded profiles\n" "will first be converted to the default CMYK profile." msgstr "" "Printerprofiel is een apparaatlink - CMYK afbeeldingen met ingebedde " "profielen\n" "zullen eerst geconverteerd worden naar het standaard CMYK profiel." #: pp_cms.cpp:240 msgid "" "Printer profile is a devicelink - CMYK images with embedded profiles will " "not\n" "print correctly since there is no default CMYK profile." msgstr "" "Printerprofiel is een apparaatlink - CMYK afbeeldingen met ingebedde " "profielen zullen niet\n" "correct afgedrukt worden daar er geen standaard CMYK profiel is." #: pp_cms.cpp:246 msgid "CMYK images will print correctly" msgstr "CMYK afbeeldingen zullen correct worden afgedrukt" #: pp_cms.cpp:251 msgid "" "CMYK images can be printed but colours depend on the driver\n" "(Colours will be accurate for images that contain an embedded profile)" msgstr "" "CMYK afbeeldingen kunnen afgedrukt worden maar de kleuren hangen af van de " "driver\n" "(Kleuren zullen accuraat zijn voor afbeeldingen die een ingebed profiel " "hebben)" #: pp_cms.cpp:256 msgid "CMYK images can be printed but colours depend on the driver" msgstr "" "CMYK afbeeldingen kunnen afgedrukt worden maar de kleuren hangen af van de " "driver" #: pp_cms.cpp:261 msgid "" "CMYK images can only be printed if they have an embedded profile\n" "(Workflow is RGB and there is no default CMYK profile)" msgstr "" "CMYK afbeeldingen kunnen alleen afgedrukt worden als ze een ingebed profiel " "hebben\n" "(Werkstroom is RGB en er is geen standaard CMYK profiel)" #: pp_cms.cpp:266 msgid "" "CMYK images cannot be printed\n" "(Workflow is RGB and there is no printer profile)" msgstr "" "CMYK afbeeldingen kunnen niet afgedrukt worden\n" "(Werkstroom is RGB en er is geen printerprofiel)" #: pp_cms.cpp:276 msgid "Images will be displayed correctly" msgstr "Afbeeldingen zullen correct weergegeven worden" #: pp_cms.cpp:281 msgid "" "Images will only be displayed correctly if they have an embedded profile" msgstr "" "Afbeeldingen zullen alleen correct worden weergegeven als ze een ingebed " "profiel hebben" #: pp_cms.cpp:286 msgid "Images will not be displayed correctly" msgstr "Afbeeldingen zullen niet correct worden weergegeven" #: pp_cms.cpp:317 msgid "Printer" msgstr "Printer" #: pp_cms.cpp:332 msgid "Printer Profile:" msgstr "Printerprofiel:" #: pp_cms.cpp:364 msgid "Colour space:" msgstr "Kleurgebied:" #: pp_cms.cpp:372 msgid "RGB" msgstr "RGB" #: pp_cms.cpp:372 msgid "Send Red, Green and Blue data to the printer driver" msgstr "Stuur Rood, Groen en Blauw data naar de printerdriver" #: pp_cms.cpp:373 msgid "CMYK" msgstr "CMYK" #: pp_cms.cpp:373 msgid "Send Cyan, Magenta, Yellow and Black data to the printer driver" msgstr "Stuur Cyaan, Magenta, Geel en Zwart data naar de printerdriver" #: pp_cms.cpp:383 msgid "Monitor" msgstr "Monitor" #: pp_cms.cpp:396 msgid "Monitor Profile:" msgstr "Monitorprofiel:" #: pp_cms.cpp:411 msgid "Display mode:" msgstr "Display modus:" #: pp_cms.cpp:420 msgid "Normal" msgstr "Normaal" #: pp_cms.cpp:420 msgid "Displays images' original colours, transformed to suit the monitor" msgstr "" "Geeft de afbeelding zijn originele kleuren weer, aangepast aan de monitor" #: pp_cms.cpp:421 msgid "Simulate Print" msgstr "Simuleer afdruk" #: pp_cms.cpp:421 msgid "" "Simulates how colours will look when printed, imitating the paper's white " "point." msgstr "" "Simuleert hoe kleuren eruit zullen zien wanneer afgedrukt, met imitatie van " "het papier z'n witbalans." #: pp_cms.cpp:422 msgid "Simulate Print, Adapt White" msgstr "Simuleer afdruk, pas witbalans aan" #: pp_cms.cpp:422 msgid "" "Simulates how colours will look when printed, adapting colours for the " "monitor's white point." msgstr "" "Simuleert hoe de kleuren eruit zullen zien wanneer afgedrukt, aangepast aan " "de witbalans van de monitor." #: pp_cms.cpp:432 msgid "Default Image Profiles" msgstr "Standaard afbeeldingsprofielen" #: pp_cms.cpp:447 msgid "RGB Profile:" msgstr "RGB profiel:" #: pp_cms.cpp:464 msgid "CMYK Profile:" msgstr "CMYK profiel:" #: pp_cms.cpp:666 msgid "Colour Management" msgstr "Kleurbeheer" #: pp_histogram.cpp:282 msgid "Histogram" msgstr "Histogram" #: pp_imagecontrol.cpp:134 msgid "Effects" msgstr "Effecten" #: pp_imageinfo.cpp:107 msgid "in" msgstr "in" #: pp_imageinfo.cpp:110 msgid "pt" msgstr "pt" #: pp_imageinfo.cpp:115 msgid "cm" msgstr "cm" #: pp_imageinfo.cpp:120 msgid "mm" msgstr "mm" #: pp_imageinfo.cpp:168 msgid "Image Info" msgstr "Afbeeldingsinformatie" #: pp_imageinfo.cpp:195 msgid "Filename:" msgstr "Bestandsnaam:" #: pp_imageinfo.cpp:208 msgid "Dimensions:" msgstr "Afmetingen:" #: pp_imageinfo.cpp:228 msgid "Resolution:" msgstr "Resolutie:" #: pp_imageinfo.cpp:241 msgid "Profile:" msgstr "Profiel:" #: pp_imageinfo.cpp:351 msgid "pixels" msgstr "pixels" #: pp_imageinfo.cpp:380 profilemanager/profilemanager.cpp:831 msgid "Default" msgstr "Standaard" #: pp_layout_carousel.cpp:247 pp_layout_carousel.cpp:379 pp_layout_nup.cpp:222 #: pp_layout_poster.cpp:312 pp_layout_poster.cpp:464 pp_layout_single.cpp:233 #: printpreview.cpp:146 msgid "Page:" msgstr "Pagina:" #: pp_layout_carousel.cpp:275 msgid "Carousel" msgstr "Carrousel" #: pp_layout_carousel.cpp:291 msgid "Segments:" msgstr "Segmenten:" #: pp_layout_carousel.cpp:306 msgid "Overlap (%):" msgstr "Overlap (%):" #: pp_layout_carousel.cpp:321 msgid "Starting angle:" msgstr "Starthoek:" #: pp_layout_carousel.cpp:336 msgid "Inner Radius:" msgstr "Binnenradius:" #: pp_layout_poster.cpp:339 msgid "Poster Layout" msgstr "Poster layout" #: pp_layout_poster.cpp:354 msgid "Size" msgstr "Grootte" #: pp_layout_poster.cpp:366 pp_layout_poster.cpp:390 msgid "by" msgstr "door" #: pp_layout_poster.cpp:378 msgid "Tiles" msgstr "Tegels" #: pp_layout_poster.cpp:400 msgid "Overlap" msgstr "Overlap" #: pp_layout_poster.cpp:414 pp_pageextent.cpp:262 msgid "H:" msgstr "H:" #: pp_layout_poster.cpp:426 msgid "V:" msgstr "V:" #: pp_layout_single.cpp:261 msgid "Manual scaling" msgstr "Handmatig schalen" #: pp_layout_single.cpp:277 msgid "H (%):" msgstr "H (%):" #: pp_layout_single.cpp:291 msgid "V (%):" msgstr "V (%):" #: pp_mainwindow.cpp:228 msgid "Transferring images..." msgstr "Overzetten van afbeeldingen..." #: pp_menu_edit.cpp:37 msgid "_Edit" msgstr "B_ewerken" #: pp_menu_edit.cpp:39 msgid "Select _All" msgstr "_Alles selecteren" #: pp_menu_edit.cpp:39 msgid "Select all images" msgstr "Selecteer alle afbeeldingen" #: pp_menu_edit.cpp:40 msgid "Select _None" msgstr "_Niets selecteren" #: pp_menu_edit.cpp:40 msgid "Deselect all images" msgstr "Deselcteer alle afbeeldingen" #: pp_menu_edit.cpp:41 msgid "_Cut" msgstr "_Knippen" #: pp_menu_edit.cpp:41 msgid "Cut the current image to the clipboard" msgstr "Knip de huidige afbeelding naar het klembord" #: pp_menu_edit.cpp:42 msgid "C_opy" msgstr "K_opiëren" #: pp_menu_edit.cpp:42 msgid "Copy the current image to the clipboard" msgstr "Kopieer de huidige afbeelding naar het klembord" #: pp_menu_edit.cpp:43 msgid "_Paste" msgstr "_Plakken" #: pp_menu_edit.cpp:43 msgid "Paste the contents of the clipboard as a new image" msgstr "Plak de inhoud van het klembord als een nieuwe afbeelding" #: pp_menu_file.cpp:38 msgid "Open preset..." msgstr "Voorkeur openen..." #: pp_menu_file.cpp:64 msgid "Save preset..." msgstr "Voorkeur opslaan..." #: pp_menu_file.cpp:115 msgid "Generating print data..." msgstr "Geneneer print data..." #: pp_menu_file.cpp:141 msgid "E_xport" msgstr "E_xporteer" #: pp_menu_file.cpp:142 msgid "Export _TIFF..." msgstr "Export naar _TIFF..." #: pp_menu_file.cpp:143 msgid "Export _JPEG..." msgstr "Export naar _JPEG..." #: pp_menu_file.cpp:143 msgid "Export pages as JPEG files" msgstr "Exporteer pagina's als JPEG bestanden" #: pp_menu_shortcuts.cpp:78 msgid "_Shortcuts" msgstr "_Snelkoppelingen" #: pp_menu_shortcuts.cpp:131 msgid "Error fetching preset name!" msgstr "" #: pp_menu_image.cpp:64 msgid "Open File" msgstr "Bestand openen" #: pp_menu_image.cpp:104 msgid "Adding images..." msgstr "Afbeeldingen toevoegen..." #: pp_menu_image.cpp:186 msgid "Page is already full!" msgstr "Pagina is al vol!" #: pp_menu_image.cpp:320 msgid "_Duplicate Image" msgstr "_Dupliceer afbeelding" #: pp_menu_image.cpp:320 msgid "Duplicate the currently selected image" msgstr "Dupliceer de huidig geselecteerde afbeelding" #: pp_menu_image.cpp:321 msgid "Duplicate to _Fill Page" msgstr "Dupliceer om de pagina op te _vullen" #: pp_menu_image.cpp:321 msgid "Fill the page with copies of the currently selected image" msgstr "Vul de pagina met duplicaten van de huidig geselecteerde afbeelding" #: pp_menu_image.cpp:325 msgid "Set Image _Border..." msgstr "Stel afbeeldingsrand in..." #: pp_menu_options.cpp:112 msgid "_Colour Response Hash..." msgstr "_Kleur reactie hash..." #: pp_menu_options.cpp:112 msgid "Create a hash for verifying printer settings" msgstr "Maak een hash aan voor verificatie van printerinstellingen" #: pp_menu_options.cpp:118 msgid "High-res Previews" msgstr "Hoge-resolutie voorbeeldweergave" #: pp_menu_options.cpp:118 msgid "Render high-resolution previews in the background" msgstr "Hoge-resolutie voorbeeldweergave maken op de achtergrond" #: pp_menu_options.cpp:122 msgid "_Normal Display" msgstr "_Normaal beeld" #: pp_menu_options.cpp:122 msgid "Display colours with no print simulation" msgstr "Kleuren weergeven zonder printsimulatie" #: pp_menu_options.cpp:123 msgid "Simulate Prin_t" msgstr "Simuleer prin_t" #: pp_menu_options.cpp:123 msgid "" "Adjust colours on screen to imitate printed colours, including paper white" msgstr "" "Pas de kleuren op het scherm aan om de afdrukkleuren te imiteren, inclusief " "papier-wit" #: pp_menu_options.cpp:124 msgid "Simulate Print, _Adapt White" msgstr "Simuleer afdruk, p_as wit aan" #: pp_menu_options.cpp:124 msgid "Adjust colours to imitate printed colours, excluding paper white" msgstr "" "Pas de kleuren op het scherm aan om de afdrukkleuren te imiteren, exclusief " "papier-wit" #: pp_pageextent.cpp:228 msgid "Page Size and Margins" msgstr "Paginagrootte en -marges" #: pp_pageextent.cpp:252 msgid "W:" msgstr "W:" #: pp_pageextent.cpp:275 msgid "Left:" msgstr "Links:" #: pp_pageextent.cpp:291 msgid "Right:" msgstr "Rechts:" #: pp_pageextent.cpp:304 msgid "Top:" msgstr "Boven:" #: pp_pageextent.cpp:315 msgid "Bottom:" msgstr "Onder:" #: gp_cppsupport/printoutputselector.cpp:114 msgid "Print Queue:" msgstr "Afdrukwachtrij:" #: gp_cppsupport/printoutputselector.cpp:133 msgid "Printer Model:" msgstr "Printermodel:" #: gp_cppsupport/printoutputselector.cpp:196 #, c-format msgid "" "The printer queue %s\n" " is not found - please choose another" msgstr "" "De printer wachtrij %s\n" " kan niet gevonden worden - kies een andere a.u.b." #: gp_cppsupport/printoutputselector.cpp:197 msgid "Printer queue not found" msgstr "Printerwachtrij niet gevonden" #: gp_cppsupport/gprinter.cpp:387 msgid "Unable to generate print data" msgstr "Niet mogelijk om printdata te genereren" #: pp_scaling.cpp:72 msgid "Algorithm:" msgstr "Algoritme:" #: pp_scaling.cpp:184 msgid "Scaling" msgstr "Schalen" #: pp_sigcontrol.cpp:187 msgid "Columns:" msgstr "Kolommen:" #: pp_sigcontrol.cpp:201 msgid "Rows:" msgstr "Rijen:" #: pp_sigcontrol.cpp:215 pp_sigcontrol.cpp:229 msgid "Gap:" msgstr "Tussenruimte:" #: pp_sigcontrol.cpp:254 msgid "Width:" msgstr "Breedte:" #: pp_sigcontrol.cpp:268 msgid "Height:" msgstr "Hoogte:" #: pp_sigcontrol.cpp:280 msgid "From selected image" msgstr "Van geselecteerde afbeelding" #: pp_sigcontrol.cpp:338 msgid "Layout" msgstr "Layout" #: pp_sigcontrol.cpp:341 msgid "Specify rows/columns" msgstr "Geef rijen/kolommen op" #: pp_sigcontrol.cpp:342 msgid "Specify image dimensions" msgstr "Geef afbeeldingsafmetingen op" #: pp_units.cpp:60 msgid "Units:" msgstr "Eenheden:" #: pp_units.cpp:68 msgid "Points" msgstr "Punten" #: pp_units.cpp:71 msgid "Inches" msgstr "Inches" #: pp_units.cpp:74 msgid "Millimeters" msgstr "Millimeters" #: pp_units.cpp:77 msgid "Centimeters" msgstr "Centimeters" #: pp_units.cpp:151 msgid "Units" msgstr "Eenheden" #: printpreview.cpp:153 msgid "Preview resolution:" msgstr "Voorbeeld Resolutie:" #: printpreview.cpp:157 msgid "180 dots per inch" msgstr "180 dots per inch" #: printpreview.cpp:158 msgid "240 dots per inch" msgstr "240 dots per inch" #: printpreview.cpp:159 msgid "300 dots per inch" msgstr "300 dots per inch" #: printpreview.cpp:160 msgid "360 dots per inch" msgstr "360 dots per inch" #: printpreview.cpp:165 msgid "" "Click-and-drag to pan around the preview.\n" "Right-click to toggle magnification." msgstr "" "Klik-en-sleep om een gebied te selecteren in het voorbeeld.\n" "Rechtsklik om te vergroten." #: printpreview.cpp:168 msgid "Close" msgstr "Sluiten" #: printpreview.cpp:236 msgid "Drawing preview" msgstr "Voorbeeldweergave opbouwen" #: gp_cppsupport/gprintersettings.cpp:413 msgid "" "Can't obtain printer from Gutenprint\n" "Check STP_DATA_PATH and Gutenprint version!" msgstr "" "Kan de printer niet verkrijgen van Gutenprint\n" "Controleer STP_DATA_PATH en de Gutenprint versie!" #: profilemanager/lcmswrapper.cpp:553 msgid "Perceptual" msgstr "Perceptueel" #: profilemanager/lcmswrapper.cpp:554 msgid "Relative Colorimetric" msgstr "Relatieve Colorometrie" #: profilemanager/lcmswrapper.cpp:555 msgid "Relative Colorimetric with BPC" msgstr "Relatieve Colorometrie met BPC" #: profilemanager/lcmswrapper.cpp:556 msgid "Saturation" msgstr "Verzadiging" #: profilemanager/lcmswrapper.cpp:557 msgid "Absolute Colorimetric" msgstr "Absolute Colorometrie" #: profilemanager/lcmswrapper.cpp:562 msgid "" "Aims for pleasing photographic results by preserving relationships between " "colours, and avoiding clipping of unattainable colours" msgstr "" "Probeert een gewenst fotografisch resultaat te krijgen door het behouden " "vankoppelingen tussen kleuren en knippen van onbereikbare kleuren te " "voorkomen." #: profilemanager/lcmswrapper.cpp:563 msgid "" "Attempts to preserve the original colours, relative to white-point " "differences." msgstr "" "Probeert de originele kleuren te behouden, relatief ten opzichte van de " "witbalans." #: profilemanager/lcmswrapper.cpp:564 msgid "" "Attempts to preserve the original colours, relative to white-point " "differences. Uses Black Point Compensation to avoid clipping of highlights " "and shadows." msgstr "" "Probeert de originele kleuren te behouden, relatief ten opzichte " "vanwitbalans verschillen. Gebruikt BPC (Zwart Punt Compensatie) om licht en " "donker goed weer te geven." #: profilemanager/lcmswrapper.cpp:565 msgid "" "Attempts to provide brighter, more saturated colours, at the expense of " "colour relationships." msgstr "" "Probeert heldere, meer verzadigde kleuren te krijgen ten koste van de " "relaties tussen de kleuren." #: profilemanager/lcmswrapper.cpp:566 msgid "" "Mimics the original colours (including white point) as closely as possible, " "for side-by-side comparisons. Clips unattainable colours." msgstr "" "Geeft de originele kleuren (inclusief witbalans) zo goed mogelijk weer, voor " "directe vergelijkingen. Filtert onbekende kleuren." #: profilemanager/profileselector.cpp:39 miscwidgets/imageselector.cpp:478 msgid "Other..." msgstr "Andere..." #: profilemanager/profileselector.cpp:193 #, fuzzy msgid "None" msgstr "Gee_n" #: profilemanager/profileselector.cpp:392 msgid "Please choose a valid ICC profile" msgstr "Kies een geldig ICC-profiel" #: profilemanager/profilemanager.cpp:207 msgid "Can't do proofing without a valid Printer profile!" msgstr "Kan niet proefdrukken zonder een geldig printerprofiel!" #: profilemanager/profilemanager.cpp:212 msgid "Can't do proofing without a valid Monitor profile!" msgstr "Kan niet proefdrukken zonder een geldig monitorprofiel!" #: profilemanager/profilemanager.cpp:217 msgid "Can't do proofing without a valid Default RGB profile!" msgstr "Kan niet proefdrukken zonder een geldig RGB profiel!" #: profilemanager/profilemanager.cpp:497 msgid "No Proof profile provided!" msgstr "Geen proefdruk profiel bezorgd!" #: profilemanager/profilemanager.cpp:839 msgid "Default rendering intent" msgstr "Gewenst resultaat" #: stpui_widgets/dimension.c:161 msgid "points" msgstr "punten" #: stpui_widgets/dimension.c:165 msgid "inches" msgstr "inches" #: stpui_widgets/dimension.c:169 msgid "millimeters" msgstr "millimeters" #: stpui_widgets/dimension.c:173 msgid "centimeters" msgstr "centimeters" #: stpui_widgets/stpui_optionbook.c:117 msgid "General" msgstr "Algemeen" #: stpui_widgets/stpui_optionbook.c:120 msgid "Manual Settings" msgstr "Handmatige instellingen" #: stpui_widgets/stpui_optionbook.c:123 msgid "Colour (Basic)" msgstr "Kleur (Basis)" #: stpui_widgets/stpui_optionbook.c:126 msgid "Colour (Fine-tuning)" msgstr "Kleur (Beter)" #: stpui_widgets/stpui_optionbook.c:129 msgid "Colour (Extra)" msgstr "Kleur (Extra)" #: miscwidgets/patheditor.cpp:53 msgid "Select directory..." msgstr "Kies map..." #: miscwidgets/patheditor.cpp:98 msgid "Path" msgstr "Pad" #: miscwidgets/patheditor.cpp:112 msgid "Add..." msgstr "Toevoegen..." #: miscwidgets/patheditor.cpp:117 msgid "Remove" msgstr "Verwijderen" #: miscwidgets/imageselector.cpp:458 msgid "Image" msgstr "Afbeelding" #: miscwidgets/progressbar.cpp:52 msgid "Progress..." msgstr "Voortgang..." #: imagesource/imagesource_util.cpp:32 msgid "Automatic" msgstr "Automatisch" #: imagesource/imagesource_util.cpp:32 msgid "Selects a scaling algorithm based on scale factor" msgstr "Selecteert een schaalalgoritme gebaseerd op de schaalfactor" #: imagesource/imagesource_util.cpp:33 msgid "Fast" msgstr "Snel" #: imagesource/imagesource_util.cpp:33 msgid "Very fast scaling with no interpolation" msgstr "Zeer snel schalen zonder interpolatie" #: imagesource/imagesource_util.cpp:34 msgid "Bilinear" msgstr "Bilinear" #: imagesource/imagesource_util.cpp:34 msgid "An interpolation filter with mediocre speed and quality" msgstr "Een interpolatiefilter met matige snelheid en kwaliteit" #: imagesource/imagesource_util.cpp:35 msgid "LanczosSinc" msgstr "LanczosSinc" #: imagesource/imagesource_util.cpp:35 msgid "Slow but very high quality interpolation filter" msgstr "Trage maar zeer kwalitatieve interpolatiefilter" #: imagesource/imagesource_util.cpp:37 msgid "Downsample" msgstr "Downsamplen" #: imagesource/imagesource_util.cpp:37 msgid "High quality filter for reductions only" msgstr "Hoge kwaliteitsfilter alleen voor reducties" photoprint-0.4.2-pre2/po/pt_BR.po0000644000175000017500000010520111400237672013477 00000000000000# translation of PhotoPrint to Brazilian Portuguese # Copyright (C) 2007 Alastair M. Robinson # This file is distributed under the same license as the PhotoPrint package. # # Translator: Krishnamurti Lelis Lima Vieira Nunes , 2007. # Revisors welcome! msgid "" msgstr "" "Project-Id-Version: pt_BR\n" "Report-Msgid-Bugs-To: blackfive@fakenhamweb.co.uk\n" "POT-Creation-Date: 2010-05-29 17:24+0100\n" "PO-Revision-Date: 2007-07-14 00:26-0300\n" "Last-Translator: Krishnamurti Lelis Lima Vieira Nunes \n" "Language-Team: Krishnamurti Lelis Lima Vieira Nunes \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: dialogs.cpp:75 #, fuzzy msgid "Colour Response Hash" msgstr "Gerenciamento de _Cor" #: dialogs.cpp:96 msgid "" "This \"hash\" value is derived from the printer driver's output,\n" "and can be used to verify that no changes have occurred which\n" "might invalidate a colour profile for the printer" msgstr "" #: dialogs.cpp:108 #, fuzzy msgid "Current hash:" msgstr "Usado Atualmente:" #: dialogs.cpp:112 #, fuzzy msgid "Stored in preset:" msgstr "Salva uma pré-seleção" #: dialogs.cpp:118 msgid "No hash stored yet" msgstr "" #: dialogs.cpp:127 msgid "" "Calculating hash of printer response\n" "with current driver settings" msgstr "" #: dialogs.cpp:132 #, fuzzy msgid "Store in preset" msgstr "Salva uma pré-seleção" #: dialogs.cpp:156 msgid "" "MATCH - No changes in driver\n" "or printer settings detected" msgstr "" #: dialogs.cpp:162 msgid "" "This hash can be used to detect changes\n" "in printer settings or driver versions\n" "that might invalidate colour profiles" msgstr "" #: dialogs.cpp:164 msgid "" "MISMATCH - change detected in printer response!\n" "Printer's colour profile might no longer be accurate." msgstr "" #: dialogs.cpp:287 msgid "Printer Setup" msgstr "Configuração da Impressora " #: dialogs.cpp:301 msgid "Output" msgstr "" #: dialogs.cpp:338 msgid "About" msgstr "Sobre" #: dialogs.cpp:349 #, fuzzy msgid "PhotoPrint " msgstr "Sai do PhotoPrint" #: dialogs.cpp:388 msgid "Set paths..." msgstr "Definir caminhos..." #: dialogs.cpp:413 msgid "ICC Profiles" msgstr "Perfis ICC" #: dialogs.cpp:445 msgid "Borders" msgstr "Bordas" #: dialogs.cpp:476 msgid "Backgrounds" msgstr "Backgrounds" #: dialogs.cpp:504 msgid "Select a border..." msgstr "Selecionar uma borda" #: dialogs.cpp:551 msgid "Export TIFF..." msgstr "Exportar TIFF" #: dialogs.cpp:577 dialogs.cpp:776 msgid "Page range:" msgstr "Intervalo de páginas" #: dialogs.cpp:590 dialogs.cpp:786 msgid "Resolution (dpi):" msgstr "Resolução (dpi)" #: dialogs.cpp:598 msgid "Save as 16-bit:" msgstr "" #: dialogs.cpp:617 dialogs.cpp:821 msgid "Output Profile:" msgstr "Arquivo de saída" #: dialogs.cpp:677 dialogs.cpp:914 msgid "Please provide a filename." msgstr "Por favor forneça um nome de arquivo" #: dialogs.cpp:708 dialogs.cpp:892 msgid "Exporting..." msgstr "Exportando..." #: dialogs.cpp:747 #, fuzzy msgid "Export JPEG..." msgstr "Exportar TIFF" #: dialogs.cpp:805 msgid "JPEG Quality:" msgstr "" #: dialogs.cpp:931 msgid "Select a background..." msgstr "Selecione um background..." #: dialogs.cpp:1023 pp_menu_image.cpp:276 msgid "Please select an image first!" msgstr "Por favor insira uma imagem primeiro! " #: dialogs.cpp:1054 msgid "Set Custom Profile..." msgstr "Defina perfil padrão" #: dialogs.cpp:1066 msgid "Before:" msgstr "Antes:" #: dialogs.cpp:1070 msgid "After:" msgstr "Depois:" #: dialogs.cpp:1084 msgid "" "Can't show a colour managed\n" "preview unless you choose\n" "a Default RGB or Monitor profile\n" "in the Options->Colour Management\n" "dialog!" msgstr "" "Não é possível mostrar uma cor usada \n" "previamente a não ser que que você escolha\n" "um RGB padrão ou um perfil Monitor \n" "em Options->Gerenciamento de cor" #: dialogs.cpp:1109 msgid "" "Warning: Image already has an embedded profile\n" "Assigning a new one will over-ride it!" msgstr "" "Advertência: uma imagem já foi incluída no perfil\n" "Incluir outra vai sobrescrevê-la!" #: dialogs.cpp:1126 msgid "Assign Profile:" msgstr "Definir Perfil:" #: dialogs.cpp:1134 pp_cms.cpp:349 msgid "Rendering intent:" msgstr "Tentar Renderização:" #: effects/ppeffect_temperature.cpp:28 msgid "Warm/Cool" msgstr "" #: effects/effectselector.cpp:222 msgid "Active" msgstr "" #: effects/effectselector.cpp:231 msgid "Icon" msgstr "" #: effects/effectselector.cpp:243 msgid "Name" msgstr "" #: effects/ppeffect_desaturate.cpp:25 msgid "Desaturate" msgstr "" #: effects/effectwidget_tempchange.cpp:57 #, fuzzy, c-format msgid "%d degrees K" msgstr "_90 Graus" #: effects/ppeffect_unsharpmask.cpp:25 msgid "Sharpen" msgstr "" #: effects/effectwidget_unsharpmask.cpp:66 #, c-format msgid "Radius: %1.2f" msgstr "" #: effects/effectwidget_unsharpmask.cpp:72 #, c-format msgid "Amount: %1.2f" msgstr "" #: menucheck.cpp:23 pp_menu_file.cpp:135 msgid "_File" msgstr "_Arquivo" #: menucheck.cpp:25 pp_menu_file.cpp:137 msgid "_Open Preset..." msgstr "A_brir Pré-seleção..." #: menucheck.cpp:25 pp_menu_file.cpp:137 msgid "Open a preset" msgstr "Abre uma pré-seleção" #: menucheck.cpp:26 pp_menu_file.cpp:138 msgid "_Save Preset" msgstr "_Salvar Pré-seleção" #: menucheck.cpp:26 pp_menu_file.cpp:138 msgid "Save a preset" msgstr "Salva uma pré-seleção" #: menucheck.cpp:27 pp_menu_file.cpp:139 msgid "Save _As..." msgstr "Salvar _Como..." #: menucheck.cpp:27 pp_menu_file.cpp:139 msgid "Save preset with a new filename" msgstr "Salva uma pré-seleção com um novo nome de arquivo" #: menucheck.cpp:28 pp_menu_file.cpp:140 msgid "Save _Default" msgstr "Salvar _Padrão" #: menucheck.cpp:28 pp_menu_file.cpp:140 msgid "Save preset as the default" msgstr "Salva a pré-seleção como padrão" #: menucheck.cpp:29 #, fuzzy msgid "E_xport TIFF..." msgstr "Exportar TIFF" #: menucheck.cpp:29 pp_menu_file.cpp:142 msgid "Export pages as TIFF files" msgstr "Exporta páginas como arquivos TIFF" #: menucheck.cpp:30 pp_menu_file.cpp:144 msgid "Print Pre_view..." msgstr "Imprimir Pré-visualização" #: menucheck.cpp:30 pp_menu_file.cpp:144 msgid "Preview how the printed page will look" msgstr "Prevê a aparência da impressão da página" #: menucheck.cpp:31 pp_menu_file.cpp:145 msgid "Print S_etup..." msgstr "Configuração de Impr_essora" #: menucheck.cpp:31 pp_menu_file.cpp:145 msgid "Set printer driver and options" msgstr "Configura impressora e opções" #: menucheck.cpp:32 pp_menu_file.cpp:146 msgid "_Print" msgstr "_Imprimir" #: menucheck.cpp:32 pp_menu_file.cpp:146 msgid "Print pages" msgstr "Imprime páginas" #: menucheck.cpp:33 pp_menu_file.cpp:147 msgid "_Quit" msgstr "Sai_r" #: menucheck.cpp:33 pp_menu_file.cpp:147 msgid "Exit PhotoPrint" msgstr "Sai do PhotoPrint" #: menucheck.cpp:62 pp_menu_layout.cpp:131 msgid "_Layout" msgstr "_Layout" #: menucheck.cpp:63 pp_menu_image.cpp:316 msgid "_Image" msgstr "_Imagem" #: menucheck.cpp:64 pp_menu_options.cpp:108 msgid "_Options" msgstr "_Opções" #: menucheck.cpp:65 pp_menu_help.cpp:29 msgid "_Help" msgstr "_Ajuda" #: menucheck.cpp:67 pp_menu_layout.cpp:133 msgid "_Clear Layout" msgstr "L_impar Layout" #: menucheck.cpp:67 pp_menu_layout.cpp:133 msgid "Remove all images from the layout" msgstr "Remove todas as imagens do layout" #: menucheck.cpp:68 pp_menu_layout.cpp:134 msgid "Set _Background" msgstr "Selecionar _Background" #: menucheck.cpp:68 pp_menu_layout.cpp:134 msgid "Set a background image for the current layout" msgstr "Define um background para o layout atual" #: menucheck.cpp:70 pp_menu_image.cpp:318 msgid "_Add Image..." msgstr "_Adicionar Imagem..." #: menucheck.cpp:70 pp_menu_image.cpp:318 msgid "Add images to the current layout" msgstr "Adiciona imagens ao layout atual" #: menucheck.cpp:71 pp_menu_image.cpp:319 msgid "_Remove Image" msgstr "_Remover Imagem" #: menucheck.cpp:71 pp_menu_image.cpp:319 msgid "Remove selected images from the layout" msgstr "Remove as imagens selecionadas do layout" #: menucheck.cpp:73 pp_menu_image.cpp:323 msgid "_Rotation" msgstr "R_otação" #: menucheck.cpp:75 msgid "Set Image _Mask..." msgstr "Selecionar _Máscara da Imagem..." #: menucheck.cpp:75 pp_menu_image.cpp:325 msgid "Set a border mask for the selected image" msgstr "Define uma borda para a imagem selecionada" #: menucheck.cpp:76 msgid "_Effects..." msgstr "_Efeitos" #: menucheck.cpp:76 msgid "Apply effects to the selected image" msgstr "Aplica efeitos à imagem selecionada" #: menucheck.cpp:77 pp_menu_image.cpp:327 msgid "Set Colour _Profile..." msgstr "Configurar _Perfil de Cor" #: menucheck.cpp:77 pp_menu_image.cpp:327 msgid "Assign an ICC profile or custom rendering intent to the image" msgstr "Associa um perfil ICC ou rendering intent padrão à imagem" #: menucheck.cpp:79 pp_menu_options.cpp:110 msgid "_Paths..." msgstr "C_aminhos" #: menucheck.cpp:79 pp_menu_options.cpp:110 msgid "Set search paths for ICC profiles, borders, etc." msgstr "Define caminhos para busca de perfis ICC, bordas, etc." #: menucheck.cpp:80 pp_menu_options.cpp:111 msgid "_Colour Management..." msgstr "Gerenciamento de _Cor" #: menucheck.cpp:80 pp_menu_options.cpp:111 msgid "Set colour management options" msgstr "Define opções para gerenciamento de cores" #: menucheck.cpp:81 pp_menu_options.cpp:113 msgid "_Units..." msgstr "_Uniddes" #: menucheck.cpp:81 pp_menu_options.cpp:113 msgid "Select the units used throughout PhotoPrint" msgstr "Seleciona as unidades usadas em todo o PhotoPrint" #: menucheck.cpp:82 pp_menu_options.cpp:114 msgid "_Scaling..." msgstr "_Redimensionamento" #: menucheck.cpp:82 pp_menu_options.cpp:114 msgid "Select the preferred scaling method." msgstr "Seleciona o método preferido para redimensionamento." #: menucheck.cpp:84 pp_menu_help.cpp:31 msgid "About..." msgstr "Sobre" #: menucheck.cpp:84 pp_menu_help.cpp:31 msgid "Some information about PhotoPrint" msgstr "Exibe alguma informação sobre o PhotoPrint" #: menucheck.cpp:89 pp_menu_image.cpp:332 msgid "Allow _Cropping" msgstr "Permitir _Corte" #: menucheck.cpp:89 pp_menu_image.cpp:332 msgid "Crop the selected images to fill the available space" msgstr "Corta as imagens selecionadas para caber no espaço disponível" #: menucheck.cpp:94 pp_menu_layout.cpp:139 msgid "_Auto Layout" msgstr "Layout _Automático" #: menucheck.cpp:94 pp_menu_layout.cpp:139 msgid "Automatically place images in a grid" msgstr "Posiciona as imagens em uma grade automaticamente" #: menucheck.cpp:95 pp_menu_layout.cpp:140 msgid "_Poster" msgstr "_Cartaz" #: menucheck.cpp:95 pp_menu_layout.cpp:140 msgid "Print an image in multiple pages, to be assembled into a poster" msgstr "Imprime uma imagem em várias páginas, para serem montadas em um cartaz" #: menucheck.cpp:96 pp_menu_layout.cpp:141 msgid "_Carousel" msgstr "_Roda" #: menucheck.cpp:96 pp_menu_layout.cpp:141 msgid "Fade images into a circular 'carousel' - ideal for CD labels." msgstr "Vai apagando a imagem em um círculo - ideal para rótulos de CDs." #: menucheck.cpp:97 pp_menu_layout.cpp:142 msgid "_Manual Size" msgstr "Tamanho _Manual" #: menucheck.cpp:97 pp_menu_layout.cpp:142 msgid "Print images on a single sheet, at a specified scale." msgstr "Imprime imagens em uma única página, com uma dimensão especificada" #: menucheck.cpp:101 pp_menu_image.cpp:337 msgid "_Auto" msgstr "A_uto" #: menucheck.cpp:101 pp_menu_image.cpp:337 msgid "Automatically choose rotation to fit the available space." msgstr "Escolhe automaticamente a rotação para adequar ao espaço disponível" #: menucheck.cpp:102 pp_menu_image.cpp:338 msgid "_None" msgstr "_Nenhuma" #: menucheck.cpp:102 pp_menu_image.cpp:338 msgid "No rotation." msgstr "Nenhuma rotação" #: menucheck.cpp:103 pp_menu_image.cpp:339 msgid "_90 Degrees" msgstr "_90 Graus" #: menucheck.cpp:103 pp_menu_image.cpp:339 msgid "Rotate 90 degrees clockwise." msgstr "Rotaciona 90 graus no sentido horário" #: menucheck.cpp:104 pp_menu_image.cpp:340 msgid "_180 Degrees" msgstr "_180 Graus" #: menucheck.cpp:104 pp_menu_image.cpp:340 msgid "Rotate 180 degrees." msgstr "Rotaciona 180 graus." #: menucheck.cpp:105 pp_menu_image.cpp:341 msgid "_270 Degrees" msgstr "_270 Graus" #: menucheck.cpp:105 pp_menu_image.cpp:341 msgid "Rotate 90 degrees anticlockwise." msgstr "Rotaciona 90 graus no sentido anti-horário." #: menucheck.cpp:229 #, fuzzy msgid "Dither Algorithm" msgstr "Algoritmo:" #: photoprint.cpp:135 msgid "Initializing..." msgstr "Iniciando..." #: photoprint.cpp:144 msgid "Checking .photoprint directory..." msgstr "Verificando pasta .photoprint..." #: photoprint.cpp:149 msgid "Loading preset..." msgstr "Carregando pré-seleções..." #: photoprint.cpp:154 msgid "Creating layout..." msgstr "Criando layout..." #: photoprint.cpp:197 msgid "Loading images..." msgstr "Carregando imagens..." #: pixbufthumbnail/egg-pixbuf-thumbnail.c:349 #, c-format msgid "Error creating directory `%s': %s" msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:463 #, c-format msgid "Error opening `%s': %s" msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:481 #, c-format msgid "Error reading `%s': file contains no data." msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:505 #, c-format msgid "Error reading `%s': %s" msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:540 #, c-format msgid "" "Failed to load image '%s': reason not known, probably a corrupt image file" msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:613 #, c-format msgid "Error verifying `%s': %s" msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:629 #, c-format msgid "Error reading `%s': file is not a regular file or symbolic link." msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:1071 #, c-format msgid "Error creating temporary thumbnail file for `%s': %s" msgstr "" #: pp_cms.cpp:148 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "will first be converted to the default CMYK profile" msgstr "" #: pp_cms.cpp:154 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "cannot be printed without a default CMYK profile." msgstr "" #: pp_cms.cpp:160 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "cannot be printed without a default RGB and CMYK profile." msgstr "" #: pp_cms.cpp:168 msgid "" "Printer profile is a devicelink - RGB images with embedded profiles\n" "will first be converted to the default RGB profile." msgstr "" #: pp_cms.cpp:174 msgid "" "Printer profile is a devicelink - RGB images with embedded profiles will " "not\n" "print correctly, since there is no default RGB profile." msgstr "" #: pp_cms.cpp:180 msgid "RGB images will print correctly" msgstr "" #: pp_cms.cpp:185 msgid "" "RGB images can be printed but colours depend on the driver\n" "(Colours will be accurate for images that contain an embedded profile)" msgstr "" #: pp_cms.cpp:190 msgid "RGB images can be printed but colours depend on the driver" msgstr "" #: pp_cms.cpp:195 msgid "" "RGB images can only be printed if they have an embedded profile\n" "(Workflow is CMYK and there is no default RGB profile)" msgstr "" #: pp_cms.cpp:200 msgid "" "RGB images cannot be printed\n" "(Workflow is CMYK and there is no printer profile)" msgstr "" #: pp_cms.cpp:215 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "will first be converted to the default RGB profile" msgstr "" #: pp_cms.cpp:221 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "cannot be printed without a default RGB profile." msgstr "" #: pp_cms.cpp:227 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "cannot be printed without a default RGB and CMYK profile." msgstr "" #: pp_cms.cpp:234 msgid "" "Printer profile is a devicelink - CMYK images with embedded profiles\n" "will first be converted to the default CMYK profile." msgstr "" #: pp_cms.cpp:240 msgid "" "Printer profile is a devicelink - CMYK images with embedded profiles will " "not\n" "print correctly since there is no default CMYK profile." msgstr "" #: pp_cms.cpp:246 msgid "CMYK images will print correctly" msgstr "" #: pp_cms.cpp:251 msgid "" "CMYK images can be printed but colours depend on the driver\n" "(Colours will be accurate for images that contain an embedded profile)" msgstr "" #: pp_cms.cpp:256 msgid "CMYK images can be printed but colours depend on the driver" msgstr "" #: pp_cms.cpp:261 msgid "" "CMYK images can only be printed if they have an embedded profile\n" "(Workflow is RGB and there is no default CMYK profile)" msgstr "" #: pp_cms.cpp:266 msgid "" "CMYK images cannot be printed\n" "(Workflow is RGB and there is no printer profile)" msgstr "" #: pp_cms.cpp:276 msgid "Images will be displayed correctly" msgstr "" #: pp_cms.cpp:281 msgid "" "Images will only be displayed correctly if they have an embedded profile" msgstr "" #: pp_cms.cpp:286 msgid "Images will not be displayed correctly" msgstr "" #: pp_cms.cpp:317 msgid "Printer" msgstr "Impressora" #: pp_cms.cpp:332 msgid "Printer Profile:" msgstr "Perfil de impressora:" #: pp_cms.cpp:364 msgid "Colour space:" msgstr "Espaço de cor:" #: pp_cms.cpp:372 msgid "RGB" msgstr "" #: pp_cms.cpp:372 msgid "Send Red, Green and Blue data to the printer driver" msgstr "" #: pp_cms.cpp:373 msgid "CMYK" msgstr "" #: pp_cms.cpp:373 msgid "Send Cyan, Magenta, Yellow and Black data to the printer driver" msgstr "" #: pp_cms.cpp:383 msgid "Monitor" msgstr "Monitor" #: pp_cms.cpp:396 msgid "Monitor Profile:" msgstr "Perfil do Monitor:" #: pp_cms.cpp:411 msgid "Display mode:" msgstr "Modo de exibição" #: pp_cms.cpp:420 msgid "Normal" msgstr "Normal" #: pp_cms.cpp:420 msgid "Displays images' original colours, transformed to suit the monitor" msgstr "" #: pp_cms.cpp:421 msgid "Simulate Print" msgstr "Simular impressão" #: pp_cms.cpp:421 msgid "" "Simulates how colours will look when printed, imitating the paper's white " "point." msgstr "" #: pp_cms.cpp:422 msgid "Simulate Print, Adapt White" msgstr "Simular impressão, Adapt White" #: pp_cms.cpp:422 msgid "" "Simulates how colours will look when printed, adapting colours for the " "monitor's white point." msgstr "" #: pp_cms.cpp:432 msgid "Default Image Profiles" msgstr "Perfis de imagem padrão" #: pp_cms.cpp:447 msgid "RGB Profile:" msgstr "Perfil RGB:" #: pp_cms.cpp:464 msgid "CMYK Profile:" msgstr "Perfil CMYK:" #: pp_cms.cpp:666 msgid "Colour Management" msgstr "Gerenciamento de cor" #: pp_histogram.cpp:282 msgid "Histogram" msgstr "" #: pp_imagecontrol.cpp:134 #, fuzzy msgid "Effects" msgstr "Efeitos..." #: pp_imageinfo.cpp:107 msgid "in" msgstr "" #: pp_imageinfo.cpp:110 msgid "pt" msgstr "" #: pp_imageinfo.cpp:115 msgid "cm" msgstr "" #: pp_imageinfo.cpp:120 msgid "mm" msgstr "" #: pp_imageinfo.cpp:168 #, fuzzy msgid "Image Info" msgstr "Imagem" #: pp_imageinfo.cpp:195 msgid "Filename:" msgstr "" #: pp_imageinfo.cpp:208 msgid "Dimensions:" msgstr "" #: pp_imageinfo.cpp:228 #, fuzzy msgid "Resolution:" msgstr "Resolução (dpi)" #: pp_imageinfo.cpp:241 #, fuzzy msgid "Profile:" msgstr "Perfil RGB:" #: pp_imageinfo.cpp:351 msgid "pixels" msgstr "" #: pp_imageinfo.cpp:380 profilemanager/profilemanager.cpp:831 #, fuzzy msgid "Default" msgstr "Salvar _Padrão" #: pp_layout_carousel.cpp:247 pp_layout_carousel.cpp:379 pp_layout_nup.cpp:222 #: pp_layout_poster.cpp:312 pp_layout_poster.cpp:464 pp_layout_single.cpp:233 #: printpreview.cpp:146 msgid "Page:" msgstr "Página:" #: pp_layout_carousel.cpp:275 msgid "Carousel" msgstr "Roda" #: pp_layout_carousel.cpp:291 msgid "Segments:" msgstr "Segmentos:" #: pp_layout_carousel.cpp:306 msgid "Overlap (%):" msgstr "Sobreposição(%):" #: pp_layout_carousel.cpp:321 msgid "Starting angle:" msgstr "Ângulo inicial:" #: pp_layout_carousel.cpp:336 msgid "Inner Radius:" msgstr "Raio interno" #: pp_layout_poster.cpp:339 #, fuzzy msgid "Poster Layout" msgstr "L_impar Layout" #: pp_layout_poster.cpp:354 #, fuzzy msgid "Size" msgstr "Tamanho da página" #: pp_layout_poster.cpp:366 pp_layout_poster.cpp:390 msgid "by" msgstr "" #: pp_layout_poster.cpp:378 #, fuzzy msgid "Tiles" msgstr "Largura das divisões:" #: pp_layout_poster.cpp:400 #, fuzzy msgid "Overlap" msgstr "Sobreposição" #: pp_layout_poster.cpp:414 pp_pageextent.cpp:262 msgid "H:" msgstr "H:" #: pp_layout_poster.cpp:426 msgid "V:" msgstr "V:" #: pp_layout_single.cpp:261 #, fuzzy msgid "Manual scaling" msgstr "Tamanho _Manual" #: pp_layout_single.cpp:277 msgid "H (%):" msgstr "H (%)" #: pp_layout_single.cpp:291 msgid "V (%):" msgstr "V (%):" #: pp_mainwindow.cpp:228 msgid "Transferring images..." msgstr "Transferindo imagens:" #: pp_menu_edit.cpp:37 msgid "_Edit" msgstr "_Editar" #: pp_menu_edit.cpp:39 msgid "Select _All" msgstr "Selecionar _Tudo" #: pp_menu_edit.cpp:39 msgid "Select all images" msgstr "Selecionar todas as imagens" #: pp_menu_edit.cpp:40 msgid "Select _None" msgstr "Selecionar _Nada" #: pp_menu_edit.cpp:40 msgid "Deselect all images" msgstr "Desselecionar" #: pp_menu_edit.cpp:41 msgid "_Cut" msgstr "_Recortar" #: pp_menu_edit.cpp:41 msgid "Cut the current image to the clipboard" msgstr "Recorta a imagem atual para a área de troca" #: pp_menu_edit.cpp:42 msgid "C_opy" msgstr "_Copiar" #: pp_menu_edit.cpp:42 msgid "Copy the current image to the clipboard" msgstr "Copia a imagem atual para a área de troca" #: pp_menu_edit.cpp:43 msgid "_Paste" msgstr "Co_lar" #: pp_menu_edit.cpp:43 msgid "Paste the contents of the clipboard as a new image" msgstr "Cola o conteúdo da área de troca como uma nova imagem" #: pp_menu_file.cpp:38 msgid "Open preset..." msgstr "Abrir pré-definição..." #: pp_menu_file.cpp:64 msgid "Save preset..." msgstr "Salvar pré-definições" #: pp_menu_file.cpp:115 msgid "Generating print data..." msgstr "Gerando dados de impressão..." #: pp_menu_file.cpp:141 #, fuzzy msgid "E_xport" msgstr "E_xportar TIFF..." #: pp_menu_file.cpp:142 #, fuzzy msgid "Export _TIFF..." msgstr "Exportar TIFF" #: pp_menu_file.cpp:143 #, fuzzy msgid "Export _JPEG..." msgstr "Exportar TIFF" #: pp_menu_file.cpp:143 #, fuzzy msgid "Export pages as JPEG files" msgstr "Exporta páginas como arquivos TIFF" #: pp_menu_shortcuts.cpp:78 msgid "_Shortcuts" msgstr "" #: pp_menu_shortcuts.cpp:131 msgid "Error fetching preset name!" msgstr "" #: pp_menu_image.cpp:64 msgid "Open File" msgstr "Abre arquivo" #: pp_menu_image.cpp:104 msgid "Adding images..." msgstr "Adicionando imagens ..." #: pp_menu_image.cpp:186 msgid "Page is already full!" msgstr "" #: pp_menu_image.cpp:320 msgid "_Duplicate Image" msgstr "" #: pp_menu_image.cpp:320 #, fuzzy msgid "Duplicate the currently selected image" msgstr "Aplica efeitos à imagem selecionada" #: pp_menu_image.cpp:321 msgid "Duplicate to _Fill Page" msgstr "" #: pp_menu_image.cpp:321 msgid "Fill the page with copies of the currently selected image" msgstr "" #: pp_menu_image.cpp:325 #, fuzzy msgid "Set Image _Border..." msgstr "Selecionar uma borda" #: pp_menu_options.cpp:112 #, fuzzy msgid "_Colour Response Hash..." msgstr "Gerenciamento de _Cor" #: pp_menu_options.cpp:112 msgid "Create a hash for verifying printer settings" msgstr "" #: pp_menu_options.cpp:118 msgid "High-res Previews" msgstr "" #: pp_menu_options.cpp:118 msgid "Render high-resolution previews in the background" msgstr "" #: pp_menu_options.cpp:122 msgid "_Normal Display" msgstr "" #: pp_menu_options.cpp:122 msgid "Display colours with no print simulation" msgstr "" #: pp_menu_options.cpp:123 #, fuzzy msgid "Simulate Prin_t" msgstr "Simular impressão" #: pp_menu_options.cpp:123 msgid "" "Adjust colours on screen to imitate printed colours, including paper white" msgstr "" #: pp_menu_options.cpp:124 #, fuzzy msgid "Simulate Print, _Adapt White" msgstr "Simular impressão, Adapt White" #: pp_menu_options.cpp:124 msgid "Adjust colours to imitate printed colours, excluding paper white" msgstr "" #: pp_pageextent.cpp:228 msgid "Page Size and Margins" msgstr "" #: pp_pageextent.cpp:252 msgid "W:" msgstr "" #: pp_pageextent.cpp:275 msgid "Left:" msgstr "Esquerda:" #: pp_pageextent.cpp:291 msgid "Right:" msgstr "Direita:" #: pp_pageextent.cpp:304 msgid "Top:" msgstr "Topo:" #: pp_pageextent.cpp:315 msgid "Bottom:" msgstr "Pé:" #: gp_cppsupport/printoutputselector.cpp:114 msgid "Print Queue:" msgstr "Fila de Impressão:" #: gp_cppsupport/printoutputselector.cpp:133 msgid "Printer Model:" msgstr "Modelo de Impressora:" #: gp_cppsupport/printoutputselector.cpp:196 #, c-format msgid "" "The printer queue %s\n" " is not found - please choose another" msgstr "" #: gp_cppsupport/printoutputselector.cpp:197 #, fuzzy msgid "Printer queue not found" msgstr "Configuração da Impressora " #: gp_cppsupport/gprinter.cpp:387 #, fuzzy msgid "Unable to generate print data" msgstr "Gerando dados de impressão..." #: pp_scaling.cpp:72 msgid "Algorithm:" msgstr "Algoritmo:" #: pp_scaling.cpp:184 #, fuzzy msgid "Scaling" msgstr "_Redimensionamento" #: pp_sigcontrol.cpp:187 msgid "Columns:" msgstr "Colunas:" #: pp_sigcontrol.cpp:201 msgid "Rows:" msgstr "Linhas:" #: pp_sigcontrol.cpp:215 pp_sigcontrol.cpp:229 msgid "Gap:" msgstr "" #: pp_sigcontrol.cpp:254 msgid "Width:" msgstr "Largura:" #: pp_sigcontrol.cpp:268 msgid "Height:" msgstr "Altura:" #: pp_sigcontrol.cpp:280 #, fuzzy msgid "From selected image" msgstr "Desselecionar" #: pp_sigcontrol.cpp:338 msgid "Layout" msgstr "Leyout:" #: pp_sigcontrol.cpp:341 msgid "Specify rows/columns" msgstr "" #: pp_sigcontrol.cpp:342 msgid "Specify image dimensions" msgstr "" #: pp_units.cpp:60 msgid "Units:" msgstr "Unidades:" #: pp_units.cpp:68 msgid "Points" msgstr "Pontos:" #: pp_units.cpp:71 msgid "Inches" msgstr "Polegadas" #: pp_units.cpp:74 msgid "Millimeters" msgstr "Milímetros" #: pp_units.cpp:77 msgid "Centimeters" msgstr "Centímetros" #: pp_units.cpp:151 msgid "Units" msgstr "Unidades" #: printpreview.cpp:153 #, fuzzy msgid "Preview resolution:" msgstr "Resolução (dpi)" #: printpreview.cpp:157 msgid "180 dots per inch" msgstr "" #: printpreview.cpp:158 msgid "240 dots per inch" msgstr "" #: printpreview.cpp:159 msgid "300 dots per inch" msgstr "" #: printpreview.cpp:160 msgid "360 dots per inch" msgstr "" #: printpreview.cpp:165 msgid "" "Click-and-drag to pan around the preview.\n" "Right-click to toggle magnification." msgstr "" #: printpreview.cpp:168 #, fuzzy msgid "Close" msgstr "Roda" #: printpreview.cpp:236 #, fuzzy msgid "Drawing preview" msgstr "Imprimir Pré-visualização" #: gp_cppsupport/gprintersettings.cpp:413 msgid "" "Can't obtain printer from Gutenprint\n" "Check STP_DATA_PATH and Gutenprint version!" msgstr "" #: profilemanager/lcmswrapper.cpp:553 msgid "Perceptual" msgstr "Percentual" #: profilemanager/lcmswrapper.cpp:554 msgid "Relative Colorimetric" msgstr "Colorimétrica Relativa" #: profilemanager/lcmswrapper.cpp:555 msgid "Relative Colorimetric with BPC" msgstr "Colorimétrica Relativa com BPC" #: profilemanager/lcmswrapper.cpp:556 msgid "Saturation" msgstr "Saturação" #: profilemanager/lcmswrapper.cpp:557 msgid "Absolute Colorimetric" msgstr "Colorimétrica Absoluta" #: profilemanager/lcmswrapper.cpp:562 msgid "" "Aims for pleasing photographic results by preserving relationships between " "colours, and avoiding clipping of unattainable colours" msgstr "" "Tenta privilegiar os resultados fotográficos preservando o relacionamento " "entre as cores e evitando clipping of unattainable colours" #: profilemanager/lcmswrapper.cpp:563 msgid "" "Attempts to preserve the original colours, relative to white-point " "differences." msgstr "" "Tenta preservar as cores originais, relativas às diferenças dos pontos-" "brancos" #: profilemanager/lcmswrapper.cpp:564 msgid "" "Attempts to preserve the original colours, relative to white-point " "differences. Uses Black Point Compensation to avoid clipping of highlights " "and shadows." msgstr "" "Tenta preservar as cores originais, relativas às diferenças dos pontos-" "brancos. Usa Compensação de Pontos Pretos para evitar acentuar os reflexos e " "sombras." #: profilemanager/lcmswrapper.cpp:565 msgid "" "Attempts to provide brighter, more saturated colours, at the expense of " "colour relationships." msgstr "" "Tenta obter cores mais brilhantes e saturadas, em detrimento de " "relacionamentos entre as cores." #: profilemanager/lcmswrapper.cpp:566 msgid "" "Mimics the original colours (including white point) as closely as possible, " "for side-by-side comparisons. Clips unattainable colours." msgstr "" "Imita as cores originais (incluindo pontos brancos) o mais fielmente " "possível, para comparações lado-a-lado. Clips unattainable colours." #: profilemanager/profileselector.cpp:39 miscwidgets/imageselector.cpp:478 msgid "Other..." msgstr "Outro..." #: profilemanager/profileselector.cpp:193 #, fuzzy msgid "None" msgstr "_Nenhuma" #: profilemanager/profileselector.cpp:392 msgid "Please choose a valid ICC profile" msgstr "" #: profilemanager/profilemanager.cpp:207 msgid "Can't do proofing without a valid Printer profile!" msgstr "" #: profilemanager/profilemanager.cpp:212 msgid "Can't do proofing without a valid Monitor profile!" msgstr "" #: profilemanager/profilemanager.cpp:217 msgid "Can't do proofing without a valid Default RGB profile!" msgstr "" #: profilemanager/profilemanager.cpp:497 msgid "No Proof profile provided!" msgstr "" #: profilemanager/profilemanager.cpp:839 #, fuzzy msgid "Default rendering intent" msgstr "Tentar Renderização:" #: stpui_widgets/dimension.c:161 #, fuzzy msgid "points" msgstr "Pontos:" #: stpui_widgets/dimension.c:165 #, fuzzy msgid "inches" msgstr "Polegadas" #: stpui_widgets/dimension.c:169 #, fuzzy msgid "millimeters" msgstr "Milímetros" #: stpui_widgets/dimension.c:173 #, fuzzy msgid "centimeters" msgstr "Centímetros" #: stpui_widgets/stpui_optionbook.c:117 msgid "General" msgstr "" #: stpui_widgets/stpui_optionbook.c:120 #, fuzzy msgid "Manual Settings" msgstr "Tamanho _Manual" #: stpui_widgets/stpui_optionbook.c:123 #, fuzzy msgid "Colour (Basic)" msgstr "Espaço de cor:" #: stpui_widgets/stpui_optionbook.c:126 msgid "Colour (Fine-tuning)" msgstr "" #: stpui_widgets/stpui_optionbook.c:129 msgid "Colour (Extra)" msgstr "" #: miscwidgets/patheditor.cpp:53 msgid "Select directory..." msgstr "Selecionar pasta..." #: miscwidgets/patheditor.cpp:98 msgid "Path" msgstr "Caminho" #: miscwidgets/patheditor.cpp:112 msgid "Add..." msgstr "Adicionar..." #: miscwidgets/patheditor.cpp:117 msgid "Remove" msgstr "Remover" #: miscwidgets/imageselector.cpp:458 msgid "Image" msgstr "Imagem" #: miscwidgets/progressbar.cpp:52 msgid "Progress..." msgstr "" #: imagesource/imagesource_util.cpp:32 msgid "Automatic" msgstr "" #: imagesource/imagesource_util.cpp:32 msgid "Selects a scaling algorithm based on scale factor" msgstr "" #: imagesource/imagesource_util.cpp:33 #, fuzzy msgid "Fast" msgstr "Co_lar" #: imagesource/imagesource_util.cpp:33 msgid "Very fast scaling with no interpolation" msgstr "" #: imagesource/imagesource_util.cpp:34 msgid "Bilinear" msgstr "" #: imagesource/imagesource_util.cpp:34 msgid "An interpolation filter with mediocre speed and quality" msgstr "" #: imagesource/imagesource_util.cpp:35 msgid "LanczosSinc" msgstr "" #: imagesource/imagesource_util.cpp:35 msgid "Slow but very high quality interpolation filter" msgstr "" #: imagesource/imagesource_util.cpp:37 msgid "Downsample" msgstr "" #: imagesource/imagesource_util.cpp:37 msgid "High quality filter for reductions only" msgstr "" #~ msgid "Change Colour Temperature..." #~ msgstr "Mudar Temperatura da Cor..." #~ msgid "Effects..." #~ msgstr "Efeitos..." #~ msgid "Available:" #~ msgstr "Disponível..." #~ msgid "Add" #~ msgstr "Adicionar" #~ msgid "Settings..." #~ msgstr "Configurações..." #, fuzzy #~ msgid "/_File" #~ msgstr "_Arquivo" #, fuzzy #~ msgid "/File/_Open Preset..." #~ msgstr "A_brir Pré-seleção..." #, fuzzy #~ msgid "/File/_Save Preset" #~ msgstr "_Salvar Pré-seleção" #, fuzzy #~ msgid "/File/Save _As..." #~ msgstr "Salvar _Como..." #, fuzzy #~ msgid "/File/Save _Default" #~ msgstr "Salvar _Padrão" #, fuzzy #~ msgid "/File/E_xport TIFF..." #~ msgstr "Exportar TIFF" #, fuzzy #~ msgid "/File/Print Pre_view..." #~ msgstr "Imprimir Pré-visualização" #, fuzzy #~ msgid "/File/Print S_etup..." #~ msgstr "Configuração de Impr_essora" #, fuzzy #~ msgid "/File/_Print" #~ msgstr "_Imprimir" #, fuzzy #~ msgid "/File/_Quit" #~ msgstr "Sai_r" #, fuzzy #~ msgid "/Edit/Select _All" #~ msgstr "Selecionar _Tudo" #, fuzzy #~ msgid "/Edit/Select _None" #~ msgstr "Selecionar _Nada" #, fuzzy #~ msgid "/_Layout" #~ msgstr "_Layout" #, fuzzy #~ msgid "/Layout/_Clear Layout" #~ msgstr "L_impar Layout" #, fuzzy #~ msgid "/Layout/Set _Background" #~ msgstr "Selecionar _Background" #, fuzzy #~ msgid "/Layout/sep" #~ msgstr "Leyout:" #, fuzzy #~ msgid "/Image/_Add Image" #~ msgstr "_Adicionar Imagem..." #, fuzzy #~ msgid "/Image/_Remove Image" #~ msgstr "_Remover Imagem" #, fuzzy #~ msgid "/Image/sep" #~ msgstr "Imagem" #, fuzzy #~ msgid "/Image/Allow _Cropping" #~ msgstr "Permitir _Corte" #, fuzzy #~ msgid "/Image/Rotation/_90 degrees" #~ msgstr "Rotaciona 180 graus." #, fuzzy #~ msgid "/Image/Rotation/_180 degrees" #~ msgstr "Rotaciona 180 graus." #, fuzzy #~ msgid "/Image/Set image _mask..." #~ msgstr "Selecionar _Máscara da Imagem..." #, fuzzy #~ msgid "/Image/_Effects..." #~ msgstr "_Efeitos" #, fuzzy #~ msgid "/Image/Set colour _profile..." #~ msgstr "Configurar _Perfil de Cor" #, fuzzy #~ msgid "/Layout/_Auto Layout" #~ msgstr "Layout _Automático" #, fuzzy #~ msgid "/Layout/_Poster" #~ msgstr "_Cartaz" #, fuzzy #~ msgid "/Layout/_Carousel" #~ msgstr "_Roda" #, fuzzy #~ msgid "/Layout/_Manual Size" #~ msgstr "Tamanho _Manual" #, fuzzy #~ msgid "/_Options" #~ msgstr "_Opções" #, fuzzy #~ msgid "/Options/_Paths..." #~ msgstr "C_aminhos" #, fuzzy #~ msgid "/Options/Colour _Management..." #~ msgstr "Gerenciamento de _Cor" #, fuzzy #~ msgid "/Options/_Units..." #~ msgstr "_Uniddes" #, fuzzy #~ msgid "/Options/_Scaling..." #~ msgstr "_Redimensionamento" #, fuzzy #~ msgid "/_Help" #~ msgstr "_Ajuda" #, fuzzy #~ msgid "/_Remove Image" #~ msgstr "_Remover Imagem" #, fuzzy #~ msgid "/Allow _Cropping" #~ msgstr "Permitir _Corte" #, fuzzy #~ msgid "/Rotation/Auto" #~ msgstr "R_otação" #, fuzzy #~ msgid "/Rotation/None" #~ msgstr "R_otação" #, fuzzy #~ msgid "/Rotation/90 degrees" #~ msgstr "Rotaciona 180 graus." #, fuzzy #~ msgid "/Rotation/180 degrees" #~ msgstr "Rotaciona 180 graus." #, fuzzy #~ msgid "/Rotation/270 degrees" #~ msgstr "Rotaciona 180 graus." #, fuzzy #~ msgid "/Set image mask..." #~ msgstr "Selecionar _Máscara da Imagem..." #, fuzzy #~ msgid "/_Effects..." #~ msgstr "_Efeitos" #, fuzzy #~ msgid "/Set colour _profile..." #~ msgstr "Configurar _Perfil de Cor" #~ msgid "Poster Size:" #~ msgstr "Tamanho do Cartaz:" #~ msgid "Tiles high:" #~ msgstr "Altura das divisões:" #~ msgid "Scale" #~ msgstr "Escala" #~ msgid "Margins" #~ msgstr "Margens" #~ msgid "Horizontal:" #~ msgstr "Horinzontal:" #~ msgid "Vertical:" #~ msgstr "Vertical:" photoprint-0.4.2-pre2/po/photoprint.pot0000644000175000017500000006324511400237672015076 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Alastair M. Robinson # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: photoprint 0.4.2-pre2\n" "Report-Msgid-Bugs-To: blackfive@fakenhamweb.co.uk\n" "POT-Creation-Date: 2010-05-29 17:24+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #: dialogs.cpp:75 msgid "Colour Response Hash" msgstr "" #: dialogs.cpp:96 msgid "" "This \"hash\" value is derived from the printer driver's output,\n" "and can be used to verify that no changes have occurred which\n" "might invalidate a colour profile for the printer" msgstr "" #: dialogs.cpp:108 msgid "Current hash:" msgstr "" #: dialogs.cpp:112 msgid "Stored in preset:" msgstr "" #: dialogs.cpp:118 msgid "No hash stored yet" msgstr "" #: dialogs.cpp:127 msgid "" "Calculating hash of printer response\n" "with current driver settings" msgstr "" #: dialogs.cpp:132 msgid "Store in preset" msgstr "" #: dialogs.cpp:156 msgid "" "MATCH - No changes in driver\n" "or printer settings detected" msgstr "" #: dialogs.cpp:162 msgid "" "This hash can be used to detect changes\n" "in printer settings or driver versions\n" "that might invalidate colour profiles" msgstr "" #: dialogs.cpp:164 msgid "" "MISMATCH - change detected in printer response!\n" "Printer's colour profile might no longer be accurate." msgstr "" #: dialogs.cpp:287 msgid "Printer Setup" msgstr "" #: dialogs.cpp:301 msgid "Output" msgstr "" #: dialogs.cpp:338 msgid "About" msgstr "" #: dialogs.cpp:349 msgid "PhotoPrint " msgstr "" #: dialogs.cpp:388 msgid "Set paths..." msgstr "" #: dialogs.cpp:413 msgid "ICC Profiles" msgstr "" #: dialogs.cpp:445 msgid "Borders" msgstr "" #: dialogs.cpp:476 msgid "Backgrounds" msgstr "" #: dialogs.cpp:504 msgid "Select a border..." msgstr "" #: dialogs.cpp:551 msgid "Export TIFF..." msgstr "" #: dialogs.cpp:577 dialogs.cpp:776 msgid "Page range:" msgstr "" #: dialogs.cpp:590 dialogs.cpp:786 msgid "Resolution (dpi):" msgstr "" #: dialogs.cpp:598 msgid "Save as 16-bit:" msgstr "" #: dialogs.cpp:617 dialogs.cpp:821 msgid "Output Profile:" msgstr "" #: dialogs.cpp:677 dialogs.cpp:914 msgid "Please provide a filename." msgstr "" #: dialogs.cpp:708 dialogs.cpp:892 msgid "Exporting..." msgstr "" #: dialogs.cpp:747 msgid "Export JPEG..." msgstr "" #: dialogs.cpp:805 msgid "JPEG Quality:" msgstr "" #: dialogs.cpp:931 msgid "Select a background..." msgstr "" #: dialogs.cpp:1023 pp_menu_image.cpp:276 msgid "Please select an image first!" msgstr "" #: dialogs.cpp:1054 msgid "Set Custom Profile..." msgstr "" #: dialogs.cpp:1066 msgid "Before:" msgstr "" #: dialogs.cpp:1070 msgid "After:" msgstr "" #: dialogs.cpp:1084 msgid "" "Can't show a colour managed\n" "preview unless you choose\n" "a Default RGB or Monitor profile\n" "in the Options->Colour Management\n" "dialog!" msgstr "" #: dialogs.cpp:1109 msgid "" "Warning: Image already has an embedded profile\n" "Assigning a new one will over-ride it!" msgstr "" #: dialogs.cpp:1126 msgid "Assign Profile:" msgstr "" #: dialogs.cpp:1134 pp_cms.cpp:349 msgid "Rendering intent:" msgstr "" #: effects/ppeffect_temperature.cpp:28 msgid "Warm/Cool" msgstr "" #: effects/effectselector.cpp:222 msgid "Active" msgstr "" #: effects/effectselector.cpp:231 msgid "Icon" msgstr "" #: effects/effectselector.cpp:243 msgid "Name" msgstr "" #: effects/ppeffect_desaturate.cpp:25 msgid "Desaturate" msgstr "" #: effects/effectwidget_tempchange.cpp:57 #, c-format msgid "%d degrees K" msgstr "" #: effects/ppeffect_unsharpmask.cpp:25 msgid "Sharpen" msgstr "" #: effects/effectwidget_unsharpmask.cpp:66 #, c-format msgid "Radius: %1.2f" msgstr "" #: effects/effectwidget_unsharpmask.cpp:72 #, c-format msgid "Amount: %1.2f" msgstr "" #: menucheck.cpp:23 pp_menu_file.cpp:135 msgid "_File" msgstr "" #: menucheck.cpp:25 pp_menu_file.cpp:137 msgid "_Open Preset..." msgstr "" #: menucheck.cpp:25 pp_menu_file.cpp:137 msgid "Open a preset" msgstr "" #: menucheck.cpp:26 pp_menu_file.cpp:138 msgid "_Save Preset" msgstr "" #: menucheck.cpp:26 pp_menu_file.cpp:138 msgid "Save a preset" msgstr "" #: menucheck.cpp:27 pp_menu_file.cpp:139 msgid "Save _As..." msgstr "" #: menucheck.cpp:27 pp_menu_file.cpp:139 msgid "Save preset with a new filename" msgstr "" #: menucheck.cpp:28 pp_menu_file.cpp:140 msgid "Save _Default" msgstr "" #: menucheck.cpp:28 pp_menu_file.cpp:140 msgid "Save preset as the default" msgstr "" #: menucheck.cpp:29 msgid "E_xport TIFF..." msgstr "" #: menucheck.cpp:29 pp_menu_file.cpp:142 msgid "Export pages as TIFF files" msgstr "" #: menucheck.cpp:30 pp_menu_file.cpp:144 msgid "Print Pre_view..." msgstr "" #: menucheck.cpp:30 pp_menu_file.cpp:144 msgid "Preview how the printed page will look" msgstr "" #: menucheck.cpp:31 pp_menu_file.cpp:145 msgid "Print S_etup..." msgstr "" #: menucheck.cpp:31 pp_menu_file.cpp:145 msgid "Set printer driver and options" msgstr "" #: menucheck.cpp:32 pp_menu_file.cpp:146 msgid "_Print" msgstr "" #: menucheck.cpp:32 pp_menu_file.cpp:146 msgid "Print pages" msgstr "" #: menucheck.cpp:33 pp_menu_file.cpp:147 msgid "_Quit" msgstr "" #: menucheck.cpp:33 pp_menu_file.cpp:147 msgid "Exit PhotoPrint" msgstr "" #: menucheck.cpp:62 pp_menu_layout.cpp:131 msgid "_Layout" msgstr "" #: menucheck.cpp:63 pp_menu_image.cpp:316 msgid "_Image" msgstr "" #: menucheck.cpp:64 pp_menu_options.cpp:108 msgid "_Options" msgstr "" #: menucheck.cpp:65 pp_menu_help.cpp:29 msgid "_Help" msgstr "" #: menucheck.cpp:67 pp_menu_layout.cpp:133 msgid "_Clear Layout" msgstr "" #: menucheck.cpp:67 pp_menu_layout.cpp:133 msgid "Remove all images from the layout" msgstr "" #: menucheck.cpp:68 pp_menu_layout.cpp:134 msgid "Set _Background" msgstr "" #: menucheck.cpp:68 pp_menu_layout.cpp:134 msgid "Set a background image for the current layout" msgstr "" #: menucheck.cpp:70 pp_menu_image.cpp:318 msgid "_Add Image..." msgstr "" #: menucheck.cpp:70 pp_menu_image.cpp:318 msgid "Add images to the current layout" msgstr "" #: menucheck.cpp:71 pp_menu_image.cpp:319 msgid "_Remove Image" msgstr "" #: menucheck.cpp:71 pp_menu_image.cpp:319 msgid "Remove selected images from the layout" msgstr "" #: menucheck.cpp:73 pp_menu_image.cpp:323 msgid "_Rotation" msgstr "" #: menucheck.cpp:75 msgid "Set Image _Mask..." msgstr "" #: menucheck.cpp:75 pp_menu_image.cpp:325 msgid "Set a border mask for the selected image" msgstr "" #: menucheck.cpp:76 msgid "_Effects..." msgstr "" #: menucheck.cpp:76 msgid "Apply effects to the selected image" msgstr "" #: menucheck.cpp:77 pp_menu_image.cpp:327 msgid "Set Colour _Profile..." msgstr "" #: menucheck.cpp:77 pp_menu_image.cpp:327 msgid "Assign an ICC profile or custom rendering intent to the image" msgstr "" #: menucheck.cpp:79 pp_menu_options.cpp:110 msgid "_Paths..." msgstr "" #: menucheck.cpp:79 pp_menu_options.cpp:110 msgid "Set search paths for ICC profiles, borders, etc." msgstr "" #: menucheck.cpp:80 pp_menu_options.cpp:111 msgid "_Colour Management..." msgstr "" #: menucheck.cpp:80 pp_menu_options.cpp:111 msgid "Set colour management options" msgstr "" #: menucheck.cpp:81 pp_menu_options.cpp:113 msgid "_Units..." msgstr "" #: menucheck.cpp:81 pp_menu_options.cpp:113 msgid "Select the units used throughout PhotoPrint" msgstr "" #: menucheck.cpp:82 pp_menu_options.cpp:114 msgid "_Scaling..." msgstr "" #: menucheck.cpp:82 pp_menu_options.cpp:114 msgid "Select the preferred scaling method." msgstr "" #: menucheck.cpp:84 pp_menu_help.cpp:31 msgid "About..." msgstr "" #: menucheck.cpp:84 pp_menu_help.cpp:31 msgid "Some information about PhotoPrint" msgstr "" #: menucheck.cpp:89 pp_menu_image.cpp:332 msgid "Allow _Cropping" msgstr "" #: menucheck.cpp:89 pp_menu_image.cpp:332 msgid "Crop the selected images to fill the available space" msgstr "" #: menucheck.cpp:94 pp_menu_layout.cpp:139 msgid "_Auto Layout" msgstr "" #: menucheck.cpp:94 pp_menu_layout.cpp:139 msgid "Automatically place images in a grid" msgstr "" #: menucheck.cpp:95 pp_menu_layout.cpp:140 msgid "_Poster" msgstr "" #: menucheck.cpp:95 pp_menu_layout.cpp:140 msgid "Print an image in multiple pages, to be assembled into a poster" msgstr "" #: menucheck.cpp:96 pp_menu_layout.cpp:141 msgid "_Carousel" msgstr "" #: menucheck.cpp:96 pp_menu_layout.cpp:141 msgid "Fade images into a circular 'carousel' - ideal for CD labels." msgstr "" #: menucheck.cpp:97 pp_menu_layout.cpp:142 msgid "_Manual Size" msgstr "" #: menucheck.cpp:97 pp_menu_layout.cpp:142 msgid "Print images on a single sheet, at a specified scale." msgstr "" #: menucheck.cpp:101 pp_menu_image.cpp:337 msgid "_Auto" msgstr "" #: menucheck.cpp:101 pp_menu_image.cpp:337 msgid "Automatically choose rotation to fit the available space." msgstr "" #: menucheck.cpp:102 pp_menu_image.cpp:338 msgid "_None" msgstr "" #: menucheck.cpp:102 pp_menu_image.cpp:338 msgid "No rotation." msgstr "" #: menucheck.cpp:103 pp_menu_image.cpp:339 msgid "_90 Degrees" msgstr "" #: menucheck.cpp:103 pp_menu_image.cpp:339 msgid "Rotate 90 degrees clockwise." msgstr "" #: menucheck.cpp:104 pp_menu_image.cpp:340 msgid "_180 Degrees" msgstr "" #: menucheck.cpp:104 pp_menu_image.cpp:340 msgid "Rotate 180 degrees." msgstr "" #: menucheck.cpp:105 pp_menu_image.cpp:341 msgid "_270 Degrees" msgstr "" #: menucheck.cpp:105 pp_menu_image.cpp:341 msgid "Rotate 90 degrees anticlockwise." msgstr "" #: menucheck.cpp:229 msgid "Dither Algorithm" msgstr "" #: photoprint.cpp:135 msgid "Initializing..." msgstr "" #: photoprint.cpp:144 msgid "Checking .photoprint directory..." msgstr "" #: photoprint.cpp:149 msgid "Loading preset..." msgstr "" #: photoprint.cpp:154 msgid "Creating layout..." msgstr "" #: photoprint.cpp:197 msgid "Loading images..." msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:349 #, c-format msgid "Error creating directory `%s': %s" msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:463 #, c-format msgid "Error opening `%s': %s" msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:481 #, c-format msgid "Error reading `%s': file contains no data." msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:505 #, c-format msgid "Error reading `%s': %s" msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:540 #, c-format msgid "" "Failed to load image '%s': reason not known, probably a corrupt image file" msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:613 #, c-format msgid "Error verifying `%s': %s" msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:629 #, c-format msgid "Error reading `%s': file is not a regular file or symbolic link." msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:1071 #, c-format msgid "Error creating temporary thumbnail file for `%s': %s" msgstr "" #: pp_cms.cpp:148 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "will first be converted to the default CMYK profile" msgstr "" #: pp_cms.cpp:154 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "cannot be printed without a default CMYK profile." msgstr "" #: pp_cms.cpp:160 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "cannot be printed without a default RGB and CMYK profile." msgstr "" #: pp_cms.cpp:168 msgid "" "Printer profile is a devicelink - RGB images with embedded profiles\n" "will first be converted to the default RGB profile." msgstr "" #: pp_cms.cpp:174 msgid "" "Printer profile is a devicelink - RGB images with embedded profiles will " "not\n" "print correctly, since there is no default RGB profile." msgstr "" #: pp_cms.cpp:180 msgid "RGB images will print correctly" msgstr "" #: pp_cms.cpp:185 msgid "" "RGB images can be printed but colours depend on the driver\n" "(Colours will be accurate for images that contain an embedded profile)" msgstr "" #: pp_cms.cpp:190 msgid "RGB images can be printed but colours depend on the driver" msgstr "" #: pp_cms.cpp:195 msgid "" "RGB images can only be printed if they have an embedded profile\n" "(Workflow is CMYK and there is no default RGB profile)" msgstr "" #: pp_cms.cpp:200 msgid "" "RGB images cannot be printed\n" "(Workflow is CMYK and there is no printer profile)" msgstr "" #: pp_cms.cpp:215 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "will first be converted to the default RGB profile" msgstr "" #: pp_cms.cpp:221 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "cannot be printed without a default RGB profile." msgstr "" #: pp_cms.cpp:227 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "cannot be printed without a default RGB and CMYK profile." msgstr "" #: pp_cms.cpp:234 msgid "" "Printer profile is a devicelink - CMYK images with embedded profiles\n" "will first be converted to the default CMYK profile." msgstr "" #: pp_cms.cpp:240 msgid "" "Printer profile is a devicelink - CMYK images with embedded profiles will " "not\n" "print correctly since there is no default CMYK profile." msgstr "" #: pp_cms.cpp:246 msgid "CMYK images will print correctly" msgstr "" #: pp_cms.cpp:251 msgid "" "CMYK images can be printed but colours depend on the driver\n" "(Colours will be accurate for images that contain an embedded profile)" msgstr "" #: pp_cms.cpp:256 msgid "CMYK images can be printed but colours depend on the driver" msgstr "" #: pp_cms.cpp:261 msgid "" "CMYK images can only be printed if they have an embedded profile\n" "(Workflow is RGB and there is no default CMYK profile)" msgstr "" #: pp_cms.cpp:266 msgid "" "CMYK images cannot be printed\n" "(Workflow is RGB and there is no printer profile)" msgstr "" #: pp_cms.cpp:276 msgid "Images will be displayed correctly" msgstr "" #: pp_cms.cpp:281 msgid "" "Images will only be displayed correctly if they have an embedded profile" msgstr "" #: pp_cms.cpp:286 msgid "Images will not be displayed correctly" msgstr "" #: pp_cms.cpp:317 msgid "Printer" msgstr "" #: pp_cms.cpp:332 msgid "Printer Profile:" msgstr "" #: pp_cms.cpp:364 msgid "Colour space:" msgstr "" #: pp_cms.cpp:372 msgid "RGB" msgstr "" #: pp_cms.cpp:372 msgid "Send Red, Green and Blue data to the printer driver" msgstr "" #: pp_cms.cpp:373 msgid "CMYK" msgstr "" #: pp_cms.cpp:373 msgid "Send Cyan, Magenta, Yellow and Black data to the printer driver" msgstr "" #: pp_cms.cpp:383 msgid "Monitor" msgstr "" #: pp_cms.cpp:396 msgid "Monitor Profile:" msgstr "" #: pp_cms.cpp:411 msgid "Display mode:" msgstr "" #: pp_cms.cpp:420 msgid "Normal" msgstr "" #: pp_cms.cpp:420 msgid "Displays images' original colours, transformed to suit the monitor" msgstr "" #: pp_cms.cpp:421 msgid "Simulate Print" msgstr "" #: pp_cms.cpp:421 msgid "" "Simulates how colours will look when printed, imitating the paper's white " "point." msgstr "" #: pp_cms.cpp:422 msgid "Simulate Print, Adapt White" msgstr "" #: pp_cms.cpp:422 msgid "" "Simulates how colours will look when printed, adapting colours for the " "monitor's white point." msgstr "" #: pp_cms.cpp:432 msgid "Default Image Profiles" msgstr "" #: pp_cms.cpp:447 msgid "RGB Profile:" msgstr "" #: pp_cms.cpp:464 msgid "CMYK Profile:" msgstr "" #: pp_cms.cpp:666 msgid "Colour Management" msgstr "" #: pp_histogram.cpp:282 msgid "Histogram" msgstr "" #: pp_imagecontrol.cpp:134 msgid "Effects" msgstr "" #: pp_imageinfo.cpp:107 msgid "in" msgstr "" #: pp_imageinfo.cpp:110 msgid "pt" msgstr "" #: pp_imageinfo.cpp:115 msgid "cm" msgstr "" #: pp_imageinfo.cpp:120 msgid "mm" msgstr "" #: pp_imageinfo.cpp:168 msgid "Image Info" msgstr "" #: pp_imageinfo.cpp:195 msgid "Filename:" msgstr "" #: pp_imageinfo.cpp:208 msgid "Dimensions:" msgstr "" #: pp_imageinfo.cpp:228 msgid "Resolution:" msgstr "" #: pp_imageinfo.cpp:241 msgid "Profile:" msgstr "" #: pp_imageinfo.cpp:351 msgid "pixels" msgstr "" #: pp_imageinfo.cpp:380 profilemanager/profilemanager.cpp:831 msgid "Default" msgstr "" #: pp_layout_carousel.cpp:247 pp_layout_carousel.cpp:379 pp_layout_nup.cpp:222 #: pp_layout_poster.cpp:312 pp_layout_poster.cpp:464 pp_layout_single.cpp:233 #: printpreview.cpp:146 msgid "Page:" msgstr "" #: pp_layout_carousel.cpp:275 msgid "Carousel" msgstr "" #: pp_layout_carousel.cpp:291 msgid "Segments:" msgstr "" #: pp_layout_carousel.cpp:306 msgid "Overlap (%):" msgstr "" #: pp_layout_carousel.cpp:321 msgid "Starting angle:" msgstr "" #: pp_layout_carousel.cpp:336 msgid "Inner Radius:" msgstr "" #: pp_layout_poster.cpp:339 msgid "Poster Layout" msgstr "" #: pp_layout_poster.cpp:354 msgid "Size" msgstr "" #: pp_layout_poster.cpp:366 pp_layout_poster.cpp:390 msgid "by" msgstr "" #: pp_layout_poster.cpp:378 msgid "Tiles" msgstr "" #: pp_layout_poster.cpp:400 msgid "Overlap" msgstr "" #: pp_layout_poster.cpp:414 pp_pageextent.cpp:262 msgid "H:" msgstr "" #: pp_layout_poster.cpp:426 msgid "V:" msgstr "" #: pp_layout_single.cpp:261 msgid "Manual scaling" msgstr "" #: pp_layout_single.cpp:277 msgid "H (%):" msgstr "" #: pp_layout_single.cpp:291 msgid "V (%):" msgstr "" #: pp_mainwindow.cpp:228 msgid "Transferring images..." msgstr "" #: pp_menu_edit.cpp:37 msgid "_Edit" msgstr "" #: pp_menu_edit.cpp:39 msgid "Select _All" msgstr "" #: pp_menu_edit.cpp:39 msgid "Select all images" msgstr "" #: pp_menu_edit.cpp:40 msgid "Select _None" msgstr "" #: pp_menu_edit.cpp:40 msgid "Deselect all images" msgstr "" #: pp_menu_edit.cpp:41 msgid "_Cut" msgstr "" #: pp_menu_edit.cpp:41 msgid "Cut the current image to the clipboard" msgstr "" #: pp_menu_edit.cpp:42 msgid "C_opy" msgstr "" #: pp_menu_edit.cpp:42 msgid "Copy the current image to the clipboard" msgstr "" #: pp_menu_edit.cpp:43 msgid "_Paste" msgstr "" #: pp_menu_edit.cpp:43 msgid "Paste the contents of the clipboard as a new image" msgstr "" #: pp_menu_file.cpp:38 msgid "Open preset..." msgstr "" #: pp_menu_file.cpp:64 msgid "Save preset..." msgstr "" #: pp_menu_file.cpp:115 msgid "Generating print data..." msgstr "" #: pp_menu_file.cpp:141 msgid "E_xport" msgstr "" #: pp_menu_file.cpp:142 msgid "Export _TIFF..." msgstr "" #: pp_menu_file.cpp:143 msgid "Export _JPEG..." msgstr "" #: pp_menu_file.cpp:143 msgid "Export pages as JPEG files" msgstr "" #: pp_menu_shortcuts.cpp:78 msgid "_Shortcuts" msgstr "" #: pp_menu_shortcuts.cpp:131 msgid "Error fetching preset name!" msgstr "" #: pp_menu_image.cpp:64 msgid "Open File" msgstr "" #: pp_menu_image.cpp:104 msgid "Adding images..." msgstr "" #: pp_menu_image.cpp:186 msgid "Page is already full!" msgstr "" #: pp_menu_image.cpp:320 msgid "_Duplicate Image" msgstr "" #: pp_menu_image.cpp:320 msgid "Duplicate the currently selected image" msgstr "" #: pp_menu_image.cpp:321 msgid "Duplicate to _Fill Page" msgstr "" #: pp_menu_image.cpp:321 msgid "Fill the page with copies of the currently selected image" msgstr "" #: pp_menu_image.cpp:325 msgid "Set Image _Border..." msgstr "" #: pp_menu_options.cpp:112 msgid "_Colour Response Hash..." msgstr "" #: pp_menu_options.cpp:112 msgid "Create a hash for verifying printer settings" msgstr "" #: pp_menu_options.cpp:118 msgid "High-res Previews" msgstr "" #: pp_menu_options.cpp:118 msgid "Render high-resolution previews in the background" msgstr "" #: pp_menu_options.cpp:122 msgid "_Normal Display" msgstr "" #: pp_menu_options.cpp:122 msgid "Display colours with no print simulation" msgstr "" #: pp_menu_options.cpp:123 msgid "Simulate Prin_t" msgstr "" #: pp_menu_options.cpp:123 msgid "" "Adjust colours on screen to imitate printed colours, including paper white" msgstr "" #: pp_menu_options.cpp:124 msgid "Simulate Print, _Adapt White" msgstr "" #: pp_menu_options.cpp:124 msgid "Adjust colours to imitate printed colours, excluding paper white" msgstr "" #: pp_pageextent.cpp:228 msgid "Page Size and Margins" msgstr "" #: pp_pageextent.cpp:252 msgid "W:" msgstr "" #: pp_pageextent.cpp:275 msgid "Left:" msgstr "" #: pp_pageextent.cpp:291 msgid "Right:" msgstr "" #: pp_pageextent.cpp:304 msgid "Top:" msgstr "" #: pp_pageextent.cpp:315 msgid "Bottom:" msgstr "" #: gp_cppsupport/printoutputselector.cpp:114 msgid "Print Queue:" msgstr "" #: gp_cppsupport/printoutputselector.cpp:133 msgid "Printer Model:" msgstr "" #: gp_cppsupport/printoutputselector.cpp:196 #, c-format msgid "" "The printer queue %s\n" " is not found - please choose another" msgstr "" #: gp_cppsupport/printoutputselector.cpp:197 msgid "Printer queue not found" msgstr "" #: gp_cppsupport/gprinter.cpp:387 msgid "Unable to generate print data" msgstr "" #: pp_scaling.cpp:72 msgid "Algorithm:" msgstr "" #: pp_scaling.cpp:184 msgid "Scaling" msgstr "" #: pp_sigcontrol.cpp:187 msgid "Columns:" msgstr "" #: pp_sigcontrol.cpp:201 msgid "Rows:" msgstr "" #: pp_sigcontrol.cpp:215 pp_sigcontrol.cpp:229 msgid "Gap:" msgstr "" #: pp_sigcontrol.cpp:254 msgid "Width:" msgstr "" #: pp_sigcontrol.cpp:268 msgid "Height:" msgstr "" #: pp_sigcontrol.cpp:280 msgid "From selected image" msgstr "" #: pp_sigcontrol.cpp:338 msgid "Layout" msgstr "" #: pp_sigcontrol.cpp:341 msgid "Specify rows/columns" msgstr "" #: pp_sigcontrol.cpp:342 msgid "Specify image dimensions" msgstr "" #: pp_units.cpp:60 msgid "Units:" msgstr "" #: pp_units.cpp:68 msgid "Points" msgstr "" #: pp_units.cpp:71 msgid "Inches" msgstr "" #: pp_units.cpp:74 msgid "Millimeters" msgstr "" #: pp_units.cpp:77 msgid "Centimeters" msgstr "" #: pp_units.cpp:151 msgid "Units" msgstr "" #: printpreview.cpp:153 msgid "Preview resolution:" msgstr "" #: printpreview.cpp:157 msgid "180 dots per inch" msgstr "" #: printpreview.cpp:158 msgid "240 dots per inch" msgstr "" #: printpreview.cpp:159 msgid "300 dots per inch" msgstr "" #: printpreview.cpp:160 msgid "360 dots per inch" msgstr "" #: printpreview.cpp:165 msgid "" "Click-and-drag to pan around the preview.\n" "Right-click to toggle magnification." msgstr "" #: printpreview.cpp:168 msgid "Close" msgstr "" #: printpreview.cpp:236 msgid "Drawing preview" msgstr "" #: gp_cppsupport/gprintersettings.cpp:413 msgid "" "Can't obtain printer from Gutenprint\n" "Check STP_DATA_PATH and Gutenprint version!" msgstr "" #: profilemanager/lcmswrapper.cpp:553 msgid "Perceptual" msgstr "" #: profilemanager/lcmswrapper.cpp:554 msgid "Relative Colorimetric" msgstr "" #: profilemanager/lcmswrapper.cpp:555 msgid "Relative Colorimetric with BPC" msgstr "" #: profilemanager/lcmswrapper.cpp:556 msgid "Saturation" msgstr "" #: profilemanager/lcmswrapper.cpp:557 msgid "Absolute Colorimetric" msgstr "" #: profilemanager/lcmswrapper.cpp:562 msgid "" "Aims for pleasing photographic results by preserving relationships between " "colours, and avoiding clipping of unattainable colours" msgstr "" #: profilemanager/lcmswrapper.cpp:563 msgid "" "Attempts to preserve the original colours, relative to white-point " "differences." msgstr "" #: profilemanager/lcmswrapper.cpp:564 msgid "" "Attempts to preserve the original colours, relative to white-point " "differences. Uses Black Point Compensation to avoid clipping of highlights " "and shadows." msgstr "" #: profilemanager/lcmswrapper.cpp:565 msgid "" "Attempts to provide brighter, more saturated colours, at the expense of " "colour relationships." msgstr "" #: profilemanager/lcmswrapper.cpp:566 msgid "" "Mimics the original colours (including white point) as closely as possible, " "for side-by-side comparisons. Clips unattainable colours." msgstr "" #: profilemanager/profileselector.cpp:39 miscwidgets/imageselector.cpp:478 msgid "Other..." msgstr "" #: profilemanager/profileselector.cpp:193 msgid "None" msgstr "" #: profilemanager/profileselector.cpp:392 msgid "Please choose a valid ICC profile" msgstr "" #: profilemanager/profilemanager.cpp:207 msgid "Can't do proofing without a valid Printer profile!" msgstr "" #: profilemanager/profilemanager.cpp:212 msgid "Can't do proofing without a valid Monitor profile!" msgstr "" #: profilemanager/profilemanager.cpp:217 msgid "Can't do proofing without a valid Default RGB profile!" msgstr "" #: profilemanager/profilemanager.cpp:497 msgid "No Proof profile provided!" msgstr "" #: profilemanager/profilemanager.cpp:839 msgid "Default rendering intent" msgstr "" #: stpui_widgets/dimension.c:161 msgid "points" msgstr "" #: stpui_widgets/dimension.c:165 msgid "inches" msgstr "" #: stpui_widgets/dimension.c:169 msgid "millimeters" msgstr "" #: stpui_widgets/dimension.c:173 msgid "centimeters" msgstr "" #: stpui_widgets/stpui_optionbook.c:117 msgid "General" msgstr "" #: stpui_widgets/stpui_optionbook.c:120 msgid "Manual Settings" msgstr "" #: stpui_widgets/stpui_optionbook.c:123 msgid "Colour (Basic)" msgstr "" #: stpui_widgets/stpui_optionbook.c:126 msgid "Colour (Fine-tuning)" msgstr "" #: stpui_widgets/stpui_optionbook.c:129 msgid "Colour (Extra)" msgstr "" #: miscwidgets/patheditor.cpp:53 msgid "Select directory..." msgstr "" #: miscwidgets/patheditor.cpp:98 msgid "Path" msgstr "" #: miscwidgets/patheditor.cpp:112 msgid "Add..." msgstr "" #: miscwidgets/patheditor.cpp:117 msgid "Remove" msgstr "" #: miscwidgets/imageselector.cpp:458 msgid "Image" msgstr "" #: miscwidgets/progressbar.cpp:52 msgid "Progress..." msgstr "" #: imagesource/imagesource_util.cpp:32 msgid "Automatic" msgstr "" #: imagesource/imagesource_util.cpp:32 msgid "Selects a scaling algorithm based on scale factor" msgstr "" #: imagesource/imagesource_util.cpp:33 msgid "Fast" msgstr "" #: imagesource/imagesource_util.cpp:33 msgid "Very fast scaling with no interpolation" msgstr "" #: imagesource/imagesource_util.cpp:34 msgid "Bilinear" msgstr "" #: imagesource/imagesource_util.cpp:34 msgid "An interpolation filter with mediocre speed and quality" msgstr "" #: imagesource/imagesource_util.cpp:35 msgid "LanczosSinc" msgstr "" #: imagesource/imagesource_util.cpp:35 msgid "Slow but very high quality interpolation filter" msgstr "" #: imagesource/imagesource_util.cpp:37 msgid "Downsample" msgstr "" #: imagesource/imagesource_util.cpp:37 msgid "High quality filter for reductions only" msgstr "" photoprint-0.4.2-pre2/po/ChangeLog0000644000175000017500000000153111101462351013674 000000000000002008-03-27 gettextize * Makefile.in.in: Upgrade to gettext-0.17. * Rules-quot: New file, from gettext-0.17. * boldquot.sed: New file, from gettext-0.17. * en@boldquot.header: New file, from gettext-0.17. * en@quot.header: New file, from gettext-0.17. * insert-header.sin: New file, from gettext-0.17. * quot.sed: New file, from gettext-0.17. 2006-11-04 gettextize * Makefile.in.in: New file, from gettext-0.14.6. * boldquot.sed: New file, from gettext-0.14.6. * en@boldquot.header: New file, from gettext-0.14.6. * en@quot.header: New file, from gettext-0.14.6. * insert-header.sin: New file, from gettext-0.14.6. * quot.sed: New file, from gettext-0.14.6. * remove-potcdate.sin: New file, from gettext-0.14.6. * Rules-quot: New file, from gettext-0.14.6. * POTFILES.in: New file. photoprint-0.4.2-pre2/po/de.gmo0000644000175000017500000005036511400237673013240 00000000000000Þ•ÔuŒ` an€’¤¶¼ÅÛ â J@f§® 0; K#Y}=OË›]·9$O t€ˆ˜ «A±Pó€DÅ Î!ÚNüKQ`o„– «¹'Â,ê4* _&m”œ ³¾ Ò(Þ BXi&y ¸ÀÐ!Ø4ú/ F *] @ˆ É â ò !! !0!K! f!=s!J±! ü!9"@"T"Y"a"z""„"Œ" ž" ¨"µ"º" À"Ë"Ò" â" ð"þ"# ##9/#ei#Ï#ß# î#†ú#$‰$š$Ÿ$ ²$¿$ Æ$ Ð$Þ$í$ö$ý$ % %"%8% N%Z%2`%“% ˜% £%!¯%Ñ%ì% & &&&F&Z& l&y&?‰&5É& ÿ& ''"' 3'A'Y' b'n' r' ''£'Â'!É'&ë'1(D(V( h(t({( (°(Í( Ó( Þ( ê( ø())1)Q) `) j) v)ƒ)š)­)¿)$Ó)+ø)?$*3d*˜*¯*Å*Ú*í*-ý*(++T+ r++0ž+Ï+×+ç+ö+,]/,P,Þ,!ã,--3-C-S-:e-® -tO.Ä.Ê.Ï.æ./ //// /U(/~/ …/ ’/ Ÿ/ «/¹/ ¿/ Ì/ Ö/ä/ú/00)0 /0;0A0G0N0 V0c0i0y0‰0’0 ™0£0«0²0 ¸0 Æ0 Ð0 Ý0 é0 ô0þ0 1 111 1&1)10171f:1 ¡2®2¶2¾2Æ2Î2Ô2Ý2 ò2ü23+3WA3V™3ð3³ù3 ­4º4Ñ4*à4 5@5U]5¶³5Yj6<Ä6*7 ,787@7H7O7 T7 a7Yk7`Å7ž&8 Å8 Ï8!Ú8Zü8 W9b9}9Œ9¦9µ9 Ê9Ô91Ý9F:V:Qi:»:0Ò:; ; ";/;H;&Q;x;D‹;Ð;ã;(õ;(< G<S<i<*q<<œ< Ù<ú<6=ZP=%«=Ñ=ã=ö=>&>">>"a> „>C’>MÖ> $?</?l? ƒ? ‘?›?µ? Å?Ñ?Ø? ñ? ü?@ @ @@!@4@F@V@]@d@s@Mƒ@UÑ@'A>A RAˆ]A æAñAB!B*B9B @BMBaB rB|B„B “B B²BÍB èBôB6ûB2C7C NC)YCƒC£CÃC ÊCØC÷C DD1DOIDC™DÝDïD÷DEE%(ENEVEeE iE uEƒE1˜E ÊE#ÔE0øE3)F]FrF „FF˜F)«F"ÕFøF G GG6GMGbG(GªG ¿GÉGÚGìGHH4H+JH1vHD¨H7íH%IAI]IyI’I7ªI8âI"J>JRJ8rJ «JµJÉJ$ÜJ"KN$KEsK¹K"ÁKäKøKL!L:LHTLÕL’sM NNN'-N UN _NjN yN„N ŒNc–NúN O OOO1O7O MO XOfOyO ‘OŸO °O ¼OÈOÏOÖOÜOäOP PP /P 9P DPNPVP^PgPvPP’P¡P ªP¸P ¼PÇPÊPÏP ÔPßPâPèPïP8Ö‹?üÐ(,d_xyÓSDU¬´µ‘òbw3×÷ŸoþŽ= ŠCkÚ¦¥–A\r  ÁÉ.`ʺ|q9ÍV)$ƒZ‚M¸›[Yt7L‰Î1ó”/€­4*ÀÌÔÿÈBØöûß-©#hmÙãÒ"ݲá n†u j{XOG P:  íJ³šI¤ÛËà¡f&¿æ‡•! Þܾe}<Æ’;ÕzTE®åR5aèôiî~žÑ^£0Ãï>Ç“+¹«Ïgú ªé]Q° 'ð%¨p™ç˜¼±·¯Ä ¶ñWv»@œŒýˆøÅ§6„c—2âsF¢õê½ÂùHNKä…ìlë%d degrees K180 dots per inch240 dots per inch300 dots per inch360 dots per inchAboutAbout...Absolute ColorimetricActiveAdd images to the current layoutAdd...Adding images...Adjust colours on screen to imitate printed colours, including paper whiteAdjust colours to imitate printed colours, excluding paper whiteAfter:Aims for pleasing photographic results by preserving relationships between colours, and avoiding clipping of unattainable coloursAlgorithm:Allow _CroppingAmount: %1.2fApply effects to the selected imageAssign Profile:Assign an ICC profile or custom rendering intent to the imageAttempts to preserve the original colours, relative to white-point differences.Attempts to preserve the original colours, relative to white-point differences. Uses Black Point Compensation to avoid clipping of highlights and shadows.Attempts to provide brighter, more saturated colours, at the expense of colour relationships.Automatically choose rotation to fit the available space.Automatically place images in a gridBackgroundsBefore:BordersBottom:CMYKCMYK Profile:C_opyCalculating hash of printer response with current driver settingsCan't obtain printer from Gutenprint Check STP_DATA_PATH and Gutenprint version!Can't show a colour managed preview unless you choose a Default RGB or Monitor profile in the Options->Colour Management dialog!CarouselCentimetersChecking .photoprint directory...Click-and-drag to pan around the preview. Right-click to toggle magnification.CloseColour (Basic)Colour (Extra)Colour (Fine-tuning)Colour ManagementColour Response HashColour space:Columns:Copy the current image to the clipboardCreate a hash for verifying printer settingsCreating layout...Crop the selected images to fill the available spaceCurrent hash:Cut the current image to the clipboardDefaultDefault Image ProfilesDesaturateDeselect all imagesDimensions:Display colours with no print simulationDisplay mode:Displays images' original colours, transformed to suit the monitorDither AlgorithmDrawing previewDuplicate the currently selected imageDuplicate to _Fill PageE_xportE_xport TIFF...EffectsError creating directory `%s': %sError creating temporary thumbnail file for `%s': %sError opening `%s': %sError reading `%s': %sError reading `%s': file contains no data.Error reading `%s': file is not a regular file or symbolic link.Error verifying `%s': %sExit PhotoPrintExport JPEG...Export TIFF...Export _JPEG...Export _TIFF...Export pages as JPEG filesExport pages as TIFF filesExporting...Fade images into a circular 'carousel' - ideal for CD labels.Failed to load image '%s': reason not known, probably a corrupt image fileFilename:Fill the page with copies of the currently selected imageFrom selected imageGap:GeneralGenerating print data...H (%):H:Height:High-res PreviewsHistogramICC ProfilesIconImageImage InfoInchesInitializing...Inner Radius:JPEG Quality:LayoutLeft:Loading images...Loading preset...MATCH - No changes in driver or printer settings detectedMISMATCH - change detected in printer response! Printer's colour profile might no longer be accurate.Manual SettingsManual scalingMillimetersMimics the original colours (including white point) as closely as possible, for side-by-side comparisons. Clips unattainable colours.MonitorMonitor Profile:NameNo hash stored yetNo rotation.NormalOpen FileOpen a presetOpen preset...Other...OutputOutput Profile:OverlapOverlap (%):Page Size and MarginsPage is already full!Page range:Page:Paste the contents of the clipboard as a new imagePathPerceptualPhotoPrint Please choose a valid ICC profilePlease provide a filename.Please select an image first!PointsPoster LayoutPreview how the printed page will lookPreview resolution:Print Pre_view...Print Queue:Print S_etup...Print an image in multiple pages, to be assembled into a posterPrint images on a single sheet, at a specified scale.Print pagesPrinterPrinter Model:Printer Profile:Printer SetupPrinter queue not foundProfile:Progress...RGBRGB Profile:Radius: %1.2fRelative ColorimetricRelative Colorimetric with BPCRemoveRemove all images from the layoutRemove selected images from the layoutRender high-resolution previews in the backgroundRendering intent:Resolution (dpi):Resolution:Right:Rotate 180 degrees.Rotate 90 degrees anticlockwise.Rotate 90 degrees clockwise.Rows:SaturationSave _As...Save _DefaultSave a presetSave as 16-bit:Save preset as the defaultSave preset with a new filenameSave preset...Segments:Select _AllSelect _NoneSelect a background...Select a border...Select all imagesSelect directory...Select the preferred scaling method.Select the units used throughout PhotoPrintSend Cyan, Magenta, Yellow and Black data to the printer driverSend Red, Green and Blue data to the printer driverSet Colour _Profile...Set Custom Profile...Set Image _Border...Set Image _Mask...Set _BackgroundSet a background image for the current layoutSet a border mask for the selected imageSet colour management optionsSet paths...Set printer driver and optionsSet search paths for ICC profiles, borders, etc.SharpenSimulate Prin_tSimulate PrintSimulate Print, Adapt WhiteSimulate Print, _Adapt WhiteSimulates how colours will look when printed, adapting colours for the monitor's white point.Simulates how colours will look when printed, imitating the paper's white point.SizeSome information about PhotoPrintSpecify image dimensionsSpecify rows/columnsStarting angle:Store in presetStored in preset:The printer queue %s is not found - please choose anotherThis "hash" value is derived from the printer driver's output, and can be used to verify that no changes have occurred which might invalidate a colour profile for the printerThis hash can be used to detect changes in printer settings or driver versions that might invalidate colour profilesTilesTop:Transferring images...Unable to generate print dataUnitsUnits:V (%):V:W:Warm/CoolWarning: Image already has an embedded profile Assigning a new one will over-ride it!Width:_180 Degrees_270 Degrees_90 Degrees_Add Image..._Auto_Auto Layout_Carousel_Clear Layout_Colour Management..._Colour Response Hash..._Cut_Duplicate Image_Edit_Effects..._File_Help_Image_Layout_Manual Size_None_Normal Display_Open Preset..._Options_Paste_Paths..._Poster_Print_Quit_Remove Image_Rotation_Save Preset_Scaling..._Shortcuts_Units...bycentimeterscmininchesmillimetersmmpixelspointsptProject-Id-Version: photoprint 0.4.1-pre3 Report-Msgid-Bugs-To: blackfive@fakenhamweb.co.uk POT-Creation-Date: 2010-05-29 17:24+0100 PO-Revision-Date: 2009-10-23 08:42+0200 Last-Translator: Heinrich Schwietering Language-Team: LANGUAGE MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit %d Grad in K180 dpi240 dpi300 dpi360 dpiÜberÜber...Absolut farbmetrischAktiviertFüge dem Layout ein Bild hinzuHinzufügen...Füge Bilder hinzu...Passe Bildschirmfarben unter Einbeziehung der Papierweiß an, um Ausdruck zu simulierenPasse Bildschirmfarben ohne Einbeziehung der Papierweiß an, um Ausdruck zu simulierenNachher:Zielt darauf ab, ansprechende fotgrafische Ergebnisse durch Bewahrung der Verhältnisse zwischen den Farben, und dem Vermeiden des Filterns nicht-darstellbarer Farben zu erreichenAlgorithmus:Ermögliche Zus_chnittStärke: %1.2fWende Effekte auf das ausgewählte Bild anProfil zuweisen:Weise dem Bild ein ICC-Profil oder eigene Rendering-Anweisung zuVersucht die Originalfarben im Verhältnis zu den Weißpunkt-Abweichungen zu bewahrenVersucht die Originalfarben im Verhältnis zu den Weißpunkt-Abweichungen zu bewahren. Verwendet Schwarzpunkt-Kompensation um Filterung in den Glanzlichtern und Schatten zu vermeidenVersucht strahlendere, gesättigtere Farben zu erzielen; auf Kosten derFarb-VerhältnisseWähle Drehung automatisch, um verfügbaren Platz zu füllenFüge Bilder automatisch in ein Raster einHintergrundVorher:RänderUnten:CMYKCMYK-Profil:K_opierenBerechnung der Prüfsumme aus den Druckerwerten mit den derzeitigen Treiber-EinstellungenKann keinen Gutenprint-Drucker erreichen Bitte STP_DATA_PATH und Gutenberg-Version überprüfen!Eine Vorschau mit Farbmanagment kann nur angezeigt werden, wenn im Dialog "Optionen->Farbmanagement" ein Standard-RGB- oder Bildschirm-Profil ausgewählt ist!KarussellZentimeterÜberprüfe .photoprint-Ordner...Zum Bewegen die Vorschau anklicken und ziehen. Rechtsklick zum Wechsel der Vergrößerung.SchließenFarbe (Grundeinstellungen)Farbe (Extras)Farbe (Feineinstellungen)FarbmanagementFarbwert-Prüfsumme:Farbraum:Spalten:Kopiere das derzeitige Bild in die ZwischenablageErstelle eine Prüfsumme, um die Drucker-Einstellungen zu verifizierenErstelle Layout...Schneide das ausgewählte Bild so zu, dass der verfügbare Platz ausgefüllt wirdDerzeitige Prüfsumme:Stelle das derzeitige Bild in die ZwischenablageStandardStandard Bild-ProfileEntsättigenHebe gesamte Auswahl aufAusmaß:Stelle Farben ohne Drucksimulation darDarstellungsmodus:Stelle die Originalfarben des Bildes an den Bildschirm angepasst darDither-AlgorithmusErstelle VorschauDupliziere das derzeit ausgewählte BildVervielfältige, bis Seite ge_füllt istE_xportiereAls TIFF e_xportierenEffekteFehler bein Erstellen des Ordners `%s': %sFehler beim Erstellen der temporären Vorschau für `%s': %sFehler beim Öffnen von `%s': %sFehler beim Lesen von `%s': %sFehler beim Lesen von `%s': Datei enthält keine DatenFehler beim Lesen von `%s': Datei ist keine reguläre Datei oder symbolische Verknüpfung.Fehler beim Verifizieren von `%s': %sBeende PhotoPrintExportiere JPEG...Als TIFF exportieren...Exportiere als _JPEG...Exportiere als _TIFF...Exportiere Seiten als JPEG-DateienExportiere Seiten als TIFF-DateienExportiere...Überblende Bilder in einem runden 'Karussell' - ideal zum CD-DruckLaden des Bildes '%s' nicht möglich: Grund unbekannt, ggf. defekte BilddateiDateiname:Fülle die Seite mit Kopien des derzeit ausgewählten BildesVom ausgewählten BildZwischenraum:AllgemeinBereite Druckdaten auf...waagerecht (%):Waagerecht:Höhe:Hochauflösende VorschauHistogrammICC-ProfileIconBildBild-InfoZollInitialisierung...Innendurchmesser:JPEG-Qualität:LayoutLinks:Lade Bilder...Lade Vorlage...MATCH - Keine Veränderung in den Treiber- oder Druckereinstellungen entdecktMISMATCH - Veränderung im Druckerwert! Das Farbprofil könnte nicht mehr exakt sein.Manuelle EinstellungenManuelle SkalierungMillimeterImitiert die Originalfarben (inklusive des Weißpunktes) so gut wie möglich,für direkte Vergleiche. Filtert nicht-darstellbare Farben.BildschirmBildschirmprofil:NameNoch keine Prüfsumme gespeichertKeine Drehung.NormalÖffne DateiÖffne eine VorlageÖffne Volage...Andere...AusgabeAusgabeprofil:ÜberlappungÜberlappung (%):Seitengröße und -ränderSeite ist breits gefüllt!Seitenmaß:Seite:Füge den Inhalt der Zwischenablage als neues Bild einPfadwahrnehmungsorientiertPhotoPrintBitte ein gültiges ICC-Profil auswählenBitte einen Dateinamen angeben.Bitte erst ein Bild auswählen!PunktePoster-LayoutVorschau auf das DruckergebnisVorschau-Auflösung:Druck_vorschauDruckerwarteschlange:Drucker-Einst_ellung...Drucke ein Bild über meherer Seiten aus, um daraus ein Poster zusammenzufügenDrucke Bilder mit angegebener Skalierung auf einem einzelnen Blatt.Drucke die SeitenDruckerDruckermodell:Druckerprofil:DruckereinrichtungDruckerwarteschleife nicht auffindbarProfil:Fortschritt...RGBRGB-Profil:Radius: %1.2fRelativ farbmetrischRelativ farbmetrisch mit Schwarzpunk-KompensationEntfernenEntferne alle Bilder aus dem LayoutEntferne die ausgewählten Bilder aus dem LayoutBearbeite hochauflösende Vorschauen im HintergrundRendering-Anweisung:Auflösung (dpi):Auflösung:Rechts:Drehe um 180 Grad.Drehe um 90 Grad gegen den Uhrzeigersinn.Drehe um 90 Grad im Uhrzeigersinn.Reihen:SättigungSpeichere _alsSpeichere Standar_d-VorlageSpeichere eine VorlageIn 16-bit speichern:Speichere Vorlage als StandardSpeichere Vorlage unter neuem DateinamenSpeichere Vorlage...Segmente:Wähle _alle ausAuswahl aufhebe_nWähle einen Hintergrund...Wähle einen Rand...Wähle alle Bilder ausWähle Verzeichnis...Wähle die gewünschte Skalierungs-Methode.Wähle diese Einheit durchgängig für PhotoPrintSende Zyan-, Magenta-, Gelb- und Schwarz-Daten an den DruckertreiberSende Rot-, Grün- und Blau-Daten an den DruckertreiberRichte Farb-_Profile ein...Eigenes Profil festlegen...Richte _Bilderrahmen ein...Richte Bilderrah_men einRichte _Hintergrund einRichte einen Hintergrund für das derzeitige Layout einRichte einen Bilderrahmen für das ausgewählte Bild einRichte Farbmanagement-Optionen einPfade definieren...Richte Drucker und Optionen einRichte Suchpfade für ICC-Profile, Bilderrahmen usw. einSchärfenSimuliere Aus_druckSimuliere AusdruckSimuliere Ausdruck mit WeißabgleichSimuliere Ausdruck, Weiß_abgleichSimuliere die Farben im Ausdruck, angepasst an den Weißpunkt des Bildschirms.Simuliere die Farben im Ausdruck, angepasst an das Weiß des Papiers.GrößeEinige Informationen zu PhotoPrintBildmaße festlegenReihen/Spalten festlegenAusgangswinkel:Speichere in EinstellungSpeichere in Einstellung:Druckerwarteschleife %s nicht auffindbar - Bitte eine andere auswählenDieser "Prüfsummenwert" wird aus der Drucker-Ausgabe generiert und kann dazu genutzt werden, sicherzustellen, dass keine Veränderungen eingetreten sind, die eine Farbprofil für den Drucker verfälschen könntenDiese Prüfsumme kann genutzt werden, um Veränderungen in den Drucker- oder Treiberversionen zu entdecken, die Farbeprofile verfälschen könntenEinzelteileOben:Übertrage Bilder...Erstellen der Druckdaten nicht möglichEinheitenEinheiten:senkrecht (%):Senkrecht:Breite:Warm/KaltWarnung: Das Bild hat bereits ein integriertes Profil Eine Neuzuweisung wird dieses überschreiben!Breite:_180 Grad_270 Grad_90 GradBild hin_zufügen_Auto_Automatisches Layout_KarussellL_eere Layout_Farbmanagement..._Farbwert-Prüfsumme..._Ausschneiden_Dupliziere Bild_Bearbeiten_Effekte..._Datei_Hilfe_Bild_Layout_Manuelle GrößeneinstellungKei_ne_Normale DarstellungV_orlage öffnen_Optionen_Einfügen_Pfade..._Poster_Drucke_BeendenEntfe_rne Bild_Drehung_Speichere Vorlage_Skalierung..._Kürzel_Einheiten...malZentimetercmZollZollMillimetermmPixelPunktePunktphotoprint-0.4.2-pre2/po/remove-potcdate.sin0000644000175000017500000000066011101462351015735 00000000000000# Sed script that remove the POT-Creation-Date line in the header entry # from a POT file. # # The distinction between the first and the following occurrences of the # pattern is achieved by looking at the hold space. /^"POT-Creation-Date: .*"$/{ x # Test if the hold space is empty. s/P/P/ ta # Yes it was empty. First occurrence. Remove the line. g d bb :a # The hold space was nonempty. Following occurrences. Do nothing. x :b } photoprint-0.4.2-pre2/po/en@boldquot.header0000644000175000017500000000247111101462351015554 00000000000000# All this catalog "translates" are quotation characters. # The msgids must be ASCII and therefore cannot contain real quotation # characters, only substitutes like grave accent (0x60), apostrophe (0x27) # and double quote (0x22). These substitutes look strange; see # http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html # # This catalog translates grave accent (0x60) and apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019). # It also translates pairs of apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019) # and pairs of quotation mark (0x22) to # left double quotation mark (U+201C) and right double quotation mark (U+201D). # # When output to an UTF-8 terminal, the quotation characters appear perfectly. # When output to an ISO-8859-1 terminal, the single quotation marks are # transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to # grave/acute accent (by libiconv), and the double quotation marks are # transliterated to 0x22. # When output to an ASCII terminal, the single quotation marks are # transliterated to apostrophes, and the double quotation marks are # transliterated to 0x22. # # This catalog furthermore displays the text between the quotation marks in # bold face, assuming the VT100/XTerm escape sequences. # photoprint-0.4.2-pre2/po/boldquot.sed0000644000175000017500000000033111101462351014445 00000000000000s/"\([^"]*\)"/“\1â€/g s/`\([^`']*\)'/‘\1’/g s/ '\([^`']*\)' / ‘\1’ /g s/ '\([^`']*\)'$/ ‘\1’/g s/^'\([^`']*\)' /‘\1’ /g s/“â€/""/g s/“/“/g s/â€/â€/g s/‘/‘/g s/’/’/g photoprint-0.4.2-pre2/po/es.po0000644000175000017500000010263411400237672013107 00000000000000# Redy Rodriguez. # Copyright (C) 2007 Alastair M. Robinson # This file is distributed under the same license as the photprint package. # <>, 2007. # # msgid "" msgstr "" "Project-Id-Version: photprint 0.3.5\n" "Report-Msgid-Bugs-To: blackfive@fakenhamweb.co.uk\n" "POT-Creation-Date: 2010-05-29 17:24+0100\n" "PO-Revision-Date: 2007-10-11 23:24+0200\n" "Last-Translator: Redy Rodrigez \n" "Language-Team: Spanish\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: dialogs.cpp:75 #, fuzzy msgid "Colour Response Hash" msgstr "Gestión de _color" #: dialogs.cpp:96 msgid "" "This \"hash\" value is derived from the printer driver's output,\n" "and can be used to verify that no changes have occurred which\n" "might invalidate a colour profile for the printer" msgstr "" #: dialogs.cpp:108 #, fuzzy msgid "Current hash:" msgstr "Usado actualmente:" #: dialogs.cpp:112 #, fuzzy msgid "Stored in preset:" msgstr "Grabar un preset" #: dialogs.cpp:118 msgid "No hash stored yet" msgstr "" #: dialogs.cpp:127 msgid "" "Calculating hash of printer response\n" "with current driver settings" msgstr "" #: dialogs.cpp:132 #, fuzzy msgid "Store in preset" msgstr "Grabar un preset" #: dialogs.cpp:156 msgid "" "MATCH - No changes in driver\n" "or printer settings detected" msgstr "" #: dialogs.cpp:162 msgid "" "This hash can be used to detect changes\n" "in printer settings or driver versions\n" "that might invalidate colour profiles" msgstr "" #: dialogs.cpp:164 msgid "" "MISMATCH - change detected in printer response!\n" "Printer's colour profile might no longer be accurate." msgstr "" #: dialogs.cpp:287 msgid "Printer Setup" msgstr "Configurar impresora" #: dialogs.cpp:301 msgid "Output" msgstr "" #: dialogs.cpp:338 msgid "About" msgstr "Acerca de" #: dialogs.cpp:349 #, fuzzy msgid "PhotoPrint " msgstr "Salir de Photoprint" #: dialogs.cpp:388 msgid "Set paths..." msgstr "Establecer rutas" #: dialogs.cpp:413 msgid "ICC Profiles" msgstr "Perfiles de color ICC" #: dialogs.cpp:445 msgid "Borders" msgstr "Marcos" #: dialogs.cpp:476 msgid "Backgrounds" msgstr "Fondos" #: dialogs.cpp:504 msgid "Select a border..." msgstr "Elige un marco" #: dialogs.cpp:551 msgid "Export TIFF..." msgstr "Exportar a TIFF" #: dialogs.cpp:577 dialogs.cpp:776 msgid "Page range:" msgstr "Rango de páginas" #: dialogs.cpp:590 dialogs.cpp:786 msgid "Resolution (dpi):" msgstr "Resolución (dpi):" #: dialogs.cpp:598 msgid "Save as 16-bit:" msgstr "" #: dialogs.cpp:617 dialogs.cpp:821 msgid "Output Profile:" msgstr "Perfil de salida" #: dialogs.cpp:677 dialogs.cpp:914 msgid "Please provide a filename." msgstr "Por favor, indique un nombre de fichero." #: dialogs.cpp:708 dialogs.cpp:892 msgid "Exporting..." msgstr "Exportando..." #: dialogs.cpp:747 #, fuzzy msgid "Export JPEG..." msgstr "Exportar a TIFF" #: dialogs.cpp:805 msgid "JPEG Quality:" msgstr "" #: dialogs.cpp:931 msgid "Select a background..." msgstr "Elija un fondo..." #: dialogs.cpp:1023 pp_menu_image.cpp:276 msgid "Please select an image first!" msgstr "¡Elija primero una imágen!" #: dialogs.cpp:1054 msgid "Set Custom Profile..." msgstr "Poner perfil-habitual" #: dialogs.cpp:1066 msgid "Before:" msgstr "Antes:" #: dialogs.cpp:1070 msgid "After:" msgstr "Después:" #: dialogs.cpp:1084 msgid "" "Can't show a colour managed\n" "preview unless you choose\n" "a Default RGB or Monitor profile\n" "in the Options->Colour Management\n" "dialog!" msgstr "" "No puedo mostrar una previsualización\n" "de gestión de color, a no ser que\n" "elijas un perfil de monitor RGB por\n" "defecto en el diálogo de\n" "Opciones->Gsetión de color." #: dialogs.cpp:1109 msgid "" "Warning: Image already has an embedded profile\n" "Assigning a new one will over-ride it!" msgstr "" "Aviso:·La imagen tiene ya un perfil embebido.\n" "SI le asignas uno nuevo lo dejarás sin efecto." #: dialogs.cpp:1126 msgid "Assign Profile:" msgstr "Asignar perfil" #: dialogs.cpp:1134 pp_cms.cpp:349 msgid "Rendering intent:" msgstr "" #: effects/ppeffect_temperature.cpp:28 msgid "Warm/Cool" msgstr "" #: effects/effectselector.cpp:222 msgid "Active" msgstr "" #: effects/effectselector.cpp:231 msgid "Icon" msgstr "" #: effects/effectselector.cpp:243 msgid "Name" msgstr "" #: effects/ppeffect_desaturate.cpp:25 msgid "Desaturate" msgstr "" #: effects/effectwidget_tempchange.cpp:57 #, fuzzy, c-format msgid "%d degrees K" msgstr "_90·grados" #: effects/ppeffect_unsharpmask.cpp:25 msgid "Sharpen" msgstr "" #: effects/effectwidget_unsharpmask.cpp:66 #, c-format msgid "Radius: %1.2f" msgstr "" #: effects/effectwidget_unsharpmask.cpp:72 #, c-format msgid "Amount: %1.2f" msgstr "" #: menucheck.cpp:23 pp_menu_file.cpp:135 msgid "_File" msgstr "_Fichero" #: menucheck.cpp:25 pp_menu_file.cpp:137 msgid "_Open Preset..." msgstr "_Abrir Preset" #: menucheck.cpp:25 pp_menu_file.cpp:137 msgid "Open a preset" msgstr "Abrir un preset" #: menucheck.cpp:26 pp_menu_file.cpp:138 msgid "_Save Preset" msgstr "_Guardar Preset" #: menucheck.cpp:26 pp_menu_file.cpp:138 msgid "Save a preset" msgstr "Grabar un preset" #: menucheck.cpp:27 pp_menu_file.cpp:139 msgid "Save _As..." msgstr "Guardar _como" #: menucheck.cpp:27 pp_menu_file.cpp:139 msgid "Save preset with a new filename" msgstr "Guardar preset con un nuevo nombre" #: menucheck.cpp:28 pp_menu_file.cpp:140 msgid "Save _Default" msgstr "Guradar por _Defecto" #: menucheck.cpp:28 pp_menu_file.cpp:140 msgid "Save preset as the default" msgstr "Guardar como preset por defecto" #: menucheck.cpp:29 #, fuzzy msgid "E_xport TIFF..." msgstr "Exportar a TIFF" #: menucheck.cpp:29 pp_menu_file.cpp:142 msgid "Export pages as TIFF files" msgstr "Exportar páginas como ficheros TIFF" #: menucheck.cpp:30 pp_menu_file.cpp:144 msgid "Print Pre_view..." msgstr "Pre_visualizar..." #: menucheck.cpp:30 pp_menu_file.cpp:144 msgid "Preview how the printed page will look" msgstr "Previsualizar el aspecto de la impresión." #: menucheck.cpp:31 pp_menu_file.cpp:145 msgid "Print S_etup..." msgstr "C_onfigurar Impresora..." #: menucheck.cpp:31 pp_menu_file.cpp:145 msgid "Set printer driver and options" msgstr "Configurar opciones de impresión" #: menucheck.cpp:32 pp_menu_file.cpp:146 msgid "_Print" msgstr "Im_primir" #: menucheck.cpp:32 pp_menu_file.cpp:146 msgid "Print pages" msgstr "Imprimir páginas" #: menucheck.cpp:33 pp_menu_file.cpp:147 msgid "_Quit" msgstr "_Salir" #: menucheck.cpp:33 pp_menu_file.cpp:147 msgid "Exit PhotoPrint" msgstr "Salir de Photoprint" #: menucheck.cpp:62 pp_menu_layout.cpp:131 msgid "_Layout" msgstr "_Disposición" #: menucheck.cpp:63 pp_menu_image.cpp:316 msgid "_Image" msgstr "_Imágen" #: menucheck.cpp:64 pp_menu_options.cpp:108 msgid "_Options" msgstr "_Opciones" #: menucheck.cpp:65 pp_menu_help.cpp:29 msgid "_Help" msgstr "A_yuda" #: menucheck.cpp:67 pp_menu_layout.cpp:133 msgid "_Clear Layout" msgstr "_Borrar·Disposición" #: menucheck.cpp:67 pp_menu_layout.cpp:133 msgid "Remove all images from the layout" msgstr "Borrar todas las imágnes de la disposición" #: menucheck.cpp:68 pp_menu_layout.cpp:134 msgid "Set _Background" msgstr "Poner _Fondo" #: menucheck.cpp:68 pp_menu_layout.cpp:134 msgid "Set a background image for the current layout" msgstr "Poner imágen de fondo para la disposición actual" #: menucheck.cpp:70 pp_menu_image.cpp:318 msgid "_Add Image..." msgstr "_Añadir imágen" #: menucheck.cpp:70 pp_menu_image.cpp:318 msgid "Add images to the current layout" msgstr "Añadir imágenes a esta disposición" #: menucheck.cpp:71 pp_menu_image.cpp:319 msgid "_Remove Image" msgstr "El_iminar imágen" #: menucheck.cpp:71 pp_menu_image.cpp:319 msgid "Remove selected images from the layout" msgstr "Quitar imágenes de la disposición" #: menucheck.cpp:73 pp_menu_image.cpp:323 msgid "_Rotation" msgstr "_Rotación" #: menucheck.cpp:75 msgid "Set Image _Mask..." msgstr "Establecer _Máscara de imagen..." #: menucheck.cpp:75 pp_menu_image.cpp:325 msgid "Set a border mask for the selected image" msgstr "Establecer una máscara para la imágen seleccionada" #: menucheck.cpp:76 msgid "_Effects..." msgstr "_Efectos" #: menucheck.cpp:76 msgid "Apply effects to the selected image" msgstr "Aplicar efectos a la imagen seleccionada" #: menucheck.cpp:77 pp_menu_image.cpp:327 msgid "Set Colour _Profile..." msgstr "Seleccionar _Perfil de color" #: menucheck.cpp:77 pp_menu_image.cpp:327 msgid "Assign an ICC profile or custom rendering intent to the image" msgstr "" #: menucheck.cpp:79 pp_menu_options.cpp:110 msgid "_Paths..." msgstr "_Rutas..." #: menucheck.cpp:79 pp_menu_options.cpp:110 msgid "Set search paths for ICC profiles, borders, etc." msgstr "Establecer rutas de búsqueda de perfiles de color, marcos, etc..." #: menucheck.cpp:80 pp_menu_options.cpp:111 msgid "_Colour Management..." msgstr "Gestión de _color" #: menucheck.cpp:80 pp_menu_options.cpp:111 msgid "Set colour management options" msgstr "Establecer opciones de gestión de color" #: menucheck.cpp:81 pp_menu_options.cpp:113 msgid "_Units..." msgstr "_Unidades" #: menucheck.cpp:81 pp_menu_options.cpp:113 msgid "Select the units used throughout PhotoPrint" msgstr "" #: menucheck.cpp:82 pp_menu_options.cpp:114 msgid "_Scaling..." msgstr "E_scalado..." #: menucheck.cpp:82 pp_menu_options.cpp:114 msgid "Select the preferred scaling method." msgstr "" #: menucheck.cpp:84 pp_menu_help.cpp:31 msgid "About..." msgstr "Acerca de..." #: menucheck.cpp:84 pp_menu_help.cpp:31 msgid "Some information about PhotoPrint" msgstr "Alguna información sobre·PhotoPrint" #: menucheck.cpp:89 pp_menu_image.cpp:332 msgid "Allow _Cropping" msgstr "Permitir re_corte" #: menucheck.cpp:89 pp_menu_image.cpp:332 msgid "Crop the selected images to fill the available space" msgstr "" "Recortar las imágenes seleccionadas hasta rellenar el espacio disponible" #: menucheck.cpp:94 pp_menu_layout.cpp:139 msgid "_Auto Layout" msgstr "_Auto·Disposición" #: menucheck.cpp:94 pp_menu_layout.cpp:139 msgid "Automatically place images in a grid" msgstr "Colocar imágenes en rejilla automáticamente." #: menucheck.cpp:95 pp_menu_layout.cpp:140 msgid "_Poster" msgstr "_Poster" #: menucheck.cpp:95 pp_menu_layout.cpp:140 msgid "Print an image in multiple pages, to be assembled into a poster" msgstr "Imprimir una imágen en múltiples páginas para componer un poster" #: menucheck.cpp:96 pp_menu_layout.cpp:141 msgid "_Carousel" msgstr "_Ruleta" #: menucheck.cpp:96 pp_menu_layout.cpp:141 msgid "Fade images into a circular 'carousel' - ideal for CD labels." msgstr "Mezcla imágenes en forma de ruleta - Ideal para etiquetas de CD's." #: menucheck.cpp:97 pp_menu_layout.cpp:142 msgid "_Manual Size" msgstr "Tamaño _Manual" #: menucheck.cpp:97 pp_menu_layout.cpp:142 msgid "Print images on a single sheet, at a specified scale." msgstr "Imprime imágenes en una única hoja a una escala especificada." #: menucheck.cpp:101 pp_menu_image.cpp:337 msgid "_Auto" msgstr "_Auto" #: menucheck.cpp:101 pp_menu_image.cpp:337 msgid "Automatically choose rotation to fit the available space." msgstr "Rotar automáticamente para ajustarse al espacio disponible." #: menucheck.cpp:102 pp_menu_image.cpp:338 msgid "_None" msgstr "_Ninguna" #: menucheck.cpp:102 pp_menu_image.cpp:338 msgid "No rotation." msgstr "Sin rotación" #: menucheck.cpp:103 pp_menu_image.cpp:339 msgid "_90 Degrees" msgstr "_90·grados" #: menucheck.cpp:103 pp_menu_image.cpp:339 msgid "Rotate 90 degrees clockwise." msgstr "Rotar 90 grados en el sentido del reloj." #: menucheck.cpp:104 pp_menu_image.cpp:340 msgid "_180 Degrees" msgstr "_180·grados" #: menucheck.cpp:104 pp_menu_image.cpp:340 msgid "Rotate 180 degrees." msgstr "Rotar 180 grados" #: menucheck.cpp:105 pp_menu_image.cpp:341 msgid "_270 Degrees" msgstr "_270 grados" #: menucheck.cpp:105 pp_menu_image.cpp:341 msgid "Rotate 90 degrees anticlockwise." msgstr "Rotar 90 grados contra reloj." #: menucheck.cpp:229 #, fuzzy msgid "Dither Algorithm" msgstr "Algoritmo:" #: photoprint.cpp:135 msgid "Initializing..." msgstr "Inicializando..." #: photoprint.cpp:144 msgid "Checking .photoprint directory..." msgstr "Comprobando directorio de photoprint..." #: photoprint.cpp:149 msgid "Loading preset..." msgstr "Cargando preset..." #: photoprint.cpp:154 msgid "Creating layout..." msgstr "Creando disposición" #: photoprint.cpp:197 msgid "Loading images..." msgstr "Cargando imágenes" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:349 #, c-format msgid "Error creating directory `%s': %s" msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:463 #, c-format msgid "Error opening `%s': %s" msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:481 #, c-format msgid "Error reading `%s': file contains no data." msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:505 #, c-format msgid "Error reading `%s': %s" msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:540 #, c-format msgid "" "Failed to load image '%s': reason not known, probably a corrupt image file" msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:613 #, c-format msgid "Error verifying `%s': %s" msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:629 #, c-format msgid "Error reading `%s': file is not a regular file or symbolic link." msgstr "" #: pixbufthumbnail/egg-pixbuf-thumbnail.c:1071 #, c-format msgid "Error creating temporary thumbnail file for `%s': %s" msgstr "" #: pp_cms.cpp:148 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "will first be converted to the default CMYK profile" msgstr "" #: pp_cms.cpp:154 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "cannot be printed without a default CMYK profile." msgstr "" #: pp_cms.cpp:160 msgid "" "Printer profile is a devicelink with CMYK input - RGB images\n" "cannot be printed without a default RGB and CMYK profile." msgstr "" #: pp_cms.cpp:168 msgid "" "Printer profile is a devicelink - RGB images with embedded profiles\n" "will first be converted to the default RGB profile." msgstr "" #: pp_cms.cpp:174 msgid "" "Printer profile is a devicelink - RGB images with embedded profiles will " "not\n" "print correctly, since there is no default RGB profile." msgstr "" #: pp_cms.cpp:180 msgid "RGB images will print correctly" msgstr "" #: pp_cms.cpp:185 msgid "" "RGB images can be printed but colours depend on the driver\n" "(Colours will be accurate for images that contain an embedded profile)" msgstr "" #: pp_cms.cpp:190 msgid "RGB images can be printed but colours depend on the driver" msgstr "" #: pp_cms.cpp:195 msgid "" "RGB images can only be printed if they have an embedded profile\n" "(Workflow is CMYK and there is no default RGB profile)" msgstr "" #: pp_cms.cpp:200 msgid "" "RGB images cannot be printed\n" "(Workflow is CMYK and there is no printer profile)" msgstr "" #: pp_cms.cpp:215 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "will first be converted to the default RGB profile" msgstr "" #: pp_cms.cpp:221 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "cannot be printed without a default RGB profile." msgstr "" #: pp_cms.cpp:227 msgid "" "Printer profile is a devicelink with RGB input - CMYK images\n" "cannot be printed without a default RGB and CMYK profile." msgstr "" #: pp_cms.cpp:234 msgid "" "Printer profile is a devicelink - CMYK images with embedded profiles\n" "will first be converted to the default CMYK profile." msgstr "" #: pp_cms.cpp:240 msgid "" "Printer profile is a devicelink - CMYK images with embedded profiles will " "not\n" "print correctly since there is no default CMYK profile." msgstr "" #: pp_cms.cpp:246 msgid "CMYK images will print correctly" msgstr "" #: pp_cms.cpp:251 msgid "" "CMYK images can be printed but colours depend on the driver\n" "(Colours will be accurate for images that contain an embedded profile)" msgstr "" #: pp_cms.cpp:256 msgid "CMYK images can be printed but colours depend on the driver" msgstr "" #: pp_cms.cpp:261 msgid "" "CMYK images can only be printed if they have an embedded profile\n" "(Workflow is RGB and there is no default CMYK profile)" msgstr "" #: pp_cms.cpp:266 msgid "" "CMYK images cannot be printed\n" "(Workflow is RGB and there is no printer profile)" msgstr "" #: pp_cms.cpp:276 msgid "Images will be displayed correctly" msgstr "" #: pp_cms.cpp:281 msgid "" "Images will only be displayed correctly if they have an embedded profile" msgstr "" #: pp_cms.cpp:286 msgid "Images will not be displayed correctly" msgstr "" #: pp_cms.cpp:317 msgid "Printer" msgstr "Impresora" #: pp_cms.cpp:332 msgid "Printer Profile:" msgstr "Perfil de impresora:" #: pp_cms.cpp:364 msgid "Colour space:" msgstr "Espacio de color" #: pp_cms.cpp:372 msgid "RGB" msgstr "" #: pp_cms.cpp:372 msgid "Send Red, Green and Blue data to the printer driver" msgstr "" #: pp_cms.cpp:373 msgid "CMYK" msgstr "" #: pp_cms.cpp:373 msgid "Send Cyan, Magenta, Yellow and Black data to the printer driver" msgstr "" #: pp_cms.cpp:383 msgid "Monitor" msgstr "Monitor" #: pp_cms.cpp:396 msgid "Monitor Profile:" msgstr "Perfil de monitor:" #: pp_cms.cpp:411 msgid "Display mode:" msgstr "Modo de pantalla" #: pp_cms.cpp:420 msgid "Normal" msgstr "Normal" #: pp_cms.cpp:420 msgid "Displays images' original colours, transformed to suit the monitor" msgstr "" #: pp_cms.cpp:421 msgid "Simulate Print" msgstr "Simular·impresión" #: pp_cms.cpp:421 msgid "" "Simulates how colours will look when printed, imitating the paper's white " "point." msgstr "" #: pp_cms.cpp:422 msgid "Simulate Print, Adapt White" msgstr "Simular impresión,·Adaptar·Blanco" #: pp_cms.cpp:422 msgid "" "Simulates how colours will look when printed, adapting colours for the " "monitor's white point." msgstr "" #: pp_cms.cpp:432 msgid "Default Image Profiles" msgstr "Perfil por defecto para imágenes" #: pp_cms.cpp:447 msgid "RGB Profile:" msgstr "Perfil RGB:" #: pp_cms.cpp:464 msgid "CMYK Profile:" msgstr "Perfil CMYK:" #: pp_cms.cpp:666 msgid "Colour Management" msgstr "Gestión de color" #: pp_histogram.cpp:282 msgid "Histogram" msgstr "" #: pp_imagecontrol.cpp:134 #, fuzzy msgid "Effects" msgstr "Efectos..." #: pp_imageinfo.cpp:107 msgid "in" msgstr "" #: pp_imageinfo.cpp:110 msgid "pt" msgstr "" #: pp_imageinfo.cpp:115 msgid "cm" msgstr "" #: pp_imageinfo.cpp:120 msgid "mm" msgstr "" #: pp_imageinfo.cpp:168 #, fuzzy msgid "Image Info" msgstr "Imágen" #: pp_imageinfo.cpp:195 msgid "Filename:" msgstr "" #: pp_imageinfo.cpp:208 msgid "Dimensions:" msgstr "" #: pp_imageinfo.cpp:228 #, fuzzy msgid "Resolution:" msgstr "Resolución (dpi):" #: pp_imageinfo.cpp:241 #, fuzzy msgid "Profile:" msgstr "Perfil RGB:" #: pp_imageinfo.cpp:351 msgid "pixels" msgstr "" #: pp_imageinfo.cpp:380 profilemanager/profilemanager.cpp:831 #, fuzzy msgid "Default" msgstr "Guradar por _Defecto" #: pp_layout_carousel.cpp:247 pp_layout_carousel.cpp:379 pp_layout_nup.cpp:222 #: pp_layout_poster.cpp:312 pp_layout_poster.cpp:464 pp_layout_single.cpp:233 #: printpreview.cpp:146 msgid "Page:" msgstr "Página:" #: pp_layout_carousel.cpp:275 msgid "Carousel" msgstr "Ruleta" #: pp_layout_carousel.cpp:291 msgid "Segments:" msgstr "Segmentos:" #: pp_layout_carousel.cpp:306 msgid "Overlap (%):" msgstr "Solapamiento (%):" #: pp_layout_carousel.cpp:321 msgid "Starting angle:" msgstr "Ãngulo de inicio:" #: pp_layout_carousel.cpp:336 msgid "Inner Radius:" msgstr "Radio central" #: pp_layout_poster.cpp:339 #, fuzzy msgid "Poster Layout" msgstr "_Borrar·Disposición" #: pp_layout_poster.cpp:354 #, fuzzy msgid "Size" msgstr "Tamaño de página" #: pp_layout_poster.cpp:366 pp_layout_poster.cpp:390 msgid "by" msgstr "" #: pp_layout_poster.cpp:378 #, fuzzy msgid "Tiles" msgstr "Recuadros a lo ancho:" #: pp_layout_poster.cpp:400 #, fuzzy msgid "Overlap" msgstr "Solapamiento:" #: pp_layout_poster.cpp:414 pp_pageextent.cpp:262 msgid "H:" msgstr "H:" #: pp_layout_poster.cpp:426 msgid "V:" msgstr "H:" #: pp_layout_single.cpp:261 #, fuzzy msgid "Manual scaling" msgstr "Tamaño _Manual" #: pp_layout_single.cpp:277 msgid "H (%):" msgstr "H:" #: pp_layout_single.cpp:291 msgid "V (%):" msgstr "H:" #: pp_mainwindow.cpp:228 msgid "Transferring images..." msgstr "Transfiriendo imágenes..." #: pp_menu_edit.cpp:37 msgid "_Edit" msgstr "_Editar" #: pp_menu_edit.cpp:39 msgid "Select _All" msgstr "Seleccion_ar todo" #: pp_menu_edit.cpp:39 msgid "Select all images" msgstr "Seleccionar todas las imágenes." #: pp_menu_edit.cpp:40 msgid "Select _None" msgstr "Seleccionar _Nada" #: pp_menu_edit.cpp:40 msgid "Deselect all images" msgstr "Deselecionar todas las imágenes" #: pp_menu_edit.cpp:41 msgid "_Cut" msgstr "_Cortar" #: pp_menu_edit.cpp:41 msgid "Cut the current image to the clipboard" msgstr "Cortar la imagen al portapapeles" #: pp_menu_edit.cpp:42 msgid "C_opy" msgstr "C_opiar" #: pp_menu_edit.cpp:42 msgid "Copy the current image to the clipboard" msgstr "Copiar la imagen al portapapeles" #: pp_menu_edit.cpp:43 msgid "_Paste" msgstr "_Pegar" #: pp_menu_edit.cpp:43 msgid "Paste the contents of the clipboard as a new image" msgstr "Pegar el portapapeles como imagen" #: pp_menu_file.cpp:38 msgid "Open preset..." msgstr "Abrir preset" #: pp_menu_file.cpp:64 msgid "Save preset..." msgstr "Guardar preset..." #: pp_menu_file.cpp:115 msgid "Generating print data..." msgstr "Generando datos de impresión..." #: pp_menu_file.cpp:141 #, fuzzy msgid "E_xport" msgstr "E_xportar Tiff" #: pp_menu_file.cpp:142 #, fuzzy msgid "Export _TIFF..." msgstr "Exportar a TIFF" #: pp_menu_file.cpp:143 #, fuzzy msgid "Export _JPEG..." msgstr "Exportar a TIFF" #: pp_menu_file.cpp:143 #, fuzzy msgid "Export pages as JPEG files" msgstr "Exportar páginas como ficheros TIFF" #: pp_menu_shortcuts.cpp:78 msgid "_Shortcuts" msgstr "" #: pp_menu_shortcuts.cpp:131 msgid "Error fetching preset name!" msgstr "" #: pp_menu_image.cpp:64 msgid "Open File" msgstr "Abrir fichero" #: pp_menu_image.cpp:104 msgid "Adding images..." msgstr "Añadiendo imágenes..." #: pp_menu_image.cpp:186 msgid "Page is already full!" msgstr "" #: pp_menu_image.cpp:320 msgid "_Duplicate Image" msgstr "" #: pp_menu_image.cpp:320 #, fuzzy msgid "Duplicate the currently selected image" msgstr "Aplicar efectos a la imagen seleccionada" #: pp_menu_image.cpp:321 msgid "Duplicate to _Fill Page" msgstr "" #: pp_menu_image.cpp:321 msgid "Fill the page with copies of the currently selected image" msgstr "" #: pp_menu_image.cpp:325 #, fuzzy msgid "Set Image _Border..." msgstr "Elige un marco" #: pp_menu_options.cpp:112 #, fuzzy msgid "_Colour Response Hash..." msgstr "Gestión de _color" #: pp_menu_options.cpp:112 msgid "Create a hash for verifying printer settings" msgstr "" #: pp_menu_options.cpp:118 msgid "High-res Previews" msgstr "" #: pp_menu_options.cpp:118 msgid "Render high-resolution previews in the background" msgstr "" #: pp_menu_options.cpp:122 msgid "_Normal Display" msgstr "" #: pp_menu_options.cpp:122 msgid "Display colours with no print simulation" msgstr "" #: pp_menu_options.cpp:123 #, fuzzy msgid "Simulate Prin_t" msgstr "Simular·impresión" #: pp_menu_options.cpp:123 msgid "" "Adjust colours on screen to imitate printed colours, including paper white" msgstr "" #: pp_menu_options.cpp:124 #, fuzzy msgid "Simulate Print, _Adapt White" msgstr "Simular impresión,·Adaptar·Blanco" #: pp_menu_options.cpp:124 msgid "Adjust colours to imitate printed colours, excluding paper white" msgstr "" #: pp_pageextent.cpp:228 msgid "Page Size and Margins" msgstr "" #: pp_pageextent.cpp:252 msgid "W:" msgstr "" #: pp_pageextent.cpp:275 msgid "Left:" msgstr "Izquierda:" #: pp_pageextent.cpp:291 msgid "Right:" msgstr "Derecha:" #: pp_pageextent.cpp:304 msgid "Top:" msgstr "Arriba:" #: pp_pageextent.cpp:315 msgid "Bottom:" msgstr "Abajo:" #: gp_cppsupport/printoutputselector.cpp:114 msgid "Print Queue:" msgstr "Cola de impresión:" #: gp_cppsupport/printoutputselector.cpp:133 msgid "Printer Model:" msgstr "Modelo de impresora:" #: gp_cppsupport/printoutputselector.cpp:196 #, c-format msgid "" "The printer queue %s\n" " is not found - please choose another" msgstr "" #: gp_cppsupport/printoutputselector.cpp:197 #, fuzzy msgid "Printer queue not found" msgstr "Configurar impresora" #: gp_cppsupport/gprinter.cpp:387 #, fuzzy msgid "Unable to generate print data" msgstr "Generando datos de impresión..." #: pp_scaling.cpp:72 msgid "Algorithm:" msgstr "Algoritmo:" #: pp_scaling.cpp:184 #, fuzzy msgid "Scaling" msgstr "E_scalado..." #: pp_sigcontrol.cpp:187 msgid "Columns:" msgstr "Columnas:" #: pp_sigcontrol.cpp:201 msgid "Rows:" msgstr "Filas:" #: pp_sigcontrol.cpp:215 pp_sigcontrol.cpp:229 msgid "Gap:" msgstr "" #: pp_sigcontrol.cpp:254 msgid "Width:" msgstr "Ancho:" #: pp_sigcontrol.cpp:268 msgid "Height:" msgstr "Alto:" #: pp_sigcontrol.cpp:280 #, fuzzy msgid "From selected image" msgstr "Deselecionar todas las imágenes" #: pp_sigcontrol.cpp:338 msgid "Layout" msgstr "Disposición" #: pp_sigcontrol.cpp:341 msgid "Specify rows/columns" msgstr "" #: pp_sigcontrol.cpp:342 msgid "Specify image dimensions" msgstr "" #: pp_units.cpp:60 msgid "Units:" msgstr "Unidades:" #: pp_units.cpp:68 msgid "Points" msgstr "Puntos" #: pp_units.cpp:71 msgid "Inches" msgstr "Pulgadas" #: pp_units.cpp:74 msgid "Millimeters" msgstr "Millímetros" #: pp_units.cpp:77 msgid "Centimeters" msgstr "Centímetros" #: pp_units.cpp:151 msgid "Units" msgstr "Unidades" #: printpreview.cpp:153 #, fuzzy msgid "Preview resolution:" msgstr "Resolución (dpi):" #: printpreview.cpp:157 msgid "180 dots per inch" msgstr "" #: printpreview.cpp:158 msgid "240 dots per inch" msgstr "" #: printpreview.cpp:159 msgid "300 dots per inch" msgstr "" #: printpreview.cpp:160 msgid "360 dots per inch" msgstr "" #: printpreview.cpp:165 msgid "" "Click-and-drag to pan around the preview.\n" "Right-click to toggle magnification." msgstr "" #: printpreview.cpp:168 #, fuzzy msgid "Close" msgstr "Ruleta" #: printpreview.cpp:236 #, fuzzy msgid "Drawing preview" msgstr "Pre_visualizar..." #: gp_cppsupport/gprintersettings.cpp:413 msgid "" "Can't obtain printer from Gutenprint\n" "Check STP_DATA_PATH and Gutenprint version!" msgstr "" #: profilemanager/lcmswrapper.cpp:553 msgid "Perceptual" msgstr "" #: profilemanager/lcmswrapper.cpp:554 msgid "Relative Colorimetric" msgstr "" #: profilemanager/lcmswrapper.cpp:555 msgid "Relative Colorimetric with BPC" msgstr "" #: profilemanager/lcmswrapper.cpp:556 msgid "Saturation" msgstr "Saturación" #: profilemanager/lcmswrapper.cpp:557 msgid "Absolute Colorimetric" msgstr "" #: profilemanager/lcmswrapper.cpp:562 msgid "" "Aims for pleasing photographic results by preserving relationships between " "colours, and avoiding clipping of unattainable colours" msgstr "" #: profilemanager/lcmswrapper.cpp:563 msgid "" "Attempts to preserve the original colours, relative to white-point " "differences." msgstr "" #: profilemanager/lcmswrapper.cpp:564 msgid "" "Attempts to preserve the original colours, relative to white-point " "differences. Uses Black Point Compensation to avoid clipping of highlights " "and shadows." msgstr "" #: profilemanager/lcmswrapper.cpp:565 msgid "" "Attempts to provide brighter, more saturated colours, at the expense of " "colour relationships." msgstr "" #: profilemanager/lcmswrapper.cpp:566 msgid "" "Mimics the original colours (including white point) as closely as possible, " "for side-by-side comparisons. Clips unattainable colours." msgstr "" #: profilemanager/profileselector.cpp:39 miscwidgets/imageselector.cpp:478 msgid "Other..." msgstr "Otros..." #: profilemanager/profileselector.cpp:193 #, fuzzy msgid "None" msgstr "_Ninguna" #: profilemanager/profileselector.cpp:392 msgid "Please choose a valid ICC profile" msgstr "" #: profilemanager/profilemanager.cpp:207 msgid "Can't do proofing without a valid Printer profile!" msgstr "" #: profilemanager/profilemanager.cpp:212 msgid "Can't do proofing without a valid Monitor profile!" msgstr "" #: profilemanager/profilemanager.cpp:217 msgid "Can't do proofing without a valid Default RGB profile!" msgstr "" #: profilemanager/profilemanager.cpp:497 msgid "No Proof profile provided!" msgstr "" #: profilemanager/profilemanager.cpp:839 msgid "Default rendering intent" msgstr "" #: stpui_widgets/dimension.c:161 #, fuzzy msgid "points" msgstr "Puntos" #: stpui_widgets/dimension.c:165 #, fuzzy msgid "inches" msgstr "Pulgadas" #: stpui_widgets/dimension.c:169 #, fuzzy msgid "millimeters" msgstr "Millímetros" #: stpui_widgets/dimension.c:173 #, fuzzy msgid "centimeters" msgstr "Centímetros" #: stpui_widgets/stpui_optionbook.c:117 msgid "General" msgstr "" #: stpui_widgets/stpui_optionbook.c:120 #, fuzzy msgid "Manual Settings" msgstr "Tamaño _Manual" #: stpui_widgets/stpui_optionbook.c:123 #, fuzzy msgid "Colour (Basic)" msgstr "Espacio de color" #: stpui_widgets/stpui_optionbook.c:126 msgid "Colour (Fine-tuning)" msgstr "" #: stpui_widgets/stpui_optionbook.c:129 msgid "Colour (Extra)" msgstr "" #: miscwidgets/patheditor.cpp:53 msgid "Select directory..." msgstr "Elije directorio..." #: miscwidgets/patheditor.cpp:98 msgid "Path" msgstr "Ruta" #: miscwidgets/patheditor.cpp:112 msgid "Add..." msgstr "Añadir..." #: miscwidgets/patheditor.cpp:117 msgid "Remove" msgstr "Quitar" #: miscwidgets/imageselector.cpp:458 msgid "Image" msgstr "Imágen" #: miscwidgets/progressbar.cpp:52 msgid "Progress..." msgstr "" #: imagesource/imagesource_util.cpp:32 msgid "Automatic" msgstr "" #: imagesource/imagesource_util.cpp:32 msgid "Selects a scaling algorithm based on scale factor" msgstr "" #: imagesource/imagesource_util.cpp:33 #, fuzzy msgid "Fast" msgstr "_Pegar" #: imagesource/imagesource_util.cpp:33 msgid "Very fast scaling with no interpolation" msgstr "" #: imagesource/imagesource_util.cpp:34 msgid "Bilinear" msgstr "" #: imagesource/imagesource_util.cpp:34 msgid "An interpolation filter with mediocre speed and quality" msgstr "" #: imagesource/imagesource_util.cpp:35 msgid "LanczosSinc" msgstr "" #: imagesource/imagesource_util.cpp:35 msgid "Slow but very high quality interpolation filter" msgstr "" #: imagesource/imagesource_util.cpp:37 msgid "Downsample" msgstr "" #: imagesource/imagesource_util.cpp:37 msgid "High quality filter for reductions only" msgstr "" #~ msgid "Change Colour Temperature..." #~ msgstr "Cambiar temperatura de color..." #~ msgid "Effects..." #~ msgstr "Efectos..." #~ msgid "Available:" #~ msgstr "Disponible:" #~ msgid "Add" #~ msgstr "Añadir" #~ msgid "Settings..." #~ msgstr "Preferencias:" #, fuzzy #~ msgid "/_File" #~ msgstr "_Fichero" #, fuzzy #~ msgid "/File/_Open Preset..." #~ msgstr "_Abrir Preset" #, fuzzy #~ msgid "/File/_Save Preset" #~ msgstr "_Guardar Preset" #, fuzzy #~ msgid "/File/Save _As..." #~ msgstr "Guardar _como" #, fuzzy #~ msgid "/File/Save _Default" #~ msgstr "Guradar por _Defecto" #, fuzzy #~ msgid "/File/E_xport TIFF..." #~ msgstr "Exportar a TIFF" #, fuzzy #~ msgid "/File/Print Pre_view..." #~ msgstr "Pre_visualizar..." #, fuzzy #~ msgid "/File/Print S_etup..." #~ msgstr "C_onfigurar Impresora..." #, fuzzy #~ msgid "/File/_Print" #~ msgstr "Im_primir" #, fuzzy #~ msgid "/File/_Quit" #~ msgstr "_Salir" #, fuzzy #~ msgid "/Edit/Select _All" #~ msgstr "Seleccion_ar todo" #, fuzzy #~ msgid "/Edit/Select _None" #~ msgstr "Seleccionar _Nada" #, fuzzy #~ msgid "/_Layout" #~ msgstr "_Disposición" #, fuzzy #~ msgid "/Layout/_Clear Layout" #~ msgstr "_Borrar·Disposición" #, fuzzy #~ msgid "/Layout/Set _Background" #~ msgstr "Poner _Fondo" #, fuzzy #~ msgid "/Layout/sep" #~ msgstr "Disposición" #, fuzzy #~ msgid "/Image/_Add Image" #~ msgstr "_Añadir imágen" #, fuzzy #~ msgid "/Image/_Remove Image" #~ msgstr "El_iminar imágen" #, fuzzy #~ msgid "/Image/sep" #~ msgstr "Imágen" #, fuzzy #~ msgid "/Image/Allow _Cropping" #~ msgstr "Permitir re_corte" #, fuzzy #~ msgid "/Image/Rotation/_90 degrees" #~ msgstr "Rotar 180 grados" #, fuzzy #~ msgid "/Image/Rotation/_180 degrees" #~ msgstr "Rotar 180 grados" #, fuzzy #~ msgid "/Image/Set image _mask..." #~ msgstr "Establecer _Máscara de imagen..." #, fuzzy #~ msgid "/Image/_Effects..." #~ msgstr "_Efectos" #, fuzzy #~ msgid "/Image/Set colour _profile..." #~ msgstr "Seleccionar _Perfil de color" #, fuzzy #~ msgid "/Layout/_Auto Layout" #~ msgstr "_Auto·Disposición" #, fuzzy #~ msgid "/Layout/_Poster" #~ msgstr "_Poster" #, fuzzy #~ msgid "/Layout/_Carousel" #~ msgstr "_Ruleta" #, fuzzy #~ msgid "/Layout/_Manual Size" #~ msgstr "Tamaño _Manual" #, fuzzy #~ msgid "/_Options" #~ msgstr "_Opciones" #, fuzzy #~ msgid "/Options/_Paths..." #~ msgstr "_Rutas..." #, fuzzy #~ msgid "/Options/Colour _Management..." #~ msgstr "Gestión de _color" #, fuzzy #~ msgid "/Options/_Units..." #~ msgstr "_Unidades" #, fuzzy #~ msgid "/Options/_Scaling..." #~ msgstr "E_scalado..." #, fuzzy #~ msgid "/_Help" #~ msgstr "A_yuda" #, fuzzy #~ msgid "/_Remove Image" #~ msgstr "El_iminar imágen" #, fuzzy #~ msgid "/Allow _Cropping" #~ msgstr "Permitir re_corte" #, fuzzy #~ msgid "/Rotation/Auto" #~ msgstr "_Rotación" #, fuzzy #~ msgid "/Rotation/None" #~ msgstr "_Rotación" #, fuzzy #~ msgid "/Rotation/90 degrees" #~ msgstr "Rotar 180 grados" #, fuzzy #~ msgid "/Rotation/180 degrees" #~ msgstr "Rotar 180 grados" #, fuzzy #~ msgid "/Rotation/270 degrees" #~ msgstr "Rotar 180 grados" #, fuzzy #~ msgid "/Set image mask..." #~ msgstr "Establecer _Máscara de imagen..." #, fuzzy #~ msgid "/_Effects..." #~ msgstr "_Efectos" #, fuzzy #~ msgid "/Set colour _profile..." #~ msgstr "Seleccionar _Perfil de color" #~ msgid "Poster Size:" #~ msgstr "Tamaño del poster:" #~ msgid "Tiles high:" #~ msgstr "Recuadros a lo alto:" #~ msgid "Scale" #~ msgstr "Escala" #~ msgid "Margins" #~ msgstr "Márgenes" #~ msgid "Gutters" #~ msgstr "Canales" #~ msgid "Horizontal:" #~ msgstr "Horizontal:" #~ msgid "Vertical:" #~ msgstr "Vertical:" photoprint-0.4.2-pre2/po/pt.gmo0000644000175000017500000002747311400237673013277 00000000000000Þ•©d㬠89?H ^†—ž +#;_=oO­›ý]™9÷$1 Vbjr zˆ€Ž !$F Xf'o—4ª&ß 1?O^ y=†ÄÝäç ïü  '.4F X†dëó   "0?H X eq2wª ¯ºÕó&ú! 3@?P5 ÆÒÚé ú +J!Q&sš¬¾Å Ùú  ( 4 BPk‹ š ¤ °½Ôçù$ +2^u‹ž-®(Ü #00O€!«ÍÝâùÿ Uf m z ‡ “¡ § ´ ¾Ìâç íùÿ  !'7@ GQY` f t ~ ‹ —Û¡}ƒ‰ ¡ ÂÏç†ï v$‘¶;ÆP  S _ô GT!1œ! Î!Ú!á!è! í!ú!›"ž" £" °"Ñ"æ"ö"*ÿ"*#?<#,|#©# Â#Ð#ã# õ##$ '$B5$x$—$$ $ ¨$³$ º$ Ä$ Ñ$Þ$ æ$ð$% $%Œ0%½%Å%Ø%ê% ñ%þ%&0&9&K&^&t&7}&µ& ½&%È&&î&','J'g'{'H™'Eâ'(( 9(D(Z(p( Ž(š(²(Ò(!Ú((ü(%)<)N)W),l)&™)À) È)Ô)ä)ô)# *41*f* *Š*›*¬*Ç*Ü*ø*5 +1B+t+Ž+!¤+Æ+(Ý+*,+1,],q,6‘,È,Û,,û,(-9-?-U- ^-h-o-Wr-Ê- Ó- Þ- é-ó-..".(.7. M.W._.h.q.x.€.ˆ.˜.¡. º.Ä. Ë.Õ. Ý.ç.í. ý.//2/=¦`;„—X{.3ž@”~œ©dZ b™?"|’x] Gya-LC£OSJ+HMv€›W/FrŸN29ku%!jz_V'Qo‚:ŠYw§R#7)˜•l>n¡0 I,hf<‘s¨†DU¤ cm5\ŽAšK6Œ ¥eˆB(E–8“‰Ti&g}*ƒ¢1$…4p P‡q[‹t^AboutAbout...Absolute ColorimetricAdd images to the current layoutAdd...Adding images...After:Aims for pleasing photographic results by preserving relationships between colours, and avoiding clipping of unattainable coloursAlgorithm:Allow _CroppingApply effects to the selected imageAssign Profile:Assign an ICC profile or custom rendering intent to the imageAttempts to preserve the original colours, relative to white-point differences.Attempts to preserve the original colours, relative to white-point differences. Uses Black Point Compensation to avoid clipping of highlights and shadows.Attempts to provide brighter, more saturated colours, at the expense of colour relationships.Automatically choose rotation to fit the available space.Automatically place images in a gridBackgroundsBefore:BordersBottom:CMYK Profile:C_opyCan't show a colour managed preview unless you choose a Default RGB or Monitor profile in the Options->Colour Management dialog!CarouselCentimetersChecking .photoprint directory...Colour ManagementColour space:Columns:Copy the current image to the clipboardCreating layout...Crop the selected images to fill the available spaceCut the current image to the clipboardDefault Image ProfilesDeselect all imagesDisplay mode:Exit PhotoPrintExport TIFF...Export pages as TIFF filesExporting...Fade images into a circular 'carousel' - ideal for CD labels.Generating print data...H (%):H:Height:ICC ProfilesImageInchesInitializing...Inner Radius:LayoutLeft:Loading images...Loading preset...MillimetersMimics the original colours (including white point) as closely as possible, for side-by-side comparisons. Clips unattainable colours.MonitorMonitor Profile:No rotation.NormalOpen FileOpen a presetOpen preset...Other...Output Profile:Overlap (%):Page range:Page:Paste the contents of the clipboard as a new imagePathPerceptualPlease provide a filename.Please select an image first!PointsPreview how the printed page will lookPrint Pre_view...Print Queue:Print S_etup...Print an image in multiple pages, to be assembled into a posterPrint images on a single sheet, at a specified scale.Print pagesPrinterPrinter Model:Printer Profile:Printer SetupRGB Profile:Relative ColorimetricRelative Colorimetric with BPCRemoveRemove all images from the layoutRemove selected images from the layoutRendering intent:Resolution (dpi):Right:Rotate 180 degrees.Rotate 90 degrees anticlockwise.Rotate 90 degrees clockwise.Rows:SaturationSave _As...Save _DefaultSave a presetSave preset as the defaultSave preset with a new filenameSave preset...Segments:Select _AllSelect _NoneSelect a background...Select a border...Select all imagesSelect directory...Select the preferred scaling method.Select the units used throughout PhotoPrintSet Colour _Profile...Set Custom Profile...Set Image _Mask...Set _BackgroundSet a background image for the current layoutSet a border mask for the selected imageSet colour management optionsSet paths...Set printer driver and optionsSet search paths for ICC profiles, borders, etc.Simulate PrintSimulate Print, Adapt WhiteSome information about PhotoPrintStarting angle:Top:Transferring images...UnitsUnits:V (%):V:Warning: Image already has an embedded profile Assigning a new one will over-ride it!Width:_180 Degrees_270 Degrees_90 Degrees_Add Image..._Auto_Auto Layout_Carousel_Clear Layout_Colour Management..._Cut_Edit_Effects..._File_Help_Image_Layout_Manual Size_None_Open Preset..._Options_Paste_Paths..._Poster_Print_Quit_Remove Image_Rotation_Save Preset_Scaling..._Units...Project-Id-Version: pt_BR Report-Msgid-Bugs-To: blackfive@fakenhamweb.co.uk POT-Creation-Date: 2010-05-29 17:24+0100 PO-Revision-Date: 2007-07-14 00:26-0300 Last-Translator: Krishnamurti Lelis Lima Vieira Nunes Language-Team: Krishnamurti Lelis Lima Vieira Nunes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: KBabel 1.11.4 Plural-Forms: nplurals=2; plural=(n > 1); SobreSobreColorimétrica AbsolutaAdiciona imagens ao layout atualAdicionar...Adicionando imagens ...Depois:Tenta privilegiar os resultados fotográficos preservando o relacionamento entre as cores e evitando clipping of unattainable coloursAlgoritmo:Permitir _CorteAplica efeitos à imagem selecionadaDefinir Perfil:Associa um perfil ICC ou rendering intent padrão à imagemTenta preservar as cores originais, relativas às diferenças dos pontos-brancosTenta preservar as cores originais, relativas às diferenças dos pontos-brancos. Usa Compensação de Pontos Pretos para evitar acentuar os reflexos e sombras.Tenta obter cores mais brilhantes e saturadas, em detrimento de relacionamentos entre as cores.Escolhe automaticamente a rotação para adequar ao espaço disponívelPosiciona as imagens em uma grade automaticamenteBackgroundsAntes:BordasPé:Perfil CMYK:_CopiarNão é possível mostrar uma cor usada previamente a não ser que que você escolha um RGB padrão ou um perfil Monitor em Options->Gerenciamento de corRodaCentímetrosVerificando pasta .photoprint...Gerenciamento de corEspaço de cor:Colunas:Copia a imagem atual para a área de trocaCriando layout...Corta as imagens selecionadas para caber no espaço disponívelRecorta a imagem atual para a área de trocaPerfis de imagem padrãoDesselecionarModo de exibiçãoSai do PhotoPrintExportar TIFFExporta páginas como arquivos TIFFExportando...Vai apagando a imagem em um círculo - ideal para rótulos de CDs.Gerando dados de impressão...H (%)H:Altura:Perfis ICCImagemPolegadasIniciando...Raio internoLeyout:Esquerda:Carregando imagens...Carregando pré-seleções...MilímetrosImita as cores originais (incluindo pontos brancos) o mais fielmente possível, para comparações lado-a-lado. Clips unattainable colours.MonitorPerfil do Monitor:Nenhuma rotaçãoNormalAbre arquivoAbre uma pré-seleçãoAbrir pré-definição...Outro...Arquivo de saídaSobreposição(%):Intervalo de páginasPágina:Cola o conteúdo da área de troca como uma nova imagemCaminhoPercentualPor favor forneça um nome de arquivoPor favor insira uma imagem primeiro! Pontos:Prevê a aparência da impressão da páginaImprimir Pré-visualizaçãoFila de Impressão:Configuração de Impr_essoraImprime uma imagem em várias páginas, para serem montadas em um cartazImprime imagens em uma única página, com uma dimensão especificadaImprime páginasImpressoraModelo de Impressora:Perfil de impressora:Configuração da Impressora Perfil RGB:Colorimétrica RelativaColorimétrica Relativa com BPCRemoverRemove todas as imagens do layoutRemove as imagens selecionadas do layoutTentar Renderização:Resolução (dpi)Direita:Rotaciona 180 graus.Rotaciona 90 graus no sentido anti-horário.Rotaciona 90 graus no sentido horárioLinhas:SaturaçãoSalvar _Como...Salvar _PadrãoSalva uma pré-seleçãoSalva a pré-seleção como padrãoSalva uma pré-seleção com um novo nome de arquivoSalvar pré-definiçõesSegmentos:Selecionar _TudoSelecionar _NadaSelecione um background...Selecionar uma bordaSelecionar todas as imagensSelecionar pasta...Seleciona o método preferido para redimensionamento.Seleciona as unidades usadas em todo o PhotoPrintConfigurar _Perfil de CorDefina perfil padrãoSelecionar _Máscara da Imagem...Selecionar _BackgroundDefine um background para o layout atualDefine uma borda para a imagem selecionadaDefine opções para gerenciamento de coresDefinir caminhos...Configura impressora e opçõesDefine caminhos para busca de perfis ICC, bordas, etc.Simular impressãoSimular impressão, Adapt WhiteExibe alguma informação sobre o PhotoPrintÂngulo inicial:Topo:Transferindo imagens:UnidadesUnidades:V (%):V:Advertência: uma imagem já foi incluída no perfil Incluir outra vai sobrescrevê-la!Largura:_180 Graus_270 Graus_90 Graus_Adicionar Imagem...A_utoLayout _Automático_RodaL_impar LayoutGerenciamento de _Cor_Recortar_Editar_Efeitos_Arquivo_Ajuda_Imagem_LayoutTamanho _Manual_NenhumaA_brir Pré-seleção..._OpçõesCo_larC_aminhos_Cartaz_ImprimirSai_r_Remover ImagemR_otação_Salvar Pré-seleção_Redimensionamento_Uniddesphotoprint-0.4.2-pre2/po/nl.gmo0000644000175000017500000006543311400237673013263 00000000000000Þ•> ¯ü¸ ¹ÆØêü3 :[bJs@¾ÿ ˆ“ £7±#é =O[›«]G ¥9¯$é "+3; @;N‚Šw O… Õ ö Aü 6>!2u!2¨!PÛ!€,"­" ¶"!Â"Nä"3#9#H#W#l#~# “#¡#'ª#,Ò#ÿ#4$ G$&U$|$„$›$ ´$¿$ Ó$(ß$ %B%Y% j%u%&…%¬%Ä%Ì%Ü%!ä%4&;&R&*i&@”&Õ&î&þ& '','<'W' r'='J½'( (9(Q(e(j(r(‹(’(•('(Å( ×( á(î(ó( ù(")&')HN)—)ž) ®) ¼) Ê)Ö)Ý)ã)õ)9*eA*§*·* Æ*†Ò*Y+a+r+w+’+ ¥+²+ ¹+ Ã+Ñ+à+é+ð+, ,,+, A,M,2S,†, ‹, –,!¢,Ä,ß,ý, -&-9-M- _-l-?|-5¼- ò-þ-.. &.y4.…®.w4/„¬/n10v 0p1vˆ1mÿ1om2Ý2õ2 þ2 3 3:3V3vØ3OO4Ÿ4 ¿4Í4ã45! 5&+51R5„5–5 ¨5´5»5 Ï5ð5 6 6 6 *6 86F6V6q6‘6 6 ¨6 ²6 ¾6Ë6â6õ67$7+@71l7?ž73Þ78)8?8T8g8-w8(¥8Î8 ì8ù809I9Q9a9p9Œ9]©9P:X:/]:!:¯:È:Ý:í:ý::;®J;tù;n<t<y<<®<´<»<Â<'Å<í< ð<Uú<P= W= d= q= }=‹= ‘= ž= ¨=¶=Ì=å=ê=û= > >>> > (>5>;>K>[>d> k>u>}>„> Š> ˜> ¢> ¯> »> Æ>Ð> Ó>ß>â>å> ì>ø>û>? ?£ ?°@Á@Ó@å@÷@ AAA,A-3A aAnAVˆAVßA6B˜:B ÓBÞBóB7C1>CpC?ƒCRÃC§Da¾D E>,E0kE œEªE°E¹EÀEÇE ÌEQÚE¡,F‹ÎF_ZG1ºG ìGD÷G4RTRJgR²R2SJS \ShSèSðSTT%T >TKTSTbTtT ‡T‘T™TªT ²T¿TØT êTøT9U:U >U JUVUrUŒU§U ®U=¼UúUV V0VQDVD–VÛVîV öVWW‘)W›»WWX™çX‚YŒZˆ‘ZŒ[§[‡)\±\Ï\ Ø\å\ é\Pö\¢G]Šê]_u^)Õ^ ÿ^ _$_ C_)O_5y_8¯_è_û_ ``` 2`S`p` w`ƒ`’`²`Æ`Ú`+ø`$a8a @aKa]aoa‡a˜a ´a&Àa4ça;b>Xb5—bÍbçbcc8c8Mc1†c¸cÓc"æc8 d BdNd^d"nd‘dh¯dee~e/†e¶eÑeïe ff%fI=f܇f¨dg hhh':hbh khuh|h%h¥h ¨hb²hi i *i 6iAiWi]i ri}iiŸi¶i¿i Õi ßiìiõi ûijj#j)j8jJjRj [jej mj xjƒj™j¢j ³j¿j ÐjÝj âjîjñjôj ûjk kkkw<Ìë’ œ“ó<Ä–  73/g‹Cl&2äÈ€rIN8{#!c¤-8Y¶k&s¢ù© ¡„Q=)4ßT-¼M¸´»£+'L ×Õ2ê4(íÿ¹,…AJ;öèÚ`ªƒ”; i:Ò Ÿ›@á¨/51fƱ*÷¿1d°Í"‡xD}ÇåÐé$¬q?%ˆ¾²Ö.UÃ^)Þç#ŽVvÓ6õhÅF•Œ>ÊRšñàÁ†§æ­®³¥u0(n]ã«!Ñ™%Šj¯0E ~ÉzÎ|‘m½e*µKBÔOØ"þ·ÛH‰.bPý‚GpoaÜ òX9yZË>úS[—95,ô : 7Ù_üW˜ï6\âû'ø+tîž$=3 ÀºÝÏì¦ð%d degrees K180 dots per inch240 dots per inch300 dots per inch360 dots per inchAboutAbout...Absolute ColorimetricActiveAdd images to the current layoutAdd...Adding images...Adjust colours on screen to imitate printed colours, including paper whiteAdjust colours to imitate printed colours, excluding paper whiteAfter:Aims for pleasing photographic results by preserving relationships between colours, and avoiding clipping of unattainable coloursAlgorithm:Allow _CroppingAmount: %1.2fAn interpolation filter with mediocre speed and qualityApply effects to the selected imageAssign Profile:Assign an ICC profile or custom rendering intent to the imageAttempts to preserve the original colours, relative to white-point differences.Attempts to preserve the original colours, relative to white-point differences. Uses Black Point Compensation to avoid clipping of highlights and shadows.Attempts to provide brighter, more saturated colours, at the expense of colour relationships.AutomaticAutomatically choose rotation to fit the available space.Automatically place images in a gridBackgroundsBefore:BilinearBordersBottom:CMYKCMYK Profile:CMYK images can be printed but colours depend on the driverCMYK images can be printed but colours depend on the driver (Colours will be accurate for images that contain an embedded profile)CMYK images can only be printed if they have an embedded profile (Workflow is RGB and there is no default CMYK profile)CMYK images cannot be printed (Workflow is RGB and there is no printer profile)CMYK images will print correctlyC_opyCalculating hash of printer response with current driver settingsCan't do proofing without a valid Default RGB profile!Can't do proofing without a valid Monitor profile!Can't do proofing without a valid Printer profile!Can't obtain printer from Gutenprint Check STP_DATA_PATH and Gutenprint version!Can't show a colour managed preview unless you choose a Default RGB or Monitor profile in the Options->Colour Management dialog!CarouselCentimetersChecking .photoprint directory...Click-and-drag to pan around the preview. Right-click to toggle magnification.CloseColour (Basic)Colour (Extra)Colour (Fine-tuning)Colour ManagementColour Response HashColour space:Columns:Copy the current image to the clipboardCreate a hash for verifying printer settingsCreating layout...Crop the selected images to fill the available spaceCurrent hash:Cut the current image to the clipboardDefaultDefault Image ProfilesDefault rendering intentDesaturateDeselect all imagesDimensions:Display colours with no print simulationDisplay mode:Displays images' original colours, transformed to suit the monitorDither AlgorithmDownsampleDrawing previewDuplicate the currently selected imageDuplicate to _Fill PageE_xportE_xport TIFF...EffectsError creating directory `%s': %sError creating temporary thumbnail file for `%s': %sError opening `%s': %sError reading `%s': %sError reading `%s': file contains no data.Error reading `%s': file is not a regular file or symbolic link.Error verifying `%s': %sExit PhotoPrintExport JPEG...Export TIFF...Export _JPEG...Export _TIFF...Export pages as JPEG filesExport pages as TIFF filesExporting...Fade images into a circular 'carousel' - ideal for CD labels.Failed to load image '%s': reason not known, probably a corrupt image fileFastFilename:Fill the page with copies of the currently selected imageFrom selected imageGap:GeneralGenerating print data...H (%):H:Height:High quality filter for reductions onlyHigh-res PreviewsHistogramICC ProfilesIconImageImage InfoImages will be displayed correctlyImages will not be displayed correctlyImages will only be displayed correctly if they have an embedded profileInchesInitializing...Inner Radius:JPEG Quality:LanczosSincLayoutLeft:Loading images...Loading preset...MATCH - No changes in driver or printer settings detectedMISMATCH - change detected in printer response! Printer's colour profile might no longer be accurate.Manual SettingsManual scalingMillimetersMimics the original colours (including white point) as closely as possible, for side-by-side comparisons. Clips unattainable colours.MonitorMonitor Profile:NameNo Proof profile provided!No hash stored yetNo rotation.NormalOpen FileOpen a presetOpen preset...Other...OutputOutput Profile:OverlapOverlap (%):Page Size and MarginsPage is already full!Page range:Page:Paste the contents of the clipboard as a new imagePathPerceptualPhotoPrint Please choose a valid ICC profilePlease provide a filename.Please select an image first!PointsPoster LayoutPreview how the printed page will lookPreview resolution:Print Pre_view...Print Queue:Print S_etup...Print an image in multiple pages, to be assembled into a posterPrint images on a single sheet, at a specified scale.Print pagesPrinterPrinter Model:Printer Profile:Printer SetupPrinter profile is a devicelink - CMYK images with embedded profiles will first be converted to the default CMYK profile.Printer profile is a devicelink - CMYK images with embedded profiles will not print correctly since there is no default CMYK profile.Printer profile is a devicelink - RGB images with embedded profiles will first be converted to the default RGB profile.Printer profile is a devicelink - RGB images with embedded profiles will not print correctly, since there is no default RGB profile.Printer profile is a devicelink with CMYK input - RGB images cannot be printed without a default CMYK profile.Printer profile is a devicelink with CMYK input - RGB images cannot be printed without a default RGB and CMYK profile.Printer profile is a devicelink with CMYK input - RGB images will first be converted to the default CMYK profilePrinter profile is a devicelink with RGB input - CMYK images cannot be printed without a default RGB and CMYK profile.Printer profile is a devicelink with RGB input - CMYK images cannot be printed without a default RGB profile.Printer profile is a devicelink with RGB input - CMYK images will first be converted to the default RGB profilePrinter queue not foundProfile:Progress...RGBRGB Profile:RGB images can be printed but colours depend on the driverRGB images can be printed but colours depend on the driver (Colours will be accurate for images that contain an embedded profile)RGB images can only be printed if they have an embedded profile (Workflow is CMYK and there is no default RGB profile)RGB images cannot be printed (Workflow is CMYK and there is no printer profile)RGB images will print correctlyRadius: %1.2fRelative ColorimetricRelative Colorimetric with BPCRemoveRemove all images from the layoutRemove selected images from the layoutRender high-resolution previews in the backgroundRendering intent:Resolution (dpi):Resolution:Right:Rotate 180 degrees.Rotate 90 degrees anticlockwise.Rotate 90 degrees clockwise.Rows:SaturationSave _As...Save _DefaultSave a presetSave as 16-bit:Save preset as the defaultSave preset with a new filenameSave preset...ScalingSegments:Select _AllSelect _NoneSelect a background...Select a border...Select all imagesSelect directory...Select the preferred scaling method.Select the units used throughout PhotoPrintSelects a scaling algorithm based on scale factorSend Cyan, Magenta, Yellow and Black data to the printer driverSend Red, Green and Blue data to the printer driverSet Colour _Profile...Set Custom Profile...Set Image _Border...Set Image _Mask...Set _BackgroundSet a background image for the current layoutSet a border mask for the selected imageSet colour management optionsSet paths...Set printer driver and optionsSet search paths for ICC profiles, borders, etc.SharpenSimulate Prin_tSimulate PrintSimulate Print, Adapt WhiteSimulate Print, _Adapt WhiteSimulates how colours will look when printed, adapting colours for the monitor's white point.Simulates how colours will look when printed, imitating the paper's white point.SizeSlow but very high quality interpolation filterSome information about PhotoPrintSpecify image dimensionsSpecify rows/columnsStarting angle:Store in presetStored in preset:The printer queue %s is not found - please choose anotherThis "hash" value is derived from the printer driver's output, and can be used to verify that no changes have occurred which might invalidate a colour profile for the printerThis hash can be used to detect changes in printer settings or driver versions that might invalidate colour profilesTilesTop:Transferring images...Unable to generate print dataUnitsUnits:V (%):V:Very fast scaling with no interpolationW:Warm/CoolWarning: Image already has an embedded profile Assigning a new one will over-ride it!Width:_180 Degrees_270 Degrees_90 Degrees_Add Image..._Auto_Auto Layout_Carousel_Clear Layout_Colour Management..._Colour Response Hash..._Cut_Duplicate Image_Edit_Effects..._File_Help_Image_Layout_Manual Size_None_Normal Display_Open Preset..._Options_Paste_Paths..._Poster_Print_Quit_Remove Image_Rotation_Save Preset_Scaling..._Shortcuts_Units...bycentimeterscmininchesmillimetersmmpixelspointsptProject-Id-Version: photoprint 0.4.1-pre1 Report-Msgid-Bugs-To: blackfive@fakenhamweb.co.uk POT-Creation-Date: 2010-05-29 17:24+0100 PO-Revision-Date: 2010-02-08 23:29+0100 Last-Translator: Kenny Verstraete Language-Team: Dutch <> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Lokalize 1.0 Plural-Forms: nplurals=2; plural=(n != 1); %d graden Kelvin180 dots per inch240 dots per inch300 dots per inch360 dots per inchOverOver...Absolute ColorometrieActief_Afbeeldingen toevoegen aan de huidige layoutToevoegen...Afbeeldingen toevoegen...Pas de kleuren op het scherm aan om de afdrukkleuren te imiteren, inclusief papier-witPas de kleuren op het scherm aan om de afdrukkleuren te imiteren, exclusief papier-witNa:Probeert een gewenst fotografisch resultaat te krijgen door het behouden vankoppelingen tussen kleuren en knippen van onbereikbare kleuren te voorkomen.Algoritme:Bij_snijden toestaanHoeveelheid: %1.2fEen interpolatiefilter met matige snelheid en kwaliteitEffecten toepassen op de geselecteerde afbeeldingToewijzen profiel:Wijs een ICC-profiel of een ander profiel toe aan de afbeeldingProbeert de originele kleuren te behouden, relatief ten opzichte van de witbalans.Probeert de originele kleuren te behouden, relatief ten opzichte vanwitbalans verschillen. Gebruikt BPC (Zwart Punt Compensatie) om licht en donker goed weer te geven.Probeert heldere, meer verzadigde kleuren te krijgen ten koste van de relaties tussen de kleuren.AutomatischAutomatisch rotatie kiezen om de beschikbare ruimte te vullen.Plaats de afbeeldingen automatisch in een rasterAchtergrondenVoor:BilinearRandenOnder:CMYKCMYK profiel:CMYK afbeeldingen kunnen afgedrukt worden maar de kleuren hangen af van de driverCMYK afbeeldingen kunnen afgedrukt worden maar de kleuren hangen af van de driver (Kleuren zullen accuraat zijn voor afbeeldingen die een ingebed profiel hebben)CMYK afbeeldingen kunnen alleen afgedrukt worden als ze een ingebed profiel hebben (Werkstroom is RGB en er is geen standaard CMYK profiel)CMYK afbeeldingen kunnen niet afgedrukt worden (Werkstroom is RGB en er is geen printerprofiel)CMYK afbeeldingen zullen correct worden afgedruktK_opiërenHash berekenen van printer reactie met de huidige driverinstellingenKan niet proefdrukken zonder een geldig RGB profiel!Kan niet proefdrukken zonder een geldig monitorprofiel!Kan niet proefdrukken zonder een geldig printerprofiel!Kan de printer niet verkrijgen van Gutenprint Controleer STP_DATA_PATH en de Gutenprint versie!Kan geen kleur beheerd voorbeeld tonen, vooraleer er gekozen is voor een standaard RGB- of beeldschermprofiel in de Opties->Kleurbeheer dialoog!CarrouselCentimetersBezig met controleren van .photoprint map...Klik-en-sleep om een gebied te selecteren in het voorbeeld. Rechtsklik om te vergroten.SluitenKleur (Basis)Kleur (Extra)Kleur (Beter)KleurbeheerKleur reactie hashKleurgebied:Kolommen:Kopieer de huidige afbeelding naar het klembordMaak een hash aan voor verificatie van printerinstellingenLayout maken...Afbeelding bijsnijden om de beschikbare ruimte op te vullenHuidige hash:Knip de huidige afbeelding naar het klembordStandaardStandaard afbeeldingsprofielenGewenst resultaatOnverzadigenDeselcteer alle afbeeldingenAfmetingen:Kleuren weergeven zonder printsimulatieDisplay modus:Geeft de afbeelding zijn originele kleuren weer, aangepast aan de monitorDither algoritmeDownsamplenVoorbeeldweergave opbouwenDupliceer de huidig geselecteerde afbeeldingDupliceer om de pagina op te _vullenE_xporteerE_xporteer naar TIFF...EffectenFout bij het aanmaken van map `%s': %sFout bij het maken van een thumbnail voor `%s': %sFout bij openen `%s': %sLeesfout `%s': %sLeesfout `%s': bestand bevat geen data.Leesfout `%s': bestand is geen bestand en ook geen snelkoppeling.Fout bij verifiëren `%s': %sPhotoPrint afsluitenExporteer naar JPEG...Exporteer naar TIFF...Export naar _JPEG...Export naar _TIFF...Exporteer pagina's als JPEG bestandenExporteer pagina's als TIFF-bestandenExporteren...Verwerk afbeeldingen tot een cirkelvormig 'carrousel' - ideaal voor CD-labels.Laden van afbeelding '%s' mislukt: Reden onbekend, waarschijnlijk een corrupt afbeeldingsbestandSnelBestandsnaam:Vul de pagina met duplicaten van de huidig geselecteerde afbeeldingVan geselecteerde afbeeldingTussenruimte:AlgemeenGeneneer print data...H (%):H:Hoogte:Hoge kwaliteitsfilter alleen voor reductiesHoge-resolutie voorbeeldweergaveHistogramICC ProfielenIcoonAfbeeldingAfbeeldingsinformatieAfbeeldingen zullen correct weergegeven wordenAfbeeldingen zullen niet correct worden weergegevenAfbeeldingen zullen alleen correct worden weergegeven als ze een ingebed profiel hebbenInchesInitialiseren...Binnenradius:JPEG kwaliteit:LanczosSincLayoutLinks:Afbeeldingen laden...Voorkeur laden....PASSEND - geen veranderingen in driver of printerinstellingen gedetecteerdNIET PASSEND - verandering gedetecteerd in printer reactie! Het kleurenprofiel van de printer is mogelijk niet langer accuraat.Handmatige instellingenHandmatig schalenMillimetersGeeft de originele kleuren (inclusief witbalans) zo goed mogelijk weer, voor directe vergelijkingen. Filtert onbekende kleuren.MonitorMonitorprofiel:NaamGeen proefdruk profiel bezorgd!Nog geen hash opgeslagenGeen rotatieNormaalBestand openenOpen een voorkeurVoorkeur openen...Andere...UitvoerUitvoer profiel:OverlapOverlap (%):Paginagrootte en -margesPagina is al vol!Paginabereik:Pagina:Plak de inhoud van het klembord als een nieuwe afbeeldingPadPerceptueelPhotoPrint Kies een geldig ICC-profielGeef een bestandsnaam op.Kies eerst een afbeelding!PuntenPoster layoutVoorbeeldweergave van hoe de afgedrukte pagina er zal uitzienVoorbeeld Resolutie:Afdruk_voorbeeldAfdrukwachtrij:Afdrukinst_ellingenAfbeelding afdrukken op meerdere pagina's, om daarna een poster samen te stellen.Afbeeldingen afdrukken op een enkele pagina, op een bepaalde schaal.Pagina's afdrukkenPrinterPrintermodel:Printerprofiel:Printer instellingenPrinterprofiel is een apparaatlink - CMYK afbeeldingen met ingebedde profielen zullen eerst geconverteerd worden naar het standaard CMYK profiel.Printerprofiel is een apparaatlink - CMYK afbeeldingen met ingebedde profielen zullen niet correct afgedrukt worden daar er geen standaard CMYK profiel is.Printerprofiel is een apparaatlink - RGB afbeeldingen met ingebedde profielen zullen eerst geconverteerd worden naar het standaard RGB profiel.Printerprofiel is een apparaatlink - RGB afbeeldingen met ingebedde profielen zullen niet correct afgedrukt worden daar er geen standaard RGB profiel is.Printerprofiel is een apparaatlink met CMYK invoer - RGB afbeeldingen kunnen niet afgedrukt worden met een standaard CMYK profiel.Printerprofiel is een apparaatlink met CMYK invoer - RGB afbeeldingen kunnen niet afgedrukt worden zonder een standaard RGB en CMYK profiel.Printerprofiel is een apparaatlink met CMYK invoer - RGB afbeeldingen zullen eerst worden geconverteerd naar het standaard CMYK profiel.Printerprofiel is een apparaatlink met RGB invoer - CMYK afbeeldingen kunnen niet worden afgedrukt zonder een standaard RGB en CMYK profiel.Printerprofiel is een apparaatlink met RGB invoer - CMYK afbeeldingen kunnen niet afgedrukt worden met een standaard RGB profiel.Printerprofiel is een apparaatlink met RGB invoer - CMYK afbeeldingen zullen eerst geconverteerd worden naar het standaard RGB profiel.Printerwachtrij niet gevondenProfiel:Voortgang...RGBRGB profiel:RGB afbeeldingen kunnen worden afgedrukt maar de kleuren hangen af van de driverRGB afbeeldingen kunnen worden afgedrukt maar de kleuren hangen af van de driver (kleuren zullen accuraat zijn voor afbeeldingen die een ingebed profiel bevatten)RGB afbeeldingen kunnen alleen afgedrukt worden als ze een ingebed profiel hebben (Werkstroom is CMYK en er is geen standaard RGB profiel)RGB afbeeldingen kunnen niet afgedrukt worden (Werkstroom is CMYK en er is geen printerprofiel)RGB afbeeldingen zullen correct afdrukkenRadius: %1.2fRelatieve ColorometrieRelatieve Colorometrie met BPCVerwijderenVerwijder alle afbeeldingen van de layoutVerwijder de geselecteerde afbeeldingen van de layoutHoge-resolutie voorbeeldweergave maken op de achtergrondGewenst resultaat:Resolutie (dpi):Resolutie:Rechts:Roteer 180 graden.Roteer 90 graden ani-klokgewijs.Roteer 90 graden klokgewijs.Rijen:VerzadigingOpslaan als...Opslaan stan_daard-instellingenSla een voorkeur opOpslaan als 16-bit:Sla voorkeur op als standaardSla voorkeur op met een nieuwe bestandsnaamVoorkeur opslaan...SchalenSegmenten:_Alles selecteren_Niets selecterenKies een achtergrond...Kies een rand...Selecteer alle afbeeldingenKies map...Kies de gewenste manier om te schalen.Kies de eenheden die door PhotoPrint gebruikt wordenSelecteert een schaalalgoritme gebaseerd op de schaalfactorStuur Cyaan, Magenta, Geel en Zwart data naar de printerdriverStuur Rood, Groen en Blauw data naar de printerdriverStel kleurenprofiel in...Stel eigen profiel in...Stel afbeeldingsrand in...Stel afbeeldingsmasker in...Stel _Achtergrond inStel een achtergrondafbeelding in voor de huidige layoutStel een randmasker in voor de gekozen afbeeldingStel kleurbeheer opties inPaden instellen...Stel de printerdriver en opties inStel de zoekpaden in voor de ICC-profielen, randen, etc.VerscherpenSimuleer prin_tSimuleer afdrukSimuleer afdruk, pas witbalans aanSimuleer afdruk, p_as wit aanSimuleert hoe de kleuren eruit zullen zien wanneer afgedrukt, aangepast aan de witbalans van de monitor.Simuleert hoe kleuren eruit zullen zien wanneer afgedrukt, met imitatie van het papier z'n witbalans.GrootteTrage maar zeer kwalitatieve interpolatiefilterInformatie over PhotoPrintGeef afbeeldingsafmetingen opGeef rijen/kolommen opStarthoek:Opslaan in voorkeurOpgeslagen in voorkeur:De printer wachtrij %s kan niet gevonden worden - kies een andere a.u.b.Deze "hash" waarde is afgeleid van de uitvoer van de printerdriver, en kan gebruikt worden om te controleren dat er geen veranderingen plaatsgevonden hebben die mogelijks een kleurenprofiel voor de printer ongeldig makenDeze hash kan gebruikt worden om wijzigingen te detecteren in printerinstellingen of driverversies die ervoor kunnen zorgen dat kleurenprofielen ongeldig gemaakt wordenTegelsBoven:Overzetten van afbeeldingen...Niet mogelijk om printdata te genererenEenhedenEenheden:V (%):V:Zeer snel schalen zonder interpolatieW:Warm/koudWaarschuwing: De afbeelding bevat al een kleurprofiel Een nieuw kiezen zal het oude overschrijven!Breedte:_180 graden_270 graden_90 graden_Afbeelding toevoegen_Auto_Automatische layout_CarrouselLayout ops_chonen_Kleurbeheer..._Kleur reactie hash..._Knippen_Dupliceer afbeeldingB_ewerken_Effecten..._Bestand_HelpAfbeeld_ing_LayoutHand_matige grootteGee_n_Normaal beeld_Open voorkeur..._Opties_Plakken_Paden..._Poster_Afdrukken_AfsluitenVerwijde_r afbeelding_Rotatie_Sla voorkeur op_Schalen..._Snelkoppelingen_Eenheden...doorcentimeterscmininchesmillimetersmmpixelspuntenptphotoprint-0.4.2-pre2/po/es.gmo0000644000175000017500000002325311400237673013253 00000000000000Þ•œüÓÜ ( ) / 8 Y ` q x ƒ #“ · 9Ç $ &2:B JX€^ß è!ô (6'?g4z&¯Öí . I=V”­´· ¿ÌÒÙ é÷þ (4< MZ a kyˆ‘ ¡ ®º2Àóø1&8_ q~?Ž5Î ' 8 FS!Z&|£µ¼ Ðñ   + 9Gb‚ ‘ › §´ËÞð1D-T(‚« ÉÖ0õ&5!QsƒˆŸ¥¬³U¶    - 9G M Z drˆ “Ÿ¥«² ºÇÍÝæ í÷ÿ   $ 1 =vG ¾ È%Õ û  (3(En<}.ºéð÷þ ¤¿ Æ'Óû   (II^ ¨!É ë 1$A fCt ¸ÙÜßåû   + 8CV iv~ ‘Ÿ ¦´ ÄÑÚëý!:(?h…*Œ·ÉÝCö?: z Œ – « À Õ á ,è #!9!L!U!f!(„!­! ´! À!Î!ã!ô!""7" I"T"f"x"Š" ™"º"Î"ë"!# ##20#4c#(˜#Á#!Ò#Bô#7$$K$%p$–$©$±$Ì$ Õ$ß$â$^å$D% K% X% d%p%%‡%›%£%¹%Ì%Ô%Ü%å%î%õ% þ% && %& 3&=& D&N& V&`&g& y&„& ”& ¡&…‰9#IOB0 ^Žo_x*Ab`™wrsXC†[6‘/2+WRM“;Fvˆh\œp‚’iŒc<„-5et%ag=•d‡S>ƒ$m,U)Ly4H {~Dz—K fk} n8›P@QšTE”"j!:&YG€u (.N'–lV]1˜7‹q?Z|Š J3AboutAbout...Add images to the current layoutAdd...Adding images...After:Algorithm:Allow _CroppingApply effects to the selected imageAssign Profile:Automatically choose rotation to fit the available space.Automatically place images in a gridBackgroundsBefore:BordersBottom:CMYK Profile:C_opyCan't show a colour managed preview unless you choose a Default RGB or Monitor profile in the Options->Colour Management dialog!CarouselCentimetersChecking .photoprint directory...Colour ManagementColour space:Columns:Copy the current image to the clipboardCreating layout...Crop the selected images to fill the available spaceCut the current image to the clipboardDefault Image ProfilesDeselect all imagesDisplay mode:Exit PhotoPrintExport TIFF...Export pages as TIFF filesExporting...Fade images into a circular 'carousel' - ideal for CD labels.Generating print data...H (%):H:Height:ICC ProfilesImageInchesInitializing...Inner Radius:LayoutLeft:Loading images...Loading preset...MillimetersMonitorMonitor Profile:No rotation.NormalOpen FileOpen a presetOpen preset...Other...Output Profile:Overlap (%):Page range:Page:Paste the contents of the clipboard as a new imagePathPlease provide a filename.Please select an image first!PointsPreview how the printed page will lookPrint Pre_view...Print Queue:Print S_etup...Print an image in multiple pages, to be assembled into a posterPrint images on a single sheet, at a specified scale.Print pagesPrinterPrinter Model:Printer Profile:Printer SetupRGB Profile:RemoveRemove all images from the layoutRemove selected images from the layoutResolution (dpi):Right:Rotate 180 degrees.Rotate 90 degrees anticlockwise.Rotate 90 degrees clockwise.Rows:SaturationSave _As...Save _DefaultSave a presetSave preset as the defaultSave preset with a new filenameSave preset...Segments:Select _AllSelect _NoneSelect a background...Select a border...Select all imagesSelect directory...Set Colour _Profile...Set Custom Profile...Set Image _Mask...Set _BackgroundSet a background image for the current layoutSet a border mask for the selected imageSet colour management optionsSet paths...Set printer driver and optionsSet search paths for ICC profiles, borders, etc.Simulate PrintSimulate Print, Adapt WhiteSome information about PhotoPrintStarting angle:Top:Transferring images...UnitsUnits:V (%):V:Warning: Image already has an embedded profile Assigning a new one will over-ride it!Width:_180 Degrees_270 Degrees_90 Degrees_Add Image..._Auto_Auto Layout_Carousel_Clear Layout_Colour Management..._Cut_Edit_Effects..._File_Help_Image_Layout_Manual Size_None_Open Preset..._Options_Paste_Paths..._Poster_Print_Quit_Remove Image_Rotation_Save Preset_Scaling..._Units...Project-Id-Version: photprint 0.3.5 Report-Msgid-Bugs-To: blackfive@fakenhamweb.co.uk POT-Creation-Date: 2010-05-29 17:24+0100 PO-Revision-Date: 2007-10-11 23:24+0200 Last-Translator: Redy Rodrigez Language-Team: Spanish MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); Acerca deAcerca de...Añadir imágenes a esta disposiciónAñadir...Añadiendo imágenes...Después:Algoritmo:Permitir re_corteAplicar efectos a la imagen seleccionadaAsignar perfilRotar automáticamente para ajustarse al espacio disponible.Colocar imágenes en rejilla automáticamente.FondosAntes:MarcosAbajo:Perfil CMYK:C_opiarNo puedo mostrar una previsualización de gestión de color, a no ser que elijas un perfil de monitor RGB por defecto en el diálogo de Opciones->Gsetión de color.RuletaCentímetrosComprobando directorio de photoprint...Gestión de colorEspacio de colorColumnas:Copiar la imagen al portapapelesCreando disposiciónRecortar las imágenes seleccionadas hasta rellenar el espacio disponibleCortar la imagen al portapapelesPerfil por defecto para imágenesDeselecionar todas las imágenesModo de pantallaSalir de PhotoprintExportar a TIFFExportar páginas como ficheros TIFFExportando...Mezcla imágenes en forma de ruleta - Ideal para etiquetas de CD's.Generando datos de impresión...H:H:Alto:Perfiles de color ICCImágenPulgadasInicializando...Radio centralDisposiciónIzquierda:Cargando imágenesCargando preset...MillímetrosMonitorPerfil de monitor:Sin rotaciónNormalAbrir ficheroAbrir un presetAbrir presetOtros...Perfil de salidaSolapamiento (%):Rango de páginasPágina:Pegar el portapapeles como imagenRutaPor favor, indique un nombre de fichero.¡Elija primero una imágen!PuntosPrevisualizar el aspecto de la impresión.Pre_visualizar...Cola de impresión:C_onfigurar Impresora...Imprimir una imágen en múltiples páginas para componer un posterImprime imágenes en una única hoja a una escala especificada.Imprimir páginasImpresoraModelo de impresora:Perfil de impresora:Configurar impresoraPerfil RGB:QuitarBorrar todas las imágnes de la disposiciónQuitar imágenes de la disposiciónResolución (dpi):Derecha:Rotar 180 gradosRotar 90 grados contra reloj.Rotar 90 grados en el sentido del reloj.Filas:SaturaciónGuardar _comoGuradar por _DefectoGrabar un presetGuardar como preset por defectoGuardar preset con un nuevo nombreGuardar preset...Segmentos:Seleccion_ar todoSeleccionar _NadaElija un fondo...Elige un marcoSeleccionar todas las imágenes.Elije directorio...Seleccionar _Perfil de colorPoner perfil-habitualEstablecer _Máscara de imagen...Poner _FondoPoner imágen de fondo para la disposición actualEstablecer una máscara para la imágen seleccionadaEstablecer opciones de gestión de colorEstablecer rutasConfigurar opciones de impresiónEstablecer rutas de búsqueda de perfiles de color, marcos, etc...Simular·impresiónSimular impresión,·Adaptar·BlancoAlguna información sobre·PhotoPrintÃngulo de inicio:Arriba:Transfiriendo imágenes...UnidadesUnidades:H:H:Aviso:·La imagen tiene ya un perfil embebido. SI le asignas uno nuevo lo dejarás sin efecto.Ancho:_180·grados_270 grados_90·grados_Añadir imágen_Auto_Auto·Disposición_Ruleta_Borrar·DisposiciónGestión de _color_Cortar_Editar_Efectos_FicheroA_yuda_Imágen_DisposiciónTamaño _Manual_Ninguna_Abrir Preset_Opciones_Pegar_Rutas..._PosterIm_primir_SalirEl_iminar imágen_Rotación_Guardar PresetE_scalado..._Unidadesphotoprint-0.4.2-pre2/pp_mainwindow.h0000644000175000017500000000266611101462351014542 00000000000000#ifndef __PP_MAINWINDOW_H__ #define __PP_MAINWINDOW_H__ #include #include #include #include #include #include #include #include #include "photoprint_state.h" G_BEGIN_DECLS #define PP_MAINWINDOW_TYPE (pp_mainwindow_get_type()) #define PP_MAINWINDOW(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PP_MAINWINDOW_TYPE, pp_MainWindow)) #define PP_MAINWINDOW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PP_MAINWINDOW_TYPE, pp_MainWindowClass)) #define IS_PP_MAINWINDOW(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PP_MAINWINDOW_TYPE)) #define IS_PP_MAINWINDOW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PP_MAINWINDOW_TYPE)) typedef struct _pp_MainWindow pp_MainWindow; typedef struct _pp_MainWindowClass pp_MainWindowClass; struct _pp_MainWindow { GtkWindow window; // GtkWidget *menu; GtkWidget *layout; GtkWidget *vbox; GtkUIManager *uim; PhotoPrint_State *state; char *prevfile; }; struct _pp_MainWindowClass { GtkWindowClass parent_class; void (*changed)(pp_MainWindow *book); void (*startup)(pp_MainWindow *book); void (*initialised)(pp_MainWindow *book); }; GType pp_mainwindow_get_type (void); GtkWidget* pp_mainwindow_new (PhotoPrint_State *state); void pp_mainwindow_refresh(pp_MainWindow *ob); void pp_mainwindow_rebuild(pp_MainWindow *ob); G_END_DECLS #endif /* __PP_MAINWINDOW_H__ */ photoprint-0.4.2-pre2/pp_layout_single_pageview.h0000644000175000017500000000350411101462351017123 00000000000000#ifndef __PP_LAYOUT_SINGLE_PAGEVIEW_H__ #define __PP_LAYOUT_SINGLE_PAGEVIEW_H__ #include #include #include #include #include #include "pixbufthumbnail/egg-pixbuf-thumbnail.h" #include "layout_single.h" #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ #define PP_LAYOUT_SINGLE_PAGEVIEW(obj) GTK_CHECK_CAST (obj, pp_layout_single_pageview_get_type (), pp_Layout_Single_PageView) #define PP_LAYOUT_SINGLE_PAGEVIEW_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, pp_layout_single_pageview_get_type (), pp_Layout_Single_PageViewClass) #define PP_IS_PAGEVIEW(obj) GTK_CHECK_TYPE (obj, pp_layout_single_pageview_get_type ()) typedef struct _pp_Layout_Single_PageView pp_Layout_Single_PageView; typedef struct _pp_Layout_Single_PageViewClass pp_Layout_Single_PageViewClass; struct _pp_Layout_Single_PageView { GtkWidget widget; /* Button currently pressed or 0 if none */ guint8 button; /* ID of update timer, or 0 if none */ guint32 timer; Layout_Single *layout; Layout_Single_ImageInfo *selected; // GList *imagelist; int left, top; int width, height; double scale; }; struct _pp_Layout_Single_PageViewClass { GtkWidgetClass parent_class; void (*changed)(pp_Layout_Single_PageView *pv); void (*reflow)(pp_Layout_Single_PageView *pv); void (*popupmenu)(pp_Layout_Single_PageView *pv); void (*selection_changed)(pp_Layout_Single_PageView *pv); }; GtkWidget* pp_layout_single_pageview_new(Layout_Single *layout); GtkType pp_layout_single_pageview_get_type(void); void pp_layout_single_pageview_set_page(pp_Layout_Single_PageView *pv,int page); void pp_layout_single_pageview_refresh(pp_Layout_Single_PageView *pv); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* __PP_LAYOUT_SINGLE_PAGEVIEW_H__ */ photoprint-0.4.2-pre2/TODO0000644000175000017500000010232611400250502012173 00000000000000URGENT: ~~~~~~~ | Move high-res preview generation to JobQueues. | Fix DeviceLink handling | Fix output profile in export mode. Investigate print job cancellation - multi-page documents seem to create empty jobs for subsequence pages when cancelled. Add alignment options for uncropped mode - Top/Left, Centre, Bottom/Right? | Investigate measurement units for overlap. | Investigate Custom Command box being visible when it shouldn't be. Figure out how best to fetch default margins from the printer. Need to be able to print a range of a multi-page layout. Problem with CUPS PDF printer - all jobs have name "stdin" so each page's PDF overwrites the last one! -> Can we set the document name in postscript comments? Possible via Gutenprint? |Show tile grid in Poster mode | Need to stop it being hidden when high-res previews are drawn. | Perhaps move to a generic pageview instead of an individual one for each layout, and subcontract the grid | rendering to the individual layouts? Then the high-res preview code can call that routine after drawing the | preview to re-instate the grid. | (In fact simply exposed a pageview routine to draw the grid, and called it from the individual layouts, via a | virtual function in the layout superclass. Poster mode - allow tweaking aspect ratio? In fact, allow that for auto and carousel layouts too? Investigate crash if button is held down on spin buttons? Make dimension step size user-selectable. Provide a colour-management bypass option for images. Add more free-form layout mode - to enable 3-up printing of certain sizes - 2 one way, 1 the other. Store directory portion of last-added-file in the preset. (Or add an "Image Path" option to the Paths dialog?) Add crop marks (Support in Auto, Poster and Single layouts) Add cutting lines (Support in Auto, Poster and Single layouts) (Implement these as Layout Capabilities, then place checkmarks in the Layout menu.) Need a more user-friendly colour-management dialog. Instead of checkboxes beside the selectors, would adding a dummy "" option be a better idea? The selector would have to have an "allow none" option. Suggest three pages: Image profiles Default RGB profile : Default CMYK profile : Need an image to represent RGB and CMYK, each of which will be greyed out if there's no profile available. text beneath each one will offer explanation: if no CMYK profile is selected, and the colourspace is set to RGB, should say "CMYK images can only be used if they have an embedded profile." How about ticks and crosses or red and green blobs as bullet points? RGB images * RGB images will print correctly [Default RGB and printer profiles available] * RGB images can be printed but colours depend on the driver [RGB Workflow, no printer profile] * RGB images can be printed but colours depend on the driver [No default RGB profile] (colours will be accurate for images that contain an embedded profile) * RGB images can only be printed if they have an embedded profile [No default RGB profile, CMYK workflow] * RGB images cannot be printed [No default RGB profile, CMYK workflow and no printer profile] CMYK images * CMYK images will print correctly [Default CMYK profile and printer profiles available] * CMYK images can be printed but colours depend on the driver [CMYK Workflow, no printer profile] * CMYK images can be printed but colours depend on the driver [No default CMYK profile, CMYK workflow] (colours will be accurate for images that contain an embedded profile) * CMYK images can only be printed if they have an embedded profile [No default CMYK profile, CMYK workflow] * CMYK images cannot be printed [No default CMYK profile, RGB workflow and no printer profile] Monitor * Images will be displayed correctly * Images will print correctly but display may not be accurate * Images will not be displayed accurately Monitor settings Monitor profile Display mode: Simulate print... Printer settings Print Profile Rendering intent Fallback colour space: RGB / CMYK Add Gamma Correction effect Add support for more detailed cropping rectangle. Sort out problems with certain strings not being collected into the message catalogues. | Add support for the -o options sideband with CUPS lpr. Add some kind of warning that options relying on that sideband are unavailable on Win32. Add a global "Panic" system which will be used instead of throw/catch for global initialisers. (Be careful with initialization though - initialize on first use.) | DONE Allow "supplementary" presets to be loaded without resetting everything - this would allow, for instance, | a special-purpose preset to be loaded for specific layouts, or for profiling. | DONE Create a menu for this purpose - perhaps even make it dynamic. | For this we need a dir tree walker - a class that can step through directories recursively. | Need to sort the contents of each directory though | Need to install supplementary presets in a folder somewhere, and have another searchpath for finding them. Need to sort out resource locations on Win32. Perhaps abstract away the $HOME/.photoprint to something platform specific. Thus instead of specifying "$HOME/.photoprint" as a path, we could use "$PHOTOPRINT_HOME" instead. Add support to the SearchPathHandler for substituting from a list of prefixes. searchpath.AddPrefix("$PHOTOPRINT_HOME","$HOME/.photoprint"); Make SearchPathHandler scan recursively. Need to provide an easy way to install a profile - ideally from the Colour Management dialog. (Resource management in general?) | Win32 installer? Using InstallJammer for now | DONE Need to fix saving of N-up layouts - currently if you set the cell size and save, when you reload the layout comes back in | rows/cols mode and the cells lose their precise size. Need to save the Absolute Mode flag, and padding. | Deadlock with high-res previews (or histogram?) and Poster View. | (Affects n-up layout too) | There's a problem with default print command selection and driver detection - especially | if PhotoPrint's built without libCUPS. The application will probably have to determine | whether the raw flag's needed. Need to detect Gutenprint driver from Foomatic PPDs as well as Gutenprint ones. | DONE Add an ImageSource_Histogram class which will pass through the image data, but record a histogram | as it goes. | The histogram itself will be a separate class owned by the application but passed by reference when | the imagesource is created. | DONE Ideally will generate the histogram data while rendering a high-res preview | - but how to handle notification of completion? | DONE Could be done using mutex - if the histogram display widget tries to obtain the histogram and | fails, it could trigger an idle-handler or a timer, and when that's triggered it tries again. | There's a problem with using the PostScript driver immediately after the Epson driver - certain parameters | aren't being correctly defaulted. (Should now be fixed) Job cancellation isn't working - what's been spooled so far is still being printed. Man page is not being installed at make install time. | FIXED behaviour if a bad file is dropped into PhotoPrint - the currently visible image vanishes and becomes | unselectable until you flip to another page or adjust the layout. | FIXED segfault if a file with .jpg filename isn't in fact a JPEG. | FIXED segfault when swapping between print preview modes. Stale CMSTransform | in high-res preview thread? | FIXED DEADLOCK with high-res previews and Set Colour Profile dialog. | On some systems the -oraw flag is being added to the print command even when | using the Postscript driver. - Should now be fixed. Have a segfault problem in certain circumstances - something to do with multiple pages, deleting images and the rendering threads? Possibly fixed by the deadlock fix above. | DONE Can anything to be done to make rotation operations cancellable? Add some kind of "TestCancel" | callback function to the imagesource, perhaps? It need only be used for lengthy operations | such as rotation. | Fix image handling regressions - due to the DeviceN work? | Alpha-related. Make "sense" of alpha channel consistent throughout. | Need to make Set Image Profile... grey out if there are no selected images. | Next best thing - a warning dialog | Add a way of specifying an absolute size in n-up mode. | Use a combobox to switch between modes | rows/cols mode is the existing mode | Specify size will automatically set the number of rows and columns | depending on the size chosen | The signature class will have to have an extra margin parameter for each | dimension - "padding"? We don't want to have to overwrite the existing margins | simply to accommodate an image size that will only fit 1-up. | (Signature class could do with renaming - it has very little to do with | traditional book-page-layout signatures now!) | Need to update when the page size and margin changes. (Happens automatically - just need to call | the correct Recalc function!) | Need to check the new cellsize after setting it - if it's less than we asked for, we need to set the widget to the new size. | Fix path of NetPBM header (Which distros does this afflict? Not needed for Ubuntu 8.10) | Fix left/top margin for Single layout... | Fix margins in Carousel mode. | Margins are not saved in Single or Poster layout | They are saved in Carousel mode, but ignored! | Fix margins in export mode for n-up layout - currently right and bottom margins are ignored. If a background image is set, maybe save it in the preset file? Allow storage of settings from JPEG and TIFF export dialogs in the preset file. Link X and Y scale in Manual Mode. Sort out form-length issue in roll-feed mode. Add support for printing with black ink only. Support landscape view of the page. Use a CMS Transform to convert CMYK -> RGB in pixbuf_from_imagesource(). Create a new widget with buttons to adjust orientation and flipping Create mirroring imagesources. Look at using librsvg to deal with SVG files. How can we find the "natural" dimensions of an SVG file? Find a more elegant solution for scaling ImageSources. Should they have a "scalable" flag, and perhaps a ::Scale() function? The latter would have to return a pointer to an ImageSource that would replace the one held by the calling function - perhaps make it a static function? Look at making the border- and background-selection widgets multi-column. Allow use of D-bus for adding images and other functions? The Cropping/Rotation flags aren't currently honoured for dragged'n'dropped files - look at moving DND stuff from pageview to main window, and these flags into the Layout superstructure, so the default values are more easily accessible. Can we separate UI settings and printer/colour settings in any way? | Can we arrange for the rendering subthreads to perform their own cleanup, | so we don't have to wait on them before setting a replacement thread going? | As long as the preview's idle function removes the pointer from the ImageInfo | all should be well. However, it will have to compare the thread pointer before | clearing it. Should be no race condition, since the idle function runs in the | main thread's context. | Fix the background colour when using masks - currently if the BG is | simulated-paper-white, the mask background remains monitor-white. Test and fix, if necessary, custom sizes with PostScript driver. | Custom page sizes are extremely ill-behaved with borderless enabled! | Use finer-grained flushing of previews - no need to flush high-res preview on | selection or page change. | Need to flush on any effectwidget changes, which probably means giving the | effectselector knowledge of Layout_ImageInfo. | (Used a much more elegant solution - Since Layout_ImageInfo inherits from the | EffectHeader, the EffectHeader now has the mutex, not the ImageInfo. | The Obtain() method is then overridden, both by the effectheader and the ImageInfo | so the ImageInfo is able to trap write locks and flush the HRPreview. | Either make PhotoPrint buildable without libtiff/jpeg or fix the configure | script to bail out. | Options from right-click menu aren't being greyed out according to the | Layout Capabilities. FIXED | Create a new widget to show various information about the selected image. | Create an ImageAdjustment Widget which will be a vbox containing Info, | Transformation, Filtering and Masking options in expanders. The layouts will | use an ImageAdjustment_SetCurrentImage(ImageAdjustment *ia,Layout_ImageInfo *ii) | function when an image is selected. (How to deal with multiple images being selected? "Average out" the data - or differentiate between "selected" and "focussed"?) | Fix segfault with 180degree rotation. | Random Access problem again with JPEGs. | Page size seems to be reverting to Letter at startup - fix! | Check for non-existent queues in the preset file, and warn the user. | Also allow the user to select a new queue at this stage. This solves the | problem of sharing presets and profiles when changing the queue causes | the printer settings to be reset to defaults. | Get preview of background working again. | Save the state of the Allow Cropping flag, and rotation controls in | the preset file. This will allow these features to be used in batch | mode. | JPEG export to accompany TIFF export. | Written JPEGSaver routine Need to support CMYK saving | and profile embedding. Need to store JPEG Resolution too | Need to add control for JPEG Quality | Solve translation problem with queue names. For now, use a SetLocale() call. | Ultimately, migrate to CUPS API. | Use the XICC atom to fetch the display profile, if possible. | This really needs an extra entry in the profile selector, and some kind of | well-defined escape-string to refer to the display profile, and function to | return a profile constructed from this atom. | How about a Win32 equivalent, too? Need some way of specifying whether or not a profile selector should include the display profile. | Higher resolution previews? Sepia effect. When a profile is added to the system, PhotoPrint won't recognise it until either it's restarted or the paths change. Can we set up file notifications as part of the SearchPath class? (Or maybe just a "rescan" button in the Profile dialog?) Create a widget to view an ImageSource. Perhaps simply create a pixbuf from the imagesource at 72dpi, and view that in an image widget? Need to deal with scaling and panning... Take a look at GQView's view widget! Migrate all combo widgets to use the new-style gtk_combo_box. (Not until the new-style combo box supports tool-tips properly.) | Add "Overwrite?" dialog to File Save dialog. Need to link enter and the OK button on the file dialog. | Flush thumbnails on loading of a new preset, since the profiles may change. | INTERNATIONALISATION! |Use new-style File Selector (A few instances left of the old one, in certain widgets...) | Tooltips to describe rendering intents? | Fetch embedded profiles from JPEG files... | Proofing? | Display Mode: | "Normal" - Normal source->monitor transform | "Simulate Print" - Proofing transform, using Abs Col intent for proof. | "Simulate Print, Adapt White" - Proofing transform, using Rel Col. | How to support Proofing Transforms in the ProfileManager? | LCMSWrapper needs to sprout support for Proofing Transform, for a start. | But what about DeviceLinks? For now, don't worry, because LCMS doesn't support | proofing with DeviceLinks. Ultimately, one could simply chain an absolute colorimetric transform to the monitor profile onto the end of a multi-profile transform. (Do multi-profile transforms work with devicelinks?) | Create a routine to substitute the home directory in a filename. (Needed for Win32.) | If there's a monitor profile defined, then transform the thumbnails into the | monitor's colourspace. That means opening up the original image through the | ImageSource system to fetch the embedded profile if there is one. | Layout superclass now has a TransformFactory, so the transforms will live as | long as the layout does. | Need a custom IntentSelector widget. | Implement tagging an image with a custom profile. | Need to open the imagesource and warn the user if there's already an | embedded profile, and ask whether they really intend to over-ride it. | Allow images to set the rendering intent too. | The Layouts need to make sure the final imagesource is tagged with the output | profile. (Actually, made the TIFF Export route do this in the finish.) | To do this, we need to add the profile's filename (if known) to the CMSProfile | class, because the TIFFSaver needs the filename to embed the profile - since | it can't access the raw profile through LCMS. | Add two new "virtual" print queues - need "" and "". | Only the second of these is applicable under Win32. | Implement this as a custom widget - a PrintQueueSelector - which handles the | tedious details. | Implement it as a "view" that operates upon the printerqueues object. | Then the printerqueues object will need methods to: | get/set_queuename | get/set_customcommand Add a sensible error message for when the output profile is missing... | Add a sharpen filter of some kind? Add a parametric imagesource for gradients, etc. | Use a HQ Downsample filter for reducing images. FIXME - black stripe on the right hand edge... Investigate Win32 installation techniques - how to detect and use the Windows GTK+ installation? More difficult now GIMP is shipping GTK bundled rather than separately. :( Temporary files: Clipboard pasting, the GS imagesource, remote images fetched by HTTP/FTP all need temporary images to be stored and cleaned up at program exit. Can we use a tracking class, store an instance in a global variable and have it perform cleanup through an atexit() call? What about cleaning up after previous runs? Create GIMP ImageSource for use in plugins. **** Need to be able to specify a PPD file for use with the Gutenprint PostScript driver. **** | Explore the correctness of ImageSource_Promote and the "flavour" of greyscale | ImageSources in general. (Use MinIsWhite for greyscale, to match CMYK?) (Need to add support for indexed BMP and all flavours of PNG - fallback to GDKPixbuf fails for CMYK, non-colour-managed output). Add native PNG loader! | Need to create an stp_file widget - a text entry and file selector button. | (Or perhaps arrange this as a variation on the ProfileSelector widget? Would be | nice to keep this widget in C, though, along with the rest of stpui_widgets.) **** Need to hand off responsibility for loading and saving an stp_vars_t to the STPUI library. | Or perhaps even create *another* library - stpsupport - to handle print queues and loading / saving... Can we use XML, like the print plugin, for this? **** When queried for a queue's PPD, cups returns the path of a temporary file - this filename can't be relied upon to be persistent - thus when saving this parameter in the preset it will be necessary to create a special case, whereby the filename will be checked against the queue's default, and a special "" option will be saved instead of the actual filename. This will, of course, have to be detected upon preset loading, which means the queue name and PPDFile parameter *must* be loaded and saved in the preset before the rest of the printer options. (Need to provide a method for the user to choose a default value...) Might the answer be to make a widget that resembles the profile selector - has the queue's default PPD in the widget, and has an "other..." option to select a different one? | The stpui_widgets support library takes charge of | print queue selection - so some of that will need to be re-implemented in pure C. | Also need to support Win32 printing - using the Gutenprint driver to print Raw data. | Ideally, the printerqueue class will take charge of actually feeding the data to the | print queue. Need to support three different printing methods: | Via the queue | Via a command | Via a file | Need to create a dummy Consumer class to route data through the queue. | Add a menu item somewhere to Select All. | Add an "Edit menu" (Clipboard support? How would it be arranged? URIs or something else?) Can copy or cut be arranged such that if the image has a mask, the masked version is clipped? Pasting images will need to create a temporary file somewhere, and free it when done. (Perhaps build temp filenames with the PID as a root, then delete all temp files with that PID when the app closes?) Use whatever solution we use for temp files for the GS imagesource too. | Improve performance of ProfileSelector widget. | Perhaps the most elegant way of doing this is to have the ProfileManager class build a | list of Profile details, which will then be used to create the widget. | The ProfileManager will need a method to flush and rebuild the list, which will be | called immediately before building a dialog using ProfileSelectors. The result will be | that the expensive operations of scanning the profile paths will only have to be done once, | even if the dialog contains many ProfileSelectors. High priority: ~~~~~~~~~~~~~~ | Dialog for TIFF export: | Filename: ________________ [...] (Need to support including a %d for page number...) | Pages: _________________ (Routine to parse page numbers already built) | Resolution: ______ (Dots per inch - default to 300?) | Colour Profile: [=====profile====|v] (Default to the Default RGB profile | but allow CMYK profiles too...) | Cancel Export | Create a routine to substitute $HOME, or a leading '~' with the user's home directory... Improve the ProfileManager class. Need to be able to get a profile filename for a device class. Autonomous widget for handling the profile settings? Need a "Save" method to store the current settings in the ConfigDB? Or should that be a subclass, a separate entity? Split the ProfileManager into a general section that doesn't use the configdb, and a second section that does. |The TransformFactory needs to support an arbitrary profile (or filename?) as a |target, not just the predefined DeviceClasses. Support the DeviceClass-based behaviour in a subclass? The autonomous widget needs to handle the interaction between the toggle-button and profile selector. Allow the toggle button to be passed in as an argument. The autonomous widget will take the deviceclass as an argument, and automatically fetch its activation state and the default profile from the profilemanager. ***** LONGER TERM: ~~~~~~~~~~~~ Can we reorganise the way the print system works? How about separating the queue-based options and the specific printer options? For each queue have a folder of presets specific to that queue? Printer: [======Queue======|v] [Properties] Preset: [===Option preset===|v] [Save...] Pages: _____________ ***** | Allow a background image to be used in NUp mode; this could allow for some very professional | looking contact sheets. | Add support for drag-n-drop to the ImageSelector widget... Do this only if the ImageSelector has image selection enabled; if it's in display-only mode, ignore drops so the parent widget can catch drops if it wishes. Allow converting RGB and CMYK to GreyScale for the masks. Clean up the n-up layout code so that zero-gutter layouts don't have white stripes between some of the images... | Need some kind of Paths UI for setting profile paths, border paths, etc. | Need to build a specific widget for this. | Create a list box, and a pair of buttons. | Widget needs to be able to dissolve a "PATH1:PATH2:PATH3" string into a glist of | paths which can be used in the list box. The list box should be able to rearrange | the order of the paths, and "Add..." and "Remove" buttons are needed too. | DONE - created a widget which operates directly on a SearchPath object. PathEditor can't yet re-arrange the order of the elements. Add code to prune elements from the right hand of the path until it points to a valid directory. | Create a dialog - either using tabs or an OptionMenu. | Paths are needed for: | * ICC Profiles | * Borders / masks | Create an ImageList widget - showing thumbnails in a scrollable list. Again, use | a SearchPath object to find the filenames. | Improve user interface for profile selection. Need the following features: | Create a profile selection widget that builds a combo from the profile manager, | with a box to the right that will allow an arbitrary file to be selected. | Need to be able to select a profile for: | * Default RGB colour space | * Default CMYK colour space * TIFF Export profile **** Use the Default RGB profile for TIFF Export, but allow a different one (RGB or CMYK) to be specified at export time. * Monitor profile | * Printer profile TIFF export needs some options: Page number (range) to be exported. Output resolution. Colour profile to use: (Screen, Printer, custom...) (Embedd colour profile?) -- ProfileManager: Try and separate out the INIDB code - will make re-using the ProfileManager much easier. | Need to be able to build a list of profiles from the various paths, and show a warning if there are any repeats. -- Add support for heredoc to the Config code - i.e. Keyword = << ... EOHD This will allow embedding XML code in the presets for curves. -- Scale and crop to specific aspect ratios? -- Add a list of preset paper sizes for poster printing... This will need a paper-size class - one that maintains a list (glist) of paper sizes. Probably best to create a generic non-glist-based class first, then a subclass that builds a client-owned glist according to filters? MatchPagesizes... PAGESIZES_ALL PAGESIZES_COMMON PAGESIZES_EUROPEAN PAGESIZES_AMERICAN -- DCRaw import? -- Postscript backend (PPD-based options instead of gutenprint options?) -- Print dialog with page numbers, etc. |routine to parse a page number description string |1,4-5,7 etc. -- Pull as much as possible out of the specific layout classes into the general layout superclass. Perhaps split into several source files for different aspects (ui, print, etc) Keep in mind the possibility of the current layouts becoming page elements in the future. (Can they be separated out enough to be done as plugins?) -- Add a dialog for setting rendering resolution -- Print preview widget: Need a widget to display a portion of a pixbuf. The pixbuf will typically be rendered at 72dpi or similar. Must be able to pan around, and perhaps zoom in. The print preview process must do a colour-managed proof. -- // Masking: // This function will be called immediately prior to rendering the preview, in layout_*.cpp. | New mode: Carousel | In this mode, a circle of images will be overlaid and stitched together in a manner suitable | for printing on a CD. | * Makes heavy use of masks, so the preview will have to be re-rendered every time an image | is added. | * Might need a progress display. Needs a control panel to set: | * overlap size (%) | * rotation offset (degrees) | * Get ImageInfo by coordinates. * Move image forward / backward in list. Need an interface for cropping images. Need to store coordinates. (Will we need to crop twice? Or can the rectangle class take into account a previous crop?) | Or for now, just perform the minimum crop necessary, and store an H/V panning value? Can the image view be separated out so that the poster and n-up pageviews both place imageview widgets on their pages instead of handling items themselves? The imageview widgets will be responsible for constructing the context menus, which will provide the following facilities: (High priority) Set profile. Add a menu item for applying masks. Set rotation -> submenu: Automatic 0 90 180 270 Allow cropping (It must be possible to grey-out any of these options that are inappropraite for a particular image.) Allow saving of "projects" - lists of files, positions, orientations, clip flags, profiles, etc. -- Read up on Pango / text functions. -- PhotoPrint Options: Colour Management options: Move the rough-cast profile generation facility out into a standalone utility, that can be used to generate an ICC profile from the user's settings. (Long term: perhaps make a custom widget based on the CIE diagram?) Colour Temperature (Degrees K) [ ] Add support for Curves Selection of Print queue: DONE: Need to improve selection of printer queue, etc., similar to how the Print plugin handles it. Allow saving to a file (Ignore this case for now; any user advanced enough to need to print to a file should be quite capable of prefixing the filename with cat > ) (Perhaps add TCP/IP support too) Lower priority: ~~~~~~~~~~~~~~~ PNG Support Direct PNG support will make it possible to extract embedded profiles, and fetching of 16-bit data. (GdkPixbuf has some provision for 16-bit data - how far has it got?) PostScript / PDF loader Add an imagesource for loading a PS file. This will have to use GhostScript to generate a temporary image in /tmp, that will be deleted when the imagesource is disposed. (Resolution to use? 360dpi as a default.) Pixbuf thumbnail code can't currently deal with PS/PDF, so we'll need the ImageSource->pixbuf converter. (Just convert first page for now?) Add some sort of sanity check to the option parsing code; parsing a binary file causes garbage to be printed as the code objects to the nonsense strings. Create a BoilerPlate section to go at the head of the configuration file, which will include the program's version string, and a version number readable by the INI code. Layout_NUp class: Allow dropping an image directly into a particular cell. Make the cells a drag'n'drop source, so images can be rearranged on the page. pp_Layout_NUp widget: Assign ICC profile Remove ICC profile (Only active if profile has been manually assigned) Layout_Poster class: DONE: Need to set individual page dimensions (+ margins) DONE: Need to set poster dimensions + overlap. DONE: Provide widgets allowing the number of pages horizontally and vertically to be set DONE: Provide a final dimension widget; adjusting this will automatically set the H/V page counts, while adjusting the H/V page counts will automatically set this to the largest size possible with the specified pages. The poster class will include a pageextent taken from the printer, and will maintain its own paper_width / paper_height from the number of tiles in each direction. Also needed are image_width and image_height; if the number of tiles is manually adjusted then the image size can be set to the maximum possible; image_width = imageablewidth*ht - (ht-1)*hoverlap; image_height = imageableheight*vt - (vt-1)*voverlap; ht=(image_width-hoverlap)/(imageablewidth-hoverlap)+0.999; vt=(image_width-hoverlap)/(imageablewidth-voverlap)+0.999; Need to find the coordinates of each section of the image for cropping: left=h*(imageablewidth-hoverlap); right=(h+1)*imageablewidth-h*hoverlap; top=v*(imageableheight-voverlap); bottom=(v+1)*imageableheight-v*voverlap; Then scale to imagesource coordinates. PrinterSelector: Need to find some way of grouping the Epson printers - the list is ridiculously long now! Printer Settings: Need a "Defaults" button on each page of the optionbook to reset to defaults. Long term: ~~~~~~~~~~ Investigate ways of generating an image containing text; this would allow filenames to be printed on a contact sheet. Perhaps add the ability to save an "Album" of images; HTML and PS/PDF export would be nice. ----------------------- Longer term - more generalised page model: Allow the creation of Page Templates to replace the current n-up page model. The page class would maintain a list of image "slots", which would be filled one by one as the user adds images. This must not conflict with the placing of images at their natural size, or poster printing. Need support for the following: * Placing images one by one into multiple pre-defined rectangular slots. * Adjusting the layout of such slots on the fly. (Perhaps a word-table-style selector?) * Placing images in a more freeform manner. * Placing images into an image "carousel" (Objects that adjust their layout to accommodate n images, up to a maximum) The N-up layout could be implemented in the same way - but what to do about displaced images if the number of cells is reduced? * Text objects. (Find a way to render a bitmap text object) * Poster printing. (Page setup option?) * Moving objects forward or backwards. * All this must be accessible without becoming significantly more clumsy than the current system. Does all this really belong in PhotoPrint at all - should PhotoPrint be a more minimalist program? It already fills its niche well. Perhaps start a new project, side-by-side and see how this stuff pans out. Begin with a generic page layout system, with just moving empty boxes around, with support for resizing, moving, snapping to guides, highlighting, etc. Need a file format for storing preset layouts. Each of the element types from photoprint-traditional could be implemented as a particular type of object in PhotoPrintNG; a control panel for each type could appear in the right hand panel where they already appear; all that would change is the panel would change as the user clicks on different types of objects. * Single image. H/V Scale (defaults to natural size) * n-up image table Rows/Columns Gutters * Image carousel Overlap Rotation * Text box Font Colour photoprint-0.4.2-pre2/pp_sigcontrol.h0000644000175000017500000000307611221653750014555 00000000000000#ifndef __PP_SIGCONTROL_H__ #define __PP_SIGCONTROL_H__ #include #include #include #include #include #include #include #include #include #include "stpui_widgets/units.h" #include "layout_nup.h" G_BEGIN_DECLS #define PP_SIGCONTROL_TYPE (pp_sigcontrol_get_type()) #define PP_SIGCONTROL(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PP_SIGCONTROL_TYPE, pp_SigControl)) #define PP_SIGCONTROL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PP_SIGCONTROL_TYPE, pp_SigControlClass)) #define IS_PP_SIGCONTROL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PP_SIGCONTROL_TYPE)) #define IS_PP_SIGCONTROL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PP_SIGCONTROL_TYPE)) typedef struct _pp_SigControl pp_SigControl; typedef struct _pp_SigControlClass pp_SigControlClass; struct _pp_SigControl { GtkExpander box; GtkWidget *vbox; GtkWidget *combo; GtkWidget *table; GtkWidget *rows; GtkWidget *cols; GtkWidget *hgutter; GtkWidget *vgutter; GtkWidget *width; GtkWidget *height; enum Units unit; Layout_NUp *sig; }; struct _pp_SigControlClass { GtkExpanderClass parent_class; void (*changed)(pp_SigControl *sig); void (*reflow)(pp_SigControl *sig); }; GType pp_sigcontrol_get_type (void); GtkWidget* pp_sigcontrol_new (Layout_NUp *sig,enum Units unit=UNIT_POINTS); void pp_sigcontrol_refresh(pp_SigControl *ob); void pp_sigcontrol_set_unit(pp_SigControl *ob,enum Units unit); G_END_DECLS #endif /* __PP_SIGCONTROL_H__ */ photoprint-0.4.2-pre2/pp_sigcontrol.cpp0000644000175000017500000003025711266364401015112 00000000000000#include #include #include #include #include #include "stpui_widgets/dimension.h" #include "support/signature.h" #include "support/debug.h" #include "miscwidgets/simplecombo.h" #include "pp_pageextent.h" #include "photoprint_state.h" #include "pp_sigcontrol.h" #include "config.h" #include "gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) enum { CHANGED_SIGNAL, REFLOW_SIGNAL, LAST_SIGNAL }; static guint pp_sigcontrol_signals[LAST_SIGNAL] = { 0 }; static void pp_sigcontrol_class_init (pp_SigControlClass *klass); static void pp_sigcontrol_init (pp_SigControl *stpuicombo); static void rows_changed(GtkWidget *wid,gpointer ob) { Debug[TRACE] << "In rows_changed" << endl; pp_SigControl *lo=(pp_SigControl *)ob; Signature *sig=lo->sig; GtkSpinButton *spin=GTK_SPIN_BUTTON(wid); int v=gtk_spin_button_get_value_as_int(spin); Debug[TRACE] << " got value: " << v << endl; sig->SetRows(v); g_signal_emit(G_OBJECT (ob),pp_sigcontrol_signals[CHANGED_SIGNAL], 0); g_signal_emit(G_OBJECT (ob),pp_sigcontrol_signals[REFLOW_SIGNAL], 0); } static void cols_changed(GtkWidget *wid,gpointer ob) { Debug[TRACE] << "In cols_changed" << endl; pp_SigControl *lo=(pp_SigControl *)ob; Signature *sig=lo->sig; GtkSpinButton *spin=GTK_SPIN_BUTTON(wid); int v=gtk_spin_button_get_value_as_int(spin); Debug[TRACE] << " got value: " << v << endl; sig->SetColumns(v); g_signal_emit(G_OBJECT (ob),pp_sigcontrol_signals[CHANGED_SIGNAL], 0); g_signal_emit(G_OBJECT (ob),pp_sigcontrol_signals[REFLOW_SIGNAL], 0); } static void hgutter_changed(GtkWidget *wid,gpointer ob) { Debug[TRACE] << "In hgutter_changed" << endl; pp_SigControl *lo=(pp_SigControl *)ob; Signature *sig=lo->sig; int v=int(dimension_get_pt(DIMENSION(wid))); Debug[TRACE] << " got value: " << v << endl; sig->SetHGutter(v); g_signal_emit(G_OBJECT (ob),pp_sigcontrol_signals[CHANGED_SIGNAL], 0); } static void vgutter_changed(GtkWidget *wid,gpointer ob) { Debug[TRACE] << "In vgutter_changed" << endl; pp_SigControl *lo=(pp_SigControl *)ob; Signature *sig=lo->sig; int v=int(dimension_get_pt(DIMENSION(wid))); Debug[TRACE] << " got value: " << v << endl; sig->SetVGutter(v); g_signal_emit(G_OBJECT (ob),pp_sigcontrol_signals[CHANGED_SIGNAL], 0); } static void width_changed(GtkWidget *wid,gpointer ob) { pp_SigControl *lo=(pp_SigControl *)ob; Signature *sig=lo->sig; int v=int(dimension_get_pt(DIMENSION(wid))); sig->SetCellWidth(v); // Must check the newly set width and adjust the widget if different if(v!=sig->GetCellWidth()) dimension_set_pt(DIMENSION(wid),sig->GetCellWidth()); g_signal_emit(G_OBJECT (ob),pp_sigcontrol_signals[CHANGED_SIGNAL], 0); g_signal_emit(G_OBJECT (ob),pp_sigcontrol_signals[REFLOW_SIGNAL], 0); } static void height_changed(GtkWidget *wid,gpointer ob) { pp_SigControl *lo=(pp_SigControl *)ob; Signature *sig=lo->sig; int v=int(dimension_get_pt(DIMENSION(wid))); sig->SetCellHeight(v); // Must check the newly set width and adjust the widget if different if(v!=sig->GetCellHeight()) dimension_set_pt(DIMENSION(wid),sig->GetCellHeight()); g_signal_emit(G_OBJECT (ob),pp_sigcontrol_signals[CHANGED_SIGNAL], 0); g_signal_emit(G_OBJECT (ob),pp_sigcontrol_signals[REFLOW_SIGNAL], 0); } static void getsizefromimage_clicked(GtkWidget *wid,gpointer ob) { pp_SigControl *lo=(pp_SigControl *)ob; Layout_NUp *sig=lo->sig; LayoutIterator it(*sig); Layout_ImageInfo *ii=it.FirstSelected(); if(ii) { int w=(72.0*ii->GetWidth())/ii->GetXRes(); int h=(72.0*ii->GetHeight())/ii->GetYRes(); Debug[TRACE] << "Natural size is " << w << " x " << h << endl; sig->SetCellWidth(w); sig->SetCellHeight(h); int t=sig->GetRows()*sig->GetColumns(); sig->SetCellWidth(h); sig->SetCellHeight(w); if(t>(sig->GetRows()*sig->GetColumns())) { sig->SetCellWidth(w); sig->SetCellHeight(h); } pp_sigcontrol_refresh(lo); g_signal_emit(G_OBJECT (ob),pp_sigcontrol_signals[CHANGED_SIGNAL], 0); g_signal_emit(G_OBJECT (ob),pp_sigcontrol_signals[REFLOW_SIGNAL], 0); } } void pp_sigcontrol_refresh(pp_SigControl *ob) { if(ob->rows) gtk_spin_button_set_value(GTK_SPIN_BUTTON(ob->rows),ob->sig->GetRows()); if(ob->cols) gtk_spin_button_set_value(GTK_SPIN_BUTTON(ob->cols),ob->sig->GetColumns()); Debug[TRACE] << "Refreshing gutters" << endl; if(ob->hgutter) dimension_set_pt(DIMENSION(ob->hgutter),ob->sig->GetHGutter()); if(ob->vgutter) dimension_set_pt(DIMENSION(ob->vgutter),ob->sig->GetVGutter()); Debug[TRACE] << "Refresh done" << endl; if(ob->width) { ob->sig->ReCalcByCellSize(); dimension_set_pt(DIMENSION(ob->width),ob->sig->GetCellWidth()); } if(ob->height) dimension_set_pt(DIMENSION(ob->height),ob->sig->GetCellHeight()); } void pp_sigcontrol_set_unit(pp_SigControl *ob,enum Units unit) { ob->unit=unit; if(ob->hgutter) dimension_set_unit(DIMENSION(ob->hgutter),unit); if(ob->vgutter) dimension_set_unit(DIMENSION(ob->vgutter),unit); if(ob->width) dimension_set_unit(DIMENSION(ob->width),unit); if(ob->height) dimension_set_unit(DIMENSION(ob->height),unit); } static void build_rowscols(pp_SigControl *ob) { ob->table=gtk_table_new(4,2,false); gtk_table_set_row_spacings(GTK_TABLE(ob->table),5); gtk_box_pack_start(GTK_BOX(ob->vbox),ob->table,FALSE,FALSE,0); // Columns spin button GtkWidget *label=gtk_label_new(_("Columns:")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_table_attach_defaults(GTK_TABLE(ob->table),GTK_WIDGET(label),0,1,0,1); gtk_widget_show(label); ob->cols=gtk_spin_button_new_with_range(1.0,10.0,1.0); gtk_spin_button_set_value(GTK_SPIN_BUTTON(ob->cols),ob->sig->GetColumns()); g_signal_connect(G_OBJECT(ob->cols),"value-changed",G_CALLBACK(cols_changed),ob); gtk_widget_show(ob->cols); gtk_table_attach_defaults(GTK_TABLE(ob->table),GTK_WIDGET(ob->cols),1,2,0,1); // Rows spin button label=gtk_label_new(_("Rows:")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_table_attach_defaults(GTK_TABLE(ob->table),GTK_WIDGET(label),0,1,1,2); gtk_widget_show(label); ob->rows=gtk_spin_button_new_with_range(1.0,10.0,1.0); gtk_spin_button_set_value(GTK_SPIN_BUTTON(ob->rows),ob->sig->GetRows()); g_signal_connect(G_OBJECT(ob->rows),"value-changed",G_CALLBACK(rows_changed),ob); gtk_widget_show(ob->rows); gtk_table_attach_defaults(GTK_TABLE(ob->table),GTK_WIDGET(ob->rows),1,2,1,2); // HGutter spin button label=gtk_label_new(_("Gap:")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_table_attach_defaults(GTK_TABLE(ob->table),GTK_WIDGET(label),2,3,0,1); gtk_widget_show(label); ob->hgutter=dimension_new(0.0,200.0,ob->unit); dimension_set_pt(DIMENSION(ob->hgutter),ob->sig->GetHGutter()); g_signal_connect(G_OBJECT(ob->hgutter),"value-changed",G_CALLBACK(hgutter_changed),ob); gtk_widget_show(ob->hgutter); gtk_table_attach_defaults(GTK_TABLE(ob->table),GTK_WIDGET(ob->hgutter),3,4,0,1); // VGutter spin button label=gtk_label_new(_("Gap:")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_table_attach_defaults(GTK_TABLE(ob->table),GTK_WIDGET(label),2,3,1,2); gtk_widget_show(label); ob->vgutter=dimension_new(0.0,200.0,ob->unit); dimension_set_pt(DIMENSION(ob->vgutter),ob->sig->GetVGutter()); g_signal_connect(G_OBJECT(ob->vgutter),"value-changed",G_CALLBACK(vgutter_changed),ob); gtk_widget_show(ob->vgutter); gtk_table_attach_defaults(GTK_TABLE(ob->table),GTK_WIDGET(ob->vgutter),3,4,1,2); gtk_widget_show(ob->table); } static void build_dimensions(pp_SigControl *ob) { ob->table=gtk_table_new(4,2,false); gtk_table_set_row_spacings(GTK_TABLE(ob->table),5); gtk_box_pack_start(GTK_BOX(ob->vbox),ob->table,FALSE,FALSE,0); // Width GtkWidget *label=gtk_label_new(_("Width:")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_table_attach_defaults(GTK_TABLE(ob->table),GTK_WIDGET(label),0,1,0,1); gtk_widget_show(label); ob->width=dimension_new(0.0,10000.0,ob->unit); dimension_set_pt(DIMENSION(ob->width),ob->sig->GetCellWidth()); g_signal_connect(G_OBJECT(ob->width),"value-changed",G_CALLBACK(width_changed),ob); gtk_widget_show(ob->width); gtk_table_attach_defaults(GTK_TABLE(ob->table),GTK_WIDGET(ob->width),1,2,0,1); // Height label=gtk_label_new(_("Height:")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_table_attach_defaults(GTK_TABLE(ob->table),GTK_WIDGET(label),2,3,0,1); gtk_widget_show(label); ob->height=dimension_new(0.0,10000.0,ob->unit); dimension_set_pt(DIMENSION(ob->height),ob->sig->GetCellHeight()); g_signal_connect(G_OBJECT(ob->height),"value-changed",G_CALLBACK(height_changed),ob); gtk_widget_show(ob->height); gtk_table_attach_defaults(GTK_TABLE(ob->table),GTK_WIDGET(ob->height),3,4,0,1); GtkWidget *tmp=gtk_button_new_with_label(_("From selected image")); g_signal_connect(G_OBJECT(tmp),"clicked",G_CALLBACK(getsizefromimage_clicked),ob); gtk_table_attach_defaults(GTK_TABLE(ob->table),GTK_WIDGET(tmp),0,4,1,2); gtk_widget_show(tmp); gtk_widget_show(ob->table); } // Combo changed will clean up any existing widgets and build // a new table of widgets suitable for the selected mode. static void combo_changed(GtkWidget *wid,gpointer userdata) { pp_SigControl *ob=(pp_SigControl *)userdata; if(ob->table) gtk_widget_destroy(ob->table); ob->table=NULL; ob->rows=NULL; ob->cols=NULL; ob->hgutter=NULL; ob->vgutter=NULL; const char *sel=simplecombo_get(SIMPLECOMBO(ob->combo)); if(strcmp(sel,"RowsCols")==0) { build_rowscols(ob); } else if(strcmp(sel,"Dimensions")==0) { build_dimensions(ob); } } static void expander_callback (GObject *object, GParamSpec *param_spec, gpointer userdata) { pp_SigControl *ob=PP_SIGCONTROL(object); ob->sig->state.SetInt("ExpanderState_SigControl",gtk_expander_get_expanded (GTK_EXPANDER(ob))); } GtkWidget* pp_sigcontrol_new (Layout_NUp *sig,enum Units unit) { pp_SigControl *ob=PP_SIGCONTROL(g_object_new (pp_sigcontrol_get_type (), NULL)); // gtk_box_set_spacing(GTK_BOX(ob),5); ob->sig=sig; ob->unit=unit; ob->vbox=gtk_vbox_new(FALSE,0); gtk_container_add(GTK_CONTAINER(ob),ob->vbox); gtk_widget_show(ob->vbox); // Layout frame gtk_expander_set_expanded(GTK_EXPANDER(ob),sig->state.FindInt("ExpanderState_SigControl")); g_signal_connect(ob, "notify::expanded",G_CALLBACK (expander_callback), NULL); gtk_expander_set_label(GTK_EXPANDER(ob),_("Layout")); SimpleComboOptions comboopts; comboopts.Add("RowsCols",_("Specify rows/columns")); comboopts.Add("Dimensions",_("Specify image dimensions")); ob->combo=simplecombo_new(comboopts); if(sig->GetAbsolute()) simplecombo_set(SIMPLECOMBO(ob->combo),"Dimensions"); gtk_box_pack_start(GTK_BOX(ob->vbox),ob->combo,FALSE,FALSE,8); g_signal_connect(G_OBJECT(ob->combo),"changed",G_CALLBACK(combo_changed),ob); gtk_widget_show(ob->combo); combo_changed(ob->combo,ob); pp_sigcontrol_refresh(ob); return(GTK_WIDGET(ob)); } GType pp_sigcontrol_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo pp_sigcontrol_info = { sizeof (pp_SigControlClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) pp_sigcontrol_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (pp_SigControl), 0, (GInstanceInitFunc) pp_sigcontrol_init, }; stpuic_type = g_type_register_static (GTK_TYPE_EXPANDER, "pp_SigControl", &pp_sigcontrol_info, (GTypeFlags)0); } return stpuic_type; } static void pp_sigcontrol_class_init (pp_SigControlClass *klass) { pp_sigcontrol_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (klass), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_SigControlClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); pp_sigcontrol_signals[REFLOW_SIGNAL] = g_signal_new ("reflow", G_TYPE_FROM_CLASS (klass), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_SigControlClass, reflow), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void pp_sigcontrol_init (pp_SigControl *ob) { ob->sig=NULL; } int pp_sigcontrol_get_expander_state(pp_SigControl *ob) { int result=0; if(gtk_expander_get_expanded(GTK_EXPANDER(ob))) result=1; return(result); } void pp_sigcontrol_set_expander_state(pp_SigControl *ob,int state) { gtk_expander_set_expanded(GTK_EXPANDER(ob),state!=0); } photoprint-0.4.2-pre2/pp_menu_edit.cpp0000644000175000017500000000422611306464255014700 00000000000000#include #include #include #include "pp_menu_edit.h" #include "pp_mainwindow.h" #include "dialogs.h" #include "miscwidgets/generaldialogs.h" #include "progressbar.h" #include "config.h" #include "gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) using namespace std; static void edit_selectall(GtkAction *action,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; mw->state->layout->SelectAll(); pp_mainwindow_refresh(mw); } static void edit_selectnone(GtkAction *action,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; mw->state->layout->SelectNone(); pp_mainwindow_refresh(mw); } static GtkActionEntry editmenu_entries[] = { { "EditMenu", NULL, N_("_Edit") }, { "SelectAll", NULL, N_("Select _All"), "A", N_("Select all images"), G_CALLBACK(edit_selectall) }, { "SelectNone", NULL, N_("Select _None"), NULL, N_("Deselect all images"), G_CALLBACK(edit_selectnone) }, { "Cut", GTK_STOCK_CUT, N_("_Cut"), "X", N_("Cut the current image to the clipboard"), NULL }, { "Copy", GTK_STOCK_COPY, N_("C_opy"), "C", N_("Copy the current image to the clipboard"), NULL }, { "Paste", GTK_STOCK_PASTE, N_("_Paste"), "V", N_("Paste the contents of the clipboard as a new image"), NULL }, }; static const char *editmenu_ui_description = "" " " " " " " " " " " " " " " " " " " " " ""; void BuildEditMenu(void *userdata,GtkUIManager *ui_manager) { GError *error=NULL; GtkActionGroup *action_group; action_group = gtk_action_group_new ("EditMenuActions"); gtk_action_group_set_translation_domain(action_group,PACKAGE); gtk_action_group_add_actions (action_group, editmenu_entries, G_N_ELEMENTS (editmenu_entries), userdata); gtk_ui_manager_insert_action_group (ui_manager, action_group, 0); if (!gtk_ui_manager_add_ui_from_string (ui_manager, editmenu_ui_description, -1, &error)) throw error->message; } photoprint-0.4.2-pre2/shortcuts/0000777000175000017500000000000011400250525013626 500000000000000photoprint-0.4.2-pre2/shortcuts/Letter-8x6-1up.preset0000644000175000017500000000047011246275440017367 00000000000000[Shortcut] #_("Letter - 8x6, 1-up") DisplayName=Letter - 8x6, 1-up [Layout_NUp] Rows=1 Columns=1 HGutter=0 VGutter=36 LeftMargin=18 RightMargin=18 TopMargin=18 BottomMargin=36 CellWidth=576 CellHeight=432 AbsoluteMode=1 [Layout] LayoutType=NUp [Print] PageSize=Letter FullBleed=0 [General] PresetVersion=41 photoprint-0.4.2-pre2/shortcuts/A4-8x6-1up.preset0000644000175000017500000000045411246275404016376 00000000000000[Shortcut] #_("A4 - 8x6, 1-up") DisplayName=A4 - 8x6, 1-up [Layout_NUp] Rows=1 Columns=1 HGutter=0 VGutter=36 LeftMargin=14 RightMargin=14 TopMargin=36 BottomMargin=36 CellWidth=576 CellHeight=432 AbsoluteMode=1 [Layout] LayoutType=NUp [Print] PageSize=A4 FullBleed=1 [General] PresetVersion=41 photoprint-0.4.2-pre2/shortcuts/LetterProfiling.preset0000644000175000017500000000125711246724257020124 00000000000000[Shortcut] #_("Profiling Defaults - Letter") DisplayName=Profiling Defaults - Letter #_("Disables borderless mode, sets Colour Correction to 'Uncorrected', disabled existing printer profile and set single layout with zero margins." ToolTip="Disables borderless mode, sets Colour Correction to 'Uncorrected', disabled existing printer profile and set single layout with zero margins." [Layout_Single] LeftMargin=0 RightMargin=0 TopMargin=0 BottomMargin=0 [Layout] LayoutType=Single AllowCropping=0 Rotation=0 [Print] PageSize=Letter FullBleed=0 ColorCorrection=Uncorrected InputImageType=RGB [ColourManagement] PrinterProfileActive=0 [General] PresetVersion=41 PrintColourSpace=RGB photoprint-0.4.2-pre2/shortcuts/Makefile.in0000644000175000017500000003024011400237522015610 00000000000000# Makefile.in generated by automake 1.10.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 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@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@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 = shortcuts DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/scripts/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = SOURCES = DIST_SOURCES = 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 = `echo $$p | sed -e 's|^.*/||'`; am__installdirs = "$(DESTDIR)$(profilingshortcutsdir)" \ "$(DESTDIR)$(sizeshortcutsdir)" profilingshortcutsDATA_INSTALL = $(INSTALL_DATA) sizeshortcutsDATA_INSTALL = $(INSTALL_DATA) DATA = $(profilingshortcuts_DATA) $(sizeshortcuts_DATA) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DSYMUTIL = @DSYMUTIL@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ GDKPIXBUF2_CFLAGS = @GDKPIXBUF2_CFLAGS@ GDKPIXBUF2_LIBS = @GDKPIXBUF2_LIBS@ GETOPT_LIBS = @GETOPT_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIB2_CFLAGS = @GLIB2_CFLAGS@ GLIB2_LIBS = @GLIB2_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GP_CFLAGS = @GP_CFLAGS@ GP_LIBS = @GP_LIBS@ GREP = @GREP@ GTHREAD_CFLAGS = @GTHREAD_CFLAGS@ GTHREAD_LIBS = @GTHREAD_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ JPEG_LIBS = @JPEG_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ LCMS_LIBS = @LCMS_LIBS@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBM_LIBS = @LIBM_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NMEDIT = @NMEDIT@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ POSUB = @POSUB@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ TIFF_LIBS = @TIFF_LIBS@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ 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@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ 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@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ sizeshortcutsdir = $(datadir)/photoprint/shortcuts/size profilingshortcutsdir = $(datadir)/photoprint/shortcuts/profiling sizeshortcuts_DATA = \ A4-10x8-1up.preset Letter-8x6-1up.preset \ A4-7x5-2up.preset Letter-10x8-1up.preset \ A4-8x6-1up.preset Letter-7x5-2up.preset profilingshortcuts_DATA = \ A4Profiling.preset LetterProfiling.preset EXTRA_DIST = \ A4-10x8-1up.preset Letter-8x6-1up.preset \ A4-7x5-2up.preset Letter-10x8-1up.preset \ A4-8x6-1up.preset Letter-7x5-2up.preset \ A4Profiling.preset LetterProfiling.preset all: all-am .SUFFIXES: $(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 \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign shortcuts/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign shortcuts/Makefile .PRECIOUS: 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 mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-profilingshortcutsDATA: $(profilingshortcuts_DATA) @$(NORMAL_INSTALL) test -z "$(profilingshortcutsdir)" || $(MKDIR_P) "$(DESTDIR)$(profilingshortcutsdir)" @list='$(profilingshortcuts_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ echo " $(profilingshortcutsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(profilingshortcutsdir)/$$f'"; \ $(profilingshortcutsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(profilingshortcutsdir)/$$f"; \ done uninstall-profilingshortcutsDATA: @$(NORMAL_UNINSTALL) @list='$(profilingshortcuts_DATA)'; for p in $$list; do \ f=$(am__strip_dir) \ echo " rm -f '$(DESTDIR)$(profilingshortcutsdir)/$$f'"; \ rm -f "$(DESTDIR)$(profilingshortcutsdir)/$$f"; \ done install-sizeshortcutsDATA: $(sizeshortcuts_DATA) @$(NORMAL_INSTALL) test -z "$(sizeshortcutsdir)" || $(MKDIR_P) "$(DESTDIR)$(sizeshortcutsdir)" @list='$(sizeshortcuts_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ echo " $(sizeshortcutsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(sizeshortcutsdir)/$$f'"; \ $(sizeshortcutsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(sizeshortcutsdir)/$$f"; \ done uninstall-sizeshortcutsDATA: @$(NORMAL_UNINSTALL) @list='$(sizeshortcuts_DATA)'; for p in $$list; do \ f=$(am__strip_dir) \ echo " rm -f '$(DESTDIR)$(sizeshortcutsdir)/$$f'"; \ rm -f "$(DESTDIR)$(sizeshortcutsdir)/$$f"; \ done tags: TAGS TAGS: ctags: CTAGS CTAGS: 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 $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$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: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(profilingshortcutsdir)" "$(DESTDIR)$(sizeshortcutsdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: 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: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_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-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-profilingshortcutsDATA \ install-sizeshortcutsDATA install-dvi: install-dvi-am 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 installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-profilingshortcutsDATA \ uninstall-sizeshortcutsDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool 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-profilingshortcutsDATA install-ps \ install-ps-am install-sizeshortcutsDATA install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ uninstall-profilingshortcutsDATA uninstall-sizeshortcutsDATA # 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: photoprint-0.4.2-pre2/shortcuts/Letter-10x8-1up.preset0000644000175000017500000000047211246275422017444 00000000000000[Shortcut] #_("Letter - 10x8, 1-up") DisplayName=Letter - 10x8, 1-up [Layout_NUp] Rows=1 Columns=1 HGutter=0 VGutter=36 LeftMargin=18 RightMargin=18 TopMargin=18 BottomMargin=36 CellWidth=576 CellHeight=720 AbsoluteMode=1 [Layout] LayoutType=NUp [Print] PageSize=Letter FullBleed=0 [General] PresetVersion=41 photoprint-0.4.2-pre2/shortcuts/A4-7x5-2up.preset0000644000175000017500000000045411246275340016374 00000000000000[Shortcut] #_("A4 - 7x5, 2-up") DisplayName=A4 - 7x5, 2-up [Layout_NUp] Rows=2 Columns=1 HGutter=0 VGutter=36 LeftMargin=45 RightMargin=45 TopMargin=43 BottomMargin=43 CellWidth=504 CellHeight=360 AbsoluteMode=1 [Layout] LayoutType=NUp [Print] PageSize=A4 FullBleed=0 [General] PresetVersion=41 photoprint-0.4.2-pre2/shortcuts/Letter-7x5-2up.preset0000644000175000017500000000047011246275307017370 00000000000000[Shortcut] #_("Letter - 7x5, 2-up") DisplayName=Letter - 7x5, 2-up [Layout_NUp] Rows=2 Columns=1 HGutter=0 VGutter=36 LeftMargin=36 RightMargin=36 TopMargin=18 BottomMargin=18 CellWidth=504 CellHeight=360 AbsoluteMode=1 [Layout] LayoutType=NUp [Print] PageSize=Letter FullBleed=0 [General] PresetVersion=41 photoprint-0.4.2-pre2/shortcuts/Makefile.am0000644000175000017500000000113711246070634015611 00000000000000## Process this file with automake to produce Makefile.in sizeshortcutsdir = $(datadir)/photoprint/shortcuts/size profilingshortcutsdir = $(datadir)/photoprint/shortcuts/profiling sizeshortcuts_DATA = \ A4-10x8-1up.preset Letter-8x6-1up.preset \ A4-7x5-2up.preset Letter-10x8-1up.preset \ A4-8x6-1up.preset Letter-7x5-2up.preset profilingshortcuts_DATA = \ A4Profiling.preset LetterProfiling.preset EXTRA_DIST = \ A4-10x8-1up.preset Letter-8x6-1up.preset \ A4-7x5-2up.preset Letter-10x8-1up.preset \ A4-8x6-1up.preset Letter-7x5-2up.preset \ A4Profiling.preset LetterProfiling.preset photoprint-0.4.2-pre2/shortcuts/A4Profiling.preset0000644000175000017500000000124311246723547017125 00000000000000[Shortcut] #_("Profiling Defaults - A4") DisplayName=Profiling Defaults - A4 #_("Disables borderless mode, sets Colour Correction to 'Uncorrected', disabled existing printer profile and set single layout with zero margins." ToolTip="Disables borderless mode, sets Colour Correction to 'Uncorrected', disabled existing printer profile and set single layout with zero margins." [Layout_Single] LeftMargin=0 RightMargin=0 TopMargin=0 BottomMargin=0 [Layout] LayoutType=Single AllowCropping=0 Rotation=0 [Print] PageSize=A4 FullBleed=0 ColorCorrection=Uncorrected InputImageType=RGB [ColourManagement] PrinterProfileActive=0 [General] PresetVersion=41 PrintColourSpace=RGB photoprint-0.4.2-pre2/shortcuts/A4-10x8-1up.preset0000644000175000017500000000045611246275333016454 00000000000000[Shortcut] #_("A4 - 10x8, 1-up") DisplayName=A4 - 10x8, 1-up [Layout_NUp] Rows=1 Columns=1 HGutter=0 VGutter=36 LeftMargin=14 RightMargin=14 TopMargin=14 BottomMargin=36 CellWidth=576 CellHeight=720 AbsoluteMode=1 [Layout] LayoutType=NUp [Print] PageSize=A4 FullBleed=1 [General] PresetVersion=41 photoprint-0.4.2-pre2/imagesource/0000777000175000017500000000000011400250524014072 500000000000000photoprint-0.4.2-pre2/imagesource/imagesource_chequerboard.cpp0000644000175000017500000000245511122035666021560 00000000000000/* * imagesource_Chequerboard.cpp - renders a chequerboard pattern. * Supports Random Access * * Copyright (c) 2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include "imagesource_chequerboard.h" ISDataType *ImageSource_Chequerboard::GetRow(int row) { if(currentrow==row) return(rowbuffer); int vphase=(row/size)&1; for(int x=0;xtype=type; this->width=width; this->height=height; this->samplesperpixel=samplesperpixel; randomaccess=true; MakeRowBuffer(); } ImageSource_Chequerboard::~ImageSource_Chequerboard() { } void ImageSource_Chequerboard::SetFG(ISDeviceNValue &col) { fg=col; } void ImageSource_Chequerboard::SetBG(ISDeviceNValue &col) { bg=col; } photoprint-0.4.2-pre2/imagesource/convkernel.h0000644000175000017500000000401111076423574016341 00000000000000// convkernel.h - a virtual superclass defining a convolution kernel interface. // Copyright (C) 2008 by Alastair M. Robinson #ifndef CONVKERNEL #define CONVKERNEL #include class ConvKernel { public: ConvKernel() : width(0), height(0), kernel(NULL) { } ConvKernel(int width,int height) : kernel(NULL) { Initialize(width,height); } // Initialize function allocates and clears the kernel // and sets the width and height fields. Will typically // be called by subclasses' constructors. // This model allows the subclass to calculate the width // and height from some other parameter, such as radius for // a gaussian kernel, before calling this function. virtual void Initialize(int width,int height) { this->width=width; this->height=height; kernel=new float[width*height]; for(int y=0;y0.0) { for(int y=0;y #include #include #include #include "imagesource_solid.h" using namespace std; ImageSource_Solid::~ImageSource_Solid() { } ISDataType *ImageSource_Solid::GetRow(int row) { int i; if(row==currentrow) return(rowbuffer); for(int x=0;xwidth=width; this->height=height; this->type=type; switch(type) { case IS_TYPE_GREY: samplesperpixel=1; break; case IS_TYPE_RGB: samplesperpixel=3; break; case IS_TYPE_CMYK: samplesperpixel=4; break; case IS_TYPE_GREYA: samplesperpixel=2; break; case IS_TYPE_RGBA: samplesperpixel=4; break; case IS_TYPE_CMYKA: samplesperpixel=5; break; default: throw "Solid: Type not supported."; } if(sld) { for(int i=0;i #include "lcmswrapper.h" #include "imagesource.h" using namespace std; ImageSource::ImageSource() : embeddedprofile(NULL), embprofowned(false), rowbuffer(NULL) { type=IS_TYPE_RGB; samplesperpixel=3; randomaccess=false; xres=72.0; yres=72.0; currentrow=-1; } ImageSource::ImageSource(int width, int height, IS_TYPE type) : width(width), height(height), type(type), embeddedprofile(NULL), embprofowned(false), rowbuffer(NULL) { switch(type) { case IS_TYPE_GREY: samplesperpixel=1; break; case IS_TYPE_GREYA: samplesperpixel=2; break; case IS_TYPE_RGB: case IS_TYPE_LAB: samplesperpixel=3; break; case IS_TYPE_CMYK: case IS_TYPE_RGBA: case IS_TYPE_LABA: samplesperpixel=4; break; case IS_TYPE_CMYKA: samplesperpixel=5; break; default: samplesperpixel=0; break; } randomaccess=false; xres=72.0; yres=72.0; currentrow=-1; } ImageSource::ImageSource(ImageSource *src) : embprofowned(false), rowbuffer(NULL) { width=src->width; height=src->height; type=src->type; samplesperpixel=src->samplesperpixel; xres=src->xres; yres=src->yres; randomaccess=src->randomaccess; embeddedprofile=src->embeddedprofile; currentrow=-1; } ImageSource::~ImageSource() { if(rowbuffer) free(rowbuffer); if(embeddedprofile && embprofowned) delete embeddedprofile; } void ImageSource::MakeRowBuffer() { rowbuffer=(ISDataType *)malloc(sizeof(ISDataType)*width*samplesperpixel); currentrow=-1; } void ImageSource::SetResolution(double xr,double yr) { xres=xr; yres=yr; } void ImageSource::SetEmbeddedProfile(CMSProfile *profile,bool owned) { if(embeddedprofile && embprofowned) delete embeddedprofile; embeddedprofile=profile; embprofowned=owned; } photoprint-0.4.2-pre2/imagesource/imagesource_tiff.h0000644000175000017500000000230211076423574017507 00000000000000/* * imagesource_tiff.h - ImageSource loader for TIFF files. * * Supports 8 and 16 bit, * RGB, CMYK and Grey data * Indexed and monochrome files are currently converted to grey. * Supports random access (to the extent that libtiff does, i.e. * depends on the format of the file). * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * * TODO: Support tile-based images * Test with 16-bit CMYK, Grey * Add support for Lab * Add indexed->RGB conversion * */ #ifndef IMAGESOURCE_TIFF_H #define IMAGESOURCE_TIFF_H #include #include "imagesource.h" class IS_TIFFStrip; class ImageSource_TIFF : public ImageSource { public: ImageSource_TIFF(const char *filename); ~ImageSource_TIFF(); ISDataType *GetRow(int row); private: IS_TIFFStrip *GetStrip(int row); IS_TIFFStrip *LoadStrip(int row); int CountTIFFDirs(const char *filename,int &largestdir); int resunit; TIFF *file; int bps,spr; int source_spp; int photometric; long stripsize; int stripheight; int stripcount; int filerow; int greypalette[256]; IS_TIFFStrip *strips; friend class IS_TIFFStrip; }; #endif photoprint-0.4.2-pre2/imagesource/imagesource_devicen_remap.cpp0000644000175000017500000001214311266376773021730 00000000000000/* * imagesource_ncolour_remap.cpp * * Supports DeviceN * Supports random access * * Copyright (c) 2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include "../support/debug.h" #include "imagesource_devicen_remap.h" using namespace std; ImageSource_DeviceN_Remap::~ImageSource_DeviceN_Remap() { if(source) delete source; if(table) free(table); } ISDataType *ImageSource_DeviceN_Remap::GetRow(int row) { if(row==currentrow) return(rowbuffer); // Clear the rowbuffer here, since if the channels are mismatched there may be channels we don't set. for(int x=0;xGetRow(row); // For each pixel we remap each source channel to a channel in the rowbuffer, using the translation table. if(HAS_ALPHA(type)) { for(int x=0;xsamplesperpixel-1;++s) { if(table[s]>-1) rowbuffer[x*samplesperpixel+table[s]]=srcdata[x*source->samplesperpixel+s]; } rowbuffer[x*samplesperpixel+source->samplesperpixel-1]=srcdata[x*samplesperpixel+source->samplesperpixel-1]; } } else { for(int x=0;xsamplesperpixel;++s) { if(table[s]>-1) rowbuffer[x*samplesperpixel+table[s]]=srcdata[x*source->samplesperpixel+s]; } } } currentrow=row; return(rowbuffer); } ImageSource_DeviceN_Remap::ImageSource_DeviceN_Remap(struct ImageSource *source,const int *maptable,int outchannels) : ImageSource(source), source(source) { table=(int *)malloc(sizeof(int)*source->samplesperpixel); if(outchannels) samplesperpixel=outchannels; type=IS_TYPE_DEVICEN; for(int i=0;isamplesperpixel;++i) { table[i]=maptable[i]; if(table[i]>=samplesperpixel) throw "Error: not enough output channels for remapping table"; } MakeRowBuffer(); } // ImageSource_ToDeviceN - "promotes" data from Greyscale, RGB or CMYK to DeviceN // RGB data is inverted. ImageSource_ToDeviceN::ImageSource_ToDeviceN(ImageSource *source) : ImageSource(source), source(source) { if(STRIP_ALPHA(source->type)==IS_TYPE_RGB) { Debug[COMMENT] << "Original image is RGB - inverting as well as re-interpreting..." << endl; MakeRowBuffer(); } type=IS_TYPE_DEVICEN; } ImageSource_ToDeviceN::~ImageSource_ToDeviceN() { if(source) delete source; } ISDataType *ImageSource_ToDeviceN::GetRow(int row) { ISDataType *src=source->GetRow(row); switch(source->type) { case IS_TYPE_RGB: if(row==currentrow) return(rowbuffer); for(int x=0;xGetRow(row); switch(source->type) { case IS_TYPE_RGB: for(int x=0;xGetRow(row)); } photoprint-0.4.2-pre2/imagesource/imagesource_jpeg.cpp0000644000175000017500000001122211330677056020037 00000000000000/* * imagesource_jpeg.cpp * 24-bit RGB and 8-bit Greyscale JPEG scanline-based Loader * Doesn't support Random Access * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include extern "C" { #ifdef WIN32 // Ugly hack to be compatible with the libjpeg62 shipped with GIMP. typedef unsigned char boolean; #define HAVE_BOOLEAN #endif #include #include } #include "../support/debug.h" #include "lcmswrapper.h" #include "iccjpeg.h" #include "imagesource.h" #include "imagesource_jpeg.h" using namespace std; struct ImageSource_JPEG_ErrManager { struct jpeg_error_mgr std; FILE *File; bool FileOwned; }; static void isjpeg_error_exit (j_common_ptr cinfo) { char buffer[JMSG_LENGTH_MAX]; ImageSource_JPEG_ErrManager *myerr = (ImageSource_JPEG_ErrManager *) cinfo->err; cinfo->err->output_message(cinfo); cinfo->err->format_message(cinfo,buffer); Debug[TRACE] << buffer << endl; jpeg_destroy_compress((jpeg_compress_struct *)cinfo); if(myerr->FileOwned) fclose(myerr->File); throw "Error reading JPEG file"; } ImageSource_JPEG::ImageSource_JPEG(const char *filename) : ImageSource(), cinfo(NULL), tmprow(NULL), err(NULL), iccprofbuffer(NULL), started(false) { err=new ImageSource_JPEG_ErrManager; if ((err->File = fopen(filename,"rb")) == NULL) throw "Unable to open file"; err->FileOwned=true; Init(); } ImageSource_JPEG::ImageSource_JPEG(FILE *file) : ImageSource(), cinfo(NULL), tmprow(NULL), err(NULL), iccprofbuffer(NULL), started(false) { err=new ImageSource_JPEG_ErrManager; err->File = file; err->FileOwned=false; Init(); } void ImageSource_JPEG::Init() { cinfo=new jpeg_decompress_struct; /* Initialize the JPEG compression object with default error handling. */ memset(cinfo,0,sizeof(jpeg_decompress_struct)); memset(cinfo,0,sizeof(ImageSource_JPEG_ErrManager)); cinfo->err = jpeg_std_error(&err->std); err->std.error_exit = isjpeg_error_exit; jpeg_create_decompress(cinfo); jpeg_stdio_src(cinfo, err->File); setup_read_icc_profile(cinfo); jpeg_read_header(cinfo,TRUE); width=cinfo->image_width; height=cinfo->image_height; Debug[TRACE] << "JPEG Loader: Have " << cinfo->num_components << " components" << endl; switch(cinfo->num_components) { case 1: type=IS_TYPE_GREY; samplesperpixel=1; break; case 3: type=IS_TYPE_RGB; samplesperpixel=3; break; case 4: type=IS_TYPE_CMYK; samplesperpixel=4; break; default: throw "Only greyscale, RGB and CMYK JPEGs are currently supported"; break; } randomaccess=false; embeddedprofile=NULL; currentrow=-1; switch(cinfo->density_unit) { case 1: xres=cinfo->X_density; yres=cinfo->Y_density; break; case 2: xres=int(2.54*cinfo->X_density); yres=int(2.54*cinfo->Y_density); break; default: xres=yres=72; break; } JOCTET *iccprofile; unsigned int profilelen; if(read_icc_profile(cinfo,&iccprofile,&profilelen)) { iccprofbuffer=(char *)iccprofile; SetEmbeddedProfile(new CMSProfile(iccprofbuffer,profilelen),true); } if(!(tmprow=(unsigned char *)malloc(sizeof(char)*(width*samplesperpixel)))) throw "Can't allocate temp buffer..."; MakeRowBuffer(); } ISDataType *ImageSource_JPEG::GetRow(int row) { int x; JSAMPROW rowptr[1]={0}; if(!started) { jpeg_start_decompress(cinfo); started=true; } if(row==currentrow) return(rowbuffer); if(rowFile && err->FileOwned) fclose(err->File); delete err; } } photoprint-0.4.2-pre2/imagesource/devicencolorant.h0000644000175000017500000000261611365660700017356 00000000000000#ifndef DEVICENCOLORANT_H #define DEVICENCOLORANT_H #include "imagesource.h" class DeviceNColorant; class DeviceNColorantList { public: DeviceNColorantList(); DeviceNColorantList(IS_TYPE type); virtual ~DeviceNColorantList(); virtual int GetColorantCount(); // Find a colorant by name - returns -1 if not found virtual int GetColorantIndex(const char *name); virtual char *GetEnabledColorants(); virtual void SetEnabledColorants(const char *col); virtual DeviceNColorant *FirstColorant(); virtual DeviceNColorant *operator[](int idx); protected: DeviceNColorant *first; friend class DeviceNColorant; }; class DeviceNColorant { public: // If you provide a name but no RGB values the colorant will be filled in if the name is // recognised, and a const char * exception will be thrown if not. DeviceNColorant(DeviceNColorantList &header,const char *name,const char *displayname=NULL); DeviceNColorant(DeviceNColorantList &header,const char *name,const char *displayname,int red,int green,int blue); virtual ~DeviceNColorant(); const char *GetDisplayName(); void Enable(); void Disable(); bool GetEnabled(); virtual DeviceNColorant *NextColorant(); virtual DeviceNColorant *PrevColorant(); virtual const char *GetName(); int red,green,blue; protected: void linknode(); DeviceNColorantList &header; bool enabled; char *name; char *displayname; DeviceNColorant *next,*prev; }; #endif photoprint-0.4.2-pre2/imagesource/imagesource_colorize.h0000644000175000017500000000221311340545525020401 00000000000000#ifndef IMAGESOURCE_COLORIZE_H #define IMAGESOURCE_COLORIZE_H class ImageSource_Colorize : public ImageSource { public: ImageSource_Colorize(ImageSource *src,IS_TYPE type,ISDeviceNValue &colour) : ImageSource(src), src(src), colour(colour) { this->type=type; samplesperpixel=colour.GetChannels(); MakeRowBuffer(); if(STRIP_ALPHA(src->type)!=IS_TYPE_GREY) throw "ImageSource_Colorize currently only supports greyscale input"; currentrow=-1; } ~ImageSource_Colorize() { if(src) delete src; } ISDataType *GetRow(int row) { if(row==currentrow) return(rowbuffer); ISDataType *srcdata=src->GetRow(row); if(HAS_ALPHA(src->type)) { for(int x=0;x #include "../support/debug.h" #include "pixbuf_from_imagesource.h" using namespace std; GdkPixbuf *pixbuf_from_imagesource(ImageSource *is, int redbg8,int greenbg8,int bluebg8,Progress *prog,GdkPixbuf *pb) { if(!is) return(NULL); switch(is->type) { case IS_TYPE_RGB: case IS_TYPE_RGBA: case IS_TYPE_GREY: case IS_TYPE_GREYA: case IS_TYPE_CMYK: break; default: Debug[WARN] << "pixbuf_from_imagesource: unhandled type - bailing out..." << endl; return(NULL); break; } if(pb) { if(gdk_pixbuf_get_width(pb)!=is->width) throw "Pixbuf's dimensions must match that of ImageSource!"; if(gdk_pixbuf_get_height(pb)!=is->height) throw "Pixbuf's dimensions must match that of ImageSource!"; } else { Debug[COMMENT] << "pixbuf_from_imagesource: Converting image of type " << is->type << endl; pb=gdk_pixbuf_new(GDK_COLORSPACE_RGB,FALSE,8,is->width,is->height); } if(pb) { int rowstride=gdk_pixbuf_get_rowstride(pb); unsigned char *pixels=gdk_pixbuf_get_pixels(pb); // Displaying the progress meter can be expensive, // so we only update it often enough to reflect single // percentage steps. int progressmodulo=is->height/100; if(progressmodulo==0) progressmodulo=1; for(int y=0;yheight;++y) { ISDataType *src=is->GetRow(y); switch(is->type) { case IS_TYPE_RGBA: for(int x=0;xwidth;++x) { int a=ISTOEIGHT(src[x*4+3]); pixels[x*3]=(ISTOEIGHT(src[x*4])*a+redbg8*(255-a))/255; pixels[x*3+1]=(ISTOEIGHT(src[x*4+1])*a+greenbg8*(255-a))/255; pixels[x*3+2]=(ISTOEIGHT(src[x*4+2])*a+bluebg8*(255-a))/255; } break; case IS_TYPE_GREYA: for(int x=0;xwidth;++x) { int a=255-ISTOEIGHT(src[x*2+3]); pixels[x*3]=(ISTOEIGHT(IS_SAMPLEMAX-src[x*2])*a+redbg8*(255-a))/255; pixels[x*3+1]=(ISTOEIGHT(IS_SAMPLEMAX-src[x*2])*a+greenbg8*(255-a))/255; pixels[x*3+2]=(ISTOEIGHT(IS_SAMPLEMAX-src[x*2])*a+bluebg8*(255-a))/255; } break; case IS_TYPE_CMYK: for(int x=0;xwidth;++x) { int pc=ISTOEIGHT(src[x*4]); int pm=ISTOEIGHT(src[x*4+1]); int py=ISTOEIGHT(src[x*4+2]); int pk=ISTOEIGHT(src[x*4+3]); int r=(255-pc)-(pk); int g=(255-pm)-(pk); int b=(255-py)-(pk); if(r<0) r=0; if(g<0) g=0; if(b<0) b=0; pixels[x*3]=r; pixels[x*3+1]=g; pixels[x*3+2]=b; } break; case IS_TYPE_RGB: for(int x=0;xwidth*is->samplesperpixel;++x) { pixels[x]=ISTOEIGHT(src[x]); } break; case IS_TYPE_GREY: for(int x=0;xwidth*is->samplesperpixel;++x) { pixels[x*3]=ISTOEIGHT(IS_SAMPLEMAX-src[x]); pixels[x*3+1]=ISTOEIGHT(IS_SAMPLEMAX-src[x]); pixels[x*3+2]=ISTOEIGHT(IS_SAMPLEMAX-src[x]); } break; default: Debug[WARN] << "pixbuf_from_imagesource: Huh? IS type of " << is->type << " should have been rejected already." << endl; g_object_unref(G_OBJECT(pb)); return(NULL); break; } pixels+=rowstride; bool cont=true; if((y%progressmodulo)==0) { if(prog) cont=prog->DoProgress(y,is->height); } if(!cont) { g_object_unref(G_OBJECT(pb)); return(NULL); } } } return(pb); } GdkPixbuf *pixbuf_alpha_from_imagesource(ImageSource *is,Progress *prog,GdkPixbuf *pb) { if(!is) return(NULL); switch(is->type) { case IS_TYPE_RGB: case IS_TYPE_RGBA: case IS_TYPE_GREY: case IS_TYPE_GREYA: case IS_TYPE_CMYK: break; default: Debug[WARN] << "pixbuf_from_imagesource: unhandled type - bailing out..." << endl; return(NULL); break; } if(pb) { if(gdk_pixbuf_get_width(pb)!=is->width) throw "Pixbuf's dimensions must match that of ImageSource!"; if(gdk_pixbuf_get_height(pb)!=is->height) throw "Pixbuf's dimensions must match that of ImageSource!"; } else { Debug[COMMENT] << "pixbuf_from_imagesource: Converting image of type " << is->type << endl; pb=gdk_pixbuf_new(GDK_COLORSPACE_RGB,TRUE,8,is->width,is->height); } if(pb) { int rowstride=gdk_pixbuf_get_rowstride(pb); unsigned char *pixels=gdk_pixbuf_get_pixels(pb); // Displaying the progress meter can be expensive, // so we only update it often enough to reflect single // percentage steps. int progressmodulo=is->height/100; if(progressmodulo==0) progressmodulo=1; for(int y=0;yheight;++y) { ISDataType *src=is->GetRow(y); switch(is->type) { case IS_TYPE_RGBA: for(int x=0;xwidth*is->samplesperpixel;++x) { pixels[x]=ISTOEIGHT(src[x]); } break; case IS_TYPE_GREYA: for(int x=0;xwidth;++x) { pixels[x*4]=ISTOEIGHT(IS_SAMPLEMAX-src[x*2]); pixels[x*4+1]=ISTOEIGHT(IS_SAMPLEMAX-src[x*2]); pixels[x*4+2]=ISTOEIGHT(IS_SAMPLEMAX-src[x*2]); pixels[x*4+3]=ISTOEIGHT(IS_SAMPLEMAX-src[x*2+1]); } break; case IS_TYPE_CMYK: for(int x=0;xwidth;++x) { int pc=ISTOEIGHT(src[x*4]); int pm=ISTOEIGHT(src[x*4+1]); int py=ISTOEIGHT(src[x*4+2]); int pk=ISTOEIGHT(src[x*4+3]); int r=(255-pc)-(pk); int g=(255-pm)-(pk); int b=(255-py)-(pk); if(r<0) r=0; if(g<0) g=0; if(b<0) b=0; pixels[x*4]=r; pixels[x*4+1]=g; pixels[x*4+2]=b; pixels[x*4+3]=255; } break; case IS_TYPE_RGB: for(int x=0;xwidth;++x) { pixels[x*4]=ISTOEIGHT(src[x*3]); pixels[x*4+1]=ISTOEIGHT(src[x*3+1]); pixels[x*4+2]=ISTOEIGHT(src[x*3+2]); pixels[x*4+3]=255; } break; case IS_TYPE_GREY: for(int x=0;xwidth*is->samplesperpixel;++x) { pixels[x*4]=ISTOEIGHT(src[x]); pixels[x*4+1]=ISTOEIGHT(src[x]); pixels[x*4+2]=ISTOEIGHT(src[x]); pixels[x*4+3]=255; } break; default: Debug[WARN] << "pixbuf_from_imagesource: Huh? IS type of " << is->type << " should have been rejected already." << endl; g_object_unref(G_OBJECT(pb)); return(NULL); break; } pixels+=rowstride; bool cont=true; if((y%progressmodulo)==0) { if(prog) cont=prog->DoProgress(y,is->height); } if(!cont) { g_object_unref(G_OBJECT(pb)); return(NULL); } } } return(pb); } photoprint-0.4.2-pre2/imagesource/imagesource_gs.cpp0000644000175000017500000000342611266364051017526 00000000000000/* * imagesource_gs.cpp * 24-bit RGB and 8-bit Greyscale Loader for PS / PDF * Delegates actual loading to ImageSource_TIFF * * Copyright (c) 2005 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * * */ #include #include #include #include #include "imagesource_gs.h" using namespace std; ImageSource_GS::~ImageSource_GS() { if(tiffname) { remove(tiffname); free(tiffname); } } #define OFFSET(pb, x, y) ((x) * (gdk_pixbuf_get_n_channels(pb)) + (y) * gdk_pixbuf_get_rowstride(pb)) ISDataType *ImageSource_GS::GetRow(int row) { if(source) return(source->GetRow(row)); else return(NULL); } ImageSource_GS::ImageSource_GS(const char *filename,int resolution) : ImageSource(), tiffname(NULL) { // Create temporary name tiffname=tempnam(NULL,"phopr"); // Build GS Command line const char *gscmd="gs -r%dx%d -sDEVICE=tiff24nc -sOutputFile=%s -dFirstPage=1 -dLastPage=1 -dBATCH -dNOPAUSE %s"; if(resolution>2400) resolution=2400; int l=strlen(gscmd)+strlen(tiffname)+strlen(filename)+8; char *cmd=(char *)malloc(l); if(!cmd) throw "Can't create GhostScript command line!"; snprintf(cmd,l,gscmd,resolution,resolution,tiffname,filename); // Execute command if(system(cmd)!=0) throw "Ghostscript call failed"; // Free command free(cmd); // Create imagesource from temporary TIFF file source=new ImageSource_TIFF(tiffname); // Copy details from source to this. width=source->width; height=source->height; xres=source->xres; yres=source->yres; // embeddedprofile=source->embeddedprofile; // FIXME: Steal this? Copy it? type=source->type; samplesperpixel=source->samplesperpixel; randomaccess=source->randomaccess; } photoprint-0.4.2-pre2/imagesource/imagesource_crop.cpp0000644000175000017500000000346611221456551020062 00000000000000/* * imagesource_crop.cpp * * Supports Greyscale, RGB and CMYK data * Supports random access * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include "imagesource_crop.h" using namespace std; ImageSource_Crop::~ImageSource_Crop() { if(source) delete source; } ISDataType *ImageSource_Crop::GetRow(int row) { int i; // If random access is not supported, we must loop through the unwanted rows. if(row==0 && source->randomaccess==false) { ISDataType *junk; for(int i=0;iGetRow(i); } } if(row==currentrow) return(rowbuffer); int srcrow=row+yoffset; ISDataType *srcdata=source->GetRow(srcrow); switch(source->samplesperpixel) { case 1: for(i=0;i(source->width-xoffset)) width=source->width-xoffset; if(height>(source->height-yoffset)) height=source->height-yoffset; MakeRowBuffer(); } photoprint-0.4.2-pre2/imagesource/imagesource_devicen_remap.h0000644000175000017500000000464111177073707021371 00000000000000/* * imagesource_devicen_remap.h * * Supports DeviceN * Supports random access * * Copyright (c) 2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #ifndef IMAGESOURCE_DEVICEN_REMAP_H #define IMAGESOURCE_DEVICEN_REMAP_H #include "imagesource.h" class ImageSource_DeviceN_Remap : public ImageSource { public: // If outchannels==0, the output will have the same number of channels as the input // The contents of maptable will be copied, so needn't remain valid for the lifetime // of the ImageSource. // // The maptable is an array of int which must have as many entries as the source image // has samples per pixel. The table contains each sample's position in the output pixel, // such that, for example, CMYK input with a map of [1,2,3,0] would become KCMY data. // // If outchannels is provided the destination will have that many samples per pixel, // otherwise, it will be the same as the input image. ImageSource_DeviceN_Remap(ImageSource *source,const int *maptable,int outchannels=0); ~ImageSource_DeviceN_Remap(); ISDataType *GetRow(int row); private: ImageSource *source; int *table; }; // Used to force an ImageSource to DeviceN type - which can't be done automatically // since 4spp Separated space is the only way TIFFs mark CMYK, for instance. // Also inverts RGB data (excluding alpha channel). class ImageSource_ToDeviceN : public ImageSource { public: ImageSource_ToDeviceN(ImageSource *source); ~ImageSource_ToDeviceN(); ISDataType *GetRow(int row); protected: ImageSource *source; }; // Forces an ImageSource from DeviceN to RGB, inverting the data as it goes. // NOTE this *doesn't* remap the channels or downrender to RGB - it merely // re-interprets the data as RGB. // Alpha channel, if present, is not inverted. class ImageSource_DeviceNToRGB : public ImageSource { public: ImageSource_DeviceNToRGB(ImageSource *source); ~ImageSource_DeviceNToRGB(); ISDataType *GetRow(int row); protected: ImageSource *source; }; // Forces an ImageSource from DeviceN to CMYK // NOTE this *doesn't* remap the channels or downrender to CMYK - it merely // re-interprets the data as CMYK. class ImageSource_DeviceNToCMYK : public ImageSource { public: ImageSource_DeviceNToCMYK(ImageSource *source); ~ImageSource_DeviceNToCMYK(); ISDataType *GetRow(int row); protected: ImageSource *source; }; #endif photoprint-0.4.2-pre2/imagesource/imagesource_util.cpp0000644000175000017500000001654111306573114020071 00000000000000#include #include #include "../support/debug.h" #include "imagesource.h" #include "imagesource_jpeg.h" #include "imagesource_tiff.h" #include "imagesource_bmp.h" #include "imagesource_pnm.h" #include "imagesource_gdkpixbuf.h" #include "imagesource_gs.h" #include "imagesource_scale.h" #include "imagesource_downsample.h" #include "imagesource_bilinear.h" #include "imagesource_lanczossinc.h" #include "imagesource_util.h" #include "../config.h" #include "gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) using namespace std; static const IS_ScalingQualityDescription Descriptions[]= { {N_("Automatic"),N_("Selects a scaling algorithm based on scale factor")}, {N_("Fast"),N_("Very fast scaling with no interpolation")}, {N_("Bilinear"),N_("An interpolation filter with mediocre speed and quality")}, {N_("LanczosSinc"),N_("Slow but very high quality interpolation filter")}, {NULL,NULL}, {N_("Downsample"),N_("High quality filter for reductions only")} }; static const char *findextension(const char *filename) { int t=strlen(filename)-1; int c; for(c=t;c>0;--c) { if(filename[c]=='.') return(filename+c); } return(filename); } static ImageSource *ISLoadImage_core(const char *filename) { const char *ext=findextension(filename); try { Debug[COMMENT] << "Loading filename: " << filename << endl; Debug[COMMENT] << "Extension: " << ext << endl; if(strncasecmp(ext,".JPG",4)==0) return(new ImageSource_JPEG(filename)); else if(strncasecmp(ext,".JPEG",5)==0) return(new ImageSource_JPEG(filename)); else if(strncasecmp(ext,".JFIF",5)==0) return(new ImageSource_JPEG(filename)); else if(strncasecmp(ext,".BMP",4)==0) return(new ImageSource_BMP(filename)); else if(strncasecmp(ext,".TIF",4)==0) return(new ImageSource_TIFF(filename)); else if(strncasecmp(ext,".TIFF",5)==0) return(new ImageSource_TIFF(filename)); #if defined HAVE_LIBPNM || defined HAVE_LIBNETPBM else if(strncasecmp(ext,".PPM",4)==0) return(new ImageSource_PNM(filename)); else if(strncasecmp(ext,".PGM",4)==0) return(new ImageSource_PNM(filename)); else if(strncasecmp(ext,".PBM",4)==0) return(new ImageSource_PNM(filename)); else if(strncasecmp(ext,".PNM",4)==0) return(new ImageSource_PNM(filename)); #endif else if(strncasecmp(ext,".PS",4)==0) return(new ImageSource_GS(filename,IMAGESOURCE_GS_DEFAULT_RESOLUTION)); else if(strncasecmp(ext,".PDF",4)==0) return(new ImageSource_GS(filename,IMAGESOURCE_GS_DEFAULT_RESOLUTION)); } catch(const char *err) { Debug[WARN] << "Attempt to load " << filename << " failed" << endl; Debug[WARN] << "(" << err << ")" << endl; Debug[WARN] << "- falling back to GdkPixbuf loader" << endl; } return(new ImageSource_GdkPixbuf(filename)); } // Enforce sane defaults for resolution if the loader leaves it at zero. ImageSource *ISLoadImage(const char *filename) { ImageSource *result=ISLoadImage_core(filename); if(result) { if(result->xres==0) result->xres=72; if(result->yres==0) result->yres=72; } return(result); } ImageSource *ISScaleImageByResolution(ImageSource *source,double xres,double yres,IS_ScalingQuality quality) { ImageSource *result=NULL; int w=int((source->width*xres)/source->xres); int h=int((source->height*yres)/source->yres); result=ISScaleImageBySize(source,w,h,quality); if(result) result->SetResolution(xres,yres); return(result); } static IS_ScalingQuality ChooseScaling(int src,int dst,IS_ScalingQuality quality) { if(quality==IS_SCALING_AUTOMATIC) { double f=dst; f/=src; // Use LanczosSinc for scaling >250%, // Bilinear for 250% - 100%, and // nearest neighbour for scaling <=100% if(f>2.5) quality=IS_SCALING_LANCZOSSINC; else if(f>1.0) quality=IS_SCALING_BILINEAR; else quality=IS_SCALING_DOWNSAMPLE; } else if ((quality!=IS_SCALING_NEARESTNEIGHBOUR) && (dstwidth,width,quality); IS_ScalingQuality vscale=ChooseScaling(source->height,height,quality); switch(hscale) { default: case IS_SCALING_NEARESTNEIGHBOUR: source=new ImageSource_HScale(source,width); break; case IS_SCALING_BILINEAR: source=new ImageSource_HBilinear(source,width); break; case IS_SCALING_LANCZOSSINC: // We could perform a slight downsampling before the LanczosSinc scaling // to reduce ringing artifacts, at the expense of a small amount // of sharpness // source=new ImageSource_HDownsample(source,(source->width*95)/100); source=new ImageSource_HLanczosSinc(source,width); break; case IS_SCALING_DOWNSAMPLE: source=new ImageSource_HDownsample(source,width); break; } switch(vscale) { default: case IS_SCALING_NEARESTNEIGHBOUR: source=new ImageSource_VScale(source,height); break; case IS_SCALING_BILINEAR: source=new ImageSource_VBilinear(source,height); break; case IS_SCALING_LANCZOSSINC: // We could perform a slight downsampling before the LanczosSinc scaling // to reduce ringing artifacts, at the expense of a small amount // of sharpness // source=new ImageSource_VDownsample(source,(source->height*95)/100); source=new ImageSource_VLanczosSinc(source,height); break; case IS_SCALING_DOWNSAMPLE: source=new ImageSource_VDownsample(source,height); break; } #if 0 // don't use an expensive scaling function if the image is being reduced... if((widthwidth) && (heightheight)) { switch(quality) { case IS_SCALING_NEARESTNEIGHBOUR: Debug[TRACE] << "Image is being shrunk - using Nearest Neighbour scaling" << endl; quality=IS_SCALING_NEARESTNEIGHBOUR; break; default: Debug[TRACE] << "Using Downsample filter..." << endl; quality=IS_SCALING_DOWNSAMPLE; break; } } switch(quality) { case IS_SCALING_NEARESTNEIGHBOUR: case IS_SCALING_LANCZOSSINC: case IS_SCALING_BILINEAR: case IS_SCALING_DOWNSAMPLE: break; case IS_SCALING_AUTOMATIC: default: { double xf=width; xf/=source->width; double yf=height; yf/=source->height; double f=xf; if(yf>f) f=yf; // Use LanczosSinc for scaling >250%, // Bilinear for 250% - 100%, and // nearest neighbour for scaling <=100% if(f>2.5) quality=IS_SCALING_LANCZOSSINC; else if(f>1.0) quality=IS_SCALING_BILINEAR; else quality=IS_SCALING_NEARESTNEIGHBOUR; } } switch(quality) { default: case IS_SCALING_NEARESTNEIGHBOUR: result=new ImageSource_Scale(source,width,height); break; case IS_SCALING_BILINEAR: result=new ImageSource_Bilinear(source,width,height); break; case IS_SCALING_LANCZOSSINC: result=new ImageSource_LanczosSinc(source,width,height); break; case IS_SCALING_DOWNSAMPLE: result=new ImageSource_Downsample(source,width,height); break; } #endif return(source); } const IS_ScalingQualityDescription *DescribeScalingQuality(IS_ScalingQuality quality) { if(quality #include #include #include #include "../support/debug.h" #include "imagesource_dither.h" using namespace std; ImageSource_Dither::~ImageSource_Dither() { if(source) delete source; if(err1) free(err1); if(err2) free(err2); } ISDataType *ImageSource_Dither::GetRow(int row) { if(row==currentrow) return(rowbuffer); ISDataType *srcdata=source->GetRow(row); if(row & 1) { for(int s=0;sIS_SAMPLEMAX) u=IS_SAMPLEMAX; if(t<0) u=0; int err=t-u; rowbuffer[x*samplesperpixel+s]=u; err1[(x+2)*samplesperpixel+s]+=(7*err)/16; err2[(x)*samplesperpixel+s]+=(1*err)/16; err2[(x+1)*samplesperpixel+s]+=(5*err)/16; err2[(x+2)*samplesperpixel+s]=(3*err)/16; } } } else { for(int s=0;s=0;--x) { for(int s=0;sIS_SAMPLEMAX) u=IS_SAMPLEMAX; if(t<0) u=0; int err=t-u; rowbuffer[x*samplesperpixel+s]=u; err2[(x)*samplesperpixel+s]+=(7*err)/16; err1[(x)*samplesperpixel+s]=(3*err)/16; err1[(x+1)*samplesperpixel+s]+=(5*err)/16; err1[(x+2)*samplesperpixel+s]+=(1*err)/16; } } } currentrow=row; return(rowbuffer); } ImageSource_Dither::ImageSource_Dither(ImageSource *source,int bitdepth) : ImageSource(source), source(source), err1(NULL), err2(NULL) { mask=1; while(bitdepth--) mask=mask<<1; mask-=1; Debug[TRACE] << "Mask: " << mask << endl; // mask now equals (2^bitdepth)-1 - now left-align it... while(mask<(IS_SAMPLEMAX/2)) mask=mask<<1; Debug[TRACE] << "Mask: " << mask << endl; err1=(int *)malloc(sizeof(int)*samplesperpixel*(width+2)); err2=(int *)malloc(sizeof(int)*samplesperpixel*(width+2)); for(int i=0;i /* needed to define "FILE", "NULL" */ extern "C" { #ifdef WIN32 // Ugly hack to be compatible with the libjpeg62 shipped with GIMP. typedef unsigned char boolean; #define HAVE_BOOLEAN #endif #include "jpeglib.h" } /* * This routine writes the given ICC profile data into a JPEG file. * It *must* be called AFTER calling jpeg_start_compress() and BEFORE * the first call to jpeg_write_scanlines(). * (This ordering ensures that the APP2 marker(s) will appear after the * SOI and JFIF or Adobe markers, but before all else.) */ extern void write_icc_profile JPP((j_compress_ptr cinfo, const JOCTET *icc_data_ptr, unsigned int icc_data_len)); /* * Reading a JPEG file that may contain an ICC profile requires two steps: * * 1. After jpeg_create_decompress() but before jpeg_read_header(), * call setup_read_icc_profile(). This routine tells the IJG library * to save in memory any APP2 markers it may find in the file. * * 2. After jpeg_read_header(), call read_icc_profile() to find out * whether there was a profile and obtain it if so. */ /* * Prepare for reading an ICC profile */ extern void setup_read_icc_profile JPP((j_decompress_ptr cinfo)); /* * See if there was an ICC profile in the JPEG file being read; * if so, reassemble and return the profile data. * * TRUE is returned if an ICC profile was found, FALSE if not. * If TRUE is returned, *icc_data_ptr is set to point to the * returned data, and *icc_data_len is set to its length. * * IMPORTANT: the data at **icc_data_ptr has been allocated with malloc() * and must be freed by the caller with free() when the caller no longer * needs it. (Alternatively, we could write this routine to use the * IJG library's memory allocator, so that the data would be freed implicitly * at jpeg_finish_decompress() time. But it seems likely that many apps * will prefer to have the data stick around after decompression finishes.) */ extern boolean read_icc_profile JPP((j_decompress_ptr cinfo, JOCTET **icc_data_ptr, unsigned int *icc_data_len)); photoprint-0.4.2-pre2/imagesource/imagesource_downsample.h0000644000175000017500000000144211076423574020734 00000000000000#ifndef IMAGESOURCE_DOWNSAMPLE_H #define IMAGESOURCE_DOWNSAMPLE_H #include "imagesource.h" class ImageSource_Downsample : public ImageSource { public: ImageSource_Downsample(ImageSource *source,int dstwidth,int dstheight); ~ImageSource_Downsample(); ISDataType *GetRow(int row); private: ImageSource *source; }; class ImageSource_HDownsample : public ImageSource { public: ImageSource_HDownsample(ImageSource *source,int dstwidth); ~ImageSource_HDownsample(); ISDataType *GetRow(int row); private: ImageSource *source; }; class ImageSource_VDownsample : public ImageSource { public: ImageSource_VDownsample(ImageSource *source,int dstheight); ~ImageSource_VDownsample(); ISDataType *GetRow(int row); private: ImageSource *source; double *tmp; int srcrow; int acc; }; #endif photoprint-0.4.2-pre2/imagesource/pixbuf_from_imagesource.h0000644000175000017500000000120311347764004021073 00000000000000/* * pixbuf_from_imagesource.h * Creates a GdkPixbuf from an ImageSource * * Copyright (c) 2005 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #ifndef PIXBUF_FROM_IMAGESOURCE_H #define PIXBUF_FROM_IMAGESOURCE_H #include #include "imagesource.h" #include "progress.h" GdkPixbuf *pixbuf_from_imagesource(ImageSource *is, int redbg8=255,int greenbg8=255,int bluebg8=255,Progress *prog=NULL,GdkPixbuf *pb=NULL); GdkPixbuf *pixbuf_alpha_from_imagesource(ImageSource *is,Progress *prog=NULL,GdkPixbuf *pb=NULL); #endif photoprint-0.4.2-pre2/imagesource/imagesource_chequerboard.h0000644000175000017500000000122011116470527021214 00000000000000/* * imagesource_chequerboard.h - renders a chequerboard pattern * Supports Random Access * * Copyright (c) 2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include "imagesource.h" class ImageSource_Chequerboard : public ImageSource { public: ImageSource_Chequerboard(int width,int height,IS_TYPE type=IS_TYPE_RGB,int samplesperpixel=3,int size=8); ~ImageSource_Chequerboard(); void SetFG(ISDeviceNValue &col); void SetBG(ISDeviceNValue &col); ISDataType *GetRow(int row); protected: int size; ISDeviceNValue fg; ISDeviceNValue bg; }; photoprint-0.4.2-pre2/imagesource/imagesource_unsharpmask.h0000644000175000017500000000143611076423574021122 00000000000000/* * imagesource_unsharpmask.h - Sharpen filter * * Copyright (c) 2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #ifndef IMAGESOURCE_UNSHARPMASK_H #define IMAGESOURCE_UNSHARPMASK_H #include "imagesource.h" #include "convkernel.h" class ISUnsharpMask_RowCache; class ImageSource_UnsharpMask : public ImageSource { public: ImageSource_UnsharpMask(ImageSource *source,float radius,float amount=1.0,float threshold=0.0); ~ImageSource_UnsharpMask(); ISDataType *GetRow(int row); protected: ImageSource *source; ConvKernel *kernel; int hextra,vextra; ISUnsharpMask_RowCache *cache; float **tmprows; float amount; float threshold; friend class ISUnsharpMask_RowCache; }; #endif photoprint-0.4.2-pre2/imagesource/imagesource_modifiedgamma.cpp0000644000175000017500000001033311266377132021677 00000000000000/* * imagesource_modifiedgamma.cpp * Gamma-corrects an image. * * Copyright (c) 2009 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include "../support/debug.h" #include "imagesource_modifiedgamma.h" using namespace std; ImageSource_ModifiedGamma::~ImageSource_ModifiedGamma() { if(source) delete source; } ISDataType *ImageSource_ModifiedGamma::GetRow(int row) { ISDataType *src; if(row==currentrow) return(rowbuffer); src=source->GetRow(row); switch(STRIP_ALPHA(type)) { case IS_TYPE_RGB: // RGB is the only colourspace in which we treat 0 as black. if(HAS_ALPHA(type)) // We don't want to adjust the alpha channel! { for(int i=0;iIS_SAMPLEMAX) t=IS_SAMPLEMAX; rowbuffer[i*samplesperpixel+j]=t; } } } else { for(int i=0;iIS_SAMPLEMAX) t=IS_SAMPLEMAX; rowbuffer[i*samplesperpixel+j]=t; } } } break; default: if(HAS_ALPHA(type)) // We don't want to scale the alpha channel! { for(int i=0;iIS_SAMPLEMAX) t=IS_SAMPLEMAX; rowbuffer[i*samplesperpixel+j]=t; } rowbuffer[i*samplesperpixel+j]=src[i*samplesperpixel+j]; // Copy alpha unchanged } } else { for(int i=0;iIS_SAMPLEMAX) t=IS_SAMPLEMAX; rowbuffer[i*samplesperpixel+j]=t; } } } break; } currentrow=row; return(rowbuffer); } ImageSource_ModifiedGamma::ImageSource_ModifiedGamma(ImageSource *source,double gamma,double offset) : ImageSource(source), source(source), gamma(gamma), offset(offset) { Debug[TRACE] << "Modified gamma - using offset of " << offset << endl; threshold=offset/(gamma + gamma*offset - 1.0); Debug[TRACE] << "Threshold: " << threshold << endl; slope=pow((threshold+offset)/(1.0+offset),gamma)/threshold; Debug[TRACE] << "Slope of linear section: " << slope << endl; MakeRowBuffer(); } double ImageSource_ModifiedGamma::FindGamma(double x,double y,double offset) { return(log(y)/(log(x+offset)-log(1.0+offset))); } double ImageSource_ModifiedGamma::ModifiedGamma(double x,double gamma,double offset) { double threshold=offset/(gamma + gamma*offset - 1.0); // Debug[TRACE] << "Forward - t1: " << threshold << endl; if(x #include "imagesource.h" #include "imagesource_types.h" class CMSProfile; class ImageSource_Interruptible : public ImageSource { public: ImageSource_Interruptible(ImageSource *src) : ImageSource(src), testbreak(NULL), userdata(NULL) { } virtual ~ImageSource_Interruptible() { } void SetTestBreak(bool (*testbreak)(void *userdata),void *userdata) { this->testbreak=testbreak; this->userdata=userdata; } bool TestBreak() { if(testbreak) return(testbreak(userdata)); return(false); } protected: bool (*testbreak)(void *userdata); void *userdata; }; #endif photoprint-0.4.2-pre2/imagesource/imagesource_invert.h0000644000175000017500000000102511123246060020051 00000000000000/* * imagesource_invert.h * * Supports all types * Supports random access * * Copyright (c) 2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #ifndef IMAGESOURCE_INVERT_H #define IMAGESOURCE_INVERT_H #include "imagesource.h" class ImageSource_Invert : public ImageSource { public: ImageSource_Invert(ImageSource *source); ~ImageSource_Invert(); ISDataType *GetRow(int row); private: ImageSource *source; }; #endif photoprint-0.4.2-pre2/imagesource/imagesource_greyscale.cpp0000644000175000017500000000260511105355674021074 00000000000000/* * imagesource_greyscale.cpp * * Supports RGB data * Supports random access * * Copyright (c) 2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include "imagesource_greyscale.h" using namespace std; ImageSource_Greyscale::~ImageSource_Greyscale() { if(source) delete source; } ISDataType *ImageSource_Greyscale::GetRow(int row) { int i; if(row==currentrow) return(rowbuffer); ISDataType *srcdata=source->GetRow(row); switch(samplesperpixel) { case 1: for(i=0;i #include #include #include #include "imagesource_gaussianblur.h" #include "convkernel_gaussian_1D.h" using namespace std; // The row cache is just a simplistic ring-buffer type cache which handles // the details of tracking several rows of "support" data. class ISGaussianBlur_RowCache { public: ISGaussianBlur_RowCache(ImageSource_GaussianBlur *source); ~ISGaussianBlur_RowCache(); ISDataType *GetRawRow(int row); float *GetConvRow(int row); private: ImageSource_GaussianBlur *source; float *convcache; ISDataType *rawcache; int cachewidth,cachehoffset; int bufferrows; int rawcurrentrow; int convcurrentrow; }; ISGaussianBlur_RowCache::~ISGaussianBlur_RowCache() { if(convcache) free(convcache); if(rawcache) free(rawcache); } ISGaussianBlur_RowCache::ISGaussianBlur_RowCache(ImageSource_GaussianBlur *source) : source(source), rawcurrentrow(-1), convcurrentrow(-1) { cachewidth=source->width+source->hextra*2; cachehoffset=source->hextra; bufferrows=source->vextra*2+1; convcache=(float *)malloc(sizeof(float)*source->samplesperpixel*cachewidth*bufferrows); rawcache=(ISDataType *)malloc(sizeof(float)*source->samplesperpixel*source->width*bufferrows); } inline float *ISGaussianBlur_RowCache::GetConvRow(int row) { if(row<0) row=0; if(row>=source->source->height) row=source->source->height-1; int crow=row%(source->vextra*2+1); float *rowptr=convcache+crow*source->samplesperpixel*cachewidth; if(row>convcurrentrow) { convcurrentrow=row; ISDataType *src=GetRawRow(row); // Convolve the temp row into the cache; for(int x=0;xkernel->GetWidth();++kx) { int sx=x+kx-cachehoffset*2; if(sx<0) sx=0; if(sx>source->width) sx=source->width-1; for(int s=0;ssamplesperpixel;++s) { t[s]+=source->kernel->Kernel(kx,0)*src[sx*source->samplesperpixel+s]; } } for(int s=0;ssamplesperpixel;++s) { rowptr[x*source->samplesperpixel+s]=t[s]; } } } return(rowptr+cachehoffset*source->samplesperpixel); } inline ISDataType *ISGaussianBlur_RowCache::GetRawRow(int row) { if(row<0) row=0; if(row>=source->source->height) row=source->source->height-1; int crow=row%(source->vextra*2+1); ISDataType *rowptr=rawcache+crow*source->samplesperpixel*source->width; if(row>rawcurrentrow) { rawcurrentrow=row; ISDataType *src=source->source->GetRow(row); // Store the row to be cached in a temporary buffer... for(int s=0;swidth*source->samplesperpixel;++s) { rowptr[s]=src[s]; } } return(rowptr); } ImageSource_GaussianBlur::~ImageSource_GaussianBlur() { if(tmprows) free(tmprows); if(cache) delete cache; if(source) delete source; if(kernel) delete kernel; } ISDataType *ImageSource_GaussianBlur::GetRow(int row) { if(row==currentrow) return(rowbuffer); // int kw=kernel->GetWidth(); int kh=kernel->GetWidth(); // Using a 1D kernel for(int r=0;rGetConvRow(row+(r-vextra)); } // ISDataType *srcrow=cache->GetRawRow(row); for(int x=0;xKernel(ky,0) * tmprows[ky][x*samplesperpixel+s]; } } for(int s=0;sIS_SAMPLEMAX) out=IS_SAMPLEMAX; rowbuffer[x*samplesperpixel+s]=ISDataType(out); } } currentrow=row; return(rowbuffer); } ImageSource_GaussianBlur::ImageSource_GaussianBlur(struct ImageSource *source,float radius) : ImageSource(source), source(source), kernel(NULL) { kernel=new ConvKernel_Gaussian_1D(radius); kernel->Normalize(); hextra=kernel->GetWidth()/2; vextra=hextra; cache=new ISGaussianBlur_RowCache(this); tmprows=(float **)malloc(sizeof(float *)*kernel->GetWidth()); MakeRowBuffer(); randomaccess=false; } photoprint-0.4.2-pre2/imagesource/imagesource_cms.cpp0000644000175000017500000000666311266376736017722 00000000000000/* * imagesource_cms.cpp * ImageSource Colour Management filter. * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * * TODO: Clean up handling of image types other than RGB */ #include #include #include #include "../support/debug.h" #include "imagesource_cms.h" using namespace std; ImageSource_CMS::~ImageSource_CMS() { free(tmp1); free(tmp2); if(source) delete source; if(disposetransform) delete transform; } ISDataType *ImageSource_CMS::GetRow(int row) { ISDataType *src; if(row==currentrow) return(rowbuffer); src=source->GetRow(row); // Copy just the colour data from src to tmp1, ignoring alpha // (FIXME: separate code-path for the non-alpha case would be quicker) for(int i=0;isamplesperpixel+j])/IS_SAMPLEMAX; } transform->Transform(tmp1,tmp2,width); // Copy just the colour data from tmp2 to rowbuffer, ignoring alpha. for(int i=0;itype)) { for(int i=0;isamplesperpixel-1]; } currentrow=row; return(rowbuffer); } #if 0 ImageSource_CMS::ImageSource_CMS(ImageSource *source,CMSDB &inp,CMSDB &outp) : ImageSource(source), source(source) { transform=new CMSTransform(inp,outp); disposetransform=true; Init(); } ImageSource_CMS::ImageSource_CMS(ImageSource *source,CMSProfile *inp,CMSDB &outp) : ImageSource(source), source(source) { transform=new CMSTransform(inp,outp); disposetransform=true; Init(); } #endif ImageSource_CMS::ImageSource_CMS(ImageSource *source,CMSProfile *inp,CMSProfile *outp) : ImageSource(source), source(source) { transform=new CMSTransform(inp,outp); disposetransform=true; Init(); } ImageSource_CMS::ImageSource_CMS(ImageSource *source,CMSTransform *transform) : ImageSource(source), source(source), transform(transform) { disposetransform=false; Init(); } void ImageSource_CMS::Init() { // Debug[TRACE] << "Initialsing CMS transform" << endl; switch(type=transform->GetOutputColourSpace()) { case IS_TYPE_GREY: samplesperpixel=1; break; case IS_TYPE_RGB: samplesperpixel=3; break; case IS_TYPE_CMYK: samplesperpixel=4; break; default: throw "Unsupported colour space (output)"; break; } // Debug[TRACE] << "Type: " << type << endl; if(transform->GetInputColourSpace()!=STRIP_ALPHA(source->type)) { Debug[ERROR] << "Error - transform's input colorspace is " << transform->GetInputColourSpace() << ", but image's type is " << source->type << endl; throw "Source image must match source profile!"; } tmpsourcespp=source->samplesperpixel; tmpdestspp=samplesperpixel; if(HAS_ALPHA(source->type)) { ++samplesperpixel; --tmpsourcespp; type=IS_TYPE(type | IS_TYPE_ALPHA); } tmp1=(unsigned short *)malloc(sizeof(unsigned short)*width*source->samplesperpixel); tmp2=(unsigned short *)malloc(sizeof(unsigned short)*width*samplesperpixel); // Debug[TRACE] << "tmpsourcespp: " << tmpsourcespp << endl; // Debug[TRACE] << "tmpdestspp: " << tmpdestspp << endl; // Debug[TRACE] << "samplesperpixel: " << samplesperpixel << endl; MakeRowBuffer(); } photoprint-0.4.2-pre2/imagesource/imagesource_promote.cpp0000644000175000017500000000317311076423574020606 00000000000000/* * imagesource_promote.cpp * * Supports Greyscale, RGB and CMYK data * Supports random access * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include "imagesource_promote.h" using namespace std; ImageSource_Promote::~ImageSource_Promote() { if(source) delete source; } ISDataType *ImageSource_Promote::GetRow(int row) { int i; if(row==currentrow) return(rowbuffer); ISDataType *srcdata=source->GetRow(row); switch(source->type) { case IS_TYPE_GREY: case IS_TYPE_BW: switch(samplesperpixel) { case 3: for(i=0;itype=type; switch(type) { case IS_TYPE_RGB: samplesperpixel=3; break; case IS_TYPE_CMYK: samplesperpixel=4; break; default: throw "Promote: Alpha channel not yet supported."; } MakeRowBuffer(); } photoprint-0.4.2-pre2/imagesource/imagesource_flatten.cpp0000644000175000017500000000405111366415437020553 00000000000000/* * imagesource_flatten.cpp * * Supports Greyscale, RGB and CMYK data * Supports random access * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include "imagesource_flatten.h" using namespace std; ImageSource_Flatten::~ImageSource_Flatten() { if(source) delete source; } ISDataType *ImageSource_Flatten::GetRow(int row) { int i; if(row==currentrow) return(rowbuffer); ISDataType *srcdata=source->GetRow(row); if(!HAS_ALPHA(source->type)) return(srcdata); switch(samplesperpixel) { case 1: for(i=0;i #include #include #include #include "imagesource_segmentmask.h" #include "circlemontage.h" using namespace std; ImageSource_SegmentMask::~ImageSource_SegmentMask() { if(segment) delete segment; } ISDataType *ImageSource_SegmentMask::GetRow(int row) { ISDataType *dst; if(currentrow==row) return(rowbuffer); dst=rowbuffer; float t1=segment->t1; float t2=segment->t2; float overlap=segment->overlap; int dy=row-segment->yo; if(fade) { for(int x=0;xxo; int dd=int(sqrt(float(dx*dx+dy*dy))); if((ddradius) && (dd>=segment->innerradius)) { float t=(atan2f(dx,-dy)*360)/(2*M_PI); if(t1>0.0 && t<0.0) t+=360.0; if(t>=t1 && t<=t2) { if(t<(t1+overlap*2)) { *dst++=IS_SAMPLEMAX-ISDataType(IS_SAMPLEMAX*(t1-t)/(overlap*2)); } else if(t>(t2-overlap*2)) { *dst++=IS_SAMPLEMAX-ISDataType(IS_SAMPLEMAX*(t-t2)/(overlap*2)); } else *dst++=IS_SAMPLEMAX; } else *dst++=0; } else { *dst++=0; } } } else { for(int x=0;xxo; int dd=int(sqrt(float(dx*dx+dy*dy))); if((ddradius) && (dd>=segment->innerradius)) { int t=int((atan2f(dx,-dy)*360)/(2*M_PI)); if(t1>0 && t<0) t+=360; if(t>=t1 && t<=t2) { *dst++=IS_SAMPLEMAX; } else *dst++=0; } else { *dst++=0; } } } currentrow=row; return(rowbuffer); } ImageSource_SegmentMask::ImageSource_SegmentMask(CMSegment *seg,bool fade) : ImageSource(), segment(seg), fade(fade) { type=IS_TYPE_GREY; samplesperpixel=1; width=seg->w; height=seg->h; MakeRowBuffer(); randomaccess=true; } photoprint-0.4.2-pre2/imagesource/imagesource_hticks.cpp0000644000175000017500000000304211122035676020373 00000000000000/* * imagesource_hticks.cpp - renders a horizontal scale of "tick marks". * Supports Random Access * * Copyright (c) 2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include "imagesource_hticks.h" ISDataType *ImageSource_HTicks::GetRow(int row) { if(currentrow==row) return(rowbuffer); int majortick=0; int minortick=0; for(int x=0;xmajortick) { for(int s=0;sheight/2) && (((x+1)*minorticks)/width)>minortick) { for(int s=0;stype=type; this->width=width; this->height=height; this->samplesperpixel=samplesperpixel; randomaccess=true; MakeRowBuffer(); } ImageSource_HTicks::~ImageSource_HTicks() { } void ImageSource_HTicks::SetFG(ISDeviceNValue &col) { fg=col; } void ImageSource_HTicks::SetBG(ISDeviceNValue &col) { bg=col; } photoprint-0.4.2-pre2/imagesource/imagesource_pnm.cpp0000644000175000017500000000420411266377203017705 00000000000000/* * imagesource_pnm.cpp - ImageSource loader for PNM files. * * Supports high bit depths, * RGB data. * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #ifdef HAVE_CONFIG_H #include "config.h" #endif #if defined HAVE_LIBPNM || defined HAVE_LIBNETPBM #include "../support/debug.h" #include "imagesource_pnm.h" using namespace std; ImageSource_PNM::~ImageSource_PNM() { if(tuplerow) free(tuplerow); if(file) fclose(file); } ISDataType *ImageSource_PNM::GetRow(int row) { ISDataType *dst; if(currentrow==row) return(rowbuffer); if(row #include #include "../support/debug.h" #include "imagesource_rotate.h" using namespace std; ImageSource_Rotate::~ImageSource_Rotate() { if(source) delete source; if(spanbuffer) free(spanbuffer); } ISDataType *ImageSource_Rotate::GetRow(int row) { int x; int firstrow,lastrow; ISDataType *dst; ISDataType *src; ISDataType c; switch(rotation) { case 0: // FIXME - if source doesn't support random access, image needs // to be cached. return(source->GetRow(row)); break; case 90: if((row=(spanfirstrow+spanrows))) { spanfirstrow=row; firstrow=row; lastrow=row+spanrows; if(lastrow>height) lastrow=height; for(int i=0;iheight;++i) { src=source->GetRow(i); dst=spanbuffer+samplesperpixel*i; switch(samplesperpixel) { case 1: for(x=firstrow;xwidth-1)-x; c=src[sx]; dst[(x-firstrow)*samplesperrow]=c; } break; case 3: for(x=firstrow;xwidth-1)-x; c=src[sx*3]; dst[(x-firstrow)*samplesperrow]=c; c=src[sx*3+1]; dst[(x-firstrow)*samplesperrow+1]=c; c=src[sx*3+2]; dst[(x-firstrow)*samplesperrow+2]=c; } break; case 4: for(x=firstrow;xwidth-1)-x; c=src[sx*4]; dst[(x-firstrow)*samplesperrow]=c; c=src[sx*4+1]; dst[(x-firstrow)*samplesperrow+1]=c; c=src[sx*4+2]; dst[(x-firstrow)*samplesperrow+2]=c; c=src[sx*4+3]; dst[(x-firstrow)*samplesperrow+3]=c; } break; default: for(x=firstrow;xwidth-1)-x; for(int s=0;sheight; } } row-=spanfirstrow; return(spanbuffer+row*samplesperrow); break; case 180: // FIXME: support partial image caching here. if((row=(spanfirstrow+spanrows))) { spanfirstrow=row; firstrow=row; lastrow=row+spanrows; if(lastrow>height) lastrow=height; for(int y=0;yGetRow(y); dst=spanbuffer+((height-1)-y)*samplesperrow; switch(samplesperpixel) { case 1: for(x=0;xheight; } } row-=spanfirstrow; return(spanbuffer+row*samplesperrow); break; case 270: if((row=(spanfirstrow+spanrows))) { spanfirstrow=row; firstrow=row; lastrow=row+spanrows; if(lastrow>height) lastrow=height; for(int i=source->height-1;i>=0;--i) { src=source->GetRow((source->height-1)-i); dst=spanbuffer+samplesperpixel*i; switch(samplesperpixel) { case 1: for(x=firstrow;xheight; } } row-=spanfirstrow; return(spanbuffer+row*samplesperrow); break; default: throw "Currently only multples of 90 degrees are supported"; } return(rowbuffer); } ImageSource_Rotate::ImageSource_Rotate(ImageSource *source,int rotation,int spanrows) : ImageSource_Interruptible(source), source(source), rotation(rotation), spanfirstrow(0), spanrows(spanrows), spanbuffer(NULL) { rowbuffer=NULL; switch(rotation) { case 0: case 180: break; case 90: case 270: width=source->height; height=source->width; xres=source->yres; yres=source->xres; break; default: throw "Only multiples of 90 degrees are supported\n"; break; } switch(rotation) { case 0: case 180: Debug[COMMENT] << "Rotate: caching entire image for 180 degree rotation" << endl; this->spanrows=source->height+1; break; case 90: case 270: if(!source->randomaccess) { Debug[COMMENT] << "Rotate: source doesn't support random access - caching entire image" << endl; this->spanrows=source->width+1; } break; } spanfirstrow=-this->spanrows-1; samplesperrow=width*samplesperpixel; Debug[TRACE] << "Span buffer will be " << this->spanrows << " high" << endl; if((rotation==90) || (rotation==270) || (rotation==180)) spanbuffer=(ISDataType *)malloc(this->spanrows*(sizeof(ISDataType)*samplesperrow)); else MakeRowBuffer(); currentrow=-1; if(rotation==0) randomaccess=source->randomaccess; else randomaccess=true; } photoprint-0.4.2-pre2/imagesource/imagesource_lanczossinc.cpp0000644000175000017500000001425711261755714021454 00000000000000/* * imagesource_lanczossinc.cpp - Interpolated scaling filter * Implements Sinc interpolation with Lanczos Window: * sin(pi*x)/(pi*x)*sample*sin(pi*x/windowsize)/(pi*x/windowsize) * * Supports Greyscale, RGB and CMYK data * Doesn't (yet) support random access * * Copyright (c) 2004-2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include "imagesource_lanczossinc.h" using namespace std; // 2D scaling is implemented as a chaining of a horizontal, then a vertical scaling; ImageSource_LanczosSinc::~ImageSource_LanczosSinc() { if(source) delete source; } ISDataType *ImageSource_LanczosSinc::GetRow(int row) { return(source->GetRow(row)); } ImageSource_LanczosSinc::ImageSource_LanczosSinc(struct ImageSource *source,int width,int height,int window) : ImageSource(source), source(source) { this->source=new ImageSource_HLanczosSinc(this->source,width,window); this->source=new ImageSource_VLanczosSinc(this->source,height,window); xres=this->source->xres; yres=this->source->yres; this->randomaccess=this->source->randomaccess; this->width=width; this->height=height; } // Sinc function. #ifndef M_PI #define M_PI 3.14159265358979323846 #endif static double sinc(double x) { x*=M_PI; if(x==0.0) return(1.0); else return(sin(x)/x); } // The row cache is just a simplistic ring-buffer type cache which handles // the details of tracking several rows of "support" data. // The temporary data does have to be float - or at least wider than ISDataType // and must be clamped since the ringing artifiacts inherent in Lanczos Sinc // can push values out of range. class ISLanczosSinc_RowCache { public: ISLanczosSinc_RowCache(ImageSource_VLanczosSinc *source); ~ISLanczosSinc_RowCache(); double *GetRow(int row); double *GetCacheRow(int row); private: ImageSource_VLanczosSinc *source; double *cache; double *rowbuffer; int currentrow; }; ISLanczosSinc_RowCache::~ISLanczosSinc_RowCache() { if(cache) free(cache); if(rowbuffer) free(rowbuffer); } ISLanczosSinc_RowCache::ISLanczosSinc_RowCache(ImageSource_VLanczosSinc *source) : source(source), cache(NULL), rowbuffer(NULL), currentrow(-1) { cache=(double *)malloc(sizeof(double)*source->samplesperpixel*source->width*source->support); rowbuffer=(double *)malloc(sizeof(double)*source->samplesperpixel*source->width); } double *ISLanczosSinc_RowCache::GetRow(int row) { for(int i=0;iwidth*source->samplesperpixel;++i) rowbuffer[i]=0.0; for(int i=0;isupport;++i) { int p=i-source->windowsize; int sr=(row*source->source->height)/source->height; double *src=GetCacheRow(sr+p); double f=source->coeff[row*source->support+i]; for(int x=0;xwidth*source->samplesperpixel;++x) { rowbuffer[x]+=f*src[x]; } } return(rowbuffer); } double *ISLanczosSinc_RowCache::GetCacheRow(int row) { if(row<0) row=0; if(row>=source->source->height) row=source->source->height-1; int crow=row%source->support; { double *rowptr=cache+crow*source->samplesperpixel*source->width; if(row>currentrow) { currentrow=row; ISDataType *src=source->source->GetRow(row); for(int i=0;iwidth*source->samplesperpixel;++i) { rowptr[i]=src[i]; } } return(rowptr); } } // Vertical scaling ImageSource_VLanczosSinc::~ImageSource_VLanczosSinc() { if(cache) delete cache; if(source) delete source; if(coeff) free(coeff); } ISDataType *ImageSource_VLanczosSinc::GetRow(int row) { int i; if(row==currentrow) return(rowbuffer); double *srcdata=cache->GetRow(row); for(i=0;iIS_SAMPLEMAX) s=IS_SAMPLEMAX; rowbuffer[i]=int(s); } currentrow=row; return(rowbuffer); } // Since Lanczos Sinc is a relatively expensive algorithm to compute in realtime // and the row / column coefficients are constant we precompute them here. void ImageSource_VLanczosSinc::PreCalc() { for(int y=0;yheight; c/=height; int ci=int(c); double f=c-ci; for(int i=0; iheight=height; yres=(source->yres*height); yres/=source->height; support=windowsize*2+1; coeff=(double *)malloc(sizeof(double)*height*support); PreCalc(); cache=new ISLanczosSinc_RowCache(this); MakeRowBuffer(); randomaccess=false; } // Horizontal scaling ISDataType *ImageSource_HLanczosSinc::GetRow(int row) { if(row==currentrow) return(rowbuffer); ISDataType *src=source->GetRow(row); for(int x=0;xwidth)/width; for(int s=0;s=source->width) lsx=source->width-1; a+=src[lsx*samplesperpixel+s]*coeff[x*support+p]; } if(a<0.0) a=0.0; if(a>IS_SAMPLEMAX) a=IS_SAMPLEMAX; rowbuffer[x*samplesperpixel+s]=a; } } currentrow=row; return(rowbuffer); } // Since Lanczos Sinc is a relatively expensive algorithm to compute in realtime // and the row / column coefficients are constant we precompute them here. void ImageSource_HLanczosSinc::PreCalc() { for(int x=0;xwidth; c/=width; int ci=int(c); double f=c-ci; for(int i=0; iwidth=width; xres=(source->xres*width); xres/=source->width; support=windowsize*2+1; coeff=(double *)malloc(sizeof(double)*width*support); PreCalc(); MakeRowBuffer(); } ImageSource_HLanczosSinc::~ImageSource_HLanczosSinc() { if(source) delete source; if(coeff) free(coeff); } photoprint-0.4.2-pre2/imagesource/imagesource_devicen_preview.cpp0000644000175000017500000001451511330104702022257 00000000000000/* * imagesource_ncolour_preview.cpp * * Renders an RGB preview of a DeviceN Image * Supports random access * * Copyright (c) 2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include "../support/util.h" #include "imagesource_devicen_preview.h" using namespace std; ISDeviceN_Colorant_Preview::ISDeviceN_Colorant_Preview() : red(0), green(0), blue(0), longname(NULL), alias(0) { } ISDeviceN_Colorant_Preview::ISDeviceN_Colorant_Preview(const char *longname,int red, int green, int blue, char alias) : red(EIGHTTOIS(red)),green(EIGHTTOIS(green)),blue(EIGHTTOIS(blue)),longname(NULL),alias(alias) { if(longname) this->longname=strdup(longname); } ISDeviceN_Colorant_Preview::ISDeviceN_Colorant_Preview(const char *longname) : red(EIGHTTOIS(red)),green(EIGHTTOIS(green)),blue(EIGHTTOIS(blue)),longname(NULL),alias(alias) { if(StrcasecmpIgnoreSpaces(longname,"Cyan")==0) { red=EIGHTTOIS(0); green=EIGHTTOIS(190); blue=EIGHTTOIS(255); alias='C'; } else if(StrcasecmpIgnoreSpaces(longname,"Magenta")==0) { red=EIGHTTOIS(255); green=EIGHTTOIS(0); blue=EIGHTTOIS(190); alias='M'; } else if(StrcasecmpIgnoreSpaces(longname,"Vivid Magenta")==0) { red=EIGHTTOIS(255); green=EIGHTTOIS(0); blue=EIGHTTOIS(190); alias='M'; } else if(StrcasecmpIgnoreSpaces(longname,"Yellow")==0) { red=EIGHTTOIS(255); green=EIGHTTOIS(255); blue=EIGHTTOIS(0); alias='Y'; } else if(StrcasecmpIgnoreSpaces(longname,"Black")==0) { red=EIGHTTOIS(0); green=EIGHTTOIS(0); blue=EIGHTTOIS(0); alias='K'; } else if(StrcasecmpIgnoreSpaces(longname,"Photo Black")==0) { red=EIGHTTOIS(0); green=EIGHTTOIS(0); blue=EIGHTTOIS(0); alias='K'; } else if(StrcasecmpIgnoreSpaces(longname,"Matte Black")==0) { red=EIGHTTOIS(0); green=EIGHTTOIS(0); blue=EIGHTTOIS(0); alias='T'; } else if(StrcasecmpIgnoreSpaces(longname,"Light Cyan")==0) { red=EIGHTTOIS(127); green=EIGHTTOIS(220); blue=EIGHTTOIS(255); alias='c'; } else if(StrcasecmpIgnoreSpaces(longname,"Light Magenta")==0) { red=EIGHTTOIS(255); green=EIGHTTOIS(127); blue=EIGHTTOIS(220); alias='m'; } else if(StrcasecmpIgnoreSpaces(longname,"Vivid Light Magenta")==0) { red=EIGHTTOIS(255); green=EIGHTTOIS(127); blue=EIGHTTOIS(220); alias='m'; } else if(StrcasecmpIgnoreSpaces(longname,"Light Black")==0) { red=EIGHTTOIS(127); green=EIGHTTOIS(127); blue=EIGHTTOIS(127); alias='k'; } else if(StrcasecmpIgnoreSpaces(longname,"Red")==0) { red=EIGHTTOIS(255); green=EIGHTTOIS(0); blue=EIGHTTOIS(0); alias='R'; } else if(StrcasecmpIgnoreSpaces(longname,"Blue")==0) { red=EIGHTTOIS(0); green=EIGHTTOIS(0); blue=EIGHTTOIS(255); alias='B'; } else throw "Unknown colorant"; if(longname) this->longname=strdup(longname); } ISDeviceN_Colorant_Preview::ISDeviceN_Colorant_Preview(const ISDeviceN_Colorant_Preview &other) : red(other.red), green(other.green), blue(other.blue), longname(NULL), alias(other.alias) { if(other.longname) longname=strdup(other.longname); } ISDeviceN_Colorant_Preview::~ISDeviceN_Colorant_Preview() { if(longname) free(longname); } ISDeviceN_Colorant_Preview &ISDeviceN_Colorant_Preview::operator=(const ISDeviceN_Colorant_Preview &other) { if(longname) free(longname); if(other.longname) longname=strdup(other.longname); red=other.red; green=other.green; blue=other.blue; alias=other.alias; return(*this); } ////////////////////////////////////////////////////////////////////////////// class ISDeviceNPreview_Colorant { public: ISDataType red,green,blue; }; ////////////////////////////////////////////////////////////////////////////// ImageSource_DeviceN_Preview::~ImageSource_DeviceN_Preview() { if(source) delete source; if(colorants) delete[] colorants; } ISDataType *ImageSource_DeviceN_Preview::GetRow(int row) { if(row==currentrow) return(rowbuffer); ISDataType *srcdata=source->GetRow(row); switch(type) { case IS_TYPE_RGBA: for(int x=0;xsamplesperpixel-1;++s) { unsigned int t=srcdata[x*source->samplesperpixel+s]; unsigned int tr=IS_SAMPLEMAX-((IS_SAMPLEMAX-colorants[s].red)*t)/IS_SAMPLEMAX; unsigned int tg=IS_SAMPLEMAX-((IS_SAMPLEMAX-colorants[s].green)*t)/IS_SAMPLEMAX; unsigned int tb=IS_SAMPLEMAX-((IS_SAMPLEMAX-colorants[s].blue)*t)/IS_SAMPLEMAX; if(trsamplesperpixel+source->samplesperpixel-1]; } break; case IS_TYPE_RGB: for(int x=0;xsamplesperpixel;++s) { unsigned int t=srcdata[x*source->samplesperpixel+s]; unsigned int tr=IS_SAMPLEMAX-((IS_SAMPLEMAX-colorants[s].red)*t)/IS_SAMPLEMAX; unsigned int tg=IS_SAMPLEMAX-((IS_SAMPLEMAX-colorants[s].green)*t)/IS_SAMPLEMAX; unsigned int tb=IS_SAMPLEMAX-((IS_SAMPLEMAX-colorants[s].blue)*t)/IS_SAMPLEMAX; if(trsamplesperpixel; if(HAS_ALPHA(type)) { type=IS_TYPE_RGBA; samplesperpixel=4; --sourcespp; } else { type=IS_TYPE_RGB; samplesperpixel=3; } int c=cols->GetColorantCount(); if((c-firstcolorant)red); colorants[i].green=EIGHTTOIS(col->green); colorants[i].blue=EIGHTTOIS(col->blue); } MakeRowBuffer(); } photoprint-0.4.2-pre2/imagesource/imagesource_scaledensity.cpp0000644000175000017500000000432111116467473021605 00000000000000/* * imagesource_scaledensity.cpp * Scales values in an imagesource according to a given value. * Scales RGB towards IS_SAMPLEMAX, scales Grey and CMYK towards 0. * * Copyright (c) 2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include "imagesource_scaledensity.h" using namespace std; ImageSource_ScaleDensity::~ImageSource_ScaleDensity() { if(source) delete source; } ISDataType *ImageSource_ScaleDensity::GetRow(int row) { ISDataType *src; if(row==currentrow) return(rowbuffer); src=source->GetRow(row); switch(STRIP_ALPHA(type)) { case IS_TYPE_RGB: // RGB is the only colourspace in which we treat 0 as black. if(HAS_ALPHA(type)) // We don't want to scale the alpha channel! { for(int i=0;i #include "imagesource_hsweep.h" ISDataType *ImageSource_HSweep::GetRow(int row) { if(currentrow==row) return(rowbuffer); for(int x=0;xtype=type; this->width=width; this->height=height; this->samplesperpixel=left.GetChannels(); randomaccess=true; MakeRowBuffer(); } ImageSource_HSweep::~ImageSource_HSweep() { } photoprint-0.4.2-pre2/imagesource/imagesource_util.h0000644000175000017500000000141611076423574017541 00000000000000#ifndef IMAGESOURCE_UTIL_H #define IMAGESOURCE_UTIL_H #include "imagesource.h" enum IS_ScalingQuality { IS_SCALING_AUTOMATIC, IS_SCALING_NEARESTNEIGHBOUR, IS_SCALING_BILINEAR, IS_SCALING_LANCZOSSINC, IS_SCALING_MAX, IS_SCALING_DOWNSAMPLE // An extra entry used for high-quality image reduction. }; struct IS_ScalingQualityDescription { const char *Name; const char *Description; }; ImageSource *ISLoadImage(const char *filename); ImageSource *ISScaleImageByResolution(ImageSource *source,double xres,double yres,IS_ScalingQuality quality=IS_SCALING_AUTOMATIC); ImageSource *ISScaleImageBySize(ImageSource *source,int w,int h,IS_ScalingQuality quality=IS_SCALING_AUTOMATIC); const IS_ScalingQualityDescription *DescribeScalingQuality(IS_ScalingQuality quality); #endif photoprint-0.4.2-pre2/imagesource/imagesource_desaturate.cpp0000644000175000017500000000313311076423574021256 00000000000000/* * imagesource_desaturate.cpp * * Supports Greyscale and RGB data * Supports random access * * Copyright (c) 2007 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * * TODO: Support CMYK Data * */ #include #include #include #include #include "imagesource_desaturate.h" using namespace std; ImageSource_Desaturate::~ImageSource_Desaturate() { if(source) delete source; } ISDataType *ImageSource_Desaturate::GetRow(int row) { if(row==currentrow) return(rowbuffer); ISDataType *srcdata=source->GetRow(row); switch(type) { case IS_TYPE_GREY: case IS_TYPE_GREYA: // Grey images are already desaturated by definition // so no-op. return(srcdata); break; case IS_TYPE_RGB: { for(int s=0;stype)==IS_TYPE_CMYK) throw "Desaturate: CMYK Images not yet supported."; MakeRowBuffer(); } photoprint-0.4.2-pre2/imagesource/imagesource_histogram.h0000644000175000017500000001002411216777576020566 00000000000000// imagesource_histogram.h // Copyright (c) 2009 by Alastair M. Robinson // // This imagesource performs a straight pass-through of the image data // but counts pixel values as it goes, creating a histogram. // The histogram itself is owned by the client application and is supplied // by reference, so much remain valid for the lifetime of the // ImageSource_Histogram. // #ifndef IMAGESOURCE_HISTOGRAM_H #define IMAGESOURCE_HISTOGRAM_H #define IS_HISTOGRAM_BUCKETS 256 #include "imagesource.h" // An individual channel's histogram. Access the data using the [] operator. // A reference is returned, so the result can be modified as well as read. class ISHistogram_Channel { public: ISHistogram_Channel() : channeldata(NULL) { channeldata=new int[IS_HISTOGRAM_BUCKETS]; } ~ISHistogram_Channel() { if(channeldata) delete[] channeldata; } int &operator[](int samp) { if(samp>=IS_HISTOGRAM_BUCKETS || samp<0) throw "ISHistogram_Channel: Sample out of range"; // std::cerr << "bucket " << samp << " - current value " << channeldata[samp] << std::endl; return(channeldata[samp]); } void Clear() { for(int i=0;isamplesperpixel,is->type); } ISHistogram() : channels(NULL), channelcount(0), type(IS_TYPE_NULL) { } ~ISHistogram() { if(channels) delete[] channels; } // Use this to set or change the number of channels and image type. // The type will be used by the histogram display widget to choose // which colorants to use when drawing the histogram. void SetHistogramType(int channelcount,IS_TYPE type=IS_TYPE_RGB) { this->channelcount=channelcount; this->type=type; if(channels) delete[] channels; channels=new ISHistogram_Channel[channelcount]; Clear(); } // Access the histogram channels through the [] operator. // The result is returned as a reference so you can follow it with // another [] to access a specific bucket within a channel. ISHistogram_Channel &operator[](int chan) { if(!channels) throw "ISHistogram: Must set the histogram type before use!"; if(chan>=channelcount || chan<0) throw "ISHistogram: Channel out of range"; return(channels[chan]); } void Clear() { if(!channels) throw "ISHistogram: Must set the histogram type before use!"; for(int i=0;imax) max=t; } } return(max); } protected: ISHistogram_Channel *channels; int channelcount; int samplecount; IS_TYPE type; }; // Wedge this into a chain of imagesources - it will tally the pixels as they're processed, but // pass them though unmodified. class ImageSource_Histogram : public ImageSource { public: ImageSource_Histogram(ImageSource *source,ISHistogram &histogram); ~ImageSource_Histogram(); ISDataType *GetRow(int row); protected: ImageSource *source; ISHistogram &histogram; }; #endif photoprint-0.4.2-pre2/imagesource/imagesource.h0000644000175000017500000000205511262073141016470 00000000000000/* * imagesource.h - base class for the efficient scanline-based * handling of extremely large images. * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #ifndef IMAGESOURCE_H #define IMAGESOURCE_H #include #include "imagesource_types.h" class CMSProfile; class ImageSource { public: ImageSource(); ImageSource(int width, int height, IS_TYPE type=IS_TYPE_RGB); ImageSource(ImageSource *src); virtual ~ImageSource(); virtual ISDataType *GetRow(int row)=0; void MakeRowBuffer(); void SetResolution(double xr,double yr); inline CMSProfile *GetEmbeddedProfile() // Inlined to avoid link order problems { return(embeddedprofile); } void SetEmbeddedProfile(CMSProfile *profile,bool assumeownership=false); int width,height; enum IS_TYPE type; int samplesperpixel; double xres,yres; bool randomaccess; protected: CMSProfile *embeddedprofile; bool embprofowned; int currentrow; ISDataType *rowbuffer; }; #endif photoprint-0.4.2-pre2/imagesource/convkernel_unsharpmask.h0000644000175000017500000000125211076423574020761 00000000000000// convkernel_unsharpmask.h - a class to create convolution kernel. // Copyright (C) 2008 by Alastair M. Robinson #ifndef CONVKERNEL_UNSHARPMASK #define CONVKERNEL_UNSHARPMASK #include #include #include "convkernel.h" #include "convkernel_gaussian.h" class ConvKernel_UnsharpMask : public ConvKernel_Gaussian { public: ConvKernel_UnsharpMask(float radius,float amount) : ConvKernel_Gaussian(radius), amount(amount) { Normalize(); for(int y=0;y using namespace std; class ImageSource_GS : public ImageSource { public: ImageSource_GS(const char *filename,int resolution); ~ImageSource_GS(); ISDataType *GetRow(int row); private: char *tiffname; ImageSource *source; }; #endif photoprint-0.4.2-pre2/imagesource/imagesource_downsample.cpp0000644000175000017500000001176411266376061021276 00000000000000/* Imagesource_Downsample - a sub-pixel box-filter downsampling routine (c) 2004-2008 by Alastair M. Robinson Re-implemented from scratch using a better algorithm 2008-05-17 */ #include #include #include #include "../support/debug.h" #include "imagesource_downsample.h" using namespace std; // Downsampling is implemented as a chaining of a horizontal, then a vertical downsampling. ImageSource_Downsample::~ImageSource_Downsample() { if(source) delete source; } ISDataType *ImageSource_Downsample::GetRow(int row) { return(source->GetRow(row)); } ImageSource_Downsample::ImageSource_Downsample(struct ImageSource *source,int width,int height) : ImageSource(source), source(source) { this->source=new ImageSource_HDownsample(this->source,width); this->source=new ImageSource_VDownsample(this->source,height); xres=this->source->xres; yres=this->source->yres; this->randomaccess=this->source->randomaccess; this->width=width; this->height=height; } // Horizontal downsampling ImageSource_HDownsample::~ImageSource_HDownsample() { if(source) delete source; } ISDataType *ImageSource_HDownsample::GetRow(int row) { if(currentrow==row) return(rowbuffer); currentrow=row; // We accumulate pixel values from a potentially // large number of pixels and process all the samples // in a pixel at one time. double tmp[IS_MAX_SAMPLESPERPIXEL]; for(int i=0;iGetRow(row); // We use a Bresenham-esque method of calculating the // pixel boundaries for scaling - add the smaller value // to an accumulator until it exceeds the larger value, // then subtract the larger value, leaving the remainder // in place for the next round. int a=0; int src=0; int dst=0; while(dstwidth) { if(src>=source->width) src=source->width-1; for(int i=0;iwidth-(a-width); p/=width; // p now contains the proportion of the next pixel // to be counted towards the output pixel. a-=source->width; // And a now contains the remainder, // ready for the next round. // So we add p * the new source pixel // to the current output pixel... if(src>=source->width) src=source->width-1; for(int i=0;iwidth; } ++dst; // And start off the next output pixel with // (1-p) * the source pixel. for(int i=0;iwidth=width; xres=(source->xres*width); xres/=source->width; MakeRowBuffer(); } // Vertical downsampling routine ImageSource_VDownsample::~ImageSource_VDownsample() { if(source) delete source; if(tmp) free(tmp); } ISDataType *ImageSource_VDownsample::GetRow(int row) { if(currentrow==row) return(rowbuffer); currentrow=row; ISDataType *srcdata; // Add the smaller value (destination width) acc+=height; // As long as the counter is less than the larger value, we take full pixels. while(accheight) { if(srcrow>=source->height) srcrow=source->height-1; srcdata=source->GetRow(srcrow++); for(int i=0;iheight-(acc-height); p/=height; // p now contains the proportion of the next row to be counted towards the output row. acc-=source->height; // And acc now contains the remainder, ready for the next round. // So we add p * the new source pixel to the current output pixel... if(srcrow>=source->height) srcrow=source->height-1; srcdata=source->GetRow(srcrow); for(int i=0;iheight; // And start off the next output pixel with (1-p) * the source pixel. for(int i=0;iheight=height; yres=(source->yres*height); yres/=source->height; randomaccess=false; MakeRowBuffer(); if(!(tmp=(double *)malloc(sizeof(double)*width*samplesperpixel))) throw "Can't allocate scaling buffer!"; for(int i=0;iRGB conversion * */ #include #include #include #include #include #include #include "../support/debug.h" #include "imagesource_tiff.h" #include "../profilemanager/lcmswrapper.h" using namespace std; class IS_TIFFStrip { public: IS_TIFFStrip(ImageSource_TIFF *header,int row); ~IS_TIFFStrip(); private: void Dump(struct IS_TIFFStrip *strip); int firstrow; int lastrow; unsigned char *imgdata; IS_TIFFStrip *next,*prev; ImageSource_TIFF *header; friend class ImageSource_TIFF; }; ImageSource_TIFF::~ImageSource_TIFF() { if(file) TIFFClose(file); while(strips) delete strips; } IS_TIFFStrip::~IS_TIFFStrip() { if(next) next->prev=prev; if(prev) prev->next=next; else header->strips=next; if(imgdata) free(imgdata); } IS_TIFFStrip::IS_TIFFStrip(ImageSource_TIFF *header,int row) : next(NULL), header(header) { int i,j; if((prev=header->strips)) { while(prev->next) prev=prev->next; prev->next=this; } else header->strips=this; i=row/header->stripheight; header->filerow=i*header->stripheight; firstrow=header->filerow; lastrow=header->filerow+header->stripheight-1; if(lastrow>=header->height) lastrow=header->height-1; imgdata=(unsigned char *)malloc(header->stripsize); switch(header->photometric) { case PHOTOMETRIC_MINISWHITE: switch(header->bps) { case 1: TIFFReadEncodedStrip(header->file, i, imgdata, (tsize_t)-1); break; case 8: // switch(header->samplesperpixel) // { // case 1: TIFFReadEncodedStrip(header->file, i, imgdata, (tsize_t)-1); break; // case 2: // TIFFReadEncodedStrip(header->file, i, imgdata, (tsize_t)-1); // for(j=0;j<(header->stripsize/2);++j) // imgdata[j]=imgdata[j*2]; // break; // default: // break; // } break; case 16: switch(header->samplesperpixel) { case 1: TIFFReadEncodedStrip(header->file, i, imgdata, (tsize_t)-1); break; default: Debug[ERROR] << "FIXME - 16-bit greyscale data with 2 samples per pixel not yet handled" << endl; break; } break; } break; case PHOTOMETRIC_MINISBLACK: switch(header->bps) { case 1: TIFFReadEncodedStrip(header->file, i, imgdata, (tsize_t)-1); for(j=0;j<(header->stripsize);++j) imgdata[j]=imgdata[j]^255; break; case 8: // switch(header->samplesperpixel) // { // case 1: TIFFReadEncodedStrip(header->file, i, imgdata, (tsize_t)-1); for(j=0;j<(header->stripsize);++j) imgdata[j]=255-imgdata[j]; // break; // case 2: // TIFFReadEncodedStrip(header->file, i, imgdata, (tsize_t)-1); // for(j=0;j<(header->stripsize/2);++j) // imgdata[j]=255-imgdata[j*2]; // break; // default: // break; // } break; case 16: switch(header->samplesperpixel) { case 1: TIFFReadEncodedStrip(header->file, i, imgdata, (tsize_t)-1); { for(j=0;j<(header->stripsize/2);++j) imgdata[j]=imgdata[j]^65535; } break; default: Debug[ERROR] << "FIXME - 16-bit greyscale data with 2 samples per pixel not yet handled" << endl; break; } break; } break; case PHOTOMETRIC_PALETTE: TIFFReadEncodedStrip(header->file, i, imgdata, (tsize_t)-1); for(j=0;j<(header->stripsize);++j) imgdata[j]=header->greypalette[imgdata[j]]; break; case PHOTOMETRIC_RGB: case PHOTOMETRIC_SEPARATED: TIFFReadEncodedStrip(header->file, i, imgdata, (tsize_t)-1); break; default: break; } } IS_TIFFStrip *ImageSource_TIFF::GetStrip(int row) { IS_TIFFStrip *strip; strip=strips; while((strip) && ((strip->firstrow>row) || (strip->lastrownext; delete strip; strip=next; } if(!(strip)) strip=new IS_TIFFStrip(this,row); return(strip); } ISDataType *ImageSource_TIFF::GetRow(int row) { unsigned char *srcrow=NULL; struct IS_TIFFStrip *strip; if(currentrow==row) return(rowbuffer); strip=GetStrip(row); if(strip) { int i,j,t,t2; if(bps==16) srcrow=strip->imgdata+(row-strip->firstrow)*spr*2; else srcrow=strip->imgdata+(row-strip->firstrow)*spr; switch(bps) { case 1: for(i=0;i7 ? 8 : width-i*8 );++j) { t2=0; if(t&128) t2=255; t<<=1; rowbuffer[i*8+j]=EIGHTTOIS(t2); } } break; case 8: for(i=0;ilargestarea) { largestarea=width*height; largestdir=count-1; } } while(TIFFReadDirectory(file)); if(file) TIFFClose(file); file=NULL; Debug[TRACE] << "A total of " << count << "sub-images, the largest being " << largestdir << endl; return(count); } ImageSource_TIFF::ImageSource_TIFF(const char *filename) : ImageSource() { ttile_t stripcount=0; uint16 photometric=0,spp=0,bps=0; uint32 width=0,height=0,sl=0; uint32 stripsize=0; float xres=72.0; float yres=72.0; uint16 resunit=RESUNIT_INCH; uint16 *palettered,*palettegreen,*paletteblue; uint16 inkset; int i; type=IS_TYPE_NULL; strips=NULL; int largestimage=0; CountTIFFDirs(filename,largestimage); if(!(file=TIFFOpen(filename,"r"))) { throw "Can't open file..."; } // TIFFReadDirectory(file); TIFFGetField(file, TIFFTAG_PHOTOMETRIC, &photometric); TIFFGetField(file, TIFFTAG_SAMPLESPERPIXEL, &spp); TIFFGetField(file, TIFFTAG_BITSPERSAMPLE, &bps); TIFFGetField(file, TIFFTAG_IMAGEWIDTH, &width); TIFFGetField(file, TIFFTAG_IMAGELENGTH, &height); TIFFGetField(file, TIFFTAG_ROWSPERSTRIP, &sl); // If striplength is undefined, assume the image data is in a single strip. if(sl==0) sl=height; switch(bps) { case 1: case 8: case 16: break; default: throw "Source file should have either 1, 8 or 16 bits per sample..."; break; } stripsize=TIFFStripSize(file); stripcount=TIFFNumberOfStrips(file); switch(photometric) { case PHOTOMETRIC_MINISWHITE: case PHOTOMETRIC_MINISBLACK: if(bps==1) type=IS_TYPE_BW; else { switch(spp) { case 1: type=IS_TYPE_GREY; break; case 2: type=IS_TYPE_GREYA; break; default: break; } } break; case PHOTOMETRIC_PALETTE: TIFFGetField(file, TIFFTAG_COLORMAP,&palettered,&palettegreen,&paletteblue); for(i=0;i<256;++i) { int r=palettered[i]>>8; int g=palettegreen[i]>>8; int b=paletteblue[i]>>8; int grey=(r+g+b)/3; greypalette[i]=grey; } if(bps==1) { if((greypalette[0]==0) && (greypalette[1]==255)) { photometric=PHOTOMETRIC_MINISBLACK; } else if((greypalette[0]==255) && (greypalette[1]==0)) { photometric=PHOTOMETRIC_MINISWHITE; } type=IS_TYPE_BW; } else type=IS_TYPE_GREY; break; case PHOTOMETRIC_RGB: switch(spp) { case 3: type=IS_TYPE_RGB; break; case 4: type=IS_TYPE_RGBA; break; default: throw "ISTIFF Panic: RGB images must have 3 or 4 samples per pixel!"; break; } break; case PHOTOMETRIC_SEPARATED: TIFFGetField(file, TIFFTAG_INKSET, &inkset); switch(spp) { case 4: type=IS_TYPE_CMYK; break; case 5: type=IS_TYPE_CMYKA; break; default: type=IS_TYPE_DEVICEN; break; } break; default: throw "Unsupported file format - must be either 1, 8 or 16-bit greyscale, RGB or CMYK..."; } TIFFGetField(file, TIFFTAG_RESOLUTIONUNIT, &resunit); TIFFGetField(file, TIFFTAG_XRESOLUTION, &xres); TIFFGetField(file, TIFFTAG_YRESOLUTION, &yres); char *profbuffer; int proflen; if(TIFFGetField(file, TIFFTAG_ICCPROFILE, &proflen, &profbuffer)) { SetEmbeddedProfile(new CMSProfile(profbuffer,proflen),true); } if(resunit==RESUNIT_CENTIMETER) { xres*=2.54; yres*=2.54; } Debug[TRACE] << "Resolution: " << xres << " by " << yres << endl; this->width=width; this->height=height; this->stripheight=sl; this->stripsize=stripsize; this->stripcount=stripcount; this->xres=int(xres); this->yres=int(yres); this->resunit=resunit; this->samplesperpixel=spp; this->bps=bps; this->photometric=photometric; filerow=0; randomaccess=true; this->spr=(width*samplesperpixel); if(bps==1) this->spr=(this->spr+7)/8; source_spp=samplesperpixel; // This is no longer valid. If memory serves it was to hack around Greyscale TIFFs with Alpha. // FIXME: Verify that greyscale TIFFs with Alpha still work OK! // if(samplesperpixel==2) // { // this->spr/=2; // } Debug[TRACE] << "TIFF Samples per pixel: " << samplesperpixel << endl; Debug[TRACE] << "Samples per row: " << this->spr << endl; MakeRowBuffer(); } photoprint-0.4.2-pre2/imagesource/imagesource_gamma.cpp0000644000175000017500000000414011135152067020166 00000000000000/* * imagesource_gamma.cpp * Gamma-corrects an image. * * Copyright (c) 2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include "imagesource_gamma.h" using namespace std; ImageSource_Gamma::~ImageSource_Gamma() { if(source) delete source; } ISDataType *ImageSource_Gamma::GetRow(int row) { ISDataType *src; if(row==currentrow) return(rowbuffer); src=source->GetRow(row); switch(STRIP_ALPHA(type)) { case IS_TYPE_RGB: // RGB is the only colourspace in which we treat 0 as black. if(HAS_ALPHA(type)) // We don't want to adjust the alpha channel! { for(int i=0;i #include "imagesource.h" #include "devicencolorant.h" // A Colorant preview is just an RGB approximate of a colorant's colour. // This is used by the DeviceN Preview to render an approximate RGB // impression of the complete DeviceN image. // TODO: A colorimetrically-correct approach. class ImageSource_DeviceN_Preview; class ISDeviceN_Colorant_Preview { public: ISDeviceN_Colorant_Preview(); ISDeviceN_Colorant_Preview(const char *longname,int red, int green, int blue, char alias=0); ISDeviceN_Colorant_Preview(const char *longname); ISDeviceN_Colorant_Preview(const ISDeviceN_Colorant_Preview &other); ISDeviceN_Colorant_Preview &operator=(const ISDeviceN_Colorant_Preview &other); ~ISDeviceN_Colorant_Preview(); ISDataType red, green, blue; char *longname; char alias; friend class ImageSource_DeviceN_Preview; }; // These defines can be used in creating colorant tables to avoid // specifying RGB values directly. #define ISDEVICEN_PREVIEW_CYAN ISDeviceN_Colorant_Preview("Cyan",0,190,255,'C') #define ISDEVICEN_PREVIEW_MAGENTA ISDeviceN_Colorant_Preview("Magenta",255,0,190,'M') #define ISDEVICEN_PREVIEW_YELLOW ISDeviceN_Colorant_Preview("Yellow",255,255,0,'Y') #define ISDEVICEN_PREVIEW_BLACK ISDeviceN_Colorant_Preview("Black",0,0,0,'K') #define ISDEVICEN_PREVIEW_LIGHTCYAN ISDeviceN_Colorant_Preview("Light Cyan",127,220,255,'c') #define ISDEVICEN_PREVIEW_LIGHTMAGENTA ISDeviceN_Colorant_Preview("Light Magenta",255,127,220,'m') #define ISDEVICEN_PREVIEW_LIGHTBLACK ISDeviceN_Colorant_Preview("Light Black",127,127,127,'k') #define ISDEVICEN_PREVIEW_RED ISDeviceN_Colorant_Preview("Red",255,0,0,'R') #define ISDEVICEN_PREVIEW_BLUE ISDeviceN_Colorant_Preview("Blue",0,0,255,'B') class ISDeviceNPreview_Colorant; class ImageSource_DeviceN_Preview : public ImageSource { public: ImageSource_DeviceN_Preview(ImageSource *source,DeviceNColorantList *cols,int firstcolorant=0); ~ImageSource_DeviceN_Preview(); ISDataType *GetRow(int row); protected: ImageSource *source; ISDeviceNPreview_Colorant *colorants; }; #endif photoprint-0.4.2-pre2/imagesource/imagesource_flatten.h0000644000175000017500000000104311076423574020215 00000000000000/* * imagesource_flatten.h * * Supports RGB and CMYK data * Supports random access * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #ifndef IMAGESOURCE_FLATTEN_H #define IMAGESOURCE_FLATTEN_H #include "imagesource.h" class ImageSource_Flatten : public ImageSource { public: ImageSource_Flatten(ImageSource *source); ~ImageSource_Flatten(); ISDataType *GetRow(int row); private: ImageSource *source; }; #endif photoprint-0.4.2-pre2/imagesource/imagesource_gdkpixbuf.h0000644000175000017500000000141511076423574020546 00000000000000/* * imagesource_gdkpixbuf.h * 24-bit RGB and 8-bit Greyscale BMP scanline-based Loader * Supports Random Access * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #ifndef IMAGESOURCE_GDKPIXBUF_H #define IMAGESOURCE_GDKPIXBUF_H #include "imagesource.h" #include #include using namespace std; class ImageSource_GdkPixbuf : public ImageSource { public: ImageSource_GdkPixbuf(const char *filename); ImageSource_GdkPixbuf(GdkPixbuf *pixbuf); ~ImageSource_GdkPixbuf(); ISDataType *GetRow(int row); void Init(); private: GdkPixbuf *pixbuf; gint bitspersample; gint rowstride; guchar *pixels; bool hasalpha; }; #endif photoprint-0.4.2-pre2/imagesource/imagesource_unsharpmask.cpp0000644000175000017500000001103311076423574021447 00000000000000/* * imagesource_unsharpmask.cpp - Applies an Unsharp Mask filter to an image. * * Supports Greyscale, RGB and CMYK data * Doesn't (yet) support random access * * Copyright (c) 2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include "imagesource_unsharpmask.h" #include "convkernel_unsharpmask.h" #include "convkernel_gaussian_1D.h" using namespace std; // The row cache is just a simplistic ring-buffer type cache which handles // the details of tracking several rows of "support" data. class ISUnsharpMask_RowCache { public: ISUnsharpMask_RowCache(ImageSource_UnsharpMask *source); ~ISUnsharpMask_RowCache(); ISDataType *GetRawRow(int row); float *GetConvRow(int row); private: ImageSource_UnsharpMask *source; float *convcache; ISDataType *rawcache; int cachewidth,cachehoffset; int bufferrows; int rawcurrentrow; int convcurrentrow; }; ISUnsharpMask_RowCache::~ISUnsharpMask_RowCache() { if(convcache) free(convcache); if(rawcache) free(rawcache); } ISUnsharpMask_RowCache::ISUnsharpMask_RowCache(ImageSource_UnsharpMask *source) : source(source), rawcurrentrow(-1), convcurrentrow(-1) { cachewidth=source->width+source->hextra*2; cachehoffset=source->hextra; bufferrows=source->vextra*2+1; convcache=(float *)malloc(sizeof(float)*source->samplesperpixel*cachewidth*bufferrows); rawcache=(ISDataType *)malloc(sizeof(float)*source->samplesperpixel*source->width*bufferrows); } inline float *ISUnsharpMask_RowCache::GetConvRow(int row) { if(row<0) row=0; if(row>=source->source->height) row=source->source->height-1; int crow=row%(source->vextra*2+1); float *rowptr=convcache+crow*source->samplesperpixel*cachewidth; if(row>convcurrentrow) { convcurrentrow=row; ISDataType *src=GetRawRow(row); // Convolve the temp row into the cache; for(int x=0;xkernel->GetWidth();++kx) { int sx=x+kx-cachehoffset*2; if(sx<0) sx=0; if(sx>source->width) sx=source->width-1; for(int s=0;ssamplesperpixel;++s) { t[s]+=source->kernel->Kernel(kx,0)*src[sx*source->samplesperpixel+s]; } } for(int s=0;ssamplesperpixel;++s) { rowptr[x*source->samplesperpixel+s]=t[s]; } } } return(rowptr+cachehoffset*source->samplesperpixel); } inline ISDataType *ISUnsharpMask_RowCache::GetRawRow(int row) { if(row<0) row=0; if(row>=source->source->height) row=source->source->height-1; int crow=row%(source->vextra*2+1); ISDataType *rowptr=rawcache+crow*source->samplesperpixel*source->width; if(row>rawcurrentrow) { rawcurrentrow=row; ISDataType *src=source->source->GetRow(row); // Store the row to be cached in a temporary buffer... for(int s=0;swidth*source->samplesperpixel;++s) { rowptr[s]=src[s]; } } return(rowptr); } ImageSource_UnsharpMask::~ImageSource_UnsharpMask() { if(tmprows) free(tmprows); if(cache) delete cache; if(source) delete source; if(kernel) delete kernel; } ISDataType *ImageSource_UnsharpMask::GetRow(int row) { if(row==currentrow) return(rowbuffer); int kh=kernel->GetWidth(); // Using a 1D kernel! for(int r=0;rGetConvRow(row+(r-vextra)); } ISDataType *srcrow=cache->GetRawRow(row); for(int x=0;xKernel(ky,0) * tmprows[ky][x*samplesperpixel+s]; } } for(int s=0;sIS_SAMPLEMAX) out=IS_SAMPLEMAX; rowbuffer[x*samplesperpixel+s]=ISDataType(out); } } currentrow=row; return(rowbuffer); } ImageSource_UnsharpMask::ImageSource_UnsharpMask(struct ImageSource *source,float radius,float amount,float threshold) : ImageSource(source), source(source), kernel(NULL), amount(amount), threshold(threshold*threshold) { kernel=new ConvKernel_Gaussian_1D(radius); kernel->Normalize(); hextra=kernel->GetWidth()/2; vextra=hextra; cache=new ISUnsharpMask_RowCache(this); tmprows=(float **)malloc(sizeof(float *)*kernel->GetWidth()); MakeRowBuffer(); randomaccess=false; } photoprint-0.4.2-pre2/imagesource/imagesource_bilinear.h0000644000175000017500000000244211076423574020351 00000000000000/* * imagesource_bilinear.h - Interpolated scaling filter * Implements bilinear scaling * * Supports all colourspaces * Doesn't (yet) support random access * * Copyright (c) 2004-2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * * 2008-06-06: split the horizontal and vertical scaling into separate stages * to allow support for downsampling in one dimension while upsampling * in the other. * */ #ifndef IMAGESOURCE_BILINEAR_H #define IMAGESOURCE_BILINEAR_H #include "imagesource.h" class ImageSource_Bilinear : public ImageSource { public: ImageSource_Bilinear(ImageSource *source,int width,int height); ~ImageSource_Bilinear(); ISDataType *GetRow(int row); protected: ImageSource *source; }; class ImageSource_HBilinear : public ImageSource { public: ImageSource_HBilinear(ImageSource *source,int dstwidth); ~ImageSource_HBilinear(); ISDataType *GetRow(int row); protected: ImageSource *source; }; class ImageSource_VBilinear : public ImageSource { public: ImageSource_VBilinear(ImageSource *source,int dstheight); ~ImageSource_VBilinear(); ISDataType *GetRow(int row); protected: ImageSource *source; ISDataType *lastrow; int cachedrow; }; #endif photoprint-0.4.2-pre2/imagesource/imagesource_segmentmask.h0000644000175000017500000000107311076423574021101 00000000000000/* * imagesource_segmentmask.h * Supports Random Access * * Copyright (c) 2005 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #ifndef IMAGESOURCE_SEGMENTMASK_H #define IMAGESOURCE_SEGMENTMASK_H #include "imagesource.h" class CMSegment; class ImageSource_SegmentMask : public ImageSource { public: ImageSource_SegmentMask(CMSegment *seg,bool fade); ~ImageSource_SegmentMask(); ISDataType *GetRow(int row); private: CMSegment *segment; bool fade; }; #endif photoprint-0.4.2-pre2/imagesource/convkernel_gaussian_1D.h0000644000175000017500000000232411076423574020564 00000000000000// convkernel_gaussian.h - a class to create a gaussian convolution kernel. // Copyright (C) 2008 by Alastair M. Robinson #ifndef CONVKERNEL_GAUSSIAN_1D #define CONVKERNEL_GAUSSIAN_1D #include #include #include "convkernel.h" class ConvKernel_Gaussian_1D : public ConvKernel { public: ConvKernel_Gaussian_1D(float radius) : ConvKernel() { // Sanity-check the provided radius. Any radius less than 0.5 will result in // a single cell kernel, containing just a "1". Radius of zero leads to // a divide-by-zero later, though, so we avoid it by clamping the radius. if(radius<=0.1) radius=0.1; // Calculate the standard deviation of the gaussian distribution. // This is calculated such that the extreme north, south, east and west // cells will contain the value 0.01 - or whatever's in the log() function. sd=sqrt(-(radius*radius)/(2*log(0.01))); Initialize(int(radius+0.5)*2+1); } virtual ~ConvKernel_Gaussian_1D() { } virtual void Initialize(int width) { // Use the superclass to allocate the kernel itself; ConvKernel::Initialize(width,1); for(int x=0;x #include #include #include #include "imagesource_mask.h" using namespace std; ImageSource_Mask::~ImageSource_Mask() { if(source) delete source; if(mask) delete mask; } ISDataType *ImageSource_Mask::GetRow(int row) { if(row==currentrow) return(rowbuffer); ISDataType *srcdata=source->GetRow(row); ISDataType *maskdata=mask->GetRow(row); if(source->type&IS_TYPE_ALPHA) { for(int x=0;xsamplesperpixel-1;++s) rowbuffer[x*samplesperpixel+s]=srcdata[x*source->samplesperpixel+s]; rowbuffer[(x+1)*samplesperpixel-1]= (srcdata[(x+1)*source->samplesperpixel-1]*maskdata[x*mask->samplesperpixel])/IS_SAMPLEMAX; } } else { for(int x=0;xsamplesperpixel;++s) rowbuffer[x*samplesperpixel+s]=srcdata[x*source->samplesperpixel+s]; rowbuffer[(x+1)*samplesperpixel-1]=maskdata[x*mask->samplesperpixel]; } } currentrow=row; return(rowbuffer); } ImageSource_Mask::ImageSource_Mask(struct ImageSource *source,ImageSource *mask) : ImageSource(source), source(source), mask(mask) { if((source->width!=mask->width)||(source->height!=mask->height)) throw "Source and mask dimensions must match!"; if(STRIP_ALPHA(mask->type)!=IS_TYPE_GREY) throw "Mask should be a greyscale image"; switch(source->type) { case IS_TYPE_RGB: type=IS_TYPE_RGBA; samplesperpixel=4; break; case IS_TYPE_CMYK: type=IS_TYPE_CMYKA; samplesperpixel=5; break; case IS_TYPE_RGBA: case IS_TYPE_CMYKA: type=source->type; break; default: throw "IS_MASK: source type unsupported"; break; } MakeRowBuffer(); } photoprint-0.4.2-pre2/imagesource/imagesource_desaturate.h0000644000175000017500000000112311076423574020720 00000000000000/* * imagesource_desaturate.h * * Supports Grey and RGB data * Supports random access * * Copyright (c) 2007 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * * TODO: Support CMYK Data * */ #ifndef IMAGESOURCE_DESATURATE_H #define IMAGESOURCE_DESATURATE_H #include "imagesource.h" class ImageSource_Desaturate : public ImageSource { public: ImageSource_Desaturate(ImageSource *source); ~ImageSource_Desaturate(); ISDataType *GetRow(int row); private: ImageSource *source; }; #endif photoprint-0.4.2-pre2/imagesource/imagesource_cms.h0000644000175000017500000000176211250527476017352 00000000000000/* * imagesource_cms.h * ImageSource Colour Management filter. * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * * TODO: Clean up handling of image types other than RGB */ #ifndef IMAGESOURCE_CMS_H #define IMAGESOURCE_CMS_H #include "imagesource.h" #include "lcmswrapper.h" class ImageSource_CMS : public ImageSource { public: // ImageSource_CMS(ImageSource *source,CMSDB &inp,CMSDB &outp); // ImageSource_CMS(ImageSource *source,CMSProfile *inp,CMSDB &outp); ImageSource_CMS(ImageSource *source,CMSProfile *inp,CMSProfile *outp); ImageSource_CMS(ImageSource *source,CMSTransform *transform); virtual ~ImageSource_CMS(); ISDataType *GetRow(int row); private: void Init(); ImageSource *source; CMSTransform *transform; bool disposetransform; int tmpsourcespp; int tmpdestspp; unsigned short *tmp1; unsigned short *tmp2; }; #endif photoprint-0.4.2-pre2/imagesource/imagesource_overlay.h0000644000175000017500000000305611341337271020240 00000000000000#ifndef IMAGESOURCE_OVERLAY_H #define IMAGESOURCE_OVERLAY_H #include class ImageSource_Overlay : public ImageSource { public: ImageSource_Overlay(IS_TYPE type) : ImageSource() { width=height=0; this->type=type; switch(type) { case IS_TYPE_RGB: samplesperpixel=3; break; case IS_TYPE_RGBA: case IS_TYPE_CMYK: samplesperpixel=4; break; default: throw "ImageSource_Overlay: type not yet supported"; break; } currentrow=-1; } ~ImageSource_Overlay() { while(plates.size()) { delete plates[0]; plates.pop_front(); } } void AddPlate(ImageSource *plate) { Debug[TRACE] << "Width: " << plate->width << std::endl; Debug[TRACE] << "Height: " << plate->height << std::endl; if(width==0) { width=plate->width; height=plate->height; MakeRowBuffer(); } if(width!=plate->width) throw "ImageSource_Overlay: component image sizes must match!"; if(height!=plate->height) throw "ImageSource_Overlay: component image sizes must match!"; plates.push_back(plate); } ISDataType *GetRow(int row) { if(row==currentrow) return(rowbuffer); for(int i=0;iGetRow(row); for(int i=0;iIS_SAMPLEMAX) t=IS_SAMPLEMAX; rowbuffer[i]=t; } } currentrow=row; return(rowbuffer); } protected: std::dequeplates; }; #endif photoprint-0.4.2-pre2/imagesource/imagesource_scale.cpp0000644000175000017500000000514311076423574020207 00000000000000/* * imagesource_scale.cpp - nearest-neighbour scaling filter * * Supports Greyscale, RGB and CMYK data * Supports random access * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include "imagesource_scale.h" using namespace std; // Scaling implemented as a chaining of horizontal and vertical scaling ImageSource_Scale::~ImageSource_Scale() { if(source) delete source; } ISDataType *ImageSource_Scale::GetRow(int row) { return(source->GetRow(row)); } ImageSource_Scale::ImageSource_Scale(struct ImageSource *source,int width, int height) : ImageSource(source), source(source) { this->source=new ImageSource_HScale(this->source,width); this->source=new ImageSource_VScale(this->source,height); xres=this->source->xres; yres=this->source->yres; MakeRowBuffer(); } // Vertical scaling ImageSource_VScale::~ImageSource_VScale() { if(source) delete source; } ISDataType *ImageSource_VScale::GetRow(int row) { int i; if(row==currentrow) return(rowbuffer); int srcrow=(row*source->height)/height; ISDataType *srcdata=source->GetRow(srcrow); for(i=0;iheight=height; yres=height*source->yres; yres/=source->height; MakeRowBuffer(); } // Horizontal Scaling ImageSource_HScale::~ImageSource_HScale() { if(source) delete source; } ISDataType *ImageSource_HScale::GetRow(int row) { int i; if(row==currentrow) return(rowbuffer); ISDataType *srcdata=source->GetRow(row); switch(source->samplesperpixel) { case 1: for(i=0;iwidth)/width; rowbuffer[i]=srcdata[sx]; } break; case 3: for(i=0;iwidth)/width; rowbuffer[i*3]=srcdata[sx*3]; rowbuffer[i*3+1]=srcdata[sx*3+1]; rowbuffer[i*3+2]=srcdata[sx*3+2]; } break; default: for(i=0;iwidth)/width; for(int j=0;jwidth=width; xres=width*source->xres; xres/=source->width; MakeRowBuffer(); } photoprint-0.4.2-pre2/imagesource/devicencolorant.cpp0000644000175000017500000001461511372061503017705 00000000000000#include #include #include #include "../support/util.h" #include "devicencolorant.h" #include "../support/debug.h" #include "../config.h" #include "../gettext.h" using namespace std; DeviceNColorantList::DeviceNColorantList() : first(NULL) { } DeviceNColorantList::DeviceNColorantList(IS_TYPE type) : first(NULL) { switch(STRIP_ALPHA(type)) { case IS_TYPE_GREY: case IS_TYPE_BW: new DeviceNColorant(*this,"Black"); break; case IS_TYPE_RGB: new DeviceNColorant(*this,"Red"); new DeviceNColorant(*this,"Green"); new DeviceNColorant(*this,"Blue"); break; case IS_TYPE_CMYK: new DeviceNColorant(*this,"Cyan"); new DeviceNColorant(*this,"Magenta"); new DeviceNColorant(*this,"Yellow"); new DeviceNColorant(*this,"Black"); break; default: throw "Can't yet automatically construct a DeviceNColorantList for non-standard colourspaces"; break; } if(HAS_ALPHA(type)) new DeviceNColorant(*this,"Alpha"); } DeviceNColorantList::~DeviceNColorantList() { while(first) delete first; } int DeviceNColorantList::GetColorantCount() { int result=0; DeviceNColorant *c=first; while(c) { ++result; c=c->NextColorant(); } return(result); } // Create a string representation of which colorants are active, // suitable for storing in a config file. char *DeviceNColorantList::GetEnabledColorants() { char *result=NULL; DeviceNColorant *col=FirstColorant(); int len=2; // Initial ":" and null-terminator while(col) { if(col->GetEnabled()) { const char *name=col->GetName(); if(name) len+=strlen(name)+2; } col=col->NextColorant(); } result=(char *)malloc(len); result[0]=':'; result[1]=0; col=FirstColorant(); while(col) { if(col->GetEnabled()) { const char *name=col->GetName(); if(name) { strcat(result,name); strcat(result,":"); } } col=col->NextColorant(); } if(!result) result=strdup(""); return(result); } // Given a string respresention as produced by GetEnabledColorants() // sets the "enabled" flag in the colorants void DeviceNColorantList::SetEnabledColorants(const char *colstr) { if(colstr && strlen(colstr)) { DeviceNColorant *col=FirstColorant(); while(col) { col->Disable(); const char *name=col->GetName(); if(name && strlen(name)) { const char *tmp=strstr(colstr,name); while(tmp) { if(tmp[-1]==':' && tmp[strlen(name)]==':') { col->Enable(); tmp=NULL; } else tmp=strstr(tmp+1,name); } } col=col->NextColorant(); } } } DeviceNColorant *DeviceNColorantList::FirstColorant() { return(first); } int DeviceNColorantList::GetColorantIndex(const char *name) { if(!name) return(-1); DeviceNColorant *col=FirstColorant(); int result=0; while(col) { const char *colname; if((colname=col->GetName())) { if(StrcasecmpIgnoreSpaces(colname,name)==0) return(result); } ++result; col=col->NextColorant(); } return(-1); } DeviceNColorant *DeviceNColorantList::operator[](int idx) { DeviceNColorant *result=FirstColorant(); while(idx && result) { result=result->NextColorant(); --idx; } return(result); } ///////////////////////////////////////////////////////////////////////////// struct colorantdefinition { const char *name; int red,green,blue; }; static struct colorantdefinition colorantdefinitions[]= { {"Cyan",0,190,255}, {"Magenta",255,0,190}, {"Vivid Magenta",255,0,190}, {"Yellow",255,255,0}, {"Black",0,0,0}, {"Photo Black",0,0,0}, {"Matte Black",0,0,0}, {"Light Cyan",127,220,255}, {"Light Magenta",255,127,220}, {"Vivid Light Magenta",255,127,220}, {"Light Black",127,127,127}, {"Light Light Black",191,191,191}, {"Medium Black",63,63,63}, {"Dark Yellow",160,140,0}, {"Red",255,0,0}, {"Blue",0,0,255}, {"Green",0,255,0}, {"Orange",255,128,0}, {"Alpha",192,192,192}, {"White",255,255,255}, {NULL,0,0,0} }; DeviceNColorant::DeviceNColorant(DeviceNColorantList &header,const char *name,const char *displayname) : red(0), green(0), blue(0), header(header), enabled(true), name(NULL), displayname(NULL), next(NULL), prev(NULL) { struct colorantdefinition *c=colorantdefinitions; if(name) { while(c->name) { if(StrcasecmpIgnoreSpaces(name,c->name)==0) { if(name) this->name=strdup(name); if(displayname) this->displayname=strdup(displayname); else this->displayname=strdup(gettext(name)); red=c->red; green=c->green; blue=c->blue; linknode(); return; } ++c; } Debug[WARN] << "Can't find colorant: " << name << endl; throw "Colorant not recognised"; } else { red=c->red; green=c->green; blue=c->blue; linknode(); } } DeviceNColorant::DeviceNColorant(DeviceNColorantList &header,const char *name,const char *displayname,int r,int g, int b) : red(r), green(g), blue(b), header(header), enabled(true), name(NULL), displayname(NULL), next(NULL), prev(NULL) { if(name) this->name=strdup(name); if(displayname) this->displayname=strdup(displayname); else this->displayname=strdup(gettext(name)); linknode(); } DeviceNColorant::~DeviceNColorant() { if(name) free(name); if(displayname) free(displayname); if(prev) prev->next=next; else header.first=next; if(next) next->prev=prev; } void DeviceNColorant::linknode() { prev=header.first; if(prev) { while(prev->next) prev=prev->next; prev->next=this; } else header.first=this; } const char *DeviceNColorant::GetName() { return(name); } const char *DeviceNColorant::GetDisplayName() { return(displayname); } void DeviceNColorant::Enable() { enabled=true; } void DeviceNColorant::Disable() { enabled=false; } bool DeviceNColorant::GetEnabled() { return(enabled); } DeviceNColorant *DeviceNColorant::NextColorant() { return(next); } DeviceNColorant *DeviceNColorant::PrevColorant() { return(prev); } #ifdef STANDALONETEST int main(int argc,char **argv) { DeviceNColorantList list; try { new GPColorant(list,"Yellow"); new GPColorant(list,"Cyan"); new GPColorant(list,"Magenta"); new GPColorant(list,"Sky blue pink"); } catch(const char *err) { Debug[ERROR] << "Caught error: " << err << endl; } Debug[COMMENT] << "Have " << list.GetColorantCount() << " colorants" << endl; Debug[COMMENT] << "Name of colorant 2: " << list[2]->GetName() << endl; DeviceNColorant *c=list.FirstColorant(); while(c) { Debug[COMMENT] << c->GetName() << endl; c=c->NextColorant(); } return(0); } #endif photoprint-0.4.2-pre2/imagesource/convkernel_gaussian.h0000644000175000017500000000246011076423574020241 00000000000000// convkernel_gaussian.h - a class to create a gaussian convolution kernel. // Copyright (C) 2008 by Alastair M. Robinson #ifndef CONVKERNEL_GAUSSIAN #define CONVKERNEL_GAUSSIAN #include #include #include "convkernel.h" class ConvKernel_Gaussian : public ConvKernel { public: ConvKernel_Gaussian(float radius) : ConvKernel() { // Sanity-check the provided radius. Any radius less than 0.5 will result in // a single cell kernel, containing just a "1". Radius of zero leads to // a divide-by-zero later, though, so we avoid it by clamping the radius. if(radius<=0.1) radius=0.1; // Calculate the standard deviation of the gaussian distribution. // This is calculated such that the extreme north, south, east and west // cells will contain the value 0.01 - or whatever's in the log() function. sd=sqrt(-(radius*radius)/(2*log(0.01))); Initialize(int(radius+0.5)*2+1,int(radius+0.5)*2+1); } virtual ~ConvKernel_Gaussian() { } virtual void Initialize(int width,int height) { // Use the superclass to allocate the kernel itself; ConvKernel::Initialize(width,height); for(int y=0;y #include #include #include #include "imagesource_bilinear.h" using namespace std; ImageSource_Bilinear::~ImageSource_Bilinear() { if(source) delete source; } ISDataType *ImageSource_Bilinear::GetRow(int row) { return(source->GetRow(row)); } ImageSource_Bilinear::ImageSource_Bilinear(struct ImageSource *source,int width,int height) : ImageSource(source), source(source) { xres=(source->xres*width); xres/=source->width; yres=(source->yres*height); yres/=source->height; this->source=new ImageSource_HBilinear(this->source,width); this->source=new ImageSource_VBilinear(this->source,height); randomaccess=this->source->randomaccess; this->width=width; this->height=height; } // Horizontal scaling only ImageSource_HBilinear::~ImageSource_HBilinear() { if(source) delete source; } ISDataType *ImageSource_HBilinear::GetRow(int row) { int i; if(row==currentrow) return(rowbuffer); ISDataType *src=source->GetRow(row); for(i=0;iwidth)/width; int x2=x1+1; if(x2 >= source->width) x2=x1; float xfactor=(i*source->width); xfactor/=width; xfactor-=x1; x1*=samplesperpixel; x2*=samplesperpixel; for(int s=0;swidth=width; xres=(source->xres*width); xres/=source->width; MakeRowBuffer(); } // Vertical scaling only ImageSource_VBilinear::~ImageSource_VBilinear() { if(source) delete source; if(lastrow) free(lastrow); } ISDataType *ImageSource_VBilinear::GetRow(int row) { int i; if(row==currentrow) return(rowbuffer); int srow1=(row*source->height)/height; int srow2=srow1+1; if(srow2>=source->height) srow2=srow1; ISDataType *src1,*src2; if(srow1==cachedrow) { src1=lastrow; } else { src1=source->GetRow(srow1); for(int i=0;iwidth*source->samplesperpixel;++i) lastrow[i]=src1[i]; cachedrow=srow1; src1=lastrow; } src2=source->GetRow(srow2); double yfactor=row*source->height; yfactor/=height; yfactor-=srow1; for(i=0;iheight=height; yres=(source->yres*height); yres/=source->height; lastrow=(ISDataType *)malloc(width*samplesperpixel*sizeof(ISDataType)); MakeRowBuffer(); randomaccess=false; } photoprint-0.4.2-pre2/imagesource/imagesource_pnm.h0000644000175000017500000000152711166231640017350 00000000000000/* * imagesource_pnm.h - ImageSource loader for PNM files. * * Supports high bit depths, * RGB data. * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #ifndef IMAGESOURCE_PNM_H #define IMAGESOURCE_PNM_H #include "imagesource.h" #include #ifdef HAVE_CONFIG_H #include "config.h" #endif #if defined HAVE_LIBPNM || defined HAVE_LIBNETPBM extern "C" { #ifdef HAVE_NETPBM_PAM_H #include #else #include #endif } using namespace std; class ImageSource_PNM : public ImageSource { public: ImageSource_PNM(const char *filename); ~ImageSource_PNM(); ISDataType *GetRow(int row); private: FILE *file; struct pam header; tuple *tuplerow; }; #endif // HAVE_LIB... #endif // IMAGESOURCE_PNM_H photoprint-0.4.2-pre2/imagesource/imagesource_invert.cpp0000644000175000017500000000212011123246346020410 00000000000000/* * imagesource_invert.cpp * * Supports all types * Supports random access * * Copyright (c) 2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include "imagesource_invert.h" using namespace std; ImageSource_Invert::~ImageSource_Invert() { if(source) delete source; } ISDataType *ImageSource_Invert::GetRow(int row) { if(row==currentrow) return(rowbuffer); ISDataType *srcdata=source->GetRow(row); if(HAS_ALPHA(type)) { for(int x=0;x #include #include #include "../support/debug.h" #include "imagesource_bmp.h" using namespace std; class IS_BMPStrip { public: IS_BMPStrip(ImageSource_BMP *header,int row); ~IS_BMPStrip(); private: int firstrow; int lastrow; unsigned char *imgdata; IS_BMPStrip *next,*prev; ImageSource_BMP *header; static const int stripheight=512; friend class ImageSource_BMP; }; unsigned long ImageSource_BMP::GetValue(char *c,int l) { unsigned long v=0; int i; for(i=l-1;i>=0;--i) { v<<=8; v|=(unsigned char)c[i]; } return(v); } ImageSource_BMP::~ImageSource_BMP() { while(strips) delete strips; if(file.is_open()) file.close(); } IS_BMPStrip::IS_BMPStrip(ImageSource_BMP *header,int row) : next(NULL), prev(NULL), header(header) { if((prev=header->strips)) { while(prev->next) prev=prev->next; prev->next=this; } else header->strips=this; int i=row/stripheight; firstrow=i*stripheight; lastrow=firstrow+stripheight-1; if(lastrow>(header->height-1)) lastrow=header->height-1; int bufsize=((lastrow+1)-firstrow)*header->bytesperrow; imgdata=(unsigned char *)malloc(bufsize); int filepos=header->imagestart+firstrow*header->bytesperrow; header->file.seekg(filepos,ios::beg); header->file.read((char *)imgdata,bufsize); if(!(header->file.good())) Debug[ERROR] << "Read from position " << filepos << " failed" << endl; } IS_BMPStrip::~IS_BMPStrip() { if(next) next->prev=prev; if(prev) prev->next=next; else header->strips=next; if(imgdata) free(imgdata); } IS_BMPStrip *ImageSource_BMP::GetStrip(int row) { IS_BMPStrip *strip=strips; while(strip) { if((row>=strip->firstrow)&&(row<=strip->lastrow)) return(strip); strip=strip->next; } return(NULL); } ISDataType *ImageSource_BMP::GetRow(int row) { IS_BMPStrip *strip; int realrow=(height-1)-row; // BMPs are ordered bottom to top! unsigned char *src; ISDataType *dst; if(currentrow==row) return(rowbuffer); if(row>=height) { Debug[WARN] << "ImageSource_BMP - Warning: row " << row+1 << " of " << height << " requested." << endl; return(rowbuffer); } if(!(strip=GetStrip(realrow))) { while(strips) delete strips; if(!(strip=new IS_BMPStrip(this,realrow))) return(rowbuffer); } src=strip->imgdata+bytesperrow*(realrow-strip->firstrow); dst=rowbuffer; switch(samplesperpixel) { int x; case 4: for(x=0;x>3) | ((t2&0x7) <<5); r=(t2&0xf8); *dst++=EIGHTTOIS(r); *dst++=EIGHTTOIS(g); *dst++=EIGHTTOIS(b); } break; } break; case 1: // FIXME: deal with paletteless greyscale case #if 0 for(x=0;x256) cmapentries=256; file.read((char *)pal,cmapentries*cmapbytes); for(i=0;i #include #include #include #include "imagesource_convolution.h" using namespace std; #ifndef M_PI #define M_PI 3.14159265358979323846 #endif // The row cache is just a simplistic ring-buffer type cache which handles // the details of tracking several rows of "support" data. class ISConvolution_RowCache { public: ISConvolution_RowCache(ImageSource_Convolution *source); ~ISConvolution_RowCache(); float *GetRow(int row); private: ImageSource_Convolution *source; float *cache; int cachewidth,cachehoffset; int bufferrows; int currentrow; }; ISConvolution_RowCache::~ISConvolution_RowCache() { if(cache) free(cache); } ISConvolution_RowCache::ISConvolution_RowCache(ImageSource_Convolution *source) : source(source), currentrow(-1) { cachewidth=source->width+source->hextra*2; cachehoffset=source->hextra; bufferrows=source->vextra*2+1; cache=(float *)malloc(sizeof(float)*source->samplesperpixel*cachewidth*bufferrows); } inline float *ISConvolution_RowCache::GetRow(int row) { if(row<0) row=0; if(row>=source->source->height) row=source->source->height-1; int crow=row%(source->vextra*2+1); float *rowptr=cache+crow*source->samplesperpixel*cachewidth; if(row>currentrow) { currentrow=row; ISDataType *src=source->source->GetRow(row); for(int x=0;x=source->width) sx=source->width-1; for(int s=0;ssamplesperpixel;++s) { float a=src[sx*source->samplesperpixel+s]; rowptr[x*source->samplesperpixel+s]=a; } } } return(rowptr+cachehoffset*source->samplesperpixel); } ImageSource_Convolution::~ImageSource_Convolution() { if(tmprows) free(tmprows); if(cache) delete cache; if(source) delete source; } ISDataType *ImageSource_Convolution::GetRow(int row) { if(row==currentrow) return(rowbuffer); int kw=kernel->GetWidth(); int kh=kernel->GetHeight(); for(int r=0;rGetRow(row+(r-vextra)); } for(int x=0;xKernel(kx,ky) * tmprows[ky][(x+(kx-hextra))*samplesperpixel+s]; } } } for(int s=0;sIS_SAMPLEMAX) a=IS_SAMPLEMAX; rowbuffer[x*samplesperpixel+s]=ISDataType(a); } } currentrow=row; return(rowbuffer); } ImageSource_Convolution::ImageSource_Convolution(struct ImageSource *source,ConvKernel *kernel) : ImageSource(source), source(source), kernel(kernel) { hextra=kernel->GetWidth()/2; vextra=kernel->GetHeight()/2; cache=new ISConvolution_RowCache(this); tmprows=(float **)malloc(sizeof(float *)*kernel->GetHeight()); MakeRowBuffer(); randomaccess=false; } photoprint-0.4.2-pre2/imagesource/imagesource_modifiedgamma.h0000644000175000017500000000257011250527507021344 00000000000000/* * imagesource_modifiedgamma.h * Applies Gamma correction to an image - but uses a modified gamma curve * with a linear segment to avoid problems with infinite gradient at 0. * * The modified gamma curve is: * Y = pow((X+offset)/(1.0+offset),gamma) if X > threshold * and Y = K * X otherwise. * * offset is -0.02 by default * * Threshold is automatically calculated as the point at which the line segment * has the same gradient as the gamma curve, which turns out to be * offset / (gamma + offset*gamma - 1.0) * * * Copyright (c) 2009 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #ifndef IMAGESOURCE_MODIFIEDGAMMA_H #define IMAGESOURCE_MODIFIEDGAMMA_H #include "imagesource.h" #include "lcmswrapper.h" class ImageSource_ModifiedGamma : public ImageSource { public: ImageSource_ModifiedGamma(ImageSource *source,double gamma,double offset=-0.02); virtual ~ImageSource_ModifiedGamma(); ISDataType *GetRow(int row); static double FindGamma(double x,double y,double offset=-0.02); static double ModifiedGamma(double x,double gamma,double offset=-0.02); static double InverseModifiedGamma(double x, double gamma, double offset=-0.02); private: ImageSource *source; double gamma; double offset; double threshold; double slope; }; #endif photoprint-0.4.2-pre2/imagesource/imagesource_montage.cpp0000644000175000017500000001440211366654142020547 00000000000000/* * imagesource_montage.cpp * Composites multiple images into a single image. * Supports Random Access if and only if all source images also support it. * * Copyright (c) 2004-2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * * 2005-03-25 - Separated out the n-up image fitting into imagesource_signature.* * * 2005-03-18 - To reduce memory efficiency, can now flush out components once * the current row has passed them. * */ // Define this to retain random access capability, at the expense of higher // memory usage. #undef MONTAGE_RANDOM_ACCESS #include #include "../support/debug.h" #include "imagesource_montage.h" using namespace std; class ISMontage_Component { public: ISMontage_Component(ImageSource_Montage *header,ImageSource *source,int xpos,int ypos); ~ISMontage_Component(); ISDataType *GetRow(int row); int RowDistance(int row); protected: ImageSource_Montage *header; ImageSource *source; int xpos,ypos; ISMontage_Component *next,*prev; friend class ImageSource_Montage; }; int ISMontage_Component::RowDistance(int row) { // If row is less than the first row of this component, // returns the difference, as a negative number. // If row is greater than the last row of this component, // returns the difference as a positive number. // Else, returns zero. if(row=(ypos+source->height)) return(row-(ypos+source->height)); return(0); } ISDataType *ISMontage_Component::GetRow(int row) { if(RowDistance(row)!=0) return(NULL); else return(source->GetRow(row-ypos)); } ISMontage_Component::ISMontage_Component(ImageSource_Montage *header,ImageSource *src,int xpos,int ypos) : header(header), source(src), xpos(xpos), ypos(ypos), next(NULL), prev(NULL) { if((next=header->first)) next->prev=this; header->first=this; if(xpos<0) { Debug[WARN] << "ISMontage - Warning: xpos < 0 - clamping." << endl; xpos=0; } if(ypos<0) { Debug[WARN] << "ISMontage - Warning: ypos < 0 - clamping." << endl; ypos=0; } if(header->height<(ypos+source->height)) header->height=ypos+source->height; if(header->width<(xpos+source->width)) header->width=xpos+source->width; } ISMontage_Component::~ISMontage_Component() { if(source) delete source; if(prev) prev->next=next; else header->first=next; if(next) next->prev=prev; } ImageSource_Montage::ImageSource_Montage(IS_TYPE type,int resolution, int samplesperpixel) : ImageSource(), first(NULL) { xres=resolution; yres=resolution; this->type=type; this->samplesperpixel=samplesperpixel; switch(type) { // case IS_TYPE_BW: case IS_TYPE_GREY: this->samplesperpixel=1; break; // case ISTYPE_GREYA: // this->samplesperpixel=2; // break; case IS_TYPE_RGB: this->samplesperpixel=3; break; case IS_TYPE_RGBA: case IS_TYPE_CMYK: this->samplesperpixel=4; break; case IS_TYPE_CMYKA: this->samplesperpixel=5; break; case IS_TYPE_DEVICEN: break; default: throw "Montage: unsupported type"; } #ifdef MONTAGE_RANDOM_ACCESS randomaccess=true; #else randomaccess=false; #endif width=height=0; } ImageSource_Montage::~ImageSource_Montage() { while(first) delete first; } void ImageSource_Montage::Add(ImageSource *is,int xpos,int ypos) { Debug[TRACE] << "Adding image of type " << is->type << " to page of type " << type << endl; if(STRIP_ALPHA(is->type)!=STRIP_ALPHA(type)) throw "Can't yet mix different colour spaces on one page"; new ISMontage_Component(this,is,xpos,ypos); randomaccess&=is->randomaccess; } ISDataType *ImageSource_Montage::GetRow(int row) { if(!rowbuffer) MakeRowBuffer(); ISDataType *src; ISDataType *dst=rowbuffer; switch(type) { case IS_TYPE_RGBA: for(int i=0;iGetRow(row))) { if(HAS_ALPHA(mc->source->type)) { if(HAS_ALPHA(type)) { // If the target image has an alpha channel too, then we // must choose a target alpha value. Perhaps the highest alpha // level encountered? for(int i=0;isource->width;++i) { int a=src[(i+1)*mc->source->samplesperpixel-1]; int ia=IS_SAMPLEMAX-a; int xp=(mc->xpos+i)*samplesperpixel; int sp=i*mc->source->samplesperpixel; int j; for(j=0;j0) { if(dst[xp+j]a) // dst[xp+j]=0; // dst[xp+j]=0; } } else { // The source image has an alpha channel, but is being composited // onto an image without. for(int i=0;isource->width;++i) { int a=src[(i+1)*mc->source->samplesperpixel-1]; // Debug[TRACE] << "Alpha: " << a << endl; int ia=IS_SAMPLEMAX-a; int xp=(mc->xpos+i)*samplesperpixel; int sp=i*mc->source->samplesperpixel; for(int j=0;jsource->width;++i) { int j; for(j=0;jxpos+i)*samplesperpixel+j]=src[i*mc->source->samplesperpixel+j]; } dst[(mc->xpos+i)*samplesperpixel+j]=IS_SAMPLEMAX; } } else { // Simplest case - neither source nor destination has an alpha channel. for(int i=0;isource->width*samplesperpixel;++i) dst[mc->xpos*samplesperpixel+i]=src[i]; } } } ISMontage_Component *nmc=mc->next; #ifndef MONTAGE_RANDOM_ACCESS if(mc->RowDistance(row)>0) delete mc; #endif mc=nmc; } return(rowbuffer); } photoprint-0.4.2-pre2/imagesource/iccjpeg.cpp0000644000175000017500000002071711076423574016145 00000000000000/* * iccjpeg.c * * Borrowed from the LittleCMS "jpegicc" utility * * This file provides code to read and write International Color Consortium * (ICC) device profiles embedded in JFIF JPEG image files. The ICC has * defined a standard format for including such data in JPEG "APP2" markers. * The code given here does not know anything about the internal structure * of the ICC profile data; it just knows how to put the profile data into * a JPEG file being written, or get it back out when reading. * * This code depends on new features added to the IJG JPEG library as of * IJG release 6b; it will not compile or work with older IJG versions. * * NOTE: this code would need surgery to work on 16-bit-int machines * with ICC profiles exceeding 64K bytes in size. If you need to do that, * change all the "unsigned int" variables to "INT32". You'll also need * to find a malloc() replacement that can allocate more than 64K. */ #include "iccjpeg.h" #include /* define malloc() */ /* * Since an ICC profile can be larger than the maximum size of a JPEG marker * (64K), we need provisions to split it into multiple markers. The format * defined by the ICC specifies one or more APP2 markers containing the * following data: * Identifying string ASCII "ICC_PROFILE\0" (12 bytes) * Marker sequence number 1 for first APP2, 2 for next, etc (1 byte) * Number of markers Total number of APP2's used (1 byte) * Profile data (remainder of APP2 data) * Decoders should use the marker sequence numbers to reassemble the profile, * rather than assuming that the APP2 markers appear in the correct sequence. */ #define ICC_MARKER (JPEG_APP0 + 2) /* JPEG marker code for ICC */ #define ICC_OVERHEAD_LEN 14 /* size of non-profile data in APP2 */ #define MAX_BYTES_IN_MARKER 65533 /* maximum data len of a JPEG marker */ #define MAX_DATA_BYTES_IN_MARKER (MAX_BYTES_IN_MARKER - ICC_OVERHEAD_LEN) /* * This routine writes the given ICC profile data into a JPEG file. * It *must* be called AFTER calling jpeg_start_compress() and BEFORE * the first call to jpeg_write_scanlines(). * (This ordering ensures that the APP2 marker(s) will appear after the * SOI and JFIF or Adobe markers, but before all else.) */ void write_icc_profile (j_compress_ptr cinfo, const JOCTET *icc_data_ptr, unsigned int icc_data_len) { unsigned int num_markers; /* total number of markers we'll write */ int cur_marker = 1; /* per spec, counting starts at 1 */ unsigned int length; /* number of bytes to write in this marker */ /* Calculate the number of markers we'll need, rounding up of course */ num_markers = icc_data_len / MAX_DATA_BYTES_IN_MARKER; if (num_markers * MAX_DATA_BYTES_IN_MARKER != icc_data_len) num_markers++; while (icc_data_len > 0) { /* length of profile to put in this marker */ length = icc_data_len; if (length > MAX_DATA_BYTES_IN_MARKER) length = MAX_DATA_BYTES_IN_MARKER; icc_data_len -= length; /* Write the JPEG marker header (APP2 code and marker length) */ jpeg_write_m_header(cinfo, ICC_MARKER, (unsigned int) (length + ICC_OVERHEAD_LEN)); /* Write the marker identifying string "ICC_PROFILE" (null-terminated). * We code it in this less-than-transparent way so that the code works * even if the local character set is not ASCII. */ jpeg_write_m_byte(cinfo, 0x49); jpeg_write_m_byte(cinfo, 0x43); jpeg_write_m_byte(cinfo, 0x43); jpeg_write_m_byte(cinfo, 0x5F); jpeg_write_m_byte(cinfo, 0x50); jpeg_write_m_byte(cinfo, 0x52); jpeg_write_m_byte(cinfo, 0x4F); jpeg_write_m_byte(cinfo, 0x46); jpeg_write_m_byte(cinfo, 0x49); jpeg_write_m_byte(cinfo, 0x4C); jpeg_write_m_byte(cinfo, 0x45); jpeg_write_m_byte(cinfo, 0x0); /* Add the sequencing info */ jpeg_write_m_byte(cinfo, cur_marker); jpeg_write_m_byte(cinfo, (int) num_markers); /* Add the profile data */ while (length--) { jpeg_write_m_byte(cinfo, *icc_data_ptr); icc_data_ptr++; } cur_marker++; } } /* * Prepare for reading an ICC profile */ void setup_read_icc_profile (j_decompress_ptr cinfo) { /* Tell the library to keep any APP2 data it may find */ jpeg_save_markers(cinfo, ICC_MARKER, 0xFFFF); } /* * Handy subroutine to test whether a saved marker is an ICC profile marker. */ static boolean marker_is_icc (jpeg_saved_marker_ptr marker) { return marker->marker == ICC_MARKER && marker->data_length >= ICC_OVERHEAD_LEN && /* verify the identifying string */ GETJOCTET(marker->data[0]) == 0x49 && GETJOCTET(marker->data[1]) == 0x43 && GETJOCTET(marker->data[2]) == 0x43 && GETJOCTET(marker->data[3]) == 0x5F && GETJOCTET(marker->data[4]) == 0x50 && GETJOCTET(marker->data[5]) == 0x52 && GETJOCTET(marker->data[6]) == 0x4F && GETJOCTET(marker->data[7]) == 0x46 && GETJOCTET(marker->data[8]) == 0x49 && GETJOCTET(marker->data[9]) == 0x4C && GETJOCTET(marker->data[10]) == 0x45 && GETJOCTET(marker->data[11]) == 0x0; } /* * See if there was an ICC profile in the JPEG file being read; * if so, reassemble and return the profile data. * * TRUE is returned if an ICC profile was found, FALSE if not. * If TRUE is returned, *icc_data_ptr is set to point to the * returned data, and *icc_data_len is set to its length. * * IMPORTANT: the data at **icc_data_ptr has been allocated with malloc() * and must be freed by the caller with free() when the caller no longer * needs it. (Alternatively, we could write this routine to use the * IJG library's memory allocator, so that the data would be freed implicitly * at jpeg_finish_decompress() time. But it seems likely that many apps * will prefer to have the data stick around after decompression finishes.) * * NOTE: if the file contains invalid ICC APP2 markers, we just silently * return FALSE. You might want to issue an error message instead. */ boolean read_icc_profile (j_decompress_ptr cinfo, JOCTET **icc_data_ptr, unsigned int *icc_data_len) { jpeg_saved_marker_ptr marker; int num_markers = 0; int seq_no; JOCTET *icc_data; unsigned int total_length; #define MAX_SEQ_NO 255 /* sufficient since marker numbers are bytes */ char marker_present[MAX_SEQ_NO+1]; /* 1 if marker found */ unsigned int data_length[MAX_SEQ_NO+1]; /* size of profile data in marker */ unsigned int data_offset[MAX_SEQ_NO+1]; /* offset for data in marker */ *icc_data_ptr = NULL; /* avoid confusion if FALSE return */ *icc_data_len = 0; /* This first pass over the saved markers discovers whether there are * any ICC markers and verifies the consistency of the marker numbering. */ for (seq_no = 1; seq_no <= MAX_SEQ_NO; seq_no++) marker_present[seq_no] = 0; for (marker = cinfo->marker_list; marker != NULL; marker = marker->next) { if (marker_is_icc(marker)) { if (num_markers == 0) num_markers = GETJOCTET(marker->data[13]); else if (num_markers != GETJOCTET(marker->data[13])) return FALSE; /* inconsistent num_markers fields */ seq_no = GETJOCTET(marker->data[12]); if (seq_no <= 0 || seq_no > num_markers) return FALSE; /* bogus sequence number */ if (marker_present[seq_no]) return FALSE; /* duplicate sequence numbers */ marker_present[seq_no] = 1; data_length[seq_no] = marker->data_length - ICC_OVERHEAD_LEN; } } if (num_markers == 0) return FALSE; /* Check for missing markers, count total space needed, * compute offset of each marker's part of the data. */ total_length = 0; for (seq_no = 1; seq_no <= num_markers; seq_no++) { if (marker_present[seq_no] == 0) return FALSE; /* missing sequence number */ data_offset[seq_no] = total_length; total_length += data_length[seq_no]; } if (total_length <= 0) return FALSE; /* found only empty markers? */ /* Allocate space for assembled data */ icc_data = (JOCTET *) malloc(total_length * sizeof(JOCTET)); if (icc_data == NULL) return FALSE; /* oops, out of memory */ /* and fill it in */ for (marker = cinfo->marker_list; marker != NULL; marker = marker->next) { if (marker_is_icc(marker)) { JOCTET FAR *src_ptr; JOCTET *dst_ptr; unsigned int length; seq_no = GETJOCTET(marker->data[12]); dst_ptr = icc_data + data_offset[seq_no]; src_ptr = marker->data + ICC_OVERHEAD_LEN; length = data_length[seq_no]; while (length--) { *dst_ptr++ = *src_ptr++; } } } *icc_data_ptr = icc_data; *icc_data_len = total_length; return TRUE; } photoprint-0.4.2-pre2/imagesource/imagesource_gdkpixbuf.cpp0000644000175000017500000000600611326135221021065 00000000000000/* * imagesource_gdkpixbuf.cpp * GdkPixbuf-based image loader * Supports Random Access * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * * */ #include #include #include #include "../support/debug.h" #include "imagesource_gdkpixbuf.h" using namespace std; ImageSource_GdkPixbuf::~ImageSource_GdkPixbuf() { if(pixbuf) g_object_unref(G_OBJECT(pixbuf)); } #define OFFSET(pb, x, y) ((x) * (gdk_pixbuf_get_n_channels(pb)) + (y) * gdk_pixbuf_get_rowstride(pb)) ISDataType *ImageSource_GdkPixbuf::GetRow(int row) { unsigned char *src; ISDataType *dst; if(currentrow==row) return(rowbuffer); if(row>=height) { Debug[WARN] << "ImageSource_GdkPixbuf - Warning: row " << row+1 << " of " << height << " requested." << endl; return(rowbuffer); } src=gdk_pixbuf_get_pixels(pixbuf)+OFFSET(pixbuf,0,row); dst=rowbuffer; switch(type) { case IS_TYPE_RGB: if(hasalpha) { for(int x=0;xmessage; Init(); } ImageSource_GdkPixbuf::ImageSource_GdkPixbuf(GdkPixbuf *pixbuf) : pixbuf(pixbuf) { g_object_ref(G_OBJECT(pixbuf)); Init(); } void ImageSource_GdkPixbuf::Init() { xres=yres=72; // FIXME - read these from the file embeddedprofile=NULL; if(gdk_pixbuf_get_colorspace(pixbuf)!=GDK_COLORSPACE_RGB) throw "GdkPixbuf loader only supports RGB images!"; if(gdk_pixbuf_get_bits_per_sample(pixbuf)!=8) throw "GdxPixbuf loader doesn't yet support 16 bit images\n"\ "Please contact me at blackfive@fakenhamweb.co.uk\n"\ "And I'll try to add native support for this file format."; type=IS_TYPE_RGB; samplesperpixel=3; width=gdk_pixbuf_get_width(pixbuf); height=gdk_pixbuf_get_height(pixbuf); rowstride=gdk_pixbuf_get_rowstride(pixbuf); pixels=gdk_pixbuf_get_pixels(pixbuf); hasalpha=gdk_pixbuf_get_has_alpha(pixbuf); if(hasalpha) { type=IS_TYPE_RGBA; ++samplesperpixel; } MakeRowBuffer(); randomaccess=true; } photoprint-0.4.2-pre2/imagesource/imagesource_jpeg.h0000644000175000017500000000151611223751732017504 00000000000000/* * imagesource_jpeg.h * 24-bit RGB and 8-bit Greyscale JPEG scanline-based Loader * Doesn't support Random Access * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #ifndef IMAGESOURCE_JPEG_H #define IMAGESOURCE_JPEG_H #include "imagesource.h" #include using namespace std; class ImageSource_JPEG : public ImageSource { public: ImageSource_JPEG(const char *filename); ImageSource_JPEG(FILE *file); // Use this variant if you want to provide an open file handle ~ImageSource_JPEG(); ISDataType *GetRow(int row); private: void Init(); FILE *file; struct jpeg_decompress_struct *cinfo; unsigned char *tmprow; struct ImageSource_JPEG_ErrManager *err; char *iccprofbuffer; bool started; }; #endif photoprint-0.4.2-pre2/imagesource/Makefile.am0000644000175000017500000000475511340545743016072 00000000000000AM_CXXFLAGS = -Wall -I../support/ -I../profilemanager/ $(LCMS_CFLAGS) $(GTK2_CFLAGS) ${PNM_CFLAGS} noinst_LTLIBRARIES = libimagesource.la libimagesource_la_SOURCES = \ convkernel.h \ convkernel_gaussian.h \ convkernel_gaussian_1D.h \ convkernel_unsharpmask.h \ imagesource.cpp \ imagesource.h \ imagesource_interruptible.h \ imagesource_types.h \ imagesource_bilinear.cpp \ imagesource_bilinear.h \ imagesource_bmp.cpp \ imagesource_bmp.h \ imagesource_chequerboard.cpp \ imagesource_chequerboard.h \ imagesource_cms.cpp \ imagesource_cms.h \ imagesource_convolution.cpp \ imagesource_convolution.h \ imagesource_crop.cpp \ imagesource_crop.h \ imagesource_colorize.h \ imagesource_dither.cpp \ imagesource_dither.h \ imagesource_desaturate.cpp \ imagesource_desaturate.h \ imagesource_downsample.cpp \ imagesource_downsample.h \ imagesource_flatten.cpp \ imagesource_flatten.h \ imagesource_gamma.cpp \ imagesource_gamma.h \ imagesource_gaussianblur.cpp \ imagesource_gaussianblur.h \ imagesource_gdkpixbuf.cpp \ imagesource_gdkpixbuf.h \ imagesource_greyscale.cpp \ imagesource_greyscale.h \ imagesource_gs.cpp \ imagesource_gs.h \ imagesource_histogram.cpp \ imagesource_histogram.h \ imagesource_hsweep.cpp \ imagesource_hsweep.h \ imagesource_hticks.cpp \ imagesource_hticks.h \ imagesource_invert.cpp \ imagesource_invert.h \ imagesource_jpeg.cpp \ imagesource_jpeg.h \ imagesource_lanczossinc.cpp \ imagesource_lanczossinc.h \ imagesource_mask.cpp \ imagesource_mask.h \ imagesource_modifiedgamma.cpp \ imagesource_modifiedgamma.h \ imagesource_montage.cpp \ imagesource_montage.h \ imagesource_overlay.h \ imagesource_devicen_preview.cpp \ imagesource_devicen_preview.h \ imagesource_devicen_remap.cpp \ imagesource_devicen_remap.h \ imagesource_promote.cpp \ imagesource_promote.h \ imagesource_pnm.cpp \ imagesource_pnm.h \ imagesource_rotate.cpp \ imagesource_rotate.h \ imagesource_scale.cpp \ imagesource_scale.h \ imagesource_scaledensity.cpp \ imagesource_scaledensity.h \ imagesource_segmentmask.cpp \ imagesource_segmentmask.h \ imagesource_solid.cpp \ imagesource_solid.h \ imagesource_tiff.cpp \ imagesource_tiff.h \ imagesource_unsharpmask.cpp \ imagesource_unsharpmask.h \ imagesource_util.cpp \ imagesource_util.h \ devicencolorant.cpp \ devicencolorant.h \ pixbuf_from_imagesource.cpp \ pixbuf_from_imagesource.h \ iccjpeg.cpp \ iccjpeg.h libimagesource_la_LDFLAGS = -static photoprint-0.4.2-pre2/imagesource/imagesource_histogram.cpp0000644000175000017500000000116311216777512021113 00000000000000#include #include "imagesource_histogram.h" using namespace std; ImageSource_Histogram::ImageSource_Histogram(ImageSource *source,ISHistogram &histogram) : ImageSource(source), source(source), histogram(histogram) { currentrow=-1; histogram.SetHistogramType(source->samplesperpixel,source->type); } ImageSource_Histogram::~ImageSource_Histogram() { if(source) delete(source); } ISDataType *ImageSource_Histogram::GetRow(int row) { ISDataType *srcdata=source->GetRow(row); if(row!=currentrow) { histogram.Record(srcdata,source->width); // Build histogram } currentrow=row; return(srcdata); } photoprint-0.4.2-pre2/imagesource/imagesource_bmp.h0000644000175000017500000000152311327377757017353 00000000000000/* * imagesource_bmp.h * 24-bit RGB and 8-bit Greyscale BMP scanline-based Loader * Supports Random Access * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #ifndef IMAGESOURCE_BMP_H #define IMAGESOURCE_BMP_H #include "imagesource.h" #include using namespace std; class IS_BMPStrip; class ImageSource_BMP : public ImageSource { public: ImageSource_BMP(const char *filename); ~ImageSource_BMP(); ISDataType *GetRow(int row); private: IS_BMPStrip *GetStrip(int row); unsigned long GetValue(char *c,int l); int resunit; fstream file; int cmapbytes; int cmapentries; int bytesperrow; int imagestart; int bitsperpixel; int palette[256][3]; IS_BMPStrip *strips; friend class IS_BMPStrip; }; #endif photoprint-0.4.2-pre2/imagesource/imagesource_types.h0000644000175000017500000000357111340334273017723 00000000000000#ifndef IMAGESOURCE_TYPES_H #define IMAGESOURCE_TYPES_H #include "../support/debug.h" typedef unsigned short ISDataType; #define IS_SAMPLEMAX 65535 #define EIGHTTOIS(x) (((x) << 8) | (x)) #define ISTOEIGHT(x) (((x) >> 8) & 0xff ) //#define ISTOEIGHT(x) ((((x) * 65281 + 8388608) >> 24) & 0xff) /* Note: 0 is Black for RGB images, but White for Greyscale and CMYK images */ enum IS_TYPE { IS_TYPE_NULL=0, IS_TYPE_BW, IS_TYPE_GREY, IS_TYPE_RGB, IS_TYPE_CMYK, IS_TYPE_LAB, IS_TYPE_DEVICEN, IS_TYPE_NULLA=8, IS_TYPE_BWA, IS_TYPE_GREYA, IS_TYPE_RGBA, IS_TYPE_CMYKA, IS_TYPE_LABA, IS_TYPE_DEVICENA }; #define IS_TYPE_ALPHA 8 #define IS_MAX_SAMPLESPERPIXEL 5 #define STRIP_ALPHA(x) IS_TYPE(((x)&~IS_TYPE_ALPHA)) #define HAS_ALPHA(x) ((x)&IS_TYPE_ALPHA) // DeviceNValue - reallly belongs in a sub-library containing all the specialised // DeviceN stuff, though potentially useful for RGB or CMYK stuff too. class ISDeviceNValue { public: ISDeviceNValue(int channels,ISDataType value=0) : channels(channels), values(NULL) { values=new ISDataType[channels]; for(int i=0;i=0) return(values[i]); else throw "DeviceNValue - bounds check failed"; } ISDeviceNValue &operator=(const ISDeviceNValue &other) { if(channels #include #include #include #include #include #include "support/debug.h" #include "support/layoutrectangle.h" #include "stpui_widgets/stpui_combo.h" #include "progressbar.h" #include "pp_layout_single_pageview.h" #define PAGEVIEW_DEFAULT_WIDTH 250 #define PAGEVIEW_DEFAULT_HEIGHT 320 enum { CHANGED_SIGNAL, REFLOW_SIGNAL, POPUPMENU_SIGNAL, SELECTIONCHANGED_SIGNAL, LAST_SIGNAL }; static guint pp_layout_single_pageview_signals[LAST_SIGNAL] = { 0 }; static void pp_layout_single_pageview_class_init (pp_Layout_Single_PageViewClass *klass); static void pp_layout_single_pageview_init (pp_Layout_Single_PageView *pageview); static void pp_layout_single_pageview_realize (GtkWidget *widget); static void pp_layout_single_pageview_size_request (GtkWidget *widget, GtkRequisition *requisition); static void pp_layout_single_pageview_size_allocate (GtkWidget *widget, GtkAllocation *allocation); static gboolean pp_layout_single_pageview_expose (GtkWidget *widget, GdkEventExpose *event); static gboolean pp_layout_single_pageview_button_press (GtkWidget *widget, GdkEventButton *event); #if 0 static gboolean pp_layout_single_pageview_button_release (GtkWidget *widget, GdkEventButton *event); #endif #define TARGET_URI_LIST 1 static GtkTargetEntry dnd_file_drop_types[] = { { "text/uri-list", 0, TARGET_URI_LIST } }; static gint dnd_file_drop_types_count = 1; static void get_dnd_data(GtkWidget *widget, GdkDragContext *context, gint x, gint y, GtkSelectionData *selection_data, guint info, guint time, gpointer data) { gchar *uris=g_strdup((const gchar *)selection_data->data); gchar *urilist=uris; int lastpage=0; pp_Layout_Single_PageView *pv=PP_LAYOUT_SINGLE_PAGEVIEW(widget); ProgressBar progress("Adding images...",false); while(*urilist) { if(strncmp(urilist,"file:",5)) { while(*urilist && *urilist!='\n' && *urilist!='\r') ++urilist; while(*urilist=='\n' || *urilist=='\r') *urilist++; } else { Debug[TRACE] << "URIList: " << urilist << endl; gchar *uri=urilist; while(*urilist && *urilist!='\n' && *urilist!='\r') ++urilist; if(*urilist) { while(*urilist=='\n' || *urilist=='\r') *urilist++=0; } if(*uri && *uri!='\n' && *uri!='\r') { gchar *filename=g_filename_from_uri(uri,NULL,NULL); lastpage=pv->layout->AddImage(filename); pp_layout_single_pageview_refresh(pv); g_signal_emit_by_name (GTK_OBJECT (pv), "changed"); progress.DoProgress(0,0); } } } pp_layout_single_pageview_set_page(pv,lastpage); g_signal_emit_by_name (GTK_OBJECT (pv), "changed"); g_free(uris); } /* Local data */ static GtkWidgetClass *parent_class = NULL; GType pp_layout_single_pageview_get_type () { static GType pageview_type = 0; if (!pageview_type) { static const GTypeInfo pageview_info = { sizeof (pp_Layout_Single_PageViewClass), NULL, NULL, (GClassInitFunc) pp_layout_single_pageview_class_init, NULL, NULL, sizeof (pp_Layout_Single_PageView), 0, (GInstanceInitFunc) pp_layout_single_pageview_init, }; pageview_type = g_type_register_static (GTK_TYPE_WIDGET, "pp_Layout_Single_PageView", &pageview_info, GTypeFlags(0)); } return pageview_type; } static void pp_layout_single_pageview_class_init (pp_Layout_Single_PageViewClass *cl) { GtkObjectClass *object_class; GtkWidgetClass *widget_class; object_class = (GtkObjectClass*) cl; widget_class = (GtkWidgetClass*) cl; parent_class = GTK_WIDGET_CLASS(gtk_type_class (gtk_widget_get_type ())); widget_class->realize = pp_layout_single_pageview_realize; widget_class->expose_event = pp_layout_single_pageview_expose; widget_class->size_request = pp_layout_single_pageview_size_request; widget_class->size_allocate = pp_layout_single_pageview_size_allocate; widget_class->button_press_event = pp_layout_single_pageview_button_press; // widget_class->button_release_event = pp_layout_single_pageview_button_release; pp_layout_single_pageview_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (cl), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_Layout_Single_PageViewClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); pp_layout_single_pageview_signals[REFLOW_SIGNAL] = g_signal_new ("reflow", G_TYPE_FROM_CLASS (cl), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_Layout_Single_PageViewClass, reflow), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); pp_layout_single_pageview_signals[POPUPMENU_SIGNAL] = g_signal_new ("popupmenu", G_TYPE_FROM_CLASS (cl), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_Layout_Single_PageViewClass, popupmenu), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); pp_layout_single_pageview_signals[SELECTIONCHANGED_SIGNAL] = g_signal_new ("selection_changed", G_TYPE_FROM_CLASS (cl), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_Layout_Single_PageViewClass, selection_changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void pp_layout_single_pageview_init (pp_Layout_Single_PageView *pageview) { pageview->button = 0; pageview->timer = 0; pageview->selected=NULL; } GtkWidget* pp_layout_single_pageview_new (Layout_Single *layout) { pp_Layout_Single_PageView *pageview; pageview = PP_LAYOUT_SINGLE_PAGEVIEW(g_object_new (pp_layout_single_pageview_get_type (), NULL)); gtk_drag_dest_set(GTK_WIDGET(pageview), GtkDestDefaults(GTK_DEST_DEFAULT_MOTION | GTK_DEST_DEFAULT_DROP), dnd_file_drop_types, dnd_file_drop_types_count, GdkDragAction(GDK_ACTION_COPY | GDK_ACTION_MOVE | GDK_ACTION_LINK)); g_signal_connect(G_OBJECT(pageview), "drag_data_received", G_CALLBACK(get_dnd_data), NULL); pageview->layout=layout; return GTK_WIDGET (pageview); } static void pp_layout_single_pageview_realize (GtkWidget *widget) { pp_Layout_Single_PageView *pageview; GdkWindowAttr attributes; gint attributes_mask; g_return_if_fail (widget != NULL); g_return_if_fail (PP_IS_PAGEVIEW (widget)); GTK_WIDGET_SET_FLAGS (widget, GTK_REALIZED); pageview = PP_LAYOUT_SINGLE_PAGEVIEW (widget); attributes.x = widget->allocation.x; attributes.y = widget->allocation.y; attributes.width = widget->allocation.width; attributes.height = widget->allocation.height; attributes.wclass = GDK_INPUT_OUTPUT; attributes.window_type = GDK_WINDOW_CHILD; attributes.event_mask = gtk_widget_get_events (widget) | GDK_EXPOSURE_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK; attributes.visual = gtk_widget_get_visual (widget); attributes.colormap = gtk_widget_get_colormap (widget); attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL | GDK_WA_COLORMAP; widget->window = gdk_window_new (widget->parent->window, &attributes, attributes_mask); widget->style = gtk_style_attach (widget->style, widget->window); gdk_window_set_user_data (widget->window, widget); gtk_style_set_background (widget->style, widget->window, GTK_STATE_ACTIVE); } static void pp_layout_single_pageview_size_request (GtkWidget *widget, GtkRequisition *requisition) { requisition->width = PAGEVIEW_DEFAULT_WIDTH; requisition->height = PAGEVIEW_DEFAULT_HEIGHT; } static void pp_layout_single_pageview_size_allocate (GtkWidget *widget, GtkAllocation *allocation) { pp_Layout_Single_PageView *pageview; g_return_if_fail (widget != NULL); g_return_if_fail (PP_IS_PAGEVIEW (widget)); g_return_if_fail (allocation != NULL); widget->allocation = *allocation; pageview = PP_LAYOUT_SINGLE_PAGEVIEW (widget); if (GTK_WIDGET_REALIZED (widget)) { gdk_window_move_resize (widget->window, allocation->x, allocation->y, allocation->width, allocation->height); } } static gboolean pp_layout_single_pageview_expose( GtkWidget *widget, GdkEventExpose *event ) { pp_Layout_Single_PageView *pageview; g_return_val_if_fail (widget != NULL, FALSE); g_return_val_if_fail (PP_IS_PAGEVIEW (widget), FALSE); g_return_val_if_fail (event != NULL, FALSE); if (event->count > 0) return FALSE; pageview = PP_LAYOUT_SINGLE_PAGEVIEW (widget); pageview->height=widget->allocation.height; pageview->width=(pageview->layout->pagewidth*pageview->height)/pageview->layout->pageheight; if(pageview->width>widget->allocation.width) { pageview->width=widget->allocation.width; pageview->height=(pageview->layout->pageheight*pageview->width)/pageview->layout->pagewidth; } pageview->top=(widget->allocation.height-pageview->height)/2; pageview->left=(widget->allocation.width-pageview->width)/2; pageview->scale=pageview->width; pageview->scale/=pageview->layout->pagewidth; Debug[TRACE] << "Pageview: Drawing preview" << endl; pageview->layout->DrawPreview(widget,pageview->left,pageview->top,pageview->width,pageview->height); Debug[TRACE] << "Pageview: done" << endl; return FALSE; } static gboolean pp_layout_single_pageview_button_press( GtkWidget *widget, GdkEventButton *event ) { pp_Layout_Single_PageView *pageview; g_return_val_if_fail (widget != NULL, FALSE); g_return_val_if_fail (PP_IS_PAGEVIEW (widget), FALSE); g_return_val_if_fail (event != NULL, FALSE); pageview = PP_LAYOUT_SINGLE_PAGEVIEW (widget); int x=int(event->x-pageview->left); int y=int(event->y-pageview->top); bool shift=(event->state&GDK_SHIFT_MASK)!=0; bool ctrl=(event->state&GDK_CONTROL_MASK)!=0; if(x>0 && y>0 && xwidth && yheight && pageview->scale>0.0) { // double sx=x/pageview->scale; // double sy=y/pageview->scale; int currentpage=pageview->layout->GetCurrentPage(); Layout_ImageInfo *prevselected=pageview->selected; pageview->selected=pageview->layout->ImageAt(currentpage); switch(event->button) { case 1: if(!(shift||ctrl)) pageview->layout->SelectNone(); if(pageview->selected) { if(ctrl) pageview->selected->ToggleSelected(); else if(shift) { if(prevselected) { LayoutIterator it(*pageview->layout); Layout_ImageInfo *ii=it.FirstImage(); bool selecting=false; while(ii) { if((ii==prevselected) || (ii==pageview->selected)) { if(selecting) ii->SetSelected(true); selecting^=true; } if(selecting) ii->SetSelected(true); ii=it.NextImage(); } } else pageview->selected->SetSelected(true); } else pageview->selected->SetSelected(true); } pp_layout_single_pageview_refresh(pageview); g_signal_emit_by_name (GTK_OBJECT (pageview), "selection_changed"); break; case 3: if(!(shift||ctrl)) { if(pageview->selected) { if(!pageview->selected->GetSelected()) pageview->layout->SelectNone(); } else pageview->layout->SelectNone(); } if(pageview->selected) { pageview->selected->SetSelected(true); pp_layout_single_pageview_refresh(pageview); g_signal_emit_by_name (GTK_OBJECT (pageview), "selection_changed"); g_signal_emit_by_name (GTK_OBJECT (pageview), "popupmenu"); } break; default: break; } } return FALSE; } #if 0 static gboolean pp_layout_single_pageview_button_release( GtkWidget *widget, GdkEventButton *event ) { pp_Layout_Single_PageView *pageview; g_return_val_if_fail (widget != NULL, FALSE); g_return_val_if_fail (PP_IS_PAGEVIEW (widget), FALSE); g_return_val_if_fail (event != NULL, FALSE); pageview = PP_LAYOUT_SINGLE_PAGEVIEW (widget); if (pageview->button == event->button) { gtk_grab_remove (widget); pageview->button = 0; } g_signal_emit_by_name (GTK_OBJECT (pageview->adjustment), "value_changed"); return FALSE; } #endif void pp_layout_single_pageview_refresh(pp_Layout_Single_PageView *pv) { gtk_widget_queue_draw (GTK_WIDGET (pv)); } void pp_layout_single_pageview_set_page(pp_Layout_Single_PageView *pv,int page) { pv->layout->SetCurrentPage(page); pp_layout_single_pageview_refresh(pv); } photoprint-0.4.2-pre2/stpui_widgets/0000777000175000017500000000000011400250524014461 500000000000000photoprint-0.4.2-pre2/stpui_widgets/units.h0000644000175000017500000000221711076423574015732 00000000000000#ifndef UNITS_H #define UNITS_H enum Units { UNIT_POINTS, UNIT_INCHES, UNIT_MILLIMETERS, UNIT_CENTIMETERS }; #define POINTS_PRECISION 1.0 #define INCHES_PRECISION 0.05 #define MILLIMETERS_PRECISION 0.5 #define CENTIMETERS_PRECISION 0.05 #define ROUNDTONEAREST(x,tonearest) ((tonearest)*floor(0.5+(x)/(tonearest))) #define UNIT_POINTS_TO_INCHES(x) (x/72.0) #define UNIT_POINTS_TO_MILLIMETERS(x) ((25.4*x)/72.0) #define UNIT_POINTS_TO_CENTIMETERS(x) ((2.54*x)/72.0) #define UNIT_ROUND_POINTS_TO_INCHES(x) ROUNDTONEAREST((x/72.0),INCHES_PRECISION) #define UNIT_ROUND_POINTS_TO_MILLIMETERS(x) ROUNDTONEAREST((25.4*x)/72.0,MILLIMETERS_PRECISION) #define UNIT_ROUND_POINTS_TO_CENTIMETERS(x) ROUNDTONEAREST((2.54*x)/72.0,CENTIMETERS_PRECISION) #define UNIT_INCHES_TO_POINTS(x) (x*72.0) #define UNIT_MILLIMETERS_TO_POINTS(x) ((x*72.0)/25.4) #define UNIT_CENTIMETERS_TO_POINTS(x) ((x*72.0)/2.54) #define UNIT_ROUND_INCHES_TO_POINTS(x) ROUNDTONEAREST(x*72.0,POINTS_PRECISION) #define UNIT_ROUND_MILLIMETERS_TO_POINTS(x) ROUNDTONEAREST((x*72.0)/25.4,POINTS_PRECISION) #define UNIT_ROUND_CENTIMETERS_TO_POINTS(x) ROUNDTONEAREST((x*72.0)/2.54,POINTS_PRECISION) #endif photoprint-0.4.2-pre2/stpui_widgets/stpui_toggle.h0000644000175000017500000000222111076423574017270 00000000000000#ifndef __STPUI_TOGGLE_H__ #define __STPUI_TOGGLE_H__ #include #include #include #include #include G_BEGIN_DECLS #define STPUI_TOGGLE_TYPE (stpui_toggle_get_type()) #define STPUI_TOGGLE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), STPUI_TOGGLE_TYPE, stpui_Toggle)) #define STPUI_TOGGLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), STPUI_TOGGLE_TYPE, stpui_ToggleClass)) #define IS_STPUI_TOGGLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), STPUI_TOGGLE_TYPE)) #define IS_STPUI_TOGGLE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), STPUI_TOGGLE_TYPE)) typedef struct _stpui_Toggle stpui_Toggle; typedef struct _stpui_ToggleClass stpui_ToggleClass; struct _stpui_Toggle { GtkHBox box; GtkWidget *toggle; stp_vars_t *vars; const char *optionname; }; struct _stpui_ToggleClass { GtkHBoxClass parent_class; void (*toggled)(stpui_Toggle *t); }; GType stpui_toggle_get_type (void); GtkWidget* stpui_toggle_new (stp_vars_t *vars,const char *optname,const char *displayname); gboolean stpui_toggle_refresh(stpui_Toggle *t); G_END_DECLS #endif /* __STPUI_TOGGLE_H__ */ photoprint-0.4.2-pre2/stpui_widgets/stpui_combo.h0000644000175000017500000000232111076423574017107 00000000000000#ifndef __STPUI_COMBO_H__ #define __STPUI_COMBO_H__ #include #include #include #include #include #include G_BEGIN_DECLS #define STPUI_COMBO_TYPE (stpui_combo_get_type()) #define STPUI_COMBO(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), STPUI_COMBO_TYPE, stpui_Combo)) #define STPUI_COMBO_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), STPUI_COMBO_TYPE, stpui_ComboClass)) #define IS_STPUI_COMBO(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), STPUI_COMBO_TYPE)) #define IS_STPUI_COMBO_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), STPUI_COMBO_TYPE)) typedef struct _stpui_Combo stpui_Combo; typedef struct _stpui_ComboClass stpui_ComboClass; struct _stpui_Combo { GtkHBox box; GtkWidget *combo; GList *optionlist; stp_vars_t *vars; const char *optionname; GtkCheckButton *checkbutton; GtkWidget *label; }; struct _stpui_ComboClass { GtkHBoxClass parent_class; void (*changed)(stpui_Combo *combo); }; GType stpui_combo_get_type (void); GtkWidget* stpui_combo_new (stp_vars_t *vars,const char *optname,GtkWidget *label); gboolean stpui_combo_refresh(stpui_Combo *c); G_END_DECLS #endif /* __STPUI_COMBO_H__ */ photoprint-0.4.2-pre2/stpui_widgets/stpui_file.h0000644000175000017500000000231611076423574016733 00000000000000#ifndef __STPUI_FILE_H__ #define __STPUI_FILE_H__ #include #include #include #include #include #include #include G_BEGIN_DECLS #define STPUI_FILE_TYPE (stpui_file_get_type()) #define STPUI_FILE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), STPUI_FILE_TYPE, stpui_File)) #define STPUI_FILE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), STPUI_FILE_TYPE, stpui_FileClass)) #define IS_STPUI_FILE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), STPUI_FILE_TYPE)) #define IS_STPUI_FILE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), STPUI_FILE_TYPE)) typedef struct _stpui_File stpui_File; typedef struct _stpui_FileClass stpui_FileClass; struct _stpui_File { GtkHBox box; GtkWidget *entry; GtkWidget *button; stp_vars_t *vars; const char *optionname; }; struct _stpui_FileClass { GtkHBoxClass parent_class; void (*changed)(stpui_File *t); }; GType stpui_file_get_type (void); GtkWidget* stpui_file_new (stp_vars_t *vars,const char *optname,const char *displayname); gboolean stpui_file_refresh(stpui_File *t); #define STPUI_FILE_DEFAULT_TOKEN "" G_END_DECLS #endif /* __STPUI_FILE_H__ */ photoprint-0.4.2-pre2/stpui_widgets/stpui_optionpage.c0000644000175000017500000001511111076423574020151 00000000000000/* * stpui_optionpage.c - provides a custom widget for providing autonomous control over * a group of options in the stp_vars_t structure. * * Currently the options to be included are determined by matching a single class * and a range of levels. * * TODO: Allow a callback function to be used to determine the options to be included. * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include "stpui_optionpage.h" enum { CHANGED_SIGNAL, LAST_SIGNAL }; static guint stpui_optionpage_signals[LAST_SIGNAL] = { 0 }; static void stpui_optionpage_class_init (stpui_OptionPageClass *klass); static void stpui_optionpage_init (stpui_OptionPage *stpuicombo); gboolean stpui_optionpage_refresh(stpui_OptionPage *op) { gboolean result=FALSE; GtkWidget *w; int count,i; count=g_list_length(op->widgetlist); for(i=0;iwidgetlist,i); if(listnode) { w=GTK_WIDGET(listnode->data); if(IS_STPUI_COMBO(w)) result|=stpui_combo_refresh(STPUI_COMBO(w)); if(IS_STPUI_TOGGLE(w)) result|=stpui_toggle_refresh(STPUI_TOGGLE(w)); if(IS_STPUI_SLIDER(w)) result|=stpui_slider_refresh(STPUI_SLIDER(w)); if(IS_STPUI_FILE(w)) result|=stpui_file_refresh(STPUI_FILE(w)); } } return(result); } static void stpui_optionpage_changed(GtkWidget *widget,gpointer *ud) { stpui_OptionPage *op=STPUI_OPTIONPAGE(ud); g_signal_emit(G_OBJECT (op),stpui_optionpage_signals[CHANGED_SIGNAL], 0); } static int stpui_optionpage_match(const stp_parameter_t *p,int optclass,int optlevelmin,int optlevelmax) { int result=FALSE; if((p->p_class==optclass) || ((optclass<0) && (p->p_class<=STP_PARAMETER_CLASS_OUTPUT))) { if((p->p_level>=optlevelmin) && (p->p_level<=optlevelmax)) { switch(p->p_type) { case STP_PARAMETER_TYPE_STRING_LIST: case STP_PARAMETER_TYPE_INT: case STP_PARAMETER_TYPE_BOOLEAN: case STP_PARAMETER_TYPE_DOUBLE: case STP_PARAMETER_TYPE_DIMENSION: case STP_PARAMETER_TYPE_FILE: // case STP_PARAMETER_TYPE_CURVE: result=TRUE; break; default: break; } } } return(result); } static int stpui_optionpage_count(stpui_OptionPage *op) { int result=0; int pcount; int i; stp_parameter_list_t params = stp_get_parameter_list(op->vars); pcount = stp_parameter_list_count(params); for(i=0;ioptclass,op->optlevelmin,op->optlevelmax)) ++result; } stp_parameter_list_destroy(params); return(result); } static void stpui_optionpage_build(stpui_OptionPage *op) { int pcount; int i; int row=0; stp_parameter_list_t params; params = stp_get_parameter_list(op->vars); pcount = stp_parameter_list_count(params); for(i=0;ioptclass,op->optlevelmin,op->optlevelmax)) { GtkWidget *tmp=NULL; GtkWidget *label=NULL; char *signal="changed"; if(!p->is_mandatory) { stp_parameter_t desc; stp_describe_parameter(op->vars,p->name,&desc); label=gtk_check_button_new_with_label(desc.text); stp_parameter_description_destroy(&desc); } else { stp_parameter_t desc; stp_describe_parameter(op->vars,p->name,&desc); label=gtk_label_new(desc.text); gtk_misc_set_alignment(GTK_MISC(label),0.0,0.5); stp_parameter_description_destroy(&desc); } switch(p->p_type) { case STP_PARAMETER_TYPE_STRING_LIST: tmp=stpui_combo_new(op->vars,p->name,label); signal="changed"; break; case STP_PARAMETER_TYPE_INT: case STP_PARAMETER_TYPE_DOUBLE: tmp=stpui_slider_new(op->vars,p->name,label); signal="changed"; break; case STP_PARAMETER_TYPE_DIMENSION: tmp=stpui_slider_new(op->vars,p->name,label); signal="changed"; break; case STP_PARAMETER_TYPE_BOOLEAN: tmp=stpui_toggle_new(op->vars,p->name,p->text); gtk_widget_destroy(label); label=NULL; signal="toggled"; break; case STP_PARAMETER_TYPE_FILE: tmp=stpui_file_new(op->vars,p->name,p->text); signal="changed"; break; default: gtk_widget_destroy(label); label=NULL; tmp=NULL; break; } if(tmp) { gtk_table_attach_defaults(GTK_TABLE(op->table), GTK_WIDGET(tmp), 1,2, row,row+1); gtk_widget_show(GTK_WIDGET(tmp)); g_signal_connect(G_OBJECT(tmp),signal,G_CALLBACK(stpui_optionpage_changed),op); op->widgetlist=g_list_append(op->widgetlist,tmp); } if(label) { gtk_table_attach(GTK_TABLE(op->table),GTK_WIDGET(label), 0,1,row,row+1, GTK_SHRINK|GTK_FILL,GTK_SHRINK,0,0); gtk_widget_show(GTK_WIDGET(label)); label=FALSE; } ++row; } } stp_parameter_list_destroy(params); } GtkWidget* stpui_optionpage_new (stp_vars_t *vars,int optclass,int optlevelmin,int optlevelmax) { int count=0; stpui_OptionPage *op=STPUI_OPTIONPAGE(g_object_new (stpui_optionpage_get_type (), NULL)); op->vars=vars; op->optclass=optclass; op->optlevelmin=optlevelmin; op->optlevelmax=optlevelmax; count=stpui_optionpage_count(op); op->table=gtk_table_new(count,2,FALSE); gtk_container_set_border_width(GTK_CONTAINER(op->table),5); gtk_table_set_col_spacing(GTK_TABLE(op->table),0,8); gtk_box_pack_start(GTK_BOX(op),GTK_WIDGET(op->table),FALSE,TRUE,0); gtk_widget_show(GTK_WIDGET(op->table)); stpui_optionpage_build(op); return(GTK_WIDGET(op)); } GType stpui_optionpage_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo stpui_optionpage_info = { sizeof (stpui_OptionPageClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) stpui_optionpage_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (stpui_OptionPage), 0, (GInstanceInitFunc) stpui_optionpage_init, }; stpuic_type = g_type_register_static (GTK_TYPE_VBOX, "stpui_OptionPage", &stpui_optionpage_info, 0); } return stpuic_type; } static void stpui_optionpage_class_init (stpui_OptionPageClass *klass) { stpui_optionpage_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION, G_STRUCT_OFFSET (stpui_OptionPageClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void stpui_optionpage_init (stpui_OptionPage *op) { op->widgetlist=NULL; } photoprint-0.4.2-pre2/stpui_widgets/dimension.c0000644000175000017500000002022311151557267016546 00000000000000/* * dimension.cpp - provides a custom widget for adjusting * a physical dimension * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include #include "dimension.h" #include "../config.h" #include "../gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) enum { CHANGED_SIGNAL, LAST_SIGNAL }; static guint dimension_signals[LAST_SIGNAL] = { 0 }; static void dimension_class_init (DimensionClass *klass); static void dimension_init (Dimension *stpuicombo); static void spin_changed(GtkWidget *wid,gpointer *ob) { Dimension *lo=(Dimension *)ob; // GtkSpinButton *spin=GTK_SPIN_BUTTON(lo->spinbutton); g_signal_handlers_block_matched (G_OBJECT(lo->spinbutton),G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, lo); g_signal_emit(G_OBJECT (ob),dimension_signals[CHANGED_SIGNAL], 0); g_signal_handlers_unblock_matched (G_OBJECT(lo->spinbutton),G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, lo); } void dimension_refresh(Dimension *ob) { } GtkWidget* dimension_new (gdouble min,gdouble max,enum Units unit) { Dimension *ob=DIMENSION(g_object_new (dimension_get_type (), NULL)); gtk_box_set_spacing(GTK_BOX(ob),5); ob->value=min; ob->minpt=min; ob->maxpt=max; ob->unit=UNIT_POINTS; ob->spinbutton=gtk_spin_button_new_with_range(min,max,0.01); gtk_spin_button_set_value(GTK_SPIN_BUTTON(ob->spinbutton),ob->value); gtk_box_pack_start(GTK_BOX(ob),ob->spinbutton,TRUE,TRUE,0); g_signal_connect(G_OBJECT(ob->spinbutton),"value-changed",G_CALLBACK(spin_changed),ob); gtk_widget_show(ob->spinbutton); ob->label=gtk_label_new(NULL); gtk_box_pack_start(GTK_BOX(ob),ob->label,TRUE,TRUE,0); // gtk_widget_show(ob->label); ob->tooltips=gtk_tooltips_new(); dimension_set_unit(ob,unit); dimension_refresh(ob); return(GTK_WIDGET(ob)); } GType dimension_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo dimension_info = { sizeof (DimensionClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) dimension_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (Dimension), 0, (GInstanceInitFunc) dimension_init, }; stpuic_type = g_type_register_static (GTK_TYPE_HBOX, "Dimension", &dimension_info, (GTypeFlags)0); } return stpuic_type; } static void dimension_class_init (DimensionClass *klass) { dimension_signals[CHANGED_SIGNAL] = g_signal_new ("value-changed", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION, G_STRUCT_OFFSET (DimensionClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void dimension_init (Dimension *ob) { ob->spinbutton=NULL; ob->label=NULL; } int dimension_get_pt(Dimension *ob) { double v=gtk_spin_button_get_value(GTK_SPIN_BUTTON(ob->spinbutton)); switch(ob->unit) { case UNIT_POINTS: break; case UNIT_INCHES: v=UNIT_ROUND_INCHES_TO_POINTS(v); break; case UNIT_MILLIMETERS: v=UNIT_ROUND_MILLIMETERS_TO_POINTS(v); break; case UNIT_CENTIMETERS: v=UNIT_ROUND_CENTIMETERS_TO_POINTS(v); break; } ob->value=v; return(v); } void dimension_update_unit_label(Dimension *ob) { char *txt=NULL; char *tooltip=NULL; switch(ob->unit) { case UNIT_POINTS: txt="pt"; tooltip=_("points"); break; case UNIT_INCHES: txt="in"; tooltip=_("inches"); break; case UNIT_MILLIMETERS: txt="mm"; tooltip=_("millimeters"); break; case UNIT_CENTIMETERS: txt="cm"; tooltip=_("centimeters"); break; } if(txt) gtk_label_set_text(GTK_LABEL(ob->label),txt); if(tooltip) gtk_tooltips_set_tip(GTK_TOOLTIPS(ob->tooltips),GTK_WIDGET(ob->spinbutton),tooltip,NULL); } double mmtest[]={0.0,1.0,5.5,10.5}; double intest[]={0.0,1.0,5.5,10.5}; int pttest[]={0,1,50,72,75,100}; void sanitycheck() { int i; double r; for(i=0;i<(sizeof(mmtest)/sizeof(float));++i) { r=UNIT_MILLIMETERS_TO_POINTS(mmtest[i]); printf("%lfmm -> %lfpt ",mmtest[i],r); printf("(%lfmm)\n",ROUNDTONEAREST(r,POINTS_PRECISION)); } printf("\n"); for(i=0;i<(sizeof(intest)/sizeof(float));++i) { r=UNIT_INCHES_TO_POINTS(intest[i]); printf("%lfin -> %lfpt ",intest[i],r); printf("(%lfin)\n",ROUNDTONEAREST(r,INCHES_PRECISION)); } printf("\n"); for(i=0;i<(sizeof(pttest)/sizeof(int));++i) { r=UNIT_POINTS_TO_MILLIMETERS(pttest[i]); printf("%dpt -> %lfmm ",pttest[i],r); printf("(%lfin)\n",ROUNDTONEAREST(r,MILLIMETERS_PRECISION)); } } void dimension_set_unit(Dimension *ob,enum Units unit) { gdouble v=gtk_spin_button_get_value(GTK_SPIN_BUTTON(ob->spinbutton)); gdouble min=-1,max=-1,step=-1; // fprintf(stderr,"Initial value (unit %d): %f\n",ob->unit,v); // fprintf(stderr,"Initial range (pts): %f -> %f\n",ob->minpt,ob->maxpt); switch(ob->unit) { case UNIT_POINTS: break; case UNIT_INCHES: v=UNIT_ROUND_INCHES_TO_POINTS(v); break; case UNIT_MILLIMETERS: v=UNIT_ROUND_MILLIMETERS_TO_POINTS(v); break; case UNIT_CENTIMETERS: v=UNIT_ROUND_CENTIMETERS_TO_POINTS(v); break; default: fprintf(stderr,"PANIC! Unit %d was not caught!\n",ob->unit); break; } ob->unit=unit; switch(ob->unit) { case UNIT_POINTS: min=ob->minpt; max=ob->maxpt; step=POINTS_PRECISION; break; case UNIT_INCHES: v=UNIT_ROUND_POINTS_TO_INCHES(v); min=UNIT_ROUND_POINTS_TO_INCHES(ob->minpt); max=UNIT_ROUND_POINTS_TO_INCHES(ob->maxpt); step=INCHES_PRECISION; break; case UNIT_MILLIMETERS: v=UNIT_ROUND_POINTS_TO_MILLIMETERS(v); min=UNIT_ROUND_POINTS_TO_MILLIMETERS(ob->minpt); max=UNIT_ROUND_POINTS_TO_MILLIMETERS(ob->maxpt); step=MILLIMETERS_PRECISION; break; case UNIT_CENTIMETERS: v=UNIT_ROUND_POINTS_TO_CENTIMETERS(v); min=UNIT_ROUND_POINTS_TO_CENTIMETERS(ob->minpt); max=UNIT_ROUND_POINTS_TO_CENTIMETERS(ob->maxpt); step=CENTIMETERS_PRECISION; break; default: fprintf(stderr,"PANIC! Unit %d was not caught!\n",ob->unit); fprintf(stderr,"Unit definitions: %d, %d, %d, %d\n",UNIT_POINTS,UNIT_INCHES,UNIT_MILLIMETERS,UNIT_CENTIMETERS); break; } // fprintf(stderr,"Setting range to: %f, %f; value to %f; step to %f (unit %d)\n",min,max,v,step,ob->unit); // fprintf(stderr,"Sanity check:\n"); // sanitycheck(); gtk_spin_button_set_range(GTK_SPIN_BUTTON(ob->spinbutton),min,max); gtk_spin_button_set_value(GTK_SPIN_BUTTON(ob->spinbutton),v); gtk_spin_button_set_increments(GTK_SPIN_BUTTON(ob->spinbutton),step,step*10.0); dimension_update_unit_label(ob); } void dimension_set_pt(Dimension *ob,int pt) { double v=0.0; if(pt==ob->value) return; switch(ob->unit) { case UNIT_POINTS: v=pt; break; case UNIT_INCHES: v=UNIT_ROUND_POINTS_TO_INCHES(pt); break; case UNIT_MILLIMETERS: v=UNIT_ROUND_POINTS_TO_MILLIMETERS(pt); break; case UNIT_CENTIMETERS: v=UNIT_ROUND_POINTS_TO_CENTIMETERS(pt); break; } gtk_spin_button_set_value(GTK_SPIN_BUTTON(ob->spinbutton),v); ob->value=v; } void dimension_set_value(Dimension *ob,gdouble val,enum Units unit) { dimension_set_unit(ob,unit); gtk_spin_button_set_value(GTK_SPIN_BUTTON(ob->spinbutton),val); } void dimension_set_range_pt(Dimension *ob,int low,int high) { ob->minpt=low; ob->maxpt=high; float ulow=low,uhigh=high; switch(ob->unit) { case UNIT_POINTS: break; case UNIT_INCHES: ulow=UNIT_ROUND_POINTS_TO_INCHES(low); uhigh=UNIT_ROUND_POINTS_TO_INCHES(high); break; case UNIT_MILLIMETERS: ulow=UNIT_ROUND_POINTS_TO_MILLIMETERS(low); uhigh=UNIT_ROUND_POINTS_TO_MILLIMETERS(high); break; case UNIT_CENTIMETERS: ulow=UNIT_ROUND_POINTS_TO_CENTIMETERS(low); uhigh=UNIT_ROUND_POINTS_TO_CENTIMETERS(high); break; default: fprintf(stderr,"PANIC! Unit %d was not caught!\n",ob->unit); fprintf(stderr,"Unit definitions: %d, %d, %d, %d\n",UNIT_POINTS,UNIT_INCHES,UNIT_MILLIMETERS,UNIT_CENTIMETERS); break; } fprintf(stderr,"Setting widget range to: %f -> %f\n",ulow,uhigh); gtk_spin_button_set_range(GTK_SPIN_BUTTON(ob->spinbutton),ulow,uhigh); } void dimension_show_unit(Dimension *ob) { gtk_widget_show(ob->label); } void dimension_hide_unit(Dimension *ob) { gtk_widget_hide(ob->label); } photoprint-0.4.2-pre2/stpui_widgets/dimension.h0000644000175000017500000000317111151557176016555 00000000000000#ifndef __DIMENSION_H__ #define __DIMENSION_H__ #include #include #include #include #include #include #include #include #include #include "units.h" G_BEGIN_DECLS #define DIMENSION_TYPE (dimension_get_type()) #define DIMENSION(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), DIMENSION_TYPE, Dimension)) #define DIMENSION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), DIMENSION_TYPE, DimensionClass)) #define IS_DIMENSION(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), DIMENSION_TYPE)) #define IS_DIMENSION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), DIMENSION_TYPE)) typedef struct _Dimension Dimension; typedef struct _DimensionClass DimensionClass; struct _Dimension { GtkHBox box; GtkWidget *spinbutton; GtkWidget *label; GtkTooltips *tooltips; enum Units unit; gdouble minpt,maxpt,steppt; int value; }; struct _DimensionClass { GtkHBoxClass parent_class; void (*changed)(Dimension *sig); }; GType dimension_get_type (void); GtkWidget* dimension_new (gdouble min,gdouble max,enum Units unit); void dimension_refresh(Dimension *ob); int dimension_get_pt(Dimension *ob); void dimension_update_unit_label(Dimension *ob); void dimension_set_unit(Dimension *ob,enum Units unit); void dimension_set_pt(Dimension *ob,int pt); void dimension_set_range_pt(Dimension *ob,int low,int high); void dimension_set_value(Dimension *ob,gdouble val,enum Units unit); void dimension_show_unit(Dimension *ob); void dimension_hide_unit(Dimension *ob); G_END_DECLS #endif /* __DIMENSION_H__ */ photoprint-0.4.2-pre2/stpui_widgets/stpui_queue.c0000644000175000017500000001045311076423574017134 00000000000000/* * stpui_queue.c - provides a custom widget for selecting a * printer queue. * * Copyright (c) 2006 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include "../stp_support/printerqueues.h" #include "stpui_queue.h" enum { CHANGED_SIGNAL, LAST_SIGNAL }; static guint stpui_queue_signals[LAST_SIGNAL] = { 0 }; static void stpui_queue_class_init (stpui_QueueClass *klass); static void stpui_queue_init (stpui_Queue *t); static void stpui_queue_changed(GtkWidget *wid,gpointer *ud) { stpui_Queue *t=STPUI_QUEUE(ud); int entry; int customcommandenabled=FALSE; entry=gtk_combo_box_get_active(GTK_COMBO_BOX(t->queue)); if(entry>-1) { char *queue; queue=t->pq->GetPrinterName(t->pq,entry); fprintf(stderr,"Currently selected: %s\n",queue); t->pq->SetPrinterQueue(t->pq,queue); char *cmd=t->pq->GetDriver(t->pq); if(cmd) fprintf(stderr,"Got driver: %s\n",cmd); if(strcmp(queue,PRINTERQUEUE_CUSTOMCOMMAND)==0) customcommandenabled=TRUE; } #ifndef WIN32 if(customcommandenabled) gtk_widget_show(t->customcommand); else gtk_widget_hide(t->customcommand); #endif g_signal_emit(G_OBJECT (t), stpui_queue_signals[CHANGED_SIGNAL], 0); } #ifndef WIN32 static void stpui_customcommand_changed(GtkWidget *wid,gpointer *ud) { stpui_Queue *t=STPUI_QUEUE(ud); const char *cc=gtk_entry_get_text(GTK_ENTRY(t->customcommand)); if(cc && strlen(cc)==0) cc=NULL; t->pq->SetCustomCommand(t->pq,cc); g_signal_emit(G_OBJECT (t), stpui_queue_signals[CHANGED_SIGNAL], 0); } #endif GtkWidget* stpui_queue_new (struct pqinfo *pq) { stpui_Queue *c=STPUI_QUEUE(g_object_new (stpui_queue_get_type (), NULL)); int count,j; c->pq=pq; c->queue=gtk_combo_box_new_text(); gtk_box_pack_start(GTK_BOX(&c->box),GTK_WIDGET(c->queue),TRUE,TRUE,0); gtk_widget_show(c->queue); count=pq->GetPrinterCount(pq); const char *current=pq->GetPrinterQueue(pq); int active=-1; for(j=0;jGetPrinterName(pq,j); if(current && strcmp(current,queuename)==0) active=j; gtk_combo_box_append_text(GTK_COMBO_BOX(c->queue),queuename); free(queuename); } if(j>-1) gtk_combo_box_set_active(GTK_COMBO_BOX(c->queue),active); g_signal_connect(GTK_WIDGET(c->queue),"changed",G_CALLBACK(stpui_queue_changed),c); #ifndef WIN32 const char *cc=pq->GetCustomCommand(pq); c->customcommand=gtk_entry_new(); gtk_box_pack_start(GTK_BOX(&c->box),GTK_WIDGET(c->customcommand),TRUE,TRUE,0); if(cc) gtk_entry_set_text(GTK_ENTRY(c->customcommand),cc); g_signal_connect(GTK_WIDGET(c->customcommand),"changed",G_CALLBACK(stpui_customcommand_changed),c); int entry=gtk_combo_box_get_active(GTK_COMBO_BOX(c->queue)); if(entry>-1) { char *queue=pq->GetPrinterName(pq,entry); if(strcmp(queue,PRINTERQUEUE_CUSTOMCOMMAND)==0) gtk_widget_show(c->customcommand); } #endif return(GTK_WIDGET(c)); } GType stpui_queue_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo stpui_queue_info = { sizeof (stpui_QueueClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) stpui_queue_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (stpui_Queue), 0, (GInstanceInitFunc) stpui_queue_init, }; stpuic_type = g_type_register_static (GTK_TYPE_VBOX, "stpui_Queue", &stpui_queue_info, 0); } return stpuic_type; } static void stpui_queue_class_init (stpui_QueueClass *klass) { stpui_queue_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION, G_STRUCT_OFFSET (stpui_QueueClass, queued), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void stpui_queue_init (stpui_Queue *c) { } gboolean stpui_queue_refresh(stpui_Queue *t) { gboolean result=TRUE; // g_signal_handlers_block_matched (G_OBJECT (t->queue), // G_SIGNAL_MATCH_DATA, // 0, 0, NULL, NULL, t); // result=stpui_queue_set_state(t); // g_signal_handlers_unblock_matched (G_OBJECT (t->queue), // G_SIGNAL_MATCH_DATA, // 0, 0, NULL, NULL, t); return(result); } photoprint-0.4.2-pre2/stpui_widgets/stpui_optionbook.c0000644000175000017500000001333011220202744020151 00000000000000/* * stpui_optionbook.c - provides a custom notebook widget for providing autonomous control * over an entire stp_vars_t (or at least the Output and Feature classes). * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include "stpui_optionbook.h" #include "../stp_support/stputil.h" #include "../config.h" #include "../gettext.h" #define _(x) gettext(x) enum { CHANGED_SIGNAL, LAST_SIGNAL }; static guint stpui_optionbook_signals[LAST_SIGNAL] = { 0 }; static void stpui_optionbook_class_init (stpui_OptionBookClass *klass); static void stpui_optionbook_init (stpui_OptionBook *stpuicombo); static void stpui_optionbook_refresh_page(stpui_OptionBook *ob,int page) { gboolean active; int index; active=stpui_optionpage_refresh(STPUI_OPTIONPAGE(ob->page[page])); index=gtk_notebook_page_num(GTK_NOTEBOOK(ob),GTK_WIDGET(ob->scrollwin[page])); if(active && index<0) gtk_notebook_insert_page(GTK_NOTEBOOK(ob),ob->scrollwin[page],ob->label[page],page+ob->custompagecount); if(!active && index>-1) gtk_notebook_remove_page(GTK_NOTEBOOK(ob),index); } void stpui_optionbook_refresh(stpui_OptionBook *ob) { int i; for(i=0;ivars); stpui_optionbook_refresh(ob); g_signal_emit(G_OBJECT (ob),stpui_optionbook_signals[CHANGED_SIGNAL], 0); } static void buildpage(stpui_OptionBook *ob,int page,char *name,int optclass,int optlevellow,int optlevelhigh) { ob->scrollwin[page]=gtk_scrolled_window_new(NULL,NULL); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (ob->scrollwin[page]), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); ob->label[page]=gtk_label_new(name); gtk_widget_show(ob->scrollwin[page]); ob->page[page]=stpui_optionpage_new(ob->vars,optclass,optlevellow,optlevelhigh); gtk_scrolled_window_add_with_viewport (GTK_SCROLLED_WINDOW (ob->scrollwin[page]), ob->page[page]); gtk_widget_show(ob->page[page]); g_signal_connect(G_OBJECT(ob->page[page]),"changed",G_CALLBACK(stpui_optionbook_changed),ob); g_object_ref(ob->scrollwin[page]); g_object_ref(ob->label[page]); } static void init_custompages(stpui_OptionBook *ob) { struct stpui_optionbook_custompage *cps=ob->custompages; int page=0; while(pagecustompagecount) { fprintf(stderr,"Building custom page %d\n",page); cps->scrollwin=gtk_scrolled_window_new(NULL,NULL); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (cps->scrollwin), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); cps->label=gtk_label_new(cps->name); gtk_widget_show(cps->scrollwin); gtk_scrolled_window_add_with_viewport (GTK_SCROLLED_WINDOW (cps->scrollwin), cps->widget); gtk_widget_show(cps->widget); gtk_notebook_insert_page(GTK_NOTEBOOK(ob),cps->scrollwin,cps->label,page); ++cps; ++page; } fprintf(stderr,"Built custom pages\n"); } static void populate(stpui_OptionBook *ob) { buildpage(ob,0,_("General"),STP_PARAMETER_CLASS_FEATURE, STP_PARAMETER_LEVEL_BASIC,STP_PARAMETER_LEVEL_BASIC); buildpage(ob,1,_("Manual Settings"),STP_PARAMETER_CLASS_FEATURE, STP_PARAMETER_LEVEL_ADVANCED,STP_PARAMETER_LEVEL_ADVANCED4); buildpage(ob,2,_("Colour (Basic)"),STP_PARAMETER_CLASS_OUTPUT, STP_PARAMETER_LEVEL_BASIC,STP_PARAMETER_LEVEL_BASIC); buildpage(ob,3,_("Colour (Fine-tuning)"),STP_PARAMETER_CLASS_OUTPUT, STP_PARAMETER_LEVEL_ADVANCED,STP_PARAMETER_LEVEL_ADVANCED2); buildpage(ob,4,_("Colour (Extra)"),STP_PARAMETER_CLASS_OUTPUT, STP_PARAMETER_LEVEL_ADVANCED3,STP_PARAMETER_LEVEL_ADVANCED4); } void stpui_optionbook_rebuild(stpui_OptionBook *ob) { int i; int index; for(i=0;iscrollwin[i])); if(index>=0) gtk_notebook_remove_page(GTK_NOTEBOOK(ob),index); gtk_widget_destroy(GTK_WIDGET(ob->scrollwin[i])); } populate(ob); stpui_optionbook_refresh(ob); } GtkWidget* stpui_optionbook_new (stp_vars_t *vars,struct stpui_optionbook_custompage *custompages,int custompagecount) { stpui_OptionBook *ob=STPUI_OPTIONBOOK(g_object_new (stpui_optionbook_get_type (), NULL)); ob->vars=vars; ob->custompages=custompages; ob->custompagecount=custompagecount; init_custompages(ob); populate(ob); fprintf(stderr,"Pages built - refreshing\n"); stpui_optionbook_refresh(ob); fprintf(stderr,"Done\n"); return(GTK_WIDGET(ob)); } GType stpui_optionbook_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo stpui_optionbook_info = { sizeof (stpui_OptionBookClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) stpui_optionbook_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (stpui_OptionBook), 0, (GInstanceInitFunc) stpui_optionbook_init, }; stpuic_type = g_type_register_static (GTK_TYPE_NOTEBOOK, "stpui_OptionBook", &stpui_optionbook_info, 0); } return stpuic_type; } static void stpui_optionbook_class_init (stpui_OptionBookClass *klass) { stpui_optionbook_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION, G_STRUCT_OFFSET (stpui_OptionBookClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void stpui_optionbook_init (stpui_OptionBook *ob) { int i; for(i=0;ipage[i]=NULL; ob->label[i]=NULL; ob->scrollwin[i]=NULL; } } photoprint-0.4.2-pre2/stpui_widgets/stpui_combo.c0000644000175000017500000002015511076423574017107 00000000000000/* * stpui_combo.c - provides a custom widget for providing autonomous control over * a string option in the stp_vars_t structure. * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ /* FIXME: A destructor is needed for this class, to free up the option list. As it stands, a certain amount of memory will be lost when the widget is destroyed. */ #include #include #include #include "stpui_combo.h" enum { CHANGED_SIGNAL, LAST_SIGNAL }; static guint stpui_combo_signals[LAST_SIGNAL] = { 0 }; static void stpui_combo_class_init (stpui_ComboClass *klass); static void stpui_combo_init (stpui_Combo *stpuicombo); static char *stpui_combo_get_optionkey(stpui_Combo *c,const char *longname,stp_parameter_t *desc) { char *result=NULL; stp_parameter_t d; int free_desc=FALSE; if(!desc) { stp_describe_parameter(c->vars,c->optionname,&d); free_desc=TRUE; desc=&d; } if(desc->p_type==STP_PARAMETER_TYPE_STRING_LIST) { stp_string_list_t *strlist=desc->bounds.str; if(strlist) { int strcount; int j; strcount=stp_string_list_count(strlist); for(j=0;jtext,-1,&in,&out,NULL); if(strcmp(utftext,longname)==0) { result=g_strdup(p->name); } g_free(utftext); } } } if(free_desc) stp_parameter_description_destroy(&d); return(result); } static char *stpui_combo_get_longname(stpui_Combo *c,const char *shortname,stp_parameter_t *desc) { char *result=NULL; stp_parameter_t d; int free_desc=FALSE; if(!desc) { stp_describe_parameter(c->vars,c->optionname,&d); free_desc=TRUE; desc=&d; } if(desc->p_type==STP_PARAMETER_TYPE_STRING_LIST) { stp_string_list_t *strlist=desc->bounds.str; if(strlist) { int strcount; int j; strcount=stp_string_list_count(strlist); for(j=0;jname,shortname)==0) { gsize in,out; result=g_locale_to_utf8(p->text,-1,&in,&out,NULL); } } } } if(free_desc) stp_parameter_description_destroy(&d); return(result); } static gboolean stpui_combo_build_options(stpui_Combo *c) { stp_parameter_t desc; const char *value; char *longname; gboolean result; if(c->optionlist) { GList *element; gtk_list_clear_items(GTK_LIST(GTK_COMBO(c->combo)->list),0,-1); element=c->optionlist; while(element) { g_free(element->data); element=g_list_next(element); } g_list_free(c->optionlist); c->optionlist=NULL; } stp_describe_parameter(c->vars,c->optionname,&desc); if((desc.p_type==STP_PARAMETER_TYPE_STRING_LIST) && desc.is_active) { int strcount,j; stp_string_list_t *strlist=desc.bounds.str; if(strlist) { strcount=stp_string_list_count(strlist); for(j=0;joptionlist=g_list_append(c->optionlist,g_locale_to_utf8(p->text,-1,&in,&out,NULL)); } gtk_combo_set_popdown_strings (GTK_COMBO (c->combo), c->optionlist); } value=stp_get_string_parameter(c->vars,c->optionname); if(!value) value=desc.deflt.str; longname=stpui_combo_get_longname(c,value,&desc); gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(c->combo)->entry),longname); g_free(longname); } gtk_widget_set_sensitive(GTK_WIDGET(c->combo),desc.is_active && c->optionlist); result=desc.is_active; stp_parameter_description_destroy(&desc); return(result); } static void stpui_combo_entry_changed(GtkEntry *entry,gpointer user_data) { stpui_Combo *combo=STPUI_COMBO(user_data); GtkCombo *c=GTK_COMBO(combo->combo); fprintf(stderr,"Received entry changed for combo\n"); const char *val=gtk_entry_get_text(GTK_ENTRY(c->entry)); fprintf(stderr,"Current value: %s\n",val); if(val && strlen(val)) { char *optkey; optkey=stpui_combo_get_optionkey(combo,val,NULL); if(optkey) { fprintf(stderr,"Option key: %s\n",optkey); stp_set_string_parameter(combo->vars,combo->optionname,optkey); g_signal_emit(G_OBJECT (combo), stpui_combo_signals[CHANGED_SIGNAL], 0); } else fprintf(stderr,"Can't find optionkey\n"); } } static void stpui_toggle_changed(GtkWidget *w,gpointer *ud) { stpui_Combo *s=STPUI_COMBO(ud); fprintf(stderr,"Received toggle changed for combo\n"); gboolean enabled=gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(s->checkbutton)); if(enabled) { const char *val=gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(s->combo)->entry)); if(val && strlen(val)) { char *optkey; optkey=stpui_combo_get_optionkey(s,val,NULL); if(optkey) { stp_set_string_parameter(s->vars,s->optionname,optkey); } } } else { stp_clear_string_parameter(s->vars,s->optionname); } stpui_combo_refresh(s); } GtkWidget* stpui_combo_new (stp_vars_t *vars,const char *optname,GtkWidget *label) { stpui_Combo *c=STPUI_COMBO(g_object_new (stpui_combo_get_type (), NULL)); c->combo=gtk_combo_new(); gtk_combo_set_value_in_list(GTK_COMBO(c->combo),TRUE,FALSE); c->vars=vars; c->optionname=optname; if(GTK_IS_CHECK_BUTTON(label)) c->checkbutton=GTK_CHECK_BUTTON(label); else c->label=label; if(c->checkbutton) { gboolean active=stp_check_string_parameter(c->vars,c->optionname,STP_PARAMETER_DEFAULTED); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(c->checkbutton),active); g_signal_connect(G_OBJECT(c->checkbutton),"toggled",G_CALLBACK(stpui_toggle_changed),c); } stpui_combo_build_options(c); g_signal_connect(GTK_COMBO(c->combo)->entry,"changed",G_CALLBACK(stpui_combo_entry_changed),c); gtk_box_pack_end(GTK_BOX(c),GTK_WIDGET(c->combo),TRUE,TRUE,0); gtk_widget_show(c->combo); return(GTK_WIDGET(c)); } GType stpui_combo_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo stpui_combo_info = { sizeof (stpui_ComboClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) stpui_combo_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (stpui_Combo), 0, (GInstanceInitFunc) stpui_combo_init, }; stpuic_type = g_type_register_static (GTK_TYPE_HBOX, "stpui_Combo", &stpui_combo_info, 0); } return stpuic_type; } static void stpui_combo_class_init (stpui_ComboClass *klass) { stpui_combo_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION, G_STRUCT_OFFSET (stpui_ComboClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void stpui_combo_init (stpui_Combo *c) { c->optionlist=NULL; c->checkbutton=NULL; c->label=NULL; } gboolean stpui_combo_refresh(stpui_Combo *c) { gboolean result; gboolean enabled=TRUE; if(c->checkbutton) enabled=gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(c->checkbutton)); gtk_widget_set_sensitive(GTK_WIDGET(c),enabled); g_signal_handlers_block_matched (G_OBJECT (GTK_COMBO(c->combo)->list), G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, c); g_signal_handlers_block_matched (G_OBJECT (GTK_COMBO(c->combo)->entry), G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, c); if((result=stpui_combo_build_options(c))) { gtk_widget_show(GTK_WIDGET(c)); if(c->checkbutton) gtk_widget_show(GTK_WIDGET(c->checkbutton)); if(c->label) gtk_widget_show(c->label); } else { gtk_widget_hide(GTK_WIDGET(c)); if(c->checkbutton) gtk_widget_hide(GTK_WIDGET(c->checkbutton)); if(c->label) gtk_widget_hide(c->label); } g_signal_handlers_unblock_matched (G_OBJECT (GTK_COMBO(c->combo)->list), G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, c); g_signal_handlers_unblock_matched (G_OBJECT (GTK_COMBO(c->combo)->entry), G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, c); return(result); } photoprint-0.4.2-pre2/stpui_widgets/stpui_slider.h0000644000175000017500000000243211076423574017275 00000000000000#ifndef __STPUI_SLIDER_H__ #define __STPUI_SLIDER_H__ #include #include #include #include #include #include #include G_BEGIN_DECLS #define STPUI_SLIDER_TYPE (stpui_slider_get_type()) #define STPUI_SLIDER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), STPUI_SLIDER_TYPE, stpui_Slider)) #define STPUI_SLIDER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), STPUI_SLIDER_TYPE, stpui_SliderClass)) #define IS_STPUI_SLIDER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), STPUI_SLIDER_TYPE)) #define IS_STPUI_SLIDER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), STPUI_SLIDER_TYPE)) typedef struct _stpui_Slider stpui_Slider; typedef struct _stpui_SliderClass stpui_SliderClass; struct _stpui_Slider { GtkHBox box; GtkWidget *scale; GtkWidget *spin; GtkCheckButton *checkbutton; GtkWidget *label; stp_vars_t *vars; const char *optionname; int type; }; struct _stpui_SliderClass { GtkHBoxClass parent_class; void (*changed)(stpui_Slider *combo); }; GType stpui_slider_get_type (void); GtkWidget* stpui_slider_new (stp_vars_t *vars,const char *optname,GtkWidget *checkbutton); gboolean stpui_slider_refresh(stpui_Slider *c); G_END_DECLS #endif /* __STPUI_SLIDER_H__ */ photoprint-0.4.2-pre2/stpui_widgets/stpui_toggle.c0000644000175000017500000000644711076423574017301 00000000000000/* * stpui_toggle.c - provides a custom widget for providing autonomous control over * a boolean option in the stp_vars_t structure. * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include "stpui_toggle.h" enum { TOGGLED_SIGNAL, LAST_SIGNAL }; static guint stpui_toggle_signals[LAST_SIGNAL] = { 0 }; static void stpui_toggle_class_init (stpui_ToggleClass *klass); static void stpui_toggle_init (stpui_Toggle *t); static gboolean stpui_toggle_set_state(stpui_Toggle *c) { stp_parameter_t desc; gboolean result; stp_describe_parameter(c->vars,c->optionname,&desc); if((desc.p_type==STP_PARAMETER_TYPE_BOOLEAN) && desc.is_active) { int active=stp_get_boolean_parameter(c->vars,c->optionname); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(c->toggle),active); } if(desc.is_active) gtk_widget_show(GTK_WIDGET(c)); else gtk_widget_hide(GTK_WIDGET(c)); // gtk_widget_set_sensitive(GTK_WIDGET(c->toggle),desc.is_active); result=desc.is_active; stp_parameter_description_destroy(&desc); return(result); } static void stpui_toggle_changed(GtkToggleButton *tb,gpointer *ud) { stpui_Toggle *t=STPUI_TOGGLE(ud); gboolean active=gtk_toggle_button_get_active(tb); stp_set_boolean_parameter(t->vars,t->optionname,active); g_signal_emit(G_OBJECT (t), stpui_toggle_signals[TOGGLED_SIGNAL], 0); } GtkWidget* stpui_toggle_new (stp_vars_t *vars,const char *optname,const char *displayname) { stpui_Toggle *c=STPUI_TOGGLE(g_object_new (stpui_toggle_get_type (), NULL)); c->toggle=gtk_toggle_button_new_with_label(displayname); c->vars=vars; c->optionname=optname; stpui_toggle_set_state(c); g_signal_connect(GTK_WIDGET(c->toggle),"toggled",G_CALLBACK(stpui_toggle_changed),c); gtk_box_pack_end(GTK_BOX(c),GTK_WIDGET(c->toggle),TRUE,TRUE,0); gtk_widget_show(c->toggle); return(GTK_WIDGET(c)); } GType stpui_toggle_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo stpui_toggle_info = { sizeof (stpui_ToggleClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) stpui_toggle_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (stpui_Toggle), 0, (GInstanceInitFunc) stpui_toggle_init, }; stpuic_type = g_type_register_static (GTK_TYPE_HBOX, "stpui_Toggle", &stpui_toggle_info, 0); } return stpuic_type; } static void stpui_toggle_class_init (stpui_ToggleClass *klass) { stpui_toggle_signals[TOGGLED_SIGNAL] = g_signal_new ("toggled", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION, G_STRUCT_OFFSET (stpui_ToggleClass, toggled), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void stpui_toggle_init (stpui_Toggle *c) { } gboolean stpui_toggle_refresh(stpui_Toggle *t) { gboolean result; g_signal_handlers_block_matched (G_OBJECT (t->toggle), G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, t); result=stpui_toggle_set_state(t); g_signal_handlers_unblock_matched (G_OBJECT (t->toggle), G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, t); return(result); } photoprint-0.4.2-pre2/stpui_widgets/stpui_slider.c0000644000175000017500000002666111076423574017302 00000000000000/* * stpui_slider.c - provides a custom widget for providing autonomous control over * a float or int option in the stp_vars_t structure. * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ /* FIXME: Currently, the "changed" signal will only be emitted when the user * releases the mouse button having moved the slider / spin button. * No signal is emitted if the user uses the keyboard. */ #include #include "stpui_slider.h" #include "dimension.h" #include "units.h" enum { CHANGED_SIGNAL, LAST_SIGNAL }; static guint stpui_slider_signals[LAST_SIGNAL] = { 0 }; static void stpui_slider_class_init (stpui_SliderClass *klass); static void stpui_slider_init (stpui_Slider *stpuicombo); static gboolean stpui_slider_update(stpui_Slider *c) { stp_parameter_t desc; gboolean result; gboolean enabled=TRUE; if(c->checkbutton) enabled=gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(c->checkbutton)); stp_describe_parameter(c->vars,c->optionname,&desc); if(desc.is_active) { switch(desc.p_type) { case STP_PARAMETER_TYPE_DOUBLE: { double min,max,current; min=desc.bounds.dbl.lower; max=desc.bounds.dbl.upper; current=stp_get_float_parameter(c->vars,c->optionname); gtk_range_set_range(GTK_RANGE(c->scale),min,max); gtk_range_set_value(GTK_RANGE(c->scale),current); gtk_spin_button_set_range(GTK_SPIN_BUTTON(c->spin),min,max); gtk_spin_button_set_value(GTK_SPIN_BUTTON(c->spin),current); break; } case STP_PARAMETER_TYPE_INT: { int min,max,current; min=desc.bounds.integer.lower; max=desc.bounds.integer.upper; current=stp_get_int_parameter(c->vars,c->optionname); gtk_range_set_range(GTK_RANGE(c->scale),min,max); gtk_range_set_value(GTK_RANGE(c->scale),current); gtk_spin_button_set_range(GTK_SPIN_BUTTON(c->spin),min,max); gtk_spin_button_set_value(GTK_SPIN_BUTTON(c->spin),current); break; } case STP_PARAMETER_TYPE_DIMENSION: { int min,max,current; min=desc.bounds.integer.lower; max=desc.bounds.integer.upper; current=stp_get_dimension_parameter(c->vars,c->optionname); // Convert to correct unit here... gtk_range_set_range(GTK_RANGE(c->scale),min,max); gtk_range_set_value(GTK_RANGE(c->scale),current); dimension_set_range_pt(DIMENSION(c->spin),min,max); dimension_set_pt(DIMENSION(c->spin),current); break; } default: break; } } if(desc.is_active) { gtk_widget_show(GTK_WIDGET(c)); if(c->checkbutton) gtk_widget_show(GTK_WIDGET(c->checkbutton)); if(c->label) gtk_widget_show(GTK_WIDGET(c->label)); } else { gtk_widget_hide(GTK_WIDGET(c)); if(c->checkbutton) gtk_widget_hide(GTK_WIDGET(c->checkbutton)); if(c->label) gtk_widget_hide(GTK_WIDGET(c->label)); } gtk_widget_set_sensitive(GTK_WIDGET(c->scale),desc.is_active); gtk_widget_set_sensitive(GTK_WIDGET(c->spin),desc.is_active & enabled); if(c->checkbutton) gtk_widget_set_sensitive(GTK_WIDGET(c->checkbutton),desc.is_active); result=desc.is_active; return(result); } static gboolean stpui_slider_released(GtkWidget *w,GdkEventButton *e,gpointer ud) { stpui_Slider *s=STPUI_SLIDER(ud); double value; switch(s->type) { case STP_PARAMETER_TYPE_DOUBLE: value=gtk_range_get_value(GTK_RANGE(s->scale)); stp_set_float_parameter(s->vars,s->optionname,value); break; case STP_PARAMETER_TYPE_INT: value=gtk_range_get_value(GTK_RANGE(s->scale)); stp_set_int_parameter(s->vars,s->optionname,value); break; case STP_PARAMETER_TYPE_DIMENSION: value=gtk_range_get_value(GTK_RANGE(s->scale)); stp_set_dimension_parameter(s->vars,s->optionname,value); break; default: break; } stpui_slider_refresh(s); g_signal_emit(G_OBJECT (s), stpui_slider_signals[CHANGED_SIGNAL], 0); return(FALSE); } static gboolean stpui_spin_released(GtkWidget *w,GdkEventButton *e,gpointer ud) { stpui_Slider *s=STPUI_SLIDER(ud); double value; switch(s->type) { case STP_PARAMETER_TYPE_DOUBLE: value=gtk_spin_button_get_value(GTK_SPIN_BUTTON(s->spin)); stp_set_float_parameter(s->vars,s->optionname,value); break; case STP_PARAMETER_TYPE_INT: value=gtk_spin_button_get_value(GTK_SPIN_BUTTON(s->spin)); stp_set_int_parameter(s->vars,s->optionname,value); break; case STP_PARAMETER_TYPE_DIMENSION: value=dimension_get_pt(DIMENSION(s->spin)); stp_set_dimension_parameter(s->vars,s->optionname,value); break; default: break; } stpui_slider_refresh(s); g_signal_emit(G_OBJECT (s), stpui_slider_signals[CHANGED_SIGNAL], 0); return(FALSE); } static void stpui_slider_changed(GtkWidget *w,gpointer *ud) { stpui_Slider *s=STPUI_SLIDER(ud); double value; if(s->checkbutton) gtk_toggle_button_set_state(GTK_TOGGLE_BUTTON(s->checkbutton),TRUE); switch(s->type) { case STP_PARAMETER_TYPE_DOUBLE: value=gtk_range_get_value(GTK_RANGE(s->scale)); stp_set_float_parameter(s->vars,s->optionname,value); break; case STP_PARAMETER_TYPE_INT: value=gtk_range_get_value(GTK_RANGE(s->scale)); stp_set_int_parameter(s->vars,s->optionname,value); break; case STP_PARAMETER_TYPE_DIMENSION: value=gtk_range_get_value(GTK_RANGE(s->scale)); stp_set_dimension_parameter(s->vars,s->optionname,value); break; default: break; } stpui_slider_refresh(s); // g_signal_emit(G_OBJECT (s), // stpui_slider_signals[CHANGED_SIGNAL], 0); } static void stpui_spin_changed(GtkWidget *w,gpointer *ud) { stpui_Slider *s=STPUI_SLIDER(ud); double value; switch(s->type) { case STP_PARAMETER_TYPE_DOUBLE: value=gtk_spin_button_get_value(GTK_SPIN_BUTTON(s->spin)); stp_set_float_parameter(s->vars,s->optionname,value); break; case STP_PARAMETER_TYPE_INT: value=gtk_spin_button_get_value(GTK_SPIN_BUTTON(s->spin)); stp_set_int_parameter(s->vars,s->optionname,value); break; case STP_PARAMETER_TYPE_DIMENSION: value=dimension_get_pt(DIMENSION(s->spin)); stp_set_dimension_parameter(s->vars,s->optionname,value); break; default: break; } stpui_slider_refresh(s); // g_signal_emit(G_OBJECT (s), // stpui_slider_signals[CHANGED_SIGNAL], 0); } static void stpui_toggle_changed(GtkWidget *w,gpointer *ud) { stpui_Slider *s=STPUI_SLIDER(ud); gboolean enabled=gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(s->checkbutton)); if(enabled) { stp_parameter_t desc; stp_describe_parameter(s->vars,s->optionname,&desc); switch(desc.p_type) { case STP_PARAMETER_TYPE_DOUBLE: { double val=gtk_range_get_value(GTK_RANGE(s->scale)); stp_set_float_parameter(s->vars,s->optionname,val); } break; case STP_PARAMETER_TYPE_INT: { double val=gtk_range_get_value(GTK_RANGE(s->scale)); stp_set_int_parameter(s->vars,s->optionname,val); } break; case STP_PARAMETER_TYPE_DIMENSION: { double val=gtk_range_get_value(GTK_RANGE(s->scale)); // Convert to correct unit here stp_set_dimension_parameter(s->vars,s->optionname,val); } break; default: break; } } else { stp_parameter_t desc; stp_describe_parameter(s->vars,s->optionname,&desc); switch(desc.p_type) { case STP_PARAMETER_TYPE_DOUBLE: stp_clear_float_parameter(s->vars,s->optionname); break; case STP_PARAMETER_TYPE_INT: stp_clear_int_parameter(s->vars,s->optionname); break; case STP_PARAMETER_TYPE_DIMENSION: stp_clear_dimension_parameter(s->vars,s->optionname); break; default: break; } } stpui_slider_refresh(s); } GtkWidget* stpui_slider_new (stp_vars_t *vars,const char *optname,GtkWidget *checkbutton) { stp_parameter_t desc; double step=1.0; stpui_Slider *c=STPUI_SLIDER(g_object_new (stpui_slider_get_type (), NULL)); gboolean active=FALSE; c->vars=vars; c->optionname=optname; c->checkbutton=NULL; c->label=NULL; if(GTK_IS_CHECK_BUTTON(checkbutton)) c->checkbutton=GTK_CHECK_BUTTON(checkbutton); else c->label=checkbutton; stp_describe_parameter(c->vars,c->optionname,&desc); c->type=desc.p_type; switch(c->type) { case STP_PARAMETER_TYPE_DOUBLE: active=stp_check_float_parameter(c->vars,c->optionname,STP_PARAMETER_DEFAULTED); step=0.01; break; case STP_PARAMETER_TYPE_INT: active=stp_check_int_parameter(c->vars,c->optionname,STP_PARAMETER_DEFAULTED); step=1.0; break; case STP_PARAMETER_TYPE_DIMENSION: active=stp_check_dimension_parameter(c->vars,c->optionname,STP_PARAMETER_DEFAULTED); step=1.0; break; default: break; } stp_parameter_description_destroy(&desc); if(c->checkbutton) { gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(c->checkbutton),active); g_signal_connect(G_OBJECT(c->checkbutton),"toggled",G_CALLBACK(stpui_toggle_changed),c); } c->scale=gtk_hscale_new_with_range(0,1.0,step); gtk_scale_set_draw_value(GTK_SCALE(c->scale),FALSE); switch(desc.p_type) { case STP_PARAMETER_TYPE_DOUBLE: case STP_PARAMETER_TYPE_INT: c->spin=gtk_spin_button_new_with_range(0,1.0,step); break; case STP_PARAMETER_TYPE_DIMENSION: c->spin=dimension_new(0,1.0,UNIT_POINTS); dimension_show_unit(DIMENSION(c->spin)); break; default: break; } g_signal_connect(GTK_WIDGET(c->scale),"button-release-event",G_CALLBACK(stpui_slider_released),c); g_signal_connect(GTK_WIDGET(c->spin),"button-release-event",G_CALLBACK(stpui_spin_released),c); g_signal_connect(GTK_WIDGET(c->scale),"value-changed",G_CALLBACK(stpui_slider_changed),c); g_signal_connect(GTK_WIDGET(c->spin),"value-changed",G_CALLBACK(stpui_spin_changed),c); stpui_slider_refresh(c); gtk_box_pack_start(GTK_BOX(c),GTK_WIDGET(c->scale),TRUE,TRUE,0); gtk_widget_show(c->scale); gtk_box_pack_start(GTK_BOX(c),GTK_WIDGET(c->spin),FALSE,TRUE,0); gtk_widget_show(c->spin); return(GTK_WIDGET(c)); } GType stpui_slider_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo stpui_slider_info = { sizeof (stpui_SliderClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) stpui_slider_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (stpui_Slider), 0, (GInstanceInitFunc) stpui_slider_init, }; stpuic_type = g_type_register_static (GTK_TYPE_HBOX, "stpui_Slider", &stpui_slider_info, 0); } return stpuic_type; } static void stpui_slider_class_init (stpui_SliderClass *klass) { stpui_slider_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION, G_STRUCT_OFFSET (stpui_SliderClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void stpui_slider_init (stpui_Slider *c) { } gboolean stpui_slider_refresh(stpui_Slider *c) { gboolean result; g_signal_handlers_block_matched (G_OBJECT (c->scale), G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, c); g_signal_handlers_block_matched (G_OBJECT (c->spin), G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, c); result=stpui_slider_update(c); g_signal_handlers_unblock_matched (G_OBJECT (c->scale), G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, c); g_signal_handlers_unblock_matched (G_OBJECT (c->spin), G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, c); return(result); } photoprint-0.4.2-pre2/stpui_widgets/Makefile.in0000644000175000017500000003641411400237522016455 00000000000000# Makefile.in generated by automake 1.10.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 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@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@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 = stpui_widgets DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/scripts/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libstpui_widgets_la_LIBADD = am_libstpui_widgets_la_OBJECTS = dimension.lo stpui_combo.lo \ stpui_optionbook.lo stpui_optionpage.lo \ stpui_printerselector.lo stpui_slider.lo stpui_toggle.lo \ stpui_file.lo stpui_queue.lo libstpui_widgets_la_OBJECTS = $(am_libstpui_widgets_la_OBJECTS) libstpui_widgets_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(libstpui_widgets_la_LDFLAGS) $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/scripts/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ SOURCES = $(libstpui_widgets_la_SOURCES) DIST_SOURCES = $(libstpui_widgets_la_SOURCES) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DSYMUTIL = @DSYMUTIL@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ GDKPIXBUF2_CFLAGS = @GDKPIXBUF2_CFLAGS@ GDKPIXBUF2_LIBS = @GDKPIXBUF2_LIBS@ GETOPT_LIBS = @GETOPT_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIB2_CFLAGS = @GLIB2_CFLAGS@ GLIB2_LIBS = @GLIB2_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GP_CFLAGS = @GP_CFLAGS@ GP_LIBS = @GP_LIBS@ GREP = @GREP@ GTHREAD_CFLAGS = @GTHREAD_CFLAGS@ GTHREAD_LIBS = @GTHREAD_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ JPEG_LIBS = @JPEG_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ LCMS_LIBS = @LCMS_LIBS@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBM_LIBS = @LIBM_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NMEDIT = @NMEDIT@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ POSUB = @POSUB@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ TIFF_LIBS = @TIFF_LIBS@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ 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@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ 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@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = -Wall $(GTK2_CFLAGS) $(GP_CFLAGS) AM_CXXFLAGS = -Wall $(GTK2_CFLAGS) $(GP_CFLAGS) noinst_LTLIBRARIES = libstpui_widgets.la libstpui_widgets_la_SOURCES = \ dimension.c \ dimension.h \ stpui_combo.c \ stpui_combo.h \ stpui_optionbook.c \ stpui_optionbook.h \ stpui_optionpage.c \ stpui_optionpage.h \ stpui_printerselector.c \ stpui_printerselector.h \ stpui_slider.c \ stpui_slider.h \ stpui_toggle.c \ stpui_toggle.h \ stpui_file.c \ stpui_file.h \ stpui_queue.c \ stpui_queue.h \ units.h libstpui_widgets_la_LDFLAGS = -static all: all-am .SUFFIXES: .SUFFIXES: .c .lo .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 \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign stpui_widgets/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign stpui_widgets/Makefile .PRECIOUS: 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 clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libstpui_widgets.la: $(libstpui_widgets_la_OBJECTS) $(libstpui_widgets_la_DEPENDENCIES) $(libstpui_widgets_la_LINK) $(libstpui_widgets_la_OBJECTS) $(libstpui_widgets_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dimension.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stpui_combo.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stpui_file.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stpui_optionbook.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stpui_optionpage.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stpui_printerselector.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stpui_queue.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stpui_slider.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stpui_toggle.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here 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 $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$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: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: 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: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_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-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-dvi: install-dvi-am 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 installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ 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 mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am # 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: photoprint-0.4.2-pre2/stpui_widgets/stpui_optionbook.h0000644000175000017500000000344711076423574020205 00000000000000#ifndef __STPUI_OPTIONBOOK_H__ #define __STPUI_OPTIONBOOK_H__ #include #include #include #include #include #include #include "stpui_combo.h" #include "stpui_optionpage.h" G_BEGIN_DECLS #define STPUI_OPTIONBOOK_TYPE (stpui_optionbook_get_type()) #define STPUI_OPTIONBOOK(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), STPUI_OPTIONBOOK_TYPE, stpui_OptionBook)) #define STPUI_OPTIONBOOK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), STPUI_OPTIONBOOK_TYPE, stpui_OptionBookClass)) #define IS_STPUI_OPTIONBOOK(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), STPUI_OPTIONBOOK_TYPE)) #define IS_STPUI_OPTIONBOOK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), STPUI_OPTIONBOOK_TYPE)) typedef struct _stpui_OptionBook stpui_OptionBook; typedef struct _stpui_OptionBookClass stpui_OptionBookClass; #define STPUI_OPTIONBOOK_PAGES 5 struct stpui_optionbook_custompage { /* Inialised by the user */ const char *name; GtkWidget *widget; /* Private - for use by the OptionBook */ GtkWidget *scrollwin; GtkWidget *label; }; struct _stpui_OptionBook { GtkNotebook notebook; stp_vars_t *vars; GtkWidget *page[STPUI_OPTIONBOOK_PAGES]; GtkWidget *scrollwin[STPUI_OPTIONBOOK_PAGES]; GtkWidget *label[STPUI_OPTIONBOOK_PAGES]; struct stpui_optionbook_custompage *custompages; int custompagecount; }; struct _stpui_OptionBookClass { GtkNotebookClass parent_class; void (*changed)(stpui_OptionBook *book); }; GType stpui_optionbook_get_type (void); GtkWidget* stpui_optionbook_new (stp_vars_t *vars,struct stpui_optionbook_custompage *custompages,int custompagecount); void stpui_optionbook_refresh(stpui_OptionBook *ob); void stpui_optionbook_rebuild(stpui_OptionBook *ob); G_END_DECLS #endif /* __STPUI_OPTIONBOOK_H__ */ photoprint-0.4.2-pre2/stpui_widgets/stpui_optionpage.h0000644000175000017500000000255711076423574020170 00000000000000#ifndef __STPUI_OPTIONPAGE_H__ #define __STPUI_OPTIONPAGE_H__ #include #include #include #include #include "stpui_combo.h" #include "stpui_slider.h" #include "stpui_toggle.h" #include "stpui_file.h" G_BEGIN_DECLS #define STPUI_OPTIONPAGE_TYPE (stpui_optionpage_get_type()) #define STPUI_OPTIONPAGE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), STPUI_OPTIONPAGE_TYPE, stpui_OptionPage)) #define STPUI_OPTIONPAGE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), STPUI_OPTIONPAGE_TYPE, stpui_OptionPageClass)) #define IS_STPUI_OPTIONPAGE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), STPUI_OPTIONPAGE_TYPE)) #define IS_STPUI_OPTIONPAGE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), STPUI_OPTIONPAGE_TYPE)) typedef struct _stpui_OptionPage stpui_OptionPage; typedef struct _stpui_OptionPageClass stpui_OptionPageClass; struct _stpui_OptionPage { GtkVBox vbox; GtkWidget *table; GList *widgetlist; stp_vars_t *vars; int optclass; int optlevelmin; int optlevelmax; }; struct _stpui_OptionPageClass { GtkHBoxClass parent_class; void (*changed)(stpui_OptionPage *op); }; GType stpui_optionpage_get_type (void); GtkWidget* stpui_optionpage_new (stp_vars_t *vars,int optclass,int optlevelmin,int optlevelmax); gboolean stpui_optionpage_refresh(stpui_OptionPage *op); G_END_DECLS #endif /* __STPUI_OPTIONPAGE_H__ */ photoprint-0.4.2-pre2/stpui_widgets/stpui_queue.h0000644000175000017500000000205411076423574017137 00000000000000#ifndef __STPUI_QUEUE_H__ #define __STPUI_QUEUE_H__ #include #include #include #include G_BEGIN_DECLS #define STPUI_QUEUE_TYPE (stpui_queue_get_type()) #define STPUI_QUEUE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), STPUI_QUEUE_TYPE, stpui_Queue)) #define STPUI_QUEUE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), STPUI_QUEUE_TYPE, stpui_QueueClass)) #define IS_STPUI_QUEUE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), STPUI_QUEUE_TYPE)) #define IS_STPUI_QUEUE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), STPUI_QUEUE_TYPE)) typedef struct _stpui_Queue stpui_Queue; typedef struct _stpui_QueueClass stpui_QueueClass; struct _stpui_Queue { GtkVBox box; GtkWidget *queue; GtkWidget *customcommand; struct pqinfo *pq; }; struct _stpui_QueueClass { GtkVBoxClass parent_class; void (*queued)(stpui_Queue *t); }; GType stpui_queue_get_type (void); GtkWidget* stpui_queue_new (struct pqinfo *pq); gboolean stpui_queue_refresh(stpui_Queue *t); G_END_DECLS #endif /* __STPUI_QUEUE_H__ */ photoprint-0.4.2-pre2/stpui_widgets/stpui_printerselector.c0000644000175000017500000001546011076423574021237 00000000000000#include #include #include #include "stpui_printerselector.h" enum { CHANGED_SIGNAL, LAST_SIGNAL }; static guint stpui_printerselector_signals[LAST_SIGNAL] = { 0 }; static void stpui_printerselector_class_init (stpui_PrinterSelectorClass *klass); static void stpui_printerselector_init (stpui_PrinterSelector *stpuicombo); static void stpui_printerselector_build_manufacturers(stpui_PrinterSelector *c) { int count,j; if(c->manufacturercount) { gtk_list_clear_items(GTK_LIST(GTK_COMBO(c->mancombo)->list),0,-1); c->manufacturercount=0; g_list_free(c->manufacturers); c->manufacturers=NULL; } count=stp_printer_model_count(); for(j=0;jmanufacturers,manufacturer,(GCompareFunc)strcmp)) { c->manufacturers=g_list_append(c->manufacturers,(void *)manufacturer); ++c->manufacturercount; } } } if(c->manufacturers) gtk_combo_set_popdown_strings(GTK_COMBO(c->mancombo),c->manufacturers); if(c->manufacturer) gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(c->mancombo)->entry),c->manufacturer); } static void stpui_printerselector_build_models(stpui_PrinterSelector *c) { int count,j; const char *defmodel=NULL; if(c->modelcount) { gtk_list_clear_items(GTK_LIST(GTK_COMBO(c->modelcombo)->list),0,-1); c->modelcount=0; g_list_free(c->models); c->models=NULL; } count=stp_printer_model_count(); for(j=0;jmanufacturer)==0) { const char *model=stp_printer_get_long_name(printer); c->models=g_list_append(c->models,(void *)model); if(c->modelcount==0 || (strcmp(c->model,model)==0)) defmodel=model; ++c->modelcount; } } } if(c->models) { gtk_combo_set_popdown_strings(GTK_COMBO(c->modelcombo),c->models); if(c->model) { g_free(c->model); c->model=NULL; } if(defmodel) { c->model=g_strdup(defmodel); gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(c->modelcombo)->entry),c->model); } } } static void stpui_printerselector_man_changed(GtkEntry *entry,gpointer *ud) { stpui_PrinterSelector *c=STPUI_PRINTERSELECTOR(ud); const char *val=gtk_entry_get_text(entry); if(val && strlen(val)) { if(c->manufacturer) g_free(c->manufacturer); c->manufacturer=g_strdup(val); stpui_printerselector_build_models(c); } } static int verifymodel(const char *model) { int result=FALSE; if(stp_get_printer_by_long_name(model)) result=TRUE; return(result); } static void stpui_printerselector_model_changed(GtkEntry *entry,gpointer *ud) { stpui_PrinterSelector *c=STPUI_PRINTERSELECTOR(ud); const char *val=gtk_entry_get_text(entry); if(val && strlen(val)) { if(verifymodel(val)) { if(c->model) g_free(c->model); c->model=g_strdup(val); g_signal_emit(G_OBJECT (c), stpui_printerselector_signals[CHANGED_SIGNAL], 0); } } } GtkWidget* stpui_printerselector_new () { stpui_PrinterSelector *c=STPUI_PRINTERSELECTOR(g_object_new (stpui_printerselector_get_type (), NULL)); c->mancombo=gtk_combo_new(); gtk_combo_set_value_in_list(GTK_COMBO(c->mancombo),TRUE,FALSE); c->modelcombo=gtk_combo_new(); gtk_combo_set_value_in_list(GTK_COMBO(c->modelcombo),TRUE,FALSE); stpui_printerselector_build_manufacturers(c); stpui_printerselector_build_models(c); g_signal_connect(GTK_COMBO(c->mancombo)->entry,"changed",G_CALLBACK(stpui_printerselector_man_changed),c); g_signal_connect(GTK_COMBO(c->modelcombo)->entry,"changed",G_CALLBACK(stpui_printerselector_model_changed),c); gtk_box_pack_start(GTK_BOX(c),GTK_WIDGET(c->mancombo),TRUE,TRUE,0); gtk_widget_show(c->mancombo); gtk_box_pack_start(GTK_BOX(c),GTK_WIDGET(c->modelcombo),TRUE,TRUE,0); gtk_widget_show(c->modelcombo); return(GTK_WIDGET(c)); } GType stpui_printerselector_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo stpui_printerselector_info = { sizeof (stpui_PrinterSelectorClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) stpui_printerselector_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (stpui_PrinterSelector), 0, (GInstanceInitFunc) stpui_printerselector_init, }; stpuic_type = g_type_register_static (GTK_TYPE_HBOX, "stpui_PrinterSelector", &stpui_printerselector_info, 0); } return stpuic_type; } static void stpui_printerselector_class_init (stpui_PrinterSelectorClass *klass) { stpui_printerselector_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION, G_STRUCT_OFFSET (stpui_PrinterSelectorClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void stpui_printerselector_init (stpui_PrinterSelector *c) { c->manufacturercount=0; c->manufacturers=NULL; c->manufacturer=g_strdup("Epson"); c->modelcount=0; c->models=NULL; c->model=g_strdup("Stylus Color 600"); } const char *stpui_printerselector_get_printer_name(stpui_PrinterSelector *c) { return(c->model); } const char *stpui_printerselector_get_driver(stpui_PrinterSelector *c) { const stp_printer_t *printer=stp_get_printer_by_long_name(c->model); const char *driver=stp_printer_get_driver(printer); return(driver); } void stpui_printerselector_set_printer_name(stpui_PrinterSelector *c,const char *name) { const stp_printer_t *printer=stp_get_printer_by_long_name(name); if(printer) { c->manufacturer=strdup(stp_printer_get_manufacturer(printer)); c->model=strdup(name); stpui_printerselector_build_models(c); if(c->manufacturer) { gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(c->mancombo)->entry),c->manufacturer); } } } void stpui_printerselector_set_driver(stpui_PrinterSelector *c,const char *driver) { if(driver) { const stp_printer_t *printer=stp_get_printer_by_driver(driver); if(printer) { const char *name=stp_printer_get_long_name(printer); printf("Found driver %s\n",driver); g_signal_handlers_block_matched (G_OBJECT(GTK_COMBO(c->modelcombo)->entry),G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, c); g_signal_handlers_block_matched (G_OBJECT(GTK_COMBO(c->mancombo)->entry),G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, c); stpui_printerselector_set_printer_name(c,name); g_signal_handlers_unblock_matched (G_OBJECT(GTK_COMBO(c->modelcombo)->entry),G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, c); g_signal_handlers_unblock_matched (G_OBJECT(GTK_COMBO(c->mancombo)->entry),G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, c); } else g_print("Can't find driver %s\n",driver); } else g_print("No driver supplied!\n"); } photoprint-0.4.2-pre2/stpui_widgets/Makefile.am0000644000175000017500000000112511076423574016450 00000000000000AM_CFLAGS = -Wall $(GTK2_CFLAGS) $(GP_CFLAGS) AM_CXXFLAGS = -Wall $(GTK2_CFLAGS) $(GP_CFLAGS) noinst_LTLIBRARIES = libstpui_widgets.la libstpui_widgets_la_SOURCES = \ dimension.c \ dimension.h \ stpui_combo.c \ stpui_combo.h \ stpui_optionbook.c \ stpui_optionbook.h \ stpui_optionpage.c \ stpui_optionpage.h \ stpui_printerselector.c \ stpui_printerselector.h \ stpui_slider.c \ stpui_slider.h \ stpui_toggle.c \ stpui_toggle.h \ stpui_file.c \ stpui_file.h \ stpui_queue.c \ stpui_queue.h \ units.h libstpui_widgets_la_LDFLAGS = -static photoprint-0.4.2-pre2/stpui_widgets/stpui_file.c0000644000175000017500000001015311076423574016724 00000000000000/* * stpui_file.c - provides a custom widget for providing autonomous control over * a boolean option in the stp_vars_t structure. * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include "stpui_file.h" enum { CHANGED_SIGNAL, LAST_SIGNAL }; static guint stpui_file_signals[LAST_SIGNAL] = { 0 }; static void stpui_file_class_init (stpui_FileClass *klass); static void stpui_file_init (stpui_File *t); static gboolean stpui_file_set_state(stpui_File *c) { stp_parameter_t desc; gboolean result; stp_describe_parameter(c->vars,c->optionname,&desc); if((desc.p_type==STP_PARAMETER_TYPE_FILE) && desc.is_active) { const char *file=stp_get_file_parameter(c->vars,c->optionname); if(!file) file=""; gtk_entry_set_text(GTK_ENTRY(c->entry),file); } gtk_widget_set_sensitive(GTK_WIDGET(c->entry),desc.is_active); gtk_widget_set_sensitive(GTK_WIDGET(c->button),desc.is_active); fprintf(stderr,"File widget is active?: %d\n",desc.is_active); result=desc.is_active; stp_parameter_description_destroy(&desc); return(result); } static void stpui_file_changed(GtkWidget *w,gpointer *ud) { stpui_File *t=STPUI_FILE(ud); const char *text=gtk_entry_get_text(GTK_ENTRY(t->entry)); stp_set_file_parameter(t->vars,t->optionname,text); g_signal_emit(G_OBJECT (t), stpui_file_signals[CHANGED_SIGNAL], 0); } static void getfile(GtkWidget *w,gpointer *ud) { stpui_File *t=STPUI_FILE(ud); const char *oldfilename=gtk_entry_get_text(GTK_ENTRY(t->entry)); GtkWidget *dialog; dialog = gtk_file_chooser_dialog_new ("Choose PPD File...", GTK_WINDOW(NULL), GTK_FILE_CHOOSER_ACTION_OPEN, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT, NULL); if(oldfilename) gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(dialog),oldfilename); if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT) gtk_entry_set_text(GTK_ENTRY(t->entry),gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog))); gtk_widget_destroy(GTK_WIDGET(dialog)); } GtkWidget* stpui_file_new (stp_vars_t *vars,const char *optname,const char *displayname) { stpui_File *c=STPUI_FILE(g_object_new (stpui_file_get_type (), NULL)); c->vars=vars; c->optionname=optname; c->entry=gtk_entry_new(); gtk_box_pack_start(GTK_BOX(c),GTK_WIDGET(c->entry),TRUE,TRUE,0); gtk_widget_show(c->entry); c->button=gtk_button_new_with_label("..."); gtk_box_pack_start(GTK_BOX(c),GTK_WIDGET(c->button),FALSE,FALSE,0); stpui_file_set_state(c); g_signal_connect(GTK_WIDGET(c->entry),"changed",G_CALLBACK(stpui_file_changed),c); g_signal_connect(GTK_WIDGET(c->button),"clicked",G_CALLBACK(getfile),c); gtk_widget_show(c->button); return(GTK_WIDGET(c)); } GType stpui_file_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo stpui_file_info = { sizeof (stpui_FileClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) stpui_file_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (stpui_File), 0, (GInstanceInitFunc) stpui_file_init, }; stpuic_type = g_type_register_static (GTK_TYPE_HBOX, "stpui_File", &stpui_file_info, 0); } return stpuic_type; } static void stpui_file_class_init (stpui_FileClass *klass) { stpui_file_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION, G_STRUCT_OFFSET (stpui_FileClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void stpui_file_init (stpui_File *c) { } gboolean stpui_file_refresh(stpui_File *t) { gboolean result; g_signal_handlers_block_matched (G_OBJECT (t->entry), G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, t); result=stpui_file_set_state(t); g_signal_handlers_unblock_matched (G_OBJECT (t->entry), G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, t); return(result); } photoprint-0.4.2-pre2/stpui_widgets/stpui_printerselector.h0000644000175000017500000000323411076423574021240 00000000000000#ifndef __STPUI_PRINTERSELECTOR_H__ #define __STPUI_PRINTERSELECTOR_H__ #include #include #include #include #include G_BEGIN_DECLS #define STPUI_PRINTERSELECTOR_TYPE (stpui_printerselector_get_type()) #define STPUI_PRINTERSELECTOR(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), STPUI_PRINTERSELECTOR_TYPE, stpui_PrinterSelector)) #define STPUI_PRINTERSELECTOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), STPUI_PRINTERSELECTOR_TYPE, stpui_PrinterSelectorClass)) #define IS_STPUI_PRINTERSELECTOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), STPUI_PRINTERSELECTOR_TYPE)) #define IS_STPUI_PRINTERSELECTOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), STPUI_PRINTERSELECTOR_TYPE)) typedef struct _stpui_PrinterSelector stpui_PrinterSelector; typedef struct _stpui_PrinterSelectorClass stpui_PrinterSelectorClass; struct _stpui_PrinterSelector { GtkHBox box; GtkWidget *mancombo; GtkWidget *modelcombo; GList *manufacturers; int manufacturercount; GList *models; int modelcount; char *manufacturer; char *model; }; struct _stpui_PrinterSelectorClass { GtkHBoxClass parent_class; void (*changed)(stpui_PrinterSelector *combo); }; GType stpui_printerselector_get_type (void); GtkWidget* stpui_printerselector_new (); const char *stpui_printerselector_get_printer_name(stpui_PrinterSelector *c); const char *stpui_printerselector_get_driver(stpui_PrinterSelector *c); void stpui_printerselector_set_printer_name(stpui_PrinterSelector *c,const char *name); void stpui_printerselector_set_driver(stpui_PrinterSelector *c,const char *driver); G_END_DECLS #endif /* __STPUI_PRINTERSELECTOR_H__ */ photoprint-0.4.2-pre2/layout.cpp0000644000175000017500000003174011400246570013537 00000000000000/* * layout.cpp - A base class for layouts. * * Copyright (c) 2004-2008 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include "config.h" #include "dialogs.h" #include "miscwidgets/generaldialogs.h" #include "pixbufthumbnail/egg-pixbuf-thumbnail.h" #include "imagesource/pixbuf_from_imagesource.h" #include "imageutils/rotatepixbuf.h" #include "imageutils/maskpixbuf.h" #include "support/thread.h" #include "support/progressthread.h" #include "imagesource/imagesource.h" #include "imagesource/imagesource_gdkpixbuf.h" #include "imagesource/imagesource_cms.h" #include "imagesource/imagesource_util.h" #include "imagesource/imagesource_mask.h" #include "imagesource/imagesource_rotate.h" #include "imagesource/imagesource_promote.h" #include "photoprint_state.h" #include "support/debug.h" #include "support/progress.h" #include "support/util.h" #include "support/layoutrectangle.h" #include "layout.h" using namespace std; ConfigTemplate LayoutDB::Template[]= { ConfigTemplate("LayoutType","NUp"), ConfigTemplate("AllowCropping",int(0)), ConfigTemplate("Rotation",int(PP_ROTATION_AUTO)), ConfigTemplate() }; LayoutIterator::LayoutIterator(Layout &header) : header(header) { } LayoutIterator::~LayoutIterator() { } Layout_ImageInfo *LayoutIterator::FirstImage() { iterator=header.imagelist.begin(); if(iterator==header.imagelist.end()) return(NULL); return(*iterator); } Layout_ImageInfo *LayoutIterator::NextImage() { if(iterator==header.imagelist.end()) return(NULL); ++iterator; if(iterator==header.imagelist.end()) return(NULL); return(*iterator); } Layout_ImageInfo *LayoutIterator::FirstSelected() { Layout_ImageInfo *ii=FirstImage(); while(ii) { if(ii->GetSelected()) return(ii); ii=NextSelected(); } return(NULL); } Layout_ImageInfo *LayoutIterator::NextSelected() { Layout_ImageInfo *ii=NextImage(); while(ii) { if(ii->GetSelected()) return(ii); ii=NextSelected(); } return(NULL); } Layout::Layout(PhotoPrint_State &state,Layout *oldlayout) : PageExtent(), state(state), xoffset(0), yoffset(0), pages(1), currentpage(0), backgroundfilename(NULL), background(NULL), backgroundtransformed(NULL), imagelist(NULL), factory(NULL), gc(NULL), jobdispatcher(0) { factory=state.profilemanager.GetTransformFactory(); jobdispatcher.AddWorker(new ImageInfo_Worker(jobdispatcher,state.profilemanager)); jobdispatcher.AddWorker(new ImageInfo_Worker(jobdispatcher,state.profilemanager)); } Layout::~Layout() { LayoutIterator it(*this); Layout_ImageInfo *ii=it.FirstImage(); while(ii) { Delete(ii); ii=it.FirstImage(); } if(gc) g_object_unref(G_OBJECT(gc)); if(factory) delete factory; if(backgroundtransformed) g_object_unref(G_OBJECT(backgroundtransformed)); backgroundtransformed=NULL; if(background) g_object_unref(G_OBJECT(background)); background=NULL; if(backgroundfilename) free(backgroundfilename); backgroundfilename=NULL; } void Layout::Delete(Layout_ImageInfo *ii) { ii->FlushHRPreview(); imagelist.remove(ii); ii->UnRef(); } void Layout::Clear() { SetBackground(NULL); FlushHRPreviews(); LayoutIterator it(*this); Layout_ImageInfo *ii=it.FirstImage(); while(ii) { Delete(ii); ii=it.FirstImage(); } pages=1; } // DUMMY FUNCTION - should be overridden by subclasses int Layout::AddImage(const char *filename,bool allowcropping,PP_ROTATION rotation) { Debug[ERROR] << "AddImage: Dummy function - should be overridden" << endl; return(0); } // DUMMY FUNCTION - should be overridden by subclasses void Layout::CopyImage(Layout_ImageInfo *ii) { Debug[ERROR] << "CopyImage: Dummy function - should be overridden" << endl; } ImageSource *Layout::GetImageSource(int page,CMColourDevice target,CMTransformFactory *factory,int res,bool completepage) { Debug[ERROR] << "GetImageSource: Dummy function - should be overridden" << endl; return(NULL); } IS_TYPE Layout::GetColourSpace(CMColourDevice target) { enum IS_TYPE colourspace=IS_TYPE_RGB; CMSProfile *profile=state.profilemanager.GetProfile(target); if(profile) { if(profile->IsDeviceLink()) colourspace=profile->GetDeviceLinkOutputSpace(); else colourspace=profile->GetColourSpace(); delete profile; } else { const char *cs=state.FindString("PrintColourSpace"); if(strcmp(cs,"RGB")==0) colourspace=IS_TYPE_RGB; else if(strcmp(cs,"CMYK")==0) colourspace=IS_TYPE_CMYK; else Debug[WARN] << "PrintColourSpace is set to an unknown colour space!" << endl; } return(colourspace); } void Layout::TransferImages(Layout *oldlayout,Progress *p) { if(oldlayout) { int count=oldlayout->imagelist.size(); LayoutIterator it(*oldlayout); Layout_ImageInfo *ii=it.FirstImage(); int img=0; while(ii) { CopyImage(ii); ii=it.NextImage(); if(p) { if(!(p->DoProgress(img,count))) ii=NULL; } ++img; } } if(currentpage>=pages) currentpage=pages-1; } void Layout::UpdatePageSize() { int t=topmargin,l=leftmargin,r=rightmargin,b=bottommargin; SetPageExtent(state.printer); SetMargins(l,r,t,b); } void Layout::DBToLayout(LayoutDB &db) { } void Layout::LayoutToDB(LayoutDB &db) { } void Layout::Reflow() { } GtkWidget *Layout::CreateWidget() { return(NULL); } void Layout::RefreshWidget(GtkWidget *widget) { } void Layout::DrawGridLines(GtkWidget *widget) { } int Layout::GetCurrentPage() { return(currentpage); } void Layout::SetCurrentPage(int page) { currentpage=page; } int Layout::FreeSlots() { return(0); } void Layout::Print(Progress *p) { state.printer.SetProgress(p); CMTransformFactory *factory=state.profilemanager.GetTransformFactory(); for(int p=0;pmonitor transform..." << endl; transform = factory->GetTransform(target,IS_TYPE_RGB,LCMSWRAPPER_INTENT_DEFAULT); if(transform) { // Debug[TRACE] << "Applying transform..." << endl; ISDataType rgbtriple[3]; rgbtriple[0]=bgcol.red; rgbtriple[1]=bgcol.green; rgbtriple[2]=bgcol.blue; transform->Transform(rgbtriple,rgbtriple,1); bgcol.red=rgbtriple[0]; bgcol.green=rgbtriple[1]; bgcol.blue=rgbtriple[2]; rgbtriple[0]=bgcol2.red; rgbtriple[1]=bgcol2.green; rgbtriple[2]=bgcol2.blue; transform->Transform(rgbtriple,rgbtriple,1); bgcol2.red=rgbtriple[0]; bgcol2.green=rgbtriple[1]; bgcol2.blue=rgbtriple[2]; } } gc=gdk_gc_new(widget->window); } void Layout::DrawPreviewBorder(GtkWidget *widget) { if(!gc) MakeGC(widget); gdk_gc_set_rgb_fg_color(gc,&bgcol2); gdk_draw_rectangle (widget->window, gc,TRUE, 0,0, widget->allocation.width,widget->allocation.height); } void Layout::DrawPreviewBG(GtkWidget *widget,int xpos,int ypos,int width,int height) { if(!gc) MakeGC(widget); DrawPreviewBorder(widget); gdk_gc_set_rgb_fg_color(gc,&bgcol); gdk_draw_rectangle (widget->window, gc,TRUE, xpos,ypos, width,height); GetImageableArea(); LayoutRectangle sr(leftmargin,topmargin, imageablewidth,imageableheight); double scale=width; scale/=pagewidth; sr.Scale(scale); // gdk_draw_rectangle (widget->window, // widget->style->mid_gc[widget->state],FALSE, // xpos+sr.x,ypos+sr.y,sr.w,sr.h); if(background) { if(backgroundtransformed) g_object_unref(backgroundtransformed); backgroundtransformed=NULL; int bw=gdk_pixbuf_get_width(background); int bh=gdk_pixbuf_get_height(background); int rotation=0; if((bwwindow,NULL,backgroundtransformed, 0,0, xpos,ypos, width,height, GDK_RGB_DITHER_NONE,0,0); } } void Layout::DrawPreview(GtkWidget *widget,int xpos,int ypos,int width,int height) { DrawPreviewBG(widget,xpos,ypos,width,height); LayoutIterator it(*this); Layout_ImageInfo *ii=it.FirstImage(); while(ii) { if(currentpage==ii->page) ii->DrawThumbnail(widget,xpos,ypos,width,height); ii=it.NextImage(); } } int Layout::GetPages() { return(pages); } int Layout::CountSelected() { int count=0; LayoutIterator it(*this); Layout_ImageInfo *ii=it.FirstSelected(); while(ii) { ++count; ii=it.NextSelected(); } return(count); } void Layout::SelectAll() { LayoutIterator it(*this); Layout_ImageInfo *ii=it.FirstImage(); while(ii) { ii->SetSelected(true); ii=it.NextImage(); } } void Layout::SelectNone() { LayoutIterator it(*this); Layout_ImageInfo *ii=it.FirstSelected(); while(ii) { ii->SetSelected(false); ii=it.NextSelected(); } } Layout_ImageInfo *Layout::ImageAtCoord(int x,int y) { return(NULL); } int Layout::GetCapabilities() { return(0); } void Layout::SetBackground(const char *filename) { if(backgroundtransformed) g_object_unref(G_OBJECT(backgroundtransformed)); backgroundtransformed=NULL; if(background) g_object_unref(G_OBJECT(background)); background=NULL; if(backgroundfilename) free(backgroundfilename); backgroundfilename=NULL; // Debug[TRACE] << "Setting background..." << endl; if(filename && strlen(filename)>0) { GError *err=NULL; backgroundfilename=strdup(filename); // Debug[TRACE] << "Attempting to load background from: " << backgroundfilename << endl; background=egg_pixbuf_get_thumbnail_for_file (backgroundfilename, EGG_PIXBUF_THUMBNAIL_LARGE, &err); if(!background) { // Debug[TRACE] << "Failed." << endl; try { ImageSource *src=ISLoadImage(backgroundfilename); if(src) { int w,h; w=(src->width*256)/src->height; h=256; if(w>256) { w=256; h=(src->height*256)/src->width; } src=ISScaleImageBySize(src,w,h,IS_SCALING_NEARESTNEIGHBOUR); background=pixbuf_from_imagesource(src); delete src; } } catch(const char *err) { Debug[ERROR] << "Error: " << err << endl; } if(!background) { if(err && err->message) Debug[ERROR] << "Error: " << err->message << endl; else Debug[ERROR] << "Can't get mask thumbnail" << endl; free(backgroundfilename); backgroundfilename=NULL; } } } } void Layout::FlushThumbnails() { LayoutIterator it(*this); Layout_ImageInfo *ii=it.FirstImage(); while(ii) { ii->FlushThumbnail(); ii=it.NextImage(); } // We obtain the mutices to ensure the rendering threads have completed. ii=it.FirstImage(); while(ii) { ii->ObtainMutex(); ii=it.NextImage(); } // Can't delete this until after the thumbnails have been flushed, // in case any rendering threads are still using a transform owned // by the factory. delete factory; factory=new CMTransformFactory(state.profilemanager); // If the profile settings have changed, we'll flush the paper white // gc too, so it's regenerate with the new settings. if(gc) g_object_unref(G_OBJECT(gc)); gc=NULL; // And now we release the mutices. ii=it.FirstImage(); while(ii) { ii->ReleaseMutex(); ii=it.NextImage(); } } void Layout::FlushHRPreviews() { // If there are multiple renderthreads running, // we can cancel them all without waiting for them // to exit - then wait for them in turn while we flush // the previews. Quicker than signal / wait / signal / wait / etc. CancelRenderThreads(); LayoutIterator it(*this); Layout_ImageInfo *ii=it.FirstImage(); while(ii) { ii->FlushHRPreview(); ii=it.NextImage(); } } void Layout::CancelRenderThreads() { LayoutIterator it(*this); Layout_ImageInfo *ii=it.FirstImage(); while(ii) { ii->CancelRenderThread(); ii=it.NextImage(); } } photoprint-0.4.2-pre2/scripts/0000777000175000017500000000000011400250523013255 500000000000000photoprint-0.4.2-pre2/scripts/config.rpath0000755000175000017500000004364711101462351015521 00000000000000#! /bin/sh # Output a system dependent set of variables, describing how to set the # run time search path of shared libraries in an executable. # # Copyright 1996-2007 Free Software Foundation, Inc. # Taken from GNU libtool, 2001 # Originally by Gordon Matzigkeit , 1996 # # 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. # # The first argument passed to this file is the canonical host specification, # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # The environment variables CC, GCC, LDFLAGS, LD, with_gnu_ld # should be set by the caller. # # The set of defined variables is at the end of this script. # Known limitations: # - On IRIX 6.5 with CC="cc", the run time search patch must not be longer # than 256 bytes, otherwise the compiler driver will dump core. The only # known workaround is to choose shorter directory names for the build # directory and/or the installation directory. # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a shrext=.so host="$1" host_cpu=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` host_vendor=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` host_os=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` # Code taken from libtool.m4's _LT_CC_BASENAME. for cc_temp in $CC""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`echo "$cc_temp" | sed -e 's%^.*/%%'` # Code taken from libtool.m4's AC_LIBTOOL_PROG_COMPILER_PIC. wl= if test "$GCC" = yes; then wl='-Wl,' else case "$host_os" in aix*) wl='-Wl,' ;; darwin*) case $cc_basename in xlc*) wl='-Wl,' ;; esac ;; mingw* | cygwin* | pw32* | os2*) ;; hpux9* | hpux10* | hpux11*) wl='-Wl,' ;; irix5* | irix6* | nonstopux*) wl='-Wl,' ;; newsos6) ;; linux* | k*bsd*-gnu) case $cc_basename in icc* | ecc*) wl='-Wl,' ;; pgcc | pgf77 | pgf90) wl='-Wl,' ;; ccc*) wl='-Wl,' ;; como) wl='-lopt=' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) wl='-Wl,' ;; esac ;; esac ;; osf3* | osf4* | osf5*) wl='-Wl,' ;; rdos*) ;; solaris*) wl='-Wl,' ;; sunos4*) wl='-Qoption ld ' ;; sysv4 | sysv4.2uw2* | sysv4.3*) wl='-Wl,' ;; sysv4*MP*) ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) wl='-Wl,' ;; unicos*) wl='-Wl,' ;; uts4*) ;; esac fi # Code taken from libtool.m4's AC_LIBTOOL_PROG_LD_SHLIBS. hardcode_libdir_flag_spec= hardcode_libdir_separator= hardcode_direct=no hardcode_minus_L=no case "$host_os" in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs=yes if test "$with_gnu_ld" = yes; then # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. # Unlike libtool, we use -rpath here, not --rpath, since the documented # option of GNU ld is called -rpath, not --rpath. hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' case "$host_os" in aix3* | aix4* | aix5*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs=no fi ;; amigaos*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we cannot use # them. ld_shlibs=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; cygwin* | mingw* | pw32*) # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then : else ld_shlibs=no fi ;; interix[3-9]*) hardcode_direct=no hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; gnu* | linux* | k*bsd*-gnu) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; netbsd*) ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ld_shlibs=no elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs=no ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' else ld_shlibs=no fi ;; esac ;; sunos4*) hardcode_direct=yes ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; esac if test "$ld_shlibs" = no; then hardcode_libdir_flag_spec= fi else case "$host_os" in aix3*) # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test "$GCC" = yes; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix5*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac fi hardcode_direct=yes hardcode_libdir_separator=':' if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct=unsupported hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi ;; esac fi # Begin _LT_AC_SYS_LIBPATH_AIX. echo 'int main () { return 0; }' > conftest.c ${CC} ${LDFLAGS} conftest.c -o conftest aix_libpath=`dump -H conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` fi if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib" fi rm -f conftest.c conftest # End _LT_AC_SYS_LIBPATH_AIX. if test "$aix_use_runtimelinking" = yes; then hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' else hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" fi fi ;; amigaos*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes # see comment about different semantics on the GNU ld section ld_shlibs=no ;; bsdi[45]*) ;; cygwin* | mingw* | pw32*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec=' ' libext=lib ;; darwin* | rhapsody*) hardcode_direct=no if test "$GCC" = yes ; then : else case $cc_basename in xlc*) ;; *) ld_shlibs=no ;; esac fi ;; dgux*) hardcode_libdir_flag_spec='-L$libdir' ;; freebsd1*) ld_shlibs=no ;; freebsd2.2*) hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes ;; freebsd2*) hardcode_direct=yes hardcode_minus_L=yes ;; freebsd* | dragonfly*) hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes ;; hpux9*) hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; hpux10*) if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes fi ;; hpux11*) if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: case $host_cpu in hppa*64*|ia64*) hardcode_direct=no ;; *) hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; netbsd*) hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes ;; newsos6) hardcode_direct=yes hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then hardcode_libdir_flag_spec='${wl}-rpath,$libdir' else case "$host_os" in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) hardcode_libdir_flag_spec='-R$libdir' ;; *) hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; esac fi else ld_shlibs=no fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; osf3*) hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) if test "$GCC" = yes; then hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' else # Both cc and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi hardcode_libdir_separator=: ;; solaris*) hardcode_libdir_flag_spec='-R$libdir' ;; sunos4*) hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes ;; sysv4) case $host_vendor in sni) hardcode_direct=yes # is this really true??? ;; siemens) hardcode_direct=no ;; motorola) hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac ;; sysv4.3*) ;; sysv4*MP*) if test -d /usr/nec; then ld_shlibs=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) ;; sysv5* | sco3.2v5* | sco5v6*) hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' hardcode_libdir_separator=':' ;; uts4*) hardcode_libdir_flag_spec='-L$libdir' ;; *) ld_shlibs=no ;; esac fi # Check dynamic linker characteristics # Code taken from libtool.m4's AC_LIBTOOL_SYS_DYNAMIC_LINKER. # Unlike libtool.m4, here we don't care about _all_ names of the library, but # only about the one the linker finds when passed -lNAME. This is the last # element of library_names_spec in libtool.m4, or possibly two of them if the # linker has special search rules. library_names_spec= # the last element of library_names_spec in libtool.m4 libname_spec='lib$name' case "$host_os" in aix3*) library_names_spec='$libname.a' ;; aix4* | aix5*) library_names_spec='$libname$shrext' ;; amigaos*) library_names_spec='$libname.a' ;; beos*) library_names_spec='$libname$shrext' ;; bsdi[45]*) library_names_spec='$libname$shrext' ;; cygwin* | mingw* | pw32*) shrext=.dll library_names_spec='$libname.dll.a $libname.lib' ;; darwin* | rhapsody*) shrext=.dylib library_names_spec='$libname$shrext' ;; dgux*) library_names_spec='$libname$shrext' ;; freebsd1*) ;; freebsd* | dragonfly*) case "$host_os" in freebsd[123]*) library_names_spec='$libname$shrext$versuffix' ;; *) library_names_spec='$libname$shrext' ;; esac ;; gnu*) library_names_spec='$libname$shrext' ;; hpux9* | hpux10* | hpux11*) case $host_cpu in ia64*) shrext=.so ;; hppa*64*) shrext=.sl ;; *) shrext=.sl ;; esac library_names_spec='$libname$shrext' ;; interix[3-9]*) library_names_spec='$libname$shrext' ;; irix5* | irix6* | nonstopux*) library_names_spec='$libname$shrext' case "$host_os" in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= ;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 ;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 ;; *) libsuff= shlibsuff= ;; esac ;; esac ;; linux*oldld* | linux*aout* | linux*coff*) ;; linux* | k*bsd*-gnu) library_names_spec='$libname$shrext' ;; knetbsd*-gnu) library_names_spec='$libname$shrext' ;; netbsd*) library_names_spec='$libname$shrext' ;; newsos6) library_names_spec='$libname$shrext' ;; nto-qnx*) library_names_spec='$libname$shrext' ;; openbsd*) library_names_spec='$libname$shrext$versuffix' ;; os2*) libname_spec='$name' shrext=.dll library_names_spec='$libname.a' ;; osf3* | osf4* | osf5*) library_names_spec='$libname$shrext' ;; rdos*) ;; solaris*) library_names_spec='$libname$shrext' ;; sunos4*) library_names_spec='$libname$shrext$versuffix' ;; sysv4 | sysv4.3*) library_names_spec='$libname$shrext' ;; sysv4*MP*) library_names_spec='$libname$shrext' ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) library_names_spec='$libname$shrext' ;; uts4*) library_names_spec='$libname$shrext' ;; esac sed_quote_subst='s/\(["`$\\]\)/\\\1/g' escaped_wl=`echo "X$wl" | sed -e 's/^X//' -e "$sed_quote_subst"` shlibext=`echo "$shrext" | sed -e 's,^\.,,'` escaped_libname_spec=`echo "X$libname_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` escaped_library_names_spec=`echo "X$library_names_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` escaped_hardcode_libdir_flag_spec=`echo "X$hardcode_libdir_flag_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` LC_ALL=C sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' <&2 exit 1 fi # It's OK to call `install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi for src do # Protect names starting with `-'. case $src in -*) src=./$src ;; esac if test -n "$dir_arg"; then dst=$src src= if test -d "$dst"; then mkdircmd=: chmodcmd= else mkdircmd=$mkdirprog fi 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 "$dstarg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dstarg # Protect names starting with `-'. case $dst in -*) dst=./$dst ;; esac # 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: $dstarg: Is a directory" >&2 exit 1 fi dst=$dst/`basename "$src"` fi fi # This sed command emulates the dirname command. dstdir=`echo "$dst" | sed -e 's,/*$,,;s,[^/]*$,,;s,/*$,,;s,^$,.,'` # Make sure that the destination directory exists. # Skip lots of stat calls in the usual case. if test ! -d "$dstdir"; then defaultIFS=' ' IFS="${IFS-$defaultIFS}" oIFS=$IFS # Some sh's can't handle IFS=/ for some reason. IFS='%' set x `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'` shift IFS=$oIFS pathcomp= while test $# -ne 0 ; do pathcomp=$pathcomp$1 shift if test ! -d "$pathcomp"; then $mkdirprog "$pathcomp" # mkdir can fail with a `File exist' error in case several # install-sh are creating the directory concurrently. This # is OK. test -d "$pathcomp" || exit fi pathcomp=$pathcomp/ done fi if test -n "$dir_arg"; then $doit $mkdircmd "$dst" \ && { test -z "$chowncmd" || $doit $chowncmd "$dst"; } \ && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } \ && { test -z "$stripcmd" || $doit $stripcmd "$dst"; } \ && { test -z "$chmodcmd" || $doit $chmodcmd "$dst"; } else dstfile=`basename "$dst"` # 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 trap '(exit $?); exit' 1 2 13 15 # Copy the file name to the temp name. $doit $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 "$dsttmp"; } && # Now rename the file to the real destination. { $doit $mvcmd -f "$dsttmp" "$dstdir/$dstfile" 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. { if test -f "$dstdir/$dstfile"; then $doit $rmcmd -f "$dstdir/$dstfile" 2>/dev/null \ || $doit $mvcmd -f "$dstdir/$dstfile" "$rmtmp" 2>/dev/null \ || { echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2 (exit 1); exit 1 } else : fi } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dstdir/$dstfile" } } fi || { (exit 1); exit 1; } done # The final little trick to "correctly" pass the exit status to the exit trap. { (exit 0); exit 0 } # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: photoprint-0.4.2-pre2/scripts/config.sub0000755000175000017500000007772410707444443015214 00000000000000#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, # Inc. timestamp='2007-06-28' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software # can handle that machine. It does not imply ALL GNU software can. # # 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 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA # 02110-1301, USA. # # 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. # Please send patches to . Submit a context # diff and a properly formatted ChangeLog entry. # # 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. # 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 (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 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-dietlibc | linux-newlib* | linux-uclibc* | \ uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; *) 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) os= basic_machine=$1 ;; -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*) 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 \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ | maxq | mb | microblaze | mcore | mep \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64vr | mips64vrel \ | mips64orion | mips64orionel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | mt \ | msp430 \ | nios | nios2 \ | ns16k | ns32k \ | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ | score \ | sh | sh[1234] | sh[24]a | 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 \ | spu | strongarm \ | tahoe | thumb | tic4x | tic80 | tron \ | v850 | v850e \ | we32k \ | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k) basic_machine=$basic_machine-unknown ;; m6811 | m68hc11 | m6812 | m68hc12) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; ms1) basic_machine=mt-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-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64vr-* | mips64vrel-* \ | mips64orion-* | mips64orionel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nios-* | nios2-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* \ | sh-* | sh[1234]-* | sh[24]a-* | 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-* | strongarm-* | sv1-* | sx?-* \ | tahoe-* | thumb-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tron-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ | xstormy16-* | xtensa-* \ | ymp-* \ | z8k-*) ;; # 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 ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; c90) basic_machine=c90-cray os=-unicos ;; 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) 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 ;; 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'm not sure what "Sysv32" means. Should this be sysv3.2? 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 ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; mingw32) basic_machine=i386-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 ;; msdos) basic_machine=i386-pc os=-msdos ;; ms1-*) basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ;; mvs) basic_machine=i370-ibm os=-mvs ;; 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 ;; 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 ;; 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) basic_machine=powerpc-unknown ;; ppc-*) 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) 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 ;; 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 ;; tic54x | c54x*) basic_machine=tic54x-unknown os=-coff ;; tic55x | c55x*) basic_machine=tic55x-unknown os=-coff ;; tic6x | c6x*) basic_machine=tic6x-unknown os=-coff ;; 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 ;; ymp) basic_machine=ymp-cray os=-unicos ;; z8k-*-coff) basic_machine=z8k-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[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. -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* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ | -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* \ | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* \ | -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*) # 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 ;; -kaos*) os=-kaos ;; -zvmoe) os=-zvmoe ;; -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 ;; # 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 # This also exists in the configure program, but was not the # default. # os=-sunos4 ;; 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 ;; -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: photoprint-0.4.2-pre2/scripts/mkinstalldirs0000755000175000017500000000662211101462351016007 00000000000000#! /bin/sh # mkinstalldirs --- make directory hierarchy scriptversion=2005-06-29.22 # Original author: Noah Friedman # Created: 1993-05-16 # Public domain. # # This file is maintained in Automake, please report # bugs to or send patches to # . errstatus=0 dirmode= usage="\ Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ... Create each directory DIR (with mode MODE, if specified), including all leading file name components. Report bugs to ." # process command line arguments while test $# -gt 0 ; do case $1 in -h | --help | --h*) # -h for help echo "$usage" exit $? ;; -m) # -m PERM arg shift test $# -eq 0 && { echo "$usage" 1>&2; exit 1; } dirmode=$1 shift ;; --version) echo "$0 $scriptversion" exit $? ;; --) # stop option processing shift break ;; -*) # unknown option echo "$usage" 1>&2 exit 1 ;; *) # first non-opt arg break ;; esac done for file do if test -d "$file"; then shift else break fi done case $# in 0) exit 0 ;; esac # Solaris 8's mkdir -p isn't thread-safe. If you mkdir -p a/b and # mkdir -p a/c at the same time, both will detect that a is missing, # one will create a, then the other will try to create a and die with # a "File exists" error. This is a problem when calling mkinstalldirs # from a parallel make. We use --version in the probe to restrict # ourselves to GNU mkdir, which is thread-safe. case $dirmode in '') if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then echo "mkdir -p -- $*" exec mkdir -p -- "$@" else # On NextStep and OpenStep, the `mkdir' command does not # recognize any option. It will interpret all options as # directories to create, and then abort because `.' already # exists. test -d ./-p && rmdir ./-p test -d ./--version && rmdir ./--version fi ;; *) if mkdir -m "$dirmode" -p --version . >/dev/null 2>&1 && test ! -d ./--version; then echo "mkdir -m $dirmode -p -- $*" exec mkdir -m "$dirmode" -p -- "$@" else # Clean up after NextStep and OpenStep mkdir. for d in ./-m ./-p ./--version "./$dirmode"; do test -d $d && rmdir $d done fi ;; esac for file do case $file in /*) pathcomp=/ ;; *) pathcomp= ;; esac oIFS=$IFS IFS=/ set fnord $file shift IFS=$oIFS for d do test "x$d" = x && continue pathcomp=$pathcomp$d case $pathcomp in -*) pathcomp=./$pathcomp ;; esac if test ! -d "$pathcomp"; then echo "mkdir $pathcomp" mkdir "$pathcomp" || lasterr=$? if test ! -d "$pathcomp"; then errstatus=$lasterr else if test ! -z "$dirmode"; then echo "chmod $dirmode $pathcomp" lasterr= chmod "$dirmode" "$pathcomp" || lasterr=$? if test ! -z "$lasterr"; then errstatus=$lasterr fi fi fi fi pathcomp=$pathcomp/ done done exit $errstatus # 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-end: "$" # End: photoprint-0.4.2-pre2/scripts/missing0000755000175000017500000002540611101462351014601 00000000000000#! /bin/sh # Common stub for a few missing GNU programs while installing. scriptversion=2005-06-08.21 # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005 # Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 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. # 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 run=: # In the cases where this matters, `missing' is being run in the # srcdir already. if test -f configure.ac; then configure_ac=configure.ac else configure_ac=configure.in fi msg="missing on your system" case "$1" in --run) # Try to run requested program, and just exit if it succeeds. run= shift "$@" && exit 0 # Exit code 63 means version mismatch. This often happens # when the user try to use an ancient version of a tool on # a file that requires a minimum version. In this case we # we should proceed has if the program had been absent, or # if --run hadn't been passed. if test $? = 63; then run=: msg="probably too old" fi ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an error status if there is no known handling for PROGRAM. Options: -h, --help display this help and exit -v, --version output version information and exit --run try to run the given command, and emulate it if it fails Supported PROGRAM values: aclocal touch file \`aclocal.m4' autoconf touch file \`configure' autoheader touch file \`config.h.in' automake touch all \`Makefile.in' files bison create \`y.tab.[ch]', if possible, from existing .[ch] flex create \`lex.yy.c', if possible, from existing .c help2man touch the output file lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file tar try tar, gnutar, gtar, then tar without non-portable flags yacc create \`y.tab.[ch]', if possible, from existing .[ch] 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 # Now exit if we have it, but it failed. Also exit now if we # don't have it and --version was passed (most likely to detect # the program). case "$1" in lex|yacc) # Not GNU programs, they don't have --version. ;; tar) if test -n "$run"; then echo 1>&2 "ERROR: \`tar' requires --run" exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then exit 1 fi ;; *) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then # Could not run --version or --help. This is probably someone # running `$TOOL --version' or `$TOOL --help' to check whether # $TOOL exists and not knowing $TOOL uses missing. exit 1 fi ;; esac # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. case "$1" in aclocal*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 ;; autoconf) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure ;; autoheader) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acconfig.h' or \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` test -z "$files" && files="config.h" touch_files= for f in $files; do case "$f" in *:*) touch_files="$touch_files "`echo "$f" | sed -e 's/^[^:]*://' -e 's/:.*//'`;; *) touch_files="$touch_files $f.in";; esac done touch $touch_files ;; automake*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." find . -type f -name Makefile.am -print | sed 's/\.am$/.in/' | while read f; do touch "$f"; done ;; autom4te) echo 1>&2 "\ WARNING: \`$1' is needed, but is $msg. You might have modified some files without having the proper tools for further handling them. You can get \`$1' as part of \`Autoconf' from any GNU archive site." file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'` test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo "#! /bin/sh" echo "# Created by GNU Automake missing as a replacement of" echo "# $ $@" echo "exit 0" chmod +x $file exit 1 fi ;; bison|yacc) echo 1>&2 "\ WARNING: \`$1' $msg. You should only need it if you modified a \`.y' file. You may need the \`Bison' package in order for those modifications to take effect. You can get \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h if [ $# -ne 1 ]; then eval LASTARG="\${$#}" case "$LASTARG" in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` if [ -f "$SRCFILE" ]; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` if [ -f "$SRCFILE" ]; then cp "$SRCFILE" y.tab.h fi ;; esac fi if [ ! -f y.tab.h ]; then echo >y.tab.h fi if [ ! -f y.tab.c ]; then echo 'main() { return 0; }' >y.tab.c fi ;; lex|flex) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.l' file. You may need the \`Flex' package in order for those modifications to take effect. You can get \`Flex' from any GNU archive site." rm -f lex.yy.c if [ $# -ne 1 ]; then eval LASTARG="\${$#}" case "$LASTARG" in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` if [ -f "$SRCFILE" ]; then cp "$SRCFILE" lex.yy.c fi ;; esac fi if [ ! -f lex.yy.c ]; then echo 'main() { return 0; }' >lex.yy.c fi ;; help2man) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a dependency of a manual page. You may need the \`Help2man' package in order for those modifications to take effect. You can get \`Help2man' from any GNU archive site." file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` if test -z "$file"; then file=`echo "$*" | sed -n 's/.*--output=\([^ ]*\).*/\1/p'` fi if [ -f "$file" ]; then touch $file else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" exit 1 fi ;; makeinfo) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file indirectly affecting the aspect of the manual. The spurious call might also be the consequence of using a buggy \`make' (AIX, DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." # The file to touch is that specified with -o ... file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` if test -z "$file"; then # ... or it is the one specified with @setfilename ... infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $infile` # ... or it is derived from the source name (dir/f.texi becomes f.info) test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info fi # If the file does not exist, the user really needs makeinfo; # let's fail without touching anything. test -f $file || exit 1 touch $file ;; tar) shift # We have already tried tar in the generic part. # Look for gnutar/gtar before invocation to avoid ugly error # messages. if (gnutar --version > /dev/null 2>&1); then gnutar "$@" && exit 0 fi if (gtar --version > /dev/null 2>&1); then gtar "$@" && exit 0 fi firstarg="$1" if shift; then case "$firstarg" in *o*) firstarg=`echo "$firstarg" | sed s/o//` tar "$firstarg" "$@" && exit 0 ;; esac case "$firstarg" in *h*) firstarg=`echo "$firstarg" | sed s/h//` tar "$firstarg" "$@" && exit 0 ;; esac fi echo 1>&2 "\ WARNING: I can't seem to be able to run \`tar' with the given arguments. You may want to install GNU tar or Free paxutils, or check the command line arguments." exit 1 ;; *) echo 1>&2 "\ WARNING: \`$1' is needed, and is $msg. You might have modified some files without having the proper tools for further handling them. Check the \`README' file, it often tells you about the needed prerequisites for installing this package. You may also peek at any GNU archive site, in case some other package would contain this missing \`$1' program." exit 1 ;; esac exit 0 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: photoprint-0.4.2-pre2/scripts/config.guess0000755000175000017500000012706110707444443015537 00000000000000#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, # Inc. timestamp='2007-07-22' # 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 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA # 02110-1301, USA. # # 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 Per Bothner . # Please send patches to . Submit a context # diff and a properly formatted ChangeLog entry. # # This script attempts to guess a canonical system name similar to # config.sub. If it succeeds, it prints the system name on stdout, and # exits with 0. Otherwise, it exits with 1. # # The plan is that this can be called by configure scripts if you # don't specify an explicit build system type. 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 (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 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 # 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 tupples: *-*-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=`(/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 ;; *) 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*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep __ELF__ >/dev/null 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 # 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/[-_].*/\./'` ;; 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}" 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 ;; 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'` exit ;; 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 ;; 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:SunOS:5.*:* | i86xen:SunOS:5.*:*) echo i386-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:*:[45]) 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/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` 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 __LP64__ >/dev/null 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:*:*) case ${UNAME_MACHINE} in pc98) echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; amd64) echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; i*:windows32*:*) # uname -m includes "-pc" on this system. echo ${UNAME_MACHINE}-mingw32 exit ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; *:Interix*:[3456]*) case ${UNAME_MACHINE} in x86) echo i586-pc-interix${UNAME_RELEASE} exit ;; EM64T | authenticamd) echo x86_64-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 ;; 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-gnu`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/[-(].*//'`-gnu exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; arm*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; cris:Linux:*:*) echo cris-axis-linux-gnu exit ;; crisv32:Linux:*:*) echo crisv32-axis-linux-gnu exit ;; frv:Linux:*:*) echo frv-unknown-linux-gnu exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; mips:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef mips #undef mipsel #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=mipsel #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=mips #else CPU= #endif #endif EOF eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' /^CPU/{ s: ::g p }'`" test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef mips64 #undef mips64el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=mips64el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=mips64 #else CPU= #endif #endif EOF eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' /^CPU/{ s: ::g p }'`" test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; or32:Linux:*:*) echo or32-unknown-linux-gnu exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-gnu exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-gnu 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 ld.so.1 >/dev/null if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi echo ${UNAME_MACHINE}-unknown-linux-gnu${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-gnu ;; PA8*) echo hppa2.0-unknown-linux-gnu ;; *) echo hppa-unknown-linux-gnu ;; esac exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-gnu exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux exit ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; vax:Linux:*:*) echo ${UNAME_MACHINE}-dec-linux-gnu exit ;; x86_64:Linux:*:*) echo x86_64-unknown-linux-gnu exit ;; xtensa:Linux:*:*) echo xtensa-unknown-linux-gnu exit ;; i*86:Linux:*:*) # The BFD linker knows what the default object file format is, so # first see if it will tell us. cd to the root directory to prevent # problems with other programs or directories called `ld' in the path. # Set LC_ALL=C to ensure ld outputs messages in English. ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ | sed -ne '/supported targets:/!d s/[ ][ ]*/ /g s/.*supported targets: *// s/ .*// p'` case "$ld_supported_targets" in elf32-i386) TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" ;; a.out-i386-linux) echo "${UNAME_MACHINE}-pc-linux-gnuaout" exit ;; coff-i386) echo "${UNAME_MACHINE}-pc-linux-gnucoff" exit ;; "") # Either a pre-BFD a.out linker (linux-gnuoldld) or # one that does not give us useful --help. echo "${UNAME_MACHINE}-pc-linux-gnuoldld" exit ;; esac # Determine whether the default compiler is a.out or elf eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include #ifdef __ELF__ # ifdef __GLIBC__ # if __GLIBC__ >= 2 LIBC=gnu # else LIBC=gnulibc1 # endif # else LIBC=gnulibc1 # endif #else #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) LIBC=gnu #else LIBC=gnuaout #endif #endif #ifdef __dietlibc__ LIBC=dietlibc #endif EOF eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' /^LIBC/{ s: ::g p }'`" test x"${LIBC}" != x && { echo "${UNAME_MACHINE}-pc-linux-${LIBC}" exit } test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; 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.0*:*) 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 i386. echo i386-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; } ;; 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.0*:*) 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 ;; 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 case $UNAME_PROCESSOR in unknown) UNAME_PROCESSOR=powerpc ;; esac 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 ;; 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 ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 eval $set_cc_for_build cat >$dummy.c < # include #endif main () { #if defined (sony) #if defined (MIPSEB) /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, I don't know.... */ printf ("mips-sony-bsd\n"); exit (0); #else #include printf ("m68k-sony-newsos%s\n", #ifdef NEWSOS4 "4" #else "" #endif ); exit (0); #endif #endif #if defined (__arm) && defined (__acorn) && defined (__unix) printf ("arm-acorn-riscix\n"); exit (0); #endif #if defined (hp300) && !defined (hpux) printf ("m68k-hp-bsd\n"); exit (0); #endif #if defined (NeXT) #if !defined (__ARCHITECTURE__) #define __ARCHITECTURE__ "m68k" #endif int version; version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; if (version < 4) printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); else printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); exit (0); #endif #if defined (MULTIMAX) || defined (n16) #if defined (UMAXV) printf ("ns32k-encore-sysv\n"); exit (0); #else #if defined (CMU) printf ("ns32k-encore-mach\n"); exit (0); #else printf ("ns32k-encore-bsd\n"); exit (0); #endif #endif #endif #if defined (__386BSD__) printf ("i386-pc-bsd\n"); exit (0); #endif #if defined (sequent) #if defined (i386) printf ("i386-sequent-dynix\n"); exit (0); #endif #if defined (ns32000) printf ("ns32k-sequent-dynix\n"); exit (0); #endif #endif #if defined (_SEQUENT_) struct utsname un; uname(&un); if (strncmp(un.version, "V2", 2) == 0) { printf ("i386-sequent-ptx2\n"); exit (0); } if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ printf ("i386-sequent-ptx1\n"); exit (0); } printf ("i386-sequent-ptx\n"); exit (0); #endif #if defined (vax) # if !defined (ultrix) # include # if defined (BSD) # if BSD == 43 printf ("vax-dec-bsd4.3\n"); exit (0); # else # if BSD == 199006 printf ("vax-dec-bsd4.3reno\n"); exit (0); # else printf ("vax-dec-bsd\n"); exit (0); # endif # endif # else printf ("vax-dec-bsd\n"); exit (0); # endif # else printf ("vax-dec-ultrix\n"); exit (0); # endif #endif #if defined (alliant) && defined (i860) printf ("i860-alliant-bsd\n"); exit (0); #endif exit (1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } # Apollos put the system type in the environment. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } # Convex versions that predate uname can use getsysinfo(1) if [ -x /usr/convex/getsysinfo ] then case `getsysinfo -f cpu_type` in c1*) echo c1-convex-bsd exit ;; c2*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; c34*) echo c34-convex-bsd exit ;; c38*) echo c38-convex-bsd exit ;; c4*) echo c4-convex-bsd exit ;; esac fi 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: photoprint-0.4.2-pre2/scripts/ltmain.sh0000644000175000017500000060646710752724413015051 00000000000000# ltmain.sh - Provide generalized library-building support services. # NOTE: Changing this file will not affect anything until you rerun configure. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, # 2007, 2008 Free Software Foundation, Inc. # Originally by Gordon Matzigkeit , 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 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # 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. basename="s,^.*/,,g" # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh # is ksh but when the shell is invoked as "sh" and the current value of # the _XPG environment variable is not equal to 1 (one), the special # positional parameter $0, within a function call, is the name of the # function. progpath="$0" # The name of this program: progname=`echo "$progpath" | $SED $basename` modename="$progname" # Global variables: EXIT_SUCCESS=0 EXIT_FAILURE=1 PROGRAM=ltmain.sh PACKAGE=libtool VERSION="1.5.26 Debian 1.5.26-1ubuntu1" TIMESTAMP=" (1.1220.2.493 2008/02/01 16:58:18)" # Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs 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 BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # Check that we have a working $echo. if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X$1" = X--fallback-echo; then # Avoid inline document here, it may be left over : elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then # Yippee, $echo works! : else # Restart under the correct shell, and then maybe $echo will work. exec $SHELL "$progpath" --no-reexec ${1+"$@"} fi if test "X$1" = X--fallback-echo; then # used as fallback echo shift cat <&2 $echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 exit $EXIT_FAILURE fi # Global variables. mode=$default_mode nonopt= prev= prevopt= run= show="$echo" show_help= execute_dlfiles= duplicate_deps=no preserve_args= lo2o="s/\\.lo\$/.${objext}/" o2lo="s/\\.${objext}\$/.lo/" extracted_archives= extracted_serial=0 ##################################### # Shell function definitions: # This seems to be the best place for them # func_mktempdir [string] # Make a temporary directory that won't clash with other running # libtool processes, and avoids race conditions if possible. If # given, STRING is the basename for that directory. func_mktempdir () { my_template="${TMPDIR-/tmp}/${1-$progname}" if test "$run" = ":"; then # Return a directory name, but don't create it in dry-run mode my_tmpdir="${my_template}-$$" else # If mktemp works, use that first and foremost my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` if test ! -d "$my_tmpdir"; then # Failing that, at least try and use $RANDOM to avoid a race my_tmpdir="${my_template}-${RANDOM-0}$$" save_mktempdir_umask=`umask` umask 0077 $mkdir "$my_tmpdir" umask $save_mktempdir_umask fi # If we're not in dry-run mode, bomb out on failure test -d "$my_tmpdir" || { $echo "cannot create temporary directory \`$my_tmpdir'" 1>&2 exit $EXIT_FAILURE } fi $echo "X$my_tmpdir" | $Xsed } # func_win32_libid arg # return the library type of file 'arg' # # Need a lot of goo to handle *both* DLLs and import libs # Has to be a shell function in order to 'eat' the argument # that is supplied when $file_magic_command is called. func_win32_libid () { win32_libid_type="unknown" win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import win32_libid_type="x86 archive import" ;; *ar\ archive*) # could be an import, or static if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | \ $EGREP -e 'file format pe-i386(.*architecture: i386)?' >/dev/null ; then win32_nmres=`eval $NM -f posix -A $1 | \ $SED -n -e '1,100{ / I /{ s,.*,import, p q } }'` case $win32_nmres in import*) win32_libid_type="x86 archive import";; *) win32_libid_type="x86 archive static";; esac fi ;; *DLL*) win32_libid_type="x86 DLL" ;; *executable*) # but shell scripts are "executable" too... case $win32_fileres in *MS\ Windows\ PE\ Intel*) win32_libid_type="x86 DLL" ;; esac ;; esac $echo $win32_libid_type } # func_infer_tag arg # Infer tagged configuration to use if any are available and # if one wasn't chosen via the "--tag" command line option. # Only attempt this if the compiler in the base compile # command doesn't match the default compiler. # arg is usually of the form 'gcc ...' func_infer_tag () { if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac CC_quoted="$CC_quoted $arg" done case $@ in # Blanks in the command may have been stripped by the calling shell, # but not from the CC environment variable when configure was run. " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*) ;; # Blanks at the start of $base_compile will cause this to fail # if we don't check for them as well. *) for z in $available_tags; do if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac CC_quoted="$CC_quoted $arg" done case "$@ " in " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*) # The compiler in the base compile command matches # the one in the tagged configuration. # Assume this is the tagged configuration we want. tagname=$z break ;; esac fi done # If $tagname still isn't set, then no tagged configuration # was found and let the user know that the "--tag" command # line option must be used. if test -z "$tagname"; then $echo "$modename: unable to infer tagged configuration" $echo "$modename: specify a tag with \`--tag'" 1>&2 exit $EXIT_FAILURE # else # $echo "$modename: using $tagname tagged configuration" fi ;; esac fi } # func_extract_an_archive dir oldlib func_extract_an_archive () { f_ex_an_ar_dir="$1"; shift f_ex_an_ar_oldlib="$1" $show "(cd $f_ex_an_ar_dir && $AR x $f_ex_an_ar_oldlib)" $run eval "(cd \$f_ex_an_ar_dir && $AR x \$f_ex_an_ar_oldlib)" || exit $? if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then : else $echo "$modename: ERROR: object name conflicts: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" 1>&2 exit $EXIT_FAILURE fi } # func_extract_archives gentop oldlib ... func_extract_archives () { my_gentop="$1"; shift my_oldlibs=${1+"$@"} my_oldobjs="" my_xlib="" my_xabs="" my_xdir="" my_status="" $show "${rm}r $my_gentop" $run ${rm}r "$my_gentop" $show "$mkdir $my_gentop" $run $mkdir "$my_gentop" my_status=$? if test "$my_status" -ne 0 && test ! -d "$my_gentop"; then exit $my_status fi for my_xlib in $my_oldlibs; do # Extract the objects. case $my_xlib in [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; *) my_xabs=`pwd`"/$my_xlib" ;; esac my_xlib=`$echo "X$my_xlib" | $Xsed -e 's%^.*/%%'` my_xlib_u=$my_xlib while :; do case " $extracted_archives " in *" $my_xlib_u "*) extracted_serial=`expr $extracted_serial + 1` my_xlib_u=lt$extracted_serial-$my_xlib ;; *) break ;; esac done extracted_archives="$extracted_archives $my_xlib_u" my_xdir="$my_gentop/$my_xlib_u" $show "${rm}r $my_xdir" $run ${rm}r "$my_xdir" $show "$mkdir $my_xdir" $run $mkdir "$my_xdir" exit_status=$? if test "$exit_status" -ne 0 && test ! -d "$my_xdir"; then exit $exit_status fi case $host in *-darwin*) $show "Extracting $my_xabs" # Do not bother doing anything if just a dry run if test -z "$run"; then darwin_orig_dir=`pwd` cd $my_xdir || exit $? darwin_archive=$my_xabs darwin_curdir=`pwd` darwin_base_archive=`$echo "X$darwin_archive" | $Xsed -e 's%^.*/%%'` darwin_arches=`lipo -info "$darwin_archive" 2>/dev/null | $EGREP Architectures 2>/dev/null` if test -n "$darwin_arches"; then darwin_arches=`echo "$darwin_arches" | $SED -e 's/.*are://'` darwin_arch= $show "$darwin_base_archive has multiple architectures $darwin_arches" for darwin_arch in $darwin_arches ; do mkdir -p "unfat-$$/${darwin_base_archive}-${darwin_arch}" lipo -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" func_extract_an_archive "`pwd`" "${darwin_base_archive}" cd "$darwin_curdir" $rm "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" done # $darwin_arches ## Okay now we have a bunch of thin objects, gotta fatten them up :) darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print| xargs basename | sort -u | $NL2SP` darwin_file= darwin_files= for darwin_file in $darwin_filelist; do darwin_files=`find unfat-$$ -name $darwin_file -print | $NL2SP` lipo -create -output "$darwin_file" $darwin_files done # $darwin_filelist ${rm}r unfat-$$ cd "$darwin_orig_dir" else cd "$darwin_orig_dir" func_extract_an_archive "$my_xdir" "$my_xabs" fi # $darwin_arches fi # $run ;; *) func_extract_an_archive "$my_xdir" "$my_xabs" ;; esac my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP` done func_extract_archives_result="$my_oldobjs" } # End of Shell function definitions ##################################### # Darwin sucks eval std_shrext=\"$shrext_cmds\" disable_libs=no # Parse our command line options once, thoroughly. while test "$#" -gt 0 do arg="$1" shift case $arg in -*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;; *) optarg= ;; esac # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in execute_dlfiles) execute_dlfiles="$execute_dlfiles $arg" ;; tag) tagname="$arg" preserve_args="${preserve_args}=$arg" # Check whether tagname contains only valid characters case $tagname in *[!-_A-Za-z0-9,/]*) $echo "$progname: invalid tag name: $tagname" 1>&2 exit $EXIT_FAILURE ;; esac case $tagname in CC) # Don't test for the "default" C tag, as we know, it's there, but # not specially marked. ;; *) if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "$progpath" > /dev/null; then taglist="$taglist $tagname" # Evaluate the configuration. eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$tagname'$/,/^# ### END LIBTOOL TAG CONFIG: '$tagname'$/p' < $progpath`" else $echo "$progname: ignoring unknown tag $tagname" 1>&2 fi ;; esac ;; *) eval "$prev=\$arg" ;; esac prev= prevopt= continue fi # Have we seen a non-optional argument yet? case $arg in --help) show_help=yes ;; --version) echo "\ $PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP Copyright (C) 2008 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." exit $? ;; --config) ${SED} -e '1,/^# ### BEGIN LIBTOOL CONFIG/d' -e '/^# ### END LIBTOOL CONFIG/,$d' $progpath # Now print the configurations for the tags. for tagname in $taglist; do ${SED} -n -e "/^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$/,/^# ### END LIBTOOL TAG CONFIG: $tagname$/p" < "$progpath" done exit $? ;; --debug) $echo "$progname: enabling shell trace mode" set -x preserve_args="$preserve_args $arg" ;; --dry-run | -n) run=: ;; --features) $echo "host: $host" if test "$build_libtool_libs" = yes; then $echo "enable shared libraries" else $echo "disable shared libraries" fi if test "$build_old_libs" = yes; then $echo "enable static libraries" else $echo "disable static libraries" fi exit $? ;; --finish) mode="finish" ;; --mode) prevopt="--mode" prev=mode ;; --mode=*) mode="$optarg" ;; --preserve-dup-deps) duplicate_deps="yes" ;; --quiet | --silent) show=: preserve_args="$preserve_args $arg" ;; --tag) prevopt="--tag" prev=tag preserve_args="$preserve_args --tag" ;; --tag=*) set tag "$optarg" ${1+"$@"} shift prev=tag preserve_args="$preserve_args --tag" ;; -dlopen) prevopt="-dlopen" prev=execute_dlfiles ;; -*) $echo "$modename: unrecognized option \`$arg'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE ;; *) nonopt="$arg" break ;; esac done if test -n "$prevopt"; then $echo "$modename: option \`$prevopt' requires an argument" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi case $disable_libs in no) ;; shared) build_libtool_libs=no build_old_libs=yes ;; static) build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` ;; esac # If this variable is set in any of the actions, the command in it # will be execed at the end. This prevents here-documents from being # left over by shells. exec_cmd= if test -z "$show_help"; then # Infer the operation mode. if test -z "$mode"; then $echo "*** Warning: inferring the mode of operation is deprecated." 1>&2 $echo "*** Future versions of Libtool will require --mode=MODE be specified." 1>&2 case $nonopt in *cc | cc* | *++ | gcc* | *-gcc* | g++* | xlc*) mode=link for arg do case $arg in -c) mode=compile break ;; esac done ;; *db | *dbx | *strace | *truss) mode=execute ;; *install*|cp|mv) mode=install ;; *rm) mode=uninstall ;; *) # If we have no mode, but dlfiles were specified, then do execute mode. test -n "$execute_dlfiles" && mode=execute # Just use the default operation mode. if test -z "$mode"; then if test -n "$nonopt"; then $echo "$modename: warning: cannot infer operation mode from \`$nonopt'" 1>&2 else $echo "$modename: warning: cannot infer operation mode without MODE-ARGS" 1>&2 fi fi ;; esac fi # Only execute mode is allowed to have -dlopen flags. if test -n "$execute_dlfiles" && test "$mode" != execute; then $echo "$modename: unrecognized option \`-dlopen'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi # Change the help message to a mode-specific one. generic_help="$help" help="Try \`$modename --help --mode=$mode' for more information." # These modes are in order of execution frequency so that they run quickly. case $mode in # libtool compile mode compile) modename="$modename: compile" # Get the compilation command and the source file. base_compile= srcfile="$nonopt" # always keep a non-empty value in "srcfile" suppress_opt=yes suppress_output= arg_mode=normal libobj= later= for arg do case $arg_mode in arg ) # do not "continue". Instead, add this to base_compile lastarg="$arg" arg_mode=normal ;; target ) libobj="$arg" arg_mode=normal continue ;; normal ) # Accept any command-line options. case $arg in -o) if test -n "$libobj" ; then $echo "$modename: you cannot specify \`-o' more than once" 1>&2 exit $EXIT_FAILURE fi arg_mode=target continue ;; -static | -prefer-pic | -prefer-non-pic) later="$later $arg" continue ;; -no-suppress) suppress_opt=no continue ;; -Xcompiler) arg_mode=arg # the next one goes into the "base_compile" arg list continue # The current "srcfile" will either be retained or ;; # replaced later. I would guess that would be a bug. -Wc,*) args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"` lastarg= save_ifs="$IFS"; IFS=',' for arg in $args; do IFS="$save_ifs" # Double-quote args containing other shell metacharacters. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac lastarg="$lastarg $arg" done IFS="$save_ifs" lastarg=`$echo "X$lastarg" | $Xsed -e "s/^ //"` # Add the arguments to base_compile. base_compile="$base_compile $lastarg" continue ;; * ) # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # lastarg="$srcfile" srcfile="$arg" ;; esac # case $arg ;; esac # case $arg_mode # Aesthetically quote the previous argument. lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"` case $lastarg in # Double-quote args containing other shell metacharacters. # Many Bourne shells cannot handle close brackets correctly # in scan sets, and some SunOS ksh mistreat backslash-escaping # in scan sets (worked around with variable expansion), # and furthermore cannot handle '|' '&' '(' ')' in scan sets # at all, so we specify them separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") lastarg="\"$lastarg\"" ;; esac base_compile="$base_compile $lastarg" done # for arg case $arg_mode in arg) $echo "$modename: you must specify an argument for -Xcompile" exit $EXIT_FAILURE ;; target) $echo "$modename: you must specify a target with \`-o'" 1>&2 exit $EXIT_FAILURE ;; *) # Get the name of the library object. [ -z "$libobj" ] && libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'` ;; esac # Recognize several different file suffixes. # If the user specifies -o file.o, it is replaced with file.lo xform='[cCFSifmso]' case $libobj in *.ada) xform=ada ;; *.adb) xform=adb ;; *.ads) xform=ads ;; *.asm) xform=asm ;; *.c++) xform=c++ ;; *.cc) xform=cc ;; *.ii) xform=ii ;; *.class) xform=class ;; *.cpp) xform=cpp ;; *.cxx) xform=cxx ;; *.[fF][09]?) xform=[fF][09]. ;; *.for) xform=for ;; *.java) xform=java ;; *.obj) xform=obj ;; *.sx) xform=sx ;; esac libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"` case $libobj in *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;; *) $echo "$modename: cannot determine name of library object from \`$libobj'" 1>&2 exit $EXIT_FAILURE ;; esac func_infer_tag $base_compile for arg in $later; do case $arg in -static) build_old_libs=yes continue ;; -prefer-pic) pic_mode=yes continue ;; -prefer-non-pic) pic_mode=no continue ;; esac done qlibobj=`$echo "X$libobj" | $Xsed -e "$sed_quote_subst"` case $qlibobj in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") qlibobj="\"$qlibobj\"" ;; esac test "X$libobj" != "X$qlibobj" \ && $echo "X$libobj" | grep '[]~#^*{};<>?"'"'"' &()|`$[]' \ && $echo "$modename: libobj name \`$libobj' may not contain shell special characters." objname=`$echo "X$obj" | $Xsed -e 's%^.*/%%'` xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'` if test "X$xdir" = "X$obj"; then xdir= else xdir=$xdir/ fi lobj=${xdir}$objdir/$objname if test -z "$base_compile"; then $echo "$modename: you must specify a compilation command" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi # Delete any leftover library objects. if test "$build_old_libs" = yes; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" fi $run $rm $removelist trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15 # On Cygwin there's no "real" PIC flag so we must build both object types case $host_os in cygwin* | mingw* | pw32* | os2*) pic_mode=default ;; esac if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c if test "$compiler_c_o" = no; then output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext} lockfile="$output_obj.lock" removelist="$removelist $output_obj $lockfile" trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15 else output_obj= need_locks=no lockfile= fi # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file if test "$need_locks" = yes; then until $run ln "$progpath" "$lockfile" 2>/dev/null; do $show "Waiting for $lockfile to be removed" sleep 2 done elif test "$need_locks" = warn; then if test -f "$lockfile"; then $echo "\ *** ERROR, $lockfile exists and contains: `cat $lockfile 2>/dev/null` This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $run $rm $removelist exit $EXIT_FAILURE fi $echo "$srcfile" > "$lockfile" fi if test -n "$fix_srcfile_path"; then eval srcfile=\"$fix_srcfile_path\" fi qsrcfile=`$echo "X$srcfile" | $Xsed -e "$sed_quote_subst"` case $qsrcfile in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") qsrcfile="\"$qsrcfile\"" ;; esac $run $rm "$libobj" "${libobj}T" # Create a libtool object file (analogous to a ".la" file), # but don't create it if we're doing a dry run. test -z "$run" && cat > ${libobj}T </dev/null`" != "X$srcfile"; then $echo "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $run $rm $removelist exit $EXIT_FAILURE fi # Just move the object if needed, then go on to compile the next one if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then $show "$mv $output_obj $lobj" if $run $mv $output_obj $lobj; then : else error=$? $run $rm $removelist exit $error fi fi # Append the name of the PIC object to the libtool object file. test -z "$run" && cat >> ${libobj}T <> ${libobj}T </dev/null`" != "X$srcfile"; then $echo "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $run $rm $removelist exit $EXIT_FAILURE fi # Just move the object if needed if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then $show "$mv $output_obj $obj" if $run $mv $output_obj $obj; then : else error=$? $run $rm $removelist exit $error fi fi # Append the name of the non-PIC object the libtool object file. # Only append if the libtool object file exists. test -z "$run" && cat >> ${libobj}T <> ${libobj}T <&2 fi if test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; -static) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=built ;; -static-libtool-libs) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; esac build_libtool_libs=no build_old_libs=yes break ;; esac done # See if our shared archives depend on static archives. test -n "$old_archive_from_new_cmds" && build_old_libs=yes # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do arg="$1" shift case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") qarg=\"`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`\" ### testsuite: skip nested quoting test ;; *) qarg=$arg ;; esac libtool_args="$libtool_args $qarg" # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in output) compile_command="$compile_command @OUTPUT@" finalize_command="$finalize_command @OUTPUT@" ;; esac case $prev in dlfiles|dlprefiles) if test "$preload" = no; then # Add the symbol object into the linking commands. compile_command="$compile_command @SYMFILE@" finalize_command="$finalize_command @SYMFILE@" preload=yes fi case $arg in *.la | *.lo) ;; # We handle these cases below. force) if test "$dlself" = no; then dlself=needless export_dynamic=yes fi prev= continue ;; self) if test "$prev" = dlprefiles; then dlself=yes elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then dlself=yes else dlself=needless export_dynamic=yes fi prev= continue ;; *) if test "$prev" = dlfiles; then dlfiles="$dlfiles $arg" else dlprefiles="$dlprefiles $arg" fi prev= continue ;; esac ;; expsyms) export_symbols="$arg" if test ! -f "$arg"; then $echo "$modename: symbol file \`$arg' does not exist" exit $EXIT_FAILURE fi prev= continue ;; expsyms_regex) export_symbols_regex="$arg" prev= continue ;; inst_prefix) inst_prefix_dir="$arg" prev= continue ;; precious_regex) precious_files_regex="$arg" prev= continue ;; release) release="-$arg" prev= continue ;; objectlist) if test -f "$arg"; then save_arg=$arg moreargs= for fil in `cat $save_arg` do # moreargs="$moreargs $fil" arg=$fil # A libtool-controlled object. # Check to see that this really is a libtool object. if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then pic_object= non_pic_object= # Read the .lo file # If there is no directory component, then add one. case $arg in */* | *\\*) . $arg ;; *) . ./$arg ;; esac if test -z "$pic_object" || \ test -z "$non_pic_object" || test "$pic_object" = none && \ test "$non_pic_object" = none; then $echo "$modename: cannot find name of object for \`$arg'" 1>&2 exit $EXIT_FAILURE fi # Extract subdirectory from the argument. xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` if test "X$xdir" = "X$arg"; then xdir= else xdir="$xdir/" fi if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then dlfiles="$dlfiles $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test "$prev" = dlprefiles; then # Preload the old-style object. dlprefiles="$dlprefiles $pic_object" prev= fi # A PIC object. libobjs="$libobjs $pic_object" arg="$pic_object" fi # Non-PIC object. if test "$non_pic_object" != none; then # Prepend the subdirectory the object is found in. non_pic_object="$xdir$non_pic_object" # A standard non-PIC object non_pic_objects="$non_pic_objects $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object="$pic_object" non_pic_objects="$non_pic_objects $non_pic_object" fi else # Only an error if not doing a dry-run. if test -z "$run"; then $echo "$modename: \`$arg' is not a valid libtool object" 1>&2 exit $EXIT_FAILURE else # Dry-run case. # Extract subdirectory from the argument. xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` if test "X$xdir" = "X$arg"; then xdir= else xdir="$xdir/" fi pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"` non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"` libobjs="$libobjs $pic_object" non_pic_objects="$non_pic_objects $non_pic_object" fi fi done else $echo "$modename: link input file \`$save_arg' does not exist" exit $EXIT_FAILURE fi arg=$save_arg prev= continue ;; rpath | xrpath) # We need an absolute path. case $arg in [\\/]* | [A-Za-z]:[\\/]*) ;; *) $echo "$modename: only absolute run-paths are allowed" 1>&2 exit $EXIT_FAILURE ;; esac if test "$prev" = rpath; then case "$rpath " in *" $arg "*) ;; *) rpath="$rpath $arg" ;; esac else case "$xrpath " in *" $arg "*) ;; *) xrpath="$xrpath $arg" ;; esac fi prev= continue ;; xcompiler) compiler_flags="$compiler_flags $qarg" prev= compile_command="$compile_command $qarg" finalize_command="$finalize_command $qarg" continue ;; xlinker) linker_flags="$linker_flags $qarg" compiler_flags="$compiler_flags $wl$qarg" prev= compile_command="$compile_command $wl$qarg" finalize_command="$finalize_command $wl$qarg" continue ;; xcclinker) linker_flags="$linker_flags $qarg" compiler_flags="$compiler_flags $qarg" prev= compile_command="$compile_command $qarg" finalize_command="$finalize_command $qarg" continue ;; shrext) shrext_cmds="$arg" prev= continue ;; darwin_framework|darwin_framework_skip) test "$prev" = "darwin_framework" && compiler_flags="$compiler_flags $arg" compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" prev= continue ;; *) eval "$prev=\"\$arg\"" prev= continue ;; esac fi # test -n "$prev" prevarg="$arg" case $arg in -all-static) if test -n "$link_static_flag"; then compile_command="$compile_command $link_static_flag" finalize_command="$finalize_command $link_static_flag" fi continue ;; -allow-undefined) # FIXME: remove this flag sometime in the future. $echo "$modename: \`-allow-undefined' is deprecated because it is the default" 1>&2 continue ;; -avoid-version) avoid_version=yes continue ;; -dlopen) prev=dlfiles continue ;; -dlpreopen) prev=dlprefiles continue ;; -export-dynamic) export_dynamic=yes continue ;; -export-symbols | -export-symbols-regex) if test -n "$export_symbols" || test -n "$export_symbols_regex"; then $echo "$modename: more than one -exported-symbols argument is not allowed" exit $EXIT_FAILURE fi if test "X$arg" = "X-export-symbols"; then prev=expsyms else prev=expsyms_regex fi continue ;; -framework|-arch|-isysroot) case " $CC " in *" ${arg} ${1} "* | *" ${arg} ${1} "*) prev=darwin_framework_skip ;; *) compiler_flags="$compiler_flags $arg" prev=darwin_framework ;; esac compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" continue ;; -inst-prefix-dir) prev=inst_prefix continue ;; # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* # so, if we see these flags be careful not to treat them like -L -L[A-Z][A-Z]*:*) case $with_gcc/$host in no/*-*-irix* | /*-*-irix*) compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" ;; esac continue ;; -L*) dir=`$echo "X$arg" | $Xsed -e 's/^-L//'` # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then $echo "$modename: cannot determine absolute directory name of \`$dir'" 1>&2 absdir="$dir" notinst_path="$notinst_path $dir" fi dir="$absdir" ;; esac case "$deplibs " in *" -L$dir "*) ;; *) deplibs="$deplibs -L$dir" lib_search_path="$lib_search_path $dir" ;; esac case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*) testbindir=`$echo "X$dir" | $Xsed -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$dir:"*) ;; *) dllsearchpath="$dllsearchpath:$dir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; *) dllsearchpath="$dllsearchpath:$testbindir";; esac ;; esac continue ;; -l*) if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos*) # These systems don't actually have a C or math library (as such) continue ;; *-*-os2*) # These systems don't actually have a C library (as such) test "X$arg" = "X-lc" && continue ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. test "X$arg" = "X-lc" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework deplibs="$deplibs -framework System" continue ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype test "X$arg" = "X-lc" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work test "X$arg" = "X-lc" && continue ;; esac elif test "X$arg" = "X-lc_r"; then case $host in *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc_r directly, use -pthread flag. continue ;; esac fi deplibs="$deplibs $arg" continue ;; # Tru64 UNIX uses -model [arg] to determine the layout of C++ # classes, name mangling, and exception handling. -model) compile_command="$compile_command $arg" compiler_flags="$compiler_flags $arg" finalize_command="$finalize_command $arg" prev=xcompiler continue ;; -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads) compiler_flags="$compiler_flags $arg" compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" continue ;; -multi_module) single_module="${wl}-multi_module" continue ;; -module) module=yes continue ;; # -64, -mips[0-9] enable 64-bit mode on the SGI compiler # -r[0-9][0-9]* specifies the processor on the SGI compiler # -xarch=*, -xtarget=* enable 64-bit mode on the Sun compiler # +DA*, +DD* enable 64-bit mode on the HP compiler # -q* pass through compiler args for the IBM compiler # -m* pass through architecture-specific compiler args for GCC # -m*, -t[45]*, -txscale* pass through architecture-specific # compiler args for GCC # -p, -pg, --coverage, -fprofile-* pass through profiling flag for GCC # -F/path gives path to uninstalled frameworks, gcc on darwin # @file GCC response files -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" compiler_flags="$compiler_flags $arg" continue ;; -shrext) prev=shrext continue ;; -no-fast-install) fast_install=no continue ;; -no-install) case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin*) # The PATH hackery in wrapper scripts is required on Windows # and Darwin in order for the loader to find any dlls it needs. $echo "$modename: warning: \`-no-install' is ignored for $host" 1>&2 $echo "$modename: warning: assuming \`-no-fast-install' instead" 1>&2 fast_install=no ;; *) no_install=yes ;; esac continue ;; -no-undefined) allow_undefined=no continue ;; -objectlist) prev=objectlist continue ;; -o) prev=output ;; -precious-files-regex) prev=precious_regex continue ;; -release) prev=release continue ;; -rpath) prev=rpath continue ;; -R) prev=xrpath continue ;; -R*) dir=`$echo "X$arg" | $Xsed -e 's/^-R//'` # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) $echo "$modename: only absolute run-paths are allowed" 1>&2 exit $EXIT_FAILURE ;; esac case "$xrpath " in *" $dir "*) ;; *) xrpath="$xrpath $dir" ;; esac continue ;; -static | -static-libtool-libs) # The effects of -static are defined in a previous loop. # We used to do the same as -all-static on platforms that # didn't have a PIC flag, but the assumption that the effects # would be equivalent was wrong. It would break on at least # Digital Unix and AIX. continue ;; -thread-safe) thread_safe=yes continue ;; -version-info) prev=vinfo continue ;; -version-number) prev=vinfo vinfo_number=yes continue ;; -Wc,*) args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wc,//'` arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" case $flag in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") flag="\"$flag\"" ;; esac arg="$arg $wl$flag" compiler_flags="$compiler_flags $flag" done IFS="$save_ifs" arg=`$echo "X$arg" | $Xsed -e "s/^ //"` ;; -Wl,*) args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wl,//'` arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" case $flag in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") flag="\"$flag\"" ;; esac arg="$arg $wl$flag" compiler_flags="$compiler_flags $wl$flag" linker_flags="$linker_flags $flag" done IFS="$save_ifs" arg=`$echo "X$arg" | $Xsed -e "s/^ //"` ;; -Xcompiler) prev=xcompiler continue ;; -Xlinker) prev=xlinker continue ;; -XCClinker) prev=xcclinker continue ;; # Some other compiler flag. -* | +*) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac ;; *.$objext) # A standard object. objs="$objs $arg" ;; *.lo) # A libtool-controlled object. # Check to see that this really is a libtool object. if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then pic_object= non_pic_object= # Read the .lo file # If there is no directory component, then add one. case $arg in */* | *\\*) . $arg ;; *) . ./$arg ;; esac if test -z "$pic_object" || \ test -z "$non_pic_object" || test "$pic_object" = none && \ test "$non_pic_object" = none; then $echo "$modename: cannot find name of object for \`$arg'" 1>&2 exit $EXIT_FAILURE fi # Extract subdirectory from the argument. xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` if test "X$xdir" = "X$arg"; then xdir= else xdir="$xdir/" fi if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then dlfiles="$dlfiles $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test "$prev" = dlprefiles; then # Preload the old-style object. dlprefiles="$dlprefiles $pic_object" prev= fi # A PIC object. libobjs="$libobjs $pic_object" arg="$pic_object" fi # Non-PIC object. if test "$non_pic_object" != none; then # Prepend the subdirectory the object is found in. non_pic_object="$xdir$non_pic_object" # A standard non-PIC object non_pic_objects="$non_pic_objects $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object="$pic_object" non_pic_objects="$non_pic_objects $non_pic_object" fi else # Only an error if not doing a dry-run. if test -z "$run"; then $echo "$modename: \`$arg' is not a valid libtool object" 1>&2 exit $EXIT_FAILURE else # Dry-run case. # Extract subdirectory from the argument. xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` if test "X$xdir" = "X$arg"; then xdir= else xdir="$xdir/" fi pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"` non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"` libobjs="$libobjs $pic_object" non_pic_objects="$non_pic_objects $non_pic_object" fi fi ;; *.$libext) # An archive. deplibs="$deplibs $arg" old_deplibs="$old_deplibs $arg" continue ;; *.la) # A libtool-controlled library. if test "$prev" = dlfiles; then # This library was specified with -dlopen. dlfiles="$dlfiles $arg" prev= elif test "$prev" = dlprefiles; then # The library was specified with -dlpreopen. dlprefiles="$dlprefiles $arg" prev= else deplibs="$deplibs $arg" fi continue ;; # Some other compiler argument. *) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac ;; esac # arg # Now actually substitute the argument into the commands. if test -n "$arg"; then compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" fi done # argument parsing loop if test -n "$prev"; then $echo "$modename: the \`$prevarg' option requires an argument" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then eval arg=\"$export_dynamic_flag_spec\" compile_command="$compile_command $arg" finalize_command="$finalize_command $arg" fi oldlibs= # calculate the name of the file, without its directory outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'` libobjs_save="$libobjs" if test -n "$shlibpath_var"; then # get the directories listed in $shlibpath_var eval shlib_search_path=\`\$echo \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\` else shlib_search_path= fi eval sys_lib_search_path=\"$sys_lib_search_path_spec\" eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'` if test "X$output_objdir" = "X$output"; then output_objdir="$objdir" else output_objdir="$output_objdir/$objdir" fi # Create the object directory. if test ! -d "$output_objdir"; then $show "$mkdir $output_objdir" $run $mkdir $output_objdir exit_status=$? if test "$exit_status" -ne 0 && test ! -d "$output_objdir"; then exit $exit_status fi fi # Determine the type of output case $output in "") $echo "$modename: you must specify an output file" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE ;; *.$libext) linkmode=oldlib ;; *.lo | *.$objext) linkmode=obj ;; *.la) linkmode=lib ;; *) linkmode=prog ;; # Anything else should be a program. esac case $host in *cygwin* | *mingw* | *pw32*) # don't eliminate duplications in $postdeps and $predeps duplicate_compiler_generated_deps=yes ;; *) duplicate_compiler_generated_deps=$duplicate_deps ;; esac specialdeplibs= libs= # Find all interdependent deplibs by searching for libraries # that are linked more than once (e.g. -la -lb -la) for deplib in $deplibs; do if test "X$duplicate_deps" = "Xyes" ; then case "$libs " in *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; esac fi libs="$libs $deplib" done if test "$linkmode" = lib; then libs="$predeps $libs $compiler_lib_search_path $postdeps" # Compute libraries that are listed more than once in $predeps # $postdeps and mark them as special (i.e., whose duplicates are # not to be eliminated). pre_post_deps= if test "X$duplicate_compiler_generated_deps" = "Xyes" ; then for pre_post_dep in $predeps $postdeps; do case "$pre_post_deps " in *" $pre_post_dep "*) specialdeplibs="$specialdeplibs $pre_post_deps" ;; esac pre_post_deps="$pre_post_deps $pre_post_dep" done fi pre_post_deps= fi deplibs= newdependency_libs= newlib_search_path= need_relink=no # whether we're linking any uninstalled libtool libraries notinst_deplibs= # not-installed libtool libraries case $linkmode in lib) passes="conv link" for file in $dlfiles $dlprefiles; do case $file in *.la) ;; *) $echo "$modename: libraries can \`-dlopen' only libtool libraries: $file" 1>&2 exit $EXIT_FAILURE ;; esac done ;; prog) compile_deplibs= finalize_deplibs= alldeplibs=no newdlfiles= newdlprefiles= passes="conv scan dlopen dlpreopen link" ;; *) passes="conv" ;; esac for pass in $passes; do if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan"; then libs="$deplibs" deplibs= fi if test "$linkmode" = prog; then case $pass in dlopen) libs="$dlfiles" ;; dlpreopen) libs="$dlprefiles" ;; link) libs="$deplibs %DEPLIBS%" test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" ;; esac fi if test "$pass" = dlopen; then # Collect dlpreopened libraries save_deplibs="$deplibs" deplibs= fi for deplib in $libs; do lib= found=no case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads) if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else compiler_flags="$compiler_flags $deplib" fi continue ;; -l*) if test "$linkmode" != lib && test "$linkmode" != prog; then $echo "$modename: warning: \`-l' is ignored for archives/objects" 1>&2 continue fi name=`$echo "X$deplib" | $Xsed -e 's/^-l//'` if test "$linkmode" = lib; then searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" else searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" fi for searchdir in $searchdirs; do for search_ext in .la $std_shrext .so .a; do # Search the libtool library lib="$searchdir/lib${name}${search_ext}" if test -f "$lib"; then if test "$search_ext" = ".la"; then found=yes else found=no fi break 2 fi done done if test "$found" != yes; then # deplib doesn't seem to be a libtool library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue else # deplib is a libtool library # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, # We need to do some special things here, and not later. if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $deplib "*) if (${SED} -e '2q' $lib | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then library_names= old_library= case $lib in */* | *\\*) . $lib ;; *) . ./$lib ;; esac for l in $old_library $library_names; do ll="$l" done if test "X$ll" = "X$old_library" ; then # only static version available found=no ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'` test "X$ladir" = "X$lib" && ladir="." lib=$ladir/$old_library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue fi fi ;; *) ;; esac fi fi ;; # -l -L*) case $linkmode in lib) deplibs="$deplib $deplibs" test "$pass" = conv && continue newdependency_libs="$deplib $newdependency_libs" newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'` ;; prog) if test "$pass" = conv; then deplibs="$deplib $deplibs" continue fi if test "$pass" = scan; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'` ;; *) $echo "$modename: warning: \`-L' is ignored for archives/objects" 1>&2 ;; esac # linkmode continue ;; # -L -R*) if test "$pass" = link; then dir=`$echo "X$deplib" | $Xsed -e 's/^-R//'` # Make sure the xrpath contains only unique directories. case "$xrpath " in *" $dir "*) ;; *) xrpath="$xrpath $dir" ;; esac fi deplibs="$deplib $deplibs" continue ;; *.la) lib="$deplib" ;; *.$libext) if test "$pass" = conv; then deplibs="$deplib $deplibs" continue fi case $linkmode in lib) valid_a_lib=no case $deplibs_check_method in match_pattern*) set dummy $deplibs_check_method match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"` if eval $echo \"$deplib\" 2>/dev/null \ | $SED 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then valid_a_lib=yes fi ;; pass_all) valid_a_lib=yes ;; esac if test "$valid_a_lib" != yes; then $echo $echo "*** Warning: Trying to link with static lib archive $deplib." $echo "*** I have the capability to make that library automatically link in when" $echo "*** you link to this library. But I can only do this if you have a" $echo "*** shared version of the library, which you do not appear to have" $echo "*** because the file extensions .$libext of this argument makes me believe" $echo "*** that it is just a static archive that I should not used here." else $echo $echo "*** Warning: Linking the shared library $output against the" $echo "*** static library $deplib is not portable!" deplibs="$deplib $deplibs" fi continue ;; prog) if test "$pass" != link; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi continue ;; esac # linkmode ;; # *.$libext *.lo | *.$objext) if test "$pass" = conv; then deplibs="$deplib $deplibs" elif test "$linkmode" = prog; then if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then # If there is no dlopen support or we're linking statically, # we need to preload. newdlprefiles="$newdlprefiles $deplib" compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else newdlfiles="$newdlfiles $deplib" fi fi continue ;; %DEPLIBS%) alldeplibs=yes continue ;; esac # case $deplib if test "$found" = yes || test -f "$lib"; then : else $echo "$modename: cannot find the library \`$lib' or unhandled argument \`$deplib'" 1>&2 exit $EXIT_FAILURE fi # Check to see that this really is a libtool archive. if (${SED} -e '2q' $lib | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : else $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 exit $EXIT_FAILURE fi ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'` test "X$ladir" = "X$lib" && ladir="." dlname= dlopen= dlpreopen= libdir= library_names= old_library= # If the library was installed with an old release of libtool, # it will not redefine variables installed, or shouldnotlink installed=yes shouldnotlink=no avoidtemprpath= # Read the .la file case $lib in */* | *\\*) . $lib ;; *) . ./$lib ;; esac if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan" || { test "$linkmode" != prog && test "$linkmode" != lib; }; then test -n "$dlopen" && dlfiles="$dlfiles $dlopen" test -n "$dlpreopen" && dlprefiles="$dlprefiles $dlpreopen" fi if test "$pass" = conv; then # Only check for convenience libraries deplibs="$lib $deplibs" if test -z "$libdir"; then if test -z "$old_library"; then $echo "$modename: cannot find name of link library for \`$lib'" 1>&2 exit $EXIT_FAILURE fi # It is a libtool convenience library, so add in its objects. convenience="$convenience $ladir/$objdir/$old_library" old_convenience="$old_convenience $ladir/$objdir/$old_library" tmp_libs= for deplib in $dependency_libs; do deplibs="$deplib $deplibs" if test "X$duplicate_deps" = "Xyes" ; then case "$tmp_libs " in *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; esac fi tmp_libs="$tmp_libs $deplib" done elif test "$linkmode" != prog && test "$linkmode" != lib; then $echo "$modename: \`$lib' is not a convenience library" 1>&2 exit $EXIT_FAILURE fi continue fi # $pass = conv # Get the name of the library we link against. linklib= for l in $old_library $library_names; do linklib="$l" done if test -z "$linklib"; then $echo "$modename: cannot find name of link library for \`$lib'" 1>&2 exit $EXIT_FAILURE fi # This library was specified with -dlopen. if test "$pass" = dlopen; then if test -z "$libdir"; then $echo "$modename: cannot -dlopen a convenience library: \`$lib'" 1>&2 exit $EXIT_FAILURE fi if test -z "$dlname" || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then # If there is no dlname, no dlopen support or we're linking # statically, we need to preload. We also need to preload any # dependent libraries so libltdl's deplib preloader doesn't # bomb out in the load deplibs phase. dlprefiles="$dlprefiles $lib $dependency_libs" else newdlfiles="$newdlfiles $lib" fi continue fi # $pass = dlopen # We need an absolute path. case $ladir in [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; *) abs_ladir=`cd "$ladir" && pwd` if test -z "$abs_ladir"; then $echo "$modename: warning: cannot determine absolute directory name of \`$ladir'" 1>&2 $echo "$modename: passing it literally to the linker, although it might fail" 1>&2 abs_ladir="$ladir" fi ;; esac laname=`$echo "X$lib" | $Xsed -e 's%^.*/%%'` # Find the relevant object directory and library name. if test "X$installed" = Xyes; then if test ! -f "$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then $echo "$modename: warning: library \`$lib' was moved." 1>&2 dir="$ladir" absdir="$abs_ladir" libdir="$abs_ladir" else dir="$libdir" absdir="$libdir" fi test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes else if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then dir="$ladir" absdir="$abs_ladir" # Remove this search path later notinst_path="$notinst_path $abs_ladir" else dir="$ladir/$objdir" absdir="$abs_ladir/$objdir" # Remove this search path later notinst_path="$notinst_path $abs_ladir" fi fi # $installed = yes name=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'` # This library was specified with -dlpreopen. if test "$pass" = dlpreopen; then if test -z "$libdir"; then $echo "$modename: cannot -dlpreopen a convenience library: \`$lib'" 1>&2 exit $EXIT_FAILURE fi # Prefer using a static library (so that no silly _DYNAMIC symbols # are required to link). if test -n "$old_library"; then newdlprefiles="$newdlprefiles $dir/$old_library" # Otherwise, use the dlname, so that lt_dlopen finds it. elif test -n "$dlname"; then newdlprefiles="$newdlprefiles $dir/$dlname" else newdlprefiles="$newdlprefiles $dir/$linklib" fi fi # $pass = dlpreopen if test -z "$libdir"; then # Link the convenience library if test "$linkmode" = lib; then deplibs="$dir/$old_library $deplibs" elif test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$dir/$old_library $compile_deplibs" finalize_deplibs="$dir/$old_library $finalize_deplibs" else deplibs="$lib $deplibs" # used for prog,scan pass fi continue fi if test "$linkmode" = prog && test "$pass" != link; then newlib_search_path="$newlib_search_path $ladir" deplibs="$lib $deplibs" linkalldeplibs=no if test "$link_all_deplibs" != no || test -z "$library_names" || test "$build_libtool_libs" = no; then linkalldeplibs=yes fi tmp_libs= for deplib in $dependency_libs; do case $deplib in -L*) newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`;; ### testsuite: skip nested quoting test esac # Need to link against all dependency_libs? if test "$linkalldeplibs" = yes; then deplibs="$deplib $deplibs" else # Need to hardcode shared library paths # or/and link against static libraries newdependency_libs="$deplib $newdependency_libs" fi if test "X$duplicate_deps" = "Xyes" ; then case "$tmp_libs " in *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; esac fi tmp_libs="$tmp_libs $deplib" done # for deplib continue fi # $linkmode = prog... if test "$linkmode,$pass" = "prog,link"; then if test -n "$library_names" && { { test "$prefer_static_libs" = no || test "$prefer_static_libs,$installed" = "built,yes"; } || test -z "$old_library"; }; then # We need to hardcode the library path if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then # Make sure the rpath contains only unique directories. case "$temp_rpath " in *" $dir "*) ;; *" $absdir "*) ;; *) temp_rpath="$temp_rpath $absdir" ;; esac fi # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) compile_rpath="$compile_rpath $absdir" esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) finalize_rpath="$finalize_rpath $libdir" esac ;; esac fi # $linkmode,$pass = prog,link... if test "$alldeplibs" = yes && { test "$deplibs_check_method" = pass_all || { test "$build_libtool_libs" = yes && test -n "$library_names"; }; }; then # We only need to search for static libraries continue fi fi link_static=no # Whether the deplib will be linked statically use_static_libs=$prefer_static_libs if test "$use_static_libs" = built && test "$installed" = yes ; then use_static_libs=no fi if test -n "$library_names" && { test "$use_static_libs" = no || test -z "$old_library"; }; then if test "$installed" = no; then notinst_deplibs="$notinst_deplibs $lib" need_relink=yes fi # This is a shared library # Warn about portability, can't link against -module's on # some systems (darwin) if test "$shouldnotlink" = yes && test "$pass" = link ; then $echo if test "$linkmode" = prog; then $echo "*** Warning: Linking the executable $output against the loadable module" else $echo "*** Warning: Linking the shared library $output against the loadable module" fi $echo "*** $linklib is not portable!" fi if test "$linkmode" = lib && test "$hardcode_into_libs" = yes; then # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) compile_rpath="$compile_rpath $absdir" esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) finalize_rpath="$finalize_rpath $libdir" esac ;; esac fi if test -n "$old_archive_from_expsyms_cmds"; then # figure out the soname set dummy $library_names realname="$2" shift; shift libname=`eval \\$echo \"$libname_spec\"` # use dlname if we got it. it's perfectly good, no? if test -n "$dlname"; then soname="$dlname" elif test -n "$soname_spec"; then # bleh windows case $host in *cygwin* | mingw*) major=`expr $current - $age` versuffix="-$major" ;; esac eval soname=\"$soname_spec\" else soname="$realname" fi # Make a new name for the extract_expsyms_cmds to use soroot="$soname" soname=`$echo $soroot | ${SED} -e 's/^.*\///'` newlib="libimp-`$echo $soname | ${SED} 's/^lib//;s/\.dll$//'`.a" # If the library has no export list, then create one now if test -f "$output_objdir/$soname-def"; then : else $show "extracting exported symbol list from \`$soname'" save_ifs="$IFS"; IFS='~' cmds=$extract_expsyms_cmds for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" fi # Create $newlib if test -f "$output_objdir/$newlib"; then :; else $show "generating import library for \`$soname'" save_ifs="$IFS"; IFS='~' cmds=$old_archive_from_expsyms_cmds for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" fi # make sure the library variables are pointing to the new library dir=$output_objdir linklib=$newlib fi # test -n "$old_archive_from_expsyms_cmds" if test "$linkmode" = prog || test "$mode" != relink; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) if test "$hardcode_direct" = no; then add="$dir/$linklib" case $host in *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;; *-*-sysv4*uw2*) add_dir="-L$dir" ;; *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ *-*-unixware7*) add_dir="-L$dir" ;; *-*-darwin* ) # if the lib is a module then we can not link against # it, someone is ignoring the new warnings I added if /usr/bin/file -L $add 2> /dev/null | $EGREP ": [^:]* bundle" >/dev/null ; then $echo "** Warning, lib $linklib is a module, not a shared library" if test -z "$old_library" ; then $echo $echo "** And there doesn't seem to be a static archive available" $echo "** The link will probably fail, sorry" else add="$dir/$old_library" fi fi esac elif test "$hardcode_minus_L" = no; then case $host in *-*-sunos*) add_shlibpath="$dir" ;; esac add_dir="-L$dir" add="-l$name" elif test "$hardcode_shlibpath_var" = no; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; relink) if test "$hardcode_direct" = yes; then add="$dir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$dir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) add_dir="$add_dir -L$inst_prefix_dir$libdir" ;; esac fi add="-l$name" elif test "$hardcode_shlibpath_var" = yes; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; *) lib_linked=no ;; esac if test "$lib_linked" != yes; then $echo "$modename: configuration error: unsupported hardcode properties" exit $EXIT_FAILURE fi if test -n "$add_shlibpath"; then case :$compile_shlibpath: in *":$add_shlibpath:"*) ;; *) compile_shlibpath="$compile_shlibpath$add_shlibpath:" ;; esac fi if test "$linkmode" = prog; then test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" test -n "$add" && compile_deplibs="$add $compile_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" if test "$hardcode_direct" != yes && \ test "$hardcode_minus_L" != yes && \ test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;; esac fi fi fi if test "$linkmode" = prog || test "$mode" = relink; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. if test "$hardcode_direct" = yes; then add="$libdir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$libdir" add="-l$name" elif test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;; esac add="-l$name" elif test "$hardcode_automatic" = yes; then if test -n "$inst_prefix_dir" && test -f "$inst_prefix_dir$libdir/$linklib" ; then add="$inst_prefix_dir$libdir/$linklib" else add="$libdir/$linklib" fi else # We cannot seem to hardcode it, guess we'll fake it. add_dir="-L$libdir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) add_dir="$add_dir -L$inst_prefix_dir$libdir" ;; esac fi add="-l$name" fi if test "$linkmode" = prog; then test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" test -n "$add" && finalize_deplibs="$add $finalize_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" fi fi elif test "$linkmode" = prog; then # Here we assume that one of hardcode_direct or hardcode_minus_L # is not unsupported. This is valid on all known static and # shared platforms. if test "$hardcode_direct" != unsupported; then test -n "$old_library" && linklib="$old_library" compile_deplibs="$dir/$linklib $compile_deplibs" finalize_deplibs="$dir/$linklib $finalize_deplibs" else compile_deplibs="-l$name -L$dir $compile_deplibs" finalize_deplibs="-l$name -L$dir $finalize_deplibs" fi elif test "$build_libtool_libs" = yes; then # Not a shared library if test "$deplibs_check_method" != pass_all; then # We're trying link a shared library against a static one # but the system doesn't support it. # Just print a warning and add the library to dependency_libs so # that the program can be linked against the static library. $echo $echo "*** Warning: This system can not link to static lib archive $lib." $echo "*** I have the capability to make that library automatically link in when" $echo "*** you link to this library. But I can only do this if you have a" $echo "*** shared version of the library, which you do not appear to have." if test "$module" = yes; then $echo "*** But as you try to build a module library, libtool will still create " $echo "*** a static module, that should work as long as the dlopening application" $echo "*** is linked with the -dlopen flag to resolve symbols at runtime." if test -z "$global_symbol_pipe"; then $echo $echo "*** However, this would only work if libtool was able to extract symbol" $echo "*** lists from a program, using \`nm' or equivalent, but libtool could" $echo "*** not find such a program. So, this module is probably useless." $echo "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi else deplibs="$dir/$old_library $deplibs" link_static=yes fi fi # link shared/static library? if test "$linkmode" = lib; then if test -n "$dependency_libs" && { test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes || test "$link_static" = yes; }; then # Extract -R from dependency_libs temp_deplibs= for libdir in $dependency_libs; do case $libdir in -R*) temp_xrpath=`$echo "X$libdir" | $Xsed -e 's/^-R//'` case " $xrpath " in *" $temp_xrpath "*) ;; *) xrpath="$xrpath $temp_xrpath";; esac;; *) temp_deplibs="$temp_deplibs $libdir";; esac done dependency_libs="$temp_deplibs" fi newlib_search_path="$newlib_search_path $absdir" # Link against this library test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" # ... and its dependency_libs tmp_libs= for deplib in $dependency_libs; do newdependency_libs="$deplib $newdependency_libs" if test "X$duplicate_deps" = "Xyes" ; then case "$tmp_libs " in *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; esac fi tmp_libs="$tmp_libs $deplib" done if test "$link_all_deplibs" != no; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do case $deplib in -L*) path="$deplib" ;; *.la) dir=`$echo "X$deplib" | $Xsed -e 's%/[^/]*$%%'` test "X$dir" = "X$deplib" && dir="." # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then $echo "$modename: warning: cannot determine absolute directory name of \`$dir'" 1>&2 absdir="$dir" fi ;; esac if grep "^installed=no" $deplib > /dev/null; then path="$absdir/$objdir" else eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` if test -z "$libdir"; then $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2 exit $EXIT_FAILURE fi if test "$absdir" != "$libdir"; then $echo "$modename: warning: \`$deplib' seems to be moved" 1>&2 fi path="$absdir" fi depdepl= case $host in *-*-darwin*) # we do not want to link against static libs, # but need to link against shared eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` eval deplibdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` if test -n "$deplibrary_names" ; then for tmp in $deplibrary_names ; do depdepl=$tmp done if test -f "$deplibdir/$depdepl" ; then depdepl="$deplibdir/$depdepl" elif test -f "$path/$depdepl" ; then depdepl="$path/$depdepl" else # Can't find it, oh well... depdepl= fi # do not add paths which are already there case " $newlib_search_path " in *" $path "*) ;; *) newlib_search_path="$newlib_search_path $path";; esac fi path="" ;; *) path="-L$path" ;; esac ;; -l*) case $host in *-*-darwin*) # Again, we only want to link against shared libraries eval tmp_libs=`$echo "X$deplib" | $Xsed -e "s,^\-l,,"` for tmp in $newlib_search_path ; do if test -f "$tmp/lib$tmp_libs.dylib" ; then eval depdepl="$tmp/lib$tmp_libs.dylib" break fi done path="" ;; *) continue ;; esac ;; *) continue ;; esac case " $deplibs " in *" $path "*) ;; *) deplibs="$path $deplibs" ;; esac case " $deplibs " in *" $depdepl "*) ;; *) deplibs="$depdepl $deplibs" ;; esac done fi # link_all_deplibs != no fi # linkmode = lib done # for deplib in $libs dependency_libs="$newdependency_libs" if test "$pass" = dlpreopen; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi if test "$pass" != dlopen; then if test "$pass" != conv; then # Make sure lib_search_path contains only unique directories. lib_search_path= for dir in $newlib_search_path; do case "$lib_search_path " in *" $dir "*) ;; *) lib_search_path="$lib_search_path $dir" ;; esac done newlib_search_path= fi if test "$linkmode,$pass" != "prog,link"; then vars="deplibs" else vars="compile_deplibs finalize_deplibs" fi for var in $vars dependency_libs; do # Add libraries to $var in reverse order eval tmp_libs=\"\$$var\" new_libs= for deplib in $tmp_libs; do # FIXME: Pedantically, this is the right thing to do, so # that some nasty dependency loop isn't accidentally # broken: #new_libs="$deplib $new_libs" # Pragmatically, this seems to cause very few problems in # practice: case $deplib in -L*) new_libs="$deplib $new_libs" ;; -R*) ;; *) # And here is the reason: when a library appears more # than once as an explicit dependence of a library, or # is implicitly linked in more than once by the # compiler, it is considered special, and multiple # occurrences thereof are not removed. Compare this # with having the same library being listed as a # dependency of multiple other libraries: in this case, # we know (pedantically, we assume) the library does not # need to be listed more than once, so we keep only the # last copy. This is not always right, but it is rare # enough that we require users that really mean to play # such unportable linking tricks to link the library # using -Wl,-lname, so that libtool does not consider it # for duplicate removal. case " $specialdeplibs " in *" $deplib "*) new_libs="$deplib $new_libs" ;; *) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$deplib $new_libs" ;; esac ;; esac ;; esac done tmp_libs= for deplib in $new_libs; do case $deplib in -L*) case " $tmp_libs " in *" $deplib "*) ;; *) tmp_libs="$tmp_libs $deplib" ;; esac ;; *) tmp_libs="$tmp_libs $deplib" ;; esac done eval $var=\"$tmp_libs\" done # for var fi # Last step: remove runtime libs from dependency_libs # (they stay in deplibs) tmp_libs= for i in $dependency_libs ; do case " $predeps $postdeps $compiler_lib_search_path " in *" $i "*) i="" ;; esac if test -n "$i" ; then tmp_libs="$tmp_libs $i" fi done dependency_libs=$tmp_libs done # for pass if test "$linkmode" = prog; then dlfiles="$newdlfiles" dlprefiles="$newdlprefiles" fi case $linkmode in oldlib) case " $deplibs" in *\ -l* | *\ -L*) $echo "$modename: warning: \`-l' and \`-L' are ignored for archives" 1>&2 ;; esac if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then $echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2 fi if test -n "$rpath"; then $echo "$modename: warning: \`-rpath' is ignored for archives" 1>&2 fi if test -n "$xrpath"; then $echo "$modename: warning: \`-R' is ignored for archives" 1>&2 fi if test -n "$vinfo"; then $echo "$modename: warning: \`-version-info/-version-number' is ignored for archives" 1>&2 fi if test -n "$release"; then $echo "$modename: warning: \`-release' is ignored for archives" 1>&2 fi if test -n "$export_symbols" || test -n "$export_symbols_regex"; then $echo "$modename: warning: \`-export-symbols' is ignored for archives" 1>&2 fi # Now set the variables for building old libraries. build_libtool_libs=no oldlibs="$output" objs="$objs$old_deplibs" ;; lib) # Make sure we only generate libraries of the form `libNAME.la'. case $outputname in lib*) name=`$echo "X$outputname" | $Xsed -e 's/\.la$//' -e 's/^lib//'` eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" ;; *) if test "$module" = no; then $echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi if test "$need_lib_prefix" != no; then # Add the "lib" prefix for modules if required name=`$echo "X$outputname" | $Xsed -e 's/\.la$//'` eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" else libname=`$echo "X$outputname" | $Xsed -e 's/\.la$//'` fi ;; esac if test -n "$objs"; then if test "$deplibs_check_method" != pass_all; then $echo "$modename: cannot build libtool library \`$output' from non-libtool objects on this host:$objs" 2>&1 exit $EXIT_FAILURE else $echo $echo "*** Warning: Linking the shared library $output against the non-libtool" $echo "*** objects $objs is not portable!" libobjs="$libobjs $objs" fi fi if test "$dlself" != no; then $echo "$modename: warning: \`-dlopen self' is ignored for libtool libraries" 1>&2 fi set dummy $rpath if test "$#" -gt 2; then $echo "$modename: warning: ignoring multiple \`-rpath's for a libtool library" 1>&2 fi install_libdir="$2" oldlibs= if test -z "$rpath"; then if test "$build_libtool_libs" = yes; then # Building a libtool convenience library. # Some compilers have problems with a `.al' extension so # convenience libraries should have the same extension an # archive normally would. oldlibs="$output_objdir/$libname.$libext $oldlibs" build_libtool_libs=convenience build_old_libs=yes fi if test -n "$vinfo"; then $echo "$modename: warning: \`-version-info/-version-number' is ignored for convenience libraries" 1>&2 fi if test -n "$release"; then $echo "$modename: warning: \`-release' is ignored for convenience libraries" 1>&2 fi else # Parse the version information argument. save_ifs="$IFS"; IFS=':' set dummy $vinfo 0 0 0 IFS="$save_ifs" if test -n "$8"; then $echo "$modename: too many parameters to \`-version-info'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi # convert absolute version numbers to libtool ages # this retains compatibility with .la files and attempts # to make the code below a bit more comprehensible case $vinfo_number in yes) number_major="$2" number_minor="$3" number_revision="$4" # # There are really only two kinds -- those that # use the current revision as the major version # and those that subtract age and use age as # a minor version. But, then there is irix # which has an extra 1 added just for fun # case $version_type in darwin|linux|osf|windows|none) current=`expr $number_major + $number_minor` age="$number_minor" revision="$number_revision" ;; freebsd-aout|freebsd-elf|sunos) current="$number_major" revision="$number_minor" age="0" ;; irix|nonstopux) current=`expr $number_major + $number_minor` age="$number_minor" revision="$number_minor" lt_irix_increment=no ;; *) $echo "$modename: unknown library version type \`$version_type'" 1>&2 $echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 exit $EXIT_FAILURE ;; esac ;; no) current="$2" revision="$3" age="$4" ;; esac # Check that each of the things are valid numbers. case $current in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) $echo "$modename: CURRENT \`$current' must be a nonnegative integer" 1>&2 $echo "$modename: \`$vinfo' is not valid version information" 1>&2 exit $EXIT_FAILURE ;; esac case $revision in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) $echo "$modename: REVISION \`$revision' must be a nonnegative integer" 1>&2 $echo "$modename: \`$vinfo' is not valid version information" 1>&2 exit $EXIT_FAILURE ;; esac case $age in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) $echo "$modename: AGE \`$age' must be a nonnegative integer" 1>&2 $echo "$modename: \`$vinfo' is not valid version information" 1>&2 exit $EXIT_FAILURE ;; esac if test "$age" -gt "$current"; then $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2 $echo "$modename: \`$vinfo' is not valid version information" 1>&2 exit $EXIT_FAILURE fi # Calculate the version variables. major= versuffix= verstring= case $version_type in none) ;; darwin) # Like Linux, but with the current version available in # verstring for coding it into the library header major=.`expr $current - $age` versuffix="$major.$age.$revision" # Darwin ld doesn't like 0 for these options... minor_current=`expr $current + 1` xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" ;; freebsd-aout) major=".$current" versuffix=".$current.$revision"; ;; freebsd-elf) major=".$current" versuffix=".$current"; ;; irix | nonstopux) if test "X$lt_irix_increment" = "Xno"; then major=`expr $current - $age` else major=`expr $current - $age + 1` fi case $version_type in nonstopux) verstring_prefix=nonstopux ;; *) verstring_prefix=sgi ;; esac verstring="$verstring_prefix$major.$revision" # Add in all the interfaces that we are compatible with. loop=$revision while test "$loop" -ne 0; do iface=`expr $revision - $loop` loop=`expr $loop - 1` verstring="$verstring_prefix$major.$iface:$verstring" done # Before this point, $major must not contain `.'. major=.$major versuffix="$major.$revision" ;; linux) major=.`expr $current - $age` versuffix="$major.$age.$revision" ;; osf) major=.`expr $current - $age` versuffix=".$current.$age.$revision" verstring="$current.$age.$revision" # Add in all the interfaces that we are compatible with. loop=$age while test "$loop" -ne 0; do iface=`expr $current - $loop` loop=`expr $loop - 1` verstring="$verstring:${iface}.0" done # Make executables depend on our current version. verstring="$verstring:${current}.0" ;; sunos) major=".$current" versuffix=".$current.$revision" ;; windows) # Use '-' rather than '.', since we only want one # extension on DOS 8.3 filesystems. major=`expr $current - $age` versuffix="-$major" ;; *) $echo "$modename: unknown library version type \`$version_type'" 1>&2 $echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 exit $EXIT_FAILURE ;; esac # Clear the version info if we defaulted, and they specified a release. if test -z "$vinfo" && test -n "$release"; then major= case $version_type in darwin) # we can't check for "0.0" in archive_cmds due to quoting # problems, so we reset it completely verstring= ;; *) verstring="0.0" ;; esac if test "$need_version" = no; then versuffix= else versuffix=".0.0" fi fi # Remove version info from name if versioning should be avoided if test "$avoid_version" = yes && test "$need_version" = no; then major= versuffix= verstring="" fi # Check to see if the archive will have undefined symbols. if test "$allow_undefined" = yes; then if test "$allow_undefined_flag" = unsupported; then $echo "$modename: warning: undefined symbols not allowed in $host shared libraries" 1>&2 build_libtool_libs=no build_old_libs=yes fi else # Don't allow undefined symbols. allow_undefined_flag="$no_undefined_flag" fi fi if test "$mode" != relink; then # Remove our outputs, but don't remove object files since they # may have been created when compiling PIC objects. removelist= tempremovelist=`$echo "$output_objdir/*"` for p in $tempremovelist; do case $p in *.$objext) ;; $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) if test "X$precious_files_regex" != "X"; then if echo $p | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 then continue fi fi removelist="$removelist $p" ;; *) ;; esac done if test -n "$removelist"; then $show "${rm}r $removelist" $run ${rm}r $removelist fi fi # Now set the variables for building old libraries. if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then oldlibs="$oldlibs $output_objdir/$libname.$libext" # Transform .lo files to .o files. oldobjs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP` fi # Eliminate all temporary directories. #for path in $notinst_path; do # lib_search_path=`$echo "$lib_search_path " | ${SED} -e "s% $path % %g"` # deplibs=`$echo "$deplibs " | ${SED} -e "s% -L$path % %g"` # dependency_libs=`$echo "$dependency_libs " | ${SED} -e "s% -L$path % %g"` #done if test -n "$xrpath"; then # If the user specified any rpath flags, then add them. temp_xrpath= for libdir in $xrpath; do temp_xrpath="$temp_xrpath -R$libdir" case "$finalize_rpath " in *" $libdir "*) ;; *) finalize_rpath="$finalize_rpath $libdir" ;; esac done if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then dependency_libs="$temp_xrpath $dependency_libs" fi fi # Make sure dlfiles contains only unique files that won't be dlpreopened old_dlfiles="$dlfiles" dlfiles= for lib in $old_dlfiles; do case " $dlprefiles $dlfiles " in *" $lib "*) ;; *) dlfiles="$dlfiles $lib" ;; esac done # Make sure dlprefiles contains only unique files old_dlprefiles="$dlprefiles" dlprefiles= for lib in $old_dlprefiles; do case "$dlprefiles " in *" $lib "*) ;; *) dlprefiles="$dlprefiles $lib" ;; esac done if test "$build_libtool_libs" = yes; then if test -n "$rpath"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos*) # these systems don't actually have a c library (as such)! ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C library is in the System framework deplibs="$deplibs -framework System" ;; *-*-netbsd*) # Don't link with libc until the a.out ld.so is fixed. ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work ;; *) # Add libc to deplibs on all other systems if necessary. if test "$build_libtool_need_lc" = "yes"; then deplibs="$deplibs -lc" fi ;; esac fi # Transform deplibs into only deplibs that can be linked in shared. name_save=$name libname_save=$libname release_save=$release versuffix_save=$versuffix major_save=$major # I'm not sure if I'm treating the release correctly. I think # release should show up in the -l (ie -lgmp5) so we don't want to # add it in twice. Is that correct? release="" versuffix="" major="" newdeplibs= droppeddeps=no case $deplibs_check_method in pass_all) # Don't check for shared/static. Everything works. # This might be a little naive. We might want to check # whether the library exists or not. But this is on # osf3 & osf4 and I'm not really sure... Just # implementing what was already the behavior. newdeplibs=$deplibs ;; test_compile) # This code stresses the "libraries are programs" paradigm to its # limits. Maybe even breaks it. We compile a program, linking it # against the deplibs as a proxy for the library. Then we can check # whether they linked in statically or dynamically with ldd. $rm conftest.c cat > conftest.c </dev/null` for potent_lib in $potential_libs; do # Follow soft links. if ls -lLd "$potent_lib" 2>/dev/null \ | grep " -> " >/dev/null; then continue fi # The statement above tries to avoid entering an # endless loop below, in case of cyclic links. # We might still enter an endless loop, since a link # loop can be closed while we follow links, # but so what? potlib="$potent_lib" while test -h "$potlib" 2>/dev/null; do potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` case $potliblink in [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; *) potlib=`$echo "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";; esac done if eval $file_magic_cmd \"\$potlib\" 2>/dev/null \ | ${SED} 10q \ | $EGREP "$file_magic_regex" > /dev/null; then newdeplibs="$newdeplibs $a_deplib" a_deplib="" break 2 fi done done fi if test -n "$a_deplib" ; then droppeddeps=yes $echo $echo "*** Warning: linker path does not have real file for library $a_deplib." $echo "*** I have the capability to make that library automatically link in when" $echo "*** you link to this library. But I can only do this if you have a" $echo "*** shared version of the library, which you do not appear to have" $echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then $echo "*** with $libname but no candidates were found. (...for file magic test)" else $echo "*** with $libname and none of the candidates passed a file format test" $echo "*** using a file magic. Last file checked: $potlib" fi fi else # Add a -L argument. newdeplibs="$newdeplibs $a_deplib" fi done # Gone through all deplibs. ;; match_pattern*) set dummy $deplibs_check_method match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"` for a_deplib in $deplibs; do name=`expr $a_deplib : '-l\(.*\)'` # If $name is empty we are operating on a -L argument. if test -n "$name" && test "$name" != "0"; then if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $a_deplib "*) newdeplibs="$newdeplibs $a_deplib" a_deplib="" ;; esac fi if test -n "$a_deplib" ; then libname=`eval \\$echo \"$libname_spec\"` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do potential_libs=`ls $i/$libname[.-]* 2>/dev/null` for potent_lib in $potential_libs; do potlib="$potent_lib" # see symlink-check above in file_magic test if eval $echo \"$potent_lib\" 2>/dev/null \ | ${SED} 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then newdeplibs="$newdeplibs $a_deplib" a_deplib="" break 2 fi done done fi if test -n "$a_deplib" ; then droppeddeps=yes $echo $echo "*** Warning: linker path does not have real file for library $a_deplib." $echo "*** I have the capability to make that library automatically link in when" $echo "*** you link to this library. But I can only do this if you have a" $echo "*** shared version of the library, which you do not appear to have" $echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then $echo "*** with $libname but no candidates were found. (...for regex pattern test)" else $echo "*** with $libname and none of the candidates passed a file format test" $echo "*** using a regex pattern. Last file checked: $potlib" fi fi else # Add a -L argument. newdeplibs="$newdeplibs $a_deplib" fi done # Gone through all deplibs. ;; none | unknown | *) newdeplibs="" tmp_deplibs=`$echo "X $deplibs" | $Xsed -e 's/ -lc$//' \ -e 's/ -[LR][^ ]*//g'` if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then for i in $predeps $postdeps ; do # can't use Xsed below, because $i might contain '/' tmp_deplibs=`$echo "X $tmp_deplibs" | ${SED} -e "1s,^X,," -e "s,$i,,"` done fi if $echo "X $tmp_deplibs" | $Xsed -e 's/[ ]//g' \ | grep . >/dev/null; then $echo if test "X$deplibs_check_method" = "Xnone"; then $echo "*** Warning: inter-library dependencies are not supported in this platform." else $echo "*** Warning: inter-library dependencies are not known to be supported." fi $echo "*** All declared inter-library dependencies are being dropped." droppeddeps=yes fi ;; esac versuffix=$versuffix_save major=$major_save release=$release_save libname=$libname_save name=$name_save case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework newdeplibs=`$echo "X $newdeplibs" | $Xsed -e 's/ -lc / -framework System /'` ;; esac if test "$droppeddeps" = yes; then if test "$module" = yes; then $echo $echo "*** Warning: libtool could not satisfy all declared inter-library" $echo "*** dependencies of module $libname. Therefore, libtool will create" $echo "*** a static module, that should work as long as the dlopening" $echo "*** application is linked with the -dlopen flag." if test -z "$global_symbol_pipe"; then $echo $echo "*** However, this would only work if libtool was able to extract symbol" $echo "*** lists from a program, using \`nm' or equivalent, but libtool could" $echo "*** not find such a program. So, this module is probably useless." $echo "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi else $echo "*** The inter-library dependencies that have been dropped here will be" $echo "*** automatically added whenever a program is linked with this library" $echo "*** or is declared to -dlopen it." if test "$allow_undefined" = no; then $echo $echo "*** Since this library must not contain undefined symbols," $echo "*** because either the platform does not support them or" $echo "*** it was explicitly requested with -no-undefined," $echo "*** libtool will only create a static version of it." if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi fi fi # Done checking deplibs! deplibs=$newdeplibs fi # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $deplibs " in *" -L$path/$objdir "*) new_libs="$new_libs -L$path/$objdir" ;; esac ;; esac done for deplib in $deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$new_libs $deplib" ;; esac ;; *) new_libs="$new_libs $deplib" ;; esac done deplibs="$new_libs" # All the library-specific variables (install_libdir is set above). library_names= old_library= dlname= # Test again, we may have decided not to build it any more if test "$build_libtool_libs" = yes; then if test "$hardcode_into_libs" = yes; then # Hardcode the library paths hardcode_libdirs= dep_rpath= rpath="$finalize_rpath" test "$mode" != relink && rpath="$compile_rpath$rpath" for libdir in $rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" dep_rpath="$dep_rpath $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) perm_rpath="$perm_rpath $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" if test -n "$hardcode_libdir_flag_spec_ld"; then case $archive_cmds in *\$LD*) eval dep_rpath=\"$hardcode_libdir_flag_spec_ld\" ;; *) eval dep_rpath=\"$hardcode_libdir_flag_spec\" ;; esac else eval dep_rpath=\"$hardcode_libdir_flag_spec\" fi fi if test -n "$runpath_var" && test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do rpath="$rpath$dir:" done eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" fi test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" fi shlibpath="$finalize_shlibpath" test "$mode" != relink && shlibpath="$compile_shlibpath$shlibpath" if test -n "$shlibpath"; then eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" fi # Get the real and link names of the library. eval shared_ext=\"$shrext_cmds\" eval library_names=\"$library_names_spec\" set dummy $library_names realname="$2" shift; shift if test -n "$soname_spec"; then eval soname=\"$soname_spec\" else soname="$realname" fi if test -z "$dlname"; then dlname=$soname fi lib="$output_objdir/$realname" linknames= for link do linknames="$linknames $link" done # Use standard objects if they are pic test -z "$pic_flag" && libobjs=`$echo "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` # Prepare the list of exported symbols if test -z "$export_symbols"; then if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then $show "generating symbol list for \`$libname.la'" export_symbols="$output_objdir/$libname.exp" $run $rm $export_symbols cmds=$export_symbols_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" if len=`expr "X$cmd" : ".*"` && test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then $show "$cmd" $run eval "$cmd" || exit $? skipped_export=false else # The command line is too long to execute in one step. $show "using reloadable object file for export list..." skipped_export=: # Break out early, otherwise skipped_export may be # set to false by a later but shorter cmd. break fi done IFS="$save_ifs" if test -n "$export_symbols_regex"; then $show "$EGREP -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\"" $run eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' $show "$mv \"${export_symbols}T\" \"$export_symbols\"" $run eval '$mv "${export_symbols}T" "$export_symbols"' fi fi fi if test -n "$export_symbols" && test -n "$include_expsyms"; then $run eval '$echo "X$include_expsyms" | $SP2NL >> "$export_symbols"' fi tmp_deplibs= for test_deplib in $deplibs; do case " $convenience " in *" $test_deplib "*) ;; *) tmp_deplibs="$tmp_deplibs $test_deplib" ;; esac done deplibs="$tmp_deplibs" if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then save_libobjs=$libobjs eval libobjs=\"\$libobjs $whole_archive_flag_spec\" else gentop="$output_objdir/${outputname}x" generated="$generated $gentop" func_extract_archives $gentop $convenience libobjs="$libobjs $func_extract_archives_result" fi fi if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" linker_flags="$linker_flags $flag" fi # Make a backup of the uninstalled library when relinking if test "$mode" = relink; then $run eval '(cd $output_objdir && $rm ${realname}U && $mv $realname ${realname}U)' || exit $? fi # Do each of the archive commands. if test "$module" = yes && test -n "$module_cmds" ; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then eval test_cmds=\"$module_expsym_cmds\" cmds=$module_expsym_cmds else eval test_cmds=\"$module_cmds\" cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then eval test_cmds=\"$archive_expsym_cmds\" cmds=$archive_expsym_cmds else eval test_cmds=\"$archive_cmds\" cmds=$archive_cmds fi fi if test "X$skipped_export" != "X:" && len=`expr "X$test_cmds" : ".*" 2>/dev/null` && test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then : else # The command line is too long to link in one step, link piecewise. $echo "creating reloadable object files..." # Save the value of $output and $libobjs because we want to # use them later. If we have whole_archive_flag_spec, we # want to use save_libobjs as it was before # whole_archive_flag_spec was expanded, because we can't # assume the linker understands whole_archive_flag_spec. # This may have to be revisited, in case too many # convenience libraries get linked in and end up exceeding # the spec. if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then save_libobjs=$libobjs fi save_output=$output output_la=`$echo "X$output" | $Xsed -e "$basename"` # Clear the reloadable object creation command queue and # initialize k to one. test_cmds= concat_cmds= objlist= delfiles= last_robj= k=1 output=$output_objdir/$output_la-${k}.$objext # Loop over the list of objects to be linked. for obj in $save_libobjs do eval test_cmds=\"$reload_cmds $objlist $last_robj\" if test "X$objlist" = X || { len=`expr "X$test_cmds" : ".*" 2>/dev/null` && test "$len" -le "$max_cmd_len"; }; then objlist="$objlist $obj" else # The command $test_cmds is almost too long, add a # command to the queue. if test "$k" -eq 1 ; then # The first file doesn't have a previous command to add. eval concat_cmds=\"$reload_cmds $objlist $last_robj\" else # All subsequent reloadable object files will link in # the last one created. eval concat_cmds=\"\$concat_cmds~$reload_cmds $objlist $last_robj\" fi last_robj=$output_objdir/$output_la-${k}.$objext k=`expr $k + 1` output=$output_objdir/$output_la-${k}.$objext objlist=$obj len=1 fi done # Handle the remaining objects by creating one last # reloadable object file. All subsequent reloadable object # files will link in the last one created. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\${concat_cmds}$reload_cmds $objlist $last_robj\" if ${skipped_export-false}; then $show "generating symbol list for \`$libname.la'" export_symbols="$output_objdir/$libname.exp" $run $rm $export_symbols libobjs=$output # Append the command to create the export file. eval concat_cmds=\"\$concat_cmds~$export_symbols_cmds\" fi # Set up a command to remove the reloadable object files # after they are used. i=0 while test "$i" -lt "$k" do i=`expr $i + 1` delfiles="$delfiles $output_objdir/$output_la-${i}.$objext" done $echo "creating a temporary reloadable object file: $output" # Loop through the commands generated above and execute them. save_ifs="$IFS"; IFS='~' for cmd in $concat_cmds; do IFS="$save_ifs" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" libobjs=$output # Restore the value of output. output=$save_output if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then eval libobjs=\"\$libobjs $whole_archive_flag_spec\" fi # Expand the library linking commands again to reset the # value of $libobjs for piecewise linking. # Do each of the archive commands. if test "$module" = yes && test -n "$module_cmds" ; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then cmds=$module_expsym_cmds else cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then cmds=$archive_expsym_cmds else cmds=$archive_cmds fi fi # Append the command to remove the reloadable object files # to the just-reset $cmds. eval cmds=\"\$cmds~\$rm $delfiles\" fi save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test "$mode" = relink; then $run eval '(cd $output_objdir && $rm ${realname}T && $mv ${realname}U $realname)' fi exit $lt_exit } done IFS="$save_ifs" # Restore the uninstalled library and exit if test "$mode" = relink; then $run eval '(cd $output_objdir && $rm ${realname}T && $mv $realname ${realname}T && $mv "$realname"U $realname)' || exit $? if test -n "$convenience"; then if test -z "$whole_archive_flag_spec"; then $show "${rm}r $gentop" $run ${rm}r "$gentop" fi fi exit $EXIT_SUCCESS fi # Create links to the real library. for linkname in $linknames; do if test "$realname" != "$linkname"; then $show "(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)" $run eval '(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)' || exit $? fi done # If -module or -export-dynamic was specified, set the dlname. if test "$module" = yes || test "$export_dynamic" = yes; then # On all known operating systems, these are identical. dlname="$soname" fi fi ;; obj) case " $deplibs" in *\ -l* | *\ -L*) $echo "$modename: warning: \`-l' and \`-L' are ignored for objects" 1>&2 ;; esac if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then $echo "$modename: warning: \`-dlopen' is ignored for objects" 1>&2 fi if test -n "$rpath"; then $echo "$modename: warning: \`-rpath' is ignored for objects" 1>&2 fi if test -n "$xrpath"; then $echo "$modename: warning: \`-R' is ignored for objects" 1>&2 fi if test -n "$vinfo"; then $echo "$modename: warning: \`-version-info' is ignored for objects" 1>&2 fi if test -n "$release"; then $echo "$modename: warning: \`-release' is ignored for objects" 1>&2 fi case $output in *.lo) if test -n "$objs$old_deplibs"; then $echo "$modename: cannot build library object \`$output' from non-libtool objects" 1>&2 exit $EXIT_FAILURE fi libobj="$output" obj=`$echo "X$output" | $Xsed -e "$lo2o"` ;; *) libobj= obj="$output" ;; esac # Delete the old objects. $run $rm $obj $libobj # Objects from convenience libraries. This assumes # single-version convenience libraries. Whenever we create # different ones for PIC/non-PIC, this we'll have to duplicate # the extraction. reload_conv_objs= gentop= # reload_cmds runs $LD directly, so let us get rid of # -Wl from whole_archive_flag_spec and hope we can get by with # turning comma into space.. wl= if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" reload_conv_objs=$reload_objs\ `$echo "X$tmp_whole_archive_flags" | $Xsed -e 's|,| |g'` else gentop="$output_objdir/${obj}x" generated="$generated $gentop" func_extract_archives $gentop $convenience reload_conv_objs="$reload_objs $func_extract_archives_result" fi fi # Create the old-style object. reload_objs="$objs$old_deplibs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test output="$obj" cmds=$reload_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" # Exit if we aren't doing a library object file. if test -z "$libobj"; then if test -n "$gentop"; then $show "${rm}r $gentop" $run ${rm}r $gentop fi exit $EXIT_SUCCESS fi if test "$build_libtool_libs" != yes; then if test -n "$gentop"; then $show "${rm}r $gentop" $run ${rm}r $gentop fi # Create an invalid libtool object if no PIC, so that we don't # accidentally link it into a program. # $show "echo timestamp > $libobj" # $run eval "echo timestamp > $libobj" || exit $? exit $EXIT_SUCCESS fi if test -n "$pic_flag" || test "$pic_mode" != default; then # Only do commands if we really have different PIC objects. reload_objs="$libobjs $reload_conv_objs" output="$libobj" cmds=$reload_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" fi if test -n "$gentop"; then $show "${rm}r $gentop" $run ${rm}r $gentop fi exit $EXIT_SUCCESS ;; prog) case $host in *cygwin*) output=`$echo $output | ${SED} -e 's,.exe$,,;s,$,.exe,'` ;; esac if test -n "$vinfo"; then $echo "$modename: warning: \`-version-info' is ignored for programs" 1>&2 fi if test -n "$release"; then $echo "$modename: warning: \`-release' is ignored for programs" 1>&2 fi if test "$preload" = yes; then if test "$dlopen_support" = unknown && test "$dlopen_self" = unknown && test "$dlopen_self_static" = unknown; then $echo "$modename: warning: \`AC_LIBTOOL_DLOPEN' not used. Assuming no dlopen support." fi fi case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework compile_deplibs=`$echo "X $compile_deplibs" | $Xsed -e 's/ -lc / -framework System /'` finalize_deplibs=`$echo "X $finalize_deplibs" | $Xsed -e 's/ -lc / -framework System /'` ;; esac case $host in *darwin*) # Don't allow lazy linking, it breaks C++ global constructors if test "$tagname" = CXX ; then compile_command="$compile_command ${wl}-bind_at_load" finalize_command="$finalize_command ${wl}-bind_at_load" fi ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $compile_deplibs " in *" -L$path/$objdir "*) new_libs="$new_libs -L$path/$objdir" ;; esac ;; esac done for deplib in $compile_deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$new_libs $deplib" ;; esac ;; *) new_libs="$new_libs $deplib" ;; esac done compile_deplibs="$new_libs" compile_command="$compile_command $compile_deplibs" finalize_command="$finalize_command $finalize_deplibs" if test -n "$rpath$xrpath"; then # If the user specified any rpath flags, then add them. for libdir in $rpath $xrpath; do # This is the magic to use -rpath. case "$finalize_rpath " in *" $libdir "*) ;; *) finalize_rpath="$finalize_rpath $libdir" ;; esac done fi # Now hardcode the library paths rpath= hardcode_libdirs= for libdir in $compile_rpath $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" rpath="$rpath $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) perm_rpath="$perm_rpath $libdir" ;; esac fi case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*) testbindir=`$echo "X$libdir" | $Xsed -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$libdir:"*) ;; *) dllsearchpath="$dllsearchpath:$libdir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; *) dllsearchpath="$dllsearchpath:$testbindir";; esac ;; esac done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval rpath=\" $hardcode_libdir_flag_spec\" fi compile_rpath="$rpath" rpath= hardcode_libdirs= for libdir in $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" rpath="$rpath $flag" fi elif test -n "$runpath_var"; then case "$finalize_perm_rpath " in *" $libdir "*) ;; *) finalize_perm_rpath="$finalize_perm_rpath $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval rpath=\" $hardcode_libdir_flag_spec\" fi finalize_rpath="$rpath" if test -n "$libobjs" && test "$build_old_libs" = yes; then # Transform all the library objects into standard objects. compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` fi dlsyms= if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then if test -n "$NM" && test -n "$global_symbol_pipe"; then dlsyms="${outputname}S.c" else $echo "$modename: not configured to extract global symbols from dlpreopened files" 1>&2 fi fi if test -n "$dlsyms"; then case $dlsyms in "") ;; *.c) # Discover the nlist of each of the dlfiles. nlist="$output_objdir/${outputname}.nm" $show "$rm $nlist ${nlist}S ${nlist}T" $run $rm "$nlist" "${nlist}S" "${nlist}T" # Parse the name list into a source file. $show "creating $output_objdir/$dlsyms" test -z "$run" && $echo > "$output_objdir/$dlsyms" "\ /* $dlsyms - symbol resolution table for \`$outputname' dlsym emulation. */ /* Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP */ #ifdef __cplusplus extern \"C\" { #endif /* Prevent the only kind of declaration conflicts we can make. */ #define lt_preloaded_symbols some_other_symbol /* External symbol declarations for the compiler. */\ " if test "$dlself" = yes; then $show "generating symbol list for \`$output'" test -z "$run" && $echo ': @PROGRAM@ ' > "$nlist" # Add our own program objects to the symbol list. progfiles=`$echo "X$objs$old_deplibs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` for arg in $progfiles; do $show "extracting global C symbols from \`$arg'" $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'" done if test -n "$exclude_expsyms"; then $run eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' $run eval '$mv "$nlist"T "$nlist"' fi if test -n "$export_symbols_regex"; then $run eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' $run eval '$mv "$nlist"T "$nlist"' fi # Prepare the list of exported symbols if test -z "$export_symbols"; then export_symbols="$output_objdir/$outputname.exp" $run $rm $export_symbols $run eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' case $host in *cygwin* | *mingw* ) $run eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' $run eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' ;; esac else $run eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' $run eval 'grep -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' $run eval 'mv "$nlist"T "$nlist"' case $host in *cygwin* | *mingw* ) $run eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' $run eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' ;; esac fi fi for arg in $dlprefiles; do $show "extracting global C symbols from \`$arg'" name=`$echo "$arg" | ${SED} -e 's%^.*/%%'` $run eval '$echo ": $name " >> "$nlist"' $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'" done if test -z "$run"; then # Make sure we have at least an empty file. test -f "$nlist" || : > "$nlist" if test -n "$exclude_expsyms"; then $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T $mv "$nlist"T "$nlist" fi # Try sorting and uniquifying the output. if grep -v "^: " < "$nlist" | if sort -k 3 /dev/null 2>&1; then sort -k 3 else sort +2 fi | uniq > "$nlist"S; then : else grep -v "^: " < "$nlist" > "$nlist"S fi if test -f "$nlist"S; then eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$dlsyms"' else $echo '/* NONE */' >> "$output_objdir/$dlsyms" fi $echo >> "$output_objdir/$dlsyms" "\ #undef lt_preloaded_symbols #if defined (__STDC__) && __STDC__ # define lt_ptr void * #else # define lt_ptr char * # define const #endif /* The mapping between symbol names and symbols. */ " case $host in *cygwin* | *mingw* ) $echo >> "$output_objdir/$dlsyms" "\ /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs */ struct { " ;; * ) $echo >> "$output_objdir/$dlsyms" "\ const struct { " ;; esac $echo >> "$output_objdir/$dlsyms" "\ const char *name; lt_ptr address; } lt_preloaded_symbols[] = {\ " eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$dlsyms" $echo >> "$output_objdir/$dlsyms" "\ {0, (lt_ptr) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt_preloaded_symbols; } #endif #ifdef __cplusplus } #endif\ " fi pic_flag_for_symtable= case $host in # compiling the symbol table file with pic_flag works around # a FreeBSD bug that causes programs to crash when -lm is # linked before any other PIC object. But we must not use # pic_flag when linking with -static. The problem exists in # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) case "$compile_command " in *" -static "*) ;; *) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND";; esac;; *-*-hpux*) case "$compile_command " in *" -static "*) ;; *) pic_flag_for_symtable=" $pic_flag";; esac esac # Now compile the dynamic symbol file. $show "(cd $output_objdir && $LTCC $LTCFLAGS -c$no_builtin_flag$pic_flag_for_symtable \"$dlsyms\")" $run eval '(cd $output_objdir && $LTCC $LTCFLAGS -c$no_builtin_flag$pic_flag_for_symtable "$dlsyms")' || exit $? # Clean up the generated files. $show "$rm $output_objdir/$dlsyms $nlist ${nlist}S ${nlist}T" $run $rm "$output_objdir/$dlsyms" "$nlist" "${nlist}S" "${nlist}T" # Transform the symbol file into the correct name. case $host in *cygwin* | *mingw* ) if test -f "$output_objdir/${outputname}.def" ; then compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}.def $output_objdir/${outputname}S.${objext}%" | $NL2SP` finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}.def $output_objdir/${outputname}S.${objext}%" | $NL2SP` else compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%" | $NL2SP` finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%" | $NL2SP` fi ;; * ) compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%" | $NL2SP` finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%" | $NL2SP` ;; esac ;; *) $echo "$modename: unknown suffix for \`$dlsyms'" 1>&2 exit $EXIT_FAILURE ;; esac else # We keep going just in case the user didn't refer to # lt_preloaded_symbols. The linker will fail if global_symbol_pipe # really was required. # Nullify the symbol file. compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "s% @SYMFILE@%%" | $NL2SP` finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "s% @SYMFILE@%%" | $NL2SP` fi if test "$need_relink" = no || test "$build_libtool_libs" != yes; then # Replace the output file specification. compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e 's%@OUTPUT@%'"$output"'%g' | $NL2SP` link_command="$compile_command$compile_rpath" # We have no uninstalled library dependencies, so finalize right now. $show "$link_command" $run eval "$link_command" exit_status=$? # Delete the generated files. if test -n "$dlsyms"; then $show "$rm $output_objdir/${outputname}S.${objext}" $run $rm "$output_objdir/${outputname}S.${objext}" fi exit $exit_status fi if test -n "$shlibpath_var"; then # We should set the shlibpath_var rpath= for dir in $temp_rpath; do case $dir in [\\/]* | [A-Za-z]:[\\/]*) # Absolute path. rpath="$rpath$dir:" ;; *) # Relative path: add a thisdir entry. rpath="$rpath\$thisdir/$dir:" ;; esac done temp_rpath="$rpath" fi if test -n "$compile_shlibpath$finalize_shlibpath"; then compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" fi if test -n "$finalize_shlibpath"; then finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" fi compile_var= finalize_var= if test -n "$runpath_var"; then if test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do rpath="$rpath$dir:" done compile_var="$runpath_var=\"$rpath\$$runpath_var\" " fi if test -n "$finalize_perm_rpath"; then # We should set the runpath_var. rpath= for dir in $finalize_perm_rpath; do rpath="$rpath$dir:" done finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " fi fi if test "$no_install" = yes; then # We don't need to create a wrapper script. link_command="$compile_var$compile_command$compile_rpath" # Replace the output file specification. link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'` # Delete the old output file. $run $rm $output # Link the executable and exit $show "$link_command" $run eval "$link_command" || exit $? exit $EXIT_SUCCESS fi if test "$hardcode_action" = relink; then # Fast installation is not supported link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" $echo "$modename: warning: this platform does not like uninstalled shared libraries" 1>&2 $echo "$modename: \`$output' will be relinked during installation" 1>&2 else if test "$fast_install" != no; then link_command="$finalize_var$compile_command$finalize_rpath" if test "$fast_install" = yes; then relink_command=`$echo "X$compile_var$compile_command$compile_rpath" | $SP2NL | $Xsed -e 's%@OUTPUT@%\$progdir/\$file%g' | $NL2SP` else # fast_install is set to needless relink_command= fi else link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" fi fi # Replace the output file specification. link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` # Delete the old output files. $run $rm $output $output_objdir/$outputname $output_objdir/lt-$outputname $show "$link_command" $run eval "$link_command" || exit $? # Now create the wrapper script. $show "creating $output" # Quote the relink command for shipping. if test -n "$relink_command"; then # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"` relink_command="$var=\"$var_value\"; export $var; $relink_command" fi done relink_command="(cd `pwd`; $relink_command)" relink_command=`$echo "X$relink_command" | $SP2NL | $Xsed -e "$sed_quote_subst" | $NL2SP` fi # Quote $echo for shipping. if test "X$echo" = "X$SHELL $progpath --fallback-echo"; then case $progpath in [\\/]* | [A-Za-z]:[\\/]*) qecho="$SHELL $progpath --fallback-echo";; *) qecho="$SHELL `pwd`/$progpath --fallback-echo";; esac qecho=`$echo "X$qecho" | $Xsed -e "$sed_quote_subst"` else qecho=`$echo "X$echo" | $Xsed -e "$sed_quote_subst"` fi # Only actually do things if our run command is non-null. if test -z "$run"; then # win32 will think the script is a binary if it has # a .exe suffix, so we strip it off here. case $output in *.exe) output=`$echo $output|${SED} 's,.exe$,,'` ;; esac # test for cygwin because mv fails w/o .exe extensions case $host in *cygwin*) exeext=.exe outputname=`$echo $outputname|${SED} 's,.exe$,,'` ;; *) exeext= ;; esac case $host in *cygwin* | *mingw* ) output_name=`basename $output` output_path=`dirname $output` cwrappersource="$output_path/$objdir/lt-$output_name.c" cwrapper="$output_path/$output_name.exe" $rm $cwrappersource $cwrapper trap "$rm $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 cat > $cwrappersource <> $cwrappersource<<"EOF" #include #include #include #include #include #include #include #include #include #if defined(PATH_MAX) # define LT_PATHMAX PATH_MAX #elif defined(MAXPATHLEN) # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 #endif #ifndef DIR_SEPARATOR # define DIR_SEPARATOR '/' # define PATH_SEPARATOR ':' #endif #if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ defined (__OS2__) # define HAVE_DOS_BASED_FILE_SYSTEM # ifndef DIR_SEPARATOR_2 # define DIR_SEPARATOR_2 '\\' # endif # ifndef PATH_SEPARATOR_2 # define PATH_SEPARATOR_2 ';' # endif #endif #ifndef DIR_SEPARATOR_2 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) #else /* DIR_SEPARATOR_2 */ # define IS_DIR_SEPARATOR(ch) \ (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) #endif /* DIR_SEPARATOR_2 */ #ifndef PATH_SEPARATOR_2 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) #else /* PATH_SEPARATOR_2 */ # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) #endif /* PATH_SEPARATOR_2 */ #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ if (stale) { free ((void *) stale); stale = 0; } \ } while (0) /* -DDEBUG is fairly common in CFLAGS. */ #undef DEBUG #if defined DEBUGWRAPPER # define DEBUG(format, ...) fprintf(stderr, format, __VA_ARGS__) #else # define DEBUG(format, ...) #endif const char *program_name = NULL; void * xmalloc (size_t num); char * xstrdup (const char *string); const char * base_name (const char *name); char * find_executable(const char *wrapper); int check_executable(const char *path); char * strendzap(char *str, const char *pat); void lt_fatal (const char *message, ...); int main (int argc, char *argv[]) { char **newargz; int i; program_name = (char *) xstrdup (base_name (argv[0])); DEBUG("(main) argv[0] : %s\n",argv[0]); DEBUG("(main) program_name : %s\n",program_name); newargz = XMALLOC(char *, argc+2); EOF cat >> $cwrappersource <> $cwrappersource <<"EOF" newargz[1] = find_executable(argv[0]); if (newargz[1] == NULL) lt_fatal("Couldn't find %s", argv[0]); DEBUG("(main) found exe at : %s\n",newargz[1]); /* we know the script has the same name, without the .exe */ /* so make sure newargz[1] doesn't end in .exe */ strendzap(newargz[1],".exe"); for (i = 1; i < argc; i++) newargz[i+1] = xstrdup(argv[i]); newargz[argc+1] = NULL; for (i=0; i> $cwrappersource <> $cwrappersource <> $cwrappersource <<"EOF" return 127; } void * xmalloc (size_t num) { void * p = (void *) malloc (num); if (!p) lt_fatal ("Memory exhausted"); return p; } char * xstrdup (const char *string) { return string ? strcpy ((char *) xmalloc (strlen (string) + 1), string) : NULL ; } const char * base_name (const char *name) { const char *base; #if defined (HAVE_DOS_BASED_FILE_SYSTEM) /* Skip over the disk name in MSDOS pathnames. */ if (isalpha ((unsigned char)name[0]) && name[1] == ':') name += 2; #endif for (base = name; *name; name++) if (IS_DIR_SEPARATOR (*name)) base = name + 1; return base; } int check_executable(const char * path) { struct stat st; DEBUG("(check_executable) : %s\n", path ? (*path ? path : "EMPTY!") : "NULL!"); if ((!path) || (!*path)) return 0; if ((stat (path, &st) >= 0) && ( /* MinGW & native WIN32 do not support S_IXOTH or S_IXGRP */ #if defined (S_IXOTH) ((st.st_mode & S_IXOTH) == S_IXOTH) || #endif #if defined (S_IXGRP) ((st.st_mode & S_IXGRP) == S_IXGRP) || #endif ((st.st_mode & S_IXUSR) == S_IXUSR)) ) return 1; else return 0; } /* Searches for the full path of the wrapper. Returns newly allocated full path name if found, NULL otherwise */ char * find_executable (const char* wrapper) { int has_slash = 0; const char* p; const char* p_next; /* static buffer for getcwd */ char tmp[LT_PATHMAX + 1]; int tmp_len; char* concat_name; DEBUG("(find_executable) : %s\n", wrapper ? (*wrapper ? wrapper : "EMPTY!") : "NULL!"); if ((wrapper == NULL) || (*wrapper == '\0')) return NULL; /* Absolute path? */ #if defined (HAVE_DOS_BASED_FILE_SYSTEM) if (isalpha ((unsigned char)wrapper[0]) && wrapper[1] == ':') { concat_name = xstrdup (wrapper); if (check_executable(concat_name)) return concat_name; XFREE(concat_name); } else { #endif if (IS_DIR_SEPARATOR (wrapper[0])) { concat_name = xstrdup (wrapper); if (check_executable(concat_name)) return concat_name; XFREE(concat_name); } #if defined (HAVE_DOS_BASED_FILE_SYSTEM) } #endif for (p = wrapper; *p; p++) if (*p == '/') { has_slash = 1; break; } if (!has_slash) { /* no slashes; search PATH */ const char* path = getenv ("PATH"); if (path != NULL) { for (p = path; *p; p = p_next) { const char* q; size_t p_len; for (q = p; *q; q++) if (IS_PATH_SEPARATOR(*q)) break; p_len = q - p; p_next = (*q == '\0' ? q : q + 1); if (p_len == 0) { /* empty path: current directory */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal ("getcwd failed"); tmp_len = strlen(tmp); concat_name = XMALLOC(char, tmp_len + 1 + strlen(wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); } else { concat_name = XMALLOC(char, p_len + 1 + strlen(wrapper) + 1); memcpy (concat_name, p, p_len); concat_name[p_len] = '/'; strcpy (concat_name + p_len + 1, wrapper); } if (check_executable(concat_name)) return concat_name; XFREE(concat_name); } } /* not found in PATH; assume curdir */ } /* Relative path | not found in path: prepend cwd */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal ("getcwd failed"); tmp_len = strlen(tmp); concat_name = XMALLOC(char, tmp_len + 1 + strlen(wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); if (check_executable(concat_name)) return concat_name; XFREE(concat_name); return NULL; } char * strendzap(char *str, const char *pat) { size_t len, patlen; assert(str != NULL); assert(pat != NULL); len = strlen(str); patlen = strlen(pat); if (patlen <= len) { str += len - patlen; if (strcmp(str, pat) == 0) *str = '\0'; } return str; } static void lt_error_core (int exit_status, const char * mode, const char * message, va_list ap) { fprintf (stderr, "%s: %s: ", program_name, mode); vfprintf (stderr, message, ap); fprintf (stderr, ".\n"); if (exit_status >= 0) exit (exit_status); } void lt_fatal (const char *message, ...) { va_list ap; va_start (ap, message); lt_error_core (EXIT_FAILURE, "FATAL", message, ap); va_end (ap); } EOF # we should really use a build-platform specific compiler # here, but OTOH, the wrappers (shell script and this C one) # are only useful if you want to execute the "real" binary. # Since the "real" binary is built for $host, then this # wrapper might as well be built for $host, too. $run $LTCC $LTCFLAGS -s -o $cwrapper $cwrappersource ;; esac $rm $output trap "$rm $output; exit $EXIT_FAILURE" 1 2 15 $echo > $output "\ #! $SHELL # $output - temporary wrapper script for $objdir/$outputname # Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='${SED} -e 1s/^X//' sed_quote_subst='$sed_quote_subst' # Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs 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 BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command=\"$relink_command\" # This environment variable determines our operation mode. if test \"\$libtool_install_magic\" = \"$magic\"; then # install mode needs the following variable: notinst_deplibs='$notinst_deplibs' else # When we are sourced in execute mode, \$file and \$echo are already set. if test \"\$libtool_execute_magic\" != \"$magic\"; then echo=\"$qecho\" file=\"\$0\" # Make sure echo works. if test \"X\$1\" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test \"X\`(\$echo '\t') 2>/dev/null\`\" = 'X\t'; then # Yippee, \$echo works! : else # Restart under the correct shell, and then maybe \$echo will work. exec $SHELL \"\$0\" --no-reexec \${1+\"\$@\"} fi fi\ " $echo >> $output "\ # Find the directory that this script lives in. thisdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\` test \"x\$thisdir\" = \"x\$file\" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=\`ls -ld \"\$file\" | ${SED} -n 's/.*-> //p'\` while test -n \"\$file\"; do destdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\` # If there was a directory component, then change thisdir. if test \"x\$destdir\" != \"x\$file\"; then case \"\$destdir\" in [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; *) thisdir=\"\$thisdir/\$destdir\" ;; esac fi file=\`\$echo \"X\$file\" | \$Xsed -e 's%^.*/%%'\` file=\`ls -ld \"\$thisdir/\$file\" | ${SED} -n 's/.*-> //p'\` done # Try to get the absolute directory name. absdir=\`cd \"\$thisdir\" && pwd\` test -n \"\$absdir\" && thisdir=\"\$absdir\" " if test "$fast_install" = yes; then $echo >> $output "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || \\ { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" if test ! -d \"\$progdir\"; then $mkdir \"\$progdir\" else $rm \"\$progdir/\$file\" fi" $echo >> $output "\ # relink executable if necessary if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else $echo \"\$relink_command_output\" >&2 $rm \"\$progdir/\$file\" exit $EXIT_FAILURE fi fi $mv \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || { $rm \"\$progdir/\$program\"; $mv \"\$progdir/\$file\" \"\$progdir/\$program\"; } $rm \"\$progdir/\$file\" fi" else $echo >> $output "\ program='$outputname' progdir=\"\$thisdir/$objdir\" " fi $echo >> $output "\ if test -f \"\$progdir/\$program\"; then" # Export our shlibpath_var if we have one. if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $echo >> $output "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" # Some systems cannot cope with colon-terminated $shlibpath_var # The second colon is a workaround for a bug in BeOS R4 sed $shlibpath_var=\`\$echo \"X\$$shlibpath_var\" | \$Xsed -e 's/::*\$//'\` export $shlibpath_var " fi # fixup the dll searchpath if we need to. if test -n "$dllsearchpath"; then $echo >> $output "\ # Add the dll search path components to the executable PATH PATH=$dllsearchpath:\$PATH " fi $echo >> $output "\ if test \"\$libtool_execute_magic\" != \"$magic\"; then # Run the actual program with our arguments. " case $host in # Backslashes separate directories on plain windows *-*-mingw | *-*-os2*) $echo >> $output "\ exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} " ;; *) $echo >> $output "\ exec \"\$progdir/\$program\" \${1+\"\$@\"} " ;; esac $echo >> $output "\ \$echo \"\$0: cannot exec \$program \$*\" exit $EXIT_FAILURE fi else # The program doesn't exist. \$echo \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 \$echo \"This script is just a wrapper for \$program.\" 1>&2 $echo \"See the $PACKAGE documentation for more information.\" 1>&2 exit $EXIT_FAILURE fi fi\ " chmod +x $output fi exit $EXIT_SUCCESS ;; esac # See if we need to build an old-fashioned archive. for oldlib in $oldlibs; do if test "$build_libtool_libs" = convenience; then oldobjs="$libobjs_save" addlibs="$convenience" build_libtool_libs=no else if test "$build_libtool_libs" = module; then oldobjs="$libobjs_save" build_libtool_libs=no else oldobjs="$old_deplibs $non_pic_objects" fi addlibs="$old_convenience" fi if test -n "$addlibs"; then gentop="$output_objdir/${outputname}x" generated="$generated $gentop" func_extract_archives $gentop $addlibs oldobjs="$oldobjs $func_extract_archives_result" fi # Do each command in the archive commands. if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then cmds=$old_archive_from_new_cmds else # POSIX demands no paths to be encoded in archives. We have # to avoid creating archives with duplicate basenames if we # might have to extract them afterwards, e.g., when creating a # static archive out of a convenience library, or when linking # the entirety of a libtool archive into another (currently # not supported by libtool). if (for obj in $oldobjs do $echo "X$obj" | $Xsed -e 's%^.*/%%' done | sort | sort -uc >/dev/null 2>&1); then : else $echo "copying selected object files to avoid basename conflicts..." if test -z "$gentop"; then gentop="$output_objdir/${outputname}x" generated="$generated $gentop" $show "${rm}r $gentop" $run ${rm}r "$gentop" $show "$mkdir $gentop" $run $mkdir "$gentop" exit_status=$? if test "$exit_status" -ne 0 && test ! -d "$gentop"; then exit $exit_status fi fi save_oldobjs=$oldobjs oldobjs= counter=1 for obj in $save_oldobjs do objbase=`$echo "X$obj" | $Xsed -e 's%^.*/%%'` case " $oldobjs " in " ") oldobjs=$obj ;; *[\ /]"$objbase "*) while :; do # Make sure we don't pick an alternate name that also # overlaps. newobj=lt$counter-$objbase counter=`expr $counter + 1` case " $oldobjs " in *[\ /]"$newobj "*) ;; *) if test ! -f "$gentop/$newobj"; then break; fi ;; esac done $show "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" $run ln "$obj" "$gentop/$newobj" || $run cp "$obj" "$gentop/$newobj" oldobjs="$oldobjs $gentop/$newobj" ;; *) oldobjs="$oldobjs $obj" ;; esac done fi eval cmds=\"$old_archive_cmds\" if len=`expr "X$cmds" : ".*"` && test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then cmds=$old_archive_cmds else # the command line is too long to link in one step, link in parts $echo "using piecewise archive linking..." save_RANLIB=$RANLIB RANLIB=: objlist= concat_cmds= save_oldobjs=$oldobjs # Is there a better way of finding the last object in the list? for obj in $save_oldobjs do last_oldobj=$obj done for obj in $save_oldobjs do oldobjs="$objlist $obj" objlist="$objlist $obj" eval test_cmds=\"$old_archive_cmds\" if len=`expr "X$test_cmds" : ".*" 2>/dev/null` && test "$len" -le "$max_cmd_len"; then : else # the above command should be used before it gets too long oldobjs=$objlist if test "$obj" = "$last_oldobj" ; then RANLIB=$save_RANLIB fi test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" objlist= fi done RANLIB=$save_RANLIB oldobjs=$objlist if test "X$oldobjs" = "X" ; then eval cmds=\"\$concat_cmds\" else eval cmds=\"\$concat_cmds~\$old_archive_cmds\" fi fi fi save_ifs="$IFS"; IFS='~' for cmd in $cmds; do eval cmd=\"$cmd\" IFS="$save_ifs" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" done if test -n "$generated"; then $show "${rm}r$generated" $run ${rm}r$generated fi # Now create the libtool archive. case $output in *.la) old_library= test "$build_old_libs" = yes && old_library="$libname.$libext" $show "creating $output" # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"` relink_command="$var=\"$var_value\"; export $var; $relink_command" fi done # Quote the link command for shipping. relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" relink_command=`$echo "X$relink_command" | $SP2NL | $Xsed -e "$sed_quote_subst" | $NL2SP` if test "$hardcode_automatic" = yes ; then relink_command= fi # Only create the output if not a dry run. if test -z "$run"; then for installed in no yes; do if test "$installed" = yes; then if test -z "$install_libdir"; then break fi output="$output_objdir/$outputname"i # Replace all uninstalled libtool libraries with the installed ones newdependency_libs= for deplib in $dependency_libs; do case $deplib in *.la) name=`$echo "X$deplib" | $Xsed -e 's%^.*/%%'` eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` if test -z "$libdir"; then $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2 exit $EXIT_FAILURE fi newdependency_libs="$newdependency_libs $libdir/$name" ;; *) newdependency_libs="$newdependency_libs $deplib" ;; esac done dependency_libs="$newdependency_libs" newdlfiles= for lib in $dlfiles; do name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'` eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` if test -z "$libdir"; then $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 exit $EXIT_FAILURE fi newdlfiles="$newdlfiles $libdir/$name" done dlfiles="$newdlfiles" newdlprefiles= for lib in $dlprefiles; do name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'` eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` if test -z "$libdir"; then $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 exit $EXIT_FAILURE fi newdlprefiles="$newdlprefiles $libdir/$name" done dlprefiles="$newdlprefiles" else newdlfiles= for lib in $dlfiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; *) abs=`pwd`"/$lib" ;; esac newdlfiles="$newdlfiles $abs" done dlfiles="$newdlfiles" newdlprefiles= for lib in $dlprefiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; *) abs=`pwd`"/$lib" ;; esac newdlprefiles="$newdlprefiles $abs" done dlprefiles="$newdlprefiles" fi $rm $output # place dlname in correct position for cygwin tdlname=$dlname case $host,$output,$installed,$module,$dlname in *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll) tdlname=../bin/$dlname ;; esac $echo > $output "\ # $outputname - a libtool library file # Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='$tdlname' # Names of this library. library_names='$library_names' # The name of the static archive. old_library='$old_library' # Libraries that this one depends upon. dependency_libs='$dependency_libs' # Version information for $libname. current=$current age=$age revision=$revision # Is this an already installed library? installed=$installed # Should we warn about portability when linking against -modules? shouldnotlink=$module # Files to dlopen/dlpreopen dlopen='$dlfiles' dlpreopen='$dlprefiles' # Directory that this library needs to be installed in: libdir='$install_libdir'" if test "$installed" = no && test "$need_relink" = yes; then $echo >> $output "\ relink_command=\"$relink_command\"" fi done fi # Do a symbolic link so that the libtool archive can be found in # LD_LIBRARY_PATH before the program is installed. $show "(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)" $run eval '(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)' || exit $? ;; esac exit $EXIT_SUCCESS ;; # libtool install mode install) modename="$modename: install" # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || # Allow the use of GNU shtool's install command. $echo "X$nonopt" | grep shtool > /dev/null; then # Aesthetically quote it. arg=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac install_prog="$arg " arg="$1" shift else install_prog= arg=$nonopt fi # The real first argument should be the name of the installation program. # Aesthetically quote it. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac install_prog="$install_prog$arg" # We need to accept at least all the BSD install flags. dest= files= opts= prev= install_type= isdir=no stripme= for arg do if test -n "$dest"; then files="$files $dest" dest=$arg continue fi case $arg in -d) isdir=yes ;; -f) case " $install_prog " in *[\\\ /]cp\ *) ;; *) prev=$arg ;; esac ;; -g | -m | -o) prev=$arg ;; -s) stripme=" -s" continue ;; -*) ;; *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then prev= else dest=$arg continue fi ;; esac # Aesthetically quote the argument. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` case $arg in *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac install_prog="$install_prog $arg" done if test -z "$install_prog"; then $echo "$modename: you must specify an install program" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi if test -n "$prev"; then $echo "$modename: the \`$prev' option requires an argument" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi if test -z "$files"; then if test -z "$dest"; then $echo "$modename: no file or destination specified" 1>&2 else $echo "$modename: you must specify a destination" 1>&2 fi $echo "$help" 1>&2 exit $EXIT_FAILURE fi # Strip any trailing slash from the destination. dest=`$echo "X$dest" | $Xsed -e 's%/$%%'` # Check to see that the destination is a directory. test -d "$dest" && isdir=yes if test "$isdir" = yes; then destdir="$dest" destname= else destdir=`$echo "X$dest" | $Xsed -e 's%/[^/]*$%%'` test "X$destdir" = "X$dest" && destdir=. destname=`$echo "X$dest" | $Xsed -e 's%^.*/%%'` # Not a directory, so check to see that there is only one file specified. set dummy $files if test "$#" -gt 2; then $echo "$modename: \`$dest' is not a directory" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) for file in $files; do case $file in *.lo) ;; *) $echo "$modename: \`$destdir' must be an absolute directory name" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE ;; esac done ;; esac # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic="$magic" staticlibs= future_libdirs= current_libdirs= for file in $files; do # Do each installation. case $file in *.$libext) # Do the static libraries later. staticlibs="$staticlibs $file" ;; *.la) # Check to see that this really is a libtool archive. if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : else $echo "$modename: \`$file' is not a valid libtool archive" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi library_names= old_library= relink_command= # If there is no directory component, then add one. case $file in */* | *\\*) . $file ;; *) . ./$file ;; esac # Add the libdir to current_libdirs if it is the destination. if test "X$destdir" = "X$libdir"; then case "$current_libdirs " in *" $libdir "*) ;; *) current_libdirs="$current_libdirs $libdir" ;; esac else # Note the libdir as a future libdir. case "$future_libdirs " in *" $libdir "*) ;; *) future_libdirs="$future_libdirs $libdir" ;; esac fi dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`/ test "X$dir" = "X$file/" && dir= dir="$dir$objdir" if test -n "$relink_command"; then # Determine the prefix the user has applied to our future dir. inst_prefix_dir=`$echo "$destdir" | $SED "s%$libdir\$%%"` # Don't allow the user to place us outside of our expected # location b/c this prevents finding dependent libraries that # are installed to the same prefix. # At present, this check doesn't affect windows .dll's that # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. if test "$inst_prefix_dir" = "$destdir"; then $echo "$modename: error: cannot install \`$file' to a directory not ending in $libdir" 1>&2 exit $EXIT_FAILURE fi if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. relink_command=`$echo "$relink_command" | $SP2NL | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%" | $NL2SP` else relink_command=`$echo "$relink_command" | $SP2NL | $SED "s%@inst_prefix_dir@%%" | $NL2SP` fi $echo "$modename: warning: relinking \`$file'" 1>&2 $show "$relink_command" if $run eval "$relink_command"; then : else $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2 exit $EXIT_FAILURE fi fi # See the names of the shared library. set dummy $library_names if test -n "$2"; then realname="$2" shift shift srcname="$realname" test -n "$relink_command" && srcname="$realname"T # Install the shared library and build the symlinks. $show "$install_prog $dir/$srcname $destdir/$realname" $run eval "$install_prog $dir/$srcname $destdir/$realname" || exit $? if test -n "$stripme" && test -n "$striplib"; then $show "$striplib $destdir/$realname" $run eval "$striplib $destdir/$realname" || exit $? fi if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. # Try `ln -sf' first, because the `ln' binary might depend on # the symlink we replace! Solaris /bin/ln does not understand -f, # so we also need to try rm && ln -s. for linkname do if test "$linkname" != "$realname"; then $show "(cd $destdir && { $LN_S -f $realname $linkname || { $rm $linkname && $LN_S $realname $linkname; }; })" $run eval "(cd $destdir && { $LN_S -f $realname $linkname || { $rm $linkname && $LN_S $realname $linkname; }; })" fi done fi # Do each command in the postinstall commands. lib="$destdir/$realname" cmds=$postinstall_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test "$mode" = relink; then $run eval '(cd $output_objdir && $rm ${realname}T && $mv ${realname}U $realname)' fi exit $lt_exit } done IFS="$save_ifs" fi # Install the pseudo-library for information purposes. name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` instname="$dir/$name"i $show "$install_prog $instname $destdir/$name" $run eval "$install_prog $instname $destdir/$name" || exit $? # Maybe install the static library, too. test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" ;; *.lo) # Install (i.e. copy) a libtool object. # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile="$destdir/$destname" else destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'` destfile="$destdir/$destfile" fi # Deduce the name of the destination old-style object file. case $destfile in *.lo) staticdest=`$echo "X$destfile" | $Xsed -e "$lo2o"` ;; *.$objext) staticdest="$destfile" destfile= ;; *) $echo "$modename: cannot copy a libtool object to \`$destfile'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE ;; esac # Install the libtool object if requested. if test -n "$destfile"; then $show "$install_prog $file $destfile" $run eval "$install_prog $file $destfile" || exit $? fi # Install the old object if enabled. if test "$build_old_libs" = yes; then # Deduce the name of the old-style object file. staticobj=`$echo "X$file" | $Xsed -e "$lo2o"` $show "$install_prog $staticobj $staticdest" $run eval "$install_prog \$staticobj \$staticdest" || exit $? fi exit $EXIT_SUCCESS ;; *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile="$destdir/$destname" else destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'` destfile="$destdir/$destfile" fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install stripped_ext="" case $file in *.exe) if test ! -f "$file"; then file=`$echo $file|${SED} 's,.exe$,,'` stripped_ext=".exe" fi ;; esac # Do a test to see if this is really a libtool program. case $host in *cygwin*|*mingw*) wrapper=`$echo $file | ${SED} -e 's,.exe$,,'` ;; *) wrapper=$file ;; esac if (${SED} -e '4q' $wrapper | grep "^# Generated by .*$PACKAGE")>/dev/null 2>&1; then notinst_deplibs= relink_command= # Note that it is not necessary on cygwin/mingw to append a dot to # foo even if both foo and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing # `FILE.' does not work on cygwin managed mounts. # # If there is no directory component, then add one. case $wrapper in */* | *\\*) . ${wrapper} ;; *) . ./${wrapper} ;; esac # Check the variables that should have been set. if test -z "$notinst_deplibs"; then $echo "$modename: invalid libtool wrapper script \`$wrapper'" 1>&2 exit $EXIT_FAILURE fi finalize=yes for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then # If there is no directory component, then add one. case $lib in */* | *\\*) . $lib ;; *) . ./$lib ;; esac fi libfile="$libdir/"`$echo "X$lib" | $Xsed -e 's%^.*/%%g'` ### testsuite: skip nested quoting test if test -n "$libdir" && test ! -f "$libfile"; then $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2 finalize=no fi done relink_command= # Note that it is not necessary on cygwin/mingw to append a dot to # foo even if both foo and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing # `FILE.' does not work on cygwin managed mounts. # # If there is no directory component, then add one. case $wrapper in */* | *\\*) . ${wrapper} ;; *) . ./${wrapper} ;; esac outputname= if test "$fast_install" = no && test -n "$relink_command"; then if test "$finalize" = yes && test -z "$run"; then tmpdir=`func_mktempdir` file=`$echo "X$file$stripped_ext" | $Xsed -e 's%^.*/%%'` outputname="$tmpdir/$file" # Replace the output file specification. relink_command=`$echo "X$relink_command" | $SP2NL | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g' | $NL2SP` $show "$relink_command" if $run eval "$relink_command"; then : else $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2 ${rm}r "$tmpdir" continue fi file="$outputname" else $echo "$modename: warning: cannot relink \`$file'" 1>&2 fi else # Install the binary that we compiled earlier. file=`$echo "X$file$stripped_ext" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"` fi fi # remove .exe since cygwin /usr/bin/install will append another # one anyway case $install_prog,$host in */usr/bin/install*,*cygwin*) case $file:$destfile in *.exe:*.exe) # this is ok ;; *.exe:*) destfile=$destfile.exe ;; *:*.exe) destfile=`$echo $destfile | ${SED} -e 's,.exe$,,'` ;; esac ;; esac $show "$install_prog$stripme $file $destfile" $run eval "$install_prog\$stripme \$file \$destfile" || exit $? test -n "$outputname" && ${rm}r "$tmpdir" ;; esac done for file in $staticlibs; do name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` # Set up the ranlib parameters. oldlib="$destdir/$name" $show "$install_prog $file $oldlib" $run eval "$install_prog \$file \$oldlib" || exit $? if test -n "$stripme" && test -n "$old_striplib"; then $show "$old_striplib $oldlib" $run eval "$old_striplib $oldlib" || exit $? fi # Do each command in the postinstall commands. cmds=$old_postinstall_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || exit $? done IFS="$save_ifs" done if test -n "$future_libdirs"; then $echo "$modename: warning: remember to run \`$progname --finish$future_libdirs'" 1>&2 fi if test -n "$current_libdirs"; then # Maybe just do a dry run. test -n "$run" && current_libdirs=" -n$current_libdirs" exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' else exit $EXIT_SUCCESS fi ;; # libtool finish mode finish) modename="$modename: finish" libdirs="$nonopt" admincmds= if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then for dir do libdirs="$libdirs $dir" done for libdir in $libdirs; do if test -n "$finish_cmds"; then # Do each command in the finish commands. cmds=$finish_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" || admincmds="$admincmds $cmd" done IFS="$save_ifs" fi if test -n "$finish_eval"; then # Do the single finish_eval. eval cmds=\"$finish_eval\" $run eval "$cmds" || admincmds="$admincmds $cmds" fi done fi # Exit here if they wanted silent mode. test "$show" = : && exit $EXIT_SUCCESS $echo "X----------------------------------------------------------------------" | $Xsed $echo "Libraries have been installed in:" for libdir in $libdirs; do $echo " $libdir" done $echo $echo "If you ever happen to want to link against installed libraries" $echo "in a given directory, LIBDIR, you must either use libtool, and" $echo "specify the full pathname of the library, or use the \`-LLIBDIR'" $echo "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then $echo " - add LIBDIR to the \`$shlibpath_var' environment variable" $echo " during execution" fi if test -n "$runpath_var"; then $echo " - add LIBDIR to the \`$runpath_var' environment variable" $echo " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" $echo " - use the \`$flag' linker flag" fi if test -n "$admincmds"; then $echo " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then $echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" fi $echo $echo "See any operating system documentation about shared libraries for" $echo "more information, such as the ld(1) and ld.so(8) manual pages." $echo "X----------------------------------------------------------------------" | $Xsed exit $EXIT_SUCCESS ;; # libtool execute mode execute) modename="$modename: execute" # The first argument is the command name. cmd="$nonopt" if test -z "$cmd"; then $echo "$modename: you must specify a COMMAND" 1>&2 $echo "$help" exit $EXIT_FAILURE fi # Handle -dlopen flags immediately. for file in $execute_dlfiles; do if test ! -f "$file"; then $echo "$modename: \`$file' is not a file" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi dir= case $file in *.la) # Check to see that this really is a libtool archive. if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : else $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi # Read the libtool library. dlname= library_names= # If there is no directory component, then add one. case $file in */* | *\\*) . $file ;; *) . ./$file ;; esac # Skip this library if it cannot be dlopened. if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && $echo "$modename: warning: \`$file' was not linked with \`-export-dynamic'" continue fi dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` test "X$dir" = "X$file" && dir=. if test -f "$dir/$objdir/$dlname"; then dir="$dir/$objdir" else if test ! -f "$dir/$dlname"; then $echo "$modename: cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" 1>&2 exit $EXIT_FAILURE fi fi ;; *.lo) # Just add the directory containing the .lo file. dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` test "X$dir" = "X$file" && dir=. ;; *) $echo "$modename: warning \`-dlopen' is ignored for non-libtool libraries and objects" 1>&2 continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` test -n "$absdir" && dir="$absdir" # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then eval "$shlibpath_var=\"\$dir\"" else eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" fi done # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. libtool_execute_magic="$magic" # Check if any of the arguments is a wrapper script. args= for file do case $file in -*) ;; *) # Do a test to see if this is really a libtool program. if (${SED} -e '4q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then # If there is no directory component, then add one. case $file in */* | *\\*) . $file ;; *) . ./$file ;; esac # Transform arg to wrapped name. file="$progdir/$program" fi ;; esac # Quote arguments (to preserve shell metacharacters). file=`$echo "X$file" | $Xsed -e "$sed_quote_subst"` args="$args \"$file\"" done if test -z "$run"; then if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" fi # Restore saved environment variables for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${save_$lt_var+set}\" = set; then $lt_var=\$save_$lt_var; export $lt_var fi" done # Now prepare to actually exec the command. exec_cmd="\$cmd$args" else # Display what would be done. if test -n "$shlibpath_var"; then eval "\$echo \"\$shlibpath_var=\$$shlibpath_var\"" $echo "export $shlibpath_var" fi $echo "$cmd$args" exit $EXIT_SUCCESS fi ;; # libtool clean and uninstall mode clean | uninstall) modename="$modename: $mode" rm="$nonopt" files= rmforce= exit_status=0 # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic="$magic" for arg do case $arg in -f) rm="$rm $arg"; rmforce=yes ;; -*) rm="$rm $arg" ;; *) files="$files $arg" ;; esac done if test -z "$rm"; then $echo "$modename: you must specify an RM program" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE fi rmdirs= origobjdir="$objdir" for file in $files; do dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` if test "X$dir" = "X$file"; then dir=. objdir="$origobjdir" else objdir="$dir/$origobjdir" fi name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` test "$mode" = uninstall && objdir="$dir" # Remember objdir for removal later, being careful to avoid duplicates if test "$mode" = clean; then case " $rmdirs " in *" $objdir "*) ;; *) rmdirs="$rmdirs $objdir" ;; esac fi # Don't error if the file doesn't exist and rm -f was used. if (test -L "$file") >/dev/null 2>&1 \ || (test -h "$file") >/dev/null 2>&1 \ || test -f "$file"; then : elif test -d "$file"; then exit_status=1 continue elif test "$rmforce" = yes; then continue fi rmfiles="$file" case $name in *.la) # Possibly a libtool archive, so verify it. if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then . $dir/$name # Delete the libtool libraries and symlinks. for n in $library_names; do rmfiles="$rmfiles $objdir/$n" done test -n "$old_library" && rmfiles="$rmfiles $objdir/$old_library" case "$mode" in clean) case " $library_names " in # " " in the beginning catches empty $dlname *" $dlname "*) ;; *) rmfiles="$rmfiles $objdir/$dlname" ;; esac test -n "$libdir" && rmfiles="$rmfiles $objdir/$name $objdir/${name}i" ;; uninstall) if test -n "$library_names"; then # Do each command in the postuninstall commands. cmds=$postuninstall_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" if test "$?" -ne 0 && test "$rmforce" != yes; then exit_status=1 fi done IFS="$save_ifs" fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. cmds=$old_postuninstall_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" $run eval "$cmd" if test "$?" -ne 0 && test "$rmforce" != yes; then exit_status=1 fi done IFS="$save_ifs" fi # FIXME: should reinstall the best remaining shared library. ;; esac fi ;; *.lo) # Possibly a libtool object, so verify it. if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then # Read the .lo file . $dir/$name # Add PIC object to the list of files to remove. if test -n "$pic_object" \ && test "$pic_object" != none; then rmfiles="$rmfiles $dir/$pic_object" fi # Add non-PIC object to the list of files to remove. if test -n "$non_pic_object" \ && test "$non_pic_object" != none; then rmfiles="$rmfiles $dir/$non_pic_object" fi fi ;; *) if test "$mode" = clean ; then noexename=$name case $file in *.exe) file=`$echo $file|${SED} 's,.exe$,,'` noexename=`$echo $name|${SED} 's,.exe$,,'` # $file with .exe has already been added to rmfiles, # add $file without .exe rmfiles="$rmfiles $file" ;; esac # Do a test to see if this is a libtool program. if (${SED} -e '4q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then relink_command= . $dir/$noexename # note $name still contains .exe if it was in $file originally # as does the version of $file that was added into $rmfiles rmfiles="$rmfiles $objdir/$name $objdir/${name}S.${objext}" if test "$fast_install" = yes && test -n "$relink_command"; then rmfiles="$rmfiles $objdir/lt-$name" fi if test "X$noexename" != "X$name" ; then rmfiles="$rmfiles $objdir/lt-${noexename}.c" fi fi fi ;; esac $show "$rm $rmfiles" $run $rm $rmfiles || exit_status=1 done objdir="$origobjdir" # Try to remove the ${objdir}s in the directories where we deleted files for dir in $rmdirs; do if test -d "$dir"; then $show "rmdir $dir" $run rmdir $dir >/dev/null 2>&1 fi done exit $exit_status ;; "") $echo "$modename: you must specify a MODE" 1>&2 $echo "$generic_help" 1>&2 exit $EXIT_FAILURE ;; esac if test -z "$exec_cmd"; then $echo "$modename: invalid operation mode \`$mode'" 1>&2 $echo "$generic_help" 1>&2 exit $EXIT_FAILURE fi fi # test -z "$show_help" if test -n "$exec_cmd"; then eval exec $exec_cmd exit $EXIT_FAILURE fi # We need to display help for each of the modes. case $mode in "") $echo \ "Usage: $modename [OPTION]... [MODE-ARG]... Provide generalized library-building support services. --config show all configuration variables --debug enable verbose shell tracing -n, --dry-run display commands without modifying any files --features display basic configuration information and exit --finish same as \`--mode=finish' --help display this help message and exit --mode=MODE use operation mode MODE [default=inferred from MODE-ARGS] --quiet same as \`--silent' --silent don't print informational messages --tag=TAG use configuration variables from tag TAG --version print version information MODE must be one of the following: clean remove files from the build directory compile compile a source file into a libtool object execute automatically set library path, then run a program finish complete the installation of libtool libraries install install libraries or executables link create a library or an executable uninstall remove libraries from an installed directory MODE-ARGS vary depending on the MODE. Try \`$modename --help --mode=MODE' for a more detailed description of MODE. Report bugs to ." exit $EXIT_SUCCESS ;; clean) $echo \ "Usage: $modename [OPTION]... --mode=clean RM [RM-OPTION]... FILE... Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; compile) $echo \ "Usage: $modename [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE Compile a source file into a libtool library object. This mode accepts the following additional options: -o OUTPUT-FILE set the output file name to OUTPUT-FILE -prefer-pic try to building PIC objects only -prefer-non-pic try to building non-PIC objects only -static always build a \`.o' file suitable for static linking COMPILE-COMMAND is a command to be used in creating a \`standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from SOURCEFILE, then substituting the C source code suffix \`.c' with the library object suffix, \`.lo'." ;; execute) $echo \ "Usage: $modename [OPTION]... --mode=execute COMMAND [ARGS]... Automatically set library path, then run a program. This mode accepts the following additional options: -dlopen FILE add the directory containing FILE to the library path This mode sets the library path environment variable according to \`-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated into their corresponding uninstalled binary, and any of their required library directories are added to the library path. Then, COMMAND is executed, with ARGS as arguments." ;; finish) $echo \ "Usage: $modename [OPTION]... --mode=finish [LIBDIR]... Complete the installation of libtool libraries. Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use the \`--dry-run' option if you just want to see what would be executed." ;; install) $echo \ "Usage: $modename [OPTION]... --mode=install INSTALL-COMMAND... Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be either the \`install' or \`cp' program. The rest of the components are interpreted as arguments to that command (only BSD-compatible install options are recognized)." ;; link) $echo \ "Usage: $modename [OPTION]... --mode=link LINK-COMMAND... Link object files or libraries together to form another library, or to create an executable program. LINK-COMMAND is a command using the C compiler that you would use to create a program from several object files. The following components of LINK-COMMAND are treated specially: -all-static do not do any dynamic linking at all -avoid-version do not add a version suffix if possible -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE try to export only the symbols listed in SYMFILE -export-symbols-regex REGEX try to export only the symbols matching REGEX -LLIBDIR search LIBDIR for required installed libraries -lNAME OUTPUT-FILE requires the installed library libNAME -module build a library that can dlopened -no-fast-install disable the fast-install mode -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects -objectlist FILE Use a list of object files found in FILE to specify objects -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information -rpath LIBDIR the created library will eventually be installed in LIBDIR -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries -static do not do any dynamic linking of uninstalled libtool libraries -static-libtool-libs do not do any dynamic linking of libtool libraries -version-info CURRENT[:REVISION[:AGE]] specify library version info [each variable defaults to 0] All other options (arguments beginning with \`-') are ignored. Every other argument is treated as a filename. Files ending in \`.la' are treated as uninstalled libtool libraries, other files are standard or library object files. If the OUTPUT-FILE ends in \`.la', then a libtool library is created, only library objects (\`.lo' files) may be specified, and \`-rpath' is required, except when creating a convenience library. If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created using \`ar' and \`ranlib', or on Windows using \`lib'. If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file is created, otherwise an executable program is created." ;; uninstall) $echo \ "Usage: $modename [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; *) $echo "$modename: invalid operation mode \`$mode'" 1>&2 $echo "$help" 1>&2 exit $EXIT_FAILURE ;; esac $echo $echo "Try \`$modename --help' for more information about other modes." exit $? # The TAGs below are defined such that we never get into a situation # in which we disable both kinds of libraries. Given conflicting # choices, we go for a static library, that is the most portable, # since we can't tell whether shared libraries were disabled because # the user asked for that or because the platform doesn't support # them. This is particularly important on AIX, because we don't # support having both static and shared libraries enabled at the same # time on that platform, so we default to a shared-only configuration. # If a disable-shared tag is given, we'll fallback to a static-only # configuration. But we'll never go from static-only to shared-only. # ### BEGIN LIBTOOL TAG CONFIG: disable-shared disable_libs=shared # ### END LIBTOOL TAG CONFIG: disable-shared # ### BEGIN LIBTOOL TAG CONFIG: disable-static disable_libs=static # ### END LIBTOOL TAG CONFIG: disable-static # Local Variables: # mode:shell-script # sh-indentation:2 # End: photoprint-0.4.2-pre2/scripts/depcomp0000755000175000017500000003710011101462351014551 00000000000000#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2005-07-09.11 # Copyright (C) 1999, 2000, 2003, 2004, 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. # 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 outputing 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 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. "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" 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. ## 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" ;; 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. stripped=`echo "$object" | sed 's/\(.*\)\..*$/\1/'` tmpdepfile="$stripped.u" if test "$libtool" = yes; then "$@" -Wc,-M else "$@" -M fi stat=$? if test -f "$tmpdepfile"; then : else stripped=`echo "$stripped" | sed 's,^.*/,,'` tmpdepfile="$stripped.u" fi if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi if test -f "$tmpdepfile"; then outname="$stripped.o" # 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,^$outname:,$object :," < "$tmpdepfile" > "$depfile" sed -e "s,^$outname: \(.*\)$,\1:," < "$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" ;; 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 mecanism 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 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" ;; #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 $1 != '--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 $1 != '--mode=compile'; do shift done shift fi # X makedepend shift cleared=no for arg in "$@"; do case $cleared in no) set ""; shift cleared=yes ;; esac 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. -*|$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" cat < "$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 $1 != '--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, regardless of -o, # because we must use -o when running libtool. "$@" || exit $? IFS=" " for arg do case "$arg" in "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" echo " " >> "$depfile" . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; 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-end: "$" # End: photoprint-0.4.2-pre2/ChangeLog0000644000175000017500000000067211101462351013263 000000000000002008-03-27 gettextize * Makefile.am (ACLOCAL_AMFLAGS): New variable. (EXTRA_DIST): Add m4/ChangeLog. * configure.ac (AM_GNU_GETTEXT_VERSION): Bump to 0.17. 2006-11-04 gettextize * Makefile.am (SUBDIRS): Add po. (ACLOCAL_AMFLAGS): New variable. (EXTRA_DIST): Add scripts/config.rpath, scripts/mkinstalldirs, m4/ChangeLog. * configure.ac (AC_CONFIG_FILES): Add po/Makefile.in. photoprint-0.4.2-pre2/pp_imageinfo.cpp0000644000175000017500000002621311266364443014670 00000000000000#include #include #include #include #include #include #include #include "config.h" #include "support/thread.h" #include "support/debug.h" #include "stpui_widgets/dimension.h" #include "imagesource/imagesource_util.h" #include "photoprint_state.h" #include "pp_imageinfo.h" #include "gettext.h" #define _(x) gettext(x) enum { CHANGED_SIGNAL, LAST_SIGNAL }; static guint pp_imageinfo_signals[LAST_SIGNAL] = { 0 }; static void pp_imageinfo_class_init (pp_ImageInfoClass *klass); static void pp_imageinfo_init (pp_ImageInfo *stpuicombo); void pp_imageinfo_refresh(pp_ImageInfo *ob) { Debug[TRACE] << "Refreshing imageinfo" << endl; if(ob->layout) { LayoutIterator it(*ob->layout); Layout_ImageInfo *ii=it.FirstSelected(); if(ii) { float pixelwidth=ii->GetWidth(); float pixelheight=ii->GetHeight(); Debug[TRACE] << "Image dimensions: " << pixelwidth << " x " << pixelheight << endl; RectFit *fit=ii->GetFit(1.0); Debug[TRACE] << "Got fit" << endl; if(fit) { double w=fit->width; Debug[TRACE] << "Got width"<< endl; double h=fit->height; Debug[TRACE] << "Got height"<< endl; double t; switch(fit->rotation) { case 90: case 270: Debug[TRACE] << "Rotation - swapping pixel dimensions" << endl; t=pixelwidth; pixelwidth=pixelheight; pixelheight=t; break; default: break; } Debug[TRACE] << "Getting bounds..." << endl; LayoutRectangle *bounds=ii->GetBounds(); Debug[TRACE] << "Checking bounds..." << endl; if(bounds) { if(w>bounds->w) { Debug[TRACE] << "Cropping " << w << " to " << bounds->w << endl; pixelwidth=(bounds->w*pixelwidth)/w; Debug[TRACE] << "Pixelwidth reduced to: " << pixelwidth << endl; w=bounds->w; } if(h>bounds->h) { Debug[TRACE] << "Cropping " << h << " to " << bounds->h << endl; pixelheight=(bounds->h*pixelheight)/h; Debug[TRACE] << "Pixelheight reduced to: " << pixelheight << endl; h=bounds->h; } // Calculate DPI while units are still in points! float xres=pixelwidth/(w/72.0); float yres=pixelheight/(h/72.0); gchar *label=g_strdup_printf("%d x %d dpi",int(xres),int(yres)); gtk_label_set_label(GTK_LABEL(ob->resolution),label); g_free(label); // Convert units from points to display unit. const char *unit="??"; switch(ii->layout.state.GetUnits()) { case UNIT_INCHES: w=UNIT_POINTS_TO_INCHES(w); h=UNIT_POINTS_TO_INCHES(h); unit=_("in"); break; case UNIT_POINTS: unit=_("pt"); break; case UNIT_CENTIMETERS: w=UNIT_POINTS_TO_CENTIMETERS(w); h=UNIT_POINTS_TO_CENTIMETERS(h); unit=_("cm"); break; case UNIT_MILLIMETERS: w=UNIT_POINTS_TO_MILLIMETERS(w); h=UNIT_POINTS_TO_MILLIMETERS(h); unit=_("mm"); break; } label=g_strdup_printf("%.1f x %.1f %s",w,h,unit); gtk_label_set_label(GTK_LABEL(ob->physicalsize),label); g_free(label); delete bounds; } delete fit; } } else { gtk_label_set_label(GTK_LABEL(ob->filename),""); gtk_label_set_label(GTK_LABEL(ob->dimensions),""); gtk_label_set_label(GTK_LABEL(ob->physicalsize),""); gtk_label_set_label(GTK_LABEL(ob->resolution),""); gtk_label_set_label(GTK_LABEL(ob->profile),""); } } } static void killshadow(GtkWidget *wid,gpointer data) { gtk_viewport_set_shadow_type(GTK_VIEWPORT(wid),GTK_SHADOW_NONE); } static void expander_callback (GObject *object, GParamSpec *param_spec, gpointer userdata) { pp_ImageInfo *ob=PP_IMAGEINFO(object); ob->layout->state.SetInt("ExpanderState_ImageInfo",gtk_expander_get_expanded (GTK_EXPANDER(ob))); } GtkWidget* pp_imageinfo_new (Layout *layout) { pp_ImageInfo *ob=PP_IMAGEINFO(g_object_new (pp_imageinfo_get_type (), NULL)); // gtk_box_set_spacing(GTK_BOX(ob),5); ob->layout=layout; GtkWidget *label; // GtkWidget *frame; // Layout frame gtk_expander_set_label(GTK_EXPANDER(ob),_("Image Info")); gtk_expander_set_spacing(GTK_EXPANDER(ob),5); gtk_expander_set_expanded(GTK_EXPANDER(ob),layout->state.FindInt("ExpanderState_ImageInfo")); g_signal_connect(ob, "notify::expanded",G_CALLBACK (expander_callback),layout); // gtk_box_pack_start(GTK_BOX(ob),frame,FALSE,FALSE,0); // gtk_widget_show(frame); GtkWidget *vbox=gtk_vbox_new(FALSE,0); gtk_widget_show(vbox); gtk_container_add(GTK_CONTAINER(ob),vbox); ob->scrollwin=gtk_scrolled_window_new(NULL,NULL); gtk_widget_show(ob->scrollwin); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (ob->scrollwin), GTK_POLICY_AUTOMATIC, GTK_POLICY_NEVER); gtk_box_pack_start(GTK_BOX(vbox),ob->scrollwin,FALSE,FALSE,0); ob->table=gtk_table_new(2,5,false); gtk_scrolled_window_add_with_viewport (GTK_SCROLLED_WINDOW (ob->scrollwin), ob->table); gtk_container_foreach(GTK_CONTAINER(ob->scrollwin),killshadow,NULL); gtk_table_set_col_spacings(GTK_TABLE(ob->table),8); gtk_table_set_row_spacings(GTK_TABLE(ob->table),4); label=gtk_label_new(_("Filename:")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_table_attach(GTK_TABLE(ob->table),GTK_WIDGET(label),0,1,0,1, GtkAttachOptions(GTK_SHRINK|GTK_FILL),GtkAttachOptions(GTK_SHRINK|GTK_FILL),0,0); gtk_widget_show(label); ob->filename=gtk_label_new(""); gtk_misc_set_alignment(GTK_MISC(ob->filename),0.0,0.5); gtk_widget_show(ob->filename); gtk_table_attach_defaults(GTK_TABLE(ob->table),GTK_WIDGET(ob->filename),1,2,0,1); label=gtk_label_new(_("Dimensions:")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_table_attach(GTK_TABLE(ob->table),GTK_WIDGET(label),0,1,1,2, GtkAttachOptions(GTK_SHRINK|GTK_FILL),GtkAttachOptions(GTK_SHRINK|GTK_FILL),0,0); gtk_widget_show(label); ob->dimensions=gtk_label_new(""); gtk_misc_set_alignment(GTK_MISC(ob->dimensions),0.0,0.5); gtk_widget_show(ob->dimensions); gtk_table_attach_defaults(GTK_TABLE(ob->table),GTK_WIDGET(ob->dimensions),1,2,1,2); ob->physicalsize=gtk_label_new(""); gtk_misc_set_alignment(GTK_MISC(ob->physicalsize),0.0,0.5); gtk_widget_show(ob->physicalsize); gtk_table_attach_defaults(GTK_TABLE(ob->table),GTK_WIDGET(ob->physicalsize),1,2,2,3); label=gtk_label_new(_("Resolution:")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_table_attach(GTK_TABLE(ob->table),GTK_WIDGET(label),0,1,3,4, GtkAttachOptions(GTK_SHRINK|GTK_FILL),GtkAttachOptions(GTK_SHRINK|GTK_FILL),0,0); gtk_widget_show(label); ob->resolution=gtk_label_new(""); gtk_misc_set_alignment(GTK_MISC(ob->resolution),0.0,0.5); gtk_widget_show(ob->resolution); gtk_table_attach_defaults(GTK_TABLE(ob->table),GTK_WIDGET(ob->resolution),1,2,3,4); label=gtk_label_new(_("Profile:")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_table_attach(GTK_TABLE(ob->table),GTK_WIDGET(label),0,1,4,5, GtkAttachOptions(GTK_SHRINK|GTK_FILL),GtkAttachOptions(GTK_SHRINK|GTK_FILL),0,0); gtk_widget_show(label); ob->profile=gtk_label_new(""); gtk_label_set_line_wrap(GTK_LABEL(ob->profile),true); gtk_misc_set_alignment(GTK_MISC(ob->profile),0.0,0.5); gtk_widget_show(ob->profile); gtk_table_attach_defaults(GTK_TABLE(ob->table),GTK_WIDGET(ob->profile),1,2,4,5); gtk_widget_show(ob->table); pp_imageinfo_change_image(ob); return(GTK_WIDGET(ob)); } GType pp_imageinfo_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo pp_imageinfo_info = { sizeof (pp_ImageInfoClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) pp_imageinfo_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (pp_ImageInfo), 0, (GInstanceInitFunc) pp_imageinfo_init, }; stpuic_type = g_type_register_static (GTK_TYPE_EXPANDER, "pp_ImageInfo", &pp_imageinfo_info, (GTypeFlags)0); } return stpuic_type; } static void pp_imageinfo_class_init (pp_ImageInfoClass *klass) { pp_imageinfo_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (klass), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_ImageInfoClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void pp_imageinfo_init (pp_ImageInfo *ob) { ob->table=NULL; ob->filename=NULL; ob->dimensions=NULL; ob->profile=NULL; ob->scrollwin=NULL; ob->thread=NULL; } class ii_payload : public ThreadFunction { public: ii_payload(const char *fn,pp_ImageInfo *ob,Layout_ImageInfo *ii) : filename(NULL), dimensions(NULL), proffilename(NULL), profname(NULL), widget(NULL), imageinfo(NULL), thread(this) { filename=strdup(fn); widget=ob; imageinfo=ii; const char *tmp; if((tmp=ii->GetAssignedProfile())) proffilename=strdup(tmp); thread.Start(); thread.WaitSync(); } ~ii_payload() { thread.Stop(); thread.WaitFinished(); if(filename) free(filename); if(proffilename) free(proffilename); if(profname) free(profname); if(dimensions) g_free(dimensions); } void GetInfo() { } virtual int Entry(Thread &t) { t.SendSync(); ImageSource *is=ISLoadImage(filename); if(is) { dimensions=g_strdup_printf("%d x %d %s",imageinfo->GetWidth(),imageinfo->GetHeight(),_("pixels")); // Embedded/Assigned Profile CMSProfile *prof=NULL; if(proffilename) prof=new CMSProfile(proffilename); if(!prof) prof=is->GetEmbeddedProfile(); if(prof) { const char *desc=prof->GetDescription(); profname=strdup(desc); if(proffilename) // Only delete the profile if we created it from a filename delete prof; } delete is; } g_idle_add(ii_payload::IdleFunc,this); return(0); } static gboolean IdleFunc(gpointer ud) { ii_payload *p=(ii_payload *)ud; pp_ImageInfo *ii=p->widget; if(p->dimensions) gtk_label_set_label(GTK_LABEL(ii->dimensions),p->dimensions); if(p->profname) gtk_label_set_text(GTK_LABEL(ii->profile),p->profname); else gtk_label_set_text(GTK_LABEL(ii->profile),_("Default")); delete p; return(FALSE); } protected: char *filename; char *dimensions; char *proffilename; char *profname; pp_ImageInfo *widget; Layout_ImageInfo *imageinfo; Thread thread; }; void pp_imageinfo_change_image(pp_ImageInfo *ob) { if(ob->layout) { LayoutIterator it(*ob->layout); Layout_ImageInfo *ii=it.FirstSelected(); if(ii) { // Remove path leaving just the file part of the filename, // and convert to UTF8 for display. const char *fn=ii->GetFilename(); gchar *fnb=g_path_get_basename(fn); gsize bread=0,bwritten=0; GError *err; gchar *fnu=g_filename_to_utf8(fnb,-1,&bread,&bwritten,&err); if(fnu) gtk_label_set_label(GTK_LABEL(ob->filename),fnu); if(fnu) g_free(fnu); g_free(fnb); if(ob->thread) // Deleting the old thread has the added bonus of ensuring that delete ob->thread; // any previous iteration has completed. new ii_payload(fn,ob,ii); gtk_widget_set_sensitive(GTK_WIDGET(ob->scrollwin),true); } } else { gtk_label_set_text(GTK_LABEL(ob->filename),""); gtk_label_set_text(GTK_LABEL(ob->dimensions),""); gtk_label_set_text(GTK_LABEL(ob->profile),""); gtk_widget_set_sensitive(GTK_WIDGET(ob->scrollwin),false); } } photoprint-0.4.2-pre2/pp_scaling.h0000644000175000017500000000256511271301742014010 00000000000000#ifndef __PP_SCALING_H__ #define __PP_SCALING_H__ #include #include #include #include #include #include #include #include "miscwidgets/simplecombo.h" #include "imagesource/imagesource_util.h" G_BEGIN_DECLS #define PP_SCALING_TYPE (pp_scaling_get_type()) #define PP_SCALING(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PP_SCALING_TYPE, pp_Scaling)) #define PP_SCALING_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PP_SCALING_TYPE, pp_ScalingClass)) #define IS_PP_SCALING(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PP_SCALING_TYPE)) #define IS_PP_SCALING_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PP_SCALING_TYPE)) typedef struct _pp_Scaling pp_Scaling; typedef struct _pp_ScalingClass pp_ScalingClass; struct _pp_Scaling { GtkVBox vbox; GtkWidget *scaleselector; GtkWidget *description; }; struct _pp_ScalingClass { GtkVBoxClass parent_class; void (*changed)(pp_Scaling *units); }; GType pp_scaling_get_type (void); GtkWidget* pp_scaling_new (IS_ScalingQuality scale); void pp_scaling_refresh(pp_Scaling *ob); void pp_scaling_set_scale(pp_Scaling *ob,IS_ScalingQuality scale); IS_ScalingQuality pp_scaling_get_scale(pp_Scaling *ob); IS_ScalingQuality pp_scaling_run_dialog(GtkWindow *parent,IS_ScalingQuality scale); G_END_DECLS #endif /* __PP_SCALING_H__ */ photoprint-0.4.2-pre2/ABOUT-NLS0000644000175000017500000022532611101462351012745 000000000000001 Notes on the Free Translation Project *************************************** Free software is going international! The Free Translation Project is a way to get maintainers of free software, translators, and users all together, so that free software will gradually become able to speak many languages. A few packages already provide translations for their messages. If you found this `ABOUT-NLS' file inside a distribution, you may assume that the distributed package does use GNU `gettext' internally, itself available at your nearest GNU archive site. But you do _not_ need to install GNU `gettext' prior to configuring, installing or using this package with messages translated. Installers will find here some useful hints. These notes also explain how users should proceed for getting the programs to use the available translations. They tell how people wanting to contribute and work on translations can contact the appropriate team. When reporting bugs in the `intl/' directory or bugs which may be related to internationalization, you should tell about the version of `gettext' which is used. The information can be found in the `intl/VERSION' file, in internationalized packages. 1.1 Quick configuration advice ============================== If you want to exploit the full power of internationalization, you should configure it using ./configure --with-included-gettext to force usage of internationalizing routines provided within this package, despite the existence of internationalizing capabilities in the operating system where this package is being installed. So far, only the `gettext' implementation in the GNU C library version 2 provides as many features (such as locale alias, message inheritance, automatic charset conversion or plural form handling) as the implementation here. It is also not possible to offer this additional functionality on top of a `catgets' implementation. Future versions of GNU `gettext' will very likely convey even more functionality. So it might be a good idea to change to GNU `gettext' as soon as possible. So you need _not_ provide this option if you are using GNU libc 2 or you have installed a recent copy of the GNU gettext package with the included `libintl'. 1.2 INSTALL Matters =================== Some packages are "localizable" when properly installed; the programs they contain can be made to speak your own native language. Most such packages use GNU `gettext'. Other packages have their own ways to internationalization, predating GNU `gettext'. By default, this package will be installed to allow translation of messages. It will automatically detect whether the system already provides the GNU `gettext' functions. If not, the included GNU `gettext' library will be used. This library is wholly contained within this package, usually in the `intl/' subdirectory, so prior installation of the GNU `gettext' package is _not_ required. Installers may use special options at configuration time for changing the default behaviour. The commands: ./configure --with-included-gettext ./configure --disable-nls will, respectively, bypass any pre-existing `gettext' to use the internationalizing routines provided within this package, or else, _totally_ disable translation of messages. When you already have GNU `gettext' installed on your system and run configure without an option for your new package, `configure' will probably detect the previously built and installed `libintl.a' file and will decide to use this. This might not be desirable. You should use the more recent version of the GNU `gettext' library. I.e. if the file `intl/VERSION' shows that the library which comes with this package is more recent, you should use ./configure --with-included-gettext to prevent auto-detection. The configuration process will not test for the `catgets' function and therefore it will not be used. The reason is that even an emulation of `gettext' on top of `catgets' could not provide all the extensions of the GNU `gettext' library. Internationalized packages usually have many `po/LL.po' files, where LL gives an ISO 639 two-letter code identifying the language. Unless translations have been forbidden at `configure' time by using the `--disable-nls' switch, all available translations are installed together with the package. However, the environment variable `LINGUAS' may be set, prior to configuration, to limit the installed set. `LINGUAS' should then contain a space separated list of two-letter codes, stating which languages are allowed. 1.3 Using This Package ====================== As a user, if your language has been installed for this package, you only have to set the `LANG' environment variable to the appropriate `LL_CC' combination. If you happen to have the `LC_ALL' or some other `LC_xxx' environment variables set, you should unset them before setting `LANG', otherwise the setting of `LANG' will not have the desired effect. Here `LL' is an ISO 639 two-letter language code, and `CC' is an ISO 3166 two-letter country code. For example, let's suppose that you speak German and live in Germany. At the shell prompt, merely execute `setenv LANG de_DE' (in `csh'), `export LANG; LANG=de_DE' (in `sh') or `export LANG=de_DE' (in `bash'). This can be done from your `.login' or `.profile' file, once and for all. You might think that the country code specification is redundant. But in fact, some languages have dialects in different countries. For example, `de_AT' is used for Austria, and `pt_BR' for Brazil. The country code serves to distinguish the dialects. The locale naming convention of `LL_CC', with `LL' denoting the language and `CC' denoting the country, is the one use on systems based on GNU libc. On other systems, some variations of this scheme are used, such as `LL' or `LL_CC.ENCODING'. You can get the list of locales supported by your system for your language by running the command `locale -a | grep '^LL''. Not all programs have translations for all languages. By default, an English message is shown in place of a nonexistent translation. If you understand other languages, you can set up a priority list of languages. This is done through a different environment variable, called `LANGUAGE'. GNU `gettext' gives preference to `LANGUAGE' over `LANG' for the purpose of message handling, but you still need to have `LANG' set to the primary language; this is required by other parts of the system libraries. For example, some Swedish users who would rather read translations in German than English for when Swedish is not available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'. Special advice for Norwegian users: The language code for Norwegian bokma*l changed from `no' to `nb' recently (in 2003). During the transition period, while some message catalogs for this language are installed under `nb' and some older ones under `no', it's recommended for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and older translations are used. In the `LANGUAGE' environment variable, but not in the `LANG' environment variable, `LL_CC' combinations can be abbreviated as `LL' to denote the language's main dialect. For example, `de' is equivalent to `de_DE' (German as spoken in Germany), and `pt' to `pt_PT' (Portuguese as spoken in Portugal) in this context. 1.4 Translating Teams ===================== For the Free Translation Project to be a success, we need interested people who like their own language and write it well, and who are also able to synergize with other translators speaking the same language. Each translation team has its own mailing list. The up-to-date list of teams can be found at the Free Translation Project's homepage, `http://translationproject.org/', in the "Teams" area. If you'd like to volunteer to _work_ at translating messages, you should become a member of the translating team for your own language. The subscribing address is _not_ the same as the list itself, it has `-request' appended. For example, speakers of Swedish can send a message to `sv-request@li.org', having this message body: subscribe Keep in mind that team members are expected to participate _actively_ in translations, or at solving translational difficulties, rather than merely lurking around. If your team does not exist yet and you want to start one, or if you are unsure about what to do or how to get started, please write to `coordinator@translationproject.org' to reach the coordinator for all translator teams. The English team is special. It works at improving and uniformizing the terminology in use. Proven linguistic skills are praised more than programming skills, here. 1.5 Available Packages ====================== Languages are not equally supported in all packages. The following matrix shows the current state of internationalization, as of November 2007. The matrix shows, in regard of each package, for which languages PO files have been submitted to translation coordination, with a translation percentage of at least 50%. Ready PO files af am ar az be bg bs ca cs cy da de el en en_GB eo +----------------------------------------------------+ Compendium | [] [] [] [] | a2ps | [] [] [] [] [] | aegis | () | ant-phone | () | anubis | [] | ap-utils | | aspell | [] [] [] [] [] | bash | [] | bfd | | bibshelf | [] | binutils | | bison | [] [] | bison-runtime | [] | bluez-pin | [] [] [] [] [] | cflow | [] | clisp | [] [] [] | console-tools | [] [] | coreutils | [] [] [] [] | cpio | | cpplib | [] [] [] | cryptonit | [] | dialog | | diffutils | [] [] [] [] [] [] | doodle | [] | e2fsprogs | [] [] | enscript | [] [] [] [] | fetchmail | [] [] () [] [] | findutils | [] | findutils_stable | [] [] [] | flex | [] [] [] | fslint | | gas | | gawk | [] [] [] | gcal | [] | gcc | [] | gettext-examples | [] [] [] [] [] | gettext-runtime | [] [] [] [] [] | gettext-tools | [] [] | gip | [] | gliv | [] [] | glunarclock | [] | gmult | [] [] | gnubiff | () | gnucash | [] [] () () [] | gnuedu | | gnulib | [] | gnunet | | gnunet-gtk | | gnutls | [] | gpe-aerial | [] [] | gpe-beam | [] [] | gpe-calendar | | gpe-clock | [] [] | gpe-conf | [] [] | gpe-contacts | | gpe-edit | [] | gpe-filemanager | | gpe-go | [] | gpe-login | [] [] | gpe-ownerinfo | [] [] | gpe-package | | gpe-sketchbook | [] [] | gpe-su | [] [] | gpe-taskmanager | [] [] | gpe-timesheet | [] | gpe-today | [] [] | gpe-todo | | gphoto2 | [] [] [] [] | gprof | [] [] | gpsdrive | | gramadoir | [] [] | grep | [] [] | gretl | () | gsasl | | gss | | gst-plugins-bad | [] [] | gst-plugins-base | [] [] | gst-plugins-good | [] [] [] | gst-plugins-ugly | [] [] | gstreamer | [] [] [] [] [] [] [] | gtick | () | gtkam | [] [] [] [] | gtkorphan | [] [] | gtkspell | [] [] [] [] | gutenprint | [] | hello | [] [] [] [] [] | herrie | [] | hylafax | | idutils | [] [] | indent | [] [] [] [] | iso_15924 | | iso_3166 | [] [] [] [] [] [] [] [] [] [] [] | iso_3166_2 | | iso_4217 | [] [] [] | iso_639 | [] [] [] [] | jpilot | [] | jtag | | jwhois | | kbd | [] [] [] [] | keytouch | [] [] | keytouch-editor | [] | keytouch-keyboa... | [] | latrine | () | ld | [] | leafpad | [] [] [] [] [] | libc | [] [] [] [] | libexif | [] | libextractor | [] | libgpewidget | [] [] [] | libgpg-error | [] | libgphoto2 | [] [] | libgphoto2_port | [] [] | libgsasl | | libiconv | [] [] | libidn | [] [] [] | lifelines | [] () | lilypond | [] | lingoteach | | lprng | | lynx | [] [] [] [] | m4 | [] [] [] [] | mailfromd | | mailutils | [] | make | [] [] | man-db | [] [] [] | minicom | [] [] [] | nano | [] [] [] | opcodes | [] | parted | [] [] | pilot-qof | | popt | [] [] [] | psmisc | [] | pwdutils | | qof | | radius | [] | recode | [] [] [] [] [] [] | rpm | [] | screem | | scrollkeeper | [] [] [] [] [] [] [] [] | sed | [] [] [] | shared-mime-info | [] [] [] [] () [] [] [] | sharutils | [] [] [] [] [] [] | shishi | | skencil | [] () | solfege | | soundtracker | [] [] | sp | [] | system-tools-ba... | [] [] [] [] [] [] [] [] [] | tar | [] [] | texinfo | [] [] [] | tin | () () | tuxpaint | [] [] [] [] [] [] | unicode-han-tra... | | unicode-transla... | | util-linux | [] [] [] [] | util-linux-ng | [] [] [] [] | vorbis-tools | [] | wastesedge | () | wdiff | [] [] [] [] | wget | [] [] [] | xchat | [] [] [] [] [] [] [] | xkeyboard-config | [] | xpad | [] [] [] | +----------------------------------------------------+ af am ar az be bg bs ca cs cy da de el en en_GB eo 6 0 2 1 8 26 2 40 48 2 56 88 15 1 15 18 es et eu fa fi fr ga gl gu he hi hr hu id is it +--------------------------------------------------+ Compendium | [] [] [] [] [] | a2ps | [] [] [] () | aegis | | ant-phone | [] | anubis | [] | ap-utils | [] [] | aspell | [] [] [] | bash | [] | bfd | [] [] | bibshelf | [] [] [] | binutils | [] [] [] | bison | [] [] [] [] [] [] | bison-runtime | [] [] [] [] [] | bluez-pin | [] [] [] [] [] | cflow | [] | clisp | [] [] | console-tools | | coreutils | [] [] [] [] [] [] | cpio | [] [] [] | cpplib | [] [] | cryptonit | [] | dialog | [] [] [] | diffutils | [] [] [] [] [] [] [] [] [] | doodle | [] [] | e2fsprogs | [] [] [] | enscript | [] [] [] | fetchmail | [] | findutils | [] [] [] | findutils_stable | [] [] [] [] | flex | [] [] [] | fslint | | gas | [] [] | gawk | [] [] [] [] () | gcal | [] [] | gcc | [] | gettext-examples | [] [] [] [] [] [] [] | gettext-runtime | [] [] [] [] [] [] | gettext-tools | [] [] [] [] | gip | [] [] [] [] | gliv | () | glunarclock | [] [] [] | gmult | [] [] [] | gnubiff | () () | gnucash | () () () | gnuedu | [] | gnulib | [] [] [] | gnunet | | gnunet-gtk | | gnutls | | gpe-aerial | [] [] | gpe-beam | [] [] | gpe-calendar | | gpe-clock | [] [] [] [] | gpe-conf | [] | gpe-contacts | [] [] | gpe-edit | [] [] [] [] | gpe-filemanager | [] | gpe-go | [] [] [] | gpe-login | [] [] [] | gpe-ownerinfo | [] [] [] [] [] | gpe-package | [] | gpe-sketchbook | [] [] | gpe-su | [] [] [] [] | gpe-taskmanager | [] [] [] | gpe-timesheet | [] [] [] [] | gpe-today | [] [] [] [] | gpe-todo | [] | gphoto2 | [] [] [] [] [] | gprof | [] [] [] [] [] | gpsdrive | [] | gramadoir | [] [] | grep | [] [] [] | gretl | [] [] [] () | gsasl | [] [] | gss | [] [] | gst-plugins-bad | [] [] [] [] | gst-plugins-base | [] [] [] [] | gst-plugins-good | [] [] [] [] [] | gst-plugins-ugly | [] [] [] [] | gstreamer | [] [] [] | gtick | [] [] [] | gtkam | [] [] [] [] | gtkorphan | [] [] | gtkspell | [] [] [] [] [] [] [] | gutenprint | [] | hello | [] [] [] [] [] [] [] [] [] [] [] [] [] | herrie | [] | hylafax | | idutils | [] [] [] [] [] | indent | [] [] [] [] [] [] [] [] [] [] | iso_15924 | [] | iso_3166 | [] [] [] [] [] [] [] [] [] [] [] [] [] | iso_3166_2 | [] | iso_4217 | [] [] [] [] [] [] | iso_639 | [] [] [] [] [] [] | jpilot | [] [] | jtag | [] | jwhois | [] [] [] [] [] | kbd | [] [] | keytouch | [] [] [] | keytouch-editor | [] | keytouch-keyboa... | [] [] | latrine | [] [] | ld | [] [] [] [] | leafpad | [] [] [] [] [] [] | libc | [] [] [] [] [] | libexif | [] | libextractor | [] | libgpewidget | [] [] [] [] [] | libgpg-error | [] | libgphoto2 | [] [] [] | libgphoto2_port | [] [] | libgsasl | [] [] | libiconv | [] [] [] | libidn | [] [] | lifelines | () | lilypond | [] [] [] | lingoteach | [] [] [] | lprng | | lynx | [] [] [] | m4 | [] [] [] [] | mailfromd | | mailutils | [] [] | make | [] [] [] [] [] [] [] [] | man-db | [] | minicom | [] [] [] [] | nano | [] [] [] [] [] [] [] | opcodes | [] [] [] [] | parted | [] [] [] | pilot-qof | | popt | [] [] [] [] | psmisc | [] [] | pwdutils | | qof | [] | radius | [] [] | recode | [] [] [] [] [] [] [] [] | rpm | [] [] | screem | | scrollkeeper | [] [] [] | sed | [] [] [] [] [] | shared-mime-info | [] [] [] [] [] [] | sharutils | [] [] [] [] [] [] [] [] | shishi | [] | skencil | [] [] | solfege | [] | soundtracker | [] [] [] | sp | [] | system-tools-ba... | [] [] [] [] [] [] [] [] [] | tar | [] [] [] [] [] | texinfo | [] [] [] | tin | [] () | tuxpaint | [] [] | unicode-han-tra... | | unicode-transla... | [] [] | util-linux | [] [] [] [] [] [] [] | util-linux-ng | [] [] [] [] [] [] [] | vorbis-tools | | wastesedge | () | wdiff | [] [] [] [] [] [] [] [] | wget | [] [] [] [] [] [] [] [] | xchat | [] [] [] [] [] [] [] | xkeyboard-config | [] [] [] [] | xpad | [] [] [] | +--------------------------------------------------+ es et eu fa fi fr ga gl gu he hi hr hu id is it 85 22 14 2 48 101 61 12 2 8 2 6 53 29 1 52 ja ka ko ku ky lg lt lv mk mn ms mt nb ne nl nn +--------------------------------------------------+ Compendium | [] | a2ps | () [] [] | aegis | () | ant-phone | [] | anubis | [] [] [] | ap-utils | [] | aspell | [] [] | bash | [] | bfd | | bibshelf | [] | binutils | | bison | [] [] [] | bison-runtime | [] [] [] | bluez-pin | [] [] [] | cflow | | clisp | [] | console-tools | | coreutils | [] | cpio | [] | cpplib | [] | cryptonit | [] | dialog | [] [] | diffutils | [] [] [] | doodle | | e2fsprogs | [] | enscript | [] | fetchmail | [] [] | findutils | [] | findutils_stable | [] | flex | [] [] | fslint | | gas | | gawk | [] [] | gcal | | gcc | | gettext-examples | [] [] [] | gettext-runtime | [] [] [] | gettext-tools | [] [] | gip | [] [] | gliv | [] | glunarclock | [] [] | gmult | [] [] [] | gnubiff | | gnucash | () () () | gnuedu | | gnulib | [] [] | gnunet | | gnunet-gtk | | gnutls | [] | gpe-aerial | [] | gpe-beam | [] | gpe-calendar | [] | gpe-clock | [] [] [] | gpe-conf | [] [] [] | gpe-contacts | [] | gpe-edit | [] [] [] | gpe-filemanager | [] [] | gpe-go | [] [] [] | gpe-login | [] [] [] | gpe-ownerinfo | [] [] | gpe-package | [] [] | gpe-sketchbook | [] [] | gpe-su | [] [] [] | gpe-taskmanager | [] [] [] [] | gpe-timesheet | [] | gpe-today | [] [] | gpe-todo | [] | gphoto2 | [] [] | gprof | [] | gpsdrive | [] | gramadoir | () | grep | [] [] | gretl | | gsasl | [] | gss | | gst-plugins-bad | [] | gst-plugins-base | [] | gst-plugins-good | [] | gst-plugins-ugly | [] | gstreamer | [] | gtick | [] | gtkam | [] [] | gtkorphan | [] | gtkspell | [] [] | gutenprint | [] | hello | [] [] [] [] [] [] [] | herrie | [] | hylafax | | idutils | [] | indent | [] [] | iso_15924 | [] | iso_3166 | [] [] [] [] [] [] [] [] | iso_3166_2 | [] | iso_4217 | [] [] [] | iso_639 | [] [] [] [] | jpilot | () () | jtag | | jwhois | [] | kbd | [] | keytouch | [] | keytouch-editor | [] | keytouch-keyboa... | | latrine | [] | ld | | leafpad | [] [] | libc | [] [] [] | libexif | | libextractor | | libgpewidget | [] | libgpg-error | | libgphoto2 | [] | libgphoto2_port | [] | libgsasl | [] | libiconv | [] | libidn | [] [] | lifelines | [] | lilypond | [] | lingoteach | [] | lprng | | lynx | [] [] | m4 | [] [] | mailfromd | | mailutils | | make | [] [] [] | man-db | | minicom | [] | nano | [] [] [] | opcodes | [] | parted | [] [] | pilot-qof | | popt | [] [] [] | psmisc | [] [] [] | pwdutils | | qof | | radius | | recode | [] | rpm | [] [] | screem | [] | scrollkeeper | [] [] [] [] | sed | [] [] | shared-mime-info | [] [] [] [] [] [] [] | sharutils | [] [] | shishi | | skencil | | solfege | () () | soundtracker | | sp | () | system-tools-ba... | [] [] [] [] | tar | [] [] [] | texinfo | [] [] | tin | | tuxpaint | () [] [] | unicode-han-tra... | | unicode-transla... | | util-linux | [] [] | util-linux-ng | [] [] | vorbis-tools | | wastesedge | [] | wdiff | [] [] | wget | [] [] | xchat | [] [] [] [] | xkeyboard-config | [] [] [] | xpad | [] [] [] | +--------------------------------------------------+ ja ka ko ku ky lg lt lv mk mn ms mt nb ne nl nn 51 2 25 3 2 0 6 0 2 2 20 0 11 1 103 6 or pa pl pt pt_BR rm ro ru rw sk sl sq sr sv ta +--------------------------------------------------+ Compendium | [] [] [] [] [] | a2ps | () [] [] [] [] [] [] | aegis | () () | ant-phone | [] [] | anubis | [] [] [] | ap-utils | () | aspell | [] [] [] | bash | [] [] | bfd | | bibshelf | [] | binutils | [] [] | bison | [] [] [] [] [] | bison-runtime | [] [] [] [] [] | bluez-pin | [] [] [] [] [] [] [] [] [] | cflow | [] | clisp | [] | console-tools | [] | coreutils | [] [] [] [] | cpio | [] [] [] | cpplib | [] | cryptonit | [] [] | dialog | [] | diffutils | [] [] [] [] [] [] | doodle | [] [] | e2fsprogs | [] [] | enscript | [] [] [] [] [] | fetchmail | [] [] [] | findutils | [] [] [] | findutils_stable | [] [] [] [] [] [] | flex | [] [] [] [] [] | fslint | [] | gas | | gawk | [] [] [] [] | gcal | [] | gcc | [] [] | gettext-examples | [] [] [] [] [] [] [] [] | gettext-runtime | [] [] [] [] [] [] [] [] | gettext-tools | [] [] [] [] [] [] [] | gip | [] [] [] [] | gliv | [] [] [] [] [] [] | glunarclock | [] [] [] [] [] [] | gmult | [] [] [] [] | gnubiff | () [] | gnucash | () [] | gnuedu | | gnulib | [] [] [] | gnunet | | gnunet-gtk | [] | gnutls | [] [] | gpe-aerial | [] [] [] [] [] [] [] | gpe-beam | [] [] [] [] [] [] [] | gpe-calendar | [] [] [] [] | gpe-clock | [] [] [] [] [] [] [] [] | gpe-conf | [] [] [] [] [] [] [] | gpe-contacts | [] [] [] [] [] | gpe-edit | [] [] [] [] [] [] [] [] [] | gpe-filemanager | [] [] | gpe-go | [] [] [] [] [] [] [] [] | gpe-login | [] [] [] [] [] [] [] [] | gpe-ownerinfo | [] [] [] [] [] [] [] [] | gpe-package | [] [] | gpe-sketchbook | [] [] [] [] [] [] [] [] | gpe-su | [] [] [] [] [] [] [] [] | gpe-taskmanager | [] [] [] [] [] [] [] [] | gpe-timesheet | [] [] [] [] [] [] [] [] | gpe-today | [] [] [] [] [] [] [] [] | gpe-todo | [] [] [] [] | gphoto2 | [] [] [] [] [] [] | gprof | [] [] [] | gpsdrive | [] [] | gramadoir | [] [] | grep | [] [] [] [] | gretl | [] [] [] | gsasl | [] [] [] | gss | [] [] [] [] | gst-plugins-bad | [] [] [] | gst-plugins-base | [] [] | gst-plugins-good | [] [] | gst-plugins-ugly | [] [] [] | gstreamer | [] [] [] [] | gtick | [] | gtkam | [] [] [] [] [] | gtkorphan | [] | gtkspell | [] [] [] [] [] [] [] [] | gutenprint | [] | hello | [] [] [] [] [] [] [] [] | herrie | [] [] [] | hylafax | | idutils | [] [] [] [] [] | indent | [] [] [] [] [] [] [] | iso_15924 | | iso_3166 | [] [] [] [] [] [] [] [] [] [] [] [] [] | iso_3166_2 | | iso_4217 | [] [] [] [] [] [] [] | iso_639 | [] [] [] [] [] [] [] | jpilot | | jtag | [] | jwhois | [] [] [] [] | kbd | [] [] [] | keytouch | [] | keytouch-editor | [] | keytouch-keyboa... | [] | latrine | | ld | [] | leafpad | [] [] [] [] [] [] | libc | [] [] [] [] | libexif | [] [] | libextractor | [] [] | libgpewidget | [] [] [] [] [] [] [] [] | libgpg-error | [] [] [] | libgphoto2 | [] | libgphoto2_port | [] [] [] | libgsasl | [] [] [] [] | libiconv | [] [] [] | libidn | [] [] () | lifelines | [] [] | lilypond | | lingoteach | [] | lprng | [] | lynx | [] [] [] | m4 | [] [] [] [] [] | mailfromd | [] | mailutils | [] [] [] | make | [] [] [] [] | man-db | [] [] [] [] | minicom | [] [] [] [] [] | nano | [] [] [] [] | opcodes | [] [] | parted | [] | pilot-qof | | popt | [] [] [] [] | psmisc | [] [] | pwdutils | [] [] | qof | [] [] | radius | [] [] | recode | [] [] [] [] [] [] [] | rpm | [] [] [] [] | screem | | scrollkeeper | [] [] [] [] [] [] [] | sed | [] [] [] [] [] [] [] [] [] | shared-mime-info | [] [] [] [] [] [] | sharutils | [] [] [] [] | shishi | [] | skencil | [] [] [] | solfege | [] | soundtracker | [] [] | sp | | system-tools-ba... | [] [] [] [] [] [] [] [] [] | tar | [] [] [] [] | texinfo | [] [] [] [] | tin | () | tuxpaint | [] [] [] [] [] [] | unicode-han-tra... | | unicode-transla... | | util-linux | [] [] [] [] | util-linux-ng | [] [] [] [] | vorbis-tools | [] | wastesedge | | wdiff | [] [] [] [] [] [] [] | wget | [] [] [] [] | xchat | [] [] [] [] [] [] [] | xkeyboard-config | [] [] [] | xpad | [] [] [] | +--------------------------------------------------+ or pa pl pt pt_BR rm ro ru rw sk sl sq sr sv ta 0 5 77 31 53 4 58 72 3 45 46 9 45 122 3 tg th tk tr uk ven vi wa xh zh_CN zh_HK zh_TW zu +---------------------------------------------------+ Compendium | [] [] [] [] | 19 a2ps | [] [] [] | 19 aegis | [] | 1 ant-phone | [] [] | 6 anubis | [] [] [] | 11 ap-utils | () [] | 4 aspell | [] [] [] | 16 bash | [] | 6 bfd | | 2 bibshelf | [] | 7 binutils | [] [] [] [] | 9 bison | [] [] [] [] | 20 bison-runtime | [] [] [] [] | 18 bluez-pin | [] [] [] [] [] [] | 28 cflow | [] [] | 5 clisp | | 9 console-tools | [] [] | 5 coreutils | [] [] [] | 18 cpio | [] [] [] [] | 11 cpplib | [] [] [] [] [] | 12 cryptonit | [] | 6 dialog | [] [] [] | 9 diffutils | [] [] [] [] [] | 29 doodle | [] | 6 e2fsprogs | [] [] | 10 enscript | [] [] [] | 16 fetchmail | [] [] | 12 findutils | [] [] [] | 11 findutils_stable | [] [] [] [] | 18 flex | [] [] | 15 fslint | [] | 2 gas | [] | 3 gawk | [] [] [] | 16 gcal | [] | 5 gcc | [] [] [] | 7 gettext-examples | [] [] [] [] [] [] | 29 gettext-runtime | [] [] [] [] [] [] | 28 gettext-tools | [] [] [] [] [] | 20 gip | [] [] | 13 gliv | [] [] | 11 glunarclock | [] [] [] | 15 gmult | [] [] [] [] | 16 gnubiff | [] | 2 gnucash | () [] | 5 gnuedu | [] | 2 gnulib | [] | 10 gnunet | | 0 gnunet-gtk | [] [] | 3 gnutls | | 4 gpe-aerial | [] [] | 14 gpe-beam | [] [] | 14 gpe-calendar | [] [] | 7 gpe-clock | [] [] [] [] | 21 gpe-conf | [] [] [] | 16 gpe-contacts | [] [] | 10 gpe-edit | [] [] [] [] [] | 22 gpe-filemanager | [] [] | 7 gpe-go | [] [] [] [] | 19 gpe-login | [] [] [] [] [] | 21 gpe-ownerinfo | [] [] [] [] | 21 gpe-package | [] | 6 gpe-sketchbook | [] [] | 16 gpe-su | [] [] [] [] | 21 gpe-taskmanager | [] [] [] [] | 21 gpe-timesheet | [] [] [] [] | 18 gpe-today | [] [] [] [] [] | 21 gpe-todo | [] [] | 8 gphoto2 | [] [] [] [] | 21 gprof | [] [] | 13 gpsdrive | [] | 5 gramadoir | [] | 7 grep | [] | 12 gretl | | 6 gsasl | [] [] [] | 9 gss | [] | 7 gst-plugins-bad | [] [] [] | 13 gst-plugins-base | [] [] | 11 gst-plugins-good | [] [] [] [] [] | 16 gst-plugins-ugly | [] [] [] | 13 gstreamer | [] [] [] | 18 gtick | [] [] | 7 gtkam | [] | 16 gtkorphan | [] | 7 gtkspell | [] [] [] [] [] [] | 27 gutenprint | | 4 hello | [] [] [] [] [] | 38 herrie | [] [] | 8 hylafax | | 0 idutils | [] [] | 15 indent | [] [] [] [] [] | 28 iso_15924 | [] [] | 4 iso_3166 | [] [] [] [] [] [] [] [] [] | 54 iso_3166_2 | [] [] | 4 iso_4217 | [] [] [] [] [] | 24 iso_639 | [] [] [] [] [] | 26 jpilot | [] [] [] [] | 7 jtag | [] | 3 jwhois | [] [] [] | 13 kbd | [] [] [] | 13 keytouch | [] | 8 keytouch-editor | [] | 5 keytouch-keyboa... | [] | 5 latrine | [] [] | 5 ld | [] [] [] [] | 10 leafpad | [] [] [] [] [] | 24 libc | [] [] [] | 19 libexif | [] | 5 libextractor | [] | 5 libgpewidget | [] [] [] | 20 libgpg-error | [] | 6 libgphoto2 | [] [] | 9 libgphoto2_port | [] [] [] | 11 libgsasl | [] | 8 libiconv | [] [] | 11 libidn | [] [] | 11 lifelines | | 4 lilypond | [] | 6 lingoteach | [] | 6 lprng | [] | 2 lynx | [] [] [] | 15 m4 | [] [] [] | 18 mailfromd | [] [] | 3 mailutils | [] [] | 8 make | [] [] [] | 20 man-db | [] | 9 minicom | [] | 14 nano | [] [] [] | 20 opcodes | [] [] | 10 parted | [] [] [] | 11 pilot-qof | [] | 1 popt | [] [] [] [] | 18 psmisc | [] [] | 10 pwdutils | [] | 3 qof | [] | 4 radius | [] [] | 7 recode | [] [] [] | 25 rpm | [] [] [] [] | 13 screem | [] | 2 scrollkeeper | [] [] [] [] | 26 sed | [] [] [] [] | 23 shared-mime-info | [] [] [] | 29 sharutils | [] [] [] | 23 shishi | [] | 3 skencil | [] | 7 solfege | [] | 3 soundtracker | [] [] | 9 sp | [] | 3 system-tools-ba... | [] [] [] [] [] [] [] | 38 tar | [] [] [] | 17 texinfo | [] [] [] | 15 tin | | 1 tuxpaint | [] [] [] | 19 unicode-han-tra... | | 0 unicode-transla... | | 2 util-linux | [] [] [] | 20 util-linux-ng | [] [] [] | 20 vorbis-tools | [] [] | 4 wastesedge | | 1 wdiff | [] [] | 23 wget | [] [] [] | 20 xchat | [] [] [] [] | 29 xkeyboard-config | [] [] [] | 14 xpad | [] [] [] | 15 +---------------------------------------------------+ 76 teams tg th tk tr uk ven vi wa xh zh_CN zh_HK zh_TW zu 163 domains 0 3 1 74 51 0 143 21 1 57 7 45 0 2036 Some counters in the preceding matrix are higher than the number of visible blocks let us expect. This is because a few extra PO files are used for implementing regional variants of languages, or language dialects. For a PO file in the matrix above to be effective, the package to which it applies should also have been internationalized and distributed as such by its maintainer. There might be an observable lag between the mere existence a PO file and its wide availability in a distribution. If November 2007 seems to be old, you may fetch a more recent copy of this `ABOUT-NLS' file on most GNU archive sites. The most up-to-date matrix with full percentage details can be found at `http://translationproject.org/extra/matrix.html'. 1.6 Using `gettext' in new packages =================================== If you are writing a freely available program and want to internationalize it you are welcome to use GNU `gettext' in your package. Of course you have to respect the GNU Library General Public License which covers the use of the GNU `gettext' library. This means in particular that even non-free programs can use `libintl' as a shared library, whereas only free software can use `libintl' as a static library or use modified versions of `libintl'. Once the sources are changed appropriately and the setup can handle the use of `gettext' the only thing missing are the translations. The Free Translation Project is also available for packages which are not developed inside the GNU project. Therefore the information given above applies also for every other Free Software Project. Contact `coordinator@translationproject.org' to make the `.pot' files available to the translation teams. photoprint-0.4.2-pre2/pp_scaling.cpp0000644000175000017500000001211111271303234014325 00000000000000/* * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include #include #include #include #include #include #include #include #include "pp_scaling.h" #include "dialogs.h" #include "config.h" #include "gettext.h" #define _(x) gettext(x) #include "imagesource/imagesource_util.h" enum { CHANGED_SIGNAL, LAST_SIGNAL }; static guint pp_scaling_signals[LAST_SIGNAL] = { 0 }; static void pp_scaling_class_init (pp_ScalingClass *klass); static void pp_scaling_init (pp_Scaling *stpuicombo); static void scaling_changed(GtkWidget *wid,gpointer *ob) { pp_Scaling *lo=(pp_Scaling *)ob; pp_scaling_refresh(lo); g_signal_emit(G_OBJECT (ob),pp_scaling_signals[CHANGED_SIGNAL], 0); } void pp_scaling_refresh(pp_Scaling *ob) { pp_scaling_get_scale(ob); } GtkWidget* pp_scaling_new (IS_ScalingQuality scale) { pp_Scaling *ob=PP_SCALING(g_object_new (pp_scaling_get_type (), NULL)); gtk_box_set_spacing(GTK_BOX(ob),5); GtkWidget *label; GtkWidget *hbox; hbox=gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(ob),hbox,TRUE,TRUE,0); gtk_widget_show(hbox); label=gtk_label_new(_("Algorithm:")); gtk_box_pack_start(GTK_BOX(hbox),label,FALSE,FALSE,0); gtk_widget_show(label); SimpleComboOptions opts; for(int i=0;iName,gettext(desc->Name),gettext(desc->Description)); } ob->scaleselector=simplecombo_new(opts); #if 0 ob->scaleselector = gtk_option_menu_new (); GtkWidget *menu, *menu_item; menu = gtk_menu_new (); for(int i=0;iName)); gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item); g_signal_connect(G_OBJECT(menu_item),"activate",G_CALLBACK(scaling_changed),ob); gtk_widget_show (menu_item); } gtk_option_menu_set_menu (GTK_OPTION_MENU (ob->scaleselector), menu); #endif g_signal_connect(G_OBJECT(ob->scaleselector),"changed",G_CALLBACK(scaling_changed),ob); gtk_box_pack_start(GTK_BOX(hbox),ob->scaleselector,TRUE,TRUE,5); gtk_widget_show(ob->scaleselector); ob->description=gtk_label_new(""); gtk_box_pack_start(GTK_BOX(ob),ob->description,TRUE,TRUE,0); gtk_widget_show(ob->description); pp_scaling_set_scale(ob,scale); pp_scaling_refresh(ob); return(GTK_WIDGET(ob)); } GType pp_scaling_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo pp_scaling_info = { sizeof (pp_ScalingClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) pp_scaling_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (pp_Scaling), 0, (GInstanceInitFunc) pp_scaling_init, }; stpuic_type = g_type_register_static (GTK_TYPE_VBOX, "pp_Scaling", &pp_scaling_info, (GTypeFlags)0); } return stpuic_type; } static void pp_scaling_class_init (pp_ScalingClass *klass) { pp_scaling_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (klass), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_ScalingClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void pp_scaling_init (pp_Scaling *ob) { } void pp_scaling_set_scale(pp_Scaling *ob,IS_ScalingQuality scale) { // gtk_option_menu_set_history(GTK_OPTION_MENU(ob->scaleselector),scale); simplecombo_set_index(SIMPLECOMBO(ob->scaleselector),scale); const IS_ScalingQualityDescription *desc=DescribeScalingQuality(IS_ScalingQuality(scale)); gtk_label_set_text(GTK_LABEL(ob->description),gettext(desc->Description)); } IS_ScalingQuality pp_scaling_get_scale(pp_Scaling *ob) { // IS_ScalingQuality s=IS_ScalingQuality(gtk_option_menu_get_history(GTK_OPTION_MENU(ob->scaleselector))); IS_ScalingQuality s=IS_ScalingQuality(simplecombo_get_index(SIMPLECOMBO(ob->scaleselector))); const IS_ScalingQualityDescription *desc=DescribeScalingQuality(IS_ScalingQuality(s)); gtk_label_set_text(GTK_LABEL(ob->description),gettext(desc->Description)); return(s); } IS_ScalingQuality pp_scaling_run_dialog(GtkWindow *parent,IS_ScalingQuality scaling) { GtkWidget *dialog=gtk_dialog_new_with_buttons(_("Scaling"), parent,GtkDialogFlags(0), GTK_STOCK_CANCEL,GTK_RESPONSE_CANCEL, GTK_STOCK_OK,GTK_RESPONSE_OK, NULL); GtkWidget *uw=pp_scaling_new(scaling); gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox),uw,FALSE,FALSE,0); gtk_widget_show(uw); gtk_widget_show(dialog); gint result=gtk_dialog_run(GTK_DIALOG(dialog)); switch(result) { case GTK_RESPONSE_CANCEL: break; case GTK_RESPONSE_OK: scaling=pp_scaling_get_scale(PP_SCALING(uw)); break; } gtk_widget_destroy(dialog); return(scaling); } photoprint-0.4.2-pre2/pp_cms.h0000644000175000017500000000303111317117365013146 00000000000000#ifndef __PP_CMS_H__ #define __PP_CMS_H__ #include #include #include #include #include #include #include #include "profilemanager/lcmswrapper.h" #include "support/configdb.h" #include "photoprint_state.h" G_BEGIN_DECLS #define PP_CMS_TYPE (pp_cms_get_type()) #define PP_CMS(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PP_CMS_TYPE, pp_CMS)) #define PP_CMS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PP_CMS_TYPE, pp_CMSClass)) #define IS_PP_CMS(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PP_CMS_TYPE)) #define IS_PP_CMS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PP_CMS_TYPE)) typedef struct _pp_CMS pp_CMS; typedef struct _pp_CMSClass pp_CMSClass; struct _pp_CMS { GtkVBox box; ProfileManager *pm; GtkWidget *intent; GtkWidget *colourspace; GtkWidget *printeractive; GtkWidget *printerprof; GtkWidget *rgbactive; GtkWidget *rgbprof; GtkWidget *cmykactive; GtkWidget *cmykprof; GtkWidget *monitoractive; GtkWidget *monitorprof; GtkWidget *displaymode; GtkWidget *indicator[3]; GtkWidget *statusline[3]; }; struct _pp_CMSClass { GtkVBoxClass parent_class; void (*changed)(pp_CMS *book); }; GType pp_cms_get_type (void); GtkWidget* pp_cms_new (ProfileManager *pm); void pp_cms_refresh(pp_CMS *ob); void pp_cms_populate(pp_CMS *ob,PhotoPrint_State *db); void pp_cms_depopulate(pp_CMS *ob,PhotoPrint_State *db); void pp_cms_run_dialog(PhotoPrint_State *db,GtkWindow *parent); G_END_DECLS #endif /* __PP_CMS_H__ */ photoprint-0.4.2-pre2/pp_imagecontrol.cpp0000644000175000017500000001234311266334755015417 00000000000000#include #include #include #include #include #include "layout.h" #include "photoprint_state.h" #include "support/debug.h" #include "effects/ppeffect.h" #include "effects/effectselector.h" #include "pp_imageinfo.h" #include "pp_histogram.h" #include "pp_imagecontrol.h" #include "config.h" #include "gettext.h" #define _(x) gettext(x) enum { CHANGED_SIGNAL, LAST_SIGNAL }; static guint pp_imagecontrol_signals[LAST_SIGNAL] = { 0 }; static void pp_imagecontrol_class_init (pp_ImageControlClass *klass); static void pp_imagecontrol_init (pp_ImageControl *stpuicombo); static void effectselector_changed(GtkWidget *wid,gpointer *ob) { pp_ImageControl *ic=(pp_ImageControl *)ob; LayoutIterator it(*ic->layout); Layout_ImageInfo *ii=it.FirstSelected(); while(ii) { effectselector_apply(EFFECTSELECTOR(ic->effectselector),ii); ii->FlushThumbnail(); ii=it.NextSelected(); } g_signal_emit(G_OBJECT (ic),pp_imagecontrol_signals[CHANGED_SIGNAL], 0); } static void effectselector_addeffect(GtkWidget *wid,gpointer *ob) { Debug[TRACE] << "Acting on addeffect signal" << endl; pp_ImageControl *ic=(pp_ImageControl *)ob; LayoutIterator it(*ic->layout); Layout_ImageInfo *ii=it.FirstSelected(); while(ii) { effectselector_add_selected_effect(EFFECTSELECTOR(ic->effectselector),ii); ii=it.NextSelected(); } g_signal_emit(G_OBJECT (ic),pp_imagecontrol_signals[CHANGED_SIGNAL], 0); } static void effectselector_removeeffect(GtkWidget *wid,gpointer *ob) { Debug[TRACE] << "Acting on removeeffect signal" << endl; pp_ImageControl *ic=(pp_ImageControl *)ob; LayoutIterator it(*ic->layout); Layout_ImageInfo *ii=it.FirstSelected(); while(ii) { effectselector_remove_selected_effect(EFFECTSELECTOR(ic->effectselector),ii); ii=it.NextSelected(); } g_signal_emit(G_OBJECT (ic),pp_imagecontrol_signals[CHANGED_SIGNAL], 0); } void pp_imagecontrol_refresh(pp_ImageControl *ob) { Debug[TRACE] << "pp_imagecontrol_refresh: refreshing imageinfo" << endl; pp_imageinfo_refresh(PP_IMAGEINFO(ob->imageinfo)); Debug[TRACE] << "pp_imagecontrol_refresh: refreshing histogram" << endl; pp_histogram_refresh(PP_HISTOGRAM(ob->histogram)); Debug[TRACE] << "pp_imagecontrol_refresh: done" << endl; } void pp_imagecontrol_set_image(pp_ImageControl *ob) { LayoutIterator it(*ob->layout); Layout_ImageInfo *ii=it.FirstSelected(); pp_imageinfo_change_image(PP_IMAGEINFO(ob->imageinfo)); effectselector_set_current_list(EFFECTSELECTOR(ob->effectselector),ii); pp_imageinfo_refresh(PP_IMAGEINFO(ob->imageinfo)); pp_histogram_refresh(PP_HISTOGRAM(ob->histogram)); } static void expander_callback (GObject *object, GParamSpec *param_spec, gpointer userdata) { pp_ImageControl *ob=PP_IMAGECONTROL(userdata); ob->layout->state.SetInt("ExpanderState_EffectSelector",gtk_expander_get_expanded (GTK_EXPANDER(ob->expander1))); } GtkWidget* pp_imagecontrol_new (Layout *layout) { pp_ImageControl *ob=PP_IMAGECONTROL(g_object_new (pp_imagecontrol_get_type (), NULL)); ob->layout=layout; GtkWidget *frame; // ImageInfo ob->imageinfo=pp_imageinfo_new(layout); gtk_box_pack_start(GTK_BOX(ob),ob->imageinfo,FALSE,FALSE,0); gtk_widget_show(ob->imageinfo); ob->histogram=pp_histogram_new(layout); gtk_box_pack_start(GTK_BOX(ob),ob->histogram,FALSE,FALSE,0); gtk_widget_show(ob->histogram); // FIXME add transformations here // FIXME add border selector here // EffectSelector ob->expander1=frame=gtk_expander_new(_("Effects")); g_signal_connect(ob->expander1, "notify::expanded",G_CALLBACK (expander_callback), ob); gtk_expander_set_expanded(GTK_EXPANDER(frame),layout->state.FindInt("ExpanderState_EffectSelector")); gtk_box_pack_start(GTK_BOX(ob),frame,TRUE,TRUE,0); gtk_widget_show(frame); ob->effectselector=effectselector_new(); g_signal_connect(G_OBJECT(ob->effectselector),"changed",G_CALLBACK(effectselector_changed),ob); g_signal_connect(G_OBJECT(ob->effectselector),"addeffect",G_CALLBACK(effectselector_addeffect),ob); g_signal_connect(G_OBJECT(ob->effectselector),"removeeffect",G_CALLBACK(effectselector_removeeffect),ob); gtk_container_add(GTK_CONTAINER(frame),ob->effectselector); gtk_widget_show(ob->effectselector); return(GTK_WIDGET(ob)); } GType pp_imagecontrol_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo pp_imagecontrol_info = { sizeof (pp_ImageControlClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) pp_imagecontrol_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (pp_ImageControl), 0, (GInstanceInitFunc) pp_imagecontrol_init, }; stpuic_type = g_type_register_static (GTK_TYPE_VBOX, "pp_ImageControl", &pp_imagecontrol_info, (GTypeFlags)0); } return stpuic_type; } static void pp_imagecontrol_class_init (pp_ImageControlClass *klass) { pp_imagecontrol_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (klass), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_ImageControlClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void pp_imagecontrol_init (pp_ImageControl *ob) { ob->layout=NULL; ob->imageinfo=NULL; ob->effectselector=NULL; ob->expander1=NULL; } photoprint-0.4.2-pre2/histogram.cpp0000644000175000017500000000435511266340537014231 00000000000000#include #include #include #include "support/debug.h" #include "histogram.h" using namespace std; struct Hist_Shades { int r; int g; int b; }; // Fixme - no reason why we couldn't create these on the fly from a // DeviceNColorants. static Hist_Shades Hist_RGBShades[]= { {255,255,255}, // None {255,64,64}, // Red {64,255,64}, // Green {96,144,0}, // Red + Green {64,64,255}, // Blue {96,0,144}, // Red + Blue {0,96,144}, // Green + Blue {64,64,96}, // Red + Green + Blue {128,128,128}, // As above but with Alpha {128,32,32}, // ... {32,128,32}, {48,72,0}, {32,32,128}, {48,0,72}, {0,48,72}, {32,32,48}, }; static Hist_Shades Hist_CMYKShades[]= { {255,255,255}, // None {64,255,255}, // Cyan {255,64,255}, // Magenta {96,96,255}, // Cyan + Magenta {255,255,64}, // Yellow {96,255,96}, // Cyan + Yellow {255,96,96}, // Magenta + Yellow {128,128,64}, // Cyan + Magenta + Yellow {128,128,128}, // As above but with Black {32,128,128}, // ... {128,32,128}, {48,48,128}, {128,128,32}, {48,128,48}, {128,48,48}, {72,72,48} }; // DrawHistogram() - renders a GdkPixbuf from a histogram. GdkPixbuf *PPHistogram::DrawHistogram(int width,int height) { Hist_Shades *shades; switch(GetType()) { case IS_TYPE_RGB: case IS_TYPE_RGBA: Debug[TRACE] << "Drawing histogram for RGB Image" << endl; shades=Hist_RGBShades; break; case IS_TYPE_CMYK: Debug[TRACE] << "Drawing histogram for CMYK Image" << endl; shades=Hist_CMYKShades; break; default: throw "Unknown histogram type"; break; } int channels=GetChannelCount(); GdkPixbuf *pb=gdk_pixbuf_new(GDK_COLORSPACE_RGB,FALSE,8,width,height); if(pb) { int rowstride=gdk_pixbuf_get_rowstride(pb); unsigned char *pixels=gdk_pixbuf_get_pixels(pb); double max=GetMax(); for(int x=0;x #include #include #include "pp_menu_file.h" #include "pp_mainwindow.h" #include "dialogs.h" #include "printpreview.h" #include "miscwidgets/generaldialogs.h" #include "progressbar.h" #include "support/pathsupport.h" #include "config.h" #include "gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) using namespace std; static void savegeometry(pp_MainWindow *mw) { gint x,y,w,h; gtk_window_get_position(GTK_WINDOW(mw),&x,&y); gtk_window_get_size(GTK_WINDOW(mw),&w,&h); mw->state->SetInt("Win_X",x); mw->state->SetInt("Win_Y",y); mw->state->SetInt("Win_W",w); mw->state->SetInt("Win_H",h); } static void file_open_preset(GtkAction *action,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; char *filename=File_Dialog(_("Open preset..."),mw->state->filename); if(filename) { mw->state->SetFilename(filename); mw->state->ParseConfigFile(); g_free(filename); pp_mainwindow_rebuild(mw); } } static void file_save_preset(GtkAction *action,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; savegeometry(mw); mw->state->SaveConfigFile(); } static void file_save_as(GtkAction *action,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; savegeometry(mw); char *filename=File_Save_Dialog(_("Save preset..."),mw->state->filename,GTK_WIDGET(&mw->window)); if(filename) { mw->state->SetFilename(filename); mw->state->SaveConfigFile(); g_free(filename); } } static void file_save_default(GtkWidget *wid,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; savegeometry(mw); mw->state->SetDefaultFilename(); mw->state->SaveConfigFile(); } static void file_export_tiff(GtkAction *action,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; ExportTiff_Dialog(GTK_WINDOW(mw),*mw->state); } static void file_export_jpeg(GtkAction *action,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; ExportJPEG_Dialog(GTK_WINDOW(mw),*mw->state); } static void file_print_setup(GtkAction *action,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; PrintSetup_Dialog(GTK_WINDOW(mw),*mw->state); pp_mainwindow_refresh(mw); } static void file_print_preview(GtkAction *action,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; PrintPreview_Dialog(GTK_WINDOW(mw),*mw->state); } static void file_print(GtkAction *action,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; ProgressBar p(_("Generating print data..."),true,GTK_WIDGET(mw)); try { mw->state->layout->Print(&p); } catch (const char *err) { ErrorMessage_Dialog(err,GTK_WIDGET(mw)); } } static void file_quit(GtkAction *action,gpointer ob) { gtk_main_quit(); } static GtkActionEntry filemenu_entries[] = { { "FileMenu", NULL, N_("_File") }, { "OpenPreset", GTK_STOCK_OPEN, N_("_Open Preset..."), "O", N_("Open a preset"), G_CALLBACK(file_open_preset) }, { "SavePreset", GTK_STOCK_SAVE, N_("_Save Preset"), "S", N_("Save a preset"), G_CALLBACK(file_save_preset) }, { "SaveAs", NULL, N_("Save _As..."), NULL, N_("Save preset with a new filename"), G_CALLBACK(file_save_as) }, { "SaveDefault", NULL, N_("Save _Default"), NULL, N_("Save preset as the default"), G_CALLBACK(file_save_default) }, { "ExportMenu", NULL, N_("E_xport") }, { "ExportTiff", NULL, N_("Export _TIFF..."), NULL, N_("Export pages as TIFF files"), G_CALLBACK(file_export_tiff) }, { "ExportJPEG", NULL, N_("Export _JPEG..."), NULL, N_("Export pages as JPEG files"), G_CALLBACK(file_export_jpeg) }, { "PrintPreview", NULL, N_("Print Pre_view..."), NULL, N_("Preview how the printed page will look"), G_CALLBACK(file_print_preview) }, { "PrintSetup", NULL, N_("Print S_etup..."), NULL, N_("Set printer driver and options"), G_CALLBACK(file_print_setup) }, { "Print", GTK_STOCK_PRINT, N_("_Print"), "P", N_("Print pages"), G_CALLBACK(file_print) }, { "Quit", GTK_STOCK_QUIT, N_("_Quit"), "Q", N_("Exit PhotoPrint"), G_CALLBACK(file_quit)}, }; static const char *filemenu_ui_description = "" " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " ""; void BuildFileMenu(void *userdata,GtkUIManager *ui_manager) { GError *error=NULL; GtkActionGroup *action_group; action_group = gtk_action_group_new ("FileMenuActions"); gtk_action_group_set_translation_domain(action_group,PACKAGE); gtk_action_group_add_actions (action_group, filemenu_entries, G_N_ELEMENTS (filemenu_entries), userdata); gtk_ui_manager_insert_action_group (ui_manager, action_group, 0); if (!gtk_ui_manager_add_ui_from_string (ui_manager, filemenu_ui_description, -1, &error)) throw error->message; } photoprint-0.4.2-pre2/borders/0000777000175000017500000000000011400250525013230 500000000000000photoprint-0.4.2-pre2/borders/HeartsLandscape.tif0000644000175000017500000021676611074470402016740 00000000000000II*xxœí] \TUûf6PAAÐ̽BA4—Ô,7\Ñ SYgaöÕµ2µBVf@EËRSÐRl1Éïëë+†Å%33ÐLsÁÿ9÷žsï™Eÿ¿´¯îÃÜ•‘ažwyÞ÷œcaÁ8pàÀáoÀÓ~8px20¦;ŸÏp€‡x|žá%ÿ XžÀÒÊRÄÿó_ˆæÀ º ø'`.Áý„?ñµ†LöŸíýŒøIØ8ƒu÷Dzöm,…Ök‹G.ŠJ¥IXÀË?ëE8pøçÀ¦«Uûß4çd‘ãÀ4¬@€ÈÒRðç¼×Nþ!¹L*“ËdÒˆàÀ‘‚?ÍÐpàðOÀ ¯-ž6j€ã£üÄ~ÚPüG€¾gÁ· ‡5½:bÀ ç<ãdüã:n+x=çË ¤ô.**d‘wÏGyç8p 180!F4{h—Žÿ³ü°üAþ i °˜ØÉÂjô²¨Õ ‰É1’€ñƒz‘{é+Çwð…;¾€¢?D)Õ‹gÌ™5wáü9¶œ ÈC‡À ……åì¸äØðe+ƒ"ÓâýûHhÝŶ³•¹üÚ@î3 'Çgú÷ï׳3ŸÇZŠìÝQ¼s[ÒÆÜ, …¬ìܼü­²i´¿¬ÊÊÍË^3dBуߴì0šô´óg(¥B.“Gº=ˆÿÖƒ=†öµ{Äß'ðmÄÔ‘'°´¶¶¶ m†½:ÿÅ!Ã=ÆÎX¨T.ñîÍÐݲ³C/W·ÞNö6¦¬â³zŸ1ýù^§Až>“&ùx îi¢ÑàÒâbm~`f¦&îÁ.P~[¾…õðu9Ù9Û³‚FõœôÒ8¯çû÷¶kOÓ)—ʘîP •J"%áîÒžyC²x\ß®118ü}!r´¥ôyØÚІEßaÎ]ºÚÙÙué1ý¨õËžµâz EVŽn}Ü\]]ÝÜ\:›ÒÛ9>Ÿ×cÊßI£8÷ìÖɽ´¤8r “b?e²4B^ék9,2=/ · omü†Ì‚œ a³ˆÍ¾{Ë1j$üIižà@X¿ÕƯÏòŸÒÏüÏæÀáŸžÈ êóˆýVb+‘ȶ»ƒ}7{ûn6=Ǿ±|Ú@Qg[{'È}7Æðøíƒ'ì=Ñá•€ ™C&þçfÒ¹Údå¼2.ä]@þì,h²s²Áw²²s¶„y;SÚ ûWRDxZ”Jq@ÝV>HÂ\"ˆŒŒ”†Î}‹8ü;õ¨t]ÀŠñXÛ:ØÙX‰Á=KË®.}\{÷ìáìJÂѸ›Ï°ÿ‡O´ÿþ[÷gøï©Í’Å––d¡ÈŸ4”€'Ù9yy9Y”0IÇÔIvvœ»KEzÙYYôYEGüX¤X/EÉä/¶OíÁË%‘‘Ð,Àÿ0ð,Įßsrí#†Ú¼ØŠä?°t(a× x~WCt2Êx|dHБ࿀×ÕÓ—"ÿxŸ± 6ïݽ{÷ŽšÖšLæ àî1ûé¨@ƒ‚w<Ù€×iÖŠÈ”˜IãÃåtÐ=?S¤MtEçv³Â#!ÿˆðïû'õ&qàð×UŠÇ®î3‚åáÁÒE‹ÜºZYZµ±­³« Œ ôÛÿgá4 »Ÿq/E¼»´tG6EöLääQ€ˆ®ÁßÀæ¥ñ™í«Ü EVzJ¤ Žú‘ÀÞP lÙÎ+¤ÈýƒÃL®PÈáoÎÎ=zv Á—¨ËP¿U‘2¥J¡Pªäòð™C»˜6°¶w3ácZñÚíÿãÛ š]?øJ?.Ý]ªË¢b{ØËgât@CÜC‘Af(jI俸&*„ùë¥,óY×/c‚dÒ¨9í)sÂ## ÿá#2ÂÛúÏüÝsàðt!<)(L:Ñ_ȳ¾HªR)• ¥R- a+61DÀОIœM„õvûÿ,zŒöeüÿxÉ>Àÿ"â#vã(Q]CÜѰ—YéSmà+ÙÌÞ”› ™±!2”õËpµ´ w3ûûà= ¿¥3¸>_t"OLU ÷oóܼ•2@~ÈøP*Uѳz‰Ú÷ÿâN=1ñ]\ð™ ÿyíõÿ‰úOðaýÿxÀÿÒ](ªg¸‚}â¡Ñ°¡:æ$º‚r ܼ-';;;'oƒ4 ~tÿ?ãû¥‘…Æþ?'üFÀ¹?“ H€ÙgffmÍ·$ËÎφÂ¬ÜØA!¡‘2¹D"ÃÉ?²)ïdäe¼™–£JG˜k$'‰”„-_ê¿`Á¢%ËÂ#%~LšÐmÈÄ¥ÁóæN{1 |Knjÿ»è:Q™Ÿö’-HƇ/“ÒÄÇÞä13{šøÖÝLøïlZ13PpÀçY %èõ¿ÿ³YÇÏ lÔŸ©!2¶OH“¾È~h̶<èý5¹Ú=Ù[4ù…Ešµ±jÔýOA"IÒ|Xvô«/>ÙS¬ySµ¬—é[õ’GF®\:ßÂÜ׃eÞ]­;;a7tjpÂû¥ÅY™Û¶&»[Rÿ­N}GùzFýšŸÅs•=So ')’ââÒ¼­ö#^U2¼§6°‹™åô øßŒÿw2ÓX‡ù/ •‹>Þ¾TÜOóß{Æê½€ÿ˜ÞlÖz™@ Óèš’ó¢gÆçdçdåj?¾¾ŒúÒÿ¤w—î.Éeim à–?l {€N4€ÿÛKÖ62Ô‡V›¾Ù…yrÑÉjšþ€ûUÔ¡òÈšaÔ»³trŸøê«³.\¸d!ëûánŽ,qý{ù€øZÊùc#¶œ4HšÿÔ.1E1ÕÑšž×ü¹Å«‚‚V-q~’ZK»žã"ÞNS±y>”ü¢pÀo”ÿ+ñãÄí6ˆ;ÓCÜú»â”šg0ÛϨÿO8l<“ùÓáÿké{w—––ä± ¿lµiù#ÛX)Ø^þ=týë#P¯o8­“ȤŠÜc'ù©€Þÿ{—xs&Í™ë7×,ü‚’Ó·Cޱ̧º)II” Ãxˆ“-Ó üwù“ƒƒVùq ‡¿„£Âƒ$¨ÄGû{¤ø‘-ÐWЏYíÄöá?819¯Ð h‚Áãé°Òô„{ö”îÚ•O*þìèS€‰è9yTÕ!òëõf éøF©T¢:|²Šâ=íý«h;pªjo …ËŒvÈù¿$]G³¾ˆ¥?e t9ï¤@Ç©ö)ò ½{»õ²²°q>ý®uˆÃ_ ƒƒä â=*ó¡sTöcÄ?%º½´¿qŽÄ]œLÛqµ¼»³È}þlOüÂÏ˦XXð Þ³Þ„ë?aÚÚÜòú†ê/>;´7OÃršmþc†ô2о®­ÓëQÔ¯ÇÁ?µ5þ÷ã5ò7+«(ÒSô¯¢÷À œª:–;Õ€ñó €ÿ»::è§‚œÀËBÍšÊíÓ)8&Ç,ì'‹x<¾ÈÊÁÍá)ý•9p0 »élz¼§ýL8€c:P…{ðÛóÿdñ…ÿN¶®ö<‹>³W&}¼§øãÇ÷®‚¡ó«)ïnœeiA—þùÂ>c ö™˜xúò¯7ÛîÞ¼véì‰l"Þg‡ÿ³ý¾,ë‰ÞÀLÍÖݵ?7ÖÕ×#ç_éO7ž|/T]p Q¾»úüTÕŽv#òõ÷îÝúYËŽöË$êüìˆ?¢€hJ?pîê¹z:ø§Y_O¸¯oüϮؘÃTô_…Ì~pq¢ ýè`þ&Zõ×bþãl ¨¨xs2÷#01)%z 7\ˆÃ_C—«UØÑ3R?n÷eoØ…z«Y@Ü¥§Ið߻ﻕ5?Ô77Ô7éë€7®­«mú¾D{ò‹=[4;wĹ€€/°qnù?Þ{Fù•û,nžÅ”÷ñà>v.Æé3ç¸èýÏ.µþØÈòŸòýŒ ¨=þþš*Öõ3ü‡Í§¾Êx ÿý6ëPÍUÿè ª NRž–š˜’ššJÙ‚ø7ú[wwqëãÚ«“Ù?/àÂO.‹qeðï þÚ Ü«ÃFò¿½¿À²»‹«Ñì½û,ø¶ð­®®®¶¶îÀVßÜܨ?ýQÆ{Å;(ÜÅÖÃpß ¿Ï+É×úß¿s6›Qþ˜ö>f*@¶ˆ«~Ø lýúʵ+çô˜ÿXÿ×£Pà_»³k°äO$ÿÔé×Z3Q?sé翵˜á?›Ð @îú„ÔØKü¾¶48,˜€”¤ÀýÜGŽ5rÄ@{Óâ?Ζ(pmAžah9°¨H—½bMêàéá1‚€× “¿\ëÈʦsgn=rO<ñÈ ð°UonŠ‹Â>&7úYíŸl Âƒè ç @±Mï÷ÿ[¯¯Sõ1ÈþGg4×á´ïiþÃÓï·ëŠKÀWñ®âl¼§çÜ7Ʊ\’ò1?91' 8ÙÙèßúë…:Zð×ëÉ xöŸOiáŽû )>Ž,a«þƦ`NL¾•ÿ‹ˆàŸþÒe.qažž#¼ž7ža ÐߦkwÇîݬ9Àá AØo~XàÿÖw£1ÑYÏ$L^  /á¹z™Qwwк¡RâF€ÞÏJ/RÞûþÚÚ:$Ð¶à›½%€ý%û¦¶` rÿoœ0áÿ-ÿÉ>ãØV@ÜpàÒõÖ––_/ÖQÉ]Ó…/ýx¡ å`ßðý•U¸ë·©Õ(8u2q~»%€Ù« tLϪûkq;`IÊËÃÍqùÿá®Æq7‡îöOå£ÀáŸÇ©+ýÃÃÔ;Þ“ã–?Bþg'ûabB„§*Ù+6Œðoi?I‘q²º¾2¡/\pqZ|R|~-ã÷i€.~øD‡ë¯ßkû}ßœq0ðRß0áÿý¢­DƒÛò«!2£É4E'¯´¶ÿÿcðøûãÖ­?nÝü½õê•Ëç‘x¦ª’Îù«*O}[«o¨?ûÃwß~ƒš+?\ø?ožýîœ-EdùwÐÃvÆN4Çÿ{ô5ø;†ºú; ÐÅBÐÙÄíÏCÎÃÿ]Ç„D„‡………¬û8[…å}þý>FãX òe´˜¥eÿ€è”mg)b×~W8Þ Mî46«y~D}ZÀYØZ>+ÑV_¿9~ó´ÌÇÛgÜ”\SúßþˆÐÿÈ!¸éÿc­ÄÑs¿¶Ðü×7ÿv§ÛÚîÝ»w§õòÅæ`Ξ¢âþ“•gÎÿøóõ[wîܾ}ûú…ÿž¢¢‚“£Q`¬ÈÑ¡ž-nÿeZ´;ã'?€ÿ#<Ÿž@dc-ÀÉEôÀÞ¿»ƒc¿çÆû-Zè¿hª{On˜‡? ]'®Š€ôÎ*ӦȱÃ7ìó5„-[ˆ–y Ýß;4.qínÄêÆ3ûTîN.Té_~º!=vþ8÷§c€[ß:ýîô;¿~Ò˜ÑË¿0å[CÁVƒI¾ˆŠ¿ä[5™?@úƒ¯Kõço3øi÷îÜi…àL àù×ß4^ºvûÎ]ü”;7¯ž­àÄÇùAÔ÷cæÿñKÜ®eÛÐß(Ú™:m؃øÿ,\Õ®+\0­«­m/&øïޣ߸yËB$R‰T¾bOûcÂá VD“á ö@Zrdï[2®ú3³|Èþ ;`tbˆ Èx.3dÉ ‰›ŸE~]¯¯,ŽvsìíÚ}ÊÎfœû×á¢?c¨< ¶åÚO„ÚQ7{pâ•û¦8¯Í0È4û²+£ƒá¶ÿ2$?ä³q9àî­Wôÿ©©:yºùòÍ»†æ¡íæyœÜSòîë³Í¦ÿþ[™Ž?Ì}¦ý_[´cÃ,þ{R_Øÿ[ƒ„ùŽpÇÐß¡›óä‘ò(9 IÐKœÀáQ@­ž×¡gzPÁxXhÒžÃå[åD×;ÊWɪ FÄCá•:)i¾ƒP8È?&%>>EWSË4ø5¯ÞäçfÿÂÆïôµµLÁçÌŒ ~¼gÀ½›»–dš¡ÿýkGr32‰ €†å¿áh¬n«±?ÿ_i5÷£¿váteãOwÚL¿u÷\MuÕ^]ÉÚ×f£À*øÑÊí:¦Ý¯ˆíÿC%›æ{PR?CyxÄ^ÜøöŽÝMáÐË}æJ™/P$“ËWMê*„#rEOбNòááÿ ýßøAÙ§ÛbdðÏŒ"›ÙafX°2:1>aÜ€QAIIññq«Åͽgõ—ö‡QW6×ÖbÑŸÖýjq Ÿ]¼cH½[_VÝ5ÇÖo Yþã`0ìÞË;¹ßë-fŽ,Àçî˜ÿÎÝæªªC:­.yɆÿ(ð›» ½ˆø‹€Go ðò4á?.x½`ßÉ,ý=©¢d$¢Â^t[Š-…\k0‡‡ƒ¢?ŸÌ׬­yè ,tˇe‡w¬•3±ÊGrŸ“Ó€œ'020>%!ð}õÏCPß ¿x:¯¢kul  ×)ƒpö² ÛïÞ4ÇHýnbnO²ý—™€œ"$ëÃï[[èøÿ×ëíÑÿA¸}¦ªBW¤+Lô7L`°ªuøEÌ)èrCG{Žh^C»8˜¡÷^ž ñóÇS“Ëßðè,´´´q€ÃÃÀYàÓÅw†—ÕÈ(ÈþððHÈÿÃÛ£Ùn?bœ3ˆU‰Ê B ü|<5WpBìºÃ?w^¯o¼D×òî·ýqó·Ÿ›˜È«d韲 t”§ 2 [|ˆ¶_¬â'ä•7\ƒñ?lÿ¹~ïá?Û îüPý¡®H«ËOð§h϶〟)ù„…[Ñ —÷ïÞ“ÇJ~ŽŽŽ=¨‡Cÿfè/—>g%¢ Àü qøŸE{cÚ5/N}ùe7oy8ÅÿЬe‡ï~;†Éû™Š¿áX@¦í TÅCÏŸ@Y€ØÍÿÄÖ_üõÆm–nmwo\¬Ãy?üX9~˜wöfк/Ý@û'ƒ¢<22?h¢R¸k1ÓLÔ!Ü8uHG|ÃR&ô‡û%kµ¬ôÏ$Ìäÿ[RƒÆ´—Œbͧ©ïÔ˹ï€Až<ø…ÁýŸ™)7C€ÉBŽÿ:@`ßǵ«•PÞÞpržóäiÓ¦MZIÕÿÂÃv—:Tv `M”q¿»ÚÑ dƒ¥*:..ø—R"ÿs—3öµ·¯èqÀæü¸ô¿;ÌÿÛ§ 3Hšµ?➤—|w•Êý© ÀLñ¯C¸U]QRHEô[‚È`%+ö‘€ÑµÛ7¥Ég$„1ðzÆ‚oÛÝÁ±wÿác&Ïx- øµàåË/2Ë~™Ü¿åÿ¹9<–n#§/—„…-[2{òè–í)€"Hÿ©¯.£Óÿ°¸=€ÿ‡Êöid¬¼GHÿ¤&À ¢C€¨X]Ó‘Íïl^½©²¶þüµ{¦JûÝ«õdÀŒ@áÝOΛö¼o0Ìhý'þ÷Ÿ]ñÿ@üÿ¸þÿvCÕ.äçs–âÅ¿ü'èp¥Ÿó«e’1änHJ nÇÿb þXÝíûŒ!‘ÒËŽK¥)ý¤FüÞ‰2B ‹g¹ÂÌÃÖ÷õp™2:Z­V«c6¼—ºÈ{ ñ03 |—!ÿ_ ˆ§[ðIyYYYùN51ÈúXúc€ˆfù[ÿºóêUý¾’íoÆÄåwö—;f©|÷W<æ‡Lð®îz»Å9´TäfhŒ ~Ä@84È>òãõTüomý¥êÿCq÷JÍôœÞÚm™qËæQ&`Ί ºä¯e‡þá rÖ'$«üÌ·{õ„^>þAR™¹_j|œd/ ùo çá`½—Gª÷UêèèØ”Mº½Ú¬Ø!¦ <Ç—¦Pü="Œîÿ+:T€ò×ПýGt½¿ …üý‹%÷Z®4ž8øQÙÙíò·š :~˜Ú¼u¶ávÇ ÙV·‡þpÞOŒ Ã€Œœýµ×Z°úßÚúsËcò¿­µæè^Íl]q^úFÉÂYsæÎ—ëˆ!¨ý—˜Ôñ32@Ô\7ÈaçɯÅ®õ}afd€ù9„9üÍ!¶utíÓ«ï ]˜€ˆ×m|DÀ4üŸ°8((4x‘±Öo¤ù@±tXd)²4fÔÄEJYÂ[o…öx >O<+;דgÎ_è¿Rñê¤YcÝz;ZYñ-ì<^˜K“Çÿô1fÛ‘Š£Ç¾7‘XmnXþÉãG«8~¼¬dK|°!yŸ”A ¬ì“¼uDÍ™ˆ-þ“÷÷IÇ…û[çˆÿ¸þWÛüŽùò®tv~ c ð<Àš‚ª«m÷o¶àÖÿ–Ö_šçe(´]©©:udøñjŸÄ%®ùk€RÓÿÓ ÿƼlLï…+‚%r#Ú?ˆÿQËŸ·‰lúùŒ;zÔâuo§® á†ÿã`7bF€46>.&&&::>>A"}mÔHç.¯*cc£é_…lJ”›÷=z´â«+ݬÐéZy Ü;v nŸWì^üú~Šýàq° 6Šid†3 A Cþç5uœIwÄÓþ±­€µõ¿<)›à(@ 3á/Ó LÝÌÒUÿxû;5ìŸ2×.54·>^ÿßý¶Ë5ÕÕ_ÜYÄdl’ÏÊÄÒ_ô™î´î¯r‚!ý_œ¸20008âaÑ¿ÿ ø±³ïرcÇÏ’§¤¦®•=÷T?Šž<:{GÄEC/OÅö€à°Ò§ò_(A7á= *6‰™)_ÿEÉÌÞôêÛc ¿Ä‡8 MCÅþ5’ðµ{©°:øn4ö“m@ý@ð4*µüÜjÛÏxð3°öì¥vFÞ=·ÿ­!@L³ëßð)woпpûõ‚¾ñ—Çz!𮬩ªªúúãBVÝcš~ˆ%?™,lLÆëÿ†ú”þf,¢üø£ð?jÙsbAWwï±c}Ʀ¥¦¥­‰ò|ȧ…Ãß Â%*‚ã´€»èhúåþȨÐÍ´½Ç)¦W|^þJˆ!$•àšú¢ À±Ïö$F†¼³·ŒÀ¶ï¦×‡Ñü˜Ñ?Ä ` åÖ3¤«õÌ€¼Às“|t¿Uþ]šÌÜ~ žqû:âK˵Ÿëõ—:<ÂÀè]Ÿ‡“ƒÕ.f>bbÈPink*½î'°Éá¾ý§.^ùèüW¼>ÔÚªtÿs$)ii©©kâ_yÚŸGO—djvï„£WÑi¿š½Åž€SÅ®ÏÒd?ö©vºµÅÜŸÓ®Ÿb?üΧEòÐèe´ @áz5;ÎGý„è§Àãƒc>ŠªÖÖZ‡Ûý˜I@³,×öóþ,¦ýÏL ù);O?ãkHüom½z^__wþñÆÿÝ¿ÝD/V¾‹™Ý“=!.‘€dío'ÓkR›lª®L\¾r%â{Å?3:€T&™ê1ÕoêLß1*@Àÿ´ÕOûÉá‰bPëÞ1ïI±_Š(0ÀQ€¼9z|vp­,ïs:ó§޼¡.-§èOuÜ»FÆLÀnì¤@H”½ÿßGIªÛ®³Óÿ Ù?k/>&+ïßÕïÍ&Æ¢Óôm_\¡[ îÝ`èßz©ðÿÂãùÿ¶gOQK|¹_‡òÿ‚"maa!ÓéÃNÿËŒÐe®¦ƒ´Éç¼GxzzÒü_%S<ÐãÃڵїÊ8Ä"6\™ ¸·µ‘œø¯ë e4⸚êòQÂ# ¨±€¤?tŒÊ>\A9{ø8^~ðÓŠ£4U€F४à`Ù!ºÌ@y~Š÷u¦é™è½&ÞýÎ$þx4°™i?:ŠÛ?ÀJþTð®î[<ÀבúßÒúËù†úúú‹Çÿ{—þ–¨ø”¿ïDÅ'ŸÚÿÁLxìõ )pûF¨þ!0)1^8oœ lä|H}Ê„'Ç<°ùϨ, J^“–¶:5% ²DikTÞög’Ó¯g¨š!7ªÄ«”JäôU¸ã‡¹Äá¿*êÝHíãÇíçÿ`+/ÈØyŠþ‘ø$?%ŠçÃ6L ªT®ÿï£qé<Û3 È™ŸS•¸¥ßÅNþMméÕã9ƒÚ~oeä¿KÍpÙáf“F:„»õ5Ô: ÀÛ¡-ÚU®¿Øzíê/—ôß~^œ¿­ þY Õ¬KN¤òh¢ÃƒƒV,ž<ÜÃkÆŠ•8üWoI} ÿ7‚:y5õCêSüOK˜ù´?“Oÿ8¿^xœí]\Sçúvkkµ­zµíý×*¨ µûvÚö¶v8:ìm{{Û:ªm]`"Ö«H@©£Ö‰à'K%€HÊYIØ á¾yN XÀ¹ž'É9''ð÷ûž÷}Þñ}_z—830‹„ D"æ)Ià=p@/ø r"ù3±±1±Ì+†{d߯ÄF'fÇŸˆŒŒbÉ<¢"OÞî%`~ºXÌ<Å"|Á+pÞqŠªkétYY*U>€“êú­æÎý£—²i3@PPÐæ Í›‚" éOÓk«««Õj5s¨ÌÏÍÉÉÉÎ)éÒ¯jÎHL`#÷¾\†ï7ÕUÞH9N¡ÌEÈ:7·•ÌÉÕgãœç}÷Á+ŸÌþcî"ù–õN,M\a©»Têé ^àÈœ¥Òù½Ì=(yÜ7ô¶9>3üŠ ýEè%vv¦ôÇhÀ \‰Ü÷ÆA¾CÂã'4Ȁ˘¬–’3Ç€`^ÈÛ¶ Ó^D© ¼.¾ùäRc¶ p<™࿪ª+œ¤¸²#ñŸymÞvª”~`hÔTî3¯ªâÜl†ÿ9Y]á¿¡&5ñ?!!þâÅÌ£5YQŠ`@ùPd°ÝâåFùï&Ý]œøË¬çÿÙ¬ùs1ýç/ß´%p©“££c‡øï(Xæ¹ù^’Qæ”<îz?:xè[Xõ%wúýÓ ð™!rýBäþã%Ô÷sÞ3Ï¥ág ÷1ïc ñ©H¯¯¸™€ÿ‘'ºKXoØô6’£šÎr)GE·úïCúõíÃðÿcÃg¨ü1ÿ÷‡oÄXî“ø@‚•€³3º‡x~,‘þPûCý{©ª:! {þHh"OÝ*@€ÞàƒXè{]ßI¶–ç ៅ@V¾ÖÐNr ‰ „üWœ.ãü¬:DÿjuÕ-Fýg SÜ…_Ðxr?F¦¾Qy~xrû¡ Àþ°[Ý—/wu ÀÍÍ#(¹ù–.bÙO óçÌž7çÇE?Í]¾%8 00`¹°cìwr®@ć/OÏÅ´?„ÿn±³è‡ßyîUNà/$†B(BÁ>ÑÎ4ö'±×Γ8ʧ^ñû~pqª¾åæéÌüÈHl ¢v¯\*‹Iò¦  p)5ņۡ¹ËL¨rªt'd+ŠNl ú-4IͽYƒBÿêêŠÂ€üð™}£“ñ ƒº´DþÇ_)h­þ ŠOý¶3ü÷ƒç.^«V—”i[*Ó¢w®õtws[{œüÒêý+Â_Kj)©ki¬oÑ•Æïß¶EjJ@ 0¾ç¼RŠT?6žŽm@ßÞ=zõöO¡d…çªåv½ú¼´Üé›É#z›cóè*>2\;}=ÁÚÆÚÚæµ¯‹Ä޳æ#¯/"Õ/$¦F.ÈÙK°À‘?¼#Z}€ýsÓ~äó”×htDþ€þ•ÅLðO“ÓÙ|eK‹6h¨þãSÕí~ÍPøÇ®ãÑeeFõª3¾‡Ø¤DÓ­[ÍÆáέø-.\'ߊóÔ0Xê!%É?O).0)ýŒGNßwÆöxökWw¹\.“¯žûö÷«ä¾òÿJ€GwÁ;‹€«Ícƒ0öYb¡‘]ÄÆÿ¤€"6öÇÒŸÄbù8¬øi¸Ï!?2I-šdèô#qic{6ºÙ/憒 ÙUÓm^VGþkî0öǨ»r(±ÞèoÑ¡äŸZ]Yry~ŒÂΜÆ<Èþ_ʸͿn¸‘V«7´ú©S-â¼oýy‹¡1e¨C @‘«'Íþ{ýÏœÜGœÁŸ-›3ÛÕS.“1ô—Ë|¼|€!y/tè×ÎXãñÀÁúG1CmÉOÿÃ8FXÛLüؘÈrÌ}ŽH óÍúáwÉÊ=qœÄ?ò÷(ü§m1©M-ÍÇE¢ô?N@#±GJ¢~1b? ÿ—ïédíŸíÕùˆþ9…µwPù7BM©11 ùU¥y ð‡?8µó#ÚCe"¡BB|Îm¾hЛ0½¦ê/l\sÆA €£‹ þ¥äd€× ÎÈùûxE=y9»¤²†¡kMþµ‹»ÜTøµ¤ÓüYz~TYE5w+ô7ñ[êAÙŸ15 7Ô–ÞÌÍFÞ†H:êó“ ý¯^Ï-¼¥nüëÑ5‡;;¶á¿€p®ÄŽŸËr%LìÙ£—Ãl_(¼þ#—!ÃÀóã'Ì=ºyüŸ%ÁŠ^òïqÆü7²öópÿ?¶"íú!†€L¯>xš†þ1l ›ˆ‰9Ýb“*’´ÿBéìÄÙÄ, ËÕæêS~Ká/t~˜ë PÞ?·ä^9RÍ Ä-Võ…¹8@I‡KÍUé— óO-ÐÜ;{²}U›€‡à%pñ`9/¥‰4@êùë¼1CßtZ…S‚(órV ÈeëfüëñÇüâDºzÅßÜŽÿcß%Óÿˆ ©?RøÇÍÎ’5GÏÐXŸ¥=› dŽn!¯Xvždþ8XÒZ§_ßãrn;?Êë€óÏÌʯ¼ãž¿öahªAmÿÚFâçuÚÒ›4˜“]XßQP§Y¿DefY‡ÿI¡Í»´ÎD€ÞººÍÿ‘Ò0`Ö÷«¼±}ð‚i?’üc…€ì×E¨ÐëÑQOòý@&žø»u‘ä«Ñm¥?kóÒ< žöÐéÀË6;M"ýX6ÿÙqF‰)ÙÉ*€ãç®W´õ{ºs\„ËÃ*;=Èõ9LäŸ]|§ÿ·CsƒþÔjš^4 •y´ çFG}ySi ãþ“®ÝÙÅ Z+Æ~߸¾“¸³i?Oî$ üúxÓ™ÞÐíËqÚ>år_OžìÑÐavS–~nÿ÷‘OðMÁ‹ºØqÚh›ÛÀ^ "ùÔ Àiÿccp±løKæþPÝg È8,>AÄÿÉ‹7LŽÕüî;+L~r[Ôß`üvÅ=‹¢[@쯅]Õjc­ÓäçàJ`NQ]ÇìþÖÕKL䟫¹‡j…ƒå&±‰î?‘«”´üM¤%vE)俌•þ¸(€U_Ž1y®gÐæ@ÿUkü$ŸŽ3÷`çÑ}J4½ä+Rþc>' °w"Å|2ÊÿqT€Øã ›ï#•®ˆ=ŸVÆ’²63öô™SŒ 8qµ½fyC}Yè¯+ÏeèOÙ¤¯Ó`ú·n-j®-ÉE…À|uÝEzbBüåÜ®Lîti¿¹š6‚•AÞ$édžý$ ¥¹@tíÃÒÑžXÙšoÿñ­÷†þ ½?|ÌÜÃG+<ò¾óÂoÞ{ï½i?‰¿lKznP "‘ÒdÎ/w!¸úGP‰÷cbNEŸKJ<Œc¢O+« ܦtƒ^W_”¡<{›Ö ±(3»àžÒº: b¿ZÛæo‡1¬ÿ·iÒmMiñ )eý½»}ÞQÑs%;”Û‘ððð`4@b xÂôŸœýe °j͆÷ýØèà¿æçáíLäa&ô飗&9Ø;L˜ôÑô±Ô 6`#ð‚@ÄúØ.È®ûÅN`€ë®“(È?9« ¢®±¶¼¸ðúyœË2QŠkÖÕ—”šÖþ]ÝU7rJî­3Õi«ÿ5¦þv½¦ п¹£Æ«J™y糓;ƒfÍ鵌hÃ$]Ü*©ï†À­Û‚¡Û×{¹{6`ÎÇ^r\þ§M€øÌ×0œ÷GÎ7,{ÁÜž‡N˜` 1~ÂËÏ·ý[ÿuþ³ó%´à‡“€øüëAÆÛ3Ž?áfu£ ýf½®¡:ë”q×kLEýÝ.x5•æÞë4ºAW SÓ¿§¹¦ðF…ÎÐÜÜÁ¿ÂP¥¾¯ôgP{}¯×’_~^°˜³&˜£À¯¢åføoGS nUTT–çÄýü«›$F§½XÎ㸟\É|Öl„¼ßˆƒM¾É+€ޱ³µC°µ›pþ;,’õ¿Ðr "vÂm:ÀÅÈÿsiÅêFî¸o(¾|ŠqÿWïKr»©°²ñWÑ €¦½Îb}]uët8x1ÜÛ¢¿)è+ROGóYôÓBRü[²ü ®¥±¤ WbõÚ Õ‰@©‡”*~Ê~ðÖ[Nÿ¸ gVûaç €?4òY<ÿ<2jC|[ô²³Û.ýǽ#aÙÃ1%?»ü/à¿[xtìéĬêÖ#­¹JWtÏ)‰Q_¥½ÎT_«Ö¶G†úzàýï×¹‹hª×ÇÙ¿ÞéhËT­¿¢W'n÷a;€é‚`ž8ýGªÿœi@ð´‘id ÖòMAæFÏ>?>hðàG=ã`‡ù%Àøöø?fâ\1»þœ Êÿb‘Èy™‹Ði‰P"X¯È˜3ÉEõ&\™öRtZ§§ðvúú{×ïoü‹ÚU ÷t)wy¿¡o¬O= X%X¸dñb¯S&*¦ ÊP™[ Àå?pò‘ÓÎ_âûiü¿º~øã( à ¾+جè=pèßž;nŒõ³£íŒÑž°ÿáRšüóÄÎ"¡³›Ïº Í~[·¯ñ^%;‰ÄbÉ–g®•™Nåç],º_®þA ÁÐqío~èk.ïÝà,ÞxÞ¤åÔ¥†x{ЮÚÂ*þé28ðõ$¹”€6Àk"¿0€ùг¿¥µƒ= =<â$€é`kë׊qÛ?]HÌÓ±‰i™¥ Úø˜¤ÈMë×z¬ôŠ:ŸÞžëÕgu¼þ݇ûùûö¶·bYÓåÍîd ”Nî_Nj׃»÷lÁÉ̘˜þ¨¹Ið£ÿ3ìíÚÅxØúKŠÖ˜ýÖ/|íb´ ìô=˜Ç•óu•u9GÅ·?ì+îÊú{<Ì‚[|<Èz€ÄxzãyÿrÜL xx).¦ñcyð€ù0Ô$ûi À8ÀÀáSg!íþÇËÿˆ¼¢L.NYQy›À[§ë~.‘FSú¶•ì” NôOsþ4@†@úGjnâÎ Tÿ#e@†ÿn=LyÜô{Ê’Ý(ém  +ZÛNu2ZþºÿåY](VñìïÎ(ß¿RJ–%)@¶ó_ζbýïu(õzÖå=~¤ ‡Ÿ27 ^ åpöÛÙ·MZ[Cús¶ï–Ÿ¹Ëíz<xÔœ]ïAÚ~ðìo_9%>7ñ뎧¦«2b¶ù±¹?ðüž§¿ù0htkýo˹²ŸÔ&ÿ7ÆzÚ1ëöIöoÇýêãáñÀ@Ÿ³Ó.Žº|Œû}9E™Ü;ü’25C•v"á“yø=en<ÌèÿŒêõáýøÊÖv›­Z­Ç¼úͲâ7YœyÉïw§*ó£âÈJRöGêßË—4ý°3i R*•é*Ur(®ÿ! ëÏ|3à}†Õ.çm€íÄ¿kÄ~‡Oæ%d‚0]ú[(öëüj<º=´'H©/vÅOš÷£=@âҔʴLUúѤ ø1[ý·xùƒW_žl;’_&ôþaŽÿm)ëÙ€ÀvÂtáä±,ûǽùåb‰˜Îû‘@(ñ¿ÿê<ÌŽÚh7)[ÿ+Ðå¾Y€”yý™œÊð?Cuý¢Ȩ€å˜ÿV/~îè³Þ[¶z¥Óç£Ìˉÿeôío,±íÐ*ìçðÒ¿Ds_¢µ¿ç§ÎEð‰ÈÒŸ8 ¸„óòÿ!DÝi7ºú‡Gÿ29gÑR „Íçú+S¯«Ti[P0ª¬ú¿ïˆ·æû†îÙ¥Øö{ø—¾÷ÔmöçÑu<2â £ØzZ´ßþcûâl‘d¦ÚÌþ¯ÄvÓÙû—9 –_àûxBÔŹÑUàÌ_\éã´Éh.0815E™’š¡ReìA™?Tþß6yn–ø.…BÂC÷þwÁËf"Èÿ6úŒž8éùÿ3Ú}À¨v €í+ ~¿=ÎÚÆzÜ‹S\ˆÓ§û~ãþ?ÁÊ›æŠ<Ì€ú³®ìV ¸÷‡› ¬ýͰ?E©LÏ̼~»ôßk°ýœ !ŠÀ~d;K­ùÕAï>ž0iâ„Iã-zõd£€AÆüçv½öõ›ÿ²µÝä9KÅDöÓU?ÈÒ_’-æ‰<̆ nt9@4ó‡Ýðƒtýá%@|·^fÔ?cÒU™™I›6 À û~ÛîPÀzHý`а5#yp·Ñâ˯¼è`ko÷ìÈgèìýŸm#pýoât0Éßyꄉÿ‹I¼Ï p€“¬ «qòèþh¸èÊvÿ¯ûK'ý‘™ÿ'÷ø¯R]ßFÛÿ°ùY0d=ä=2 ÿ·ÎÁï.z¿<åŧ­¬¬†?õ’4âmZe0É´üÿÚϰƿ`þbR꣺_DÚüßhîÈÃ,¨9ãJ7‚ë~q–û!k~!3°:ì*C~Fþƒø?3m_ìü € €ü¶y}DýtÍÄ~ßóuÀ»Š>o½øÔp+ˆ¿½þgÄò1ؾZ}fzýû¤ÊØ/¢-¿Ô €ÛNž§Ì=y˜†òÈ•8ô—™2vÛZüG:`ÃYèýSRÒ®gª2SoòÛ°V*ünæ—ó|w„"â‡`Þ£3sµá9>¸‹è=Æa¤•¥% ¿¥åßÞñÿöU8ñºÿ¤Ï¦Žg{ÿ¨üÿÒ7ÔãÇ:~ìúQ×¼¬X¿¿ó;qòø@sÎvwO²îŸgÜüÏî¶n/à>0i™™YY©áþë–|ñá»o½ñöÏ›4ó‚.Ä|>\ëéƒÍJœn>8ðÆ’ö{v„¥å°O~˜9u²uÿ}žûhêÌY6ãÛdÇMõq}2×_hd „µÇÒù柇ÍWÑxâ?»Î'Iû‘æß  Ðù3úÿZvöõ+é»¶È¿1í­×ÞžêûßÍ|Ïïërw²ó§gŸºà'|­ÝyNÉHÿ‹QûB‚‰¼gÛ|pÕŸ€Ž`°ctOÏxÓÜDê¦èkae,ù1nÊwÁ9õõµlY¥©i‰üñ5[P€ëÿÚhµj­6e½XHB~*ý%n[SÛÙ¶‹ÇÂß|ñÖÞìDîñGqšÿW/` |Tê“ »~#㻦ðÓ€ºŽ>Cÿ-M𿿨×(ÕZ†üÀh˜gc~ÐŒWíÑD`›÷èáÝ4o°±§H Ð×U™Ø‚ÇÃ]FÄZØäíCgú9™ì×`Ð÷¯Lú3”tøQÂ+¨÷gÝ>)âà¶9CÍM¢nŒÞƒ[K~#LtË«Ž_C€FÛP2ó­IÀÿ[/¿^Ïܨ­¯?ë½jK ÏR YôK¸ÔÿœÖÜ#ǃúL_o8ñÝìÏ(÷ÿëöSWR÷f'éê ¡ñ~×ÐÖè´}¡•¹IÔÑë1Sq?9¿Q޽¿)€êòŒÐlÇOú³Q£­kÔé›Án½y ‰É{\=¼\Bsx‘¹G†²ß}}¼¼å¾œ‰?´ “ûn=uôý$ 1*ì+¸ÚŸÐŸ¥¾‚(…ð/77‡º5z›JXf3ÁfÈ ¥*àò‘÷G*@«.Ï¿(yÞ#G§c÷ªjÖéµêâó»n+/ÔšsÀñx° O ò%bŸCtÃwˉ+ŒøW¦œWp¨ÍÑüÄÓ³µš„Ÿ…Ïçõÿ ç#­ùo9dè¨7¿¯Ú´óbv"¼V«!ô‡j@[S{6ÛÔö šÒ‹—5÷ñx`aÈ düb—þÀ'ðD2C~ejòÙ¢0"9[ý〠!aëŸ57…º7z±Ì†LÁ„™ÒƒÉ9·j5Øñ#€Êªµµ5ímbÛÐÄïÙÁƒ…¡\ub ý9K~Èä>›¢’QÓoÒAÚÕÇNðå´ýÒJ k “Ù˜›AÝ=i`iaaieùè»ÛãUuuuµZJ{"ýa¾4SÛuóàÑMnFd¥?»×¯LyY‰Úþ“"vp*~´Ë‡Õl˜ìrâ7¸#@þ[X<ùØ ‹§ŸþäЯþ¨ÐÕÕª«QÊ:}5á?Nªµ|kÁ ÍÎMô¥Üà#Ûq9ÿJeòQ£º>ÍöÕúÙ¶_¶ °Óm„¹Խѓñþ#F¿6ã‹_~úîó«USª«YáOä?’jSÁ?mÁð?+7=jëêÖ!@À‘+pÎèüO>h”û'ê¾Uæ ·ar>þ¿#ôaeùÜT‘"ñÊÉCû‚ÿ,ÂdÇÉ~µQôO,FûDSIþÍ܌ص얟àµñXí_‰@rwŠ?I†ÐàŸÕý À;»–ðþÿŽÐï½avóV•••——Wj@»Ÿ†¸~ªû5ä± ¼üçÑqÔWæfœ _K–ý™¿I©)ˆþ ùÿ ;¯‡6úSA`<û—(;çóóþï½FmÙ+©¸¤¸¸¸ˆy•s2|¨å—¾co1‡Zžÿ<:ƒ® 5-a÷j¶pÝî‹©@û#ý¯T&Pš³q>—õœ– Nw`ˆ"L4¼õî3t˜9˜Ô=ÑoJÌ©¼’â"„ÒjâÓž_Róçà§u|öŸGg ¹‘žš¸g 1«CϦâõ~à3åÂ>ÊxÒÚKšh €êN0>³ÍÊ_îâ—í(|w"±ŸE%ÕˆàxÆ+HåŸkùôN¡þæUe¾uxëŸm§aÝOy-###=U™ž~ö¨‚¬ìÅ&÷8)ÿÒÀVQÿïŒ6ë~Øý¶OÐ×ÔXçÑåG åè_TV­QÓÜ?nõ¡5?’ wjxþóè´ÙJeÒÑüÿ7–qúé¹…Å·nÝ*ÉÏÍ»‘MÉÏ&ÿHï#@¯§>ÖjDøâÈÁÝ.O˜…MÝ}^ » â~¬ÊÙ$¿Qõ_ùBóyþóèô•ª«ÊdÆøø*âR”©Y¥ZN§g kjª+JØË%8Y胣ˆûg»aÿ›ö?‡MGÚç?Átj‹ÿÕó¦ûxœí] |Õ¾î*\E\@P¼·ëB7ÄÖ…¶iAžÛS¯z½êE|Âã¾+zy¢"*Ò „+t¡ 4IKKÛdf’R¨ €K)-Tš„]–nI×lÝKß93眙”\()á|Nf&“èïg:ßÿÿý·3^^C#æî¨2&„&»Ín`‡6›° ×ìüw¿PPü&ô˜è û ““6—èôOÛz’ÏØô›ä 9¿)„£\8*ø ÂE…pÿ„ÿH{kŸ;úÆw´ËjŠR^¾É„º´àsÇR óì„øñ<×1ÿ‰9€'Ö3n»(.UØô:`ŠŠöô†ÓvgŸO; •Ëå"ÅÑ9Úäd­„\ù^_–?³…à¶É?|úz·êÂÈ—×Õü/hx'o³ Î^òœ?ÚÃcOß?ÅyÐuB§×èýOZϾ°JB{…œˆÂ…ø)á¿üÍ‘®wtHR±†ã8–ã4lê쫼|©>eïkÄçÁk "?æ¿M4Øè¢ü§øèm¬Ô  ×Wmî=ûã–ò¹„ärQó+x˜OÄÀÙp—;zÔüœ° Gl„óš ø­h€ òT{?Ÿ:ÌL¦â‹Z¥ˆ!‹oyC°ñA?—;zÊìwÞ‹ÍÈg5 à¾Z“±æßsÞ»ÂMìúx¥ÉÞd„¿`ŒM(àG,w‰ù%ÝÞÞ§ 8'zª9tØ ;T×Õï绕ˆâ B~QˆbxyÚ0é =ò/÷Ýüì'k`´SRÒÖ®ýlŠ»è5Ô1}·ÕÒ(dÿPÀØ`ë«ÿIúGþÂI+MPüfô´XZjœ°ô¯1r"°Ê'._"ÿ±-+6§û‹7´ß=!AÁÁÁÑ«6³œ&3555-måóîcØF˜â„­¥ÁhÂÞŸ7V’þÃÊ_R@fÿ¸“òŸâwÀù‹³ÃÜÑÿgº‚L…˜îË€g© •&ÿÉ«È=!Ð?¾&½ª`µÊ´€U¯»‘cC-ÚÙfni0 Ñ?Ž,vIIRôÇ´­´Hñ;1 ëp”eg¢tæ¾BþH`%¶†åØOC|…;zT@0Á¤ÐxíÚ…¯ÏŸ. vn"\ž~ë«Ã6ÈH~ìýÆf›„ô6»4äGA¾ÜMÅ…FÕ¶l¹TãKHjÊ<–ã´ª¬y£á}õ}„ýA@L›>õÁˆû' ?.;Ü3çýÇlfs.ÿ£€†Rå#„·ò‹ÆÀN+€ݦë$Y–û¨& ^àmD¶Vú5…yË÷òò ½¿pÄG!A÷Œôv7á†nŸ½hQº®ÕbnBíBýßhªo´Júÿ¤m$ˆÊ´@qáqBMŠ(ˆ{ä()ˆOÊÍÀýÃB_¡6ãïcÿ:óþl„ÜuÙ}|}}¼ûZ¿Q¯-^üá:ƒÝÒÒDzÿŒ–³”?’÷ð][m ¸àh?¼u£‹¯ÇM€ býÙ,'@S”÷ÁÊ)Á!ñ?8d´[Øçfxûøúùûûûùöù¿æ£Å‹n8bµ˜Qï?zÐbiLbþ^i§@Š ®ÃBwý ©’D€rÃ"ÀrÚ-i“ûwÿA<ÿï¸SÞ¾þRà}= ÿ¢…©:›ÄÿF>ÿgB Fc“U:ðG þ8ù'¶·v»ûV¡ðD´•çeê+H°Ïü\‘•Çúð1Ë1Éýñ>X¨O¼j@–x¼1๿’À'òƒE‹>ú0vW»Àäú`lh±/Öm}‡© $œ)/È”K¿Ø¬ “@ൠz(x3 Z:öpµÛ(yáíã'°ÝÏ×[âüù+â·†ÿó“ôÑ‚<«ÅÒLÔ¿UëÌv<úK,@Ÿî_tÞéî;…Âá°” I¸.€B(óø&üR¯<'ýƒF¸•~þƒD>wž¸bYìg®… F2þK:ÍÒ–?,H/ ÙÙm­=î¾U(<Žoò”Äû“êŸk0[œ?Ëû~XT'„¹ÿ   r!èòà¿ï9è/òÿª¹É«V­LL\–ü];ðÿ(ö'S@´Ø\}2€wdHˆNQ ºu*¥BLöáÖ±H.ß„˜/XŽËvÉþ…ˆ þí-—AÐû\ô÷GM’Àý§ff®ý2qeb¼ªÕbæÿÅ hš,xôWLù‹Ab ¨ ,´r6âœ÷WÇlO{žÿ0ÐäEXý ~à²ÿû£½Ž üPpÄ›@Zef¦}‘¸LyÒni”ˆ´ ±Ö$…;iÂéüa­P œ½Gвp°dˆdsQå V£zaÒÀüü“{™yQàãJ|Ât&ðßÿáµJ^Me$¯HÿÑfn4¹¬ $ë[Äú¿ËÔ‰ý1˜ä¢ øƒè>V¤ØH(ï²øز 4(ñ‡Œ§ž3 *~Ò$U“nô=w<çÖÿˆÿ·/ËF9•Œ/sk--õdù4u@ƒE$¼]¢ì¢!@ú_ɂ⢫±47ë~iî¾Éa4ˆ÷¸ ^ò@P?žŸGÀeÑýã-•ûg<ÿÇ-ÈAUT¥<#1}¯ÑRc4$Tmâjb0N⤠¬Ð Å ÁZ®’otYþ7eåc·/¨`˜ô)ñâ —ÅøÀÿ Ïÿk_ËÁU…rcêšÜ ká?é‚ç-d%› ÿÅ¢€p¹µ“ŽP lGvæ~•)iÆüߤÖð½?¼@Y€Íý³?(èÉË"ûùtÏý|!ÿ£7æde)øsÃêäs³‘TI#0_”,J(/Q(hm¥ƒÀƒ§¹²p“R.¦ýѶ™ápç?‡Û5¯õÀ à™7_þÀú?o|˜ø™V¥*ÈÏÛ¼) üŠ@¬\}Ú\o"?&\„€ÙŽK€v"$¤+°®B1xhÞ³-O.Ï$ ÀPd ®ÑÄ>؇ý0þeMÐe1ýç=¢OîŸ?ú‰éÿûW3j5Üòs²¡XÿeòîF¡€Ÿ‚3Õ›¬$ùg‡¤"‚6Ú@1ˆhÖªr”dü“«Fiñö›"øŽ¿ ¾ó7ÿ†-=uüí+ÝÍÍ‹?=ze?¾Û/¯q‹YПF W©P*ÒWn(m¨øS€x)c³•´ÿâ@1‚ÿVþ:}Å âÌñ}Û6g“…•ùBëâ¾P¯¿Id‚&Ï5ÖÔ¬¿Î…(p,ÞÏÇ“b‚a#‡yy‘ÝtÅ€ú„—ÿœ–§>ØçhµÙ+SNÖãé_ÒŒF‚x€ÿ$³@D´;m° €ŠAEW[m©¯ žÍgÿ°û[6Dô û¹¦ºzÙh)Yün¼÷¡©!w^ë.²î|ÿu¯a²Ða–ÿ&xEfpˆý|  f¶—î«(+ÎÛUS/YH|ÉTßLZ}í’½ ?¶ÿ:{»ÛÛ¨ l8{År%\ ¸”úG5<P8gJ òý|÷O`àK¹'««ª«‹gÜuëM#QÐS zß•7Žñ¾ §²7Ìð›9ኾéÿᓃ¾ÙÏðIÍn½Nw`ÿãu¤ê‡F”€4Øû< \JNç™Nš¤tôTíÌÏÍR(sIîOâÿYMÖ“÷KRÿ÷=òñîSÀûWU^¾`΋²Û S†‡L}ä‘0ˆGB'Ý6~¬Gd‡ÏÓ²i¯<% ½^HlÁõÿw6Ç“±¾¶”àãØÕÕcÒMøI ÂPœ°KÙuܵ‘õ?œ½=´ ˆb°ÑvPŨrsT,YøG¬ò&aK¼l"Ný¼’¥«ª­ª‚üÿ"ö³O½3ë©)!ùy0~¼ÿùÙ5ô1úƒ"†K}B&“ ï¯èwE`Ä»›8!ûÇ[á¸Ã «ÔUNMä ÀÒ…à$@³ÕuÑTþëÛúë¤þŸb°á¨-`YF…\?+Îþâ+õÂG„áßûCc·Ÿ0ÕTWP]úùÒØ¸ø„„%ïÎzbêÔPbºë–‘ž nYRÄhä/FÊd㇠K~JýüoŽüg‘óÇAÕAþëNH’ÿXýã©Àú&‹ë(0¦Ãÿæâôÿ9×$à–œ7„Ìÿ‹cm5¤?àÑò¥1±qqÿë' % à–±~ç§×Ç= [Nþ*àtèÿ³ùõÔ¨ˆrYú"ÔšÝzÀÿGj]ù €È4¶à¤ŸØ d³ÑÙŠ‹»$߇Z¥ @`_¼êÉÀà €©ÿ›o4VCúí:;!&6ðì–ýë9Ù£ˆþ¡Á·üÙ2€$ªÙì·#@0=øš¾€ßð;¢eK6³j\ûS£"û®@’§ˆ Õ KK–ÿµ“äÅÅCÛ×bÇ?‰ý…%@ˆXvÿ¤é JNó®¿Šÿ«VÇBêCKÞ{ó?áÀÆÝ;ÅFƒOÕªÙÜ#€Eß}¥TùÃmLxdäô¤VüIúì¾.‡ @ÝájÊýcço”´Mõ«¸ð ÐçR\ttü@¨/™ýc%Æ€Û²áГÊNTIp,>zÞ€-néÜgÃC˘þìkÏÌó€ÞÀ™_i6w±ŒGô®]~×GGÊž—³ â?*ÂÓ¢=oN‘  ¸™ðÊ`ð£&³? DÈЊ?ÅEG·Þ%Ýâ Ør“cs8«þÕBP]U’°º~ð¯Ø„˜YáÑ/¼þñû±ËÝå À甜šáä3û#eQÓnæ¢þ'Ì×gå°(ëG$€¶ºJÝ‘2$.JÖ„ûK[+žù/ýS\|8¿åİ_2ü/Øp¢aéY»ŽÕغM\ ¢?Ò1±‹æÍgK&xBðóJÛsÙ³~Ïp?Rþ÷»yZT”L–\€9Ä?ÿN»Ð@ÿsÒÿèiàhQ0qQ@ó™_œ­d€ºŠ‹§½l ™øÅ1?Ë‘SŽýưGõ- ?æ>°§+6&ÄÇÇÅ !€`—ðù,x.ÐÌõ£fó>‰”!L¾§ÿ}¯ ž.¼£VïµJ[ù¶C§ŒXÿq' ´ ÀÊûû3í¨@£ 7ÀÙaüi+‡çýˆ@¶œêÛæUU¢ö¯®>Q¸&))iåŠ+–ÅÅ`^q Ë“R'z@öÏËëÁ$-d¶< Ñ?Jz÷_¡ógBD”,2ú#ñý¸ HUXÁ‡ÿÀ­ÁÍ¿8 (ÿ¦F;ªõ;z:x@Û})ÜG{SMy!’ûbâ_\¨Ä ŒDk*û fÀ°!%55%%%uMrbâʸ!¿lUJJú(wS÷‚`ÜÇEÐÿÄ@5í¡¿\áãçï3zr4xûLJø¡ ¤T[÷k€Çððqþ¸ÐÔ,iõqt·µÚ;)ý)Ü€^KScõÄÛ‹Ãÿ(Øf„ßrØ÷ÏÛ€šª=©©ißbÈÀaoll¶ðµ§æòb­t˜e JîÕÎÚªêZ£Él=­«±µœÖÿ¸5wCz /ÒÒp6y.à« !ºŸíÊÿÈéó7i˜¢ KWWgG{«¹îÔ1ÝÎBÊ÷m…àü úC?›:ÁïÖ!> Ø€+-óS ôÚ›ZÚÐy÷é’b KøÏil–|³«¡®±¹ëŒ$tm­(XŸž†Ó€XÄ{ÿƒX!ªçÒ_Žp¡ô|%Ëîn—®ÏÑS]Y¶ü/,9¨ÓëôÖ™­h1{=Yhšç§:pvYl¢wÚ~§S€ÛIoÖÞÎÖ¾qkG]i.©Þ?õË…c<¡ý×ËkøsÙœPÙ×~þB? Ð_ö®‚aKû<¤ƒÓ{¶ª¶êkªlݽâs€¦F³­­ó ü)†œÝ.¹hGs™5q…eçý÷Ûd !@*ÿËÂÇó þ{EæpBPϲ1ÿN¼äÿ)õ÷ý<£×q¦íà·Vg¯£ËvS½­ÛᤠzQ 18ϺWÛoc„f ]M¿â?Ðsé~~ËX1ųÂÿ{b5hU?V÷<2‘ï+˜‚]æþî¶ÎþJ{½]=TöS\è®ÝW\÷ÍÉ_õõö½k…Ì?@zÊü1£Fò€é_ßç¶3¨³—ËK|ý1^ÿO[¨d˜üòAþPP¸ ½öCÅjvÇÑ_9ŽnѦ¤ ¥¿´ŒåÑ×Å?èÏ“¾ÕÍüýÃx\Í ëz NþÇcþoÃ5?¶Ü¿…;ÑybçŽÃí¿òËŽ“›RQàºÏ®}sà´ç–¼>=aÖ%^ ¸?^KžíÃ1)³˜6/Žø”Xõç§ p/zjOµþê/wré¨pÝâñWÞ ûpýÖýúÊý%{v¿}ƒ»)üGpuØÏõ3,—ñ÷¨ÿQ°¬Z¥6ÐD…GÃùòUgJ2R…àºn›ùÖêâÒ²Ò={ö”îÝWþî8w“ø`â⌖ÁÄéÿ*à{|Øcƒ÷ÃSP\bp6¬E=€ë–þu»¡¢loéžRÞ”–/}~ž ULþtÅV:ÜËr¼-PiN¸û'§ 2pš×óÝ?)k9¹%¥¥û¥{!€xëÒ] dø´„õ*4Ú‡×ùä•@á)wÿän…Óé›ÃáüüÓ¬Iç•[Kö§_º·¬¼|ßþŠŠŠýûÊ÷͹ÎïÆ‘î¦òïÃ} Vd«± q£*ªr÷ÏOAáF8ºìMõ-MÆ*c[wk§£õ»µ€þßí…¢¿¬lÿOºƒ†ƒ†ûKžž—ÿœ»™|6üÇ7þ¦Î5«|ý¤™ 2Uâ¾Ñ„¯ZU\ãî?…ûÐYwüÈAƒÞ ×éõ*:ú½"3cƒö{À~àú+ À|ø:XÉæ~‘´q‡!f¬—ï5CiU`ï[Ÿ~iöìÙ¯?ÿؽcZ®èŠ SÂþ¶,-ï¥fÐ £Ú^çî¿…»`ýúvà?¿étúŸJ¿ÿ†ÕîÂo¹rPlGv>9fìèÑcdž/yu˜·ï° µ,ðÿ¦Èd^xœí{|SåýÇÓ\Š\Zzã'{mò/lþ¼L'â†ÛOÐÉ'{1Ç6†?t:H“”‹òáËÂØPçDÅÐ&©Ð6\•ª?ä~—&'iC[zMÒ&'’–67~çyÎó<çIiË^/Ûœ¾^yÞ$'''yñGÎëó½?OŠoKúØÿ™§Õëõºy³_|nÒíCTô‡ƒF‰¯#÷ð£36—XJ…¥âÑb)ù?÷5#)‰ú*­Vgáà‰µü™cG?~ú‚\âÀœcç„¡))J•2eÈ-ß–"hJ­Vk4jå·ð·#süóz].@§Óæüá÷¥  >ò_?>vtÆÈû2nܸ y‚úKôá’ýLÿŒ$¥Õ $Ž|c-?wòÔÙrÑ ÀƒãÔ2•*¢V*è•jµø^£J‘SþÊ»gŠêÏÕB Ÿ7cÂ÷‡€OR³ïxpâ/¦.ÒÏšñôäI<ôиqO”BýSÏ’ý 1¹oƒ!µ¢‡ÇT;ÄzþR¿h.ZÆ+R)4jôF-§Èœ”Kë_°¹³ÿèHÅÐ[zrúK/Ï›«3,0Ì}aÚãÆŽ¿Gÿ’þ¿¬É} 9ðجHò6$uøN4RJ .}”Üý ÔnQ˨ÿ»_ÐçvA§Ï›2füofôz¥ýŸþ郓l‡wÀ¬_JJöÚÚä¾ † tVœGçO±ÓGÙø¬æmèþ{Ъ|5õc]Wý ègÏÕëqDbm®!wú”•W]_XJI@´'/Ë}# pYËEwo#)ñüÊ  úmöŠUФQÝX¨ýDæ”ùqÑ?‰tq×À™aÉ;•×:ÎïAòÕo±l?ÊôÏHF\œåøDþ6ôžºÞTœÒ÷ªlúõ»¼Ün @7,þĽRwh—¨{ J¶ È}#ŒÄi¿˜ôcé“‚¾ZyàÅ^õŸ*›þÿk¦¡¥k»=Õ¯<ÞXWcýj‡(~±Èü?#9‰T[m8éÇR'%º(ÈqÇóè‚ÿÒÿ¸Ùú¥/¾¡.,-½T[[aŸ§ÿàQ¼Ï‘ûV0‰§²\R:G¡':‡§—Þ ñÿD]7å¿Ríü5uMM®³{Qñ_̶Ÿ` @Fr±Uù8\ÿ—R~p¨`_¡Ðh@ I/Â1œh4rëÿ ½®wÕk¥´†·MMîÆÓ»`ä €ÇÂrß #ñÔáG>òýHùREÀùÁ¨(w¯ér"[ý_3qޤÿž*€:2´²¼ÉåryêÏì)!k,%e—ä¾ Fâq;pÐÏá dp7P4UÛH‚ï>þ—m0õá—¤ü_{]ÐÅ$h_­äïjòÔŸ++F5áYrBî;Á`$¾â:¿OH6€ €³lj/ùÂÅý×ÿu_ü‡,mÔßRë—Ÿh)þšM2’€ÓJEü6Jÿ\œþ…cÅ¿–÷¢ùÆþé:ý÷˜hõù@þBàn²ï-ÅMÀÒ=v¹oƒ‘p:ª¬ÒÈ/ñú¸€>By€Ó”ÕcPF÷¯?·»ñß ‚á‚ø¡þ]®†ó{ð piÉ!¹oƒ‘pÂ5V*ú'+¤§ Op\åO§ô0ý¯‘Ñý+~Dòÿžçÿ°…ÐÎ/t âM@SÝéÏvXÄ`ï™v¹ïƒ‘h¢uØÇs8æÇÓÔÚ_ñ Ž“¯©º—¿¬«ÿ#¦’ù_bz²ÚE» øE\5§ö‰þ÷sÕrß #áx6IøÒeHÀΤé\#ë@™Ïäõ önxí0ôþ° <êNíõ¿½‡ÏY«£rß #Ñ«¬töO¦‰ö9²ÐVqäY Nâ9£…bðO_&áý Ô¯Í[okraÿNªí¶ìøúlù… v¶ #éˆÖ—Óå~jzí? Ê ]?”5ú¸´=é?®°ÌR¼¿hà±òà¾ãë*/T¸:å¾ F¢‰ýÛlÔà4 D&€ð€°ãøÍõó?²îýøÏiÿn@÷æ z\p¹›**j›\õUWå¾ FâqS‰?Ýä8›. ÂÊ Ä” $»üÃ×ÃÝ>n¸üÞ+5n üFAúîÞëó·òÍÐ4z˜ûg$!+YýC‴Îü~z€y…BýèØá»¡þ笺¸Üâr»š½üå@°£­½£ój{ •oq»<Ìÿ3’XS9 ÿã#z’p\Ùý¼é·Xú“_þŠ{ç¼Úcöçþó¶"ဗÿ&Ð~µ3ˆD„G¨#À»ÜLÿŒdÄK–rÄëÇ5©WõÞh´ ˆ&®òÿ½›*y¥†Øå=¯}´¥÷7pÿë*¢¡pG°]Ð=( ‹„Úý>6ÿÃHFÚj­d”õÓûP[„qÜ¥ÿ#€T ªü«3¨Ÿ>4‘úO¿{ 9V=_²uMžÖù{7 w_$Šˆ’‡ÚÁÀ´3ÿÏHJ¼Vjî‡L?@B$T¾~»Z@c?JÕûž_6뻉Ìn›¿jT»èûá9ÌBa6ÿÇHF"ÍV²ê‡ývguƒÇãjj¬«¹è 5T¬˜?B埒5éGJ¥J©$Î<³ùSó[w+÷m0M&ó'kpþ§þ¸t`ÁÚ“á°˜ð‹Š' Œ û#€Œd¤ÕÎQ >À^Õäå>žoqÕ×8í¸:lÝš—¦—ü©ž*™“¦ €h¶`f©É\°üÎYšŒ&ãû‹o8úûç;*pÂ’jØû G¶0# _®_óËqµ/R¿Ï'<¼NÚ:Ø*ö¿8탑‚ ïzÿÔgÿ­PIhƒ}ÀA<Я¦ e®Åh4nY¿Ù$¼À¼iuýÇ¿Õåj`.,ó\ K…\@1€ðd#鈴}ö¸í?íu^ |xåyo‹§¶‚Ìrœõð¡ U£–|~®ê½1Dÿ 4X­ÄoûOÿ9¯”Nß\Td„ú7š ß]Ô›ó×é½k4 D¯!€êÿb€éŸ‘lD®Û.×’5>@ÿ•^^Ò>8ò¼ßï©«ªÀß²Z5•'Leö†êÆÜA :P«ÕØôc=àû+‹¡ßŒx‡Í«{ÛL·xÝáÛûøˆXøC%@\@/,`$ÑŽ` 䜴ߧ£VŒúI Îx_‹§Îa¾b·;jê<ž–Ö@k‹Ç»ÕÏ3ã,Q?€ñë¶ÁÄ^Ì…ï-ìEÿKÖm_,°TFP¨/&þ8õGýöGÉE´³-¶]©³“í?íÕ˜û‹ÂÇeðÚÒXÍÆ@S³×+D~øa»Û¢ûI–BÝ­þû+˜ü~‘¤±ðɪž†´º¥o³£ùð5âðQ0$5™þÉ… ÿ  ÿ@ÀïÄí}›£A”=‘?ƒÞï­©iró~®·z¬…Ϧ)UÝÑ_úÿõÆ"”øý?XÜU÷hí¿aé{fø£ùªöSª a@F2nÑ¿`‚ <÷WÙ µNîÃG€·ÅçGm'þ€gç³ e¼ïWŠýÀ~2¿úðS,~1ë¯Ï€ü翱Z  ÿ¢ý-ªö&¢I`Œ¤"Ò€ê^ñWÛQà¤åÍãR[<ÕÀßhýæÀ]ê)þ¶Ýý?пIœ0¼…÷¤3…«?‚¶B4Ÿ]Šà€d8`ñ?#ÙhÞdÁf±¿g³^lõѓ؟Gý  |iõJ¤þï]UlB è×a0`Ú´ÂÛÕ,Ìß$Z ñ±»ûpîWÁwrß#¡€ò ‚Wjìbð’Ÿ4ÿãÇÆ€d<öþ8à[çß„â~¥úƒ ~˜J<,-ã¦þ¼Ý„@îæWäᨱøo[EC!†»Ä ~4†ÃýX,ëÿ1’‹èU¨~økà°½ÎeMFH€-€'± xïù‰©X÷”ûïã :++;;''í©w?5ŠÍ2Ï6¼a B­aù? ŒÄ:lÝÓ‰›þ]k}À°ôŸ‘dDÛ(èä«@  ¢Ñ§r)ô‡îÞÇKu±+ˆŒƒû©¡ýþ«2r Þû§™Dÿ¢òÅ…¾.m¨Í[ýa!rý((ü2&.÷ïNéLýŒä#Ô€`¸Óþ°Ó_ãÃÒëHHtв5çú`ßê_9tD6Ôú¤uEHþF“4N7,™‹÷ŸŸÿ1þT´FcÑ1¨ÿôe0 ±*„£Áz»ÍêlæñÄŸ4DU¨Ô€ÇøÑÙ E?» rÿ9Y·½ZŒ«~Rþ4n6½³X+êáÚM8ò'¹Bñù(XæÃ<=ƒˆuŠÀp4¨·—;[xIü¤Úf}|ij@Úƒ§ïÕt ú8ûOÍÆú¿e±§üTý<Ì…ëë€þ_Y³÷H«°pgU4Äœ?ƒAmC@ÁP4¹Row6û)½ã@ßGé]Ä5Üü×sÃRú·ù7hDNΨÿ;r·šºª[tòFó–u¯äæ–¬Ûd"¹?ž*üÜeòg0âˆ\ ÀÎhTˆª\~ž ë‘Ð}Rü/­ âI,®UÒãõß×ÅÅàœììdßüËõÛLdøù(ÚÿøÍ Wþ} NŒdJØXt¸©ŸÁèB¸=h눾1t5’6Yûã#•~)ý'3¸*ÐòüP¢¸PË?%5=S +[ˆÒû˧Rð¢0nxsíf#UõÇÇ•rÿÒ Æ$$$‚ú£ÑX[35å#•üyÒùÃ%z"\ýæ±Aqù_{ÿ!™„ìá/KzŒd 0nˆ›l)Â3¨Jˆ2…#mrÿÐ Æ$väÿ0èhåñ¦ÒÌ¿`ýSÓØ<ܪ„ãý•ü‡ÒÏ€Ïá#f’É"rbp-WÐ ·ŸgÑ?ƒÑa¨?]Ý£‡~¨b€T”:ƒÐÿƒò‡& å¯šI‘‘ö[“ÙH„Ž”O#•ö›u(ÜÁ±=þŒnéìòDÃA’æKþ>®ÝG­@¥pðî¥ÊJM_Ë_•–Eë?óÇ+¶Q Øïã\@Œ ðt€x©ôè¥ËÌ0Ý áDÔ?™ÿ!“€¼´ ˜4ð˜Úäï¸ü§T¹³Ï7þÒ¤ÓúÏLûÁ‚)Ø7‘î_\3€³ÿ_U¹ZrÿÌ ÆÀ$å´{é©>Tÿ£Vc@ÒøæùƒÑ¦Ÿª[ÏìkùãôŸèòÇ2ÕkÂ¥< €%O‡ÿÆ‚ãn›—ûWf0(1 ÿh¬óiÙ;Ý$[„H_sN†åÿEÚƒÓéû}?oŠÓÿÐ1kÏì&úÇÞß$Ù©Hƒ¯œn·«Eî™Á ÄñÇb×"WHŒüS»P=Êø}_ÞvR¤Þ6iæïrú\þ´ÿÏÈž3ýëÚ}RûÏ(ÿÈ¢@êCH±Íãr¹ZØ F÷ˆûaDq ü¨àŸTQ@­ òW/&þ²ÇNËý㘾—?ÿgd¦ß–_ÓtLÚÈö“¡R0·ï¯nv»\Íì¯|3½k§6ö¡‚~¬¥’øŽÜ©T*4£'Í2Ìš>$}xvVæà>Pggƒÿ'®þŸ>zsk‹£HR»¤¼!˜‘ª‚Ó2®Qÿ]ž Ü?/ƒ1° Sé?æ¥JŸ” Ëþ–]#R”?˜¡›ýòs&OŸùâœ93Ÿè“4`Ø“3oOU(”Xÿ™é÷˜/»e…HøÒä©ûKýqáŸålƒG¿Ë}Yî_—ÁØD[ÉÞ_dÔ—2>’H©iË#i7ÿì/Ì6,\¶¡ìø©Ó'O}e|¸/ôÿ¥k–ÿxHJÜüÏàgËÜž†ÓÒ`´ç› DïÍ'jï¬À`ôJ¬Í'ùz<,…dG0i™@kÃÎ×gOþíÄñ“–îXƒ$Ä’§vìèöã˜\6$is9^é=Ùº|Û²õ´ï>ىóݑÍô÷‘ôž$G£‰f¾¿ûÿÍÄ,Ûm0ŒÙ?»gîBFÚã5AAðœ;XZ‚(•AGüÀ/JKÙûò“²ÊSùA F¢Ü„Hßï“o~=•ŸÓ·ðÛþØ?ɧö£™_ÜwÌUçr:.|o'Ÿº‰®ÕrÇgƒ1Ëøø"=Óÿ¼UB²–;,eXñDîDø%¥LûìPRÞp Iéß#öJ3ýëÀìFê0‰û™ð3ñ³‘>>yÏÙª+*]uX÷ĸ\®ú£üôÿv#aû†»æ1ý/Xöv¯ ˆž3û¸ÜÑð™üGsó,|{gúÇ€ÙÎh€ˆœÀdîóQÝó·±1t^nqÔ7ÔǸ~tw5¾óÀôåŸò­ØýÙ[V€”¬€(;ô+G™ÎYøÏb”U6·‹Lý‚G Íôo ³)Ä$ÎÂ~S¾ÞüÔ&ÈO;N¹˜Ïwò“ËÙ´õÎéëÿ¶9Dÿcγ·.X¸pÖÒ+W½²žÝ§ËKYàÏõO•M@qYÕ©‘‰Åÿ=3ýÛÀlGP¿¥ÿ¤@Ã~jä'á㇓ø|å$ÇÍ/.™¾þ¿–cÄâ—9¯|}.Ó¿îù–.¤çv×ö³¨ŸÆýÄì;zÖí%™?>¸;Ã3ýÛÀ¬g4ÄeÎ#ò”½ïç½ÐTGb~'ËHpbÃüéª?iÙv éñ!ëÙEzýBù¾PŸº¶ÉZþTUÆòÿ% `õÀƒÖÝ(÷çåw'”ÿàÓú>×½_©*v€š…ÀåãDï¤æïrQ÷ïrøÅ¢éêÿ–'6e ÄÛ^^Å*€sWïºâEºö~d*¥Â§gn JËÌõr‹Lÿø(øFfú§€ÙÏÓ?ÍõyúO"f|~ñ$uøÔó;yàÄKÓŽÿW¿œ³ù†j9/,¦-Àù·mü° +ºÓ¾¿„QÊ'Ðqßáæ«"= ä»·ü?|:=~ŸéóJ o²@Às¦žËžœœ,8ñ“¹ÓÕÿÓÙ™™(ýGêG3o|¶ô üßn÷ô}µ%<ÞWú¥%eÕ­nRõCy‚‡´½ý3ý»Àg¡ «ýÇDý|€U;/4Òzo03à:¾å Ó”ÿÒŸfgHý<²_ûÚ<"½þ¢ˆõ/\´î+ÓðÇ6 ØvÉã¡q¿bºgúw€Ï‘ñYÕ߯œ)Þ¶F"v‡Óá¨s8i€é÷ÿV½lÈ$Åìÿ †¬¬M÷- ß;Ó‰µ-ç¬û‹KP$P¼¿©&þ<öGç„ÿ i0èçŽ_æíôp·6"íÛìM­W<×ZÏž•M€Rh|oõ4õÿÿÉÌ$Ã?XþY¹ÙéoüÛK±þS­î"™½àþIJŸMÿÑBÀáS×Dˆ^<¼ Àô¨b´—Æü<P?1í§d¡7ŸwûãáÁÁ ·µžOÊÇ5Ó“ÒóÛsr·ïÚ‘›MÊÿ鿳úÞ{—ëñ@Úý{|óìmU\úˆµrêOºþlîßCºÿ3ý«Àg„ánÿûb‚Vè¼r²Îi·¶´÷Œ²OHR_Çézm¸Nü,uZú_ù¯?~òÛ~sݯ_Û‰ Á<¼RŸ¨Ñ$ÏA€~Þº†^–Û‹îÊyׯ¤Ää<¯hŸÙ|ôC÷Ô! ücÚ¬ì‡å/^lq9êζû‡Æ¤Ô£þ :HÐuü÷wLKÿ_üòŠÏ%i4i÷ýûë7ozîîdM’V§ÓiçÌ—Ýÿ½EÑ!âäQYÿZCY [ûgn¸(ˆ1ò§á?èÅ¿ ’HoLàÏgþˆü=ç›]Φýתÿ¢ƒ†ÿî}p:òOHÕ&%Ë‚×j’nyäÁù$~¤ÙèïzéLtÄGÛz‚à½bû —ŠÍM—©êiÙŸ8t‚ê?¨g¤›-òU¶À‡®Ž¶F§³éb÷è >Õ{šæÿõ–šŽþu Úä„D-¡Ó¥~îûï·DÃ^¢lYîâ5û>¼úÇ|¼]¤oÆÌý’P Ãÿ žpPÉ÷câ€Î«§êΦˬ¥ wQ€ã¿]0 ÷¯1ºÝ’ÿÖxNŠF‚^¦mÑsîhYIéþçܢÒï÷(@ôoúâûëÀgi8è‹møÓjÀ¥f4Þ×1ѧ†Î7.`ÓÞoL]ÿIºñ¤¤P÷¯Ó%¬|©%*Iö´W:NÚ_áú³‡ûÑÒ õüøu'„ÿ0¤¡PÌF $ˆ­Ç›êO&¬¥EBçúëœõÖõS׿ö:ýÇxûª#²ùh¯p¥ÉÞÚá‰iøsÈK7lý“±€¤ EB=7i¥ˆ²ú]N»½>÷®)ëŸ8û+ ©$}þÙ}ÿ'ë¤GTV÷]½ê¦ó1nŸ7dÿ0YÐV >¯z±î¥ÈM;iÃu§Ýfµ:þøü”õ¿$•‰þ‘@ÒÒçŠZÐÀAÄëa*gë|•Ê?-ý‘÷:`ö& Ý ˜Ôƒ7ªø_ÇH‹¬~›Œ«`ª3À)_ž«ûq6 ñö 9‡¢’|ëﮓ?[ñÇÛhF(³?0yFƒ|Ã¿à€ºšÑs²ö­2vËëSuÿë'Ó°\ •ßÒ¬úMæ{¡(²!Q;ê'JQϾ!pÿ0Â=tì70¨r~.Ò!«›gÅs±ª^š¤Rþ +_YITÓþq¡€6ñ¡ÿ2ä·F‘¤‡ƒ¢GqütØG`3 Þ^ý€)1Â@hP­ •‚Lÿ6û'¹¨õϼúµú_µkõœ [ZÝ“†Ü#$òÓ¿‡óÄ@ýÀÔ‚²óïVÿ‰°ÓFäoµ9ʾJ5}ç/ÍÎÍ*÷Lx(ͼd¦÷¥€mBò¢Ÿì0dy°ˆôwÅŒúS·¯Ôð{^(þÀTí v««üQ¤fYù(°Zí¶7—#E'}å—­ú™Duú_»û?W$Žqú)< HIXý›cæK§„S€>/Õ<Ÿøa~ŸÝýÀ” L®y>Òf#€ŒÝñ+½F3ç¡=Mò KÞ’UúôÕ]C?vô—Œÿ=•žmÌÌ*ªÃ-€h¤›—ühßLPº õñcð¼ÝF#™ÆžŸú#sƒåUÿ¨U—¤­]wkRŒóWªÿºäeÿž‹·)ˆ¢)ˆÊ¸¿GéRc ®ŸGÚì¤hÅV üÙ½.;.Ú,¨¾*È‚Ei7®j¾µ%ï¶­]Bò—ãÈ‹ÿüz 18Ó?üU1ÔHËÿ¸ h³ÖXhCÀf9òMÕ»͉éh•`­þ¼)¸13ÇB‰½„º€|ÝŸf€>Hþ žD±ç§6Àj#ã€(°TeÜ£v@“67¦ÀS€„ØœM. `Ü]Æ€$…Cn¶Î7¶(¼°ìâŠtÆNÂ’Ð2ÖªÒ'TÉÚdVô×òcò^4d™†ôß§ïD«q0ÚsÏØÕÿ!hý@<‘zN‘ꟕÇtÀj«¬Ø W«Íâ[ù €Ž%©?LÏ22r Ëjœ‡ö·xF¢¤ìâûý(Ë~=¾IŒ-0}$_õöØõ“3µ‡^½Eµþïy@3®¨Õ®Ù*çþ»«Îvtw¹Ýb8Šå/?†^eǺö®øñ¦»ð³¹bÛ Õú¿ë»wkÆè_«[½5˘™þ^‹ê:‘è3)îõ‰ž1³@bZÿ_¤N¿•¶¨ü-&óûw¨Öÿ’6/IãýïøÑhÈ~çÏ×}¥„ @d¨»KØü?ºà_?¸ˆ/£gŠÛç7ljÊË+ïV¯ÿ …?]¬E+~ébÀe?F¥ÿ¢Ë㾫_BÀÒP¨KPêˆ7á6›7ÿH@6[u¹©úïTëÅÆ÷vÿ|ùîþ=™+ËWí¸ëø‘ @"…@iÐÏ·-? ÞH=gltòÏf㾟pÄd:òDŠZý/^ÿnážß~)È?yÞ7Ò c†éÊ ¼:uÿÈŒöxéè® ?¤€SñþÜùãdÀrØd:øÌ<Õþÿ‡†¼¢|Ã=Ùè¾ße †­m7jéIt= v£]DtiBÐ?Ä•H—….þgÕ?>Pc6™÷þ@õeA’RÓnûù»ùoþzy¢V—xÛzt%`CžïF_JbZ”Fû»1f€xþ„5þczøõ±Ãå&sÞ£“º.°þ¾=E»_ÿû4ͧŒY£1óàD×ñQª€èÊÁà0ÈâNÏ Úûg «Ô˜ÊËÍyêëÿ˜ÄÇŠ ‹ k¾ôôrкŸÌú¡ ¿Yâ¥À¨4f¯ˆ£Bëûñ5Àän­*—õ_rçäô¯IÛôVÁ;™›²ò2Ñ¢ŸôK¯çcþžøü`„¯òŠ?߈¤5•&9þß»r’ú×<´«0ÿíwßÎËA‹þsB5¯F!ô€¡ÿ4-ÿňov¬²¢¼Ütè•å“Õ¿>·¨   ??•ÿ÷Nþ³\ ýÀ p°’ŸMýCú¯5Ëéù‘§çNVÿš×±ü òwfŒ57]Ð'qíƒü þŒ´ÛǬû¡é?ÚúCŽþåûÚI•ÿ1ëß,”õŸ_°{[VÖGŸº¢×ÿAþ0›,6VñS¶”©–½¿ÉdÚó°êñ?ÎcÛ óy9ÙŸÀŠ>˜­ ]r(C?|îW>;RŽÂÓkK'-ÍãÛ P P°gçŽÖÉ\ˆ€8"y›Ùðˈ1°T™Ë±جzúOá»Û‹ˆþ ÞÚÓKú`–2pÁnQÖüò…rô_!«_Öñº9“×ÿÚE¨þ‡jùÍ ˜Hž&eµsÿè2 µ‡åÔf•WÃ3;±þå[~áEØÎf'}çœ|«/žþË1À14ùƒ ÀÁ­êwÿTøÕ[Øýã `¢éf–ÑŽ&eÕ¯Ò´Ùþˆ2Tý3?6…ð_³ù~2ð~:{0+é9ËVúÄnùk³­ ú7}`ü¢ªëŽã$úGÇâóPÿ€ÙHä’ËÂ?_,j¡Òšý9°%m ò×ä‘âŸüxû èf#Ákc|?«ýÙj*ÍxòG¦²bÅü’¬ÿüb /€þ`2ÒfÓò£kjÓÚŸ|?\óXr¬²’Ô˜ƒhüWÿdýŸ€ù?˜…¸é^ÿ¬îG+ÍØõ£ lËÓŸOŒ•¿6E…þîßQ˜Ï*E7YÿÀ ÑÚná—úàÀêCf<÷ƒvþ0ï¼=A«SŸ€®æ«Bÿì* Õùq¤w¦ÿ£Œ'rÕe±Æìö‰Ï–ª äúñÝT±÷_ðVþ<À›z'hþ\G+xœí{T“çÇH‚JQ®²V[’à¼Ðõ67]9µ0­n=n=ÕV×Ë麮ÝÙÖÖªhµ¶µ;óÔHò¾¹Š­!àAP$á"ÉûæÂEÅV+ÅÎB=V-ˆˆB÷Þß’ 5Ééïc|yr<>|÷çyE¢‰‰\_¬U«55yÑXÎü@h1è´Ùm6»¸07v{m•Õb)/·”“׊Ò×åQ2™,JAÉZ,#‘Šo£~‘8ùFþÔKÓ ú€P££ž=¥zêJCÊiõ—[Ëw<#£‰àä? ýKŸ*CHéSâ×hŠ¿¼ì¥0†ÑošiÑÛI+@E¶šJÒï[,ä…pÿèš;¥2ÎDJ¶`B¦–6J)_C^ÕšÚÁ`/€1\;QO;Jû¤¨;XA¹~Jÿ„üËÞÊÑš'®R {Çé?P ]ÖÒÖT¦% T {±¹Ùëd‚:þ·ÙUîß»o?“û[,Vë³¢%2.`²ñdrZýÇkmo² Å”ü `¹%®ª·sò·ÕÕÕÙêŽÔm¨)ßo¥Ü¿ÅZòl‚XÆê_*åô/¡õ?%s̯ü#—4·´µ´ch±šÎ>9}3ØË€Ÿ:£7Fùû‹:å·‘â·5·vv=ÿíw}_´8m•¤þ­ÓD”úÇGŒþ§­Ê_è·0këÁzÜÛÚæ¶j™`áñA\6#W¯Þ`ñásõŒúm¶F¼µ›ÉÐGGîöVñ¥úA/ý(AIëÿŽuŸáGþÑ9&dw%iº¨V[¿ Ú¢ ¹~¦op„ŠF®taõTáßÞà8uåú¨ðk#'[­{WÎÈüÂ8ýé/oÞ¼lŠü%™ˆ%(mhmkܧ%ãu±å¨ÿÿ?#ß~?48L„£ýç:O8È ±ý««>_ì9|àÕ¹>?SöŸñüü·fûèñN=Jƒµ©¥¥á3éþÕæ®áµøåÖ¥Ï;OžÀìv{sÇe_¸h^aœüï{Ç #äOüÕë-Ž–¦ýÔ `I d½5té«G£7Àh^Õ¢HßÎÝ`ô¿%?¿`óŠécäŸþ¦^Gˆ_GÚdwÖb/Õhtå 0¡Äȵ Þ/®jÌm›%ž0ü%n+ ô¿éñXüïyÕSÎ%­€ÞXvÄS·Ç\y_ùQ×Àm½90ø·=KEëÖ;ùùù[6¬Hæä?ó%R?7ev‡½ÞÓÞÞz~øúµ†¯Á„£‹X0&ˆd´.NÙ´}ûö÷¶nݸz”þ(fM‘‘ñþŒ @õ{ëZ<¸Ãn«u»ì®6OKW/Œ@è3¤N ô/çþ#æ<·*''û¹MÛÞ[ÿÛhê£Ü]FT¨ª Xv¤¦rÿžOQƒI£-ÙcÜSí>ó- Ôé~Oî›HÙX?"~áTâÇœ¬ç6ëv=‘DÜÞÿžtùÜ_”®L:„°ñAM‘ùPW°×ÀÄôÿpŽHê¿ù' ñÔ„¾+¾‡”?éõ©ö?[ Þ (c˜O´Ì{ Ò|ÓuìýÙ2‰÷/`¹^¯GßPîÒÑ §EÏ6 `ëtb ÝÝØ Ê\<ÙÕ©¿wªT*|6üˆEw¬ÒèQž’:ßûÓц€û„uÿ´U@Ì;C‡„ý_žèü¼þ‘ØiS¢d²¨(¿î_2=~ዟX÷޲¾Ÿ}îÀåšÃÁ^pý\‹×ƒ×_YžÆœ(•Œ“ÿ´Ää$Å AÇ­ü±>Ÿ}éP¶#@ÿùìË`¯€À\íÄ\8†;š˜—,!ëãOþ”$&ÏLL}Ù<>Ïç=>*0¼üÉ[sóõ`/€€ôŸtà†ánWã¡Ò§cE‘>áLrrrƒÍ\mÓ;Wþg3®ˆ2e¤üb°@@N‘úÇ \OõGš%‰§Y\ròŒ»ŒŒì¹*?— °¾þÇ(bt{ä{Bÿ$„ Àp¯»ì™8ŸÖŸ$!yæS…zÎë3f€­05A¶+È%ä-b°A B–¾6ŒQ?ùrcÛüœöt—ê}üsÅ~¶(˜úáªÕ z­Æ|¦ déÆï“îÕgøê?">.ë£ÔúÙñ?v€‹Èß :£AWR^u âP]-èB–²úG«ŸÄݸÞWÿ¢é±«Š |úÏIŸ)ö鸌ŸúŠÞXz°¦¶­ïROïð@_°@@λ8N[òêò I~€™y;ŒlxÏNòE?v˜1”×·žó{Þ!EÿiþÓ%@êz`­¯þ§Ägn6sý>~÷¯ %ÀÕ –ŽKÁ^“áÒ1'£}¦ èjØä«YL6™ÿëPAÑ“=›øSöÀP}v*þ\>îdzÕÀÜ ïÎòÑ¿4v15ÿÃmùççÿu\ÕŸ¼hö„c? L¸Ñí¡•Ï´ˆK³áýOûÅ›»ù©Þ1m@~êO§CövÁ–nt±â§ªhÍñÑLÜCŒ:~°—f·0ÃG¿öŠ˜,NŒg~º«—ùèF¯Þ6rQ¿`Âoì)÷áÃy¯cè†yªðÕ¿rÅ6· ô?æPÍÁÞ`/€IsŠuü´ø)ýW¦Ž—¿$öáçßÑð?a èü¡¨{0Ø `²ôû“ú÷ZÉ@á)щYëÞ*6èu|Õ³|3Eô§¡õaCO ]ýùâŽ{-b‘8*1Qp @|Röê~¬Õéùݾül@Ü«[¡ùáµSôÌÆÿ;€ÊD’˜”ô{¢xý'Ì\²lù³¯ aËÿ‚SXí“þ¿Ä ›} \èkã6þq#@.¬(b¶R¡Lœu—\©P(üó„+ù9ç“™ 0u€ÿ€0áf·›ŸügõÛÞM!´ž#ÈÿSҕ鼦Ñs›øÞ?ûVíÓþ L¸uÚÍŽý²É?†;-Kè_>…—’‚ˆˆeï0Ï0™M&ƒà º  ­Óþ \¸rÊÅïý§ÃWýά4þ ž’ªd ìÀ¼Å¯ ¦â-kÿøÒ3ù&³žÛõOŒpÜ7„ £ÿk¥{~ììŽ{j^›/W(æ.Šç €Lž®äP¤.þÓٿÉXpÆÕÚ"£žŸÿ%Ì@±{8Øk`’ žu3sÿlÐR¹šÿå÷g-à€8/ezºbž25UNšºðÉí(;@ù5 @øp±ÍÉNÿP…@WsQ¡åc/ÎÈ_<{œþÜ{¹\µÓÈ5©ã¾;ƒ½"&ËÀiט ^Ë‹÷áÿC¹?ž.NQD‘ú75¿˜ ° nö¶ ÎÿÁ°ví¿ÿ<[µâh6þŸã#{¾ ÏÜfäN!ÐTö{IL–þŒÏþ]MoÏKS(™—÷hÛÿ ü=ûSÁØ…|ãnî Pòy_&F€ \îjÆø'´íz8M¡X¨ReÿŒÿ‰¦ÿ>¤®7óS€dÐÚ „‘Ïìé?ÄÕó¯»åŠy¿ÎS¥ósúçox“0÷ #ÿ0` %ö¯ƒ½&&É™f~úÇ©UÍQ(2TªÌi‚Íÿ©ãå?¦¸ÁÌ=ì—2FëÉ`/ €Ir¶™Ùû‡cžÚu ¹|Þ’¼Ü Á3€Åi¼ÿWŒ7Šÿ6 ÷#&Kí18„s:ø'þ4}ô(áþïÍÉËMLÿŠïž(ý_ùßþCÐO«Þ p „=˜“Ùàþì•Ìùsçeæ©rîlþ%,¦+SÞdNÿ#®ˆ¡¤¢Ž¬&¶÷‚€°àk7SýsUmY•½lñÒ\•J• Ô\`ýË—î0±€ôæòCMÄ¿åÄœmp 8„_{˜ù¼ðYU^^ýç½/Ô´<þ•i¯ªÙ§šöV×;èSÎ3Á^·çÖy/Sÿ/}í‰ÂõçåªÖ½·Pÿ’´t¡ÏÜËûØÀ<ô³´²ãqŸ†!}ÏRÃñ†õ¿Ï%Cÿ\Õšw‹æ êäÿ€"£¡‹ÿ%Ö#Mœø‰À‰]¸5u.wÒÛÿ…«U$¹¹OoE ÇÔÿDwÊé‘úÅ…rþZ-)½±ô0Ž9©ÀŸx9éÀ¹¡`/ €Û@>ÿ—,”­Ì¥äŸ·:_§)LúÑŒ1 gæÿ!'~LûjŽâ¤æIíSP–àhß­`¯ €‰¹ÜAîÿuׯ¥Ô¯Zù—µf=ÿóíïàÄxœíi\TåÇA‚PaafðŠ »Ì‚Kjûro.•Õ]ZnõÑ–O73AS–Kš×¼™ ¥ŸÂ"½y³Rav@Ä„„aƬ®ÌÞ0dfX\KåÞçœç<Ï9#è½á¼øafÎÀ«óâ÷ߟÿñóÃøOHˆ‹‹gˆC?è‘ø‡MEEŸ~òEù:k]ÕŠßð'º²4ütñˆ˜Ë'¬V[ÑMsBÌ{¶ ä£Â-…oÏ ô"ÇÚ÷äî÷‹Š¶}n®¶Ôaésêç®Ñ[ýé«C}{øàB“Íf«ÿ¡jÁ<¤þ9ËLGJ‹ ·|ð÷ÁúfObg®Ùþég%{kYÝ“—•ÿ:Ô÷Àà\b<ŒW„‡JX÷/ [TŵûêHÐb©­a¨e®K^º|B'ým?uv´·5ÖÔ´·43Øßi×,NK[’þX(‘ vöòX¶ì?n´4,,\* •H$awUÚ¸bÎù-öWV”——•–UT°T™j~îé;{º€ F.tvtœhu8Z[™ÐßÞlov4lÏx é?íåh’ü‡±ò—„GÇÇÇM’OˆON!•Ψ´qå~ÆÔV½ÇlÐ1è FÓÞ2SÍq·Óé:¹¨o€ôvuž<Þâp0¡?rþè·íPÁât$ÿ%¯ßÏþñüc&ÄÅDÆ(ç,X”¾dá“Ï<3w|ÄŒ}6’ýÛ,Õ•F$|ö½é ½¡îD· ×0 6~í>sº¥©éÇæf‡½¹‰ñÿö¶½o,Züêk‹_^øDSú.¥„ŽHL/Ñjµ¬Âµ_~°biVžöC¯Ú}ŒçgäÏÂ\êK,§Ý.„Óy ˆŒ³ÎÎÆò-ïíª?êh¬©¬ÿþG“í­)*õ´G•ò¦î_*3ç«bäÔõœÂµÅÅ_––W°ÚÐÏ~ògò_Öޏ‘ø!ñq¹§÷ϷͼmúŒÛï¸=yäH‰äîy÷Ìš®F¤j¢ðüŸ#| Sì—DÌÙn2°^Çúwl Œ¥åU¶³‘ù£^ǾcçÏ^˜Žô0ê"£ÿüÙêÉJDŠR™71 2E£LQ1úWk”‘¸úÆEÁwn1ç¯ã<<Ž÷Må¥lƯ§ ¾@WÚªÓ.Öÿ;»/‚qé MŠ£Q§ª”jžTô¿%(XÊX€å›ûö•—í©¬0êh€14û'aú5ìq±)€³Î€ˆ¸zäIJ­Ñhþ5jMjª†Ê_£™:–œð& úKqþ“Ï=þØã¯~QfÄÊ'ozþBG‹8ÐW8ݬp9Ïõý  _÷è ƒšãä¯IM ¡€Œqû ¿aèKèckw™iÀ×û¸²Ñ>þ—N[fwá@WÌ€˜8÷Ñ*jÔ¼`.¦Nøù…Ð똜#‘=ôõ8þ'ÙM µœè¹4Ô· €S˦«<ôÏ”°þ§Jý#v­ +ŸÔù¹Ž€NP¤5ÂÊ“N¦þ,À¹¡¾[<øz~2vøjO|êßoöV#­ðÑÌŸ/reM‚¶¬íÿ¹œ]½pDŹ¥J•;ýk €/ýÍÙC*|ߟ6ÿI0€‹eÿu23ÀÈtÃ>P½…¿ŸXÿb¡¿ã‰I ~ÎG6>È/dL¨÷¶Ïó_u|ÀoÿLs%âCܳ?Yå? WÛ7¥$%GñU>òæY‘Y°ïC°\/XÊ|j«[]Ü£?Ù x0ˆ†‹;ïMJšå¥ÊÞÔø_tÒŸß@w< ÒkËÏpÉ?îþ÷Âò/ ÝŸÜÏø_ù„Û>6“!?¡Ó×{è_gn8å"‹ÿÙ÷óÐý‘P}_2rÿ‰¿Åÿǘ…gÿ£ÀüVÑÚî"úgàì?ˆ…¾Ír$¤ÿ°›×ÿø|# öùÚ?>þ0|ÓÒåä¶þâñ¨þ€X8õFþ¿)ÿË)6wüÓ³ÀüYþÆ3\ãëßå¾Õ? }ãù'%öµèÏ;c_ÿW‰`ë§ð( g ßvçϨþ€hè×2éRÒäÈ›ïÿ§¼ºn«Öã°5\>Pvè´ öÇý‡êˆË£qŒþ“c|>çÇ+S¯Üðoƒžô£Ín! ¹öU>1àþ@4\iß<1)9111~äMëÿÞô¬U» Â~êÉ©6úçæ~ñѼùï¸ ¿ü¼#uRì´æ?<)0ð&S€ù+²²Vì2Ö€éèÚ?ôVÙÔ…øÇýg> ùâá|cq΋˳W®ÊZ²èOSGß”þŸÉÊÊÌ\µy§‘Ëöu¤ò‡¿Wü§ËÍ×ýqü"¢ÓüñÆuïæççåæ½ûÏì…É7шü[62+‘ A?y ¢üh‡ÛIOýàW¸ ?Ø]Ÿ·!7/77//oÃÆ¼ô{o¼ pç²ìLd¼±ñ+¥¿XÿæÃ§ÜôyÜsàà/ˆ…þ¾ãÚwÞZ„Äπܼ ùo><öåð£~DFNþŽ~øWÿ–ö>ðÇ&Ö~€h¸`ݱ‰qûØùsf ?ï‘›ôŸ–™™•r€¬ìõ[w„=@½®ºÍ…ïr’Ç~¸á¡ß :¶¯{‡Ó.“`+»ôîÚàÿÇŒìÌŒŒåË3Vdfe¬ÉÛ.|܇v8~ZûsÃÖOg>~;7—Êž$yù«¤Äþ6iÁ¡xœí{tUÇS@ž ‚ +>xô™iA^Ò-(m3y ‹"u˳.”¶I[Eem›Ì´)Ö®R]®°ˆÑ#⪠ ¸žUV8º(+«¦¥¥åÑd’´aïÌ{'-š¡»Éžóû8<È?×s¾¿÷½£Ñ\Dïœ"ËêKæÎ[¶lU^Aöìû^Ú±cGu5ºÛöŸ8ÝØØØÐÐ Þ›š››ššÎz/5l.åE8éÆIè?®|rŸ‹åÞ‘î©–…3MzVDoºÓÄêæT¼³£™ÑØ*·i-¢é\‹Çëo»p!éõ ð^™ Këô’ß½Sý÷þÝ|“¤}ƒÁ`4Ð;Ýì'ÿü®äýw¼rκµU‡N44œ>ëöî ©©´ò œhÄh€+aûvªÿnÃ'õz£15nXÿ~C™ «Óý&ç1¨Þ¼L¿¤°p­õõ/Îm ~ˆJ½då‚uáù²¬k;Obú œzÛMûõD±B·^ýV¯ÓÝ™]Y½³ºj…)sAþZË#Û΀ú Zù±ª”#§/¢þÍ×w®Ä þJžÐ;1CÏêLK*ÞڸҨ˜—[°nëO‘^ —¥is)ÇQÿOÝ?z?ì鿽Ɖ5cÖ#ÙF›9Íúm?Gz}\ž¶­Å¤|rçŸÕ†¯Í S ȰÓô:éÿñ·Áû@Tó¶•ã©ë—‹€âUyG¯ðõßcœQlèüÙŒEúRˆfÎí´s¸é/ à"€ønÃÝT)–0õ©ï#½8Bròí ñû<©ŠWùÒ_VlO‚NBþ_wûîÖH/€|÷©÷á÷Ä·©(jƘˆû×Í<鵚Ÿ^-•§É°Ü ([þ+5ú7ýgfý+Òk 4Í›K¤á_êö9¹þW1CMþ+ÕÿT{C¤×@h¾ÞX*Çÿ¸ì'oàùgô_D÷qŠþß÷Dzm„fg™SŠþ´Às÷ü‚àŽ I3àêËšGzitÂî ™üãƒç€xëœáë?EGÓÿuþ@”SÿŽÝÆ)¿ Àõi½Ã–ÿÕi´ý¯ûŽú€(çè&ÙÝsA®_2e±á»ÿÄt:ý“¶Íéµ’À·/Z•²?Õ¿X´Ž [þ}'Kƒ?’û×ÎûÒéÕ ïžJ)ÿóJQþàM1aÊ?F›©'ÑÚ¨áëŽGzu„BxûÃ+Ú—Ì€ý®kÂuÿƒÓ‰üÙ íÈ´Ù@ÑLÝËdß?OÇ€ñ¶W‡)ÿ«¦Ðä¹­ÎøØ?#½<BPóùáèÀRà±q=Ó÷ $÷gÙ;âbÓXÝÜí§`D-ÍÕåAçþÑcÀÅ¿õƒÂ“QÔûë3'ŒÍêõº¥¯Âñ?ð¿@ÍI£›xràT?, sú¯GœÞDÒÿ) ‰ézVÏæo:Õå  Kð~±Á”òŸÿeŸføÓgГ zÉý™¦a3W~ì‹ô"¸¦7ËȆ?¥ˆAáÈnáé_4“ÒÈïOÖŽg%ýë3g=D%òaß‘¿<üSnŸÔ/lù#zÝ26ݘ>~kÀúgg?î"½L.AÛ.¥ïOf€±ûš ösݘ)©“2XþºË,Ï‚3@ 9¾!è±_¤ô/žüóôt•ê×h®‘œª#Þߘ•o.xñˆ:Þ²S×/'ÿ8(·„Ÿû†&M¢Á¿þþÜK~Q• DçT*Néð|éªå¯6EV?b^NÅb1?¼¹ DþcoZ•#É xÙ׎V¯­ž•kÿì‚5¢ü‘(Ú¢ŠÓŸÚÉ©dèOÞ`/ŠW¯ÿÑ&Ùù›åYdÌ…ï9Û"½^(Þo^¶q´õÔùçùŠ¢áêõ?fvþ3–çËâÏ/*~~ËßÀ@Ôpb;}Îo0âçòUýUË¿÷DÑÿ³†9«Íf‹YÔÿ£¶ì=rôx½ D ÂÁJßnô‡žþ[^r·z÷›a@ò¿3k5Ný-kÖ½uøûŸ\.W-2P€¨À]SNþ 8@4e¶Üñªå3шä?+;O–žm×§ê\µNÄY/l€èàÏÙÈ~ßvgÿðü£wÇvW«ÿ›§u†9+ Pè®üßï@ëâT†I¡îè¯Ú…fâþɶ¿ RíW“Ò‹÷Ò!@› ÇØHú Õ ­.úBüæ[Þf£Í\x”MÑ&'^§Jþ(˜¼¼C°úÃZÿ#+ÐÔ"éZ‰ûR£€ÉýãŸyè@PM £Å.ßwol´—rÁ›lY†¹Qeó_£l"»~dÿŸ³õX®ÿ‹ã?Äùcç.\<æ#¹·ü+-€þ@=²ÜÛ8wøÓol,Sÿã¹Gt£™äD•³ˆnÃçæ³yÍKßÔKÑ¿4þCDMꀾ à“ü½òt>2Àåè¨ùcÃçŽ}Ÿ|°ù;9þ›/ý­èþãÔïý×tOÉÊo×ÿ·<å¬Å ÀsÔ¡ãè^,í··m‚ìøÝôôWBÇÿÊ ­dÐíäžÇ>Çgï¾ú,9¤(É_{sõú×ô¼m±¹ÀL‹€æ‡?iÀòwºÎ´7­î ¯r&@À/¸iô”ÀóÃ@-²üƒ?K…£­q8jj|´íeâ ÷ä½Z†IL ó©Ÿ ÀÄeÁ%€UÕ.®ºpýÖ÷ˆ÷Ð^`›€CG@ÿ ,ÿ äP ­þ«½Hÿ"{>²Z9î©Å‰ “”0¢ï饋`Ω:"÷ÿN6SÏO29Ñ÷b ЦŒþ(?“v Eðüß#W¥ìüÎÿYC 5ûwgg®,.]>Ñ&Æ'\ßãÊô¯Ñ$dÐÀ5ūà €ÓrVO{¤ÃçÄÀ€«¦rûÏ-À P,û@@Nüq p|¿(}ñª9¸a“º ;3%)!.nÔºDϱKHýß¼üAûõx¸¾…ôõÛ÷á_«?Hùíü?Ìÿ€Jˆè±çWÞxïq`÷ïpìν-‰?ùÖ¤ø¸¸øAªOþRèŸ*ËCóg-ÜÒ„;€õçIoONÿ•n ø"Ö5 8D€ô®É?ôÆ_û¥”ý‹àÀ¦9£µ “,ÉD¯+—¿F3(c AÁÊùw3Kê\Ò`ý9¬yÒà#s@Ô ÐË£Œ¸aÿ¨G®û+ mý;´ÿPø¿§8=‰a´(öGúÓú׌Z’k±ä¯˜;Ý`¸Ýüí)iþÇu†ê[vôn¥@äªHÿ@-¤ÜGjòôß‘}Dý5Ží‹Ç&1IXþƒÕ?ö·×ß»,7gÉ=Ó CÆÒÿÆ[›årŸ¢}’(ÿÒÓ? Zô J.øî•‚Qþ{_Ô1ÉLb<Šþã†t‘ü5 ÷.¾¦QôÏÎZ»»^šnl!9>mÿ{hÇŸ&‚à¼þVŸ¯ÕçEw8ÿ TBã}<@<©ëëÏ?ÛGô¿kqÊ-7 vˈØQCºHýMß[§O7 Hÿz½~fi³K>#bÕ= Hi@ðù[[AòÐPý㺿xù~øø½Wž}mëGöKÅÿýÜ€«¯Òhºõ0tp§²þ½Õüxœí{t“ežÇ“¶I …R,íA”A ×T ”4G2õ¸ƒguÙÑãêÎî - £ ££mʥЦTÝÕAÜeÕa”Qqè-½Àm’^rë%½½¥Išìó¼Ïû¼ïÛ6-sJ"'¿O“7ÉKþМóýÝŸç‰&IÀ=ŠtJê¿›[[ZZj›û ø1ˆ¯èIn07‡N—›ÇåfÞ`²¸°ˆÜ.æ¿üv3’gà¼5™'ÿR\VRZúiL€H,OVØ“ef'ÿtÅÃ;Ï·¶¶Õ}RÞe`u?HdÏŸ±øeÈ1<â¿ÝÑ£»«£½½³×þa\.7+}òÁùYx@0B*…=}â»sg?•3M­ ¾OÉ€?ý°¡µíËC%7lÄõ§ÏØ€þ¾~|Ý¡~ç`oW‹Ù`D˜,-Ö>ý‚pÇâÂðA€Û]“LäÏçƒ'öYн«³³ëzOwOïÀÐÇÛzÌF“Ñ`4` 0[!€ÉãbåïbåžêY^ðÒá¡ÄÏSˆg­SnbÔ¯ÌÈÈØò²é›#o¿{•Äû$â·õZÍfÆl6[¬]Ý}¼Â‡ºÍ&${Æû#˜·mvþ˜p‡ÁÈž‘”ËÅ ¿!¡‡pŠ—pâÇH¦Rÿ"Ñ]óâ2”ÊÍ›×-_"›½|wÁQÕ‘’ž!&õGØ»,&Æ·“'2-Ý=Ä8{šMª}¢üV00i\lÙÏÍùÿ ˆ‚ÇÀS«‘ø®ykSb#æ!Ã"™·bÛÛ¾h±ÑÒß`Îí±Ê™£p“¹¥«Çá›°úYÿO¾‚¿Û:äëŸî \\òïbkèå«D1ãÿCÆZÌÔV02>¨˜óÔþê¤é70Ôm¡ºf®“©£§¥É@¾sþMM&‹Š€0Iؼßí¢olíÇï Æÿ£™â`4áÛV;Øäÿf3•7qðš  M¼î©ãG¡AKkçõ6¨À?qþøÏy³þâáežt/õŽþEq¿ù¦cˆ©ÿ µ‘šžÐÅsß`ä¯líÏÒÑo³;Ùr#P ™ÿ°^*­x7E<&ë÷žÿ…>ó‡‹62ê×l`Ý» ÿé…Öû¹Ãß³ô€ç€ICÊ}\õß=|½ñ|iqù§Ox¨ÿñÞfý‹¶}ÛÃToZXßÏ÷ø¸‚Ÿ¾¥5£åúð­þ‡ ÐÊ?›ý»í—ËKJŠË>ß&¢Þ_*åëþôeêë£HÿíŸ:™àN³‹î‚ˆ_PdM€ÑØdêvúú€;û$\ƒæò’â’ââ²/_ð÷³F`ªûcy,ïh±OþYM´êÏ'ú4Ø7°ê§þßhµùð§€;vî˜Wï5äûK0ÕªP©çÔßé¿Hôx~îGC(þo3±Z¾ÙoÔ †–^Èý`²¸øÕ~Œj¬*)eüIåû $¸íá¿è©|Uþw¸þßfâÿøF7DùÔ:àë_î\.Úôcüæ QWû½¤ÿòÓ?¿xûÃÉÏòU9'zþ­4ÊgUnäTOëä^£Áhî€ð& ×%g^û-Z®îJûÿ’Òƒ3Ç‹þoõ_õr^nö1mp°&ÿüô_ó§å?sk{W§µ½ª0y\Üì¯{ø¦E‡ô¯ÓÖ^®Â€æã‡}–ý‹}ë@nNaep°ÃD‡~h«ŸbïšÚzúí¶!Øÿ&[üC¢qÞ0é0Èh¯Ö”—ýuçHýóMÀÛïþÃ^:¢Re«:ßÙßiâgûŒÔ Љ湳Èép8ÌÅ&&ÝóÃí¸nb¼?ºhuúÚï+JKJÿg‰Ô£þ½àþ{ææf«Ë+j;©þïÏ® 鿹˄o·;؋à #@0)È^?n{–¿VËÈ_ÇTJËÎü›¯ŠÿwýòP®J•Sp¶¢ºÁj6ò á 0›˜»íŒî‰þà€&)Ú; Z­Ž¤ÿäE_{¡¼ìä fúø~2(õFñO´y?rÿªœ¼/*45¦fáò^Á 0¹c²öaÙ³îŸè½@“ÄÞÖ ÕÀ̵îRõiO@/ÈÉžƒªÜÜÜœÿ]©Ñœ7›øa#1Í×mÔ÷“0€DN'„0=’¼–FÿZ‚þÊ©çGLH½%ÿ —r÷G@•ô_¥å{´(Ú‡vAò­û Ü»AËj^GžL 3œÛ2C4:¹ý¹¿HôÌ[¹*¤•*çh•FSq±Á(,ù Z8ü¿î$!¿ƒø}Fÿl!ÜW_#•<5L éâk¡Ø¬ý{Aþâ˜×‰óGúϯѠ A8÷Ç­$ËM.ð'å?¶À\a&ÄÙÓXGú~Z¶@Ò€úK9‹9J„îßÞÚª7PîO @Þ—HÿÕ &~ÑŸ`0¶ MÖ~âú© ÞßNp@&`¨«‰ üuB#€¼á:Öy³ñ‡ä?{ÕïTŒþqPT¡ÑTÖò“þt?êþ;‡¸Ò‘<×ýÀÄØÚÙ–Ÿ®¡6wÍ ªÈ /Ê_`?CF`ïë£^{¶êÏNýàúšR…|‰¥^iüHfÌž¹êÉ7™èŸDå(¨5š.W_©m4™øÅ€Lúß:àtpmÚ°sƒ€ ವ,ìÑvÆûkI¹¿¡'Æ@¯S=4m¤2ƒ¥A·]þ¢°È0YŒrÇ«o0¾×ÐK1 j´W>{+óбÓþ¢wMí6Rù#ÆíÓ ;¬€‘ôµ4hõ-x— —½MOGýtúkU•U5Wôõ8¸òž|ôþâ@o”þV%G­~Ï®]¯å “ü± %çÞØ´>mÆŒ=¹Ú$¬4u9¨ØiÓ›føú€N}õßõº†v‡{¸ÏHÃ}ôüþÄ3Û¶¿\p¶Z««½x|Æ­¥z[ˆÜºcWfVfæÞì\.PeWT”íXKNߘþV5çýq$Ð9h§“?| ý¥_[Yv¾V§kì²uÖs‰¿N[ùÔÌ ©T4MñÍù¿ýa»¯ô/JÚ½+ ‘™Mª8 PåüUsáÀÖ4…É_þ¶}Ü`6˜L–f³Åd4µÒž?¿ü—Ÿ‚p ÖU”k*/!É7õd©?c®me×÷…„%üçwᚿكñ­5;•Üýð¬ÿ]oä0±ÿÃyy‡²—ÿe*qÿŒxôõk]qþ¯ŽîýPÛÖ=@—ýQÉÓ ’À0\ÖšòòrMÍUvÔ‡„þZ}Ý'át¼W*™>'*s¡„øá…~F°øŸ333³²~‹½ÿÁ¼}ÿ”&_•°B±%C‘ΡHÛòØöئÇy|ûîó®aºôŸuýüj æ èlW+°þ+.ÔÑ^Yçwéç‚S~¥’à%3½ºÕ—é Ïã ÀÞ•êðÞ§â¢"#æÈÂ×®WòúW*éÊ´ iŠ4ņTå‹gz‡¹‘_®íG»ÈÿCúªÊ±þË+/Õ÷OÒÿúšuüò>ÆŒØõË»)@xÆ«(Øó¶êÀë[†Í‘EDÈ"æ®Þ¨LWnB®à©Ïs¯/(ú ¦`04Œþ5šªK4ùǯõ•÷zØåƒ#È«@¼ðÙ_gâ@ÞöØÙóð3i~½<å¡õ•‚@€dk÷·ºœà;ôè07ðZÚ ü(¯®ôþê5³„z½ç¿Ô»€x鯲²²öeç=Έë?Q™–ôã¥Ë–¯ˆOJMW²A€RɃ OžrssÂ: [€ êª+4¥Å¥e¥e•—èªôÔBÏú÷Êš_![wfeý&;{Ãì–yre|lT4"*j¥œ±JåÆi©i ¥R‘zØÍÿÙíœï§;AÜnWGÕ¹³g>ûä‹Ó>sNS}î÷£ÓÕþ1|<éK} ÿÀ¥/ffí|sÿúpVþ²…kå÷EEÇÄ GLtôŠ”éHû)ñ+ï_•’ºQ±.×mçó};] ÌOûú—ß3PÿÕÇï¨‹Ž½wâë¿ÕÔ‘ò¿N¯¯=á!êç¯^žMdGfæžl%òÿ2‰ÿWÅðDG¯Y¿,½¢Gìƒë×g»Ùùn·˜y@ø=5ï¨ ÑŸZ]PPôñ—ß³»þ\½ ù|nˆGõ³x[ÿâ¹O¼’µKõÆÿc0õýØýsÄÆÆòH<ìæfÿù…?v~SH¿çúi$|,~Laaáï?»‚õ_§)|nËÃΛÌíóO,ÝìßÛõ?DÀê2w½¹u¾ŒÈ?"bÅòh¡þGµº€«ÿqš BnëGØùÿä¯V¿[^«m¼°oÃCòä䤄Õá!ÁRϧýz_ÿ¢ÐÇwîÉ|!9Œ—.OýHÿËrÜ4Ø·sÇ WÁà÷´aé2âg®ê“5ŸnOIHLLÂ$Ì æ o¼³íÇÄ+·?-ÿñdl0úÞñõ½ð57wö¯úž¹Bø9-Gˆî©ûW«}uòÙÄx¬ýDô'_îÁõû"ýÇÜ9]µbëÿ£p¾?N½àÅn'·ù?·€`1 Îüëq5ë÷ ½süô(Ê{FÎÈŸ _<ÃSüï•ó>ÆÀØœ9Ëîaçÿ¢bÇÑ>¾,øÙU7ïõ‡6ø7Ý*`¼ѱc‡ö¿ºk_Öîßm“'ðòOJ^&ñ Dÿ” ÙœPÿ‘ÿÒæQÿãæ ‚`?§çÿ°þ çf½ôÜOÍxlÓæ'å‰IB’çõÿÞ^þ;’ù‘LP¶xüô?6æžWÜ4×çV ÎfÍèðg:Obýç¿þlzb\|||\B|ÜHù'¥Ä„Ž2Ò`/ìù9’ˆp3-tø1¤ÈÞ‹^´×M½<ôw"7 ðc:>Àu¿,E\Â(Ùó€å³F'^9ïgB¤¡aÈüˆ«ýEóúgÁý?þøo~Px"~=À±~¤V«¤Å#~¬ÿûÇFïìî–EDFWý‰Y”~ÊÍåûÜ̯ þGs¿Åe<âÿÿZ?žóÇùÿ*™ÇüÒ˜þE’°{–Œ, €èÅ{:lÎ{ öþ° ƒ!ü–óÇ ÔÇIæõŸHÿüäe£ü¿&ÿ<3sá¸Õ¿Åòã=ýOž F>Bð[n|›_X¨Þ–2Öÿ'ËÉIò„LòûþIC$?ù£`Ñ8À˜y¯\kéròûq x›@×Ã: À_¹yöh¡ºðIy"ëöá'''Ë–ÊfÏŽx`UÄ4 ÞèKÀ®û‘K|-z’HÀ8 X˜ñi‹©ƒßñƒ³Üaà‚ƒ ü럪 ÕûRéÄOrŠ|ŽËc–-˜ N›Î5úØ$À»ÛþÝŠ¹žWD=sÍlhí”û…‡ðƒvr˜ Là‡8®½ÛÿEéTÿkæ‡Ïœ6#dº'/&ƒ??(ù‹fzN<ýµÅdî°ó…>Á柾/@†‡‡Aÿ€b¯Áî¿ð'H09N6Ag?(8Ä·sŒ¸×Cpqâkgê.×öó•>Á²_.ø§S€Pü’îo0K~­HÀ‰¢‰´&–ø|îg ³¢Çn²dùKª¢ÓßýïG—{v»°þ/(ð»ÀàŸ¸´0[=·6)9aÍÒ‰k{SSøÿæ= ðxœíw@SWßÇQ¤Z[µ£µU«Djõikõ©íó¾¶Žâª{”P jÝ"à^@Â& ɽI@2’°Ö·R[­2ª€Š¢Õ¶ÎZT U ß{Ϲ+ˆ rA·Œ›ü¡—ïoŸs­¬“öo:Ø×Ânðœ0Y¤“Flϯ4V«È[y`$™'ú^mz„@´BL¹ µJ¥V©·I\]œotnTiZ†.ýkÉ¿ÿà©„€xˆ¿l„Úg¬¼ð’ ß§à…² 9!~¥ü£ŽmøVò?ÃæusàðÞ*)€4²´ò*¨¨uié“wäü­•sñJ õÚ·ù–ñ?§ƒ-7ö8z#pþh°ü‡”öêU”ê¡ü‰ß ù#Z+Ælµ øüM¾Eü#„帢Sì_ýõ«|køyhÓ‰‰ú ¤Pøð&•¤Þ1Q¿‘–>e*‹~:Ss+ÿð®”h9)“c¶óðåJ¾Ï a*sbU ü=Кo ?m;CñÛ÷ìØmä*ü%ðA"‰Ì,£}>]@uå/©QXò.L" ˆÄbQ¤2ñ¸­€›ÛärL­RkÇ·„Ÿ¶=€ü{ØXYµsÙ"¥“GçߦkÿT€¸W›îgn ô'…/‰Ää˜8ؠΪàûÌ ÿ€ªc>m:·o'&ÅÕ-^ÿV6=íì{€…õ()|)U”…„&\xPmd þ¤ï7Ý¿v@ê5/¢žà±(Xµ÷Z“"¢‰0•æ”7àó%™ú”„èˆàH<Úýe¾ü¼¼Ô»W7*‰é°Êü%™<,xý:QRé#¦áG†ÿ&cq^b@!{1åöáx1@ò ” ZoOÝû{ý«W¦óûµ:½f[DH¤JÕ_õ6¯¼DYŽB ‹ðs›3qÒ¬¹{JÕÀYðO¯¾¼_±:{Òé‹é;x"Bè»Mušˆ¦àÞÅŸôý¡õþáþµ:.I"uh¡Ã?uѦ_8pþYøÒa½ûôíÛ§×@ñC¥©Údúû·_N(<¤J§xL¿!ª.U7á¹B ™ŠÂï4V_p¿ž_¸_¦Ñꈟ‘!1³[âäïhc.ƒÀeNý ç‡Ò‚;K/~7â=Ç^=ì&¯÷§ÔNÿôK`Dâ­ûQ Ñb¨)?–š”¬Ñjuë7Ðfüý;Bü:­65E†«‡¶å[¶Çk¡2RþQŸ÷µ£ôû÷¦SŽý€9°¼ã •ÎÔØp…ÀËM|ʈƢª4#)19…ðç:}vE}JW¦ íá?ñ˜‚m[Û›oÕ6m‡ƒöŸÂ{ˆ­‡ƒú³æ`ˆ{åîé´Ÿ®À8À?ÝÐä§ h þþ=uO"aH1ë¾=UõìoÔÜÎNÕñUˆBÿá ØxÂá?l1pööŒæ܃÷ְźHA¾±uÒ?¢EP’«#ÔŸ””õ|àÒ³ ÀÃB½:" ШÂêÑ ¾uÛXtí)6¿·]-[`'8ƒñù´ë§Òøo¿Òôgx^ªÿøA³'‘4RÏZ]êá‡ÏúNÕ¥t¨~Ò^h5;Â0µ*ÆG@h§ øiÑ´í'Ã?²Èy½ž¤~òÅ(Jì”þÅtðÍ@ -€Šï’÷$ý“¢ÖéóÍ Àãõ€â})ZZþÄóî0\­ŽV-z1JçÃ韨 io×öÿ\†‰¨ú¿˜bÇb®Xè"ÏÁݤó'I’ÖjõçÙ)  i Iû2/±_¨¾wë§=‘þkAôO|i‡D­&Ü«ßÚm z“â'n2ÑTۧ飦ÈÔE„þÏ£ D³§æZÜ"÷'䟔¢¥ô¯ù–ž2eɽ—,]æ»?p…?¦¥ì—©Ru°ÿ§Óiv*À Ûñ™/B °¯ îþ#pë÷tÿ/bšÿlçvEâ@Ù9Ï*Q?jJêAöŸ”bzð“œI¯Ïn^áãëëëã½|yðÓB}¨÷â¥ËV®Z¶+ý›ô´Tÿ'àä*`utÔŒ–¾ ˆäU?Ô?¾ ×Säoÿ¾YÂÏ({¨¸Êï‰E êEʼn}„û‡ú=ñ°ç(XÃ~ó6ÀgåòÕÇc×®Xéßò[&Áã’Ó÷êSõ‰DôOïýBÚ õ?©Ì£/5ýGüM?ê¶ûÈôÿÅt @,fúþÚ¾O,QLåç$“úO =,ìíù¡¸úQõù;|–yûøRò_5o„Àþƒék¤²ðHæU¶†õ¨ °þO¾ö£~PðuDÿöï®Ñš3?³*H,B[ Z ·¾ÝCø ,éþžfÿ¥òô:¤ïCF_ý«–f>Ù ˆ]=€¹6>í·€ `TàÔ'ý?æ¤ûb¶w¡ðÑb0žÒ'’ñ?þÃÁ¾}¹; ÿ÷«¬^únmÉ´µéä7ƒ­6 CD°°ø‰ý-áŒü3ûÿP«ÿD"ÿCø>§D½ùëǤ=IXýÓA;@D˜9~æh§M¢yµƒÅuÚTXO‘#òuïÙšÏü1îßþELà/ªÕü'o{óÿ0+ï?0œË<œ•WxÍŽ“Z¨¸ªG«KÕ§¥iÃêR¿¯ßª)| ´©±õ %Ñ”¾»~Û¡^!œŒŸSû§LAptܾ³%L PqóìA½v×ö˜˜¸{NÕw‹ÂRÜ>¸;YC»~N¿3"`ÚUuäÿDø¿d8ßúljÚ ÛŠI$ÒˆEfîŸ)Ú:¸ú3;þÒm¶@È?R!W'|“_Fþךnþz$=A%•É1…\%Õ ½ÍG ÿÛÿ¤ÀW/ôps[P«ìG‡ÿ}ùÖg“Óar°œÈ6ç.úaô/øÐ;”ÙõÕ?3 ŽTà˜"J¾ã@ÁƒGEg÷'o“G)0 Ã1<ço¾Ï6aޱ 5Q££Æôê•ó¾pss_X·þÝ»ó-Ϧ§‹§ŒÜû{n_ZÿŒ°·{{¨g0gâ—ýÓ»)”8†ã˜\ªÎþ-m§JÄÃ.Ó^A»#š¿êS¨à_—¼ÞÍMHàÅÉúYÖ~щouZ€6DI¥ÒMN®ãS@ýfˆè‘?±Ø¬ù›Aá@þä]!%îŒã'ß$¥ Ùf°…ÚÄd ,üëUKç‘òº¯4¯üQþ&ßÚ´Ýæ„ˤ²°9¶µçý?ßÌÎùÔjü‘·0­tœvúPÿÔ{òؾÏ6aF͵ïÀDºà  á¢:Ü¿ŸïD¾µi†úÉ$ÉgèöY#0`Ʀ`vΟžþåÌþËa´CÇm•H¾½Í÷ùF ̸~ î¨Õ¥oñpƒú÷¬+X7›oiZ„m"2É‚æÞßiöæ ÎÔwä¾Njœòù8%Ê`²ø>Ý„¿IHJÑ€þ_º?Ð?q÷XQWÿoÖ+|kÓ"¼õE„L*ÓŸZóîÎ[˜‚]ü3›ŽŒ‚ú§3~ gòXÿ#ªÃ|Ÿo‚Ë©äÄÄ$8ÿ“&òþŸxXTG°fn‹¿Ú_½°þ÷&ETÀ¢öLùßvðÚç‹8ý~ö: ¢PL Ý=›ðí}ð¬ˆÍãû„#,¦ÌÝ` `2þׇÑù¿ÐÓÛLúÀ¬Ö^ýó‚òÆÌs†w{©ë`Xò+°¹2Óè1mv@¨ÇéŠ@€3p`ÚÑ|0dúצ¥êôiz=¶ êßÍM¸äñ`—€oeZ†ö}œ^ooee3j„ˆýí?õ³š‡?³ HBeŒä©šåðá[TàÉ—ž}VËpqo‚fG€·Ïê­a1zÍF!ºyyƒÝ||é'"ÿÿzßÊ´ m¨ÌG|9J °³í?Ö7Ä<ëç‚ DŠ™»Î ø’. `˜2õj=®´‚@X‚ü”ùâY®“¦Ìœ7…l‹'Õº/câ~¦¸|4¿º´4Ý–/)xÛa‚_ˆ¨NýÓ+ÿƒHùcLö1•Œ*ûÓú‡¨öÐ ¢YPs(Ÿ?f¼««ëøñã>.ôÒÌ÷®½ÐÚ¥­Äÿ3Œ Xø®Ëç›BÌwûdÿR)@˜ £Â|&Øgêþh# P]­ßµVˆ¦ÅTü‰~ã]'ã&Íaô/\Ìqþäáêåc^ã[¦ë—¢¯ÜB‚Ì–øÓ—ýdW@ù³¦ÝOËŸ;DÞHÿˆfAåétÕ‚qXfÐñ¿ÐÍc™y÷ŧÿêØÂ/ñÕPÚŽZÄÆùlÇŸ»î'DŽsü=Îfýl ÀÆþÐ4£øÑ0I ˜9žÿÄ ®Sæ¸3ÀkÛûóõóßý•N/ñ­H ÓÇ#˜Þä“s/6ò‹ƒÃä8ÇÝszþ·ÀDÀFÜ©ãÚj„Ź÷Sê¦iŸAíS›¸Í_É)þMëÛ±sçŽ| ÒÒ|T«ØG_êúÿP)Æ&þŒûgêþLõîÂ6@å³Ï anfl€ú§àB¡3ìã9°í+;·†ÀftÊ]ä˽ÒñfH„\Éôù¹Í6 gèY òÍx#ß§ñÂ`jp-ÉPÆöŸK³6NqåèÂÄén¬þÝç/‡Mï¥ÿÓÅÊʦËË­¬`eå°ˆÙ퟽Ò7©ý Àµk"©Äž‰÷Ùr;úË ÐB¥GýDcq÷^C¿qål1µ]̓ò A¬þÁÁ¤YîBʸ¹ =WÀgñ´^¤Ú¶:ù[½ú‘_î3sA!^£F¯WÒÑ=ÛæÇéñ?z €© ÐIAìQ´ ¢±(*jàîœÎ>Q Ž*ïV”ÝŒ™=~‚ŸÏrøj™¯Ÿß×/Â~ÿ=¦E2s¾ÌAp Ÿkßö}–ªq¬Vœo>òǘÎ\RwµÿÅ•‚’¥“5×r³²ÎÔ+Ê †ÛßxŽeúÿTàÎ5žËW.ôz§µþ9…Ò-jô'(Òoæ0"ê¾H…Ñ•=NÕnôÑ}ŒSÀp…úpƒ#6âI\Ì3\˜ßt£ €Æ*ŸÝíØ¥'ïLú¿-³¢ ÿ­ CAVvfž¡¾%€šùDôŸ“•wHþK ýÇÿÈ,€2lpε×,è<ÝŸîùoþjgÄËã”æ¾ä?ä¦ÿ¸æJ<*\ä ’*è2|ÇhöÑhÜÌËÊÉ9v¶¸ž¿ÿKéþ‰Ÿså„ó',Àí âO&<ÆäÙ´˜7ªÕ–þiÚ¼é€À5S{›ý¦»šüòŠØä½:0} äÿ¥¥wN¬ÃÄÿf!™üOo%{~=.€ÍK>ì^» úÒ%3ìC:z¡uBïŽ.CGNMz×Ùщbð—%i$¢ãw_D×F47Od“Þ<çç¢ûÏö+UEÇAøOVN^5@ÊþÚ3ÚLøt40i®‡ÇìÖ¶åGÝX¿»Âí?=m«ƒÚülú­ŒŽ‰ŽV+Ó1zwt4r#óÒÉiø:²D Ú··ÐˆVAMÙ™, ÿœÜKŸùá»…ÙÀZ_È¿ZFˆŸìí˜X; CϦ¯5Ìš¹5?^¼QÇ D›Žvî %#ýz–‡×Z,|¤ÇŽNŽŒ5p(Œ b…è¸ØØú’zœØZ¯eE·îטPî€0ãvaf ;ÿ™ÛJVÝ >J†yE²h(+Oÿrª+¬û»r'Çùè|»¶·¼Ôš%u×@­»ö*ðè%ôìúFOÁÐá..0ßwvqq4È…k œþ7@E¸ÿ¸Ø¸ØøCÕw ·®ß(¹qåÊcy[Õ½¿®^-.)¿÷€:Ÿ•e×Îåeþ1óxÞ¹¢Œz Z†SY ÿ'4}üú3þ8žÎ¡?i²òJ@õ¯â¯#ë&Ï €Z!€ë¸ÅñêV¶ßgƒ±~ÝYŒÇ,´§_¿öº‹³³Ë o¿Õ£û›}¹ÀñÑʘXBþ±qñ™'³2ö¥ïÛ¿75=÷ô±¢{œAw®ž9~äȱ¼g¿lÃËÇ2Ò’“S´úTí¾O–6å_¢¥Q”›Eôs2ó‹ž:P}=;‡ÕÿÉ2üçÏ™9kjí ×ÏnÇ&uáS\-€výƨ¢pÞéôƇ>ovíÐŽ:vïçèÌêІ˜èíqq„þc£ãâ·«@Ë@#ÛûÓeæÄÝ:“y0ãûƒßgdüp4ï×?Kÿºzê‡t-¸:;y‘Ö”Ô£ Õƒ²þåO<ž¾þ´¥%åùÙ9°üO~¾°Œtÿ·O`žSgÍš9¹–÷Ÿ0_µ}jgÞ„U'ÿú—|£xœí} `”å¹î$DpC͵ն z=í[[‹K=.€E½µ=m¯µÇ{[í©íµ·z½íq«UD !Ë$€Š [’ÉB’™$óÏšI„e&ÉìKîÿ-ï÷}“LB€ÀùßÌòÏ"‹üÏû>ïó.¿J5Ñìʤ|–ôÒu!ïÝxC ÿ|Î’¥`Kîøsò¦Td›6&møì³ Ø’äà ë?ÌïÄæïª***)).F÷⢂"]ùŽÏ·eeggege¡§¬¬mš¦þAÅ#æl¨ÒétZr×Ö4ŒøM÷‘*­ÿhå¯Öìéîê²7&ÿòéU²=ýè#¢=úóõêçg^l8]rvÕ>Øü½)#áʹÿ·ÿïÔ”ÔÔ””MI÷IèN?ÝÖŠÿ‰‚½2ìøKˆ())ÒìÚpŸ½}çnMî®];²vì÷\¬³K± oM:„g-y¬irÃ/ØeªÒ1ükõ‡»»»»ZÖÿjõ3«V¯ZµúIäVüöÉæÿH¸x8ºdmÒCÿH¾cÒ(_˜~Ëm€ÿ»ÞTc@`€Ÿ´’€ ) ƒ@00p…}ìJÈ#ò…»¶ËqGÞžªj©¦¼´8¿²e„cÅ.;óªÒâèO´Õº½aÏw3ú¾ÉVehíéêêxõS«žy€UÿÆÀ£Ïºù/s.ˆ.e‹^ýYÜhŸÇÄßFS€Å¾›‘’‚È0 þ I?Õvoïj3ì!¡¡¾@IqAÎÎí»÷ÍÈL&I»§Ì3¨xÅ:ä°®X£'CS_¸“£ËÁ¯îT×éãû^]±=À“ü_Øùæ¨gµbÌ®zøªQ?¿ùÿ?öt„@?ÂÎ6|–¬Þ½§pWöŽ"õ,ì3' ?å—hMfùÇ„€ìŒ;”@1d'%ÕuÄ0¶ÿšû˜¾„ò„ÚC=§Zö×i_%ØÇà©G1ÿ_ù|Ò¦ÿ1#ê"áç’·É£ÿŸºÀůnL“ÙrKÿ7 `SÆ—_eeoßž½“ÿa$ ¸ToB±ì,&]í“®‹º)6±ÌqÔ@²z èUM}—Ëòµ m¥–ê„èÁz¢ãp½©nßîß<µŠÙSˆ¬|üåO»Vÿ8Ù¬Ûiúÿ­wÒåô?-™Ÿ cræ¶l,ìgoÏűžF~r'j`™G~ÿуìŒÕå{jšÝ:ë› æépð%U ý&„}3IŒÝÞ Óñái@ÀÀ¦(—u·? e©?/VUKõ;ù)`³Véf«^ªFß«2m©³64Õl~ã÷¯¼ˆ¡¿úÙg׬Yýô“˯S©F´;;ü/~=Y¦ÿi)IL÷Çøß˜öUÁvÖöBJúIÖϤ€¢2‰Ä|ì°'@dÀbÔ•×´úBOˆ ßçõúä»üàW|À×ÜÚ[Ž7ê«HP×ÒDWUé´Æ£6zvx[ëÊ7¿ûÚ+ë6×ÖÊŸZªÞ]³öçzç­·ÿôÚ«ÿóW/¬]»æñ+ztõOï»î̧´bga€ÿëÒpïÃ?yÞø9êí!¶³„fÿ@ü)þK*Hè¦fCMEim`‡ü€ÏãÅæ‘Möáh@}3¨¸†Kß¼§Z[Ûš-Pd áÕÚš­]΀ü/n/ÿ×ß·dჿ¦©©–¶ýb®jÒU³æßòí§_yýõ×~zÏ‹çÍœ;gÑ=±‘ÆË×ͨþ¿äwɸø¿i#×þHôË$`wi ?dÿÕ”ú›Í¬€9€Å"•—Õ{å_ŸÇãv:n¿ |/öäÉãõù1ÐIF [Àï'ä@a—°qn°µËø?VºÐDñõRUIeU©©¡Ýît¼ü­¸ø¹óç$$þ"K[ÿ kQ]ö£_<¿d2¼¼r”^6ÅÎÅb þïøµþ¥ ü“ÐOHÀÆ­4ü£þ¾šöwtucÐmÃàöØ à%8÷ôõ8Ý ÷äÅ\²ÖQ”‘–¦nèë;!ÇÿãGë¨ìâ¿V»óñ‰‰s9ø ˜óÌ‚H£âò±‹Pÿÿ¼¨¨§ÞKÞ”òîsËžL%µ?RHý…’ì, å¿Þûƒ‰@¹d6±xOo¬`2ïëìê" ×á!p/àøƒ_ ÁŸ ämÅ\‚vpsšZ‘kvõžùÿñÃ:ÖþGÅÿgÉH_¸pÁpK\xçôH£âò±øÛ—,]š8Y¥Šž¼ö¥{®U]»2=‰uÿ'mØ$LöîÌ'¨‡ùêŠ* ï‡©€Ü ˜MÖ“2òñ­ÛN)?¥øBœçŠõ ^Î|g>Ý›Xv2_†¿:=cK¿«·½¥­í°ª~”TÝù €,žiT\63÷ö¥·-¸_yuŒJ5é~õ¦dÒú|À¦¯²0þÑÃŽ|^÷§wü£¥„ßDûLð¿®ëîê!á¿»Ÿ¢?=ðÙ÷_ð·üg>á›PfP§Ë?juZå G§LŽí«‚ù_ÜT¥þfxä[tm„QqùØ”¹·ß±ðzñ¸gþêzªnØütÿdgí,dÍtîý•U‡¨à¨hi²>ÙÝÓÙÙÝÓÓØ°{Y>ÀŠLÈ@¤OgÅÎÊü'4)jléÛô6ÏéÖÖ–FôÿbP™¶4qÁÈvËõ#®Š³E_9#nzÈ,Å3f&,YöÖ¦Tܼ)K“W”Ÿƒ6||µZ~K(!Õ¨úAÊoblÀ´ÿøþºZ­ÁzàHK‡Ã•=®ôyD_àáÚ÷^o Ògôåd^·Û}~Œ«§rKZzºÿÓÕÛN t´µ6Ùð‹GÅÿâéÊtÏE³èÉ!ÝÔôÿüÒ‡^ݘ–œ¦þìÿkÍ×¾®ÎÙ™•µ‹íý(.fõ¿’âÒj3„}n,0TççjŠËÊuu'ÜA?-û1¢ï匀ßBÌ£(Ë\'Ú[[ZZ;zìý®p^×çr ­o4ìkÈNEðG @zJ£Çëèlki¨Æÿ´ºê;GÁâÒi‘‚bÄ¢d“Ý¢‡ÿúñoŸþÁ¸)ª«üð™»³wpñ\Šÿ5Œî›…F|,iKvçææireÓ”èêt¸¼BÈ¥Ë@d]J ࢘ïÔ þ÷³Ôhh<ÖëB¼\ý¶Ž–#M‡››[NöLš 2Óü1þ7éz¾S­ÇLt¹Ù¤]NžHSÿox»Âÿ#iQĨî~|6y-ßã~µyçÎAõ‡þÿ⢽‹¢=Ç>zi1Tææ1ËÍÙ_ÛáÁ³?, Œß™+0™P~5Ü(6Næ9n” ÈäGI/™mµsϰ;t ÞlÐëõµzsS{ï §8# “üºûDÀë8ÙÚPMKD|x!ƒ}"õ\\¤ÌøDÔ¢À°ã(ÕMÿ±élå•WðÙäSª 5Mž&/=¡M¡áh—‹á¢¿0Àº9Ÿü_xó´J’Ñ`0Ñz–ôú¦Ý.2áè:¸Ïd$ô™ü#Iµr6î— VnÅ‘_MJéê&ŸÇ8Ù,± º½¾t~XêÆ]­äÿ‘´¨¨è¨¡¦ºëŸ»ó…é?6TRi ‚?þ¡P*G°'¦ÁwM^î®Êv‡ òq¹W `z ‚ÿ nvübØHµ¦›g0èùgØÂ.w ´mIÃðO'@z²Ôï•€ýdC l÷B`áò°øÇ¶ðƘ3Ÿ£Š]8 Á}ͦ>WêÿÅ|  x¯Å>3kþÁf¬,È¥¸ÇOÿ²C(Ð5Ùy‚ºÿÝ}ÞüäÿÜN›ªÚêø.ÕvõÉ´ßH># û£þȰÝ.þÎíjœû§ '…'ýrt·›«ut ÚîýÈ-‰aúÿXx}t¤py¾`Ñ2!ûa~n±0ô³ˆÿsúo‚Ö_“ÉRS¡_CÜ€†Ür ëm ¸»;lÝ­m=ž1€õÑ÷ýï‚[{-`PŽŒ„ °¤€>‘w džü"Óø´@–ÕÀMÜžf‰ŽãÑÿ¿Ý9ûá Àü+# €Ë݆‘¤,ßœ[TÌõ?üå‡*ëü…Ù?’T’œŸHD /óöqû<½­-µ5Õ¥…eeE¥ææ^Á$Ýü_hs6IFÊë)0r`ä´Ÿùü]S[È/8Qž‰?”ÿäi_4 C™ÁyÕêÈ0Äö>œ¶(³‚™ ý¬ >yPݯÙYTû¿iPiiYY¥dáÛ?Llÿ‡ÉZž‹#?¹@ò«ÛÚu5EEù ŠJ¥v‡På€â2²SV)„öCÜ'ÇÀø Ð7¥&Ñ3ûŽN•œúcšÝàð’)®À>Øü#€Ú¿ß3o„ôª¢þEÖ† Ÿ®(ÜQ­¿„ÿïÙ[”³}s¾Éb6™™èÇRc)“ýAÔ°Ç‚²2M~^®†Hè+¹¹…5GûÅÝ^¦ D —µHBbÏðÏÈ>È,C žÂz‚ÿîCš-é ü‘îù–¶ãþGôüÎ}5Õ0¤+áÖù¼(ØÜÉg¾†§¹¹” €‹@ ¬¾/Í| P¸àhÖ3Þod1ž(ŒõCY€~¿<Ì~ çþ›ÓíOM«ê† Òx½>Ÿgа»¼–nÒé¿ü~\¸ðËuJø° +þ!pÅE_üý/½øÂÏßË,¬®ØS‘÷»Ý•pã Ó¿³î ÿB»Ê*øk€ÐhXA0“ùžSXo÷³ Þ Ad\æ?¢7ôž |ë< ¼ð„CPì3}Ei¿rü¤N‘\TÌñ·ÿé¹öÔÒMÕÒ;ËgÉcÿqÊrïH[XüÇþVýâ}·&Ìœvã}Oüúÿ|šõÉ‹ nœ?óþOë÷§ƒèв‡vþäÑ }†}Ö!€ŽsŠšÜ>a)(ýÿÚ¼‡9þ¡@ñ‚yÑàWû:ñ쑾HQCÚŸÎEÀôô­;íâø ñÆRYC×€ÔT¼”8µþ1ü+âÿ„°¨°úÿï?;ëæØ¸øøY7Μ÷à‹̸9ÙMßøuÖ h6•@j€¡\@€àäÇš/ïü¡žàËÿAj㈓ÈÛ…ù ¹›ôCU#<ßÚHj`ÅWòóŸÔ~ž¢¦I?äÄ ¤mkp{ÜØ4wDMšöXf-mÐÒ›Ÿ(vÿ£3"}ö+ÆŠþÑü¯ý÷·fÇÆƒÅÞ4ó¦ø8|wÓ+Yɯþ6×–²¢_ƒ<©°7òØ7ÀQäp„¶Ÿã0´IœÚ8c%¢†7¤¿p5êÕ§ˆ~žÀŒZ¼­e™iTñ¤š ì÷üxìšèÕ´/ªa5€õß›3$ûOˆôɯX8ö¥º÷õgfÆ –7ßö†$lý§mfKuI>:÷ÐÄôÀU0/o·¶“­÷žûþü~dòã×j‡øxso?N®œ°úÐ4@–üCÍÌrü÷ÊU§ñŽÿi V›œÄ:ÿþ«NÏxÿ¿Êþ¾ÂÛ®ˆ‘Ãÿ$„ÿÉ÷§È@æ¯üÇš(Õ±0°pŽÂþ#ná³ÿµÌºuùÍôq¡ñæýŸZiSÿLf‹®ƒ*yþE%@ÕtœSí aÿg_üG—ô“ ó€ |©ñ õcü6`\2ß1£$£_¾7 º[-w^ÿfxÛ¿Q ò‹=$ÖÓª?ýáe€ô-o=ýRÑ©Âgñuû¢&ÅL’CüŒŸî¬,x÷{ÓãºW~sÒusⱿùŠöqƒß" jå“qªøe7Çþ¨øÍ¿òÆ0[ö#¦2J a;DÇ ›¶ÓÇ[ÿÎ%ûèÇ4àìj±` B0¦ß⿜œ7þý=ôh×Òýšû}§ê$>ñ\?d¶°¾@ôÊT›“ª¦Ÿiþø)#33#3C>zëßüå~6zGÇL’¿à÷ÿüéü+Tªk®ÁïM¾!Qæ·Ä)s?ÀÂDÿïݯR];g6~\\hpsâoL¸ðs-þ§À׈Ᶎ­Ò„Ó€ÊV¿°àì{‚8÷'øgÀØýOý#¢ DÅqrXÉ3Ræ?.5[“YB›¾ä»d9êèÚgàÂ'øâ!TÀǦê óSø“ƒ-_¦üÑÖ2¿Êúâ?Y±L@v4"“—|#ä?“®‰[°hö5ý\Wl¸ ¿JuÛï>\*?MKP7„ÿÇÎY•kb?¡æÚ"Æøàóù:0±º+Oø„ g¯Ý™ìÇ5À±eW}Ã0ôûñÌÿXã“RP ËD÷ Ppž Àßb!›þP ™ÛOî—Bˆ¿Øè²jÔITd Z?eéê-o?µâž»üöƒ<ñòêB×yF£þÞa‘~Êq×+âßD°¡øŸü­×Sþï<ùƒ«†fþ4ˆýqvkýƒk€Xª‹ ÉŸ¥ü|C<ï µ Gkç;ÏEü‚ÿÀX%À ­¾w»\nzö„º€`À‡ÚXðGnt™âqXJdÈ –ƒÄкŸÇoÝ^‡×|bø$}]ã>¡ñèÖûÞª-ü\„?Í2ßøÛà›8çêÐókRXœOš¢°ÿ‰a¡Ñ?æöwS’?Bd<+a(òÉ}æò¤°ñ“_´¦˜!žãÖðŽH˜/È5ø¨ôZÿÆ 2Ó ƒ4÷è“V€32€ ÏC± w¹}ð_^}ÛétÉ7ùÅ8l% ’ÄŸ¦gø.Tþùã9ÿ¾»©V¢ø'ë~-u&¶õã<´¶ÿðLÀ¤Û‘ÁÐÏöþlþû]£ž_á€bÅBÀU½Ÿœ´åvùíèë†à?Ò¸9ÏZÌÂöoª–i8Ó~ÖýC)s ô©Í‹Âð˜mω“G*ûÀ °V€Ñáå'øv± /;— { ýä¥|wôÙûúúúœ.Ï8ôôãÿLþ‰ªDÿ;¯ @°ï€‘Ä~æ f‹ýÓþ>ïc`A¸?þªIû¥ØîKWÿm{ôŠÑO0e½ß„¶Pý¯ÿµ!óÛèý)öC9@ìü§vXÙÿÌp)à’Ü!y~ž(øQ¼‹]ÁØOä–·ùáêŸcgÿ¾ã Çýü´xÔ_,€â;‚8N0  þÀô10`ëµÉÖÛÛk—}€ó<HÿDÌýïJ!í?ç“ÿû"ø£ÄŸÀÝŒ&aù—°Zþ@ÉŒ{·¦ ¾´û벟ÀŠŸ…¨*ÕM¿¹ìIÓè'0üÇÅÍúnŽ.ùÅ.d,ÏϦü@Èã5¶$äÔÚ|pùö?Úéè4Z,öE ”ÿ PA`”_AƸ‹†}·›zœ w±Op9û0ü{‘@7»óm²Èf­kêLjòóˆ/N: èw»˜òOqÈw ßì·ì{)­ß%&)²çr;÷˜Ê–Pýçu€‘eÒôÊ$cøM†™»‰VýHúÏ|Ø7¤Èè0m0—²«üо_’ÿß±óV±q2ý²M½k6“o¹?<Ý|ß:½» j(W~ X'€P€6à‚š“¸¨ÀþÝí¬qÙ¤hu2ø­Èìw ÒöJÿûé«‘ ƒè¿ þ1þOi~ËÙG?¥”ôÚûhå!èpöÛeŽ€h‚½Ïyf¤©?Ͱ7@a=̈Šÿç(ú{š$@?¡ÿ Š¥¾åƒ¥ý|-8|nªÈøglÎä-¿Ùÿ-2ç¬bΈ;ˆšÊ{püK˜;}ZÜwÿøé3 ÿ@#°¾Tlø ™ûÉc‰?[@ò€Ü=ý´ü'Âàh½Õj5[‡;¥Oï3ôË÷#n†?SX0b#„W¯ÛEõ?—pÀ…@ùaÀF¥?÷9 èµø^WýÀ†¿bpŸÉ@ä§úaáœTC7ÿh#ðØqOÍ}ª8?éü‘¸3`=lÌW¨ íW,E¤ß/sËæÞ~ocæÖ/ñ(PÆî‘>[»@6ifH nö¬k§ÄÄD_û¬&Þý‹oÒ¡²2òË€¡ z4»ëú`ôO€Oc·Õ\w|ø4PoƒG+þióÐþŸp~êp4$ý\´H…A‡ÝfÞ+ú‚~—³ÏN¥A®Ø£;6ûØ„6«ü±æ¿s‚pàø~ƒdàF’¢°Ž_Þè#¶ó…l0°f¾ÐoFÒÚ{o»eÉËþuõÇÙ_ª·¥­šéÓT± eW&ÌŽ‹“ãþìÙ¦O(6±á?Ê*òyâσ?o÷ço2 PØ }¿‚ôï?Žð/?´Ø‡œÓ}‡ð'˜X,æ}'<ƒlòÂ>ø‘·aü àf¥~Ç¿|Øoƒ”Ÿê”àwí¢4H €|݈Òÿ ËÃÇ{ƒ"þ6|¶ø·5[yÚ/1@ño0„0~>ê϶p"€Õÿ¢Í8ü¶æö¦.âEõ‹+®áÜQìk`×_?õšë¦^{ý´é³bc§ñNŽÞ7š!õ'ø·Tð.QüK~<ô£óõ]DýàïîØG<¹éÐéSÚ݈¥?À¿Årà”o0ø'9´‘ã°¨ xÜý‚æ‚WŸ Ê~½½àB@¢ m w” ”ü€ýÓ^ÀáÍ}@÷Yá¶œúƒ]‡ŒzAöãðgOPóãSÀâB 戨ٞ*Ã?#õyñz×?yÝÅ?'‹„M™:U|ù`üg@M1Õøø¦/˜ yš]«çþþ¶:Þe`6õç´¿ÅJÉ?ó½ƒdâÏs€¼ˆ)þY¢OÑϪàú ðgc-6ÆÄŒ —¿îµ¹Fiè k¢‰¾@ïƒûœB¿06ô{:ëôû Z€8÷/Lê¹6 ?ëó· ±/c]|¤N@Å&”½Rƚɰ¡ J|®Vü‡y`¾ú;/÷¨Oß ð·7“ÔŸ‘|«ÕØÃ>vZIZ`%i–c® Ÿíþ`Ì?ÀÂlñØwCÉŸÕþ‰_è ©üÛ¸3=PyÐ7ÒúÖòG­¨Ä'œÖ(êA–Ѐ³¿ìG%=O÷)ðiÿ/¸£¨ÿñȼ@ˆÞÙ»/üOý“²´G1dqÁ{A4™$Ò(6 _ÃvÀ;å¶€74ú÷6YI`·…X ´é&Øo6î­ ˜÷¤Sÿ¼ˆ+þ°}¤û×͸?ïû!Ði')ýà3A€´0/á›@ëXú²Y (ñ(#àÂËþÏ2úû»õûïÓîV$aÒŸïûÿ BVPýE2^ùüËHŸwŠM ‹¾w+ÚÂ;,º¡ùghÔ烿 ê;\Cö}ö²Bd·þ廩ىá4éÇâ?T›½LðÊì » ãd? ÿn.ºÝ2þE”Å'Iy`D€¦ø‹áñ^€*ÿà‚TþYºÏè?Dÿ cc÷ÞãõtØ2}þãý¿ò°òWàý‚?àRiÒÜ÷—üëHŸwŠM{³Ö®(?Yô¥¹œÜ³¾_á->(¿*>êBÉ¿ÛÅZjÍfðYöo¥}>–f‡Œ–^ò”È ù ¡sOÿðöî †W6ñçr ‡Pÿ'xÊÏ ‚¼ˆ¥ ÚÜCÁØೞ?â@ëgd?(Ný±Wgÿ]f#‹ü¢àO;ÿ%€ÒžA@;/Š¢`yêÇÓ32Ó7®9ÒgbÅæ¨÷‹{@êkŠòóBt¾M ÀÿáÕ>¯×ïÒçÔwÕÜïé;Êe=+M¨ Ðì žª£5*ò¯5Bóïý^—öù›÷ÇÎ[´4ÒgbÆÖæ[éõLfkSî+¿É(äÛ=…¡¿!r û¯ux=ƒ}Ÿ=ô£_¾méóç@ÿñz3—ö­4 T ñX™¿$ò8ƒF,þa €„uàáFðøïùÝO°³Äž÷ý°B 8ùÁ#ØœáºùhÎ-€¬ûwP¨î9èƒÀÿg±ÿÏyÔ`¤BŸÄqé@èÛ!M@àÄ™ ꤼõÿܘþä´Éª¨hemb`‹þ¦#‹LVcÉ[+fÜõ^~h·/Kò¸# Š€¡Ýçì|ÿÞ¸[ðôo?ÚïuºýŽÓM@û `Ù¾Ù ŸX D@=ÅþöA!Ôóäö¡‡¡ 4û³šëÿ% Å?C6ņ ¨°)aùÕ@˜ àûA À¢!ð@€s~@>ÿhŒðh,/¨2ÒÄ_â 7à¥J`ÞG¨ ;ÿ±Ðnú`ÝÛßWöu*j1ßßv¡ßbÕ&ýlaŒjú¯ŠÄŸ'f, @ÏHûlygY|ü¼ï¬\ùôëÝv{¿ÃÞÂÕ}ë°<Ÿ!ž}ƒº‚úFOÿa°Ÿ†Y¶þÀüß ÿ8ì­gU>–ï‹ý?¼F€nýC'„YÇ¯ÐøÃT€€Pè ˜ô/´ÿŽþ=u¥9»KL,é—Ä诅^ Þù/´úóª ~W_úáÿxX©û)6Ôfþ¡F¦åõ–š×–£1?Üž/ùˆS@y¢Uv¹}¾Ö·¿Ÿ0;añƒ?yôÇk’×—Ÿv::ö ù(µŸ'L%¨ßß-\þƒM³ã0»LògSÀlÞæäíÿ¼Éßê¿@l¬%€°‚ €|ù'Wÿy”gíþlãOHÿ_pL›Ñüm5ù»wíʯ5Î%Ðû¸;`ú?Æ¿¸ßW˜à+ÿµEé2ü_S®Ô;Ìþ? (xœí}|Såþ~’&´¥i mÚB¡¨8½([… ‹é@.WDñ¯  pUFzq]E¦ ˆt— ²¡3IwM]i’Τ#ÉïÝç$--~þW+z’÷¼ç4m=Ï÷û|ÇûF$ú»CüÔEæ•ø/_é‡Ï‡|z2éHrr@"@|Ày½‚pä S«±8ú¹¯¯|ÀãÓCCƒC'nÈm0Tçff*2Ñ3ÀBžä"œ)UÊk­&“© ð`2‘k¦6x4Yø07 Fð0À†ŸÂ¡Q¯ÓèthÐá#¼§:2c¯Ð£smƒÙÒÌfpÝl1Ó)æ:§ü‰h/@€"ø FN`[P‹%=c½Ž°ž„ÿTèÙËð ëZléOB÷›-|ÿo逨όžZ.ý›Ó ý›òCò³Ç¹îc`åùY€i´Oµ? Àã$Šý£?íØÝ7”€» Ó~<šD,@b"ËÿdêÀGÖ]Ú<1<ä¾òAÿxýÄÅ9þÁAp˜µîê¿ÂBÉÙÔ9_ç`Áo5÷_ü¿RY߯e)÷YN `4иŸDÔéX€Òœ’\G³zèH.@×ÐÆç¿ÙJö[øzâüóõ¦vþŸ,E|Ì‘k·¥cŒüã ÷Gþ?6á!|*5\GÔ¤¤åOUg ÒOîÜØ½éý¡‚ûð›à±òW–ùKÄ@âÑä×FÈ壦Œô‡Ü÷ÅÀ'ðYìÿCƒ£>úô¹`† à³C‚ØYÐó{$ì§98*s €ÿW*Ô†6–ìÃâøÙÜÔÆWˆÿœâ§™@ú040ѯ£ÚŸóö, ÀYòºF«ÿî“ü?~Ò/›L\¨O3}\6—´XŠŽŽ;Ytú×+âpâq± 穼OaEZà§i€q>eÿR3N|èýé\wqwßOî2LÝw”+ýA;µoÊ}~r¹Ü²_¾rŸÁSÂÂ"Âg#0cά©”ï!!€óœ‡Ð·²Èå³ ÌdçåçeÃAM+£=õ÷mm,€V@MõßOÕ1 µ4ÃÇ}âøùé?Vø## ÿÍœïg.ðÇJÀ‚~FJtâòMœ §Èý[´ç~‰ÿµ¬Cúë3âc¨ãG& !ù‡»/¦Ñ“Äï³Ä ®¦0ÒÓÔZZæñï0ý7­)¸¿C7œ -ȉÿêý±~Þˆñ,ôÇðÜ_îã?jÜ´ÈÑC'†Û‚Só.ö+Hºÿœüüü,ÀÿÌ Øý“,€‰'XÐÊ9³úWäUëX‰ŸÖöxåkU g‘BcQù”þ8òçÕy €H|®`¢ÅÍ  søZSÚa¨êËZÛ±ß\šƒ½>¡ÒW'~=&%ÍŠå\" %…Æ$¸z5…¦þˆþOÞÇûGo^ÿ‚[wßLî:ø­:•Èò~GNþ¸tê#}ùÄ—33àålog'ëÝoÐ@W¯ íùÏ!â{&þi0S•WPŸ ¯©ÊÔë›x ¹ô+ÐBÓ}¦þF 4ÕÓXŸfûé¨gÜ×±º?±µÍÌù3ÎsçÄísÀD3\²Ÿ‘ÞÄ*‚øµ×Ž~'^Póë è=*SbâPò+€øøÿ„ ÷÷tõé´&ûSx)– qÁU(h@%@:ÿÑÑïêî{IÀݯå§h@ò±ÃOæ××Êë#þç»ÄN&•Éì$à›&·ã7±!CÁ nRääÂ^Ì|=þ\KØÍ\¾ßÈÜ>ë46èÛ9yÆ=Ÿÿ¼F¡ºV¦ýy1?XX>€òßl&A«²Ì¾^…^«¹š”ýÙÂ&+ú·•£ë„ÿÀÄÇo›ì0hß”//¦³ @ ù³J8^L¾œ?@ Ï p†Òóú÷t÷½$àîCï%§IÐѸo^ÖËÛFõ+àëçí"KÄv2;±XÔ¯3þMßš¡$å?Ò ¨ÈÞ?¿ ÷–6Ù0žÈ~R„:ÀPÏÐÍ´õ×@1plnäñŸÕûtÌŠ?»Ïj‘ügÁ¾…ˆ|°°| 3¬¾u‰÷M<1`¶´äÄÇOјZ‹Ï?yÍ`Eÿˉ8äOLJN†ÄíÁ} ¼A\íøe@¤ìGLÂåCŸAáò€çöRï¿í£ÑBòOÀo†Ç2Äÿ¤äÄVOr‘ùwÄ~¿¾"1ÈsBh~Ÿùÿ¯2Œÿè•Gø¯€üÏ­0ò²þ&^ò65×ÜÒs ÍÈËýs•?lš µ:Zì£ À4ìg"€³ èZc+•ø¼ ßÌ…\ õMüö\ q¥5ge蔨×wž*nÊþ)ü“EÍœø¯ºšSþñq‡~üæ‹í_}ñÅŽÏ#}!ûò³îDëækj ®$~4ë“Ó(À@,_pñ .ümŠÞýŠÐù/à·cðº(÷—ðí¬þR‘C_?æñmøïi'füwÚžöÌ"„ífú•9ùþù0L@¶ÕZøó|?›vùÔ®y÷ötñzëøùËǿٴ™ÒóÆþÝz ¸[1àÃÄ sä\îØ«ÿáæ_XôóräÜ?àïñ!¶ÌGìŸöd™T"“9»½q>—ôþª ÷Gá~¾Šð_‘]f4³œ×ýÐT ¹M@Qq)¢™[ ,ýÇŒÝ Àبç¥÷˜ì§ }u\v½®ê–¦ÉÜV]¤7ñó{D ðKòߺë—hKr(Ÿþ„ûhµüP"LÆ%~7Ý’=00°8ü¥%·ˆ-üoÆŒȼ÷ë—/ßïáêìÒó±•ïEŒúÇ +6oÙ ƒÿè-MéÑ÷€»Òá¡Ãœ­®8øñ;ÿäxpó!r¦€Bƒ†ØSCâðöåþ+qî¿=²”h£0f@Wý±å@&“¡’¢¤’ÄêXð»èz`èér?›÷Ô´ê¼ü›UU×³Š ÖªŸEÿ¤°p[~˜XõÒ¿zûÔˆˆÛ€°¨wãÑšŸäõcýùøöóòogŸ»?‹ý¬ÿ7ýèGáˆýaaáÏ}ÌÃÀÅÅcèÀ>={ɇ=·|ã`6oYøÇß9þ¹Øv;[qŽ0ú1õŸéíéto÷qö?—x þ£¬@©ÁÌÊ,h¬FοˆØu™'ë[\ÎßMõüüE?\R€ · Tªì<ðƒä–·Òº•´ù·c47¶°2€‰ö â_ÞšPúGÒIÔ¬™¯ÆMˆMþð‰}\œìeŽ=¼‘à²>þ}F:¿áZ‚ô3gOÃôãÞÛ»§# ¿‹«³£“½ƒ“££‹ÇðÐ¥«7lÞúÁ8§?ôž𗆋Ü&àßS,².O± $t:FÈöüws xÿ,æüóQ ”ÿ¸4˜]ÒÈ–“F@s³¶ª5p € €©™­4°& Ò +üj Ûúƒ« ³UYY*U^e+m÷gmÀ·§¿Ù¨¯©3ÒJk@鿜lùOüÿ¬YAOŽx,rÅ1ÇŽÝ>¥Ojí½qð?ð€ÿ›+Ò¬–ý¤_øb>¡x°ØÎÉÅßDXb‰„Dæ~ïØ?øt®O7Ü%þ²póa@îëË’ÿ¼ €tÀtñ‡<;väÃxxēìÃ;…€íyÐócòà € ó_ c•º¶™Ç0¶êK¡Ó'ü‡#4p;Ùþ$%Xgµú‡1žÛûƒšíM@|ø€ ¿ÖdáˆÏl£|[«‰Oÿêj®®Æº/úÉÿ°cþG>ý€/àðåÏ…/|ÿàÚἠؤ^ƒøü4(àÑKvgd¤°ÞÿÔ´Ô¯L'ê?ì^©H,µwr±—Ùü¿ê0!b¸°ëŸ€ÿ!Ä®ýüüèÆ`èÁËý“iÏɈýÁã ìç,“9Ù;Ýc{g†¥ªNí½F´? ³q€ mª¼©1Ðí̦úò"Ê"àY9ܬGÜ> \>o@³þ”î¬Ào¨)ËÁÜςȫl0qËþh÷k6Ö×Lý5Mµ¦pwNm›…¥€h¬1YïN³å? Ôìq½¹¿¨|öH«þÜ~V@àw‘¨ïÄèK™l㯔ÔÃo‚à€ðјá{Q{8yê_Àÿ.ž(@?™µú‡ü—Ý2uüˆ¾·w=£~JY¢Æ¥b á eVnvFfVNvvv~¥5› õ5e8òW+@Æ2X²7µðVþÐ@4±€múÃñŸ+hËr¡÷ÏBÞ?+ûFyUC›™kú3³AàB[“V£Ñ5™ý«ÐeD®N*làwçí϶(ÞnÇÿð¨ÐÉ<:ùKú ¦@W ֞ˠmÀi‰ &‡‡#ïÿŒÐÝ#à…´W?Vp–ØÒÀmêÔ±ºwö¾k>.Ï+À•?Dÿ‚‚<d_Jøñë¯~:tôŒ"ëF¥¸S¤¾¤.%Ù?55È”êZ-&Cƒ‘íÊèÏ ® Hoµ—ÔV\Ï‚ôWá @Nqyye]+îñÖü™[ Ðß×ÔèðÜ„ÎôY3æo>­e­¦ÚÃÏ¿—[¾-( ~0мøsôîìo#9ð ~xƒV×·OÀý`éÿÂnÎß  `Ú@am€?ö½ûá½<¥íÜ?ÃGÙ ~x¿òšÈëf?‘ÙJeúTp?tèü•ÜêšVäþo­²“\^Œ©Ïøƒ€]s}ye£‘ÆV[‚+Фçû~¶Ù¯ÕÒÝ­<û# Re_¿UQQ^YÛbâ2¤îg2ÔÖÔ@ú×hëZ1¨ÓBòWWWëræFFÌxõ§[t @«ê­¨àÎ~dëþŸír5Ž“¿èKª0ŽÏ¾ŒÔÿåm¾àÔãéÀŒ‘túVü.p@ÀQÔÿÅ]n6ÕgH_Ñ=»Xî7æf§Lfï'ó»¾ÏÜbK» 8̱IÕ8ï¯&ÜÇR H]\VRTRÝhä"¿ Ø Õs;}³`nExÖ”ä#ÏO³¹EUåà_ \ Ìû싹¥V[£Áü¯Ñ6´´À€+0ÿ—û2¬í=­Â¥À¶ê ³Ã#Â-žaÃÿ`ï.ÿ¶Ž>¼nà@ö ö#×_úÿÒ¾AÈçËî‹{Öùöo#@Àï‰c?¿{$6ü'­]¢‡›ÈmõѬ‚|’€Ï¢ÙN´‹@,–HíE^/§[L¥«ÝEà=W5””Ý*¯P—“4°(Ñ4±eÀ¬ ŒM5yj¶¹7]ðËzÑY:—ˆl²¯ò—PQUÛÊöÿƒ»ý5éj ÷×` ­…G|E£Ï_9óí}j¸+H;9°Ôe“ú ûG×û¾¤ˆòR…÷®:ŸqùëÁľŠ=žê"’ à÷‚Ø®ºÛûÿ;ø^ð"‰›çÐ_ ói`~aÖHûv<{¾xõÆî覦ízmÒ°e[T¥¤ÈO–hx¥º¸©¡þfü•*^—ÍÿQAPרUç’Ì?‘ÿù%åå˜ÿåºÆ~K[ƒ–±i UUÕšj­z;`ddDÔKÑ*‹¥&Öü ‘wýבyæÜÿ`9?–êÿöñM÷3y%v‚ÝÞÍwG¬oŸÊë……ˆþù7ÿãËs¬îy*Ôª±ÈwüH¹›Läîõðž¢R’þ+¢2@­.©®7ðü?z45ªOˆÏç¯æõüéõµµ¥‰©7ò±ßÏÍ-ÈAêrJð¬Ô5ÓÒ_k$=æ<‘ó×Ôþºë*Ðÿšª´ç ßç¬>[ž¸42Ùƒ(k9ùþP@ÿóâO«?¹÷¸!âðW÷¾Ò²ëÅ%•åe7Ê^±Ú¥–h ;²ºX$eåDÿ-y%4@ù_TTR¡çÚ°þojÒ*b<¦«cû~Ð\éÿ)ü|Ò?ìÏ-Ƚ^Txåä®s7Ô×nÀä_Eee2•5¸Ð×V_SMIO4?´MgLÞ£Óh´E #1áÃg.ß¶<*2ÒJDù';qöðçýl"ü.2«ÜMzoñœy/>¿èýu'.>y§›Ôìב&`.¨VWšY0Šýë‹NŠMøö¥¢¦ZÞ6Ÿ´H_›¾êÁ"·'V¸ðå²—¦OôüÒØ*]…®¡¾´L_[…€} X=°5„óœÐ4œŠôr¹UV½F{ëëÂøðˆ¹‘6ü§òðüz®Qß/–ÿ^‚Äð×Ežøþîé~çŸP»0¯”¬¤ô“b}K3רÜj2›ó“wm\2E´:§¶ŽÇÔןYè/µw”‰ä‘ó„nü(Ž“¶çhÏl_ùúŠ5Šj*+**ÊŠÊ›Íu××*uZLzÂÿ¶îT\]Û÷íìzMµò%çmý?áÐ,Æwç¹ÿÂÎýØ`øÞ*5Ù ¤ˆ,(RVµ´6·áf`c›±<íDÒÏŸ-zÌU$õ\£ÐÖò2p«¯úêÄiÎRG{;;±½œ:Ú‹äo|„zꆽµªªòÖµLeiMaêUE~a±^CCTÐBý¢ÞïÜÐk*¶Ìâ¼>ǾˆzΫë_Î΃Kÿ öú÷°Ë:-íÿaàZüÉêV]¡º±Ò¿,ñ“à!~þ°ÏÖN&“ Y­¨­åí¢¯Õí}D9ï-€#—_{!µªôº"%5<Ó2N~µ¯\WCâXø×\œFúŸDž©µÕé‹Û“œ %?¨ 0"jBG¶ng~ûàþh‡z5+b póÜ›2Ë’þõŽ¢¹¹¹©è}o ç%È}©ã …õüOùÕ(×ÉÅŽVpÀ¶ÀÑ‘¥Ø¤o^9u*˜vªjç„'÷jkx!@J[ý ê³µR£ß1/‚Ïüö€¨ñ­Ò±;Gÿ@ï;°üÝðryé& ¸ð«…ûÎ}>ÑÞí5Uk}ÊG©Ì ¢‘û4µ¬P{ëØO{Ìùöà8:dîÜ÷Óñ‡ê¥f5Tô@R5kÿÑ¥/°ç>÷@öĦx/ïˆicfNèºxç(¿—ã¿àþh±±ÙÅE¬¸H}óü{+N¯¢å>K3ör”ÙBr¡‘¶þÕVþøL¯ö¼§ADZs¯þ+•èCuÒ²¾!;^Ž€F›½Ò•ßüä³òfuÕÉ…3"m1wÛò+jr׫õÆD=Âzÿü…½ûh§>ûùÄ¥›7i@­ÎÝ»øà¿‡ dYï~Ž2©-ÿ¥¢y7H pý¯‘=ˆ÷ï@8puH‰TäÿY&ÚqCõÝ£ "x0±Ó_½¡·Õ¾§Žãâ¯|öÞâÙ<€g~pq>ãÿ³]6캿•ðmTß(ì)Tûhy ;÷ˆ¹’O‹ÿ7ží÷>„·vvíØ vºd„¹¿Z½n¿´#áOùωt±D$yðt:Œÿs6 ?lsPÿµ¥ŸôYm{"î4rðÈÈ96î?|Ù¹œ]QdõoÔ³}ºúÍžÛqbóC"ÇÞ(¬î  ,ɋ߱s×þ£)×KŠaðò'Û%íœ?2ý–ç5êë+*J7Jø®è~žàçèà††«OÀ@Ö.Ô»g7üËòÚºô7}¬W>ˆìÜü¼ûú<2˪¶ð‡k—N'ñPWÛñùœ´gŽ+l{téè!ÿh·µeé ;víܳ?YUZZV¸­ÿËbÀx)Ÿúè`çøÈç·tʼnoý;õ»Å4åOG^`“£—>uðä•´4EüTë—>¶·$yN¶Bý¼½}¼}†?ǯþ…ÏÞ’sùC¹ôÑ0˜Œ ̱ó_L²ìðáw‡à¹½« þèí*-PÛ³kïÆ·Þû".óúOOZã=ÁAÚ+èÀéuOù]µõi>ÿmaC;É=?»”¦89¯n–Y>É™nzÎ €ö¾>ý"‡GÐà?2bÑÞ ÿ|v™1+xhWé?ÿµÉ_Œh/@@gxü`éõüÓÛwnz}þËSƒ?ø|ºuYML™/•ñ-Tæ=-Ò_Ôgôø>)»£ðA2`÷¾ƒG/g¦¿NHoç*æö) ¸È1ÿ—}¹d&°ˆÿá ×ozá!ø&¾ÏÍœùÌ .™í=aEØ·A ð·„ß•bç+ó?^´`Á¢!2ßûmËägp“‰ì|ÇL˜pŸ uýí%€-IÅþ»÷ü¸wß±¼O]é¢Ä6=õDô÷éëõÏŸÿûÎK$÷?gÝw‡NÓõÎ?@ô{ 9?:‡äѵÉÇG½´ðµá.whdÀ.H7~Òð^Õýðh» Ñî¾¥Ë×,™þÎñïGt°Ûqÿξ ö÷ñ‘÷Üøó^Ÿ @Ä[;¯îߥG!™'@Àÿ7äVû\xßm^bס"`î”qGõ³¿ü年®"¿;¦ÛòŸEÿžˆþ>^2Ñ=óví?°ïÝ€ûyÛÛÂ…~/HF=p»”ºÄ&H±è™§&Œ À ²ø§“èŸÃ %s0ßÛïy.qóƒì÷ö±ÃCÿÞ¿oïÞ­/DÍZÿÍ’‡9/@Àï‡N¶Ç°V¤"(µ»<6qâ=:Îý;v²‰ß(›íNé¤G_D¹üiÇ|¸~Å‹s>ZüitÔ,÷ @Àï–À‰©5_ð||òm§N‚t±G€5ÿ‰9yÊ|ä½°vppwrt°wr{p¸Ê  Û@(O·FmˆàÞOŒdÀ<ùï$ëDN€ïwB¶7¡Ÿ:¸ºöptpíÛÛF;H…ŒŸÝ;>ýE8#€\´¤ßã#Üìmûþì;ÝlObûqÄýKì ÀØ t àOľSAùJŸ!vˆüœ p²ïbu¾¸cþ  àOÈ©?ÅŒáný=lø/»ƒõmX/¶è/@ÀŸ0x[Qîäål¥ÿîL¾[;ý®?êP€Ý`nÏj±‹¿î‡Ñ» ù¸[ ¶ëLÓóøßUèÏÏÿÿK€ÝÖ ,¹ àï‡Û,ù @ÀßÒߨýð‚¬óž?ü•!*øüm!°_€þ†ø?O‚Û½þ²€ &Jp †@ ¶æî(/home/amr/Borders/HeartsLandscape.tifCreated with The GIMPg'Iaft …?’îŸ$­5¿bÔGú_'­!ô^¤5 ¯ 6 -å%1"HHphotoprint-0.4.2-pre2/borders/Flaky.tif0000644000175000017500000051773011074470402014740 00000000000000II*džxœí lZgº÷#!!„@  ƒ Fl–W,¼áUÆûîÄŽ÷$vgs–fOœ­iâ,Mâ$M›iÒdÒ½iÚÎdºdîö»3soÓûÍL;3_;KÛ$M¥ï}ÏÆ9pÀ¤M›¤3ÿzÁNãÞßóüŸç}ÎaÁ‚q±’Åd<ìƒzÀb0èG\û€~$qEB.ÞÃ>˜B"…B©1ãßàÉ”¨röÃ;¬ÇI4ü³X?1@äÿõð_ Œã/ü)âÀ‘£¬ß)”¸¤Ì4ñߊë§ñÿIýriĉã/ýiŠ»B¿‰…Ò8þWðo¥-ÿ¬ŸÒÙC‘ÿ—ãŸMJÿ"!ëaÎ!¾ ¯PÊ,+âðƒoÉ„?¥üCŠùS‰Ùÿ_…®ˆ,îÃ>œDl fÈðÉÅâŸdÀûÄ çÿq9}ógRúÿáŸOáŸÿ°ç‡K$W&K!–‹: 쇓IçóÇdÏwœŒ$ý(öðEå_ð°燒@¦HZäñX¿K\¡@Ìç°Ùl‹ÅårÙ4à±àdþÝÊÕôÏRø'úÿBÉýl°8?À¡=X1d ð«tƒAõ¸؇"¡L.—ˤ2©X,IÄ"‡Ãy +‹ÍJo? üÙ<¡XÈ¿9BÚô/Si5òŒ—/> ™~5¤ß`Pÿ7<”ørB2 ©T" yì„:àÑwPL``ÒFÒìÏãÈ?S¦R«5jUÆE<ƒ- ð/@h`I•Z M†‘è ƒÂW …Bc@¥{ôWïC‹/–ÉÉ@.—JÅ0<^€øO—ÿ4éÿqä\¤–eø„0y*þÈî_®Ö"Rgb#ÀÏ"z ‡\l@¥5˜8ÿÿÎÿôâQá§Ä1Å|œ*p°l¡XÊMÅã§‘þÁ Wþ•¦bP,PÍ?Üü(4ZLêùŸWOˆëÑçTªÍ®çÿ1ð-CLi*ü¡@xœZ€"‘D©7š ŠÁþ§ÐýWÀü¯Î g0¹B(æ‰ZKH-ËÓ[Ž€À_(xÄ] ƒõÿzw `Çð7h„ûÀQ‰Óñ/€T<âO=[m4#2Èh±¦Éþ)þ D°Ð(æ >O(¢zr-Eƒ:Í`Ç“?Ô£}åS‚Ïþ¨ì¾ ß„ó¯<®Oõ,vZ —K@ºH_<2'–©1c2ÑD{ºÚÿqåñÿ0¤uãL&W&QáKd µ6Az£‘pL §„É©ÄWAgïÇ>ÁBb÷ßà Ý8þý¿RˆŸž¹LÂg'WLÔ1>R‰ 8ÿfeÒâ¼Sè\ׄ@ƒ)uíÎ`ñÅb™B,$ЉŹZ­I¤_«Õõ<⯑¢<“Ï& }æ™,—Ë™÷þÈ „‹ÿ)´Î@Ðo!ø7¨ýÉ…‡$Î<@.‰;®€Ïƒ©‚!à!ƒ‚L‹ñ¨´Y Á¿Q’ø§t½Öc°™M+1οFÎgÐÍ3þPàñãÓ¿0è5‘øô—KÜ”[x€O쀄 à1`âφ“Bßÿ@k‘%ÖÇù7¨hfŸ’þùv-›ZR‚€¸T!UÉ%r±XÀå‚j_*K”*%R!¨¥HÚ+Õµ––}„ƒÑ B0²ƒÊãó1òA@䱇P|‡×|O}&%XGßÏ% ‰ÅÈä„ùWr‚Á€“Ä¿úßü§Tú œ â〰 2‚ðWÁ°Ñß?†HtÆ8þ‰€Îü38ÒÇnM0€ífsDÊ8ÿ5úÞUj•ùüý3™@*W©R’óo0©ÐŸÏI_€dyø,óÁð>âq•þ™Ï¨Å‚¤æw¿ ™'óÂæ°õFM|à? ¤ÿ€Õç_+~”JÕGL‚y€\&¦ÙHI–ŸÁ øf+øjRö7›M”oZüÙ¢ÇmOˆËGÒ¹H¦Öd(…böûo0š `°qË/àñx\ íÉè#J{¸™õXa)©SíÙÎ+¦D&g,ë0;K㯱{Á`)ý šGa•>ªÎäR>jØpŒ/ðÑüÏ™ü(âÊõfŠÈùgñDªÇ,#0ÐËþåó¯É˜þM&ÅÞìÐ$úJ{3æ_‹ñw=-\™”ø—úþÍ9 ýû­dü zÙ¿;€)ÅÍ$<¤ s„N®Uð9 \ƒ•Yè‡Kl4Rò¿Ù¨âO8ÒéOÈþ,¡ö»¯¸‡#Oˆà/–ª2ç^üa÷àoÄwù‰É?µÒ<ññsþ·br%h­òoÑ'O4“k¯-ÐzÿÁ ›’þÿÝL/–d^ Bš<¾µ°¸8”eËñ‡T6bvde TFs‚€§•1ñ}>¾„GÍþ"³[ûx­d~„IæüÏ?¬þAÐ H[}üLÓºÊ/þ`0q7“éºAêOe±ÈÞæ Þ¢ç?£þŸJ&’fdÿaõ¯×Èe*1Á¿ SþSfTF&ü3E ÊïrÿƒÃâIåRðH^×\eU¡ƒÿhÿƒ¶$þ¥÷ýóÿ¥4oPÂdñ”‘¿ ç¿¢,$BÂÃÌ”à hñ7•r¥R¥1dÂ%ùЏàXó ìJÚlÃà°ã—90Yi/'þÅáà ©oÌŸý•2±0qΟ>ýüÑ^Ýo0eØgÌË?‹Ëð¤:5qÐioKNwù‰µP§×¸ ˆKZó€ÊñøÌ†ÄÉSÿšbóDB©J1ÿb6‹ëÓ ,åÀ  <_‰®„‡˜'™™ŽØ0™­Ž`aIII‘……×þ]Q±×ª¤ýa ÈŠ„ÌÄ¥ö9ÎddDK‚â/§#MþJ)¼èW1?þ:Øý³Ø=u=9¡/2Ÿ“·XÒñÏ”"È:xb`A)NSpÄB˜fH?iìpÁ縲[[¢N­ ¤ÿ˜ýÙÆDþ º¤©ÐÇI?\Šå+L6›=Ëaœ¯Àe)‘9LäÿŠríÃ.˜|½ûGeqxòþ%á¶¹æÜâ|§‘¾ÛÄE-¶P@ù…˜"Áù 2Óÿp¦ДIDýR•6}îWk û˜3àØ«£¤¥w` Ï/$ø¿/÷Ÿ|UÕüé\G’9j¨4=@®\&„J‰Ìhõùmr“Áß:2T Ï ,ìõU-ÍU¹VµÊê CÁ@¢ý‡@ñ5tî[Œ¤¬ô Ä•)V§+ÊaP¦å_¡Òe5J5hú‡. ¢Ä¸üÃí£Ôô›-vw ò_R(ç²9|_ ó…L)æM˜X‰- ø?ÖïÄ䦛Cæ%Ø|¶°/’(´&SZþÕ*µJ /ù‹Õºy«½Ñ^ÞÖ?´¨L)ÂøÏÌÿ£žyvüS'Ôê¨BŒ@ÚKšEJ¹L*¯hkèiïèjêX4426ÚçgN/³«/kq £¡ùÚŸøÀã|‹ù #‡¯°:\(ün ‡6m  ö5T5ÕšÔÅüðÝ-DùHu2K VêLxþOöVW~Q Ê¿Ëæt¹s²ƒ¹ápAŽ6rb’^%Á`30¼ã‹4)[(ïÎÁí?¥ÎêpÓ¦­F- ÅR…Æ™eœ³­¾wU³)ÞÈÄý#È㥥?ÿ 4ÑÑI›f €-WÈõyÝCÃ##£££ÃcP£ƒU02‚PÄi]¿qÓ–é6›;€ù?©ü‡z”nÊæÝ_s yeŽïy©õŠÔ&; ?ƿ˜Îè,ÍÍ-Í!eâüÑ@™úaòÏ+Tj­þ1%ãoq„Â%˜ŠÃØÃp8hÀK*ë"r Þ&øn•A­PËb¾deeæwÎM'±Æ`NÑùfðH—fH@F×ú}:üuF›U¯–)L.oÐoKot¦¼ê–\Ù}ädñ²x\Vzü“—+ƒ‹L0Ðâ#€,%£b¥©¸w`Ò ]v™ù+îéí@[ü ûƒ^[rý*¥ðGo6ÿ—¾Æ¢UŠîç/àwáa<˪…ÞæÄØÇøOc”{aCc[kKk•9/^ÿW„uuÐÙ|• /Žóß‘‹E™²‚ß7þ mRÐÛ4¨DÉ­ßPëMÐØØì"³¥ÿ«ÛKrBY´ùê®TK<¦I ﬠ’ B±'’dØdÐØ‡Ý¬Êü£êû%Éî xT®ø€ ~oêœò¦Ö6”ÿX¶›(¯(Q¡ùÿÇn2øF¿Z­¡Û°då'gÀ¾O ŠîØú'ÔRjRúÇbŸÃëÁÚ•IòŒC0›/¤=C<ƒò¯òÈO'[*–‘oÊ Tì­}yá+MþGŠyPY­öœ¡`–>5þ†œæÞþýù ‰(3ÿÏá°^Wq?üƒr oR¦á_§SË$Ô‰QAqCÏžõñO¨†B 9r+ôìÍ;vl[ZɃÀc¢§_Ÿé3–XB‰Öl±˜è½4`-ªtF½Q%Êä~³ÊnÈt*!ÿïsÏ ¶XëtBóïrS•mU’ñGøW¨Œ¡†ö6L­!k$îÿË,܇À?“-”©IÒÒ”þv ý€¿–Åà î9|äÈ“‹¨±š™‚dÛ ¬2…¤X£ˆ†LB½Ä yÑ Šb Äßj5[ ü? ¯2D*½Z¼"“L¦TÁ*Ýæe¿Ë_Q]__viÈ>Öé,6o^~®Ýf·{ƒñà2èЇÒg5, ªÌ¨”dÄ?_ Ét î¼ôS—(O‚.©Óó#% ªº?IÕ*9r©{ð?QU˜Ÿ ~s¯•žÿwÑ“§…§ÈŒœdÎh¶¹<>waiiQaþ µ!Àa”d_”ﻆÄäp‚¬ONýØ#‡ŽD?Tú@m[;®¶–re.iÀŒåÿ¢` Eâ¤»Ž²eb‰X¥ ã¯Ö$òo±8¼ùôøç™%½S€þ#‡÷–R4O”’L‰üË=Z 釩²úýr ¾Äÿ™!Aé'Ž[בQƒx~•FkudeHít¹àóS\[U´Çé7À¶§ÝWX^S][ætØÞ`<Ý& û@_ÇŸð‹¢iF€"…ÖlwX•‚yý?é·åF}Õšyø×éRQ|뻓Ò~ü‹N½\'äÃ;vl_U[øÏuÛh ÀƒÃŸ#”-˜ÌF£·fûàä¡¿¤ª¶¦º*þ»KÌv,H3Éå‰ùÿ;óÏ’š²œž¼¢¢¼PÀçAÙ'EIÎþ•­!Ž{{k½‰Ô(±akâ{•#Ú 0¦Ro2š´*>éì°®Š†Ú| •†Ú´XíÙ!úì_R¬›Ü{Õ*jû…1/þHK¤RêŒi'VQ™üÁ$ˆçÏ¥+@AiRËAâi?Ëårø.ôéñ•!ü××E² ÀÀëõfGV0T*)­¨«ß®ò„(äÏ"]:[Ac"þÝyò 6xB¥Æ¥,‡U>Ïæéìp(SËóâ¯Ói•qOi@j}¬äOÈÿ6X!q-Űÿ·º©¦ÿ  œÅdü3}ɤù%Ñê,q™z½ì ȯ¨©*˜{HŽ9‡•hóDœTKêAñÏ–šœÙþüH)P¤È›í¦Ê®¢ø¥Ú”ÛJÂo ‚av­ø÷9³";Ýd¦TuÜ *& ܉&RÕÑÙÝÝVd¤ò½ÿþîTô‡KÛ‡÷aô9ÐB©Z‚LðG%Õ¢‡–꼤³! Ùg‘ˆdZ=µÍ/2[èø·˜Mz•À³¾Ë™·gp¬B@}E^–ÍŸ›-«©†ñ â__,@]M8ŸÄÈkÑ%g½³¨o=©Ø•Ï?Ì)Œö,Dvƒ0SüÙ2 ¹j™Ÿ-> ÈsÙöE”ŒO#v™Bê_·öÿV6@þsÝMð] F?Á¿Ùl´û‚¨r‹+a¨‰˜ç+Š™zŒ²Äæñ¥2Qªí‰Äþßw埧²de‡Â¥eˆJ¼‰§AoÈuæÜ’Úv ÿ­¥ùñü¶£k%eÔÊ@j—Kô×yòx«M/ T9Õ|‰§¼ÀÕZ¤%UÿZªÿ·ë‰Dèø/mݲÇÿ©õfÊ¿˜¦úO’L‡™QN»¤¬nÔÐ@¸~äj¹Áb1’„ÔHG?ÀØI=Üç‡ø»¼ÁÒ?ñÜ„pþëk+ÊÁ*««'«¡!ÖØØXS˜›Kjºôù8ÿz{Y7žø“w…µø]~S¾D­ÇðwXôüLùç)HÙ_£ÖδJ1‚Óå‹äÇÈäS"@©Z¡ð,…ôïØ¶¦± ûA«1™ÿw°š‚¿>i.?Æ(7R @mM`¾þÊŽ«A!‘Êä2QjªÓóŸ1 [¶· R†©Ôïx¼Þ‚pAI®‘Pèƒe͈ù'5Ú¢þxý±ñ¾¯ÿ—eggkŸ)Ö’íöšžîÚÊŠÚ®®nLí5><è̶l§5¾é¡ã?R·áÉÃ8ÿO¶&°{ùŸØ Ô)h&JeQ;ö €sÿƒ>Ú¬=Éæ賿Õ ÿl—Ç—[UßX_LðŸ_ƒ¡ò=•}@SS})™ÿ[á#g0:"íñì‹Z‚jd@Ò›ŠPxˆ¿ÝlVsÒáO>¿|ÉÿÏ[ÿkå<â´:#¥­#p«á~l,‰ÿv‹B©lDøßº¦Vÿ¹¡ ÛœÄÿƒ»þWb´$É‘ƒ€P0¯¤²Z€ò¬ô†Chu²Û *˜pS{†´ý¿Œ§„¶œ¼¢ÒR‚ÿ<¼ è-mm_»vzýt5æÔz4†ßÇ¿­ÑÏÿe&l¥|ש –ƶ–ÚãÉõ”v[wOO7?TWK¾E_ÎÂä „—l_Ü™“ éÏÊ).–ÃÚ&™þÒöÕ‡pú^ëL8”Ìù—ipþF5¶R™"xË|¹Ö.Ȫ¬¯ÏS"ßd,º‘¦A¬5[-q›#6¤À^µ¨7Áî¬;XXYˆn,Ç=Zv‰ÿ$!Ù¿©1Í#áôt”¾ŸÉ¬í¥à¿óýÝõ¾‚bïÖ1-ý|±ÌˆÑŸå°Óm¥¦ŸÉSPÚ:|‰ÿôøk¤×ëÒ•6á…bí„‚…•BY´Éÿëší¿P0yH÷Wh²ø:s2ÿV—7€€PnQiz€ê`ÊAóL‚„?”Í ”+Rúÿä€üg»Ê_)#ð/+-Dºž’æÎ±5›wìÙ³{÷î]È&€2V7½¡·=A€ÿ¨ Ÿþ¯¨(Bæÿ8\ÎwÛdH­N¸°mä¿Î“k ”}v³³Â>ªÎò\³Á⠇ˮÝüàƒÞ»<ÝV]Ý~·5ÿH¤iôÉó¨üÿd õ´édt¬KèÒ?©81õJ‹«ö”‚ç»&N£ý¡\šÜJ¡Hm5+¥ …J­Ô§Èþ°úwÀ~·§ ª¡á¹)VáÇùÏ­NÍCc „  (™ÿÜ@¹÷g/iHÀçñ’•[vìܵghïLOý<¡ N!áÞ+¸tÂTC¥¿0 #ù:6àV.â,`ÇSšX™ßº#>©ûìä€åÚ÷ÌÿkërsÿïK¼øÁ¹ކ<~¬'>¿mÔVfÓ®1 ~ÄXu’”$%òÑë2K“OÁ¿¬,rç„;'¶lݹ{ÎÿžÞFa_¼ ®„ûžzî…§gvîš^½a¬¶ÿLöÁ‘ [ß…–ÔŠ e;ÜË¢ÑO¨M¤ßd²Vt`è'x€öXu$ øùæûïð>Œ7}p½†êÿ#euË÷ÍÎ’ø?rä‰RrFŸ#•HÄ „ô±”¨N»Ý’í²†ÂÐï‘h¬ËEªÄòïÕID çƒÄA>Á?¼&Ãã/ŒÔ#fª©&/Éÿ'ÓðG¢ESc i€à2üskö'⿸|ɲ¥«ÖLo۵фˆÂ>_ ”j-8üìj+“œM˜rwAa¡°æi|¹¦Œø×ªá@½ˆ”Yº¢ÖA¬ -¢Z¹<¸ò?U‹òð&Þÿó;¬Ï¢«þ‘/= ¢û¯ÁP!º X[SîM¸¤‰ÁåJ vZþŽ,kªÛ%ùT^‘Ê€Wlð¤ÒÍÿ‘âÜšÑéí»À“×¶žg ²<ÿ›ß}xã—o]{õ«gžÜ=ØÚZÈwàø—W„¤ø¹ÿ ŽÔŒ&¶ì켂(ð¯ÕÑ·FD?XjÞX²ÿÇ#@yI8zýƒ8ûÿÏSü¤´¢aé®ÙÙÄÐ@:¾^B¿X’8ÿÆ‚HiYyUMM™Çºr´º`ÛPþs ‘&-ú~Xý›³<¡’*XË#ôà D ¸¶.¥ùGc¨ÿ«ó(þiÖÆ¢.ÁÂ…4ÙpýN,í“´ÉEéùË4:» £¬Q›•¸ÚRÅaÒ&ßV”ï@3›*¯.se`ÿ»V!Sh´òÜ×ßI6ü‰ Û!—[–m…×ÿ´"ø‡’îÿ­¹ïå™Jl-ýG€Ã…ZÈ^¸s5e9q|ƒŒ§2Zl©ðw@‡eRеÓI^dÐ{ã{KËBž"¤3†’_ÒM[ÿÚøfvLÖ÷¡ aö[ŸÜúŸoܸñËwn¼óúÙu6¶+nÿmĵ"÷ÝäˆMNAu]C ª¡ØšœýÁRËŠ´ÒÒü@Wggóâw)ôþŸ#ïÿúN à?1{ä02ÿwä7kÙRœ{ä#é1)&ÀïK:¼û窬'}*™FôÇjѦÏ*)Íó²Ü¹Õµ±F¤ðoBü<øPÀ €@EJücM¸_¨Äù‡ä†r@­n9rîìÙ³gf·L-^ºbrådœÿ‘­ÀæíÝ;ƒLÛÊã¹_ŒÍûàéfb»E'áqhWë…üæšÁºÐæäWVUWG‹¬Úyø×sj;ªYV«ÉhPóã3îBwû~j(VÈå¾éí;vlí.@ÚÁ€:üàîý%K…?ôvŽœ‚?² ø¯iXØR[S]–£Wã½Ä¶½ Pñ’î EÏ?8Eów6t­===]ÝíQ2þ@•ýÓ;vÇéǰk'ºÎÿŸO€nýîÝ_ÝøÕ/¯Ÿ(Åûÿef"IÜoÀkPü=¹åu`ÙÆà[¬2›†³ÙæŽv’¡Çú=h+ {÷{úoÞ|»á?ç"‘ªé½xâŸ=wáÒ•‹Î]8sâØìñM1»½Œ—ÁcÀ'0OØìÚV_†˜‡lù©;rÕ.ô×d£ @³TœbÇßêtû}Ápe]äqòM˜ÿoŒâ O1-ÿ 0x¢ÝàJãæ?”[PPT\µ(4ù?w|œ››ƒÏ,Áñï_¶sï^”øuRxowðý³ƒD?ÌÿVâV `9¢¤1`Oé/@ø/tJ5ŽÒ*@?PÄ©C.X ÛþÓëá³³¨®­¥1.ð{œ6ˆÓXÁ…IWÿá±`ltÐ-“Ûz7° z©wz`“l}JüAÈò¢øž_VÛ<¸gnªx€hAQÿ’YæÇßL~úœŒw÷ô^T9ß1;c½¨ºªË(øW ïDéßMv$xðí[Ÿ úí¯ݸñ‹¹Â¢ÿ_jˆoßßYÔÉfXügû £˜y V•C‡¿Ùb÷TP‹ÿžìW‚!`É ý¿þÍV„{”þHý’õ?óòµk×®¿yí×_¹òâ•‹‡×6æˆåb‘X(Ž'{ú%UÚC5#µ3zd)ëñúú,ôå8ÑÀ®”It© €#Ûë/¯­Cjx´ˆ'ñß+%6C5©øojXØB@CUI~>RçææåE"eeÍ£UΞ9 àGß ÿ'GˆæßÔ€<Š?€†¥T(R›lYÁv£%°Üí.·ÏmL첄7†Aa¸YÈ©kêbz´µ©Tx%á¢|aÀj¼î%-G!óÀ@p>:LlýNÏ`ÜSø_—çt‚§Â ¯?Ø;ñÜo·`¥?¨a.¯ÇçóyÔM@–ȈÓ_©¬"诮.4£÷ùKÚÿ׳sËK"U5¸¡B+ç°U#âó8<¡”ÁX ÷ŒÒ m6™6¯¼gÃöÛÖµçCÿï'7­µåNÁ÷Q%InJýmn_Áá¿vãù‹Pg×µÁV`bj­tS½TºåÊ ‡‹ÃEyyÀ>›¾ÿ@K¼ÞªN‚•ÞÙû7o|êÌé㳇ö&àOâÿ•ÿÆùÿä£XØ]]Y‰û[ü^1(îlä¶ù@é^¹0`·Y°çÖåöx}PÞ OL}u%‹Åä~‚~D%näR9ê0xdt–÷-ŸZ½¬¯t*kkëÊzµB*áóÅfƒ˜¿ zÞýCÕÚ³J˪G€Ø2* \¿7'>h¬QÔžf¶6sñ4)Ë+1ˆ€ÈôsQ=·³³¶®¦@ÁQä·ú3B—«(Œ(O#’ˆx<mùŸî×bÙë;ɤ´–ãô—Wí>ÿ —/]|î`Bû{v]¿u çÿÖ‡h ðö–šh‹øí¿ [‡“Úr‚9Gvv Rƒüþx]—‘³Ù–ßš°ÿGú­Ž}¿›¿þýw¿>ÔQW_”F*Ûw|ùí½;¿çÿè«×“uí•^µMþôö_®T¨rŠ›ÇÇ&''† þ}N“¯6‰Æ¸*5 †ÌŒË­R'ÍüZ¹Ñú&BX½ßDÄø^[H¤·7šèü›ZÛ;:;;»û·ì?¸ÿ‰öêJô . žòòhmǹé¹3gÑ캀³Ç—à;ÿ‹Vï¢ð=õóœ$¹\Ù9žpuU®ñý6{¶;¥ßç äçZÈcÀ<}>–þ‹+ªT™oGîö—ðt†¬²¶ñi¨©¥ÝM8ÿµ ™Lz­F!“Už%w·Ñ$”ÿáî(ømc«wìØ6ݘWX ŽÌCt½ ±DL¤(ﴮ ö!t 0X>ó<ÆÿÅ Vv74ö¯ÎÇvP`vÏ€O!Ê®I­R*ä‚ä0©1×£ô÷a¤´Gqü«§N_~á2ÔÏ‘¨'áì8çÿ“[7þ¹) U C@DOgCüÉÛÆø± nè$ ý§Ó,«ƒ«Fœ js­4ø›Ì¶ÜÖx÷¯‡Rôöîý…ÿ½ë·¾º÷í·ßÞ~fßøø¢¾–ÖÎu‡¿úöÛ{÷î}~õ8Æÿ±Ë4ü¿ùæùn½$•ñÙ_g0:[ŽMNþ!þ}e&c01ÿ“µ.`*r€Åù÷ÛUÆÄ`ñ”ÅšÈB?ú¸üÒeÈC\à£þ‹€þ„þõí›êjm©lˆÂøe D‹uŽ¿»uÏýHþŸ{r(ŽÿâÑÍ34ü¯ àèÃ÷ìhÝÈÔ–CÛ×Ô9íVk?’þ ƒrÒ«+™Xö/GãékVäb{jôz@¬yÕ]£k§Q­înªÃ @MÄW€A«”IDÚ@Uy}Còæ?>8Ü~çÚeÛwìxbquu4ä÷ùr\X¨ŽÕW¹5äÆ"C ümYØü/Òý5ÀÀÜEB?;{dßÞ'¦‡üÈøæSVšÿ‹ÈISйœ„*@¨‘ˆ$b®V“WQdÓË|evKÂóD:)“ɳבÓ$,–cüeÕý3^@ñ¿|i6¹ï7³áç¦ÉàÈÿ;«!ýH¨,ÑîÇá$ â}‰lå¾ \€ÁçrçWÖÇЮ?À£X}¹‡&ûƒàiŒçÿÞD¾øÖK§¶o\û›;ß"úòÊž¥ããã#K·Ý¼‡ê›¿ÿþÕÓÇhü?Æÿ‡ëd4©î÷I¥J£Ë]Ø؇Bó{¶É”Mcêt ¶¬ˆ¹1±`Ë«Ž€æææøCˆ?ä¿®„t‰v0þ6€s×Òèïèî_¾u ÿà{×tw4nžª)G\ðþÑÚΗÿïž3ç0÷ßæfƈÁ?ðih Zêí¥T›ËïŸíõûÂî—߸púØÑûj <ðB1I¡ü<¾Àäkò°ìOãÿaÈ57RÃF€=¿­{цÿ†éu+G;°У^” êÑwÓÐâ‘‘1šñô;µ¥•}›àPo¬!BƒÒt××UzïãV›iÄ¥àßêôãÿÈþCîô…8ÿŸîÂù]Ö—8³°à@ßÒ»ÿfÿ± ©óøg:;šb5õƒcË&'–‚H¸xdÙò‘ŽŽîŽ¶Ž¦hm_GO")µÐönûädeÙÌ–(À¿¦¾}pùní>{–ÈÿgO> ©„`ppphpÍ™µqþÑÏàË­UnwN ¨¸¡©§yáâ‰Ù7n¼sáø±£G®­ ø} ¸ðp8þ……e‰ aC'i P£1Öu,›Âùß0=½vå²ÑîæX]}K³C‹¼:¹ÉX8óÆ\GAÇâ¡adv x´¯gü‰p pa,V‡ò›€¦šÚH¶Õú@.þç¨ ôÃÿNüòÜT¸HÑÏžvÿÆ¡wYH @‰ áÀ,**† À§¹w’Z.âRùg× +rùŠåàmü¼lì]Dø~L}½=5åµËO^¸ðÇÀÙ™xÝ¿£`Ë…Oÿö¯oßùúï_ü ›ïýr{=Ê? : ÿ<.ôÚÑ|±Xw.Äþ ‡´Ei„[¤^UCc#Ž>¾¾ÑP——TÀ+MLù=ÿ‡¶÷ŠL«Þº Í?òþÙÅ™ ë–.[~ãî=ªnô]úóÕÙ©Ee.[ŽEc3hì& ¨¶ÔFƒüÃù•±ÁñI,ûON.[ øï‰Àcs•'nÇ5¡*„ eM}z±DO-,òêF z”ä–ÿËJš»ZzZZ;:{;àŒ¤¿¹½U×Ć{Ú·npæé§÷5•™;µµ®¾­»è¥/ÿ|‰¢Ò#ÿû§O?þmÌWÝ>442†+Ñ,Y÷Äö]OîÙ¹¶½©©{Ò™Çb.®©°[mYd€«1Ñðosº}~2þÁPîð9*ÿ/]%~öÍÈ«³Š+êchÅí?º«ÑõÿL–¼v¼Xxéë;¿žLp þï=”~ ¯>ý?½qùäé÷¿IàÿËßÐâÿæ3›W­ëëèïkíknކ«Ú{›Û†ÆGÆ&Išç³½Ù¦4éøG=@m–Фòo‰þmåã«ú›Q§ñߌ -ZºúH#ûýÍ-MM-í]]]ÿ޾'fö ifæøéÓÇÇÆOÍÍÍX×?84|þËOaû~s³Ûйÿ±é—>»}nÅ.ÿ33û€öœÝ9µ¿jjjõêµ»æžyú8äÿèÑÙM-þþC³ÃáÌÎò‘³?TQ%ÿšú½/¿va/4†‚ú¶®•Döß“C“‡ž\Q¨Ó›Ü¿ûãŸþôÇ?ýñÂìÜXï HÿãÀÚ%DðõøºýÇN?sfîÄ­Oœ˜ëÁlŠ?-ñ8ìN·ûA¼^ [mNâßjóøü*þÁÅþ#ü_ºtavu¹“Èÿ¤]U:ü³ jb ÈpWC… ­™äBr iYNÃ?–ÿõ/ìëKˆ}½}=]“O_|¢ç¶,[³iמÄ)ð˧Âs÷÷€ÿ·VTWVT¢ü—ZDØõñ<>Ÿ/äóÑûG @ú7yr²Ìƒ@¶Aç¹*$Núó*jQ¿{€ @ìÅ}ÂíøÀÏï}ý?9H±6K/}ý-Áÿ·ßÞ½÷Õ—Ÿÿõ³ü¿ù7Hùÿ-ÿ7/=±jåòÉåÈÛÄòåK&Ça¯orbb’¢eãý}]uùtÈž0PàÏ2ÃâVQÓ0`“‰ä”ÀÑ´|ͺáÔê#Ä7ÇÝ?Òhmïé'Íì´ŒßÀß…€E+÷ì;@ÑÁ£'Oš9=‡hËÈðð+_¼cÍÑSG÷o›ž¤Â?4ºlÕ[·oÿ}pÛ ÉìCtòÕkמ¾z~ àø_=µóèq 4lmN(¹ à#ðƒ÷H©¨_¶å•×ßxíH¥_gö7·t.[GÆÓÓ›w:¼­¯ |íÓOÿ„èÆÎ<yÇðÈØ8lî Âcòiå‘óÏ>ôì³Ï>wv]ižßàû§ ˆ²=€ûÿ°•‰ÛÿVk–'@}¢a öÔÏ’ù¿xáPo(+I´ø;ý•±¸¢Vô”)%<ÿYËhð_1 ùè_H¿Mþ°¸lÏyÔûcùÿâɉŽî¡uwìÞKÁïÍ;‰îù½wß½¶$ÎI¶ˆ+šä"O ¹—ˆ³ £AK¶Qǃé_çðÐXnÙøÚuµ%ù ¡p-Ñú‹56âµ?ò°!’¼?[#íÿïÞAõõ­©xöÜó?ß&êÞ7HóŸÌÿ~‘èÿ!ý×ß|õðºË)šL IþK‡û{;[«s]väØŒyÕ4ù©êBN|Y#@R¡ÔDñÿ9£Û÷ìÙ°|j¸¯£»k6ÿmÝñKv`LïèÆÙGÔ·r×>Jú?xàà‘§N<€ÙÕÃýê¿öL¯šZ¹rÅrŠóØtâ½ÏïܹýÏm[’øß; %¯]˜B´zõ¦ƒÇŽ!à( ;Â>JÈM¦Û¬Ä{ÿUõ½».¾úúo¼þÊA¤ÐóZÛú–­ž¦å<Ú´ïøÉ×?ùô³Ï>ûè³Ï>¦«¥XšÑñ¥KÆaÓ? +gŸÃùvK}u><2O\¿ÖFþUIügÅoü%랉“ÿÂ¥ç1þ/>{p¨ÈKB=@ü.O~Y=zI ’ÿKð}TŠyþœÜ%°ÞOäb⿈Œ?‚>òaôÐEˆ|~øÅ…s;7>±õèk¿ÿðÊ©ýÄæß¾‹¼—¨ÏÞ}÷ÆöheEÖIĺP$äñ¸³-™ÜX°ü¹¹cGžÚ³:W +,¬)ê˜>è©ã35H4(­ªïù7b>Õ®8úä8•߆òÿ÷;¸¾øý-þ‘%kÎÞ¼“Ä?Èúë/ߦä~Boœ^“ÈR˜˜\:Ô×ÓÖÒÒ\ÉugÀh-F&rë¨mäR³B0à4êÔ+ÿ-ý‡Ž™=rèàÌÞÓKº»;Ú0ø›ZZÁ?ÓÚÞwÿ0¨÷ö‘ùï^;s QŸ:~êÔé9Œ ¿|ýÿ~ý©5«¦¦w=1BÂxå©÷þrûöÿ/Â;ñüð"äÿI”ÿ©õ{CZ}juU!9ò“È/B[€¥U(ÿÍý޾üúk¯½veÌbҙ;hS{ÏØšü±°þ·íØG{à‡Ïï^ºttdddlbjjÅ2"@÷Þ—ì~ãÿÙóëb±Š¨MÜqþ-ߥJ°ÿV‘ýCxå5#6ÿŸ¿òâÕŸƒO—`¸tñÔô`¬F€l‚¿3^àÁéÉÍ/ª®'’?XQø•S*…˜0lë"ºü?13ÅÂ$þ‘ì¿ëüe¤ð¿LÖ ÏؼûCPëßûâ_žE韙9ðqbú¿÷Èÿï.¯®üW"»€•nw¤¾ˆu€ÀÄE¦Ø×ÎdpQœÿ;wþg`páàô‰³/ýåη÷>»€>5ÜùÛÞ~çíë´:»!1ý'åÿ‰%ã“+׌÷÷¶µµ´V»¡ðW&Þ„³ã?¯¤åôr¼Jþ7×ÇoJpøàîÓ«W-왘ڰ~íºµÓ›–SïÔ·°7NÏàò-ûázò(Èþ§ þÏœ»pó¯_þùÏžxõ¿Ÿ"ñ?}ùûáÛí«—NíG¸'ñ¿ÿäpþ@kfŽ@þ±€ô÷­ª Æù÷ç¡ý~þEEHˆD«áèoõú3W^} çZJ+#5õÍ‹–®^Ÿˆ?Øçû¿÷)ýãï›§W¬˜žšX¶dÍôÊÉeñ:©Æ×$øß ÖX‘ÏëÉ!ðÏvˆ¾ë}ªÀ»Ã+¹€eBú·{ã¿ú|B%•kŸ%²?ÀÿêU^¸„èâù+–ŒwDëòrj€,x»g·77\^[S£¨{ɇ¬P–:>$iŸ¤á¼©ÃÂ$û5¸kîR"ü—¯€ àØG·¿ùéœÿãÃ~ÀÿÞ·›çwþàÿÆÒŠJ"T–£ƒ¨¨ê:~ÑÏ<ð…óv䥘 ›7Ÿ:étO0TÔØÛÒßóÃ?†¬±¡Ðd&·þ1üÍo-²8~›ÄÿáÉ­Ç_ÿè‹¿üûíÛwRœÿo¾ùâÖ¹ÙÓo½óÖõ¤ÔóS‰Ù€ ²˜˜\½iÿ‘Ù£‡÷oÞ±aùâ†ò‚«ÉZR›À?fÚ«óIücQÀm'e‹©lÇ,EGfgŸ:|ðÐü뽤Ûôþ» ü'7Å;çàðÉCÇNÅñàÌ™ó×þðõ_?ÿû7×Wô/=õÞ—_Á#Àõ«îG±ß‡€ýO¿víÚ«kVOÁ°öÐ,Âÿ1‚ÿcÇf·/ª$,€7X@í¡üƒ , ùo›{Ãѳí­­m]+Ö&eÿxØ´ûèÉ7?%€?ý»“§._ãµë—w®Y¿~ÃÊåKÈ}€±•'þ7ÅksÝqü³ƒD" 3|}>ª˜B•F£.`*ò¿“Ô÷Gør\ÅU›ãÕÿ•«ÿ/¾x gönÜuô¥_¼|xSm¡×írº\xÒ_XRSÓÐKPå¿fõâ2m¼ÈŸ ¯ÿª<,œ:}ñrüW+}š‹ODúû_Nàÿ›Oaÿÿ­Í͈ÿ¯D¦€ª«kk*«Ð‰ hÕfÿ+»mÒò㿚©†—AÇVì{çny8Ú6Öߌïû¡s?„@-A®až˜ý­&YK?ø=zz“ðÿbdîÚ§¹ûÍ=<ßß#~Pýßß¹wçËÏoýÅÿûøÝ9Ô)òÿ™5‰éÂ><ÅÓ;÷Íðèá}[×õç»ìø5€u‰ü×wôÖç’ì<6¼÷Ü@³rÛlZí_‚à?ˆà¿¸¿—èüu­Ü½’ø±ìÀ‘§É€3g~ÿå·ßÞ}9FÿÄ®g¿ú 8ÿ;høàÅŸ9´ØçC—Þ¸vvþÀûôSÿ0àðÖ®Ü üÿâ"2þÈÅ%eÿ®ÝW^}Äÿ‹;Û[Û:‡V®ŸNÁ?ÄæØ‰“ç?þ”þr÷Ÿþ®»wÞ¿táÂÜžmËàfôÿK–/›Þso<;«²¿Óª‘ˤ@ Ü?þBôÞ¥*•+°êä}?èvA„·ø*wöÿÒU˜ÿ‘põç \<¹ñ©wÞúཙ ÃC±h$/èz|9¾` 7­©K¦?ÖX‰ÖÿÚ…33ë«Å„0 ÑúPý÷õÑð¿òà…DôQþ¯Üü2ž4ÿëðá§ÌœºpöúWÔêùîo‘ýÿ£­•-Fš›£pÅwuŽ­Ùº¼o¸­¹¦ç(`ÿç?¿zõ­é·~ëã[¿[*^|hîÿùg¶6õ/ïn"Ì~¼÷÷5^ ù~þ&“Õá,mí[1µiûŽmkWœ$ñÿÁúwÿ~çî½{¤tÿ-±e‰|ëî§§É@}òK"åS:¯[™\þcøƒÇËWM­Ûsä8*"^TîñÀ Ž.ÿ·-¬È Q"@$§ÃnµÙîÂl›ÍÛŸžÿ]£È°Î v«®þ"ÿOìM0þ8þÀÉÀï|"ᇎoß<´dxÕ¾[_Üýæá£þtõÅË'ˆ€Ç¯\›Aè_½jû‘cÿÇH'àèì¡›Vå£@qy¸¸E¸ÿ‘²ÒŠÚEûþ¯“Àɾö®Á•ë¦Óð¿õ©§Ož<9÷ÁŸ(à+ÜÚݹûåÇoŸ?53½f l®ßsàð¤üGùßÔPæÇñwgÛŒ )J¿T*¾ï6€xáB9¥þwÚŽjðBùN‹Ù]~,ÞûÃàø¿øâÏ/½põ•7Þ}ÿ=Þd¤gŽí\±dauIA$Z^VY—Ì>"úÏë'÷íß¿¥B…YÇdÿË—$wÿPþîžûYRêG^ÿ"Îÿ?O;>÷_üù¯ÿ¼‹eTL¿ù«ÿøÃ—÷nöto¹ù·__¹xáüm£;/žùó­ß~øŸ¿zvýÌÀþÕŸ¿üÑ­[|ëÖ­ÿiÌ_xèìy’žÙ¿tÅÔpG>ïOþD ±¡*ˆ8Œwn^ÃÀôæÍ›7Í\¼|õµ—n€{¼}ýçCÜAþÿç7„…!_¿qŒðÖ³o~ú>ÍüìÿíOàŸ¨ô?µnýΣÇO$€'6V—T“/ûk €…C½ ¥áòp~!Z~¿?àÏ •‡KÊ*#…%%C‡ÒâÿÔêÅø¬¬À#Œ̤ÂPP²ÿÙ?ßÏ彯ïþùÎo?|áÊK}wHocöÿÎßÀê¼ñüì~*ÿ/½¾Ò?55½Oÿ(ÿø ˜=:;{xû²†|¯/P±l€"$`ô‡#áHiYYÓÔùxé=¸2¶h|Íô¦-¤°uÿÍûO> øú×þ@±·ã&ïÞÿ¾tvîÄÁµS“«6;÷,F?Âÿùíõ!wÊ–ŨBñ—ŠEb‰8å Ðÿ>…•xœ¥]lÇúô¤§(Š@ˆ(Q¢D!DA U†IÈK^Ñ  ¸bp¡p¡¸l8Àí Æp .8öaÀ€mÀ`Ûgpá\ÎöÝîIÿ™ÝÝi{8ïÿa®ìÎÎ|3óý¾6³{ï¼Ã§¿Ôhôرãeúêë™..³g4ûç¥ çLµæâ5™2³²òòòódÊÏÏÊ*xðàÁ}Di.\HM½`L>¹yéK–-[ªCË–~7¶=q^h  c›FüÁ ÷Þ}wðÏ;üùä½u«ë&š6rK̸–Í¥œÂ6‡J}•kzEé£ô*"zü̈¹9Ýý{ï›7 u¥91íÝ]]]Ëë2Ø×ëꤗMÛO]¸D1ò`À¶UË–ÁÎ.“h©ÔoôQ¢%?};v ¯ÆOþnÆ"_ßÝG»vûvaQ]¥žn‹Mìv›]æVt°Ô_aPé|Û›².冸ñÈ×Ïß'NžOHH8/Ó9™×üµjåÒßÿD´D#ðyéz77× ë6®ÛºöŸ¾ŸÿýÂ…sgÍùmÝÆmþ{|½W.[²tÉRÿ8ƒ3:½gÛ¶íÛ mݶÍÕÕÝÃÃmúµë­Ýv,V¡“ÅJ Å'$ÆTDKÐ\ÊÜo—¾ôôÛd꯾~£×œs>&Z¢(ù-æBÆž={÷îݳ/ÌpN%|ÎB2œŽØ¿iÖñwŒ›X0Á‚ù*ý°tëŸ?þ¸ÂçLNÁ-†2ÂB"Có³:tøXĹˆ×õ‡T :uÁø¦%)éB•X~óeË«W¯UêW»bž›™WÓš•Ÿ’~™ ã¾µs¾“éÛ1_|úÉÇ2 hÌ ÕFOg⟖óñŸqˆƒ~¨|ýwEž4@ø“ àÔÖ¿þZ½zõÊ¥þå÷¥+×ossÛ.ý¹®úaÑÜw»¹oß±oÿþýì÷_·r9èê‘3Îñ¿oÛvÿÛ¶mÙâæáéåé¶y㦠€¶‹Õð.)Lœ2$%Ëø¿˜–q½ÆŒM.6@¶> üà¿åV¡Ãö$ÿ|üÉ„ÿ¨¨èÄóìÛ³wOPœ‚ý³þÒœ—€ÁU@Ø‘ÚújÃÿ ðÃò=I[ÿì{íæ­Û$ö:¸]R\ Ç‚=øÜË~› ˆø|þ Jh¶I*ª¤ ¼Z’ÒL¯1j—g¼Øj*;€¬¾Éº–™ƒ?ýrzbÀö_¦ËðŸ4üÿ† ôñÿÁð/ À„)³çÍ#íÿìyÿY¹ÌͦÄk™2þ³²ròóóó俼ìÜ»Õþª(ø¿V|=͸•&þ´ñ_±båò¹ß|5vêúШ‰¢mš>zøçŸ~ü¡‹‹OW×- þðŒÍÈâ˜~™JÍv 1 |DUÈ €4¯]2ÙDÛÍêŽn ÿ=–Gµ ˆêkn¼ ýÒ¥‹ÆC«—C€¬ÿrÕôKÿ—ü¶øûißL™òëê®;v퓱¯PpdÀÿc2ÿÖžî~€~MºEŽ^¤ 8ÅÅD¦±Ð¿þ÷ñà€ßþÃG#Ï$ Rdj€ØõÿàoåŽ3·g¯›Dîn[WÿúóbŸ÷ ÷¿>Ç¢b€ˆ–•@¸×ô/GŒ;så.Zøº»’øß¼ÅÕ7258ät†{ ú]7YTñ\Z$³/°¤U1ÿ@Ç·€Éƒ~xO‹ÿÚ;9—Iç?Ò…=+—«Àòå2þA(üçï¿ý4}ê¤ 3þ±Ý8$ŸÝ‡ƒ:þÅÝö¿¨Cqz»m˜ïq®¦-¤w›h±™ïÞ«lìh¹}›ïþߺÉxþGÃÎÅDéÇÐÀ¹³ñ‡6¬•à€%*þ% LŸOÎ.w7ÅØæêîî·_B?xúùìܹsw”3ÿÿäÑ]ú’زqívhü½ü½½ýŸˆŽUM?Cñ†[p˜l´Ñ§¾È@™][{}éECŒâÿGEϽ^pãZ ßú+Q„ÿ”¿ëª««Ëw,’¼øòkôõœôËi¡þa”Q¯1òV ?ˆú¢ÃÂc¬¢:uH¨é(Ñ®Š¦¨*Q°^ŒO%ÌúÙ=~®Ëf;åëQªñÿø£¡2üÿ©ðoÚÿ `ì·.óÍC„ÿó¯€þ?´3%••™ƒòù¹Ùêëêêª5ø?¸wùzIð”Ëì à¿Ó÷„üŸ ôvÛ&á›ë†õë7z¨ø—g×°˜X)îU=NJ6ÃA"ðÏS‚ ÷ ,Õ7ÎÄ¢ ö¶éîÝò‚ùdRÞÐPð_ù“dÿ,X´üàýÇUy‡ëþ<+YÿBˆüBH4þ5Ál¯*ÎÉè1 ”?öŠ*ï(ôÇðoï¬:‘p™²ÿ~ÛÖ,œ8î þ¬Ò{ÿ»ïýœ?P“\\$üÏÆ¬ÿ‚_–¯…¹™Cç®JøÏÌÊþ¿Œþ¼ü³—ëëëêëŸT`Àݧu,Å[iøËø_¾|åê5¿Íš1}–Wx”Œ{é?¤ˆŒ·9 §¯öeðïã§åÿ¶yùï¿ÿº­½­å~Vý7ŠÊjÚ{úôÌ„þ!xÝÒYµ)Í þ^»¬á_É@ü§…­•Q¯Xÿ•þZðíÄñ0ß?nü´Å[½¼5òÙ{Xƒ?ľ$@­üa`(ž0áoæÆ²›9é¿;’(-Ï;~À?`ÿÞýG"£/eܼRXr¯¶:?Q6úÊ‹âœ3ÄG8´{ÇÖÍëÖ( `)Rð¿¼6=ðwW\À`€ýHÁ‡üvüû„žÖõý£½¶ËÙ¿­›7”¿«âü«£³# $*Ï .Ób#H$5€¨úøö·Wg *&66æ\iÅ] ²*€³ç®Õ4ÖøW?¼ºN¶ÿ (yTõã¡=†›˜í—4>úå‚ ªÀ!X[ÍP[óäMqVþm]¯Li§"Ãã.‘ößÏßcãâÑŸj¡ÿ‡ªõù‚E?\üꛉS]æ© ³çÌ[¼@;ûÂÿ¬¬<˜tmå…çõ@<Êý[µÿ*ŸÂDù‹+Xû/ÙþU«×.Ÿ5cÆŒÅû#døËö~Š=›sÓÛuÍÊ´ÿï¹{Ÿ›âùoõÙdnø7—åB¯Ÿ@nîÍ‚’–>D"ñ¦ÇþãÖmØ‚A³bþïä\¡ðŸ®aër•V­uÛwÂgšþq“füºÅͧûàð2HBô _Å?#$‚ƨ|«‡¬9ËwîÜùûï{Kò ®GŸHÍÈ~`ª©ªUèqvmþ’“φ;v<ôèÁ]®ÿZ-§–.QðÁéêÜÚ‡0àþ{ì Ñ(448hŸï®Guìÿ™3‘‡Ü!ö·»mß²yãúµëàæEâÄA‘1±xÞ ¸\‹ÝNâŸç:@ÐÖR’qæLrFÚåÇÍ5îšLÅiÎñWÐÐôÚÿê ¯ßþuéK–æTVUeB ¦^¼œSPH*|ôsZUóhÞN3ˆÜ¥„fÿm6kkuq†!&22<ÊH8É»ý¼6þw´æûÃà?xпbù¿7胡òá]€ãæÎ›çâ2KRsþ¶j½ ÿ g/_SàŸ™…–ÿƒ—®ð¯{’}«¼òþÃÚêÇ*ŸW>xtBUÐÿþ+V¬XõךU‹¦Ïœî²å„„z)ˆ–Ò1'O&äÜ8½u³›/eÿ}úIðß²Ó˜yôÐ!„[S1iöó Ê>ok¨knÃ&_”œ1IÕ’:«•Y ÕµbÿŸå_…)Ùt*ø‡”èпrýÞà“ I&BôÏúm×6ˆ~¿š|>¢âÚÿ\I’Š,þí„tK$öM±qªÓh{S#{û˜ç_Zú òysK¯Ða©«0U·k“”\µrÙRÿ¸|jybØåíåíééîµ;pÿÞès IÉ))—›^DâçÿÏÄFrƒ¦ßÝà ¢ÿ ·z…FGÅ„ìÚ©€á1œè_¡¤G]6|<Ô•sQ†’H>x¶þšQì?{>³ÄT^T{5-%™ŒÎ'&&/ed<úºÛ_5¼¨­©®¬zÔ@UÕÊ[¹‡2]½qwð @An‡luhG… žÿ)Ú« ‘ø‡GD&á€qŸ¿ç¦Í¿T3ÿþïü{ȰaC¥¥?Nи©r pöìÙsÿ³@û34ûŸ•+e/-ý3¬ b½¶^ÃCõƒJ¨êÊκ®\¾ƒ›·§¯ÿÆ•«V­Z½zíº¥óó?ï¯ÀÈh9ê—µ€¿´Ûã”áêuƒ‡¹ýo÷¥ºg!åO^6¾Ì>inkooký(_Eÿí»Ï_w¼±Xíý6B8ÞJ‚CÀM>}‘¥ÁÜÒRW”‘ŠP/;é]:½k%@ÿší"RŒ)û–®;›˜íã½ûÀ¤é®éïò¢Œ^;vËðO|ÞôÆb³ôww>”\É»¶~y3F%—QÕXöDKUùÒ²¿Ë*W5¼lkê°XÕ+ìí/0ð?¯k|ÝVXp=/ÿz^uÛË›ÕOŸ=kxÙÜln®-3åž=vìØ‰ÚÚÄ®ë X¿fùÒ?—RøßQñ Tô¼ ðàÁ½ûöìÞé³Óÿx«ú )))7,OâÂ㹡Lè~77¯¾>^[ ú7mñL¾š••aŒ?±ÏwÇŽ>ÞÞàuǾ#a:à‡”p¿SŸªß©Rž#€D¢§ùy½¹ö>˜“ò;·ó®“´õÏ””¤ iW2AÙ"‰EŸ¥£ù9Ä~å½ò’L ü€._Ë/P5åÜ(³ ¢ÈM1¼ó*-ÿWž–ñ‡ï¼á¿cÓæUã>úHÆÿ`œ ÿï¼?tØÐÏt­ÿˆoæÌqqq™»à—¿ÿ…°¿qã¦Í®ç®^ÕðŸ wþæÅoõÎiîÿÓÆ—þkT>«‡T“yh³—_àÑÈxÃéÓ{ÿà_½fýº¥sfΘ±`]`”ºò/§ÿå½^àÕ‘éµ ³ÿ{ÎH©žn+\¬D}ÆQÿ˜ƒçÞbG9ÖÚÊ êv,E\º”–jLI<ÿää 3Cu{}ÂLw52™*úÆ®+Ò€ÒÿJtM±u#8&bßñ’ö§OTd7w9DÛWöi¢ÏzßühèÑ£¡¡AþÛÿZ¾DMl+lh2K±ýV΋>›æ, ½ÖžW.ž?wþ|bJ’!>>.:¢ÂaËÍÈ75w›.]¸˜qåÊ«Ž[ÀkMIÁuE\¯êèBd)…  (ïÚ¥ä³gNŸ:¥hÿxCjµ eIH*¸;Áž€£ýuÊ7[_goã Lf%ª‹kÉê¥w»µùþÍœ«ªûüϸ’sÀ¿HV…åòÂS{IaÉ &C®âr§ø8þepZ]LÜçï¹aÞ˜‘€FŒøâÓ‡’ÀÀwÆU#Ç}#ÁÒ”i3g-X%yýʽZ~aÉ—¯I¸Wìæ™ÓwÑ(wÚíÖF>þëœòvóðÚ±ÃÛÇÿPt"ð .FñØæCP,¹ÕCÒ1†£{$ü Ø_ñß(ã¿¡QÁÿ«–úʧ07×Ò¦Á¿SNªÓÏ=Ür ÉA¦c5ÿö7Ý¥4ú¡\˹õôR2€¾L_°ø7ßO ÙW";ÿý&Ó#‘ë–Høä´…(‹ Ë0±ÈÔ¢ç5ÐÔ¥ååv^!faR@Þ‰ÔfÊ:~<4$(øà®u+ü—»»nX±5¤SŸÒ½vXÕö~Gÿ‹ÛéùE•Oëî];—‘WCƒŽ.kçãŒ+W•èƒ~õu´·4T•Ü”@c´þÐþwuv5Kt;73=ù¼Áp:þTÜIU’’“‹¬ô&)‡bÿ‰a½©m „î–½ù¾ŸÙÔå ÚjJýÂOíý½ OÊrø+Jàræ[…EEà¯èv½R±­¤¸¬…TÅ„™!ë%´•)ù%_N¥(€1Ðצ_F”iÄ—Ã?þw¾pÐç<üùF6ÿ“&üÏ_µîÓܶuëÖÍk×^Èͺ*ã_~͈NmU˜·›í¶ÞfþëàÖ€²c;wùúú ˼ý ªúqeyÁÕ´Ô3'cUŠá¯ôœ1&„€Zÿ€€}9ZÐðZ1ÿøfˆ~@¯U `µa+/d­ªdDz¦Ø™s×y‹ÄþÕœ¢Šg­–vu›’ôò9ðYVZ~Ñ$›~Ùxµ ×·ç}¶ bäV¾‡¯BäuY»J@å:äz% ðæùÃc|ä à„ú{n^µ>é®õ~®1¡•¬F M`m3ÃizZ^£@ºçÅ-ˆþ«YM²ïÐÓÑÞj~tûF>Pµ]üá+Ð5²(.*ÈϹ†5åüé3ñqЈ;“¾_mewI’ýSî™ÂH´“d’¼-Û«ê{`jêµå`¡‡ª~³öCêk«,ÈËÏÎȸ’q57ëÚµ¬Ìì’ÇepßÅKEïˆbui7§¤™%‰IŠ©é–¼Ó˜õ—B€ðÈdÙõ¼èï»aÑØ‘*øbè- Ð ™>à¤GN˜„軳\~ß²ÕuËÆõ·n÷öôIHJH¹"ã_ Œ17»¶_·wñ …ÿ:%X_›³×o÷±ØôœÊê'jjjª?(KŽ%~\ħƒü Ø}¹S¯ÚóÑkÂúcî?‰uzË%T "'À?Ùì,ÂoÇÌ.ª®Ó§ŒG)ÿ)Ù›èøÿN­RÓÝ ”¸{÷ž(¬0r¾PGÌsËËü t-üLJ8dk‰³ EÚÖÕ«f$ ÐY{ë¢ád|dÔA‡÷‡vI«+oÚ™J• Všß%XE2)Ø; 2¯]  árÈÚÞñª±¦âNA~þ#Å÷—µ€åDiÙƒ²ž7· ò *Êr3SS€+`8—”b¼”QlU¶uáíÓü`C„oñ †N7ËóÊ{šùçF_¢­_¦žvó“<ø˜‰âÚ껥%EÅæÎÆºêJS·< ð:[¿@7ä@qzCkwà[SÎI þÒ.€ˆ°ØsR“/\öß÷·¯FÄhÄçŸ 2xÐ?Åÿ;ï3!Àȯðe`2Àÿì_Ö¯_»vƒÇþ°¨èèØxƒáLâÅõÏ1q&A[_‰-¨¯-H¸T\YUóD£ššê›§ð#j®U2¿§Îœ ß e÷œªSñßâ}‰pø·ÈÀ®^›*ØÊ(S3ìì!JoÀóý5×Tôß0½ì¶ ‚ìOŠÂM£ª.eä™^¢` |yò7 -ËËL’é‘À k `T…ªœÈC8 Eâ,ÎÙðšïèÅýeØ/e7¹¾‘rþøñУ¡!¡å4èØC]mQ 2èð 0âë{%e…7ïô¢Cý­um6[[õÛE­Rö9mÅ%,rD5Áî޶šGÅW.$'3LO›{åx}ã™á ‡8,µU"²ÿýý½å…· oÝz`ëk©©(/·Øz{;›»‰Ò¼†è:™AúÒÿìB$¾ìÀOQáQÑ{ý=çðôåð/>; úGwÓ‹€£5ë/%g-\æêàhdüé3€îMD©ÿ¬Ìk‰1gež¥{dm}¢™Ä?ÒpÛ|Uå’€ wRÿ‡½Ö ¸ÑÇðï ØmxÑ(+øï•êþ«Ô*ÿ_Ýv!¨SŽÏ¨<-0øDðÒsö× ú¯•Zìhê`kö ˆüŒôÜBS哺¦¦¶öf/óC9»\Rr·â¾˜rÂË #²l‰Ú>DØé²”õW¯#}NêJœ>Ö ²‹6¡·©º²øò阣G#ÛéA᭳㠓®k§µ·Ç‚V ô¶4T–<·ti„Àd𽝳íAÑõâçV)Ü:œì“"Q‡Æ€ë:©ƒÒC˜ÿ~;Â*þ­ý–{€©â `è;j+õØì6:q:,èuSôYè}‘Á.ë€pe'ÜtØoã7£hœ¸0lè?H¾Cßÿ?ê þÀ˜>kÞš£± øeüŸ­ÊQÀ™¸<9ˆ’ý·9ð µX÷ŒÁÿÝtÃiÅÀWþ Á¥WÑZ¢$ ±ÑÉ1G‚Òeÿ_¦×m4þ[ñÌ¿]P¼CÙŒFžÕúÓž5QÀG,”R~™EO-Ú\Âæl×.¦g›š[Ûm}v›]ÚrÜÛ†kV—LeÅ%åûÀ ¸ÿâyY¾@q¦9ò„óL¢:¡˜ ~ þõ›ïïm5¿È=wæ®>äˆE7‡ƒzÜY?Ï ]Ož¾QíŸÜ!i¶ ÒîvÃÉ´÷v½é–wvöÜ«ä™ùÎq•8ON#NO5ü7 ŽîŠ’Ò’»`t­­Ïõ°Û¶ØÁVd†h™šF˜Šê3›RÇIè×2€È8æóËWüËÉÀ/?ÿüãaƒÞ¨†£¾šˆã®ÌýsÜàƒ&Ëó”ÝÿÏIÏÖ‚]°Ë½»u@CÃsý5²à §§¤µ>2ùŸ¬Ì@Yø—Xb®kª«®xðƒÿËV ÿ¯5ø¿z#…þʦK›~f̹ްàp8wsZñH° &sþn°Ø19–d¥ÚTÝܯN¸´ü$v+œ=à_ZRr§¾²Ò½{­=ÝÝmÈb—±§žw¶6¡uC?‰1@µ[¤ˆ1ìb_ÇÓ—Í|ì²£È Z¬ŽÂŽƒ¹y¸¢°Cü—ÔöãÃ!vÕ d=½ÐQ°ZZ{™l¤.þ)Í#R Áf~s,4ä˜dþÃ1û/ëƒcÛ§ÅWš'ðɇÙ øþçü ó€o§ÍY¸â ŠþÓù³µm5%Ùÿ¬ê¾(¿Cìx©¯jküW¦'%%ßÏJ9Z¶ÿªHx%*SÑ–uÊp¡¤nó17’d¦ñ/»ì5ÚEr´µ<7d¤'FÅB½-»¸­ݬ©fqK¯”èµ÷HìõXï™L÷€÷_Ö$¾¹à¿¡K´õt d^^DÌé‰*c§Ù‚,ú%. hòRàÜZ8ÆÕî`obEî5É H5¾I•/p¼·‡Ä¿Ül |´–ÉŒ³eïíWl‚€Õ€WÈt#^ŒCB§ÆþvjÈ¡h¡üŸÖ3Qèïë³:½i‹T¨Ô’ 9F‚Ã^~ê„´çêľ¦P2`ÏÏãã_Þðé[ÑÿÞP"üóõ$ ÿ“¾›5g;rýÏO¼”™s§ºæY)€ÿõ&Õ¹thøw8zštñ_)€ššjӅĤ”‡½»öVâ)b{W–<’Ò4¼,¬l‚Ho{ÕÄÃÿ+”ÿO¿M 1í‹É ßÙU  Å?‘d©5[íÉ"×dRž™6M"nÞÕ,̧av6°³7Ÿfµ2oò g+é¦ëéQò”H )j«ÈY´ÁQ Ú«æq‹«ú“§°™†º6|E‹±‹¼fápÕ)¾ &®¶½y˜r<4$X¡c'Âä=à=xí¤Ñ˜ýçï>t@ð×~ÿSÇüK7ÿP@¢ÿñãêξþþî’çh0¬Zo[oÇ˺†ºW–ŽŽ¶6âi­’|ñ¶WjÁž.':,Jµ–ך Ð$ßïÛö¦³¯G`žó+3.iòÓ¶xÚŸ' ô"s㸨ò‡SrÌ<ÕÂ3£\ËÈ’èpl…T-¼Çj’Š°Êø„†#+wQtàö ŸÒ”ér¡SEœ=lD‘«‰´Þ®ÆWƒ1_$!°S¡Ýww¥>üqIѦN«½©ó”µ!'ξµ!'2TPpÈÑãaÊúؾERöω0bø' þƒQ`z\L™:}a)ÿÇOaÔwˆª‹¥ý¤®ò@·Õfëñ Ñ{b(ÉP>Ù¬héG.€¶Ø-ýR·¥W°2•im©µÚ4Ë?ìe·k7*#m8üñä§´â¤\邆Mn†šÑRŒ€û¿¤“³’zUøÑ0ª|%C:Aõ†õ¼™ìRBÇ. ÀkÃ?0õÁå˜ê%arØ2ÔIõ™ºM37^âE¹W¨çø€lM¤Îñjð> -W"ý:@xŒ‚7~K˜ÿ#¾üd ‚à?ŠÞù‡Ñ·Óþ{ÿ!ÀUU•Š9ü陋ªð¯F8ý}ê^ztuÜ`¹ððÇKØ­–Åhîí‘öü‹›ƒ•JL«rÄHw픈^V¸øÏá$¶ŸÐ%¨'|èK=!.t s5ñ™•lQ©„ñˆ8£.‘v²éê-{Be´&숋Ü,kÜ#ì48ty ¢€‰Ü îвç”5ì h§Úá\‚{²”ñ8 7­4Ç!zôøñð£‡þš¬á$ ÿ#†:lÀÏF¿„žøÇóÿ§L1Ï3õI“¹¥ÅÜÜØP+)'Ì6uBQjUgøxar§éá#§M{_776½2›;„~àÀ´¼¹•¾xÄæ» »]G ±ñжvI¶I}×Z‰¼ë4fØq‚6!p´œ®Ð*†hˆ×>a{29̈D'Ù3º]àTA—%ÒLZœ«žz-±?Ý£ª@ÿ_ˆ(G+b½<*YSˆ_`¬ÀûÁÃÞ¾þ;]7oüi¢îîß/‡ÿp ?iØðÒÆÿoœ ÿ‡?6\xÞ*Ñë>Áa·Y:ÌFÔ!ÏðrPÜÎÊ2( Ødñ?}m¿Õbµ 8=6l{#m¸ÚàH®èÀ¶öaê‹"^ºÞù,ýÌ¡ÜÙ^ŠZGœâ™.À±àx9¼oVVk“½Š“©Ð3¥±Æ¨ïè ü!fU/'y‰'Œ!=ø“·v±M`+§LnÔâ$3ÔØè“°À.æ5Hk’(oÿƒ‡¡غvåïK~ùñÇÅóæï2oÚöNøò³O‡þ£»ÿ?3JoçïäÉ“§|7{þ/kބܗáßf¥{A~æ[yf|ÈSd]¢6Šhk·èì¡ßwÑb+E¬1æ 4!%"gK«È^É÷ȵÅb¶+Äwž'®³LHUædÈiŽx7þЕ©Z`»]Åv–Áw*¿` jQÆ#r0ûÁO™ªsNWA ö(ªgO‹H±£vbåŽ×ªJQgPÞt1;Ö2¶‚Ó€¨n&!JPãþÜËsçîÀ#îKÿ4WúA®¹ðÍeö7£GÊ€âÀ·Q£ÇŒühàOÿ–鋯Ç` ÿÉS¾5çûßwí9t<2&þ¥Œÿ>I4Ò¸ª[?âz›cÈQßÔ¡ÏJ% Ù˸M#Ñ`E[D“C¶&°‘¥á§ŸÀ¢'’Ð7`—ñS#œªÙâ,k߇É6:‡ùݧӚ3é¡A‹]úÐEÙA¾ÄëâT‚4 ©ÙÕ9#g’}º“ÆÈ€A4‚9ûÜþˆÊî­©ÕÑY׃^;÷ì]µp.„þ\þ€fN?nüØ1cG scÇŒ;„ð“¶çG£š8qÂÈÑ_ÓП1gá2W¿Á‘‘ðÁüç[$ø³»u˜Nó¿p¾³Öõ-r¿ÃÇŽ½ÅNóáÏœÆÀ+(³Gé0Z]qZÑ‘"F²ê^àüœÓΑb§Þ Ot… 6Ìfâ*M†ÞRЍM$™ÄÙ†¹Ïf`‡jVã˜:I-Y¢søF5òÖŒæÏ`óOׯVÏŒ Å]=í¢ýCıBOwï÷ÅßËèw™§Ðœ3fΚ=}ÆÔ)“&~=eÂ7“¿þfÌ豓'ùgøw \ìì?pú¿›æ²hÛþàpô‹<ð×9ŒiÆ+yí¿/‡Î)Ù(éfô”ÑåÌ€À¹‚qZ™ÌŠHÆ–ÜÈŽ§ø1?¡Hÿæb=Y—X ĶÇáÑÙ0kGDF*ElceÇÈ]„j7ÔL¬v™® ç•b„ƒr*høèXED:—;†¿è‹úɘ–c.äk-vþ4ÒÂÏÓ{ÒäÏÚïpæEи#ÄL­ž\zG§hÛ€‡ë²˜ñ—Húìâ2uü¨áŸ~öÑÐ! <èý¡ýC÷ÿ/ÈÄß”ï¦M›1ocð‰HíWùà»!ãÖ‹ƒ ²ÏºëÌrZCt`‚­ÝǹW†ð¼¶ ¹äÔ8µKÌg#ý“H«hÒY‘þà iƒ v|†9Œ2âé¼74ÿ’*EÞ¥Ê~kï"âê¼~ò…¸ŒcE‘êŒ5ÀÖ­4Ëdâ9ŽD)æf`Þ„¨ê\åJ¤»Àª;QõNp q¶I ÷UV e@ö i]\< þ=Ü—/\8o®‹ }Ìù@ÿýAƒÞ×hà?þ!ÑؾŸÉßN6}ÆÌ›B£Õ_ä’>œÌ¾¨¬S“œÎê|×&U>"œ‡^ë¸Hò«`iÚ 1%Úôè‘À›ö eA¸ÖTqÔO¦íìƒ%qC—1%¯„âìùFµá¾ŒÌªHG«ÄxàKs@ñÃ;оÛEÞQò3!í*Ÿ¼aæÎQ/£ãe”B‚â˜b>YÛLE¤@Ô‹©²x-"U@¤zSÞvžO(${zzn[:pþç!üÏüòƒ÷qðCðÚ¿DÿVoû™ÚÖ ´˜à@N¤1™uŒøTjùjeŸ¯ˆÔµ¢VH¾žVî|H]¯äª‡Cþbª‰""gˆä‚¨äätôªr…yïà dã¨*Ö½ðKdÉæü2‰Ì­ú‰'¯Z)vU\$/§/ÑâúÆÀÁWVzu⻯؂„‹¤1Ž— j³+úTÔüYíöp=üËÕòE”ø53¶žkBÙ?- (˜ô! à¼ûoðo «€Ã'Êaÿ”ï¦NŸ1k¶ËÜïý!üµßä>{ó?ø_Rù¸2Çx6ýZ~Ñs%ˆ§°yr¦3–xxª'Eª©UBlæP# öbT»ˆ 4áS:÷ÿ•®i,’ls/b­šSF÷(‚ƒâq5^f#Wü:´òq*¶TfFœª˜®Š¼o]™-Íè'ðWu:e> òïj 2¨Õ_Sð¢Hßìɪþ¤)J^䨑y%™TÏHð `ÕQRbØ¢®Pù—”¯VÜlÊŠ‹=¼iÅü¹\š3aƒÿ÷ß{ïlð/yþÓfΚ3g®Ë’ãQÑø îhTšc0¦§ç<“ãKøjW±Ï#ù(õ\\<Ó™M(?@{#¬DòRŽ(8êê˜ : Ûˆv4X³¢HWAùI/‚iâJU«12ùµ0q^ú5[å¤úx /xX;ú ³m«øGàO)ê V’å>™XJ1˜ÓV™á~€BÖ¯_|ÂÜR<¹{”ïäaxæA¤óþÙ‡&O®? 9?¯öŠŠŠFK±YÀ÷‡Á¿ôw§¢®ÍŽÍ!w<‘ì¡m.H9ã(ÒµðjÖl¾ÎCeS8Ω¦“ôŒ‹È–Eœ:èÂ:<«Uþ {ƒCzMDiv©LÔ\ ²(õÌ~ñ"‚z„_ˆÄ¤¡rGSóîœe6¤êÔÇ&pE½qW°Ê9˜IÕHZV–Γ°š“xÒýKÄuļZƒ–§¶†r\ŠluUwKL¦Œ‹ié—.Ÿq] ãþ{ÿs§~Lºþÿþ=qš 4þ. V¹ï:ü%þJ’M¿ÿ—V¿Ñ œÕuì5g¦”S‡H˨Põ!>vñïEâ(ã">hƒÉ"ã *–K'ûAšJœµô8dÜvN†_Ëë³~ §9º² <ÂÉa3¥ªˆË—ÐÛh˜°-öé“ôpBÁ¡Mߦ;4é`t]XtŽÇ>0ÚZýͲ"–h1ÿ3¿ AóK5ê¬nGÓô´4ã£Ñ˜ššštdý/ß«+X,0ãSÿÿüÿõ¯Ï?Ÿ-¡ßeî¯n»üŽÉÎtLÔ‰¨b-ô¿ÓÞO÷ë'ç ~^»#‚Ó_¸"(Øì¤úÃK½ ÿ"c8øÃ.³JlCÕ>K»ÙE²¤òî´JÕÎðX§W?Ùé«Ò¢;É{Æ•›GcËŽ1oZ¨R˜cøQ8Â|tÄ!¦DI5!bq½'‚;€‚r ºŠ6µþUúgdý¤îh<²lˆ˜®ÕRʼÉþ8Ê·EêìÐ JÔ™›jÔ(ÑptÝö¿–üòë‚￟7žËÜE ýòÓ¢æýò³OþçÕ?…Þ%¡ßeÎÖûøû…BüGG…=¼;MKý™^9y®žHZ.~6€ ¥Wy-œvˆG,x¸…ÐmkDˆ‚õAO2XK¨¿GŸ1ં‰¤õ™‹‰ãΉ žLIÆ«áUA›2ª”få'î+ã'fjá7õœÎðtŠV9åD°,éWG_¨,+xFЉ‰.‰¤ âé/ÌQ¥ðOÊ„ÓõQè¨ÉÀ💒œ|öì‰ÃAvyxºmú¯Wðá“Á§8xbÃÿOà‰2þçþå±ËÏ/(<<<8ðÀnÿ€€xþw8yŽŒ6J2´u_>t´ä±ÍZ­˜®ªÕ®ÖnÆâ˜Ì€ ÊO“X¥¯Áo-ÂŒ‚H…3ÌeŒ(aOœçÈ^1¬üemG)¦½ÈzÔpŠV2L3øVýéà £6åœÒ"÷#SPõákoèR¨$5¬CÎ颀=Üþ×nl$še¥Œ>V#kŒQ放È!ög ))999!1áÌÙ$ð)þŠáÔ2bñïÀÿxàþƒ¿ÛwîòóõÛ»g¿Ÿ?¤X ûE722,úsBj-ŽQ‚Ï¥jùŠ@Wˆ¸~afdÆÔ`ðþb}Y'ÚÀDS`éaÚÆª¦ÀH Q1Û ­ë\“:¨ŠSºAEÎ銨ˆ[¹ÍŸ˜IœKlN‰XŽUþTótߨÓkVãxTðwõ´ô´hÕ,¨ r¿PÌJªT’=zÀè¶E¼b;1ͼKñcBO9‹._4øÿ !YÿùKÜù÷ÿüŠ»S|ójÆ•¸ƒÏôýRç*Ðxø¦?‘½÷倩í4V)Áå[Ï`hÇu§:5Kœ°á¸0!%’«Éð¹©Þ‰ô2“ÇÖð§Ý2,+5‰²³ŽElð0Ç „HV©9püà’ÐV¬Zq Ÿ5Uë¢ÕˆÎ|ªŒŠl_ä–cωvì„ÿïLœZðÿ´ÿ#aöoî÷‹7úøIøß…ðïiÈÈÉÍÍÍnÐÅ?£Æ¸:^d±°>‹ê?Ý:8£D…Äê´<,H¦Ð~Zy×1«ØQ=k¢5¬Ì¸PBÞ$OìÞV»žêåή2ôªò*Æ`*˽€KF‚åpñ/uŠ~úƒ"(LaYTÜ+ÂŽ•ú¹:¦€ZÕ`QÁã# s“,z³ãŒðù£.Ú©ƒ:Í)ß¹k}ø08 êuìÐÔ‡c𬤱f´MÐh–q)SË"1¡ŸÎ‚}R$@ëe_‰q ö?9åôïä ¼ûÎßÎYøÓO?¯Ú¹ËgçNŸ>;ýüüý÷¥(èÏÍ-´qr¼|bç@o+Ž:åŒó•Xܽ#ć‹‘„ŽÈËš“åù'´ŒàïÜtñ‡Ò…e¸ÇáI€1Üâ)i’A¾Ž ÿ ^o|عPèzyœÃŠjTD«'xèçÅݦ4ÚXÁg ÷ÔÚÔ´馠ò²½Wµ‡5¼5¼@gÿŒpú—ÁþÿY0øËQï|üýO?/^¼x¥÷o/oOo˜8œž«RNÚ•[OëšúÑOöÈéã 9Ú;(U­ä]mÃ~‚Ñ%,™gàŸ$aP‡Í7 Ô<û›¯LaŽÕR“G¢ŽŠqðÆAÏèᣣü²¨ )‘[P £Ë4æñÏÚ^BKºõê1Ï œˆ |<j;Å y±¾vůU”)ÏÆˆ §Ü¾`lêk‚¿\#Ò6¨|ŸcóÍÔ·ÚIœ_ú¿Ûÿ÷¿7nÜÃøÿüÓjo///OOOD\ÖàŸ›WPYS©Q‰|åøFäÿh õy@OuÁÇ¥±½Ç®Àw—è¼+ }¢¦¯XtêXU"ß*ÿ¤øq‘*¢!ñÓÕzFÕ/¶È1sè'SØGê0õ÷ üÖñ0‰{Þ £T!‚~•VEŽé/ôõ–Ìi­„žçÉcM$3þ‰ªi /•Pä¯6Íš ñikÿ“Yô§$ŸùcÐÿhÿ'Ó‹úùÇß¶xzyy@ °c—ßÞ ÕùÏËËË¿ùL‚]½üPå½¹6Nd¾ë6Çnà‚#ŠÌ3À¨QÈfwöùH$9dpL³Ì<VjZDe”r·CsLò˜‹ut‡kftyEesåäwƒtx'èáßÉELÆ/*ÒRE‘]tr› öQì.MÎÎtŸ@Ò˜œÚ*ÐøsFœÝKKõU¦9ÿ‘.H:µàÄÿ°±ãÆ ^ÆMpY´hÑÏ[Ý]]7¹{-°Ëÿ|‚~~^~^^A­Œÿ†V4ôÐR¢V6Rtw¸cÃK `" ÇÀÎÓÓšŠì‡`ô (nPåØLȵé]Â}P+SŽ|¢ߊd 8³:«E2kÜÕ)ç 1'´qC‹¬úy^¥ºNlï„)¾Øc\ѵŠh8Ø:hAÃ÷ñ/‘ß=Èrõ!þ$om5R󮤵µLÔÉÊfðö’‰bC^Ú…åÿN¯ü_yàÀ»#Ç©ôÕì øcÅò?þtóôôòô9–“ ž„ÿÏë_·uwõÚð• DÔ3©Èî0 ¡òð aÛ5CÅ!|FE|&Èóäˆ£Š ÑQd‡gyì(…Àãã”TXdqÃZ~Z()AÖUN5‰|Ts¡ü…}49¿R¥0—ß·$äôWËHµ3¦ÃÄi ­:xÖ³Kôpñêv0»‘ðѤdž0Î{˜ÿÖ(õ@[^ÚÛã`ýO}§®ü¿÷Vÿ5JÃÿ¸ñSf~ÿÃâ_û}»§§çÞ¬HÐþËtýº×€zL3ß±±Ã'Vô0RÒê¼1¤sùåÔLRåDÔŽ3eïCÏÞ¿ƒj€“=å7ý¶Ñ~û ">-¸Ùâ“ ͵,ÝXCª’uèýÒ¹ZsÈÛ¼¨zŒ|n ?†æ *¹¤*O6½b¢3~d“Žç‚^¹êÍ9›ÉRÞ˜á”Èv/Cßþ«y€„(÷¾xŸ¦EŸ‹)€q&Núî—ß~[²ÑÝÃã\®ÉþÃ(Àx×®õSâƒu½é'eàâDB4ŽpG‚|ŒDž)Ñ!â +ø€«B·îG %£ÒgZo1BÀÁÓ@|‘9Çœ`ÒblA¸«-2eBô¯š ¢WèºØWÚd|*A5öÜùÑNFnµïdŠ«_cXg.?Æ Ž0øÇ:×6:( 椾 c«I'í?ÇHJŠØ0ý+ÎÀ´0zAãÇŸ0÷—_]îêî– @®fþóó¯¿QºO„M¢¼êÄÜHéþ’}€Ò‘ìÜÂíÚ"B’¨n–ƒQ–úÐ-® ÖØÀ‚Œëuö£¶é|Y†5ô¸œÓõ;³o•r5Ä'Ø4;ž^ã<©FÄ 1<3Üð¥œ*ÈvF8‹š[΀’2¤j âz2‚"¥It(RCç§Ô:&8’¨+Åè´¦»t•4MT}¢Ý=g{’i¤‰ŠüÏ„n˜?iÌPÖþsžò¶—§Ëxœ­] VÕ•¦ª«º¨®®¦ºº«ÿj ) Xª±(‹,£&Ø Z. ÊÚv»¡IÔ„•EA\’ŒÆ‘] YìÆ£2ãè$Ñ1ft0ËhâdÌD\#hÿ÷¾ªyïÝíl÷õßÊeùÿ÷Þ]Î=÷|çœ{î}÷4ˆ¤šI$µ´´L™³pQÛÒëÖl~.K/üüß~ùêk¿zùµWÿóØß›t’ÖÚÜ@w³û!ƒËÂ’†å´6—>Åß) SúLiü„dQô:Bq¢É±=ÌP:qTàOÒŽ65"5²(ß–<ÆŸŽ“´7eL.¡ûĆ)“ )„㤥lJêQmðfœh£é#•rBkÞwziÛ1R¨Q½!§F_x5Ë,Uà®)'*}ˆdÔRŽ­Ô‰?ÜËÒžžØ½ë§÷wž=sêø!µ0ÕÔ L¡.¦a©HUÀ´sæ/j_qãÏé9òÚ[¿ËÓïÓô¶ë•ÌpÄT®äÎ9I™¦pN±xŽÔrqnA üW¡¤¯Ü •(òFÿ…Kåa/Ë ãlPqÚ££Àƒ¤¤fµô!*ªˆÿìØ¡"øïÞ±sû«æMŸzƘ¦z€þÁÕU¡Р!£°h1ÿŸ=áâ¥?¼í{=ÿ•bÿ-‹ÿ?œ4äS‡XÍñF$‚‹ŠE’ßp‰sKà0æš%ÃɵH‚ +d<ö±8»(`:è J¡6½²Õ‚LÚi@Ÿ?pJÆ]6ŠÂSXRš>ÔJ#E ‡KR©Æ,R srÙ1Qœ+ ÏlÚ,#N€~rÓ&ËbÜè€øH æžå NY|¤séËU~Ð>q;áRã¢HQÄ#ÕY)θýñoö1ü?ð¿ã±ÇZ>wZšÎ˜8ª¡Î ¿ºººBðç `äxîLš4#õ¾¹òº›6ý*˜ÿßÿñ=GÁ¿àT¡ 2þ¨E@1(S(öã”·\*¢Ÿ åï“eÔŸ ¡t‚AÑnY†'¸Ì'PTF äU3Þ啞x©»Àþ?ñOoîš65…ÿÔÉ£«ªjªkWjø}b‡õ+•=€ x%Õ»J­6.³DŒ=B„ZTøà…ȸq1#ˆ ·:ƒTá?)SÂAŸâ†lmPaQmh³ˆøçWa2£üˆÑ‡iQˆ¯K©°=ÖAIs$§&â¥=JË3UÅ3íJ~‘]‚°Óa‹$gD¢é¤:½ñ¿OqüÛ Àî­÷ß¹¬í¼ÖÖ™ÓϘ<ºyà†?¤ª†Ñ, Ø’þ9£ýÒŽ[7þã¶ý;Ó´cß{ï¿ý?e-(k+Å0‘y ‹~r}çþR @ž¿‚GŽ‹ÀÓÍéM›h@xò:›80ÃÅ8µ ÑàO„% 3µI$É5kCjÌ™)b>d&Ö IœÄóÂßu½à³.{èX‚÷*dø#å%jZgˆ=Щ¤p°sé²µÞx-9µ\Âé¼ÀºÃ²Š‚R–§¾?áÿ½{2°óG÷ܺ*Eÿì9­­gÏœÐôàŸùCÇQ ÐÒÒ2çâÅWÝðµoݱs—IŸÿÔCÔR©€%ŠâŸ«¶–Tó¡IÂxùv¡¬d-0í”\9 ˆlß¼&BgüýH™œÙÊg«ZvÎ{¿ì¾ÆðïMSøž¹'ý:Žò ¸ÈZB!,.h¥BÐEÀÜó"cò—+M(XWu¦LK´f¾žÔˆ"JÍEµ@=-Ä@cõJ­ ¡„ÜWà{þñÑý’ýbÇŽŸ<ÐqÑE­Yšuö¬sZ†×|%øT݈]€ý-Sç,h»dÙš;ñðßuà/ŠàŸŒ{t(59Òkñ@œ–ìƒtR¼£z€B¡xš«Ä8ÁB›lhËV¤„AG‚‚aºâ€/4â­*%‚¹”½ ‹ÈC^Ü« *@½”[îé…4á†cA¸!·„Œ±ÛVPQ@}ÑplýlPÂgUPž½1T#­tò=aþ¿÷\{íê fgàŸÙÚzÖ̱M_üyjEÃÓ/\ØÞ~é zôïÚõGðoE›› Å¢–óL*œíA;OÖ¤af¸œ#¿k*˜f8N07€7 :ÛeßH'ùJ)΄l°BfÁOÛpQRVhVܨ®•눃5#NÞÓã,±Àö£ÌB¢zp(l`äö3.‚Ä8ZCslV KÀ»<ôâUŠÇ‡VXè’ÄGÆŠˆXêWyüï] ÎýZnú[§Ž1´¾±²>ý¦Úácƒ Ð2iÒ߸hQ{{ûU›vxøùÂ_'ü”­, äo{XÆðêÀÕ"3—øŠM—4Õz¥­ì­XmVöyMT¶Cæ$ÙÄE4Xbþ*MX…õVä. ÔÄ5r»uÈÐ"×Ð+]V¿ÇCB’« 1Xâ6™ïP’p_4¾db ³¥T’ÞC¯pCD =÷ý`P°Wê `_ú'ý»éë³ó4kBcÍ@–úûMuãà àó]œâÿÒÍÛ¶Y`çïü¡Šã¼°½wŽB’ø¨'”KyXüJT&”ÓIÒ—÷‚X vi ¡€ñq¤t8H¥h˜¨h2š2Ežèp&ÊTÏžÝq¦­ÝQZ@°@“¨½à øïØ™Žaèýhëv&.ET€ ê$w±¼+[ ¤ã¦h¯7Mî öoÉäÔÇn{úœò,žê$ùâÅî|о}ûº»»÷wwïëÞ·³Ãàÿ¬a§üY<:8gÍ_Ԗ¿­}qÇÚ?ÍñÿôÿZš¨ÒÀ@æe9!ûYlêËWüÖœëA¹r 0>ÏÉ›L’ <\ ÃŒÑmI”dm ,@«™# ©ƒ 8 gÅM42ñ:QÂÇŒ`Bž¦ŒpdDüáð-RsT݃“à&“:5Ì”«<34èOì3‚VÌüQ.÷,‘š6í+²«ËB…ÑŠ½çG¤>”ÿuïþîûÝûÓÔ§ÍçÐR{ª@ƒLŸ¿°-Ç[Ûâ+®¾}[†ÿ£'? @ÖõwU€~\Z”lË<ƘB$©ŒŸ æ]Gž'þ„ˈÞgÍø®K*bŠ|Jâ£"yp™é¦øõ…!DrךyøLÝðļ(?WCÖ8>¤±n'Qåpc¯qÿ":—Úž@S55n¤u¾&]¦L‘F׌Y¢PX0ÿ(¦=’æ8nx…ø ¹“éô¿Ü¾'5ûûm2øß¹ÂNÆjü1i¢…ÿÅ;ü·µ/½3wÿ_yí…ÊünÄÒ§„+Â?7 0&RœÊòíÈd?‰¼••x¡Á[Wl¶+µbkŒ£|®4·Uln %A~¨ä;¹N rg«x5Èåª ¥úÆd8ú~»püËÔVð"Âð” q1&%ZøÐ”6¦£ †6Á ÷Hða±hðTÇ¥[âXzýñ¿îغÇÃ?óÿS_`ï†Ù&þ7kø©Æ•ËEm)þÛ-þ¯øÎORôïé~öðá£ïY`ç´±ÝP7°þkð…⟮ãÄ®²Û˜UYõJñAq„ÊÊ:*íè;_OB߃ÝHD9cêC¢0ÐÞs㹦ÆöžäÿÂz1ûÚi´­ŒKL_`Š,b ðN¡8ÁÑ ÅqU‰0KåÉ |ñs«þCV¤ƒ4ÕZœšô h ä…‘ *)*xÓ¼®d&ñòÛIÎBZàÖ­èè*Au¡®Ð¬l¹ÔÒ Ò«/r«Çö=Þý·Wz øwwo»:ƒÿô‰u§ÿæuàYm9ò þ—¬Üœ:ÿ{zz³tøð3ïö©ÀÈÐ=ªn=B™>„_‚/—Ow¤é’OŒilèáðÇë׆u™õA¨Ø^Kd¢w|@&òàø&ïQ/TŠCEj–(A%Äø¸¡áR«Öà?í¶í±r¤ÇI¢²¤åYËÔ"±ÀÉI¦OúÄ*}ÓE f£I $ö%‚8Š9ǃ<–ôn4-¨Wwïú@}òÆÓþÝ{7;ãôq§ ;%;BªjÎ^n¹À¸ý™íok¿ôægsÿ½ÿ½Ïüêí¿~l†UÁ¹™:«ƒ¢[òuú«p)Ÿ¡äñé1¸â8ñsxzìྼ[’v#çKÐ4áYˆG\*¨%µ?ˆ„¸Ï¸œoGP ÿHO»2°rÄ]±Ÿ­H«IsZÐÜUÖçˆâß¿"ÔzôŠ»Â¢ø×ì , ñh»ÁeQЄ ö#'þÓ—ö~ÎX¿xëI„ÿ½]?½¹¹¹©©éíý±ð6>5ÿ-óͺ_[î,¾jãÎ];wî.{'RžÜqt¸ngG³l–zz3Q?>b_üsÕD þjúÿ'òxµR'ßxb÷Þî}Öü?Ñù˜@!¾ÍðO*"U,òxXWÂ?åŽP"•h·¯oV §Ü *¦ʦ/~Ùy÷?íLU@šö=Ú6²äðßøUßü ©&Ûý7kA÷3ñ¿%K;¯éêêúþw0øå˜M¯ùåû>â…@ÊýW/ê¢e ŠãŠ‚smÎ"ˆ)(Õ$«)’‘+ j/…vR Õøœ YàY‰h:cªRJÓbl™”m–gîŠmET•¬JÍ>ˆÊåTað%" á…*<È0ÀAZêÇT»N‚‰:§…É­†}“f²»!P5èÕ}2`r)´éó[._÷è®Ý{÷uïZ;®T ૽ùRmvpË×ÛܶŸ‹_võê®Î®Îή»vXü¿éðìßëëK@÷„€Ç(Í?2‚~føG#• ÷í¬G:ª@åI>qÕ1:•ð ©‹P¨LHÒÒ±) 1´Ùè´•/„”åEþC^›Ð´ZÃ'~˜UxÄhÁ†²€Xfþù0‚- 5'ÌÏph+¤48~ë›ÐбGæ°0—~µ¨uñê›6>²wïÆùCüOÜr¾YöËðùÕþ;;o¸õÛ²ùÀê<û‹—ŽËjYÄÈÍHÒ÷æß2Âãï(ƒõ‚™ÝÚ­›v:ù*§ßN «`´}Ù_´ËÔ®uXB#oÑš‰~+ Žéi3!¹¨jJ¼®Ñáut£ÔåÉnD–ÒtÁ¸ÃºîUŠ]w°®…MÂ6süܶMwêÜ(<¯d%t-˜8:ä~Aø+õÓo´Îš½à²ko[pZ®ê¾¢ P]S3¸º¦®4~ÒÙ‹.¶øo¿lÕ5 Ý”áÿiÿc?ïí}þoòKFH¾)±ÇÈ:ŸŽ fáßfÓ½$LJðü% ‹z%k4ª£ýè‰Úh¢ûš?»Ic×ÒI rŠðScc“$× y)h ¬ÌÞxk(¬O1qòc@5»˜Ó.‚rð ÅDO–ÑF•á'45vt‹+âª$øÃ§ÿoß`öüΉП)€†!_ü55uMM¥úºÚÚº¦ñ í®ŸöK¾…áßuçžÿ¿ð#½þõßu%¦»J˜GšmÇõ¦ŽjX(wJø”Æ])²…[–L þÁÂð ¡ñ&5¾”“«EZö—‘ñ%3åëÄtó­¼ÑËJô lI½éŒ€»0‚ÒCƾ×£ C0½ä©ÔYÆ®@OØ¡R 4£»ÆýЉ.…m >ÿŸ=~~Žÿ3Ç47±ÔXù9ð”àêªÁµM¥ææ¡CëkkjÇÌËwý´·]zÕªkrüwYø_ûP6ý? ð´·÷ç: vuÞ4[¹è8LÃ2’ˆnÀ¿d¼c‰²£~ƒî¡²bÞ°L)oÈ‹–—ƒ„1üs«' I\løŒ§àG;ж¦U`5nOFc øWl–€w€9»¥Žkò™@kô€4zâ†-4ÍÁ?‘b6ò¤G`\_Bü÷õÌ™3;{ëgú„aþMM •¿¶Ô\Ê~)dHm͆ú! ¥û&5©mœ±(ßôwÉÒ•«ýïºnc¾üìÿ›Oõ>Ó‡é0H¶“ÚŽ²n¬ÐÙ3¡`0 ÿ¢jf—@§ä_ò×dñ„Ö %!ª¥Æòë°ëä2ò9h(A•hØðÊ5ÝÉ'€ÈøìÿÚ5e¾(¯}„ùcÑ«–0­¨ò„é=Û(‰r9£Æzë M2йð5QýŠD1þ¦ ¶ÏµUäþå÷wÍ3gnëìÙ³&§Þ¿q*=  ¾”B½9M¥ ùüY*5Öט›mù]¶ºãê«þ»®ý^O¾ù鹿ÿ#½Ï—{ž$²•dÁW‹AI¶CV…Æ1Ûo9Â|õ LÂÌd3³Z2ÙtõZI'¼'Iɀ䡷n4ü äQjE·8d”~[†è ®4c5鈧W±‘Xò\L’DðÚ CÚdŇܤ ŒLndRÚÍE8KW TB~ÙÌë%6d\q2#êZ+Ž…Jò A†:­çø‡óædiöì9SÙ䀫ò$57Ö:wÑ%Ë;:VÍ;wÉêÎN; ¸y«ÝüëáÿÊSÇ>§FÊsP¡a_ñÍ „¤óÜŸ4Úò@Ñ*nMt>PJ)5-á±'aÖ,›áŽ#T{ZñÔÔÓ i1)¾v.M¾&MZõ_£b¼]Ôªd\C*+ó㢡#TÐ vu"m(H@FÚ¬Æï9È‚l}¶u: ”’¶“q ¦ _’måe³[™J޳dBØ\ ]X⃂|f=ÿ×7ß½òü ý­çœ?o†0ù·3€ŠBÕMðσa3/¾jõêųg~ýÒkÿ¯}´‡âÿÙ¿I^³!`gýƒ°*Êd^c &P0"Î6ņŠy0“7ÿø-Zöð¡CvW‚ðï…Þ*™H€S%Z qƒ´‡°SBGðwòz&‡í?b?ex’’ƒOçcMRv[>™ÿð Åå%³¶`ìýHµ$)R9Ùòp'†$¼ ©³è«àÄåš2S 'Þ{ëdÿÝ÷ßs]Ûó¾>ÉÒÕ7.›Åe¯Ô™›ÆÍYpùì™g¶^¸Ìâÿ¶'íË?ϼnáÿ½ïpˆBr–ó©'‹;gÚ0žóN—ñ#jYH³nvÉöÙja§´P…T1€u(附rˆKUà+%º×.s7EÖ¦2‘ÂCÿÝÿö¯J0êb¢MC™6âJ< ÃHÁ:톫Èt†ÙîðÈh8£ª§¸»N{¬Ð‡˜妃¦¢õ"6pþf‚Ùwâ‹Ï?I¿ômÛ¼é¶U«®ûöM·Üq×=w_9©ñÿÓôÕÍ¿MÃÆ´Lž~Ö™­ß4ð¿þGöåŸÃ‡_û/·öÿFÁt'Ì #ÞIìG2á¦<‡ ~Z×å‹ì%…üåú!OðýMsÇ(§€ ÇXm\Àtrœ à«Jð©Ô^«ˆÐ”% —2ïºHaX0Ðïé¢7@ÝîxL‰ÂȬǖäÔnИÜ=¦ò”lç¡<…4ZLî—¦iGA[T#¹ŸˆŒ¡¶‘¿ìÝÓ¾ÿÞ²ñ®ܽn}žn›;îü£©®ß)@C%ðOÓð§Ÿ~Ö‚ŽÎk:»®_ûXOOÿKÿ>o6¾ÙÛsäӘРè»VÆÀ˜ÙgK„Φh{˜qˆWô["‚£ñE'Nÿ„~gŸ0… ’T€FÜŸ’PîPÁÒ¸7L™›¨NÙì);ïwµÃá7· ðÍ$©z&E%\uþ¾¼Ù ,ëÉæÓ-±ØÊž (ãK¢‰—#´8ÿ‹£ÄEþú>ùÓë{Þ°Þ¥uWŒj.)€Æ†~ΨÀû÷NÀˆ)s®È&ÿkn}d·s^5/ö8Ôóg‘Ká×]®™î%od•Ðö|zB7ݺ.šfNË«´‘ú4´üëP3goÈ`!Icþ!ú¢½Ôjá4i0+ïVÃûöY¸MèŒN»Äšqšß#«„§Æñãï-„Lp-Îäµ>HÔåŽéÜ y°}Öþ#•JúLCÅ ¥/|I݃€ k¡à¦AOºmÿ'þïå'Û¼aƒSë¾3£Tÿþƒ€•Ã?M#ÏžßÙyÝš›¿÷ã×íx2?ûçð ùàå:ò>e†öHæ·4•ˉy¡òOä{‘îOy‹ ¢°´L1£Ì£ êdÚ\)6€JÏceBݰ0ÿÍ/•wyIPš¼ ‚ÊÆáBd¹|9kâЈ5'—SUpHÑàL1+€ŸÐ]âB[¸+Ò%¢L]ä„÷½]A>urëÿ·×Ž<¾å¾{ƒù¿gÙØRS!þûÝ0 üŸ6cîÒ®o¾yí·\³n{OŽÿÃyððÁÿÿüÇŸB¿K¤Y`/•+q Ø È6åÑ¡…ÑÒ^+ ”%IB½’\[r#ªÊ7Noš)nµ$fA‘0Æ “cÿ{Ú¨%>µQ¶ ö‹5d)à“ ƉÍÔýwÁŽAQR=eá×Á€ƒÚ`ŒŠ6úE¤°èàI®œC1ÖnÌ®kÿG TCbóó>TùäK;½oãÆÿw,Õýï÷5€áÂôÖ˯]sÓßùnÇŠ5›»ÍÀϾöæ±7¤øïyùï¼÷áXcƒª#ýcYóRVkô˜nÜ \ ¢"PÇÍ®Ééðseq[èèQšìp#ôÁh™P‰Ð[áÑ)ä²O5øn”€»v5r»¢™PnIíɵ4ý[õ1Ч@d€®ÑXïÅT3°yŒ“1qø–W¸«¤£Ïp_¥† [äSÿã¯=öð÷Bø¯¿áÜQÅðïp`ö¿eú‚¯ïêX½zåŠUߢ·×úÌü"3ÿ/¼õÎ;ï¼ý)…œA†a^‰‰Pr¥âœ·aÚÌ{ßÕ”ÐåÑïèh1ÐlÖE€Iå0¿Á7òoR‚h‘ (ëwšRÊØÔ¸¯‚ ·ÙMnçå4IÑBBBý”†XP¨¢yŽ„ð:²í‡Ð$ײë:ÁÁz/T€&×ÔYÈ?ÛRõùg/í¾Ó}ÿw-™:´ÿ•lú‡ >rÜ™—¬X¹"O7˜EÀ,<˜™ÿÿïÿï¼§ÊÔÕ±NgÔùbß©5óÈ´”Oe %AtÜý#ƒC¸ï!$bJ•ý¼"Kt½LÁ€Å”–¥»ü;Í‹¿k*ø^[oAÁq¦ú2¡v ÉHƒ>QnÙ/±k¼0h¢ivqrekù ":1¡·ý°”ƒÚuo3‰‘KÁŠšò‚ýßå>¥>|eÛ–üÈü߾䌢èc%'þ#F ?mÎÕøW®\Ñqûnƒþž'sü÷¾šãÿ]%iè2c _³x‹U"˵ªf£-3×Õ(-Mº9´¶Æ žÌæÝY”Ñîu a˜sPLbÁÍ;4"pBt#°-˜»O<)5ÅŠÿMÀ º;ÖŽ>b%²µÐì$ _(æÁ'¤15,tD¶¢T Æé= c_ÚòÐ#‡_ù—ŸÞ›Ãâÿûmã  :ø§©Tj~YnýÓ ÀšŸ†ÿú¿1¶ÿ ©ÿmÿš½ÐØTW7¸ºªfÊ «®Yo"€‡æø?úû•*€w…„ðÂøwkÖqí¨ÃX ©c*—ѹ±‘±Ò¡Í_Æ!sK0C©¢ “Aº`öÑŸðU’¶d¥Já!¼á¨Eó ‡GÕ°7B§ÓÂð÷ýpTœÖb¾Vî J5‘¡¨¸ä•‰ª-»,3ï‚TÍjÚ©®´3èQ|ˆ ñŸÿOÊÂÍœ¡;°3йÉRÙ¥°ÉPLx ðÏ„I'xE† á[·lÞ´1Cÿ„þõëï^yúðá²í/åðOQ[á! Õ %®šsËŸ:y˜¡©.óŸ¶x…SßÛãfÿ=ma_þÓ»ýt›r)®€ãgA(5—(öЄ÷#À÷O ñO2 ðOàŒC0Dð©k"Ò`î«´¿–­0$â2QqGeņN‚2Ž·B4·áæ¨%–HQ8E)ÐlÌÔ*|”(åoxîkMŽ…òEá¤/hóüC>Ow‹L€øT¢ïùÿ¹óà¿înê¼|Úi£F1rÄЦÆóØøg©¡òs€«j$ PÊÀßdgõ©0xBû2‡ÿ¶™µ¿ ÿGþn)F¿ÐA¹%BIcUò„ÓøbLDCF‹‡„^ ¶Î¥öÁ|#ʼ”“9ѼÙé²kì’)ƒ¥ØS] Oy"s}X->`õ€„! ˜ !ÝÀØbð'O ”ADZ(p¦9V‰£¹£ÂÙŒ0øZ0u/<ºÙ!ó9íuyâ"ÒìTGáó¾]¹ýOÿ{Öݹö–«^pÎäqcÇŽ?nÜØ1£GŽ9lh#A¥G€™TS;dÈ;ÈNKýþüýYª²LfPÐý´&b1-‡²H~$pÓ¾ |ú£,ú¿!ÀݺµkW\±ø¬3§MœÒøñãÆŒ^Ê<s˜ßšÊ6“€tz_SŸÂ=ßT`w”Pjª¯©.ÍYbП:›Ìä?KfúŸ€áBɽÃ%³ܦó4!pè›\›=¿"!ø÷[ó€O)-¯À°"è„܈&`÷@i©œÚI_µÏ%¶\Öš³Hh‡TtÅ?+Ž.,ºÎ¶FE¤„é$ÁÄ_‹ôelAY&CLyË|¿L ¸ÀO9’ÁWèÐÁ K¯Ìøåéø–-›7æáÿÿw®½cÍò…sÏšÑ2åŒIpŸ:cF¤Ö»ÔP_3ð_©Jç!šÈÀŸ§ÆÚ†).u€›¶<áÿСC/ü' ~aPyb@5%‰vMú—mœ?ñ‘|P¥™OBI䪟!^Ê#Ê ïmIkᤨ(È}I!Ü.# Rt;^û$àqÔž‰n®Øâ&!Sñ¶2 ôÏŠ^Å‹?Šç¥Û¦¸|L øü¬QIЙÁðyÃKM1Çùå-[6mt à®[¯l_Ðzú¤Ó[&¥&N i|öoìðÒ—úðªêz ñ$5ÕOš{¹‹vlØkfÿ‡^üËIÒo´põ´ “è~(£¥ÓqµpSÚЄ‚Dópm£˜ÙiŠ¡°'A°€Qc«ydo›ü™h™½ØÒªR| ôemMw5ùŒÂÜ7lj%œEq§‚æ*è{Ôå(Î(Û)÷$‚ 3£<Ñ xkhÊcE;ùäñÇz·>²åÁ wÞñÝÕm­gœžÃ~bžþ0ºñËàP}ÿðOÓÐqç¹àŠ[¶Ùðßï¢ÆÏ˜+ýì©Ò"þ0âèóø«˜üÅŸ£]\½6õ[clÿ0ز{sÏ–³L è\LÏÂuYèˆ,¦~ðïñZOk)H/®ÄiŽŸ½â }‘H´ܥϱnŒ@(©ä*L?èˆúŽ´@+ ×íÂe×w™~ÿxß-ß]{ûOî½öÒ¶öçM›0ÅšF  ýCûßõšG̺ÂFºì6³ÿ/f ]ßTÙŸð?¿%aïðÆ’dNj¾¹îö‘jõA f“úpøˆÛðÄxâçºpq „À»&Ho…Ì’`0É2ͪÆï'ä©ìfGT7Áú¢#ƒ‡œjšèäí(ÕÎdðLèRÔ±ÀÎÕ¤qÿkr-“$ö @“Ü™ˆVAYªt`ϾØðíoÿpSç·-\xÑ…³Zâˆ'iø—˜ÿWU57?;8¨‘ß+„‘g^b]€ïïÌàÿFdZš÷[ºÉmƒöì~ÿƒçeq@\»|µŸÃJDÀ¢ÆËÍ_åW*ñ¯ÿ»,Lɸ$/%Ê÷°ÑTGæ7œ»²b Ò(< ʹÃu„Dy™ý-|…¦ßÒ3•r#AXK z ÄÈK£íÞ¤V!7ßXLñÏÊàïh:ä¿£3­áhi¢ÊOÜ}ûÃÛî¾lašœ?­Àâ“4¶’Ã)þÕz¨×gú£ª!æ ›¾È»¶ì?xà=-i2ÎÏòì× 1£»4š—¥è™’œZêBFÖe å¾2gÌ¡™-€¾k EìÒ¬ß`âoK„º½<»‚…¼>vTж°(ÑJ’¢ÂàÍ‘Tœ ­&ä ¥ÍËbb1æf®¼Ö $äÃø‡<‚%ØNïÏîÛû䃗/Êà?oîéÄ1þü²ÿÕïöçCëþ›°*hžø|°ò–íŸ=r‰+N²Îìwg ûj„Úü¿!0.ÌÿDH³èžÒáwf¥ðs[MvŠ/Ë—ds˜PX¬ B®½y‰4is«À ÙÚŠŠQEÚ§ íãžJȰš$9ŒK%IĤ„F¦,è]qüKƒ$ùA¡˜ó’2pÔ‡¼’ˆ Ò½sêÃ=½½–dæÞìÉ€ÿ„ #¾ þmн9T ê rÅòåËW¬^¿÷ýþ¹d Ü/N›°ˆÖ("Dª´™üÁúöRø!v‰ÏÒ5z–Ÿ¸Ö—Ÿ¼ÄÎÌË‚1Çh*Ó;b ‹,8ÐOÐýœnüÖY„C}´®@±ìÌaIt¦Ñ>ü–L®øˆ‘¢(š—Ÿ2¢Ð‘²‰Õ€`V'Õ˜d¡Ù7àŠÌމ k§ß'ÖÒ÷$I˜¤•î]ßžÂÿ¢¯Ñåþþ€íþËñ?¨¦Áìôw÷Gg© 0¶=UË×¼p2¨«MRxo}ÔtÁŸ¯¶jÀr± L»ÈÏJ®+À?š?Fh&©ŒèeáNs¬ c þ%“k . Š_Pfá½}‰w3$*”Œ¡ÕÂ@E¸Ç©U*8‡qÀ} ˆ¦4’¬ˆ¡E2Uhmp§x‡„²À? º˜tó×PþÓážÍ—¤øŸ?m`ð?m ðÏ_©«Çç†52×ß§á3–¥@ǽˆ­ê¦ó˜{Á" ½Àµ†9¯°ÙBK»×EüSiÓË\TùI ¾Y(ÐÌ(7\øûÖxÕ4™ä‚ÍQ`kÄgU)ã "-ÈÚ‚v!°È§¬÷JÇ™óÑ5t)‰™ ÚŽå÷Y@óχ)é–oè‘õ9' Öñž§z7æø?½òà_fýs8ÿéƒkQä *ê4š›áE×cHC 3ð¤VÌJÊ‘ ÎͲJßÍg¥wî܆y\gD« „úpÌXþ|û;EÀSÈé)ô{5æ— ÃbÚ ’E^S°+@Š7õâ£Oìšo®K5âÍ6õ‚þâ(Ë?£˜g^ùW/fŠ1Tóov "òÓ<|ªˆ^z÷ÈS‡·w^¼pá‚_›<©r 0nhMUušlÿ¹ÊhŒ(€¡£Z¯Ì+V®9pÛ“,‚†`…á†4€<ãäX£Wœg)+á?nó¼¨è ‡F«@ª7É^Ï+Qe¡Gü:êf‡f°2ßÕdÖh;„oøGøÜDT ÑFb¨Bû „ß[—ÈQ³àÉ»ÎuCÉc‚±ç8J–Pɬoð2ÝÀ›Ç]¦~âÄ.¦Åú¨ßËŸ}ôÁ_ž{ê¡Ë2ø/˜?oÖÔÓ+Œ¬«ªªNÿ ĨB `HÓ°‘ÃJCJõ î] ÿÓ¦-YžãŪµÿö©Üq?Úѳõ£ÄáÕEòhéf?æ!"Ì"Ù_¶ŒJU²£W ­Ãg”(òëÅB–X3œE¾W€Æ8‚P&òÒ#kE»º·¥+¡Öé»8[eªãø7g{$—ÀJ˵qÎiB–¬G>ä9n üƉþôøûÇ?üèÃc=´gðÏÒ¼sgN>@ÔÝ`=óo€ý^;fRˤÉ-©Ë1~ìøq£‡mÂKÍ£Ïh]²Ì¾ØùÙ»iº ï¿„œç¢ÝâXEšÅ •7P}”Q yÚH¼dÙd‰üû¯òDgà P˜+ôMž½æÌ‰í¸‹_Lw¼„\GæáE¡€½‚gqéÀ## '¾V‘ïE×2ZÌÏû"fx¥@é$SýÈ)¶—ùï´ù{¿Ÿ¦ã}ôá¯ï¾4ÃþEÙŸ‹.<ç¬)ýÏÆ «ùÿeŸ$xœ­} ŒWÕµ÷$&!FC0L˜ ™ÉÌdf200DÔ Bæ‘·€À<µ­Uk­×GookÕ¯ŒõqU@ë£V¥µ÷–Vq|\½¹ñZÛ[¯×ÛÚú‚f€þgï“|ç±ëµÏŒ8»uøŸ}öcíµ×o­µ×Þ眲2ŸNI’»h˜RKscUÍäÊI“Ê'&©|byyesëYsW®[³fݺ®®î­7ÿè‹8Ö±I%¥ÝïXk¥ò{03öÅ5¼áïóLž²"iëµ­Ñý¼¸Ê»$Ô€r(©œrßdþ“^“†ò;°™” `¨dpŽfT Òê××Té`´"¥3¶ð~âœabçá¾šËæÍb.˜²Ú8ã6œs2>S²s'O,Ì—ÂT®Š­š®ÉpÁÈpµ‘øj‹iÛ‚-qüàÀþ4 <ôé3[V,]Òѹ`ñ‚…çÏomœ6½yêÔ)E©©î̲“IþegN†SKKSCcC]MmMuemSóôÓgž5ÿ¬óæ,ZÛÕµùÆ[wýmÿ¾ãù(K%a¤¹üK Í%_IÈâŒ7‚²@[æ_†Ò—FåPª`Qf»A¸0²5• q|Lh:°„bÇH^š÷¦ÊB[¤@MAt:=å&/ÃzþŸm44$X£Úucù­}Ñ€±´’„çTàt€ã~½Ñè~¹ÊK+͸’ ß!OçÞŒÈc¡÷•X@VID›+?šÉ‘½‘ðŸ]DÀ´øûÇXüïÿø…ëw´·-˜][§ªÉ•Iª®k ã¿f à_6™ã_L3Vvõvoú§ûûú~²{0Eÿ‰a_Üq½ÐÅîƒ5žÄàvð\ÑF¼ÀK¨0]L)žvÚ~‘¤¨G\W¸KÜ Ü:€¾Âãg•B,®$íZó›S¬P50\\¤u)B1䀋m ¾†ZÅàå(x,‘Çam–:wÊʰ™óuôÐ~—¾xä‚ŽŽ¶¶¶sÓŸá?…EEEu}Èýoª>%€ð/‘˜ÿ/¦éÓ§·®îííî¾ñ¾m}}Ï ?²ïoý¾0zœ]@´È”‹kAYY‡”€Î uVƒdN3㯭6ÐN²Ì‚WÉtŠš<¨PRðIÌÍË´Œpî5^|T™F1a4Ž¡€j¦>W\°•œþÀ ¹#ä»qà.´¦Þ:‚·4Àdj2Oazäæ6 K¥„#J©ÈqÖÿ¾/þ±~q{{[Ûù3S *³ÿ©¨¨©WMµ'·üÇ©bTÆ?Áÿ¼5=½==7Ü»mÛ¶¿ÿóË»v½ôa4ǘÄå ÇsG묨 xòeŒS87$wˆùé «tüøñÁýûöñù¾?®LÑŸ,æŸÓ\ëSªR-Àv*ÇþãêGeÿ§MŸ±´»wÓõÿ¯/M÷ÿëó»výæ · ¢«¤©S­˜sÞ»ùµ±b ­œhƒ”æRaõ;A’—NSF¤Ûw§ð†¢÷•“4 @¬ÀŒ F…° ú(Û4ê–Ь†d ý"ßÑ’“m46'–TWܱâòƒÆ¥ƒw³)w„r5•%íÇ.* w¨%Ô¢iw^¤À]™HÙt¤4üÅKvvv&ëÿ¶ógOk¬E©:SĨ;},à?Êð_âÿÏJüÿM_¿'ÃÿO%îÿ›GÉð8 e–H‚f×xš– ÂN¶¦l®U šÖRvßûäVqiVþfh Kœî g(µ"ñ…  É P¤iRÌ)B’˜J¦ïyˆ+]‘pë¶á¼°3®ØY ý;•RN€sÐ@/±(Š/‹2aÏþ*†Ÿ¿ ³3SçϨ¯­ÃøÏuHÔ— üË&µŒÎþϘ½:ÁÿM÷gøtׯ^yë£È¹Þ!´çQ…Åcó™—)ÓØÂMÓöl T>N@\KÊçbZìN²ÊK°Chí…Zbø§^¹â|ðÓ”ÅbC°Ð| $xK3ò£Ðò…””ð_À É ç,ÆŠ€G¯©BÆÃ÷³hG…gÖK¢4¸L|ß•CG(\y“ =½°£#Ggûœ†ÚP þŒ1ñþËNoh•˜>kÉÆÄüß•.ÿûÿ¯a%ŒYæOPåâBù ÚvÀGÓ€ÚL‰pÄ(нf«“ØõèZQ‚L‹ët“Ã/líX¤ŠÜ_\ÅJ9+­)…Z ¬Õü¶èÿFȸÒ&êÆð@?¸b¦ÔÓ@=šãÚÁFˆ­„Îb¶¬ƒ˜¥CÑb+® «Æji;Ï™ÿå‹€è®ýmç6ã«jÇýee_kýŸ=ïŠÞM×ÞvoÿÝŸ”À(±„° ‘l dfI7ÉoJóV#ˆ{¨ykÛåx…”IºÐ#n&"XØ8šdô$ƒb Ðpwt̸Í5€ÛtE• ÑM‚ïüºË¶wÚ“ÃóxYÈTÛå h3Ä]ŽBÚ¶<*&l ~#÷J)ààÆ TŒÅÑ b©%ëÎÜ ¾¼3³ÿí æ·6 ô#üWUÖæ;c…ÿ²Š)£Q-íW$æÿÛ?JÍÿÃÿö÷˜éXÎ={éaOG™ˆ(@VxÔ‚vw´ .JÅLÚ¯%.O…HG1‰ylÂ8ÿ–×A²iQÒ£p—®·¥¨c>F<]¡Ú† LÆ]ó-¡Ü³ jy‘r¬ð£Ò4Hv_Ð1$Gûã €™w™Õ>bŽÿ{7nºúú[®èi;oîì©Ôï¯ñÿT–O¬klLð?'ÿ²4a4ñ¿æsÖtoÚ|ý?ÿ8ÿƒ?{ØÄsP;Õˆµ©@RØêàX—ÖÔ+´ø™5‡²4™ÑñϽ3Z¡fÈD< ;S—oñÅàþ•ûAkXx>ŒFmWúÅŠÙ2-{LÑî<’&A¦vN‰¨¦“…â¾Ü§ˆ‰4ˆs*iüIÛm¸}°N¬¹›ßxYÆ%hzíË!ãdZåóŽ”XšÿöÑŸÿòñßÞ[Û:kÖì™Së)ü­PS]Q^^U]]_56Ëÿ²²3G´ý-ÍÓ÷nÚ|ÝwÓÍ¿úö@ C–«‚H«G“,bH93üKF ¸O,I¬³’¬DþÌ#ÖEZ£À| ­GI©ÈÂ" »€t‰†öúyÙ0Óeè“6ïl·9¦dT‚íÀC\b¸¦âÜ\*¤¦‘²µ•«{-Cðç5*þ#—2SûÐ=ІÐ/,dINÓ@šöüç¢Ö4͘’/ökjYª©,/Ÿ8á´ñ§üËÆ5 ÿémWôl¾æÖõõ=ð“í»ÿZ‚ªŽ(r<üNú3¢7$‘”pÇF1_Ý¿šÖ œá y8ì'’¢ÙŒàÙ¼¾öÿÁ€&³•ÀkI'àŸ¹¤üÎȺ ­pÛ]`æÓD[àóe ¹yO¡àöA‘tš’_ õ]*g $~€g±¯j°ÃdŽŽÔ­RÇ3øïÿø®³2üÏšÕˆ–ýµ^ÔT%ø?VÆ?IãGòÿ[š§Î¿rãæk¶~[ß=´ëƒÃ†{JþÀŸa!Ü¡^Œ£…’®ÄŸB§Â4VlÔ¼IYbò[çVZQ„HÄŽR€¿ÌW˜ƒfX](ü ¨N¹Žâ³¬‘£C'ó߬áüc<7L‘Xî8|RJmA…µëvÁVx\ÃSRq£ þfðß÷z[þÙ­çu.ê˜UWÇšªËËË'œäcÿR*ýÓš›Î½¬kÓÕ7|÷þ¾¾‡ÛùÚaÀ”Ð d Þ!~Ü(ðã§¢JѬú[Š ÌþÂ50) € h…Š¥BÄ[‰¸ÿâƒOA"iŸ´Ù€@Ã’n_ÚÄÿZsFç ?¢ezƒ˜ ž“ cоsAЃø‡­Ž› é©cÕaôŽ'ÀÌQø¾˜è&JLá¿ÿóGçÎNð?oÙ¥—¯[5§žA?sÒÀ™cˆÿªâðsËÔÙK×oÚòÍ»îÙÖ×÷èÓÿ¶7åÏÑÚpQqXôG…ÿÀÙñ쨷lÿ´§ NP,IPœêÁ´£ ¡A»(®PýÃ:صæ6ñ¢Ø ˜SW8 ¦gå†Tß>®€l\¸_­}¯Rû’ ‚< Ä<õSKfõE¦jt»‹ÈðÅ â°*BÚ †.†¬„ÄßRý4EÙò?Áÿ›W/o›sÞÂë®ZßµqE+WYšœ,Ælõ_vJáñÿ–æ)Sg´oìÞ|ÃÝièÿ'÷üqÈp.pTT޳YxH¼ …EI…êØÙwÚš;PŽ„W3pq¢é¿xza™*æ} üS‡âGF]à\£Xí°}6?­¬ù \X'™2R¹.ÇdR-ko£pŠ$>¡cQ±YÄ…h@[LÔ(0¡½Ï]¯hB+ 9`R™âœeøOàÿ»k¯¼|õ’—]µaCW’Ö·É` ñ?Nxû—7þS§4M›·ªkËMwÝ— ÿ¡'ûÿz@éHÅL`FJT\ˆTŒÿÁ.å ²ïP4´MN’Å43 QÂ> ”͸ÖÒ¾uÿü9F\nTO˜SY žylrm«±i5—yÑ××qA®„l?«’B#üÉá_ÇVCö<ñ…C¬wuìŽsâ΃«ܲ8oQ*ŽPþOàÿÙSW\yåºõë×wåéªEÍ"þk*'Mœ0V»ÿEÛÿ-Sø7ÎYÕõõ[îÉÎý<½û??4<|ô¸£€ò£l7Ì€z˲±ì—Ma¡nÛöQOE1¤aif,ŸŽ‹a¯´Uóïä°KT¬±ˆé˜ÖÝ¥>lÄKj²S‚BÒXçI½ÐE¸uÁ¸ÚñÏÔ9ƒy+š@FØóå±ÐiÖ&¨*éy› ÖŽ`öü¡Å&'ˆÿXœ9 H RéÞߺf]bø»»»6føßpñÙ ,˜†j*ÊÏ+ø—Õ…¶ÿZ𛦴L_Ð{Ë÷îëËàÿö‡ŸþÅðð°–]y™ Ùß ÞÒ²PHb%¨X ÃI”bP—bþ`ˆ[Ó‚ Ú‡á–ìÏBv£¡ÏãƒéJEvۛɑ?ä[dÍŸKñÍ_±©ùih¢î”&Š«»qòµ Ï€¼&S,Lã;Ú“åÎý„àOðo;÷CD\Bæu@ªd­g$ã¿`N$· ŠRüÿ|Ãú ý.]µô¬& ÿÿÕ•“ÆÿãøëZZZRÇ¿¡¾¾¡eÖykîÎùyhÇóï|zðà'>±ñàT"5ÄLûæápG …9ì þœÈŽý`Tƒ X„t~dáßϾ€¤®ìá _H¹Û£1EO/Š,¶jA@cnú3¯HsÊ*+Ý€¶ÂÒ–%¢{a3· „hÿu¸ÍÀ‘]qœn £CÚ«°<¡µRH¤Å[T/ w1§K ü?غ¾«;ÿŸq6^µtf[UO3ÿ¿¬¬¼C¿¥yJcc}’Z­¹=EÿƒÛ_zçOû üõ£ÃðÉŸ‹„+¥½èyÉ£Iþ- ÚÝ‹çˆóÇÒîã;Ö7pÝnëØ¸4)¶Žh¾|f@Î\Wü6ù™Xľ£³¨­"ä2nÑB¾çl¢Œø‹Ë"[ 6ÎèC–˜°>Ü&T "'Eµ(ýÖÀðŽBø|ÕŒ5WVÛØ‹£ þ¹fcbû3ô;'`Ýâüü_žªÊÏCü—khÎÞôßFAÛ$Þ™"‘;f[ZÀ|Ušª22˶m¢ïì,GpBó·F ÄJ ±Zp,ò„9TPAÛaE‰Aïä-Ï( ÍFªüÿé¾Múé¼ôlîÔL.›wÿeé´ÚºÔèèçðOÒ´s¾ñ½û~ðO7\uå%&]ñâ‡{÷~œqM‡»@Õ[2¥L šCëUh.íVíŠëà½:æùþðÀ‰›DñpšLSÌk°Þg]P>T®®ÉQTB‘&R­c²^’ÏwÂdSë…4©ë‚¢TTÔ<ˆ¦0ºXBšá”ÜZ—ÊË8Ìb¶eë7 >qhp Áÿö-= òÓÿ÷?×V̨ƒÏÿdø¯*?m̧V:»_ç.ùÖï¼yËÚKsì_œü·ñ‰ùŠó#2󲕒¯5–-A£{ÝŒ8¬i¡o¨„÷ŠKª—!ÿÊûÌâM3©C´]VVî펞µP\óËx2,åm{T›m»à:fA¡0ž*]?}ü`Žÿ#Ñÿ+e¦?:1|xðàÁƒCQ¬ Ïp¢¸D\„ÿÖ0×l‘JgI’ØBüû|÷”Kò§¤ñÓ"¶Œyo-8<KêB•¼)4F. +^¤r@bÔ+6V*»°°-t胣Ÿ]×È= 4ðXÒ¸yä!/¸­þ/lB\ëhaœ"&ÝDãJÛ;r Ãÿ1}âè#}÷ÿËí·lýÎÍ·Ý”êd °éÞ_ö÷÷¿š¤Ÿ-A€Êò1Û8e2ðü›f´Î¿ô¢0­\¹rÕª›^ýb0{Sq‚þ¡CÓ4Tb€AX0—eɵWØ‘&¯Pó^™Ä{¯øz_£?Rø‰Ò@,*êö9ÁtçM’SüÂ@ Ôö¾E®K¦‹½BŒDÖ\ ÊÊAQ„r^TÓ=D}á…  “ É•~™$†FƒªiØß§Ô‰re& ¾ÆX[×Z Ä«ãG“岘V;wîØþÈÃ{Þ~û½þ÷÷êž-ßݱ»¿?Wÿ~e]~ü¯¾®ezˬ¹•§ÙÀ­ÿ§Óyá²Rºlóæ_•2ã8GоµG'OHdCOë˜Äh‚/Y ²£b,ö†ÕUM^štl^Ò\Ê™•ìÁ‰<ÅNFà¹×hCAiXUüý’–~ÖÎ\+:N9 qñ° í{ãöìOPï p:ÆÚ‡  ÅøgPŠq<¾ФFyÌõŒŸî‘Åĥج±IÊ.N 8œÎù3O<±sÇ›ƒƒ¥ÒðOÞ{þÇ>ÿr¿Q»oJ˜2gᢋ׭ïêY^9>YŒM °væô†ú††¦–™m‹–-[@¯ZµåQ騑Áƒ6–^â¦ÅãŽNNƒ¼Â%IT†èx­b4k“ÿ@YÓˆFQø´$ íÐ.,õöeö1ö9(–ʤªÈA™¯ä`ÿ¥,|Æa JjyË:1žb×+CjýÀ$!’ɤ÷‹”ç0è_’0G'ÐÔ5b‚Ä}|¯²¨gÞ°³8%5¦JÙËŸMðÿVeO©Á7~óJ¿Ãÿ+÷N¯Ÿ½øò=›’´yӲЉ§Ÿ2FÀ„‹Îž9µåÜÌô/YŒPñÿÍßYÏߤÃQÈáç ÀÝÂs`Pj‰‰¹(x„ÆìTH¯è]{Ë$˜Sf%FÑ+ªÏ}£÷ÄÜX¶q^9Rq“ùöµ\êÛåv0^=€æ·•žÔ•ƒÿQOalq‡’)“üJ’¶(h]HNl(wcé¤ptSKóþ+ïä§’EÆþw~Ûßðÿê£kWõl¾zKïæÿ½= «'yÚ:õ¬¥+.XØyÁòå+–/;oNÇRþ4°úîÏúÓ é]«WÿLâ+±ôl‹h‚FÈBžš!@:ÄÁ0V;Xú´™+INEI¾>' =0èW,´KwÒÒïPeo‰lГ -—a¤?ó}ÈŽ‚EÌ §DÙÁ2é–°‚›Í€(æApG3 b+tˆ~¶ ÅRžq¾r¶)ÙÞ£ƒo½òj?L¯îîÛºyK þ,-¯T>q¬ÞÐpõõ—µ·Î<·c9qV®JÓÖþÏ1ü±Q¹|žÙ~„Ügþ€Ôp M³æqsbab’_òÏ^Ѱ]Ëzß5ÈJ2Ý‚œF»ròó,D¹ÖâBêŠû.‹ÐHz’ k9 ËÇYäw ¡ÒrŸ¤¶ÖDí‰/XŒáìi7Qš  Ð'«uRGZ„f¥ÞŒXÂyöŒ+$4 è /p.”`ë ¾³§Ÿ¤WvݱÉÁÓe•“’T^>&»€ãÏÍñ~ÑÒųgÎh{aªðÚÕª/î?€á?8¬ðHÈ„Àçn‰6¨smy%/™DMÚ—Q˜×"ª]ÎJ¿ñbGÜwS„jXŽ;†ÖÃuˆ¼]2¤yli(vÓÒ°Eû’SlÆõötÝ"D%(à y:¶¿ð¬’ß'´zo·j*@/"G Î«ô)Ÿ`+ØDÄŽ‰Œ$û Ôщբm Ið…â¼x{êú÷&ÿ%çN*O5À¤‰cñàú —/[zaç¹sÏž9#Q‹õ_¾<³ÿ×¾I¬ÿÁÃ%þðÇœÿXÞÅf’Ùâ-×!*žz§)oã³çïËÊ$Ki'y9,Ëâ³Ò³ž\,@O\Ài†É•žiáZJ;Fµ*o3@˜=—Fî9›%‚ò¢äD›58l @˜šHö2‡Ð ƒ? ;ŸN1 Ó™Ðz«®4]Â3~ñ Þ'nÄY<'íjð/o¿ÖßÿQ{vßóÛn¿óî[S/ g~bü'åેN›·¸}ÁÙ­3ò4ó|¿¸ÜšÿU[þâ8*1 ]é~'U¸ xž˜Ä<´ŠFT7tÍ,Á]¨È –+ÑfØ$GÑòW¨9aVMà§UŠk³³óLûºl­ã€ÓÏÇ]`pmŽ6V0Ä(Üô”b ¼fκRQá>DйZ¡9È]¢‰æÙ{º|éá°§{¡ôMÿè×)øÓôÛ§Ûþøöí÷^“âÞär§&|åUÏiµèOÒì…þ™ù¿äÞ?ø?VŠÄmm‘;ìy5o$èYmÑ~†fÐe±˜•‚[§2$»R‹W(IIvEìƒ?¡D‡ÑOßsÆ.e8L Ü• @­0|‘• ÐÆ?ÛH·ó¯‰ÊÉ|>E(±÷¨Ò9e”Ÿ& f"ÎòQb×~Õ<õ¸T°ø~4ðÎüû_yaÇÎ$=xCº¸¸v’Såå'~ÅO‚ÕÍiÖ<ý»dË$ú7xô؉RäÅqA`cµc?CÄíf_~/}v­$®ÃB»C\ p¢¡å9‰9qû¯ýåøDì@£UPú+ŠIä^(Æ–¤Ž²,OgÊÙ§eü!¦BÐ;ñ7”@5ü‘›Ï8Hm=¦š‹’µœ+hyhãíèp¬Çœ÷ôØV”Xú8"$|ÃÍØÞáßßÿ«'Sü?–†6]Z—â?×Ùò3¿Ê#ÁåÓþgžµx9ÆÿúßøÃÿÀàÑ¥R)08þ…:¶Pp¢…•½r(ú\TÃo‹ªj­ý¢ž2·ãá!pY¥³Ì¿#j?˜C+Àš|ý/C bÀÊZI†$ÀÞs>h qI¿hÌuuA’í5.xH[±^´}•òHý!Ç5Ï>úlBV8Šý9y¤Yý„! ¸NôÑ;ÿÀÿožNñ¿cÛÖÿݳ ì'•g?&NœðUâ§6AÐÚ¹Üþ[¹zÍ-}¿ú$½ÿñÒб’ÿd]Çóÿo<÷‹”-¬n â×<„}]É úŸP—íOþè­0‚‚RÔ2`4‹q¸1r©ªDg„ ¡)Ï€@tRÓ’±”v{‚ž—vyXߦY¼¼ú Æ4;¦š³ˆ N£”Àf²q±‹–w ŸÊO•ñ/‘ÊÞªà Ω´B…Äð{oÉîÿËÏføìöÞDœW^Ó0«eÆìÙs['gÖÿ+ ?Išá à|þ¿ø¶={ÿ1Wþ©åNÿˆa7J)KG#p‹5Qx…H¾{K¡îÊbQ¤9&?òD>'çO£°ó+äZç§çYwöÍ=N1á…n¾sW±Ê)Ïý qX†dI iA *¹òϳÐÞˆ¼‚¶à¥oˆ­V´S| ¦àØ‰Š‡ŒkC:¾R /…E§ðˆ—‹µ0úÓ«% ê‹wCðïùgY`Ç·nÙÔ³ uá•k6¬½jýºÕÉà+oœÞWíË2è/O÷.¼ñOÐñN éÄñ"óïgXµý¥}1ñwç饵{°¿ÇIÒÁ¶SgGî!<Íj¸õƒÆ ¹ •ímhkø`Ì‘ôOÏIþ±®Ó]šÖVÞr`ðl°%$óŸv¡¢ì¾_€ÃÍZ:ÌÐ v€Í]R±ÁÅ©ù LkÀ £Ó¾[Ä€d˜q~—éV°R0IÑÕ&¡žüŠaTÌLØðÿ½õZÿý»žá{ß­×ô®^¼Ö¼"lÂIcñAÀ*èÌ[–.–-_¶dqçüíkÿÛ¸ÿùª?W¥’üæ49Íœv› vVÙþ 7ÙzÚÃŽ#ä¥,<ìŽ (™Ù[ùv=á‹\_†‡œeüSÁPQØŠžeÀ‹d:¨Ð×Aó¶íÅ€Κs¦¬b0ÂÆªH# ÜbN ÈÒ ¼+îý™ôÛçRüïxü¡ïônXŸ+¬»{ãüЉgŽÿÊø?¥„æ\”àÙ²¥K:ÛÛÚæ/¸à_:z¬Ó ëþ‡Œ“ÈwŸÞã”Òdâ~`Vâ±x.–‘â¾ÌÚÂB×’ U¦2£(´Ôb,*&_“¿vþ¦@}Ó‡lÿasÔ\zœ0âàiÿ$° Ô¢*™TÒ€ù=®c‹RbW¼cLµ|R,¦,¤^è”T&¤:¿Ã”8ññëìÜسûé)þ·?vGþ†ÐüM¡K'ŸyföAÐSN;ý+|hB Àÿ…+ð/YÜ>A’Ú.~|ð¿qÿs·‡M¥c±¸'§;ìëøìN0}:öñ2­¹;#¯/f³e«º6 ¬MÞµFÕ$•€¿!Q™h ýh P rFÉPòGD,#ĺ20ðpðÞ^v¢0?O[0ÐÖi¼<ð0òBT‹À"«¤€VÒT°ßž…¶!‰€9¦'áK'ˆs“AÀއþðZÿ/ïÞõTæÿïØñØ­=ÝæKA þ×]1!{hbeÕäªI“&œäËAa`Ñ….êhOLÛ‚‹V=øÿãdž‡‡•¢È 4±ù׆6ÜH¡ „Ü¡ Ù`ýØdîØÿ\IÆaÛT!þÁm-ְɱƒä€`F Í‘w"ÑWä¸ÍA ™EÍ—<ƒ‹lŠ ®2a|›ë8žÝ@/wÂHóÔçŸÁ˜¨ù+À´í×qZ2špßõƒM±fÓã ‰0oLn‚øw=0ü‹öžÁ‚K XÈIn);ù+¤=/ïþå³?}bgžþÞ5èCA«jÎWVvFù䪹³@gL1ÓÏíìX0ïüy©ù_ö­çþ|àà±ãYJ¡Ÿ¥ hdü¥!h&"ˆ=}Ânoõ¹MQ=+šp,†>Âã°}cs Bî6:M$N2‰¡^bnÊ”vÁ»Y›wIZQ·&@ç¢] þºº¨0!ÄB“÷šiÛ-(®é›^1ve{…„Y™&gÉ}¸…ÕÖXÀí³,²Ã)ôê÷Øû¯K'ÿ_Þ`ÇN›vܽµâ¿ûÊ9ãOýÚ‹þªªÊ“|,°ÎGZ瞟¥ù Úo{wÿ¡£Ã$• nõ2|ŒK9E±Â’¤3Ù yÁ O¨lÁÊp'ˆ|UÑPo>íq¬A K—!Ò BˆFŸ!âŸÉ¥õDivKV¸ žÃç êiXÆWB¾’Ö\͆Ãþ~ä´­Á?V¾¬¦²àG_¨¿b¯âaƒé_Ùk׸HŽ =JÈø‡ÂÍv’|§9S¾ûòû÷ìÞõüóÏ<ýÌ;}Ú±í®o`øwm\5cREH'»XïÏŸ=/W .ÝýYú°MÇá¨é·!Á°Æz†¿È"?.çìH öã’ÛH°áW6EÆ´;"cI÷kð&DTã0; îñ¾?4_Þ×°÷ìèh÷˜fßÏJ¤7ŠÜsè_¿á`w±HCü`ŒxšE²ª€l¥=[4§3k“Ÿ%e4†mãÒípÈÚä‡Mþä†@‘·4PƒÊ}+=üûסÝéÙ§¶oß±¥ûšÞŒÿ5ͪ†ð¯:ÙσNòÀ̹óSó?Á?œný Ú«jeçÉWù¸œÀ$Ï?í½DÓØ»TT—À>(ã„ÏKbI~V’Õ3*?$’¿5“Z^ˆqÚ µ 3BÊ•!öų娖¢Tà†ø;;˜~¤´¹¥†ŸJíï›_èÕI~Þ„½’RÌ’ø1B£SŽFÃ+í^ÜòGƒö_Vâ’D*™Î¼Š>~ó5³xí?ûÒóÏ=ûÓ$ýäö«sà[еvÙÙÍu5ÿãNîÝ §NqøŸ~NêüÏo[øPúàÏ ÿÃÖþkí½ºô R`òæI)“{o€b 9gëd‰EW‘írÌïÂE6•lÚëqÚ¡Õ¸#ÎÌpk—”ÆÍÀe¥_cÜC•3$‡€&Ŷ9º&•‘£Ýea‡TaQ»NÆ€úq×…û¶¢À‡­Ùo>zVߟ³öÉ8‰DCÓ/’©ü­Ù£ ¢ÎBIéƒï$îªþãÞ{ñ…ž§øß±ã×õBüwu]Öž ›ÿªÊñãÆT  <<¿­½£½½ó®HðOÖÿGOøq#fCéĆ*¬ø ñ| y¨6©ãñp#Ö0oÄ(~ͯ†¤‘£‰¸).LšÆè ü€¿ ëÅÔ»pÉÄЈ=)…-§0ZNŒyŠ&Ú:¸…hâýÁ:CÿB‡0ɤcñ˜ÒIâäᇮAa†dÕœ& ¥•>ü»lçï­÷>úß—žá¹gž$øï»øþéàÚ…Sj«hš<þÔ“ÁÿéàЬyí×0pàà 1ÿƒC'ü@³ Ç €Âa† 1ÄCGD'™Ðöx—?Èpñµg#:Ü…\˜º’ô(ÏE¦|­ }ŒD ×üGb™8B;¥tVÂà H4¹ãŒ>†ôþÅ–Y¾’7nèr+ØçŒÞ&ç3X"Ϯ奜«êm¡ÂÂkk‘Ü\['-y7ÿÛüìpúJÖø4Áÿ÷né `ãúÓªü«ª&>nÜ—Û7©ª¶y|àܶDt¶÷þ×ß>@ëÿ£‡‡††-Ý:÷ZñBÓ°Ì~UQÏ$ëÞˆyd‰‘An× y&£PŠc:¶{›)>²“›9aA…OÖ¡õ²„¾äC䢲ϒ•öÁ˜˜ÆÄ-5J¡íIÎjȸeS+Qlq~!°©Šu@æÁp—  íéñ…ÒcÂöqKH,<h㣾{ÿ|ì­ª0 ZvâÐ@.D¥ß|ë÷ƒ'2ùHþìýéÈú?pç°òOÌÿêySª%üWN7îÔ/þSÎhl™ÑŸ*€yí‰èXµõû}¿ø#tŽ ïx–_­ƒw~Ñ-5Ê%Áõ§¬s˜N+Æp¢á²C!ì«óÏü¹–m˜€Ím,G©uL–‘.7FkÙæúr.GNX©?Çžga†öãe„ ]òY)HÒ¾è‘Hßré²õ¼ÌÚÖ–×K ‚vwL»`nq0AÇë¬-mV’‚,»&ØÐÜ›`ó‚ɸŽü}ÿ1«Áãø§þ·ßqM„ÿ† g×Vüc-0¹"YŒZTUÕO>ƒ¦™ç¤ðïèì¼à‚¥[AðÈ`‚ÿRXµóDp!=N˜m+ĘÝ@CËV2;6¾zðz{#R¡Gü3ÿÏ®qIÔÚRÑwmñaÚ•ö^„&5Xy)ÈÍ‚܈å*@ µ=*u*¤VR„ü´• ·aRN`~ÀK[¸/C*¨˜{ÖR9j/Ðh±]°*TTþám…°€»œÅ5ã&0=]ú5rÿ·÷]‡ÿV4×TWWË@Åøq§Žv0~*lÏð¿páÂuŸ{ãŸÂX0ç4V‹P?ëÐÓgÖzfßÄSæxzAGXGÓÙE+(!’Œkz¡c,2¼€³ h>E)ƒOt†E+ „LQfÇ–eù ñÈ(”¹Ï؋٤˜"MFNâçUŠu6ñ¼ý7* `š¡Þw&Ü•• 0¨€Âó´¶? —އÓ/‚ÅÿWCø¯½¸µ¶º*Ç5uª*Ï$!ÀÿnÞë^xœµ} ŒWÕÕ/É$“ ™Ìd2“™Ìd& Úø_A!C€$È[!:ˆ/D­0€úQqxе­µýl­Þ>îW¿Þ[µjýLkýê#÷ô®~ø)à£Ua—ÿ³÷Iî9g¿ÖkŸ™RîVæÿ?ûìÇÚk¯ßZk¯½ÏùMÕÃÏÓES¦e©«»{ÖæƒÇòtôëÃý‡³tDi­SŸ´ý²Š¢åó ù•²¤|“þh ´çÙÖthÒÊå§ ˜V º¦ƒ>4ù®-±ñÂþåJ~KÚŠÂJÑú–x<þ,C)¬5/®]ƒÁ ]„n4‡¶,á|8“Æ¢9g(ÿøÙEñ]i0ÓrÚp5¿«SB¡Ö°ŒŸk+¹û”V˜¨]mÿè|6mûv(„*Šáà³ÿ-¤'6ÞvÓ²}º~æÅg 7iXžÌ_Ÿ:k†C¥¡gÊø?olg†ÿ×®yâõý‡=òuþ þ'ð¤XŒp9†ü¤\ÒFhyÔ¨]ÓžÖ@¤CÃ9x´Œ@*&¸fAq™æ½bRBŽ#†N °JT…ŒÁ 9ÊM²Ìw‡ÄuASôFêæ@°Hܶdy­SËÜ\ô•Ÿ±³˜.²—25ŽjJø·CK`¦Â7‹ÖÔ?€ÿ4ER„5ª¨mÂv1%ì†Åý7Ð9å¡ÖÇ¿øÊãÿÑ5+–ü/šxΈáA85àñß\;xüŸE‘þ à’i]]=¿ù·ÞÞ}8¤£•TJl¦pÁ¿¸Ö¢H%øË‘ÖqSL¼"å¢u¹r €jYÒ4QÞÓ’³„ÑdHnX„$é‡-c TÂòeY?LvÌÄ1Y‡dý+á†ýxîQ5?J&AR& Óˆ ‹Ò[2ÁÆMélÈÄ“¯@!¤é—þO=zÛMý7^}Ùè‘þÃü· ÿõÈþŸÞØñ&M*¾_Ð9í²¾ío¿ýö®ÿcJàŠN‰üA®ëpyÚß(YåÊlzÊe´8àà¡hÄù¼7¥ ’áD!ÔRÂJ†ÄÄK&D–®¶—çˆ&ÖSY5RÛéá2v91÷]rL\mÞ*Ÿl¶ÀiÂBœXÈ™R”ÑNÙª‘S ø&¬[C‰A5$ÉQÌð¯_søü[ü—̺øtƒzë„…€M­þ«ÿaü9ÿ¢K:;;'Oî¼ø¼üzüÌùOdøßñnŽüÜý?–`ý°¼H†8=ŒÛùNÀTyåàƒ &ê™ZÎ8ó¥©-“F L¨ÙÁ¨+z- PiYÿÎ#$ˆ7ÈãL±}—{rSÝ+Q³/A¡%¬QD  °OÔ,Iµ­#K› Ík z‘)Ð’õ'ˆµ…äö¤i,—Ö%uŽýÜ ÿé'Ö¯þ6Àÿ܋ǜ–~„ÿö†ÁNã—üã&N6ib±¸hÿµcÇö·õgéÐñŠd´D±ƒû@k¸9VD"œvöIæÕ,üž‹Ö–B¶¶kAÀ€’“Êz£ŽíNÊ­µ‰™ ½îÅ•U½UHéH5 OÉ6â© Z?|¶„ O=”'¯B 0†8ØbíË6õGJè£X & Í–§5–2´~½ÀÿÓO?¹ñ;·Þà]÷è3FÕ?7ÿÆ5ÿígqæßÁrçøó3à¼Ió7½òç—^|öå¿~qàïÇd›Q*ŽúNعÑÀ-å"rdûQB%¥ÌË=Ã¥ÒY)7¹!q¿^XPc]( wñ±÷5ÂÿP à¦4‰^¢~ÍŠ¶¶*¼žC%$ÖøJTïý§°[Â3нPA²N‘o…ݹb•}·X—Êœx)W@Çm¬ÿO¾·á¶oߢKÆž>j$ þSðçø:thÕàðß4üÌѹsîøÎÉ^ŒËWcg?øÇø·ýížÃÇ*ìˆÏJÁ¿a€L4ÌM(o°.å ¥ø—ÈÁem›j°«X¸ÊN¾òÚš´Êd4‰w!|”`‘…fœúŒõYo"ã”{LĨ"q–ŒÁ¡Ìÿ%Ê&|,«S㟓‹f·Ç®ùÚÔz*¥JCl1…LbZ¥LYºPaÀÜ7róÿôSÿòðæ¾UËÀîß‚qþÃøkZ=Hû?´µµ}ÔÙçd`l€¦Ææ.Á¸îܹý‰'ß?‘T*зKÓÔ-˜"K!8ç¿$Ëî2U`¢4ÃbÓRN vOJ(¾äºÊ_¯“ª8 ðRØ*Bàj€7Êß¾¨ŠÜÒe±±'4æfWÓ½„ Mð&Œ¶KiͦÉkwa§Ô,ŽÐR^›wEe¯5œa8˜ÔœÈ ¥d:EÝ0xü—œ%èÞ¾õ‹ þ?{lÛ–-ÞÌÿUÓÎ ~ýù €¡ƒ\Ô´µµuœvÆÙ£Ïð?iÜ…ÙŠ`ÝÛïî|u÷7I‚5J%ž…âÊ0¿©üOà]tž4˜[°IEŠHmò5«’¿{ãrpûANRæ*‰IXÓbÒÃdÑq½ÈÍ ð?C–Ÿv€¼e)Šóµ€ ¯©>`— š©'RÙ·á£a$¢&u´H‚Uºi”ýTοc#rSfb à  VV.’ Ÿ¦ß²Ty÷Og¾ÿ–-[6­]îwÿ–Þ°hìé#$“S{síКA)€º¶ööö#ϸÂ?W—\tÁ¹‹þýÝ{+9üéÆ_DhÜ]a^dÔìä–"Îy%X7‘A¢É^»<}:“Mµ’ÆqM RÔ 3‚®Žbâã.pˆ„R¯4!@ò±h†/Ɇ‚uQŒVB¬tZ†µPC Õq Þó¼â3)õîúÚ]öÃŒÒEöB’e-|sý°²†Ìàâú¨°ˆ&ËÀÊî_<õĶÍþ7Þð¿d昑ҊŸ)€¦šA*€† ÿímgN$øŸgi•¿?ûøÖ-Ezèΰú¿náèƒ0ÿmMuƒ=4¤>[Œ<÷üŸ2mÖœysçΙ=çÖ=ÿÂÏ6÷#Z\é©“pRú”ex6em]ëwÛ<²¹«üBïj¥…¾ “}ÓB·üü˜çȳfNá Ó8rÏûàâÆUUÚ5FQe¥@qâq (¤žÈ±ÙŠª ¬×ÃÀaü2•›`þ39¨+CbÉ‘‚`íÒ $àVÜ*ØÝ{…èw6ÛÆˆ‹!ª.”TŒIÅ xåo¿|Ôà?ÿ{÷¿§ó sæ7ž:Ú[j·ûW]Sל»ÿ£!ü;gÌš;ϤË7=ÿÂêýGHz•^Ê<æ"ñ±56rÞ`Äá?W¼F´««iY¯ç¼ân¡ÛæÑˆ”å…î,`9ËÛöŠE½tZ ¬RÅ ‹xx•Èrð0¬½6rŒÝôXn:±ÞÊûŽ÷îÉŽoš2Ð?/²ISÎA-X¢Š')u/2|k¼Œåøg=#VhÈ4U!nLr„ÒJ¥RÄÖUeï3ß5øßøàŠ`þgŒæ‡}øÛÚšëªcúkÛ2Ï?wþÛ¿5®3 ¿kæ¼nùÕó7|ÿ££Gq†hzåâuNs;6¹€ZDJ ßöèÓâü=c¿´LPn±F<ÈNu \©pW&h _UEËðD"S3Ä?Fö– VˆÔyˆ“|"³±˜‹‡ÕÀ#BÄ_&~·#Qð±bRáfˆÊŸ›T~}0€Y Ò¡†ÁFNrQ.Ñ`È®íFÓŒÔzñÚoW»1Ñå‹WÑ®TŽö÷çÆ¶rìíŸÒŽöÿÀ¹ì TXe«âm¼ZŠd²¦ce8A!”Œ^=`éVœè×A€‚ 4Ò³&`Ù¥Y¶/«˜¶dãéx~Ôþx†ÿ¯ßxl«Áÿ†Õaùí%#$è·w´µ6ÔÕÖùÿ­þ#Î÷æ¿kæÜyÿ3¯ØÒ»óÝ}GŽ=NV?†YÐ ³G® s5d6c¥U×`±àš†0s ï-ó0D¹Ì#šYMAˆ½Iô÷’¢ôƒù|ØÁàà„ÖŽ’Gº’—f‹Á8kаhyქS¡L©ý·)º¬Z“þ"H*_¾´Íáÿ;ðì/‡G{{cý û‡TÛbáßvÖ%üSºfΞ‹ð?oöŒeïìØ¹ëó#G¾6$Z¯Ê¬¼ñ†–ŽìÌ9Þ“&./Á²²H‡¨?M\R)„£OCPô¡™Lí^૚V]ßÊy©Åz³c¦.2áGåâïØJ¡÷Ü0ê}H… £‚ iª˜z@¥ÿ¡…ˆ’$8vzZ/36ß–¬¸"7ä¶ÝtHž#‚ÞWKij—”© ÷eñuüy6:'…Æ*)~T%vÅÐuÔà¿ÿð‰~ù°Åÿ¦ÕáÙÿk'ŸFÑßÚ\W;¸~šÛ¬ù¿p’uý3ôcøÏ›ÓÕ}˶_½þnÿ‘£>ÎéhV„z9 ’‰¸šKc¦‰«g¦#ˆÇÿtñb&F¤ô•NÑ6º¼ÆöàÁýÅ’Ù‘c½Šà(è;id€#Ç†ÝÆ>S¸å|ì–)çµkG‚Öà&˜’®•sF$jaÇ?ƒ.R‡ÞM‰¬†€[^û‚LÆàÛ  ©f£ÂÛNô.šXÔ 9#ÊÝۥ܌œè÷iÇãþ[6ßïþ_ºô†Eçâ}¾æÆšÁîóq ¹5×mg›£?S¦ÏžÇÒÜîÎî9WÇÇGŠ7ÿ‡Þcv7gdkl2ë\I ?yD"q†Nñ ’é7!|Y,Kúq2æWžAˆØ!I·ÀqW ‚D³„ö 'èVäì…)ˇB,öjŠÔö/ý £u(˜Ê*Á?ød7A‹âmÿF=„r« I‹yÁ'œ÷ú(d“*ñ“Ω<(æ.VùØüûßqë¦üyºfpÚ[‡ÖÔ 2Ü'¤šÿm#.6çýfðŸ7wÖ´ÉS=þ,þá( úĈP i'ìZÄÖ§ä6à¯Q¾/ç'@!ëÛ½ÐÄ-’I„Ã“í­ 6 È\@øhR4­4ÃÕ ÓjÛUtÛ6õÔRèŠâß+Úrþ€ þ>÷-vÊ-Ìu¢J™ìîøÿò§Øíÿ-›ÖÜbÑ¿té’©#ƒño¬­©©?9ß¿Hõ-ÅÉß 9ü§Í˜3o®€ÿ9Ó'Ï{ð;ßûüˆóÿ#3ÏyàœJ1${xÌõ'60Î>”ò7s¹—·º…²¬Ûµ¸„ûb­{•¦ùù5¿Ç¥5r{áddRˆ1¥eâMX¿iñ*$ú(¦FóXâœrD¾X»ò|¤¥‘ÖCe*$Ø^Åò˜ƒ mˆCÂ¥˜ì$ý0}õV¾ößðкÖ-»îÆ¥¹¸ñš™cÎpOý먯­9flûÉãHCK[{ǘ‰ü»/£+¼rÇÞ?8V©(b±DûŠ%‹‡ðƒŒk<¢ó­+¤®<É’•&+'Ÿ‰Ÿ»@Pi"yweJœ\’'Û¬©RNÈ•QP€k$ÿ]y§_:Ó¥”ìcbñF¯Ïβ˜µ„mÈÏ"`{øFbóð¾°‰U°W}šÁâ6ó¿vÏ,HJ5¡Ò²wè”wI8¨L%pÙ«ÿCýýŸýË–-×Þšáþúžkn0Æÿ‚ö––ŽýÃG}kxLjÑã§\ØôOàH}kûiùÉÿ®ÙÅf?WYΊßîÛw ’$ ¼™ŸóI8­šeóS*ƒX³H,ŠO™Ø/ë"M•ŽÞ ¯.‡ Šàõî*;â “¦2,”J!ur¼CŽVÈc •h/BfpŸíÐâJÇ)®Êâ®XÇÒÆåów ‘4²ô²¶GfZÉ<É%Ý3 pšÿî_¿qÃ}7_½¸gqOÏâܸáÊ‹Zš›šÚ;†u´·´¶¶µvŒ9ê¬Qí­ÿÄ  ¦©ýœq“§š¿¢°ðš§öíß(áoT•ñÏTBâ@ªJp• ÍïŠ5}Ç1ï’ôL^¡ax[Ò Ž àò­[Ë£;¦=Šc8ôÜD~Sî¥xS`±SZ\GHk6\¡•caXÛ²[²Ž2)ÆQ2tˆ°LÝÀl¦'Â%â°öV$¶ª%• í-ræMð߱段÷¬XzuÏâ þ=W]}à K:OkojjjlikÍþ65·´¶µµ4··µ¶·5ŸôÀš¶sÆMê¾lŽ„ü<Í_°ðšgöîßÿÉ1ÿî5Êšè0¡_ˆ.)?±­2~úî¹DB½£¹ñ§$÷P¹Ýœ‰jìèÀÛa¦Ù ÀÍ:-‘Z9”ÐA·RÄ7°b+FH‹*Y9³Vóf^³ÞøÊmdÑ–`[Ë"5ZÊLÁøt8lã¨%Õ£B*D¦Hî’){!: å¼dOÀW%øO;×ÿÐWÛû¼oåµ=>]µhêéM™ñÏ@ñ–š››ígk{ÝI+€¦s&L›1[6ýYZ°`AÏ£ïîß¿ÿÓ\”"”í ¹3¿€A11¥d͈¸ xŒ°¶@~¡]l‘±²\{ÀLqÄ!VÈð‹28(ñ¯nˆ0,ÄZ ãÅd‡öäR_zÅi¤aüÜz¥vù¦|¬YÈò=2…“rJŠðG\Ï P_À°FZ×’È·RânR gMN,æJ5Çÿ¡,üð»}}ëï¼¾0ýÿS†Po’SKëI{c&vÏŠÅþ2ó?AÏÃïeøßÿ¥ì”1Uc Чö@^y䉣¼h&˜RT£jî#½b+`M¤JòÿÕX²ò!m£1ØÓ )»ƒ[ 4Fê¡ ™{BQº:Zë®2òðl@õ„~ÚÌ„móöû ÚFùšJ‘í_ª™Â>ƒHƒ¹qùÒ^D§WÌñC„àMdà:làèÝmúúÖÞ¸äê€ÿžËNkÎ-½U¹Ðè"¬Ð~ÁÔ™øÏÍà¿ Swü%ÇÿþŠstRÊ'¿H²¡ -[˜×šÄÌm’<\lRº¥³$F‚¨Ä£ ,ÉÅï󢬒ð,AÊŽœ¸í¸yE>a·´¡ÄÂEê‹7ª$ð`k2E>|ÜDêptÀ¥LµÈ@Øm1+,å÷,½e5øWê Z ì ækš‰[v]Æ)¨_Ü!›y¬Q¸hØy싃9üܵqㆠ}w^íÕþ=‹&vX 766Ô×7d³ÿòd³Nî ÐðIáiô·Ö?‡ÿ‚ëžû8Ç?Æ?8¨‚¹¨)‹‰ÕÐ'ˆk¸NÒ»^ x2śޭËD‹‡\Ìõub¬ EÂ(‰eÀ¸é“ò-Ú"Â!©PDÇHéŽÝ ú¶ ü±Ê¿\C™ðàÔßÀ/‰¹ï‘a YÒzB³.­&S?‰‚…¡ÔD^éÛI¡œp.íûò³¿|yè`¦Þܼ)Ãÿ†ûo¾þÚ%`0ÿ›±§sDü“:L¬ði5¦xŠ“½Æy…4uР¾E¤õC#ï¿ü³ÿñIŽÿÏ~°iã¦Ìè{è;+n\<€…ãó@sCqà·ª*ƒnuuMU¦ ê2+úAªª3ÝQWÛy£._üiþÂGÞ/Kìà1®Xõ)N„—#híŸÅÎ|hp¸<|2@ø¤(‘¿YÜEõ\¸ ®;ÜÙi;*b Pžqó¢¬à|ð (¦-EJ§8âWÝTg¤Œ!˜^XSDËÅ:yÕ¥Ÿó’]Å0ÃÓAßYƸH¨³ÿ]nÅeBE#ŠÐ£Ø¨=ñP¤H)ß>@/f­¦mšгJ >œÓ¢lªìÝòƒç¾8xðà“›6mØøHᬿwÅu@ÌÛÚØ@|U¦j†fN@ ìYà꺆"|iÆÑÝÒ±Ÿ"+þåæÿò§Þß—™ÿ~ΦhíXj_ým_ÿïw±MqÇg¿ªT„³lêìDÀç©S‡PÐ7hÓ1=ËFHÖpµ§YÑã‰5$¼ Å}þC8 Ês\!ÊtA%hE1RŠ8¬èVJ5jƒëiß«´+nOqÂ¥’óÞ‚ÒƒBÅÐè–@8! “•_‘“˜G (¨Tܱ¡÷´Ài„‹üË7[·nzþà—¿ùÕ ¯½þúöíoþÇŸ_ù•ݳ ,檫©"«üü:ÓCër<îµUC|Øpظ²àÿùó{~¾wÿWÅ Ç%zôÇ„ÿæg_,ûá§•Cÿõµ{€²¸Ì<™‡œqG²qIAnZFGˆ*i_Ð0âš@ïÒ‹½'š4xa%P– Ép½ËVЀöt?\ô3‰ÖÎÎÂB°yÒ @Ÿ„k!SÖ‘†d6=a(èk®„éa%áÑ)|/—°ÌÈðz#Ÿ*” û±Y¦\Ĺõ|¤ë~P„å[Eì“ y‹W|sÎjµóÙß¿ýŽÅ~öï½Þ³{÷î÷Æõ/TÀ®Oöõ­_ž?”)€E×hÛLUCªÃê¿yD×øÞþgkÿÙ—•·ÝõÜ'ß$;Zk28ñÂË{Á5áÉþˆ æ °"䀺3/!*k1ªCtFÜdNÁ&#…wýiC__ßÚ¥=9þ_5ﬓÙOPµ öè`ccÇØK£Þÿ¼ ûóç_±`–{ÕÝ>·çà‘H$JäŽ(­Þ:S’Î…jwƒ¯5¹dhh~K忸j6/üî{$#Rr刳kËĽ v -(ˆC°¿¯ÌªU¨dÆ¡Ú4g$°ýèÀ… S§5!‘«œTŠ×ÙlóâÁT¦d¥LHhYS®cý¥aÍ4uëÑA§Sí+{¬b,.% ã_´Û¦÷l*4À®_dðï{è;×ø_ܳðÂSàdË„ÚúÆÚúºú¦sº"ÁÿùEZ°ìÖ+{®Xxý­½+W®^ó“?õ .;úÊùa-wº¹LàMÎ;,b@èÝÏP²übL͈ý—•\8ªþeƒ4¾aÀªÛæu’Å7ö@ i„òXÔ&¹WVÁÝ3Q!û¸d–ò]^ôdJª +%Ýf'ÛŒ?sªWº'\ˆ=qˆëvþŽô4° l&(«AÂzQ ±rbQtc8M¥%­8DcAÙÞÝ!à/Voÿ0Çßú•W/.RÏÜ‘ÿ<þCzÎlîõÛµÿüË/_xË#7߲▥K—gø_yÏ«_Uø(à·rÄ2£ HwÛO 6È÷å•ÀmæŠôÀ&²å:¨ei1/Ì8„?(_Ä­|[¢>u •ˆÐ®ÁÈ}“œóÅíâìš/G”†Jø%¶f?ãÆû͈@®‹l l/Q)+¢4í±Vùm-¬ç:Ðæ ­e##:^¶g7REü×®íß+ðŸ­[0éäõ’‰þ`îeóõÜpã²¥·|{E‘–gÿz_ü;ݯ#Ãá·EYånxÝÀ@îK“^¢RIOÿºŸ ‚ýòîÞ-ÝÙD‘/ÅEEãò¼¾†_Á”ù§,¹b#Œ¢HË5*ñÜæal“€M§¬%õo’¯Ô~º€ ¸è8¶¢6U¹ZÒ Cl®4vAÌÁÅ\¤5%ž,؆Ëñ@b6¤Ê»wï¦@ögÇ þûî»¶Ç(€…眂€Oã¸÷?{úô©×Þt‹A}‘zWôö®øuB„ žfAÍ8‹|Q92Ü»/X3°DÚKž5”¦Y°„nB^g¦ñQAò£#G"ñLZY?y&ô ¤ïÔúŽHÛ)j)6!‚îšëfz \ˆ B cœ« šýEÄR[äUl$Òã›Í;°ËB*Q.˜5ª ¢;‰þ|ôÁÿݳ‡xÙÿÏo°øðfçÌ~ ñ?z&Aÿe“Îï6óæ8õöö¾;ˆò±•…ŠÏf ܳüPÀÌ„{JGgÕ–D^eDIèÔ½×xÔ–²¾S°äæ‚,—`QP><,©$)Æ¡ÑYš„HÉÆÅ˜Dä!oë^ÆÄwMpáfy(rÔfœV˜¯(…"Îbå ñP9¸´1ÝÓþO˜­¿úôÓ>ÚûÁz%P8ï§í[Ð4cG´˜ä¥N¸bÇtÐgø+Ë„ܤp¡“ É%Æâ<ÒoŠùK°ô,ƒ"Õbܸº°|ÄŠÖö  cf=ŒJ:^â£$>‡î¦à™H05ø„:Ê…â5Oìdy¢å‘3Uï?bŠ,v Ã’‹™GYIª~øªùÑÈdß'!Ø÷ñÞ=æ ÐÎõ…´î† úæð¬S° hSGXÌšÔ˜?R\]7üŠåù¢ ¬zô·{'8‡þ)9˜Ë?ª)ˆ7à9! › ÛVS(©dá9Çx¡$Ç¿ptÔ4)‡Ëüu¥änjesdÄ¢b´Á (ôá]«¼‘HÛñsh)b“F÷ úayú‘_²‚M#Á¸d¬ØxEæ>€Qq‹:œKí¶ªä‡ ­#ÿâ·[ z˜MÀþ>(Ìÿ_øÏWæ1À…“Ïþ6M2ríí'·BŽXI8ï_ †^Ô_丿_r Ó/$û¼ ¿‰Öž ž¼ÂCoLE„  ö5yŽ;á>~1¶ìñð%œÿ "7PÌ\ªË»Ÿ…R âê…ë­@/†œNƒË`@E^-GÉÈ£ÜC3‚Y"Eü©,,†´ÒlÿžŒßüñ¥"ýþ•7ßûÈ(€ûùÐ3Ûwüõÿ},+Þv國Zþ‰þ“Ô^èž0~ÂÙuC2üçtÌ(¿|ùr‚ÿÞ•ëŸ;”øE·K,^Ô\Ie Û¡Þ %Ý`‰]#ƒ‘u¸¶³À‹‚W(ŽÃûü¤8&s ‡KH5- -mJ@ž¼ß΀°;—¢Ý;H6Ñøb"dòu#¯¬¼Ùêa¾¯6[N™D%ærh…Ç-þâ3ŒgÞÅkÐcYÞáŠþô÷/…ôòëføÿ䓽WLŸ>o햵롸ûšü=€œÆÞðO¤šÎÙs/ØZ_ÕP[•¥ê ÿM3Lø¿wy¾ï‡ñïSãUòÒþ›üëØ‰\8ähð—„ÈdÕc(¢ÚæùµF2†BuM?#–wí*‰Fˆ'N)³8E IM‰ÀÔ©¼#/â…ÆÉR«ò ¶„mIw °ÓðŽNÉ‹ ˆÈjÈ}‚å:Ô%Ry²ZüÓ­騡N‚Ïâ¹bO!ÈÂúØŸ¬-ñÏHúæóÿÀ‹/¾øÂÃÏÿyNŽÿîéÓ»f,¾÷žuëÊ7¦Oš¹`Áð!§§JT× 诮jév»ÿ½áâåÊUÿý¨XNØ„'Xü©wNêf]²ùêA£«4Ø>'3‚Ê£æèïHZa“6§ÉâS´ºÈÞ‘ŽÓŠ[ßXÿÑÏ‚QÅñ+Ckª \FdŠ5d¡1Ìdªß4ËñM’Ìä–Xÿ”/®ýç«ÿ/ncñ?mJ¦²4mÁ³»&Lwf{KS}uuñοÿ?𯪺x©ú-'ü\¦ÈrZ».âFl½E¹)O]ÑžxbÏ)k°a“P×”‘5WRƒøƒ–*íEFú=HàƒôÆFFÔjJŽÂ”µ.}7-@×T/Hh7&Å»–{}ˆ=øþý}f“Ž^D«LîæoŸu8÷¤]?Z&%®‚Á~ŠÝOõ±}o¼ À³¼ýŸb4@׬I—dæ¿­¥¥¥¹©¡±¡î”Ù ÿ†ýËÃú¥Áÿ÷÷ü×WÊaŒp~¤ÆëSÄIk²õ¾È|íaÇmˆëÜP<¹Ð¢} >"; mÀ ÒRîVÂëJ°ºS)k°"ì.0ÐöS ¥„0šŸI?üÈ:«"ªA®"µO‰×‹å}‚ù*Ñ3Zk¸¦×À|ðJP5à¢1b×Zzã¸ÔŸ¿õû€ÿßöûïÀ¤ —L8X‹MÍu§î1@ÿš‘—Þdà¿jÍÝw®ZÞ›ûÿÅÊ?KM”ãÚ™~=ÂÆ˜Á ‚¡’¤—"‘Δ}+7ê'±¶>VûEùÜ:K‚’7d)MṩWm©3:âüÁZ‘ëHÊ ?ø1›:Q‚z…oD¨§UÖ…€)~t0†ÿXkèf|0fZA*;&Šž“!µò‡?ÛþrŽýBüî¾K!þ 0yâ„K.hmñ `¯ùü5@ñQÝqÞUè—¯X¹nËÖÍ÷¯^½rU¯ÃÿS‡“,©€•ô²1K¬÷?­m«®¸ªJŽá£Ço:Ü…•é.M }î#ì’NL¿ՊpßSÑ ©xòG´X¸‹¶ÇX‡¿Tû[’¸Rùw-pGÈ*-¶F*w̬20)ôëÓQxó†% ³€ŒðSh¤B¤æoðüwÍ kê”:'N8¿Ãã¿¥iè)  `´@MËéSoÉÏýönݶmÛÖ}}Þ·Êâÿc•(àO—9¡åïä*²¾òr&œ*x©4FӮ쀱J™¬SqaÇPYuW ö£—90€‹Ò°ó•Òø«Ä 2‚Q%Û|ÈØ[Q™³¶ Öe7ÂL"ÈlÈ0óg¨•SŽx©È¥Pä6gÔ€êèCø²b]ü@­ñHĶÙ$™Ï¸û ô¿™cÿw¿yæ>ÿxÏÌnŠÿLŒi÷æÿÔ:™¨©©.ìÃÈóæ ÿ;6m+ÒÃÛ¶¬½ÝìýÝödý™èc0HWDŽcsÓ.Æ\M>*BeÒ5D÷c‹òʽ@BÙýyñ¹^Ô}Tdp©8þ%¼Š­GzDbNGK½r2fÿ`5*ó D´ÈØ£zKÔ% 4»ãj2§\lÌæZþâ{ÿÀ—'$¢²®ò)¾ß¨ÐTÄLÌIá2Ú¿9 ”¥Ç!PNbž'9ôFæûÿ¸¯ïáÇ6ß}ëÂL`üOé¼Ðb?ÿ¿œB ¦±¥¦fhUuýðQg\—ãë6›ÞòÀjƒÿoU4UxDÛ1ýø%Þ¢øªht4“d’“P-È£kâ cªÛDË%\b’‚Ṁ½Ê|¯Ä™=C¿T_$Z£ì ŽDð›àø4©ÃS©ž„”‘€‹5’Ñ]eð£/Ñ<´‘B”¦Žq%-æ¦JKZ/…§RAãÅ·$ R>SÒã‡;þõžW^úÝ£ëî[wÿºûî½}É þŸ29ûrñeìðàÿ7·4ÖVŸÂƒÀCjZG´475¶Žuúœ+–ß±y›Oïêí]µúΟ½¶ûƒC‰–·Z8¢Âç¬@©DÐW—£9~KH(+¡µf‘tg©h¦ˆ/ÖÄE¬ì‚qNA± ÛXq|‚…keüsV".0òàCB´Sƒ[lƒBitkQ YFºmŽi5t-Yê …ùØÉs›°–Ž‚w} BÌô±Ã‡¹ó•ß=²î¾<­]³úªËŒýŸ<­»kj®&O<»£Ù¢¿¾±¾ñd~ï»$Õ¶ >|äÈ‘£FMºñæewnÉ‘ÿ½Ç¶}wÛ¶-ÞÑ»jý¿þõýîÝw"æÿ“y¾xÙ !ôJt U ßÄîñ©šA˜ª¿´á; .:¸Œ S‚È-J–¦«ì±èˆ…™6ŠUd%ˆ–‘p¥+Ñ8é$[k)­…S2|Ï1¨_6qm2¨‹tƒÊ6šÃ¤±•Pü{0!¢ Oj€]Ì“·©£‘}¬ÿðá/öüñÇ™ýÏTÀÚµkïX2ÓøýÝYêêš6uò„óG4  ¹øŸSÈRUóˆQ£FuÚ¹W^wõЇsü¿ðï/¿üücÛ¶ÞwûOmßûa–öîý <î,)5-†ñÃm6­Äþ‰ BˆÒ=åµOˆäçµËO»k׊ݶ)Þªalô,õò´>$“2^¡¸ƒ•±vËRmu@L£ TDUÔ)õ08øÃöQ¤ò8°Êe¤AAÅçj˜ÕyÃ…Ú†´q¤pŒlOu&ÄûØI:,'`™È2`³0Eò†§!Y¦Â›*ê,v‡÷Ö¨ªÅ:’åô4 ÏA¥èÐ6T}:‰h¬2KÙ( #ÂPÔõ º4A!GÞÔñî—9~ä÷¯ß_â}Éën¿eå¥ÿóç|erÿI#…ÿj à¬9+®¼§Œÿû÷ºôlÿ–ûö½çV>8üóNU‡©Ötç ƒjÈžzYyˆ¨8ŒyÞr4sCGž8D@ Ôh,òìCŸ¶áí/¢±-%ãPÄŠþàe+Þ&Y Ë g‹N$7­˜ãE:zø… ÿënºeõš5«´4ï¼ &N˜0~Äð?jìÔç.ºüŠ› ÷ß×ðÿBï–þKþ÷>ùøè‘O¾P<€ã_…E- U ó*ÖõIO•Bœ‰/dYc–´ßµÃ˶èIµÿë-÷Ç0qЏX͹ùÞð¼±­x-z©Ê­’’¤\u@‹¯@ZYw*¦WeØzŽ ÐúÕBsü‡ï¦Aôª FÏÇ4i†i‘kÝ2‹1µ±NÙLr£ë‰¯lPÝFÊÿñ/Žýôùÿ=ß»|éò«®¹r%€K.<µyÂ„ææ‘Ãÿ¨¦i³Ú—tÝQÜþëßð¿÷ï·ÞÿÜ{ùä°¶ñÅ Â;ÔðVaüÁä°T¢)™B¡¨9d&cø$ò‡’":Öê& *F›·àb¸À£çLM0.&‡¼='í+A7V$í©e\yYÈØÒň»Iç ® AëæBˆ:(JasÒ7Ì[¸ºzuJÚ ʘ$þÄýääȡʄ„' çðÀ›¿ûå½ÿë®]ÒÕÙÕÕÙJñ?ÿ¢iÍyAÿ?jÔø³Z[—®/ýÄÿ3}[Ÿx-Çÿ‘Jb#;æX.ªþŒ"ËÇþø~°—¡8Q]wÓ81ÎX‚G‰ЊtÊ3¼ÂÌ”5¯Õ„zÄ!AwUI+%¢x*b'QÚ9‹/HÞ®*õiUòjÙÒùÈPy$èDrB’XØ‹éFßLE73}ë"ÑÛ"ü?vèÀ7ölôáÿßuwia %€¹³ üÜü¿HS-X¼9þ™ÿ~[ï¿Îñÿa¢)Ý)+r”v!/Ûþ’ðIdNj„irc®!óZ eÎ|Rø·™è9 ššËØŒ´„±wÖ‡éD#’“Œ¨˜ÎúkÈãƒx2µ‡‚´Šç&šy£x(7ønE%’ámƧíÊèôq Q}]…V>À` î¨]M pÒ†Ž”Uïæøa“÷ÿ×—øïXHçÿ-ó¿>cÄñ?©¥åª yøß×·#âÏÃ}Û^ø½Ÿ`èצÄhˆFÔbdFV—¨ÈX¾{*v Í_^¢¾¨n$YÐN¯†þ‰;̬UŸC)Qáß³fìn0`Ï‹€C8Ø-ï.j·:™°õdhçË%‚LfäÎ5ü¯“¸% m&î,Iɤ¼P~ÈŒ\çuV©i…\pË&Þ—~âØñã8ð»ç6Þåæÿ«WäÑg[ÿki™szŒIü7-X¸ªpÿ½ý?Šøßû“¾¾ÝÅÀ§@O®ãÿ ‡g½jéì {yÆÏÚÕÝ0N&äH»¶æ<XÑ9¸Œ¬ÆMP«"a&„zE¢KÞå‡QY”óò—bVêÓ-/Ïñï«„[æ,i°Z©°¨“K±ˆ^;~®î·Y©Ê’q‘“Vн%Û-‡LaÉÖ7¦®ó¶u&.M Sic¹ÿÿSŽÿ6W7{znY–ÿã²ó "Ì¿äüŸL^´hMyû¿ï ‚ÿ§ópàœÞ¬Q0u~J.ØÄÈ^xT»³[ã·Ôk¾!áÿZ0.ò°JuÈfã?€RW ¹¨„fQåzUT&F.ý¤³SyÓ®8lÀzêÅÄbW÷Êkô†‡,šÅDõ6d°²T¹#RWS}‹%cý´æœ2ø¶2ÿ!;—‘©Tu$zS‘ '`¾ü_È<˜ãÿ¯9þ÷lr€z¾yþ·.ÀE“Gzpòe·U·ÿ~Lð¿çþ¾í¿*¶ÿý'Ò—´¹.ÇÃÒÛ&rwH–ó«Ö#d­HtŠJ©•5’ô_Jt-&û.$&æNz“M8åªÅ&mf‹¢@¬ê$Åã\‹'šK¶:oª‡åöP-T‘ 3!!­²,fÈÎp=™ß§)ä²Zºb]8>îðÿìÆ;ÿ¿ýÊÜÿ·/’øÿ挦ÆÿY‹:«åÿ>ÿÿ²¯¯ïÙbðv’ 7 ¼1ZpVC’i;×-ùcxx¯ Sb3=d€Q~’Ç4[)±°€¾¢â¤Ý©Y¬:¨ÁÿƒíÁ&ñÌCƒêDã¼u4©j¬Îl쉹cߣsœAͼŸã_I¶7zk æX>û?vì³=ð»grüWOÜöíÜÿ·-ðo™;³i„ãÿóZ¿µÑáÿŸKÏ¿gOþwGŽÿ_¾ûÇ÷?õ÷û¶mÛöOŸ9Åñ~H‹£Ž”r,ùB'z´‘Æjƒ£€"‹±JrY ª¼=&×Ôù ~óA¸Ñ¶’-D‘'¥ †À?•©æQ< Õ-r²<‰„Âè©»}xƒÌP>‘XzæéäHE5Òj)©©«&S—*+ [p½o ×*Bb¦šÁx›‚^)Ùˆ¨º*1ã)o•òox“¿ªß?"ª÷ê„IPÄ%7Èx•`D¬CPªéŒÍh`y]"áPø/H7nC±ávHI&*M;lÍG‡þï¯?í¶ÿø¿}%qÿ1øúÔ‘Zÿ;®©©yòìe«{þû‹T~<ôÆñ 5aÇdTÝ;1œYòÓî±'ÓzÝruë ­¢«ê¬ñBcpGK¶Ñ ´Éf ßquN6*÷ˆP: nlh üÙ Q!%UkøÒMøý?ô€ç'ô=¤°v®[•,Y?ES÷Œ{»DmÔç$E–˜Ll%3e}®– NZôß‚S5þmã“Co¾ñ«>ÿôO‰ÿöEÂù,ðÿ#àÿÇkjnjnž°øºûüû)<òº|FèØ^uÒ8EX™aˆa°è}<ƒ ¥¹UX¢x«æå$;ßübÙóÀþ%%V?ÐoÂþ¢[ÁbŠJFHlûÕù±ÇÊÎ…X±¥,ˆÈ6¬0Ûdˆf”!3ᩙĠFD¹^#ŽŸÕñ¼U”^õö')uN²'°¯hHÊp`¼-Ô˜²³;øé[¿{æÎžÿž;®›KüÏ¿pòˆÄÿS'5—éÌ®[¸ûwøïÏ?~‰w1‚w-Ó›ô€Š…/õ{«UÏ•K¿«q–—yÃDä{²ˆeå¼'x a‘Ô–"ÙPo´ ǃ‘shƒNTf…ÖQt\lh-ïBxBÙjݨ«Ô'H¶²vã}8ñ‰¡yž“[aIÁE,Še©à"À?¡A+ÕDWû­5bˆü.žÐ»ºC6À‘w~½‰àÝ*¹ù·šÿO‰õ¿ñçŸVÂòEWÞ…ð¿­øóè "?ÛH… Ð1;Ô\Üú2ÑË—â%b~ú]¹–¿Š bQùo¶”z"|8ZÕPÕëÉ´4á=èý’×Häî#+aT …O&g¦4Å»'ÍH–@4- 5eÞý7²ñØeBv,ûBXCTÄ] ;òª*Q€6ñ²õû)ÉUí´”b\O¬Ö=—øø¿¿úÁÿÚU­Ôõ{.˜=}æÿcÎ8¿|° éœŽëËwÿèwþ?ç€ÇåoDº%“DÙÛ|Õ‡äqó‹V¿ƒât§KÊ/ÄV$C‘7X‡á7üÆ„ÁR»³ª.&8•íסfLH‰öÀRáù÷°ð ño¸MªhV“”wz!‰-$"¶d½Çºh™° ñsº|=¡Á_ð$m2Q&ï襳+ÏøæJ7€êhxQˆ¸t •eëºñ8í… c®Òüy˜ÿ¯_¿vå¥ûEºxúøÿIçþMùf .½fCÀoµ àÿ±7N>Ùêz€RˆÆ¸y)ûÊצÌ c´iDÔnø¡¬QIâËÈúÑo!2­Ê{# ؤä-[²jr†•ëm¨j‹à=êi¨)Ádz1/’˜³<”pýIíTršÐã^^–ï˜0ȈR-Ø‹¨ÈÑóïTEŒìíl 9 4Iš m—Žî¹{}Hw|;âŸÀÜ#àÿ'9kJÿ_´üÖ-}„Ê×€ú´ã•´ÜEQSe=•;cT´ËckAîØqA„±\Å:' ?ôlS ”ÕçÁR(¨A;Q6nòB Kc’‘#3Ìêã–6Ô´–û_´‚›>ÁæL?`0\-h·®Võ‡—øS†u ,³5„¦6¸Å^©Ptƒ©ÄlPȧðo}U!½³)¼ý³çŽ«Àô¿¥eÞMÍÃþà±3ÏPNÿç­ìÙ*ðüÿö= С#eì\P†äšå fÀ9xÿqÉ1j².i:?BÖÎüœ|Æ_°bÃ&Œ²Œž¶$ü³ f\,ѯHI¾ƒ'öüi>`‘ç)=ÔÜá£WÃýA–j †´,†I„5¥Q2ZR“ãW*¼kÿÿ÷õ=ën»cík×õ¬YñO¾Í?»i–ÿO=³\ÿ?§}å†bÚ_EþÂý÷÷¿r”w(xwJ=ÖI¯ŠïdEæ'&Dg„Æ£E3)éCÙ»­"@¾V‘Iš^µ]À/ÿ ÌáífdRwË„ô›º;0ì}æêy'ß(aM ¤¾•f5¡"ÐÔ³XaC6úœ¬=öÄÏ…º†bY¹™1*3¥rZ»gmYf <ÖQ5èÛ¥•ïœ$·_I|aÃÝw¯¹é¦›nþþ­ß¹lAˆü)þωí¿c¦ðŸtA÷·î­ð¦ÿÿ÷?Cþg]¶N»Ð§“ñg*1(.´¬ýʧ‘Þ 4åÚJ½F+ #ïxlùô[äHN«€p(ׄ 3ØÃOû•‡ü€ì.º•¼%;Æ* =D7&júqRtàÚ¤Ep•Z ¶±c^$|Æ@í‹ÙØ¢«õbJvJ­•Èz‘¦y†ŠK<¿{ó²ŽzB@`>ylë¦5«W¯¾ñƿ۶`Á¥Åóÿ ÊÿgŒÈöÿq%þg/»~s¹êÂÿþþ_ü4\ʬ¨ß ˆ#ì”B»:Ç£|"øoÉPÔ:á%µ: Õ5,È$5Z؇XËãgc>ÿ1˜Ð?r²Ãû0”@@‡ÔÙ!¹) Ž\²LILƒ +M‡”wW!ê™új\ªðK%@æ@ÇÉNz.pè7æÄÓ½%þóôÝÎÅmí—µ.ZH´Ìjn=üø[Àäo.[»EàŸÀÿþ½ÿ!5aÃ¥ú¨ÐÐPÆ/yol26œâÝùÊO 'cË3ÒÆÄ @H*%mp‡ÀìÊw$ñ® “…Gñt Ëg‰zDÇ3g¢ã° ŒSp±ñyþˆCý˜ƒ?—zK¶ÆI¸MÅ{$§Ï g´YãØvlh¥s7Èæb5•˜`t µxTäÖ4\¬—lÊ«òÇçÔWc¹½+m­€”2N÷dþù‘5$÷ Áÿ7þWÿ}·–ø¿ñê®Î*ut´uä©í²œZÛÛçL‘ÇFçø?wñòë«I‰ÿò?‚ÿm?ûX=êûÁž”9‰µ"+è¢Z£hŽuã#+F«4d2Ô6Zþmøò²/h¾güá:w5Äf^Lgæ!‡;x[·&ƒøI€VªV¿7 MAâ2_#)^Š!ïí…1$œ~ô¡–¹H¤þcŸðÈ®Ç%ã­;Õ™ëñ΀—Lr ù/.þ¿qe§'ŸÚÛ·uv´ž?n$ð?¦©y¬ֶ՛6Þ»ú»÷yÿßGñÿà@#O…œdžkÑß .­ƒ¨˜°aEDê:#6¿õ4lÉàÌàT¸Ê,ó&èÏõ¥cºE@e‡¬\„Œñ5Ã%o*Ò–„è¤u:8âþ@¿à%>ÅžN.›ÿÕ§ªûleSÔprŒ Á!òÃy‹3Z§s#¬5¨SÄý›ÆàÝtÛM«oÊñM—Ä ´çó¹“Gÿc›››ŠŸþ¹aU[Kë ·Þ»á¾ÞÞ­[·ø÷?ñ‡Á†úucÁªÓܦåÚˆ•Æ¡ò¨<¤¹¹2 S`úåWˆ‡òYÚ‚íÜÒ#¯¨ÆÅõXÚ!Ñ|8ûíQÅ©”°¾!j±RT^!pþÐÒ@W§¿-ì2|¤i)jõã>Ö·-í%¨_ Ú×JZãq “âXî,î0xÁË—•Z°Å‹øIü¹ðÊæµ7¯Y×sÛ­«ñ_‘@ˤ‘Àÿøæææ)_ùæü––üÿÅ˯¸æ¦{6mÙ´iûŽêÙŸ|öÿÔ›ƒ¹û— øo*ÿ™yqõaG×’%˯¸¡çÖ뮽îº;ر=ÇÿÃûþÚˆøçúW¬úÂiÂH"¥À3¤AwÆ€1ÐñqÒò!“åVF¹(…³Ø6ÚUÎÍOÆŒX­Ä¯ 7–éCt)ºÆTöšJ²,>ÌJ³EN© nëpštZ|‘Ð;ÎW£ Ã4D˜™à©ÌÛå3)IšÆ¿Ûrˆ¹Pÿ_Xø»½[¶+p?¸£?Çÿ´€ÿØâþÿÄsæVwÛrü/éZrå’÷'<þògþ¡ÛˆûLôÞÎÕóx~¢¶Ø7ئ¬Sim2PGCÊÊ,¤¶$\+ˆâè¼Á3xƒ…5§lØûŸ†A\š‘YéÀèÃ7tP`p{S¬FDG½½ÐQuºz`›þв 6)ŒýZ–HCÙž&ÿt€Ü÷ÁüÖª¯zÞÃ#cŽïr÷Þ77Ç?¤€EGÿ_*ñþ¼ ÿKHêzcðÈá—^;Ú`øgš†÷5 Æü‰h ,È×X¶ Ʋã˜À1 ‰Hz@ޤ 6Ù,_.“¹ªÆ¢T>À÷æÕ¼—Tª\\M¹ )BVÀž", «‡ÏŸÏT-Q¥Tµ"cKi9ø«ûå«»¡‡°áQU"5ñìbœÃ¬Íó/Œý¦>)á$ö¤4)¿;22'NäóëCaïÍ Kþ¿ýÌÀS¹ÿï?]RÅÿ—uðçÿ^ûøÙã_|Ú¨Á? ½ƒ¬LÍZ2’Â’Ü/ùhÌJ‡%¶L‘)‹÷öÜ«p´Ò0èkÊ„äð•Úx¯$#rùïºãIHj=6b¹9‚$Ô.ŸÀÃühß#~³C?ª¬Ÿ6ËШD[‘wO­6 —õˬ•F7® ü«i‹èDU\W§f}ùùo¿öúoßþÙ6ïÿÿ.ÿw´ÍîçÿÆ4+ñ?ýó+ü·.a@×’«}ï“?$ðøŸþkò–<•àŸéÅ}°HY€wû¥| &ëŒæh‰4*Ös5ÿÉ~*¾×ÎpØê—¨ú­ëwùÑK –´PxDt†ê=†”nC'i'ªóåä%Ã:Þpãh²L-ë©*õ‹7i$=€ü 0‘bWm#QŸr<©ÉmÊ@1×Qâ’É”ÛÕ¿¿60°ï™G]°ù†epÐ~ÙeçŸrʘñÍ%ü›OŸíðßV9þÈÝ—oÇÎÝϽÝï+2%Ô>ÞQý«°O>VoHla^Ž—*‹]S¸FGÓȦuÙ0Ŭz­z2ÃEX)oД¯JD‚ œódýÖíQEQϯrþÈRà@ŠFÛÍ2u•áTfä‰â¯ÿyRõÖ\Õ¸DƒsÕÈÓ>w¨3Ñžv6Sz¡\ñb5gÊöÿí•¶½ÂÿÖ,ïZºòªÂá—^?OÅßÎöùómXï6•Kÿþg~£šþ/dóÿ2u_½þ¡];_òïÊ‹´Í{$ÇødðŸ¥_õKݯ08䬬8Ð÷C®¸35ã:½Šk“CÛ`v(åÞ]ËÆ4 n†Jƒã]iɪ9“W «¼Xíê¤Åb)mŠ6PJφä fJ frÈ¡àKÑà'Èo@K¡3˜Š“ ™ƒ?#7}è>@!Ì[ûþéa7¸ûÊ«Vß{×ÊŽ2u¶·µÿ·ÏûÚÌYçœ=e8Ÿ]9ÿœf|cÎÅ_ýʼ–âü«¯ÝÝ+W÷íÚõYùºLÿ#øgØT1ÞWü§˜>î0ÀBXÜ «ñÒ&äÏGÈô Tô…¯šËÀ+•`Íh|ÄTY¢rP‰î§‚fù´-ÆOî4…·ÊNU_å¶?ÑUÚªô½©h[ª1ÖðÕ4d iUÀ¢áik\UµTÓ }LIh29ÌP2uîø§ï¼òòÀ‹;·UøßzGÏæ­[®Ï1ß‘ÿ—ä©mÞY§Ÿ–§iÃúÀ8‡ÿæSgÍšÒ<å¼ .Qþ¿»{Ùßö>µû(y]iPh–¾ñfý b ÿž]®Ü놳Æðwj´èHA›ŠÜ+âv…«|ŒÂÌž…FßûŠ= ~tH4‚»$ת9JhJÉlhcDÝ'cÏñJú ¬€0FÀG’/Ä9¤ÊšdCn2Àêæ_RÐ9nSqh -êì¼úTuJˆÁ?þðõ=:üÛ¶ÜÚUíUš?³€ÿiÓ'ç ÀXçþ››ŠŸij>õË]Ñó;øw/]¹ö©}1øw0=V=§þ*ø)¨°XEµ@%áÆ ­T}Šå—›ø½”°â0Ãɯꢒ¡j+{À¬ü¹'–”•¦< ¯^ö›ƒžN\Ñ•J‘‡°ìØ™Ê>dë(©Aã ÿ™ÿ‰n$:ô+hTÙÜI+ ¤®Grž”¬Ž_0Ÿ|ôÑჯìù×O—ïm]»¢½Â\vþi§ÍÈÿ;mÂ0â?L\šx‘òþEZõØÿ`Ûˆ:  i‡ó2'5´øs’¤4Ú ë¦”üÙ–:±Oòz ´ôS½o@h‚Q•чÛa_gˆÌòõE‰jÒœ`*Ê»u=¶a9‡œÂ²ñURÈ¡D%’˜f¢µQA3¯Y¾5D7¼P†Æ0=Ô‘ ïè‘— ì?OØ»ÏÿòñáwÞ}}ÿÀKÏö¸góÿí_›QÓš‡óã9þ§Ïéê"Øwðïþöæ(þëÍÅwOìóÆ*–&P¹?ŒiK¯=!µŽ˜]IVãüä%Mä®DœM“üCaŸLêqD—Øô£tŒ2X7ÐM¤&/('Ö^šçˆbÈDy2?~,¬PEÐ{ žšê6¼aœ ú™Ÿý¸Ú×L¯cž&'??ò…yçÐÁ7÷ ì}`kïVÿM×vx(£€gÿü?.Tó€é º¤ï/Ò÷}pä ¡ð^EŸ CG<¨j.gÚ2øOVD SXb¾Ü”ªƒ¸Îf‰ 8áø³ ”4ZJC³/fûdRó Hn”oÂÏ]ÛIâTŠ­iÑ@eØlÈ÷2°è:ŒJÈrÛ®v)*‘w’äoYÿ‚'L$ÞQ‘yë‹ ƒ©ÁÃÕ…oƒG>k9tèÐ+ûÚB&×wËöË/_.¦OÞ7€só‡ÿsZUì_¤ŸÜõÓŸ¼7OÓØÊO¶mRj Íâ8¾ù2…Î0¡–?g!LÐ/!Ò¦œå±‹· áºpMá$'$ÖǸ eù*…?I7_Àe«Ò®Ýº`¸° ’ƒy6>L‚“µ† >\…wH®¨&‚j$£êYxþ‘|¼9i±ÎD°>LÊ;xähöo‡Þzm`àå'ñ¿ù{ö«Ô2sjáÿ‡uùoÔ¨1ãÇ})®œúõ.ˆÿËoÛµkç_?VÞä?åÝLÿÚ6Íð7A›,,ØâiDû4¢,жIK¼–Á¤†&ÍV«ÒCš¾•Á| æH¦âbƒ•€n*ûÖ—¢;ê&yiN¥Í8«`›F2­hòIø5bØ /®„“‡Ñâ‰b®Û çr„6’_€æÒo»,wü³£G¿õ?ž%øßºaYI Ï.ñ?}Âð¾pôè1ãÆ—û€&ä ‡ÿÝÝ7?žãàxÉ„%©AL*Ý•v]Zc2G!±ãÄ {É8ŽUm ‹¢äV#üq4÷ÙÈþ=9Ê7„Ò7ÅÇ¥{½:H7-¤*UýÑÄp‹dã8Ÿf¿!nh¿áò‡ ¿ÈG´pvƒÕ‘¼•:ÎÊ8ßS’3Rƒ¡õí¹œÆ™Àމ#|üØ‘ÃoìøïýÅÀ-¬íô åK/˜6­ÀÿÔa~à˜ÑcÆŒ›&N´¼º/†-ï;ï¤1i‰ÛQTΞºJ…ħª4q÷>ŽÝöQì–ØÎHÎÅñH³ªã™p’h–‡üD; Τ5$®ò¶Õ¦eÄàò$¿L'^~f{¯ ïK]øßV},ñŸ %:‡Pÿ,cw´“Ëza,Øë¯Èsú|IAWF´âd8 í"üƒ/–~U³GÖk¨°âÊZ¸ù˜Âï&ɨÌe|Ã|NÄ ©Žf2/[Ç çÝK`ýC‡ºv’I}?Ip¨bq1QÜÓd¢“jR;xÈ7´¬ KK«îX2Ÿ@¹(wÀš‡z:ö›ý»¨Vÿ{·n½6Þý+`ÑùS«Àôá| ˆ_=ºEnþ ,°rã®§üÑáÁø–sã^¹<#£ÊÚÍûÕþDƒâŸŒ4§xHEp?¨lŸ8È€ZCim=Ö›€ê ï+˜Þù_2©ô×ÖU•~.-™Ž=ãK§.—ßÀ’x x%(\ÌTCa‰H9bÍ2Çi¸¨òˆ–x8Ð-õ„~AÛY*ZTÆ€$gPôàœÒÓáýo¼û«G Àª­á)€¶yÕàÓ¦ç àÊâ%2yü_µñ©ŸþýÎ?E–€zçœ"XgJޢ崭Ð2ÿ17±jká1ƬbÞp*¿ÂÙ«××W–þQÝu-µ«“b.]*M*_«RäbÒÕ(´³,^e6 š ]]†ºø+òE$f«J2®òŠÆè$¡(bÜ’Þ\ÆÈZº¤è©n'Ì íNÓ¡ºdýá/ÙáŸ÷»€-×-i'P¤/Wø?m8$ÄÿtrðwE XqçS»v=ý‰Â#ðEò>rA“F^2‰²`ªnÅ|+PÀE…:÷/ÂK©0üÌH^'¢‰2Èí.[OEdŠÀ¦AL›Å—‰ªp†µÅiÀ²å•ÌojÉê¾—Í2ˆ|+Ä“ÃÎŽ}ft!4‡Íª1¢×¥Ï‰oQM4Äæ2:H’öêÀ .*b±ÿȲ—ÞHÂȯ ¾ùpþrð–e‘ª‡€Ïp0uøîæþ¿ &\Ü¥ü¿'€eßß¹{÷Ó¯ãÚIrn SJAjq°‘Ñ1ø·–X¨yèU¯l q¥ý¨Ê²¸GŽçð^!éA¬|Ѩ±R6¾‹Â÷’ÈEr†å89¬£'9\wÒ¹ãT4¶cY~N!Œ¦Bo¬ÎÇT7Ò?Ì ‚{˜ä¢ך³¾®di—Tkö¤hQXÏJð!:ùéSý½}Û‹Wܹ¼Z÷‹øoûªÃÿðm=z츱4/Lã¿ûÞç÷þãî§ßäcú†í•‹†4§˜üUWnFtLk`,çâR-ÏêÀ‘»‚Y3ëD¬1yÁñC¥¾ùcÕˆÕê©) &¬@´#S:ž*ƒuˆG â}¯o=zžÆ1dú£ã {œ°7À”Ds„NQß¹ãÉÕ œ7‰¹xÄ­àóê{`×ãÅÀªŽHå£@ófž6ÝM†çA SÆOœ2íÔ ãÇŽž¸Â¿|Èòµ/ýfàùŸÕ}©î°–K¢ò‰ çØü:.GÙ §4Zl ŠÀ±T·€ÌhÜ({mkßLW¡}Ô©ªé)è•gåRˆ tQ€ ($òV”,BPc È'ìbæ¯NÕ$RBœU™€Š3Á8ì^š¢+ª¹ÈÈ÷`ZÕ‘¡óÿú&”ô6–¤é~ƒÄ’¢JUzlØ{5ÍßþäK?úâþ=½«:ÚÚ*(~´kÙåm³<þ§ Ëo›Rn*œ6¥iì™íiü/]óüþß¼²ïƒô“tuP‰cW⑜àxif|l]YR'oXÀ½62êNµduIO¯Åç(JÍ$!ÏÅŽ±0Ú×!qåÛ.ÀÞ ›QFB’eŒƒ”ÅÊßw‡L+Ö|’wÒE«šÔ1aá@¹öÔÅho ý²»UWÖ쿽ºÑ·&&hxáª!½œþ±}ÿòꫯ½öê«/þbÇí+º;–}ûêeK—,ûÖÕK/˜ág'ó ÿäÕixœ¥] ŒUÕ¹&11fB†L† @f2L˜É™!€” ™‘"¹(O1 03<P)Ê@ÕÚj«¬¯ZZkuäí0øÂ{½ZDk©bëã‚¶J¡Uð0g¯ÜýXÿµö9”¥œ9{¯×¿Öú¿ïÿ×cïÓ£GžÐ·2 ú4LŸ%†k¢0ç®÷ïß·¿ ]€ßÙ¥â ÌÜ`lšGÙ|Bý®@âîZ™;IML tG)z[.Ckeqbgx2*Tbu*œC¬4§HˤD¼],.¥”иŠÀ×Q„ à(³Î°9UV*QVš ª'GKJ€ÊNZ‡<”'T.’E§QJáFÑ: x@‘–‰­ˆãÿ¶þÅ÷ß>ý÷öýØûè+VßzÇË[š[.š?v`¥ ½ò;_(íYZaK«i˜&ã?&€k—o{3Æÿi ݉°gP'³žP$&r$ ¢4d aVÔ•.R®X:0’<¤ï•€5ª‰Œ#-©fRRƒ±<Ÿ©,ù$¥Jîfá_ÕB k(äR?þm^‘Ö¡ÜèZp®Ë àÛ¸]éE €x°å{ˆ¯“ܶ`Låâ°§í Ls\ÛP2ŠkÆp X‰K(HwfëÆOþ÷í1Doíùéš[o¹³}ÑÂÖE‹6¤øp[Qv¾ø/+`á_9èò™³fÎôÀª þ?ƒ¤Ÿ"O xC(j´#@ÊÄ?þksŠD,ö2ÊŽ…³b8ˆè’®©€ð ´~bG‰”ŒÌ¥‚Êi“êÄ à5' "`æ ÅK}cë ¤èFÂ]!4àÄŠŽ:LçcV‘­q@~ÅcMŒò(”<ƒÝ…ÌxÌüÒŠA/)¼üÀÿO‚ÿôÿ]Ë—_Ó‹Eðonª2€­èwÑy⿤„ŠñÓ®¾úЉ3D˜{ßûâðæiÖ=Ô@dyB¨Ç<ä‹ ôOFÍàÍPtvÐe)RH¢KA2AO¹Ùs • Åy 11±M!«B 3{Ò`Ž˜„‹œDl*ôôGÈ’†^A!¥è,N@äc ɩԋH±>L)>‰¨KÈäpq駎̵b– 'Ü<øØúW¶¼mÂ/ܰtù²¶¶%\7ØA¶ø|€~ÿucG×VÖMø¯Ü ¸fñ–ÿû¾òõkë&™Ù±,hÃÄà¯Ã?-Ã"Ñ\ NÔP´'¤sWWLRÛVŠê|«‹”F4g@6$7˜¢br„"%ježŽá$ý·X9Aâ|ˆüÅêŠ|ވΚ1ÁŽ@{cü¨,rr¹2Ì¿ßu°¨0ÄYÜ$ͦÚ#’ñ½ Žbò;_?»q߆]€ž\¶´mé’¶(L¤áZQQÙç‚óÄY%«ª‡Œlš2#"€x2`y`ÎÝ‘ó¿oßþ}Ÿ0Éå…5ÜO ^‚(É$ñFZ j(i • ô0½ïW/Ù²e™*›œSPñó€" ¿¶X^a4.ÉId:2ÉŠ2bRµþ’‰K¨q¥àÚO¨M©I“fî¸6µ5¨Pæȶ±©…ÍÍeÔš¹êæ7IùñÿëΟ)åQ»DFæp´‹CõÑþ/7¯+YŒáà­1ö—.]Ú6­*E¼ÐûÂóÃÿEÿUƒj†¹bÚŒ3¦OŸa=Ù?\ÿúþ„²–)jû„>ÈÑogÕLªh(«„]ê°ð„¦p l¸0ƒ‰¼Ö6H¡U-[“×ÝPy=sá,s¶ÇYç4zÓ×l¡ËÁ·«Ý,Ÿ…ÆðÅ¡;Ä|²¶‡®×(HÝr+Ï:†3©”…–4œ·2º–H$„à/Q ƒ€f}ZFÐäž} ó@ŠÿÄøy‚þ¥K&Õ ¬¬H¬ÊËJŠÎǸ€à?b€Ê5Ã.»rêô©Ó¦M›>-"„æ¶¿°/±ÿû¥󵜨hl k[B¥?Áœ7ö˜ˆ‘ÁcD–¯Ý§ê«`]±cÛ <™½rÄ·0!Oó+䉌äu@܃,¢{]`,¶q>Ú‰Àø¸豿J&jÜ+Ž›¡f!Þ¬›ðÂ…% £ÂÐhÌX½$E»ïù:8e,º!‹ÊáژĽ¶qýÛ ¼~k„þˆ¦×š ÀبЯô||:H(`PÝ„©Ó“0ÀÌ™3f^Óü»?¤ø?‹º |§= ÀMf ¸q°l.u‘Y70N(eª9‰±R͇"£HZv¹t‚þ‚ì„dÝ +4Ä»hÈ– )€Ç€É.#ÈÉ “†`„w/þk&*/þA÷QIÜ ø't‹"0-·ÎhÛ Éfj DSc_éÕÈdÎ/ωìj SÒð³Žõo¾;ÿ‰ùûí_.Mfsìk(ï}ø/ð@|`fdûcˆ¨`ÆÌYsïúßtÐnÎ3»NÚ€@î¶p,Ñ)ˆG”ë7[¦KÚèÅ¿)ÓS™«Q±¤° Òò]ƬÛûN àðùiQz?>³œŠÈ—b¶P˜Ù5>¸‰Ä¥èÑÕÌ"âÆÐ5”ƒâöw“¥K_X-£;{öì¿ÿöÙÁý©pà­®u7,ÓøŸPM![Ñç<õaæ¿vøŒ›V­ZÕÞ¾ª}ÕÍ7G‡3ßžþâïD pൻâŦ aöº¢ä?ß(!l2hÌÌE7®JBDí1¬ZµrÅò_¼òî¡C‡>8tÈõS2”N³|dŠ1$tk¬á%Þ}Ã(A>¿vXëA‚ý9¸/‘£dmPÑ&•ÓPöðšR†¯ûð¢(c_iÅâ¾F–8)„£H™)%.cãÆÐƒ¤ôHË„ç­Qv^£è9<#Ò2SM«ä‚(þY ŒÂÿì™3g¾?‚ÿëݶ„¹CêÝ?@z ð?X(ÂEU]|ó*Úuˆ˜`ÕÍwu¼ñ^ć¾ùþ‹nÑ÷š–€Î¢Œ UÕÀlVK Oa¸W Æë ªÒZºç`S’™LæÙy4IÐþ¢ïôT¥MViaÑÐgRz í§ec% Ašg€.3C:²lž+H.“KF®4ÍÂWø“2{j-세 ™DÅAéˆÜ™³g¾?“„£ï|úåþÇ~¼|™ÃÿâÑ+Yè_c¹ø?8DŽTO¾qöµÐÞ~Çã{ªÎ¸'ŒA2+I TÀ¥KÅÏRÇ粓ÿô²›ì¡±ç"%õæÄ™ äë´Rñáîô^púÔÉSÿúËk{_}çïǽÕñèý+#ü/‹9 ­­mqS·ÿ•åeÅ=.,¯¨ìßó\ñ_‚ ª´˜;HØàGw<¸ó@LŸç¸ì ¹ 4†vµ&"¢A KUZ{˜9¥ŠæM2X¨˜ D˜CÚþâ  ¨ Ê×·rXGp$Ï/i¡¬MŠP'Ù¦Qg U„æà‹ðþÜY|7EÁôʜȂ™¤a„EsâA†¬ÀPJï$p!—2›QúΘ ¿Îˆç;}"ßõÜüæÔ¿ŽÚß¹uË–;woÿõÏo¿mõò¥Žf^2°²öRº Xѯ¤·› œC 5Mm7;@C__s˺®dà¯_¢ãpô»Ô8í ¶WÍæ.죀Ñ.Ó•n4œq Ø)×O·[+iFR âí±.¡ ·ŠmŠÎ„4ÐéëšHœ„”¤¤BÃø„‹%¯ÿ)”ôœé\…òp"°J®Ø'Jï*ôƒé— Å3È7Ùâ.9 å:ÃH¯hZsè¹Ën'íÈõÙú·ly¦£cóï7üúÁŸ¯0³ÿÿÍk†LlZC]€tQ°¢Ï9âÿ¤œšI` Á{»qÖÜvïö?ÆpèÓnÒé’í3¥Ž£rkmf»Mß„"aú/ß õò‰¸ÔåÜX8°´¤Ÿ4usÒ|á˜FŠÒ(Êaʆÿ„“¥Ž‘ä~u Lh5÷BÚÅÍLÒa%dÆÃiO+b]m `kC‚8VH„Á¥ ¥îQ¹Â¶ø¥D@bÝX7Ê–!£*r_O ŽïÞ’†g"xú©'¿þîUËÌo˜´xñ±Â, ™ œëi v vŽ[°s€t1 }Í­?{âïÇðáY ½t2ÏÓøœ-6âDÍ|E/¼>X6§v­Ü²€I¿‹ç~l‚›îKîðz'C.’nt’šˆÆ¤uí‘ed_À8¨äIÁ0í!…ãBþE‹èªW!.•‹Ì–2a*Ç(.q›P«- ÑÒ¤1£tì û¬ždk–éý˜Òs¹tù/p³~© Ãeg_ßjðŸ0À“›è§×[ü/iß0EØHBÿs|-H)ô’ÇŠ‡ÌXðo9`UûšÕk~úØ+ïF ðþëß‚ÑÏ8Æ…ï³ ‚Rø¶"¬¤S8 ÕK rB¡Èû&¥IP ‘† Y­ºÊÉCÓR«ÏÿJªÚ=Ö*ç ÁB¶n lùüvˆ¶ZP5JYÏ#¤ÁâÐ^r± 𰆆ÖFý)"9*Í•¨Œä2AòÜhzv\”/Ø@ÁÐ)6ø›®+ ¤ \˜>M¤k‹#€ˆ::6møÉ–’p5=ààÜŽ–hÔWXUU]U5°j`Ýôëo¶g€ì>@VGá–ûv¿õÞwïÚcߪäÇàèØ¤Ÿvþ3Ùäs–@qÙe`íá|žIš¹ øGÚ­l°ãjàÙîµÃŒ ôË-”i>ÎŒÕõÖœ‡’XƒÙ{ºÎaÒºõ[†´û¢HBÓxHáÒ0ÑkL$òŒTèzG^>è€*²™0ÿOÛ¡lU¶I´(3Ur3.©8[¦É‰ 3-ìûwrÀSOÜ·À¬åüWžÛ‹{EÀ¯Œ_üQS=xðàÚÚÚššAõ sVØ@·âÍm÷?õÚ®(ìï¶‚3ÇÆL/ÁQ§£Hº\;ÎJOÀ 4a¼Ýp£FÇB%ûLßðèšÀ8t“Àɧô%•HëÅPÐ\g ƒ•‹ñopJ¡z Û…êå ÅmaS¾#;˜,1øA6­'«(bLj~µÎt·`@¤âBÚ´OcNøê¹-˜"àɵ×CX8œ.ÜÙpnoî=(Bý4 þþ 2dÄÕËn²‡€ÛíD %€[îØ¸-&€½æm±yËÑ%<ÒÉ®ç‰M‹dd”•ÝA/•B=Afì¥íbEÔMÅ/b£oŠ‚¥á{Ò˜ZôÐMPb·­Ø}aËp$àÝ@+ È-†3 UJ?*Ý%×'bmêçA9LFaíf#ÍB@Qò‚ ¬¸|©`ð•©Ry6|GA  ·¦½qÁ#~xI¸Ò¡À¶0Þ&ññd½u*Ã$ ÂîƒÔˆ(`Ó½+ÚŒëçuÎåeµä㣨 õ—Nº®yñJãýÛMÀ˜Ú׬ݲ3&€õ î­È0ö é< z4¿P’|ÛŽ!JcIeb…Ñ ˆ+¾ @å %0Ú¦¼Í¢e9ý´çÎ4†‰'†‘ /Àâ‘Y9„™Ê¢Öï´„#ØTDzÝGð½wžù¡IoºW™™)N@»üÍD´('N:ðõ¡N^(Lz70Pš…‰Rƒ(ÊGˆRRŒÊÿúUFOÜ¿ÚÀ’ùƒ½@eyÁk€Å5C=¡nøè±ç-ÇVé€èãg[cüïÙ4yŸ±„Â#åÈn0¼S2…Ý(ô¯òF _²Â‰¸5¡³I«œÉJú Eü«€D8€9ÑütˆË20Í1H%Ãà ‚¹ÆQÁ`ÒVHõò;M¾uRe–M‘¸p£=ÿ¬ÉxÜÉ|Ýñ)Îhßð »¾ö—÷°”ä£Q–H„O»˜ýïèØôðMn°eD¿tPZ,)þ”ûà@]ýðË&/_™<Ôn­Ž?îÜ´sçÎgß=I[Iગv¥T‚0[„T8ÈýeÃÓÐô?ùÛ{îÙô³¶É—Nš<£eQscï"ŠKÊúWÄ>@EEyŸBŸª(ÔZWå «“Ã?·>ðÄÖí;::v¿ðþ7ÞAFçØxò÷¹N ÚÌÿŽ…$ ,”è*6›±ð¯ÙÀ¦©lÉYÂè#áÆQ`Åéoh†.Ãûhžò/sg’MèÚÍ3*ÓD†5½M®Ø«ÛM@þ _(ÏÓ—2aVE.›¦“\M·5ê1Bø-†\LÍûÁÀÐõºuÒð†¦ñC†Ô®>vôàŠŒÿžÅÅ%½ûFпoßÂÿôª*Ĩ‹?G.n_½fõšŸ<²eçÎm›×?þñ©\õÕ£C"åJzʶk-»a¿¢r]•€®‰èIþó`ªrÒhÇÖcÐ$ؼŽF^MwÍ;ÉP–˜’X›B3åVàY[ÞÀsÄ?úIK>жk$ÉИû‚1I/|D›ÕÌßè¥AÙ¼Q¾‰…?Õπ׫`Þ$är¹Àÿ÷Ž©±¡ºªb@Ÿ²žE„zö*í…²²²B·ÿ{ô(ÏÐöèÐÙ7µ¯YsûÃOïØ¹cóÃïþÀQ}AÑÝ)5Ï\ü(.Ìûu-WpÔJqÿ_œx±qRJ:s賜™\ æTYhü4ðvåËÝ€q@6cP`U®™î?áäþ(€|ŒX`î$Òk•ü=9¤'ºÊ¨–1‰H:Œ$“’Q)¹Oâiré7s“M„ ×mðqA÷ÁtÚÜWð_=h`Eß^Eœz•öN( ð·]Ðß{ÐQ@ü_ݘø@÷tlß±õÉ_?ԉ߆tƒXc*Ùú\:å–ުϾ'Éý³T6#MmGÄr±MC(PfºOЫÄrY•Ü­ …ªøÊ²€/\L±ÒMR“‹Qp7ØŽÂSßÀ 7¹hiiîŠö¤ N:f˜NaûÙÃC¦PéôV€ß{SÑî¶>&⦅Ô>ñ—ØèîÎþ÷?Nîr¯XüošVSSý—À?Âÿ€¾¥ÿ—$>@ïsx°4Ï)ãŒh¾íÖ»7lÛ¹ãÑ_ÝßñÑ÷@ðê:ÓD }vîŸužÀÝ”†)nmæ ]c÷àZŸýcO±ûÌ–ÂCvEÊ(ºä!m®Ì_TO!ãÐŽRBeF£©Ï¡`A®ZGF¬»Òl9Ç–ÖL*´…KfKõ¸-ÿ˜¹´¯††ä™(ßňlD ¥Z%Mx¼š#R*ô´ØÜ§G?úË‘w_}éÍCÿ>Û}úy³ôÿL[mM ÿšAƒª*ÊJz3üÇ¡W¯Ä(-ÿ=Š« "€KV¼û×?½¹ïùmßÿ›}§ì0Ø}^ Á6†Q+âΕ•;Ũ£¼½Yþ©’€òEÿÂNÙLþàQE#¬Ò]ž ,éi‚Œÿˆb ´Àߊ `Àè†qcFú  ¾¾þ’æÍ>|ØàÿÈgÝrÓâ ÊËDc¶c±J:•Yx/ýpeP O~^…¸$Pz5 L€ö¹jgPŒÂÒçÙè(ž*‹lânP=t =õ+×é»ÓMt ãL$BJNÆÕò¯"¸¶&"4eû¨¼i›¬Aðr%Énı³”l3¢+O\¼ý/50MAU‰Ì`¤"‘¨`0¡BÿÕµÇâwgç®ÛR ãîd``i^üÅKe…¾àž¥CÆM˜Ðp¹—bç¿yׇ‡ü9&ö™éj0Wì…÷9âõ'H( (D¯§&-Àu™ô¬Ð0§î­„©cÅ·¼Ls™¸RÜëÀí1ß}¯Î%1B˜÷àÁ|n†“î Þk¸§¨iJýô$›í ‘`¥ûN%dAŒExSYåêƒ .$–ŒŽmŸýýo­5YôG!"€øA€x`ý´Ôÿ/ÎO¥ç²XR7vBƬ ‚ÿȶŽ‚…ÿGŸ3e…_¸&b ™xpëŠ¸Ž‚ð/-á+¥‡a(LZq5b,Š`T‘Ѽ86uO8n\)9\1OaŸ½šv²¾\}*OÁô°X¶Š lRxÎô*Ιd"´Kú5€Jœ1„¡µÌä¡ á#´ÐJ´Gú•až¥HŒ«ˆsTYT¶ç¢@'÷jôw&øßÝ{Omzâºd <ÿ ¨¸wá+=ÊÇGàolœÐ8v”ìÔ ›ùü‡Ÿ>üÿw|€'fÌj»")TDÐÚbŒJ„nÒšïaV@Ñx[)ü{º…Nês+ú’.>]f î®<;"Áø›’3 å § ðkô…Ó/þ¸¼}Ë0¢CQJ‡,a‹C8±°Çjà“]ߦ›Â¶Éž·>€´´("Äeü&.›’¾"©¥Ig:N ƒ]HÔ…÷a:Ú4ÞÀ§Q³Ï¼klÿî4tîܲùñõÞ»âÒd÷¯¼Wþ€’˜ <0"D ãˆïÔ7þê½¶ð?üÚÆÏHCÀ)”§2S®ŸyÛOüYq9¸­ahˆFGÖ™ÎÁA$J¯#ø“Œq„]qöèB#§ò> S{ℬ²¤A“ºŠ40@~Fyî²Qè${Š,yÄud­˜sèÊ.˜uÜÆ,«Øz,ŸK<Ïe&ýgÿªÏ»vã°kÛú{×­]{÷”ÁÉ @Y~ ¨WYÁgŽoˆÑý×8îbÉü×ר8ïy ÿ#Ÿl߸és¢ȶVE7$.¦é6Ò1þQG f0ûÓëäÆó0/HHNÔÓéU.A vT͘V¾Æìr(j"=òy£~Åù´B¾²¨±$ø—&^â[ü\,.Æ](Òsî»°ij¯->S/áø‘i1×?i CÚ7¤E Œ¤ 4þÂocóóÍ›øÚصéþuQ¸;=PY’ÿñ  ¬-€^ý‡Nœüƒ¦þ±Ð0šyÉKÀ›þëƒÿŸØø»×EE@}H]Iƒ—Að!>a ‡'_ [iô ¬Þ’òè…¯æœÆ4uf„ýÀÐô×|kO8»ú toÔcó/"‰µT¦:Š8HîKNhƒ]„ñ/CÍ&—📠ӗî™B¤8ÜȤèW·V&V<¼à-æÛ[?–Tˆ©5ÿi—þqvoÛàÆÿU}òã¿g¼ï9À Ê«k/¾|ÊÜs§OnŠ]€ÆÆ±#øîß°ÑQÌÄw­IãÓÆGŸØ{s²4º`. ¬2‘%ç´ _©)#—;s€x‡e†Iò*0@Xà;ær"tC%%è™D<ý¯$!ˆ9ƒØA­ðì0ü%<ÄÉ%¥ùI ø÷2˜óê•{¤ÖŽsBgŒ«f æ ™t~Î] g¤nÍ@äºô†ùqWÞÔ®³è àÙ§ˆ `Q]uMô_Ei^ü§@6ü{W_rÙ˜±cgµ´´,˜;ãʦÈhÙ0jþGމÜÿÆ©w>ÿö /Ç'€þïù¿Ývð»ì9l‘n»òÁ†Ç:ÿò è ­êT9è¨Çÿt½•?x™vºq‚Q~Äûo#bÔ–Ês““"ù+¥?#„u‡=iÝs¾OH¥ª ,2ñï¢Ç4Ñ;Å÷WÁúÅÝôW"LCr²—¤±D$”gÿúâÛT|¾ åp}¤BÛG|7ùü ³lva¿™Ž{N46 t¥þHìggçŽßÞ»nÝ]“Ó3À•e™G€Ó @YY6þ+/Kà?nlÓ¬ù--­-Í Ì™:©iü¥ÃÁ@ݨññ´`BÓÕ-w¾uìøñão¼õîo:?< š: ¤ ’ ¤á’Rz3£(YljM(ÿ´ØwÔ8ÆŽ¿òšÍ-Í­Ì›=yâh³02²þéÎÀ•³Z=ðùñ8}ý$<¥(÷ãÍœÜ×nóè—Þ=úŒ<àšh–œCmB’"y¢A4BïWËAáŒlð߬^Õ™–a“´†DwðÇÕÑçÙ%q/J±ò@‹‹ ÿzðð\/kR“ÏmS ùrëF8ØŽ’‹ .ޝ¹!áôw§þü\ØþKN>»é—ëÖ®¸D¿hPŸâ|ø/Ê| Ø€KÆÁ0qz4ˆCë‚ëf]©  ~lCCÿ g6/\´ò@‚ÿãÇŽÁ‰ Ö7DÅýX%¸3AôPNioW§¢hÑ8²R\õy=ÊX#*¯ø] !j ”ÅÀ.²ÈÏ€¿ƒè¨yy ÖÅ€)3S°hlÊ—VhnŸŠ+­B6q €$ž :Û-J¼ÏÙHÑäbwe¿À0Š<óÝ׿ÐÕ…=€ÎÎmÖ®»eb­Æy~üg™ÿ’1ãpåµÉ µµ¹yî”  oHæþü§Ï_¸hѲßÿ3%€ãÿ¦ë¼´iÀ$ಃ½™…uOtx"Ri N‰cOb‘m£"pö`ü!ÌúX=¡Å&)g‘ì GmgüsF8‘¢Ã’‘ÚIJå?Ÿ™B,ö¡4híÐÍGp#ì£2$»2Ý„j’y Oï=ÜÆ†æÀ×ßÉÝñàßBðÝ·Iã¿Ó-t>uߺ;¦iüWWõë•—2ð_uÁ4 ˜8«9‚4 h]0sˆaCë.n˜†)1ü—¬xð£þ'N|kÅö­ ±VóÎ$é™ûiB,•9qÊò»s?Ê=xå£ìä[Nˆ×Êl3 ©è¹WT s[œÀƘ…<·¢™€2‘GйGEÜ]V‡æ+‘ ¡péySŽ)5ýŽÞvëY³àAÞ‹Àöv⋱Ídü˜t-“>õLplÂ^yt‚§„™}ïâ+™®Ry÷Õ‰ä”߯Äüf‰ sïv½-C‘Õ4nÓXé¦áôI•´<É9§©¼=¦qh®mK@/ý rfE(Ci¦$ÔÉ€{2öD²Ô†‚rª$=jA™”VFg‡ŠQrßð:âÆŸýîËWÓ';þ;¼gî`³0°O>øg9]r¹@MS¯k÷Z[æÍ˜Ô0&}.¸ñÓ›[.úÉó‡õ?qâdÆcëÉH±­bÈ­É»9ðïÞèÆkkšãù|%=È%o„LBæÆ?&P ó‡Y¢ æRðî´£Éi†yÈ1ýq¥HR°%J]tϬ¹¡t¤ÛuVRfJ“¯GUh:1õS@AŽüˆH>£#”ÍW”‡ñ¬x>ÝË@°žQ™’qÿÙ^Ox þQ† öAÍKŒ•y~púøËúõèA€¿]{ûˆó àäAàÿÿ=zTÅ(`lãUóÒÀ–æëf]™®ý]1}~ëÂÅ+îùØÂÿ_ß*èw †(cµÌæò˜ 74(&ó/3éxi%Ò\¸w. Ð/_aŽÊ ‰já†B£iaèñîU`r…á“ø^P¹¡É\rÌpsˆ¦¾æQá%â‚|\ÔÔÏæƒ*tDXWZhiŽt)£ÏÉê /†ÜPYÕÑ"Û»aImYZà飯tÑ @ÄÏn¾÷úÁþÕÕ8YøïÑ£¬úâ±”®¾¶%]h?çª+bhšyÿ7þü¡7 ü¿Jͳ¸Žë½f á×d1Â`>ÜS´Î`ƒÈ»Ñ•r]¯…ƒB¡R3ðoÝ_$ý (Dúáv˜ ¥äõkW›G×XÝ4šmÜKp rì.(Hb¬jSü8W, ÿúl¯{(»lîÒHŒ üóٔРµØd¤Å@_¼ø÷ä ž¨`„¬fÙS‰¤ìÓ§ã¥õî¯jüw: úÓºeµÿƒúçÿÙøïÑ£tàHJã'ÏiIñßÒ2oΔ¦¦ÿ­ ÛnÿÕúÇ¿ÐÖŸ.ò‹ðG–KrÞ´ù×È,ôúšýá*er&¿nÅÔ#–‚Âz ŒÍªØy&¡•¨d6]´Uî »p¶‰JÊR¥¸IB®±OžzÑ$±'vv? ñ$O¡s+„2]*&{U¤]*aõ)÷Ã8L1dEQfI§hÇÖàKóG†ø7ˆ¼ôaùEú…'>.êè‡_|úwÛN¾#áç£÷,fñ_Ÿ:óŸ„¢¾u£/ƒ àºx YlY0}ʤI³Z¯üåúõëŸýg<õÿº·Å³¢ÁšÌoˆ–•ó«‚AV³JFÏ•S ‘ ÞŠEiCO9•ÁiÍ‚(£x#³íc*ð64ûÀÞ3·b+ÝW@r­ôÙtÉ FðNˆ’X$z_Xêt䈥O½2ņâõ¢\€ˆD›[‹¬E"eØF ‰ø}FŠʸb«S6Jrõr_ÿó«¿wýâöStYpS€íübÙpƒþêꪾçÿ„jFÁyÀøI‰Ð’üß<÷ÚÙó.¹å‘ÿ^;qâÔYèKÊ*ë1MfŽÅ!¤Ë0;N‹NœzY ö½ÐGüøÒ-sdÒÔ9@D<üÃá¯77}µqݺ—^ŠÿËqxáÅçŸ}æ™Çn>gTuƒz•—w†²’ãDúÔzüOš1ëR¨®¹uéƒ+W®|dÕæý‡À¿Ý)ÀEh1ìÞ$‡Êd@J n•$¨{šÉ™ Mt’\á~“Zâ€i©¶%@q’y.Ÿ[jƒkV®r‰’ƒ¥«ˆ¦6ØÑ‘ÄVR¾ë1Ä{ãZ ò9u“ȉk“7ç$˜œ°ˆdÌê4€K¬Š8›¦á´Ž­Žñ;Ö&E³IéT³S£ IÓØâÄŨ#Áÿ¡o¶~ßúÊK6¼øÂskW=þèC¿kºóôÚÊA ðœ‡ÿ²Ÿ€þ$T ›ä4À/ŒHÕw4·$ðú½ÇTl;™Fæ+éjÆ~E;P=øÀß .3¦ˆJ*$i&¾‰¸PÀeF‡fp¶PÅYD—F4Hw1“¤3‰4ÚÁ¤äLƒ ‚W3@C;Ž2¶Â»Ì jSœÓ]¸±ÖG^‡ˆ¨áUkÁ¶d·EÔ4P¨—Š&R¸A>íN&H¸=Ú–œpô®Cáz>—Å;,$‘£Ì}IŸêÿ?üp°íÐ_3ûÿâ Ï?ÿ쪇š—Üs÷­sOR‰ð?¤oy@”ÇÿýDüw+x²ÓÓϽÄ*€+o_þpKËÊGž|÷Û‚¿Ò¨®ÎÚœK‚$#Ž!Ür’ñæ¹£A‚ d#ã¤hô,ÎR™”5)Üã9á‹.r¶°¡bÎ>t£‰ðQIŽüÒ¢IY)¬H5K ý?È:G%·†äŽÄ4t>ÀôÚTEÒaPˆE[P­ÿøi‘ÖEt'Ðh#‹êØá48üÁË/­{啞zâ‰?<¶bÉ}·]pö„úšþýû€ê=$ø§J¡ô§xÿ&TŒœhÀ©vpó²‡ZZZ}À_iØ¿+5nœ—BA^p¬†ŠEw ´7Ô© •ÄèHT YyjAã^ôù’Ág‚a…«”£Í"(NÛàA¢lý8â"Pу¥ºº@E)Wúõ ®Ôõ^¸¹®fìAa­Áó‡ÜíÆ i R¶iµ ÔºR‘LŒ®Ú• Èrè!¤¡£b±ØþC‚ÿŽ|µaÝ_7mzå÷ÍMÍ<òÀœ CVöOœ¨©ìUúÓ±Ÿ…!ãíÀôÆKü_|Ñ]+bø·üù³ï ñÀ(öl‹~ @£ÆºA•‹)jN xêóëÍ c®½W.å~^?P!BÑtÐU©¥&Œè²˜ÆSz:b<WĹ„8!“=QüyŠ+Cðwôb¢Qf›+e€Ø.Ê92CuMT†D2n:›††„›”PG^E¢(à‚$â\0ÃZÿB—Í\IÓh„ž$k¡X8úǾÿ÷/þüê†›ÞøËïš–=þÚëK§ÊÐ_Y9ÄYÿÄèY¬~~òÀ†¯¦}ilþ/j¸àÖcü¯i/*ë,À„†ØQ„s¨™Œ5|LK»ÀŸ É©HGxP*Pçkaf‘&– P°*I÷8Ãë|„€È¢Ì’>”²ùv«<Ž¥¥(V¶Ò¬šæbîŒöP›4ˆÇ1,ÈÀ.‡¯щ"aù|Še]Ó >ÚŒ‰„Ñžæ³?´ Û G ÇŽ …âÑCûßßøÚ¯­záÅÖ=ûXs˺Monºc¤ÁÿAÀÿ2ÐΖ;øŸ°íOCé`·8å¬ /‹ñßxÞ-M?üÔá¢R®¿]íü²È¥Ðl •ÂÎÙ¿ W5·}Âô$H‘be2$oT¦ÛÅQS /ò) äJ°2<2¾gî­°:€ïB¡©@Ú±JRÆY9ÔÄdÁAò¸*÷œ w² ªÀýdH"™âQf‰ íG ÿ^÷胶ü!t?úøc<üĺW_ßôÚ¼ñFdƒ†Ô î_9 _ïÿåþ'0ìÇ¡÷ ëL=ó‚‹/hll¼àúù‹ŒÝU$ô'˜7Ý%IÅØÕR¾¬L1§Ø1Òü“ÆùÜŽ²A&» Ã_ÎÇÀ«Iœ6ôó`çUüKwÉX x±À ÓÙ@ûDÓsg‰.¡+¡Q±œ<ïõ9ÊÂøO|o«¸%#•Ï1Ì q#ÓÀc¤Pƒ…ÐV†ó4Fh–“h3[RŒÿŽÿóåú–/[¾|ù²e+V<°â·µ<ú§¿¼¼qù¥ã¦  jpMÍ>Ýz•§†¾b¿{YY׬†M›2%›h˜=+Æã싯ºûб"ĺç kðƒ°ü˜•cØ:Zàœæ"œìj6¥[<` É¥'¬ÛåhZ]þ% Ÿ$`ú‰l"Éõ*Ò–)Ì„D(IÓÀ Ew[ý›' ð”T¾ày@àŠšÚµ˜ïÅȵÀ L®äÏYJÔï¸yÔ®QZvv–#Ƕ0_4IQèè8´çµ'[bègÿÇV¬X¾üw-ýeÑÍçÎÀÀêê¬%?˸…ÚsNŸ6eòYçMûeCCCc㜛f_Òx×§Ç ªÀ§Àí [ac…o7]ÔbŒˆ,ÐSöb­ƒV„Ü2Wì ÅÖ•ŒÔدö% ïs'å\„Dº¿£ë L*¹§ìñ뢙æãƒEÓ,‡_>‹@LÐQpGHBòl®¶MÓ¾ bBëïô×íXÁ™Ýl¤EXxj4Í$l騧u O ‡w®Z‘šþeÍË`XñÛ¥ n›×84UƒVôòhí^Þ£¼¼¬ôç0üY(ŸÒ8sæiÓ·´nûhËu±ñÿJµÛß'G¨í0!ƒ#YÕÊ’æLÁ™Ek%ÌnGŽélìÄS2beM¯{ä'”3w%ÇÚtby€d{ÇkÕ”tF.Q´t”E|_$ OÃ+²–Q»‹`«\ÍB±Œ¥¸µ‚¬+¡6ô5x÷bðrA4I¥ñœ=¬¹ªÆ?UyAoºÅÉG/8Á[Áê;¾ßÿåËšMpø¯ßsÇõ§÷¯L–*û÷õÃüÒdÁïgzN›ûü¿ÚÒ‡7onœõE²4²¿õ°ˆ)±}Úô¨¨ÿ(†Í˜Ï™J;i¸x’ñcœ«ÈGׂ¦×ð8$zi®tˆ¢#¸p/ïâ€å‚ç >=#àÞ:›Rrh|Mx¡5${ÜVV­ÂàŒ#¤ *1^Jè8¼gÉÝ¡Õ%‚àNª†zÆØ/kž‡p6É%WBÔ ó¹ šßƒ'«EÓXèøñŸÿó‡zÓ´tÑ‚ëÆWÅ V•}<^K»ÿ’n¥½úõî^ÚÖÒc\C2è9ÁëÖ­é–ŸÛ©ó/)Y{‘m–ñ/ð‰™õìl@§ù"ãï)o½’\òš$VÖ#hy‘²0®J²³7Ùý ž*ñ-Á… !±äÒÄïvªKP; n05´BB²D®$AÓ ¥ÁSgwXE2‚xkh¬ñ;½dK×¶M±(® Ãé>tïÞ­{Ͼý«ú×ÔÕU) 9‡o²fÂx¥-`£l6³ñB˜ËÌÐBä¶Ðµ…lÓ}.Õ¶PZMÀ¹×ˆ´4K*ˆ-Q‡?|xáR   ššÍ©Ëð_Ñ»+6?}+ëjk†Åaøð‘#Ò' >¬ºoIÉø?­‰ÃªÇ¶§øß±u]øSü”0'hš«”•<ß9R™½ WHEó"E¸1.Ðã‘1ü„¢@Í þ•aFР]"ÈôÊ” OÿDÌ@a pOxhHÒÁÔ¸’ìB°q&ŒQ\ªGcvÄG+o‘ÅZô¥¤ h Mçd £t_‡´KœÒïÌcD(ëèèønóÒ÷aÐ ÃÒ{ÎR‘i€]‚ÅI#G¥aäÈøÿ£lQ7xèüÕ‰X³nK¦Þ)XÅK¨f{Ã"Ìmi¬˜]H¾=R !<¶ "+î´|­(2gøb>ü|O²¢¬ `EíÞ…ûæ‚Hö‰$WHéÀµ»5•ùgÊÿÈøçÚÅü.‰ÔwöG:ýÀš’FÚcq>N1ÒŠ.qñîÒf“H@”/hÚGN]zÕP'–(5v–óêH{GÇ»ÿ°èîEñÿMqXr÷¥c2Ч+;}ʆ …ÃÆ­NÀÚç_ËÀ—¬9æWyù扛´™0¾xÃJ‹ K$Õv¦…•®dÇ#,éðLî>`#$ ¡ž'Ë_ŽVá° L&Ì=ó­ub…¬R‚“Øèõöü;«Ì®G\FtÒ© H@ŒÔQA\%òÐ(£kíÚw`bðÑ™CŒc<Å:¯˜ø¥Ó—Ždk5éHM~ìho?tðà§M‹ššyhÊÂÒû®«à§KDÜÚj™‹ªiz°C‚dO/Š 5»+<ÄqÒ\£¿,øÛÛøð[ïZhÀ’{çÍ[t]ä§íÝKS°èÆÙ£ âwüUϳþIxÜØÿµkߎá¿k¯pÜRƒxX¸£‰¢ˆ.ù[ç=¢ÁX%8ÁP ˆh!J‚^Pb-]¾·åã2q¹´z8Ä=bï¦2¤ ,¥‡¨²cX«ÁÐþ^5Ĭ“nÒ4t¢ˆéOpïÖ­Y¤Y4*‹ Œ&Š Nâ«"ëØB ‹•8ºo7À5¼ã²X摤٠þ‡ß»wÞÜywšI€¥çœR;fü˜Áƒ :ñêù‹&*`ñü3“e@¸ ð'„Šá Ô¨f‡ÿgß@Û±þ‰•áM—uyß‹b/åO /t)³‹¸àâ.z`r êK௔B†Ñ“ ›.P  BÆI£×îÐçÜ1Áо"Á¯{S†I>ŽF[0rì @¸:ÝÌ.5;[bÁ†:¬f`…hÐÂS´ (Prn4•Gá…•@gÛYˆÀ¨$m|òÚoýÛ½|ûܹ7Ü´ [¸yÔ@jÇœóëùé `É5Õé"à müÉûgábëÿÇ#€­»vOþ¤ÍÌÈ,ÄGÇi¨§ù•`󜂇ZàŸ±j+÷nXL—•¥Ôò0’dAÈ·*- è®tȉ€.¡ÓCðNÓ ÚQ+ Ñ´=@ÿú´/Ú¨` èä=ôF„nꂞ·ö·`G~@ã;ý•9&d¬åø(½+Ù*V¥ Ý5"EtÉh+­Wƒ¦L²öóUe­µƒpdWó¼yso¸ñîTÜRíñ?pPõä†kîH<€[‡¤k'´  |h§øŸñôjcÿ×>û÷]»v}À¿k㘠ò‡o@´9l¸¼<õJª\®€Ôà<ÞF„%Ùm„ЬD"–Vb(ÚåE)ó )Ūé[¼ÀÒ„á@¸,&Ò^ç:ñ@£h¤t´¡L£”|Е^„1*©­5›îOy Y,ºõcx”- hRWzÚ±Ú'¾‹í(|¿ùÖDÜz‚ÿE§„aÐèIÞ¼taÓ-Ù"`¿Z(­į̂zÍêµ&¼šLHâCXŽ@oçÉRÜ{†ü¤2/‘Ó E¡‘XÉæ fÖ‰=p똹Ñö´=—g˜Žþ=˜¾CÕ¾ Í=e&“VÍÛÈPk¤qËḇ“#ô“¬¡2h£‘Õ|}¤ÓŠE؆Š}(¡Q<á‘ô ÝŠ JŽÊ@x÷Pm'á»›=wÞܹw.Iæö«ªâ?ÕCÇM>÷ê»îŸí<±€Ò>µ)ÌÃjà ÿµ±°û˜Ð6Ó[O pð9Ž!ƒuê³ÿ¢"Opä ‰ÕâÆx:ðÖvho\÷È;¯!!¢Xr-²üx¹ñ½ a™SPjœRì ˆo¢«=;±†)8âanM —äÂ1+C`gV›voà'ŠÍ_±,¤zîšöŠ '"‰]STŸ ÞÐRÝ[¡ÓQšÛruuPü¸øÒëo˜;÷Æß,nnnš20ÿUÉ º~Úå·Ÿƒ?Ùp‚K=9bèС! ð”uÿãðÂÎ]ûö_ˆå·!uìî5}ìåPG©ÌŽ©Ùh¼§+G3'Án£=j*c­éDÓk*<=WqƒÈä“w‹c©å²RtkVnP¬#èïÓ=špšÝÄ ¯ã€‹/ › +?O!§Ð@µdÑEÍH3 Q!P z%ò HãMúÛ*ÖœÕe4j|#Ê‹ïN{Æ -`—IÄðÿ¯™ç^zC¬æÝ;÷MˆÃàšácO»ìŒþ™ÐóÄðß­{ÿUý{ô˜ x Øÿçvíj—”{.Ž;Ae')4`— Œ;©‰+"xÔS6Zyeñå &of@;Ü8U™3q-8¡¢í—´Ñ%À‹€u“ÒÙ¢·f‡”ݦØfNVhA$ÖLM#530œ á?TÔ»‘¨©,‰bwŠÎXrç+r*@ë¡y ÿ/Ÿsñœ«®¼fÎU7,lj^4§Á¿jà꺺aµ)ú+*OxPIIIiI·²Þµ¢ pS²þ—úkÖ¼xà¥ÕpÅɘÀ‚øLÜ53â¥ûiÚšQA@”êà "HÚùhnU°WYu¤Fw™]‘Wô2Éeo'•”EÛ÷r©0M ž­Û©D *œm) >–,þn}ã8Ô}V¿âG_żҲdˆ ƒ ¡@QÁü1Ú§# hÑtú©r¨J¤«´|°RÖéI¥b¡X(;vìhWàÇ#Ÿ4,[zË5—^pÞE×/jnº¡Ã? ¨ÊÌÿ‰.‚Ðs@€ÿYéàÕO?ý—Ç~ïÿjéÛZsñ )}|Ç‘ðIrÍËÓ<L #wäƒΉ6`¤ú›‡!4»ˆž*.'¨2Š<ÿù"Agh6£(¨·¥ Niánò˜q_ô`ÏÅýD(f#—¬ö¥¾÷¥%gäסšÒºC çEb6Mˆú…×ð5W€¾È¯ÈY߀ \ÉŸX˜p¬£ý‹·Ü5ÿòË.¿¸aæÌK47ý÷iþU)úã0 ¢¢KúÔœÄ@býŸþŸßž5öä7mßÓ¼â?Àj ßjÀ_p/Á?¿ƒSjM9KÓQeåG`B¹±Pþè ̽„ÐÓn¬Påó‹ûŒ¼J&Û1-:²db}•!ùWäíÁ[(€ÉnÜ|ƒ†‰xа ¸a¬14§É…Œ»ò§ÍAÍÜPpAŒlyhªP‹é %´ ‘ïÊÔWVøxŽëåàÿÝïxã¡k/¿löyÎnh˜yþ-Kš›Ïä ¿1þièŸM–wÿ¥½„I€å+'Ÿ=å”±c&\øç½_|ñÇõfª 53—±ÝΗg Å÷dxé”ÊÒ‚ƒê¹ z+ùpX">§n£#Ö·€~ëf[oS yèñ/ªÝ?‚sÎ6©&G6 ¡DáB™z„Å@ƒéYd®{ lfB8¡EÔ´†j„T[ácQL©bYC•)ª-L÷S]˜ªéµí20±,µ [fwƒÙhkþ|µnÕ#·^4û¼Ù³fÍjˆñß8ç¾æ¦›Æ£€ *úõ«¬ìÓuü— NM7ª>®ynß7ß|³ãÑý­9”-‚¥ƒdŦ™…¶g·æ\HÂoÄcF“ ä–× ÚÊ¥Ãr!þJt–Òä+:"‚çè -‰‘°÷ÊGA ËâÁÒ°W†ÄSR[y»Ÿü=ñ†±Œ;R9šGSŒh_ýæ§ÇÍ’=A|‚=Í‘™<n»!e.-UZ=ðË^‘š˜ue6–àU ÂnÅÙQÎ:eîÃA¶µÚÓcÏ ¹”¸9tþ¨#Eâ²' Oè®DY?›/BûŒÚi8L´Ÿ¬áf@E1ÅNW(µWó´qÂ’ Ì Ý½lœ`vSh;©b8eS£_ç¥"Ú-ü?s5BÿÌ$44\uoÓ¢s†ßßxýº•ôìݳ«_ü*í/¿  ~ÜEo}ùuÿƒ¿>x´à¥È,4K¾§¦Ç£lÃyߣƒC¸;%üs³\)2E–¦ IT‡CºóLHÍ XR…†É•r]i#ÁI:‰!9d¸ ™h“$ðÀŽ‘n÷'¾"'e‹ý:óm¡Ü<¦GÈ{A”kw` cLT­™€ýîR=GüXÙT9ø—{!)×àß2äúÏÌBÃì›7_QWÅŒêôèVÚ³g—_þß½JÚ0zÜ©-_fè?xð“ƒEõ5jdƒ)^$HÛÎJ·ÂûoÁE4Pøø):›çTá¥v©ì,rW­k7­D(¦Áù®¼’{ªPd0¥b§€Å³1„õü]<—BWbB°A’½_‹¶¨(æKµJ7àŸGlÖGã_BW(¬6¿‚aвƒ“Î|@æ{G†› Qžø [|㽘jÊßtúïØÁç¯1àŸ™þ;çÜ™3Ï=7¾ž5oɼšþ ý™èVÖÕï~•””æ `ô˜ÉW}8ÿß|óõûßÞþèiؤ ëñ"’hþR6[Ö¬#%ò‘+Ëm[X5IÇÚåufC\çw²Õ3[É寖c *SÃR÷*¨Ü@M’²`ÀŒ¡‰x‚’lW߉_l%Ùˆ°&Æë¥9š °ŽîSRh7†h‚a)Hˆ ú­SOÙ9-©JxÁ©Ðéø¿cï“s€í?÷ì_žñ«³Ï:óœ³c%pÁü…§ Æ? 1~»ºPRRZZÁá?nÒÝñàÿëŸm]ÿÆë7î:ŠÖÖ$ž ñTHу‚l¼(ºCÅ Ã8üµ/–T “h‹Ä@§ˆÄÊ.„ùŽ™k®—%GD41þ<)A×€¤ZXô²­ƒÒ‰i}¢ ¤MI!ü‹p="JŽ^ ®ÌÀ;¹ƒ»Ë PlcéÎé¸t,[d0GZŒ‚~ à‹â…©ØþxùÅ‹üÏ8eÌØ‘ã&O6mÊô3~1ãò»Î á¿ÿ‰Äø/--é>„MþO8³åó7·nÞ£? öqͤ¯ƒÓøµçî+³~²ÄJA`¹ Ç!E“õ6Lw‰¢`CE s:§µÿ€mçd¸œÓ.yŒ‘QX£Wòr¼ò ¡Mž^Aï• ŠE Ø›÷uh\ }ÎP'ME’š©ÕÐøÑ\¹Í?Y±Ö•-Ñl$ÃdU€GùY×¢ÞÀÛ/Ùäl_¬¤)“ÍmïÞ™ ýg]}ËMW46þrìÐÚÚڡÆ9rôØ‘£'ž?{ˆ ÿª'¼ÿÛÿn}Ð ÁG3é׬3ÐÏÂÛŸQÎysÄß£èžøV ‹þ²DxWÀ3ÚŸ^”D¤Îíç{ªCð|VTVyH¢Ð$V6ÃCãÌ 3û2Œ×(ÿΈ—?ª!(zp~jß“ϧøs˜G^WcÒP…çŒð5YK„ NnƒŒŸcŒp:ûVxZ¡û€?-5Áôº*ÒEî(bƒÛ¤?ÛÛvÏiˆñ?çÕ>~síÒSëj««kjkjjkëê†Ö ;©~BMÿU•]ÿôgŠÿný‡Û__Æ-nmûç¶ ÿþ†ÛÍ&D9‹4é#(È$£ŸìqS‚I`t°>¡BÑTv1F4Œ£å’…(ç{à©e™˜¬b$+°` ¹ÿ=A¨@ï äÛ—H">qš¨/SQdÖ[KIš˜a[Gô³Åáð¾Gú?zœ^É=‹ÓPŽe^lüNkFª9ëáZ  '‹øÃ š$'»^’»öÝmmk.?ïÒûßnÝýAËÜ_TãCªj«…ð? «ßë–J»•õó'GžtÇóë7mz¯í“]ï:°·=àò@&S¹×Á@–ÉN@[‘­èD²"´ïóˆ=‡@`[–°o'§ÆYzak±ÛÖ-·R 22 %7èLÒÎl&ÐFÒ¤š¼—“Ì“â­L©¸NZ´+ WƒÚJ±Þ2J°ÈbÈ °V¹fiOýëÕ¾ŠÈÌ Tr£TžÖA­rìS™ÿGùLÞëSøí¶¶Öõ/¶üu÷îÝïßV_7¬Ö‚¿:Óµ5aü§K] 1þËÊÊ*ìÛ@bçÿ¶ç6nܰqÃkëÿþí›_Íðÿ.g–›Ž±MÕžñqÛýŸn‘·gá‚.¼ˆHP—¦=ɺËÁc(™þ&0¦ØóQ¢Ò¢ú$ý ©Å%„òÀ’ Ç“„Ô›üEBš˜µ´™é@^Ñî¨*‚9°fño«˜þÔ0GhæDžNg'‘,{òG¡m ÿ Ás& 3H8µ|4Ê>Õø„I`º;¢ï§·*p>ýäë=[ÞýxÏž=»þ8¥®®®¶8©ÈÁU×gbû_VÞ£¼¼jX¦ê/»íå-o¿óÖÛomÙøòš_x}KŠÿ¶#°tX†³ImõA¯‚hò”>оÔp,^ädS˜#é8žV“©“%%£SΡäÚKUVtH ‘D]½R…¬8`œ N‘€êú9‡„Ô)ŸdÄxËÍu™ˆÿl—Ø} { yUš·‹Ýâ±ZðÔ™­*pƒòPñDê8¹9ràhñо¶=IXwæÐD¤vßâ?VÕƒÃø¯úÖÿÊbü÷è+€Q£cüOX÷ÎÛ¶øáŽ·oûû{Ïý±å•×ü·²¶aËâeî…<çÏ•hÉcO3à·G„e„WJô‡¦x­2ž%(ò£ê=ŒÓ_dß P(-3³æ ¡c~çÚ‡饖BíãXENÖ0±ãFFÁw„Å$T7uqšµ¯4ÓW \xˆÿ¡COÒi§¢Êö8­M8ÌÉÓötÿÌÛs©Žªâ¡µ¥øßýÑòS,þHð?$°þ—„~?þËcü÷ìQÞ/qê·íرӆÖß}õÅ76®_ÿÆÿÒ.€zk¤s‰ÆV <‹…“ŸÍ‰@Ü ’A±ñw\d^O´zø—TXÐFþud&1rò{+g“U¸eÂ}:Û@_Â5d!yðó#¦ÖHal¦×Â&’>@sr©þ™ÎgÀ–ÿ'Mç«ð £Ç(¥X³¾ÝÛ–à÷î=»ß™74à)€ššÁ9øе%€’Ìýï‘h€>µÓΨýö䫟ú“ðÑ?¶}ð÷÷>Ø”ëê]+ Ì&yÂ\hîü‚0YjÖQ!@ñë„bP.çÔ*‰–TkKP²ýØŠ£Á”?_3’€ %ÕØ\æN $@]+<kB³N1ÂVÚH CÍÔVöRBóõnYuN”r»‰åNÒ¨ð(B”úÄpÁÖ]6…:AN*ƒF "Cœý$ŽEá«OÚüïNGÛ—L3Ù:`Œÿÿ¿ª²kG þcгbìüÅWž¹¤ã? ;w·í=Ī!iDû0ÀÌjÄ0Åz.§D[€2ÛúÂ< š5JCA;ÆåÚæ‘©9“]tÚ&I… 0åªH¾­F'Iö…²—*LfD”9€hgèº%DΘf‚ `ò˜ÆxM…õ€·×þ¯&QpïÃRˆla÷ÎÆÉ6'¨µrá£CòŸýáßñí§miØ“…­óëkã@u5°ÿ¹þÕ€.Í$«Ý{dø¯ùÝ{[_YõZëNïþ[üÇá³#š.6ÃÖ)4ÈŽ—‘A¾°ØøÎ5K„Š}ՃəýuÞk"Œl¤„¤Ã+àRiö?L ðZIŸŠÿTjKNдÑöý¾ù9B_ßs8N“k×rÒx6‹O?gá23îÈ|ÑQa¥¨µ™èvOÈL äM ±\‹@·Íáø„:Fº§V-Ð×ÿ¾PØçÿ³6ˆÿ½zæIÃêjëj`´@Mhÿ_†ÿ.*éVZÖ=ñÿË{ ˜õ| õgpo…ö?¹Ùs€«Á Ä:«‰{Tb•hÀ‰~`‚ì&à¹>¸”¬à«¸™B° ñ‡Çp•|´.´ "Nã¤RÓQ‹¤ºF€´Ð>B±‡†Èè¡ e®ªsÈöé4^éñüâJPŒd¹,g$VoÜ["LbÍ™[‚Pæ á?ÿâáýmÿñ¿VÌ»öŒñõ£GŽ5bøð#êŽÿ]y@yeeŸÞ•ýz%ø?©ùî ÿ»>ý!ÐÔ,@¯WGÖ”G8–ÅNEoÊAn;éý'¹R(»N6éö!”褭´ñ‹¤\LD•˜Œ£Zó©cfyÈ­_qmÃðà†Î *›œñ6 ÓÎ>=Ë ù*ð]©¬t 'üú:ƒªF BcÙ¤E(?H*F~>ÖÇê ÿD¥sê ìšR{ÿG¾ØkáŸz›o>ë3¦OŸ2eò)§Lÿ?zøÐa±#³ k;Êãò‡ÖÕªªèÓsø«; ¿Oà+€}‚ú@ño/P,c„›²Ó° 3ØHI~ÓŽ+Á[rÀ©,²…äËä¸Â“5œþÅ Œ[có~t«ð×1/„jõŽÅ´5£òOçä¶· ¹Þ5¦( ; ã4«ÞÓ.“ì£D~ 2µ'¨Ð¬¼È‹£›ŠVšÙL-‡¬ÑÁ1°¼˜Ðƒm‰ùÿnï'm.|øþú§ÇèŸ>}Ú´iS§N™25Ñ'Y—7þÐ¥3€eU#ÇŒ]?²~ÔðAWlÁ€'ðß¹û_íTKv~-Å2™1]¤š¸ó€r“þ+êNj„]í¤‰Šqa€ÐbAÇ¢âr…cŸb:VŠ%Ò Lo¶U³[ Ô¿nP‚´!mô‘Dšæ•2Ê;/ –Œt{pbÄu¶Î¾+h‹¨DjÆd¡¥e¾„Ïds€ lƒ€½qNŒÓEö<™ûÿæŸþÛÿ´àò³¦§áÔiÓ205þ7iâØC„ñߥéÿ’£ÆÅalòçw¬ZûúGòþ»>o‡}A˜Ç4¼ âê<§Cþ“¬¸Ä`¯5x.oFláv‹†3ÓE J¥ ñéFtE4•¤ HFaçYŸ†Tö͉¯Íqa—¹¬ý ¼ŒéÓS $ð…UÂê!ÄÐ%S"´n–BÆ: ŠÌëœÒ⎕¢ é´"£m#¿à¯í3¤\’ø·X,þø/ÿm 9}ÆôéPL›š©©“' Ò]AIY¯¡ãL8yÂÔs/½ùÉõ­É(àƒm;bM°#¾üØ*€O)Ò¹ìƒURj9ê%Q¯ˆ©!þýuð T|‹X4:VP&„ŠÓ ž@ÏIŠ炈Ï 3fò5Ѳàš*E¬.T3- sزh4K—÷PŠ%d„ëÈùÒXÈÁrÒ uö¼ÿÕ‘üaG3)3‡"©1Í0¿ökmèüx|Uüϧþ{žž•V.L8‰  è߯_ß¾]qÿKûTÖŒkñ?~¤©ÓÏŸÿìæ7_ù™5«×mذuãÖí[Þ}ëoÛÓéÿ‚ƒìœÃ¶s¾†d!ëU­5•›Îð_ -ïñ{è0Q>6lµ²v›Ú²% ¶škUhgJðƒÕ½ÉûÐ"Á¿&oÊr”Š[®QŒáŠ.D®ÇÍ´¤ñhéC;à-ÆŠUЬ—h¹º@öÙÙn´qR­Å·4I­³ù5ㄎŽí÷ðo{ãŠû3fdJàTŠÿ)“Æ ­Øï߯wYYW_ýÛ­¤¬ïIýcÇMœÒpÑ…Wßñ›»¯xpùÒ¦æå¯\þ»•Ë[þ¸ò±ÞM½øé"&OŒŽÏš˜;.Ęé2 ±bÅÅñÍ‚¿¥sö‡‚I¹‰¬×#ÐhHøYxGh@@y4)G+#àm='Ü’$D‹c‹ç?[hm +gt²ºšªui2P"®™îÆ…!u­›xzì$ûQÄ©HQÊÖ‘».ê»ÿõîÛŽGg:ï?F?UÓ¦N¨¯µc€•]ïʪǤðÚÙç^tíwÎ_¸háÂE&,Iÿ.^²xÙªÖ¶Žùw€›?a ˆ=Ö ðÚv:U™š—®IFtž±jól[šliâ\pÅ' °,K“Ênþ! ¹²9+ô"ÞÏ^þÚ_R`¨á6»V]Ï®6ièLಠW2Aqá*-uþ›$FU˜Ô·Qöê-ßtð˜Qg” £ ‹Ú‹¢Ô*Wü£OëÇoÿ÷ ‡~)L2qÄÀªúöíݯëŸý±¡¢>µþ§]~ÃwÞsÿÂû& À«« Ö}vLåêh64Ãø—»YƒyªMˆ'–ÅAÁ+hô•z™íAµÃBïṀ ò©³%f†\Pj!Ò<~d )cq)Y=Å^H‡èuï/Ðø¡‰²Šé³@Ûý (zÄcÈVåÀ5jŠ—µÂðk5©.®ž2Q`“4ä2Ì}AcöežÿÞ½û>Ýó÷ßÝ´äœ ÿA 0qØàA?Ã+?aè=vì¸ ÓϼñÎßÜuÿBˆxpã·¾é[Žœ®´ëǘßpåe5)Aé"Ÿö!år¹Ãuåã_‡í?5¿°Î@‚*@t€°ÖHOZ¸ÓøoF9)‘ü $éôÞ•aÀæ*óW’§ÌÃԪРoR#´…x~Å­‚æ×(i3þ'dòUƒÛÂç ú÷íÛ×öñû{ë­-o®[ð_v «€)F îúÿPè3bℳ.»þî{ï¹w! ÿ‹›×0c1«´9 k[D›ÔÖ¢©.€q(Þ p9Ž yÇÁqƒŽ8þµÉí>”‹¿¢ ãcœâòCS@^{÷OY&+Û ÃTd™Re_iÁ¨QòðÝ'…úB(Ã&Œ˜òøn0)Ïx0°Fd†k àòcÿ¢l~ÛÖ¶w_Û¶÷·lyóÍøÿÍ›ž»Äà?¤¦œ2²¢´¼ügxé— å#OŸ}Ý î»ï~ â´lû‘ðCKØ“0 ¹jé@õ£”JœÏ¢ v4(<6רOhÙÇÏIJ/ýk¨ƒ¹U­³ù¹t|Í^”ÙÉ-VjØrDfÝ`•ËØl»ï96Ø+{õ!/ѳWËOY¡a¤p2!PVÈeêì´1ÉF‘Íô`Ð9¥.‚Gö}¾¿õý›MØðÌuv 0ùOLUÑ»Wïž]ÿî· ÝÇ^yûý÷rðS°tí—·/0‡‡sÇ?RÇ ÞŸwCöÀÌpx™[Ms¸„.M®Ü)ÂS\F %h/ŽÍbÛŒÑâò þ¤›ÀPš„Äå4е€š=å ÿÙ6W$ö:ÂÙ³kp‡ç ¥±Ü5î…þé˜ ]¡*ðƒfFhé‚?‚»ÇpH¤û!…%UðŸýû?{×?on~êÿî\QL›6¡®oïÞ½ŽgðABwxœ­} ŒVÕµ?É$„"!C4 €A"B˜ÂcÈ ¨Á·Àd ¨<yŒo±`±*_ˆÛ >`Plõbô НÛV¬­ÿÛh+µL-ú¿­Wm™o¯“ü¿sök½ö7Îp·2ßwöÙµ×^¿µÖ^{ŸóuëÖqê3ãŽuÿ–HëQzè`{¸$d!Ûà&£Å}mWÅßË¿@,Xþ ™Œ”×PQ×›¾R-öênŠÄ×®ÏK!/eüØd˜˜½“À-K‘äk–Üg,c@”,Z0ÀØÀûå¼!R|à«|;´±@¸¦íBì 8Yx‚òi'uÂmƒK;qINch‰&‚,¯¼L™ÇJÍŒq’ʼáÒøßmGÿðæë(½ñúk/ž9ݧ††iJª¯:¨ººwïîŽÓCgßá°^Y´~Ž m‡Ö»ßH.˜X¨ÚÍeEÕ«" ¢xiã#¶¬"2L~‚TSi,/q*Š}ùÞp6Uuÿ3âuK2õòZ)ð£(²…æ“ì Ư* –³óHaaƒ›£:>Td[Ý7á;ÖÛydþSJl€ J†êKE¨ó=tßÏ,`ûd-ÿé䑃o üØ»|FCEø×O¨®.<€S\Tͦ_]ÿ?üþ×߆ãf1ÆÐáÊ:7ð«c\ÆkˆŒ•”ÕqJNH™ä…§¹€…b˜<ýØI Œ@£‹u«EÅü§>„pKH–VÖÒLì1±ÆÅJÅÈL%øûfœöðö/º,Q ¥©´n©áÁØÎƵƒãZZ,ø$8hMèQ8-¦Ñpv“¯ŠÁ(–A%éÅ1ÁŸøâ÷Ê ¬¢ØÿóÆÊæÚøþ…¨îÝóÔÀeëÚ™ð¿gÛï¾ö?-Ø,«PÊ©õPÁ)ó‹.LFJ²BÁSøÕQúƒ)É ñ²èdÜ6Щ&õ-­ÝT¡Y¦J1dv™12Öq £á^Bá“\E±yÇñîºm†¡$ùfâ]ÛšQ¹åæÅ ¶‰qØO!}˜lµa¨F3A¯Ìºg_ 2™`·ÿíÍý¯QàÅuEô?­&9ü÷éÝý”ìÿ8±÷·^Ãÿý[?=qèôd%<ÎcZÖà “ Ü Ì‚ˆåpù‰à!ì¼0»}HŒ„F yÇܹb*”Œ¡bœUäGB ùpÁ†@Vƒ¬–R¢Ã ‚ÙNÂaÆÛzž oÅs»˜Ÿàµ+£²rdj+êeI$ƒ£hK­[Â;Ïf2ûTSQÇï\¯°©¡‚‰àg5Púèßw¿¸ÿuëØÕÀîÛ/ÉñŸžéñßë”ìÿÈ["Ô¥ûo@ùïýþ¥ó €ñO¾>Es r Að4qÈ’SoãxùU x©PÚðŒP™ ¬çù º…méªMËj BªkbÜ2€Wß ñCd•ÆX:rSÒ‚xn¼F)ñÛ¡nlÄÄ^õq…à M$øy¼s)ª2Åõ1xL³à¡‚¬T¦F.õIBdáïˆ:m_…d ¹ñ„Íñ£ŸÝ¹ûåØصô¼JøŸ<¢OµÓ§²¨êyÅ•"Þþß÷Èûº—«%C-Uá{µ7›€°F/i‹Žmu g Õ$õéô)€ªn9ø{ä©×Ðé—,^róÊekî\‡-?V^xçÐá/P ¸ô•¬5.4j©Äpƒ­“²üWT¶\]É?I¦'nSŒã2ÈVÒæ%þ;è‹Þ"Q òéŽóñU‡}P‚»ù‘ ´ñ%±±Þ.‰{ @u¸P´Ÿ4»n㛃FY0r…X_ÊDR– é jG¿)lƒâ<º??A ÛÉ(‡Y~±ß£²©‚ÚõxÉìa³ lݹ37«'ÿë—¹Ðúôó¯æ_ÜÙºýîYBÔO8ª_5ƒuuçÏVuïaáߣנ#FŒ3rü´¦E×ßÉ–Îýàƒ‡þø-$ðï¢zQlU KÕ«eIP1â~†lõ,gÝrÍ«àÖ[&ZR·ˆéÄ$^  ¥µUæ…ÆH{ª%ô|–ØKJ­¦“í´‡¯DeyÃ(Pƒ‘¥\~÷3";àu°§b€ûàFTÙ¤|Dº2MZµ‘VÆ2¾þÍ3; °çÅW¼þbkkëæ«˜¨Ÿ:itþ²Ðyü÷ð©×à‘6yVíô%Ë×Ü=þÛööÁ/¿Ãð7ù" ÂÈà!0JN(^R™ñÕ®rT•ekÈ-•ש–Õ¨\±,¶+c:í¨{¤²8mY<¾"”Š‚ÇP]UNŠœ‘PªôXqyu„~+À¿B2)wŸ¯_DÄÈŸÑ‚xÖ@¶ÒrÔc¡1Ê뛋'Nì2éGØ­ uа‡QÍ•6˜LS„øXûgÏð/ÿÿÜKûö–ñ¿ã® þ§N×O¬êîñú°‘18wÒŒ·¬ ‹ ÿÛöþ—ÜH ÝürvŒ½´h<¤¯ø©Miî„2MÜKöF£€½5ºMÐsæÓºÁ‰Ò´I%ü;”ó†B"·ÂÎkŒ3ˆF;à'§6ÇÀëó騂ÆtâéÒI Õ ˆ@XÌÃþC9\ˆ$¨j§üãò¼qÞ\¦.}£F0pâë”ÓÓÏìÚѺcGë†Ë‰¨ŸZ;LCW¶¼èÙoøHœFŒ5}檻ðæßúõ~ÚЯp™š8ÆálJADÊõaRT6¾WIŽJ@¬Eô\êØÞ%½‹!iŠ`ýN¼Êš(‚7Ö w>Q}ƒƒUë—ÍB„*:>ÈCGª² >ð‹°I³Qœ™Â©H©¥,œ j^v­^3*ØYˆ8ckŽçôz*ͤݿ¿¼¥ÜضrFûÿ“'ŽtºŽÿ>]xØ*€žƒGŠ4jò5«É³ÿ;÷}ÒzPÖ©^;º3žŠC¥1ƒÔG>;¶O‘ÑL:QçÛB|U„ÉÑûê y4¯ø¢jBƒîEš ñ*L'„·H¾ UZññu6ªûîËI*×5´ÓŠ_+LÐ^ÐÜÒ•¼FK–Ñ9j="…Âò͕Oô…d'ïä àžÙá! úÉçŒЭ»Žÿ.D] ÷™ÿ#Ïš¸à¦;£ظeÛG% ýY0Úù˜JáÂyþ¯£eÄ ÄqHV‰1_—L{‰¾# @uðPz4¤Dñ´ã‚Å®ó„\î©tø *YJÃçÜ,›(EÚɇKþ Zìï)¯…²áZGu¤a+¢Û¶KÃðæ ÑÇ+cÊ)Rï;ïÓ"ÂúÃù4\ì:ANl-Ø+ZËlÁ-–TðæØËLìxò† Ð0}ZÍYgس{uý_]ÝùÇ€ªNËÛê7BÁÿ¨ÉkïÛðà÷ÞãÂÿ›v|Žp«.ƫ㟻Gêèù¾*d2CT*܆“¬·ó*²e«î nEWÂ=ocnÓ ƒ^GoÅŠ]ÂÏ©/…Ïe9P.˜ÿÚ1S •qQËeØ„{1È+ú@móemD’Ðn8R¦nûœvc¢Qº*÷'›‰2×%R*¼Ì”"UrwŽHuk+m™™jŽ¿ÿÁÿŽ;¶¯9?7þ +/:xð ÕýõÓ—?Խ߰¡C‡ ®á¿æ–‡~hã÷ß_h€û6m?ª•¢.ÑŠ“ [ŠeJ†ì-±vÀ‰i% (a)AïxˆRÁ •_˜:(0IGQeòÉG¢ŒÇ¶QܰM­)&Œ´šj%M*Šoú},ÞdžÜÊ+w>J†Ë/ÄRh]ÀíºíRj4DOF–#dˆ­*úbeé³Ñ2¶A:F\¥#ðkÛœTÖ¥dãûŒ÷Jû!¯ÔöK¶hm}äªó¦M›Ñü³æ²W>lÄèsÇ>°¯âtaÐwˆýý£êoÛ°aú»ÖÜvçýØpÿÆM;>O¼—’ª{ºX‹ËgŽ#~ð&´‡+TxðH•1î‘GgÒP]¯Ê¤ r(nгMDb!õŒ¸ú̃¶Ú€h•Md9#»Tª®‚— qpéG t"ñ¼'Vt«Ž—˪†ÈèЦ0q…å§ÒY,^b½Ð*|ô ]Js}b]î?¬é7ÒðüfK;G×?ü·®7³á²»·]3nBÍø µuuµãÏ:³ßéÿ G€Ê `¨‚þ1jÏ_ºæ¶›®_±|ÙµËo¾oãÛ6mz숳ü"Ü„T9§+Œu©‰1Ìüa-­Œ›û’A@ZŒìôðv—`ã¾Æ:âü^%‹eß4a :7C]4 ¤ÔN‹Û%ª­òÓš¨]0¢¹‚ѾZ"±æ—4aÒ”#JȈ70Q啘 ÅÁ uðèµ¨ÓøÓYtßÑ-»Öåþù[h}òÁ믹`öÖ­³kê\ª­;rHÿ¾ ÿ]y¨Š9#F3ñ‚¹ó/[¾´9OK–,¹~í†Í[¶<ñ©{lrHd©«J‚*Z\-¦· Ô®2±$ Fõå@|'æËŠ9øñál§íÛõEØ}uìF‘Õp,ÊÅcêLc8kWB.™ýj’@)(×C ž$D¥m‡õÇ¡‘x]e}&SùÈ‘ŠéˆS§ûlQZЂuV©VãŒ9Í¥ ñ(Ó…øP®ýO{˜ؾéºó¯YµyóÇ×…T;ᜑƒúÒcÀ œzá³?£Fלwáìy -^²¤¹ø?OÍKWÝ»iËÐÿ Nà£'F˜ ÿ9·A(ó„mâF^¾¸5~u“B(x]J•EªÛ¥C°Æ¯¯Uܯè Pé âŠ6–´7˜\È╵…ˆ!³€!\”.؄ﭼœEA0u…7ÁÏê3’,”ž&î”=½CV)ÑãBJì'cºŠ +èKq[WH É!çóçwR°ý¾yó-_:¿¦¥ ãÆŒÒïÔ€þ~0bô„‰çÏ»záâr*ƒ>âIóŠŸ<¼ågo\äøÂ+|M›zi9|Å(ÅðKO¯ï¨è7À!Ìæ|²7v_(Y؉š‹re× ëº/tp~ù2´-œÃ`Ä„_ù˜?´«bJ*Ñ<Î&U6Õ ü»ùb/ëÈ#ˆ  MOò!iB5„éñhb+f2I»@P©’«¾ ¨Ї©W @ÕY—_`öÿÉ»4iîÌZ¬jkÆŸ3ôŒSÅYÛ#Î:gêEs,Zìà¿Ä9ÿþo¸oÓ–Ÿíþ¢$×­ÈZ(cIëf>‘òÈ-‰7*ïz²¢QR;ú8yÈÍ¢\öìaÝÅdmRE£y•w–$í–*uÒÆPG -#nJ@O‹¢Üeq'Ù—FtG ùŽŠp %g…‰ï3eÁ(}ÿ’>›C„Ÿøp7Ý|â®yÿs.\GÀ¸1CˆèÒ‹@»Èá?vÒŒËç_³x±Ãðý ÿÿ–·lùéö×ÿECdx…†OX\·yŒŽ€d‰´;€[¥„'UFò2l­*L=½4{jæ±ÈbÐHpŽ&õAÙ«!®*U.RÅ%–ÊÊÓ½´D°û÷Ú€J«lU<žÀ êÈá‡&R-Šmaºˆ Œl„E!<0üÖY\ˆÈ_°g!~"GAª:­šõ¶ ”bù—¯Þ|ªx|íü²íŸ[ÆÿÓ)þkk&Œ>ðwºu;­ìŒš~yãÕ‹{üÛ_àÿÚÛ޲呟¾ð™·ÿxÜò µ@mÈçú4‹|ÓßJâMW¬A ÈÃÈ ÛMç‚_db%Â…AÔÒ|4YÝ —‘¦äk¿5Jö£·€ª¶f’Üóë¼¢) c lª|áÞb4fTØh©~Dað¦ÜÓ^ BT— ÄAÚ%TH…¨§˜•ɼ ?üìÎÖpüwÇöGomœ›{ÿWΜTÇRY ÇOëÚ¯õ6zÊÜþ‹ÑÒ?ÿsí]›rü¿ü Ç?bœÂ»„·ÿÜ›æR€(@JÛ- drɦä|¸+K6BÛMžHMm,2oÈÀ@ UDÒû ª˨üڱ̚,Æý㤠üƒ«õ€ca,É]c;Ä@Fül13.“ÈŽ•’³TS¹±T(íª°. ñZ+œb¦„5{¸ðj·ôç½OåÛ~ùÓ­;¶?±añ\—æ\2•ã¿®fì°x k¯ëÖsè”Ë.\¸˜à¿ìx%°bý–rúéþäcfè=ªK“Gn‰=‘.”,þÜœº³¬K¢¹šôlÛ«îø‘VÅ WxI«z›ßÑû($ºÄ.µÉ“T€\àÅ‚¡ ì” Kt_RU¾¢¡JüËÎqð'•ž*ån‚Þ¤Ä/R>+O2þç­]ù¹ß2ú[Ÿxâç¬^07wÿóÿ/Ÿ>Q(€Ús‡Æƒ]ü%€^“¯Z´Ã †óŠûsü?òÖ7îüa9ôäCD÷B(›à¾2G‰Š(Ç­MœH²Óȸ@Ó“XÈaó­ÑšxÄ&ˈË,aJoDrÓ "`©”0¤m(3d@5ÐäõªêõŸ†åsjãG¥ZcŒþxj,q®V> ÿ**èÔmÚšP‘CUc“h*KŸ¼°3öÇ“>°~ͪ•?œ›¯þóÀœYSþëjÇ @Ï.þðȹ þN›¯[¿9W¯W(ׇ^!L‚¾¦ÕIü§:Æ9lÑ%ðoÿUV[ŠžSzbC(¾j뎔ph'N¸rE‚œˆ¿¸‰ŽÜ†'¨Ð0+˜)¡ïÄ€)…×rÂЖÍqNŠĤ<È ƒżçxUrÏajgÐñÈ%6g2<Tl±*ÿbßÎÖOnÙ´~Õõ-+Z–Î+[þÆbÐ8g†têjÂôéYÕU0{7ÿÿKšW®Û”ãÿ¥o4ü‡8Jä^+á3œu²¦×‘l’úy7ßKl:rK‰|‚ĨЪý¥9À£¡5©Rô6T`ŠÊàÍèÔv ðGGkNsòy /–ÍóÕpŸ'Y¯¨]+þj¿…µ£91\u²šH6*M“p,™6™ø¼Eÿß}üÚ³­Û7­¾¡ee9µ,›_„ÿlàÂÉŠpîïþwïî·«:§ N«m\„­¿Ç~ `éòÛÊñ¿÷îG“ØV½‹ê¥8èt#9™6@4#Ó‰z‰¢EÒuŒ{ ¡axŠGÜt½FáÒ¸§9èÑ‚øþ:zĆ¿ýÐÃb |l”•ðÏC/Ç ¦$‹ ”`}ž¢W%|6Û¿!Òå:œŒÐ;ÑÌൣ9 -’̬Ž×b(&!à±Ã,£¶I"·'B69üBí…¾®JÁ7'r" ›8 ,™Ûy\EkGÍN)Ì ÿº=üÓËdòbaŠ(Ú3"Œ'>;ÉõÍR¯\G( ¢zBb÷ÊÏŸÅ3^_þîЯ^zíà{û¹© ÿ•Ëëûçòzÿu5g{æð·¸Ïßíß)üw;cuþãgó²µÿgËæÍ[ö}UúrëÏËéÑ{ßøèÚóSÀ€W©„ÙFCLœ?\‹P@)DzLÈaBôq—DЦ܉€…å¤tPJ¾ dDÑ'i« בö }Ò¬¯%zñº¦‚:ø+}hM°´dš:t,õ ­ŠÝA‚ìð²ëųWÆÅA,u/ð«3NêVÝÁ™ìV'昼) ÿWô³¾üÝáÿyçð¡÷öÝ]¶ÿ+›}ü/wfÏœX§ìŒÒ§OuïÝËVß*€òßÎF¦,DðN@þ¥¼þß´yóæ­oþõÛÝ¿òÁ'Ÿÿãx{)ü–_‚sø­£… éoö/¦Èx”QãG}©§ÄDÐ)¥}!¾R°ÂŽìaÓÈÃÖømÆX„œô_mp ÜXèÖJ‘.>µ <–Dt£bµ RþµŒ©õ{Ñ'x°Çà…o<0=ûÑ#ŒˆUÎkÈÛmÎ%2ôÃBtôÁ"x© Vxã»›%ˆüSç(Òäm?’|´~Q]§p÷ÿ}p¸H‡~µsuKKKs£OypÖ$%X7axϽz?èU¶üÅÏzu:8>žüsÞ¿ƒóM÷>\(€GwÿçáÇ·mὃ}cƒ¢ÃIüãQJÞÓ²¬Ò¸ç*Å;e§ "îí‚ åØPx9P )&PJ‚\X‰ïDìFWàC÷<Ë 6ì§c9ˆ<#õ¹~ÂkiAû|U¦¬P™…õ`\¡qòjX©3-ç~ñK}¯$)rÃ0<óü:tÒ…›˜PÝdîmn¼ëè¢`ŽA‰sÄ7j½+g©¡TíØûeì:TÖoÿlUËŠEM~ñ?·qîœK§LT@íÙ}»å˜ÏÍ~ñ›~‡·‹{ôg zþ§ùÖ›Ëøhã½·¯ZÿȶmÛ¶·þâw_ @˜AŸìN8ÆQðU>"¦u Í'j‹ ²L‰Í…¦MFÁ*‹eDpmC£HÀ/Ĥ æ{¬S/Ó «Ý«HñøôvHyG…¥ÝÈù cg éz ð9BÉeü^r&UÔ ŸdMF ¥ D‚Kt,Ѝºƒ;ÉÇ ë`XxšKˆ\WÉ·¦2Is-Æ5E>¥ïàÄ‘€ÿƒ¯lºqùÕúθ¼AÃݸ±¿:ÿ^ç…ãÑ»þ_õàÆûï»çîß¼²å–û¶iÏGþå´xÃg‰AL;XgJÄi<ÁªaFŽHÙ m—d«¡ÐÁ…4&<2CòõÆP Âzô±„!dvÄŠ„ÅýLj)Š“ï•6ÀdEj&Þj†ƒT~I*;ºJ ÉØpo D=\ºa†é¤¯rÌä}AÊ•Œtç©@Mûx36r?J­{òAÑSîé#ëýçÿ~ýÜËæçvßÅÿç^9£ŒvEŒí_ujøï~¾ôg KÍ-7ÞšïE¶äÿ~¼eÛ¶­Û¶=þê—¦ä_‘)ǘUŠOŹŸeÈRVvŒÿ˜ ™.Ð^wG§šFPž2(ô§0‘^࿚ èä‹v@æ£àO š!£øPÈ'sb™áT¸QàÔ†€™˜,g®È ýáâ5|c÷‘Éš©U¹¨/4PLšdäŸÓÇ N!+d!j´•mgLÛÿxاCï½½ç¶ùöè‹Ì™©ãÂÐ^ÿ†·>ÐÓÿËVxô¯\yÃÝ[ ðÔ!2\ ¡ð5²Êt›m‚sUKhâ‚ ü—ìÖ¢ZX™ç¯“¶Â.ƒídŠ X“…v¡­Š r,Âÿ¶«_yci`t|!rC=ö„4$2R Dû^C›!àX rêA ŽìyeèÈKø¢ƒ°J²÷Ô Eæ“ð—ĨùjL^Í,^¤ð“ª4²«±˜j8?j¦"1Æ5¿ÇEÅø2!2 Xj®lÿß?W¿¹1ìþÙÿ/®ÓNÔÕÕŽÔ£ÿwýå_Úïò%K›—°tyÙû/–yúÑs» à™¶äQwAOé&Õ—R†È_¤‰þý¼°Ù¢ìå¤f ªf’ü­8?LJTjѵ?$Ä«°äÐì°µ ó‰ê½Be.Ã+ —'ÎSqE¡Ñ/(¢×tH­ÌðÇ´E!*–*‹ÙZHÓ4TE*ð/¼žH @ʆÀ¿><ŒÒÞeH”íÿ…“Tó_WW3¬WWŸþAiÈ¥‹®šõ‚ 7/Y¼Ôž*ãßa¿œîy·­íÈá}¿xáoè(/(cb\Ç–4Ä¢.ƘxWÝkõ°áµ<0P‚̈ùjÚ0]ñÍКêÐñ-ŽÏL&UGɱΤ*4¯ьļ ÐWù³&:vo¡ÕrÈíî󑦫¦0÷ž1(H¢”rEí§¦Á}ÜZª Ì.½Ú¹ ›|ù{ÿ·lB§ò?iOÀ°ž§ŒþžÃ.¹xÖ̘yáÅWÎn\м|ٵ˖-[Ðß²ö•?ÿ-OŸ}ò—"úªÁ)&Ç,”‘aŠÖNៗ¤ÊjSš‚yð”x Ñ&íUŸ`ð‡Ò`­W4w²º~G.ª€Ÿh@(³°Å#eÁíh@¸Èá¥jNÕÉ*‚:Hª]î¨QR d*?(ÂëÐeOBÂ;1 n÷–§ ÷ÿàîk››°ýo,¯ÿõ`ÍNÑú÷:cèè©ç͘Vï~mxÚôó/oºfɵËV¬æÿÖ=ü¬Àÿ±ÏéIª°Æ®èÙQa‹%õóJÑJðaJ„´Á§Œi©áÉÄ‚tkSÓ½E ÉÒ²kíaæ‹ …Ÿ˜Û „5hàb§ÃŠ4ÁF‰ðû íÄŒ´úŠÅh_á(¹—ß›Œ×ž 0u ¨X>Üü Që~8Pti”ƪàµTмJçâÇçèw9-–ºñ-2ÿï<² ©‰øÿsÎÓÝÿº±gœ øûöûÁÙ&N™Öàl¼H 3f̺¼qÁÂå+í à†M‡þjáìØWtU¤pØ).Ô¨Êë<'yúOÅ¿f 8¿Óý‰9'ÝØXÎiükßó‚-–?o#;d[ñJCj6©A„s[wšׯ/@B%/“D+jÈ?ø‡†ÑŸ¡¾yÊtâE_¼!)1¡@÷©‡ôDó+û§â†¦¦—9þÍÿï>8Ÿâ¿±qÎŒ„ûvŸ®£¿jиÚISë§ÖOSÒô™³,+bÿ×­}öƒ£ÿ_Ð߉ÀLRu‚Ñ·Q $nRLú÷èËš‹+'Ř׈B1©Ä„q]NU„ÅA¥1~ìÍ„B!,‘†Ì(K)Ú3:{'((©1åƒTGCkÛ§ „{VRõ¥>ô FÕÚH{±JÊ#ž8Tªƒ]7中>5´<*ŽåôqÄÿ›ëæ üÏL„ÿ†÷êÒëÿ‹4dâÔú"iø/§Y‹Š­¿ï}îÀo?>Zà¿íDÕrƒó'^$~ÈW˜ìÿž%›V®I>W1 9F}ba0žªR_Nì\‹ñàP ™’;} EÃ?ù‰4 žä©;Ôr> þÇ¿zý´ÁŠó哺Û›V4õ2¥•ÏSÉG´i2MAWšë(¡¾Ò66'ü‹À[Äÿî•MMM8Xþ?X[[[sî¹cÏЕS¿6õëàŸÂÿôÙùÀu«6í~nïëeàØ±¶vN¶>‰ÌtŒÿhH\$-©R•—((„(Ölm|IokfÑ7¤ÕKŽù¡S â}5©ñj.ˆA[×&W;â!&\çáJÀáA1ª¬w¡s/BZs79þ+ä-cÚYfÐO*™xÂtHû¹"TºÀ%!UQºÓ½=É©üÂí¸°Èi oÀ‰Ãé«Cþ¿þùâ¦Æÿîðá\1u"ÅþÈ3ö©îÓ»ª[—@ÿºút0óê–•-7¬Ùºk×3¿øß~zìØŸ¿(Ùá°£(º=Ò†):wu™©Tô¢`¹Cüóe1 \‰èð +ÏNž\÷EøC”>€v²':.<3C#BHÁÍË™¤ÑBÚ(jIS¢i-[ÐH¢€â>"?”!{¼¾(ˆÉõ8ZÑ’~F:noðè (ä}J%îø_Áüÿú¡«­`Ïÿæø¿²£üÙC¯þTuåÜoÿÚúúŽÀ¬+¯»áÇ­»Ê `÷óoùìèÑã'Jæ;lJ¨Ø`N(ФÌO¿àø6Q7 a$ç\+àŸêa²€'pqI:Æ">%—ÓÊFùÅdKsƒÑÓ¹$ûŒÙ>.(Hµû£`[‰$ÌS¨L#K¶Ãœ;Ô—;Œ PÕ$iâ-UÐMʼnlœP9ôÅE"¥ K‰r3öë`ÿß¼/ÿéÏ&÷øŸ;<û¼üW€Æ×ÔŒ;g옱£ö=ÕmÿÞþ\ØË†‹–¬¸îúµÛwí*4À¯ÿÜöÙW'þù×/Û3õ½j?ðìÓ_Hü#W«šrÍaóÉ‚ÒV“Žúâ9ú…ŒG]‹ÔH9ñR–³äÉrÕrbù¦=' HÌAˆm:>u“£‚䤨“ޝE-aàZ$X¹ÄYšœˆ!ã7îh’'†RñÉ¢vD$ÉO-pI·Çþ÷Þš›þ¦&ÿBÌž5µnòä¡#†þ2þîŠøã¢*­$‘!eŠçO:gÞ}ZÎd ‚xÄžò>èL9I)ó펷àï0Ü.U3ÛãJ8i„p÷G†MSO®TÐLjaÂÏû”­ùÇÿ»ÏÜðùMî ûð¹s/ŸQ?ó¼¡ý0°œôëuŠøï1nÊÔ4ÀùW­XÙ²jÓŽ§Ë©ðžómmG¿ââÅĈ æËiÌ’L^+ D EÇ?×1þYçI AVÖ´·èuÀÞ| ­‚$Òï"bGÀ×q˜Š; ÏЧ é ¥MBƒ$4‘®¢ƒ‡#¹„o0T÷Ó¬½ï'3¼Æ(êC)¬)oŸçWCäU,\¦í§ò.òTgñ² O}b <ù[úgÏMM~À?\V—]|ÅŒ,ü8£g×÷ý\8º¦¢0}öÒ•-·mxòé§½ص{ÿÇmmG¾å´³ïˆM¡018#Z"—CufU Ê˰”º†Sôà‰×ñ/4 EÛшĪ谜nTSÄqkÏŸ^ «ÿº2Øü y€î‰`NGW6ýD#¹í×çù üã¢I/Øè …ö)pN …«Ö Ï÷Ë à=6¥!ÐU^ÚbßZÏtzôDÓÅ×R{¹•o½ý?ôü-K–­[u°ÿ9úË*`Ε `ñ?ðŒ®ìû÷c‡…ª‡×NM*€†Ë–_ßҲþËÿö¼ÛÖöÑ1NRp%,ÆŠ!³}Æ+,øÞü„NÁ[²Kz¹æQ¼ŒWˆ&Bý"ƒƒ||÷ŸÒ"-Kbcß·Ie#w˜<0¸…">¤GI1¦>ìGîŸýÓ‡|`Šå hðú£ Eį*bø2ê\Ä0¡ÓjЖ龩‘|D QeXeM’HE`~$ö‹|iÙ°¦®ô*’#¡#P,Áµ§®!" ²bK&O*cR‘B)²•ƒÁ\³¥z²O7úÁ“’ÔÎà&±õ§ìÄT !öÞ™…,q‘YüŸøè0I‡~µuíš›–]wóÍ7/m¼röœ9³›jþûõêìààñùéñ£Ê ªWÿág:glm]ñTáĉ'—UÀTŠÿ‹nY³æÇw>ðÓÖÿÏú—"}úÉ‘¿+ó„IЦ€ŠNÁfV‘› ¤FžJ޽%^D³)•±¬ !“áRg’­|é-b ã=øÌSd'qÄ”Èra†OE]ä·ûL£ê¤uÄ}PæÖ«Ý&d$Ü 2¥³µ7 QLI~8Èf¸Ðñ¥‘h:P/*ãˆjw6³TàÿäW¿gøü®ŸÜqûå´zùì‹.»â¢K&và0pÀ€êJøÿÿ•ìü~xœ­} ŒVÕµ? ÉdBŒÆÔh0m0 3@!à dXS­µš–Ú—@ê­ ÃÌÀ X«0ßb‹ *ܪ½V±J«µ c[±Ú—­Ø{¯^µÊ_ä1ßÞ'ùŸsök½öÜâ|çÛg?Ö^{ýÖZ{í}Î7dK§™Z[[;uêÔÉcÏ¿pTÍäISj§ÁT7½¾!K3fš4ëšÖÅ‹—,¹óÞŸ=¼-K¿{Ç¥¾WNlÒ » Yð®Ö‰ò×讆y¾ŠV ÉjäµÊ!'ïE—q%_EK™þ&é*QŠu®ËiZÓ¢fh„Ì~¥”r_U‚o*UÖœs”µ`×V¡abä¨ä" wúÌ}Rõ¿”=j„©`Ú^þÊò¥‰…­*\"M5_âç¥P¥…vq‹Öþ?þ¡3þÏ®^ºlí†;;;;­h½¼%MuãÏvÆ9çZüWžŒý?{ä¨1ãk¦ÔʸGë€ ÿ—üǽ]Ë:çé®õ9þ·ý6àÿàG¢~'#Ä@aǸKoDÍ¢ŒhIÃ{'Ž× œm ;…U•jzJùxIOJ¦9"í¾¶’o[û%cŽâpYn.(3Ž.ìôH¤ðk«H(È|A¿¸`•µD¢„ppNîq­Ëˆ–ªñþ$Ò|ÑÒü»ùÖïðä÷Öüï^ÒÞÖž¦ŽÅK—æøo¿º9Ã}íÈaÃÎ>â¼Ô~zÅÉàȰ³Ï9ÜÔП¥ú†™Í×­XóÀúþ;ïy(Çÿ£ÿ<èñÿî!>¢lQ«Ôï?¹TdÜTœ0V´õ›»íÚäkÖÿ ×rîŸä:LÍ "Í]9ë« jyó£ìûqÙ§*'0I ÐŽO.k¢êD=K%ùˆ)³YwÑ”óÚM+Ö. +od·.âß![ÛYUè>Ñ:¸WE3HIÉ¢ X¨*P5¨ÉJRÝò äø/V6!WêÉñQB…_Uíiz!Ì´¦fÚ^+ç…ëBS˜Ä â´“lÙ ´« maã©ýG<üÿ#÷þ÷ÿî‘%mÿmKr`Éu©ýonnl˜xNEeåi_ž®Î:Yüyñ  Z]ÝôÆyÝ===«î_»¶§ké’%‹ïX³%Ãÿcÿï#cÓšg¸L•Ð ‹)z¤%Èwÿ¡h-Ò†¥QTˆŠcÑŒZÂa5±8Ã?Ú:ˆô(»¸è{qŠ-ÄA5!p%¢ØñߤªÝŠ€@ÔR ` Ó+™—ieUV44¢ ¿T‚h¥!1‘]‘&M' ž½2Ò ¤þ„i:"eò þ?ÚŸãÿå­þiZÜ™)€¥7~¹%SÍu£‡W¦éôs²ÀÉÂʉXÿL̘›á¿´jÍÚ¶òÎÎŽÎåsàÀÿÁÃpŒÍœ7zP‰çâ4þC¹ðÏZAÍËÈ£«éG\U0Á–u"b=7q÷lÔZ 3Ñ ,Ç(9L/aªH·”΄?Í¡F@pŽ<•ªLQk=¯ÿ¬É‚`B Ê´¨k†ÖˆŒŒ¨ c&@Eo ›Þg ð?þ‰±ÿ¿ííhwøo3 àGWü×Oüb ÿŠÊ/ qö'ÿsOhñ_WWWß|é-+K=YZ}ÿO7=´¦kɲ 9þàðh`³GÁìL0À´/CYÏñÏA û%“ÓÎAÿÜ®ZÚ—E°p_;ø¶xìÛí$MÄ5'™2‹ˆ±#,aYaPHq…úÔn‹CÄOLǘšd½.Ì ž¶ luæEê?—-ÿ¨¢ŽÒ $Øõ'j&åJýбoˆê)ù|ìØ1`ÿ½¦£Ý9míyà¶+ þ›¦eøOÀgŸý…“Ãÿ¸Šÿú«nï\Þã¿Tê¹ÿg¿xâ7O¬X±yÛÃî €ÿÁàÿëÀº4#Çe\ô&d2Ô…´‰´'Ñ—Í‚s 4%jþM`p“NÅÉ„N‘œ[¡@‘F-öÐøbhŘ/5a— „%H­æG$H¬ý“Å_`¬Kû¬9cZ1>`“ešT{~QÆ\ 6ŸmØûjh`8ÂüaµLh˜"\;Ì '#ÙÌS™Š¹3Ñ ”üžöPÀœ,?ž3)S‡ þŸ_ÓÞæmY Ãs†ÿú±•FœvÖÙ'·0bÊ€{Yš~ùí÷öøTêé;¦ý;Ê=ÜwÐàÿÝ÷‡ºp(Y•ÄënÂ\2¡èXº§4B\`¢vâDÎc`[ANͤöî†c£“Lxe“áP»¢:œˆ³¤Ò Îï—Q§ A§éœ ‚ž¶|ÜV\âÙ&HaZŽ2 q:ܵª“’‘[çZÑÏzÒ6œ¯ù”ж<_é …ó1K éaH˜ÞxuÖ‹UÙÉO¨¸á€@mÀþÙŸ*€O÷eðß¿wy»·ÿvð£Ë þ››ë¾P‘á¿¢rØ™'u`ÈÓGÕœ€ ˜yC—ñýK¥üÏÓþ¼þò/w>¼më“ùàÁÁ묣ó¤ÂmMðï¯t”õæBÁ/ˆãÒÉ"ØTÿ‚q ¢Ž…êpþ™wȇ• _á2QÊÑbý‚8 0ºà!€ú¡9hÚŸœžùx*ì¥xÉ—Á¤*ÆþlÇnåÐ3’d±˜Ó£ØøÝ]®ù„ËDEï!ů#-‰¤lãôã@qdÄÏþãÇÜÅñÿÏà¿Ï}Àþ§+€ŽÎ¥·^iáß<ýŠÜ¨¨vR€³4ìüqn4/ZQêéþ&õýfûÖÞo<øÎŸß;.‰8¹PÁŸÒ4 $è Ÿ „îY2¶V”d' uM„\³è0pFU5&UbsD9=VàQ` 1üë ¤ÄˆªÄúS\Ï\ˆ—m%Ê×ÖÔpc5>,˜ QsØu4Â#šy4DÞ¸ìåkzPƒ{CÒ¬àÍ¿•wyápB>zŽ !^×ÛÞûûûí­c™ÿŸá/®|Í¿yFŠÿì¿Ê“´þVŒ7µø `]k á¿gŸU^ùÛ]ϼóâö¿1Š?vü̳Îú“<ßTù!GñW‡ã8æ«×¬ea‰œ`ÃI þ¨úPn6F~Éú£–ÆÁ„³ê‚`cüÇ´—é(PIm[ÄÖÙ¢Úl¥ Tá!GÖ&°]M}H [6xýîl†/éÐÂô#y1+ÀH•½3kÀògE„?Ìp»L6"Ñ4àÀAN¤—äüü_Šÿ߬Eþÿ¢¶ŽÎ…ÿ3GËŒÅГ¶þ& =kÔøš‹ã* eQ7Æÿ®×-þßø»þìÕç7~8DX] ªÃNÖ¤š›$Èat‡@#Ò/»öO·éD‹êߪ›>ËTíµX¶ÏD–ɯ$í a½[?˜È‰Ëe›°Òt)TJkÏ'v+…Ðwß„€Þ Ï¿lVX$ä)ãy†Xֱ틥©—ÄùìëEÕuü†&Íi6vž¿øïßÛÓðŸ9K}Ýã\Å!'ù£©bøèšØ: þ{w¬Ä@i¿sÞø ¬?Ü÷$Nd$r}ä‘£fP ð ]#†&DLˆS¢)UR!N$G¶Ò09[DVÐ~(œ–ë;Ô \.ÙOîÀRçÿƒb!´+﯇zÊ“Bˆ öM¼¢ ñÚ‡=Ý­žÀùÒ¬$T'žQÐ4±éÿH•‚ Š†Ü÷íKá«4}¼?Çÿ¾ÿZÞÞÞ¾*€Žökš,þ›Î>%ìçéô ÇNŒ<xémKï…@©TÚëðàO—Õÿð¯UÖn­Ãu3žÅBükRPâ1yè–©Ú»t-´-¶ó=ÖiCã='¤u¤•ƒ\’äÃ@ºG ã¾Ûe§õÙ黼ŠyŠ#ûßov¢gÞ8.G %ÒaœØW†úM'@ëƒõ*j: “5ì;, $Z³`Ö<$,ƒÕˆJp,—8š¹$ÃN•›øB³j$†%ÍB\#×îD ±j¨&™-íi‡6M fWÉÑ£xÌXŠJu‡W+6H*±%NÇЬ~­C¯ÚßÌ?Æt 1g£2çÁ]H€¿äðuçmT´]çð?åÔá?dèEõ©#1³¾Ži€úÖÎ%]Ýþ½(=ðÿæ'Çb냹‹”=9Ç$W YnÖ_U… â–š‹Hg¨d®— TNð€2Š"<°†¶êóÎtYˆg#±óv'(¶6Às"¶¾T`Vh2[b€ÍUÉÚy!ôƒ†HöTÑ †RÜ@'áV>'ä<1 ûi è§}°2ÚûJrTÁèrÄ£Ø Ÿ Àv¸s0÷ÿ_~¨½ -ZøU¿þ?ësPÃF6¤M5Ösüßrç’»p T:ÒÛGË¢ŒØ!2 0¤O`0«ÃômYƒ¿¨¶†Ø4ŠXHšÑÄÅí²›<2D¿¯ðD‡Ótš¡Ÿw&4‹‰†9²ïzƒ¶j•°ð$¥ŸÕ Ô\+D³Öd);5\0Ùá>Ÿ8=¢[kzEո䣓 àÎ'ùó¿¿^ÕÞNñûUnýß|Áç€ÿ!§Ug7ÏœŽÿ ÍßXºxÙJ»pj /àÿŽ&0AÀ Qà»ÒÓ':Û\ãÎüG÷h3UE¥„oÒHÿð¾pS~–,¿ƒn­à=GçápGÇ|ïOhB8€8‡¼å­Mïveg2Io°{ßyyƒl_Ñ…0•šg%ÍÂ˼‚©Ã­¬á— ¬žh[dHþšõnòG@9efCväñjÞqA &A<é‚eÅp6ñJT ÿŸ¼úê+¯¼úÄÝüMÀÆZøø_óÔAü1iذ!§Ÿ;rÌçœ12{¡PKKðøŸ1ëÒ+gÏïì¼·„ÿo=RdÅ%Ñ Œ¡0Ó"yüFœÆ¼ºrK6Ûdå/K.ížж‰zðÌhâàyÐ#¤‘¯±|K°cyX L½EZœÊ–I´ÀµU©†zRŒÁi×NȶŒB#dä;Úb‚· Î‘´¹oK‘Ò²‰ Z!‹³Ø¬b3)èG|Ïʸ‚â*J“YvçÑdÄNIÄ[‚w>}îW»w?¶aq†zÌ>[[|ßûÿuƒÞ1rÜèQ£ÇŸ0~ìE㛚2ÐÜ4Óºu M-³.¹üºŽ¥+þŸøÿ×Ñ£ýšE*»x\ Ù=%,¸´°ÖõåU.¦I,µXTD ÜG,|¤ó†Ðèû|L €a˜Ò$T­­  0ØÄ'…Üek:Ü.~ôÚ|r+Iâ¼Ø4Ld‹•Wð ëJÆ?¦ýŽZæ{½N“d¦x±#?ßôÀëïlËÎüä›­­­7^ê€ç þ•U|7¡¶¾±É»¹˜Ñ­¡•@&"Drï|)°4>Ã'pg`ñÖ¼m`uÜ5˜ú¡}£Á6±B!9sjL+?ôA׉—wEšÔ˜vÒc!l›¬™„¾Á5 øHÔ©ðlîÄ} wC{â ‡4G”R–þwåúõkïΟ/úÿߺà=Hü¹pR'§&ß„›ê§OÏìš.½îÎî’}ø×âÿÅWÖmz`ç3ÏîÙóÛw§@l$^sJb‘³ÆQ¡ üy ©!®E¸‰Ÿ5s™e|#a‡hPuY¤+â³dpH`yk’f"®ki@Ú*ÁжàCT âߨМI‘r9l±"õ*›fwî7N›’gEÇ2E¦ÒÝ|+V¤9ÄY 4/Náo6u‡ÿûÓ²:ÒÕóÀÚîÅÆà[%ûé×Û¿å7j‹ÿs'`P3)óZŒhlljnÉÀ¬[ºÉàº5==kw=óì³{^8ðÑï\O’¸—’e°+ê²k)K\`#’h÷b0í+”bÂÃLFD¸”äFä,4¨QŸ–þo !²N¢Ôpó$‘àÝA¡"üÇÌ¿4CžVWQB5º*šßvü¹: ½Hq¢!ĈŠ¡ŽÞGƒ…–¥– WØq7wä¡Å¦þ¾¶ýaí]«×¯½§=7ü­¹ø¿m¶N>Ùú4Š(€êÔ¨kl±)[ äø¿)<à4@©´á©þ{ž{ùíOމâ@朖òòLO™7‡,ã®Ëè&Âæ™¦zdŒ4JÉw¥DÌ3Œse¥Á•ïMôf¼~Ù–· 5¼/ õ#Ô G'߈…ƒ ß°£C ËœOB!!Ãmbð1B߃¿½$2rÍ.äè¶zë¡ukWt÷nÞÔûÐOÚ3×?³ÿ­‹¬H/o M8Ɇ„¹ 0ñâ¯þ¯]ÞpŸþY•½ |ËÓÏ>›i€_¾0 ·\¨ô3»!1…4UÄ8þ;š´4 ‚)Ã1 ØE,~ÁodÿÅËBaÝÓN¥"2ÒfkÒŒïæWâcCþ.P§b!OüÄœj.„ÁùR\èBË>ò!í4Ò¦ >¬ fVÁ‚t\ÂÛËagô<3[V·­[WZµuë–-[z»òÿ"°Èìÿµ)ò›3ÐT7|°ø?cSÕ5“ëþ/™ÃÎ ÷u§ÀãÛßùãæžU«×õnÛ¾{×ÏŸxæ™gó­áÀad¢tuâ–‡Ò€L ŒÿKõÄæ Ÿå—öÕ 2P|#rÚ‡à¾IQÉ$ú G/ Š@õšðAKÛ—ç~//+€Zs `Vˬå9þÓ}oÙ½þ$þž_ýê…_zyßûßĆZ™þ 2-ˆi „u_¡áPôžÝf”mÀÚ/÷nñ,‘Â…€› ÿ²Á‹Ê°£è$¶Õ¤9¤GŽX^á_øejM¿“W!;ñK¨Ð ’GA¤_ôad¡K7Ißb§­í]¡J~äD&Í2@8Ü‹ÈÇ…uLÈ‚ßE&i,÷à †ÅÌgÙ@ÞÒíSjåC«VfàOÓ–­›ïn¨®žT3v̘±“Z¾=ïG \{þçÿ!Éø¯©ÇÀ,½öŽ?oîÙûÊýÇÿ½÷þ‡‡Ùv®äš;3†çÍž?EDßÕF&[ž_2àá,—¨ž™–(À?«@ ¢o*N$,L|á=ú¶á6uTÉÒ_Ð:€Õº áÈý€•ãSÞ±™‚ýßè Ľð¥:~¸O-ÎæY€<¨¥ÂÓ‘:‘æ@0@dÍ'ÝØ“Æñˆ`“n²ß7ö¿\~}eÿ,л¸zŒMc'LýÊ·çühöˆÏÿçG€É ÿ:ü÷ý᥶¿ïµ÷?;ÞoØÇïÊ¿éô7Èþ2· :ÐÂ)ŠºT-4LM3(Q¨)™@éMˆ¬L¤f¤/Ü#Gjƒioðó+wÚìòòEo¶Jà¯v©KC#fÆÒesÙ;»Ê1Mî"j%õ ¾XKâ¤VòúZf}’hîè0Á—Š4ÇôPþÈáÿðŠÜ÷ÏTÀæûfŒñilMýeß™ñ¹ÀȤ-À4ÕÔΰ  Ý¬ÿ³(à[e;´#ûS‹A=ãÕ§l(øA‰ÝhÕ+òMqÛûe­ñ“7¯M˜›J™àc¾Éu?®N’„ÿT êÜ˶4OXÆßdS™4·[EõëÖF1«„÷Å)¹²f¤#É“†4»\]ê /#¨ÌßÈ©pi©4Ì¡¹ Ð3š\¾ÿëîCý6’8l‹ oO†5€'Ý´_.vðã\öRü—7fû[ó]Àu_Òø)ÓGúÔJÃ"ø¯®ÉOÌšÕrÝ~L€ÿÖÜSÚL[9ñ–€sÄÀ2væ _¸å”Üze’€j$ÿ |Ô{¥¤èp`ÈIcè-ˆŽÇ´&¾!Å Xû@ã~Ec^Z 9ñwáùf / ±ZÔ€_ÆNäáED4ë €á2që:O€×$£á7•ÀÖx·n9ž·ÄߢJK¼õØ:ÅÖ€ªš‰¢Wΰ®AàÝEg–²{ïÝý?/{ü?ºy‹K-¾*€1c«.8Éßûޤ düO˜0i†±ÿ—d¦?û·¿¯ï¯hdÇ)¹H+* I •KøÉ—ùª“€-nuµ4“ü„ ®„ ã6QLƒThHFɃŒð·zç¦õpçþW,¦`š ÑL Šn-Ù¡Ê?AÃ×R1Ç’V É“¢F¦G\iA­²¦ÃªIÁ“¥E»¹eè>œý—vlð)åÓ‹[¶:ü÷v5©Jÿ iäùƒ~î¦scø¯™Úd{-þ÷õõ½vHX’H.š4_šÞ¤¬rDêÃdùÛV ¯ËS9v‹‰ S &ŒÝÔ Iv2'N©yëfì®W‹E 1‹Ì…:2ìUbœ‡àÕÝž¤#-ŠYÑp÷$VŸiMƤvHG^>xó1 ù4 Ç"ÑbªˆÐŠdøÐSkK==¥¦ßþ{)àóÚÙc ú«ìÿ£G]p*Gÿ\Š&TOÉðŸþ{ÙûúxÊË…bJr¢<Ðä'OóÉŠÏjþW< ‚ß ÅÄ·ÍvædÙ."7‘Œ ˜/,-Ä!Àíèj4qA&›QX‚V-EÛ ª*´­¨â[â1ükÔ®uñbLh€)n>‚½á„hð¡(IÜ¡pÖµºÊۧϬî.­ùÌ›ÿò3úùßçÖ¤¸¯Ê±_•yUU©8uüŸVÃÿĺ¦Üþ¿ìßá+)DÂi|›§¨S(p«S/ÈMtzí¯#X(üL[«PBäw™„b…2o‡®#Çgå–¡.©8™v}òâk ïYs¤ Ö ɉæ”Þà[lè.gKÌrˆ«ps›± ýÑÒ‚”)òghO½ÿZ ÚÕŸ(•þÓ¥úÿÓá?ý×{W¶Pe¡Ÿÿ_5êÂST|)º˜Ò˜¿dUþ+Dûrûÿ/ÂM‘•d|ÔJ8D†Ç;s§6±Ö+º?ž] T׎Óöİ; yøiΣf¿¸“«UJÛÓ0š 2¦$Sãb~…¿r"ùßO¯.=ÌÿñÇ3èoNÿe.ÀêoŽ3ø7)ÃÕè/yªðz~ ÿj¦åøÿѾ\¤àÀŸü«þ$tJ\e½ýÝ,ø„¶u ‡6BèSZžQµË hQøðK ÿñH4C^”?t“Ä?I:UVÔh4WoUJÊDªE„7¡éE¤—S¶GŽeP@{Û·È:ŸœÏÿò–¥ y;‘Ç „­%Ö ›De …ý%ïm.ý#N"óÊýO8ç?ßX8©ÊúþUþ©8ÿú»R~Ȥ)3ó@ö3䯼ºguzÑ+c"M+WaVëÀfÞ äY’CÀä"%‚–ü”Få#ñ¿5;*S”Š78Epš¯xáB–1:q¢k’ÌÇ@Ç à‘ÜØ`÷;VR9‰ïUÃ?èÊ¿ §¢#¢ãßñNûp;”RMÔ¾¦1N­}^ôÝ8ûØîÿë¿ûþî4ÎêdŸ›¾éPŸ/Ì—Q§öó•#ä€yš–½¼åñg.ÿÎåóïîê:øáš7Ë`Ðü´6‹> K3AT¼“‹Ù¬Y(IZAH'<€'R…‚‘ é´€„ÿpˆ&W*"àC/øFº‘q@Y@Yæþ—%ÝeÂCí~MB˜ï¤¼=’Ä;'ω`·µ;a#vã f÷÷£„AY¢o{ˆþ¹NÂæõîÿ¼s¨¿ÿßë-øMÚôý1úUa®N;üWVVœ6& ÿêI -ÍÍMW6ÖÖ6\¿¬«kÍ}]÷Ã`8úþ¢»i‰2­Œ‰V@þU*𔽠ÆãŸWòxç,Êä¾h¥Ëhè3.ฺhÑèò—°ƒ‚#¤!í{Òœã‰S@!²Æ‡’ã´¤»ÌÔªðãž,öµvÇ’ýWZÒ6Èx¢*”*PÀÏÒÞQ‘Eõtdvû_]Wê.uw—J«×½ðƒ¶ZÀØÿKÆV™õ¿QVœ7lððZYYyvý¯®›ÙÒ8}ú—¿5öw;R Mï2|¢ïDÑùÜ(+X#—è¶ÆÓ(¼Ç§ÿ«ÑMͳ!ùôVÔ%ö®¢ÜàÀÞ6ª!éŽpÜOÓ OJ:¥RoÞ$(»…:éï{dMww®~rÓÝ+®øÖ ó:WÝrŬˮºí+S««`r `ä`Ïšâ¿bÄØ"0iÒäïnyt×®]½s:–¯yø•ŽPIÀ×#æÁÏÀ Æ^á»á¦Ù<äá¬eáFÎ$ilhZGN³È(‘4~Ó ÿâFaâÂçø«”Ž ¯´¶k7š}*v‡¶ÎV"øÑÀŠON(L}ntdNgÀ·ú²ŒîEª¦¦Á‹ê…Þ ×óoLõÙ0`D…²êðñßØÖ“Ã¿ÔÝñÕéù/q6L­MÿÖÖÖNBÐ÷À¹§`ýSÿ¿ÿ&Œ¸üñþ»v.¼õÞ'_ÿ@’Z ø"Á[Ãb’±`6H\ Ï‚±¾a?œ­‘ïn•ˆË¸|>k’pпU¶Ýûb¤å€ŽYH%øKDëyx=çZdð'Dˆ–“”ÔøÁ ¦Ýq-ócÏ p^ƒ$wL-€„3üf‡ÑàåI’v3’úÞ~ÿÅõþÓUÀ¿?#ƒm®Rø×NƒŒ¿ûvÁ ÍÀ™ëÿ4›µ*ƒÿîÝ?½¹ôâ[G9Vµ•GzÊ ÂÌ+ư’§‰ — m¾*j͈$6Ò¹Oê`òâh4î#ö{ädG~ÈL–k?øZr-¨4LΑÃŒ/Öœæ$}^êÖ˜ nÏ[œT[Œ<…(â6WÄÂgÀ}Ú°9&ASÛScòÛd×,fýÜЋԌmõ£×>~³7–Vv-úÆt‹üüï´)>àâ€yºh°Ç€+*Óÿ*¢O¦iêeWÝôØ®<=Þ6¯µãƒ¨ÊO nFá /QÚ¿"€òB:M€I éí—v—V¬è^q×’ŽŽÖÙ3ŒéÏ•¶ÿ ]8¸çsüWŒÄøŸ8¹®ùêotl\»¾wýÖ©xôÑM­sn¸áÆ…Ëž:Ž8/2 À ‘s@°¡@$äÅŠ(ðEq»æ·Z0µÌ WèžD‚bBq$I²ÿ¢€JœV±Q‰óZ¸4Ì ™’ñÅARiÖ©vgŸdD²ŽA®ð>t¯a·ô¸¸CÒ¨lÍBi‚2F)…‡<ð24ÃT8Êxû½ëï½wy×Òö·Ý>ÿòKšëkk§æ.ÀÄüë˜h º¦vֵߟsÓ}Ûvlß¾#MôÞ³`Þ-óoº>sÿï|Ã\QG\Šz°Ö¾«5ð£XÂ4‚µ6©óþ” 3I#)ØŽöÕµÛÕ2 ¹ ~4•Làž¦¯ p%D½›î%aõ‰$3Ô!›l‚Ë"ý¥ÜÈÏ–‹âCUÌ+>¶¸b±F=¼»\Ö HÆ"´yÍ!oæM£œÞ´“ iÍ~ª¬ƒô0cCâ-&ÌËñC¿~þ×k—u¶·.˜?ÿæ[~øƒk®¹òÒæÙ* vbÌþ>üWœ—ÆŸ0nLÕØ‹ë.½~μy󺶥ØÏ5ÀöÞ ¥Õ÷µÏýöŸ¬û ì†8éwŠéoqwTA‘ üVlqÍ¢¬¼NÇŽD¹ÜAºëça”Á(”Ó5tʰŒƒ1(xÖDƒGʸv„Q¬hìƒê²pÒn¼Yʪ?=ì¤5æUDŸvEÍâÛVñ¢8P´2ê˜ë;GC èdžÀU4- Ã/ íˆ ûsUPKà‹ý#é&­Ž»«žØ|ç²ß>þo¾yΜy7Ïsý¾ûƒïξ¬![ÿÇìÿèÁ0À³.JÑ?êÂQ#¿tá…#k¯½qn ÿyË2û¿Ý¸Ûyäá ]?y¾_ã)C†* :ú³Œ~ jakæÿGÌA§ÙbøÇ›Y,ÂLæ?Ò|C }aî©ø‘%ît¡¯€JD´ö’½Eš‡s"¨7û™XÃA¦ „‚€F›·-3àž÷.>Á°À`ilev«HAÁHTàßáÜ5è_NîK,&u¡?Åu° B!©7ÌsõýÛzÛÍóæÌ3ç¦9Yš;禛nº1K7|çêK[fLˆ­ÿwÐøÿ§7v̇ñ‹\þ»øú¹s3о%³þÿ;vìܱsË“ˆæMEí“Õ¢àxxP¹Ž·ÌArh‹âßåaüÆž):Ää®=¬[ͪ.øqMÝrú rŒL†Ïãã¾·,Y¬xŸ¬ì9Dêhh¶Cm\ROI‚÷MݲLO:| ܱÐ#lžß á ª\Äsÿ”Ê+|]Î |¬FbC¦ ?ßÁ‹ ðБ´þ'ÿó—_,š—ÿ&n4éúï;zJdpþÐBœÿ¹ðH®xœ¥½LTÙÿ>üM61›ÍÆÑH$5–¨±Ålu56°¬Aݵ"¨AéH·‹"ƒ TQ+6lØh‚…^Ê3÷Nòžsë9çž‹þþï‡2sûiÏó)§Üÿý.¿óò§­Õï­mmÆ›–A“(”ÿ0é ,µ”Ç£5„$Ü$^É(®@ÓÃýg4 ÷•k‡Ì¯|+üS&‘¼ŒÅ¾FÛEo™D?Y©Á¡‡á”Õ&Vò&°aÂ3‚§–ÓÇb%È wa©±Ry‰é£dJñŒŽÜø³bÝÝ8Ù†ˆ«$›æŒA“áƒTþéÃã¿Ï}þ´°±™²léÒ%‹V8¯pÙìêæ{ŠÇÿåËþé·^>ÍÖRó¡ÌŠY¥–r¶\äXÅ(nI^©ò%÷³ø74e zzµD$ˆzW+a§"mHÖÐby–Ð…ícâ.ÔÒãÿäB”ùŽ©m“øGÀnHM«¼®7VC/$K,­ŠĤ¬ñ‹'\BœYàWX,™|äBŽàa¸BÉëñQ‚¢™ùG ™Sœ­Øb™®{Âý}¼Ý”ø— `ëò1# ä6dˆ½í_ÿ¿ðäþ¶Cæ:/] (`é²å«ÖoÙ©AñŸž~÷mIQ—TÀDùc$ÄÔ±Y"H3Ò$åë ­@Ф*¥‡4.üK”‚V˜²¹Š(¡ÚðKÕø´t”Îh#Ãn(ë9"’fcñ\ÐÉ Ÿ-†Áu¢¨›”eB1¨i¦µhV¹oJíJÞJ¢a…¹b2Âòv‹`½(²Õˆô4©E°TrQ¿s0ÀÆv²ÓR„þ=J@ÆÇÊÚÚ3 $¤-ÑC®¤ý'¨~zk–)4/ÙJ©M˜â `¡+²ž t±Ø¶:@•ê ߃…°cX¹šlñ|€L!x¹ò'ܶbEò@rŠ––X(òIÔgà„Šø–"7,q¦‚ Ô’N|ˆwÆOÅ+•@¼ÒkQDÜU-|–H®ZB•ĉ%’LóS%oÆ¿u ßãÎá!®®"lYç8eÑÆ-[¶¹n]6ÂÊŠƒ¿Õ¯{}XH2°ÿ}­¬­-úýÉÙØŽY½ !'·˜Ë¸ðø{mm]=c*›|ûcˆb3©”¢–KH6’ˆÃKR ŠQÒ" ò7–¡Q¹F:¬ÒšøÝ¼ÍŸCÅ?­µÒ¸U.7éB"ý¢/"•ªt„ElÄXVfH±‹Å+3üèECM:Ãwyb¢¡3’ªÅ„òŽ:\• 5B)B¤³/Jâád±Rv(öж”@ì‹06é[%ŠàGmYÿ»nqY¹a«+ܵq¤• –~ÿ¿Y`Òßb°µÕ@hüþ—µíXgÿË×îJHÃðŸUXÍy!R‹‹ØT¼:?wÂDwºe˜êM ;QçZ¡©…k¦h¸æÄŽ2hº¨ÍÝDšôÿÑ¡-ÆH» +ö%cw¥5y8:AÍÒU‰Ï(õfé<†5¥Þ ,KÅ>̀žåÿˆrç/ã¿å!,qLþPJmj°ô'©Qb£' GÃ%Y$´TR-å”!‘„=eüIªÏ@Aö’,ÍÒö£‰TD«YqƽÔÞàÔ+oGø@c‚ w²³o§Åx!@WÔB‹-%ü[öût XYÛØ ¶´²2‡Àÿr—ˆ4TÿgæCü׋U%kJeÈßøn{l–!ü„@{!´Õ3Êdõ±ÄNJz'¼aagöbH’x@ ½& ÎgÕt,>Þ¿wˈ–j4Yä9ô"DÂp2S}fl¥Ø¬Uo›û½ÚÖ”Ýt®PîQ­%qË*3ÖÈý`É'°Ê2U>W¼JÑÛ©Ä9€ÿmø—q:l'ƒ<üWN±±BñoñÇ/áÿ·¿(ø`mkgkg·`ÿeN^©(þoÃð?RdÙK_ W ž¨"ôDYϨLý.¢ ÁÃïNÓYt}‡'UqPÚ«ˆ-(O$JWd¬â,\¹«2z/˜qFì#½ JÎÈ[¨Ÿ#¦‚RKrÒ1ÍÊ—bWõ˜ª‰T¤•‘òMK¹Th¿HŒªÚA*_â¨\ÄÊ‚¡µ1Eb°ªb厥ùßvê(Ù·ÎGïTqÀÆÖ•[áÒÿ× €?iøNÀ`HÓ—ø_¶îø%ÿéYÝx.)€ÖÎt{A:…(øÞ«SÙ9¨¬ $Mx›&ž"5^Ò¡±B ˜ (ŸK»øtz.–wËrsq'v°dõöˆ5F©Ð(î!<ÛÈ*gSˆW+P+d@2Åü!18ȨƓ*-ª´.FûÔkª÷v* Ï*ŠÿKK¼*õsîxûì]Aqn¸©ÿ%ãßy‚¤ýÅ à _›؇ìZv£æ,!ðïì—*b?ðÀ µ4‘UŒ‹Ù‹(JCʪºÚLœˆíÄ&´#í…+"hÃJŸø[²‘bÏæ)1ÄèS;ƒtdéøÿ©“ࣦ¢ü©á(JâÔ„Ez ä+pW†šˆÞ"(ÊGP'eýƒàŸe ÂH‘"…?~¯G”\ÏȉàG[a§îšÎÕ»˜(J¬Cäl„¦½ìõëÂ/¼¼ŒwÇñ/~n]3v°%¦üáÖ/F¨ì°±³³Ÿò7ÿeË6j® ø¿UKŒBGÐÝ[Ѳòê6ª}I H÷Š?òlYbcUXi$‹õ AdÀ!üaDM„݆2fYl‚`”-i•`PS¬$QQx ßY¥VlQîl0A2ÌXÚÊGŠiVò~ÔªÕ(|S ½”7SÆ(¦¤¢héÂ;ÿpÉ)þ†Ü€f¹ÃBb?ä!†¯mr’8M|AšŒ&ñþ,=eØ(1ÿÕåü¿”æìw—æºÊ£€¶lœKÿ–€,~ ÿ´.@N¬þ‡ÏÇþ,ðïrð²„ÿôôëZ£¢îydIcAÄey89wŸJÒ¤Î!Ž( âd)ŠmH¤2&/ϤTKÙ‹¡˜A‹Þ\‘J²W@>¾ÌŽJš¢A˜Ç,—A§ƒQ$Y%$Û²âõX™*¼Vhÿ8†dN†_Zÿ²A]›ÈŒV Bœ XåünþÙŠú”¹g¥h-f ™”›#’Òž5Dv$TãF ­èñ ȵßÊ¡|ù‘@yqÒ7QäÀ›V´"àÿW×ë«‚K@CÆ8ø_#áJ¹‘¶ž4ñL($š.àÏDÿ*‹@¢âVèMùÄàuNy²z:šj&•*IùVAWf,¦ &Ÿæ:™ùõ ‘–//¢Hc”U-8³…tüS†à˹åSÃ0Š~s†Æ`ªOF"(ÒF/Þ˜oå]aÑF¤¨2 ÊöŽø¸LñwÚ-°DÓ¬ÜÉë+ÊùRVóíÆv77‚¶lZl­¿Õ¯ëåÄ6eoþ‹ø_éQÿ]É*¨3’8ÄY]þT .Š*E‘ibù ‰2!F¨KQ½˜e€–¤Ôtб8òýH¢Â)-KÙy¥Ò¥¤ÐÿW³uE‹QQ4×ÃÊ4âe+Ÿ >0_-èBí«#DK0+ TqÛâ ˨3JüË;ˆd2¼ƒ©Šh¬çÍ,Ò™ÊÙ$a#O¥d«æ;~¶2“ÔæCžÅXƒÁ¿¼ü[Míçnnlv™e©Ðÿ~u° þ-,ØŸú7oøwÚzZÂÿ•kO^ç3Pj¥™§ 2Elæâ¼ne*þÍB¤—o±ŠŠ‘¸‚ä5bV  Ó’,yK@Lâù"dÉ:eŽE‘Þ3~…"ÔbQžLnWÉyd_~"⥄ÿ®¹|[|øzCY­Ûê®]Þ#ÞŠ$7$d’Šç1â3ð’à½m^ȼі­V•Î}A¥äbìbµ¡%Ä®žå„ü¨­­¼„áÛÖMK' ¡Áÿ—õ¿ª`1z#ñ K¼ìÿßÎ{õú}•ꉚɚEø’+ÄGf N$kSþÎ"•®Ä?q‘x1ˆ_ »;¦úɧ‰Qjv!C*­@y—ÞòÁ}á.}Ö?õVje(û_I>ýÃN`É},:ó¯]âcÍ™ïZäUŠû ‰– JSÉ»ð= ÍÞ7É F£ vª±Qxó"ˆÿ:ôvÄãÌm¢vdzêÛáF“|séÙF!ô/ÀW'MÏ#ù…Ýܶ{ySÑþV–¿¾¸Ê @ƒmììGL_ŒÀ–‹Ïóy%È)ÃD Óš#,–{éQ(8wÜØÓÓcœr ÿb!›ÜÏñÏífÌ]]=ʃhSÁX…ÿ&o‹¤@˜„¦äÓd4”x;+vM+Èiú)ñô&ˆE,>Q<"?O¬ 4'ñ#†@TP¸ççSƒì”0%Ó¦{gSÎñpýyEKO/Vy9ÞÖprWŸzô«ðßdì¸g{ºtuvtt$¯„ëÝÖ}*(úáŸ_lÔ·µzÚš[õFò¾MFþ†Ê‡ç ºXSwWW—QÑP»¹à_E¹üR^)à¿áÖÞÜ ·ýïªøïóËøWÄÒÆÖnèø¿—H3€¬Š–GÀëOuRYRš©d¸"õ¦â+­XªB+–…øï@£Ðt•ƒj U.bYX'Ø#9Q®€lü<¬#+N»fÑ]zEAèõØíQåöÓh’"¦…ž€Ÿ“@©’½%B@q1µs…"­¨Ô;ù½ãûÝ”ÄÄ”ó|¬ùÚ­'÷>¢å7ÂA.¦MÁ8½zIjÉâ‹¢‡cO—ˆÿƒÜäL cÒæ ÒÜ"I;y·6®¦™ö¯Ok4Š!ú®a‘Uáø´:ÀO]uuUåwž*ø!4ÞŒr‡ø÷x”wH1îŸ?øýåEÀTæð€­­ÝÉÿKøaË—¯8€ÿúsaq‰¶¸àó[žÞé©èWêË_«~LÏãw¾´·tÀ¡GF¾NLŠ[‹Ñ}EKQt]+ÄhÍàßD9K}Ê®‘+{Á·A·jF€t¬Ö`ùXš€+µ¾F|ƒg` þ1á¢_§IΕ¸ÂïÎ0Ø(‘ûüý{yÁýFÿª½‹…Zä:º™úZ(u u5•µM:Aš¾†Àõ€‚rß\¢Eÿ,-- ²øuý¯´°°5jÔð‰Ž‹-\$À2ßœwе¥¥eàüj ?¼PŠDLTŠ—D®ÍÐï*m¦íé›ÊŽîn£ÈʬÙL.ˆ-57U Å„ÑGÞ¾-of þY£˜ ªø—§Ê.¨c-4ßö¶¶6+ã(ÞÂP6ƒ5ÅYJaqžÀÕ?‹’µXŒˆ&!¾Š^Œ â¸VÁ­é5 ½h\ôÊŽ—§“8ügäææ\ç»›®fW³õÚâ¯èàRÚµ(Í0 >âkQò§~…7¾¨ASë–  “'€Žn±: +üëüëQ~lxþQ ¤T{/ ÿä;ƒÁÀã¿YaêÂ4yü7êHùìçµm{È•©“ŠßrÐÀúõïÿx Àïêø4zÚô™³æÌë8ç¬;_PÊ#_ø’ÿêuQÃRªAQ´ø)ôRïmíT~»§¡®Q_ÿöŇC·dt™ñ˨-!Ò(.@Ã÷DC‘››û©›éê2t =ø+†ÔyJ:$íÃ&=þÛzäñ¼€ò˜°Yõdõv¢Ã‰‚åÃ)âN¹û\V§*,Ê""Bñ›Ë_Úä=±$…4‚Sô9Éü3Ÿ‚ÊÈ}ôè&ÇŠ€4ˆ|IO>à˜\@¢©?/7ùÆöºÚ}'×Þº;Û:p €:ÐU Ä¿Ü`j«Ôr诬-Ïð×Téêêì!‹â¿“Wÿ øëò"ý¼"OŸ‰_H¨~‹ýûõëðÿy¨jÐÂÂnҬټ̙ã€ËCóÊ8áô?ÿµLûêÕG-æ9ý¤Eö_³ŽÖ—ž³yMÇåÜ{šŸ÷äîç<%wµ¶·›ÅX”P’²/)zâ™rkä'ê?T¿-îùg`—ºPäÒ,4©òýQeOë3öÍl'Fÿ, –‘“KwíÑ"»?$,d Ê+U°âàl9Q¼¿n›ÅÖú¡æ9U£¡?Uw{ÈI¸5ÒRšÆÁ?ñ6¬Œ§àçaì(„ø/nfY%²)´&#~:<š&,^ßò‰ÆÎºÊªªšz4·úGþ; ˆÀ²Í¯ßAüEðÏ_dô•ߊ !ü¿TÕÕ¼9´¿Ö€H™$Xz5ü7ÞÓ;p,9ù„ËXÑßÊüôÒÊÿAÿÿOþ–㦠øŸ=÷ï¥NNkO–p؇ÂóüòùU~ Ѭ®|Š<å|Š™*F¸mã››7³²nÞ¼•}ûEƒ`”uè:ÉÛÐÞ£¶jÿÕðòÁÃǹŸäæVu‰`0c¸è5‹òyÔ§È»µÕ==<þ;õmF B&N2ªÌ3ïÃ’6#÷µ6„€ÉÙ—:ûÉdò”cBÚ>šfåsÄû øïîèÓÈ}¾Ö¿ U̘°Ø‚™5½LáÍÿ'œþ‡ðäÑ£ôWþ‹Š+ºñœ£€–ˆ²è¨/ÁŠËLßb‘ÔŠ¢¯©ªª®©kíîéú&â¿C0;Mþ{Þ¼ø/á¡ßܬÓéa+d{ÊÀޜ˷ó J*ªëêªs4šÜþ]ÝØƒÍü l¶» 8]­MM8ü›ª’“““€‘ä?8ý-d1pÔüåðÿëþ¯ø·ž0K"€…+ÿYQi©¶T”Â/Þ7šˆÂ¢Y^rý(€ŽBÍ0æðCÉʹ÷©…'€n]y•Á+ÄòÌfÝ«7¯gÜÊyÜ$â¿«¥[õrJ¢E;[q*~AwyiYÅ7ÿmõ¯ò d@˜Ti¬ªo¨k2Éw£ ¢>„ÅIJ ݉›x°Ž–6@X‚•Ïá9ƒâߤ+ié–ú Œ&Ãû›/uX-ôPV»åŸ‰:fºÛ<ü“žˆú?÷éÓG9¯_äå(ü\P\M;¬å`*xH<¦FÝ¢]H-¼ ™tU@ªA³ðßÉ×?tØT˜÷‡~]]Aþ;¨þ;¾q=wÃc4éK*ëêJ¯j4iu¨ú70؃¥H ,£¾±±±¡¡QfÆ<ÿ‰'ì]?lÌèþõëoiccm9`À_€, ô?¿8 ê Vc%`¶ãÒÕ.Þ7^•pØ×J  ÍʸWÞ¦TT䬌Ɇe¢+f¼–…æËßåÖ½=oè±Q—ʺöa;Å—µrèaMõÂÊæOĸLW—¾“ráö4Ò’¼`uó(FŽDü7ç¿Èc$ É}Ƃ‚â/ÚÏ_Ú1 m¬4ÿ–­ªfc©V‚|Õ<°¼Åk4t#Ö]îÅüª@™múÆÊâÖwi)Z¤[–í6ô c(•3ƒù„™ŠÏñøOàçåÉ£K9šÈ°¸´+W2ßëô Ù€D¸*’Ð2R(dvXµâ Ì—æJÈÝF ÿ\?”Y|ëmÕ+Žj>~äz~˜ë>òAw9aÁᱩ/+«óR4šgí(üÑÍ0=ÝÝF©æ@!75ò(€ÇÝã“q11 »6¬^ç¸j9€[ Öƒ­àú½ƒàû<üÕ÷?ÿ…i@½áßrÜÌÙ’°ô_W¯ °ý×>—”"ò*##óG/­]*Nê9œóË0,C%h¢ñ ›å·Dügeå”ð!C³±EWŽ.Hd2vAgÚØ1{SŒ&£VߦïÚg—¶¤@ˆ5§¿”ÔW»N2ÈùÚ‘Ôž ÙÙVdï5€'v”ƒr+ð¯¯zö‚‘€‘ €º÷>~üþÕDmeiÒ“¥jb¡)㵘P‰ògsç ’ëb¬zxêÄÙœ‚ʼÛOîådœ9—žœ”tþ)BŸlie‡ î ß„ܱæÎ—§y÷ÿJ®(·ÏDlß¼zÉš¤K—._Ê-,yتo3ãÂR¿ò?1MUyî6à»: þ«ê ííüŸî)ÿÎk®äÚ_½zõ.?ÿã{q(@þ÷wâ·§ÑAáOk¾æœÔœªAá]Œº¥ùÒŒ¹³Q–ÈMuo¼68­]ï²té’%Ëþ]1ýÖ¶œ Ä ‡Nþú9ô «‰ügÿ½Ù' 0ä!ð@®V2´9Ÿèe‡m³ ƒ[a¢6GNQè}JR)áÀ£òv.í"lùFû½FN•w0Áa›h’ô@Ú¥ëŠ?eì_LK»R§k €N®Mµ@¢”vF±@–i¾•·Aý_+â¿õåKF¶¤{8¶bº ïEùX*p@ z,{ß& %Žg ‹•ÒÞªÍKÁ Ж¾ #áØ±ã ç®\<}úô)` &A¹×Î"7¬--¯¤½ã­]¶!ëÿKOŸã8ÿw.¯wœ1cÆß‰i—€dägÝÔ“E€Žù@3*Å-mäbµþÛàoëkyî0£ƒÃbßPáÿöiB˜·ßžÒhø·ê‘`ˆY brk2èu |X±¥9‘ Ñ¿xñÒÅKfN*âßRÿ~?í Pha9B4ÿçÌ]¾# (0ÄPðeAÿø? ÆÞÊ©îÅ‚4Ë„¬¼’åºÁhØájåþM„²Wº»{JÏ¥_I*EÎþž›ûìEÞ»/5Íú`tw™¸àzOh±]ÀÄf¾”~mÒ·Š-˜wþ4Pnêø€8]…Î’kKV÷¤‘)·;Ò³ak`¯‰^ÂI‹zŒ=?ÞJÍÂ?¿¬ªK*Ò^u—â ê°K¥I¬<‰|¦TRrƒ7u¶sûj.s;YxH>¯ÅnÛ{ÀÊðecù‡ƒ8™šš)ço¥_8wæ||Êèù'lŸ3À^â% þÓ.]¾|-×sËæÍ®õ,‘fVÑ©Á—5´'vV«Ùdh3ô0ÝðWÜàVÓíØä¤Èð˜3Ú?ªªxýßÿ>sÅa2š€{™Ã ‹Çpÿ./+ü™¥‰ñ Ø÷©ì¢F“$ªÿæüÉM,F l¬–ïjú›k£¸!¹‹.œí8gÞ¢sÆÚ ö¿€ÿ2üì«°œ Âμu¾þ¡ ÿ.”–•is322 ”ÅÇJ¥+±‚ hàŽs²¥µEo$#ˆ>ÅÿÍÛïu Äê““Ÿ1`ê­dèêÑAÏñÇ™€8à £†/ÚŠæ¯ZmiyU½Ñ,*lCÁƒôôK'9ük’o~içñ¯kj"爾:ªnh€b”‡`£5Öüÿh“¤º˜eLÒ«ŸA u_£ ÃÞ;N+0áÆC]F¶2”ÝÊ‹‘‰¯eƒ—騣MEÁ/0PãgòPîlÓò¢£D{ùÿí\Ä/'ãªÆ×uéÊì§¹WƒAô;8Ĥ]JKƒpéÊÑM›6nÝæúŽ–UEvTC{½fßTUVZV^UÝX R\Ãþ½œDÆg¾þRUßÑÑ&Øÿmß*â2î¿ûvïbz֋˹ÜÄüïže­9ùòí£ä?ÿÀ€ˆO“4šørýE×á8 ;Ýü]¨úGRØ&Ž)hnN^¼hÑÒ…ó'5jÜ´©ãGÚqð·ü ÿýúý$ð§Ú A6“EøÏY´Í/P?g†=Ô–øg\/Ðuå‡r3ßn”ø§×Y×s°Åq'kx…àÿÆû%mÝ݆ó)'“òºd§ªólJ_š›Eè1‰ã…{~ Q[Z¡ë1 ø7禧_Nâñ¯I¸úYñÜ­z¬³À©kìliëé2vӆ泼ý¯m–ñ_÷íHëîé1\¾óüų¯_½yýîÝ»Tó+Œ^¬éf–rbK–7­*”HaŒÝÆÎC§Á4$€ºv8¶à4 `ÄC;þ±žw]àJ¤b±m£<&àð—~`Û|ǹ3D¤ŸtŸË¡ßaïÅ4ÞüÀåÝ{£B¯×‚Ê3 }gªEJMQdØB ÊÎcEi™0­¢²ªº˜egà„…Çg—ÔÈþ{K€wàÁ”³©P.>áð/Ež\ŠX9¾KÜ¥þ~~~þᩇââããï€Z};žkioMþ9ã¿Ûˆ§×Ìö´µŒí"þ,™ëèè8gÖøaÆ 1|˜½€+*þÕçý ‡ P_l9ØÖÎÞ~Ä,ýÀüßé/ZÿA<þ÷žzûâÿFÞ*#9sœl–ý¯"ðJ>«z¤ó•;¶â6†ÿ›Ùï*´“SR’s»d¨Íá €È­m]þ›JeøÑÐ-¢âSfú¥Dÿšä«ù͆.ý:]c–>ZÈÍ £+xû*¿Hû¥ìGåךv#±H2ÈEÐÿz þúšRÄÿ‡FÊ÷#I©/]˺•sÿ¾¶µ»[*=eg™DLRÁ!G¥‹Ð½*#å3y¶fz:›ëëjkªkëšt­ @u?ê+uyäñijÐêáê¥Y*u­¶²‹x'­°Î®.›ÅÁaéNsxí¿2õ’$—/Ÿ:‘˜”r:ýzÖ݇yoó¿Twh³5Õ„o|~d%„¦N˜ÞÂq«¨ÇÞD ÝyP“U)øÿ@´^^^¾añg8¸“‡DÞf‡-›eù¶]þþøù¬Ù}"îĉԎÊsq'¸v¯ÑÏxôw㓆€:iåÂ~=m¼Ðüjý\ˆÉ93Çeˆ½moøW Üuhô#Àoe7lüøIӦ͘6SÄ¿£³W¯ø…ÿ€ ‚]†ðÏÈ|úµJœ3&1­k¯!”öqÔÜ)Ÿ”Îêa¡‡Åv›XCwE6où ø¿qít¼”fRbn7‡λʺ~ ©øçMðßV.5ÄÒ/ßuÝ|;¨ÿ”ué”F’“©õ7Ö6~í½YaŽ(cÔ½üðá£ÇsŸ½xž—_TQM!0V•–~—Õ[c©YÆ?°þ ‰“@[:wþˆÛü×ËÖÞ¶7t/$€ðÍ“j}{»¾U¯oÓï÷òöòòÜ{†3^ü?å=€'‹çÏŸð?ïï5Þ~øíÙñBþâ¡õ¯Ñ脚7tòðïBÕ?Ë´‰ã~º»Ú9»¸ùíGÿ³Æñøj'à_pÿ-úcø§¿ ¤¿¥ý¡ƒûüï7tpKëáfΚ- üã5o…—¿„|Á‰>-#ãÚµë9_Œ¸}J›J”12¯#@ÜÜ%NŸ©ÐT][ÛÐefò_ä½xþ2 ÜȼqEsìøñ8æüËYw_–eM»š{êlz €Bÿ-zÿ†ïr;,-­¨3ð¡ç‚g"Ä‹ø×$ÜIK¾ù®¢Jßk‹Bsej(~ýøáƒ<òøñãG¹/ó›ñË ¥¥•þuoZÞ¼Ìiúr/ýiù‹}ÇO^Ó$sÊä”ó/^¼–ý¢Â 6V2°ÁfÌHZ2ë±ÆN[Áå EæMÆ k¬ª”°ÿµB~5²ÇgxØó"Ñ@RRÂÙóy p*…¾T‹KiU»bdXCLè>÷ ûÓoxÍà¸Ÿî €ßÁÁIs‰7ÿ'à¸o<ôIϼuûéGmM]6­Ì/ž+!kääI! Q!Nná>‹^0æÎ”½PûC>ÀÀC'3Þ÷ ‹¹àééåéþÆžuv7ïUÞã+gCà÷‚ùóþçÍ›·`åfO_ÿ~Gã8àð BaÌ?UÕ-ZìmÍҸ߻é/¾¶¶Âø_ÿÙ“†ñúß¶WýOëøÝÂn(›¿€Ð0„¾µ•…•ýPûáö#fÈc~ôý¿l{@€ ÿ/ (8üèˆÿŒÛ?wŸ|/ËJŠG|múæ´Õu×Ô5¶ô˜¤ù“‚_aª­©©ièfß¿xùüÁë;þoÜÈH:{ìx\\|Bbbr2ð89sõÁ“'Oêå¹þ»ë±†XÞÀÙèLá­ÿHÁ*¿ññq±±Ç5çrÞ}G²b ¼ä‰»šC`ísˆû‚À¯€>ã¾þׄâ?ïù³ûI‘‘P""ŽœNâ?üœ;Ÿ–þàG—èF‰z\P^¢âfð–Í6žLjÜMäVA&y¸ÛV[)Êo_Ë¿ èøÏ?›H ç$ž<šp8.x e\Y—”—È%_Õib˜n¦]WQ³iÓ:—‡Ž-äŒÿéÓdùO4ÿ9üŸ÷?iù ÿ/q¿œp9ýÆÃ܂ٶWíægd¶¨1áþó%ûY$n†Ûã÷fSú^¨üy ö÷ôàDø€ßöìOLMÍ|þ*/óøþóÀxsz5ÐþüŽàoþÂå«ÖîøÀÏëæxtÿCÞ'òÊÛºáêˆú7ê‘qÿדŽÇºÛÔ¢kNœÇ;SFRõÿ@\ÿSìÿ?lì!ü‡±üë±·°}ÚÌY³g+`Þ*Ø} àŸû¼ï,@ÆõW¢‡•ðR‰öÆ+&ÆgבQ-¦༮^/¶“oÜÆj°¿¦ÞPðâųœ¼»þ¯Ÿ= äx\|¼†#HÉ)§Ò>yR)ÏÅì’@_Ž@× ÐñæVr°ß1ÙМ8vähìñ„ËÙBâ лèéAC{pȦwèÒ=ã@ÿ@¢H䢀5ü7¶ÔÉñ¿'¹]ˆØ‘qgS•rîüÍÜOuèBQ,zKÿ b‰pÁ)‰4 HEº(U±Ð–WªÑu9Ž~€ÿ\ü 8™¾Í}oDäɇ%˜ð@mC}}aѵ0·ÿý»~ÝZ—µî[fø£à²û"0ü/ô'¾˜±hÚðQ!§¯gfeÝÈÊʼ.˜WÒo´³DK¤ØÿfÉÔ‘ç+Ψ~£CpŠû媎ÄHÿ{9òvß¹#€>1IgÓ¿|’ý6ÿmÔB û!ø9™?¡; €Ã'0üŸˆöN5²Lgûvï˜[åUíèpÀîVtÚOþáÇ9QÙ¬+u‡øŸ=g*¯ÿ‡öîÿS&õ±°²¶öÿP;Ë?Œa9xä Lë+ð¿t»_@€@€¨û¹ÿÁÒ þ³ +0YHpÀl4ôèê Rã“N2p8¯©‘@««äæPÖWTUVÕÔÔ<{ž{ïåþ™™—OøLiJÊ™ÛOž|íØ¡ uÚŠ/Õ•e"TÀ1wN%Fûî9Ï«Nâbb;ŸR§PÐØ)öÚvè**«~Ôvp¡=8V‘¦'þïË ð ¹ãEAq‹Èƒ•¥¥pˆ²ï N[ôm­É ÇbSÓŽpÊ?"2â`2 þ³©çÏAçò^i]e·j €Å–aÌ”•”í\Þ—ËB«’‹GõÀÕ"þ¿Uà‡o§»O%€Ä„ ÿÖ­ÚýI@~qIqq1Oµõõõùy±{6ý»`Êš%s¸Ð&Ó‚SS¢#b÷‡ìÞ¶~ÁÜY³&NJŽ;Ÿ˜žÅÉ Ñ¸r¿J± Œ™íIAqáÍ{üœpÿÂ3‡eýâÿßêµ<0ñމ?“ùøê‘ààÀè{ù÷¶Ï±Ï‘Àüy‹6ûúÅÆcø?²g»žù°ÓÍÍÝÍÝÝ#$ñFV^‹hÑ™Z›QüWˆŠ‰ˆÚWÕü#Ôqîì©S'Âiqÿôþ¿~ÔÅ€ûó/ ÀÃl솳³7iêtPî3g!ÊÖ”Y"þç¯ó àð/õþA >Ìá?û+Y” Ì£ßa ³²¼R/ ØDT^€µ<ƒº¢¸¸•5æÞ͹÷¤¢¦úKþ³'Ù9woÜsпÁã?#å$€Øcq TO&Kr.çI^³h•V êi«kR÷]ðI‹ï_¾šáºÕuÓŸ£ˆþ×Ä <n{*éLæ )´h0è ^ç}(ùVÓɰ=\t9ôs"ZÏ)<Éo`{Úšõz}…8w Êë>Šr"!ŠÇddì ýIqI÷³ž<}úôÖåÔ9Em&zp…ûFÅ:«~†âðiâQl{µäúÓàÿE«9LÇ¿ÆÃÙÉÉ5(ÀÙÂbþ"”×Ô¤ÞóßZý.kœgÍp@á?ÝaÚÔ‰Ý6€f8}Ƭ‰#GŽ9zܘi &Ï_½`ùîÓ<܃×òèÓµ”sÎÉå[Ä1ÂvÇÇ7o>ÉK\”}¸”z61"%€`÷¹³—¬ß†€ÏÞç®ÅGøîv÷:ô0щǽdÌs\¾iÏÁq2þOòrssK9/-éï¾ÃÃ3(£²úÉÓf(hü7éšø_®"pŸŸhØ…úºì%s&2dÄ{;;»!CìlzÓÿýþêÓ‡> ¸¿í°¡C†6tè0P®cÇŽ™0ešƒÈ‡Ú;ˆÀ‚~‚þ”Ç^‚ø¿‹®xlߘ‹u²Ê%”б©¼¤›?‹›`Ô ¼3­üyüó m(,Ò6t=» äÉ—šÊ²œ«©é"ì…ÿ™™™Ž•@4Àgê'Í-Ò‚ŒmFq§ÎêNj¿ñ>é§T—u.k7zŠG àDxPÔñÇâOž{¤Emë+Ë^åæ½+j6Òô  ž‡?g<ã¹ï¿Á•áZuåèìi­öÓiˆÿ˜£1œù €ðÃ)"öϤžŠö÷ Õää>ÿÿâ|ò…û…z#|­'c"b€Š÷*ÁNáyW–‚$1"U'ÿߦ?'Åþtàd€“ÓÊÍÙ4ä–pº¿¨ðc^úYÍ•¬¬3ñanëDø»¬œ?b^†ÿ”‰Ç;cÊÈ#ö‡C¾=fä¤5™þ¯JÀ ­bÙ¢ÿ±Bi€ùÿ7oŠ8€Óÿé©gS¢B1\ï0cÁêõ®(luóÛ¼ÕyÙÔ)£¦ì^ä ^&€y 7D—õü±ÐnJñ‰ <¢eíü!øuþ+}<=¼½vy튩}ºxöx;[øvÂ'mø/‡ÿ¿¨Në¡Ã† —&5v" €Y³'³±±1]ÀÿJNýûû€B/àÁ+×úTôµ¶ÅÐÕÓ­« ¡Z 5RáõK–¯Xåâ†éÿøøØàÝáË"ýáSdÍ–N]mMe~¥$]WëÓûP^~kniªÀWPÑ–Ü‰Šæ  ?ÔÇuóŽÍÿ„ÁàÙ˜€í;áËÞájïÛ¶oJ¾’™•sêY£¼d(ÆŽÞñOïµ ¾Š t †Úoº¶Žn NNûSáÿ¥´àèJ¿8*D¯wZé\hÜ@9Œ  òÙ±õ¿u’úÿg„¿@ÐòŸä¿zúàÙ»üwEú¯’ÐPcÒ–/^²tÙêLâûíÞíuxçï?GÑÞQW«ã"‚ÈÎÎŽ¢«ν|[ÿî½ÚmoÿCˆŒpŸÍ}µå`RjÂnîïÛDØæ¾}‡g@´&5*r_âµw ðý&PT\7*ÛÓM-miShè= …Oï¿)~úî£òÅè7Ó½³1š$MxøÞð))GýbL()SÁ™6ÙiU¨†Ú°â?ÌcþÒ-Á\€£øéó/ û?îÿ—5«͘.ªÿéÓ¦L3r$9­ ø‡ 0e籄„S©çÎ] p»¬£ÇhìáÜ"#c"£ü2ü=uùÙW/¥]yX ßÈ£$€îú7€òK9ç?ÿÍ›—é©©ñ8üC×X[YY ¶¶>f”-{+¸ü–Å k˱sø‡±È>"þcTì7ww÷¾WêššªÊrÓã¢EðCˆá(bÿnn+&Uè•ðçÿS €ÁChå:l¨ "v£&Î^½GÂ?×À›ÿAá‡.¦_½–™]ΈcÒx€ÓÚŸ¼ŸPS•/îf]>wö̙ӀN*äð_à_à_ð (ÿlNb—­KÎTà?3}__Àß ¨ƒ‡Ä;«IÐ$$;°oß¾K:þºê‚Ï>}âÂå«×¯ÞùUÂýh¼Ú¾Ȳñ̈õóõݼx±gïÔ!`שּׂ®¬­kiëèà÷uÂÑõàò)—r¨ØÊyVÄÅýKåN€{þDøþÍ}Ÿ·ãèÙ³Qnú²°mÛvooßÐØ½‘1‡4w‹¿Õµ¾ùñ£®¡U§ðbÑ¢çÖg4µ5ÝOIág8Ÿ¼ÓÈ €ÀªEÜú~\ŽuE†îÙå±cGL‡/Zmqqa~>\Ÿ¬TÀÿ§˜•+<ŽQ ¿#BÖM4o3쀚Ÿs¼ۿ üÏyÿó9ôO‡èŸ:eÜ(ªÒ'\€Q Bb5ŸœzñâŬJPí"-w³ÂˆyD$ L“¾¡üÙËiœ¤g×Ñ"V]íß!|*+ûüÆ_g¤jVm!Ägœ%'ºßʲïï¿õùí?þ3Wÿÿ‰€c{Õô¿›ûöíÁ·JZî¼n³Œûû!â¹fí†Ù¶$þ¡ùð“á?ÁP⿯-]ýÛ¡ø·±µ6ÊÑŸÿI=€@Îè¿„JH}™_ÒÌèãõ1*Aÿ¸ÑÙÓüãÖÕËNМNæ ×ÿ€êü >ß¹{—ǦÓú32þ%¸®   ‹Ø ¸)*jßÁ˜h€ÿ}°ÿ¯©Q›šõäÈo/¯Ýþ»#"cޤ×××ìË@ƚŋ—üs$×ÿq¡>¾¾{" þ¥å‰àokk­ùXø,çæµøƒq·Š::yyfåÔéŒÙxˆÀÿþýw‹µÒâIÜ2J÷$ýä Ñþf»?{Ì‹Wÿ®Û$€/…#1££÷%>Ö–W|ûú£^×Ҫ׷ÀV´dÔÊ‚½€LF]ñy)wÕÜPL†—ÄFë5WFËøßìïëµ#øÃ%ò?½yvïîõ‹®Ý¸‘“÷¾˜Ãÿ›ÐUÎë¨]û×¹†û,˜0nÂ|_€{}ÿ^ëxð»p,àâ²zÉ,`õsøŸ6qì¨_?q›a÷, ûj’ΞL*…Ð‰Š‘7E9Ê€k¢&TÛ•4Q²tJ¥»Þõ?òi_½æð;uÏèeÁþƒÿ³·€õàÁýþìó/cHóßQÀÿ¼îR@\ðväm¾¸þß¾ÝÃ}¥“ó?<|ýüû»;¯X1kiÿü€‹ „ÿúц¤Âø0\líìFmö,ÿ¡Uíííu1ûž˜Ú‘E`m?È©ÀÜM„SÐeüöîáù³gSR’N‰‰H„øOåõ??ÓI§Óµ4k!þ?Bï?û6Àÿíí‹ã”úÿFæùˆà Ý»¼½==á„ o/ï]¾»|"böí+þw6îØþ¨ƒ'vyyÂáÚà ßÝ1uuõu4Ô•Bøºhñ’q8þ5ñ1¾Àð9{46î¯ÿõ …ù÷RŽŒŒŒÜ EpäùªNH-g’OspêzŽä·vš÷k8cæTê-ø² š·bŽæspbþÌ™.1á[ÿqp øÞ¹3tíÔ1£ÆMœ ”à‚°ä“AÛx'·m®îž!1ã2+Zôm¨tű×bAsËž M¿±¼ìK®ˆÿS¯;%PÈÃSwWtÒ„¡®þƒƒî–~¾| FP¢P¢cŽ]¸“ûùnÐZgç;Ž$(ñçû¯ã¤ þãÆO^è1gᦠŽÂvpVÿZÁpY³x&ôû¡Lًú»ñÀQ ±Üà¯Ø#ûÎTé;0õO¢¿2?KVýœÜö¿ÉhÐ~Ô5×ÿøQQZ^QU[UÛÒm* ü¡¼?Y©)ÛÖ‘ú?$xƒ•Œ‹þüOÄÿ Y4óŽpŽ‘GÜ©Šÿí›9.^ãáëã¹iÙäñ3—lóÞ-ÀžuNNÎóFúßÚjÐ@È?}üþG_%þÉ!@íéêߎ@?p0lì¦þÜë¾~\ï_ÈÞ\aùäå\  ©*z]ݺE³.=lú¨YS·¡]_÷<ÑgýºUkV:;-;sæ|O 4²ª TUÜL9uJ½óU.üÏ9é‹$ÿ_Â?ørí¸}^vð^»üÃcöEû{Â^ZO”*üC (+Ñ–”\_¶x±ë BÿkŽ@`OèAèdSw'ØgwP°B¢Oçkƒ¼|÷Š=‘r:%-[ÂÿýH‡àáqÏáøßü=C‡ 9zİaÃ&:zîŽtž3Öaæ48ÄmÔ˜ÉÓ¦/ KÑx¹Ò,¸éó  G?÷>AÜý‚KS ø×ñѺ¤øxŽÙŸèüsµf4›„1 Ý=_sH£Ýù^¯ ‡wŠ¡Šhûp+fßÍ¥ä@ggçU~ !pæ„ñPý7aö–&Œ›½ÃÿÞ|à_ €5+æN‡Á@|SÇô Äúáàw‚Ÿ£ GŽÜ*m–ÀßÑMŸ©¸•žFȵ²ªšŠÒÇéçÓîçõ’“sïANîƒç¥ú}kë þóžÞϺ›{íTò17ÿ X6 –ño9È¢¯ÿÿ¢ºÿÿo?*ã?.rû6:þݶ»ÿû·£“û®mÿ͜ĕÇÔ¹ëÝ|üÿð¿l4þ³Ô_²?úüÙWa#þRQÿC øÛð|`ë¸~õÊÕóçØ¥¹{]'À¾Qñp/váÚU‡öAÚéSIÉé…øáÙ–‚Ü« .+€€–ñ?syXŒ–ÖÔTß» е}­Óÿï¹þ?ÎÈú7éºÒþ¿qq¯×N%þ9 ð Ž ñæ'i‘H ª^ÈÅÿ'€ÿïs"^îä‡FúBñ‹†À±Cë›0oß%ü¡äïã¹Ëï‘øÓ§¯¡!@ékέ¸ °KÀÐx‹½ý˜ÅA^SGÂÞnNFŽ?yÚt§ýÉ{yðoݺՕwï³pcœÚùµä%+ËÄáüëjø.Dëïðð×$d×]--n\¬6ÆWô¥D#zÿà6üà¸ó±B”"*:ᘘqAk@5nަ±ë'އ=€%³F=ǪÿíëEüCàŸ%3§Oãàï0¥7ã_&ð1juÌa^õÇrø?z4îê»ÿýL×ÕK$üÓ2Þä?¹w;3ózÆu©-ݼy3§´¡¹µµµ1ÿEF¤¯§DpòB•ø_ŒØÿ@þ)XSé2wW‚ÿ°-ªøßâËÝeo?dÈPþööÃf9Ïjocmc?dÏ£ÆL˜º4)f;‡}Þ@x;Žä¶(,€¶6~ Œú5de¤.2|Ñ–Hð/ÿò:þØ‘CûöE‡ÇŒŠõ ?óÝhjüò®âM}gÎ$EQ¡ÁþA;þ[±hõÆí{öJðŠ–l€(hp›aîÿ®üÇ÷ ÿIøÿdô¼¡£ÇðÀ¸±£@ÆÆ.÷Y<Â~ø¤E«×¬,gýƒðŸ>}üÏà/Z#gx9È Msé´»ÊÊ÷]Â…üù0èE†ÿÅ´+W¯‹‚@ΛÛéû7¯‡µ†Kè¿þ!8{´²Ä À¢Ä`¿‰sUðïøÏ~Ù8æºYÿîëfMš8f´à £t'màÃ{¶ýï´p†¸öo¿>þ'ƒ€Ä»@¬hºß¾ÿ€Á*êPÁÐÑ£V-;|çî{÷îåäT ø7ÂW °úF=ÓÐÓΖ:q8 ãËÉâš°1nÕu·Oß µ?Ä¿Ó|HóNñ^½ÐaUl‚Ïzn…sÿŽ^Büó€Ù7ŽfdfÀ!@€¶áò£Ðˆ¥àÇtÃuÝܹS'O™8qªãÆÿñôëêêjÊ´¡žÞ{–.^¼xÏ !ð'Ò@üa_ÿ1ÇC8êíÝ;þ àµÞeÓ–s¤òOÝ]p|÷’ ÿͱ±³³··ƒè·³<Ø~Mb5ؤ€‘#G™æ·u‹¨÷1pÝêºÍ#&‚nÉ$àô÷è*bÜÖü»z÷î}š­4S'ëÄÿݾ¾>°—Äüó:”–(tßô‚× åñ µ—CÖ;-X¶|)l·;¹Èøi@À?”Ȩˆ½®Îkýh$üŸ<ÉÀ±uvƒíGŒ3vôèÑcF6tظ)CmmíGL_ÆÁŠú;ÇAÀÿ¤Q¿ŠÿÑÓýŽ@à€Ëÿ=úaeë[çŸÊ‘Oÿ…iHè_/Éøç@R)é±!®k׈IÀWŒ…úy¸®_é´Ð ¾s g€þ}þ÷?ë©*øwt\+Äÿâ Ÿ´†ŠW×ÕsG”Uÿ°aÜçøÍ{¸U÷ü­¿GÛêߢßo¨üAXÄÀ¤ý?Ôz 8ÃBþ608líÚ,NÿCÑòï@…½Ë=ïOh23ó_¿}w¯äãéõF5RøGotv^±·´½£³äÂ…£VrÂyÎNË–,œ5cÖß«—N7n̘™[¶¯^¿䤰¨°àÓGû·¹ÿIáW’‚œI={áRúùäã‡ã4'Ï^8àE#T6Íš(Êlç-À"¨o¨¯¯©ùpȇw\Wÿßë8üxA4ñ°ÿŸsþáïÑo/Äý§s¿Ûz§%{oãð?Å¡p@À–IC'N¶ãâßy‹û`kÛ!Æq>ÀȱKçÎ^-è{ÑúG8À#¾ÂYJH3TÿF“ÑÐynï¦Õ¼lÌâð¯Õ~Nܰ›ë$õâzB¹@¨×î]Þ»|vù{{ek[:…wÓ=ö^,7ÛK×{†“€JdddTÀ:ç-~Oh î—ð¯Ù1| ¥••ÝÐ!Cíç -Ö~èèÎkÖ¬úbkÀ?oýOýsøçgŽ™±ûHœñ â?öøÉë/j²* F)È å*€ü þSàJÆu¥™y%fË:—5ˆüó;P‹‹FÙÙ æÄÊ'K‹¾¿ÙN¢â윻*Jvÿ× [Nÿ뚿'Ê>Ð0ñwøä{xÿ[ŽÆzÿáàŸ¾þÉ9À+P›AÜñßÕÕ?÷¨Ù.Ñw%üç¼úØÞч–Ô„ÂNÁˆs)1Ñ‘)÷ ä‰2­OSyôGÀ¨ŸâÖ²»9‡ÝÿY)Xÿ+apåúÍÿ.›;kæ´ PMŒu˜·XxÁQvî:µ«ƒ8¸uûöí[³W,œ°ÑÏß?,úh¸Ða»|£Ã‚|= ÿîOàÀ?~,Øà 9LÜ<þwluYºhÓÑC»÷<|8öøá˜ˆ¨˜}‡ìðï{”Çÿñãû=<}ƒŒ<Ý|ýüiÀ.÷.›RQøç\€ã¦ƒƒ6¸ÿç¾sºõ@k ÿ¶V˜ØØ Êé¸q3×+‘/ÀöÀCW?Ô¡ð×ë8Ûߨõ&ñ?û«ÀßæKZ8Içá٘ݻ¼¼½ÚvûìÃvÚv&‰Çi;Ûg&3ãÄ Í3ƒìbw‘ÉîìÎìnvg1˜ÌÎî$ñd<‹$ÿì{¯îbEµäX±õml‰ªëóû}¿÷êQ£aEzý¼¼6öAíP“(’ŸüÃ>øàÛœþì¿ø—ùÕ¯ÿêæ§k_ùð£yýÓ÷w¾ôÊ•Z•ÕÂ7>|ðìÊèðp­6\†ŸÀÕF§ç+Ù\6“އÃáhº·X*MÕ @¯O­lüc`øöï½úôcˆÿÝœ^¯7š zÎ@Îÿn‡ŒpI¹<¾€?žÉfû—–—åà³Z\\ê ?ÜsüÿôGÿò—ÿçß<=ÅÒ? Àøó?ú·_»ymg‹=f¢À‰ðß܆‘n}?|úþ;?øÿñÇíH/àžþò…µ€ølºRè¯ÌîÝz‘Áÿµû£=Ý)§ }æšµZÌf³ÅîM÷•úº³qŦ%éů«ÏÜøxûÎ]ôÅíÛÏ?y¡%™Œ‡ü¶®ÉåÝ÷~üÿ~õëß|óÍ·øOÊÿûßzÿë[~º:96Ø[ü×òmq¿Ãn´Øh{h—Çãóo ¶åºdôwuuteÚa¨]|äÞË \ 9èöù:þW&“^!øü}ÉÅ}@ÿÕË‹£rÂ%:ª6À?eÐÊ€LÊ¿‘´^'!ØÕ¡/}øÿî‡ß|ýé‡ F^i3è¡t@z‚v¢àrÚäÀíóSÙ\®2/a^ §–oýæýŸ‚ÿãoö×wþëÿýÁ c#¼@ú»ô½ç¯]ÞfÐWHÿ[Û;;;»;;Ìǽƒ7o¿ýý¿ýø§o—eqoOåÒ›2òŸzŠãÿÉÇ× m.\gJÍ\½óÊ«ÿGÚ\—K~À¿Í ù·XnO8³ëuzt jÍÀxŽ¡þk/ܾÍG€Û½°§: ñ¶ù{Þýîòö›Là€rþGz*M‘d°\NÛGÆjÅždØÍ€¯€¿ë¥ÅÀßÖ)ç?鲚¨H7ò= ý?;èpЉ +2úWVF#òüÏ*:vùÊÕ«W÷G+ÕJ¥Zlå˜þ-”,ÿË€N–ÿÑßpÛ%Û$§wlròÌÿßb²ÿ¿ÿh¯ ®¯ÚÄÒî5ŽÿƒG?ðÿù_¼÷„ÿýK|ú_þÝû‹#ÿUÿj­:‚ò.Û iéì-Èó¡ò?`&8»¹% Û‡À\¿~°¿¹¡?HÿS=-(ùÃ÷Î…|Ìj'8‘”/˜í+V&֗ǪSÛ’ôÏ„ G¡ùï@{.› JÓàÝát§‹Óëb0ß^_ߨèëV_¾{ãú!«½$®ç€‘´Ãࢭv…à ÏæzgeYYüÅôÅÇ|ÿ»ßûÑŸøþ—ï¿üÂæõ»“0ñ£ô?Ì€¹kWvÁñR‚»í©ö®>sÿOþÑ÷ÆÙÜ•ïFïùžÞÒä•›Ò´ÿ$Ïÿcûã1“\E:Onú±{¯¼öÚ«û>®ùwÚ(3/»—$IÊ€®AÉb%Ëãv{8àÔÿÄm%1‘àzûXÈïÏ>þ:ÿÁƒo2àHþ QàŸôe¾@{!—¹i%ðEüûÜâ ÀÒÊš}^qD™âŸïŠ ¼ðò‹ý0wÔ–%Þò_ø˜Þ}>Ÿ ƒkÿ«WVP-F ÿNÿfcÿ˜WÍÿ‡Ï例’‡têå¿ÃáJOLNÞÿ€çÿ{?û&¨÷@,ªŒŽ¯ì]eÀÁ3ÿEàÿ'ßyáÿÚý1ÿñç߸<<¬ÿ«µáZ€L* @(k Žÿi¦ñÅ­-Yعù¿~pyKÿ•Ñ\¥~øž˜p™­NÚiYº8'áŸÿ«LùÿÒ½_|&®Y« º.Œ‘tuåðŠ(ûoü××g#_ÿðÃ÷ž@äðpxpµ¬ø×éL&³Ó‚k5¸UŽ?(@ &s#u¾¾1UÁüðÈD±<:1;?R,•†*Uîðs`d|mƒMþLÅ-)ýÐ ìÝxúÿü½àzmoK¦‰x:•íìÎ÷ô Žn>ò„˜ÿ'¸¯ݬŸ"Ó@w\|îþ«/6É?#={RVx=ƒw«ÝéRkø’»Šü3ºÞ‹øOÆþ¹/½ù€79‰ù[Îÿ;+6’µ¡7< èqúu¯SÌ¿/#å?c†û……PúïŠ:S7v“©®…Iò_Y™Ïû”å¶Ìï^¾rùò6‚©rËùÇø7 üëå «Y+{ˆlTüÇ' ÿ0ÿ£Àw?ú¨Z.ƒPÊ[W¯\ÝÛ¿zðÌ…êÿ¿}6ÿ^{õµ§øôùÝÃéZM‚•m ÖF{rLH@þCáxç€ÿB¡Òmá)àÿ×™k™}PÒ^»Á°w–Þõæ¤-Á€Ê¤Ÿ‰! ˜™›ÞÚ•¦ðù:€gbÈ»¢VhÕý‰ôàô&Çÿå °A`«V;2×ÞzÿÚ5ÿÃV!ˆ"2Ç¿U@ðúƒ™ÜÀt}åég|À…ZO'Êͽ==ù|±2,c†G¦V7ïCÀ†ÜÈÓ?Œ»»¼ögOå»»2~§Í®iÚáOe²ùÚ¥Çdu? oÖ¤èꊎí<}˜QFÉNQfI`ó¿DCž$+°.’ p9Ÿ|^•ÿ[ƒL±öÇoÈè—€ºúÿÙ(ÅðOàåô¸·CD{}@üû+ãi@‚"dÆ4F‚9,üMiuD'wåâ¿ÏúPÜ™•\»Ð¸Ü¾P[u¤ÿ6û_ší `|ö@еM‡¢ÿ×Pbî­B‰/’›–qÏÛh«Ùl{pý[kþ‡™YsËS£Ãž>P'tƒŸííÏ÷ööúG—7ùßÙ™õÛlrDa °€ÍsÅ[ÓíÕ™•½Gþ7kòñe(œnÄ¿•qÿ| ÂD«#3¥ŒI«7‘(XÌ&’Ga4Û\C¾ DÿóOíN0õÔˆí¼ñ¦Œ~I5Þö!þqœA0h“þüÁ~ù:EøçdGÅ‚€²ZMàkGá&ÿÅ •Êd—¦ŽƒK‘$­v‡ÛÀø ôÚ *C1Qûßí?¡À¿ €£ý¿NÝÿ§'''aý? ý?ˆï}ô¿Juü¯]½ûƒþèã··ºHÛÛÛ[ »lom̲[}iJÔû«²øæ@µÐŽZ€™l.Ó–„ Þ%¯C vÎp DŸi.KÏD»ÜåƒWfºRÉDnFšþg;$ø'¢”FƒñΈ%Ÿÿh‰ŒoÉÀÎÞÕ«Ï!€Vh VP«²¥ÍÃkÛ,þÓ] ¢ˆÿƒÕÏ?&vd¸¢ů@ f4‚ÒŒ0ê1½ÉêtñöŸ—¶‰.=%Oü{Ïß~öêto+[þƒø»õUÀ?2ÞxãK¯ÜþÖ­ç»óÊý—^üÂKwž½óÊ—ßó âO¹ÐŒé)ÔéUÀúyá ýI£Æœñ˜eí„ý Cnn…Mÿ³Ý§ËmÆ Fƒä7ðn4F“•5>Ë@…D%Àä|þßj± øÃ9jýÿzájùßÕé‡üO<@üß›|°À0/Ž“Ûמû×»ý_»'?‚÷Ä¥23Ê÷þª `ø¸b¦ nWýAfìÌŠæbX(Üfv{¢³—×Ç;R°¾Xã¡Ð*Á?±ÃÝJ#i `"Ó«{lØÙÞZ_ZX¹tý‰'Ÿ| ¼xïî[ë2"¬64ÁÍ×:½¿»zÿkÓ¹ ƒ¿¿°Ï™hâBÿ÷_ •Œ°¿Ue}57øÏfú†ªÃubÓ?øªØÛU?T~tyK‘ÿ­~ÚfUWŠ$L8”%Ð9½´¾>hU¼¢ìsóù_ê ðö‘,´¬¦ÃøH©·¸šò„|V°N„ X»ˆìÿÚD{(À*ÿÛ9\ÿóoTæßæð©Éúî?ÿi¡òß1X‘§~.ý£€[TÆ¿£³³wø¢²˜ ¨öÂ",žH2BÖ]LH˜µÿ7Ë¥UëèP¸f1‚p{Ý~Ÿù.»µÿø£Os1àÑ‚UkOFãIN! ò(ÈýÞxýî#ËÙÖ–D2É\ ÉtWOoijjqíúÞ`Ú€_„öŸ¶Ê´ÀXI‹ÿfÑ 8›üMz­F«!Ó| Û-ß#…‹v58¶ù_´ˆÆ…¥ˆFÐãù¯”Òn'2€~§ eŠM™-[ÈGÿ¥ÜÿsåXø!ÿSïþ¯‚0Z‡iâòÚŪÂÝ­óÛÛ›ÿ›[›(ÿƒí®©³Ï€¡ÞölȨÕQΣp$Ù%µƒùÓË÷GçtGzz¢q–ôÖâS†¯]šÌ%dü›Ð‰ÍŽ”4[¶¶06?ÎÌ+e¼?œ§3Ç4-›P©»Õ®Ðäå@kàý;{»:ºÃò+‰´ynEйM¤JË(,MvÈñO$bÌ•¥Åëû%é÷[(ÒlÂA1f")[ûHmt¤Jeºòi3åòÊù‡m1 äz=öâT?—ýýþ€ŒÉÿ×._Þ߬øÙ“Š$Þþa T®oÿóšíøç U%ü‡G¸/Êy1üíÙ––\*ìqø#©lÏôK¼, ,g >ìñÃqܨ—Ï%aE5Í¿©™KTA“«öòŸæk£/Ž%@*ûý‘ti ·…wIÑedø¥Z®xáð¿ßcü+F3L%Ø“b ,àXá˜A§!l°ÃrÔö»ªË+3ù¡Wâöô0 ¼aÂèåù/&ØYUÀ0VH£Œ?Ól ™Vâ?Td4Áð?ykqDNÿ@>Ð8#*³¾)Îÿ›[Ó þGE€Zu(ïq1aËdøOt-ÀAEÕR <ì0zCQpêã-UèÖ³õø'"ì Oz“I˜/À?Ò N{6ô£5Ð[.·„b-ùEyè:àl5l`ûWÈϹÀÿàÆáå “³Õ|O{©ÁD§W If Àì\P¨ÿQñ?9\ëÊf» %yõ/ Õ¾Qîyì.— ÆÚ“ì_VÎÿ;; †€äñ‡À¨Ø`j0 ÄPê$ü9fnß~vÙ%zÄHY)Ò‹þ™\¯Ä®Ì¤ÿR£×%˵¹ÇƼ¨ù¯Ët”TDVi°rN”°˜I-!áoE%@Xå¹iS#i³Q_Ï? žé飠3}=%4á¼e…ãhfŸGE ~Q Î2™í…g‹ÿ Žÿ:ó_Џ\fŠ»pÜQCÓJ¶yþaþ¯4‘ÿûSV=;Œ¡³ I@±ö>Þþ¶61‡Iƒa¤-;ÌÉ¥µõ¥:óåçžG'å8Zœ àÝ(€ ‡ÃCýÉ`$‘íjÞ×Q7x sK<:Òë ð! 5½S±X@ägQÃñ¡¢íVžÀŽ—ë¦,.L ÷ƒTžËfûÊåü/¨ÐÙÑÔÃ@«h¶ªÝ^Y爗‚µŽ†üÃS.œt7(EJµ(‹¡MU¨ÊÒ¶Þ¹™©ÿÓî`Ð’AT™ÿTƒÿLŠyG â&!ÿª‘È`4èô¤”þÞY-³÷u:"ðoW«aD²¶G(}=þÊû¢<Žazs°c CSÿ3b†:ÿÍFB‰Sº6!å¬"Ïþ-vµƒ¸ Áœ–¤ÿÍÍ Íð_Ê…q-B®`(œºù\ÖÑìžX)ð4æÞÉå mJü{ø4ˆ®7è ¸¤2pƒè\ ¶h: GRmvв»°€Õ €†PK9=<ÿ®dèpük´Ü%Ã>®T "Àá tÌsóý–Ùü¿87ÖוË"åŠÕ£ð¯:r™tº- C@«ønè^TtÛÓ!›EÞ¦“8Xî RªŒ65þ¹ l,iú2UY¼³«Xosû¢q;fчÿ÷ßÃtÿfùzRK yÿ [åZ“ÔÿË:Ÿ,sPæÎ|w¨‰'£®Ž¬~8V®h¦ø/Ä\ÍòÏmÎÑ2Yêñ'Œ]å1¶ügø—à_*õ&maóorOnˆù_©òeÌ _ö¦Ã”‘ÛX¸·f?cþóùÎV’l®Šáe‰µ¦”øZ²˜ŒùËàƒF\Ç; Þ¬çòÂáh[–¦HkÀ®„[ ë‡ =\à‘¤6m]ë•YÍÐ.oËœë³,Êý³eàû3 ÿ] úWà_x¨V-vgZSÉTª% gWx­¢Ùª6{ Q˜Ùf=€ônÀ2p pF—D€úÝR3RþOþèKÃu}vt°)?ÀÃEƒAqþOfFÙôŸ~áO4ÜŒò/kF‰iÓ·ÄšÚ+—¬ÏÿõücðMg¤s¥Je( ðOrX þfn©kÐmztLÒÿc¦ý–˜`¨ÐÛî·ÁÑ`\œ ,åõ-~pskU†º’ÊQбþüq4xSÝ=ù\«›¶:“;zƒDT(žHÄ•ø· ?$æ_üËðÎI\8(L‡/iMƒúŸpÔ7ø €f²Ñââò¿¤lQå_eðù‡æQàoü¿0Ô‘åÔÞ§Üü4Øicz`©Tª5ÝqŠ–¬±Ùžp2?¼¨àSv«¹‘ L¸TuíBµ`=¯Êb³ÒzõÙ Î(8ë$æŒ ü·'g`ûoºWØb ñ¯:˜¤“ø‹µ™’ôÙ|>›©3¥?àî¯T„ƒê@‡®Qòo–ÂR7öÎ]÷ÿFøâ¿84Ø—‹ºQ—òOd7Åöÿbí(ü+Å‹N'5+Z}¬«+DS„N§A)ø˜‡Õ¤È>PÔ,ü†+ó¯7bâf7»ÁD»ðoSâŸ7L©³²%€_úÌjü«LDöÃ?Œóó“SÃ\îŸ;‹ SÄ*w´î¹ ˜€d4(LXE=FG°¥²"rþ|HaH©Àë̳Vµ{(Å1cÈÐðêÐ:ã ŽFÆ9þ[ “lúo~Ìx´ý×èÍâæŸQéDW„×ëqòοJÐbúL¹Ü-L¬p Ñ€m³ü›(ù xṼã¢úB°þ½Ñ°ÛJg^Ä¿É\\ÛbáHÀr­±¨TS.\ÇÅ+aƒÌ$-×Ö5Ë›‘Kÿ„SüSFþ5z :qÐh²Ø}¡?HzEÿo¶ WêL./äß+¹¸15þÕf9}¡E†þåùéJ1ßÙ™§ÿÆøþ¡õO M°T"ò¹Ø€J ‡7’_Ù©ÓVÑcUÀY¨;M&5 n¢ž0ÒžÆÿoŽá'"ÄòŸÌO±cÿ£AÑ–ú˜(¯ÛÛ1+R½>Ÿ‡&ecª@cŽB!cç"¶÷4ò¿‘4Ëò?|ïc³?œ4,ðßi“4$ߘZW7¹É?›[+µ*çB=ü¥þ|>íÆYÇ#;Ü(êÔi$m K(’¦Œ0€Ëþ(pq€±›'3Êü3-@~L·!`•ì•ÚΨ€üìö§ç–W–—¦Æ& ]í¹ LþÆäº Šæ_ô`­æÿÉd< ûhQ ]ÞTaª>LFì Ç@ˆ–€:|´ª@päÉÒ(æ:ŠDvœ—+þ«33LMÎ ð£ vƒÈýÛN0d)–™YA„2Ê €šÐZ[ü'×p çPç¿éô£Á.ÁŸ¼ˆŽ ý?öžßœ÷Ÿ³áª2y™!4hY%ûÃQ¡¬Ñb¶9ôÊÛªcV“ÙlsºÝ¾h”Ÿ(öÿb ·˜Qô°@Ò~Ø0×ODü³€Oøêø%L0Ϧ°Áõ@{•¹åÅÙ|Gg”ò‰h2nik1 §þ©ÏiI¹âQŸC(€<-}K2ú÷®ìdìGY  Þ>k-Ê-@‡pO‰¤#E¡+ ™šáøŸ)óÝ þÈKLk¥ÿºõsRvæb——X€@ô&šãŸYÁï4ò¿†»7‘T#|ÿo|H4ôŸ£dÌ‹¿öÍpS€`þ¯VÊeÅÜß××NI7_~ÀÅ䡎.f po$Æ…øÿ¿`êb¿d6ñ)Ñ€Er…ÜE*óÏì|;¬<âì¤Uݵ@Æt /MeÓ íÇ”·¸½>¿7‰½•zàeV Ò—®Ã?™LÄÃnfâ:ûW\ñ‘MI `÷êáZwŒnlä >´U €]åÞŸã«éKÜñï™Tµý[‚t:’d£Žþéædfø÷z,&éüŸPëh§ÃAÚ¸é “ÿCóÏ<†ø@•~ÿ³zþlj© f0üx© «§¿ÐN­dëë¶Hì¿þí.Ÿ;‰Æâ‰X,ê—ä(\•`÷p=†ñ@Œ& Mƒ”§Òc'Ò|;Û`óÊøÇTù§Ô €ö;Çóc2›`®;-°'FiÀà ›ÿàЗzrmõùZ€ˆ‹ÏÿVÔg¬q`{¼m]½~1Ÿq5nÊ@ýM-Fª>4qwZ#i±f/qðß6.Âfªõ¸ÌHP„Ùj9Ùˆ¥H”ÇçñXÍzäE×»z8¡hxãÁdFÛÑ€íCóϺVc‘ëÿMä;Dü§¥¾Oö]ÇEvuyð~±ªTýWºœu­ …M˜Zèa*¹p+au¸í©Ûäæ)8Wè Ñ<4 •FÂLR$®–Y@óŽ_ogW:¨E÷´*ì©IÝà÷²Â•ßi(×»~f…¥j­\ȶç²Ù\¶E‰ÿd"ä²YE‹ÒÑ1®õ¿#À•Ã…þŽõ`&„`P<‡*÷ÒÜóž ´Ã#ÚüÐ0æ' Sbþ§Î|œBãŸNèEƒMñ¯åçŽâGð¯i~ øQQ÷Eé ¶þ¯úÅüÇÈFüûg…&×j üÄ™*ùü5Ì-à¬!:î‘UÜGùÓsù_©ñ+þa F¸4‹‰TC5¢ƒòÈG·1åbFO5äM,¬Ë:­U…¢?ØÓšŒ&Bá@(‰Ä’ & €û3VG~™´ >mÍo\ènu7î˜Íad€JRÔÛ•KÖX';±Í§ÆÌŒO Õ?Pñ„æã´%*y¦uÉïœÿâ[€ùÇèatóïÄ8…·¸`y¨¥QþÇ­Å5!\¨³ÿåîv#ñ‡ç—Áÿ4[¤2¨´°h0$¡FÛ¤íb¨úAqå+Ö¤ZØ=—b’Ôfá]ÕRú«CC¹D$jJ[ZúüÁXB9D<"`µ{‘ØFøï\œÞîÉç 8"˜â|”rF=a)ƒÊÓ"Jÿ“Sã¥èÉþø' f:ZýØ1¿(g¹ûF`÷?«1FòEÞdi¢ÿxb†_gzk^Þþ+Çy$ŽÆ_äÞS(”el–äD F=®Î?_XÅÛZ¿kZÅ]Ñâj€v8•—ØÑ8r]Ùl¿hP¥¿#Ê×öbŠü'17ß„s³Bÿo½µso¤»3é8Š33  AIŒ+–쀓µÿµÇá_£íbgþ@PŽNaßiKÛ\ ú…†ü£þ‡ÏEÉÒ?.829Y³hô‘ü J1›©ÿöÂ%>ÿ/Kû•Jø6Á?WgGš?xtx+ªÂEÙtªSb9þíG\WÊ S™l¥¤7 ŠE™(:ÚÙÛúµî¶€ß+§Ÿ * $®lžÞ9T÷¿y&;»»³ž&:¸ÂпøÈvùK€:ù{NæÀÇ¿Æ^™æðŸî;cÞŸÓ©ò¬ü¯a_PjÉ´¹ññ6ðÙÓÁó_.õ',x9‡™°µµ¹*mV:hñs7Å¿jÑ|réš.àëAÐkÔ sm?"V©ì®š04:>¨H\Þt¡Z-uÂÅñ”è"ÿɸO¼ý«Ðüoo]ZhÓi0_GwGÄv”@‹€4>=¸M¡`FNÖJ×bǺ5k›äøŸHý㟎ŽWÁÿ1›€´üÁdº ©v¦?”zò¤/–18ÁU+’ÀB«$ê6½¡ÊžùÄñßT2Àÿªý?®h¸X¥5+ŽXôG ÌHùZÛ£8åVyŸ/ Â2ê¿ðšAýÿ͹LèölwW[ãuXþ¢XÉÐèæ¢yp4:sœ_°öp@ñ“º¢N®f ¿×è+õôìKÑlSýGK/ǹÔ$ð¯óް%Àú\µ„Å?ï‘­ôø°qêÔ„‡ 0z|í*JñÆ8‹lÀ1%[o¸$¥¦Ù#„Ù”Ì?rÞ°rLDÝâA@O×ÅÕ•ñ ¦H3fººá€†öÿTWfâ¤%a…ÔU+pRæÿT·ËÊ ƒ€9[ƒ€k #è¦6×GѪEÿÞº˜û©óÏMjr XgÐéÜdÄ8AP)‹v´ ÐC_Ò„ˆ}Ê„¡»Ÿ´º¦ù×èÌn>ˆ^>•`2æñ u~*·ØÃíênw1òtÇLVZîД'¨ÂþÇ …¿FsŸL;锤m¦Ph,ËþÿôÁÒᑞ"wp‡£ÿ:³kvnéÒÆÅô"°ô/+ëO®ØìDÙ¶ I@€ý¡¥ðZÀfœ_ åX!wHÊ~áoD…ÿd"äà€Õæñ¢?åëîî þߨø®yNF³MV €‡Ïÿ þÇ<Øæžé™éjøìš$¬ ~IðÙÿ ‹h/‹=À xð B#=82:Š^$´ êSÙØÓßÈcHw<þë„‹âÿÈe_Õ·…²Ú,$AâìèÍœk™ŒN¯b :˜Lƃ®¬¾ä@xÚº;° ¾8I(®ý§¸wèÓeü?|ÿ{ˆô¯Ñ»Kµ’ã¡ÿæoJ؉ø×0T}2dÙ=v“9g…M z€0'è:Êì¢Åð…BÏàl (¦P[øõh‘¢^€…‚÷Ä`c¤,ØET骀dÜËÜ À¼Œ…ØË“ñîîœÃªÖ@k¿5oàáú94ã ÐöõÿÆýCÿfvÑ?‰´' Ÿ¬ èqÆ@0vTþ+åOosIwŒþŸ’0“РN·¬|¨ó¬5[= ø{ƒjCÉ„_´&¨U¾œí—Æ¢ˆ?Ešàr©GŒüI7Í´8 vuчuâÚ‡ãÿ·FXüj;¯—Ë¥<ÕHTj¨"ÈÿimíÂá¢ß'†ÆpaDðTg”=ôY&ák×)ÚÿVq Óú e5å“à«€Á.è1çeâV\H¾Ò&û<]‰ÆùgÀÙäŸh*—¼$Ù0@Úr¥[ |Z{”ÐzŸ'{žŽSÍÿ}Ž eµ¹Ð«ÓŠR÷ÿ1ÿu×F‹3ÈF:¸û~»i&-yiÁ“,þùÙæŸ¹ûõlòoÎûï$áË370´ã¾L÷zå’“.óøÉI‚ꟑ-N¸”­L†4سSR¨LH&<þ-ò”¬5ƒ‡D³ž(´Ržž‹ñÇi¥Å«ŠðöŸÏ0þ(œÑ@¼T.· ‡£g ¨¯mÎlO©rÜ¥~“:rúÊ‘ÂòÔÓÿ‰ÆoqHNç<@@ÿ¸”kÝâVF‹Vcà‰5±ž_oPZðçHaf’4Q§‘ÿ?óÒbÇð›‘u¨\.´påFÌXw÷¤Ȉr=ßg@Z#uò•¬åÏy’ó«%™¹5”‹j#€q·”KÕð™(8h2Ь’V¯¸âG3Ò M8µ•´>›bfñœ5þåryÐM2—;8“²e`%-ÀÏ‹t¦ÓNÿ'u·ZæÕ¦õfš-æ'±°ßçñ_דƒV¸ÓÍÖ j¢Nm%­Ï¬ÎþçàP1kfù‡ýsýyWó™íp`”N öËGñ°ß ×øµJù¯»°0=\ à¤Ku+lØ9þGêÌÑdIe<Á51œ¹5^!|¦û32é}Åm¯' |)L–þˆ—¶Éá—Ϥ%>Oáüìè¬Á¤3™„m€¾Sôgp…•Ï© ;í%¾/”ˆÆÃÑX<,¼˜$ýŸc~¦töà‡’Œ¼¢{áêŸçàlKg1›mÁ¸œ*HñFÓç´*áoµž‰ëë\¼Î"þÊÂà˜?®ð¢ðçút¤‡/æë ‹úíiVÄÿ¼%Æô[ƒ?”VϺ€söÏ” ð.~[@ÜÁÇ̉°XÌ$IœWùgM¿Eô#aƒ±ñ‹2Ÿë7. òo‘Þû¦#Ìž}?î½ôçú é· þsQAþ)›äõO5˜‰+¨ãÜÇw®ß¬´ZìœýsL$3yWö(¼SÀDàÄù@ÍYÖyî?×IÅÜ£X7¶†§-‹×9þç:¡Lˆÿúvµçšsë3/œ¹u÷ÓÞŒsë\Ÿ‚0tÓý¹Ù?×¹>—:õ6Îu®sýv 5Oý¾së\¿ b^¸ø| ï\çú\Êt^œë\Ÿ[Èó÷Îu®Ï­Œä9ÿç:×çUZüœÿϯþ?ªÞ4)þ²€ 6ŸRŸ hŸ@ ˜ŸÈŸП(/home/amr/Borders/Flaky.tifCreated with The GIMP„@©‹2¼Óí6 üNÿ€!³ºä0n|@%K‰0¡1c2Æ.2"2™1v2àVT0HHphotoprint-0.4.2-pre2/borders/SoftRectangle.tif0000644000175000017500000005172411074470402016426 00000000000000II*XRxœíškw•Õ… VÒ 0Ô@ €(šr©5–K©!Ĥ HäbK+…ì(-½üìÎ9×ÞïÙûäBNr’8Fçó ò~xžµÖÎyé%cŒ1ÆcŒ1ÆcŒ1ÆcŒ1ÆcŒ1ÆcŒ1ÆcŒ1ÆcÌÿ=Ƙ¥³Ú"/ö?{1féüø{0›ï/cºÁl=Xmå ²ûõýcL7˜¥?–¤ÁßÿJk1‹¥]§&i XuùÓÜÏê×}¯1fiÌ BjÀj¯Íä÷áZñ3cÌâ¨Ujr h¶€U²?Ëî‡øú«_­YgŒéœ6r"j@NÀÊËßCù5øå~šôîë+úŒ1Q+Ô!m©ZVz hìoäõÃ{ýñý5Œ1ÐfPNBT@h°²(å÷¥~˜ßȾ±b“1¦jš$ä (Ñ€VVLÿÊþä¾Äϲ¿Vñº1¦3j…r”Ü€ª+€4üe#¸æ'Ûߨ0ÆtF­P*BT 7 '@X‰ ¶k’_îËüdûæ’-ƘN©JEP¢)¸ª,§ýiõ§ý1ú!?¸/óC÷A²µb›1faÔêȦ‚*€5 ˆ%€Xæ#úÇð×ì§ýšüû4?´×7 l7ÆtB©On‚2À¤Ä pˆ`¹‡oo¶£Ÿò·Ü—ùI÷%;1Pù“‚   `¸Dz{ó °öK Ýý}1ú1ù!¿ÜOæ'Ûß»JÞ2Æ,ŒÊª”Š* @°h è‹w€X–ãH»þ±ùÃ~ɯ¹êKü,ûÛ»1 §”''AˆÄ pÐW€—»Píþ²_Ã_öcíOòÓ}ª/íùïw+†1/¢–F¥"°Œ à!  ÿhà ÐÝÔú·ì×ÚÏÁ÷C}yŸTÿyÉcÌB©ÜIQPRЬÛb h °Lþñ_¿6ýi¿ä—ûÉü°}/ÙW±ßó"jiäQ!U  °3À ‹HúÏe?'?ç~¨/ñ“ë¿ ïÕüÒ3m¶È Ôe "À=@[À\èffèßfÈ÷©>Åéõ9ï—Œc^LeM΂BÀ h@$ .À² Ö?†mÈ/÷i¾´çg £%1óS#‡¢ Ê" DªÄ Ðõ”úk÷×ð¯ì—üt?Ìëù)‡È%c榲Eþ¤&¨¬€ ”Ð    @Wõ×éÏݟÿ²?ä‡û4_Ú'Õ®8bŒ™I­Ir'EA!`Ø€H@Y®¼ôÐÅįþÖæéŸv ÿÚ~ȹ/õ)~(¯o:ZpÌó"JerVà€TÀ n€¼¬}¥ ?ÎÇ¥?v ÿ°¿”îS}вÿš/ø1f~JadP$PЀ"Q¬q´Ð'€æí/ëÓ?v Íþ°?É÷¡¾¼×?'JNcæ£ò…EÔF H P´`ˆ`Ëæ€n¼Ϊ¿v nþý?¹Oó¥=?f |\pÊ3¥.Ô'š  ©H@.¯¬ºf ÀÇ?ßþô?-ÿ¡?vÿXýKûÊý0_ÖãcNƒñ‚3Ƙù(u¡>‘v€PŽ–ˆ#@7@@'@ßúu|\ÚГßþÖ÷õóå¿¥ÿ»ÃZýiK~Ì}ªOñe=>f|Rð[cÌ|”ºPŸH;€ Üš°:x´°icßúü¸hÿ[Û¡?Oîþûöcõçìoì‡ütŸêŸ‘öø˜Ip¶àœ1f>J]¨’À(l ÀGÀþ}¼øP`©@±ý÷oàÏ~¶ rú'ýqùÀæOû³ü˜ûú2ŸÚãc>Ÿ‘óŒ15µ"²†ú( Ì*€U€{@J €+àÀ_R° náø°´  ØþõöWèχ¿÷GFbõÇìÏöCþ ªOó?•óü¬ÏÁÅ’ßcf£ò„âDXU˜`R°à88Ê`ßÞ2ñ°¤  gÍšrûØ<¸mˆ·èÏݟÛ?íÏòO†úç©}¨~ \.øÂ3¥*T'¢ÀœLæ°¸¸ðHØõ採mƒ›Ê `q¿Êã?mÿ8þ‡vì,ôçåÏÕ?ÙòË}¨Oïåúp•\+¹nŒ©© ‘3”GM`5@ HàÀW€";w ñ _‹]šþiûÇñ¿uhûN¾üKœþ|xø‡ÿÉ1Îþd?ä¿Hõ)>ÇgM‘é_cf§ðDÞ( *€\d¢ÜÆNr8r7À‘Àn`;0ðFºû(ÿãñ/mÿ|úß­§¿¤?.ÿNàî—ýü—©>̧ôø¢7nÜ$·Jncj*Cä ÜQÐT¸Ü$@8õñVÜ9{ý ]z\”ÿ==kšñÏíÛ?ßþ†÷ÄòOý±ûsøŸ™û“üW¥>Ä—ó·o~ßâkcÌ\¦PU!@«)Q€‰3Zp(<ö ë phë .€¼tþ/€âú×ÛlÿÔÿ{Yìþþ“gÃþ$ÿ´Ô§ø´ýÎ;wÉ7ßcÚ)‘3p‡EP销(ÀÙI­¼Rø;€áwòðúkÿÿ«ñí·ÿ½ÒÿPÖÿô¸†²?Éë6ͧ÷Tý¸O¾+øƒ1¦¤ÔC¾PF`ЀH@*€V€ñÓ9‡>¼µK@±tìÿÌñ¿CÇ¿ÞþF[úc÷Çð¿@û1ú%¿Ü¿+ñé<¾ìÁƒ$*øÞÓ¢”C¶ÀU!@îªJ–àVÞMFó .€%-é§ÕøOÇÿÿïäØqéÏÝÃÿg?ìÇä—ûPÿ;zOçñm>üs‹GƘÙ(,3ªC€ 0l¶àÊ—¸ð`Ž;Âߌ¤'€jH?ìHÿž9Æÿ…þçpùsø_Ÿ¢ý˜üîÓüïiý£G?þ økÁcL;¥"Tæ0 +À|û ¶`ê:W€ÏÏv® @똹tô˜þù÷ê:ýï¿mü×ús÷¿rmjZöcôK~¸Oóiý“'OŸ>ýü­àïÆ˜’RùoØt`˜,*ÀôÔµ+ºªÌX6nÐ;=š×¿þ ›ªñßÿ'ý/aøOySöß»Oùáþcšïeú³gÏþþYðÜSRêA]`ª€°Ñ&àþ=à&Ž€«¸rN4OÕÀvþؼþõõWã?mÿÔìÔx¡ÿ[¸ûe?&?åõ!>¥þü_àßà?ÿ5Æ´(å ,”†Q@PÐ$[€ pç믰´0~jŒH@µô÷Íÿø?²Òóñxœíyt•Õ¹Æk+("Ú.µµ#ÖZ[«#£2‡q…!‘)BÂad"ó +ˆ IˆHà )Ì„AAÅm½½öÞ۾ϻ÷7œ“sßI€DÝÏßç°V6ßïyÇoŸý¨¶ùñOmòØãO4oñôÏžýùó¿úÍï^xñ¥—ÿü—×=Z·mïÙ©s×î^½úô{wÀ ¡ÃFŒò;ÞoÂÄÉ œ4#dæì9asÃçEÎ_µpÑâÅK–DG/]ºlÙ²(Ö¤8%%%Mf4˜bféÒèè%K/^´0*jÁüÈyásÃæÌž2#hZà_'Oœà7~¬Ï¨Æðn¿>½¼ºwíÜɳ}ÛÖ¯ÿåÏ/¿ôâ ¿ûͯžÿù³?{ºEó'¬É£?ùñ#Hw,ðßô±fO<ùÔOŸyî¿üõo[þþüÓ+¯µz£M»Žo¾Õ¥›WÏÞ} ÿ!Œ¿ï{þ“¦L>#ô‡GÌ#ø‰ý%ÌÓ_OJе\II©¶ D »ÙÀxÀ‚ùó"ÂáÁ3¦O0Éÿ=_6€!d}{÷ôêÖå­7;¶kóF«×^ùÓÿðû–¿ýõ/ñÜ3?}êÉ'š=ÖÔþ9ü7}¼Yóÿÿ¯Éðß­ÇÛ½ú¾ÓÐoÿiAÁ!³(öGPèð/‹!òãA{bbb”l(EIIÉ,L QG ˆ%`  $ ‚r€Y!ÁAÓ ð2¨ÿ;}{½Ý£›L^C`ðߢy³Ç›º“8Jÿ)ü¿úº ÿݽzöé×à`ïá#)ù'ü‘ûSðK±?j!ÁöãA> OIIMMMƒÒMÊPRRÒdFƒY!fà ääñð²€…Q”Ì ¥5•#‡{Ø¿_Ÿž^Ýeðú«”Ô£p˜þSøo¥‡Îþ‡9šj?‚8eþD?E~ÀŸ˜ò}FFfff”mÒ %%%!3L S     ,€€ª€p¤ÂüÆ=’[}{ë @+JêSÿMˆÿæ:ÿèþQø÷hÓ®‡ÿ^}Dö?zÌx¿ “§Í ü)õ§ÌŸè#ø“ý pϨ¯\¹2ÇP®’’’­L|-l ð 6d²€¸Xrª¨ ˜1-0`Ò¿ñcF‹ -@J:´kãA :€:ÿ͉ÿ&îðòßœþËî_Ûöõð?xèðQ>ã|'LDí2+”ñ_ÍôSäû„þ `Ÿ››———OZehµ’’’!@…ˆ#ÀÈ( `ˆ^ÌŠ `JÀÄ ¾ã|F :XO:¶o+;€6@Ó&Zå_+ÿŸ”üké¿Gë¶<ð?leÿïMœá¿,6>!‘è§Ðøó€~ §?p-i¡b%%%C&6€ [L @I9@bB|ì22€ùlÓ§¢0n̨áÞ2èÚYv±PÇ€ä_+ÿe÷ŸÓÏN˜ý÷é‡ð?Òg¬/ŠÿéÁ3ç„Êý)øSæŸI¡ðû„>°/..))YmÐUª¤¤$d`Á”-p²2ò²J(H¡€j@Øœ™ÁÓÑðë3 Fݺ ( LL wøÓ­ü×ÒÿvœþcöÏÕÿ˜ñ~þ“QüÏ øSðOÏÈý ÑZÏÐÓßø>i£®MJJJš 0€‰pòròX +#Ra‘áa³Ñ˜ìï7~ w°À@;­0ذοMûO,ÿp÷ŸÓÿž½ûõ8³? ÿœý‡†G.@òÜŸ‚¿ Ÿá/!ôKA=ý…›I[t•)))2Ð(ìäd%lÂ(@ €`Adx¨¨(M ÀÀþýz÷”€FÀ MûO+ÿ_yµÕmÚwéÿ;qøGóoÚŒ™sæÎ[°PâOÁ?'7ô3ü¥@Ÿ°§¿¯¼¼¼‚´UW¥’’’ !Vàdd¥lp€üÜJ¤,\0o3¦q  À ïˆ cû6o´â 7ÜmÚ·ÿ´ò_vÿ)ýwà`ï2ü#ûˆŒZ¼4&^⟷ª °hmq àßD¿¬œ©§?òÒ6]*)) Xaä””¯-*,X•' >féâ¨ÈT2á=xà»Z€ ѨCжý'§ÿ¢üó-tÿEúï3Ž«þEÇÄ-×ñ_#è'ø™ýJPOãvÒßtU)))i2À&ìäÂ6o°F7€åq1Ñ‹ôÀßoœ,ÞîÑ+@hÈ ·€ÿüòÞþ“å·=1ü—é@ ‡ÿù”ýÇ%$¥¦ÿÕþë7¼¿ôSØÿ`Èï;H;uír©Ýš\LI©‘Ëâ“l€Làpmd[áßß°)Àj@zjRBUó9 Ð €þTôè&zP¾äÿæö¿ÖþÓÊîþké¿ÿ”ýÇÆ'¦¤g ü×Qðý ?Ð÷â(öèÚëJûÌrùI%¥Æ+ëϱ†° øL€- @)À:a™é)‰ñ±Tˆ@/0Ðö @ëÛö¿ÑþkÛ^/ÿµô?Íþ—'§ed¯Ì[ÅøSêO±¿ò‚¿ èƒ{yûup®ƒvrñQ%¥Æ*7c éð˜@Y9@yl«òVfg¤QÀ Fz 5° 5Ý€sûÿ…_’í?­ü×ÒtÿPýSøçìeîªÿ–ò þ]» ý}Œ;Îà#]‡œëc{¹ø¬’Rã”;O±…4 22²éå[„¬Ê]É%è ¨Z@4å+@ÆÀÿrügnÿËö¦ÿ<ýé?º¡á‘2üSöŸ_°F⿵rÑÏðƒ}p/Nä°®#ÎuÔ^.>«¤Ô8åÎSl`!|>À ØF)€0€5ùTÈ 2<@Qˆ 6´ yÀ@ üëã}ûW´ÿEû§ÿ\þ‹ôvXšÿþ‘ý¯.\[,ð§à_µCÐà ¡ÿ1óŽCøDÓ1ç:n/ŸURjœrç)Ö©>A>@&@À°£ŠRaÅk W£ #€ˆ°Ù¢ lˆ 6°áßB ø×Æÿzû_´ÿº{éå¿èþ‹îŸÿœý¯/ø#øý€ìƒ{q"'4t®SvrñQ%¥Æ*7c áðö²r¤ÂJ×s ѽàÕ]6µ€¾`}ýGŒÿdûß³“Ñþå¿–þ£ùŸEáÍÚ’Ò›%þ»÷PìýGÀ>ÀGR­é´s1ËÅç””³¬>Ç:Â%`ð€#pÊöì–°yciÉÚ5”da ¢`4;yÊ€1´¾d^ÿÁÛ?-%ÿ²ý¯µÿ¸üž1Q4ºÿ…E”ýo.« üwìܽWÐqÿÈÄëÇqÖ‘ÎÝC¿¤¤ÔxT§GØÆ$`dÈŽ Ø»{ç2€Š²ÍT"@0zÑüˆ°YÁÜЀr øo‰7€ÜZÒ×Lãÿuð4Úÿ£ÇúúOž‚òÝJÿEø_W‚ì¿rÛö*‰?Å~ÀOì|>›óº.8ÓE‡rúq%¥Æ&7a 6Ø<€,€riUÛ·U¢(Y'.ÌC`Êdß±£€g94/Xç¿Öúñ/ÇZûoœŸ¿(ÿ#£DúŸ“_PT¼žÂ?eÿþD5ØgòÍ'sÉ^5º.Û©Æ¡jýJJ #ǨóǸÖ?`¶vx@59§Ò¨ `}qQA~N¶(¢"EÀßoœÖÔ€öü[\²åŸ×xüoŒÿ{cûgbÀÔ ™s¨üމOJÍ@úêKE%eÿ»öì#ü9øƒ~ÀO䋃ÒãŠ]u.g_QRj4ªÃók¶¸™,€€S2€}{vQPY±©Iñ1Ñ #ÃçÌ š0@ÿ< Æuþ5ø××¥¯,ÈÉù*)5œêþàšl&@ð…f—.ž?{¦ú$€û¸à7“—c€  ÿbý_[ÿåõÿcü·4v9¶Ðþ£ò¿òÿíܳÿ ªÊþÏ_ø3ý?Ð7Ô×õw rüM%¥TÝ\“;À`paÎS€ÀÁý{vb°ù}ÑLOY»”€b`ôoc˜_¨ÿ¶¯ÿÚ¼þ#ù¬ñ/ÆÿÿedËöÊNÿ©ú¯æìÿÊU ÿ; ¿ {»£ù‡®o\ë&Y9s%¥(óãhùɵû7LFÀpG3€«W¸¨>qì(hÈ`v€r@ò?Ø–ÿ—Í/Z{ØÿxýG_ÿ•ë?³ByüŸ˜’±"Û?¢üß½—Ò4ÿ9û—øsì¿ öM'æðŒþÛšîqÒJJWõynM®¸Ë9€4®0 `ïnÑÀPî ±:K. ÀÆ @÷ÿöüËõŸeqÿÉö¿(ÿâîß¹ —j®\ûìºÀŸèü&ìíN柺þǵþi’ÅSWRzP2?Ž–Ÿ\»Ãdlw¿pý³kWj.]8ÇÀCE@0Ä€X²ã¿CýøofÇ+þGêücý'>15“ø/*ÞÀí?.ÿ¹ûwîb …ÿë7tü‰~¦Þõi}kA÷8g%¥‡¯º?¸&W  Ð àÆuJj.žã h ¸¡¸ˆøÏÄ€4þGÚðßÊŽk€Øðÿ¼Cþ‡ôáõß`â?ŠøOJÍäñ_©Æ?•ÿ"ýGø¿ñùÍ[ ý ¿Ëû—5Y9l%¥‡¦ú<·&  @À­›TP 4$ÿ¥<ÌLM"þ£æá,ûŒæÿçÝåß|ýOKüÏãõ?^ÿ)(*)ÝTÎí¿F÷ŸÒþoÝ&üuúMÜ;< ÿµ$‹§­¤ô°T×äºܾ%.Žrø£Ü,ßTZÂü§%ñ €òßÒÍ €Ìü‹ëÌטøÇú?Öc˜ÿo–ü:LåÿâÿʵO¯søçèÿ ÓoâÞÚ‰))}Ïeòv€o8ààú§×®ÿgNà 󿙘ÿ±Ÿœ~9;¿¸¼º¾¹½»ÿúðøôüòúíí½P(¿ÿòøÛïÅb¡ðþöíõåùéñáëýÝíÍõÕåÅùÙ—Ó“ãÏG‡û{»;Û[›ŸÖ×VW–—æçfg¦§&'ÆÇFG†‡úûz{º»:;>~hokminjl¨¯«­©®ª¬(/+-ù7ÿá?ñrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿëüÿ ÄÝSaxœíÓ?G&àþ)II$‘8G$" -Ñ ÑÐÒÐÐ GCK4D4DD G$‰$GRÊÕûÞwÓ9n½á÷<ßá))ùCiYyEeUuMm]}CcSsKk[û‡]Ý=½}ýƒCÃ#£cã“SÓ3³só ‹KË+«këŸ66·¶wv÷ö>Ÿœ~9;¿¸¼º¾¹½»ÿúðøôüòúíí½P(¿ÿòøÛïÅb¡ðþöíõåùéñáëýÝíÍõÕåÅùÙ—Ó“ãÏG‡û{»;Û[›ŸÖ×VW–—æçfg¦§&'ÆÇFG†‡úûz{º»:;>~hokminjl¨¯«­©®ª¬(/+-ù7ÿá?ñrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿëüÿ ÄÝSaxœíÓ?G&àþ)II$‘8G$" -Ñ ÑÐÒÐÐ GCK4D4DD G$‰$GRÊÕûÞwÓ9n½á÷<ßá))ùCiYyEeUuMm]}CcSsKk[û‡]Ý=½}ýƒCÃ#£cã“SÓ3³só ‹KË+«këŸ66·¶wv÷ö>Ÿœ~9;¿¸¼º¾¹½»ÿúðøôüòúíí½P(¿ÿòøÛïÅb¡ðþöíõåùéñáëýÝíÍõÕåÅùÙ—Ó“ãÏG‡û{»;Û[›ŸÖ×VW–—æçfg¦§&'ÆÇFG†‡úûz{º»:;>~hokminjl¨¯«­©®ª¬(/+-ù7ÿá?ñrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿëüÿ ÄÝSaxœíÓ?G&àþ)II$‘8G$" -Ñ ÑÐÒÐÐ GCK4D4DD G$‰$GRÊÕûÞwÓ9n½á÷<ßá))ùCiYyEeUuMm]}CcSsKk[û‡]Ý=½}ýƒCÃ#£cã“SÓ3³só ‹KË+«këŸ66·¶wv÷ö>Ÿœ~9;¿¸¼º¾¹½»ÿúðøôüòúíí½P(¿ÿòøÛïÅb¡ðþöíõåùéñáëýÝíÍõÕåÅùÙ—Ó“ãÏG‡û{»;Û[›ŸÖ×VW–—æçfg¦§&'ÆÇFG†‡úûz{º»:;>~hokminjl¨¯«­©®ª¬(/+-ù7ÿá?ñrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿëüÿ ÄÝSaxœíÓ?G&àþ)II$‘8G$" -Ñ ÑÐÒÐÐ GCK4D4DD G$‰$GRÊÕûÞwÓ9n½á÷<ßá))ùCiYyEeUuMm]}CcSsKk[û‡]Ý=½}ýƒCÃ#£cã“SÓ3³só ‹KË+«këŸ66·¶wv÷ö>Ÿœ~9;¿¸¼º¾¹½»ÿúðøôüòúíí½P(¿ÿòøÛïÅb¡ðþöíõåùéñáëýÝíÍõÕåÅùÙ—Ó“ãÏG‡û{»;Û[›ŸÖ×VW–—æçfg¦§&'ÆÇFG†‡úûz{º»:;>~hokminjl¨¯«­©®ª¬(/+-ù7ÿá?ñrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿëüÿ ÄÝSaxœíÓ?G&àþ)II$‘8G$" -Ñ ÑÐÒÐÐ GCK4D4DD G$‰$GRÊÕûÞwÓ9n½á÷<ßá))ùCiYyEeUuMm]}CcSsKk[û‡]Ý=½}ýƒCÃ#£cã“SÓ3³só ‹KË+«këŸ66·¶wv÷ö>Ÿœ~9;¿¸¼º¾¹½»ÿúðøôüòúíí½P(¿ÿòøÛïÅb¡ðþöíõåùéñáëýÝíÍõÕåÅùÙ—Ó“ãÏG‡û{»;Û[›ŸÖ×VW–—æçfg¦§&'ÆÇFG†‡úûz{º»:;>~hokminjl¨¯«­©®ª¬(/+-ù7ÿá?ñrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿëüÿ ÄÝSaxœíÓ?G&àþ)II$‘8G$" -Ñ ÑÐÒÐÐ GCK4D4DD G$‰$GRÊÕûÞwÓ9n½á÷<ßá))ùCiYyEeUuMm]}CcSsKk[û‡]Ý=½}ýƒCÃ#£cã“SÓ3³só ‹KË+«këŸ66·¶wv÷ö>Ÿœ~9;¿¸¼º¾¹½»ÿúðøôüòúíí½P(¿ÿòøÛïÅb¡ðþöíõåùéñáëýÝíÍõÕåÅùÙ—Ó“ãÏG‡û{»;Û[›ŸÖ×VW–—æçfg¦§&'ÆÇFG†‡úûz{º»:;>~hokminjl¨¯«­©®ª¬(/+-ù7ÿá?ñrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿëüÿ ÄÝSaxœíÓ?G&àþ)II$‘8G$" -Ñ ÑÐÒÐÐ GCK4D4DD G$‰$GRÊÕûÞwÓ9n½á÷<ßá))ùCiYyEeUuMm]}CcSsKk[û‡]Ý=½}ýƒCÃ#£cã“SÓ3³só ‹KË+«këŸ66·¶wv÷ö>Ÿœ~9;¿¸¼º¾¹½»ÿúðøôüòúíí½P(¿ÿòøÛïÅb¡ðþöíõåùéñáëýÝíÍõÕåÅùÙ—Ó“ãÏG‡û{»;Û[›ŸÖ×VW–—æçfg¦§&'ÆÇFG†‡úûz{º»:;>~hokminjl¨¯«­©®ª¬(/+-ù7ÿá?ñrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿËÈå?äòrù¹ü‡\þC.ÿ!—ÿëüÿ ÄÝSaxœíwTUWÚÆÓ'“™IfÖôIL2‰1“LG'º3™dLL,±Åβ`ïQA *(¢¢Â¢ ¢ËF°€±G]–Xu¾ïyß½Ï9·{/jàû²Ÿ¿¹þq=¿g?o9û>ö˜™âɧžùÙÏñ«~ó»?üéÅF¯¼ÖøÍ·ÞiÚìý>úøÓϾh÷Uçn=ûô8tĘ žÞ>þA!áóÄ,ŽOHIÏÎÉ[»¾h˶»K÷ûôã>x¿YÓwÞz³ñk¯4zñOøÝo^øÕ/~þ³gžzò‰Çs,Å¿’R=©AóßÊ’ÿIŠ%¥‡¨ºò?É’ÿVÿ¯{öéGügþƒÃÀ\|Brz–)ÿÌÿé³ß^¸tå»ë7nÝ&¸§ @IÉ®4üïþ·oݸþÝ•K¾={šù¯0å?+=9!>ü‡3ÿã‰ÿ~}z~]/ü/Œ‹_‘œ–µ*oMáÆÍÅÛwí-;Pq¸òØñ’ÿk7nÞ6 Ê””,õ_³ãÿöÍ×$ÿ'Ž«<\q lï®íÅ›7®É[••–¼">n¡â_Iéÿ‹ÿJJ?]5`þß³äˆâ_Ié¡êÁøbÉÿ{?ÿ~3Àÿ|ÿÕŠ%¥ºÊiþWküÏÿ3üÿK០@såJJºt*î1þÎð¿´¾øïÁüVü+)=$=(ÿ£™ÿ?2ÿÓìò_ÎüŸ2€D@`ê6T—/MI©>õžYÇ]ÿõŸS̹]þ§=:þÿÒè•¿6nBüÿ³%ñߦ-ñß»Ÿ»Kük @w4þ€’ÒOR÷4þïhë?.ñïÞ¯7ñß¶ ñßòŸÄ“Æ}¥Ñ_ÿ­Û´í ùþ'3ÿsmóôXâ_IÉiÙç¿æØQÛüÏeþ'ƒÿá’ÿmÛ´~(ü?oÂÿßÿŸ8à?)-sÕê‚uˆÿ=ßì/?t´ª¦öäésçeÀù@Ié')‹ø/ÊÿóçNŸ¬­©:z¨|ÿ7{ˆÿ ë V¯ÊLKrÀÿ'‚ÿ¿›ðÿü#åó¿’øß´µd'ø?(ùç Öà EeJJR:wùô×ÊmýŸø?þw–lÝDü¯dþ=Jþùü¯‰ÿ—$ÿÿÿÿbþ;éüO$þg…2ÿË“R­ø—/‰à¦V(þ•”,dÁ?ÿÿµ×,ùOMZÎü‡Î"þ'êüwbþÿþÿ!ù‰øÿõó¿|„üG[ñO/WVË ÈÈLMÀJuùÖ””êSå™`Ü!üÅñø/ÛÕ•ôú¯ÿÑ–ÿߺÊ®Æ?¿¬ ¨€Kév=@!¯ôYuy~5$îpø×Ž.ÿEûŸ_ÿÕøÏu•ÿß> þ?”üwíÑ»¯ûàá£Çÿéà?2zђ剩Ù¹ùú¼T£4 ºkS.|Ó¶ÿ%¥YüÌêLü ãã_‹ÿ5¼þ£¿þŸŸ›‘š¸|É¢èHð8ü=|°{ßÞ=ºJþ?|PþŸsžÿ9‘ѱü‹ 5D¸|U€¹ü¸ÿIJJ TæôKü¯^Ç?—ÿ<þ³à?6:rŽóü?ç:ÿ¿gþ_oò7[üÿSÁÿlæYbJFvŽä×Þ2r@€«àÀ@ÀºcK®}cJJ Dðàj@|ÏôÿÔüçãŸËÿ•íÝ%ùÏÉÎHI\ÆüÏÿSÁÿ([üÿ­ÉëÌÿï]äÿiþ_vÀ¿øŸ þ£˜ºP.Ñ€\p¸Â @8Yë[ròÛ¶ùY%¥úÒƒ<··uúQüóñ/ã?Ê9þ§×éú?â? üÏÿ^øÙ„ÿ§]åÿ6ùïÞ»ï€ÁÃFóÿà?"*vñ²„ºPðÏ€ ÚàüEi¨àd¬ïmÊ™/Ûö'•”êQup5 ÀÆMd‰ÿÅóâø§í¿ nÿküg¥§$,[þÀ¿Ç¸QÃèÛ»»Mþÿè:ÿÏZðÿ®ÿ½tþ}ÁxDT øON À4Ø]Zv€ gÎé@€ uË\·o;ö«oK~cJJõ)ÓÇÑé'×âßР_ÇÿÜ:þ9þ(+ÝMí±þ›ž þc¢"ÂÁ¿¯Î/3þßµàÿÙã¿…%ÿc=¼¦€ÿð¾Ç€Yðor8½È À¼° F4³sòPm‘@@% à8e€“§ØÈ„ÎÙÖ·eçCJJ Auzx5 °ê$ýÇ¥À_ÿ[Šÿ¹ü§öÿxý‡×ÿ‡¸›\ÿmÁ?_ÿõܳÏ<ýÔýÛÿ–ü7’ü73áŸ^¦`±D@nr€&ÛE8|´€€ À„ÎØÖYû²ó %¥†#ן_ ˆS„þÉ8ú?ÿJÔþEúßNÇÿúµù¢ü§öÿ´õŸáƒåõŸÿÍ$ÿêÆ¿¼”ù7û@q€\â Ý&Tä­'€òŠÃˆUTP ¨%:i©SšN[ꔹ¬>©¤Tÿ²xJí?ÅVŸÔ™ @pòSòýGW”óéô/Žÿ5yÿ¹ü§Û¿äø_¬ÿòëÿæ?ÿGüËë?æÿIƒÓÐ./ˆ1˜É *¸¸q“0€RÀrD€#G…  HÕÚÑ û²÷%¥£:<¿:ࣺZÀúU”þ¥:þ V¯âøOåäÑþ—ãcýÿãV-m\ÿþXÿ±àßìPcØm/Ѐ€´D€ë‹6£àP†€€- &PuLSµ¥jt·PMYýJJõ#Û¨ýÇØêЩ!à„à'ú‘ýËøôGúß\´^ÿÿã.àöµÿyüÏëÆõ?æ×ºÆ¿õè/Ê  i@ ÀpÚâ #;guþÚ Òvïåp°@ ª²§c6e÷Ï•”š\|„ (@Èbðƒ~:ü÷î–øo(DõŸ“ÁñŸ¶¨ü§ößøÑ4þs“ã?óë?\¼þßÖ`Æ @Æ@¿<ðš*‘Q±T¤¤g!¬C €#YyL€l@êˆ-½l~HI©á¨N°N!RAìü|øKü‘þ×àøÏJO¡ø)Êzûôpÿu3Öµ×\½þËú “€hȈ ß Qp @n>*€HÅ%ÂJ¿)+Û·ÿ˜\6 uȾ›ÊÁß))5d9ûëL”ùØ¿_YÎ~¦¿¤§?ð_“ŸKÕ¿8þ9þ£ü—í?½ý¯¯ÿY]ÿá<ÿ€È`ZÔ€4 €é\DSHLIˤ @À–âm%;v’ÀÈ`dRí«ÜBþTI©¡Ê…ÇX§‚ÙGì~¢玒mÅ[$þHÿ™i)‰tüGsüœ.ÊÙþçñŸXÿë¿._ÿaù°x@.‰_ @~€¾AÁ¡(bâ’RQØP´iËV8Àv²ö€R¸ù€Ô>ûÚo)«¤Ô0åÊS¬SAˆ€bŸàßú·nÙT´AàôŸš„ã?.ñ?48(À—ʹý/Úbü'Ö¬ÖÿàßúmHò@ÜÐ –.OLN˰¶pEvXÀÎ]0Ý{öÀ4•Ú×7–rð·JJ S®<Å`¤ìÚµð úqøo(\+ðÏHKN\¾TÿZüçòŸßþ1ÿ™­ÿº°þ/€ˆcP,ˆ Þä3C¨¸pÑ®„¬EØX´‰-€=`\€|@ÓnûÚc)«¤Ô0åÊSl`A€bŸáßúׯ[[ ñ§ôꟺÔý§ø/Êÿ>Fû_þú¯\ÿáõ?Á¿3ǿٰ\@1Тðšâë/U+’„äæ!H€l-† l+¶ëÚa_;-äàO•”ª\xŒ ,°R\¼ðkô¯ÉÏËø'­ ô/ß)^"þëå¿ÖþçñŸÉú³ë¿¶€Ä@¾((F¡À0 X–À½*wu^  Ø€hÚæH%¦rø—JJ WÎ?Ç ¬}°ø AAÞêÜUÙŒÂ2¤jþ‡‰îŸ'-ÿsü§ò_¾ý'ÛÿuYÿ1ýp}(nà 5ô€&“§ŠÀ€0€Ôô̬•äùkØÖo € hÚâP[59þ3%¥.'Ÿd ¤ˆÐß°žáÇÙúWfe¦§ ü9ý‹ãêdÑý—ñŸÊÙþÓÛÿ<þs~ýÇ|ˆ€r@ @ÙÐ €Ñ"Ð@T ÀŠÄäÔtDp€Jë apòMEJJJš 0ÐRX¸ŽNþ¢?g%ÿôÔäÄ„LÒ?5ÿÅñ?Zÿzù/ÛÔþ—ã?×ù7ˆ ÞÐ €±üP„ΉР€"9À*X€ðµðrMë•””„ ,°b˜}À¿JП’¤ã1'éßÿ±zü×ËÙþ3kÿ»Æ¿Ù@kÊ€˜Š@¨ÂæJˆ_ž˜œ’–ž‘I@ÈËËχ°H­URR2° HÀ ˆY ö þÌŒô´”äÄ„åñÿ¹aHÿúñ¯Å1ýå¿Þþ3mÿ;Ç¿Å@oŠÀ'­ÛÈ@øøIX·$~Ù r€T¶x™@lF +OIIÉ^€>ØgøS‰þËâ—ÄÅ.”øøùPó_ÿ2þóôŸË‹öŸóí«€lr@:uåÀª|üƒ‚g‡Q °@8@[<&•  'Д£¤¤¤Éƒ0-`&ì3üI‚~þ„ÿœ°ÙÁA~>”þ¹úç㟻ÿ"þsù¯µÿ\mÿ[6iX4h@í;v¡ €‘cÆOôôžêë/ `^ä‚hDr€ålð€Ô4r ø@&[T¶’’’SZ@~Z*Øgø—ý8ü£DÎøûûNõöœ8~ÌH:þ©û×¥c{ÿyú/Ëmû×…öŸu¼ €Ï¿l÷U§®Ý **ïid(æP ‹ °”,€<€L 6@F +]IIÉ „ ˆúÄ>Á¿glL4eÿ9þÿ4o‘þ‡€ã¿{×N_µ£î?Ç1ýå¿«í?‹ hÈ@Lè@ ½Üús pì6”³BBÃà cÅ‘ÀÈ¡¤$²M)JJJš 0Â%ÐûÜ"œýQóqø‡‡†?ÆÂXnþõwëEÇ?]ý'»ÿ2þëå¿Kí?« Ø],@·ž}ú8dØHjxM̘‰ |.UByÀ’¥äËà五”” ™°A¨€¿t ±£ÉôÏ GöŸ9#øOñ¢âä°!ôåꟺúW‹ÿ<ý¯CûO6¿Ôä-ž´le€î½Üú¹¢À8Iœf °DÌ_M@&·x1|F +^IIÉ\&|€0GèûÑQ æG0ý8üo¯Iã¨øäÞÏ­WwãøoÕ’»ÿ4ý{UÿTþ;Ýþ³ÕÀ{ͨ¨€.ÝhèN-€1”¼§úL÷G€  € ° ,Œ À‘Z¬¤¤$d “bbb2ú8ù?’?èÇáï?Ýgª7þc¨øw§Ù_·.úñÿa Zþ‘ñ¿Nå¿Ñ0)h ;€hйk÷ž½ûöw, `¢çdÔÓýáÁ³CÃÈà‘óÉ¢àÑd†b”””4™¢Á¬€??ìüa¡³ƒA ÿtdÿÉžþ(þûöîÙ½kgnþÓñ/º²ûoÄWÊÁ?o qÑ”à‹v¢èÓ·ÿ@õ&R@€  !€ DÀ"É t-PRR2• L ¨ù@ŸØüHþþˆþtøO¤Úøìß·Hÿí¾Ðêþñò<þåo8Ï¿í€;€"|úY®¾îaÀØñˆ(…ÀBÃàás ¹ºæ)))YË@„€7aa¡`_Àˆäï‹èÃßcüXÿ_sú§Ù¿8þE÷¯îñßv@à]>¡`{n¸2lՓȦùLG$˜9kV0ÙÀlA(y¡p%%%M¦h0+`àÏš5“Øü~Ó}¦ý“<(û6µ?áOÅ{jþ}"ÿwéø€øo»ÐíPжCÇÎ]M €ÀË{ ,ÀÀ&0#6@F@V`(DIIÉ) A4ƒÑû¾€Š·ÓÃßÿÚRúçÕ_ëãßõø¯OQ˜îpЀ‰P 0b;ÀÄI^“Éà0¸€@Œ€¬ÀP’’’©Lñ \@ Øñú`ŸàŸŒºŸé5‚²¿ þHÿ­9ýëÕ¿qü‹øoú÷¿l†°%xœíšgWTKFD%Ž"I Š Âu‰ˆH¸H2âB01€9½ïº?ýÖSÝ}N÷8 ƒÜÏþóeïªê399iHäÊ;\pä豢⒓§N—WTÕœ¯»ÐØ|érÛÕöë]Ý=½ýƒwGþ¾71uÿá£'OŸÍ?¹°¸¼²¶þúí»Í÷>~úüåË×oß¾ÿñãçÏŸÿÿ÷ø‡âã롾ˆ7?~|ÿþíÛ×/_>úøáýæÆ»·¯××V–^>ŸöôÉ£‡÷§&îý=rw°¿·§»«ózûÕ¶Ë—š/Ô¯©ª(?}êdIqѱ£G çÊM¤}  ñ?ÿHá±ã'JN–%Ïœ­¬>W[ßÐt±¥õʵŽ0Ó=™™›¡X]ýF€|úŒ |• 1?!©øŠ@1GÌÿü î«üo^¯¯ªý/æçfgžçÿ@VS€“ÓDà¡d@:€ÄÌB¶ÂWêˆA⑨oÜ7òXûeøßº‰ïþžþrü»í_ÿú‡ëWþG €¹Ê’gÊ+ªô PÐzåj»Ü²t÷ .Ò©iÉB )ˆyDIGà Ä@Ób¾ª/î;ù`¿\þ2ü¯w´_½Òjõ¯=W-Ç¿¾ýëö¿ûñ¯ŸôO€îðÐ,À#V¶H€4Ð LL SSÚŸû„PµúL¨ùP_܇üÎ~Yý1üqú·êÓ_¬´ý›¿þíÎ÷è.<èG€–VÜxt»ÈpwXö€Q­€d!ˆ™ „l‡¯ ôSóGeîß•Éïäï†ýrùc÷Çw£MUŽûßíøÏ .€8x¨ohl¾Ø‚¯Qm€F@Vt@B3FÙ_è# «úê>äìÇåÝ¿åbs#^þ1ý#ý÷¸ý«ÿñ O^.46]¼Ôr¹ èˆ [@o"  H´#„íðu>Cpê÷õÊäåï€ým—[äôo¼àë¯Çÿ^·ÿxÀpü„¾ºÔÖãÀ3 _I€6@" @´C„íðu>Ðæcî‹û"¿o?þ°û××:ýõíOŽÿ=oÿnø%•Õx I[$À5à¶V@; !ðè'„lGàK¯z¯æßvîCþÈ~Yý›°ûËé_]™Vÿ½ø Ð@N€òŠÊª½Ì€¸ ˆÀ-É:€ÄÜ!„l/Œ$&‰O¢>Üwòû±ú7èî_SUYQn—è_˜ ýõ_@ö Ð ÀÙJ½Lšý ©€d KKÑMù¾2êÐM˜õá¾/³±_wÿʳþæíoOÛ¿ €¹ ñ°_’§ËÍ  CàZ»F@* ÐtšxtB~%Ôĺ®Ã|¨ß~MÖ~ÈÚ¯»ùé$^þ‹ñå¯0 Çÿ¯À€?™ (€M  H4š‚˜„­ lQ R;ÌÇÜ¿Òfåì7»?þöã¦Öô߀"ÀÜAL´­€v@KÓAÙžÀu2Áü¶VußÈØowÿRýðëŸ ÿS`’alL$Rd!ð¸Jù=5êQ+Ì¿ÜbÜ·ò‡ö'ÍéŸ}ýÓ 4¥6h€F@* Ðh |Ú![‘b‹•.Á|¨÷­ü)ö—î“þQ¶,–€Ú:9¤©2 !ðh!„üŽPõ¨æ«ú dí¯«ÅèßÒþ,ëovИ˜HL´1Í„¸™Ô|Ì}¸oäWûÓÿ,럯Ø$² 6R퀖À£‘ò;BiÔ#UgÕ‡û2ùE~Ì~ÏþýÓß@Ü à `–M€6@# ¨ÕDÔBvŽ/ÚtÞ¨÷­üýÎ~7üõôϾþ<˜À(€I€Ò* ÐÄÔBvF`TªQóUýÊ ]ûü°ß®þfø›ýe]ÿûWàhÐ`% 0 ˜ hbj!™ø¡Ô|3÷±ö'OÉèÇìWû£áŸ•?ýns`p0K¶€¨T@;QEÉ_õé,ÔÝWùíæûíðßÝß €Yp˜èPR5@" @4„ª£6ù¢¾sòËè7öÛ¯~û¶ûGȵ+€Ùô[€Ùl$¨2s†’)CI5_Ô·îëä×73ûíð߯Ý? @X]LL$¨2à‘$„dF¨P™š/ê«ûN~ý¾ýû¬N| qlTð(#„dF¨P©1_Ô·îGòû÷}õà¨k€D@3`BSJÉ„P u r9÷†öÿ1ýµ^lLlL<Š !™bZ¥æõ­ûžüÊþ q\Pí€G!$3B…Ôª£N}Oþ°ß&  Ð-À4 À4ÀTÀã!$sRÏú®õý®µÞìþiÿ´Ú?íŸöOû[ ‰ü[/áç û[/á?Ã0E9ØÿÜë?íoaŠ:ê*òˆ¿õ:~Š!eedee•ÔäÿÖ ùkLCÖT[æŸøÿ§ýÕÌÀÇEGÏÙ\Sþ·^Éç›’JGWßÖÍèÿq\ÀeÌP6rÿÉï Cü'º Ž€ÿJ§øöeà2Oh¿Ö{ýÛ§ïð£œÙ$ŒDŠŠô±Qù5·.##û–®@È‚Œý«xÕþ"eTО¡þA–ÿ@1ë§ ®¢fêéf¥ü×¹ø§Ž&§¥úSØ ì‚¬†–šÂ¯áy0„ÜŸ.WµÒþè‹Pò¼üýøÇH¹Ož‡Œ²Ì‡ß4ös6tHJˆv7üÁCÙØÚ™"Þ¸ÚÅÉÒN ñKwGîÓ$Lmé‹‹Õý…×û»6¸²¦œ¾‹¯»‰Â¨Jó‘£û%¦d¦÷‰·Õз2ù|ÊC¨›ü’cEYZX£~Á^-&kè€úу,#0>Èn™Ž¥™â{«…›Ú¢þ±ÿ¶ÉÉ©É~êá¶Ùhyc”M86Þ÷W«ÀH ¯ ˜è׿eãú Ï®bkõêï(•_Oþ® ¡¡²óð²Q^-o` ò³¯¤øa…WÁÊ×Uù±#GZÙ˜}.@jè€Òß>Ç4,Í-ÌÐ¿ä –9„;[„…Z£­ÕáÐVö>ñ¸b¨eÒûiaeeªˆÐÔ„þAF[C WCë›Ø™©(*Ëý?`²šÚû÷ñ±dní÷HÕ7?¡c¡®ŽMùÕÚŽ.nn¡Ô”xl”×kß0Æ&%D„øyþü=Ö²µñ§`£Œ1:û·Gü ô£- ÔööMÉÐè¯BÇ?b0ES}sû`KþÑ®±Äóý¤¬¢ûù䡬¦ ; ™ä”nòΙãsìÍõ?Ìp5sWÔŸ{Ù·&óKK°J†ææ¦š¿è2z^qØàˆx,“‚³TsÅ$á’SèœR Ýö]Ÿ†Y3Q×1Ñ×E)Z†D`ÐJÊ(CmU”¡£É/ZÅ߉}´“UCà í}#1NJ¯¾¡`¦õú Úfh´sLBø/0¨*/+«êåÉdâS™i~ÐÂìp)¸„,&ÒMígª %O•DÆ“ðTŽÝÏŒTpMss33Ÿ÷ïWaâäjõ:Ë*þ•«2–ú–VÆÆV†:Ñä¼ü8kUU˜½³£ê_þÑW†Ô45³ñÊÆ$ú“ËƒßÆº†cr ÉÙÁè}ôÂd4Œ¬"‚l•>v=c{”.¤0­,•ÞD€ŸzW[ë „¢¶¹É{AùÇk~f±NÖØ?$$"6+;?§,ßÇ#†ÊÊ*oj(ÍÇêË+ȽéÁT,­­A06µ°rrõHLMM$x 5ÕTQ*Šh{?7õxÖ?fçå½EËêÛ9¹˜y»ûÇ'ǘiëÉ#Àä\}Õ÷ý¦i¬£kèúËßU^NA^^^AÕ;%1 —“›‘™—CIõUFªø$‰)b 61Dñg\YFÛ)˜^ÅÆEPë;:F‚U𔕴Œ!ø[š̳?×,£¢Ý^ãÏÈQSæ¯êCECs çp_p<£¼±(ÞÁÑC#8".ðsé2\ÉÄÝÙ,·>#ŸQÜ”ï} &CØzÅc(åì(¥÷²<\ÙÜÙÙÍ/*:Òõµ!ƒ²÷‹Âz  œON2üI1ñΫŠð·4LNÃHùv±þ#³C ?'ÀÔ‚ƒ#S*ê뚸…¹¥9YµuÍÍMMU9VÆF: ¯_ˆÊÆÆ –Ö.ÑDZ‘᮫ª¤¬¬¤íâïm%ÿžcÁ@Bû‡ ¯ ®ôŠ3ºùùùx»øÅ&&†x:ÛÛ›š9ù¥¿‚¢2JU×ÀÌ×ÿÏÝ(ƒŸ±ÈWø·Œ"’ˆiùù¹yyy¹4?+‡(<15üN!$ª¾º"êóe£¬‘spJiS1.!¿§lc*/'û!û‡É((~ºn%'§ll ðoa¡÷ŽÓ#ä>¿î¡&g‚§&»C+‡yùYh+ýõ8LNWÝÐÂ%™La•4¶°£ÂbÝã“Rs<õ4>~òŽþ¶AR.WÒ243533Õ–û§T>|å'ÌKíMÍH²3U5² ŠÅƆ8ýÂzŸ1ÊÜÑÎŽTÌ&àÈôœâ:a +>>.GÊM ó5ýƒÐ 4Êöˆ¸MÿÍpTt¤µgF]‡ÛÒHþ  oêé ¨tHHZ ú€Œ²:Jíu€Yb3Ølv%·ïn¥‰ðÍLÑ…:ìˆwb§ü§Z°wp…TÓÖÓ7¯…˽nUÁUÍìÝôe^e_D¾ŠîÈàˆ?7Ž¢7BË3™Î¬holãwvutKzzÄâ.HÄo©¯©±Óu6QÛ¿ ¤™‰”ü<ü|=¼Câ°$)뤡¨ª©iìùVJQHVQA€Ô³œŠ–¹.”åL|}}<]|b1 I8L˜€·¿m<Ê„2òJ*rr:zzh„¡R齂 8‰ý£€}¦Ðƒ!U5Ô‚(”´Ì¼¼ü‚ü‚RNUi-.!Â*1*4ÂûuÿEY_Oóϵ´` ªovfåíä›Z”ÇäÔ75óÅŒd{}m- (ùÂäd÷O !§¬¦®þ:ËØù[+½»` 9ÊhcS¬ ädÞ\ZVõ3dSŽöwN)®çñE]­%áTäôM}|==¼YÉú2ÊšÀÔ „Ãц„vyeM}Cu.ÅÓDÙ‹ó6ÕS”Aé TÿD¹tu?ƒÒÁàŠºfÖÖúЦ+¨)¾:LÞÚ(ñ}€#‘22×ÁaÀùdÀä§]®ÞRÁ#·š'òùíÝýI¯D @w·¨½­™×„ ‹ 235‡n¡©¡ficmgïå—˜„'ñ„3U%5´®cDdX°ß«:$B¥$+¯¢¢¡¬¨¨øƒBæO+…)+«š¨¨ïŽº»Ÿ¯op<G`°²h !îv®z¦!áJ)20³²°õ 0s±Ãc,udåQ¨󣲌œ¬œ,Ø~hÄãé* ‡p ÜT•Þ—À:úÁT#¤ÿüBv9§²¢ªŒI‚ÐO"¦û9Ùj!^_âÃ}}3Ih„Ž­Þr­çlé„£ÑËkë[JÒmõu!ƒNUFKKKYTPUSG©+#¡¬!gGO1~ûú0Y5#;K=´® $lut5Q¯8)\^IQÙк»3а×n'«¦®©gb‡ÖBËÙÙè¹Gcp)ØøD"‰œJHM¶ükÑC¸‚¦_\lZQI ·¡±®®EÔÕYW[ËÄc@ä‰ý8þeÐr:ºÊ(ˆ„0Í0r‰#‹GE<€.ÝèÒ(Üß,µ´¡U<<ÜUEñù@å#µ½ô¬=ÈáFê(´6…‚¦Âdâ¥Ë+¯®oh¨Ë²Ð0pOͦjª;††ùZ«ÊÉ#aòŠrNúrŸÚ 5U òO¸œš®¥½­Á>Ö•Ô”_Q¤‰›«‘òëÆ€‰„C¹pS >½I€(È*ªú—× E‚¶‘¤OÚ×ß'éKÄÝÂŽö6~su!9 C Ѐ^€™[Û¸úDdž‡‡GaqÉÀ}#}=kÿˆðàP/ÈÙeT=CÜ­@¤pB ÿáÀÐß¡!ä”5µ_/&#¯êhïå³_뇩º%øGäuõs‹+kØq^6Ž.¶*zVÚ€ m;wvOMdq»˜”èkháëcðúª†Šò²r@j0,&+T7PQÕ÷°3SO>«››GÒ™Ì,ýóó‹Ê9UuÕ•Y‰éÖÎØôÓIB浨DêZØÆü­ Õ^'%G/ß Bn}E5·¡¾ÈI_WGKÂ?L^ÏØÊÒÄ À~«ÈÀä´´M±ÓCó­A(¸†¡‘³‡£‘Ž¥=f–Nnî&*H¤¬‚¦Ž†^|™"LVÓØt¿7CÈË++* äЯY£X\l|pD¸ElªƒWPXd2ªeÉ2ð§Ó¯š'ಪ–ŽÑI¸ü¢Rn§D*~Ý#joî¬Í¢¦$&:››~TµÀÕ½ƒ T7GwS99{:!@iéu67óZšÒÐ2ê>ÁD§±™/ê¬Ì QQzçB³€P7oO-+# M]c- uE%MÏbr^}ccC}}eŒšaÆ®¢Ùš„Ps²(!6ÚV2&¶&–ÎFïK:ø«(*n€6ÕRUUÕ³±±µst°×z]|ÖÛÃHO%p3ñÚ¯þûvvmcYÂt¶·‹{{úú‡GûÅioOOW—°µƒWâg?LØ€©Ê™ZÛ9z%‘â#¢â°É8ý““0áAFú6!Ñaa‘&º20”!&33“I!%¸*Èÿ„êÐO0Ù?Ci~†Áêæ6Î.N(8@* M(cç¨ððD-ðo2Eܲø¸Ü¡±1iUYiy^J¸¯›££+ðÀ•¯»'¶m°½<„JIÅ%…E%ÆÚ¼Ž#ûÝ<™œ€¬¼¢¹#ˆã–è÷N\VÕ<–™“• €Àÿ95UytR* @†LŒRƒ}ºfSzxÔBâRóòìíÍ^_]ÖØÙÝ'„X'¨*®àp«ü ´5d4ö50LÑÊÖî†VƒLU©ƒ¡²X1ÖòòŠ¯Ù†š¶¾/&ÄÞ)2ÊÚÔÔÄÔÂÙÍÜJ[ßÌ>8ÊOGË•æ¨dhêècuD( WGk”³´T”X6—œHÍͧņ‡ùc©2™”J¦P¨~jû‹€Æ{®ò‹ÎXÕÎÙ#OÍbTó[…Ò¾>àÑâžîžö¦Ú|²ãÛ1ôm"%€ñ7÷ °pðµ”GG¦F'Õµõt Zš[¤†Ž…‡o@@xFMS3O00:,ª+ Ž]JE…ÇxSb<¡ñ#sOcïhj\bvbTt,!»º©±¾¶®&ã–œœ[Á)Mˆ%RórX)¡¡¡ê´©¹……™î{Óu0uE(é[ç—åeÐÈiÔGK['[ãW»¥aaªP¯âåå¡«!¯¢Ò,ü@ü%üË àú~¤ÚNAg§ W:44<:>>(–öI@4Ô ø-5e„&ÓS!gjjãîFÄFÆâÉÄäd.ŸDô ‰M ²v‰Œ Љ Q†ÃÁÌÌÌ,&•šôÉŠÆ/4+Ó7=É_# u]\ÜÜ\캔”dàHU7¯˜ðÈD}¨xb—ÒÙPÆï›˜é+£ÒÒ’lít”½]´MK;X®®~nn^„Áɶ2…UZ˜Æ(.’„KyYyyYY¨ûA ¦jkggkkkóA;ßÀÀ ›]PŸØYI9‡Ãa—e¥Q þOÍeú¿‡‘w¿üQfÀÂh…éÑÞÞ!‘?%«™YÙy;J I5!FZroäLÏÖÖÕUOÊÿjŠò6Îa˜„˜´‚²ì´¯H]0´ŽI…N!R°ææ¦æ6ž8rp\rlll€¡Qìoîìï£; hîââêêìæîçd¢ƒëøa逽$aâb1ÌÂâ’&>,,6…@L%(ä4ÉñÕᚺêïÖ#õÉ@•²•‹o01‡ÍN-¨iàuõ÷IC÷÷K{Íõ™Žoõ9°·úärT­ß`¼¿›¹².‘‚kžZêïà557.ÔÑc½üChUÍÍM]ccýÍÅ…L|¢³æ›cЈ W¡Pˆñh°µ <>•™ÕÆ +ôNLÏÊç4A ¦ª$(.…•™•…ggçä¤gíõLM|ÜŒQïNÈ+¢Í‘HÝ>…]J-ÉKMŒ‰ð¶1“16×ÿÿ–æª ž^®ÎŽnn¶f†(E€`Hć¹"oï² Ê(ŒÑ*ˆz÷›í÷îÃ_RßÖÞÖÑZÉ ¦±ÈaNî1^ŽáQ1.1R*…BJÁá“ñx|R"&ˆ¹xÿè¨Ø˜è´š¶7‰Igd2ÓÈ‘Ÿ>â—<÷`@uxu‚òè_cšLÖÜÕ¿›¥¦ …Ò÷pòpŒŒL P7òr$ ô‰D½ÃÀÆÝ:*Âüü#ˆ®%mL_g7O?,ÓøPiIm~U [83È£YÈ«Áeåeä÷Õ?ØôwE\ÅÔ2+Ý÷«#p@[Sò +ªJ ŠËÊ+ª8õE9ôT2•Db–WW`ìÞA¼œÝû·S!×ÄÞ”Ÿ]XUSÅp|=â/gfå”\Û×ÕßÂ.¬­0|»Ñs´·5ÕB©£PjjJ0y5Ï ËäñëŠ3É1²¨0/ -u- F]#JÀGYü›'UćÆÅÅÆzk…&GGEª8úcSüÐä5rvrp‰OpVV5¶q‹¤¥‘HdRB,9Ï.eÓ0IXlH„ÒþášÚºzfo;?ìýAóŸt¢Zfö©Ź)ÉÄ‚6iÿÀ@__?¶as³€$«øF¹¿ó.H?f&O+bñìÆ‰aÞÆ…‹GF;š›»fVf¹øø ÿà VTQàIÇ‡ÚØù•Œ”ôL&ÙnéŠvñ˜D« v®žÁdfdæ•7µqóXy‡ÇÚ›€h¬¯‰Äàò+8¹Ù……y,ƒe§¯‹6#–ÒÃ4>)ÖN¦bï`ogcïꩯdçëšF&‘“ñÙùe¥E%¥y4:™D RÓ¨ÿiaЃfH´60wNí—0;y5uç¨B~QI;¿NÔ700в¿¨{PÐÜÒ% øúZÊ¢ÿô8Å~xFj»Ðy• ì–•—q:E“+—ΞnŽ--ÏññI)qA¡ô|Nm-·¦¦sx—‘F£(éÙÙÑZû阀£šî®hhcªå”Dafeåä³™uÅU £‹SƒÂ¦††¦†zvzaeu]=ˆbF|€c@ ®®ʆp5~s(ººhS[÷°˜èÊÉÀ@m…HXȶr ãÃâb ÔêššæV¥-K•exV¸—7 žŽõÿHÛ©¤¤¬ª¢ø6-‡¡c+ùaWW'Ø£¡Ñ±ÑÑá¾¾ —ú&…"ÈzK9,ow[OwïàØ ž•ÅJŠ.66ò$…kzr,†HÄ'ÉTZ:ƒ™™•Iöøøl3BÏ@]ÛÄØ@óÃBüõÂ>yôH´…¡‚<™‘gj¢D­‹ŸoºÎ×eSÜääÐÊNΑîÞFš–¡ŸxDëÃ%éÎêâ ’ Èÿzžáa!ñÑ‘AÞº±ÁôÅõչɉ‰I(ýOŽ÷uuòùmuUmÄØ¸˜¸ødVçÜÌðàÀø¡ãÇ×/ŒU7´×ñÚø…Q¡f*²ržNÊö«2ïF!e€NCÀåÞÃQòŠJ eW·µ×æ—–WdegeÑRÓŒ,ZN]5oL§ª¥Ly599ôþ†½ó|ŠŒ]€¾™]ÂijmïhçsëSsô÷Éiç5aÙyÔœÆÚ¼Üt'G¼¯©—ž¬ÌG7k'#YY£Ð0/ZQm#T0ï–J{EÕ Önd¼‡KD°¯_h+?“Œrs³dÖ”‘±ñLáb7‘He0t-˜œ˜j¢ŒRÒT—W2²Æêú„‡EÆ%§öBJÁ“‹««ËJÊØ¬4 àÈ:="@²³‚ \YWGüú쉆¿dp¤ºOPµ°¼¾¾]ÐÓ×?08’¿¨³g¨§SÐÓ\œE‹6V4±~ÂÐfz( ›8¡¨M è·s9U•µ¼–V¾P|ìÒ¥uqÇÄúú|s )>.,—QUSYQY]ßR_Äb¤3É”´¼\ª)äFZ> É9å•YT#Ñ3€ZXÙÈk(/`Uñ:§g¦'G¥í€4TWU×ÖÕ7ókJXZê:>ºšÚZFN^oqW·hzsn¢kÿ’þ QNYs^^~ŒW,-0 ƒ§fæde§ÆÇ` üÈT:33›–J!§¦¨d2…™‘‘Á âÜ>žƒå Ôц@Žî·0aòè·^õZ@±Ë‹È-\áí(¡híièëž•‘çx ]¢ ÊüÌ|^E9óHÏ ,‘æKŒ¶P¹ý3r…É;»þïh¥§¡¡¡©ï—êï›ËÜ<2399½¸qþÌ©õ…™ÙÉþ.¡¸«.9:&-+“Ù0:?319³¸¶}âä©Sm#’&ukÙÞì ÆÙÁHþþtÓ·*ìû÷+¸Ú„&àÉeÝíe ””fÓ¬tJF½X"nä6Ôò&'j õÔ òrPÜ“Aª¼uu¸sx\`|qUY}‡@(´–Óu Z0ÚÌÊ[Y—“žO,œ¥EØ]YX[HdÄ™¨+yÛèÚ¸»;jÃà ÑÁõ|Q·¨½£MÐ#‘ˆy´P?*«„™æçãGËÉÉ)«À†S+k ªøC×ï]a§Ò˜LfRƒˆKÂaCÜÌ`ŠafÎvN¡Ñ‰ דÈD"]í« L¡RÒ™é,&NO ³B« utµuÁŸ_ô(Ü;¦îá•Bʬj­Þßø¿´«S(”J$‚šòŠ–Ÿ²¾éáFË-(4::ŠÎÊÊmë›¶4ÔÔó[ù‚¶ö•KWÎMKŽì^›Ï%ã#“YÙ5••œêvO"á³X¤¼Ü,kUõ}£±)•­Í-­¼¦šB£¬¾ìc#—+ššš_šŸ™™ÐhHÌ«olª+/I3C"‘ÚŠÚV¦úú¦Öo}X RQCÓ9")¯¼´ûÜÑÞÁ#}µ\éÒ‘)‰tîPgZq0JÛÐRÛÀÂ)CaææfrØ%µì !%ÂÓÃÕTîÇÒÎH῱’UVÑ°ŠŽ°ÒÔ0ÖW’9µ&Q¶~žÑŵ•ÍâÞÁáa FAjnîÙ:³}|¸¯§KÔ54»¼0¾¸ÑÖÖÏ'f•R1q„Ü–Ñ©Þrnf|"&>!‰H!S2 ²™ 9…JJ"LrRÈG?A"!ʺÎÞÑäm¨ÏždòjjANFÑÈDY€UÕ6ÂÝ;„TP¡ä°‘!!ƒ„É)€4&¯ïêkîÉ*`ç±C‚#sšúºXÄl?ãý™R›T,ÅE†ããR(éÔ(sC¿ðt÷O,ä-ƒéÚ¸ØÙ8Úè¡PÚ&–€×`â£#B’›º×—§&çÖO^»{çöµ‹.œX›ê–öàè­ËG&§¦&¦V·vNž “B)nïT””ÓPh”ìö™…™^!¯A09)eøÙ›h)ËB“;0s+§?µ¡ašá1©ÅMÜ n‡PÐÑÙRœëk¤¦ˆFë›Ú&µ4Æ2³‹›[:ÚÛ ² ÛªòˆØ CK7/O}°ƒZQ ¡thddpP"t {x´H¯´Œ^.“‚#ç–”•–UW`ÓãZë똕óן>vw>#5ɨÎ"§Æ‡Ä$ÆG†9ï—(`F¦hUÔü"ñ)‰©©¶QÉøÌʺ꒢²‚4 Ne°˜,‹ÉL ÓWÑÐÒÞÏÿ:?éƒ3ÞÝJycm˜žú›H¨êä\ÃÉiºzDb¨È%h¨ª¨,/KRPþQ€¢Ýc’ˆét5 —#žš“vw6ry¹C g®ì^^Y¾ðàáfeV =.È*,ãTTU¥“I1a±áîq)¸ôÌL_[ «˜4À†Ëù@2ó[«J*êy­|ÀâÙµµÕµ•ƒ‹3ÒV(ÿ××Ô÷Œ·××7T—°üM Q¾hW'3#sK+{­ïHF-ˆVÒ-ô^Úéí]¬k?º±Ø/žÞ®*͵44rÐÓ³ IMÏÊ–““[ i¬¤ˆ}$RÝÁZVÆÔHAÁÕëÇ™œ¦Od„P ‹µ¡Š¬r?Ö*9ØÛc JjE`‹öñ?4 ioîè_˜¬²…[D„‹&À?/VÐ6ÓÓt"¦Çú'鸇ыsÙåtfQ¢>®ê`¯­¯§odád¢S·±svpò+f1AnÌÍÊÌ er…#¢ò’’Ôðý 'g›˜” ¤¹oX&–RPRœ“’œÍ Ä‡¨ÀþÒG¤Èh9Ûhëê£Q( ›h &!‡Ï+ë\š›œZ¹zóÞýû÷ïÝ»wçêùÑž<ÁÒÙÛ]ÜX^X>xðèñS—Ožº§9 jõÀîžþÁÁŽúû]h¸‚²®£‡J1¯½™SÓ"ð›x¥éav–îö.NU Ÿ”Êv>PÀB@2  Ê*ª2 ¬<¼Ü=¬Tà*f¾´úþ‘1Ô¦F…</ÇÇÛ7Îk‚·¼È‚Ú:6…Æ/Îl®e4ÌßxþüùýCÅdF&£KBJð·q YÔ_bc0CMäR×Õ'$6"Ž¯ã–€£çç•ÒÓÌôtˆ%cÅÙ ¢©£c¬¯«k (£®ƒú9*¡î î¦ƒ”Fß²êŽááÑÉœ‚|¾XÚÛ 8ÀÀ`/ô·Þ®NUUyI)I÷͘¼]T"À>• ”+·{faqnb¨_ÒÝ%¼±wúÊݽÝÝÓï>zt®3¯!+‘…Ï+Ï‚êÛ \T¸¿£‹¡¥w>-ŽÉ-IK&°ª:þùü†JN#¿£Ïo ÚØ¶¶2#â5@ ®I8Ñ "§$›”¥'yC}S¯ÀÈ‚盉%·hZûÈÈðùSÒ­ƒ’¾åÍ¥AéÂÉ…òr®mŒc(9«¨¬„ÓÖTŸ“SÄ©­©Ìb0RmÃh‘F†þáúê^¯ÝÍÀÚ).—ád¤kæb€TP6Žr°Ë(kH†‡GFÆÄ=ÝÝÃK«gÎíí^_ .Z>zñtÿÒÍ3䲜¢ÊòªÖ¹KŽmŽëÅa’’RH©DF!;?;#FˆÃ¸Xú'¸Á`rššÚo&LN…Vs±U€¤:ÊØJ&+o¨ "„¡p`Pdv—¨©1½²¤šS]Û€ÁQ]µmpçÀˆJBfr°µ®£µ½/6µŠÅ¬(`ƒ^ZRV+ìk,-+$FAµ¸¼®[8&1&É7(ÎWÊåTp¸Å‘¾ÑúH5ô§æ^=M)£d¤©¥©B[š‡Çb°‰¸øØ8,>­ivfrv ÿÀÿíÛ7¯^91;1Èß{öø«¯ž=¹}ùìÅ‹'Ï\¹÷äꥳç¯ï­Ì¬’ {‡GyŒõ•ƒËY¡~&(-cK[Ý÷ðW1@ë¨ëZ˜©ÊùFEEƹ¨i{&3rT*§o°§©º´¤´„E#C³ KóK''¦Î •ÚÙYhkki£µœÝ}‚ü‚¼ô çAP:Ž.>™•5мz« £‘ÓXèåî ÷®Ôr-ŽŽŽŽvǯä52ýÃ}â=œmCb"ƒ œœš”ò9DÛÇtzckKkKKk+¯¾žWSZ×Ó•#N\|þüÙãóCuÝÝ•s›9ØK#۠ب@s(µ¨í*([yùúz…`#œ]±x2“•žÉ.ÎØàgž‘™ÉL‰ 4@hèêX[˜[»ÙZ»y™ýüË:%9–ú©£uA×ÐÒs'$S2J‹9ü.±¸Gòª¬·µ‘[]U^\D±A¼.‘©yâHDZ»¤”30<8¿8?;=6Ð72?»ôòѵëwî^Û½vûáÃ{ÇZòÛë²J-|FrL8ãïd¬­£«gdÂG‹NJ/©a““5\€úÎŽúš–®PÒÙ•Í­­í­£G—„üø]£3­íÍU%5‚–’ð}—ÕvŒ"Ó2’tÈ@ƒÃ &vÁ#KgwçWNŸ8¾³¹uxjfíâVUE“{L]4–3ÐÑ$/^oç–åç5µ6ÖsÊÊŠr(TL1# 0!‰b¥¨Ã0Tb\„6>,,‘YZ•g&ê[ºaht_ÛèŒòV €þ`°¯OÒ7}ô8ÀÿëkÓÒÉèÒ‘ƒë7®:~ýê©É6锨^0¹yéòåó§N®&'áð©d»¼¦<'3F  òst O 642õt°ÙÇ?LISS±ñ ‰ -ËQMÆÂઞò0— «0‘Ô7;Ý7Õ×­ç6 Ô’\"®×ÀÉNÉ™ ´òé–Ž¶¶A¬ârSPWQSרî¶NÔYÏI±’? ‹TÖÕ@9„…GÛ¹ÙØ‡¦qêk›D}ÂüÈ7KKMùMâ@¥"h(½¤DwK#à:hK—Èèø¤ädL\< sƒós3 Çn?xøøñ£;×®^¹²{lfáÐöó·o?}öüÙ—_<}ríôõÿòÃ×÷¯^»~îà̱“sýC³k[G××KB5àòÚf&¦ž¡Zâÿû#gG}][w_ c—Øôl1&ÏÅG,i©¯®îè5——•äB¥ÿTRjNÇÌÒâÂÚ‰¹™í¾‘Ê`;;;Gwßwggw_bzL€¯ €BIIÍÒÂ?$+·˜ÛÚ!t¶VWrÚ®ÞÞÑá!ÁÉ #ƒ’®.ñØÔ‘µ#‹s³£’¹ÉÎþFn. -ŠšC+Ní’Š{FFûÆ&'‡Å­FD„ÙÐÚÑÖ dmsCs÷äÆLgßÔæµåñ¹«/^<{z÷ÔÎîÅé㛵ù9±6FöAaÞ®¾šÐPÚ«QA;yzyûù„‡Hi4ZzfaAÀ?'7+€ÌLF &ÎMESGÏÊÙ- 2DB›Ÿ^û‡!Tl"’É5U Nî>`_œcXÔŒ¼òŠF°]]=RÀÿû 6@o›°Ë)+Ê Õ„CŸƒ!,ãd¤Õv -,...ÌŽ5Ôß?»}âÙ“«W¯?¾¾»»÷àñõ5IK¯±,£¾Sœ좣 u- ,#“´œ‚¼BN}Mn .…Ææó[;:Z›ÚĽRI‡hausk{ûØÖúÖöááŽ–æ¦æå# =B‰€Ëiê j^$\/ŸJe1('uMGeE k[§p"[²zêêÙ¥©“·ï_:¾³½}üôîùvž8»®4‘ÍtJçÏ|ñŃíQqc ¿¿¿­›²¢’¢ÂЏXzCSyˆ–Š:ÊÐÆÔHÓ!ƒ‹Oı;‡çz Ëòò bñôŒŒW'lV9¿M<4E€¡á©¥‰Þ¹SgÎ^¸±wíÐâ°DºxtueçÞÞ©S§N\¸,mwtޝŸ¹tåò…Ó§¶Ç‹XéŒì‚†Îf^]^ƒ@ ö÷ó‹HHNÁã#", æ4õvÖ’5Lã5•¹MÝ’\;u%y´ž¦¼ªžV„ªbP<5''»rpvafnr´¥yphrNXQÁ“ˆÚêòkÒ«ÎÜÜ;6?^äáêabÇbeåJ;ëj{Ɔ:ªj%‡G;SÐð²:F¡ÖÖ^¾^ŠÆ^áa1Ùµ-Âi¯ 67‹IŽ3ÒVût^A¢ÝðQ®6Fš(”‘Whpdd,‡Ã&$ úÎÏÏܹ|÷ޣǯ_¾|ùʥ텅£¿þþÌÙ§ß~}ÿáWÏŸÝ8´õÛßý×Ç·o^Xž™ÛÚ˜Zܹ°½µ¶ºº*¡Ú)Êy»Øaã^)ýŒ—•…!Ì<­õB#C<â³ ó«¸å$r25¿½âaÃÒŽšÒ6´?øCɬ\<²yb{náÌîÈxm¨½½­'––ë‡Á¥OÔa}´÷‹§0YC¿Xlzn@¿ ³½…[FÅÚY{:ÙYÚ:»û᪇æÇ%ëG׎,/.ÌKW÷N/Ûê3cƒ²9Ù¹ÅÕm}ÑøäÈÀèÄäĨ¨„ç¨Ç,¨â‰EÍM¼–f^÷•Ç7æ'f¿¼qøô“—À¾zx÷ê™c³¼™Æd/×ÀH[_WG7%gêéåä飤Ñèé¬vÆdåægçfgeff0ȼ—¡–Ž‘™›OXŸw@Œ‡ÊO}*†TÒR3N?ÜDÈÄGÇ%`0¸ŒÜì¼² NK[[‡°[ €>±DÚÓx} ·4—`¯‚€#2¸²S³"ŸU702:2 à?=9916:$éÛ¼ºwíêµû@ÜxúÍíc[«£í<>¯©¾±–†‰ô7•Wù_[ÏØ7‰Î./¯¨ʾ€Á`6ÚZÛ;:ÝÝÂ.açÄæÖæÖΉ³§NŸ=¶~x¦_ÀçOZ[;835ÒÛ#–t [Õ¡Y8Ê›L"“Ó˜YôHoCl”‰k&³kóØ©Û{ÇïÞ}ø`ïÒ¥ó§Ï\Þ=²<Õ;Z…¯|fq÷éÓ§o,­]™êo¬®ilå°y5Ùœx~O·XBõt´Á47dE›S+Ê‹‹{ø5‚‰…ù‰öÚšZVy{^+Ê“]TÝ µ{ò?thúè•Kç®ìí]?zpq|`|þÐÆÙ{{à­Onω¡P4¶såÊ•‹àëÍEi‡P$ìñj ÅùøûùGa±ØD|ÆÉ=B q¦hèØÌñ§€÷7Çy8r’íÜqÁv&Nét<žÓ=?xiye©S4-íŸjªïêïj©ˆli;µwóÒú7",ÙÄ™QT×ÑPÓ ˜XZš÷ÜܘìÔÒ2²ˆ K- SÜ}H*Êj^±TNG7`~½"^}ue†‡Ù§?öŽ’‹Kp2ÒÒÐж Æâð¸$5S|di~~imûØÅÝkW/]‚ðvmiqóÛþÇW/û»ÿvé“—/n­­|ñ»ïnß¼yriam{eõÌÞÝë[k+‡¯N KlÕ³èjœ®ª&«ºƒTµ•µtÌ<¬=âb¢#‚cYÙôqKu.-¯ºCÜ?<<65Ö]W”ŸeÿTr:½Û>½sòØúÁ­›×ÇFJ‚|üÛ<öàåËg_=ûêÁå³gÏlHg–&:Ë YDœ©€ Ð Ÿ"ô}¼|üÃCã ©ÔôŒì ƒLcf³‹òòr²³33(Drœƒ®¡ž‘…¥­‹½‘™£°›Å>¨?ÿ êz¾ÎLÞÊá¹éòtß\RR"žQ”‘Ç­¨@tuKz{¥â®î^qwO·°³›娈@È"2r^Ñ 4no_ÿÀÐÈÄââ,Ôèw¶w €Ì{u÷.Èÿ·ž}ÿâúÎñcí¼–¶î*&):ÀÍÑZY êZ:a ô²²ŠÚ†úÆžö¶Ö.Iœ€°GÐÊo“ÝÚÜÜ9~éÑóç·On]?2ÛÝ8±xdmíèæÆÑƒ“ƒ¢6~iF¨Â˜J•šFƒúgiôLvz5'ΟŠñªÞØØºýý¿ùêá£Ç_=¿{äáÓ'û&G{Ç7w6ÎÝð¿}~ýÄÎÎÆbg5·M"iïèà&f”ŽZ[žžl))*oiÏSŸ^X¹pîÆ¥ ñÄüÂì`[C}]Sk›ê[Ìίîìê;4³²±89sdûÄéK·.üß8yäêåµÉÉCë§ïù»{r^Ú#êê“v ®Cø?uöÔáÙ>ñèpOW·¶¡¼8=™ðïíáæánoãh®ˆ„Át,ÝÂq‘ö!µ¹I ½üÙ#Óý©ñYõµEYé˜ *³¥«p|fîàê:ØŸ­µÕC³“s³}ƒK“">·õòãs'nÞ¾¹»)Îe¥‡9¢²9Õ5µõ’ƒîÞ»sãÚéÍ#c.͇ó)Ý'Ï –;JûµŒ 4ƒ"#ùÂ~¯´¯·½¡’â¯õéÉy¤¹­)¨F”º†©‡o`8&11‡KN®›\Z˜Ÿ_X^;vâôå}»²»wqýБs¿ùïøÃÿÏÿøàÌãßþ×ïo\ý—ÿv÷ÖÍ›÷Oœ»õðîÍ;÷n=ºº65·9-n‰0`±BŠâ#œ´å,¬`²H˜º³‹ï>ÇÀŇa±1t.¿d »‹[/Kú¡>ìx}.™J!§R¨$­”ß5±¹±~ñâíà S3ØÙUåìäSg¶×<|¨Ò^ÛZÿ€¢kDˆ¡˜ËkmàTs¹5ed_S ]}]]û¨\Èó›GAö_XXÙ9wz¤KY{]aÍÀÔ`sA^v^M·hðUêgƒtÆëémnè[ÙÚÂ,Þ}òäËç/_>yþõ7ß¾¸såÚîųgÏ^Øš]X:¸2’è))­hiÒGGËÄ¥ ¨fæçÓÖ™HÍÈ`ÐÉd:3«²œÍÎËÍÉÎÊ §¦Ä„èj›XXš£Q:†Ö6ûM°ŸPPr£b\kެ¬ÌÏ´KGÅU9ŒBVqNnCeE‹X"îé‘ôvƒ,%B·÷ü×`ôÕT”Q 6¸¤äòžÞÁQHýŽ€{Ÿ˜uvt ¥³kW¯œØ»º{õÎÃ/¿ûúÞµ«—ŸL®ÎIKŒóÓ““Ýçÿ^DZN ;·„ÛPß4´0&‘Jº@ümiwµµ‰Go¿rûÑWÏîž;µ³~f‘76³´²¶µ³sta¬·­¢z2Ê:aZ^qf=- êŒä”–—ÕòZz·67¶ÿË?|óøÎíϾ¼~úÔ©“Ò¹¹)Éò™K»·?}´wþø™Ó;;[SÍͽcã}‚qG]EFvçáù©©Y ·®A0$õÎÍnݼÿÆÑ‘Ñ9púósCMuuu µe%ù%"€þÞ¡¹íõÃË+§®Ý¸qïò¥½½{»[·nïž;¾yl÷þÜ;=5uôÈÑcGgNî^¹t|óü&—“ó³ý]ÜÜ’úÚÌ,z|d€ŸŸ·6ÚDOS‰Ôp°ptÓ1´ HL!Ñss'WÇÚ:zçÇr³Êê¹µ•U•¥ÅÒéC‡<´ºBÝÖæúúÊÜìüââæî‰¾Öº–û_Ý8w÷ÎÍg×»KVjžE܆Ʈ±õó×î>zøàÎåKgwDÍ~wáÒÊèé3K=܀ЈèˆhRv­t|fQÒ+í*µf]>õ©/0%k9˜²ºººš–µ§oH‹INJf¹“þþÏ^;ÿ þ×nܼqcïÆƒûýÿíüãÿðûßÿá÷ÿñûÿÝ÷÷oÞ¹ýüÛo^¾xñâùãk[GOœ8|éð?7³¶Ç­­©<ÒÆÒRåj,«mïê턉‰Ád”W”WÕ ÇGº!þ%ííë÷ˆD} Ì42°¬úü’¾ÕíÍ­c›—®Þ¾}ãì•«»+'†O×TTò6·Î족ÒO´øG ]câòêy-œ’ò²üT\BLbt ‹“‘¹e.1K$_8¼±z¨ÜåƒGVçzE€Ìu´w4rkªûæg&zʳKûº:‡&g§F†‡»ë9Ùٜ޾‘~àÒ€P4KÏ=öÅ |óýË›g!;wéúú¡å¥YéÁÓC¥%•âS§·ù¬æÁÎLv}3¯œœœ-‘öI"½Â“ðz:žžYZ[YQZ^‘+NÁÇê éYZ¢••5ôu•búø'DDŠWV–æf&§§'{ó³‹ ó‹*Ë+ùݱXÒ#îã¿»»§G”;ÂÁÉÃ;Ú‚ÈÊ%Dã0ÔZÀÆÀýîÛØÌ”¤³S ì’L­]8sæÆ­›7î?zòåÓûàä¯_>{þt/'‡JLp0”ÓÕ50Ð5r‹ÄfågÓ¹ <éâÂô¨Q—@<>·07:4yhskíì•+—¯<|þôÖÅó'6/ß9?;whs{{{ã0´çC¯2:ÐÔ6†DË­iò[¸Å¹Y¹µµµuMm#[[Û^þæ‡ß|ÿÝó¯^|ýåó§Öú6Ï^عöðéÓG×/^¹á^"„¼·OXÊ`Ô/-Ì®žÜšs¹<ÉäÌìÜέû®÷Î/™³¸ ª¯kihìàW—Vò$½’Îö™¹…ŃëǯܹÿøÁõ½½§wn‚³þòé/ÿí7/ûÝ“›Ç8qbsmíÄå«ÿ€á.//-ÎŽˆ»òŠÊJ ¡¾T`€ŸŽ¢Ò~mP@O'?g—ØTb !•DÉk ­m¯NŒ\]l ²ªÀ=VsÊë{æÖÖ×Ö@ößÜÞÚX¶:?»´vîÖÕ…nóî—_<|pûæKó™&Öîá-í]ÒÁñÕsWn=àÞWÁ­TpêKgϯN=VI ãíôLb¢˜Ò‘©™éñ^QC ­©93Æþ絑ê:rûsR©¤¦ŽB©[µ™”„g’+‡ç![\=ýèþõË/]8uöêÅãçönÞ~úò›{ÿþGÀ øˆÿûÛÛ7Ÿ={ñÚ¾ØÝ:ýÚÙí­U1æª\z*)ØÚÚÒÜÒÚÂÌÜÂÚÎÁ5ÀÞ/"8„^X^UÅ©nhoåŽu·wõ´Uåçæç0È©$r*­´ndã$d'N½vçÖkW¯^8ÖW;´Ù]QÁiŸ=½æó]ll\qq‚ºº’4&3»$NÀ'''˜çGºai¹qañLÞÁÕÕÃË àØ–/v …Ýc½Õµ\.7/_¼¸0?ÙžWÞ7$Ÿ_:txab¤¿§»­4#OÐÛ-u´ñ[yÍM‚•ÇPxòâ»ï¾ÿáÅsþ—î>Ø»pòüù³;;LJJ«ÅËþ{k65ƒ£˜lA{{[mi·´¯¯ÍÊ" O Ð™LþÛ[êë¹E`2è4¬4¨¡®¢¢ªª¼?Í SùÜ€¬š‰kƒ+8²²¸053?731&åU•–T×7p[ºÄ’Þ¾ÞnhÚA(ìuAø´¥ø¸{ø&‘³Š*9œ’ìRžÄ8(ÿƒ_ãSýPPöô>sâô­û÷<úâ_þ¿ß<¾‚ÿ¡‰·¶ÄùäTÆC]ÞØÂÒÂ\ßÄÊË#™Mkhä÷ ö.12ºpdõèÆúÑõõÍ#ë§/]ºxåÑ‹gw/\ºzúä¥ûç¯ooïloY{>;"h®&Äû„ã)ÔÜ&ÄA}u5¯¥[×ÈoïšÞùÿÁ—ßÿìûo¾ýþ›N./Ÿ¸¼»{üÐá3w¾òÿá­ÝKÿG§‡GFGFÅ‚þ¡ÞV±`zþÐÖ‰;+ƒ¼¹Sç9{çþý‡{çÎ^¸rz¤€™Ñ¾Á–z~[mYu»¤W,蛃ZÙP©òÜ͇oîíí}ùàɳgÏ_<þòÛo_~÷Ãyyk[®í^¹|võÐ!·Çû{…œÜÂÒŠÆæÚZb|T€›4ئh¡ÅZ[zûX8‚{£P¥m£cGPYßÜ\o#ÐË[yµœšÎÉ# ìÛÞùs{g~f~aíÂk mõ­WŸ=}òˆëëÇfg‡ ÉÅüÑ‘þÁÁáéC«ç=yÀÝÇgV§¤]çwÏn»ÔWQ’œh¥™ZÊJ& {ØRQgTX’t†lþζÀª:†¦&Ð'2"`òj(uu{ÿ("1!Þ7$"9™J$à)M€)Í/ÙØ8wîðæ™sÇ7ÖŽÚ¼|ëæí{wüäÿÿøHüþ?þû£;_½üþ/ž=¼²wýú• Î,HÚë%Kc=#}Õœžb¼“»“•••¥…••µ­µ[\l…šÏáESßÒ œoLÊoo¯.ÌÍÉd²èd ýSÓŠÆ·Nœ|e§Î\½}óÚÕk{W‡2ÊFzjk‡ZÅG®­®-,IRm]‚Ù^1Q™@q4:À?¹¦¾•F‰aЇØá™ G76WV\]9¸vñØ€hhsymIÈok·r¥ %Ì {'ggç>¼49:Ô'íáffñíP#›W^Ö(˜Þ¾ñàÞ½_|óýÿú¯ß?Ù»~éäöîÞåÛ·nß¹sóʪ L|íüRÿÝ{›³mÆ.Q\*•ö ´Eãq˜XrA^“É*lokä”—•æd²@< ÅCóh5UUåýN-ìÿª í’oÈ[œ^YY\œ^>²rxqfbPPÇ)oàwt‰»¥ýýR‰¸À^ ‚¯àçDzy` Js+K¹Í ܦ֎°F€}h~l¬§ÂÿÒÊÖ‰ã§ï<|üì›þÇïþ×ww}ñÛç7ŸÜ:WOÃÆÆ'¸!•lœÜ}­tMMœ½bcØ­£cC££#€„LÚ\dåÍõíS HÞûêÅ‹Ç×o>{xâäîÍ­cÇvvŽýàÿæÞ©¥ñÑñ±‘‘á¡þááŽÖåu(_ŸØš8yåê…“go?x¹÷îƒ;g--¶4ÐÚØÖÁ-ãvö/]ÝÜÜØvææ½[þ{O<ùâå×À±¿þæ›o¿ûîÅÝÛWΟX_Ù¹´ ôÿ…õÇ9|pbp@P‘SPVVÛ\’î`¡¥"s.§ã„«nô t HÂ…§•²ó K¹ ‡WV׎=º¾1UN •566‰Æ»êkš¾Âÿ&Ô)KX9º}dùøíkó‚fÞ™oŸ=ýêþ­›—×fn. 4ŽÏÏN ï?¨|øÂM膾x¶{kïÆÅƒ‡Ï\¹zùÔæñ…éƒ5……aÑe¼Úâ\n_ÏÔHO[­íÐzYX¬ë;®ƒSPRQ< àh"£¨nb¬e…ÍÊ$Ç»‡Òi™DÀÓ[§ü——g&ÖWÖ¯=2ç‘S·nß}üÕoòÿÏ~ÿ ÿÿûûÇÏ!ä¿üæ›o¾~ùòÙã·/\ ù¥Y¹Ù,&jý“©³;§.œ;yòôéS'O^º å‚„…ŒLvÓʉ¥Õµµã§6×$'7BIE\t ƒYTÆÀRË9lBbrJ¾´©2· ‹;»!H`ZÞòjgkcãæ×ŽˆÇ.={tóâäÀ tx°obyyøâôüòá•õµ#‡—§F†úz%íìŒâf>¿ß\H+¨8{õÆ]à@/ øÿëß}ýååµ#kë×îÜ»ÿàÁý[+ü²Á_Ýûêë/Ÿ€³«ÌÍÌÌb×ñ¡•('¦@`’YV^VœÉÊç·6ÖqËŠ‹Z7=šþÓèWöêq†Ï~²[Ù&ÔÓ Xtxal|afþàêúÑ•åù™QQ=§‰ß%v÷ô÷I{»!øw‹º{º„¢®Jœ¿G0µ°¡±ª†Ãá6·ðÛ:»¥R(«Œ€W Dèè™ÚØ9~üø¹«÷¿üî·ÿówÿþ¿þõÙËoþðïß=¸2’IK ‹ñUWqñ ó164°ð gt ŽÎÍÍLÏÌôÏÌÎÎÌÜß "÷åÇ{<ñ¯ß_=un÷Ìé3§Ží?qâøÖ²t¨£cvAT˜ÏÎN/B* ô÷ªÒ!˜š?zn÷êƒÇ_|û›öí_¾Ø]ºpcïÖÝ{Ÿðƒß<¸ybgg~l¿i3ÙpÿøÜÚΉ'O?±½z$7>ý¼úáã/žÜ½zú衹…1q[g×ÿåì=#»Ê³a „ùàKH I€ü_€€Clp…Ø^·µ·x{ï½yµ½¯zïu$úhf4£‘FÒŒ¦izï½÷ÞËþï¹£m¶ù°¿ƒ­l¼Ò{ÏyŸç}ž÷¼çêâ1ÀMm2ƒÀO¦Ì. $€~¾Ælv8ÑV »E¯‹$¬™‰1â"ÀŸI™ ÐÞØxóèîýûìxáßþë?Ç^Cø¥oýô©_<·î×oÿòçkÏŸÞòÊ[{ÿö3O>³îµŸ}÷;ßúö¿ühãî]»Ž^¼[×P_ßÔÞÕRS[WuåÂõ»GÖoÞ´þíµkß@›;êzÇÙ,6›M§Ñ8|“„ÏåñYSww¾µù–@µ81>J˜Ÿk;ùúš£×ÎíÛüΫöîÞõÎö —N¼ùìïÖ¼uìäÉcGOÖŽ’zömÂ7MÂ<ÏP¦Ér¿Ò1k›xíímmm½ƒƒ ú†&€‹ÇGGÿ­­MMõ'·ì9}îÔé÷Îîzeó ‹ÆI¤Z;Àßí°Ùv-‡19"Õ5J¹\JºQ1!™5ªöóG·®[·n÷µÚ¦Jÿ;onxç­µoo:pæÜéƒ[v_¸tñ™Ã@èÑmÞø‡¿øá׿ òÿ+ù…w à“_ùæ7þõÛƒÃ-M=ø °#¸îº÷NW\¯¬ªªmhDÇÙªîÞ¹[ÿ¾ð㟽tàôù+—*.¾Wq 5KÜ©ª­o¢‘ÁÿWÞº~ð_Õð§R&Éb{(žLm@ï¾xPĬ{÷ןùå¯ÿó›_úÑ“Oýæé_~óo¿ó«ÿzçz{o_ÿf{:»{ûz{qSTÊ Jô€B¾’¨ÓJ$œìù………ù9Ê e–:CšDÞ]C=U½5']¬DÔÔÕÖ܆뭻y£ºkŒ´¸"Ý®4Ù‘@¤«aC~æóù"© à -a§ôµ·ÃÇvµ¶v´·µ¶64v㉳L.o ˆffjžÇSiu£Ñ Õèô:-xùÁîžþÖÛ7+¯Ÿ>u­¦¦a”Žî–2¿´¼¼Ì—‹WøJ‡ËíñzìV»Ói‡È¶™ÔR‘L@"P,› ÓŒÇC>ìh¨½rpûŽ=Ûyÿe6O|ñ[¿|ö¹ß¼ºÿÝëÏþúhSãå=ïî:¸oß¹À>yy~ªîFÍ…ŠšŠŠ«íý •µ½ãÓHùId*:Ce²Ä‘9‰dÍÕì -RÁ giŽN§ƒró‚ìïíí§¨• ¥9 xœhgÁ OÌüçº]ë¶\ª¾^qþjˆ±ÖšºÖ âLÛµú¦mßûÇ/|ò+ÿþä#oZûÔ_þðÕÏþöŇO¾ûôSϽ¾sÏÎ ëO¼{`ó[¯m¨hïÇ  v¶t÷öOQ©Ó#C#„E•3O¤‘ñÇÂ:鲨úv»Ãíq¹&£^-WƒFãÎQ¦ñ#„!È í¿ßrjÃÛ¯¼°~Ýsë_ùÉ¿|÷ûo¼¶móéê–öööŽŽ®îöºêê»—+®^ÙõæÚµoA¶„×ïÚsúæÐ"‡cyaq…ïrY¤<.onl¨­mÖ¨¦ONŒ‘hs4ÊXó…#—/Ÿ?qòணOìÚr¼âÔÚ_ýú]ûŽ;VQƒ#¦»n·Þ%PˆÄ™éY‘Å­f+½oÀïšÁN7÷ ãaV‡€¦'AUŒõ¶vövuԟز÷üÙã»vîzëùýí£3¸é)¤<ªÃétyý³pÙé Ùµ ¹|©þÆœÓå‹'¼zuwWÿÝKl»ð¸^ÕÒÖí ÷¼ûöÎs·ª®Ÿ;ù2(€“ûwaøß´þ¥¯þŸþöW¾üÕoüóß½ÿE@j|æ/þþ7;NV ·6Ôvô àÇ'§ ·µÜºxùVUU# õµµØ{-ïVÞ½{óòÅc/ÿì·ï?söÚUø:æÆ ¹¯¹mJ-íïmð_¿võv;4136ÒÒ4­ Ä“q fðD˃‡×¾ñôÏñ£oüÅO~öËß¾±í÷ßþákï\èhîDÛ*ÿ}­=ý}ý#$8…‚ò´yïŚ榦†*Ô"nÿ®];·oÙ¼iÝK?øÞ_ÿõsÿß·ÿù;?þù¾þq»¾òïزýHK_]}C7®Èvj ×ßÕXw·ªº© ðßÔX_~PUU%ëŠý/ýzíáSgΠ×Ü_¿rùÚÍ[·ëǦÇÉ:5y’ÔróêÕ«×@t÷5÷5ÖUW*}1x$›ÐftJØMÇÞyý¿ÿã‡ÿø¿¿üßþâÕcÎ<õßû/Ö4ÜmÄMŒâ€zþ&!ïÓ—f©Jd¢±â½{÷ î 3GEêbff1ÙÕÞ74<:³,\ê®í›èÆuµ¶S„”®Ž^ —T®PêÌNÂ>6œP˜jµÞdÔþUR){fr°«spœ@"O.†‡p¸‘™Y Sª–sçf(ä U&VèÍfЦF£^Á¦À:471V]9_ÕÐÔI^ZZb0Q “É‘j´zƒ ‚ÙQìDZþä¶€8hð$ZùÂ`gCumcõÁçõÒÿüçO¿ÿù?ûÎw¿ø©O}ö»?{kûº=g®VõMì>ÝXß1Póú¥[mÄéYŽB¥’I…³Ý ŠÇ»/U\hBg#Ð "‰J‰J›)5ƒFk¶EœX4 ¼j‘@fñºÌй2ad„05ŠÁΈôÀŒÞP(ðØ”+.´)WÀ„G®¾záÒÍÚ¾~À&/(sm U'7>ÿÛß¿ôÔ¯¾öÙO=ñgŸÿüg?ùÙzþÝç¯Ý¾sûæ•ÚޞJ\ÛÞ#WnžÚq 742ØÕXY72Š&Ž ÑaÖ]‘d*…( ½Šÿx<î7Ã!§äųùbÚæpÚLZµJ­-’'ÇÇAÿ÷“¸‹­ç÷nݱÛ¶Ú–‘ášSëÖ¾½î|kOOo_2ŒÝu5W*N¼ûê+¯¼òÚk¯½þÏ­+·&QßG°Âç „šD¡µ(õ½ÖRÏŸ™£/.ac‘ÐXsûzåÝšÆÆª»7Ï;r`ûŽówÎ8~êôõ˜ÜE—4Ae/qi³L$£3”»WHóßb]KgWßÀÀàÐÈè8‘@ Qf¤Þ×ÚÜÖríàÖ'.ÕUܨojêÀõá96˜ƒ\ª´y½þàß…è0 %‚†ùŠ/žJF}N›ÅèòCF:aq™!ž½qýÆí;—N¾w³²¦ ôi=À©ƒ‡P·úÖ­ëÿð»ß}û[¿ûÑS¿zê™ßþúß¾üñÞêöÄ7Ÿ_»iãŽÛµ­Ýƒø!üØ$au8áúk*k4¡/õµUðÏÝ»•uUÇ×¼´åÈ©3'åW¯^¹rýæ­ê~ G+QZä ó]·á?^»uûÆÛ7oܨnkïd˜ü±d2• ÀnkµœC»7®}õÙïëûþ7?yúí÷.œÚ°ãðÉ«õÍ­¸) Fì öõõõNÁÚ0D29—FÕ¢â°+yï^©˜w²ggé³Ú,qdÓY2~xxÏʗƦYrÊà~¤½•,bŒôõ QÁµ«J½Õî~—Ãb±ØlÏi‚l®ª$´ÁÎÞî12¤z"G ÎÀ§B̈äjŒ5G¥ÎÑiŒe…Éf3#üëÄ”\kKc=:Q}ãz}KküýýÁ(5Zƒ fü]^¯×m·¹B^$f(qgE¦‘³º*A+]}î'/½ùÔ—>ñ©?ÿÊþãÿñoÿþ¯ÿùëßo¹>6½075V½6a¸­ª¦½¯³{~‘#RªTr!›<>˜è½Rq± áŸ8áŸLa0æ¸@vp¨æhRG£á`ÐëTŠDj‡Ïçµp@ͦ—Wi UdðJ•Þê Úå\_©.(ŒØS:o_¼T9Â'þ§ˆÀ- 1c {¬ûÒ»o¯ùÝÞúÑ·¾ñÕ¯ÿë¿ýÓÿþ‡gNÚ *¼¹öÎ¥š>ÈÓ#C•wêkÏW4&zê«ïÖi}càvð Á r0…û" ølN'd/’)À*'Á4iåR‘µ.1tÒ0ÜUÄZ¹µcÛæ7_xuÇÁÛ—öí<ºaÝö‹]À_?¨íªk'¶¬yù•W׬yíuôf¥ó-MHÿ¬ _ ˆ‰|!í6Šø´ T}›³ÌX$÷¶¢Ò/d»ºê[×n\¿tæÄÍcgÎÞ©o#Í©+:L©“®pY,žð¯·y¢ŽJ¥bX?ÔÓ30Mžœ›ž!‘P™Âjë­›×¼óÚ¾÷š¯žÀõVw禇&uào\^«Zmr•ñŽ&1&LfSv…Ò„y‰‡<°XhU 3}ÓlöÒìùJT|C¿[¢ª¶µ”jíõkgNŸ;_qzß¶­_{á…g~óÌ3Ï¿ðÒ‹¿ýÕ“ÿüÉO~œíÿÏ}ÿµMÞÜ|·¦®¯gx|br Òÿ0˜6Ü@2õÍÍMhW¿©±¡¶±ð_ÝXsýØæ­‡Ž=yåúW¯Þ¬ê&ç„“–Ë"V^¿víÖ݆¦»@Xuõ£ŠÈâ &’0¢n«€s¬êØÖ³•ë^=öwû_Û_›ðŠæfÁi££ó4©}„º0ŠÇÍ«mV1q9sá Ëý­# bo?~^¢ÑªeZ_8€¥§\9x@³ÅNÓ ¾×l”˵JúäÀè0ÖB™ž^–Šy K&T¯Õ¨eÜù9ž€>ËÓCz²Àè%ÊXGGK袆†Úº–žöN2óþYN¯7ê1øþ=ŸÇâŒÆã­J.ñ¹œ¸+%§­³³êöµs'ölÞ¼öÇöÕÿóÝ‹µGëZ÷=ÿŸ/œ&©4:¸úó$22ÕÓÞZwçZ “Õ©TJ‡IC -”‰ú«×'ȤrÕ†¶@§² s‹tþF‹ÝjscÑH0 X5*“7ðÙL²yÚ,m°›´ZƒÅf5ªŒV(j~£„Ï—›-V‡ÝÄYf±y²…æKWz667…<·Ì(TËÓcmW޼ùûËÕg·¯{áÙõÛÿç7ok¨Ú~¾šÄ ·5÷âú|1“6~»þæÝæÈ"mõÍuí:7ðŸâê®$–ûÓé& †`ylVG4W(–`™ÃN‡E" |>E 2Šÿ‡Ó8pf×Û/ý~ÝöíÛw¢S».Ö·ut£ü߇êj¯«¾}éè:ôju þo¼õÖ––f<³Âƒä×â…Ó¹bÊ…ï-6³Á4K_ZnPª¬eH-°šMííM•wj«.¾WYóüé:‰Lº@g.r ‘ûÓˆWx+"Êÿ†ÿœC/¦ŽL.¯,ÌF'@_&§fé–°O6pñôÉ-oï%R©)rñ<•¯‘ΑÌÇåqÛí^È„ÿH S,f3>ÑO¥³…Œ? Ú–zF8æxggSMUö&ŽÆŽŽnüØxÍ­¨¡àÌÁí[6®}ó™7^~ñ…—^zñÅßýægßøˆ¿¸²<>ýÖnÜzìbumSÇå)aŠ0ŽÀ àÚkk[š°ƒíu MMõàÿë›êî^8zðð)´ë_]yëÚµêA@#Íár¸lRSõʶb7oVáð”‰q{8Aø‡EOEÀ®5Û}­¹¾®þÂö³¯©¸xñbÅ™;½£Sc££ãŽpeßÝÞ6@˜]bñD*—keŽ­5™Ì˜íb&åv¨øíçÎÓH=KLÖϤR>µHå˜D‰–ÚÛ33Ùן^ÀZiö°ì¿$¦ &ßm3¢Ø‡`7ë´jµN§å­¦oSç—˜…BÎZD=C6ƒl¿ZLù¥ áߨ7 ùOêìhg¨o¬¯©ï™êï_ü³°±Ìé¬fCý6ø<ÀÐðn“©w._¡c˧õ·žÝ±ióæMïüú?ݰýHsGG[õæMu ±P£òY`,/‰³ã³¼É[ïUQ˜Hÿ*‘TÊŸŸ&Rh”‰¾~¥€NFÛþ3ƒENÊÙ •5à±`ùߎÅb‘P<ö{}@0‰FüJwEeµu³ÕfÖ©­vTs „‚`Š Î€×åЈØ,žÄèÑã¯42¬vÎ~\Å0º]`–ˆ¸îŽæ£»zÞ;°gï®ýGv¼±¹§ïö­»•֨תeŽO.™Ìz¡BÒ×Úz{Úúð£Óôù)ÜàÐà4CªÓÛb‰ Öûƒ:€³X0ðÂ,Ù¬öXð_*¦N«A¤TÈQ–Ï—u ÿ´§Ó±pií+víØ¹kï¡íÛÝiiîèèëíéêêéïmo­©¼¶ïmðþ¯¾üò«o¼ñæolصûÜÀ²ƒèŒeŠI—øß {æ²\¥¶:µ>ÙßrýêÕýDòD~Uʼnêêëçæ f“Èä0˜̪Ñl–¬HÔZÙJæ0üç Zk‰£UÎMgˆãà¬Zo$â\n¾týØÖþñY*ž+ó¥Z£AÊÖyÊÃç÷yýà?Š#&Ìg ñÇ%è²É0‚¿Ïãâv8±o¸ |xk?HÝŽÞ%¥°¿öÚeÀÍÑ=ÛvîÛ¾~Ó–7^|ñž{æ™_ÿâŸ?^ýï[¿xný–-‡oV×\;|¢{rb|t°·7ŒäkEÀGÙ¿µ³£ìn Âc]íõ3Ç:v¹ 7>95X{gZ̹õÌþŠQš£ŒõuÖ¡³uãÃÌ ìŸH$-­j‡žÄŸøýK?á僸7Îþ/^¨aqÈ@@Á4®«³ ˜hQæpyM |“ÙäÍ@^($,J¯›HôÓçgç—™S Lu/ $£Á@Àï´…£&N5 ®°·hrŽ'G¦Ã`÷y‚!¯¦7à÷@›ô€d64•RA§ÌPxJ™X*“)Ð-`lz êÕ´tÞbu9 ÍjöìÌÐxWGkp!dŒÚöÑžv™Çåò`xîŠHc5b»~`2°á †^ˆq³J&— $(¹KWæ§'z/ìݶmÿ‘}{m}yó–Um½C—vÔ- Ä HD|êU ¡Õ=wáÜ-q21EùCW˜ø³¤i@^±¼Ë…lF¤8gðŸ=™ˆÅãaŸ'jÀoRÌvÈñVd·- ƒQeÒáò£lƒå›Íb©Ý~¿wepZçõ8•v£Ëâ´˜Œ ãÝ=m½às{ÏìÝ»sÿÚßžºA˜¹úîõVA æw˜D‹BÖ*…B0;>„oiìÁ¡ZãÐ6ÙžHTèàO(’ɦüsùÀ?Asúß™( ¥{ùˆËn2¨Œ“B$À@Iëë¡8¬pó¸þ«GŸ"Šú’ÙDòÔçO¥zv޶8¿Èó)£S·¯·Þ¹|ñâåÛ­]ý´IDóó“£ý¸Ñ‘±ñ9¥Rjõp—Ívk¸€f;µyÌtHÿt¡Z#á dJ¹Æ£™ÁÓõáA¯ÍèÏÄ :5ŠBÅ÷NÑ‹ˆô¾`$às;@ë¢á±ÛV±à¯T¨Tüy eQi3éT…F/G‡I«Ñi•ÖtÀ€ásb˜6)LòXgGh[ô»ê[{;ÛF†f–X¡PˆêLR“°í.Jln§ËK…½^¯]–«@q¨…|öôä‹·ëšÚ;[›«·}kÿ™Êv\çݯ½G\ድz=Æ*ušob·ž?zìÄ î "•JÆšî럟Ÿ›cB†ÿi†Áª°Xld}ê;r#øÇ0£2¬ÇˆF>“BÙŒF¼€‡×UÞsócØÇ†.²bóùý>—Õæt{Ý@„^· <³~…J& ¶6Ý©%&êß;w|ÿ±sçîŽÑæÈUU3®X,ä~ÓZ,ÿòê4¡·³Ãÿà0in,å]$¨L60^‰\6É¡ ©°Çï…ôouÄ1üga¢MƒÉbw:6Ÿ/” ñ½“z³Íér*—væ‰6rçÖÍ[·«:z{HBÁ\OWggg[MÕͽoî½|ñÔîøŸ5¯½¹~ÝáÚa›ø_ Rå.—'U,ô}€w²*;DV"Pó˜äÉ®K—«ÏÝ&Óés¸ÆºÈsu˜G@iG ³Ñ æñÕZ­'•Ë­âß,“LfO8¤šgrf&FFçå¾pF4lâ²dƒŒÓS5£Â 2¨Äéñzî¯/„ ÿ …ÊÉÿÞ½l4EÂÁ ßcׯpX½ø‰‰ñ±Ñ1H‘CxŽœ¿{érå­Ó‡öïß¿wׯ-o®yõ¹gžþïùòžø¿ýÆÊŒÏóG/lyw󩊳N_¾ÚÚÑÞÙÕ38‚ëF{ªØÆj z}3*466V×66·u÷¶Ý<{îìéãï]ë+ž—õØÓ¤©†ÃZ^œ$-ñx<N„‰h8OF¼þd:aSõU_%2Yb¥J8G¢Ìλ»úÚ*¯\ºríZÃ,ë%Â(ˆííê¥ju"¹Ýáp;Ñ| MwÄí<¸ÿ9†D-“ÈU*ÃÃÃ-1üû]®TÚy]È‘HfGÆgYü¾0¬…DS² Ã?äCü€2µDbP1g)T!|ŨBÛ&Ôât™±í~[¢…ÀÌe^ÄV‹Y¯âÎ Ì¡ƒ‘µmx\CS[ûðØ8C$‘H¥‰D&—k^¿'àu#¦w9ÝÁt ðï±cï¼ÐÊW&F:Ú»ûúq=­Õ—ª+;úð½mg÷×/ðWÄZ«ÓeШç +F±úlÝð‡#ªR«ÄlêÀ ‡Ëœc©´}y™Éb v«ŠÇ“X±¨Ïê „c ÿð5WÌÆƒ^xv§Dr$•Iá¶Ðf;àß ðGÙ?_V.‹­tz½ OQÉÄð¹à›Ìà}% Ë %×pûNc}]SC}åç/^m¢ÍÍ“9ø´ðÍlÑ ”À  d¶´£itlbj`Âa|rl’©B_\pYþ9LÿƒHGÀûmàÍ"hžÁþºlFCÄc:¶¸­ Ìhžï›,N¯[Ëe˳ ƒbILioîîïëÅM±tz9… µ²òΩ=§oݼqùü®—_~ýØ»ïÜ'-p–™ ™'öÆ %Åb!—Ë”B7ÀðÏeRf¨w;Ç;&æè ´ÑþÁáÁÖ.O¨Á%9±=#øêôÚ dÞÀ¦çŠE”RÙ¨Ûl|À,„E Ž‘ôt&ðŽz#€Þ¨]$J f ý`8¿×»ªîW€ŠÒ`û˜ò(ýßË ôcëð»”ö|OÏøÔÔä8ìÅØØ`wU.Ÿº[ÕÜÞ‡»{àÀîuï¼þ:Ý[Ï=õËïãcüfs_úúw~òûÍ[·ìÞ»ç¾'ëÛ;:»úð#Cƒ]eôwö¶5·÷ôt¶ƒhl¬ohljïîÇuU¢Þ³ºúñ2*=SVL×È»$J‘œCgÑ'†GçíÞT<ã ' }^·»ûLñFG¢V+…lÁ™ÂõÖÝ­ní!ÈÁõé84ô¤ƒ­]Ãcó<±Ôå÷û=®(Êÿ÷ QŸ×ÅŸ§ÍÍÍ/19©Æy&ñx’ÖãÑÎq<›ôxü>;¸2àP!=®DX׬?B¿ €×i'¯l±šåb‰VΤ͉L¨\g5ª•*ª¡Y ZÖhuø’%ŒìsÙ„Ïõ¨iÅ‚å…ùþúêê–þáñÑþ–ævÜà(Ð ™Bk ÃâýÞ2þîPÜâ‚…w[ÑÍhd¡ #~Úqúîº{F{û)äá®i¡R.âKtžHH­ÕëÔt¢À¤›mÅÓg—9€Z,VÊz˜6A£Ãc*Õ¨z…\ øE¡x"õŸH¼™b)“ŒðºáF€Nát6º‹évÙín?¬ªGÁìxµž«Yø½¨_ جf%oñÙ½Zzíí;wîT×·Ž·œ8yéÂ¥®y:ÝKÄ=±ÎmCé)(‘Pm^ž$SSÆñdC T2g9J[ÐhrGø€ÿ\9ÿÇ aþ­ö`¶ˆðpZŒ¾| ·ÁõZuf¯_3ÜCU)¬~¯EÂ3¹L0 ^‡è˜‘MÊÙ%|WwKeeÕ çÏž¾rçÚΗ_Ùt~Ûçû§Hó€kŠ5&0„!ç^*”|ö`"™ÎÕ\eV0O MÏÒétu¢·©¥§í\E…š8ûN—Ûåöøí)™ÿ@8…éôt<Db±hØgà3˜‹„qªÀæLæà?FãQ–òÍFRf"q˜ŒŸ°qÀò4…Dn(.[Š…¨XBœìVp8Ë£ýcSSSäƒ49=14ÈT*©•=SÃS}ÇßݸþMô{dÖ¬{÷µ}ÿ§ÿþí¯~Œüÿé¿ýÞ“Ï¿¹i+z æÖm[w_¸]ÝÚÑ ××ÙŠúš:»Ûš»pƒ¸¡Án¤›»†F(ô¡¦æ»“³ >›A™žž—h•¶T*NÎï šÍÍì(ždH%“q¯µÝûM.›TynÿíŠs£L±Z­G©5YTSà¸f§¨l±"Ó®SÌ-,“§H“½xâÄ8™+v^}îx±̃‹v[¸Œ%úÜüü²ÄMÄ‚œ©Qy(|ŽcÙ$…Ø4l LÈåÐì[­eé®7ƒšòÌf+,®UøW2il½Ýb²Øì” u¨ÙÏð×hMp ¡6¥|2ì÷8-¥XÄ_ SúZ:ÇÆÇÇñ]]¸i*ý2¹ÖIÅ‚ÒÿÁ¨€ÏJÒëu±–C±HL„16Ø×7€ëïèëüOÓfg¹z‹Q#á‹õ±¨H£×h¤2ë%6‹Éårù …R¥VÈ5§ ѝ2Àì-iuž(èþ( ?Vvÿ‘h¡TH§’a,ç8œŽ@*›M†€$b!ðÝNÀ¿ÿ~FrH8 —·\ Â~ÀçÇšàòÎ 8¸\ÆCìaú:»(u—®^¸X?˿ǵ<–Æe…0whÁQ#™ Ë3s ¦)3Kr½Ö`wȸæPÔ ñà `Çÿ àQ৤ÿ­‘<ÂÚëö[C¥bÈmw%Ò!/|{È+–jœvo(°Û# ½Èf3ZÍ$¬›qœ©w†+Â9 ­½º¦¾îÚÑ]¯_Y»vëᇜiŸ$Ò8h/A¨j eK÷îR)îŽ$!ï&,BæG§,ÐéËüå‰ÖªÚæ3-x„ÄNT£°(AM‡£Y”Žâ±ò{œ5k‰N$Ìi¬¶x" ú?ä±#½ï°8`2ÑÐâ{Hþ#èû|(aEâÀáH"_D…Ðìîr™t"–H'’ÙTÄ)æ°úÇ&§¦æyB>‡Í ’¥*år×jTÍUíß¼þ-ôÊŽwÞÝ´á™§_{î;ÿë3ýìÿ—¾ý䳯¯ßðöšµÛ·íغuÛÉ —ïܾÑÐÛ‡ìmo1ÐÙÕÑÖ…ÂONuµ¶·´uŽŒM¯˜ål•8ÊTšdÂÅ™™Å©&˜N— ðE9˜Q7cr^I¥’~læ~BwRFõ…s7Ž ±DJ¤7Ÿ?pÍ‘g¸jXªÕÛÜ EmV•ZI',pèÔelœ²dŒ‡aº Ãÿ2€'WH#ñxÎCËÚ]rU0Š%1A™E;Ë _¢·;íf\ÄkÐW8¼Ÿi[ìÆ\6¥äÈâ¬Ø &×  \@RtZmt‚GvÆ2¥{X¤t2tZßÓ4}låÊ¥jðër¥R©1Ú¢ˆˆ°ôï Äa„Yg‚pÂU•r©XȤ Ý–±¡¾ž>ÜÐð ê{ê™âI&‡Ýª“¬HÜ&O¬uº=>¯Óªç/sÿ<¹V­R©J£Ýb@õA ¨•Y"C¡ÇhlnW( Äèßd:“ɵ’édÐ]&—Û釉JÄEÀ`¢$aD…À!_± oôBvò¢¯n/êy0¹ÃIOŸy›Äk`‰‹ñb×ÕK7[fÝÞD"à”ƒUóX-V§¼• $€Î¦ã-Зe‹Å"7: l±ø8ÅçŠf0pÿ!vR"R@øÏÅÂÉ,x6„±4¬r$’NG£é\Ôh³°9<ÂÀtšm‰d“n…€Ãa¶5µuTß}n´sí©³WÏ_¸x±yŒD㈅B¡D鉯¢ù{Œ"ú_ÌÈå+Õ¬±¾¡Ñ¹ú’ÜÄïn¾uyÎé·„ünŒÿ.»Á¤×…žIt"rW@µ^£ÚàõÊ s´E=<a/"4«+Š%SÉL¬œô‘æ¡å{€ÿX$'•àÁ‹o,_Ȧ ù½b þŸÜGø§qE"±DÀ`TŠiÊh& ;µsã믬yýíM›6ìÞ½çØÞgø½/}ä_ù…oÿëþë•·^üí+ÛwîÞ¶mç±sçO¿ ÙÛÕÑØ† ôÀ0úøQ\oowÿð…%Ô»]—CA—[\:1gq‰³"u¦²¹{ÅL¦ˆ˜^b§R‰ÑŽ|*ž8àúùéÑ!B‘Ç—Ù¢ñøŸ}™FãhŒHo›V§ æ±³‰Kr…XÄFµ w>ôûSˆ ð¥àL]Z¹Ö¬m¨yØ7Ú) Z5“gб²t*¦âÔ('ZÍ&‰Ø‰'0[ ÉË̤!$N¥D¦±¤f«Ñ`²–ñ¯7£ÕCP•é,qÇ`²X‰6óýr:onbQ(d-ÎþGð®,tØ}~dðN·;÷’Š }­È’T…ÙŸè2kBOÈ£’D"ajt 7:9‰èíU8ü!ŸÓaÕ* ‹É6Gãá@0`WrÙ\„¥Å Fø7€ò_ΠҸ*=ªê[ý1ˆ¦ ò\<G;.¹lt*´åãG¸=No Sœñ †~7@ y"Tòûlz¬d6 ‘¢J„«Ãã § %liɸ…9/ÔXŒÚ[-“PìÉÓê E}¨¦r[MZP IÔœ%®Xf,jZQÚíz{$žH…À«y1ü# €^º0°X}™B.@ö&„A¹DañQuÒd4žHç³ñx¦õØ 4"™0><ŒŸ¤ð]ðœ…L¤‘†»;º;jkÇ%Œªª[UgŽŸ«¨›¥³ø€±Â‰Ò¥G —J¦2¹B1bPM*ö,mˆ @ävI\|­:bȾ!€ðï´{,o*—)WÿÐ&¾Çh°‡B:ƒÉ`*¬Ö À?uÃó8|‘$ö|®Xˆ¢¼ãÇÀ‹ª+~TŠ ¥ÅW‹~ï%€?ÐBDÆd1 ¸‘qÀ?i‰/‚!*•*™V«d¢ö¹ª+G·<}úäŽÍû/\¾t©bïº7ðå¿ûË?}4>ùW_üÌßþâù§×¬ß±gßöí»÷?wòЉ»==Ý­M­ -ÍmÝ=Ý]}øÉialh°7<2%´aAƒºZí· 6‡+0$J°`…lnâ$GûNéTØîq£½tÀ&k\Ná #qD‹¾°Ë¥ä, õ&¬»Âdõx€'^6‘c2È$<:V¼—C°l¥\2äõEcþtÂjrú<6[ä~ Åz2“ÃŽ’e3@µyð!±€V®YÝÜ 8Áž&’‰0ê¶Æò?F€}äˆAä2U«4Y F Ún@œe·õ ±ÆòfQñ«¥gSÉ\ÚÉЉæ"žD2?>NZ¢«ü‰DÂï '"~‡Ù9¸(Ž@ Ö?G2ÛÞµ‘²hs¬eò4Lž&“‡úÇHdÂÒÿð0IÉåÂNdå…"X£ñà G›Ãa³¸\ ˆ|ˆ ½A§/,JŒ6t Än êSá $4)éT¶˜Gu”YJYpÙ¾rþñÑ|6ÄèˬA¿+ ’“³¦`RˆL£ ‹L*r¨è]ˆª9"K$n]VÀßäÓ¨v òÌjóÃ^—Q¯¤Të”­ÕlEøjnPB@Ò1_ö>þaž’~àÐ,öp*™F p?f"h»ž(ÏU‰™oˆXU ¤iÊ,p(•¥ e³1»L²B£ÌLáû‡¦(,¹\¾RUUuîÀáÃ=´%kE()ŒÀÏþì£q‘ãZ*ċ٨SÏSæétž3‹%4{6Á‡IE':Î9(Ü›Ìå0¡^¹’/‹qƒ%—Åb.K¬Vo8ËÆ\ÿ`¦PÊÀ}çó¹ ¼PÈîFˆY”<ÆKÀa.q¥æh.aSKy ôv”Éi*‚¿t©ªªf ºâÌ¡[SKKL6_ ”©ãæh¾øRXk<_ÆgFdѳ—è+nÔ–Þ à_JûÑF¦PåÒ†¦#€0š×,ªt¹äר5ðT«À º¼ÿ‡£&3gb‘Z#\PR&‰,Æ qn™Ã‚È4áX4•ÍÔˤѪÓïMŽØSÓÓRS{ëêåõÿúµô{?ÿ¥¿ùÅk¿ÿ·<õã'·ïÙèð‘=ûî=xºâV]UeeÖúßØÙ‡Ä HDÂØ0~?2JQ"G:ư¢‘K)ˆuÁÂ*Ró˜h)å± M,ê<W¹ouÃx‘þt2+ÚkЦ1«“Êû,ÚhwER9ŸÃá é%¶P$Szß„dƒhÃ$Uü£ ÜD¹Û Â?¤Øò»¤RÈÎA4f217B?x]‡UÁSHº'c‘D6Bšݽ³%v”7ÍVT ô€É³›úW)õ6»Õb¶˜Õb•Óãu%Ê’¬¼w„|c–R+"ÏÓÀÿ3€ï)X1H“ @wGéÙ¹°'V¼WÌeâ¨ßäp:´"¾ÏePfHDò y†0-1Èh‹¬¯w`hxÔèfÓñº_؃qZ ªù<¾P)grxj3ˆ~µZ ©ßˆv0À¨ÜÈ3,®T Yôrê ƒ²-%HUðïér¹*‰§Êr) ¹ ý‡üeEäñŒà"= V·P*= ‘²€)¸¿<ŇŽ:¹2Y,ÄØö ê²·azm€l«ÛL „ŸŠ§réHRbý¨‡e°XlèüO¦/ûàŠÀùA`ü4¨:PðÑùdº„èÔf”H$bì‰6 Èå’E*…BAï‹]–Ëe+øÚªêYöâLsÍÐÜƒÉæ „r“ÙlñÃç?˜–Â8­1›Lf¤„̦ø”%Ä îÕ£cØWo: ˆËÿpG…|áÛ) ù+‘Îb󃉺…Rýe²Üù¼þ±îŸLücø/•)N¦¢Ñ(¬T4ä²kƒš¥%¥‚‰ßçyR©T©·F° jØTÂ`ý…É‘Ëç[{;Ú:n;ñöÃ_Zõ?øïÿðæ†M[7½µáÀ¡c‡9røÐ‘ý ›Ðoüjh¬üw¡–£qôv9"„,äº)¦ÒâôúÜÁ,¤eôN›ÑY Âf™AAÊ€ôã 'Rg¤ATÌI€ðÉU)VôÛmV³ÍëGpPzBÑXªðB,Ä}¾P6‡>­@2YîG˜l:“Œ%rHŸB¢ÎÅ<ÈDR—&ªlÜÒ™ªÊ‡¯…UÅ6ól6ŸÇc5û£aŸÛ‰¶ç f-d.‹B®ÐêJ["“ð¾Ï¢Áƒë;„äùyPFì0 ÿ‰$èÆBu¹–b~_[ˆ»5|Èäœô–*ú‡®0f'‡†!ûãGM±|!“HƼ ƒàQ ¨¶”wKùR9fãs8:pDàÔ:£ÁhÐ × ªU>â̸¢GëƒìŸÇŒ*"K¬f]>~—C|†ZÐÊ„è¥ë ”ÀmÇÐ ˜à\¾øÈeËàÃG©w„`¡œZ­ ÕlB‡Ý°ÓO€,Žé ÛùT(S(ÜÀÛɰ×]n˜tã‰Ì#WÌ$²«ó]œe:’(‚• º"‘\*Fý2] a•ËÄ´Ùz¯*‘Ä6`Ï 5´/s¹¬YÒÈ胉Þ>ªCÿpG±üýGÈ¥“ÉÂ])ë3ëLv«-àVq™w4èõ…’÷ã=—ÎFÜvO ¹ÈãIBþM¥ï9K‚ö„`G>×ð•Oæ;"±p,“M†=z¥AÐׯ"‰¥ÐšlÐÇo¤˜ OQ,P$z»EЬf,Àª,R™ô½B6÷`5Q5'·‘êÅB©Œ=ƒ^Žø§,@ÈH熆ðÃC#xü° ,n1“Ë€aZË‚#¬^ÑÄ€÷¢ú® \Ъ5ô–¥J©Ö¨Tfo"yÜá'­! ÝR!ƒ… $Ԙ̓ÇZXK À¿?ô—;þ¡h<Žjm‰4ê¸*æ+K—/õ¡Ø_]Éú7è|~ mv¡–'Êÿ>$9ÐXD{ ùUøÃôBpÜ—ˆ.߇¬|iUuÀÇÀ A¿Y"VHù éÕj{2¢•ËdtŽÎ PƦæùr¹J/Šè4. —ϤãÛF—%"¦@møÁëó?†,óÏ–2¡8Lä‹5•]Mj…tćõ®¸=ðŃÜl”ϯNCKïèt X0» "Çጃ¨ ÚüÈ=”îeÑÖ|W<ô¹ÐaÐrý=°;”@åÈûøAïCË?œÝ|2V†ÐfaÂaÕ¤³†üv­ÚïDÔLHÇ# ¦gòΑªÎŽŽö¦êÛ—ï÷}„3@O<ñý·íÜuðÐÁCG9vôÈÑã§Ïž9{¥¦ún%¶Ýß:065M&MNL‘æ—Ð[”8"•Þ—É$£…d$JߟÌb¾ˆåæR9F°‡¿WÌÞ/ô¤".O4†åÿL,IåÑvÚê“£fŒt Uv2ÆР7ö!aÒ4u<Šy8I¶8øÝ@ ™Ë?Hxù¤×Ì¢D•`þ4…¤.Ú&¾ @ŸÏ[VvVɯWëtRyj’J&LNL0´à"<(?~#Y#GÉÆ i“Ù3H–Ó!ËÊ÷”ÌÁ£?òcÁkÌe#V­½†~†H&“ ŽZÌXá‡ðdéø0Ëgµ& ©xØáô£ÈÀ \pªýHÑg#rÞŠÌ`Ôi´z×zTbSê g]h’ÍãùÿÑ{F:¦ u¦‚`)(‹šªþ¡ŠˆŒºÕ*·¢ƒQ/–oûãŒB2Œ(½ôxWйËe/ÃÐŸËÆƒQæBéÿ v0›M¹öQË4dçHöÞ#$ƒ!³XZU¹º­b*ôYLJø×Š&Â&µÕ0g2™,|"•#–ÉåzT7I¥íb©ÉË_–©4jìP„AoðÆú‹ÚÈ—»Š÷88 pKêr`û`A°­øË`%®Â*P1{ŸDuRÀ¿ ;\ŒÂÿ÷¢)t5 ^,ø;§ËãÆ¦¥¼Œg÷F!%•î­~P1‹ºd X±l>ƒZ‹œS0\Þþ„/ "Bþ°ÛéC›¸Iç äôÒçѶ6€G{Kcõé·ŸyáGåÐgÿí¿^ÜrÆ4N\ºv|çŽÃ×îܾ]ÙÓÕÔØ…› Ï ×J“™þl¶ð”V¾Ïb1šº¯ƒ Å\Y™çÍ;A°u‡•O‡Üiüþh*–Åš0 QHí¹R1:6–‚”^¾néqà•Šh»\S2ƒ½;®,·caoÈÂ.ˆ}2ZÌ /Y\½jù:X‡E ¦\´Ü ~ׂ.±»"Ñ8êÀN84: ß?0<99I"“™ w ¤àãqž÷!æJ‡T–ÊbQ ÿ¨Ö“Î/`{ED}…Go+åÂ6ƒJ"Á¤É3Kl…GÏ“ªøÁá‘qLfò)áR6r:ýÈc` !¥tYIPÌ^™D«Õ¨U£¾bø78Q˜aĽïS)¥â£ëy,Y&€h4v:·šjJ(¦°]’é®d$’ÀNææK˜þ?=ŠeµK–M®×e5 X»Í‘ÄÂðòåêD!WîþC}ïár‰ð›Ì>zE´ªÿed‚øF·•A%J§Jit‡Âh«#ê÷„|-âžÜ¬“Ëå0„bHopGÜZ­Áh6`Ç~-¶Dïƒå̤ Ø,¡¢õ£ÔY*“Rùl2âj ûalfŠ÷+^Ér±M…œ.tÈÕ*!$ `â­”E|ê1ÈVdÖ2þ½«Õg»ÃŸ¦}h- Ytð>ž°GOGƒƒN¢£UŠÄQ „D8œJ„ÐN:å“ÐÉþ }¨a¿£½­¥òÔþ=û_ùÌ'žøÌŸp_ÿæ^Ú¸ëèþ£GÁ—GŽ^“µªu<\O~‚@[¦ÏÒ%f«ÅËù~ÿU …H ™ÏE\il‘ÛÁˆbõ>î=ƃHDãѤ߬\&Aî'’( ÚüŠ.è1›L¢é!t|@§UIùúhäH8Š:žJ÷VoW¡PHø¼~»N½ˆ_¥RáTT鹺Tz?þS™x «xg ¥rr*äü÷ú}èüÕlu…ÁÒ¡Ó-9ì?.þÌu<ìÃÎ;èÑÑ ð,Îd9 E¬ÃEJ+£a DÉßî™L‚@{é—#£œpV±£Á€#öØCÈüÅãQbaËïq;tƒN!×G²¹ °F6êõœà•PîG {ÍChW%Z9í?2s=:¦OÁ³Æ3éh(V¸÷ÿ:*RE¸¥tÄéð¡’4Ln!™ÈËÊ¥ˆÞošòH——øÆGðïG'.C‘Dê‘b'\ã€ý—LÄoРOÃÁp<àzŽ¢ù\ºüêÔˆM:O˜ššì+wì··Ö]Íeî{žâûžæ±OwYì«Ù dIdqfv+C>›Õ¬eÆF'Èl.Wò4Ž|_<ù¾›GøO!7hÒèõ†~ø“%†šŸ2,—¾ïЦ,?•Aî (™(ØRÖ(e¶˜Ìv·Ãæý úãIÿ÷B.€jfè :@ŸÉ@ݨ?dÿ¹2”6½6§3tø#i$?ìŠÜ˜ÅM³‚‡Ï  byÕi±Õ  L§gâÖÁˆ ³3…ÕTß??%¬ø¶º[úè*>ÜåȦ±d.ʾoY‹X•Ä{Ìë £™ƒ(+¥SùÒ*âê`HÏepUv„ÿ@¹-É< Å Ó=òX ?`Ú¢K8—І“(óc=]hÆò˜nïwK¨S„©‰þžN”ýa´6\?xèø±õ/üÝŸÿðħ?÷Ä>òÿ3_ûÖ¯þçíGؽeÛ†µkÞÙ´ ýN‘­'ºÈãý]=½Ý¸y¾TÊ_fr9‘ÈB(ŽAòΗV·‚›‰üð"ma`q™oÍ>¢ÿ»ßR)Œ#Í“¿÷§G)nÑjÕjò? …6/#ð 7ÞKYó$"…Κ‘rÑ7–zÿÏ#üGÀ¿›5:Z©R«0¹“hÖ „L©ø¸þ‡ÇEZ5ZW÷Vù4á¶£úÚ· w–Ù]h:>ô’y #ë0ë4:ƒA¯7X\þ$RX4äîru(írAn"ò†Ù?†ÿÇž%³(üÅB ˜‚$¼%@4„U1<§Aa‚LMÄЕr1?z{’N‡'’ùcÄVÌ—ªy>ˆ“ûSˆÌi6Aµë—"øÿˆ/‚Îða¨(¤se QBÆ„YÀ\Q£sÏhÏÁ?€5¤ÂÉGñ$j&óX,•òé(–\,ìÀ^œ†ZlKy¤ù¢AP=¦¥it`n¸¿cõÈnKÕù½{ŽØúô×>óGŠ€O|áïÿþÉÿøÁžøÄ§þæÉgÿðîÁƒ{7­Û¼áµ?¼¹iëŽí[¶l9Ô¶4?=1>95<2Ã+ä"oEisbT)$Îû2 < «[sM0ê)b·QÐF¨™5±úÞWÈ÷¯X¡Rö„ +=ˆåôŸMF±>Hÿ§’¹Ìc ìE• rÁ£àC×øÁ…#TüV*d¡“F‚¡¾ÅήnÜ(™»Èæ0ægé\-:«Vn÷Ī‘jUÿ T>ôóKq¿Ç¢œ-gÑË:g(T.äo¯Ël¶š”bþò,}‘kDðG=‘xW(ÒêQ¯?ä6hupôE©1š#ñXêÃB²„yìÇäY+TCÝ×\(çeÒh # N¯ÛÄÎáÿ?Žr‹Ä½lµ;è$êS2:yÔÛ[Xþ¾ƒ©zWa šAßòá—}l.²}¸TLãe¸R )Ó‰pÀlì ­/…Ú3e&‚n—ËæôÇ¢Xâ>Z9pŠøÁ4`¡ ¹ýø‡ÑG>ƒÞá‰r÷ªCÉfV½&Â\ÎdÊ­èÔþÃeü£wbDR¨Tôèu`‘0î}Ä  )+¤Ò rS-&,ò“ŒÏáv;5 ÿɉñÁîŽ2þ›¯m_·ûÌŽ_~ýsÌþê+ÿþÔÖÍ›òÙO|âž|é­{öîÙ¸fí/>ûêºw·ïعsË΋S‹ èͨ3C#t±R)­È‘)D v¨$K¦“èôV9=?‚àBþ±›/ÏéýC»¿‰8j+Ë– àƒD\Ê<¶ïŠ0ù‡r­Xþ¹\ ¥ÿ\&±KYL&ƒ¹Ìœ£+ FOªø _¾p2’Fm99`U¨Xw7Ú5;0<‰'se0K´E©Ý*’Å™J†c™ÕÌÿqü—ÿσ{( «ÝNX 9—\îÃè ðŸ}°%ˆ €ò·A^ù³D;¿'ŒÊÍÕ@ IlÇì±;( =‘4"rùÛú@ŒYÈC²B[XŲÀ-•²^3hà?>::ÐÓY&€¦‹ë^Ü~~ýçþ¸ïÿÌ×úÜö-[·üç?ñ‰¯=µvëŽ-›7¼ô³ÏüîÕ×ÞܸåÀþ-[ö×’&§Hô%zC-EªTj´*k²„ |pcÙD T<…vëòX5çáŠ0†/}HÙVM}"Ų(í $ÿÉÔ£?ØÕp0¶“‚F2U®}øT"!—¹¸È­.Q)Í‘üG„? Ì않(ùÇ“¥‡ðÿÿK»öض®2.cB*hâJÓ¬ÑÒ±ŒA)4N3íÁ:­ÔñhiÄZX#JBÑ„„˜˜( •I [[V¶µë¶tIÛ¬]´¤­Ú$Mìø‘Ø¹¶¯íëWl߇ïûÎwεãëÜlzT%ªcûÞ{Îù}ß÷8rbdèìåá ³ÀB">=>¹(ˆhE¿šsOW׿î‡x¤s‹¯ €îonî|pûþ}ûžûÕÏìÿå±+KÑ`˜Vðþ| þ ª-uh¦Œ¶€jÓƒ ®ñê£ÁÔËJ¯V!Eg¥ViŽ¿Þ6@ @;V.˜6’Š©dt‰I_™ \›ôfSnwëÚAs~I£šœzïÌfüÐÂ/˜§*"/( Wæ%ÕË5u€‰„-uwa®¤C~ètíƒÉÅxèòøøÕ4nK‚þ¥gFÏÓ²±…fA!ùÊt4Ž„"Q&ДдÆâ‘%‰,g«ñU~V±Éf'é*òqÀs(ÑFƒ»ío_šz˜l¡”ÇeýÈÉ’’Ä0í)‚eµ‰|j£6Z¥Ü' "qÀ“7Û¡pÛ§+­áßÒdŒC4©ámâ©q·:‡l~èÊ pl 9óh–ÜAS0+%ÂS˜uGB×7F•N Ò22)þja|äÌ›'_àø±Wÿ|¸ðÀWzz7x €ÝúÅÛ:7mºïöû¶lÝÒu×§>ÿ¥Žîî­[}Û|?pïמ=ôüÞ=ßïûYÿÁþß^Í¥ƒAŠ·,YAýü“»ózh——T^ˆYªÉ"0\ WQbÎ=šY56…dqT?3RƒT^•eâS7à4* íâ©]Úª>Ÿµ555.5;t6–¡rK¡y$±¥$>¾„7ÝMNç÷Õrɼ¦f9‚;„]ûÐ_‰Ç‹yÜ®T*åCc“pïÌÚ2»\NÏá“Ä¡uYœde˜¢Ü„¹¥7ÉÔR4ƒ”jêu§ÈTäZ¡VãL‘×%èaWÌáN—œå]áÓâ-—²L-¥h‚%_”VIÛ°ÅL—Yƒ‹À‹èÁ„›H©ãuÔAÊX+-n¨RP šc†ÛÕÿ’ˆÔ–~ d ø‹¡¹=’«-Ñ~+NÓôê ”%¹œÏç3KòŸ{ûÔo"ð¿ýÓï_<üØ¡¾omÿªwOÞsGǦ»>ûéŽo<¾õÞ;î¼ûþ.„~_OïSo~°Ó÷£_xrÿÁçüî£@(\È¡Íi7Brޏ’-Ï öIMLI“9œæLO%þõøR‘ž8þ¥¾ªŒ“u„r&Çyũؼ?Z¹‰˜5,q]úúù >6pÂÄ¿Áæϛ4bÚ—¡›¾Ûý{lrnKW\L¢j2)”Z¥R£CP5`Åo„¥˜Äq3¸É67‘¯þ7‰™!8 °^ÚlWò‰›Í&‚Ä1ðafD­ŠD‚Œ|6§)7¿²ÕÛCâx¶Å˜JÈf²yB j@MDõ¾#IàQÉYhØÙiIï=æ*9\‘Z­R©Ô:Ñju ©ˆ°$AT²=&æ°˜<@Àç±9!@k|åx„’Ë*°X|¹R¥èÌ&¬ôR[ /o¯Nõ:Ôˆ(Å"°oj$ËûØ›Ž„" >_¨ÓëQ3yq²‚'_ºgà½2·¾B*øf2¶e0Æ×ڰê}ƒëA$f4@‹„ÿúg+²²ûSÎÎÌÜ£ÅbÔt:p¡uøËû+o7!z Ðð*ø(‚Y'“Ù,‹™—ÇdÄÿvæÄñ1Gسk׎¯Wå;¸—·UùØX7jÞá³Ñ½šX9´lß½ç ¿¡cÇŒ0qüþ~#ÇŒèÕåãÐ;~ØsøbraÀTlÁAõ±R®Ôhu:½Áð¦\WhHp›¡(û½€v  °¼~k)UP-þÍRLi“^£íK˜Åâ°X V#òÿ\Ä©3˜p܈«· ”eú·àܬŒŒôÔ”LžQȵPþ*¥ ÚS‚è`S"¨p{BÌò"Í*bSú7â/·%Rˇòg1™|™Ì€ªÕ”|éz–×ú xLп•‹ÉçK ø;^H`hÌfBÔr ¼?B±4e#¸í/µ| Yb^>ýêðòõo¡<‹Áˆ™  !½õÙƒ{Ú©‰’¿ ØE¬äŽ”ñ õý 7AƒÉŒÁ¶_•-GF @Œ}èߨ–J…@þEŒÜëñ¥Ó'bŽ?}8ê»ïv}è×ÿ³ÏÚ¹9;9Ô¯À¸´í?bpsk«n>º|á7fÊØáãÇ>rÄð>m›Ø/_½ó‡Ý;ÏçI¥zÒ‚ƒÓA…X(‘©4Z`Ã›Ê êþ‚·ÎRž´@›VnT„oyÉ0”˜¨ա }qž¥qØ<±«ž“®.$8J]à˪· %ÿJì¢ÅÂÍÌÈ`2ÔhDQ#Ô¿V£T#& N‹º¢d;€—°U ¹TÄw-”ˤró+—²‹ø<‘™›[Äe) £É\®Çåk‚ßfD§CqT,—S®}gù—Xr“A§”‚= E•êoüŸ/W•ú Q¾ Á5…rÎ|ûD™àº™)ý£:•Z«3âÕ *0J±Šnð+ç@Z€ @õh…A6p¡z…¶&#/¿ °àÖ/§NÄ;zäÈ]ë¶ìú>bÔà¾;·tqswulX¯\ý;62n@K'{«&»w÷õó›1¹¿ÿô9ÁóçNåëde7iÆ7»~Ø÷{KJ[€A2 z¹H$Sk´`šÐ*›Ö«À¸ÊBà•Üo¨¸Š³Š2Y…4hP3h°ìÄt‡#ÍöÃÖŠ ª™ë€Ì¤2Ûn¡ôŸÍ׃V A¡þD¥ÚÀ Ò >TÑFÓH4ZµTÀaqPà´±—¿³á±ÄÀ(jYY™ "QouÚ­t&¤Q*ÁŸox[Ëýš0›3ê•2)ˆPÿ×@ý“0“{©í—Fo¥ÿâò7 ‡}×(4k¨Ñ.&@¶ ¾„ªB/\}³©4æ­ð—¸£¹Â& l¬N¡–ùççå奤=ºxúôñ˜cGÙ·3ra䯩>nåÖ¬™»››»»kãå߀aýz·¶ré; ŸßÖþû,XºlÙ²à_k»V};nÙwèìíg‰ Œ‰H³ø14奼aµ_\©F-xeÖ¡¸Lj`1£п"ŸÁåpøêÿ߆*L;8}Avf‘Ò`‚ê7 Zþ#-‚ƒŒÏ`0W`‚«RŒÏæˆ@Ö`Q6þ²³&u΀P°‹Ø|ž´<ý—»s“^‚~ a2Uû«V†… OM:…Dª ø"%BY”ºû¯„û$ÕÙS#‡,Ýã;‹îQ«”JåêµµR© ¤ÕLÿ*ƒ0ÿ­åêž#‰W‰Y¨¶dÒ›4œ"F^3#þñµ‹gÎ;}dÿÞ¯¦šÚ£¡••u#wwww/Ow'»räoç5¤üSú5n>pˆŸßFŸuêì?APPðÿÞÞOè°+úøõÇϳ$TN„ˆ r‘´;Ciç„ÞôFWÛRž“*#Jÿÿd³¸È_ŒÉ|`Äh ºÿ·ŒõªØ œ¾’‘)q%Ô¿ŽÊþU: ˜„ÿÕt¼˜ZÈÉUj½DK¯v7à2ˆÑ«µåžCyo’&(ÿê·Ìª€A§AýC{‡¢àt˹A5Óe[³ °[V£Ói5*¥B!‹Tæwß)ñÙi…§Ôl’¸^"àqø‚´ûñ·/œþùè¡#ÑÇ8ðmp×Î>v ±w†òw÷¯Nåèß»›ßHÿ1c|Ûw8hÈÞ]?é5fêŒéÓ§Nšà?|LXØŠ£QûûOΑ‚,ͬd'£‘X*× 0>z‹ ø]m}ý üf½TÊçp¤5ã»JŽ»Ë:Îjœ|ÕÁ8™?ìJ…ýBPþÇze¢K•*à¢Ô”þ_ ™0]‰=xSYÁ.™jµwHé_¥PÈ„B-¿/ŠÞ9³x? ¨AŒF½F¥ÉJ5JT?j/Àpþ!z¸a^|ìݳ§~>~ôèÑè#öm›Ý±s{7{[Gû»ÀÍÍÕ¡ý·ìØ¡CŸ~½zvèâ;À×·½{»ŽÇN™2qÒÄ@ß^ó–†ì:ñãwgï'f²U «2³RRU21›)T#¥úÞ#î2ú7{$^Ïd–ñ8ò0Ò%TO5°¯ÜrÓëCåžbíDœŸ'2‚ÈÝLêÔjÑŒ“°¦j{€¨_¥ˆ$fœ2/çÔxå)Ôû&zà?eBžPŠÂîÀ²#¾ÿ.ïp`6c4½Z*ƒ[D”øÚší]~7È’~S±!¥„›{÷—Ÿ~:q,:úX̱½k#z ëèÓ¶¹‡§§§‡ðÿnn +€Ã]{÷éÓ××É«ç€1§ýì‹á#†˜:yéú_®\þùôïÉ"ÄlÆHBYÄ+ØLf¡5P=ìÑyïÁ[Ùn_“X^Ò¨0¥@i®¡†O CÀ‘ˆWû¦Œ¯•,”¿uÕg›pª+EJª@ð_mçÇ%•RXc1”ø§eÖýÃÀ¨U‚øŸÇ)áå|¯ò7þÑ¿ª&³ÊšC¨î"‘òÙ©±±·Ïþtò8ÿ‹‰þq͆y³:·oßÌÝÃÓÃÃÃÝËÃÍ©¢*€çç½|ñ…o3ïŸúñïéìÒc؈€Yë—.;~àÜåK3êæ‘Z™BÈb¤ˆD¬ 0ÖPÁÍ;ð÷ z´Ò®÷7Ù'†SµHØ«ux5`òE9i±”ZqÓŒ¹@ÿJ¹Di4`3òÕŠ¯©ËðŽP €dÏ|>O¤0ÁÒ®:q^Õ8 ƒ^«Óêj¹S¹™Õz`÷ 5»¨07áÞ³§~:yâø‰116­ß9ydÏVÀí—âl_±ü­œ|:÷ëß©k{W×._toæ`ӠͰ#æ…‡oØrè׋—•”üqƒZ)(òW€»ÂpT§C âí«,jš·H*(Í’àe)Õœ­ƒ%>Tüf±”F odH-¨Á04"°u–±KD] €þQ5ÿù|TgÀ¨ÚÎÚ>§êò? Žk°M½9K™ñ®²ÿ¯×aàvkŠ2³€û¿|ú'èÿÅÄÄìû껯"§Ìômíý?Hÿ=\+*XÛ¹·îÚѧƒ§“sÇ~7¶±öî;"0`äøÐðˆÃ?Ÿ¿ügG¡Ð’ª’ ¡þe(F˜iFŒf“±Œ¹ý;¥ÕÈ5¸Ë—ÊðÈ¿‹òÞfüË„bTATI’[fÈÑBÖj«ýE!*…L$à  NàÃÐ?TaÔi‘Z>ÝÊå_Lè´Àû’ÊŒçi±±þüÓ™3§b@úsxç×+§LïÖÜÓJýÁKCëŠõokߤeë6Íš´nÒ²{ëFÖV>ŸÎ˜;>pvhÄáó¿ÝMHËÊeJuj…PÀçý+Ì$¬½'0“ 3}H9Ý› iÔäN_.uÿûoo©ÿ—v[Ùqj³Á Uªu¹D¨&Ê 59Âð¯ïŽhµH-ŸGEò/)œ$ÍZ &§ €wçÒÏÏ:Ü̱ßmZ9yB+ªööÿ;•_ÿW‚M}[G·–l¹6hìéao]¯å€á³CFÏ_²vý‘K7§¦¥ç°„X.€é¿D®$nƨÿ¨üa'I±þû9ë[ˆ•x÷·÷¦S+Õz£ Ñ*ðzb%ú¯ûgõéµz¬–ϵ¢Ã[àà ¹ÒêP ±àåÅß»~ù×ß΀ôZ€ÃÛ7¯š<¬©‡‡»´n.•tþ—¦M¬ëÁz!›õ­í:M[´äËußœŒ>yí~bâó_ àù‹ þõ%ÊÀȺ5"ZÃP±^ŤUè­6ú®<‰POOÁ‘?²´"˜¬cÃèåCù)n(×(T*e6êuzD'år9,fr܃k¿ûõøÁ£Ç¡þ|ÿÕÊà.žž ÿw‡á£*ôOQÚE`ëÞcFdäÖß½töؽÄä‡÷žæñóy,蟇à&°?LgîÛ“@¼Oj¼ëaþíÔЇ©ñÈkJ…‹–wx0ç=o:í'ÑŠŸ¾©M(ýc=‚èUìŒô´Ôô„{n_=}üà‡€úÇÛ¿yMHsü»{¸{Ô¶{7ç*´_¯¾µ•sÓ†VnŸ ž¿îëƒÇ~<µçøóŒ”G÷â3Xl.·0«Í*b* ¨Nc ð¤”ë¨ÙzØÿCHƒÁ@¶ZÚ‘Uz-ëþ%}aô-˜±æJJk 58m@´j…¨ åù³çIIݼþ{tÔ?8tèàal[=ÔÛäþÀ´ìØcèè¶UÈßÞ¥]§V-»úvlÞÃwêêµë·îü~ˎ踌ìÌŒ”ûRÒr鉉ÉlS©×i5N~è;òßÿ†ÿ.„–¨XªǪ{ÔÑs…©,J…™œ@Êg1òóò²32ÿÛ·gï©ã1Ç¡þ¿Ù¶mÛÆÉÞ¥•M?r©"÷·²²÷î¹jõá³ç~ZµdÌÂõ+Öo¿˜’œ¿X¦d¥Ü¿uãÆµë÷bïÆ=±B#mÒiÞ ,rªKÏÎ|¨À~  €VÀåryl‹Å,  @Σ§að¾o·A¾^ÚÖÍÓÍ „^ÞM*)ý)õÿ®>ýþåüù ç~þåäÙkÑë6Ìç1sØrŒÀ…Y©q׮ߺÿì¯{±q…ìBQ]} ‚¦Îò úÕ},0ç&͈^+Wȹ1 ~ø\Va.07Ï:sp×öm X5¸•§»«‡‡›W+*Ý¿­[³/Níþéü… .^¼öüÑÉŸR‚¢\=^l!$ vÚ×nÞ{ðWì_)R!SõŸù£¡©kÀỈ™q•ÅR¡T!àñx|>]”Ÿ~®^úõÔ©è¨ï·½aÍê1¾%ý{·éߥ²Ú?ˆ‹‡wïm‘_í¸p€ ¿=a³ò¸BAA.jÎ08ùÉnÅÇß»{»PÎeè>œç¸hh>lþβ êQQÕ£½ R«Å°*‡Ïå°iI éIþuçøÎíßl]<(xZowO˜ýäÓֵиßÁ£©‡[‡‘a+\¿yów`nêD<±‚] ƒ™›‚YÀÈÉg&?‹¿{óZšŒÅÊ5o:ó? ÍÛðb¶LÒˆ`ç¿N€óokÔ ¥—›ÿ öaJzRRÂó»Önܼ!¨ÛÀ~­þÝ=<[wòªBþõ; ÿÜËÍgdø²“q÷î\¿|ùÊÕ$!“­1ixzh|Œ ^S ç$Ý¿yõjºœÅ`±„šºYICóƒªAÃñb“V¥2˜P-œ˜P©Pª”J¹XÄáæ?Œ{’”¹¿kåÆ kætmÑÜà ÿ´hûq“*¢ÿúýæjêÕyIøªóÏß¿{çÞýØç¹Ù,s1¡3b8|ì_%‘)eì丫W¯§r™ JçÐм`ݤɈé€ìÕjºX 9@&¢‚—Ë-L~–˜ü»¿š=e`w·’Ÿæ-ÝìªJÿ[÷óquï°lõÞ‡©©ÉÏÁKJZ&—jÔ!£Ær~~rìõk7ï&å0˜… œ ‡shhÞPÿf£Z¡T½È_&@"àó8ŒTèûÓÒÝ:!²k{oow7OwOwWW×&v6õm*ˬ;94i¶ç|RjZZZz:xIËbpšÍ bVòÃÛ×oܹÿ<¯0—˜èš÷ƒÅlHe 89Ô¾B!ð¥2¹LÝ?€™™ œJNNÒ_7®]\àò~ }7øâêâêÒ¤±£ýë1@=ë6/ÞµnÒºSЯço=NN£HMMϗõä ôµZ­Eõ’Ô¤¸×oÞ¸ÿøi¡ö¿ÿð M]ÁbŠÅ¸”¢DÌçŠe¹9y œWã6#-9%#577'=öÚ…ãA­þžôÏÝÕ™¢ÉëkØ4¶mãé\jêµ;tcÌ®ˆ“qI öOKMLHNc߈ €šÌ¸…4+³R’îÝüñ KüÆ+ÒÐм%¨H$".›Ãf³¹ì@®@Èåð¨ø¿(;)µ (è?óéƒë‡§6…Ë}xzºŸ&ŽÎ®...MÊ™þ£¾»W—€‹OÛÛW‡]üëIbFFüÕ«wâîsˆb 3ŒÔzܘº(-%%!6=ñi K¡©ÕÐhhhª‡Å eSÚ‡pYPþ‹Å攼ÇHÏa&gçæ¦>¸wv݈)ýÃáÿÍìí€p,'í·±·}!›–ƒ|,ž´9æûŒùõÜÅs‡.ñMDÉ⎙dy©))©9L±ZÿÆëþÒÐм=Ó ñ3À-òQ‹Uj8œÂ‹™•››ü0öâÖ!ÿLúíîîÝܱž­£sã²]~6¶àåÅ?êÛä;xÔŠyAÁK6ž:yæÇçÎûùŇàþá è˜Ù„JròRSÒ³²YF×rÓмG,F¹H Â}¾DÈ€ú/ñÿ¥v2sÿÿóâ‚Ð/á¤nàWŸfž-Z´÷²¶©_öù߯º¿ÜhãÜÝoÐü àà‘ëWmØýë¹s¿œ=÷‡/zœ&T¨ƒUñxEy…9,­±tìßRWgI ¡ùoaÁP½Z&•+ùL¾L˜—““$¥ÏbQúçñ8ì| ÿÄkìò„â÷ôlÑoè§­Z4ëѵœ Ñ)£Ð°Ä2Øw>=(hþüÐEa‘k<ýó‰=;ÝÖâ ·³ÄrŠ¢Z‰XÈçÉ9ôÅB5¤ÙDÐм€ÖàlŸA†ÿPÿì¼BÐ? D< ö—®ß¼ôíðf°ôÇ£ÝÀ€‘ŸulÝy`û×2‡vãÛ{¹·l×Ê‘êpé2p’ÿø™ çÏ_²tyĆ?ì\·fóÙ,Ö³ûÙ‰Lƒ¢z•X,I•Îh*ÍþIB럆æ_¥äÁi‹Ùl2èõJO,(á?ƒÍÊÏ((**‚úçBý³y¹¹qqþ¸xt^  ¯Ï‡Ž=ºk»î­Ê.ýãØæÓáCwì4²o;80hݰãØqãÇÏY¼pᢰðððe+Ömÿzeä¶3—¯]fJ$•N«”Â…¶¥Š°ÒIÿISœ‘†æ?I‰$0“E”|¡FÃÏËÉ-**ÌHc0™ÀPá?Ëf1Ìœ¼ô›?mõïàãéîÕtè”Ùsç-èæîܰAý;wè=dh@σ›RÑ÷þS&O›¶dqøÒ¥À¬üî‡ÈåË÷DEíÍú—+eb ~™BA–¬6kù÷§Æ¦¡ù?‡ زcp=bLŽ ²ÂœÜB#+èŸYTþ󸋂‚ô+#GŽópoÚnĬ…‹ÃÃ>/oÝÏFÇ hç GêÙº´è¸ 8dÉÒ¥áPüÀ,ßðõæˆu{£¢Nä‹%tþREMFCÝYæ?YºÀ\ب×êŒòÿ‚F!\‰›Å¦Âÿ’ÞÀ¢ÌøÛ¿ܽù«pW7Ÿ!£&Mœ6gÑP·rôoÕ¸ûÿϼœëÕkÐÀ±U§NC‚†„†݇……Ã`éæ½;nܵ/úqP"ÃØ_ |?f!1:ç§¡y¼X%3¢Q) #?Ÿ ÔÏá²8séFܽ+ÂFÒÇ·ÿ1cÇMÝ¢Ü'ëÕ·iÐöó>ýº6ï:|Ü܈•«7lýfëšÕKA@EaK7ßuèABBJ&K(ä‹èhhj Ôˆc:4"R$IL äÏŠ€þS¯þuãʃ䇧6ÎéÔǹU§>£G4¯höúy9÷êÛÏÏfÄêÈÈ{v­[³æþ úˆˆX¹-*jÿ™ ž=}–Åâp¥(íüihjË…0j*Ñ[(ýFµR)R©U._œ~çê•ÛÉy7‚ZveãäÚÈÝ£‡_›²ƒ/°nèàØºýˆ€É!‘‘‘«·ìݱ6rÙâð%aTàªí{ö¼÷äé“'OÓ³9j­†žñƒ†¦)]qשtÔr*@ÿ¸Õétj^§Êd‚¬„ø» ¹±Ûg‡|Q¿¾U½z-|œ+žýËÖ¡‰c›á³ÃW¬Ù¼u˶M›Ö._² ,"$8–­ÝºçP|<ÔÿäÉ!ýÔ M­C4ø'tÿf@T+UÈåüüŒÔÌœ§ÑËwm‡Ï÷X[Û;T¼ò_ýÆ6õ¸ŽX±lÍÖ-7¯Ù¸måÒÐÐE³§ÃAÀåk~8týbÜó§ÐûŸU}g·ö]û¶éÖqÊì±~½zö4·÷Œ‘}ýûš:uòäÉSç„®\ÿÝ™_~ž’’ ÄŸ˜˜”VˆÀÃ’]DCSkà%ò‡ú·€Àb!q èßl€ ƒ(UˆJ÷äQü™‘Ýú0°× {ÞìuýÛ·ëÖgDÈÒIŸ4¨O‡OúNžïëíëåàæÚyô„q'L˜´`þ²=§ï$&%Q ‹$¥fs5åþiýÓÐÔä ý‘$5$ Iýã¨N§!€ˆ_”ôèþù‘>ý†ø 6rŒÿèί×Ù5ÿä ?ÿ•kƒ>ëþù'-»O\0ÔÑ®¡½}›Ž£ÆOê;lÌ´° sƒ¦|’\²¬PRj“­28f¦ãšÚúÿ`ú‡}¨J)ç3 2âãîœ1eâ”Q#Ç mHã‰sÖ®[·veoª7ÀÁÞ¾Is—VF‡®˜ùyëþsCB‚¾\tåÏDJÿÉIi… !Vl†O!ÒýÒÐÔ:'Àò³F)d1Ù qw…LŸ1=Ð?`ÒˆVåŒÚzµ™ ô¿nݲáî@þöööž]Çv0{éÜ £Æ- _8kÖŽ×ã“““RÒÒ²òr²8åOÏúECS7Àî1˜XŠ-ˆÄÌ‚‚Ü'Ç~ì3fR`À¸¹+ƒÊñÿ?¼dÕš…³æ„,éߨÖÎÎÎé³á¾ýGLž1kîì #GO_²d᪋7nüñèiɪ`éùZ3åþÍ´ÿ§¡©ÀYA`€…ÀÍ^ LYž"€´äQŸLœ4=8è£6eõïä?glÿ‘Ýôììeoggkc]¿éÐE¡¡‹CC#Ʈظ3fÏŠÕk÷^I¼ó,äÿ™y,™Áˆhu´þihêTà+Õøa`>{ð,#'dÏž>±cùòã;¶öp(«‡ž=»4r²mÓÎ$ÿ¶6VV¶>ãþ—,]º|fкÕáëv¯Ü²#æJZjJ2Ð?|؈ª•½î7 MÝ€Ò¿å¥òƒIÏ|þ,3+“ õÿèæOWX4sZzåΩgg‚(+Û§÷¿|yÄœ_­·èÛ-Îßú3) DÿÙ\A¯ÑëhýÓÐÔ(ù“$ÈúKŒ€A‹èOR™ù#ïÙ£û·nì šÐÇퟥ>_ÃÆ¶DýVÖŽ=¦N Ñÿ²ˆ•[öþ:òØéëOSs r³srss²óÙ"-JÍ\Û_š†††‚Ò?aBtF(K õÏLÈ’jT26—õüñã‡wÎ÷oe[¯^Å“€4°+­ªçÔ{ÈìÐа° {£î?òçã”ì|fQa~~ ¿Å×áØ+á M-Beÿ©Hª…ãr¢R"¨£Pé ¸úùã‡âÒ¦|ÔÌÞþÕ9€ÿtrDÈxœíwT“÷ÞÀe¨àh½­^}«Ö¶‚q”¶ö¶j·­³^gµ­£¸÷Ù–Œ {%LeÉÞB6†ìì=yŸ'hßÞSßLϹ¿‚pŽœxÎ绞ߘ6íEX­þä‹#ŽçÎÝ{ʉ+`wuq{{{y6‚Íáö« 0ãÀôôz½a\ÅSÉTãJŸ/–ŠD"þؘH§W´Ö–U·SïmX`=ËÊò…ÊÿÖë>ùêÄ™ÓÇ~Ýw Åâð]½FºXL&«£‹Û#þŒúk„#B±D,R)E|¾P*—Š…ccé·¼ìIc=áÚÞUVVV3¦öß|öòöÝ}øèžs!±Xˆèdj_/ƒ×Ëë„ügwq¸¼FgüÀÔètZ­N§‘Äb‰hð©P ¡H"ƒ —•U= ºî¸ã]kkë™FÅgšMÌfZ-ûn×Oû÷sÃ&&à°Q©eyôîNJeus¹Ýƒr¥F«Õ›ú}(ÿk!Ô ‰ˆ?8ÔÇbvôôò¡õ|þØH_UIYªóe§ÿ€ü·2ŸÚˆ9ß:öï}ûOº¥ÖÆàpÑ1 Ùd&½B¡PÙ\.oò_£ùø`Ðé”Dð”ÛÑÁ¤R© Ö`x„/ ÇF‡ÇFÚJJ h âë7¡úßjº±ÄŸrðõñc?ïÝ{еŒÓú8+9%#õI+• ûO¡wAþ+Õøü0è%ãcý4H~*ô‰18ØAéæ ÷0»GyTJibÄÍ ³¬¬­¬,¦@ÌØ²ëûÓ§@4w²Éµå5-ª1P™¸þ×jt ÿL‹A§ÕA/z>¯wäi'ÔžSéLjK •Ei(*cöó:›+š{ëv/‚ÛÿéSªol ,6mq¸Ž¼qÒ·¬ÞÚF¡RÚÚaÿÛÛi\n÷S‘R;¡?ˆ€É0h*½~\Lo¡qºíäV(Cו—×V””æçT´4T?Ê/çtñؤ ŸÏçZY[Ϙªñ7³˜è Ö;l|€EyxàkÉäæº¦º’–vcmAg@ýÏP šÐ€éÐ+J‰‚Cnj¡Ò) Uu UÅ…… =*(ÌÉÉ+kii- s÷üv¡•ÕìYSeóÆ–kÖlôðÂÄDâHÍuEù9¹-ÆôO£Ó™œî§c|‘Ì(¾t€é0¨".—ÒÜDe3šž””ÀòæçÀ1 —HÊ++,)E¸¸¹|¿ÈÊjáÛ/Éúfæ–•¹¥q@ðÎ[‡ë7ã#¢‰µä¦'Äü'ÆöŸjô¿gtŒ/‡µ‡»­ÀDè” u?µ¹©™É¥ÕWU–>z€üÌÌÜ‚üÜbvFZrr’¯Ë;ß.žm5Ójæ‹ý·žûŽÍœÿëþ§™mqÜûÅùûA؈˜ÂrKuni+¬œÿé îÀð˜²^¯–*Á*@Àtè –ÚÔDni(È(®®(*­¬y”›ï•–CÊNIHJ ðtuºöÕ"k«/{îg¶lÇ»Ó' ‰o¼u|ƒGÌÇa‘D2¹¥¾Ö¨?Řÿií¬¾A¡f|\-H´¦~ÿÀ1Z¡Rmïkmj®Ï‹É¨ª*’ž’’œèëéšLˆÇc£’3ð—ùä­YïÛÍ{‰ÿ3æ½96ú³åÁfŸž·?ü0*‹Ho&·Q'0êO§ÑèCðôO&“©AöL‡^®5Œ+èÍMMOÒð„‚êªÊ2¸àOJB?@GàpQðö˜HŸSëÏ›5cÖ¬—=ü7Ÿ=ñs‹gùþ¦p Äæ<Ê.†üg0¨TƒI3ú7|È{ƒ\¡›€SßmMMMé1™µ•e)ÉPˆóuõ@…Fbq0Áç7/´žnaföò‡–Ïôüuë‡;ü3jë«ë›[(]l:ÕÁ¢Óè Èö€þÍr9ð05†¡–Ʀ†¢$<±¦ª¬¤875%.ãv÷ž'20,<ãïçîøÍKcëo1õòŸ fíܺßÉ¿¼‡Çln!S:»¹4 “ÎàŒÊ ãz…TªÒëÀ À„ ª¾¦†ÆÊdltb~q.)›˜‹ôzpÏåÞThH€Ÿç½kWÌötï•Vÿš/\dðè/®áu#¢¾Vr+•ÓÍ¥S;:4‹ÓÉ`vJ ãJD¦ÖëÀÓ?Àtèu ½º¦¾2î!öa41=•œæéyßÅÅÍ78ísýü‰Ÿ?ŸýŠyߨX¯Ýp칋È4ò°hÙJas»¹L:›I§Ñ:û{;YLΰ~\4"úp`: j…|°¶´¼ª–žœ’CˆÂFú¸»Ýss÷ñÇ ü°yó‡o¿Â±?`¹`ÍÚ[7o¹'T÷‰Eü*Ãáu³ :Áâ öqYì>­AÈ—*µ@À„è¥ÞÈ °ðˆ8‹ òGûÞsq½sõðÉÕÏ“ûô“53ÞxÛæ_ÿÚ¶×óžãÙë·"2²èPþåq!ýû äß×Ó782Ø?442&”(*8€˜ ý@j|\!âí™Çb#ƒ0AhWWW§+÷»~ÍÌ,§¿µÞaÙËõ·\¾ÑáóowîÚñ¬ã…k7œ¦3ÅbÁ`_¯g@È¢C ³“ÓÕ3<8$”H• …B¥Vƒ0!mSfF)•@ àÑEI1Øàåêêæzû²£ÍêyËW.µÛsò+ã2€–/èf¿g¿å«ïvìÝèÒ™s·n^wK,çAé¿·—Ç땉xLxå›Û?< ¥™r"ý«ÕZ0L†A!éãÓs’ É­Íù±¡‘X,…C¹»Üuºqå÷]?.‚úú-Û¶oY·³þ9û¯þO_no÷ÑÖmÛ8pÔ×ûÞmŒ»[V_,Š^Ï T*èƒ"Awïà0Tÿ Åbųú_£KS¢ÕŠ˜S“rŠ‹Úª3ãqQ8\BrbRÚÃùêUgçë—ŽïÙj·|éê ¶o[N3³´zcá_Ïÿ}kź›?þlûOý„ŠÄxÕŽÁí?”þ{‡:™#’á¡>dxxhxT JÅ2…ÒÀ À¤TNUq]kµ¹$%)22: Ÿœ†óó¸{ñüµ;7/œ=ºsÕ’7çÌÿŸÅfÓÌ­f½1û¯û€ç¯Ý°éÓ-Û~ÜwèÔ­ÈÈðplTl¤ÿ@·€/`URÅcÃ|‰xlÿñ‘@((4` 0`J´#=íð½m5¤”t,66›˜ŒCùÞ¿|þì•+—Oïútá,(õÏž; òæÌ¬¶\µÁá³Ï¾=päØ)7Bz >!­°}D4@.kˆ‡›KÛ¤âÑ1‘T?û   rã@­3õÛþ«‘sXL•ÚÞZ›Ÿ’š ÉŸH Ä„!®ÿùбs—ß¿êƒÌ,Ì_¸àv[¶}wð÷³ne?N'æ?.«bt·WæóF:i¥å¹BÄÉeü‘Q¾Hhô_ 5v*p`JD4ˆÖÆêüääÔ”¨h|)35‰ç÷Û}ßìýýÜ¥kMuðçôk·îþíÚ'gDjZ©¬²ª²ª´¨œ\‘QM/}RZÓ¯PËÄR¹B<6:&€å‡Ë•ð@¨3@ÀdH8,ƒÙZ[NLIJIÄFá³sIÄŒ¤ôÅ ‡¾Úè´óOK¬&¿óg΂UŸ»éîéáá‰Í$=*«¨¬ &dÕU&eU”””6Š•*¹J!“‰FG¡ö_h b…Z§…ŸŒƒ˜ ÃØÐ ÓÅj« &&Äàðøìì,bvj"u÷àêµö_ünÝRëIý7›»dÃO—<^Þ¾Þ…¹ù ós“¢b’2òK ÿ{¤R¹ ú `ÿ…"èÎÿíÄ-`@ÀdÆ q7µ\EJÄáâb3Ò3²‰Y©1Agì·îr°ž÷Þ?ß;©ÿÖ‹W½gw*("($ÂË———›™™™‚K,x\\\ò˜˜ÅëlêI¥R‰Hß,,Ë$P ‘Éä*d?ð0*½¬¾·±4/+…–™’š’šN$¦§¦$ø|y÷òÎW8õgå§ÛÖ®ú7û0÷0$-/—DHJKŒLzT\\\ˆÏ!…béB)ŒD"‰!ïÅp½ÊUzà?`Rž2éT ¥ùI~^nNNFRRrJJ‘HÌÍMt¿~ûÇWðé?–lÚvàNHdDtZ&)-91>.620JÿIa×ýýƒã«YÝC"c‹%2¨€ò¿\¦Piþ€)Qu1`ÿÉUù¹y9™©)É)é™D)7?7ñ¾“ÓžSû?ÃbúêÃŽ¿^ ÂŤg¥âããBЈàĬT| ÛTAIu#™: ý‡"€Nÿ"¥V§Óƒô˜¨—Eoo%·¶5WäägAîgdff“²³ssS1wîܽ¶ýŸ¯rþÏ‚¯ü~Âõ!>>6ˆðC 0‘¡÷o:¹;{•WW×Ô60†Ä€D ·ÿj£ûÀ~ÀtèeÃ=,:… ÓTQTBÌÌÎÌÈ"æä@µ}ÏåîÝ‹í§¼øsÚ4‹/oþôÙo÷bâ ñ£BP~¾>>H¯Ë—œ\Ï]«¨©®®®mëê}æ¿X"‘)u@àµcøãÞmÈ>éØ Å ¶‘[ZÈäÆÊª|RA^z1'/?ŸHxèûÀùúí3ŸO>ýŸ`Í¡o>þé:&àë]7áçççëë~éÌÅ‹'/Ô4ÕA€Ìè‚ 1dò‰ €þÀkE¯×=?yÏ Õɇ‡¸,xþGn!·’›j—3‰DR‘€ Cûy¸<8»çã7'3ßÜ^<ûû-»ÿ}ÖÛáu×éÎ}7_$ésçÒYÇîuåõµÕÕ ­ô~cý‘)r°ôxí@úëžÝ¼aP«4£C¼N“Akk!·µSšÊ‹J* I¤Ô”¬Ä€@4Áܾà¸a¬¸Ù‹WÎ]hÜ4}ú²»výÍ#ÀåêÕëWîû P(„§Ó•sþéáé•uµµµucÉä xöoâÿ ࿃QÿgêéäÒ‘~^W'›Ik%·¶·“+K ÿsIñø¸0Ò?Àõ0ÄÏåú±5ð9Àf/¼Älñsã­?ø~çw_l<|ûü±_N¹zÇÓ €Û.ÎÎ.Þ¥-MM M ÔøË$R¹R©;€×œÿŸg^½hôioOOow‹ÖFi§4”–”–äçdÇECúaИà@¿û—N~ °¹¥Õ¼÷·îÞùõ–6¶k÷áÓ—®Üõðöƒü÷Exøx…–‘itÍx&¸±ú×hŸgP¯‘?_»¥ïïííáñx½=Ý]L•ÒZ[RR”Ÿ““‹ D ƒ‚è Ð`ÄÅu“/šó®­ý–{¾ß¼iãš»w:}ñæ}…ðñE\ ©£0ØìާbxõL uÿí³üü^Nÿãú^!<—Mmoo«)!e³IqØ … @#ýƒB n|<ù%`fK×mÚ¼å»ëíì6~ùãîÝÇ/ÜpB#ý|||ýÃp±Mìgþ‹%pþWj´àè/ൣû³ÿ©A%ì5€NØÿ†"RV&!.ŒF ‚‚ý‘h :8$4|ßü)®ycáÿ¬þlÏŽÍë×Ùüí·»öì?uÕ34<†öññ N~ÒÎb³ØÆüùÿ´`ü¼vþ<þƒ§Zµ\ÖÇîâñ:Ú!ÿ+ ²2⣣"ƒQH”? ÀaήŸâP ‹ù+þeë°nýæ-[¿Ù³ïÀYg¿0\|JL ·_r#Éf3:†ŒÙ_*QÂý?ðxí@úk½÷„~z­F%à2Y³½Ji¨+ÊÎJÆG…C¥;…F£Ð(èÅïö'S]h9sѺ5Ë?´YkgÿÙ×GŽ<ïô —’äç—Me±Ù¬Î~ÁÄÊ?¹R­þ&êÿµð©»†çK€4*ÑÓ.“•ÿíÍ ĬŒ¸è£ÿp€^H„ççSm47ÇÎöÝ¥ÚÚÚÚoÛsä—37îc°ø¤Ô˜pLp1Ig0zØøà?8ýƒþxít:F÷‡ÿPþW‹Ç†8´v˜–¦ú'Ä,bä?œø¡Aº{ù"Ü·OQÿ›™O_ºÁÎæÃU¶6¶kÖm?|öÒ»~Q )ذÐèÒÆ–úfj7_***8ÿƒçÿÀëGåíó5€-ì¿@ÐÇ0úßÖXõ˜˜E"D‡Cþ£QH¨ô¼åä|ïœýLëIw˜™Ï_µq㦠¶«mV¯^¼z÷Ù›·o¹Dàb£¢ó‹k«©ìÞá1¡T*SÈÁø0 Pþ7¶µþ›úJ" wµS¡€R_ž›••€€+¨öGÜ¿~áüÅýËÌ—ÙNúÀr©ýÆím¡ü¿jÞ¬OŽ]ºqóöý@\BFjjfAy3…Æd±:º‡à“åJcûðº1èáé¿nÀÇŸù/BþSiP @i,ËÊLO1öÿ(£þž®w.žv<ùÓº¹ï­™ì`ó7Þ·ß°aÃz˜YVk÷üzæÒ5gD\‰H,¨…å‡a÷É`´Æöàucøcï/ü…^5 ±€G£Ñà ¹8;+1.&*Ô"ùûºÝp<~ü̯?µd†Å$ùßlÎ;;;{;[ÛÕËß³Û}ððÉ+ÜÜüZªQ6›Í‘Ée2¹”ÿ€iøñŒù_¯òèÿJ¹òIablŒqüðñòòxà|øÈ/Ž'Žlœ;}²`½xÅÊ•+?XµÊêÿmíÖmÛwäÄù›HBZzfNi+ƒÉdÒÙ]}Bxç¼úWNþLŒAûo—?íd2Ô–Úꪪ²,B,>ƒBx¹¹xzzº|ÿóÏGŽìXö½Tÿï,_³ÒXþÛÙÛÿxà—sçÃÂ0aIT&£‘ÜÚÂèèz*–Á‡þ*är¹ÒØ}ÿ“é¡7x]¬–ª²Ò²Ò’"!„ôr÷öòBExœ¹â|õâ¹Óë'óÁ»+V¼·r±õïçÿvË–¯ÚëxÕ èçéZF-+ª©­gr8Ü8ÀgÈJpó'`R j œýÇC=ݳ¾¶Ò¿´´ )6:éçëíéšåïuõÊåógÙLæ¿å¢÷V®\2ÇÌ|ä¿íê5+çÌÛöË© w½}<ø$µÖ”×ÔÔt á@¡Õ(ä25Hþ€IÑõW+Uâ~›Âîl+Ê++-O‹‰À ¾^žÈ„ì—‹—ΟsüäÙúŸ—Œf¾½|ÉP‹`1ÿCÛ·æXÎ_¾íØY'?”Ç}Ï8:­±®¦–=Ìç ¥ðøO©RÉer5x˜½q$¢–Ïéêàts*k«ëˆ¸@…ðö "’2ož8áÂÏïO±ÿoækã„ÀbÁ¶+fL3³Z`sÈÙ3Àú7Ò)̦ºêÚÎÈxü/ƒÊè“n\¯0-c 0ÈŸr¡ÛÖØXñ„ˆD¡Ð(_ÿ‡q i·ŽŸ:íøé«lÄâ­e fZÏ{{Åú`0hLDzQKC}e¹ot"ÿOĵþÏ‘“0± h\=Ö×ÍátµT×–åBÐhL`xBLdôƒÇOìY2qþçEÀÄ,`+l×´õ›7‘˜ àÐèØüòò¢ÂšŽa‘ñÜo8ûËUZ=|ù©ß<€Ñˆ†{!ÿ‹ª ÿcƒüÑ!Q±¤Ì„Hï“Ç~ýò­i¯ìÿ´i«69|ìðéÛ÷^~à†Å&ææå>ªgJ¤üÓø±ø› Žôs9]­…•¥3Ãá¿ã’rsIÑ÷OÝܵqþ_Oÿþ_Ò¬¯xœíÝgTSY»pš)ö2„ѱ¢¨à8¶Á2ãEË`aTŠŠX° €&¥) H‘zé5!=$$)¤'Þs‚ï}ï{¯ _®q­Ù¿1³ü†a­ÿ³Ÿ]Î>ZZŸ ³p݆ –VVö¸ÜôJLx™š–•““WQ¤rCj™L®zÀWA%Щ½$¡»¬¬´(), ((øIܫܜìg~î ÆhkiéêÁáÖ†þû<íñ‹×YYZZ®ÛpÀõ¶Rfv$¿´¶¥›LçðB8ÿbøzÈid2¹‡€{WZR’÷,88êyìó—99¹¹©DÖz=(ô::#ÿÃ诧¿výºµæß®ÿóµ‡Oâs¡[Q[õú]wO—Ë“À@$–‚üÀ×A%aSÉ=DBÇ»’’’¢Ôga1i(üDFÜ*ÝQE¦g ôñ |þ257%(00Øû·)P´ÇL3ÒÒ«õ¹©€öD³­Ö¬^mqÐÝÛ×ÏÏÿQH|YeYq6”ÿììüÂÊNRû¤H 7 SBÍ¿þ%.—‰k®­Ê|ìóÀ'ôIøãˆÈ˜Ñ!ÁÁ¡Þ»µÇΘg2ßð³ómÝñ³·ÿ~pËs‹ý7}|ý†D§–¿.-B¨€ì¼×-Í•Å]êݹ l€f©T29ÜýË¥|&Ik«ÊI‹ ÷ñöñ ü$ìQ@HHHØãHïS g-45]´hÎgó¯7Éhñ©nÇ×™[l¸p÷APÌóøÌ’ŠŠÂÜìaùåoŠrËð2©T&•É@¥RÈ%4üK‡XD,ÝP÷ðÎý‡þAÁÁaQ!÷¼|Ã#Ÿ>½¶fž‰™)”ÿ…ÆŸ‹¿îD£inwïºÿ²qö³—Ü#3ó Ë*+Š Ô ²³sóórs ÞRå ‰H,•ø€F)¥R‰D 1ŸMhª­ªn,¸é~ïaPX84ý|tÓÕí¦Ï‡·lVšÂé_d2ë³ç€ô§-øíº—÷½ã6vÇ\ˆÊÈÌ+/+/ÌÏÍÏÏËÉFäädgVwöpy¡RA£¿xH V(C\ÒÛ¢ÜÂwnž÷|ƒÃÂÃ=\®\ùí÷å›/R3Y0k’®žÎ'Wÿ´§Ì™òíO6vÞ¾=üúãa¯È¨äêŠòâ‚|8ÿ9¹9Ù¹%õ¾‡Úß/³Ð0%”/UÈ‡ØØŠÌŒŒôW=Ýùù†y¸^r¹æ¶ÅÒÔl‘™™©™Ù¢yFÚº3 Æ~j ÀÀt¡‘Ùþã§½||½=O>±Ëú¯˜TE!ÿœìœ¼‚üÂêön<Ž@f*ÀáÐ4xü—y!·—.únãšÙúc†'ùc?µ¨3uÞÜÙó­OÙ9y<¸ïéêxÎ骇¼Ú:bwwMÁëúö¶†ªÒ’:,Ž$|Ð0•R)Kåb:ÿƒƒƒl •vûÌÑSN¶{Nžw°w¼u?ðî®å߮ڶÅr®Þ§Öýþ5þO™=gæìõ¶Ço¸Ÿ¶=uþŠ«Ëu¿g¯ Q*›‹©xÛÔŠD¶V—T£ð½2%8ý § †¤b>œ(þ\™H¨¼qùÂßNvÇÿv°;wùªóŸû-Ö[mݵÅzɸ9×›öñùÿŒE |c²ÛÞÞéÚÕ½;ÿt{àuËûiò«<|/•#bÖ¿klêìîxWU!rÔ‡Õ?_³_þÑ”b¾@$ä p!f/©‡‚NŠ ß»{÷î#vÇž±Û±~õ†MÖ?ÿºùûùÃ㿞±±áGwÇ›­\ji½ã”³«Ë¹3¿î8|'È78!==§º‡Jídu466wuw4Ô5c(CPî•ðé?˜€Æ¨dB¾P$är86›E§öÒúh]é1«L¿™¹|Ëæ5+ט.[ºmËΟ·-™;éÃèolðñö_ÁòU?;:>}åò›]»ì|ÂCã™yD&J¥÷aÚ;ºPÝȶ†6W*P©är¥R¡4E%Àùç çŸÍb0™tZcBø¾]ótÆOÔÒ5\h½së®]‹Ç0ù×ÒÒ66[µõ¨Ý‘ÎŽ?~¿íwϧñ¯2Ò³kÈìÁ>*µI£0h4žˆ%óäªB ‘Iä*5MÿàŸH!äóùèÍþ¹,Æ æ½Jzµ}òp»¯3õ¯[¶Xè”~½qÓÍ–¯Z»ù—CÛ.œcqÌ/%§¼´¨Ù'@ã?&“Ñh4eª7¢!±\¡~âX¢üPÔMÿ:àŸD%å«ó/ðx|Á‚K«779)!âÈÒ)c†÷û7Xš/7Rüµ&Íún•ùêUkw:upþ”å~鈂6‡c Ð l Ÿ„Fcú„C"5©B!—Š$Ð$οR€/J¥Áù‡{7Àf0è (ÿ”¬””çÑ·w/›=AW{Ô×~Ž7šÿýOÛ7Z˜[l:¼oÕT›ÇObSëºj‹«z†D6K ìÃAí?Ê¿D å_,—‰Åb‰L*‘)áøËÀ`ø‚TR¸ó áð«q¡ü3Y}µ)9%µÅéñ¶Y™MyàWÓdd<ÏrûªeÛ·mÝsbß:k7ï‡+Þ–æUâøCƒÐTŸG…âO` ?tb‘P$Q“ÊÔ@þà‹QŠáø D‚ÅÕßßG!Õ¼*)¬ÇÇÅ?¿¹gûvë£Ê¿¾‘±ÑÔy¦¦K7î±=~ô×uïx{‡$çde”µ`â!¨ØÐ ø£É|¥B,üWˆÄp ‹AüàËRŠÕ“õáþˆ?8Èfõ··ÖUwÓhY/Sž^;üǯ?,Uþ'M™:mæü•?ܽv‰óooÿà°ð” A „§ö\<ÝÝ/‘@?Q ý¡ŸÇæó¹\ˆ?|Y* ”þ!Ÿ7x 2¹œ~o°­"-%%ôü¡ß×Ϙ8ÊüO1ž2sþÓ¹³®øûú@|£•H™ú§‰h=½TOÆçðá@(â {q46‹É`üÀ¦”ID"!~ŸL “+är¥JÄçóZ“£ïØÜ¹lî„QÅ_k‚Ñ8þSÔ%`®Ùš­¾!¡¾>É9U8Ù*¥”Çd±é±€Éå øB(ý<~/±Š?ƒ#ù€/N)… ¼¯Ëà yåJøD H@* ñ¹sÐzÅŒéŸ8ë÷¿éL˜h`8i²1ÜÌXcm³ñNbòó°DC+Žû^%W)R!>\À`±ØPƒÁ„8bÐYîÀ àÃôœ€/I!–HáɹR©”+‘D¡’Ke¢w‰OýCÃN¯6™=}úèò7NgŒ¾¡‘‘ñ¬MÛÞ¿¤ 3!©–H¢Kß«¤ …B ÇŸÕK q8l.ü°ñ|æ38õ2õ»ÀUà‘@ø’¹Jÿ~€ jÊÅ2¡P"iʪ‰}ä´kÃãoàhëêÝ9½IFÆS¦/[¸ioRu~VVU7©‡¥T—…l~¾€Lê¿:ýl‹/ÞýW¯ ù€/è?náSP èCö§%†_?»o¥¡‰¶–ÎØI“ Gzö¢­££­§M¦Ípð®|——U‚¡’z˜p}Q)äbhü§“ $“=À…j›Îbö÷ÒEbøM êöø’†ÿê0—š˜Zxâ‡ÙúSu´ÇŽœmÝñ'ŽÑÒ›ldd47îVõ»ðt|È?hŒ'’˪÷%.œÏÝÚÿQVuU[;‡Å¢ÛÛ;:]púáþ…§ôRú˜Lö ŸÃ ó4ýµxÿ¨‘¯ór³¢o]¾—h>òÀØ…«×¯·²²\·ñû¿Î:v!*# *‰‘‘ÅåiÉ™],5œhø‡WÿÛ0ø*…%’*T*…˜/Óô×¢döõ’ ÐXœ—‡ˆ‰Kñ:bþ¿±°²„&ÿK-Župp<•–””œÿ<>ýÙý ¢.4¶»£šÿÃã?¼üßÓ8ù¿§ý`4 >„# ÷ã‰$¦¾¬¸ 7//÷UJä¬ÏM]7ÿ«æÏÝpðäG—€ÄŒôø¸—IIñ±áž±AÁ±õlwg[Ý ïþ5!ñ®>lð¬€ü{äUˆÅC|V ‰‡|{MY^~~"eíÈ;Ú¦–k—Ì2ÙyÒþì¹óþ©Y)/_&¼Lˆ}–ð2.!1«¼¹³«£µµE=ûol!ÃùgÃÏþ)Õ÷~È R¸lT{sss;ßYSR˜¯–»dùÎbÎD}óSNŽŽö¦¥%<‹ŠŽ‰‰Žz–Ÿô QTYSWÛØ¬žûCÝ?‡ƒòßË«ß?ûÒš·ßb•Jl…÷çÛP-oŠ ±þ“—dª;büçL3Ð?^­£óé3Nnú‡=ŽˆŠŽŠŠ‰KJÍ,(ó¶®®î]}}cK ì"cqxžHåÉàç @ç£~§Lþ^5Dë!b¡1º¹¹££¦¸úsÒ3ÙÑ;Gxù§ö¼%&Ö‹ &ꮬþ5µ£pP‘!‘zÈ,¡LzÐ|û?D&ñXTž¿²‡Åb;ºÐÈÖ‚°¨À³‡Æké}¦ì´±³;wöÄÞ-Û­VXŸñt¿åîüäqxdTddTtdL´çMwÏ'EµÕµÍ--­mí]h,–ÔÛKí‚Êý@cT 8ÿPð9l•L"Ôé‡?ØîvÄÝ Kû.ÿÝô ŸšèÎøÙÆÁÉጭÍÞ½[¿ßë|ÃýÎ=Ÿ°ˆÈˆ'¡Á!~þ¡úDe”•¿njïD"»ºPx"…Æ`0˜Rõû†@å**…\Ê¥÷÷÷ÓÈDF/ޛǠ1hdG}þ ¯«GOÛ_Üif4öã`ò÷:8œ;{úàoÖV?Ù]¸zçaHhxDT¸ï·kׯ»¹Ý~èíuÙ#½¤¼º¥…B!‘h…ÖÏ`ÐibÐ øÊ}8J…œÏ„ @_/…+ ’{ˆèÆÆŽ®Îöæ*D´ÿW·+Çwý°Dÿcñ×™ùËO¶gÿ¶³?}âÐÖ5›ÿ¼àæñôö%—ËWn¸_w»yÃÅÑ3·´ª¹£³ ÕÝêÆ÷Ñ¡á¿#…êŽ\ú¢ž~«†Øý0†€Ãå*“^¤½ik,O‹u;{ÍïÆÉ“®ŽË>ÿÖ§lÜàø_§65X¸ÇÑù6œÿˆèð€»×~ÝwÑ弃ƒ“{JIù›vdG; 7ÎÇJe2¨ù·þ€füü+”b< sEB!%?>6æYr¼ÿ}ÿà{÷¢“_øyzÜØø‘§ ,~ÛwôØ›ãGmVMÖ™µûü™“ÁaÁî±Q!^W펜<M œnÅ––Ô 1˜Öf$‰ÂRø|Ó¸\©%4I½Í¤V?Ê%³$«‘œëyËÃãZXJj‚Ÿ—×¹ xÚ:+›#¶û÷Úl=t`¾ÎØÖ6;vpõp Љzìunß^[ûóNv§Ÿ7¡±Ýïj:q(a8þê Vw`4þá×€+eƒô~ú p°¯³µ­ ‘švß#ôqbêó€{O›ýŸs€†«ÚðЛ½;7l^løÝ›¶o=èüë•CžƒB<í~üaý:ÛËv;\žæ—6¡0ØîÆú., …¤Ó|_©úæMÿà >¿‚jDô~·ŒÇ »;jr’b"_¦¤¥Ý»ÿ$öÉѳÿÏE`¾Û³÷?öïßû»Ùœ…&k¿·Ü´é—S]ßyëîÝ·¯]2gîON'·Ø>Ï.¬nA!Û:ÝÝ($¶'ÒÙ,‘X(ÿ€&©ÏÿÈ¥pþ•2.½—‚àa©‰qIéii©>~A‘Ñoý¼pò¦ÿ¿_ùÎxœíÝgTSÙÚp:8bÃ:ru¬3^ Ø@I (* ¨cAÇ‚¢(½ (¢Ò{ATPzI€ÖÁ((RÒ@Bï5v|Ï 3ÞygÀÑ/7YëîßÒˆ~‰çÃ?ÏÞgŸ}$$¤çmÒ69xÀÐpÿò תlÞª¦¶Cï—K3wOwGã §ÍU?ùë ÛÔœ¼GE…¯?Ðhd2™RO¡Pím£¼q6Gð ÑáÇ|°êëê¨Þd$<ÈÀef¦DDÇÞÆºîZ¬ ñWR³6ék¨¨«Ì•^¼võ²åË–¯\½|¿†þ‰óg~=´u¶Ä´uG̃îà ¹¹!ïE%­H$2¥¡£sþ>)è$€?c­ HüÉÕ5d*ñeZRr&œÿäÈ»÷î[¡•g)HÿmY´mí‚iJ ’K—MŸø—ùj(õ-[Ñ{·Í•’^qØ Ÿ‘ð8—›ÿ~^Íd2¨ÈÐÐÓ;Ìõ¥ ø£Cüá:³­‰ôñC%‰Z‘›œ‘‰ä?íaBbœß®YÓfÊþ-ÿ’üÛ|ʼn?åר®\¶|‘òjÕ ÊÓײÀž~þìÅëçy„GÌB"QzúÆAõñµöŒC#ä u”š‚Ô¤ŒL>#3-1!5!Êt‰Œ´Ôßã?É€  $!1Kþ»•;·ÿ[y±Ú¡‹iÉ >ô‹¨---Ìz2œÿîΞ6è@l@Ü¡QÁ'A?«­ô:3.!‡Ã§gÄÇ&$ÇøØª}÷5éÿ²U[U×,œ¹HõÐÅÄäŒòZ2ƒÉ¨.oìï€æ:j=ÕÞÑÙ= :@ÀÿAì®¶¦ÊÒ§éiHýOõö¿wãˆÎ¿¾!þÒÓ6h vª,]}Èõ¾.•HnêfК{‡zXÍŒ¦æææöÞ!$ê+àO ô‰=ÚPù¾–TS–×ÿÌ7·3*3åd¾!ÿò‹W¯ÛŽA¯ÿ—Ê!™Hîâpº›Û‡;šèt8ýÍÌ®ˆ?ˆˆÏ¢Rë¨ÔŠüLxzóæ5«s†ë—.œ3ýëó/%§0sƒ¶6zÚÐñ9…H$õóãl6»‡NVÿææPý@2ëëÞ¿ÌJÏHÏHŽŠt2Þ²zÅ’E³¾:ýȇ¢ú)ËËgO[‡| I´¾€ÏçsYHú™ÌÆÆ'ÐÄrÔM§“Šò \zFZZbôí ד›WÎWZ<çkó/‰||gìâïJ ‰uml¾ÆjãÏjëlnêá‰øjø&*2—E¯û8';Ã¥§&Åø^³9©:æ\å¹_ßÿäM±Þ^!Ñ)%T2¥¾‹ÍCòÏ`53Y=Ýýýã ü€c2(¯ù ø,|fJò]GësèÅròŠ3¿å „„ì©ËKÞw~«$SiuÌ!aþÇ{Y-=}ã£c|pçă°2s„›ñ‘€ýÍMU¹ù²qHþSî;ž?³ìï;ÿ‘‚©‹™S@l‘L¡Ð껹Äå±;Y=\O4@õ±€dŸ?Ò?eþø(gœÕD-~’GÈÂás²3“Sâ½ÍÎ~ÿíñ—”Ò68êˆÍ®%Qˆ´zÖ$`³[;FáiÒb‚7>.ø4ÖÛÙËîëénn*{’ŸŸ›Ï"<Æ'¥< µýeÞ·ç_껫òõJ'Ò 4ZÃèíî…óÿ äÄ—‹Äq¤³wdtt¸·­¹©éõ“Gù¹9Y™øGøä”„ðŒÒ$þý饛zø'¼m¤7i´úöqÁhW/îùù±çxd¸¿wÂ`¼x”ŸŸ——–”ŠKM¾d¡µ î$%¿%ÿ?]öô»æPÆ 7¾¯£Õwp ˆÇË~ †8}=CÃÃ=MeUôšÇB^^nVjBbRrr\l„Õu% ‰™Jß™Æ~¶7³‹Þ—VPi´æ!>  ò€ø¸ƒÝý#ƒŒwEo>ägçÀù'àSF8^0ÀìX$±`é7ä_y—™…­›‹­{lÖãrb<hîçAÐØ°¨/€¿âò#=ƒC%oJ¨¤§YY9Bn~~nNJ,Öñ⯇ïÞþÓš•r_Ÿÿï4L]ºåëfïuÿe5\þá€5"€x°öânÌÇÚ)Uuu%ïJ _äfáñÙ¹ž<õ"-ø–…ùC“=š*kU·¬øê%€ùê{Œ¯Ü½ëoïYN®ƒ€ºÚšÆ6<ôâh¨¾²´¨ìõí3²ó7;7ïÑÓß Eú¸Zì31;Y¯ºË­øuéW\¤¢irúV|lè׸jJ=œò‡òjFï8òį›R[û²à¹ìqN‡ÏÎÎÉ{”ûôy„Ÿ—ùþƒ.'ôöÿrÔhÝWÅÚR5=ã³Ö·Â}=¯Ý¯üH%SëjÞ¿§0»F¦¸º%v[­®ðÙ‹²7yÙHþñø¬œ>'ÌÎâ‚¡¡Kðu›KçLOZõñ—µbïQ ‡«^×n‡Ç—¼.­®ýXQÝÔÑÕÇþû!O‚Dâ¶0ä’‚§/_æþž<.3=%ÁÏä Í‰ãöÞA>îV§Íìi@R þ%)=OqÅ/\œœ¯úÄä’~äi@È?ˆŒ€Ëá ·73+‹ž?{ž…ÃÅÅ$fᣰ±±7»;ÛZ;ya£°~ÎV¶—­ýò-éY?éhŸ·q½~Í),%«¤¢âÝÛ·•OËàü•3F?Çú=óÐÄO þ *ì‘1Nµ±¹¡¬¨°€€ËÄ'EÇg$Þ ½v3ÔËÝËÞÚÆÃ3öëyÚÔô´éÎ/7ÓQç,œnùùùÝŽ¼áKx[VVV^\üæMÉû†ÁϯÖ|!a Ò«€ÿeœÁÎ.&½âÉëªÆ…ð™©Iѱ ñ11ažWÝ\o9Ú8EE§à’“¢ìM™_öÅüO߸óÂÅÓÇ»ù„߉ ÷-{[ZZÿ÷•U¬ñ?¾Rð'à4h°«½­ƒQžË}AªûX”›•r/ùnDÔÝ»1w"¯;Û[z{¹†gæäà\?~ìˆú7Ë/Ù¢vÈÒøèQÛëþAØ;w珞•––¾)*gö´6´}^ûCBÿ9ÿ¢¼zø_ µu´µ¶¶1?’ð„g/ ^<ÉIŽ}ŽŠ‰¹s'ÀÑÙÃÇÛûAîãü¬Ô¤ÛŽ{Wü8óKñWPþù皦ö®W|ƒ‚£ïÇãŠKËàüGxã#ÿyßôibñùÑÆ;á€ñ.ý^rfVNN^^vj46<<442æÞÃWoŸàûÙùù„$ìÕsz ä¿8ù—Ÿ¿Piú*M£ §Lm¢“ÄÅÅ¥²í^"%+-!9}Ùj-]='ÜË'iqq‰ù¥eeïjF¿ßîûë׃ø€HqûÚ›I%9wnÙ;Þ Œº‰…Ë ·oXôÝwƒáü߉¼—‚Ãã“Ãíl^0ë‹o””Q’Zô㣣~OJ ³ãã%%5 }Ðì€øë¢,z|×åÒ… –×ÝÝBB¼nø…†EÝ¿äã“›œ™ïl ³uÝâÙ3¥¥¦¼ ;k†”ôjUƒSy¯^ç>Œ{YXN¬¥ ~ŸðƒÄ ÔÛL,Èyàvá‚£ã g;;÷^n×}}nyû‡„úûâ¢Ãï†ÆÅc­öjëj¨mø·ÒtEÙ)F…ÖÍœñ½ÚîMÆ.÷Ò23ãâR^‰Dr7o"úhø@Œ@|.¿¯­åùý[ ܽ=ím,/^²±õðõó ÷÷ Ž¿~Í画ëkS}4¥¾iÝê…ËæËNžÿÙ; ×êh1·½êƒp?.ùU ‘Hâ^ð>ï'â‹@ˆ×ÛÓ×ÑÚ’k}@WóˆÓ 7{‹‹v7ý‚°‘a7/êéè^¼zÙP[OB£¶+ËÀóü¥3&¿Ì¼Í=oinfnåäéw;>îa©¶ŠÒHûSå𸢼bþÀîìèhcÕ|OlØn|ÎÒþÚu'»›ÁþA؈`ŸëîžÆ†{ öëéïÛA¡5Ñ[„ €J “Å_þ_UŒ4>åpÖø¼­[à¤ý¯­ªª®®nåüiîÊ?ˆ‡8ÿUU…©ØóÛ þò«‡—§«×u߀ ˆ˜07{#}]m F­©‰Ò€©+#SÿIWe¦/]§¼ù€‰É‘³û Ìm‚d”TW!Ú¹à3ÐXWGGß0µä1.;æì>Œáëë7¼|ý|ýCüÝì<´1ššh„&BíøiÊÅIùÙ³ä•Vn5ùeÿ.ýó¶N!Ééy着j(TRÙëÇã€óÿ@|ð{::ú™å…ù1®;÷î9jÓÛ/rÍÁÆÜY_ ɽ0þšh”Æ–¹SÅî d¤dæ­ÆèÖÕ9ogçÏyYYUÛØÝ×?Æ@þø[Ô ÀgÐpgGwGkuaañë GÔ=G?ÿ€€ àÀ°o×ó'ÏîÓÑÒÂLÔ4µCeÊ @’’Ó+/Yñó¾Ýƺ»,ìí<ïá2³_T×ÐXÝ=>Ÿ/àsGzx¢¾b>…çÿÌÆšÒ—„ C»õ ®øc#±á!7=¬N2„ó¯51@nÿ­Ÿ?Eüeg(-ùyÝ¿Wý¤½I[G÷¬µ­{XìܳjR‹ÅìáÂÅŸ=Ü×=–þ@|ŒÀùgªÊ‹ŸÄÚìVÓ×Ýgçã㊌ ÷u¿bwâÀ^ŒÖï$ÿ*¨Å“v2s~Xõã+–/_¹Nq;FËÔÂÊÞÙ-÷è…Éb±}œñÁÞQ>8éÄ»«££¡¶ª¢˜|nß}]ݳ^×½ü‚‚CÂB¼ÝÏ5®þ ã/ìÿ5Oí[9o’`ÆâåË—¯XþãÏ«ÎCc¶ïÿÕü¼™MXV^q“ÕÒÂ`ôwuvv°¹ ±1ÞÙç¿òMvÌ•#Fêºzº'Ü<ÜoøøúºÙXšïÖÖÒB£Pšh ”p ÀØòòáM“ÜýŸ¡´héÒe?©ë©¯ÓÛ­³ýðéÓf6Þ‰ùùå-,VkG{{ÿΞ!öÈ?ˆ ¨‹ÙÒÆ¤T¼ÍŽ?z¥£wÚÆÅÍÝÃÃËÛë’á‘]»à¹? N>½}; þa¯¥Õ…Sk&9HJ^éûÅË6iíÝ«³ëØsLjÄÔ„°tœÿN¡îžáèÿ@\pjÉ­í¬†g·¯ZÙ›ÓPߣohé|ÅÝýêU×s{áv@®þhmmMÍ-ë·íÔÐÚÁÆìŒî¤»¥¤eWí5266>°G礕››£“«w&™ÅjÆ¿w`phxüŸÿKüw:k«j-M´¼¤§Ïže‡è_>¢ì‚“«›ç-ÛýhÍÝ:È¢? …ÑÂl^µ^{¯¡±Íy³Éúÿ‰[€37é@€…zæÖ¶ööN~ÙÕ xþßÚÚÝ5ÀEnÿ}€ øõ5UÕd ™Túìi’ƒ³í +{—+¾ÁN&ZÈŠÿD÷ÑÔܼbùF½&æ§ÍÎl›6Eþ嬨¤·ÏÐPGEïÐ)«ka©…µ´f&‹I§w Œr8ž0ú` ˆþhc ‰A#“jË ~ûíy~œ³‹Ýa3ëSÖ7œ К8û( ¥©©‰Ù²ò‡·Ÿ:jfj4{Šü+,Z¦ª­§½tá‚%ZÇκ<,%ÖÑàúÏhböŒp¸\.O€¼k”öP}MK'Bª--xœêåìâdeyáœÅe+ËzHåG–þQhÔŽõ‹gN›³t­ñ±ãÇ,Ö¬šêPy%%å:«gÈÈ.B;u#­ˆ*ÌS3k€+àOäÿX€ÿºIÎÞâ ’«»ºàü+ŠŸ=ô¿jçàâz횵ťËf'Mà©? ìüA¡w®š+/!¥´jÓ¯'þyŽÂI)ÌRT˜§±vÙ,™%;N¸§¼z çŸÞÌdÒ[ØÐ'ˆÏçƒÒ" øü¿¿ q9ÝŒŽŽF ‰Tù¦ +ÂÁÊÎÅõÆ-GËË—Ï7ÑNÿ‘`§Ú9) Éißo3Õ14”“›ê @ééJÓ¥d–,ý~žæ·”Ò"µ®®žÎd2úu?púˆÄçñx“ì½…F;éT8ÿE/~Ks·´qtñps¸d~öð~}‰ÿð ±eáldÉ_~™ÚjÕMS¿ÿKRQy®òôvÞ÷ò_•~ QÈuõMMÍ`Óˆ$€;Ÿ —à?ðÝMud¸þ?!äFZ[Y;8Ù[ÿzô°¡-ÜôÒÔBk¨®ZŽœü/ ÏïçMýp™isW¯_¬8S^BÚÖ'ênBrÆ“’Š FkOý€¨ \6<ÿÏ‹¸FƸ­ôz*©¦œp/9Úæâ™Kv6ç6˜È?…ÒÖÑÐX¯{ph¸‡^Ç`CŸ¸Ãýý#CC½-]Cã¼6­ŽXÇleÕ—•¿ˆ õ6ÂlWÛ©BžõCnü¯_·Cßx¶$ý‰²?1˜t PzÑú5?¨èî?rÞÜ32:"²SpE*«¥½½ƒ hl ¿¿¿¯§»‹9Èìnokkmkmimïîo¢QëhÍ­­-´"±ì~XèE”ºÚöð j«å§mV3Z5]JbÎÌ?º|dPVZRâÿ ú¼ÚxœíÝwXÓ×þpÂD«µjÅV먣·µ¶½­uT[g]·j«¶V­õzë`‹Š 2eÈ”)d°W"{+Ó"ʆ$¬BBL2¿_ßo WýiïÄçéy=}úüÉó¼ÏçsÎ÷|Ï10xÖĹËÍþt×ÑS6ÖXbR>*"üZb^~e#…ÒEg0<ÕcÆ4,Ô Ä".«··—ÉêC°9ýímíL6»¯›Jn¬Œ °_»ù›U«V¯]»vÝ7+—™`&¿ýÝt#Œé„?sŽÁO˜`hðœ) ΚûÕÓv–¤ëI q„èØìÛ5ÈdJgÞ#Òèûk€¿#X£”Œ|.»Åè¡÷°¸ý}ì!9³«½­—ÍfѨ­Í59¹~öGŽîß²fåšoÖoY¿ò#Œáû³Œu©Gþghf¦ 1Ïçÿ­¹ïM›óõ1WoWïÔ¤øø„䜊š2’~JGw7Î’ÁúþàïÖj”R™\"äqû]=Ý]´n:[(â r„j)Ýü¸›ÜØÒA­®K?cïdudãÊÕÛ~Ù»ñ‹1&¾ó¤ÖcLLžÏýŸL&O½tùAGlTtÿ̻ͭdjG{­‡A§3ø ý½@•F£’ñè]mj+µ«»›- E‚a ¬V(!ñ‹ÚÐF§µ6œ=ã~öø–5Ûÿm{ê×õKfbLL_Pêÿ‚ñ¬O>ÞiŸ’–~óQk+Rúéýœþ~cP Ê?è¬ÕÑ w"ýxÓ£V$ÿ½œ!Á°ù½’'`wôtw4Ý"]v÷p9õëÇÏ9žÿcÝœ1g¤x÷³ç¢°ØØøÌ¼œ[ ÍMt&ÏãõKårµ~¿ø»‚È ì¥É5:™‘3‡ä£+r°J,•ô÷ÐÈÕ‰Ñ!®Žç].9»8žiôßÖ,m€ÑŒ{~óöÄÅeæ’r«Uݧôô p‡>p@¢Eþ È?D¿_üÁZ:@EêK7“Žìѹ’B »§›r/çf~F !Ä×Í岟««Í2 Ý„ßÔÔxâ$ãWf.ÛõËÙÀàpBRjjÚÛe÷È]ÝtDjX¥„ °ãN#—+ 9J¡t3Y},Fw7ƒ¯R¡€B$“ Ø==´–[%7óò2¡¾î^Áann잉æzþB‹%ËÞ›hüÊúo>gã—W¢S‘üçܼYz÷Q µÆ O ©%˜ÀxS‹…Jh€AïAÒ¯{ØMg°Åh7®éïlï Ñ¨µåe7 ‹rS¢®^ öt¶?ü½nñÞ²åË?ûfõ¬WæâÌÅËü.û^ôˆMMÍ*.)-«j¸UÝÖÍAD¡£û`¼Á îRÈdr…ŒÇæ‹Ù F ?<ÜÛÞÖÞr¯²¼´ìFq~z2äáêrþ nÐhñ·›Ö®ZôÊ €É”i‹Ž[ÿºï`1»äveyYYyIe;›30„LÄ2$üwj1MŸŽR¥„}Læ ú XHook««(«¸_;?ƒ” ñsuuq¶‡æúƒ/¾Ûòí×O{Uþ1Æ“?úöÔ¾÷9¤•VT”–”Ü,)½ÛÕÏà"ùÉ*°þzkTHòUJH¥F—áÕÃCƒús-»ÉóƒuÔ¦ÊëDbjbB"þª§û¥ 'V¢Eþ»_®ýtÖK6ÿŒ2|{Ŷ½?žóŽÉ¿YZZrQR~É?‡…Ì„R•Vß_ümÁHþÕjî!œn4P£µX õööÑÛ©­­Jµ1“HLKIˆÅ…ùy{^rüekscã©Ó§LxUú‘`ÆÖ›Ç–Cj5úôQž€>üuðÔ 9·¥¾‰Þ[Ÿ‡sÞ9{ìÇ~Œ043Ÿ€ÁÌØòÓabA~nf!!1Ãá°X,þ™,ÒjaR©‚@oX«•v×7Pz3½||}­6Ï000òZƒ10_ºvÓ…”‚ä”LR,6617šÿʺ:¬û+%Øo]”v5Ô7<*¼àxÎæÄgÆHE½Gÿ¨[ûw`vŒ“W|<GÀáðHþâók8RÝâ¬åÞ(è† ÍpgC}myþe{k+ÛÓË_;ú(Ãù¸úD&…»øâñØhÚý#ùÇ'gßjhîdˆAå€7ŒLÌeR½¡¾þÁÁòÔÉŸVÏøŸâÿö:ç€kÑØÀp| >:‹Åáñ18BâÆV2™Âù«ÕGô†Õ2¡€ß×ÜX_ã|êäÉ“ßN­]šúõ‰+W±Ø¨ÀÀpl,‡t„´ŠÛÅ„ô&2ªW¦ï Às´Z™P(àqzÈåÄS'­­,¿zÛcø²³þ_Xý'~|ÄÍ7‹ôÂÇ$Äá …½Bfb9~j;•)×÷à9Z5—=4Ð×Ï#‡]:uê¢ý¹f¦ÆÆÓ-^+þo½¿|—­‹Rÿ¯…†Fa±„´Œ”$böCçfIC+…Áéჿà?†úº{»¨´®*kËSÖç>Ÿñ–¹Ù„ùŸŽ}Û¿‰±ÉŠ#'l<|C°Xl4éý ¤E餼&ÑP{Ò–v4¬Ð÷à ­£­õQQ´Í)ËóQnë¿\4ëI³?4ë0uáü·µsõò Æ¢¢£qÄÛ •éå4‘h óA+ÁTêûcðJއͦ•:[ÙœvtºøÇ'ßõ‘™™éW0Æß홳邗ŸPdôHü£R+ê[jËJ©B‘ˆßÚÝÃ`0z%èLC߀g©åüÁ¡!ZYj˜cR‘³Õ‰ã'-~jf6ÑtŒíÿ7;Ýmé‰î÷ÃFE”56755·ÐE"‘ K!å2 ¾ú±\¬ïÏ À3dBÞ —Ë U¤d–UDºZZ[ž°²<¸ÒâÝ1åóî¼]Ç­mœ|ƒCÃî!å?Ò?²òáíF?K$rú´Z9—ÙË‘?VJõýaxš”'W«ÄÈÐs73½¼2Û餵ÍIK;›£?®ÉŸˆ‰þlåpÖÙ; 0($<4,$4ÄÏ3®¤²èa—Ç‰Ä 9üX É„ƒÒÇZðÞ 0Òû Teƒlê­BbÅg{{{;;ûÓ6'v˜Œé €©_±¹àîíàw5$ÀÏ÷²gr^An5+åŠDÃ#¯Âjpñ¼a”Â!î ò1Äïëi¨(+ºSà{þìÙ3v'ö¯]µf6ÆüÝ—žþƒ1™±ú͹Kž>Hþý}C‚|½¼¼’²²‹©±™þƒmÿ𦒠óùè±VĤÕÝ®¼]w×Ùù¢Óù³gÎØþgÓœÍö{?øpûKŒÙ’UŽ::_töð  ô½ìãéé—œ•s‹ Chüå ç€7”B-W(„÷Ñ›ïUÞm¥â|Ü._¾tÎñÜéC_m>wzçö /mŒæÍ\¾êäi++[ÿ?Ï`O7\Vnþ#žV-‰eϼð üÞ€7‰¬¿·£¶ê~C]UØåàˆ /_oï –§m¬¬æ½|fʼKö>pà€µ—ÿ•Ë}\Ý\Ýóîßa©?VKåjõ³€îpèÉ‹Žà€eÌžöÖúÚêšäPB\,€ ò÷ övuúmòKóo`ôÎÒ5{öïÿù瓞þžVVGÏ;ãïÔÜc¶ýZÍSG£'iÑÓF4jpèƒV®|î >Édõs9ÝÕ÷Ê2I‰qñ ‰±a¡±„À ‹Wm^½{ßþ}{öÿfÅßËqÿŽ_ìco= ?ÙíÿLù¹|VCà.PÐôù59)É?ghˆÓXUU™——”–{-ø*..&6díÄW4ë÷mß½wß¡3§9üñóꣶ¤Œ;Õ‹ÿ8<’ ¤„Àz ?÷*Ž”Ãb²xCý”¢ÛU%iHþSñ!A¡ø˜X¼ë¬—çêŽí6íÚ÷óq›#ûwíÙçès›}—ÜÁzñq#å_¥T*uc˜Àø‚åR Ÿî"°‘*¬b1{=,Fg~EUEzBbrrJbDpX !2àäô—çßdýæï¾øbûÆM~Þöõnç‹+®EgÝ}ø¨ý{ýG/† $ÿ*}‰P(–«äRåH‘Ž@€Ôf{ÉmÚÃìŠâÔøÄ¤¤ä„ð ˆ8©C»ß{ùý_˜…ŸÌš1uÖ‚O×~5ëí[|þõƒgB%¥wP¦yn©qäîa­V®Ë?˜ÀøS ø|á°X$½\)@âÏhÎÊ©)NÏÈÄF'§&''`#± ¸ßvíødÊËœ8ÙÈØc6uæ 3S‹uþ–ûΖöŠ$R~aþ5j\ê?è‡\$DP$–*ÔHH%Ü>&“ÙY•y½0ë:‰ˆõò#¤$'&ÆâãC­íünöØn04gڢ×íþcñ`P‚ä_«Ñ<[ã‘^Öª!H&S€úz!é¾`ˆË”iaí0³›ÁdP*Ó¯geq8œ·k Ÿ€÷9ûÓö sÆpˆ¡é”Éæ3g}dsÑîØéôN¡D"SªTªçžóÃ$—!H6Àøƒ¤1’—ͦws âѨÝ]ä{$RffÒß0Ï‹žWýÝ<ƒ ¬Ø¼þýWçßlöÒ/–¼=ÝâcK;Û3EL1’¹BwãøÓi6Ô*µ‰¿ é ÀÆ›F)•I„|Þ£‹ÑAí†=Ôæ ¥µšDJ'b=ݼÝÜÎXŸvòu°:³uþçËßyù óÁú]{6/™öþjë3Û’Ñþ_*UBJÅÓ×ý"Ž\©„ÔÝN@Æ,åò%Ãh­'·´RØü¾Î¦š‡ÍueHþS®º»;;œq:¾çµõï;öÚý0Óü•éGòÿÅöí;w­xkÁ΋–ï·vФ" Àð°B€'1×¢Ïý!‰¿V òã`ä!§£¹¶\[ÛÜÊèí¸_r«æA ‰DºžááíigcýëîwmÝyhëV“1œŒ1újç¶m;ÖXÌ^qÖå[;;×:š9¤”+Ÿšç#•„ÄôAÉe xL:¥öQ]ヲšF2N­Ì/¯*Í$"R±žîŽ–ÇöïÜöýömßoÙ¼ÉÄx,€ÙÂ/¿Ýñýr‹Õg/8ØÚºÔ$9¤ñGgè>­ ÒÅ_¥é½PAò~r]mmc[[kck3•QS˜UxëvIÁubjjRˆ»«óyëcÿZ·qË÷[¿_¿òó1tÿ#3ó¥ëOxw¯Óùu>çí.‡Fa°©uÅ™Ye5÷J‹rˆÄëqÑž.6ÖÛ–.]¾bÃÆµŸÍœ?gŒWNž9É`ʆÓ—.D4ð$è@H:0 zúAºü¯…A÷zCbôù?‹ÂôUfe—·´?*ÉÍLOOÇz¹þǂٓ¦L·˜6ÑhÂXoÅ`Œ¦ÿcÑÔ c’H‰ dxX"ó†ú%J­þs¯ú@ƒæÿ¹W/°F­ñû$òá»ÅÕ­ä{EyÙ¤ëI¸¨ ïcÛ·-6444~½[À1æ O]s>ŠH"%Ëk:{Y}½ýœþA¤áêm¤ÐÍþAý}ÒHùü!‘BÑTýà~õýÊ’›E™i¤ølHãïk¦½^øQ†ßš´újBú!=«äΣGµýýbF£~Ría• ¬þ€^¡å†D|ž@!lkxPu§²¢¼¼´(#5!‘áy`ñÿ“iÓ'­&Æ$“®ëdÝå U£ïþù—!}ú¯ÇÏw0úbŽF*”È a_s5ÒTUÝ­(ÍÆ’ðx¿ÍóÝßO`Ìߟ;ùó° ‘DRfÆõôŒìüu< ôÿŽú„Uê?èz—F.Õjµ¼«±¾¾®¶öaUyª`\B,Îsí¤×¿¡‰‰‘Ù¼ƒ¬RÓò òŠKn=hì‘?_èaµœÿ z…LÔ )z˜â±»ZÐ!àn’—Ghdhð¿?1ÿoªÍM1f¦cž N[÷ÃŽ4bÎÍ[M]½sx#idÃR-Ú+!•„ÕZ Õ…a—=Ü=Üwoš‹™Z¬Yh>o®ÙãykÅa;R‘˜^XMi'w€üÀ›I«”£ó´*ô=yO]}}mUiqX€—‡Û¥SK 1FƆ“Ï%üðÑÇ_N{AÖÿç*ÛØxœíÝgTSÙÚp’€ØûXÆ>Ž  v,3è Žƒ…¨ ö2Š# *‚ DÛ¨×2ŽÎ ‚Ô6TD¡P¤×„’éåtï9ï̼÷½†÷ËÖºû·–¬Åc\ë¿÷óì³÷>FFÿ®ß|ïMþ·Òb£=Ï+*ª‡ˆôHFþÀD®@$o¹Ü‚Ìç9Ïo„ùìÙgcÂè÷•Õ0#“™wìgXo·4þ_Âþo蜷…Ÿ»pþÞ“¤˜è¸ôüZlè¯Àg„V… Š ¹Ü·ìÔ§™O"÷ý`i9wêä%_3LlìlmÇ[êVü¿p:~%%)â·Ë7~û#êaJNýô!8Šò;ðŸ8"|_XÀyõ$.>åå‹8o§y¶³æÎšã`=Â¤ïø¯§ŒmÚü±÷¼šü*óé㈋¹ø¦^®ýTÿ蠇„ï‹óSâcc㞦³Ü–ØÎ˜=gΜùs&ÓŒLûö5Rþ‡´`¾–š—›•õüþÅð›Xì:©’*@ò GÚ‹>”ç¼JŒùãZ|Ò¡ßÙZÛÌš7wžÃȈFëÝ›®òŸ6wñÆ£—þx™ÍÉa§ÿzþâ­Ç¥"¥šZÄ00ù@†+뛚«Òãcïߌ‰»zrݬé3í–:8:îNáO5où æOý®$çæäd'ýrávf³R­Ñ’}?Ž’#@×X€ž…Àq­L®¿}ÍŠ‹‹¸æ¿ÅnÖ’ï\³Ý}lwó?vþ²ΫW»üt­ ''çMtÔóеZ­‚ÀípBõü[øÿE`X\Y’‘œ”té„·÷†ïWoØãëjÙÝüO˜n»d­sͺã%l69pë;”jÝ€’ñ‡àÎiÕ"`þ€ž…ÀÉø£Š†²’œ´ÔİÀÓ'½·­wÝåu`Ý‚îæPÿ¾v»¹¯÷-bgçää6ˆåJ•J¡„aHAH×üOt¥,@AåÕˆÊKKØiOÞp-ðàž»==÷mìöüoddjæèì¾gÓÞo9äüÏW¨ä’±œÀ!2þ›ôÉ죠§ pU•–~È{Á‰‰Šº}õŒßA/¯ýÛ×~ñÈ¿¹ãJ÷ínÛYe\NN^£D!mkWd÷Áð_ÓNÀŽ!˜Á¾+ÂqœŠ§ŒŒ?™ÿÌW â“’Y±¿ß8·Ó|ÞPF·ãßü¼ï6î;ñ˜—ÃÉ+«kµ«q‚>Uÿ !™B‚Ùz†®ükšÈüq^¤&SXÉIÑ7Îîr6£u7ÿ´aæ Ü‚"¢âX©O29™œÂ2¾P®‹?†êv‘¢U¢¨TÐ.WƒÙz†®üã²^S~ÆcKVü­Àm fôífú´ Žn[|#%'%%±ž½NÉ.øÀ§òO-.àÔ#Å„€EÍm ¨ GÀ;\+—Ö³Ÿ¥’ñOJˆ»wþЊ}Ééßlv7a?ì:pàä½è§“Xi)ßpò Îmÿº?8#ŠÁüÆ© BQ< ƒ#:\«”U=OKy÷0úáƒ[çNûÙ‘nD½fÛd½ù·pܰ÷ _ø¿?¼–˜Dyœ•[Ø‚ÿåØÂ$DÓÊç7‰Õ`p¦é¨~“–šÁ¹wãvdÔÍ€€ãiô ]\í¿Ð» hñíªeÌ€ë±îßM"û2ÿn™˜øë±?ŒÊ?¬noâó2 ä ¯3ÿja+õ4å—3á7o‡Ÿ½êϤ÷šµÌq–ùg;š±iß1³–Ú,?Éb%³HÉI‰)œ ]û¯‹¸î'Ž!Z2öº@(×@0 îÃÓˆ²%ïE죨+A'O^¼~å·Ûa‡Ýǚβw>vÂgóO~GùôðØÿǯ3ßT“Ågþ?¥ k DØÜA¸z BZQ\øúIbäý ÃþG|}¼||}<œGw#þŒK6¸¹ý`5ÄjÓªu›ûÜ·ÿPÌëÌÌÌâväÓ}Ÿòÿ‘ÀtO•` ÔŸËo*­ÿð¾¤øå½È{g9èïççwØÏ×ÓÓ½þÀŽÎÜ\Ý\í¿šao¿Ðv‹Ÿ§ÇéÈôLvAe»%Ȫ_·½H7º?D øƒÂÿœ‚1EsÕ‡e¥ï9i—Î<t*àX`ÀQ¿ƒž;‡éÍÿENëÝ\7nZ1{á —Í?‘Ý¿WTúëÌw…†ìþ!•JM]„ãÿzƒýÿ``þçþESuyåÃÛ«a'O :yâÄqïžžëõÞý;ÐÎÑÒÉu£»³Ý‚eî¾Çöï=“ú:3»^­”ªT*¥B¡PªpêcWþq­ \EàÚ5 ê–*]üKËJ³®…‡„†>yòôÉ£^½ªïòß>fKæ;»íÜáâ¸`s—[à¶o=ÉmSK$rE'•ý®’Ÿ@Õ*0ÿ€àNËCÑOùGÚjËß½årósòߥ\?z&8(èLHp —Çæ6õ Æì]\ÝöluþÎ~þÚm›ƒw¹F½xùA¬ÈÈèË•j•Rƒê>S‡@ÔÐü€aà‚ d;óOÀ°¶½¾²¢ˆ“ýœõìÕïW.ž  >æëáÆt𦝠ÏXÎtu[¾pñâ¥?nö>ë}$áÕË—ù- ™¤£C"SAB?·ûà0bÈïÿÍpœºÇÉøã?‰¸¡¢¦Š›õæEâ£äè+Î……!'ÿÐs¡ÁG¼öíp]ÔOß ÀàÉŽk—YÏppúÑÑiG˜oJÆó'OªäQ“P,‘+µ0ò×üw¾wƒ P² Q%¹¢M$l¬m(çde>Kˆ¿{ëú…sçΆ„†…… 9}ÄÇÇÓÕRÿÛ¿L§¯üvöÂî[V­Þwé_lú“”GÅbŸ/’ˆÚ„2µ–*9 ýµ `Tú©–û(SÊÚ…üÚ¢ì¬Ì牉wïÞ¹N–¡¡¡dþ}}÷Zë?}”õÒ¥¶óV®uY·ÎõPø‰S OYé%Í~“P(lm•Hðß CºòèÇH‡°¥<7‹™ñûß~½xŽDNþgÏž9uÌ÷“þË?h½ÇL=ÌjÙjæÖ?ï¾û(69%íUicss‹°­ƒ"ÑÂZ%ô„® 'd§äÈÛ„õܬìôˆ»wnÞ¸véü¹s]C@°ÿáݹtâ ˱VŽNŽÿy/æiÆË×o²óß—Õ ZÛ[Ûź@®‚Á»¿ 'ÀQêú=£Îýã(¢¶”çgg½xxçÖÕ«7/_?×5óž¯ÿÕ¿FFÇ í?~î²}·#£c_—æs¸*kyÍ¢öÖÖ6‰¤]ª”«á=oÀp0Dwõ€É;Êór³³^&<¸uíÚåódþÃB‚ƒý½ûøÌéÎüÏèÕ»ÿØÙ+ýoÿy=ƒŒNY=ß(h'ó/VÈ¥2™#À_04‚@!H ‘ñ‡ ˜Ú•‡!Mo9ùdþ3ÒR#"î^=JÆ?ôÈînNΫÖvï°ÝxäL‡Å«¶ì8êuèYN›]YW[Ï´’Ú•J¹LŽtÞdèoÿÅ ƒaR©ÖvæÿãG­¨U.(/))dg½Ézsÿ~Ô½«áaaaÁ»œ–c¿hécºû>æ,Z¼Ä‘¹ãü+6›[YW×ÐØ"jkm)”J¥¶³× u©d2…ŠºBˆâš>¯¦²”›ËÎÎÉŽºyýòÙ€½+ì¿Yéd7s@7ãodÔwì׿6‹·žHxÃÎÍ-ªæ565·ˆÈù_$S*5]­È? µéÕr™L®Ô (‚᯦ººª²¢„[˜Çf¿ºy9"6&òæq5Kì–¬Ù¹zÂàî,ÿu¢™˜öýjuPÄˬ̂âòúÆæ–Ú¤ ¥Z—¼ö ‡zŽõ¿R¡„0Ãq]s¯¶¢ô—[ÈÉL ¿sÃ{óÊo/qÙºØtøÐnçŸDÿÚçjBæ«Ô7ï+xü¦®üKdä§¡à¾O08‚@´jF¥F©9M“P&oT¿/â濎¼r2àìï11ç÷múñ»E³9Î:ݺw÷Œû$Ù?õ8ñxNymMm}cWþ¥r…FAí‡c°Z­Q«aŒ$å‰%J¥¼µú]Q~vZˆßOÛ„?x´gëzÇæ¶öËl¦ÌÛ€F3ië°ÈaÑÿ÷oývã~NyUUM=Yuó¿L¡@@úÀðȀ̿F£V‘myKCc³L¥R¶×–çqS¶l9pûnÀî-kN›1Ë‘él³`†±þü›ôaX/_¾ü»ï\ƒþqcÛŽCäVTU×ÔÖV× Ú[[;¤R¹L ƒÍ¿`hŽ£Z*þ I»XØÐÐÐBvç*y{3ŸÇ«ËÞ¾m‡×Ï;wì¶ûÊÒÒÖ‰élg7s€þ Ï ^ 9,þÞÙóî•õëÖ‡r«ªªªÉ I"&;1ÙhÀÞ?08Ç1ˆÊ[ñ«âúƆÙœ«TÍ<>¯®ðæö={÷{Ú»[’íüà 6óíì ÔŸF¿#'YÍrø~åæp_&sÛ•§yedþk›% ¹HÔ.‘ÉåZÝôš0$ê9Lå_Xœ–^RWõAP+«”RQS}é3Ý{÷úø8lœjlLï7Ñrú\ûEÛwcpĤñ-f/qvYãáÎ\ï{3"¾ ¢º^D–J¹L&•ÊäJC4Zp ‹ ¨ü«ªŸ>c±že¥?ËÈ(mS€¸æqFü>OO¯€•S›ÐŒLžj½Ànñá…“zéoF6äk‡u?{ìßÌ\w61™ý¡²ªF@Å¿C%—R€B!“*©‹¿@ †„@Z¼$.‘•”œ’ÌJãT‹ä*•J-m¨Íð½êµ{þÝÈø‹IãgÙÙ9ìÙ¸¨ÿçßÿI¢™öï?lò¢í~~>»˜ÌìâʪªŠ·•2¹´µED柬$b‰ !»p †BeÝ›—‰¬Ô,ö›·5|¡ŒŒ¿VÆ+ˉ}´oæ0jÉŸ>`ø ‰ æÌÞã1uÐ@=w€Ðh4úIfv›<ûîf27\- ó_üòu•¨U àSõ¿T"‘HÔE€0x†Dà°VÓÑT•šú¬¼¦¼¾‘/ªT2A·Ë-Íß5s¨îÌ£Wï‘ÖÓgìw?jøç;ƒA7=ÅÌzñÊ­w2]˜eåœÔäÜf¡¨µE"¥Ò/‘*µÆÀN 0‚ÀQê½\ŒËæòŽ€Qg€1 Ñj!UKm 3þªU*…œNºOøöõÌÙƒº’ÍJŸôe/:­3áúÐL†}en6ƒùã¢_nø=+Èù_­Ñj5dþ%J”zå(È?AüC H%¨áË ¹ŠÚ›ª¥ ¹N.Ûãι­Nó¿øW¤h4ƒFëVþŒû÷<ÞÌvÞöÜ<îtù±X"“hÉü«ädþeÚÎÑÝÂIæ… ¸^$“‘±¤Žæàª–œœŒŒŒ‡‰16ãfNûÛÅ_´>ú÷õ1bä„Q£œmõí–³gx‡¾hjiSh©RC&!çêÈ1˜þÀ€¨œ  † µ¤™z0¯&çdLÝÆ¯`?KKKc=v²±´µñ—d1v̈þúòo:|Ü$s³ ƒè_޶²Ûp0ìyu³D£Ë¿T—ìýÃêœ1ê&P\®‘É!â#ÔÖÔÄ«-Hc¥¤$…oµ›>nØ ¿¾õoôd3ó‰ƒþcðuè}š4ÅÊjâ0£‰³mgï ðóºõ^$Si©]?dþ¥Ô›ÀAþÀp¡2H`(¢Û‡È©î_ü¾„Ço¨Ì{ùŒõèÔî£{ÿ}ÇÿÀq“Zêéú™4iŠ…õ´ICésÖY›ïòóò}Ôª&'Z¡ Û©Tª€@ùD  ¢{SK€‚è.æ½-¨¬çójÞ½ˆ::·Ïß’M£ >ÚlÄÈ}“‘S-Í,fØXïC7w?yÃA¯Ã,™V£’7òjÚ:¤’V¡H†€é ˆÀ µ¶ó.>ÝŒ ä/¸¤ºª¡¦†Ï¯}ýàöÞFÓ?%Ÿúil<|àS=ëÿý'ZZLfcc9Žad²Ør骟zÀoµ ¹œ¾@&m©¯mGÀ%@`P˜F­íŒ!"0“ùÇa¹H*«)åñêØQî9±ïËèÝ×”Ngèv÷2í×»— ã>ü'ŒðFÜxœíT”W¾ÀA#`/‰1k‰É&ƶj$ŒŠ"Q“¬1k4* Š]•^E°!†(v…Ðgh"šÂ }€™a€é½Á Ó{õÝoÐ}qw£¾sÞƒwNîoäÌ0£GøÎùý˽÷»×Éé÷ Ÿ2cöœ¹Ÿ»Ï>ÊÉé=_ÿC¡!ÁÉZ>­‘J¦Hze<ºHgµ?‡@ ‡Í Ó™lvxm5›mÏŸ›Ô ¹ZN#±¹ì¶¬¬ŒkÉÛþ:þ£O' wqâìììâÀÕeÈ §×1ò£9óÝÁcÞ‡NNÂÃbc/Ý©êâ \6•Ââv 9\…Õ6п>ò'Å¡üs«^§3Zí}¼ ¾ôJ¥Á.#vWvfæõ”¨¿/]¼xþ‡Ãô︸¹¸¹º¸‚¯Á¯õÈÄ9îîîógÏùßiá¾ÈØØÄÔûDÏg³˜L6_Ü-ä)ö@ ^lV‹Õf}nùßh{ úÐÿm’Ö½ Ÿ›“sîjüÁu‹{,ül´«°¨\]Þy­ÿïΘ·Àcñ’E³ÜÀ7ㆄ„]¸÷„*àrÿ,›ÃŠÅÊ—éßû¤?±[m}8êÿß}`³Ùm¦‡Îãš*ˆ ­99)¾ËæÚ@„×ûï2aÂÇ‹§Ošò¾³“Ó4ŸŸ£Î\¸•ý¸ƒËåòXˆÿl&O,–ê_ü¶ß‡òý…þv³^§·þî$5j•BÙ݆õeÇÎGoYõ%¨á>÷“)s§Ž5€‹ë§Á.쿳‹Ëè)c‡ yÇyÄ„uwýZ˜—™WAâpy\:•Îb³QwÒüܪÕ?Ç€] äÏGŸÿ“Í RëL¿·Ïn5hÔj¥TÈhk!¶Ú0nœßî³Âc±‡Ç"¥^+V­˜?óÓñCAàêúšÀÙÙeÌ8W§Aï._s èBV1*ïaøÏgP@`ÑÙÂîn™Þl6*TP¤·ÕjµÉe’n‰Êüû¬:¹T&—òº-͘†Ê§O‹Kò#~üîkooàÿ*ﵫW{­Zé1ã]ב†» yM à<Äí§Ac¿õÜ{6· /çQC©ÿéd2•Π1xâî±Po’+ÍP¤¿x!›Ýb5iÅ"¡P¤0#ßYì}QAÝ+â‹z”¦ÚúúÇUOÊÊË+ò.øiË·k¾Zéá¹t•÷W«¿^ëãµpÖÌyŸM™üîÌûn/_Ÿ¾~Qêé“â,ŒèÏ£QÈF¡p»»9´^½\i€Ó€H?a³Ú‘êßn5ëU=B€Xi²=·™ô›^k±™d|“+äu`+Ÿ={\ŽP–qýtÀö×óÕÒ%KWzåóõÚÕÞ«<—~¹ØÝ}îÔŸtùdÞÄCCçmß½!îac]M¾ñŸÏg íZ'®,îæR%j¹Bo‚él’ímCo7HþÈ0œÞl3ë4ZH¨ÐÈD,:%tÕ”÷Qöè!*ëVØŽ­?ü}½Ï’U«¼W¯]»ÖÇ{ÕÊ¥K<<–._6æß³há¼±çwJŒÜy«¦‡U¿ÃÓˆ#5–—„Ý\†B.—ë_€„@ ÿ‡Ø¬6›Ål1)@íüï‘ô*4zL.3X‡A§3X|!½¾²¢ª¢¢üqiz:÷NøöŸ·nûqÓ*Ö¬Y³vׂٳ<–{zÎü·Y€Éó¿üî˜ÏÄÿñ¾“’#îV7ãZÉ ûç0Ù\¥¼¾äiùƒÇDq7Ÿ üW Ф¿°Y­f³Y²¿ÏæðD=b‘DÂç y ¶@²?ÉÏíµ˜úšêòûèØ_²îÆúoÝþóO›¿ßøÕªžÞk|V¯ö^2}̘ÅË<==ǾZ8¿3aî²N®Þv·étbr ß‚ki§s¸¬.2ƒÕÙHÈλ_ôˆÈç1(=r…ÖjãHÿaþë¥B>ŸE£1¸<ΠP¨t†@Àþƒ$Íe;I$¾éYaΙ„Û‰þ?mݶí§løÆÛkùJoŸÕ>k=gNp{oárÀ ×Wüwø—9 VîXñ—QNNƒ?:t<º†NÅãpD*“Åb0è:z??/ó·õMU%D…Æ4ÐWùsa3[úŸ j}N£¼€ Ò>x‹É¤vuu:ho+É¿y:aßw›·mß¾ÃwëÖ¯Wz®ö¯ßòí¬÷?™µhéBù3Ü^IÿÌœã¾À}þì)ÑoGù®ø&•ÂëhÁµv2ú Q®Ý¸›–ž*ÈB5Éõ–¾ÈŸ »Õb±˜uПN£þS–ôùù…ý€ŽGÙw®%Ûºùgß;wüì»{ƒ÷¦ïرÇoÛ––/œ¿`Âèaÿ2þ7nÚ'ó¾˜?÷£ÎŽ Ÿ…Ã×=c28¾‹Î`0AÀé"dÝHMÍo 1[°,…6ÿHâðß ñÀFjŸÿTðLg#Ý?Üg>‰ÔÑÙÙXpûúµKÇ6oÚ¶ÓŸïŽ]G÷ùoóßëïà·aåò%îó;ÿËèßàa>ýbÑÂI}ó‚. ü¶ïÃ0˜í-8<™ÉᲤú–º‚+I©h ‰Û-’iáàү؀ÿ&M¯T*á3©*ƒÍU9T°ŸÖÕÙÑŽomijÂã›î§Ý¸yçRðÏßmÙsìðû÷Ÿ <tüÄÉ£Û}¼<—-üb’þ]‡ýn%°³ËçË—-šÒ·4pð¤M[ƒîa m-¸¶N:WÀ#?ùå×”‹ñq7îf=#‹•:ƒÁ8Зù3áHÿFµTÔ-óY4O$‰Øt`?ƒÉ w‘ÚÛÛšêêjë*‹ Òn^OÏø5òÐn¿ÀÐàS§B‚ÃÂÂBÁ#,pëOÏe_~>rÐàÁc†½R,ZµÊcÁÇŽ0hìÚõAq¿äbp8\k'—Ç"Ü>}6&.þrÊ8rNo„ý?ÒØî_/"«qD"O$õHx6‡Ã¡ßÒPW[‹yVY\øäÎõ[™÷’ÂŽ=r",<<,""2vbûŸU+V,wÿdú§F¼²pÜ|/Ï…ßü±ÃÿñË7ì ½ü¸©¹Gâp˜„kÑç2/ÇŸ¹˜|µß)1èÍöçpúé7ÿM*!¹_ ŠÄbqO7/tÓi$®ƒ­­ÃVÞO{PyçêoIÑ§ŽƒŠÿTb>ááááǶ­[ýÕ ¯å‹~6qÌ«÷Žû`ÎŒO—¬˜âèÿçzÿ}ÎЛ帖Ö.6›^}:*á·ëgOŸKNkâqµ&ÅþÎÿC ýE_ù¯ ‘­8¸<>(þÅbOÐ#z)¤¦z,𿾮ìN":ýzrzľ < ²xDlT8‚v®_³Æ{å¢y3FüûN€£GŽx±*ÐÍkíÖ ¢‹°x"¾‹ÅlK‹ŽŽ¿x!!!ù±X+Óh{ÍÏ-Z¸þé'€ÿf“A%•öð9Èf<<¡PÀçñEr©P íÅ?Ðø)>|;&!î|È^ß]‡î?™{6Á{¿õZ¸`ú‡ïÿ× €W2cþîÖŸ„m"u´(ÄâsQ1q±qçÎ'¥Öt÷ Y²Ú®WAÿ!þøo4heR©´["W(àñxB©J)à‰¨¸ÆZ,[Sƒy|-.äBЉ“ûý|wîð;p!=ñì¹sç.¥ŸõÿQ¿M3G ú}“nî›~üöüýІ¶V\SSYBttlBBLâù”ßÊp¸:,¶¾Kg0Âúé/l“Á¨Wɤ*ƒVÄf±ù ÿ ¥Z­ŠGcPë€ÿ˜g•9Á'NžŠ<µËw÷î»üüüöŸ+¾}UTŸyôø‘=;V})ù ?Þ ø½—®Xr÷véÓ'5 •©ñѧÏÅÇ$^¼.e[×Âj`þ‡@ú ;r Õ¨î•ªŒr.‹Åw÷( :œÛÕEnin¨«Å<­(/8{òdø¡ c{wìß»{×.ÿƒ9W2ï¤ÿaÓºe_~1ñ¥äC'ü#ÿ]—nœàõõæ „9ë19‘1!ç/ŸKHLJÿ U…èß*Ô Dp ÒÏX5rI+`ózzD^ÓËå8Öýãq¸zàvphDð¡£A'ÂB÷ùîÚŸs/årffAaaÎõ^Þ_Lž3ûÕ¿Óà÷½§M^ºrýθ”»O˯†h$î—ÜBÔÛlФ¿éóß,eÑèLzW'¡±¾¡¡¾­Ð€Á`±5å ~K¾põzziÕÓªš&BGWELyò ¨½çÄwË×Ìêü{ý!ÀNƒGOüÜ㇟}}ýÅ&ž‰º˜|éfnAaaáêêº.¥þC ýŽcÀ¤–°i4&•ÐÒ„kmÆÐX[ƒ©ÆÔbŸe^ŽM¹•[ÓÜÚ†'PØl:™ÖŒ¤ÿœ€øào¾YêXüãüÿݦ-òX²e{€ÿþ½ŸŒŒ?Ÿ”tév^~~~A‘-–jáé?HÿcGÐÊzù ½½©±ßÞDhk¨¯ÅbªžÔ´´5”fÝHLÍ.¬jĵáIL€Mé¬ú埽™¼wóÆy£‡ {s÷ÿ—Ï,Þ´;èxбcÇC¢¢£c/$%§d¡Ð xJW™Ìf³Å+¤ßANûRÊDL­½±¡±SÛLln¨ÃbÊŸÔ¶áåeßÎ(}XZÛÒ†ïdÿétLqQq%æRR^ÂÖ7yLÿëÛôÿS>ØsôøÉS'O…FDFEÇœ¹”tõ^ …~Tñ¨U­1ý-VX@ ý ðߢ” ÿ¤f<½ [S[­­ÃÔT7¶áñmµÅèⲪ§ À#þóy"Qõã‡e½¢´‹ò7®_»tê[ø?ô½÷F¯Ùt*$$$<:6!ñbRrêÍl4 ]†yÚ,T¨õ°€@ú¤0õÿÉ-m £ ƒÁT×`j0­"ß‚--­ª®®ú·S¹/¨ªä*ìÔK¸Ìè0?÷‰oößið¸Asçn>¾c_hTHÿ .fäf¢Ðè²vG,S¨´F¤°ÀE@H?c·Ûlfƒ€ÞÙIþ“k0Xð¨Á4µ´âm¸ÚšêêP Ù)° Om'¶4×£“}ëõùÛÌ:=óo3Voü)04ÿ±§’.g£ò@ù¥rùÝ ¥J¥Ô‘ I ÿH?c7XL GDÒ] ¦€©ihj"‘A t[kê[ñ„ŽH(p©$"H p¯†mñôøl("¸ë¦ Ÿ6nèò ßŽŠŽÄ']ÍÌEåæ¡J*‰¼@¡T; þŦRËIÍõƒÅÄc±µÈ½ÿ5Ø… :€v&ƒÞò?…ß-!þ#ò‰Äʨ­¼–/ÿ|<â÷·7,tøo\ ü޳ÓX÷ÍÇ#‘Ù¿è¸ä»iy@ÔœTÿj½F©ÔY¡þHÿc²é{¸4*(ÿù’¶ÚÚf*£W‹%dNÐNîêu­W¥VI….ƒ\Wɰϭ[0{Ú¤)3úú—×îÿ˜0zÒçk÷†F†…EGÅœ¿~/#´ÿ(T)Q‚”ÿZµB­3¡ÿÈ`³TBà¿ —Ѐïb2)„æ"_&ëáPHÄv “ÑA¤H4:J"YOÐõ­Ù[g¼?nÌè‘}ç~¾Açñ³g,Ûî$,2$$&&áÚ½´œ<‡ÿ8‰Rй\o2› ÿÈ€`·õ2I/‰Àç0™ävb;Y(“õv ˜T ‹ÏePé­^¯Sö˜ÕY™¨ÊÂ[§æ6l¨›ëÛÜ8ø³9 ¼ö Ž»xûNZfF*?_'Tÿå \ r6C¤WrxÚn“Dìdðzär™L.íáq¸\.¯[©ÓëõJ¹öÒ¥ë9…·s¯,îæ2dð;oµÈ ùsWø‹‰ŽŽŽ=-õö­[yèû%…÷ ½ˆÿ œúƒ@­)6ê F£šÃ";˜Ha.“k´Z)<‘C]/þêúå+iiYǧ»º÷ßb0ð·V.Zòc@Ø™øÓgNG¾párfN^Á“òÒ§tÒÿ+ZÓ@ÿþÈŸ«”!2ZífC‹ÛA$4:½V©ÒêtÚn²5(¢¿NXSZöèö½Œ{gブüõo“‘¾ÿMCÆ}¿yãÖÀ¸ØˆÈظ„ /ßËË)(.*j ‹ ûý¿È¢`1E&³QÛMo'™µ^¯U©ÿ­No@ô×éøE™©w’ã#ÃOùŒxß2fÓîoöž =œz;#+;/·°(¿²‹Ë— öËå xþ2€Øm£ÉlÒrÉíDŽÚ€¯7› º—@§U)%]õ53³rQ×OÿÃk_TðŽ7Ÿþã¨ÿ×|ë¾vçÁAûüÄܾ“‡F¡P…ùõtGŒä¥\·„@›Åd2,+5¿ÞlÞ÷…Z)çµ6bÊddæ¡Ñ·bƒï¦x¿ÿVà½w?úzÛþý޹žþ9*¿ ]ÑÁáð¡Ä¨QÈàì2pØÌ@³QÈ´êF=’ÿõzƒÙlD $hÕÊnrs#¶¢$33¯ (ëJb|ò›¡^oÙÌùnëÏ»OžO¹þ[N ÎÏG£‹°€Ë—)dË@_äÏ‹#û[lfÓæ8@¯3šAD°˜‘8 ×*e HS›+«ž=ÊÌDåæd¦]9›põÒÆ·¹ØyÜç©_oøjý‘”{7¯#KÿÐÈ꺴•Ãã‚À ùÐdÀ@N2ÛŸ[…L¤·[‘ÛñíV³ÕbÐLF•´G"Ò¬¶§µO³3ó²²23oœ?“|qÓ˜·ñ¼«³ÛÌ™sÿ#1ífj¶ÃTii!º šœ@Îå ÅRx2pØ,V ¾M#sœÄ×7g·ZmFð_)•ôHtn/§¡ñYNVvfvVÆsg.D¬÷6ÅÿÁNNC‡MãuònzšÃÿ‚GuõU ¶ñÅâ‰T¡…ãÈb·¿úìxi³‚ºÀhÐ+{{¥=Ýân)§µ®2dÿ¬Œ´Ô„ø³»&¾Õúƒ>šë¾ãjN^Ð?ÿ>¶…Ø‚)}PUßÎ׌XýC ÿ°Ùþ lP˜ :• IO¯”ÝXQ•uïú¯)çbãO÷öú;9}¶p–w ²í' èQU ‘€©¨¬¨¦è µ¦dà±›Í/6âsèïÀbÐ*z{er…BÎÃ>®ËI˸s"4"òL¤÷ÿ@çAã&N÷½››‡.@ç•ÔÚ xB ¡[§Ó©p÷dÀ±[óö¾_b5ªå2™ åR„èË7n]>zàdT\çÛë?ÈmÔ{ÌÝýKZ*F>¨Á“HL™F£Õ鵊 KG!Æþ f{ßÙ ÿ¬tÈmz ÿËz¥üÇI‰WRBö=ºÅý­õ>möÇ“—î‹»t…ÊŠJªÿ,™V£Ñéuj…Ì7æÃj{Y˜`G fà¿í¿ÇA@Tÿ@‰˜Ï(Ml`Ğţß"ïŽÜ"ôÁäO¦,ÚŸxá:Ø..))m"‘Èb­F¥Öj´< ™ª±?·êTº¾`×à /;€>•€ tè …„Ç&ãë°÷¯E‡††}¿ò«…ïý±÷n£]ÇM5òýá#G!› u;Á}ßé˜3WQÀÿûJJÔIôn¥¢§GªQȉù¹M'W[&Ĭ×êà€ÒÿØÍŽ¥€/^›uz³M£7j”½B& SSù$÷LHðɃë>þtéâI¸ýÏɳæy}½h긑#GŽ€³Óð÷>\w48á2ÿWVZòàðŸD«”=žä2C¨Ôk•j½Ù¨Óé4Z˜ÿ!Y h²öu6³B®PkFu€Kn¬,+M¿têÔ‘íkÿ:ÍsþØ?¼ûÿƒYK¿Ùæë3uÔ¨‘£F:öwñ‘O@øù¹h4úÈÿ ÀZJ-g1™LT¶T­VkuZF£5Àô f#â¿Ýî0Ъîí•éLzJl®D¥$\ 9°sçúUS'ÍûÈåçÿ Üæ¼/xœíÝgTSÙÚpìúÚÛUǧX@Q,ˆX ÒƒFÄ‚ PQéÐ; ¤BQQUCP& HBH‡Ä÷pʽ3™¹ŸnXköo-AýrÖ9ký÷~v9û((üjÑ&ÕVlµ6¬Y´pñ¿¾žý׬yß:zF&“I”œ´Ü‚g/›š:##Œ÷íí­--­ýœÑI\ÁøgþǠ؉F8‘H<.I>K¥ÂaG( ´ÕÑgÆ^³¼nee~ì¸æ¾Õó–Ο¦ ÃÊïö[Ø]°ÔÚ½}ñ’5;÷®_Q1Ñh<*»¼±³ãíÛÖÈðÇžîî×­m­-­½¬8ý|¾Äþ÷ƥ㣬H( "‰T*•ŒòDb± §2#ÆÓ-öÖñ£‡Ž¨ïÚ½wÃYáWP˜ñÕ:][{„î‰ÝËVlÖÖ0T[2]AaîÎ3·¼½}||‘Á1¹CìÁ¾ž~6³÷Cχ/Þ¶·¼iéìýÄâp¸ããRy?øG’й.ŸÇåòø‚1¨û—J¡B@,澎qÖ•Óh•5•ãü(oÙ¼å ÙùÿÖÌÆúÔ©³Ö¾Þa~åšÃûîÝ»î`uReÏÕKÖ¾È(ÿ?—Ñ`U•Uô*¨÷¯ª¦7µu 0¡þÌþ€œŒÁùçóP¯õÿR!w¤½¾¦¢ŒVõª™žè笨¸EQi ôcãŠY2Ò?m“¦ñ©S¦–ç­46ì»v×ñÆ-wOoO77—k‡÷:ܺŽ…êÿRÚåµÿ zcëû &ƒÁ½?ȉD$ò¹£\á¼ý‡_ûŽ]_Qö¤øq嫦jŠŸÛ¹…¥6oY¿DVü¦Ÿ0Ð769¡¥g¬¥rø®Çû‹n~žÞ¾>®vgïxÄ%„à±ä¼çPî'ójèôÖ>”Éâ€îäE"‘ˆ¸—¯ÿ³ó>ÖÐÒP±Ø§ e”X÷›ÖCÿvóšù3dÅÆLmMµ=»·ÿ¸ý ö}¯ûκ…„ûûúùùzyù…FaÐñ©©yžÒ* ñ%\ûWÐk^ÒÛ>ñ%Ÿ…,S ï'ÿL_z^‰`”as¤‚×mÕÏÂ=<ü“R‰‰Ñ^¦ßm‚"¾rå\Y[§Íœ1ó›µËþµnýz%cƶnÞîŽ~±±á~þÈptRjfaIYIþêêšêòŠÚ¶†ú–ºú—5 ¶þ€›lÊ+*+ëß‹~wmäl¸»óí«ªê—ÏÒ©>mÎZ˜ž²½jo{úø†¥ë”UwïV];[Fø§MŸ¥vÁÕÇÇýÎM„­_"›„†Äù!ÃBQh463¿ ¸øiñãç“ë•µÍ ü0uH¹Ã½•Õ•Ô”ÔˆH¯;––ÖÖÇéj@ÿú‡Í›¾],cþÆÒÙ¹#ï;9Þ»fy5•€Åá°htT``XTt,†ˆ!æåç—•>Ì+™Üô‚^×.kþ0uðX}MU/ëê_f`ã"/?8Ö\ï„Îá#ºà.~©ªò¦oüyþç*-¹é… ötóò÷ Œs €Dt|HX O ’ˆäô‚üÂgeÅ9Ÿ=y^VM§×uŽŒI@ SÄØhw}}Cí‹Ú|BR´«÷ }£‡5ÔjÂ_¨òãÒÙ2é^²tp òóˆ‹CEy£pXjÐ8"‰D$¥dçCÀ“œŒÜŸ‹*ß¼zI§¿âŽ7þ`Š€ºb)ï]C]Yv^ÍÏ)ø˜°/'ÝÆÇÔ5õLÔøÿ7g†¬õÿÿÛub÷‰Ÿì݃ÁÑ(HBÁ''¡“°É093?B)ÎMOË{úâÝPßÛºÆv¸ú»þ` à1éçÑwMuOÈ”Â4<pí¼•âŒÞ¾:»eÄþ·ñÿâ• ¾=‰¸ä‰ …4* ƒÇ'¢“pÉ8 —LÎÉÏKÅçe¤QÒ¿es9Œž!‘D2¦@þ$ÃïÚ{?1zZ›ëžÈ©xLR"Ú×Ññ§s¶ê{·Ë>ôç7Ó¾9d`éê烌A£Ñ(T|\"ƒF¡18LÔ2sr)¸´4J ¹ð “ÇãŽÂg<°ïäNÂënj~ÝÒÔ𪞖E$âÑqÑaÁ¾7~:s|ÿ¾m+æAŸ%óÜ_Øôå{ë#œnߌ‡þâcP‰p;€NÂ$ap‰œN‘)idRNy‹Ë›Ä€þ¦€îƆúúººú¦WÉDbTˆÏƒ{n·¯ž7¢¥olûÓõ xü“€J€òJ„óŸŒKL$âp)iérZNõ'.O àñùÿÀTð¡åuc”ÿæ7´t")"ðÎ »ó?Ù˜é8xHsß^Õ™~¨uX¯zø¨é¹ Ρ ¨¸ˆÐpè×dþ1IX<G àpéé™YRjù§Q¾dL(‹ÇA÷SÀX_GûÛ&¨¨«­Ì&1¡ÎW¬–G øØ·oÿZÙ/ÿL˜ñõZ½–ö÷Ãàþ?> åj qxx@-ÌÁár¨ÙùdJYW?oò¢à˜Æ™­­mo›êëjëjŠð‰±þ·ízúC탚û÷íUû‹—ÿ&L[ü/}[»«Nþ‘Ñqq±ÁH¨ˆO¢R± 1»‡KÎÊÎ,ÊO§äÒ:&ß÷ü€Ü±;ZÞ¼m{ÝØT_SKäbs󦑶¡¯sø€Æþ½jëüM 0SßBY[×à’Ë}¿ð  ÿðˆèظ˜8B*69ói:WRý¢ôiIÑÂ']¢‰ÜKÁ™Ÿ æã}{Û›š²gÏjëJ}ôÍ­õ´´´ŒÌ u´î>°GUIAæÙ¿úö˜¡–æa}Û›Îá!Þ¾A~î±±QñÙE)XJÉ“ÔçoZZ:ßÖV½þÐÇ€~¦©t𣧣­^œûèeMÆOçµ?nlŠ011:ªºvî,…¿¿Â¬EÛUöêÕ;}ñ.2ØÇÝÕã6.,$2³üqna)­®¹­­£o°¯opx˜Å“÷-ð…”×Ù3ÔÙÖöº¢(73;#qÅ¡sÒÐÔÌÜÔPOO{£¬mÿÿaÎ÷[~غ_Saãà|û¾›«g€Ÿ_ñYUEiiYeksKSƒ c‚ó~`Ê÷|ìiok«*ÌJÁ BÎ;ùX¨íÜ´iãFM­mÿUúf,\<±²¦¦®Ñ¹›Îw¹{¸{R«ªª*Ëhôöw;?1Ypü¹`ÜS‡”Íèliy]LHLˆ‰BÞ¾ãé~qpǺµ çηnßñ…ÓgN›?kößÍN´[ïÓÐ1¶w¹ïà’K¯{QY^ÕüÉfòG&ã/ïûàw„ÌÎWô²Ì¤xT|XhxÒãÖYåõÊê;¿Y<{ÅQ³Ôw¯Øü£ÒúE¿;þcþŸONÛ ¼QEëüu—î±ñBBh\ac{KsKÛû¾Ñ|Æ0Š˜2à©øqNOCuqNV:1!Ÿ–áç~bõ*m«ÓÇU·²9¯ãâ.--k3õõsÍùªå‹þô0 EKV(kßpt¾ëŠ ‰JÎÉÊ*mïëýÈú8<2&•ŠÅðo˜2¤{ðEÃoê_–—>ÎÀh•E1Û-Ô>sÆÜÂæªãí{÷Œíl=|oê¬ø%þsþµöë?? pÖ*ŃvN·¡á¿W­®¶}ph o€Áxÿ‘_I ý€©C ïÁ“йZ[kŸäæ<¦—ĺ™ݶö¨¥ù™ë.·\|¼¼ÂÃÃ"CLW}‰ÿ¬«Vl™÷Çêþ³d‹†‘Íw×®®!^¾ýÄdõ÷}ì}ÿ'K?KÆÁ¦˜:$P0>Âæô5>+ÈÉÉÍÉÉÉŒuÔ761C˜Z]sq¾íäí’“m°t2çÓ­X8ãÈÒ?Ä> hÞF½“f·]]]C‘˜Ò×í‡'Öüý|)œ¨‡þÀT ÉÇ?‹8,Ö§¶²Â¼¸ÈÎ 46Ñ3>eqÙÉÉÙ5Ðß7•‡KÃ-™ˆù´é ¡_ÊËþsA`b…`¡Ãµk7\Ýü òó–·ýùgqø,ø´é8h`ŠJ&?ÂÁc1‡z_æå>,‚Kä镆.ž¾¡þÞXTJFv^NFÚñ?òÿ¾üWøÑÄꬋ«[<‰@¡·Õ•¿zÿqhrÛû—üƒ)@˜B F€ 5ߌÎǹÙDg ëÛá‘‘‘áþ>ÁøÄ´Ì¬ÜLRÈž¿Ìÿ„%ÛŽš½áêê•D¡¤?¥=}B«®íf³¹\h¤!•ŒñÀÁ_0UÀ%ù(ÔC39£#=Ï©¤C]·àˆ¨¨¨ð€ $B2%33›J Ý÷÷{€f¬ÚyàØMW\Zµ°¨èù‹—µ]Ã#»ÁäÁ‡~Bùerå}ÏL‚ål¸Dá 6=BÅÇh´v „òÄ“ÓS©™™TRø‘¹ÿé3¯_û£‰k@:…B-xø°´–Þ40Âår½ýƒL6 Ê¿ÅäËûžø˜Ë†7çj)Ë‹J%Zî>¢{ú^PXDlbtžš“••I¥"®*þ]0}ö‚Å –kx!Q¤”¬‚¼GeUÕM .Çnéèìc 1¹âqñè0l€)D"„7ç¶U#B(êßï×7s Ã¥’Ó²ór¡ø§£}®hþaÑïßÍœ3oþªíêz¾a!1ø”̼§‹Š+{¸íTUݧ¡"û{€KÛž³µsððLHN€?üM$ˆÐO9ŸV^ßÜÜ5‘6èþ`ja1†:kJKò©)áÞçvª+o»Ž¡’qxBZFz* é{åÈŽª'ôdï^}àÈa›[ÈàHl¸O†@ÀÆ£“á&€œ]úêÿkßt0܉}Ç¿’‚íÀ ?ðd’D3ÙJ$gdR©Ù9™éØÐ7S#SS#SSS³Sþâ iK7(©¨[Ÿw¾èpÖj—C ‡§¯o4%#­ø!¹²ìùã‡/;ºzY_Þþ“JÇ…\Î(O ü€|ID-éIL|\Øy­„tj&$+';#)éŠ06>eŠ8efbd|h™ìø+(L_³eù’Nš›"N[qp¾JÈ(ÈHÍòŸR^ú¼®¼¶«—ýËh_"‘ˆ¸¨‚A OðÁ\£tb||lTT”§}tJZ• 7Pþƒî™!ÌÌN™ÃLÔüÕç@ç|µèËß~09m}ÙÑ1¢ðÙ“lbnq15·ª¬¬ot˜)üõšðaà‚ÑQžP@ŽÆø6¯Ÿž“€ÅH)©¸ ¦¢C‘žö–f§,,Mm¥u<øÿO³<}éÖ%ô’’‡©yOh­õ´f¦xlü·R> TÄ…ÊÐÿ€<|x×ÝßEÏOˆ‰G¡1~‡’F!áB‚¼N›[Øß8¶ëºâ–ïWþWñŸuÚx•Ñ-{rIÉ£ÌÜ’ÚŽŽ–ŠWý|Éï¾Õÿã"Ñÿ€üHÝ]-Ï2Ș„D‡Å`ñÉÉ‘Œ‹‰ŒöuttwÕÕ=¡ºíÇÿ͇€¦i˜Y\s¾zŸTRòôÉ3ZE[G'ΔHÿý `RñDþÅã ¹²{»:[iÔd4‹Çb0IXB2j IÑq¨H//ÿÀ;׬O¨,ø}Êÿî¯ xœíy\ÌùÿÀUŠD‹=¬Åb‘µå^ì²,ë\×’¤$ºK))©t«ˆÒ}7ÍTJ¥kºtß÷5]Ò9Mwéžûžý½?SmØðý㷵ǾŸdÄCŸæñx¾_Çûš7ïøCÛÆÎ“”™“›WXÛØÜûfŒÍCøó-8LƒÁâ¾ó5òÃãq¹Ó¢Œ÷´ãÛ*âƒQèÐç˜ÀÀ@LXHPpp:àëçïëèèáâdo¨¡¬pñøñŸ|Øz„ùbüßïP02³ó OÌÊÍͯª}ÝKáðþæ?Í`0ÙPdVaÒhŒ©°Ë¦‘ˆc]x|SEJس°0Äô³à  ÀT@@*ÐÓåïád¢¡ªª¬e¢½CHx‘àõýlâÅÒî:£B^¤ääæW¼" Ñ8ïé?á?g~~ä¿ D¢1z àRˆt‹<@À·àRŸ¢1è@$ú#ñ… DbPh ÆßÍÞÜÂÌØÖÅAs§ÄÖç‚" §^þj“™Ÿ——[Pë¦rßןËf‚ôŽÞä¿ “B¢Ò(ƒÃeÙ  uãñE1aÁ˜à`4| Â`0h ò¼Dû¸¹y¸:yx¹Øj\<,úñ`)s;Û 0l^iIqa®v„èÏeOÇ{.ñ¦ÿÈì¡‘È4:™L¦ÒèD"&­TÅñ/ÂBž= âûèçƒÞûƒÁèçëëåáíñÄÖø°„ðÿâÿ|% 5Ttn®ª²¬ ¨‘Âåq¹\&•>5ð8ÀXþC ³ ñŸÎUqŒD¥‚ºüOƈÿ¥Éq/BCŸƒ òuyê…ôÑà?åïïãååþØVAPèÑÞØÖT›}ŠFaž…øØ[<ôþxb¼|Ñ” ”Þ^Oõ¥O/øŸü_(¾RR)2Ù?"%9:67Î%õý™=—Ãå‡ @da’ÇÉd`ÿø™5 }°åUEZbBrn*(íöÀÌÎ…òu @cøÝÀ@/'·”îÿ‰À¿DŒ –¯Xwອ¿µObrtdxúwx„ÿÉèϯúߟ„@ ÿ,u|llløObÑ©4~ø¿Æm­¯ró Ÿ¡Q¾nvæ6Ž®ï›;€$À/ƒÆx9ºº¹;èÎÿpù/À/ „OIˆ Λ/þùîËŠªšjzÖÏb#"âÚÈ”1â_þÿ ͇@f‰ˆèÏÈ ƒB"3¹<“Á¤¾!àñmÍMÍ-þÞž÷雴·5Ÿ9ü‹}ù¸ÐÚã»÷I߸qxÝŠUßî:ñ‡ô…KÊ·nßt ˆŒy™ßñwÿaÌ"T6—àÓhT ?ðdü<‡:2ØUߨX_‚ðpu¶¼gh`¤§©­£bbacnnavÿ¾ãck³«ß};SûOdÅwW,X´å¼ì5ÅŠg~9){QIíäá?íU1sD‡G^Ä7‘©t&czï² úÌ$Ú#ïh*Îdò l®¯©ÈÎÉJ rêêìøè™±‘‘¡¶ªòë·îYZYXX©J_¿gf¦òËšü\¾vÓ¦ÕbK·W’W¼vI^ã®Îu½Ë‡t]Ÿ…ùÆÄE zŒÂ`Ñ9löd÷Ë…ÍdÖá² A£°&×äsš²R^&ÇG¡¼ìí¬¬­¬Ìé\»rIVùŽÉ}sKË+R_I\¸|íÐÆE×_hñê ›6®ûlù{Ï\–½z]QMMQG×ÒÕËËÁÔ%4ÔÏû2.2"² —Bg±ÿü%€\†d¶á±Yl`!‹lB¾À®KŠOˆOLðyboioefjbjj0T¾|Iö†Ö-}#Ó{Ê[„¾=´gË™ÊñÕ6nܸaÅW[~üõØñÓò7Ô®¾bá…B¡ý‚Ÿ»ùaÓ_ÆDżlæûÏas‘Àˆþ0üC ³Ïd Ž‚9™éYi…qh;tˆ§%"¿‰å#[MÙëšjºú:‡–¯=°Ul¦ÞŸÈ: ‰M€õß~¿oÿ6‰ÍgåÔÕ/(jùÔÙÅ;.;56DÿԔШ’šºêüòªœ¬Ö·œ‡úC så-…„bæø@o'¡ÐâcAi]#®$?5)%3ÁÏìܶ7ª`ÎÿeÝò…ÁÉå@ËwûeÏî­û.Ê\»¦uÍòÉSg7tRf ¢ZjTDze]=®¢¡¡n`Zzþ!Ù†÷næP†úû@Àã[ª^ut¶”d$&¤$…8ßÜ{@ê˃òGÖ®]øûç .þFœßØtì™GÊêéh¨Þ42}àìâ⛞˜”š––žžž” ü¯­ê$3f~2pdžß vógÚÛšZ;; ¸ôøähw+ íÓ¿ÿðÝžÍß/\üÁ-ÿó?ß°vé0H½$'}ö¢’ö­[·uuïØ¸»¹x>Oˆ‹OÏÎåDNy}C}}]7ý׊¿·Ûÿp$€@f…÷Lã²I¤ñ1âxÿÄ ßÞÙÙÙVþ2ÚYSAUMáìÏ{~Z¹ô#çýŠ}½~ýŠE‚ó–îSÐP¼x^ZÅÐÐø¾•½O(ÊÇ…Í).(,É.i"_Õ7PYSÏñÖmïÜF@þ1Þ µ\&…Ìg¸kÊÿVBg'¾8Îîêé3gO:q`‹Ø¢;ðWè‹•ëV‹Í>¤¥¯&sî’¶ƒ“OЋø”llDXÄ‹‰EeÕµµ%%]ã õ¯º§üçq§ÿòàZ dvxçÌ=“:¡?™80ÙÀ×·vtÚêã­äNŸ;wú÷}Ÿ‰.ýè0OxáWk–‰ÖÓW:VÁ><"!33#+#!&** ›Y\VSW[YÚ><ÖÛT_ßEºïƒ7½úŸ7@ ³Â»GnrÈ B¡RÈ”É ßÖÔ€ïèhª«M·º|MIæŠôQÀ‚Oœù½xå·•ô”/œW°JÊLÅbc£££¢±Å%uuu¸ªî‘Ñþæú†^Ú_~qÿ úHüŸõ7ùòî¼\ƒËa²Ù4 ™8ÔÅOÿÛÛjëÚÚ øÖ´»ÒJJòrÒŸ‹‰ŠŠ‰ âÌoAÑe»äÔ¥å,bÒ2£¢b°qØøÄ¬âÂ<ÿëßÇFZ{©tÆdÀŠú<.ô™ÞõŸÇb±Y,B&õ#óÿí„v|{E}S[[y²½ôïge¯\Ü´ID?u瀠ÄÑS§N+º¤f¦F¾ˆKLLLJJÉÊKϪª«ï ’IDÊèè8™5Ýö›ìðõ‡þC ³ï-ýxÀ=&‹ÉDš¤ñ<ßB'HðuÅiÞ7Ïþzüì EÅ/šñÜ·Ú,£zù¤üÓØ´H[t`L<øŸœ’šü2¿º®eŒL¦"‡Rù·pé“â#ƒÃ…ý?dV˜öäý ÿ§3è <62:<ÐÍO:ÚkŠ’8õ ,: ýp+02;ð¦®Þâry\©·Ê`Щä±Á¾ž.d@¾¹¡¶´ =ÀZcêÄ!¡ë/¼lÍ)-e5iM]-uÍÛú7u4 ÜüP!Ñ H 9§±åuk/qâ´q‘~îÄðX´éëÀ!Èlزo:¹½ºJi°··§‹Ÿü7Ôâ*Š‹2Ìå&7ý‰|$÷Z¾b¿º¡©…ém 5- u=mý›šjFÏ¢¢c°ñ IÉIIéÕí­-øYjD¡0xü¶ÒþçЩÐd@ô§ t5äÕtŒQé êH__’ûw´Uãª*ËÊsÑwMîíY¿jᇆá/—ïR72³45Ó¹©¯­¡¥¤bxÏÈàa$Ÿ”–žœœ^ÙNhëè¥Ò¨Ôiß9 ðgÑitû¯e€sö^@ ÿ9xæp}uQ^FI}ï•Aèïëîì ´ÔWU–WTVækKMI¿sÛr‘”‚KÖ­–5¶´436ºk¨¯£¦¤¤sÏÔÚ7*...›š——––WooÙL{²ÓÏ㱑KÇL¸ö™M8,6— ‚ŒÔô¬:|×2>þ¦¿¿·“ÐVUVŠãnø«¨ïù–/Z²dÑÌK€D¾;,e`cgei~ÿÞ]]mu£{Va‘‘ѱY…E…Å5-ííí„Ú[™>²ñ˜Å óý‡2{𸔡a eltŸ ô‚ׯš:G©ÄÁ~ÿAø/þ—fG»ÛYÉ}9ob˜/¶T\lÆ]‹víR²|òØÚÂú¡å]=5euu5}+wŸÀШ伢¢¢‚¼ÜZdeqýÎ,?—† Ę÷C ³‹86ÐCho{U‘÷29-µäueY[Oÿ@¾­½ WYž—™íkgc£))0O@DXPhñš'·,ZúùLùÿg[¯›˜šëë™Z˜Ü5P•QÑTWW×}àäá÷‰ÿyÙÙå=d]QÏóÝ'á0 ÿÈìBîíÆ—%%&aãÓã’‹Zª:û»_âšpeÅa!.nš*ÖǾY "*¾jåŽí'O_¸ðËîM3óW~§¦G]厱‰¹éÛ·ôôÀ õãçõ<-¿¡¸¤y´¯«»£‹ü¾ê,ƒÉž“7ùOÂc3(Ò@÷ëll|bB|RR<²K*pmý½­å•ÅéÑÍM4ä¯ü¸|É"Pø/Ù µò—“'N—±°y…¢¾¶ªš‘©¹é-;º· îi«ë?õôŽÉEä/-)©l!GFÇI¬¿= ^Ì<.‡ÉeÑhâ`w{CA6$ñÈ$}VQimG?¾WY”—‰µ½gtWûŽñI± –®Ýöó²WwÌØ\ôëBic]U C­ë—nêiü¦ª}EUËä) ‹ø_RVRR^×ÔÒ:HcÓPvdNà±A±M£Ó¨TÊpociaAz6ñ?);·°¸¤¾«¯_QYUžŸ•ænim}ÛÀA_rÉb±Åàcåþó—¥/]>øÅ¼©ù€·Xøã⃦êªFzŠÒçŽnÿáûÍòJW®]¿¦ã• þ_ÄÿR®ºß;Ø5ÀüôsB ÿÅv|h”ü«üÜÒ,6›”Ÿš[\Rùº³¯§µ¦WU”•íë÷Ôú‘Ÿ‡ê÷ââK–ˆ‰¯Ù|èÂ¥?Îüô%rÓÇûþ }¾ä€¹‘š²žÊÅsç®\¼þÌ éóç/(»Ç¥å”€ ¸´¶‡«kxýª‹ 'û!¹€ƒ„~*Èä®Ö¦Š²êÄÿ”ì´øøŒâòº¶®¾ž¶ú®4;=9êEo`ÊAóØÚÅâb«¿ßðÛ%yÙÓÖ ç|ÌÐÜz㤜Òõ‹'Nœ;¾^P쫟/<ö›ª¥_x 69§PÖV_]]SßÐ<@‡þC sÃbÒL›E|ÓÙúª¶¦ >.›^—ˆM-©lèèéëëx…þÇFEÅÄD†…ûº¹ZœújýÒMÛö\º¦týÔÎUÈU3´Äö¬9*wáÌñŸì'°hÏoûOÉÚù‡%äÿË{ ÍM-„ž"löC srÔ÷OÚøÈ¡±¾*Iÿ³só’Òøþ÷öw7‚ü?ÏÕ/$2òyXh —»ÛÓ{¿ìünËösŠÊÊJ¿·Äzq¼ßÚ"µýЙ{V}½iì>´÷еãc/ U\\RÞ><‚ôÿ©k}a™€{”Ñ‘‘~BsmaHϳ³²SÒóʪš:{zºÍÀÿ¬Gþ¡ÏŸ‡=C{{º»=¹ù㑃»¯(«(߸€Lÿ‹¬Z²tíûûE%¥–µuídk@ðËÒ·ŒoÈ{ûû‡&ÿKk‡ILƒÆ€Ù?2GL¶Ë"ކߴ—fÕfggg–UVÖ¶võt4TVVâpeáÑ‘‘Ï_ľòqw{¤­"÷Ç!YE%%¥#_̘ÿå±í’’+Þ_¼béôW„WoQ¼|àš®…“»WHÿKÊÊèüƒ¾æö €@ lc|„ÏB[O~^vv%® ×ÐÞÝ^[Qêÿòâì„xll\\t¨Ÿ‡³¹þ­+gä®ÊÉÈ(œ\-,¶ZRr+øøÛ$À4"_ÍÿZäúÖ«·îšš{¸Ïçûù¿`É6Éå+PzäöÀÐ&äÿ¥µ ÈÅ?°ïÌ9ü7ÙL¥§¦qd¨³»¤·ƒÐT]QVZRQUä ªÿQ?·Ç®nw5.œ=¸ÿðé?Žl—”Ú †‰5K>zàÂåë– ‰¯’·r0×7p/þ¿jo¡ÐÙÐdΙ8{ŸÍfÛ;i”‘á¡á¡žn«2d³NÆõ©›«› àëíæîj_Mñìá];víÝ·{û®Ý[·lÚ´aÍGîF!Añ5J–6Æ·ï£óøíÿäüo&Œ;°€@æäøMÆø8Nèéîj®,*.ʈpvutxäàäìáâäèäâdWOõÜï‡wHIIíÜ÷ó/‡öìØûŲo>q ‚Õ7î™ë{¿LI~‘6D$‘‰cc œ€@þð¸\rü44ØßÛÓÓC¨.,Ê|æéôô¡­ÃC;{gkk»w¯ÉË;´wÛöÛ~:~üèñŸ×oûÄ]€ü6€”ìU5ýÛ†./Ü,\ºGG‡i°€@æ¿þSI£ƒ½}`èÂ%G‡º?uzbciÿÀÚú¡ÃC[++KC55Åßݶu×¾}¿ž¹pöÄNQák/,2ñ÷ž>*­¥oæê¦«¦iÑÕ?xC›ý!¹9ü9“6>2¢?п»³íæééìðØÆÒÊÒÂÂÂþÉ£Ö6V–Ö¦7.ïÞ·ëÇGNË\:±åãQ_@tÅꯅDæ  ¬ÙTNSU×즺¾‰'ðÿÍà.„@þpü :248ØÓÕÝÝÕÕÕYêïìiõÀÂÂÜ –V6¬@`em©wúÒÁ]Žü~ñâok>‘õ/ûaßË¿\þ­ø×{üvjïM5w¯˜¬Æöî!"‰Ê˜Üÿ‡d.a‘ ùH}ÝÝ|ÿ»ð5I1Ï­mŸ8ÚÛÙÚ<°}`  îéJŸ8yêÜ¥ó;>Uö }±ë§]+—^>ûÓîýÛW}vX_MÇ6ØEç†s2®g |Ç ÿ¹tä3\Ì>È™{\ ñŸªò^¾ý]]­M ¹I‘Îèü²Xo7{ +KK˜éhijÊœ—¾x|Ã;²ÿKKêxœí\gúÇ-Ñ䝯\î’K.z)—œ¦š3EнÆXÐ(V¬ˆÒ”ÞDÀ RD¬(MŠt& ÒAú²Àî²½ïììììîøßY0FÅBÞ}œïÇlugggç÷´÷yßwÈÇxëëï§~?þ£é?ü0}ò ­v›YmYgdY^Ö V©0í}ݧ  tðŸV«Õi‚ª”b—Åd˜L&‡ÛXP|3-1«únFfZrðÑcî®®nnn^>fÖöŽ6›×¬^>õÇÿ{Fþõß~4üdÖ”EÆvvfV»6-;þ»¥Û ãsr ™àE"ZKžÅàCý¸è ¤ü™¬n‹Íí¬ºu3ýúõ¤ä¤ë‰‰¡ÞnÀ€?v:X¯1\5ý/ÏÒÿБï}o°~áÔ™¦öºº9™Íüûÿ}`7Ó7;';»’/å28*¥~ Š—©­R†(%\.ÔßÍç@3ÀbÓÊóRâ“n\>âáÅïâØìÚhd´vé„géÈðw~øeëæU[ü]\Á íöÎÕ~çÓÉ™YY¥m]t:Et/ûPP¼²è þ T*ñ86“Ñ͈…îêîåç ­€«‹‹£ñôç~ülý5göúÝN@ý^~GŽvs÷qØŽs*63ïfAiW„PþŸ‚âåLÌåñ èîfs8ž€ @WW'­înI}YqzÆíòÄ@wߣ~nî®—æ2ö™úóí’•ëÌ<ûú9|ú¤¿ÿ1?o__¿ðÄœü‚‚›w;…2D£ÑèXSk_öÕ  xµ€&áóùËîfs¹<¡HÀ…@`:ÚZ:êkªëk˲Î?ìáåªçàÎ9Þz¦þßœ4}©‘¹×±ÇO‡„†Ÿ8èçw2.§ ¨ ÿfQ=[¤P¢¨Zƒéc2Io1ª RP 0™HÀŠìAôÏå `)€Íé†!@G½¹©©¡,ñÊ¥S'ûyré1®¶¿~;æYúñÞ¤ŸVnµw 8|*äLXXØ™ðГÁW2³sJJ oæWtñ刂bZBˆ”ô)(F‹+¥B ±ø~™py|!ŸE§ÓÛim@ÿõ9gOŽòñuõr‡`ì6|=ìYà­3f¯Ù¼ÕîHH虈Èð3ç¢.Ç%äæ%%—Öܽu«I&•È”z0µLøP1  Å€£ÃÔ¸“ øðÿð¹ž@(ñ­­µ¥¹¥¹á^]Òé àà‡ÜvÎòk‚€ü/Æ\½|!úZRJZvffvn^nAY}kUEœŽ*å"Pö›ÿ×Qú§ h4*à}UR>Çårº*Wc¸%l͉dE…Eéq‰7Ò®G^Í8|.!! ¶ºXï0YöÚ£ò>úÍM›6eôð s —LþçÜ +VoßçuîbÜõ¤¤7Òn¤¥g¦§gdçÜ®ªªk—÷u„— EÏ` ŽÐQú§ xp5®VŠôÃìîn1†ã¸F‡ËEr¨E‚@”íe……ù¼¼” ñüá  ‹ÍŽ“zDýcÞyóýIß|öáÈ÷ænÙ³g÷ÎM[,møž8yölÔÅ„ä”ÔÀdd¤gfeçäÝ­ª§3¥@ —ù \܇¾Ÿ’?Å ‡ÿÔˆˆÇçsØ›+þ8(ŸŽY%ï0ùÙ)×ããÏŸðtuÝo½gûªOGÿ^ÿo¼÷þÛŸOþׇã&,Ù¸×ÊÊÊÂÌÚ>àèÑÐ3á‘‘‘Q—â¡þÓnߟž•““_v·¢ºžÞÕÞÞÅâ xl¡R „ŽÒ?Å`Gÿ´8ÿIýó€Öh èUx^…Ê;[é@·)×b£B\ìl­Lç¿ûÆ#ÑÿÈ·F½·zþŽ_°r£‰…ƒ­••µ­»ïÉ“'B""#ÏÇ$¤¤¤¤¥§¥§g¥gdefåäݾSYßÜÚÒÎàðœNŸCëÄ€øµ”ü)(( ˆˆ£ÿ8ø;ðÿÔëƒ*™¤53î:$1!îbøéýVæû¬ ?}¬ø7üµÎù~Ü[ÿüy³‰©ÓA''GGw¿#§@“š’r#=---#ä™ (½s¯©¹±™Áå ìvƒ^Õˆèt8NÉŸ‚bÀ!Ý¿LÀʤ—ÕÏ gýöT*T­‘WÆ_%'Å\¹qì˜íÆ5Ûw-øûãÅÿa£þùíÛöîü-¦fû]]Ý]Ý<½|üüƒÃ""£.'¦¦¦¤Bý§ƒ #+;çæ­â†ºòÒÊVàþÙ]m­m•÷$:ZC韂b é™ý#Ë•r‘ †¿x8ö&p  ”•ñ1±± IÉ Ñ‘Næg}9mÁôG“2xû“ C†ŒþçÂm–ûzxzyºûøùùûû> €ó i©Àÿ§§gdÀ‡¬œÜü‚ÜÊ;ù™7KiŒ¶Úºæ6zKMM—BE¹ ŠGGÊC”*‘#†iá/ŸF[1úÜå¤ôŒ—©Ë?1|üGOêý:ü­‡ õµÁV{'ûƒžž^^^ž>¾‡:t,8$<2âlÌÔTû§gfB ™[X˜UT\›‘u»2?3¿ª•ÞVWQÓâ:jV ÅCèå®Óâj I?˨øçA.¡Ekã#O‡ÅÞH>f8~Y_ëþ û‡N4\²ë€‹“³‡§··—§—¯¯·—W`pHXDDxTÜÔ42õI@zf^qø1?¿8;Æ…õí-•å• SSÅÀB†ÿ¤Ò µ þt_§Óà}÷̓¼N%hL?`´vñ›}è_ŸŒüaþÌõ®Î® þú#pøXð ÿ°è”ä”Ôôì¬l8ÂØTRš——“›™–q³ŠÖP\VYÕÂBUT@A1°¤üõ@o @F €NÉ?é«prfÑY;sã'ýìüV¬Ú¹ìí¡}ËØ;ÿ™>cúJWwþ{û@àåíáyøÈ©ð°°ð³/_ŽMÍÎHKËÈ΂1@V^aåÍÂ;Ew+ 2Ò³Ëéõ¹ùå5ÕLÓRÅ€BôTúÒ?@ €´ˆp-xNS™™i¹ÖÔëèa«U«Œ¶³üa”>Ü'yDÿ¯Ÿ6eÚ¼]6Nn@÷>>PÿžÐÿ?q6*pál¸™_XXP\v¯£º¦²µ½±ª²(3»¸º±¹…ÑÕD¡T ‚b Ñö.¸CôŽúK ééÄÕj\§©ÌHJNI<¸Ùô@àqGç]nAö›Þ…Jñîg§L?üÿÿ×&|³ÞÜÚÑ FþÞÞÎû€PÀïØñSágÏAõ_º›”’t=9£´üÎÝz¿³Fïh«©¼]PTÙÐÐÐÔÚÎ(U*ÊÿSP 0º^ Ó>Ht¸”YÙÎê(M{Œç†Õ›¶š»û;Mö8l½gY:ú_?L›öí£=€#þþÉ¤Íæ–ŽdæïíéfgwÀÝËÓÿxЙ¨sQç.Æ\MHHHNL-§µÕU¶ˆŒŽÎŽŽöÆêʪššÚ{MM-¥’Êÿ)(œÞÿýßïñÿ8®hÊÈÍϽ‘œ’’´{ùšMë7o767ò8ºßéc½Ï;þoŸ}ûÝcÅÀ?~a´ËÌÆÉÚÊ–<lìÜíø‚ 2<òÂÕØ´‚œ¼²¢âV.‡ÖÈ‹8]ô¶ºªšæVzwGSSsk£V¤ hŒð=Ôô‡1 Çeõ))©)))É‰áæ«6ššl76œ=o›Åîm[fè5?bôØ?yÿQÿ?d臿4X¹Ötû:Sgü»°±9`kms0 èô™3ag/'åß©moib x´VX,èb°X]M5ÕM]bTDoijjjÃûu:ôLعkéYù4ƒÅ°[hb±ˆß͉…Ü®æºúND‡Ix̶¦VJÿŽ>ü‡êÿÍÀµWKj“ã3ÓÒã‚v¯X²ÖÄÜlÏžÝÆ‹>ÿßj~C‡?>8rÆì·&N]¼ÁhéA{;+›}Ö––îÇO@dLlB“Åæ ØL ¡L‚ªTr~gkS,‘a55‹©ò?Å@£×¿~Ä_«Õ/¾¥Ucp Æ*¼~%:.æÊ¹ßÝmg·oŸÕ®Ÿ‡ {TüëoŒûÞ»c‹þ!ÿ|÷µ7?ž×ÄÌÊÚbÝ ÖÖ{-­ì­LœCÃÏ„…ŸIÍ̪a±yD.•H€þ5j Uð˜|¥–4HZ&]LõÿRP 8°Ï_­BQT‰éœ,ºÃøÎ –Ô߈?âèïçºeý޽öž‡¼-úrÜ;zÿ?öKƒk6-[ò]úÿè?ŸÏÚb¼Ãtç²åë­¬7î±µwt;“•QØÆý+2D¥Öà*•R!—ªt½s(õSP 8Š‘Ëoc:œLÈIA $ǘ©}¢ìß³oŸµ‹¯ûîùã{&ý;yÙÊõÆ› Ÿ°¸^ÿSfÌ4˜µpõšÕkLÍ,--÷o6²õô;——¨bˆDX.—ƒÜ_ ¢Ë1¨Jùƒ¡CQ %wàQ©Éßk›Ð|ÜÞéxȱ#ÀxÛ[î÷Ü¿îçIp–ßÐáÃF}·nÛ¶­[MV÷!ÿ!ï|5m¦ÁÌYó—-øÙà'SKGWãí<½ýNœŽˆIÏÈÈeËäbàÿ%¢$õ¯R)ˆJK韂bP!TJ Ar .¦t@þÀ"tœß»å—íN^Þ>>îû,ÍÍ—?dÈ'“>[9oÂŒ ;woÙº¼/ÿ?ꃯýºú×_çÏZ0g¿»ã‰`÷À£Þ~§Î]ÍÈÌi+!\v!ý?¦?µŽ’?Å`¢ÃTéÿ¡ ‡Ýu FD*`dlÛclcwÐé ÓÞm›6šºØüuô§æ‹ÍM=¼M·î4Ù¾e˲ûÐÿ°‘ï}·ø×-6n3{ÕAÿ“¯…„†ùøœ8)ûn—@®PÈe"¡Xêõ¯OAÔ=îŸ2ƒP;ªT»pêõO˜B&G¤íI{Ö›:Ÿ ò³ÝµmýêU[ìíÆÚácåhojin¼iõ”¾÷ùþæþü˲Õsg.´vq=|!ælxØqÿàsç“J[… ñ—I%¢úWc0ÀÓ?e((­N ´(S dà*—J¥¼êdÿÙóW9Dž<°cÍæÝÛw˜lݲlú&_¯CGOú¸Ú°Z7oÂGÃûÔÿ¿Mž·dá‚%3 6™›[»rùüÕ¤„«ç£crKºäˆB*‘ËJRþ*½û'ý¿~õA*   t÷Q(HÃ1T!‰eÒæÔˆƒógÏYqðÄÉàý;×ï6Ùµê‹Y¶ë£Μ ð3üû£ú–ÿ÷f¬X½|Ù™Ëm ŽÍ)-Ë‹=w1=·FªBx3àþA쯂!8 ®: Ñ”þ)(F Ô/‡òSb˜•Š®HT›rÁy‡ÅnSg7W÷}f6Î,v¯ûqíñ“ég<tqO_Å?’ׯÏ\¹nݯK€þ—^‹9}4:»ôÎÝÛYWã2r+¥jµJ­Q«P2ô‡(À j¸ù¹êÈ˾,¯„¶Þùõ¡*%*p»™L6·¥<ÛÏìX ÛÁûœýOø¹;ÛFE&¦\:s<0àØáÀóinOZøc'L]°fÝ:ÃY†'.ž9›Z^^~÷nqFV~a‹B­†s `æOê$Щp ¹öÐ˾*¯4¯Ð(4K ˆT$âsXL£)ÖÖÛÝÍÓ+8ÔÛÑ~ÿñ˜kÑ¡‘¢/^ºpéìé£i¹^ï=MÿïûýOK~]»fŽÁ:+ÇÝ!ùåÕ•wJ róÊ*:ä4j Djèý•©×B÷ÿê\~Šÿ>ȵð^™;Ð"r¹T"–H$b±TÒc˜­¹AG¢:’]ý®Ü̾žpýÚÕØ‹1‰Éñ§Bã3ŽþçiúÿǤÿ|7cÙJà ÿßl¼'"·änyyYA^n^M}³X©R«{Lýë+JLÛ³ñ(ÅKB÷Çåÿ¿@°×O! …"±DÊ‘Ëùìn&ƒÁ`2Rã/%Ó:;;òÎ]Í.ÌNÊ­,-)‰OHËÌŠ ¾œrbÊÓôÿ΄‰_|ûÓìå³Aþoîqäꌛ·JŠsssóëê꘥Nû °û– jüÕ1½ÿ•>.!øÿ¬ä+ç/]K¼^Ø($õ¤…L¢Ð€ëGPý?ƒ A.§_ “è1/~^¬U“Ëiôë44J9‚õë•U)å|—ËápØÝÝÀt1:;ém­ ÷šïAýWÜ*,,ºSzûviYMý­˜SÁA‡÷ïܼq»Éòq¯ yýoÿøbî«fž‡C.\¾s).%åú• .Å\(aÉÕp“!L¥$#™QH$(¸|8µø?Å`Cîw ¾‚õ¿þn?Oh0L£ÕàòþJ!W¨^N Á1„ËãCýCb ÿö¶ÖV:­±¡á^]] ŠËK‹‹ŠnU$Gøøx;ïݹ}ú›¾z³"Àðwî±Ýkã}èä™°°Ó'üÏÇÅ$F…†F…y^¬ªp5ÜhL%•Êe"P*IT„SS Àƒ>Ðêûwÿ8Šb ¨!J¥BÓŸ×+år¤ß‹ßkð¾‹çÄ35á €@"ô€nFWgGÞÚÜÜX Àíâ’;·ŠJŠ/Ÿòs¶uts·6ݳuõ/†Ó?݇þÇ­µ´u8èå{ØÇÃÓÕÁÎ5$:䌿÷áó!®þÅB8âô¯‹Å"ð®{_w7o'ï+ñ‡K ‹½»M-,þÍͧŒí³`ø;¦Lœ½ÐÎ}ÿÞ½ÖöÎ.^¾n.‡ îÜ)¯©oa½Ë ¹Å„<‘DĈDb…ZÕ›9Q)Å B5¬ö+ þ&“+Ò¯§ñü•lBM®~­Fär…˜Áëg \­|R Ó<çÑÀÛ#ˆL,𸬮ŽövZsS3Hš[Zaø_SYS[w·8Úï¿£……ùÞÝ&{05³´ø¦ñ?2˜øíœ¹S—¬Y¿Íd¯öûúE&ÂCÕÕÝ£ñ€Þ¡þq”Ëåtvp@ ÀTŠ^ÿŸ²½ÿa{?+Z•R!t3,6W¬€3Üp~9«g¾4zýK¹LQÿâ^­AÐ'HÏq „F)&ñ¹Ý퀶ºÚF ý&ØüS]^œ™«âvô±À@Ç=Û×o4Ùc¶kÍ/+îµø ¯ ¼ÿù—3fÌ^d´uãV3s sÛ#é·+**ªj€h&×ãv4Õ7Ò˜<¡X—{ê Ôþ?Ìñ—w¢‚»_Ý×ö®Bõba¸F%a¶·3Y,N7›+@£¯`=û0†Âê_Èb Ÿê¯û<ñ$ý:pä´Ú§B­’òñ¿ˆ‚àÿ›š¡ÿo¨«­©.ËMKIMKºy$0 àðA“õ› §M›>ãÇ©“M6ÿµo÷?ò£/&Ï]4wμó¿ù~í¦E6öá·ªª«++«ê›šÛºE"~;8|~˽ºÚÚº¦N¯»‹Çå£îÉY ¡Q?inÅŸr[½õÆ—=5U§}Ùgкž ©¸æ7ý¿àPN[K+Áfwsx\±Œ\Ðö9¡þ_§Cå«‹ÁÊð—ï *8pÆÿ¿{ȼ|2¼/AÝ׋‡{ñÁ)ÀYtüƒ€N¨¾º¦¦ªèFrJÚõK—®žòðñ=ìhl¸|Á¾žôͤ&ÿãÉÝ?C†¼õùGc¾›>kÑâEK-]0}–ñÇái%5Õ% ¨il¦±…"AGK'Þ\[SS]]]ÛÞ±­³›#¨5O®Ÿêp íͺ¸=?c×÷5~*à8ò|mÛƒu`Žú­¾?i^öŸ2ÁæEÐ>ïH²N£Ö¯J£y@?ïBÊ—ó[ZÚÚét›Ñ-„;Z=÷i•°•b!ŸÕÕÅâó}ŽB=÷>÷HaP!È#©³þsr™ Mß×¼'´¨R…‘€HÈeêõßÞAooni(¯¬¹›—’”””píZÜ?g§«W,7ó»}4öÝ©èËùù÷7ÿþnÞü¥+ùå祋—lv?›’~«2ïÆÍ;•u-L ÿö¦{õ0 ©mh”ÃáÊ¡É"ïÄÒaJ홡ñÛ˜FÏm­ÃÕýÒ?üƉûˆX‚?¸˃颲'OöŽüIçÒÏâzÿÁäÏ9xJ½ÿ×õkèêU¨ã¶Ò;ôN ®D‰?û£p³= ˆP¸.‹Åèêb²™,¾æÉ1-—'êu(ª&†«f“FÕï¿'¡ÑË.­ÙÇɾ-œ$pYdøOêŸV×T{»¼º43åzbB||ܵ+§Ìöî\µxñÂys§:jȈwÇôQüíµ1_,\j´j™‰éúåK-ÚìtæÔÕØ¸ÔÒä„Ô6¶tð„ü¶†ú:RÿÐÔÔ66·u‚è‰'ç¬Óªk†Ò¢ ¥~£2ð©tj’ä¯îWãùB\$R¨à*d¤Fˆ¾û°È+¯9NF‰Z¼½^φÐöö9š7žÿ¨/¨‚Ü“ýÏH°È#ÀÐzPõ¯=o5¹' å~ÉŸ¼!´n.Ÿ ûæ8RÅsŒåj¹T&G¥œßIïìêb0pù-쉳`txS$cCàïa¦€KErpâì¤Ç)]jô«l©Ágë«7ˆ¼ƒáä' .&èîê€Cÿ¤þ[«ªî”–×”e&'Ä\º|åRôÙ“;Ö.š>sîœ9³ ¾ê;ñ2ä¯ÿš0mé63kcGÇÍ@ÿ Wlw ‹¾›‘švóneEMS+ÉãÓÈÅ^ý×Ô5´s¤‘D¡D15¦T=|¦pu@]o“ƒÎØÒh~»ú°4Ыÿ‡ƒçù*õ¦‘ˆDb‘ˆÏ—¡*­—÷ùJ9oœ ¢ƒû¥È„Š?; à4´ú× vB=ýœ/ìÍ_x^ AºÃ{“>Žt¿§ÇfPóÕ3õßëM³! €¶?íÿ½ú×ÈÙ<¡K£ÑèBQ>»ƒE‡ŠSÀîìòïbvõ³$د¹Üvzo3ªU+P`½[Ž (¿Œ'R<<õ¸(ý:›Ðô¥½ûΕJ¥ª_¯:½®º¢¬¤¨èÖÍôÄËQgÂ#ÂBNûÿòÝSfÌøñËúVÿëc¾Xºx®¡­ƒƒ“‹ÕúË~^¶|Õîà+×.]º›UP\U]YU×ÔÒÖŦõÈ¿štÿuµut±B!GÈIÁgyøDÁù)5ª!/57*‡ñ¾6½Å&õïØûjϸÝ{ägàj¥\"ð9ôf:O¬@äÂÇ¿»;ƒÃý €¥ÅåZðR)³«Ÿ6}ŸÈE5 íÉsÔÊGʺP”:ÒÝh_p¶ä‹‡ÿ䤨?áó‘ôðÿ¾Nö, ö&“ð~‚jÑôCÿD¯þqDÎ … &‹-ÇTØbn}WkÏ#p½*D&äuÓÚémíPþÀ@õïcÊÞÛYx#¢D5ZL*C5¸„ÙNï+Aô¯à´´²„Òžâ¼KÀm«õòÿ]±à¡ûºÿÞÅ8” ”Ië•;½µ¢üNÉ­¼ä«Wâ®EíŸ:uü„óªi_NüfÒçÿ7jä¿íÿõÿÁ™ŠWxœ¬}`\ŵ6õ¥`JHH ´„@BH…PB¡¤’ ÉK/R!$z5ÆE–ä&[Í’-Y½ìj%­¶hWÛ´½÷Þ{ï½ú?sweK. þ÷#ÙÒÕ½sgæ;çûÎ93:çœõíÂk¾üÀÿüüwÿ|á…ÿ<óÆ‹ÿüãÏyä'?yôÏƇ»{&¦(l‘N«V*5Z­ÑfÐh´ø4•Æ`6j­éìZË—ëÇO¶j*N ¥F£\)K¥"´J½QM%ÒõF£q¼Q­TÊ•FµX®×ªÕÆñã ¬o?kƒëj5ìûz!—K'C“ZmðÆcñD²zê6ª5ô Z!“ƒ¾U*•"ü³vz3gÂÿW«WJ¥r½Q«¢¾Õ*ù܆q€ïÃsëÕr©\A¼ËûÖÞÏå­ ëµZ­Z÷K7s7˜îêÿÁ­6ÿLø“)Ôë¿p¦ŽaëÐÊÐ*Í«¯iœ¼ôÌBKZµŒÅbáx<ž¯ÔáK§þD½œ/Ö׫Ŷ–°QɆ½Vhv—ÛírØ^¯×í+n|>Zyk=AOÉeÑT6&ó™Ûisú3éD2nTÈ D*/VàI¹«©²aØÑ=N¾[½Z)7[6wÙP³;ìд2!Ÿ·º<Ù{hpxèèáÞžö×^ýË7®¼þÓ×\v üüõœ3·Þþƒ‡úë¿þç…gÿþ§—ž|ò±Ÿ>òÈ/~õ³ô÷wvv"°”z½^°W(µ  ^‡ €Jk¶ÙmK,ð‚ÿsùÒ–“áHªT(×˹\¾Õ ÅR.HÖ`Hà5jõŒl¡ÜZfØX5NÌÞZ¬Hó!õÜ4›ðÕjµÎ‹'³E³?W¯Öᆵr.“ÍJ`fà‚ZÚçðåÖ–@íý`ñì­°]­WŠÅr£–Ïçòz¨K«”ÍÊïçk‹x³—7?Öþÿ š l^þo†hSO„åh¬´öH0Ögzz ¼*g¥ZÓlÕkïö8ÿÆñz1 žÊä1Tßp¯F­˜Ng*Ç«…BYx ÿõrÔk³Y­6§Óa³XÝ^¯/–)¬ï@£šË•‚‘=ÅQ©¤‚~ÖáXؘu½V·S%“©œ‘X<ª!ü—O´JmâÑ}j'VêD­‚][ò:0ðÛí6‹Ñì´)…î*43t°óÀ‘Ñþ}¿ûÅ·ùÔuŸºü²Ë?(?ï£÷œ ÿ_ùê×~ø‡g_ü÷_žxì‰ßüî·?}ô~ú»'ÿÝðïìšÇ TZ½Á`ÐkTj€¿F¹€?z°#]®–ó…r©Pªœ×B9Ž$²éT6sþù\Âesøé\)Ö®Þ4ùÕ&þM[‰F¬zÖY«!Š Ü-séÕ*)LçKed57,ì¦Õb1“J9­–jÕtÀa6…aÚKð5ûn ä}´:²Ù¨¥ Ð’\~ÃmkÈÖj…T*™>¥‡ïÚ->´É«›)*•*²ÿ[Øb¾,ô 0þŸó€Æ)þ¹ŽÆ& §*ÍÕÞ@ï-‘úÆh"Þ³ŽXUùä¢[ãŽÈpÕNGóº'oâ]S)¦ÈWê¾}M\­üç„ÿjs>êµR*är;lV‹Õl4Z=àÿ}™úúçÔaif³À6ó™‡r!jÁZ(äqÚm6‡C©ukd2™Òì íqô¾Èš•²Ü€ÿÚzd5)¸Òæü.§E-à(%k‘I'/.†öìÞ×ßð…¯~óÓ^|æÿðü3ãÿŠK?~ëCO<ÿÂ3zü±ßÿâg?~ä‘G~öìþžÎÎ=]G˜R¥R«C@‡Á_«jÂßhø[]è[¹r4[!‡Cþ  ? ž?“Íç¯Ø4Z§ßï‹â‰H£=<ÐüÂ\"Þ„XÝ».¶z¹¦b6“´aºÄ+­µõÀ«7`1•ÎåŠåL0˜,AŸ|V£Ñ™ª%˜øìÙ Íûj E˜øðÏ•OØjìCJ¹D œL6»y>¿ÿ›´åL:ÑÎÿªUOâ{ôû¼ß&ºÛ¨Ÿ2_Å|½–Œ‚fl0´¤* laÕêõ“k Ƴ‚à_Q/Õ×Àz{‚tb}Ã$œéñ­{6*Ȥ‹§úør&‡à_© ôíæ„ÔÊùP8ð:¬“Á€áß K«P_wëF!“É’¡@$S=^Mú=>àÜï Å!'"ìj>/R*dJµÁf08á§+U ù˜ €Ïëû½Ñ³¢÷¬fR¥Â?ȳZ-¢ñU*îÜÜâÒÒqa¬»³£ëà«ß¿þÚ«>vÁI˜_pÅYüÿyç]xÝwþøì3Oýþ‰Ç~õ£‡~äÇÿÞûò¿öíïÜ{xLªV*ä* ÿ½N£ÑU`Tz“ˆ‡Íl/T±é:þÐË|,ò:|ˆËá÷P ¥¢a?Ðu·ÏïŽX½ÉŸ)7šË lZ ÿµ &êÎÚêM8•3©”Ç Õ¨”*G._,kM›¿¾ØÇR,Œ— x½åF*èü›ìÞ@ O&2Õ< ¼÷Ù·©½¯$=þh¡?_jÍU½\¬Ô°¹«U‹³-k"©l–Ò¿/üÃ*@ ‹™t6.±ö¿¤­A®½_ù¿Ö[ y¯Ç£¨I àZä¢OËTžP ”.£ÅÄ©P¨4WÖzƒ†õ ‰edñtžPÚ'F«ÕýJ.]Iž-؃´fVµ| ÈðÞ €Ìu&WªÕJÅ"xtzBü¿Q+åSàÙ ,ÿ—'ž)Ÿä’XGò0Ù¹T8JU*™PÄdÙêp:]ÁHØgµjZ™J¡Ñétz½ÁäHBŸ1R_Z TNéì)ݯ$S•F ä„Ïí6©•¼e&“1?77?,Àn`wçÖ;?tÉ•×~òÂõ8? þÏ9÷²+¿ò»¿ýê/?öØÿüèG?yôç/¾ô›?mïì<01MV+år…Ù:0Z­ÕeÖéL @v»Ëc‹Ö¬cù”¥Ò@€pÐãõù,f«Õl6Ûv—S¥Òš¼>CLBïI›1&˜Š ¢?UÄl€™—c¿ZÁ¦¶˜NÍ:„µ%I$ãg¤Êð¥rÌ ÃÑ ÃäŒÇ52• €Ùæ &‰\6—ÍfbÞ`ñ•ãX€/çs‚%ŽüOŒCtQE3v¥ÊŽÄ’¥MKަÚl©Û³ “ª°Tÿ‘O§Ò™R±\9(ýÿ{Ÿj˨cŸÞ·dÁâ8ïþSpM-rŒ¥×š«€e_^æõÎ`¶\B¯PÍŸä'ï‡V|¹Š1¾ ö ÄNR„FK½d½°B=XVgZþ›ÏÍ&âðß)‹ˆ> l ù\þ’ÌÃê\3Åh8䲚,ðžàòèg×ù¸* øOS`Ì¢±T,²˜Ìp9˜ fÄÚ=N£šÁ,b*—‹…\¡„ØÍ©ÀS ]Ææx9•æ2ie+”e ynny~n~‘H$âÚ^¸ç’\qù.<÷l˜_ß.úÈ¥WÜò­{n}ðï>üðÃ>üãßüò§OíêÜÓKÁ/ª 9W$—+uÿúX*™{"1ÝîðFBEl}—Á7jÛùÀ<š›ÍbsºÌ*•Jm2üu&o"_ÁbL`àËXT³†ñ½³ÀÒT0ü—sé$¸­¸ˆÞåDòg\e°jjIŸZÀo2hŒ*ÞªDk4Œ&«?™Œ¦ ¹M•ÉÄåûy‡©—^˜UW8›«û«¯TÐåóå:¦ÿ#… Eò›ôhE7ZË~=þ7Üà„_4€Æ*äe€¬ËÕ³â{¿O>õz³ïX6e¶'Û{èx¥Ôf![DÀ‰éHD…cð§ y€0m E,N´>(×ôÿˆ+—›rDªëðEö£”‰E¾tñÌ$ !6ÿZ)ƒ‡/T703x…Jjå°ÔV4lÿȸ•r@m=ÿf“Ãë¶øëù“ã ×T¢@93À¯ÝjuØŒÐÌh üíÈ8=F}«Y‚ùZ%WD,#¼Øl¥Vß`ñk X/°ëÇ+ét2h×êmVù2iÜÿ"Ãáçð“=;Ÿ»ëüó>pá{"ÿ‚s/¼ð’«?ÓǶ\zåµ×}ùŽïüè‘_þêg>üÈo_lïÜwl•¸ ÉVh|¡D…€ÉÃ^HçR>‡ÛÍå*H‹W`ôŠÅRuH³PN‚àñz= ”,ÿ&³Å¤WƒzP£8‚ÞÃAl‹æ`2¢{g²ÖkóZÅÜ¥\Ȥ0üë´p;£ÓŸ9“b@)†r.ŠáßïÓKy<Î*O¤BŒËh²yîx2’.Ê“jÝ¥Ú¦¸öSR¨[ÅLÔaµyR( G‚±r£VL‚«Tó«Å掄ã›öþؘÀ¨T7.þSˆ¬ ìâ2òR˜øÈ¡™Ú\G¦ã4Ö¸¹Öhî¶ìZà}â¿VÙ ÙO¿Ñ<$vkE°X%X¹xÜatv‘Ì÷dáMŠàRµVЧ+k|{ù"MòFÖK­e¯ÐÂòGõr.[@Bº”OúÓg‰¹6Nöo-ò|bt1ZRΟÈlç ÙL¬U+÷VÉ$#aÕl³™VXà®t:S^ÿz!N'HþÝFÖd0"ÖiµXí³Ñø·L:-¬D­Fmò's`¹‘¡Éd²é Øq´OÃýÔˆéñZ&ñ;,×È\ ææs¸é©É©Éc;ÿÑÍ›ñüç~òšO}ú wÜõ¹mÙ²å#×]×?zøç?ÿé£?ü‡×;ööÏ ˜L‰DD›¡òB"ÖhK=¤ýN"Æ…¼‘t¡Ô/£’å„ß‚#Àwÿ7¡ "ðu¥ #š\‘hÐåËÓp%fÊ›™X÷VøÉ¿Öë-Ó4)ŸM† F F­ €§tz$±ÀJ.øü>·ßï³V,._(Ñø7Yl®x22°ðSó} Pz— Ãº©m´Bý„H)·üQÆiµÚ#© ?à…]®D½ øÏWjâl|4KnZO×Zú …lˆ}¯7SM~‚4×j(Ê*-J "Q\v“O;ý-×2èÅØ™¨VŒÅÐY9="´¾5S&Ð×L*.Öj•¬ßö|¬gprŽaå <¸TÈW+ùxsàXл‚…j­"k†›ñ  ¨ba:èu1 EÀ§“.O¦9H§Å’+u ÝH`­šOgÒ©T4šÉæÒ™T®ˆÈi+c)çs‰°LºÝb4£\`"½‘þ×s><É ü{ͽوùÿ@$vë´&øL!—)Uj…Laƒù8ÑÒYX4 åj§Øy,#xJŸYð >PØ>+—@ÿÇÏNéëí{ë7^²øð–;ïºûžoÜvÝeo¹øÒ«nºû¾þêÇ?ýÕïžxò?Û:ö& …‘H@ž¦ ‰Z§QésIÌdƒ®p9¨B„t$Ìcaç* Ê] XŽ£Ø¨×cù†R¯A¾Ä„K"ZN›Ñà+bÍuŽÅ=¨TOsw äÊ`Fდ/ä²!Ÿ^§…fÐþ Îò©þ©Q.¡£Tå\¼nŸËĤÓWØ^Cg°€)¶y½ÁP8¨ZšœZ’5¿76›ã_¥PƒÝ|f%•«`&ã¦çöÚmv[8ê0ûK%”ò,Õàý²ñh< b#](o2£ŽÅ‚×*AÖ»–æˆÀ` è9&`ë-øgþ7£\DûKa&mï¼ùk+…R!›Í#;Tif„šéªÓoZkÁéd@ ùAƒD£::8´ KD.—ÁèˆäKùL¬ŒýZQÅ*¨„öÖšAþ¿©(äËÅd,šÃ"ŠEŸÝn6»|>·Ý„Båã•R2ýÞÆ°’¯4ƒ(óPL'Óñ ¼"t±| Þ¨ŒÁZ!wY@Ï[@Ë Žx:[]?Iµ”ÏÅð øF£Ý¤ü;3ð6“Þd±˜"±X$–HÅb‰,2éx}BÙòb¹´!ÐTÅõF«U¨Ô(çQ½.‹ŠM˜üãp¸ñ‘ÞÎö}ïüâšM¹ÿ-_ºý[÷Ü~Ë Ÿ¸dËE[.¹îž{¿ûÃ?üäçzêÅ=‡:;:Í EÐIyzE(ËTJ©Dñ¥Ë0 ùh …0Õr*'’Y©­–AÁdóÍÜQ¥Åðï2@(!øƒ÷—Ëd2ðÿ*•Úb5éu¦`±˜B¾ª\­¬‘€õirI°&¨8 ¬>Ø—B+1kyrV«Ô@˜ùB½¾ÁbÖ“ P •B<èGÒ¢“³èt:G$ä‹U€«Íáö:Õz‹Ë©XYœ™$›u½Zš±^Ë'SYð q”篓áX2™L¤r¹¤ € ‰;»Qkt¦ XÉS¥’úl&{ ‘J¡R„ÂYõÍúVm¦‚*Õ Jp þJ)—N`AÖÑ"Èò/"á­ä7[ÕVÿGùÍM·z!‡2æ¨ÜªÖ­ ÄNIÌ”‹-ëV^I%’À[L)4kŽŽÏõwãN5{•ÃSL°%ì-°ò°.É– k¦[a„° G¶”óYœ °Åù¼›Ç)5“Ù ¥ u¼˜ŒøÃ…³v»ÑBT)[YKfU Éh<4ôŽp6?.bØGÁÔr`áÓšLȯÃäÊèU›Eõ0[À?€Óïx-Z³E z3¥R:ä4oU‰"‘HM$RzP*“‰y}°-üoôhM%¶¶'Öz-vk¯ýŸÃãfƆú:víÞñ‡+7ÿsÎ9ï–/ÝsÛõ¹ÚÅ—|ì«~ÿ¡GþÉÿ<þäË}#]=‹Ð=‰\Ê!±E…F-—Ê,no DY©JÁ—@j¥ñDº#WNzÜ zŠMB–‹!ñïrAåXÌzà_«’J¥rÐÿr¹ÊhÐéôŽX®Y6SAÖ½…ÿÆÆ\g }±ÖT{õR2™N'“q§^(Th´ÙªS©ÍÑXfgýˆÕ"¡r)[(eC¯Ûn‘ðlÀ?›Ïç‹PÖEorø:‘Hª’‹œ¥ œГ‘ Š¢Rª–ò¨Q rñ,8˜âÝ`ÐÁ"ˆy€ ZŒz‹MÃë­ÁLªYúÑ‹X4†ÔáGÇd¬° Шb±-,жžò7ðñã`¦©<˜ÃÂ\EEø×@EPEÖ{?ióm3f«ŽÔ`Co–"ƒÎå1Ew2®SMD²Í‚)¤xÓ‰X4 Ì.£“›¸ƒÝS}ƒt©`…ºLŸ˜“Àk°,A½X!§S,æ2(`÷@žÔs:S¬&­VO,·ÛEKx ›'Eî!™KjUÎÏ퉞šå=1®¨µ\¬4eP ¤/ªð¤p0÷é5FOîéõ‡3ÙX2Âs0Ê…bÜa1cà‡f…5™Ne+å<|@~º¶Ú1˜¡Ëíx Àñ-£Ñ/äc~‡A'—ñy|@(àó€0m   H¾Éâ%±5sJ-K«®sþtuÕ0Ð[§’A".,àñø¹é‰ñ¡®Ûvmô‚óÏm1€ Ï?;8÷Š/Ü|ÅÅo¹èâË>qÍ5wÿàÿýð~ûë'_ëG5 ÿ2 *@ ˆmƒÉåñ§kÇkÅ|©YU¥Ç3ÈûÇDóÜp2‡É‚J> àw;MFÊq«V-•bî>iáËF_¦€­pÿµ*Æþ±À†Èö% ÿð)ˆ$SàmýrØ-8p§C§ÑÚýˆ\×…` p&ì F½­Ù(ŠLŽO(–«Ñ³½^¹`¡@°2‹€NÞ5j ß+%ÂÙL"™NÅÂA·;×Åh0n ¥ “ß,T[­VOgRqùZ£ÕïñÁjI»õ<•¼D¢ ì@bþhé=‘„Á-ÞÜ"ÐXR­IˆõL Ã?ðÿF½R@_ï/b1Œ=lŠhl¾mJ¸€É[‘ôfíà9ðZ6µfŠÑXsÿy°æ©d4N€.ÊÁTM Þ¿‚D!S¨Ä™ñ‰yЛ´ ªf“0–à“ãñ"ø‰"'7 7B”#Í•*I»ÙžF,Òæñ8<‘ÁY5z£`œ.—+rZ‘lj(GµR-eÓ(”] ê]¥\®” …ü.—Ýáµ¹ôøœ6øæh0ÇÉD4šÊûš’šAoÉ‚û/Š™x$šE”­²8CáX4ê49·N*×ÿ¦`&æsY F“VÈãàó¸\X,×kÕ D"mj3Ï4ÅÛ† Ák`C 8òùü&6qqaÇÍÎLNÙ÷Ú3/lã¿/½|ˇ›¸¿ä¢³æýÏù¯¯^{Ù%[.¹øÒ+o¾ãk·Þóƒ‡zè‘'~ÿtçѾ½íí&Å¢fJv›Óíñx¼!ðÆ•\Ó^õzðŠÆ‘‚+ëqx¶¦f'Y,D<@z¬½^w²ãWþ•R)8o­\d±éÿQ¢:fUÖåâšñÖZ­)÷Êi¤K$“…P)WitZ½'ê1©4V@Vêd}}£’„"³BÈg.//eÄ-PHTd¸¾@Š€ÕkÓƒaƒ$`Sf .Àá …³qlÜk±P*d´†6«Mcè ùJ&Š©d‰L¡Õ ”ÀÿÙT©AÃêͳdóù¨Y%ŠÙdÒ‰ãÿðÄß“–Wšo]oM7†üh[èA±Z.羘ÌaIap[Í­,øNSÿ£µóž)øo·pŸ’€:s×P8YYêCÑKBéµ(~:”(`AÊ|,žL€û‡ÀmD¬&aO{[ûÞé¹i…„Ÿ¢ðâP‘šj-M$0ƳEL¤³yÀºÕ2Ù|6h3›õx+HÀ‹«Ëåva-yÂj°Èb¥šÊWk/K†BÐJ1O¤”r¨4K£u7‹wý`,ö*œ°¶Ào0hUf¤åJ¶O¸Œ~peÕz5àÂU>«Éå÷;µ2™\ø·¥>‡ÙnT"äóyÈp¹<‘8€DO&S^ƒÊ莢`@µÕI,ÿ»ÿ-õ}ù}~¿b ?‡›ö?13õÖ/¿ó«¿úÌ·¯ùê—oú¯÷Šœÿ©Ë·\tÑe7^ûÙ{¾óÝû¿ýïýàÛÿÏ_û玽€ÿ=‡"§@Ù `ßãöxý‰H4Ë1¤Í/ÓAÆ®VÖÍàW ϲa˜Á(¸]±L,QÖ,€V£RÈ¡)å2„­%lÒÿfáOËÓ×Ö?4i0¢˜SC;žöJ$ã:‰L*×h V"ä4»S©D“{5®~“TÎ]Bªks„Åe0,É„f0Ù 2 °ú"/€ør¡ 4òôlQ “bX>JflBÎê*g•'Öêdª`ÐçÔÈ…#£™ Ø„Æj6²éJ³F(3áÑ»a&½z…Z¯•ŠD,"U‘L¥"ÞrE5”?8šÐkWkõÖ슊à×Và¡Ò€äüsåT4]n]_dž¯Rjn±*•Ž·Âv›5õlò=Â(a_õ÷žY "Å“·ÂòˆØfÏd´ÕÙF>HAÀdKEp§‰„ßF§Åb ìÙµ³ ìan|r|š¶ZëL€(ÇCQ¯7ÁDJ1>éñÜþÓ‰PrÁŸÎæÒ)t[îİÝáâi=Ö_¨ÂØ å"F¨Ri¿Xf‰|V£ÙÌ_¦,³9$"™¹Ê–Z\(Êb>ÜÄÈcÆ\?0[­1”ƒ×ÉÀëxàk>Ä~£3XŸÃ¤3ÙíVpz”ÿ æÊa *£ÓJýðGøçr©ól‘X…üÊ«S*éÖ^™|ÓÞ¢MJ•z«Lª•m4焆ÏOš–ñsøÙ<ü?;Ýþ—}ÿ—ÿ|ñÏ=ô“k·lywpþÇ.¿ä¢‹/¿ö3_¹ç;?øÞƒ|óþîüÞ£üݓۻÀý·w좂ï—HäjÖêñ¸l[8r[íÞ ÐK0ô%¦Jù}€ÿjHA™% ÍÑR.ŽÀWÇ-RD®…ÒúZT«‡ÁšB®‘qº¢Øj­sÿåVñS‹Ôš4¹°hO‹½äɨ/K•­ÆlUJv0ƒ™B«f­TÈçü€£ZΣšØGÿÏ-0èˆ0Ù<z#½¼µ;°³Ti@?ô%“É•Nõµ&'Á&#Óì’®²ÙlŽ@kSÈõŸxÌJßQ¶TH[¤ÑøÌÕeª@ÌepUzJ&±“N­Ö$^¦²D"MO‚^T\NgÊ¥t¢z†Ý«nšÙÅV `£†–gVA!Le²h©‚ÂåQ@{K hw*bE9*¬«=[ÙàiP(fÀßT7møG eS`ò¹÷"/-›ÕºG3XÍgéFÛüPÍGb…B*KK`¶.O( }v@/¶×ÎöÎÝ»÷w .ÿçóùr}ÕqÏY”.‡ÙêñÅs(öZ (p“Eš0`5›ZU[Yœg ™+¥Djø[ôZ—×?ÍrhÊWê™÷2PI¥¢n$œäØ5™L¢.SIŠÌìñ;œ^ðÿÐÑPÀe5›ŒhS,ø §1N%ò9JX#ÅJÁÂnwÛ´ÎŒF¬üä-ç†ûʤ21Ç]E&€ËZ¡Nô¸©'‘H JžÔ9(™ƒñ¦ ZLýWšEŦ¸«"¾WüÛ•NoÃá`ÏLO;ø×‡~ðØž{ê·_¹öª+ÏÎüü/»ø’‹/ºøŸºõÞoÿ‡ßùú]w~뎯}û—Ï=þû;÷vtìë=2ð§­R+uFT¬`D=z«=Œ:‘Ï GÓ~/òÿE0Gˆ­áD0”N¥Á4db@ VcÚ_­>~¥Ò¤68B±7Zl%¹ªÍœa³èÕ{Ôʨúå[Pd«G²E_Ó^ßk¤p’¢ ؉Éë æJðµL8Þß­QIVùsÄeÒô,àŸ“¹L_a°¥JÆÑZl6§?r¨´!äý‹EÀ×i[PÜ9ÚÅ!먪;¡åóDB6 ˆÎæ²ØKKÓ{’E• •¶B§RVVVèt¾LÀe,3DΠ]/]!’Ùb1—²À‘J,Ž0¬Ä|8’+ÄɳtCÄä ÐýLT0,tl¡f*ùtÄç%š›+QUàv·UV»Éò¿F G6ø´=0­VË‘u@`K$ÎF?^)­åPkMï…x+êKeÒÓs¥C3>O2—ŠÆ’¥¨ÉKøüáH4ô;ÍZÅ*‡<о³­mW[{×è8>_¤tçkÅòñŒN¨Ò+ICTVXÿŸÁTD¡XNxf;Œ“Ù¤‹B‡Â0—œe*Ø6lð¸ýéÓö$4Êé\<’áX.D"h`“À/¢zƒÝ tÝ(¡f£P©`$v¯M«´ÀjAø÷m¨¢ÍdÀð¯âh‰t:_÷oÐémÑrFb–o¶Z *ðuj}³ü5Ý-Åœ)r©ù,øÀåЗp}‡H2¸sȨdSU À?¨žŠgó-7“`Ø1ØÌ?`µ¥¬ß+ñN?50‰ŸÒ4|è÷{ÿý­ë?sý'?òîõ¼á¢-—\þ©ÏÞxûý|ók·Ý~Ûí÷ÞöÕ{ŸãO¿ùûÛ Ä õq@ž¬®¢°¹%,å—ÃbsÆ+(å’Éd3ÑPÒævùóÕœ]Ê¥3„RƒÅn³»±B¥šwJÀýK°-è©Ôjd”6—ßዦa-çZð/5‹M›瘻­cL \Ž9B…¢¿UïQN$‹ÅLøœÓÂ…ñÙ,—'è\ KŠXî6å’|2à³”´ÂÂ"77ÛßÝ{Œ€L\Zfq8B…J¥ä™]O  >È!ônê§ï<„îdâ™ J¸«Ø®ƒHiR2WÅ2¹\$"NŽìß¿kÛx¥EÒ2‹A¥P¨+ :“ËfPȱ–$k™Âà‹Dâì<™csùÒÅbÜÉ¥ÌÙ6ù£­Øwšù$$÷“ÅF5øÑœtX­ÎHi8]*çó±|±VÆ’þþkïƒùRàëõ<"ÓñÓ8rs/=*d̳ɨõì»íͪ·«™µkm,¦S±€Ã¨Ÿ‰:-ÎPT"ãT["‰(eðÿ·Í§åpØóûvîjßÝÖ¶÷ÈØØžTçtÇ*ÇãòUÆèp÷a‘/’—ßL4¶°p˜¬f­Jeü‹à$<¾€¹ˆ#Ìãq +2þ"Aãv{"`‚0etÂÊÕS¶`"‡!,‡õ6 ö ðíñ ±U­Á¤áQ––È”e*•"ÒÚ-J‰ –K(‹úì(óg2!Z øçá8Ét:WtQI¿5šJºdh·,,2”ï–«±âWo®[v‚BPñxì4Ö ii¬mdn–hsµ2Æü,Ó•Åø?Ê唫ØÂ‡•]JÆÑ¹9À€K˜DŸœv³]1à ij3Ó£³Scãm{_úõCÞ~å–«>þ Þþç|øKÝrɵŸÿâîüúÍW]~ÙÕ_½óÎ[o¹ú¯[ÿùØ/íÜÕÖÙ}lt”-ä± “.å*B¥Åjµ;3µF ªÝˆMF‹Õ» Z‰-h€:™l\¥šu üK5¨æÓãV(TZ_8ˆÆÓˆ>4÷p´<À @­†íí®6¥@Á%ÖᶬK…X ðp9N»F•Í^øë]^o(—O—àg“þ¦N xlFÅÄÔØ7~´gïÞ}½Ó@ççI 6›'SkŒF ç`,ƒU›£G§‹`TC\¬`Û’Š¥|&›jDZ£¶*qWHÄéÉ¡}m;ßÞ:À­RHËtðÿ 8À2™*ƒ‰ç±™ÌU¡PÈžŸ#,Ptno( ùƒ‘/\\_αá±åÖ~ ÿÅ,ª²ÈU«Ù`4Š'Cj™Håô#ügË•B2(bÕ†l½T›­× f(åTH¥@F³§tK®ÁJËgQÎí“OŸ5yqÒÕŠù\*}R„T2‘@Àj`âÁ`è–# {½n«N¥ %b!@?̃ەór9Ʊ½ýûvwôŒŽŽ2HVK0—só9Ëý}3G0†~Ä“éd"^hB!á.®Viÿ¹ %«@¶®’ñ¸ÙÙY…Ï'Îñl^Ïï DÒyD“0mYk]"5Œkt„ž=GÓêU&?t&¡Uj•J ð¿DZ^!SiäZ‡x%ð˰ÛaYÿJ£–RäÉT\o³`°™€Æ¨×/Ú\c6ª5ªh¾ôf«Å€©b þ«+t ã2uvßðäÄ$…J"ñ³óLc²‰l3)¢eeµ™` *Û#€ˆùØuZs\ä.Žvõ÷=6¼ýPû®§~p߃_ÞrÁ‡?ðîè?çœ|æ«_ñÙ/}íÖ®ÜrÁyç]úùÛ¿tÃåÜü¯ÿþøS¯í0<>¹Ha¬Ð Ž•*Èd-{ùëb2s8 `—ÕhàMNÏ-tz˜ w®ZI[ÿ— º?„½ ä™J£7£±H ­:”½)åsÙ¯6«.±Ò«fé;2E;‹«Oƒ×Ï'=eÒ(äó9v‡‰/ÄðfIfpxÉh4Ά~è4¿M¥ µ uíîì?ðïêüs Ë,&“#jÔ$@ E±ŠUöœÿfNd@)›Ïer%B¤U2¨+,:…¸¸053ÚþÎÖ7w ‘™Œ2òýà-ÈL¶ Ÿ—Åœ:Ø(œÒ*eni~a^äB;F½´32Rª£BÏÓð_«6P‘áþµ\,„9“òÙ¼~_<é”rY|µÃç Ä ¹l2à ªÕr5T9²ÉXþqÌýÇ#‘X4–Bù4ðÿëyC½Ü¬$Ì£BÚT™  &BO» 6N­ÈI½‚*´²'«)K ŸÃn·šu±ÅhuäjG(ì1X,Jp f«ÕdÔÙ€êHÚ#_åp(³c‹„ÞÝ»÷ ö¡ó¤&›Õåw)Ù~z…k „°ŽDóÀ²™tÄk1À*4€›ÕªUR‰T‚RVêÂÜÜâ"•ŧHB *Eõúa0c T–ÎVò¾,v-™1/OYa3å€ðPI¯”K¥R‰Àÿ2W,‘imwÀsŽùÝ6¬öG¯U)4JîÇ02„ÅyMF5†~0D …V/ãòøÎ\)àŠå 1‡NãÀ’à2Wh¨-SñÇÆPŸ˜œYä(Ld®YÍ‘kyH QŸ/\üÃ\¤££ 0QŒè4rü†€02Øþüö{žî·ø×‹ÞñÀý·|h#Ô/8“8ï#÷~ú3·|ù–ëàâ}äc×|îË7o/ýÏÏ>ýäÞÙ{èè nb|’°°@$3øb±D®3èLÀe¬Á40÷· ¢A¯TÅ1u챡#£ólg…&rF"^­ð/”«U2d´z£É´ÊKæ Åð´µXn)€f\#¥xߣ_ûò­ŸûÄ)Ôÿƒ‰\xÃç>}Ó§.;ÿœsνøú›o¹åæ1YpïcOþío¯õŅC·&çWxb™Úb³¡üf›ËPe£\¥k †ð¯åÆŽ<6;:69Kç1Át2PP)áH0à7š,®(F$1…SjüP­ÛÚy,àIÀñ§ åbJ·ˆ[fpÄ"ž±ª0‡³@E£JQÐÊ%Ó© ,þ*“Áá¯2VX|¥NcÄ ÕZ1D.Ý)çÌÍÜúüs/½Ó¹wÏÞƒ‡Ÿœ™ÇÍáçY ¹Zkr»v·?Êœ¬Z‘êZ"FÌQˆb®q)”z%—F&‰DÂ~frbzG ®0VÀÿ“Éd 2¢*Xwæ*Á_Èœ›ž%àçðDºB%Ò; 9]ÞˆÓœhœ«#…¶OÔ€— M”zUÚ “Çë·²L“Ú€Cø}nÌFóÕfÝÐæóþF5 wŽ¥2ÝÌŸò£è ¹Ðìh$’¬`›úÖê‘°4ŠØ¶ª 깤ˋÕCçÓ(•Ž:^­4ë–Êq«R d™¾DÒ)dr…\¡µº>—¯P)Ì¡#Só@ÏýÉ|Ü.a® F<ؾ»½…‰|<‡zuq‰Åá0Ù+‹b{0‚ª/B†<¡Ø@Ó‰ÒjzŒþür1*[ ØT2Bc‹™óø®¿Ñ:…/âV2f…Õîõ¨Žt¶õL€c`*l³Í®H“ ðO&“HÀ?Éáªm&³Ç¸7›N¬öפàs¨„ñw¶nÝ}ŒD‘éØŽTÅ*‡/QÊUr>w•C™™£±ù\}EN¥ü.—EÎ Ì/1þì°ÀS,ÍOOŒ÷ôMNNL‘Ùr# Ìîtyçé:×é: À¹LÅÇóñhÚ,8ÿò›nùôÕW£¿^úÙ{zøÇÿ84:6¼w×¾þžácƒ£8*O¢¶ÚmV“ÉöØã°Ø=^›V&SëQ „ÌžQ+ îëíéé˜mþµ½£ˆ(8DžR‹‚€:³Åæ ݱí*åjk³@­µÛÜ’AÙb)¢Yd¬PH¤§yo¦P0LS]FêÌÜü"ye…F]Y]eÁ7«o *×*ilË…Z²<}tï¶=ûV[:ÄllÈÕØÐ`ooïááQœÄ`F§1˜´J£/œ,ŸŽ L¶Æš•:õj>/–óvs!\V%×hdl"´ÅÅ´íjvbjv‡Ÿ§²–©˜Û'“—ˆ$0”eJg°V9\¡€†›žmV"PiL½ ‡ÝÈç;+k³¾(4xk ºžMbUr‡ˆ½Œm™úBbâñ¸]nÓ‰À¡šÑ¢MWþÔJ¹D$Ë[ló´â‡F=‹©óP¢¶V}بŸ8€+Ãf,ïqYíáb½žõ“Í0[;3‘ŸL æ å+dŠB"’ÉeR¹Jï°*WY"™”<ØÞq”ª.m &ÝF9d}¶§ÐßÖÖ¹»“ÄÔÉ(K”%ÂÌkqQ Æ±`>xì~—}ë@Ò[£Ñ#û²[ ø—Ê¥B02:GÀ_ÂãçÈ þ]ÎHÔ%‰WÙG÷îØúöž±yûÊßþøôï¾{ïퟹöº›¾xã%çœ{ᇶ¬¡ü¼ .ûè?r廆Ïÿèµ¼àcèo¿ùÖÛ¿ñè?ßܺíí—^~áoëÇÒÕB±Loå0ÛV- µL –W ²ÞhT±F ô÷÷õöŒÎ~á¿ùó>¾€Ï°—¤z¶Àä5„ü4C•MüWšGÍÕ±,6¬_,—+⊙Á£3Ë ÚâÂKÀ ÑY :§›†U‹Óxqa‰D\X$­p‘å!_Ε«¥t4àQS©s3»Ÿ{úoO¾Ù±gÏÞž±éI`WCÃ#GÀ@õâqõfe‹Q.2Ÿ± íá†n6Y¹”IÓð=^`˜°¼VÙ°PÕ%vÜ ‘0;96>5NŸºŒ( ¾‰þêþE¡-Ó¸\2‡ÇöhÌ)\£Ëiw8mz´ 2èXðÆÉ†âèX¡C+‚^/‚BÍ¥Á¸Mše¨ 2i n.Êev¸=Þ@Uý %´c¾TÞxvä»¶J ¬J4Y(æKØ&ÂÓŠµ\<ôÈ¡ h3J»–¥E yÐf1d·­ªX*átE’©l±§\6ŸE–Ëú ýŠÞ,¦s¨¦L)ˆ¤JZ¸²ÂdsÆÚwíåÂÒP)U:K8¨à°V(ƒ{:wïÚÕ~°­}lˆC:ÜsdlÏd3é t‰Öúœ®`4h1YšçßÚ­&ƒN Øë‚¡_$VhU"à† ¡h•¾8COZÂ/ðÌ‘T̃Ná ‡C T Ößx ¯í­·Ú÷ï8Ä“HDB{ež°@Ÿ™€5€ €Æ^(´¬èÏäú €QL%§öu½ôü˯´-ÈõšD£SóhœU‘XººBÇM 9vtœAaÙ=n¯Ïí/ÎÈâ"ÀaÓˆduqxï‹íÓ„y nž)Ñ[`mI—Åjºþ©L2   y" {]jËí{{ÛÛûúºþrßÃýîWÜ×]_¿û7ßxÃg>ýÑ ?üñë¯o9üó>ô‘+¯úÄ5W¼k1@óBôñ“7ù¶;ü÷gžßúü3ÿùçsϽôöžÁ‘‘‰Ù©ÑöØ®Þ1¾Én`øþ¥ t2(¿ŽO"Lìíé?‚ë{ùÉ'žîáñùÌmÒi4èÄ«? è‡uÏ ƒ9QQOmÿÉæ°MÀÅZ£äv±¸”2>8Iü/,,®jVé´®ÌW0.©c<Ž€'LÃÍ –Ø2™`…iE…Ú‘T±RH„|FòìÔôÛ{wüëé7Ú;÷ì뛘šæOÀáÆû»í;4“*ÐÚ±Y¥LSþ ¥o¨Ò*‹¥J°¾«(ÖšñiDd"NÂ[¢óWæ°6?‰âÜÔØÐÑ##s$Ò ¹Òââ™ ‹††™r3‰´8O{1G³ ¶8Ìv¹a¤p²Ð¿†69Ôsµl®Ø:é)ô80Aä¨C%eqqnI\Z"²T€W8Þ,@¥ÿhgLó(Ö͆ÿsˆ‰j•"VÏÒœ~²Q›’ Á ×©”ràÒQî¹ ­”²idýÚ?°å‡ù럾þBÏÐðÑ#‡ví=zhÛ[í‹K§þ¬GAR©T@'QéRÐÄK ýûºº÷Ø·ã­7_ë˜gòyŒy©EKQÆÄ`¶‡c¡àßL#RSÊ­öd©šòz£©ˆÇfpÕn§S´Â"㎠ŽàÉ4à_¤dÑi4ŽÀ‘Ëûô鈆 º{âØ¸Ó¹yºD!a2ä|¦Éáò¼:?àäNµ8²ç弸³³óàðÔäðÞ}íGñssÓ={övtöÎIä:Äl‘#_©vä8Bc*™Jµ” ™øó¸™é‰ñ)Ü\³Í/B·ˆ­67››<‹HŽ•VÐfŽà'ûtþwwìíH¥âͳi#~­ÚjX]:0‹$p›fo:_®ÓéT&Å[çalÊÿ7K 2l“NùLÇ®£ãn qOj²ƒÔˆÐIØÞâb>kjÜ»ÝéÐë“sÿÔÅEÒ²D)R8¯Ë =Å‚õ·¢jns¸Rœ³:;°õµíÛ¶í›X¢­ ù|±€Õ¹©É™ÑÁÃ0ÿßè?°¯³£³£cÏþCáaªeJ _løë"¡@À[Ôè7Ñ "kº@&W«%*Á¢Cø—óix<7ƒ£iE\­Ž¯5’'ûwôÑ8RèÕcÜùñáÇ?{ÏýÛ ðt^Ê4ÑݾçèØØäÄÈȉ NYYaˆ€ýƒ×} Ñ€'ãp5=o¢»gàÐsO¿øø_Þ|gG{Wï4cUªU fȽíÃ=í»ú‡:wîêSóñt±\.Zž<LzU€¶q™Xž˜L!Œto}û­ž…¶ÜN$Ð~€,:Ó!ŸÏ¡êÉTð¯&Í$£O½ô׃Ã;žýÇ‹ÿyùõ¶¶×ÿú­»ïøÂ-_¾÷Þ{î¿ÿþøÎwï»íÆnºéS¿à‚ /¹ò𫝹îêKßÿç_vå'>~ÕÕW}òæ¯Üúµ;î¼ÿáÏ>ö“ÛþôÜmí;·îíÞÕqx¸{ëÖU»Ö¬Ónµ¥–Šä¨TZ Pêµâ TVßþÞ±éé^po>ûêè<Š“ËÈT‰Þ´f¬¡t:á÷Æs¹TÐ†Ü 2\g¶()¸Ù¹Eü4 ¿¤²IGŽI£Ã³<×óæ›x6g…F'MôîAŒ¾krÇ[½Ó0£ÓxG,bÒÈ+K##ËR™%Uð¹¼Å‘É‘®7^Ûº}÷ž}C“ý»Û»ºþíàWºg‘»¢ 6«Ö[håXËëN@•—å\. @4Ðõçþ³ @øI$Â(CÜÂìÀ€ŽŸžÂÆ`)uO/-HP舌f k•ICu$DÜÙ&b“6_.÷¯s¹\žlµVpƒ@ðQ†(Πð_KB%ñ´KëT+”ÄÅù"° •DáiŒF‹']@Ê0¢qô[Pj'ŽŠÜˆôS¿pâËõR;ÙºR>ýœÜ:øÿBÒ!]é]t“i• ‘Êeåž@l´;´:eäˆD*‘ØÄl qa‘Leêã¹<Ú‘™ÎdâáP  LžPªÕé”6k•Ï%OOu¾ôòÖ­Ûvï>¼@c^a‰•J qzjbxp°g7ªî²¶§ AÇž}À¯ ‹Ä| ‘:³ P)E,.“ÇD;:èL¾$wld&Ó¨U áR5hMµH Ky,oyvjŸÆ-yZ-K;º¿cï(•ÅžêïXL¼y×õ<öÄãOüõÙ]Óô»¶m839GDÁÜ¥e–@mP+õ`SD*­ÌhR²–9ìå©C{ t·½ó÷ÿóõ­oïÚ;0³°´"XÞstÏŽ:wíܱ}ÇÎÝ݇úñ´IO.gãF†‡&Fh<Â?‰H!“`AMŽt¾üòŽÞÑ®ÎJeþÉÖoÎÉb{âA“ŒÂˆ_¯Pz¿÷À/¼ëÊëÿï>þÇüæÞ;o¿ýö¯ßýÍoÞ{ß·îàÁo?ôȃŸûÂçoºáÓ—]ð¡+®¾úú›>÷Ù«6áÿÿë’àcW~üã×ÞxógnüÒÍŸüðUŸüæŸþþ¯W¶ï~gÛ›¯nÛµ··{ëk‹§šËfÐjB¾&$H£—’¦Äñá1Üôh÷žÎmÏ=þ—žùÂøc¨w–$2`àÍC‡@(†v›QÉ[¥—W¥ô™É©©©ñ‘ñ#=“ZùèÀüøÀ‘‰‰QÜ®¯ówáé æ÷v¶oß¾kgÇ[ÛŽÎâffp‹+«Œ¥¹Ã“¤Y‰*TKøB±L*áQ¾õÊK/¼¹}g[ÇþžÁ±‰áý»w··wüww^ü“{ÕV£Ò–ȰSžKõõ{æÅBÄlóÃÑhÈ)¢KÔ<Ðÿ)òìó“ýíûŽÃaÂçg§†ûº÷uîé;ÜÛ=|lzlX-~êp?Â?+òÀ2ƒT †âÉÚf2:~pÁ“Ì`µêô¦àㆽ(N‹Ø­¶ˆŠ¥Vñ”r˜ŸšÄÃýAÿ/- ´È¤ X}^4M¡*ŠÓ¼£š e[Õø§ÿŠtx3ÚjXkž½vò‚:R¥\Ò%ãråÖdáÄ™àþ³!®€ÏÆÏ1ÕšÕ‰oOŠ%™š¿ÊfY:&›E2Ɉ×a·:ƒA¯b™+8º"W ÙLÖ*‹89rl¨çóÏ¿üæÖW^í!Ð8,ú2™¥P*èøé‰ÑcýímÛ·mßÑÖÙ¾»mç®ö޽ûöØ»·gbzüØðÈäò2@’Ì 3°ÈÜò2Cf¶é™C‡†—…²U”l]å)´ÍgRô“E˜ššœž™žÅÏøé*›ü맺úzÇh‹ƒ=GvÚÿÌ÷?ÇOâxüñ§^ïêºýí]݇z§À?ÉDâÂ<‘ÅS¨<¥V!Éå<£Y¶B¡ãî;px »ý_þ×K/¾òü¶C38‘¼°¿cÏî];:ÚvBÛ±sç¾é‘ÃGÆÇ&Ø29mtppÚÑY&ÚþÃMjqnnvzê૯lë¡h"¨8>‰¶za Þ?¬f/“ó ]m§É“ÏÞó{ïøÌ–‹¿ðß|ÿï½ýŽ;î¸ó®»ï¾û›÷Ýwß>øÝ‡øÚ]wÜvóîøÌu×\s͵Ÿþìç¿øÕÞ[œÞ¹[>öÑ^qÕuW_ý©o9ÿÜ îüý_žüÇK[·¿úäÿÞ¹k÷Û(B½Þ&Àe–rÅLS¬TIÙ Ž\¯fŒO-‘I  ŽgÆú÷í~õ©§ß蛞™é9zp÷_o2šln_$’J'!pt„ªb7·@¢ÌOÁTŒŒ›=r`OihÙá¾Þžc#]€Ú­/wM’iTÒÌ×`÷®mï´u›˜ž™Å/IøÙî7Ææ)\•A§UÉ ‡ôü“ýûÓ/oC…̇úÙŽ˜$X=+¨6cîž)rE{íê ÓUPÄkç˜7Š I¡Üä°+édsyjbbrb¡{wdwLéxïÈ4LÞx_g{[ÛήžC{tONk!ÌNikëë›ÇLcy}‰H^Á ?ÙBt„À)A¿Á¨PNDrF©RÛ-no4WL{¬nð›1“É’0È e ânl{ ót0¢¨2?ŽdZêÈK¾Ò¨WZÄzÉ“Ã,[µ´Fñ×—ðÕÑÆ‰VvÕüÍ •x<‰Ž(%Ca—QÉçŠ ìwŠ -¹xle:¬˜Æ-1qG§—ð‡·>×Á’HÄl.Šh/ÏãÙö(:47“ͤÂn‹Éîrû=*E*=8¯Âûpè„©Éññ¡¶ÿ<ûâo¾ôÜŽ¡›Iž¨’g§§'LJû÷í|õù_oç¿« Z{gç¾ý]½ƒ½‡º¢ý\ äûitM:Gª‘º-s8>*µæH4èxH­(…œIšÃM#ï2=E`ixT*é•^îŸ;ñ„C»¶>ú»_ÜóÝï?ôÓ?>ù÷ŸÿÓ_ܱmû;ïlÝÚñÎ{‡ç––ÈKK‹…É—¬®p„"¡PÀãL¼e*k¢db¤§gÿ¶?ÿû©§ž|ò©×»Ffps 6zÚv#³µkmíû‡†ûûúŒ,‹d+;Ÿ?Ð øœZFñ¿éI<dÂìÌÌìÌÁÿlÛÝ}dhxxŒlLfÓqW" •ÿŸŒ¹Ð¯÷èݾ£}û+/ïîzã·wý¶Ï~äÒK?ùÍïÝw×m·Þq'àÿÎ;îúúÝߺÿ¾ûîà;ß{ð߸÷{·~þk÷~îZh×ÝxóW¾qý‡ÞÿÐ.¼ìò\þÑ+®¸âc—]üóϽâöŸÿú¯¯wì~öwO¼Ò¹óç_îšaÉ —ËÄJ»L_•(ä<W"—2¦'‰(úM\$Líjí™—;ºÎ î?¸¸÷´Xo0Xn/ª½¼n»I¯3Ú튩ÑñEöâDÿ¾½ûzûFFЯ;Òs »çÐAûîoÛݱ§íÕm½‹`v õܳýÕ7_oïêëÿ´½|•Wº.Oà !’www÷ìl‰ííîžlËÞqw7b@€âPh±º·Ói{FÚ™Ó™{ÿëKhO§Ó;sþ÷wî !Ùù¾o­ç}žç]ïZ«µ«ptzi~HŠnŸž¹rÿÙóçO‘+•]ý·zû{'g–6®m\}ãñógwŸ=yr÷÷û_ßÿ´žÚÁæ‡÷?¿ÿÆÕ±þá+›ËnS#@þôƒ"¼¿¶¦A«koojêìëk×µ×*êë5Õ‚^\©†®lb|¸[)Õ2š§¶Š‚·¢Àêêâ,”^^ž_X¿~è¿õé¾Þ©õ—Ÿ¿sÿö½‡þïnÜ|ùñ×ß|þò”¿55>96 ?4Ñ07 )€á¨èÅ[ÐÆ²¯>ùZPð»/¿üÚ¿hk¡ø__<þð3à ·×êýýï_|ów¨ç¯?lï*õ·>ÿË/Àß¶Ï€J¯AøÏï¿ýèÓ€úÃ{yíêí—Ÿ}ÿãþðýï EÖŸ¼ýáwþÃOÇuºž±~]çH'ºuçîÝy®n¬-N/Þ~þÙ·_€8ÿÉç¾|öö«w^½¸7?>yý–¶uñêúÚÆõÍU ™†&µ44ŽÄdS±œ¶ÉÕå‰áåõÙ±!ÀÓ}Úæ®’Ì‘Þ%Dr¥¦¾¥­µ­^­RÕvA ºgV–¡õœ[ sCZuóUkÿ«3“‹o<~  ¦>^ššëëémprñÁSc-BfTBEC[s==å’kDdnan1]Nfá«XB.‡Ããr„4¼˜<ðø§g'ǧ×®m¬¬^ƒ&´¯oÞ»·†þÈÈÂòD½š‰)Á—–—"èõ½c³]Ãý tÕ Ij4u-ÚÖÆÚzÝØÊ7;Å2qS[›nbà¥I­Òµ ¶7µtH0}öÎóµþîŽî¶U£T©Uê¦f•\.×Ô)5• I¡Éå2E _(ïèl“3XµZ5 –YŠ®ÀI´j•RÓÜ7ªÁãÛ¹›»zçÑÓÇîß½±T‡ª@–ëÂˆÍ ™ZY éÐTµšžëw6G[‡€w_¸~osemccqdx—~üßßC+lÿð=´¯Þ‡¿¿ev ^Ñ3=6:5 àß?:Ôß?2577Ý[[ÛÜÞªnhlêìm•Uk”²:iI,>É—HØtº¨ÍÁ¡PÚˆôÌ,n€EhaàêâüVEÙüôè(p½]ÀéÖuo<¸sûÞƒ‡ž¾}oiræþ‹?yygø„eÀ\}]cPNa;­8 Ð@229½týá‹Ïž¿zïTÐòå—ßüšA„–M°4íá_}³µEñßÿô÷ß} UT}ÿSIáß>™þôÇ_ã:NóÏß}†ÛŸ>úøëï¾ýÝ‹ÛÐúÊ«ëw>ýó?þùËO@¼þä“w?þÓWo?ÐiuཿE(nžÞ¼ûè JW—WWæf¯Ü|zûö³'AŒûÙógoÌ õë´]ÃK«kkס›‘.m“&Ø*MÖ?·¼¶¶<96<68zh¨]¥©ç Ñì­)À- Ie ­ÚÚZ[êU`œt@¥TSK‹[{:]`R[[«i²j~ãêâhogÿüæíû¡C«Üéë~ÿñ‰…‘ ž‘¦H•>~þ9ˆòŠJƒ¨`pXB!Í!€I$HÚ»zººÆf§&&æVÖ€t¹¶ysmpùæõk‹ÓS# g'šU¨¢b\E)¢NRwÏLuuŒŽi!· ” \P޶MÛ\«nÐöÌmÌkÅ"u‹®sD‘ë3*~u]½DÒHªb¢h4AõàÒÊÚâøØÒ7ß»öuìÿ5ˆ«c ‹cí¤¬t$‰ˆ«ª(Ëw6ß±{ßñãGË0iþžž^ž@àéåãêån{Îæä KK› ç­þÍz }#“í;vï àÀaËÓgŽêëì=xùúB?ï¼ýô­gw»ºZT Em£F À®PB¨—CE»ªíÏ oÊdÕ‰PÂgF§âëUeÎgb³S“=bcrpDL%I Ä— »,ž™»rxÈû·VûÑH4 YNbq8|EsCM5°ý€K€“*5uÝÓsc ã§Ç‡Æïl v57+fæ® V€ÿøáÇ¿üÇ—ŸÝ™nQ¶õŒLŽ üCµ¾³£C­-‘¬±©¹³©Z(W¤°KÞûöyÙ!kïÊP(’ÕY- }³PI0´0`qieynh`rv~a¶¿kþêhŒTóT=ó×ï>|øðñówf&§Ö¼xïáêT;07~WGÿ(Tp03;915 UvöŽüoÜ~ëùó—/žß{õ!TÑòÍ÷[g±ýðíW׀˸ûÁ—¿û:•îoøû¼ÿÙоR@Ù|óλŸýøãìØ_¼^Ê·½µ$„ÿøã×_Bµµ_AµTÏîCe‹ݾzãÕÿó/ß½„Å>¸³:³üèýÕ±ÍU(hµ:]{g«ª}óîÓ—`\™ŸW9624Ò7}ûêæ³ž>}üèæô@› RÜyÀýæÝ[+3€1:*2:! ™•›‹Âd“PZJâðE"~6›M§Ðj€ïÔuôLLŒÏ^Y[[º²y}sV¬½º±¾±275Ô tˆV +1ˆÈ’X•¸±­£·³V«Uú—Õ@! ZÙЦÓi;:šê5ju[_›”ËäÖvöO®üO7Š8<›Q^”z ƒ§Ê´ãËkë+Ëk ðnÞùò›ßû‡ïþã»/>|sn´sL'§”ç¤f• q8 "ÕÑxסƒö.ŽáåXxJX°—»»“=d¼}ü‚BÂÂÃâ"##ýNŸ¶ø?}ÁéòÉÿÃá¿?5³Ÿ 00? À 듇ôô õLíÌÍöõ-Žö·69\á©x§,­šž›¡qvztr~õ:´¥Ùµ+PÖ{frtdt¸£^­”aÏñU*—ß³2¤›Ø|üôg/¡äᇟ~$øæµþ^ T¶ xèƒZ¾ })‡ð/ð8,r¢ý¥ :ÁÆú‚¯³Wˆ¯cX6]DdY×Û?61˜rÿ7–›y¸r‰¥Ñé|us½ê ©Xú•/‘©;šë&§&´Rñôlcµ€Ç•Ƚûü÷?üù/ýãן}þûï~ÿÙ‡ï¾u{vh¨M¥ªkhîîëïcý}]Íš©HÙÔ h·Y«°9”ìóæ{±T‹Íæ)Úºš«…"ŸÇU ”³P’wšIššnÔ耘›˜¸¾Ú(‘Vk¸øŽkÐô×ã·ŸÞ›ŸœœÛ¸÷ôîÐs³ósãÀÅ?99lÕ$P£ãC½ÍmýãÓ+7î<~óéË—OÞxøþGÿ¿ûîwŸ|÷·?>¾óæÂÌìÊÃ÷>þøÃ/ÿº•öûËÇ/_¼Õåüð—fû®|ÿãõ±©û/¿úëÏôÿ7è\?~óÕç_üî›o¿‚öy|wóêúæÞzëîÕk÷?üó·Ÿ?}òôÑÍ‘apëKlvËõùÖæÆ@ÈZ]½ªwõúÝÛWÁoŸîîèìëïªÕôß^|jýþíµå™žvqYª°m èðª+íÍã:AU:–H òx\ÕÐÂÂx“¸it Ø9;\>§QÁð…B‰D MÊ•*MS+pÎ-õµµuum½ÓK‹@ AÉ”•Õá&µºN;>3¹°¸4ÜÝÝ=Ð¥kӯݼucRħÂráÔÆ~@HƒC5šˆT˜ž”˜ŸœZ’—¯¬"’éz%ÊD,pQ6“ÁQøwõõ·µ÷O.­®ÎÌ^[žé`ŠÆ¯¬^»¶85Ù§íl¢ ÊÑ\©(¯ËH ªåj‘P(–6idдe]À{w·¶µ8•ÉÂWŠ:§!ù}e°VÈf2Ñ1¡Çsiiüæî‰¹ùE H×Öo}´>:ÚßÓ¥‘ËjdÛÐßúkKú«Ôj%ô¥ øv‰@ÀçrˆÁŽ®~î^®N'>lgyøÌ…,‹./÷ôOÎÍ­ßîÿîõµ‰))…,«$Ð¸Šæ¦Z±¸Z*]Ç¢X¢êjE“N=Ô×.¥Q8 ýrƒÁ’Œ¿õÞŸÿüùÿúÍ{n¿ýòÞòæÍùå ]gtYj¢±g`dtkI9hƒ@µ‰„uªš¦Žæúµ˜Ë¡•Øï5÷)%²ht]]+£@.ç øL†zpj¬`|fzfªWÛ R*e2iÝ@góüâ”TVצ+Ï«»zÿáƒ{·77z'¡6³úÆæÂôôð“ú'!09>2<6>ÐÛ-)»&W7ï¼ùàîÃÇ7oÞy÷ÕÇ |zcèΟ>Vª6gg–n<}ç½÷>øý¶øäÓ—/^¼õîWúá/?¼Û;ÿ»?ܹñâã?@…üýÇíí×þóû¯¿üòã¿ýË÷_ø¿cu}Øùë×VWo¼ùö7BK[6:¤Â¶ñ©ùa.‘9Ð/«æ×¨Õòž°¥­±½¯NÕÖ?49;ÜZß ëïnªíßØØ˜™Z]éíеÉK£RxªÉ©ù¥ÕõõY)¹g¸“Ã0h:[DQN Ë‘¹(®¸º®£g` ·YÊ&—#4“Íö—úWÈTÍÍZpšë@kê_\‚X·õõÕ¥žZ…ªuxf¼sdj öîN]{{KÛÔõ뫊˜„ø„Äø"å@W½"éèn%Äj:,»VŒ„— áù…Å%U$‡Fáý X!ŸN&“øMÿ݃ÚjmûðøøÜòÊâÂü†ÊTW_¹¾11e©kXt…Ëg•Á*„`ý ‚ž—Öw7ÖÕ6w÷Có}º®på0º%B>Ãm_ÜËÊp½˜J g{äx\öðŠãöõvvuöM °¸´6¸qãÆüÝgÏ_>º1T§•ÒŸ¼Ôä\2î¬Õ.Ã>‰9åh$‘ŤQáÁ®f€­Ï»yyûûCø„àî~êĉ–g.Ø»ú9[üËúƒ½Ç^oh¸çäÅ÷o¹ý]ÎÌ 8àåbaqÑZÏÀÖ0(ðÂi÷,«HÖØø ´¨âÐÐðüõ­¢¦kKÓ[(ìÖÖILL1EÈår T 5'«GëÑb¯>¼‹¬¹õøÎý'O^[šlm_1½J¹;ðqKú˷¼ZàÂxLRyN„—›½—“Ë™cgN9|äÈáã¡p8’ÖÛÀ9¿t寽»w®ÏŽ´· ˆ(D9¦Ï×4Öɤ Søl‡Ë£ˆt6 "R%¤Ê²ÐK!ã Xl>·mãþW½ÿÕïß\n‘hªi"iYŽ$A\ΦB”=8´µ¡tk½ºZ!ŸËËyUcCSK½\*Äø8Ù½ÏK„Ó¨ ”…F$JIlE“‚I¯›šéѩ鹂ƒÊÓDb‰ˆ-­ǤeÀË÷ܾ:.U9jÆ'§É^»>}œžîï蘚šÔ; äñÈHgg«TY£]¿~ÿñ­Í›7ï½x÷êÝ¿üòù\×ô³¯î0¦ffÖß~çÝ÷Þ{ÿë­xzùþó/Öo¿ýéŸ~øþÝžþÙ‡£CÃso¾zïÛÿþ¿ } #~€ Œ?xþéŸíôúþõÕÕ5(¯¶ººq÷ƒO?2i›BA]ßøÔt‰ZÝ!¡3ÉÄ* _Y%äf#•íº–î&¹\Áh÷ð:ÐKMµõ-ÊÊ„øø ¦€©™žY©qUÌ$Y‚&•g!ĤäÂììœìœ2N®§»YD«‚!*t&›Å†Ð_]£PJ(D‰¬ Ê4ÔÕ×Õ·ŽBØßj«sý*·iz²[S×3ß×ÛÑÕ©Óui5ºùùÁÒÄØäô8tÓ@«ˆÍ–iÛ{úkHxY!3 Ac³Hå¥åH8B#“hl:ºŒ( Yl€ƒÈ‚šîìloiæÕµ NÎ-¯.Ï7¡PÒ±8ׯ›ínP³Ë°4&…Ãç±ÈT:ƒÉdr ô‹ÄMW'‡º»úGLJ:´ @³~õŠj)GPW#kÑ _½¶ym­§¥†œYêalddç›VÓ$­nîšZ¹2?2Юmnm›¸ ÍbÇÏßÛÇór m…磊-ΤÂ଀ÿÑ‘™õ•µWÆÆµV×2+JËËÐ$š@ ¨_$€±$’V‹¹t:“Pïn‹p66<ï—RJgÓét](àþæeB€››wP‚ªpUv:‹)ÂDÕ¨íîÐÛšEèíÒ5*…„*:Gc)êê[zû;š¤øL”õž]'2£½1•©ÅdƒÍŃu*Ö Æ`“îÐ@‡VWÇfÕH+3Ó`ìq É/¯<2–—Ï›½ïê- å(˜š›`bll˜ý±ÞŽŽ!`ÿÇ7îÑuö÷õ¶(jR]W×üV ùææ7ž¾¿±´þò‹/ïuô^¹«f6OÏÌ¿ùêÝ÷>xùòkhFðÿçŸ_½xñæÕÑÅWß~ûvwïØ®g¿Ø¸ùò÷Єþö6Zß~õùÇϾøøC ÿ?|ëæõÕ•mü¯_½÷Ñó7Ÿ<¹×*âKÇÖç&'´$NK_Ÿ\¨©•+±•¥XTf!V‰kW’èÕµªºN âG‡GæGº[U2U .>.*40Б g³kúV;iUe¹ nççç¥%¤¢ð°œŒ¬¬ìœjƒV)¦—Æ ñþb±P¤aµL¡¬¦#*Àlÿ¥{taõ5þ—›U5Ä2QßH§¼¶q²¯MÑÚÕ®moÕÔ71ccv'…‡EÃxMÍÕ\ªµE×Ä%â«å„œb*—ÍáRÑ”r$”&ÈåÐÉt¾G£syÔ¼„lzsggG«’Ÿ”PÚÞß;:42;?ÖÆ%“*á³×&óKÝ>KàrXlž@ÀŒÅd09(ï3±>ÂuOgï@nÿÚvm½L"R´´´´i»ff7Ö:ÚªÓÝâPQ;ôNFÆÅS„tFuÿ••Õ+sc#ýÝSƒ@á=è¿`j´½(73#35)ÆçܱãÖŽþA)a!¹HàŸ^èë»E×¼ƒýˆˆoþgÏZ[Z9xyûú¸º¹Ÿü—ø7ܹåv0Ýñ_§†›Ä‹²@ ?ëg»c×öŠ(XqðA w77´êºÇ”“ Ð`¼º¼¶¶8;99å­€ûåñ9¨r6—‹O ô Ê,IÊW• •ˆ’„¼úщ…õ+3S³]ä®H®T …ü5õІ]*¨ø  ÄiuMˆËfðx\Žo`Txrffj¾×ƒ=Ǭ¢ ly{__ÿ(xÅŹùé‘á¢NÅ”—W™LƒCÎbðYl ˆ;QI¤ÛÚxAë!ö»‘é ®€L¤’©|E‹ví¶0§ŠS™Wæâˆ%b…e±ŠE"iÏðÈè@ß`Ÿ\\[.‡^ZŽÇ’|e]­ª}¤O« Teí³¶ØÎÎ'ÈÊô|¥"O+M+ÌÏM)£1Hœ°¥KÛÒÜÜ,g3©Å9W$#Á£œÃÓ²3³ÄK÷7káT$F%ÔL-€0>>1::59>ÜÛÙ3ÜÚØ¢ëîíl©¯W32cE¦ÎÞùk›ÛíÖ£·Ÿß»våáG_<›íœxø¦–Ò Àƒëמ}þÅË·¿øð³oþú×w^¼xþ`~tæÊÍëÝ=cN ]}ú` «oêÇýðÇO~øó_¿ÿæÝ·?zëý-ü¿óî“[·¯¯¯\Y]_[¿ýDÿW»¥üúÍg×&ǵ̚¾QbœHA-*ò·,«°ª8½I­Dseʦ‰Ñ¡‘¡‘ñ¡þ®V%#bÅFGF{ۜˡR*Šqu]m "I~x+*ÎN‰ ‹‰ô· )(,FæËÚTR ,'IfùjµB¥¬©ø—KÙ¨ i[}[[º©¥©­olbfi ÚÍuc¬³–…à©RM£D£nlÓ©›:þu šzU®Kœ[‡­mK¹"•¤FÊ#ã •¹©p:—Ãá°±xržËLÅ…þð8D"•Â*ÈÎHʨ”uJSS S+Hi²¥»–#®×Ð)DD‰låjóØÊr—€?“%þ”‡ Q}×èÆôØà@Og@¾®ø‘6(y©rEbEkkûäp)]í JLtHTªGfna\WŽ¢w.¯^™îЄìÙ«K·ž;>5Öw§ñNCHíq+"RéL&ƒE'Éd–hæÎÚ@5¹Äý¨ùy:[RD“?"WÕ7wŒ ôõ÷¶ ØÀÔ³JýQ8²P*Sk”²–Áá%¾Üw÷Y¿ GN37Ò?—ésäbH„­­E²M$ Z;´ÀÖ6«Ø"b!GãÒ!WØ„§e¤%eÂy-”¨ŒÔ´âø’¡ùÕõåa]cë0 EG VÙ2ÒÖ¤k®ÓðóSÃB44SÙ9½¸ÿöÝ{O_½zõâé½W}úÉ[+Wž]a‘þg‡uc‹W®ß¾ÿÖóçï¼÷î­›oÜÛœ›ž_\žéîîýbydèÚ[kí-õª–ù÷¿þb¢éé—_¾züðÁ£gï}ðá–ý|ãÚæÆÚÒÜ•«7oݾ÷øÁòlàÿá¥É‰MÙ¯‰«æcòÒKp•Ù ±ùe …a ªµccýÀŽ /ßPWžRËKŽŠŒŠvrrMEÂRÜ}Câ'b’ó ò32C£½½-JÑø¼dNC­˜”ëìXAÁ”2j5Ðã…¼a\R*j¢kÚÚ[šš{ sî'‡‡GfFûºhp4Í%5b&0ŠÂÚv€mƒJ#Î8}À…åˆ8<1‹BâTT•# LH–rØ8‹†2~øÁ¡4/33)%%-»¸‘™ˆÁ¦ä–à œ*¢¸AHe”3;f;Ô<2H6à|>—xÄ6_$‘¯:4ÔÓÑ®kkÛš(ú_#¡#ó±ØÜê–î¡jE[Gø×꒘ȘÄè”â’‚*R9™§é”‚Ïéšœ¾ùäÉí+Ë‹ÿ“ãJx*ñá—ŽÛZŸñô M))%19òFyÉù­Ù=+Ÿ@?¿À ¨8xBCƒÃ""=Ý].Øùïë›]p¸dwöeBúFûYëýäô~qž€É…lDf"œ ¸w¤Û¸Ð¿±09×Ñ5½¶¶º67ÐÑ$ãóEÕ5ROñ÷ôòòòNÉ-*.ÈóJc _mbn !¹…*GQ›;››ÛZµ=mì¤|ªH,²_ QHx,™„¯ªÂÃÂ<|c2³!êȉ„ê ÷Ùx'%"È-½ƒƒ££ƒ3ãÿMµl6]‰#Rx&›ª*~L( óò?ºGÿõÍì·É$€õÊ$—@ 4ÅlD~J £ÃYOg¯t K e!5ͽÃ`@÷÷6׊ "<ÍÕ1 ϯ©®ê@©TëÚ˜ØÂcf{N15êÉìSàQÃÝgÎ;qÌôTbA1‚T­¬ëÔµÊZ!CÆD¢)*™ŒMóÊrKÊHI/†ågF‡$Çø{{‘9¼E5-·¤< z©VKÈÌ’ 5±9ŠB®‹w°Š‚ÖÞñ…å hë5€ÿW/Ÿ¿÷λï?Y˜y{…@jœœžïhœœ]ܸyóþ›×®][™šZ]ÒöÏ/,Nöt÷ ?ü¿pgªY%«nXxñþ³ŒìáÛ¸{g š«[]˜_»±ºrïñõizˆ'èœî¥¤ShM¹ÑôÀȤ >'0,:*§UŽ@VRÙÂ:¼©ªµƒ&Kúêeøüôø¸è¨¨˜ÐÓ§ýÂR#ýöÙd„E¥§Eøy;\v¿|ñ’ƒ½oaZ"%ª0?f»ïL Ç*4µb‹ÿe¬T Æ‹ÛZêêZúÇÆ JÁþþ¡þ¾ZL9ËçP‚'Ve‰Basg»NÛ¨VâÎd™ï ‹ËK Éf\ +=C*E—¤¢˜Þù<Ç¥VPÙ,ÍápÙ2,HMHLÎ'WÄG†F„G'§e$æedQE”*K@!VÆe&*jÐÜÚ5—Lå ùPÌa€'ೕЈ…­}kýýC½ÆÛ·Ô?àl^frµ<&•UsùE}c}8Í#:&..ŽB¡*+Q_Ú4ì$Ð \jóàØÌµG÷nÞ{cXÁ‰z\aZb|BB¨×¥}VÃCBSáåà¿I•5™;Cë¸nU‡†……àƒ¢€§Õ>sóÿfþ4ãSŽN—ý2O¨¯¿…}ýß8Hd·ÓEëør¬ »AD¯™¼¾¹2>2ÐR[ß6»¾±±2ÞU'Hªe5b6™Pçãéé’ƒf±Å‘¹õ“^d|ann^nv!«½Gצkkî誇%æP„"‡\E™TX[^€Àä»´‰‰OLIIHÏõ‡–4™»ä’‹bÓ9<¬méìlÕ¶p•åh,Ôpi$dpDjv9 U…Ç£Cý,·—:C7q4¬G¤2ÁS2ƒAÀñÅBLNfJRx°¯·‡k`xIÖÐÔÔP×Ð \í`OƒBÄ SJ|Ü*‰T&“TK…êZ¶ÈÂÄxÇövJFí/íÐ3:püØñƒFû#rRÒpž²§£^¦lrÅl™J¦‰åa¼òbÒÒS³ ¢¼½½Ã#ýÜœ.•¢Ë *Ñ…db«8‹••šJ qE1-Ëö¬¯›‡Oh§µkp|jùÞã7_¼xòöËWï¼zûöòD_GO ŽP ŒC³H;63·°¸´vmyyyndxaV#×­.w÷ôÏ. CøÔ6×+ª[Vßz°H-U¿ñðÁƒ7_¼÷þ6ý?¸u}eåÊÊÚÚòìÌÂÒüú£GKãõ*!O ŸV”˜Í순BWߨ¨ÄìÐËAqqÙEp8ª‚Èä)[ÄdYwßÀÀToÓÛ×À,+H芎p9a›‘ior0 È)($4ÐËá„ýegçóGϺ§†§¦:Z;gb÷qÏèt‚¡Ô@e`Pz¨ZL/A2Èh’ ©U%«í€j2úz»x8ÐÔÒBX)ƒ†ñ85ª¶Nà¥Ä`“sÆzðò\נФ¬ø`{«KéáÈÜü´$ žÏçs9€ó‰t‡§ûN®ªÄ"ËÊó’ãã3KKÒ“ÂBB£‹‹3ÒáÙéEŒ¦>SUZ .e³qi‚E"ÑB!$ÿù[ìàOÔ ./èÛ;!×ß®^D •ý ±YÁq•ÈÀd•#æs¡©M¯ÈÃ5&36>*+G•VRX‚ÆN¹ˆD¢ )*ðSë=y¸>91ÞÒ%ÌôŠLIŒ¼`zìL`hh*²ŠÆâ°…d/@„û-,|ƒƒC‚ƒ‚ƒCCƒü‚¶þÿ;‡C›€8tðàoMüþõ€û6÷ÉŽ#× èîðõÍ…áÉ>5è°¶Åõõùþ:±È6‹ ˜;Í×Ãýâ)K»¨‚üÜÌ|2>?&(Q16¶uhÉh7‹/ÌÉ/­$©úúºt:mSkG7';-·œÎ¡á L>ËFä•”åy8D…Õ3³ñör ;ëæ}2*æç² `‚ºÞ¡A…¤ DÁ]ƒ‹Æâª°X,Ş Q—]ƒÒ² (‚‰9o³_ÏÚêl¯¡žáîàâü¢ÒŠJ"_\]-"•W¥ÇgäæÁ©‘Qáá‘¡ù\M³Rq`Pô÷iëUbzUNPˆ‹c2Zü‰ˆ/ñø\ïojlò:u²ãÐ> §,Ží1Õ?“àWÂaÊûºkeŠz¹„ˤÑh2™ˆÉöKÉÈH‰º|É7,ÒÇÕ5Ê.»¢ÒÏ.XÖÂüô|ZzRÒ±³1)¹ð¤¤p¯ä$Ÿ­.ø„„T’ë¼öøñã×o=xúêÙ›+½Àe*è8<«³¯]Êmì…V C«–ç&úÚûyuSã==‹CCƒm -£cMÕuK × Í›®?zÿƒÞï£ÞÞܼzåÊh“Yð¾tãÆÕÅ‘Áz_ÖÙ;4ÕΩL‹t¿œìr⬧Ã[»K¾ÑÑ‘‘ѱH‚&ââ ʾžÖæÞÞþÎÆZNYa^fRL¨·»·Ýq›Èä„@I®‡L-Žtö<½ãðÑsîGL÷µ÷ñºé·WÏÌTŸ½wpFªV‚¥’WK¥<*Ç——WUõ5ÀpmvÝÛÝ×Ó¥­%U82ˆ’0„7[‚—5·µ4Öò*s¬¡¾(‹v;`éêíëtt¯¡þN'‡˜äÔ¤Ô\Te)ŽÇ‡2T|>›Í¥c*Él:ºG#àŹi 1ñI‰ñ1!ÁÁQeUÈ‚âÒò2jóP-®¼$ÕËÏë\ŠJ¦18<ÀŸÍ^ ÀŸN!*òIÝ#SÃÍuMMMP‰D€14P‹ wKÂúÇPÙL¡¤újò©CÎ)I±YHTiYGaHZ»k<–Àd«ëkµó÷ŸžŸ’‘~ÄèØqc€­s¶}OYnï\¸ÇÎÙ+.©ÂŠÛûzdVCÿp_«®†KÄRÀ0P5c*}ìì.D¦–VU¡‘q—OïÕÛéh¢gp ߬ÄÔr`—É¡vÁaQÉ•|…¦aöуë7—–×7ïÞ{°Ü£mïl"ápD™”ÅRëzF¦ffç¡MÈ–g{š¤Y^9êÞîîîþ¹!Lo_­º}q¾µZ^'G–" Cw¼ùpôú;ï¾zöö‹onn®¯,Ìõ·ëº†'§Æ†À§µ%™®€WOä5"¥ÁöØ…ž0Úe}úØ)@ß~ÞnþnþaY•¥HZcV¥éìéïiä‘PExf´ÏÅSGlÎ?—ê{~xJ†ÎQážû LŒöZ2ÑÓ76·?¶ûÔÅ­mj^rrñA1dRIFS«ˆÄ<t2ª¼¬B¬¨»:;úú´Jus}-K€†•rë˜Yi))¡1®%™Ù,U­”ÅÄfEo-zw´>µs‡Åñ#æÛ]²'"´Ô¬B‰ÿÿ<‹Ž)ÃÒðÙI…ÅÈ¢‚ŒL€ÿ¨Èˆ0ÿ ['Ñ$‘ø÷{‹£–»Žî‰-Ã]Pˆ%û󥃆Gç(††Údljjjin‚ÖûÐ(¥gº_NÁçú&#r½ £Ê¹i)Tâ9ƒ}öa)9y Æ`ð¿NÅçѲ³ËØrMS}­náþÓ'o>~¸!C–ÃBœ‚“ÒÒRS⼘Ÿ ñC’´üܨ“e˜;xAüZH §ƒŸŸ·§»§·ËI3}ýÿvøï7“Ž{v:Ç«™ o`¸Å¹îZµŒ£Ñ5 ̬Œ7+JB"ðèâ@WWW+ÐçÞñ逇°8tëÈ(Ðp#£#ƒ½”ŠrE¦i…v\èbI×ÚTÍ€§Æ¥çg’Ù ™ž˜é±_ߺ c #Û~f—]d¼VÅ£*›t:yIo`¸]ÔR-$Uá*Ñ"“ˈ x¸Í©ø$º•ïyÖBoÇ¥ƒzÖ€¸Ÿœ]„ª¢r¸Â6<¿0ÉË?F¤R±Ù¹)±AY"O¶töôõðôPC…Ç_¶:}örœÍå°Yž@ÀÀa0häqcãpYú&fPù”sRr|NYKÀÈäj)—Ç ÈXTiüa/çPÿ(÷3û÷µòñò²äˆ_à!³s@ DÅÓˆ™Žç ¼ãììŽlM½êéïv‹ŽÉFàéšš¡oÌ®ÌÍ/Ž.ÜX¯¯gî»WÏÐÚÆ!6=35##à³`e©á‘ɈJx„k€¡ž]|jB\\"JÙÞÕ œIoo­PJÈÏ ·±±s©Ä`üCç–dʆ]ÞillüÊàddnnv^Q^ N %R R’SÓcýÜmŒõ vØ^„m¼×Ê5$ÀÍËóòÖOì´õ q2G$ÅÁ=]<ö™þ ƒs‘áÑH •Ê` µsÚžîÁù¥¬­¬´±YI)Ãa²££,) YŽÊ‰r9•æâä‹H*ªBWá BUii…’“—[X;'-%æ²}¸íþĸ¸Kç‚Î<{îœåoDcã½.¾™ú–ö‡fü42'33#)*2!šY*ÈÉÏ/ÈÎÌH 9yÐ'Ø7"²AÇeØì4Ú÷ó:ÚÓ>NŽÑ% ðs¹0K?çð‚¼”Ä”ì¢†¾n¡\]§QÉ%"¡DYÛP¯’3ÐeE¡..ñÉÑ6žþÖ—ã}“m_CÒ`¯½Õ)‹Ë…L%_™—•àá £’íÝMÝ«½%h2¼ÈÝzb§Ýüü=|OƒOw‡»ü¼©§Ñ~[?þ[ÜŒ¿ŸÃ¹£fÛòÊòü‰ã§NYÿŸæS‹ãÖ©d …†EùRÝâ\‹Z£¢ ø±DS«áJ`U$ ŠIô»°})»œâƒÎ9œñôÀ´6‹¹\qÛØh/—ÅÀ²y*ˆþ{»[”R©TB*‰uÁòB6‰^Ý&ã„þãêEöÎvG·ÐÞKÁÙyÞÎç­á1^A b¶…BÂQ¥h ªêàK45™6ÇXúy;ú¤F^8cnu.ÐTO?â ž©Éž»­#ÓÒ2’ð¸¢ü┈˜¬ü”È`·]—À >›Ž–4¶·ÕµÐ+Eåd¦§„»zÄ$VG“KŠ’"N÷ÑÅ¥X¦—ŨAíml¸5wøÌ)«×»y:ûìýyfÞ숫_P þà(ïàràç@ v>vÀÄÄø<`°ËÆM¡ùÄä° Jûò¤J­Qr<¬—žZT‘âe®§Ê/Àéè/þÃN‹ã}-ñÃvH WYˆ`0tTˆËåó—/¼^µÃÑ#ŽÁ`© Ž-ÁUaë&gÄØ°£fiÞÁ­9yE2)H¤xè5þ—–¦[›j%øäàð˜øPïDEÅ–Òv+€• *5WUTEFc2Ã+›;{´µÅ¤æ^ \«5µ *!½ p_¦ O/@•Tòª IÑ11qÞN6fz¿n;£‹ˆT6£¬  ¢äò¥‹€,wXÙ_´Ô3ôc¼×ô[p°ãAã8æŸÛ™ø¤„|Tu ù¤Øô¤¨×½;Nž8dyÖÚ'6»¤0¿WVŠÏ,`…ä"à9Ê “““N;»ÅÁ=NŸ‚b°¹Õë3güÓžÆv§Ý½ óÂa îvÉ—Š£ó Œòôø„èÀè¨*üI ‹K°Ó7ÜkµÏÐÁ'%!.Ø3 %Ôâ_L_ßøh(Åa“H™nG÷ôŠŽ 9¯·‹ˆ'Ò%rt¡‹#°åJ9)ÊúŒ““ýñ߸a×°ÈS¡I%e(X^nFbœ«—SP>C ÁâcášfdtŒ•Ñ }}=ãCÖç­Lþùéî·p÷Êð`P°¯ž¾áþmÂ04Ú»ÿ_=íÿû¦o`êŒ-ËpMÈÏ +áéšÔ*¡ˆá+ª¯‘ °Åp"¨29<$øÈëŸ06628túD\%W.å󹑂d0ùò¶®Î¦¦æ©¼Yäg¯¬À â‚á$:ÍÄâ¶gû~q»†ú¯‹ ö^p JòØ©o`dtÐÑ7,='5ÙŽ@ûXJc‹å"‹ÍÂ&Û;Xž8n}lÇÁ#à*öœ9m o ¯·Uß`°ë”Í‹dÛàìœp—¸Š<àn#¶b´×)Ÿèà°[w!1†ÚÙÙÝÛÁ( ±³>sÉ=69#£ ;<%)Áßz·ñÎSvæÆfÆ¿Íÿz†;öï9tÞÂß×äàa÷}à•w;løË>Ô7Ù}ÒáÚ—Ô2<_Ægrر°4Ý~çŽÓg·ÎtÑ?ã•_†§±èø²,·ªªªr7Û½¦Fú†&»ï?xÞ'2šDF•  É——¦&º›”•nNáa!þ>þ¶Û“§.!ÀŸSˆD’{îœ_pœžî©®“Õ€Kõ f¦Ž° H:ãT+¡p¡t*)62,tŸÉëço´gÿ‰3}ÃÝç£`¹þy99©N±Ö; ­ofq椱Dvày[y:ìûwãÊüèÅ„€D D"dlxRˆµ¹™¾Ù‰Ãf'Nž¶ñHŒN„'„´vËRã32.Ø'z±svw31009¸g—¹…åÑ£æ¿î ƒ=—™8‰ 1·ëu9l*>/=[š›’‘’•_˜ñNjXHTäE=hŒØwÉÞᔹÑ?u®Ñ›*, úù݇/ùEE‡œÖ3ËóÂf\ŠG—±h|F¡€SUTÀ2‘‡\øí…øÆç/{zÄÃJ‘EÙ© !§MwZûù§Â<–‘®( ºhëäzâ ‰ž©©Á/ÇÉO_˜Ÿv òv÷ ðóóñ°1Ù³ûø±Ÿf£~sþþ¤éïv 9dz²€Yᓊ(ÄÑ„²¥^,e"ò E$bÉv¿ð†Æ¦î±Ñp‡Ã¢ a…)4ŽT¥íhæÓ„’êúQ‚½OZNnfJ˜ŽL,ÍÍOOºìú댺'“£vîÎ'·¸Ñè”GPb†ß…*îË/ÉIÌH Œ¾xüÈ‘cǦßÌÀVô‹ÑúFÆF{ÍýÒ“ƒý‚Ã]lN_Ð3Ømhplÿ¯KžÑ®–vî&]Wg[Êų§Nž±2Û1==+52èòÅÓ{ ˜€ˆddôÏcd뛙t—ÙV"ßèW£D¯8¯ÝðˆG\~½F­ðE55̸#úúû™l=ýN EðJ BGäc«¢ö¼þ­¬ ‰Šª¨B–Ktý3‹K #½½mr•Fâ»ËìBOh€Ÿ·¯¯÷%S0& ŒM÷X(/µ;`và±]€Qêiw·‹—¢ÙÕ>½ ç¿Ë1Æ+<ÆÙ|Çëðüâ$ ËQ,/ž=¹w÷îí‘gfqì—=£ol—–›–‘•ž”²Í?àfÍvè¿î.ƒó>Vÿ6e`fåã\%TEúy¸¸{œÝ©g`j^üÀÉS§ÏžõJŠö°ÝarÔÙÕ×ÇÏÓÍᨉ‰ùN³“N‡ aâàž}»÷9fþÏ4itD’]—Oì%CÜD$2ÙTRNZš‹Ltrn^n$ýóòóc¢C½ÜÏþôS;_°ù§`²ukûl.¹úø99œ1ÓÓßwØ.*-Ï|’Tå±{÷yçÐ,T‰ç9–žé~öˆ¹¡ÑC¿yóú¦zû/†ä à…É!‡öîjÝ2 ª GÀóü,÷ ‹ uu…Îêý–úÒ`Ï%Goð4ü€Móòt8juÜòÄÿ³~¿¾r³=@Ø¥pùα8†DÁà†bÛä>žðÏæÒ2sÓ,ÿñJö_ôA±Y,™P‘•I­$ÐåÍ †ÍãhÊ’£Â“RSS’b£³‘y¹iAÁ—~­åŒM·‘á¾3Ž6¯#Ýžsn¾‘ÑÝáðR¨!‘©!Qþ>¾!iQ§Žl5s=cs=ëó¿~6`ˆîN´;ë~ùøÞC‡÷ì;zϳ]Î…§¶pp‰(å*´-ö'Ož>ÊÌäp\jTPèñ;~ÎÍé›ZÚûí} n2úomÀ¸Ýv\ŠŒË€Ã©ª:•¬¦FÊt/khb²­ãÌÌO'!*°ùq•ÈØ(XüOÆ@Ï舃從‘ÞyEpœ´^Q]7°4ß­k¯“JQλõõùú»y8^r÷ö¾ø:ë€Ç÷zrá ½kfº—cr¹W0‚CǦœÐß¹ï£'À±¡O2pÙ¹Ùp¶”Vìsdßž}ûömß¶é¡MwÿWçèÛ¦ç@µ8éé9?/8ù¯1«ÈþôŽÏFúæ–VÁY娼LïËG,.ØìÙª¬4„%'Ož´qõq9 ‘9hN§ö퀎°5=rÉéâë>Õ75ß³ÓÌì·˜DʃÇÏØZú"ÐxlU‘RQ‘•tÙ)(*%9*9'/hÿ¼¼¼Ì„è°·Ÿ'wò<õ[;héî:è¹o—™ÁSç}£R } »<Pa²óBTJ°…é¹ôTkÛ³¶ü·áÿ)öéÛæ y¡ž÷ajhbäèã™ÈC§;í8pÊ÷ÿkïJ»ÚÆÎ°µX²%Ù–-¯²¼ ï»±7À6ÆcŒYlðBH24²Ï4¤igÒ™“i§Í9==ýÒ/ýóó*™Í€9’žäùÄ9èú^é¾Ëó¾÷½÷–¦ %ŸÝ ?¯¹XŸÙÑLv|2?‘ãÌ;I24M;.9ôãÊ@Ï=.9—ž½ÜýõÝäÝ?¼Ù{2SY_ðüÛ½ßÿn:y§2§?ù¼‰¶DæW·^ïÖ8Q¬w_»\³õ¼òøÕƒB®Î©Ívy"g0–SÎ[.ѱ±Ìx9oÅÕ™ÎÃgÛ[w_ý°ò°„A7’šÎ—W+µbÔë ¥& “ÅÈ ÞŸMi„Œ´ÐÄxµ¼Ðé¶æGGBsuJ Á1n™Ö ;›>°§˜ÍçJxÝñL¶Þ©×§Í O<_ÈçJõGßïFT½¡(GNq1͉‚–‚"{»Ólmíüåýû_^ßoæ4'ÿ'¢´ É% Éû5`)%d"þÜ7|I{§ööo;ÿ¹_Ø»³æÉ8Ë”0Š!Xê 8êµ€3r÷[)aˆFŒ·ÇšÝ{O_¯ê¥˜ꃗ@)móô-µë³SSK¥F5$HÓÏ€¹Ò±™”^,‚@NÉpŽ_#¤‰†1[8-Azy”pE ^ó̩z±XnV—Ê,J{&SnuÖ{ ÀN«µâ>!q(t:d; Ýb‹;ûwÙŠ † ìE¯«³ùCN¯<|Bi®¯­¸ÆäO›¤ösbAQÜj±ÚÝŒš$3Ù8KB„‘#äõóÿC@8¥u¤£F{÷Ù¶µx+Ÿ O.WR ŸÅè ‚1¸RÁæÄÊÜîÓ‡/¾»“q3¨Eýž…ÅÂÄT6äu»Ü‘DvÜ:“Áг3¹LuÖ­¦Ã úÀmÊ´zÅàý)ˆ)G$– ,ÌNV6Öæs¹Í6šK§ËS«;k!³úü£TåWfp­ [wš«­Õwÿxÿö~ç–óTìªõœIETø³‚0šl±øæÓG»«Ë?îM¼y;^ršÕ‡³pçK™ ;\³iþ û«sàÈZ©ÖÝXßþîá(/Õb¨¿CkcTÇËbL.W\ªEGíJAßú< ´GËî°i4ê(9AAÞ|cŒÕd6q/ôçPùÛë†ëÔFG,ùt$kçy4›_çÁ9®öZÅ<ä€QBŠ9ÆN¶‚øE[Aú¯±R(€ô%ö¹¿Ì®\µì•a:Æê×#ˆ8qœþ#ˆD­uø2Àà‹¥SN™X¡¡4}‰³»RûŒRìÉe”2\A*ÙDÈ¢’Ë0t@†‹¨0íˆÃÄdz >lÛxþÝ«—Ûßtêó9.¬s³vÒ?á0ޏlfÖåõEãA£°â%îÉ)úÕ¤×Mjc¦½èí… \¤ªÓ ÁXáö'’ÝJ6»Ð¾Ó!˜„ñ3åB©Yr›õCÄñ Gu½Û\žo¾ùû¯OÖºsº<+ZÚÓ]Ï4¿Ù½ÓØÚ.gn-Çdàæ©ÏˆOŠhIy,ÄY©õr°ÜºýàiˇÃғƘϔhUGôÑÑâBFÅÅß%} ~VA™‰_8÷Û9ÙKø¨ÔjzÀL‚Ã_X®D\”b¿”PZ úh›ÓþÛÎÿ7Rª´Â¦;Ù"tLè€Acvø2רMgj-ú@ŠÀ69fÂL@ÐEAEÓF½êª+þÎ4@Å1ŠRSƒBÀ3ÐÒÎÞ«—OvmT"Ícl¤TR©J…«-±QŸW(“áXâ³ç¾CÙƒèD¬7' ˆ‘JÕ%§ $ ÞÑR&•*W¢F‚÷q4›MºÃN³éôX É¿øÛBÒu.ª¬vßþñÞÚ¬zø_ ½ÕFLIG0Ò§þ¼÷€#¡„ºGn\4 ª”“¬ØVYkÖæ8½8ý¢ƈóLcŸœq\~ݼPH1#HÒöcÒ( Öp€äjS“wÿ.gzÝ7•;»r åµÇïŶT:jõ'Z‚S{„Òª7¦þ¢Cöé—”×׎òi-[÷Å·Ïvww»Q”w6V-´ÏkPUFK#Z¡ªÁ¦ˆ~ðÄqÞ¡ÿ£K Æ“©|´ÇQä¬Ñ` Gl]éöômeÁrݽ ‡X©¥.ðÿû@쩉hbzÖ¹¯‚°€?®‡k׈ñXÁ$J•J%Hÿ9Ê®?~º¹¹Uæ¯)$¼ú‹ q¨vÌ/ܳBòp^ÀUç—B¬32!?g“¼  š±¨(R7ÂþEã›ÊNÍÌÏÝš­ “×:x:#.Æ1X*ük–‚G +bÄ%àºY uF‡?1ž _S Û1˜Yî´ÍöòbQwyƒ08†>t,VŠqäÿâSþ® ƒ”ÓJ)Ð3„mnµPÊØû¬.„ðþ.‰ˆ¥B)þ…€(/bÐø|ñ˜z¿˜Ò ®í»&ÀF±ã™BØ›½¶,.".h†}c†›ü=à¤Þ™˜s\þèGB¢÷Œ׿Lly­fÿ èÿ0$~Ž8“üJÄÿ*J©`åÈP<áUŠûi,æ´vŽœøqé'„û%§5ÌŒ€ñ›Ì¦Šz¥%–É ¼æûIð)Æ”Ét]Q]ÅE3æè¤‡@Ð> æ>@ ?F?N?(/home/amr/Borders/Sponged.tifCreated with The GIMPô™¾¹ÖKïõ(—0’K'd¤~ ¢ì™$³’ª3oû•}e#Ö›HHphotoprint-0.4.2-pre2/borders/GentleRipple.tif0000644000175000017500000003355211074470402016257 00000000000000II*î5xœíÝyTWp" ²ˆbÕV‘‰ ² "¤‚øEeѯÚJZ Ûj­R#‹²•EC¡‘EE-‘%²ˆMeGvd/‹@…&ÚÖ%ƒI aŠÜß_œÃäÝ;3ï¾yó’L„„ð–RÐ3ýßVÇív›ÔåDùÓäÌÅjæ6[¬MõTÌàO«/È(¨˜YÛowtÜjca¤M\ Æïc˜)‹SÑ20±°¶ÝÊ ¾}«Íf3C=uâYñIÊ`z—]BT×34Ûlc÷üØZ[˜h©àdgNRb ˆÚF¬¾½ÝÞÚÌ@]A†ßf,PÑ3µv`õmsµÅ|Ú1QyâÄh‡dÜ.(yPZ”{=9æˆÃÜDÎU5qÜïã{"òRF½¤´´8ÿ651ä ËÕòü¨ÐÙJk­vyùø%Ç&gÜÉ/*---¡Ó®§RÂØ®XˆåCvØy-ck7o_ÿã!1‰W3²iù…%÷K”–Ñsï\§&S"~ðvÙ¸–„_(!€ÄBeÓÏH ´U’ÿHãÔ ÍÍí|Ïf–õ³7ÏÔW™{À/˧ù ó\ËÈ©èm4ßhµÛ?ô2­¼ 1ì #Õ…Y” ¯-šòó¥Dø•`‘š/¯¹Å+ˆ’UXÝ9Âá·jgDéOÌÃóîÊ<Ÿ ¬ä»Kp«w…ÜíåpâGG»ó"Ýt$&6]—™/§¨¨ ²ÁídêïO8Æ|Íp]Þå`/«•Òâ¢<@0&Œ¨¸ôJ+¯àËyuüžŒ'¿§žtÛ ¢ ¨(7_F\xByÌ”Ðq‹Ìëæ³÷nÈ®Õ8…%ïJòÞÕ%”ÝÏ?|cë¥;Wápó%yØŒnwBÕ³WÜ@Üâ{/oýùc9!n:0FXDDLu_ ò øš–+žjX®Ë#ŒÅJiì§ÔqÓöß’¾2™-<ŽÒ›!Œ‘RÛþ]J%<©È<ç·MoÅ!óÌŒ¿ ¿€ËKÛüó²ç ¹" ô¶ùˬày ~UeÊwÛÕ¤X'+<޵(Œðl“¯’xXGÙ¯!Åì¿ÜwE VÍóJ 7m÷¥ìSáªiŒÜÇ?·þóÊ Äm¨Cl!Fþ¬Op’ãÜü Í/3»:ºûÙ[@2ò´)eŸ—G£ëq±¦›Õ6§ß+!†{2¾±\ÂsŸ•Öÿ$øF[gGGwïÀÐS"y:ü¤áVÔ!gC+½HIÛØvÿ JnYC§Àv®«ª ã3Ù@OûuÊc.­K+êÛI}Ø2±4kóRb¢Â}ìt#Õßû:9Õã` ®üuÌI[«¢x÷dFÏ+[g#MÂ__ÿ{¡6;Ö×þC=’2A‘@TÓYoµÃÓÃ?œÊ˜Ø¥²­(•ìnµ^W]e¿L…´Úh³£›‡××gÓŠÛ'Ôð #E×bü]6é®ZA$(*”–“t>0µvúÌÃÃëppBfq3Ÿ"qÐ×TF¿™äçê`ab¨¯£IRU!.#àñx‚q¹*IC[o­ÑsË-Û\v»y<ãé}èè rd|õæÝⲺ¶¾‰Î'×Ó¾¶º²â»7©Iñ‘äGy{>ß-·Ý.Û¶Xšo0Z«§­AR]NT"àY‚°Œ¨¢JÒÔÑ74±ppõ ŠM¹I/kâjIiâš‹3‚{yx|ædmúi¹«»W¬Ò5Úäâs­¨‘_óöâ´³_{y¸9n6ZMzÞõÕu×[¹“S‹Ú&Ôðƒîïá¹Ãj½Ž³³”IzÚûÆfײmÙ…4Èù½±èžÖÓÓ)Q!äˆóiw«&va~Ioe.51:ì 9,Šò ­œóÂê8 63h×.ÅE„’É!çbÓnÕŽ=Ô Xok ƒþkVÚeJ|tD8óž›|æLhxDL%éjúMÚ½• ã»L% •îÑn¦_M¢ÄŰŽë@0Ct<årZÖ¯tFM+ç÷yäÚ¢[i‰1çBÈäЈ¸K×hŒf¾u÷—u—Ó~¡D…‘Ï„E'Rs+ù¶¿ƒUwÓÎG0+5Š’N¯G¼dô) L@lxYØLUƒ³ØëÿÚi&CÒgð~Øà¿铽fehg˜ {>@<ëx禼*E„ Àª¤©õ`|V!½h›vZ€IàøBýÏÞWƒv^ÁËY‰4xï0,0 X Õ¿ÐÒ ´óÞ^äGä,ÿíÄwC±þ…tï¡@àœë_hÏľ…˜ü‘Ëó~Š@¾îøIÕcàÜÊùÅ€)­ÏkŒú_”‡vjA £þ…‚òÀH²üõÿi=Ú©¬úÓ1êß¾ À[/rŒú'ÝG;3€ ]£þ—ÂG€xëå“ë1íÌ‚Öè צ«‘«Èõ¯V‚vfËG®ã7ÿú0àmðÒc€…„þÏËOm¦¦êëÿx'Ú‰®Å±þÓá1À¼ýº~@¬ÿJ´ó^RùËÀC€˜SÊcßÿ`JG¨ÿÑýh缡4¸ý`º  Ýþ `ôœf/K˜þ0´!|H*ií´“ Î’½þç `2Ü[Ê^ÿËÑN 0ºž,sí¬“á7söúW„ÿ0ôžšÍ^ÿZhg˜ Ô5ìåÿŽ#ÚY&Á},{ý«Þ@;-€à5\È^þBfh§¼'' å/ä„v^Á;¿©ü•~B;/€ÀÝ^‹Aª;øå_ÞzÕ6ÂHå/ô9Ú‰­÷»Y/Wý_<¢”xœíÝÍKqÇñY3¶Ò èkOmô dÇ„Šˆ‚=] J!ÄCYA‡ %(!z‚ ¢(h‹@’5¼H7MÖ­”Ì:lmX¦´æä®=€tÛï¿ó…™÷ë/ø\ÞÌì0ûÇù¯²õ/€`›J×”9’]/¬§P6v""æïœ³^@[vƒœ¿sÙzenr†œ¼ÃzeÃ'=.ÿÍŸ¬§P–ÝçÑÿ]ëe´ Öyôßn½ €¶ç«äüW÷X/ ­o±ÜcÎzmé˜Üÿ½‚õ2Ú2Ëäþ»­‡P×_-÷ßo= €º¡­bþ+_[ .wHì÷ëaÔ$Äþ[¾Y ®Ø.öå‡õ0úÅþ“®õ.ú²åRÿ©Ië]ô}\/ÿÑÉë?@ŒµHÇqý Ø%õŸßÿ@ü”\Í[Ïàƒü¡ÿS#Ö³øÀ=-íÿgëY|0õ¤²´ÿuüÿw^iÿ³ïð…¸ð >k½ €šæ–öOY¯à‡¾¥Â ÀANBaЬuÔzˆgÕµý¶Þ@ßÅEBÿ³ööZï ox£tPq”CÀ€Ø)õïÌ?Ë¿à“u–Üúc½ €¶G5bÿÑÍ=<Ïã âØ”õ2ÚŽÈý;U]ÝáàiÍ]÷69ÿH-¯AW<îqýŸÉI€@à]òèß9ýÕze·çxôàõ4ÊÒ;<úß2d= €²‰óýWs xIþ—g¬—ÐöØ£ÿXÚzmO×ÊýWÑ?x¹F¹ÿϬ—ÐæÞ”û¯°^@]¯Üÿö7ÖèËÈý7¼·@ÝKé;ÀŽ“àKÀ@ð½Ý$ö߯@ð}iûe½ €¾ïgÄþyü„Àøu)ÿªœõ.úÜBþ‘=ÃÖ»è›L ý—]·Þ@_¡Sê€/€!Pèú/Ÿ°žÀ¿ ý/Ì[Ïàƒñ¥ùGë9ýƒÑÄtòÿç%r™xœíÜËK”QÇñWCŒÔr!¢‚PI™PHDm¤ *QAµ1š6V.k#‘ ƒ Zˆ. ¡\]éN]¹J¦È2+B‘p²©ÌK¥Ž]Üœg–Ïy`Þïç/øn~ï¼sf8AðŸE·f~H}±#oܺ €C›ÝýYGð¢{‰3ÿŒjë(>Œ¶¥;û/è°®àÃëZ÷õ¿,n]ÀƒŸ—JÝý—[Wð¡¯ÎúVë*|i+q÷_ÜnÀƒ®jwþÁ†˜u}}‘,aÿ¼þ!ðõhaæî—uuÓ«„Oÿ ¸Õ: €º5ó¥ý×ôZ‡P6;ܘ+Í?h°. -ÑQ(Î?h´. ,ñv»ûÇÿ¿²OX§P6y6_8úÿ£ê‰ueñˆüöœ´N ìÕJùã?à×? ÕMt&ùøÚ¬Ó(iN2ÿ²ÛÖi” îI²ÿÈë4Êú…[?çœJX§PÖ».ÉþoZ—Ð-K²ÿÖe´õ¸·~ÏYο€”÷´XÞ-Ç@ÊëY,ïÿøgë2Ú¢+äýwY‡P÷b­¼ÿ¨uuýÒÅ¿ì…zqþ/­Ã¨‹5‰ûßøÞ: €º±3âþë?X‡Ð÷XÜÓ'ë.úúÄý·ŽZwÐ÷NÜÿ¹ ë.úÄÛ¿¯þ°î /¶MºÿïΔu}£-Òõÿ÷Ø?S÷ç û¿Ëþ0ˆKû¿Æ÷ Ƥó¿NÎÿ0/Û¿Ygðà{$ÓÝÿ‘¸u¦/,t÷¿wØ: €³±œ±N ld§¸ÿ ·™ åí—÷Ÿ¾)Ê êþíÿ7:xœíÝßkÍqÇñïvj…•-¶&†šM,Öˆ-7ˆ +‘ Dm…]Œ’]»@¨åÇRr1±9+?’\¹‘ÍÒ,³Ã:1fmk³ÙÙšÃ-}ÞßË÷ç]û>ÁëæÙç|ô=Að¯ÜcÌlgcìð õ4ÊZJäü3J?ZO ,Qrþg?LYo ¬!¤ÿàÒ°õ4Ê®„õ_÷Ízeaýï뵞@YSAHÿÛº­§Pöz{HÿeÖÓ(û~2¤ÿâëi´Ý 鿨Ýzm-!ý/yc½ €¶æþÓ?0ã½È•û_Úf½ €¶ör¹ÿåo­—ÐÖ[-÷_òÎzm×åþ+º¬—Ж~$÷_Ùc½ €ºv¹ÿCIëaÔµÉý×÷[ ®Cîÿêˆõ0꺈ý·LY îÓ±^ÿ"àËn±nÿÐTìŸïÿ0tZÊîgë]ôHŸÌ(ýj½ €¾ñÛRÿû¬wÐ7q_è?ó¨õ.ú&[¥þŸòøˆ€©'Bÿ1.ÿ(˜z&õÏÏ Äó?  &ãÂíÿ¢1ëY<îÿgíùe= €ãwÜþ真´žÀƒÑknÿ9/§­gð`¸Áí?ï§õ*>ü¨sûÏ·À‹¾*·ÿyÖ£x‘Üâ>þ[g= €m«œþ³«­Gða¢)Çé¿à¦õ*> œs/ÿ—½·^À‡ÄA·ÿÕÖ£xñªÂíõ(> 6.rû/¶^À‡Üü3+­Wð õ@ø÷Ÿü3Ö³x8‘çö¿¢Õz}éÖÍnþAyŸõ.úºO ýï´žÀƒæMôDSçñ…BþÁë]ôÝ[+ÿ±ë]ÔuÕΗŽÿÂFëa´¥ï–Ĥþ×?·^@Yº¯.[Ê?ØÅã?`¦›ŽoÌû?b½ €¶TÃ,1ÿ Öze¿{öÊÇpÌze©øÊL¹ÿzëi”^œ-çŸÝzeCÕrþAÙcëi”%·þÿîß_o{xœíÝ¿KUaÇñkˆA”A`A D Ž!AÐÐ ‘SƒAС¨†¨M3°h(¨† #Ȭª¥Z®ŠYVŠˆ¥V&Ú½þ6©¥!8ßgüžÜçýú >Ë›{î¹Ï97“ù§úÃmñuyQÆt|R½ €¯éæ;ÿL½zgWùgÕÓ8ûq6ÔƒzgCu¡þ¯©§p6p i³zg}ûýW¼POàìce ÿšnõ4ÎÞWú?5¢žÀY×¶@ÿM êiœunôÏí? àµo ôÿX½ €·ì†@ÿÔËxË®ôߢ^À[¶ÌÎùsõ2ÞÚ×ÿ[Þ¨—ðÖ±ÉîÏ;õ2Þ:Ëíþ÷«—ð:ÿsæ›zoÝ;íþ›rêe¼õì²ûÀñ_ à}Þk÷ÿJ= €»þj»ÿ¬zwƒµvÿêaÜ ³ûoWànô<Ÿÿ@¬&Íü‹9þ¾©Ûfÿe=êaÜ-´šýoïSàï­Ùå€zŸÌþ÷Qïà¯Ïìÿаz½fÿG¿«wðg÷ú§zöõÿÅqõ.þÖXý_þ¥ÞÀß×­EFÿ×óê]üì¶ú¿5¥ÞÀßèA«ÿ{Óê]üŸXbôÿpF½ €¿|½Õˬz3w­þ[çÔ»ø[x¹Ôèÿɼz€ôZý?¥ ãVÿÏèˆAžþhåøþD+gÝÿo£ ¹eüþÄ*¿ÎèŸó?@¦v78ÿ DaºÊøpŸç€Ì)Nö‡çÌ](IöcR= @ æo®Hö5§ž ¿ÛV&ûoàý@ »V%û¿Äû(Œ­NönL½ @*J“ýŸU £ÿ:þÿ ˆƒÑíˆz€Tý× ©GH…ÑÕ z€T¬ý¿ü¿ˆËŒˆxœíÝÉKVq‡ñ+ù–d ¦)šY4Рa‘P YJ.*¥²ÐHʰ"$Z¸P\áÒÈ U‘‘ÑÚa4`PY 4@Ñ.øí9Þû|þ‚ïæÙ\î=7Šþ©|õ@,+žz`¢*ô¿dÈ{õSƒþ‹¯ýö^À‘Œ ÿÜ ß½W°Ð•ôŸ~vÂ{ ½ùáÀîÞ«X¸<+ì¿ý÷*†‹Ãþ[^{¯`al~Øà ïU,üXö¿•€€x( û_ß{¥aÿ«xˆ¡ÿÒ¾¯Þ«XúŸsfÜ{ Bÿyo¼W° ôŸ~ø¥÷*„çÿÑîQïU,,ú¯~འ€…µBÿUƒÞ«X¨I û¯èÿæ= €†ðPTÚóÁ{­™aÿó:ùˆƒ¹aÿ…ÇžyÏ`àdaØVã#ïY œ€¤ÕÞñžÀ@¿p$ªºê= €áH´òüï]ôÝ-ú/ëyï½ €¾‘r¡ÿ…]üˆ± ¡ÿÙm#Þ»èû´Fè¿ yØ{}¿Ö ýg×ßòÞÀÀF¡ÿi[¼g0°Yè?Qy‘À@ HýGË{?{ï o“Ôÿ¢Óüˆ±ÿ¹¼Ä€ØQûï]ô‰ýÏlå(bÿyM·½wÐ'öŸ]7è½ €>±ÿŒš+Þ»èûOßpÉ{}bÿi«û¼wÐ'öŸ(ïýé= €:±ÿ”’ž ïaÔ‰ýG N{ Nû­÷0êäþ ;Ƽ‡PW-ö_pü¹÷0êjÅþóÛF½‡P·Mì?ïècïaÔÕ‰ýçzè= €º]bÿ3š‡¼‡P·Gì?§éž÷0êS¤þ³÷rH~û&IýOoà @òÛŸ*õŸµó¦÷0êšbÿõ7¼‡Pw`²Ô&À€8(÷¿ãº÷0êZ¦ˆýo§ ùÑ?_ÿõÿí®ºxœíÝßkÍqÇñ³Ì¤ý0;دš°tÒüš óc%-±‘lÄ14­µöƒ„R“Æ…‹eJ¹˜ˆÈ…RÃÊ… '³%¤Ì? ±äGÑ(áNêó¾}ÞµÏóñ¼nž}/>çó9‘È?Ù[nþ0Öíd'èûÚäþ·&­‡P×–&õ?©î–õ0êZÆIýçì¸m= €ºf¹ÿÖèkŠJýOn¸c= €ºÆT©ÿܦ{ÖèkH‘úµ>°@]½”dÊžAëaÔmûŸ¶ÿ©õ0êbÿyíϬ‡P·Iì¿ cÈzuÄþ‹Ž¾±@Ý:±ÿ]¬‡PW-ö?ùÙzubÿ© N·@ØZù…_ÖèûŸ°â²õ.úÄþ3ªz­wÐ'öŸ]{Ãz}bÿ¹Ûyþ€Ø^ó]ë]ô‰ýíãú±ÿé\ÿ ö_rlØz}bÿ¥Ý­wÐ'õŸ²ø"?ÿ õŸ^yÍzÖ ýgÖ$­gð@úþÇêyýÁ*¡ÿÂÝ­gÐ7ºRèæ!ŽÿŒTýÏ9Îë@†Ê…þžýd½ €¾ÁEBÿË®ü°Þ@_ÿ<7ÿ”5IëY<¸wûŸ˜¸o= €—f¹ýÇZžXÏàÁ©b·ÿâƒ/­gð 3ßí?ÞõÎzÚsÝþËÎñç?@Z3Ýþ+zZÏàA]ºÛÿê~ëU|¨NuûßøØz–ºùG¹ýAøù_Ö×Ö«ø0×í¿ ó½õ*>ßÿÙg¾X¯àƒÐYϨõ*>ýWôYà…ÐÇ@„þ7sü„¡Ôí¿ñ•õ(>|žÿØûÖzž ϱ^À‡b'ÿè nÿAè)túÏ:ÿÍzº§:ýç_åö?„#9Nÿ%}¿­Wð¡%Ãéþ#ëQ¼¨uŸÿYòÂz/–Gþ+¹ý„A8þ_?l= €±ÿËÿ /2³•xœíÝ»kSaÇñ“*ˆx-vó‚ÁÚEÝŒk§ºTAP\D© é&ÁvP‹‚"u1.^JµH½L⤒´±ð%¥USK°Io‰XÅQÎóŽÏû@Þïç/ø-_œsÞs¢èŸ#S„ )Š9ñÝz/„þÏL[à…Ðÿ¹ëQ¼ú?_²À‡Ú¦xÿZ¯àÁòdc¼ÿ˳ֳxðûÕ†xÿ×+Ö³xðkp}¼ÿ[sÖ³xP»º6ÞÿëYIùG'ùÿ€bÿüÿÜû„õ.úòbÿÉÏÖ»è{'ö¿óƒõ.ú^ˆý7å¬wPW} öŸÈZ ®rSì?µ@]©Wî?c= €ºb7× TSrÿ¯­‡PW8*÷ÿÜzuù¹ÿêÞû6¹ÿ>u/—”ûïš´^@Ûø^¹ÿü Ô½ì.¹ÿý<êÞØ¹ÿ­/­—ЖÙ.÷ßðÄzmé-rÿÑõ2ÚÒ›é•óúÿÐzm™mŽþSÖËhmvôß;o= €²l‹£ÿ΂õ4ÊÆw;ú?¶ž@YnŸ£ÿV^êëü_´æ¶õ4ÊòýGW¬§PV8îêÿ’õ4ʾu¹úï·ž@ÙL«ÿ ÖÓ(+ßpõjÚz]ÕáFGÿío¬·P6¶'!÷ßzßzeÅŽÿûÿ %È…‘xœíÝÏKTa‡ñkj(QA#&©HPÙ¦@ˆ6¥Â¥MЮĕ"YD¹ r#V ¸hBbT Ñ‚ ¡i…%‰EY9Ò i¦3C?ˆhsÏ]ž÷ÀõùüÏæË{;¾ãyÿ¬iÿ ÚÍ^ˆfë4ʺb!ûo°N ,5\™#ï¿Ñ: €¶Ïõ¹òþë¬ËhËtÊû¯š°N ,óÈÏ÷_Ñg@ÛBëqÿ­ÖeÔõ’j­Ã¨›½¸IÜu}‡Åߺ €¾x[™´ÿjë. ùyÂþ÷Œ[wп²MØI·uFü¬àþ×7Ygp`¦­DxØgÀ…‡„ýo·®àÂû&á¿€vYWpáûráüÏXgpáyupÿÅÃÖU\˜nî¿€+!Ñ|˜wÔº € éÁÍÁ€Rë*NLìî?fÀ‰~pÿ…ÖQœˆ× Îü´ÎàÀܹàþ×ÝJ[gp ÙÜþÙ%ë,Ì_ î?gÿ¢u{‚û÷bóÖYXº-ìßcÿÀJ°Ü/Ì?;aÀÔ=iÿ¯­³8º/ìUïë.úRÒþ[’Ö]ô-ÝöŸudÖº €¾Å^iÿ嬻è[¸&½ÿË}cÝ@_ò’´oʺ €¾¹óâþy¬ñ“âþG¬»è›®÷ßÀ蛪÷ßþÕ: €ºñµâþOŭèçïg@Ý3yÿU“ÖaÔ=–÷_ùÒ: €¶eéúŸ?v¼°. íËyÿ¥cÖe´MÖÊûß2j]@Û“òþ‹žZ—Ð6üùß¿Š9ÿÈ»#Ïß+ãï òúBö_Áçÿ@Ô¥;Cö¿÷•ueoëCöïsuC•!û?1m@ÙõÕ!ûoá` ê:Bæïu}³N ìrÈü7>H[§Е–/ÿô²~²N lÔ9ÿOóÀ@Ôuo•ÿ¢›\ÿ DÝùôÏ>Æã?yÿ'ÿËþ{¿xœíݽKUqÇñcé (Å-¡s()*ʬ B0p²²2²¡†¨Á†Â°!+lH‚ŠŠÚìI‚„Áj 3,õj„iOâCÊ5µ,qiø}Ïøý}áÞ÷ë/x/=çǹçÁIÙ×fþˆse$õp×ë2Ê>ì÷¿ªÞ: €º;9Òü—V}¶ ®lž0ÿŒ/­»èÛ+ýûÏ­çæHÅÒÕuŸu}ÝÛÜù'—¼²ÎàÁÕåÂÙÿõë,”¦¸û?Ôe]À‡uîü³nŒZWðaƒ»ÿ]íÖQ|èXéîÿÜWë*>\ÎtæŸÑð˺ €…ÉÎþ7rù$†eîåI¿u~/v÷_þͺ €3ш»ÿšaë,LÕ¥»û¿9fÀƒX±ðô߃˜uƺó'­³xæ<Ÿ²ÎàÁÇùìHP¥w5qý$€¡ iÿ Ö]ô ä' û¿=nÝ@_oštþWËË€Ð#Í?8ýݺ €¾vqÿ¥|ùˆÓMâþóº­Ã¨©÷ŸþÞ: €º qÿÁë0êzÊûo³ .ºCÞôumïråýWñþ_ îµåÈû/âˆ{­Ùòþ3_X—ÐÖ*|úsÎcë2ÚÚV„ìÿ‰umí·?ç\üi@Yg~Èþ÷ñïzö‡ìÑ}ë4ÊúO„ì?¸b@ÙÐ¥°ý×Z§P6ù45dÿÇyˆw}Òûÿfmj´N lølØ Àyë4Ê&Ÿ­–^>ë”umƒ'Cö„Ÿq¯y³|°½Åº €¶ñZù7€ ª­Ë¨ë<ÿì¶ ¯¹0EÚÿë.Ü[#í?ïµu}ƒ5YÂþ#•Ö]ëaÔµËý—u[ mì’Üq—õ2ÚöÈý—Ð?z…rÿ«y=ñéÿ6½±^@ÛmŸþkx»Ä Ÿþ}±ž@Ù3ùé?ç.þ°ž@Ù ŸüóŸpv rþ‘jîÿÂ.yÄçü¿Àà@ØÅ6ÈÇåàŒõ4ÊNɧÑUòBï°˜ÿ¢}qúÂnt·”nE‡õ0ê®—Jý—ß³Þ@ß.)ÿÒËë]ôíò_ýl= €¾—¿yu/¬gÀñ|oÿëïóà/ 6 Çÿiîý²A¦ÜÛÿ–çÖ«áq‘·ÿè7ëU‚P;ß“ÿò¶iëU‚°Ò{üo´ ÉeÞþ&¬WÀTÓboÿç¸õ Èémó¼ýßúm= @R ½ù»‡Ö³ ‘#ôßÊ«?@øsWê¿þ,ÜúMZï o¸DÈß5§¬wЗòw cÖ»èëû?ÊÛ@ø¥åïþîød= €ºDTì¿°ßzuñ½bÿ®Çzuý•rÿÖèë]#÷ß8n½ €¶W«äþkß[/ ­«Xî¿€O¡×]&÷ïX/ ­oOÿ7­—Ð6°Ý§ÿú·ÖÓ(>àÓþëi”}?ïÓ¿kœ±@ÕtûRŸþ£|ÿ»‘Ÿþ+žZO ,uM¸þû¿3ÖÓ(›ªÎ“û?f= €¶©–‚¹ÕÿO‰m–xœíÝiX×paQY”EŠ`H$²„]áŒ(kŠˆÈ"µÕK‹+è…«UiÑ*ä)P .@#‚Qe‘°KQ,E°"*a¼7ÚÚÚfÄ$0™{íûûÆ—sþ9gÞ3g&FLì%ç;ÿ¼åžDÉŠ!Q‰Æ:u]ÎE\6a €¾[ÒHõo?Šu0ú.Øãê_û4Ö¹è{òÍr¤ À:¬sD ;jBý›` ^õ¯Y‚u,€(0 ¼õ?ÇëTQhÿa …u*€(ŒeËðÖÿ‚îgXçˆÀ2oýËÆM` 6óÖ¿„ÅÖ±"зá€ä0Ö±"0| ¡þqì)¬sÐ7–‹TÿуXç o‚…PÿâÖ]Xç ±þÅ$Û±Î@âþ_L¬ë\ô § ÖÿÙ1¬ƒP‡øýŸ˜Ø¿z°@]±þ}Ú±@ÝÆˆõoÛ‚u0êšÄëYÖÁ¨+G,1ͬƒÐö$¹þß…úà­×€\ÿºõX' ­T¹þ­à ÞzË_lCÖÉ(ÿê5õÖu4Êj©ÈåÏ‚—€ð¶Ë@~¨˜1<þÀ[ïsäò—üçÖÉ(ûé¿ÿ‹‰I²'±Ž@ÙiMÄú—:úëd´… —ÿ–ÇX ³ ñÞ?µ ë`Ô¥ÊgWˆu.úNÿätxùo¿g„ò׎Â:}™ÞòŸûɬcDéôÿëTQ@xó÷’<¬CDá"ÂOÿ·À ž§ü¥ÏŽc ò¼§óûX‡ˆÀT£"oýøëXû‡ oýÇp°Ž¡9ßþ}7…u,€ôàêÿ£¤ï ªî?•úZʘ™§NžHJÉ.(¿7Ëö·U_ÉÉà¶žøuÚ™‚ÍÝè?³<ÑÛVƒ•—~*)ñDbÒ©´¬ÜÂëì;‡QïðkøáöõÂܬ´ßæ(=;u£¾­wõžŸu7ß(8“öu≓§2r®T·õÏnûC÷Ê ²S’¸­g2ËZúfÞ`Rý«ë[¯ÙðaHHLFÙÏ3h¼‡û›…¡>‘¨«olEqß¼#$ôhVYÇ̃?í¬ÊMØé±ÖÆl¹¾.¸ÔÀÄÊÞÕ{kHpðÁ¤ÜÊ4þqIïÝŠü´è OGûfÆ$}]"¨«g`df½j-Õ+à£`®ˆÏÒ™¥MFPè¼Þȃ¦RfzÂçÏ'á£/êÚUÖfFz/æHŸdl¶ÂÞÑ3(:-¿ân/ ÝOvTæ& Ùêíjoeb°”HÐÕ_nf³ÖcgBnUç,œI;Ê²Ž††ìØìN±2æyD}C ;·bsØ3yA÷Ï7¿¶D~ïßo¤tvŧg–þ8&xã£íEד•y•]æÇ`0o ?.S=-9áTS5¤ÅKL|‘)5è#5•YÞ:k72FºîÅowµ"(!öù;¼2ÁÂÑoÇþÄÓi©i™JjZÁÎÃZkJ.drÇùtâþ~ŽeÞ¯²_…S"X¹n/ºÛ5kË3§µœ™šÊ8D5]„XI85SjxNKÐWÔO;o1Œ¸ §e²¼­+“×,jâôŽýXš™¿ËIgÚ{ÉôcF%ûN· Œv3wYËMר⚰³•ÕMýÍøcv<Íá¾å_(Ùl‹cÕV×¶v Îìº`¢ÿ!ëÈ;m)¾Fë œ·îK¾TÅ®®®njíèæŒÂ•™˜åtw´6qG“]u)yßVg£…‚N‰”¶Ý–#¬‡ý3»x6ØÕÊ=²XqÛl”ÞØ¥Œ1-žýXàGj¦ú;šª+φ­Aø†îrÖ»˜Ý‚¬ãÝwØ•ŒM8R0«‡30Ê×9{bˆ¹“$ÁO«ª× ô Œð?“ƒ•‡=Ô.n˜\ßÃá ŒŒ sU059ÀNÙã¤5ýyÿÍTÌ<öË©éîãâ < ‹Á›M=224Ày>lÝ59Çöx˜©Ìp&pZN{RØ“ ÿäøÈ‡ÓSŸh1íÎù/Ô=WòôMŒpk¢æøFU~Ú– ídñU?OG8=¬`’P£&.!‰ŸgyO1šLzóéù×VqxI)iò®óüÞ˼ã¦Ä×ÒòJrnx³Àd!Þf:u?ÿ,…d¶‘Sˆã$ðÜ \xÅå.ÑéWï qYõ73vïjzt ËrEüó“Äã%pâ3Ÿ œ™~(ÿ¾ @Mr ™žDB°Jn1×ùì¤ïü.²4·~:Rp>[€Éë‘æóð’&ÿ¼‚šö’ÕQ¬é®«;ÏÊ V¡r —èè;îËïzÃG¸ÏÜK™ÏçÒÂÓ‰¬’ºAËòý#í|Nijöâ¤Ý¹’Âõøz8iÙùÊj‹µ ‚ÑpÝæ°£ VíX¸ÿ –Å8¶y!Q‡;:Ú‹Õ”çËJÏtóÅCr®ewRq;¿†íGÞ·Ô"è¨+É vhÿNf>e/óMÖvåïsÔ×Y²PNÀú‘7 >×9M»VÔê%Új Óß áN•dçêòM)ïc‚“?ÅÓˆÊÂMþ[gßÈ´2ÄŸ üP@V²úÿ §a°ÂÑÅeãîØ³åÓÜ;l«È‰ ²'¨ =!1»$d•If6gW.wúŽÈÃ'3™×Ø-}hýãwc=6:<48ÐÏé{üKooOÏ¿ÕÓÓÛûËã>NÿÀàÐðè÷2­oUÇû:[Ø×˜™'Gî »»<ÿðÎ3q±²°U&€9*û ¸œŠ¶×Ÿ–GÛËÏÆîÞèââ¸Â@cÚ»YüQ%Äü€øNei‘¾Î.¶ïW¢8e"-¾è'ÞÍù£ÒoBÜ\íHª³½„Êê­öÛu,ýû«•uMÍMµŹ©{}mtfZ/Š$ŠÏöˆˆýÇyWÊÙ ·›k+¯]ÌN q·&Ìx^1W“ìàµ-4"<*&‘‘s©¤‚ÝÐtûvS=»¢„•—™Ns0'(£"‘QT'YÚ9­÷ÜñBä˜Ø„¤FÖ¹¼üÂËÅ%e7+ªªkê꛸¹¹š¹é›êêjÙÕ·ª*Êo–•–\+.º|©ðâf^îùsg²³¾ÍH?œtâøW±_ú"úÀg{£"? ý$ä¥OBCÃÂ#>ŒÚûÙè/}ûÕñIɧÓ3¾ÍÊ>sî|nóÂÅÂK—‹Š¯•”–Ý,¯¨ºUÍ®­«kh|¤ùEn†úºšêªŠ›e%Å— óóÎe1R’bcDþúqÂCwx¯w²³4"ª+ÎxUŠ„2ÁÜž™ÇâNýóéoàNÿ¥FbLTxDè6/²ækÞ%9‚µ{HböÅk•µÍ·ØåWòÇ÷GDl÷¡¦½ÍLJ9:6¾{Ss‹+j¹ÕXWyõûôcQ{üVë!|q0{æhšRÞóö§Ó¼¨öÆҳز¼ÙÎÕÓ—N÷ó¢®±\ª2+{dŠZF+Ü<}htº¿'ÕÁÆ„°›#rz2ò*êZKI&+lí]¨î6nòöõ£ùûÓ_ð§Ñüü|¼7yynXïNuuqZç@±_e»ÒÚÒÜŒllHZ¦§KÐÖÒ|WC}‘šªŠ²’¢ây9YÙyóæÍý÷/YY9y…ŠŠJÊ*ªj‹Ô5ÞÕÔÒ&èê-#“ÍÌ-­WÚ®²§8¬srq¥º¯ßàéµÉÛÇÏF{ÄŸæçë½iãwª‹£ƒ½í ÒR-uùÿÉQ]H0±q zúpÃÓ|<ÝViÍ´§WYj¹†êåG§ûzºÚ‘µ~€'4i c{ªîïýÅTý+àÿÇ+„©þ²€ #À6ä6 ú6@ *7Z7b7(/home/amr/Borders/GentleRipple.tifCreated with The GIMP -9  ã ó# '*ü  ÕûØ Õ HHphotoprint-0.4.2-pre2/borders/Makefile.am0000644000175000017500000000064211163663672015223 00000000000000## Process this file with automake to produce Makefile.in bordersdir = $(datadir)/photoprint/borders borders_DATA = \ licence.txt \ Flaky.tif HeartsLandscape.tif SoftRectangle.tif Vignette.tif \ GentleRipple.tif HeartsPortrait.tif Sponged.tif EXTRA_DIST = \ licence.txt \ Flaky.tif HeartsLandscape.tif SoftRectangle.tif Vignette.tif \ GentleRipple.tif HeartsPortrait.tif Sponged.tif photoprint-0.4.2-pre2/borders/Vignette.tif0000644000175000017500000021026411074470402015447 00000000000000II*<xœíšù¯U†K0J0Õ XM%`À´F˜b‚D0H"6qˆSB@ÿzàûÖð®aÃ9÷Þsoû>?ŸÝ¤½÷yÖÚûôÚ5B!„B!„B!„B!„B!„B!„B!„rþbÁùVáÏÌ–"0„\í×eÿܬ'a‚SÿKrÑh?V¾ù¡ƒXOBŸf€³ ŠßZ¿âúó҄¶Ì!Ç’Åo´(_$þü,¡+Aé+@ÈvâWí{å³Á×d©M JRNý¯KÈe¥7?{_­_Ðý gÀBj rXBV‰êGó“÷Åú‘î_;?RýË3ŠBnA‚š¨#@îGzõaèƒùUü }’¾±ýFä+;HG›"¤„ 2€U DàÔ?#BÎûY}úÙ|¿Ñ>+ß»þÄÁôMÈ1hB3+Wˆr¯‘ÝOê'ó]|øUûè|•ýIä«» Çkb jò:àHH`È=Åõ“ù.>xÖGçÙŸŠ|méP“„Ø,Aî@Ú¬[#pêŸ!‡³è¾©oC¿1¿õ­Ê·¦ý`Ú*Ä` Ú *`«€E€ ÷ûqì÷ꇑïâ»÷`}p¾Ø~øÆàùR„Ð(Aê€eÀ–qâ"À+Ë’û­úeæWñÝ{Ð>8_dÚyf7p¸$!´ ‡À:3PvaØr…éÝ/c?«ßšÄOÚ£ôÑwsøYà›»À“% H‡ d ­@Ž@YjNý³%d üÅý=ê£ù*~ô¬ÊgןžßžËM1H%ˆÐ `öD 4€k¹¼„Á¿â>¨ŸÌïÄÞ'ëƒòÙõo·6ƒ§rB R jš ¤ @ÖÀ5€\RÂà¸c¦¾¨3?›¯â›÷f=:|7“oßÞ žÊQÀ@ ,ÚÍ@ªìØ`Xj×r™è–þÞ}ûEýj~?xïÖƒóÁw3ù;ÎwwÇr0ž v e V D .©å*pêŸ;!×qß7þNýh>ˆÞ›ö.=*Ÿ\ÿžñýøÉÔŒ§ „;àˆDÀØ€ÑpêŸ>¹ŸÉ[ÿŠû>öõƒù²êƒøE{—ŒO²¿`ü`7~6%jà)(!ˆKA¨@°,5€7rjƒ_–þÆý<ö“úaæ‹ù2ñU|õ>XÊGÙï(/"?\$|Ôþ€˜ˆA(v@2 Û€WÀwfÈ «×rrù}ðË;uYýl¾‹ÞÛ¬ÒƒðÙ󗜗7r 1¶Äxr–#PpÝ^˜rÁô[ükîÔGóeâüíÍzw>è®2¿â¼º8”¢5°X $°ø6€D`KÊÀ äïÿ¢û0ö‹úÉü0ñeÞ«÷ª½IÆÕ_S~y½%}ȇ(@ ,逬¾ ” ”À"°¥q `ȰK~p¿ûª~ú8òƒøâ=joÒ»òÁvõúÇÀ«à§S Þ-„@:3 ˆ«€F Y L95­üøÔÿÈýiìç©CßÌÏâ‹÷ª}ŒO¦¿iüd3~&UjR!ä h`È›À´Œ×€ð¥@Îùãà×¥¿ºïcßÕ×}_‡~2ßÄwïU{µÞÝÅã·”Ÿo/€Ÿ³Ã! ^k–@Bà° Ä è* ÷€/µzh×&€œ#äÏK¿ß÷Å}ûÓÆïS? }0¿_¼WíUzW>Ø®RÿÌùùàã) k–@B ¨€ „UÀ7¿ È"à ˜ÞòU€ ŠüƒÁ?r_Æ~Rúù&þì=h¤áƒé¿0~¹ ?ª9)ˆ!˜;`h*0­%²ŒЮ‹ 8õo¹òÈè÷¯ú@~ÝúýÆïKv_V~ûÓ]¿¨?mûj~ß§=Zoʃï"ñ¯„wœ_¯Öó¡ ^M–À7‚.ZéFP" ƒ²Èe 6¯ú 7”ùRK9Џ÷/Èß ~»ïƒûòÄow}Q߇~0?‰?{Úé]øhú]ã7;ðS± žƒ‚Û ¡¾ Xnϰh€¼4kÀJx ǰ]~¹ñÛà—wþäþóê¾ÝõMýièOÛ¾›_Å÷iÖ›óàûlño…ß¿_?«ç± ^M–À7‚.^éF «€E@Ãe 4à)m€¬ò¥À¶œú7‰\9|ï_?nýòŸ{Ôý›zßO+¿=óõ§¡?mûÓÌŸÌOâÏÞ‹öj½9ïÂGÑÿ`üq3~&fÁs`-€Hl€ L˜véF «€EÀÓe@ßnjä¿å›ÀJ¸}ÔÑä$ÈCåOƒÝ¿…î«úw‚ú2ôƒùIüÙ{Ñ>HïÆ£êþìüeø¨žÆ(x B <sbRd°ÜñxnÕ¤5@¾À÷À.ä ÚÑ^ûƒü°õÜGõmìõeèOÛ¾›_ÅŸ½WíUzSm¡ÿêüm#p$VÁs`-Hæ” x¦­!ð.ˆ—®é&·ýF€K9€ÁÞ„üyìÛ3Ÿªÿú¬~1?yÚ«õæ<ø>‹üwáÀ?ÁOêiŒ‚×@S %ðÄL(°W9ö0˜cÐÞNýÛE.5uôûÞßÉ¿qðG÷]ý×têªþtÏ/æ£ø³÷¢½ZoλñQôÿÞˆŸˆYðX  ‚¹Ré]@#׸|Ò€­k@Ÿ€îÀ%€Œîýré·×þEù7ºÕ—¡_ÌOâÏÞƒõê¼Tÿð.ðÞø9=¢à5Ð@ ¬1¥¶ `¶5`=ò€?p [èG¿ìýòâ·(? ~¸ð'÷ÕŸ®ùh¾ŠŸ½ëÍy>zþ_ãýø‰ØϵJP; À LKH €çXÖ ¯~`È £ßöþ¡ü°õËà· ?¸ß}W_îùhþ4ñM|ó^´WéÍyð]Lþ@ùøh~ÊŽb¼Ö)„À: ˜¶¬À;s<í" °çYà&°œ¼p c¢ýþäg{ÿPþ¼õÇ¥¿º?V_îùfþ4òAüÙ{™ö¢½IoÊ£íjõÿŒÿoÂ?»9°H $²L€ È2 ¸;W`Ú€xÈ7åÈ=@Y€ÈÇ·ðš“xœíœû¯ÕevÆÇhÔ@Ԡш  @Ô€Q!*Q‚ň!ˆ1Žmì%v¦Í´hlÇ6SJ/i¶Î4íL[[[;3m§Þk§éýÞ¿¥û]ïºcóÙ‰¿X>š`b RÀJÀBPudUàhQL@ž°»jÀýEv IÀö"[ªÜÙH)I€(I@Q€e¬ƒ SÆÓŸ¯~…•À;À¿¹À¿­Àÿî²øGìï ì·kßÐ/äòüÊ=o{ ^™7â=é?ló#S|Ä«‚©j(9ÒUãUL#à5`OÑ€‡Š°½Ø€-ŘÜ.°*‘o¦5þºú=ýêû»ð“ëßQà—ÅO¦OYüƾZþú‘|Ùøºï+÷€½gxg’?Çó£8?Ö÷Ëä³NL T ¼¨ ˆˆ*Ð ¦{‹XÙ€ÅHÈ%ÀåS€`XÒ#ô›ñ_.Æ?¬~ýÿú.ü°øÅô7ìóÚ¢+?€ÏÛž±è yÄ]¨>cóö¿ÜëÈj([‚ª^Ì T8ÙœHГ€õU¸ ÈLÀòj$ °4‡èoŒ?®þèûþ~pýuñ‹é—®Ù׵ߢ¯KÉàWî{=ïQÇæÝ)>âEÔÀI úT°AÔ  N¢ÀÈ@ð°Q% æ€Æ¸0(ÀÒš®ñ«}¿‡«ƒ¿º~¿ø÷•Å/yߨ׵Ñ×¥ä ø‘{¤^‘GÞ™ä—ù ?ŸO&üý¨P‘Q‚VDPœP#4`ÿþböµ6 &•€­AÖAÈLÀ–ì´ô·Æû~ ý‹ï¯m~]ü•ý ûºö=úºô‘|Ùø‘{Æ^©7äíBö{0?9að×e9P-%`!p:`nUÀY5­` PГ€z¸³H€TxèÇ€A–Ðdô[㟬~ý]ø«ë×Å/¦¿v} ûºö ý7}$ŸV¾‚_¹çm/Ô+ô¼'ý§l¾0åÀG¼*€8)`%`GPu@d€Ìª@7@Ôdpð Fµ% Œ‘ÈÑ„kÀ Ki\鱿¿úƒïðïBøuñWöŸá®ÏØgËkü~A¿!Á7î‘zc–ÚæìÔòšj R Jàtd QšÀpppèP½ j(6À$`W+Mg°àrŸ‰ô[á/•_õýúË?ƒ]?›~ºñ>ìÙgËokߣÏnß‘¯àó¾ìz@Þ³þ3:çæ4ö9¯ * æD‚ p/€N@‡§‡×Û G—2 ¨OƒTj2°éXJè÷±oý~õ›ï¯|üùÕõ›é¯ìñì«åoÑç¥OnßV¾.|ã^°Wè ùûÏêüÜÇ>$ÁÄ@¥„ÀéÉ€˜Nj‚ø0 pÄ4€£€%.¼Ô§A1¬Cb€ƒ\Ö“Ð_b4þúmõsèç;€Ÿ#¿º~3ý•ýcž}]ûýÏTôqç ù|Þ÷̽£÷°ÿ¼Î/Ìyì³^@ œ˜° p*ð¹ªZ‚¨ppŒ5À¢€%.‚ÔwR`o @0(Àe;)ýÑøË­ß­~öý%ôó#)ü~ïúÑô§ìÃÚô?+èÓÒgòßò+øÀ½`¯Ð#ð‚ð/Êü’›÷»ã~ÜK‚‰*逺1¬j4ŒDŒ@ªB@ (u ? *Uç€`¬ lcÀ —錧ß·úÁ÷—Ð߃Ÿï|ìúuñ×_Æ>®}CŸ—¾Ûù>s/Ø+õƼÇ]±þ"Î/÷K£. ˜ˆ°°€ 8/ V@œLêmÐl'zìJ€Tœ‚ °0(À˜éèWãïW¿øþúË ¿rç§Âá×íúŒ}¶ü-úg*ú´ô3ò+øÈ½§ˆoHÿ?¿Úð U5ðJt Ê@¢lÎT+D€Ã€Ó€S§IÀI@©Ë»€ò:Pª¹˜ €0(ÀR˜qô»ØoÆR?­~ ýÚö7ð³ëçÅ¯ì¿æÙ×µŸ OKßÈà3÷‚½RÌ{Üìæ1‰. ¨¨°°x0`+EÀ‡Ñ€×@Øph$@.® PÀMÆ+¸|g ú£ñoV¿úþòÂOÛþþâúyñWÓ/çýÀ¾_û-ú´óù|á^°7è‘xøK6_žÇÀǽ$€¨ˆ°Tð*@^ g‚ÈŽlJh$@.ô:Ðr@4!LV€Åþÿw˜…L—~WúýÅø·«Ÿ|?…~zäãá—È_\?'~5ý•ý7•}µü}öû¼ô…ü|ä^©æí¿fóësøpPÐU‚ ­ ˜ Ð<" a@4àMÖ‹Ü”$ e@€ò4¨V”Pb@P®¸Ü†¿ã7ý`üKçG…¿­~óýôȧ¶ý)üìúÕôK×g{?®ý}ÚùH¾ÜöÀ|¤ý7l¾2§FE-ðB:`2*@^ Š@cÌH'¨Q“@+t¤×Ì”s€t¦R€!\¢3‘~ûñ«¿ú~jüÊ#Ÿ‰üàúuñLÎ~о-ý@¾/Ü{ê‘ùûWa~sêÁOEI@-ðJ:`2àUÀ¬@&¹h(6’•AÊÓ nk&cÀ:(¸Üƾß?‘þÆøÓ­ŸW?õýìû©ñ«§>Êü üìúuñL¿t}Ì~\û}Yú|_¸Wìz¼¢ü[8¿=Õ¸DM@10)P!`0ð*`VD Óê5 ÀI •êè]·5Ð=€M½ ˆ1`¢ ÿ>À¥8úãÁÏÅ~2þÔùѭ߯þêû)ôÓ?®¿ôüž}Cÿ Õð3ú´ô[òøÂ=PÈ'¬8ÏI4Å (耗FÈ ¨èy€DÀk€Üœ €$%€ÞpÀ9M½  .bñ8(À¥=s¡_c?ºõëê¯Ç>ýô¯¶ýþqý¸øG¦Ÿz~ôü~í«á7ô[ò|Ç=PïW~Çæwç<ðá((ª¨   œ3ˆ@Y€î5 ˜ (I@%à„J]èu T|@o H0(Àe6Zúqþ«SúÙøÓ­ßVíûÙ÷×G>µð³Í®ÿDöôù|á>RˆWŠ?‚ù½©?Õj(ꀗ¯‰LÒg €  :žY¨÷5ô&@b@£«'¤€áp‰LSûM ŸJ¿ûÅø×[¿¦~õý5ô×;?»~]übú[öaí7è#ùlõ#ø{‡|ûïÏ{Ipb„ ‘ ˜h5¢ÛN™л©$hPßH ¨EUc`(/­I¬J¿VþTúqìWã_oý°úÅ÷×Ð_O}-üìúýâ§®OÙoÖþô+ù ¾ãÞ°GèÞ?†ùƒ9~¶Ñ”/¨,ê:"€ju‚ÁpH$€Ž‚ZpPßh ¨EUr È`—Òôè_1ýÜøË·{ÜêßO/ü¸í§ÌOðsäg×?ZügxñSÏïö~Xûˆ~K>l|Ç}C} @þÚ‚&Q§ QÀ 4*€"Œúº Tp†l'.ªP@ú:r˜€=lô0QV p‰MüÇÒ_+ýfüµð‡¾_B?=ò‰ð—ȯ®_?™~ÍûȾ®}Êú}G>o|·ï {„¾áýë0ߘÇàç=@)0!p~€Ý@P'Ô 8#À }€Dj, ”2 J= Ò*@ïx€ E@=ô`¨.‘ÑàKÿ„þ Hÿ=B¿6þXø;ß_C?Ýùø«ë÷‹¿Ã¾®}2ü„>.ý–|߸Gêò@ñ.pAðR`B :€nÀ©Xª€h5ÀÛN‰л­4à9À]äY ž×% Ѓ¸'Zwòs?Þý\ùké¿_ýâûë ¿zê£ÌßÂ/‰d×¾ßúêö™|?pï ¼ÿÌÏkð¿õÀIA¢ ¦^È D#€u€¶‰P@GAzèr€7>XXÕÀ5ÐCXìÿÛ‡ñ­¿•þü¿.ý;þ`üÝêß_ù´ð£ë—ÅÏ?²Ïi? ß!ßoÜ#õy€ø› œLœ€¨  ä*D@§XT`I ‘€O“X& Ä{ÜQ€[Enˆ 0„€‹l2ë?%ý;ýÑøcß/¡¿Þù©ð ðKÕ/‹ŸM¿gÿaŸ¿l}E¿%_À7îûÀ¼’û'8:çqoäÀ)ê€È@£"â8 @P à( 6@ŽÐE€ži`÷€^ pÇ€É 0„€‹wÐúÇÚ¿ãçéߢô'±ßà?l«Ÿ}ú[øß}×\¿,~6ýžý/ û´öÅð#úìö#ù>`ï™ÏpÿÖ‚&¯ ^‚ p"8ÀF€jF‘ Ð$PÊ€D¤ “à1|èb€/ìA*ÿû¡BÀE6©õ·Úè_3Žþ$öÃê—ÊO}?5~tê‹ðÇÅϦÙÿ²°ï?¢ÏK?’ï¹Gì#ò@ïŸ5óç§ýL&N @T0+ "àÒ´‚ª¢ h$€Ž‚ÜZ°20QW$ °†ÀC¸Ø¦±þü¥ô¯ô¯oœ?ÿ.ýPùiè§G>åÔ§ðà·Ä‹ßí}cŸÖ>¢ÏKŸÉwßÀìóÐÿb^Ó‘…  ^¾2À*`V@DÀŒh@õÑÈQÀÊ•€r¬¯¥ À20W_„°^€OÙ{ Arë¥?ü”þMó¡V?û~zäSÚþfó‹ëO¿cß­}EŸ—>ïüü†{O}Šû_.pRAðJꀓófHœm€$Ö”‹@}¨9MÀÜ`*€c 0„€‹bbï‡Ö_k¿ú _}ë×Ò?åêgßO¡¿ÂÿN ?¹~^üöÝÚWôýÒïÜ{ê3âÿj&“©Wо 4V€D LØHh$à•€Zh˜lr¨oë¿ E`' =àâ,´þ!øósþ–Ïœéw•û~ ýþùÍõëâÃþGžývé ù ~Ë}dÞ¨ýk73çñŸOÔÀ)AÔ•Qo¼|4NÔ¸$PúÀ(\p€2p P¿T55€†€Á,âøåÖßè_;ú5õ‹ï§Ð_îü¥íoá‡Äoðƒç7ösô#ùºñ[îôÜÿvÞÓ„ ¹¨*Šj€fg, D (zT«Î® Xˆ¬E€0X€Åžõ×àÏ¥ÿ.ý'ÑŸÂÿ†®þÚ÷[èWøÏ üù5ñOž3üŒ>’o߸÷Ø7È#ÁŸ,xr=ðJ€B`2àÌ«€‰€Æi4@Û(Šœ €*@îð20HÀT À‚­,5@›†¥6xô Ö¿ þ“éï¯~IýÎ÷—º¿Üùüï+üíâöÅòãÚ¯èÃÒwäGð3ìsàÿn&“ËA&™   €P#`…€j@cDÞPÞÐAÀå€ÐD0tkè‡Sà…žvùCëï­<ùÍ~Kýâû%ôKá×ß³ÿ¡ßûÂ~Üú¸ôù~Š}Jü·g6©¤BdÀ©Xàœ°ø0h@O¸´*@r6S+@z Ä€—€Á,ÎØòoz?oý³àèûãê7ß_^øqÛðsäoÃ~Xûý–ü|}Šüß»ù‡9ÿ|*^rˆ*ЈD‚ °2@%€/åu æ4㊀ ýÀB@ì pa'ïýÔúóÅ¿üý¾ôkáKW?}¯¯ú~iüê©O3¿üéŸÀ~@?!¸Ø'ÈÏ÷¹B#NLZð"0I|ðe€v|Ô6°æ€·ßVðV+¾ t 0® ×²p±ÉX cµ?ô~Þú þ]ú;«ŸéçÕ¯¾¿„þüéâìǵŸ ¯äÃÆwÜGè;Ø~gA3I ¼€ ˜PhE  ™ èJ€V”ÔÀ9À›€®L¨0X8.ÔLZþfýÓÚ/¥ŒñçÂ_V¿øþúø[×_Ùÿó~Xûœõ#úºóaågÜOþ» ž ré@0ê‚|KE j€Ýĸ$I€T5° Ðs@RSJ,ÀbMwùÓÉŸ[ÿ`ý]éßæþq±W?õýâûkè×ÂÏÃß,þqìwÐ÷+Áϱïÿ3˜ŽäBËZVÆj€·Ô:ªÊt@Ð-ÚÀ²@—y 0X€ 9qù7'ÿÔúÃÉo<ý~¡ß­~ñýõ…_ ºøÉôSÞï²ßEø-ôÝšÉtÔ ‚FƉ@O¨à(ÐÚ€Vêë@ËÁÈ„DÆ+»!À?,À…™fùã{?ëýZë/'?¹øeôw?§~ZýàûåÔׇŸ¿-þ–}^ûýO<ú-øûñÿ<“é©A‚V¼|’ˆFÐ@H€]¨&€›€4d ×@9vC@íÝ{@g›“ËsÆ-éýä‹>Ò?ÜûþÔø3ýµðw«¿†~9õuà×Å/¦¿eŸ×~D¿O¾ç>¡Þû/3šŽD!hu Q f¼XPI€¹ ð& žìUPˆmÀï:§ýZï pað÷Ë¿ßûiðçÒßѯ»¿ûõÖïW?û~yä3~4ý)û¼öSôsò=÷-ôžÛÑôÔ Ê@¦™˜È5€£ÀX ¨ßâMÀ{ïA ˆE@ôUø 5ÀØ-À çk¤øƒÚ¿³üÑúKð¯¥?ËÇïþqôsçWW©ü¸ï¯¡ßîüÿÇ übú[öyí#úºôÇ‚±ïÿo3šžD!+Î €˜ð`QÀIÀÇ(ö.€«¾PÈ&@ºÀ P=3¨ž¤è„oì0Ô€³ŸtùÃÑÿŸö­o-ý‘þ£ýî•/t~TøËêWßßÀ߸~[ü“؇~ ~ƒ}‡øŸÙtÔ ‚V&ˆÀ4À6À'F,¨  s€tîep¦GQÜ)B€ûçÚSà`ÎÏ´ÅŸ-ÿUÙò÷ÁþŽþÓ@{ïSãO©ß*?õýtç‡ÍŸÁ/¦?°Ï–×¾C?î|·ñìÏòÓˆA#­øn¢ØX (J€ºz 9ÊÀÚh ÷@P€ÓNà9€¯2 °*X€¡<S½¿/þ0ùgÖß;ù¹·~9ýõ >ÕøŸSã«_|?…~Èü_Û¯®Ÿà‡Åoyß³ßA¿Yùû‰ÔÿÇŒf¢hÌ@_¼h6€%à›&åetRÔ€& Æ€sçT\ h ¾ ´c «z!ÀZW`V“^ýºËß[«ýèä‡ïüþn쯟þeõ{߯ð7‘ß\»øý¸ö'‘¸ŸˆüÎh&ŠAÐI*¨ÑpðeJæièP»À¼ˆ P¿`Ç@¨$Œ±Ã%ð|L(þ&/üšŸ*ýé;~þâ—”~üÄ_Œ¿_ýÎ÷ǶßÁ/‹,ûÍÖ7ô[ò{Üw‘ÿ¯™LW z:ÐQï§f@ÂE ÉÎp 8{‹­ý5¾hÿ@¼ê^z`€YLãýµøkkßú“õ/Áßj?:ù¹×>9ýbü©óƒÂ?úþ~sý²ø‘ýÄòwÐoÉïbßEþ¿g0]1è AGZÈÃh€ØL‰Ä€çî1¤ P_Ù1ŠÀR@0=H 8d€ÙM§øãÍòÖ_ƒ¿üÜ[¿ýõÞW?ßúmõSßï¿þÎâoØwŽ? ß'¿Á¾Oüÿ,xújÐÁð"Ó€i@×ô%€r€ÜÀPXc€Þ»)€ÀŽ®À[z8Ô€3ÌûçËßõ~jý]ð§Òßù÷è¯÷¾ÚøãÏ…]ýèû§?°ÿí–}]ûý„üÀ}N}CðÿÎ{ÆŠA+™ € xÈŒ€Ë¢SH@ÈÅð9€b@½È=°¯ô½=h  !Àõ€] 0d€ xÿ¶ø·üõ/Á_KúŽ_Öùýû¥óó«Ÿ}ÿ׳Ìoð§‹?a¿‡~üû?9H„ /ãD Õ€< ¨Ä.Àrší}(ßè»z À…€±À×€CXÐïoÅßʈ?/ëý¤õë/µ_}îã^û´ô×{Å~0þnõ³ïïm~qýÓ³ßG??ÁÞ“úçazZÐ耓ñ"0­H踼¨ ÀP‹¾f P_Ùƒ ©$ès ês Pÿq0©‡ °°Aüƒ÷ׯúéò¯G?ù~ÐúKð·“_}éÛ¥¿–~û¡ós«¿õýþÞâöÝÚŸˆ~?Ãþ|0?…4:àT`‚ ðÙ€(yP] R& P_Û1Pj€JXOjÜ—C¸Øàÿ[‡ ±xœíù¯—ÕµÆKl„` ÁbMmª©Æ @ˆJ8DmâáÐh›‚¤£­Ŧs:·iÕV1‚2ãŒ(ƒJ¡xm¯÷v¸S¯·½óøÓ}ß=­a¯µ÷~Ïù~Ïs¾ûh=ÉçYÏó¬õ~ùÈGNÑ7dÈg|ôÌ3‡6|øY#Fœ=rÔ¨sF9÷¼óÆŽ;ü„ >váÇ/úÄ'/¾äS—^þé+&Nš´áá¯|õk_ÿÆ7¿õíï|÷{ßÿÁôãŸüôg<òèc?ÿÅã?±ñɧžÚ´ùé§ŸÙ²eë¶mÛwìØ¹k×îgŸ}î¹çŸáÅ_zéå—÷ìy啽{_}õµ×öíÛ¿ÿ¾þú뇽ñƇ>räÍ7ß|ë­·Ž=úKûŽ;v¼z¿ªÞ‰'Þ®Þ_Ôïêýº~¿ ï]óÞ3ï¤yï»÷—î}àß_©ï¯[øôÿ•ðÄÿ?óÿOíÿoûß`ÿ{à¿ÏüçÖÿÝæPÿ%ª?Hýw©ÿ>ÕŸÉýÁª?]õ¬þŒGŽTÐêÏzèPõ>xðÀêϽoßk¯½úêÞ½¯¼²gÏË/¿ôÒ‹/¾ðüóÏ=÷ì³»wíÚ¹cÇömÛ¶nÙòÌÓOoÞôÔSOn|âñÇñóÇ}䑟ýô'?þÑðýï}÷;ßþÖ7¿ñõ¯}õ+oxèÁõ÷ùK÷Ý{Ϻ/~aÍÝ«?ÿ¹ÏÞuçí+W,_¶ô¶[n¾iÉ¢…Ÿ¹ñú]ó®»öš9³¯ž5sƕӧM$Óÿ˜¡cMÿæÍ‘ñG?‡ÿÀÏÿ ü)öcô5ðeê#|ß‹—Ö]ˆ D" kÀÛ Ìx 8’‘0$lÞ\+ÀF£É P…€Zî­  «â@-ÀôÚL´€ ÎÃj Ѐ/ŽþÞûŸoñ÷Ãÿr>üçÙá¿hñ°þ>ø×ôßgéߢÿID0þxôSøXøaøåÁL?aŸ¡Ÿ'_À¾eÀ7A U ¯b@6$à•€L˜ p1 (À“)Ø` ®ÖúBÀ’Å‹¬˜Ç-ÀåÞX8e€N Ðø•ziøw…áO­þØÚ/C?ýýêèðVáLŠ}Œ~ü>>+ˆD ¡q%à0‘€ý¢ à‹€”Ø"ðPÐ,@—d: Eã?rdÔûëÃ?ô~•õï¶Öß\ú—ÑO¿Ký¢ïÏÀÏLÄ~ú üìÿÐÒW"L E@Ó°I ˆs€kX (Q¼ ð5€ Ý6ØP·Ñ`äÈŽ4zJô7ôŸÀ¶~Ñð½´þÞú“ÚO¡ßTþuéÇb¿1þòèw¡? ?2ý˜}iìçÈOsÏ¡ý›½"1à2 ª€f˜€ HH@¨"àc)Lhׂ"…· =`dØ&pÂxo:%@ÃøGÑyÿ°õ«†ÿUâð_¾b%X³ñ§µ_Üù»ÙèG±?Á÷›ÐO ?¿ü"û ý²äç°éýÛ^¼Œ$d@U4l€$¦äU€“B@À{²  E ¿p! ô€Ì\UY€° Œ3-:y´ù³Ñ Áyÿúä'1ümëϬ¿üúqì:?ðý"ü$òÓÁO<¿>ö%òSØ·ø&rIÒF€g°¸ P%@0>@ (€Vàz@Ñøc 8œ;fÌhv Ѐīð—¢ÿX‹TüÙá?Çìüéð‡ƒoýÕà¯Óïc0þÂè'¾_œü ~™}}…| {êßµáéZ ÊQQd P$€ºš¨ À1À î\pç@ܸs@w Dj@+cÅ #ò#Í‹þt銿9s¯!Ã÷~¾õ¯­¿ þ¥ôóØŸý~Ò÷Q×±ÏÆ~Œ~üv3_¢YH‰@0\hÀ}`,š ˆŠ€2°5€nz@b®™;Õ€Ò)-:- ú ¢?ñþ3®šé‡ÿþÝ~øÛƒŸ°ó³Á_¢#Ð_/üp釡òß&?éû”Á¯±¯£Ÿ?Ééß·à A$P4@¶¸ä.Àå^âm©ÍA€S€’ kBhVÞ,ðÀÖ€:%@óGñ£?êýÁû×ÃßüIÃ[üÒ/âû á/f_@_¿È7U4(Ô€R @9 ŽÍ×.ÈÀžúÐgr $•jþHô×¼?*þÌÁþÐûë‚?ÐoW~nßoœ¿D¿düéè3~uì'ÐOƒO)ý‡¶¼%à2 Š€d %€v± 8$l"0)ÀÞÔ jBH,€9Ä5`*ø ÓJ¯ïý§xïï·~æàÏÔþfø‡ÞÏ·þºõ÷—¾<÷ûÊ?Ä~!õóº?†ß¹þö£±/“ŸÁžÑúÇ–¾„$d@UÕI@’jh€‹» à=€û. ÜWA¶tÀ,Ì9 ßÂ)€Éhò<þ¾øš?ìýyñg®ý¡ö·ÃßÝúƒõ/¤UþŽþìèï üŒ} }•|úÖB_"  * ˆ@¬Í$ gXX¯‹B€û&€X³0_Ðg© k€Ž ‡÷~Bók?äýaëg®ý…á~¬õéߤÓÏcÿþÆWðý9øÅÁŸ`Ÿ _>åóÛøT%Ðe@U$‘€(Àm0/TØ+Ú¸0¶æ‹Ø† ‹@±ììÙ {¿PüCó‡¢?îý÷wÅŸùÔOþuïG¬¼ò³wþIúÅÑO|¿ ¿6ø%ö³è Ü÷ôy)t ÈÀl€&,Ä& £[­Ðe ®Œ-€ù(ÐÕ€(ø=@¸Æ- [¸=`“wJ<©ø×~îÞßôþÎû»âÏ|êçjÿhøË­?*ýÍ¥/äþ$ýG9ý~ôó™~‰ýôðÓˆ~Ø¢W*‘ äD@Ð" Àu 1AŽæÀ÷æË ° 7‚0‹÷Q`¨M°{€ð³ q ÀÖýÍÞ)ð(þqó磿½÷ÇÞßîÚ?þèKŸÑÏc¿úãÑOàW‚ý$ùà·ŠùÆZË€¨ Ðl€ ÜH1€V }$X€•Ö„2€û@,L Ø€ð†dð÷Ñß®ý°÷ÅŸ»ö§Ãß_û Ö?Ô~fáï.} éw£ßW~Máר×ÑÈ/þŸÚôJ¤@SM h&P¢P¢æË {.ø‹`nî° Ô€8¸E )20¸á/ÿák?Éû/´Þ¿.þ̧~ñð7½²þþ—ý ö‹é§•düÙè/_6ý)ö)ú ðûú)HÈ€.ªüNЀŒ&Ç€Cd )€/ݯ¢z@jÜG¶t×€<„/Å5@GüQñ[´ö37?Öû/öÞß}êgþ¤á[WûÕç>õ7~õµšýýÁøCêG£Ÿ·ý üûYô“à÷-öI!PU #Ѝp’J1® à1+@ðõEPým =Ú !@¶æÐ|è3ÀbŸÌ-PXÂ%[t ~üêáAŒ¿‹þÖû/ïo‡ÿaø»ÞO þ¦ô÷ôûk ?eüõÑßþhîcôµ¡_ÄýŸÚöŠt m" ÐL’&@ŠDà&Ð(€]D5ê™Xc-d€…>@ @àQõ!@tõã÷~¸ø÷[ýIïo½<üÃÒOêýHíW¯üŠèwÆ_ýàû𫃿`êgÁ`ýs _±h* 9¬ %@ÌÌ Q€° tE Öºk fp{(\ è×xعÂøûµ¿Üü…è>öÃÞßæÚ?þýüÐ/üÑèOÀ þûiô °o%óeZT”¤5€Û] €uŠe ×^ `¾5 ìÜ'¡H´€èh Á?ZûóæEêýMñg®ý…áOèßÁß×~þýeôK£??5ý)ö‹ÉOPÿÏm{ %(V" l€$‚ (Q€ýHBèj€-DD `> 5 Τ - t0ˆ ‰¿¿ù£ìýÍÖÏ^û熿³þ´ö³Ÿ÷'èw±_ý$ô+ð‡Á/²Ÿ@? ~_aŸ‚¤ äD@Ò€ÈDÀªnP *¬ C±ö‹· Œ3€\Äk€A.)üiógþ!úÇÞßöàÏ×þÒð÷üsôÿÓÿ6¥?5ú]æ/_c_C_¿/©Ï(AB$à—×äL-޹e@^l °+²n`> t5 ”| `>À-`GÜ øÇ7¿¡ø‡æoVÀ_òþæg>LñçþØÅ:øáÁ?Iÿ1 ?6þà§®?ž‚¾~šÊiÃ+ÕUP5€$B c,tà5@8b×@îÐÕ€æ‡A„ à`iùnŸPüñÑ_(þ…æÏEîýQñçwþòðwÖ? þþΟÑœÑï¿8úÓð7`?K~ßBßT ²*ÐPr™ˆHŽs8ä¾ j! Ÿ±_àd\ðíáp° @ZüGÑŸ{Tüùƒ??ü£Ößÿ2úCéÿ~úKàÏýRò9œÿÚÆW(‘ äŒ@ ª/R  U`N\ @6ظ/p H2/è #õSñŸ@ñ7ÿý±÷7KÿPü%†¿=ø­¿¹óG­™ýŒ~mô—ÀŸ`?~÷í¤>¯IH‰€ªeŽH¼8êÀ| „€p$ZTºS€B €`z½À0ap Ã?œüÃÚßïýXó¢?öþæâÏþÚ?þÄú—Ð/Î~dü…ÑŸ€_üûè÷'öñËÈ@R¸(6@–€Øð z€œˆ!/ì&ÐÔ€æe€PÐïÑ%ÿ`p mþaú3ü'üyô'½ðþpí ×ûùÖ[Sû¡™ý¿¦ôk£…~~qðKì«äsÿomyÅ: ª€ª’ Ð$à÷\䀫@ðhè‹@° À= ·ðEɰà%€ÉŠX0ˆ¶šùøÃÞ4n뢿ëýqñ‡®ý…á­¿J?êü3ôK£¿þˆý úEà·‡ú†JP]4‘fJàXBx }€k@¿@%€»À- ì4@1ÿpôgðŸDðwÍŸý#ï>ôeÃß®ü}¿©ý’ô“دŽ~çû9üÁõ'Lšý,ùÎoã+UT ¢@T8 r€\ +€/!@莈 5 d©p- €IáÈžÆ ã?.ªß6f룿óþ¨øC;¡÷óÖŸÿ"úÆ…þø#öeô3ä÷õy%h¦DÒ6@’Z(1 D¢ „©t·¤  ”怶€V¦F0nÐ @ |õCö~ææÏ4nëï×~®÷·ÞŠ¿xøÛ¥Ÿdý£•_ ýyß/Ã߀ý$úý‰}ür2 ˆ@™HÈ Š@!À*Y¨}xØgS¸KÓš[@º„K A)ñ‡âß4.úƒ÷ß༿/þüµ4üM¿ßø³Òÿ„H¿ý©Ñß+øeöOuðéKË@Jz. E@B °×8¸[ÿEÔ€&l@À•¾tk€ŽØG›¸ú“_hþBôwk?ÓûïŸþ®õƒ¿B?”~ ã¯øþü*û%è')ü>x…2P(²È ç€Lª@Up à7ª`Àìì"0”ÐÂ10ºR lú›Ó6= ÿ±þ|ï7¦ùÃÑßÜü ï¶~´ö·½ŸhýÃʯ”~Áø £? ¿Î~È—0ýÏ–¾fBPŒ40,+«Xp= ,È&0d÷=@(L ·€l ÀØA#ÒÞðÇGÿù]¡øÇÍYûÙÞ]ü‰Ã?êý¼õÁÿ½ö‘èÏ~~qð—°Ÿ%¿½Ì—jAVŠ5@² H˜Qà"ˆÖd=`dÐ5 ß E oÍ k>÷1€‘^ÜO}Ò³ÿkþ¾øÇÍ_XûÙ›¿ôŠ?ŸüÑðÏXžû“ôÓÑ_<øeöÓè÷ öY!h$‚¨6@’Åè ð.(@2 Z¡´ÀÜùE nýÀ ÀµºðC ùïØãÏüÔ'úà™Œ?¬ý+ümñÏš?Xûï¯èý’Ö?\ûÒŸýüYö“èŸÜó—UE4 HH€jŠà7‚!À÷€² ¼´k+î€@ˆô÷쯸ã?¢´÷«ð7ÍDÿ°ö Þ?7üEë_LÒø÷þ$ûiò ü¯–¿f:œ4€T (U9¤-@ÈdèJÓ¸Ù”Àˆ+ ð7Gó»÷3ÅÿZ‚ˆþØûÓk4üq ý£ŸÃÿ!?rýû:ú¥ä·žùiARD%àÏD>$ o €…艀/p %jý {À<{ 8(À.þÑïüÃÍ¿†Xû£âš?ýý½¿íýÙð!ìüùð§Á¿—ô'G¿4ù›°_B~ßaßD"P¤‚ (1M€Ö±°·/0 çÀö{WàЯÂ!@BЯûd@ÀÝO„ÿ…eø¯ZíoþÐÖ?ãýaçχ¿býÑ­_ýÊè'?üû:ú§"÷üeU@X¤$’0 p@ Ôà[€d€Kw ¸zU™\( À»bgøç>ÒøÛ~|ñ›¿ýñÍ/þ2Ã?¦ÿ½pé+æ~ÒøÇ£?<øö3è÷7ìúk(‚¨6@’€È„m€Ø¸«à÷(°¨Ä·@¨@- _ØÏ²€ÿ]tØßܶèåð¿ãoOþíÑÆßÿ¨ùãÑ_,þüÎ?þÇýð¬¿B¿nü¥Ñ_¿Ì~ý ~ÿÝG¯'* ‰@¬Y `& 4À!€nˆ·q —К5{ è¿¢‡@]Jñ÷üuaüío}¸“_hþÂÖ_ºù‘‡?éýdëß~eô‡Ìßþú§÷t %=‘€?)1  ‡€ÐŠ@¸B—¨ô{Àú +|8x€Þý4Á¿áoŠÚü¹èïo~ý³õ†¿ëý$úß/¢_ý‘ïODþ†ì7Áþúà5‚†(¤ ™€Œ¼/*ô€±p›ÀðÛ`Û·áŸñ—Ðú= €îÆ0pî€Üæã?ÞþÚŠ8ú k(þÍщþlø[ïï·~QògÖŸÔ~ÍéOû~yð—²_ ~_`_ Å"P¨TR9 ±ð"Yh`ˆ?@ß„À}äÖá œêÀ~ Àiß’³¿úê—àq”ý)þöêgí:»÷CÍŽþª÷GÃ?Óû‘Ò?O?5þ½‚_e¿„üþÁ>~%*P¦=%è Vïåz@bÄ @KhÍÐÔ—@‚@p1€p < ÎÐæ/Üýøå'ƒÿ Š?ÿ¡ùÃÑŸ.ýaëdžÿq¾ò—‚¿Yù%éOŒþðkìçÉïoàå—W (€¤ P/åzÀØø0œà€´€°X‘ô-»[@añþ‘/ÿE€¸ú¹ŸàÍ[ûÁÒ?QòwÃ_þ=¡_ý~ið°ß˜üÿmÛk… (Û&ª è©ð€Yh ä§p à[@² —@A)ptÐß ÷âIÕ¿ÿ'>á·þÂÞŸMŠ?*þÝ÷>ôâWöþÑð׬è/ýüÍÐï7è{$ÍD /YÐ3Ðz@bR ´€ö{ X(à€¿¿ èÿqеðÝÙüü/ügæð‡½_(þµèï¼ùðçÁ_ _*ýz ¿8ø“èŸRÜ7Ò¤dm@ P«ÀX5@Ú@ˆK²p{ÀŒÌ¸$ߞ΀\ýÛ£ÀZ{ô·žào‹ü±/»ù±Þ?7üßåÖŸÕ~‰Ù/Å÷+ðç úýÍ=%"ÐÜP€“@(iÈYŸà kt`Ou˜†€_ŸæKôÑ[ü›ßûàøÏÏàOö~€?þ{Àû»â¯døë/ÒÏ+ÿýtôsøËýþ&=õò"ÐØP & ¥<V-À×€.ì!@€z˜€ù±ØoØðtþˆà?r¹û1?÷sÅDûSŸõ¯ý$ñ÷kÿ¨ø¼ÿÞÐû;ïOvþÑðGÖŸÿÄìG±¿wð7ûÅþ_[^oU@7½–€¨<€Pð€aè3€Ýì2@´‡i˜}µýQÐúŸ3?„î€ððô¬âêß/þÝ7?æùrø_g?ù)ÂßÿRô77?ØûûkÿñÅOdý›Ð/~Õ÷7a¿‡ä·‡ø^©AC#L‰ 9 !@º _ àoâS »(€úc ë¼Lq`Í@ß-þ}‹Épxœí]‹¯UŹ¯Ñ Ñˆ±5B”´F5-"4Õšª©6ÔÆG¤ÔÔj¤ ¥’"HD…’V|´Ûªˆ­¶ÔªEQ8 /_œ=XfÌçŽ;þÄ“NþâØSÆO˜8ùô/Ÿ9å¬sÎ;ÿ‚¯]<õ’o^vÅ´o]uõµßþÎ 3¿{Ó-·Þ6ç{ߟ÷ƒ;ܵhñ=÷-ùá²ß¿üÁ‡þ銕üü>öøª'VÿòWO=ýë߬YóÛg~÷ìsÏÿ~íÚ^\÷ÒK/¯ß°¡oãÆM¯¼òÊæÍ[¶nݶmû«¯¾öÚ믿ñÆo¾¹cGÿÀÀλvýAœÁÁÝ»ßzë­?гgÏÛo¿=4ô/ò¼óÎ;ï¾ûî{ï½÷¯ò¼ÿþûÿ¦ÎÅùSqþ]Ÿ?çCsþ"ÎGöü‡<…ç?ñù/sþ›;‹¿wÁ‰þdÿ“ì0ù‡@ÿHêßÍý;ÊVû,þÅÍ¿¾øKˆ¿ˆþã&õ÷*þpÅŸ¯ø#ª¿æÐPñ§Ý³Gþ™‹?÷î݃ƒòÏ¿k×Îýý;v¼ùfñ×_íµW_ݾmÛÖ­[6o.þ´iãÆ¾ Ö¿üÒKë^|aíÚß?ÿܳ¿{æ·kÖüæ×O?õ«_®~bÕã=ú‹Ÿ?²rÅO~èÁå÷ÿxÙ—ÜwÏâEw-¸óó¾ÿ½9·ÝzËMßyÃw¾}íÕW}kÚ—}ó’©í‚óÏ;ç¬)g~ùôÉ'Œ?eìO>éÄãûܘcF:êÈ#?쳇|æÓ4òÀöß¿}GŒØgï½öjNÛtü÷Áð?ÔÂÿóÇŸpÒüO8ù4ÿoøÏ¾mÎ\ÿ…wݽøÞû– ø? àÿ3ÿÕOjøèWðAÀÿeÿMþ[ü· øKô+ø8ø ôﮂ~übðTþ(ö»øød’@€| øSÀ‡! Èf€Ý†  PÀvA[$lRð² €PðäjE?Sð€ €¥÷Ý»øî» ˜;ç¶Ù„¾à´ÉOð…“N8þó–ŰOÏ@ÿâúß·À¿ƒÿaü}̱þ_ðŸTÀÿ+ü¿šÿŸXø?áÿ¬‚ÿ‹þ}}æòß½üÕå¯Ñ¿G ¨ýYWø³ ß4Îã'‹ò) TÄ`H0ÀÀƒ °ÅH€¾>M/*xÀ–~’N_-à+Lð%MÇ3úè‚°ß¾ìÝc á?Ãÿðþ£ü;áDÿqþ_/ƒÿ üðÚÂÿ¹ç%ü×­óµ?¾ü úwéß2úËÀß2ö›Ævú©•bаË2€'°X·N€ö–V=.àC?*#€¯c'àÄŽ0ª €Ã1ŒÐ4¦3Ž5ÿhü ø!á?FÂÿdÿ3 øŸká¥ÿùþËxða ÿÇ|øcëoµÿ6ÿàåÏKÿDôG®~Ïô³àO†~êþ§c§%r@H‰ 1Xl×xxLÀÃ>°À|®´pnAg8YÀIGÐø? ÷"ßü øyô¨ÑþcÇ:aÒi§ð?[Àÿ"ÿËü¯qѹýüWáo­¿Óþ.ø{ÃÁŸä~œñ¯„þðÕŸþªÐïì«A"$Q@ Hg>€9`¿K¼Ðz0°Ò#¥Lx €Ë\$àì‚N?mÒ„Sǵ0zÔÑ"<´g#ÿý¸ìOGÿãÆO˜4¹€ÿ”þç_(à©€ÿ ÿAòÏÁ_ÿOÒäOZÿõëCÚ?rùûÒ? ýÌÕÒý!Õ_ ûMŸZ8€sa²1àM@Dø`ýz¸PÀ£!Ð-À‚f¸TÀ…ç0¥ €É“&ŒGKèz‹ÂÙiþÎ8ÓÂÿþÁÛõ~ ù#Ö?¤ýã—?–þ©èO»ús°ß#ÀÇ'Ÿd@š(e€¸ p` âH€RÀ8ÌõàKgžáµ€¡ °id'˜ý<Èe.úwÅÿÙ瞆?öþ)ø«ÚŸKþ8ëµ?¹üqîÇHŠ~ú¥]ýÁ߃ȇ'“Z¡*p`g¸Ç€ ðBšª!€"€‡˜ €%€óØ,txÐÈË=óï²?Øü)øŸ#á?UÂ:ÿ%K—iø¯0ðç“?Ïúǃ?pù;é_Žþä«¿ø{ùðäp@$‹€Ð&€H€@ È…~ h`…&€eK—ð0]ÀTIçh@- É{(`Ì?Íþ`ó§f—^~Å4ÿë®/à3çýü™Úß%Àúí&?ìåO¤¿oüÓП þ6@ÿ;vÚ@Õ) B1€5¾Ø$õ*àR@3¤ @g7pýu‚¦]!@ï€\ H2ÀŒ󯲿c¥ù·Ñ¿lþÔîG®~ ø_+à?«€ÿí™ð§ÉÕþ)—¿1þíAUìwê+2AUh¸ TpÀOS àö‚f ¸V€^Ë€hM "€cý °7"×ü³?ýËæOÿjö7}ÆÕIðçz?—ü ëÈýK/Nú£Ô/„þ6¿ËOE¨xøÇÄ%@¨°!€Mq˜DW+PC@9- *ü °VÔüÓìOEÿ¶ù³³¿éWQø/ˆÃö~*ù [ÿþØåÏJnçŸþ$ðW~Ó`Ÿ*$Ki €$€e€€ K€X`R@ÝÆ `%€«¦»! ke @2À^Š<õv8û3Å¿žý]wý 3 øÏ.àGüõåÏÁ?¨ý™ËŸä~%Ò ? üKLø{ùðds@œü( lB À›šB ÷˜´(#€; ˜]ÀÌ$è! iaw€½ä˜Ù?“ýÉ7:ú×ÍŸZýκù–þsËàO{?üSëÖþ´ôC—ú=ÛŸzõ·Šý¦A{Zå€Àq`$ÀF@B]€°Œæp‹ ½¶- ,Ä[@/쥇óov*ûsÑÿ…]ôWÿÇúîäq@´Î€ï¢B€ ,¢p&€©K°%€ÍÕ°‡"Zýaóï²?ý›æÏÿ3gݤá??þ0øÇÖŸÑþ¾ógr¿ô—ÿø³°Ÿµÿëð©ƒÊ9 M„‚–‚9 Ÿ@CÒ&À|M7)03ÓÊÀd€\Ðå%`ØüƒÝŸÌþLôo‹µû™}ûœ¹wÌ›¯¾öcG¿!ø¯ðGÁ?±þe—Túó¾?„þ àoú†}U"Èà€ 2€—DL@T à€Ô†Ö† ÀLåæÏ»cîAfdgºÐ ™õF`³ÿ€ù7ÙŸZýë7®øW³?ÿ…êc_ò½þzõ{?üEµ?Ÿû±èÿ3þ ðèþdð÷ðñiÊ(À÷e6I–¸°ÔØ÷€d 䀸€ü$ØBEjèfæ- z  2ÀpЭÀÁ_àŸ3ÿ.ûsÑ¿mþäìO¬~ ü—eÀŸµþýþ¡à/.ýÃèÞý9WUì7ôØ©ÊÙ" ]° ’4ÜE‹@R¤À2Gr ¬†€®´%€Ëi`¿Ð¥PÿÐüËÝŸÉþÌ“_ ÑüÉÕïü;.ºÀ_?ùaà¯F~ï‡àÏ_þCñÜ/fü+ ÿzÀß4ºSO;( ÙÄc€X81èÛÀL-˜×€šî^$ŸÈ%ð¬™7êÐ<6 ØÂ 7€Ÿý«Ù¿3ÿn÷²?ÛüÉâ_Íþî¹7þë<øSë¿ÓÁŸþJ.ÿ<ô§ƒÿã }wª@&ä3@’01 -a@`] Ü{ª€k]hv€. º³æÿÀ‘°ú£æßìþ$ü§™è_6b÷£à¿Ô|ê3µúñ‚Ïú.ÿw¸ËŸ‘þùè¯üM¹•ÓF Èbb| à¿ „´€S@ŽÔGA—; ÓΘ>íJ›ª ‰\ 8òÀ®¨ú·Õ2ÿz÷çf¿3Ìç¾àîG¼øßù·ïýë„°ó^þ\ìWý¹Øo¾õœ\h‘‚1@DDcÀÊð¸#€å÷›×Àv ?6ÕFºìjÀªWý9ó?Åš˜ýÉ}ºâßÀ…úÚOüýä/”ûs— úý»ß³ýõ¿iÐÖ}ꣀp5@>X À„L ˜Hæ«À’Ü @}”f€ú7LKÀ®v¡êOÌþù×Ã’ýæÏì~ô¯üø?„¿ëýüwëŸüø—Jÿ´«¿\÷׃ýÿoø´‹¢> (ÒL@\PC’Ê'€§È_r; ÔÒ Ð΀d0FG]]òê_UÈüŸÌ?xô›?3û3ð_†ÿ&þ0ù jü…/ÿ:ÑŸþ^Á==-s@k" ™ ‰±[@:À*GnäZ@÷ÈEgá@—€]í<õoª?ýæ5ÿ þÎüƒè_5þ+õ‡¾Ýƒ_œü³·üƒÚ?,ý³Ñ_ü= ||Zâ€, Èdßäy€h€Z÷M@óÓ`’t ˆJ¸ ЭܷH Ø]@]ÿêÑ?RÿÖügÌ?\ýøÛÝOþüíoz?ßúïð‡Ú?zùg ?rõ׊ý¦Ázjå€$ÎQ <€ÙÑ`‡éË!2Pà^øÀxX`?Ð=€¨®ú3³gþ]ôŠ5ûs_úõoü£ÖßÓþäò/“þ9è/»ú«b¿iDW9U9 š2@‰ `$€ï1Ø€Tî«Àd(Z@Pè€yà—€ÝèâêßV¸ù'ÙŸˆþMó§w?ú7þòáÏ&¾ög.ÿ˜ôÏGMàoÆ­¶P@L@LðÀmó`µ!µ²- *pHV¸ìZ Õ¿Â?«þuõ‡áoÌ¿Îþpó'‹ð3iðï/?¯ý³¤*úÓÀÿñƾ9•8 N hÊ<Cýi°œ˜Àf€ðc6 % qî%pwrýcõoý¢êÏÏþÄê_Eÿp÷~ä‹…?Úü"øóÉ_\ûs—]è¯þ¦A[÷©Z`€¸x>$`¶À>€ŸC; ]È—$¤% z Ì;€.^õï©SýQøóÏDÿþÏ$Â'€šö]þ¬ñgÑþùào«í:-S@Ð`ˆÇ)À÷¤H €g(ð%€t è0âºb€ÔÿÁ¬úŸÈ¨´ûƒÙŸnþôîÇ|è½ø««ý“.ÿñ/GÊÕÿIľ9¹*â àL@‚à=@:è×€æ³àv¤Z@œÂ ç&²àànr4ü3Ë¢þÝ÷>±úÇÙnþÐê×~퇇?©ýyíá‰Ò?ý™ào›:­Q@$HZà=À ?à @|-I ˆ3@Îè€8¼êª²û/Qÿ þÒü‹ÝŸÊþló˜ý•Á?Ðûejæò¯ ýÃØ7'‹ê`F”y€HXJþе€:”;@õ›l€~Ð-#yýÓê_|ò ¨ÿÉaõoÌ?Îþ@ñÏÀc üK’?¢ý£—?ûÐßø›ÆbS§& à€ Ë$@ì.!€  ÉAÀ9€ÉÐÈy#€fþ©W¿jùãÔ?iþÅ““ý‘æ/ÿÍþ>üÃÖŸ¹üÿ/ÿ¨ô¯Šþað³'ƒ*0@ÐØ5/!€G”6Ƕ€6”0å#åä ȼ¦`£ð×?ªþ“Ô¿1ÿ*û~lôOáß—ÿ€õ'Ú?_ú'¡üY§2T`€ˆ  € R (ÜS “F"Îà@Ó+ÀHõTÿ´ù—Ôý¡èÁCßFöà?‚ªö÷/ÿô¯ýMã®›N­ ÀšNä{7 àÙ‚Â(@¨f@hvÝ7àÃ?øê7ªþù—»?œýáâß|ç¿øãÖ¯ÂåDÿ0ø+ŸjÀ)Ày€Z`= R¨ PíS"÷ÀŽº%Ä×?®þå«ßrõÌ?Íþtô~ãOí§ü=ë»üÛþ¦¡Ö­§s Pæ@Gú³àî·A €2@”:ý9`:hT°áŸ©þ™åÿy¾ùg²?0ûkþaëŠý‘ô¯‚þ¶ÿ]zjøOK¤€ `L,ÊB€Ê ‡€lH#€y°+ 0èŠu:üÕ¿þõ¯®^ýÛæ_š—ýù/þë‚¿³þY—ô·üMã;õt‚2 A°!@K@¿2@€€ïà;áä XŽhØŒ ×? ÿäOýúê¿ù'æßdlô?õ‰àÏl~K¬‚öç¥kèÿ žº) Ÿ8ä!³&°5D¦p Œà·8 ~G€Í 8ügÂ?ûÍþyægþUöÇDÿfög¾ô 7ÿið÷µ?ü%_þCÓ(nõ4Á)À™ ”Ð[÷U`ohK¢`xัLØè3òî©þÝ7Bê_VÔü»ìÏ/þåì¯þÁäÖ~i—6úëÓЭï´*1@HxE —–€¢ÉQàJÀ€Ðߢ#€†ßšî/þ1Ù¿ƒ¿Rÿ`öÍ¿}ôƒ‹³úŸúlþ!í.ÿ¨ôÏEÿ'ûæÔE¹ M€'JB€,K`0À ŠÐCó›@’Ø v^„»?þ–? ú3³lþmöç>ö f1øSñIþ*^þíGÓHmßé$dJ€Ô0b,Ø€ü$(ÊA`0%``€W€Mv€áëŸ ÿXõ/«?;û‡æ?ýçßþ|òWÏåßô7ÐöŸ63@‹ f*€pˆ"õ@—€žˆE€M îú†nùC†ºúÃæŸÍþ@ó§¿óß^üÕöò¯ŒþaìNëP‘< Ð"€×€æw‚- ÙÂÀ–€pèV@‘°Y@®ÛýÙåß}ýƒáoPý›ê™ÿÉ/mþvêæöþeð/×þ±Ë? ýÃØŸV) ‰b Ô”Xóh—$¿Äo½À”€¬3`-&¸ ×vVxÓÓýéþxá_Dý»ê›ý‡Šÿ2øPÿ´Ë¿}èoŠMF &<ø ‘xp%P È;&TŸ`C# îú'ÝÿÜî«ÿ%DýGÌ?nþZ‚–ö祭èo„Ížv1cr<@+€ZÀP€ÀìÜ;°A¯=ý_ýÐÝ ÿlõ_¦þMóÏÀsGà_éòo ýMïN .ÚO›p+€¸°#&” üˆuXD¯Üý™ê?ªþAõç Øè¬~Ëà¯{?šüQë¿üÛ‚þ¦q×M§C àK ‚0 ¤0€-cÀŒ‚`c€^ÿ¤û;Å]ÿÁêfÿ\õçe6ú'Í_6üKµüòF›N; ,JC€l - .`È–€¸àGNœÂt€øú?„\ÿ®û³Ë?þO~Iõ¯‡°ú3æíþPöÇèEø']þ%èK§:d0@‚H!€¡ø ÚÂ_% š*`>f#@»D ‡4 ÀõÏMôðß{õÔÿb«þaõG¿øƒ²¿öÁ¿Úå_ýM£¬»O- )ÚE\h¸Ð8€ÅÈx_°ÏüP‡€wý«å¯þ°Ë¿4õOfÿÄü3ÙüÒoüAò²þ>ü‡ÑßéÓ6(#€¿’0…Àˆd€l`KÀXšó ¨3 rýëéèþ¼Wÿ:ü ¨÷Åôæ—ÏþàÏÿ9Ú?Yúƒ¿ÎSÊM@ª`j€t  x ìJÀ € ^ÒPŒ€9׿ZþðÏ<û“¯~möïÔ¿«þìç>Iö×>øW¿ü‡Ñ_÷©%@ Àf€âƒ ^ h€êÔK`ùD€jØNðO:Rnðxœí] ¯UE–`ÄhÔ¨!`Ô¨Qã5.QÔ(!¢F1€Ä-®q{ØÈž‡ì›l*¸oìd•]@†QÆq†qœÓ}z©î®^νç¼ûàuý„{»ª¾ú¾¯êœpBƨW¯þ‰'5hpò)§žvÆ™gݰq“¦ÍÏiynë¶çß¡ã]rÙW]sÝ 7Ýr[—Û»ßuϽ÷õîóÐ#öìñ'Ÿ~î…—^yí·ÞyoÐaÃGŽ3vü„I“§L6cæ¬9sç´`áâ%²tÙgŸñåW_óíwßÿ°|ÅŠ•«V­^³¶zݺõ?þøã†›6mÞ²eëO?ý´mÛö;vîܹk×î={~Nbï¾}û÷ÿ’ÄKâàÁC‡þNâðáøõ×_#qäÈ‘ÒøÆ¿’ø#³øˆ£"þ ãO-þÅÈA?«þ_(”üÿäÊÿeö§“ÿ?} é«Hž}&És¡Ïæðaúˆ:x¼ªÈ Û¿ß¾½äÍíÙ³{×®äîØ±}Û¶äQnݲeó¦M7$OuýºuÕk׬^µjåŠËøþ»o¿ùú«/¿øü³eK?ùxÉâ… >š?wά™3¦M2yÒ„ñcÇŒ9|ØAï½óÖ¯½òÒ Ï=ýäãõô‘‡úô¾ïÞ{îê~{—Ûn¹é†ë®¹êŠË.¹è‚ŽÎ?¯mës[žÓ¼i“Æ Ï>ëÌ3N;õ”“48éÄúõêeÍçÌù_Ÿä?IÿÓ“üoبqÓfÍ[´lÕ¦m»ö;]xñ¥—_yõµ×ßxó­»v¿óî={õyðá¾ý |òégŸñåW_óíw úþˆQc>7aâ䪧MŸ1köÜyó,\”¤ÿ§K—)éŸä?Iÿj–þóOÿ?léOÿ˜ý5eW€£HÐ Àù€¬TÓä?,Ë–~š€E ÌŸ7wö¬Ó§}X5yâ„qŒ5âý¡C½ûö›¯¿úò‹Ï?ûô“ôëûðƒ}zõìq÷Ý»v¾õ毿öê+/¿ôâ ;ulß®m›V-[4oÖ´q£†IþŸN @’ÿõ‹ÎÚþYþëí¿“Òþ»ÝAÚÿýö?ð‰§žíðÐ÷‡ýÁØñ'UM™:}ÆÌÙsæÍÿhá¢ÅKHú“öOÓŸµÿ$ý×V6ýËÍþJ§Ñ±ùU€J€µ¬$ùO @ >ýdÉâE ?š?oÎì™3¦OR5iâø±Œ9üý¡ƒxæ©'ðÀýÜÑMtÀò¿@pû¿¶ÿÞ´ýôÚÿ°áIû;Ž ÿ¤ý»ÑÿjŠþ×'ù¿!Aÿ›7oÙJóûv–þ»ÓôßëIÿßXúÃìÿÝýÚÌþ⣄ ˆ *Ào¬8 ÀÞ´ìf`ûvšÿ[·lN À†¤¬_O'€Õî d—L#ÈÀãQЛ€Ûk HÚ¿ÈWûïJÛ/ÚþèíDÒþÇ'èªDÿ‹Mô¿r¥þ7¤Ã~éïýójþ•Nžã#2€ŒÀ$Ê+›X`ÀÊ•æ°XNSÉ0~\Fè`½(è ŠMÿz°ýŸmmÿ]hû¿¶ÿþ¬ýÓô§íähJþUQòOGÿÖá_riúï$é¿'Mÿ}y¦^Í¿ÒysüDÞ °/-{HØ äM Àœ¦‘ €P€£)ø.- ô§à> º„€b­ý7bí¿Nþƒöß/mÿý–äGÿóìèß9üÃôßïKëè_ZóÙ_³‘SðÎ: `-ûõà¥Ì `ž˜8˜O)ègDhÃ@£ˆü/í¿‰·ýkÚßà¡Ãù—¢ÿ9VôϤ?8ü#Ü_­LÿJ§Ëñµ¸h Fè" ˜æ° €S€ÃÀj€^Фq£³k (쟽ýw¦í¿'iÿ}iûÇÉ¿ýò/AÿCîß‚þµáß–þ‡ÊHÿ˜ýµ8r­%€Cž RøÀ4€,¢àln0)@ úГ€ÎvP3 kÿIþ´býy0µþXÉ¿™„ü BÿvîWþ Lÿ˜ý•‹l €€«€84ÌN&˜š€¸7$ù_00Û3kûïAÚ?µþ”Ÿþº÷ßÿÓ³¿lóW^ý†w4ñÏÛþíÚ_îè?fÿqÞ Pð@5@7À$@¸=€b ˆž2=À9áð_ˆÿbócÿ¸÷ǼúÐþsFÿÞî_é§#G¹NÁàKˆa…а` @¾ ~ù' ü76%û‡ˆÚâ_ží?vÿåƒò| “Px1 €T€-çsH½üÃV¡ùG‡ÿˆøÏÙ?SüC÷þò?´ý{‡ÿØýën”Š<@FÀ$ý"š °à€bÊO4WCà¿*þëìŸáýg²´ýÛ‡ÿ˜þu9Ê+&ॽ€2=@6P±Èµ l@˜ÿäåèýçðz…ø½ûgz2´ú·ÿ1ýëfd.AæÌ T 2€ÂÏ™€øعp ù_þ€þ ÿªøOHïŸCü+µýAÚyÃ¥lŒ|ÃW2Ræ@f€J€Ò˜žQÏÕø€©lõ×ÿ}ìŸ.þñ£¿Îöo’&÷ŸýÇô¯Qb@&C@(@7PN Pc'Mô º(Ò+@9)€büÏÿáá(þ3ïßüCÚÿÝú—oûé_‡#kÈl`ä ðjà6e 8_ ÿ¡úÇÊÕ_+üwÿRñ_xÿLñOlþlÚÜþÝä_9é_é—£˜È¹@ 0°SÀ` Ha¹PXè@éFp(  Åü—þ«¿að_lþ ïŸÝûãnÿYÉ¿Øýc( d }Àâ@¸lvHZó!ÔÝ?ÄüÇV¹ù°ÿVñßÉþ©íg1í?¦]Ð/؉¨[ô,›;@y)€†úÇÍòðgz÷›®þbð_xQñß%þÉÅ¿ í?¢ÿ®ÈkÈø UtX˜UØðë°@(€åp÷SÿØáO¾úkÿððÿ­ì¼úghÿHûWÉ¿²Ñ¥ŸhŒ"#Ï @¥!øÅò[VP±˜`m\BÀ|¯úÇÒË?Âû¯˜Üð_gÿ ñ/¸ýç…þ+ý@cùOAÀ”˜aH-@p ÛÒÀÒ |ü—ßý€êŸ¸û-Í?‚ý7¼¿¦øÂþAë_ùÓ?¥¨™³0€ª@ˆ -@ðxzÔ°æ§jê¿©þAóŸ¸ü£yÿ5øïÿÃÄ¿Œí?ú¯ôãŒQ|”9„Ÿhµà€ü0?êPs±›ã?<ý¡¨âð'_ý…æü7Ù¿\Úéè¿ÒO3FMDÙ@2€AXæg@(Ž€`àròß7þsõšÿTï¿Éþ£â?ðþaì_Pû÷’1ýc”T¬`ЖL˜HY¦·2° À=þ[Õ?xùG3ÿø þë쟾øÔþ­è{1ÿëH ~– Æ ´X°Z€äP—˜#2þcê»ü“´ÿ1|õ×ÿìŸéý iÿýǰGÉ€` /èø€8ªXÙ‡• py@èøÏ¿û!Õ?sõ×Ëþëâ?cÿ¬â_õ'¦ 4Ê›,& ›È@—QŒ%`¦ò3À”0Ž€ `{ŽÿNªExœí]‡Õ–`ÐhÄÁ 0HШ£FH€P„J(Y ´PB -ÔÐ6€J°¤…²ì.é*EE¬ˆÀ⪴—òxøÐ÷|Ï7wæÎÌ-çÞ¹wf~»?âùþ†ùfÎWΙ;îP£Rå;«Üu÷=÷ÞWõþê5jÖª]·^ý†|¨Ù#=ñäÓÏ>ߢU›v:wíÞ«Oÿƒ†5fÜÄÉSgÌš3?oÑK¯¼úú›o¿ûþò+W¯]Ÿ¿±pÓæ­Ûvìܵ{ï¾ý}üÉÁÃG>ýìó£_;öåW_óíwÇ¿?q⇓§NŸ.>óã?–üôó/¿üröܹó.\¸x±ôҥ˗/ÿZVVvåÊÕ«×®]»~ýnÜø§ƒ›7sð/‚[·~wñÁ¿]ü‡âOŠÿúø€¿#@O@ðxøÏ‹ÿüxO“û`yÏØ­[î#Gž½›7Ésxãy&¯_wÏ«W¯\qÖ_‡öÒ¥Ò‹‡øü¹sgGúçŸJœÇûLñéÓ§NþpâÄ÷Ç¿ûö›¯¿úòر/Ž~þÙ§GüäãöïÛ»{×ÎÛ¶nÞT¸1ýÚÕ+W,ÿÝ·ß|ýÕW^Z”7άÓ&O7fÔð¡ƒôïÓ«G×ÎÛµiõâóÏ>ýä=Òì¡7¬ŸS·v­š5ªW«zß½÷Ü}W•;+Wª¤a¹ ÿ«U¯ñ@­:usê7lÜ„òÿ¹^lÕ¦}ÇÎÝzôêÛàà¡#F?qÊ´³çÎÏ[üòŸÿ«Ö¬[Ÿ_P¸iËÖí;>ܵgï¾ÿ¹üçèïò¿øŒÃÿ’Ÿ(ÿÏ»ü/-uéOùÍç?Kÿß<úß éÏó_¢?ÄÿŠ~ å ÿÅÃÿ?(ÿoùüg_.ÿ¯Qþ»/€ÒR—ÿç)ÿÉ àŒópùϾ\þrø`ßÞ=»>ܱ}ë–M…ùë×­YåóÉË‹Ο;{Æ´)Ç5bØàýûöîÑ­KÇöm[½øÂsÏ<ÕüñGnÚ¤qÃ9uëÔz fõj÷ûü¯‹ÿ•þß_­zM—ÿ þ7}øÑÇ›?õŒÃÿÖmÛwêÒ­gï¾¹‡ 1zì„IS¦Ïœ=oÁÂÅ//}í·ÞyoÙ+þoÈ/(Ú´eÛö„ÿûþ$ü?ÿÿ½Ï¿Ãÿ³g¥ÏYÌÏ?Ò æ Àh(“€³Î àç`pø/„ÿþï'üß¹}Û–MEùþ¯ü`Ù{ï¼õÆkKþ/˜7{æô)“&Œ=rعýz÷ìÖ¥Sû¶­[2üoÔ §^Ú.ÿ«ÞçòÿΘü¯Lù_Õåí:õr4zÐçÿó-Z¶nÛ¡S—î=ûôË4døÈÑã&Lž:}Öœy œñ?à¿3þoØXXDÇÿ=ûöpÆÿCšñ¿„ÿùÏ?Ãþ7ã|þ‘þˆ¿ô/‹à&}H€P¢‡p`ÿ¾=TnÜ@€ÏG,˜7gÖô©“'Œ3røAúõéÙ½k§íZ·láÂG4jP¿ž+ÿ}ÿü¯Éÿ–jùŽÿü÷Æÿ£qÇüü#Ò@F€˜àh ¨°=0B@ €¹®0žƒ Eh4jHù_==þö_ãÿŽüoGåÿNþ/”ä'ÿcŽÿZ÷/úóôG0y & ± *þ¿÷NhÌ €ÎÛ·!å׬Së¤`%Ùþ£òÿ1Oþ·jÛ¾c—n=ˆü¬’ÿ«ù¿± h³+ÿÝñÿ#gü?sü7tÿpúG!žˆåš€Ãp €ÍEþ3@2úF @Éþ#ò?´ÿùß;ZþƒéŸnü?ëÿÖî~þH6Ø8€çé!¤Žð €<ÎÈe Ÿÿ®@ø_#™èÛžü'ö_ýŽü÷øOäëv:ùßÈÿ‘jù_@øOÆÿÝLú—püÇÏ?"¤;$L¸Û›ÝpíÞÝ»vî Âþóä×@þQ¤ÿXùOÇÿ# Æÿô?ÿý"*â b|â&€»¹pÅòe¬à7† W`°  ”ùïÙ9¬ý´z“ö‘ÿã'M™6söÜùϦý}þËî¿ñøŸD<¤3 9øþ¸÷@Ø €¹®0~ìhbæò ‡ÿn(Piÿ íŸ~¤ýCäÿ¤©ÓgjÓÿ(ùo:þ›þ‘þ=Ì_†€…*€p˜1¼À¤ ãˆ8ˆ4€ºwéÔ¡më–-R6Mí?ÚþãÛ¤ü¿TJÿ#äÿI†ÿŠñÿªáøoûù¯èQ±H2hÀUµðù/ €hÀ_˜J €‘Äà@ÿI('¹(·ÿBûjÿŒŸ8yÚŒYJù¿“‘ÿ`úW\¬ÿ#Ü?SõŸ„ƒ@ï:€¼(.V&€ ¬äùÀbD4€’4Ï?ῲý'Ø|û‡)ÿ+å¿OYþ—çø_Ñ¢¢QÎ@0‚€‰°„Óˆ@@™2µí?ºü·Lä¿:ý³ÿ#Ý?üü#Ôˆ5h@S $€€ ¯,\0om@¬ØLa&â°üÛ”ðßÀþ“vÿõòÿÔ)>ý£Ý…ûo:þãça€¤€J° »Pâ%€§$Ü ®4Úk ~Ø6àì?Ùþí?ñöǪ5k¥ÝUúo.ÿ­Ý?¤?B‹€…01Ø`ð€Öd€‰Áþç—¥öŸÖþÓË ý‹5þãç±€8@™* ±Ä€tÐkº+ÀO†+À ÖþgÚ¿’ý×°ÿäöÝý‡ÓcùÏ”´ã¿"üCú#`¨_P¨RÈÆ`W¼[\@m† @þX àûjÿ)ì?`÷ßDþãø(/”³(‰2  Æœ€BP¾˜„ÿUªÜ¥±ÿÃå_bÿÕÚ»ÿAù_#ÿ“ÿH„ ¦€•ˆaˆ7hÈ¿"7™`é`ûßµÿÅöï ÏþÛ*ûOhÿXËÿèñ?ÿˆXH8X …5€¼ °È®K `ÔˆD´ÿCû€gÿ»Ë¿sçç-ÚzûÏVþ§6þWôC‡È¤'âšÐ o€‘ —6HÊÿqí…ý,ÿŠí?ÑþKQþGÿøùGÀt0q Èä€Ü pÐ6 ,@]ü¶ÿyû_Zþ]»NjÿÁöŸ(ÿÃòoäê”ûüGÀN€ €æSf à€lJ @(~âÝNüç·€ÛŸ‚ýÏ/ÿšÚ´üÏîþFËíøþWô#‡È&Dò_@a„;Àg΀þ 0ئ@êúøkÿÓ_0ö?û+Uû/züÇÏ?"âz`aJ+€L0<Ü{8!ÿ•ñ_xû—iÿCö?=ýíÙ{í?±ü¯—ÿqÇÿŠ~àÙ…Tdp+Æ ´Ìì€6œ?”€ÿ‘ñ_pû—¹ýÑþÚ&ö/ÿ Ò? ÿvP&@Jõ €Ø €PØ‚Ÿ€0š0þ‡ÛPüGoÿ²íKûŸµÿ˜Ýþòg,ùã?¦ÀÆ`¯€Ê7Ð"Àþ@èK°¨ÿ™ø/8þ´ÿÍíÿb™ÿVòÿwÿIa/4Gô ºëÖJ7@ƒÀô¦TùÏÆÿÆñhÿƒË¿@ûÇZþcù‘Vü€ 7€+Àê ø sH>F q7€#âÿðø‰ÿFIñßûË=þ+íxùWÅ1ýGùHiÚÿU `.ðN€@ ó@Å @û€\ÿãÿ`ûÏ=þeÿÉö¿ú×ÖþCùH)f ˜ ‚ þ0 g’0ø `°¨8Ÿÿàö¿ÿÓí?}üǶÿÍìƒò¿iúôGD#r0mÀ ã : O€€| iˆÿ÷ŸPÿáâÿ`ûOúõŸ2þ3±ÿÓmÿ ÿÑHÿÆ :Ðmq'Àä@¸œ˜ÿ\ý­ÿ°Û¿Üñ?>þçn«ã?µý_Åÿi!™Pó¿Ì"P€«\ßôøÏØ ‰ @^ýWYÿ¶™øŸ9þUèÇÿúøiÿ§bÿ#ÿöÈÿAP³ ¹@_ '@Ó,¹õ_¹þ×Âí_]üŸ þ3·ÿLÇä?Bð˜6 @ËPqÌ+ˆ'@PBþóõ?áø·\ÿ‰Žÿ¡ønÿǶÿ‘ÿˆØÈ8ÿ/Fl€ X`7€ùwD(¦Ä¯þGÿý'Ô¤í_0þ7‰ÿÌÛ¿’ý‡é?""ùÿ§Èÿ?lÀ& ¢ Ÿ•.Dãð?¨ÿBõ¿àßRýg\ÿâ)þÛÿ(ÿå5ÿ“€Â€& ŠÈÿÑP^JR†ê¿ÊúŸxýC<þ)nÿ¦ÿ!ÿé!Ãü7 æ(_Råpþ³õ_òïoæçÌõöú‡®þnÿ¦ÈÓò?òÀ”ÿ°ÿëøÿjð@®(^b/Ú/Àü—þ‘Ëñ_¨ÿÉÇmë?Pügoÿ!ÿFHÆÁÀ ˆ sH³ˆÿbý?à¿pý'NýÖ”ñ¿ÊþÇÛ_ˆTƒÿ`0:¤€èTä. ó €Ð/€„€Ôø/Õÿ)ÿ¥ú/xýþþòßJþ#ÿvˆæ¿©`È}H(®X¾L(O Àá/€”ü· ´×5õ¨þk\ÿ ê?òíï8öòa‡ôøCýS2*úÿU€…èhþ“õ?`ý‡«ÿó?ÿáê¿Bý9þ}¬ÿi¶ÿÿˆŒ"üWorÀãÐ p¨ ò¿åKåÿÅõ_–ÿÐúÏ þ×¥ú_âä?ÂåÁ©À`þ˜Èÿ¡š f°ŠMˆç¿býÔÿsåõùßßÌõ/©þ+×ÿR‹ÿ‘ÿ;dšÿ¥ ÿOBàà˜¼ _Íÿõ_óõÊÿˆú¯_ÿK¿þƒüGØ¡¼øÏ€P0b€û z0Á0Èÿ&Aë¿þçñ?cõ?ä?ÂÁÿÓ±øï_–.€ ÀåÁ÷ú7´þ]ÿ·¬ÿ ÿ™BføoU‚ €Ü/€ÅàTùïŸÿ`Öÿ»Æå¿Õõ€ÿÖÇ‘ÿ#¤Àÿß,ù/€š á8·ìþæŒ þsç?Èúo?qýŸ_ÿ…×ÿÿˆìÄíÎÿ6åÃÿá?ðïoä?¢pŸÑ‚çq½wÏypïÜÉÏwã?Çùæׇûê•Ë—/]ºxñÂù¼¼sgÏž9}êä‰ÿý·_ù97'çØÑ#‡Ü¿/kïžÝ»vnß¶õ‡Í7¬_·öë5«W®X¶tÉâ…óçÎþhæô)“&Œ3jÄûCèÛ»g·.:¶o›Ñ²Eóf¯¾Ò¤qÃú/ä‘Ïÿšoþ7¸üoÛ±3àÿÇnÈÿI!ÿ×Pú•jþ¯ ù?òŸëñ(àçŽm.ÿþ¿ ù_àð?kÆ´É.ÿ#‡M ÿ%ü¿æðßJÂÿÇ.ÿŸªø?ìñïÇÀÃ^ÈÿUàT4JÿWCþóþ]üûö¿Ãÿa!ÿk|þ±ü¿×¿Ç»€ÿ—5àøwÊKþ+;üרU§nÈ3ć€ÿAC‡íò?5à Zrù_¿aÓfŸÿ=™Yû\þ„üãà9/„ø¿âó3à?ø¥G©à??àÿ¦ÏÿÌÿ¹sÜø/û˜ÿ?°/+sÏÿfŸÿÕˆÿO…üw÷ùËåÿe‡ÿþËXò_^†˗î=ûô øŸ€øŸ-á⿚ÿ‹ÿ×<þoaþïºüßþA©Trü»O«‹ÿ]büwÓoÿ¯àøŸšÿ]ÿëÿ+W,_ºñÿñ¬S'O?v4æ¿sÈSÄÿóÿµÿ•ç¿9â¿#Çÿt–ÿuˆöÏÿY]þ þ Cþü?þA6ŠæÿÁÿÃÿB†ÿ]þùøOv°þçó¿•ä™ÇÿlÌÿ°¡ƒþ;´kÓÊáÿ5)ÿ¥âð_[Æÿ€AC†=fü„Iˆÿ¹ ÿ5ø7 aþùøÅÿÄëŸáß*þƒùÖÿëXþ§OÿÚRþAFÒå?uñ?rýOÂÿ|‡ÿ™Ó§Nòø2h@¿Þ˜ÿæÿ•1ÿ%íù¯éð,:ü·ÌhÛÞã?<DðωXHYø)Åü Çÿ:ñáú?:ÿáóï®ÿwh›Ñªâ¿qCÄí€ÿòqø¯ð€›£ €¤ @‚0bx(18ÿ ÉùØÿ¤ý'hÿÙñ7þÄÿ„ñ_~ý9ÿÃðïÅ„ükã¯æŸ:Äàƒ€Ý$ÿDXÒèüï  N‚ÇÄÞþÙÿâø(þ«Šÿ‡ëªó?ÿÕâð_:à_r$rHfÿ@à” RÎÿ5:þ“'ÿóñ_&þï¯ÿ…ë?’õß8çÿNÀñ/Z怘ƒ ,( ’ã£ý·ÿã¿AüŸ]ÿá×ÿbò–/ ʰ?ÌŒ ‰`‚Ò£”ðÛèúÿ!âÒø¯|ýÇvý7äŸ:À,‰¬€1€z @à-óò_˜þ‹3þÇèø_ÿÇÿ…ë?Æü3 € (4™ ò a jp‡ÿ T)1þïKÇœý¯7þWÇÿÈø/ÿÉ¿t ­€ãÂàBŸÝ€lheB²T¼òßÔþ—ÿ„×ÿ%ñŸ0þ§Œÿ¯ÿHÀ² ($¹Î -'€P”"_ÿ&ÇMìåøŠÿ„_ÿšêŽÿ•ñ?.þoÉ?ù*`=46£ €¢~Ú@ÅMš¯ÿì½ñŸbüã?‚øŸ,þ‹A ETÀ˜ Å PQ?m â&#þIü­í?ýñŸøú¯ þ£ŠÿÙñ 6à]“^Ñ%€ÁÅUÂí¿0ý«mÿsã?rüÏ\ÿ”ŸøŸ5ÿ|(¸L_äâ æ ” ’hÿí¿èí_nûßÿI®&ÿñÀd á{H6$7€©€pÀÆ€d/óòߢýW¥ÿiû_5þÃ×ãÿ&âÇ‚0”˜ Ê`0ÈÈp¢ (@Jé–ÿ1Ó?8ýËÚÿ¹JûŸÿ¡ëüõŸ`ü7þC€Éåà°p û8—23 i)‹ö_fÿÉÓÿÄño™ýÏŽÿ„×bÆD : 7Ô q„¾N%hàÊöõ/.ÿ©ößþÈì?‰ý¯Úþ%ÆÌõŸšþõ/›ñ?bäÙ&7õÑ A±tùÿÛ¨ü7´ÿLìúã¿áø¯iÿú¾þg~ý“â_n“Ÿ’ŸÖ1Õ À_z 8€ }½þå¿,ü/KÿDÙüöO¸ýnÿòã¿ØãÍ ½ÈR`jO¡iˬüžþ™Û\ú×Oÿ3ÇIûŸüø—tü‡ÙoÓ€áÀ;lb2@TÀ €(Rrþ¥îŸ¢üšþKÓ"û´ÿ ìêã?èã_äøÏrü5$>Âè Á7À# À ¸ŠùúOªýØìñ/|ü“´ÿÿ‰7þÃ@Äð 9à6¤ 44 €h(Bº¯…û¯]þKÛœþ#í?êø×ÂysDögÎþ;þSÑ h€7ä `ÞÔ6b6ð*úõoSþ›µÿRûÏOÿ‘Ç¿¸ãŸÑö<þ…'Àƒ{Pn*W€£ h@)RšËyû,ÿÒé?¡ýG¦ÿUö¿Õö/úoº 3ð7Tà‡ï¸¾@®È&€’ ¾¬_ÿ\ùÏMÿÄáÿ¨öÝþ¦ÒDú—8þ…ÓÿìñOÏþ1þ ÙÞÀ'À„ %€t e`UÀÀ/ÁC¡ýú7/ÿåí?™þ‘¦ÿèô/›þOÎþ'ÀxpÁb6¨0èæ€qÈLq_ÿšå?½û†ÿuÒ?2ûoPhÿ%œþ÷øn1ä ©è}˜OYú  (Y½þuÊ‹öŸNÿ–)ûÿaQÇ?mù§Ì€Ø €ó+ÀaHeÄj"@(@2i¿þ5Ý?ýò_§ý§nÿ.˜«´ÿüoÿáoÿưÿKDnD€Q•à&€ilàà‰–Æë?Ñò_6ý¶ÿxù7¸ýK§ÿHûHÿ&aÿK6˜ L_Vþðã¼ hø‰ ¡ôñ×vÿî?WþãÝ*üÑþ·?Ñí_>ý‡ì¿†û/ÿ’0e†7€%¹$LÐ@¾Pì8Ѐ)ð×ëþ£Vÿùò_¶ûïMÿÅí˜þ —©ô_ ì?ö€´È'É ÄGý`‘€Y p¡™+™×¿†û'*ÿÛÿ ýƒnâÛ¿núOhÿÅä_Óôo‡+À`£¦@MM€xü<¡Ráoûú——ÿüôOþç—Âö?Lÿàå_Aú/vú—æŸ5ýÄ 0“Rò  fÀ:€P€,•ìë?tÿ,Ë4ýSµÿøÓ?øÓþò/™þKÆþ‹HR7@ öxÔ Ó@åBÒQ¼×¿Òý3/ÿ¹ÝrúO¶ÿÁ§èOÿ…Ë¿IÙ‘ —’Âêï˜9€:ü€\éà/{ý›ºB÷Ÿ+ÿ‰Ýþ§ÛâöWTú'^û/J+Àè(•RA€š6œhP@¢dWý ^ÿ÷Ï´üÇÓ?YøßŸþí?þAŸþ oÿÆLÿ!þYP–Âá ê¨7´m´@(@zJÉë_ìþ™”ÿh÷—œþQÓºýïÕþǰÿJˆ€î 0½|„4fq}Ào²m€hþ@²ÄßÎý‹*ÿ³Ó?Ùî?=ýÚœþ‘/ÿÆæ€Ì  Ìo€¬þPÜ0;º ¢Ðêàà‰’è áoüúçÝ?:û/.ÿ%á_6üOMÿùOàÛZößÿµó¡xœí]‡ï–åÕÔ¨‘(¢m´©F5Ö(#BÃ#€a…VXa†~hu´ÆV«B‘!¢²AЪ¸Ž*ÈV†h)X;ßg¯ûŒwýæóü ß÷{Ï=çÜû]pý]ø‹‹.¾ø’Kë]~Eý7iÖüª–­Ú\sÝ/oøõM·Üzûw·ëЩk·÷öé?pð}ÃGŽ7qòÔ³æÌ_¸xéý¿{èáGÿðøŸžüË3ËW¬|þ…5ë^ܰñåW7mÙºmÇÎ]»÷¼þÆ_ß|{ï;ï¾ûÞû|øÑÇŸ|ºoßgŸ}þÅ—ûê믿ÞàÀ7:tøÈ‘£G;þí·ß}÷݉'Ožu*ù©ž8‘üh¿ýöø±cG9røÐ¡ƒ¿9p`òóþêo_~ñùgŸíÛ÷é'ôáï¿÷î»ïì}ûÍ¿¾ñúžÝ»vîØ¶u˦W_Þ¸áÅuk^x~åŠåÏüåÉ?=þ‡G~èw÷/]¼pþœY3¦Nž8n̨á÷ ؿϽ=»uíÜ¡ÝÝwÞqÛon¾ñW×_wM›Ö-¯º²YÓÆÖ¿âòz—]zÉÅýâBÈøO À%—^V/ÁCŒÿ­Ú\}-ÅÿoïjÛ¡S—n=zõé7`ðÐa#G›0iêô™sæ-X¼tÙþþ‘ÿ~êégW¬\µzͺõ^zù•M›·nÛ¾s×k»þßz[Áÿ>ŒTöïGø?xèðáÿG?.ãÿ4ÿRΑð“(?ÇŸõe€ÿÏþ?øŸÓàOðZÆÿñã ü9|8‚ÿýûü1þ÷)øû-„ÿݯíÚ¹}ÛÖÍ›^yù¥ ë×­YàÿÙ§)þ|`ÙÒÅ æÍ™5}êä ãF>tðÀ~}zõèÖ¥S‡vwýöö[o¹é×7üòÚkÚ´jqUófM7jàÁ?þ/¤ø¿üŠ 5iÚüÊ-[_}íu×ÿêÆ›s[‚ÿö»ÜÓ½Wï¾ 6bôØñ“¦L›9{î‚EK*þûãÿËŸ[µú…µë_|iã+¯nÞ²mûŽÿ{0þ5ðùœ|C ÀQ‰œDà´ƒœó€;ñ @yà—oÀßÑþÏ9Úÿiÿ“Rû?JÛÿ7¼ýcü+íáO‚ÿÛ·mÙüê+_zqýÚV¯znù³O?õç'þøØ#¿ðŠ%‹Ì=sú”IãÇŽ1lè }{÷ê~O—NíÛ ü_ݺU‹+›7mÒ¸a‚Òþ3ãÿÿú 5nÚìÊ«Z¶N‚ÿ;’ cç®Ý{ÞÛ·ÿÀ!÷5füÄÉÓfÌš;á’ yx.Öš€2 p€€#ø>Ä >ÛËÇþíÿ{ ý¡íáÿ+˜þ¿eÒÿµ ýN¦ÿKΟ;{Æ´)Ç5â¾!ƒú÷½·g÷®;¶—èÿÕ­[¶Hè“F úŸÿ!@?*L˜ñ/Uû ÿ¯Cô…Dÿ—%ô^Bÿ§Nš0vôÈaCè×»W„þwé?ÿæÿ}Àw¶mß±ó=Ý{öîÛ £ÆŽŸ8eÚŒÙsç/"@‚2¬Ý(Žd—c¨õüÚ³‰9Ú¿WýOèÿ*Bÿüú¿ˆÑÿ±£F ‚ÆÿžÉøßÿ˜þ=þ‡ ÝzRp”ì.€cØËðÏÀ—.0ˆ >ée‡ÚöoQÿ¾díŸáoýgîß4êþ ÈÆÿveÿ ׈ Å\´Ô>lݾc§eÐ"šødª • @]~ðÿ€öжPý³˜ÿ”þïܱ}«þ/MèÿLÿ‰û7»];%ã?£ÿÒøß €ñã_š"ü·–ؤÆ?켆€·öš 'Sk(€øØËÿ€è¯ýÔÛ¿ŒÜþ÷¼ÓŒNÿgNs»ÆøŸ‹þ[ih/9€Ã™¨G]€S´X€:(xˆ Ö>øûÎÅþ¡ö˜>ó?ˆþÏÅôŸ¸œþ·oËéÿµ˜þ7Çô¿>kÿyð ȼ€;pèpë G€6áŽx@?(bˆ –¾Pø±ÿÐöïWÿ¸ù¿µ8üÃé¿þîßm·ÜdÿæÄ?.—ÛÀö’<Äv6Ë€ˆ¤±ó€8ÔÍWûO×þaóO3ÿ)ýß,eÿ¹úOéÿ•þ»Ü¿‚Æ#€,Ðà.ÙT"€ò@wÖâÀ@'0·Š-±Ô—­ûÛáïLþƒíß©þ1óÑÿµkV¯’²ÿýÔ»ˆþßEéáîߊ`q;tֱި,@+8£E„&€XêîK ýë⟖ü÷¶fþÙÍDÿ×9éÿ“þ;Ü¿|ø—ÐT"€Æ -‡(€Æ@¡ €ºú2¿ ö/¢ÿaꟾúkªÿŒþ‹Ý?Kø77þ3 jè)>h]ôs 0PtL±Ôçƒû÷‰"úçkÿ€ú§šÿ”þ?%gÿiøÇ¤ÿJø¯¸ð/ÿê6Ó@ë ï@`¦& Á^I€¡@,µþ¥†¿ýâ_¦öðÏÚ?lþ{è¿qú£p÷ihJwý€º¬FHÀ› €Ï”'€XêüË“ý[½¿ íÿMÖþ·m±šÿdõ· è?+ ŽªÑ²ìT5 0,Y%€Xjɳ|½™‡˜ý§jÿù§¨jö—¯þôÿö¤ý›á¿z—]’Ûý#øg >¼̯‰Àúd tHd€R€` 2€:ö²vÏðŸ¶ýÃÙzø‡©©ú'²¿ôò’ýgôßÜýQéø·Dí]^¸¸ˆH  a–@"ˆ¯ˆî_pûÌ?Sý“èÿbzùÇNÿ•ð_aî!b0t@W€(€ªº,@'€aø@¬5üyÑ/àJÿVöïÿÒµaþYÕ?|ø“þ¥ÙAÿK ÿ1ü‡d ˜^Âg@ g…è"Ê`@,µüe€1ì_Züó¶nþÑ쟡þ±ÃŸèò%üÃwŠ ÿQü+;€Ž€,£+@"ðÀƒ?ª)€²h'Ú`%L±ÔÂç‡Ùì_ÿ-í_1ÿ„úÇî~óì/¿ü£gÿK£ÿª ø Zæÿ‚΀jYÔ,@%d'4ÄPw_yðØ?$þAíÌþH柮þ-[¢˜ÿèð'_ý%Ù;ý/ÿ¾-Ó+@–€vÈÌ¥&P 0\ˆ ¼Üðþyò/[ûWÍ?qø6ÿÉáO~ùÇTÿ‹¦ÿJPv´%`5Œ#†¨€]fÈO<€ˆj@ V€ølßeøì¯ÿ–Ü¿Küóµ’ýÙ´PýSÌåòþ)˜þÛå :*"а€ÕÔ%@Ÿ @zÂþñÏêýùÛ¿aþÁêŸfþ‹ÿý²ÿ…ÓË@–€ùÿ€ 3 ( + d€Y²˜iˆ î½2áïgÿÂûsˆÿRû§ÙØü#ꟸûÌü·w߉Ú‰á†ï G°â~„ÕÌA„h›J+±Ô gýË€?gÿ’÷—½ý óáÿþ Yý“Ìr÷_úÛO3û_þÍ€,Û#H$@vˆY€jÈNôPÀ J. €ZþrÁß%ýKÃûW¢?žö/g°ù'þaÙ?ªþAæyôZ¦W€”ºN@¶$bg@È †€ö_¡ B¸XHˆ F<û÷—þŠöçkÿ¦ø§^ýƒÚ¿ýe›üîßüÕÔ?|÷[˜ÿ"û[ ývð09Êþ œGdP9Ä-@'øÐOÌ@æ .‘Ôä‚~þyØ¿°þ}íÿCOû7Í?|øGRÿú÷áæ%Ñ6ð0 )€8¨n“ ;à"â0àêÀi})n)@}AÍßÛý½ð×’?€ø'{àÞ¿Úþùâ?Êþ¨êß‘ýª¨ ýçæáô_Ü ÍŠ-`e ÐK 4¨@€ @­~eÂþUíßÂþñ/¤ý«æýÓ_œýÕ¿RÍ‚è ¨  ”„,@˜€ð$ÄP—_%ÀߥýÛØ¿yôWÿퟙhó—eÿdõ¯\óŸzŸ•# ˆ¶€e 0€ð-Ð ˜@ Oˆ Æ½0ôg‚¿sø·³ÓûS“ÿ!í_6ÿLõÏÈþ¢ÃŸ­þÊø·GøžÔ,@˜ \$@×ÀL@‡  @xåÀÔþ ëfÿ6ïOZü“Å ýËæŸÈþ‘Õ]ý+‡þC€[ÀÌÄg@t°ÒBÈÀ)À SH=Ä PížãË þƒáÈþñOòþ¤½£ý¯Úÿ¬éäð2ÿøæ¯©þ•IÿÍ °y@³Ñ²hÛ’ €z Ð/ú ÀÙ" @¬5å¢?3üA퀿Sü3¯þ)íØüa›ìð`þqõ¯$óŸá߯â-`fŠ-@rÔ¡°C@n 0…€Ÿb¨½¯høë¹«ögþÄ?²÷o›þùÙOžýáÑeóWÞü/ÇügG.S"ŠؾcÉ Vé9,ýhÀ`J™€XªÉs}GYáoJÿNíOÍýÛØ¿öŸèêßûW§ýåÙvøC1ÿHöOQÿŠ:ü§ãß–4-@tg€|@=H=Rb¨I/úsÁ?-ûÖþµ³?þöϲ?ºùGÿ”­þaükK@rP¶Ñ¶È @Eà! %è› °ÛŒ V½²áïÒþhî×Ëþ™ø§F<í¿Bjÿ,ûC0óOÚü-WýÃVIßä[€R˜”·È 9†€òM•Xb¨Òçüjʇ öo‰þà³?tñO$ÿùÙ?)úË7ÿúÚ¿ý/Uý#ø‡@ÍÄ ˆ À pД¡€0 .±Ô¬—ýŸYëÿ°÷§´ÿÂû·µ’ýñnþ–‚<°Ä@²¬Z€8ÄCÀ2xH%R ØðC'I€M€À“Ä P%Ïý7ÿ0øÛ´?ûðoeÿª÷Ç®þ)‹ZûgÑ_žýÑÎ~ÓÃ? þ/-‹þ `:°T9.€ÃTCÚ J²XRˆ º½pô MûÿÎþ%ëßåýÉíÿIÝûoÿešÿ ¨Y€VÀC€üIè0ˆ=HÐ5@W @+N R€êû²5ëè¯Ã6þAíþí_°)øo¶ÿåÚÞ?ÔþÕìaþ•§þáÀ@ºŒ@-DBÀx ÈNä0ó5 0x€$¨pp>kˆ Ú¼èOÿóz÷wÁ_þ}ìßÿTï\ý³·¼ù£F-æ_)êÁ¿ª Ðã- ˜()`·hx•Sb¨æ/7úK‡¿ªý{Ä?9ùkmÿö¯lþ•­þÑ@·€ PÍù 9ÌB@²(I€€S´k)E€T –€òŸïHÑü-£¿eöwk~ö¯ŠŠ÷‡£?ÊÕ¿tퟨõØæoyø·QÈA¦ª@¬I ™vLN °°`—c¨Ò—ýnÛ/?üaíÏÇþw3ö/‰lñGmÿS½íØü+­ý3Pœ‘2@ ­ò0 `è k€Î€»8ÄPæ+ ù‡)Zêvþdí/ûWÄ?ýAÉ_sñÏÖþìjÿeª¸À ˆ v@ Q Ð6dÊ.±TÑËÞü‹‚úáßÉþ7nТ?ÆÞ¿ýƒÛ¥d8þ ÐCp¯*‡€Xˆy€DCÒHn 0kˆ º¾BÑŸþ>íÏþAöÏ­.þIÞŸvö‡,þïßÓþK6ÿh œÒ Éà5@|@: x€a€K¨~ –€bŸÿó®Bø[†ÿöozòÑ_º÷ÿ´èŸÚþEö§4óâ_'ͽâÿ B@°(ß&9à3´`Š€þ V€êñ B¿ƒûCÒŸ þ†ô¯8ÿVöOnþÁâþàö½?zöÇÝþ+)ûà €JšÊ!` G€Ed§ÀÀ @3­ ld.a V€Jz©ÑŸ¾ù§‡?•þmÚŸlýYÙ¿ü7Å?võjÿrôWÎþ”qøCÇ¿ ÙÀ‡€È)`X)@Û`H…€° ˆ% ï ùŒÓ5+÷/þêðogÿ"ù‰ìè/9û£%ÿíí¿tü‹ ¾@.’ÿ —Q Иˆ$P ÐæŠàÊ£±äyП²ùÛG7ü©ógh–á_Öþeö“TüÓÛÿ„qìêßû÷·ÿ’ñNð! r XO ¥ù°Åœ4  j @î K@¦ôц¡¿Jào ÿŒýoìŸ%ÿÄÕ%ùKŽþ²³?Ußþ¥3$¬Å §€ÉŸ) ´@BÎ @HŠXX°Î +@å¼Ü臚¿ôÏ ¦ýÖŸÆþ©õσÿš÷Gþò‡ýUÅ¥ý“»?™Ô¿ÿu]Exœí] ¯]U¦¨Ñ‘Ò0`€Ô5jÔ8DˆCÔ F$ $¢Ä)ŽÑ ¢AD :‡¡¥}g™´(–©tx°¶(gïÙãZk¯µ‡sï{÷Ü×·Á=÷½ï[ß°ö¹‡VzF~ø¯{ýÞø¦7yÔ[Ž>æØQlj'|꘱§ŸñŽw¾û½ïÿà‡?zöÇ?ùéÏ~îóç›pá—.¹ôŠ/å«×|ã[ßùÞ~tÝO®ÿù ¿úõo~{ëm·ß9uÚŒ™wÝsïœûæõÍ_¸hñÒeËW¬Zý»ûxð¡‡ÿ‡GùãŸýóÚµ=þÄ“O>µîéõë7lظqSÿæÍ[¶nݶmÛö;v>Ó:Ï>÷Ü®]»wï~þù^xñÅ¿´Îž=m½{÷íû[uöï©:/¿üò+Õ9pàÀ«êü]Ÿƒ¾¦Ï?ìù§=ÿòçßðü‡œÿfÿ Ÿì“÷Ò¿ú#?žûƒº?±ù“·þøæß@ÿO´þ9Ô?IëŸEýÓì߯þ…öíÛ»·úŸÚ³§úÿzñÅ^xþùÖ¿Ü®]Ï=÷lõ?¸sÇŽí­É­[·lÞÜ¿iãÆ Ö¯zÝSO>ùÄã­]ûçGÿôÇGùÃï~èÁîÿÝêU+–/[ºxÑÂù}óî›sï=wÍœ1mê·ßvëoóë_ÝðóërÝ~ð½ï|ë×|õ+_¾âÒK¾tá„qçþsŸýô'?~öG?üÁ÷¿÷Ýï|ǧsêÉ'xÂñÇ:ö˜£ßrÔ‘o~Óßðú×qøá#Šá\Žÿþ´ð?ò˜Q£;á­'½í”Sß~Úgžõ®÷¼ïúÈÇÎùħ>sîy_øâø‰]<é²+®ºúk_ÿæ·¿ûý^{ÝOö‹_ÞxÓÍ·Ü:ùŽ)S§Ï˜u÷=³çÌ×·`á¢%K—­X© Âÿ…CO ¼–Mà 0 §èÂÿµAÿSþ ÿk*ü+ø¯\±lé’E ôÍ›;gö=wÏš1}ê”;&ßzËÍ7ÝøË_üì§×]ûÃï÷Ûßüú×®¾êŠË&]|ÑÄñ_üÂyç~æSŸ8çcùÐÞ÷žwuæ§½ýÔSÞvÒ[O8nô¨cF¶ð¯à_áÄ à¿H\0¾—_y•?6àæ[n»ýŽ)Ӧϼëî{gß7wÞü /Yº\€kŒð°¡E›Ê`Ÿ&€ý^±ðª#€ö%@& S@òd~‘Á Îð?ÑÿªA¿…ÿ~ ÿ}eðßÔ‚ÿÿµþ> à¿|é’Å ÌŸ7÷¾Ù÷Þ}×ÌéÓ¦Üqûm·ÜlÆÿíø¿êÊË«ñ?þ‚fÿ¨8Ý€0n‚-€@å&+0‹8€•άq "€uOèïß¼e‹Âÿö;+x6—^òp ›†`PÏ€¡? ÿþ/å¿ÂÿÎ;¶+üoÙ²¹¿ßÀ¿RÿO<îÔÿ§þWõ?K©ÿÉ•úGã¿RÿÕøŸ0ÎŒÿüÍø?½»ãŸ£•8eÌØÓ”°@ €–¨€rZÄÀò•&PøwÀÀ@Ô䛀\æþd}qôÇáŸÒþƒ¿3ÿ ÿÆü¯\Sÿzükõßÿ•úWãߪ5þO;æ5þGweü#p$'¼P å.`ܘÀ .d `w›PC„ 0LuO}ð— ?þõà¿[‚ýùñïÌŽú¯Æ¿ ÿZãß«nü9ØãŸ €‘D P €I—]D€Îè`nßü‹/©À*êä °0ôq 0ÌqýñáO­?Mþ áÏgDýWæÙ’Å‹Ìï› ²ÿJýáß•:ü»à|þ‘ñ?²ã?ÇVàÄJŒ­‰'˜ðj(¬¸³r&X”€.P°ŽÏ Ô9` `˜ªSðuµ‡þíÿ)øsÙŸ2ÿ…æßV œùŸ>õN«þáø¿Ú„HøWÿ±Õø?±ÿÇviü'íÇM´à5V˜%ëL€›4D$€lÚc€CœJ¾©úyéþ &ûƒê_™«þMõoÇÿ56ü›8ŽvÿX¥Àñ-p²a8ñ¢K\È;h`J@p`;”I€6ी¢/©ý‰á·þmÂeÄüWÕŸVÿÊüGÔküÛðvjüŸÜÿÇëñTWÆ?/ªpŒ[2p®/½œD€œ¨J@¬†€'€-™l…Àx€Áe€CʾŸN¡?ÐþQøÿ5þ[xøÃñ¿ÚšPý ê¿5þµúWãßÀß­þŒQá_WÇ¿ŽFª% %ìt&l9/H@J@&@%lýгºŒ@  ˜€4RÀ!Ä…_ óÕf¡¿lø£ä/ÿ]þvï5 úgÍ?¬þHöïÇ¿Uÿã/€ê߯þ¨ñ?ª5þü{ü€v€Â ï¦8‹‚´€#€”(d€R 88 ôá¾Õšèÿ3ðçš?>úgª¿Ó¦DÔ¸ùÇ­þtiüó@ê¥%ïì ‰x°…R$ bò=@(0 0”9 ü»(D?'ýåáÑþ)ñ‡¿ÏþZø·ð÷æß-þ êßWÿR÷×íñUÈD€Êxà·€Ü üEX+€=tB  E¨ó-ÔG­áÀO­éöþüÚ?4ÿvñÏoþøñïÔ? ÿl÷ׄñ¯w v€–\H€½ L"}­1-`}<@®(f€Z0„8 Öã³_d)úó†?ÕþuàO›¿`ñÇ4ÿÞüÛ[¿¬ú¯Æ¿…Ðý‘‹?]ÿNÀ% 9T0‰:u€”€63@_Ä €Z¦ ”õ ƒÐû$Pó±sÀ_ý~øG¬?èý2Å¿…?½ó ²?lþuõ§öþ©úŸ¨þÕŸ.EG° Ò7˜{7)àK@ˆ °&€0Ì”¬ <èUhãqÛB?/ýSÃ_Jþ¢ðŠ!ûƒæ_U-õ“ÙûnýGÂ?ÚýÑø‡K@ªT/`Üøpªr>ð ÛBð ÝÌK%HK€ Ðô ´÷”ü7WŽþÈðϰþ\ðz;ý1üÅè_eÞüϬ̿­þâê…ÕµÓýumõ\ˆ€[¶À•€$€ zP瀑¯D$@; 0 ÐhèÀ£å¿ýÒð…þƒ¿ãËþ¨ù×ÕQÿàÖ¥þSá_—Ƭ´[€l–€(À Ûl›„ WÔb€£€!y2Á_‚þÜáXÿvá÷þ|öGÍPý…êßoþ5¤ûs`:@û& rKÄ€Ëõ |\('€ `=À`1À0Gø¢ý‚öYÿLø»×}’7þT{6û£æŸWÿ´ú§á_õÖŸnuÿH˜7ùP/ˆ[@°4ȹ c–¬ Èa€a ¨sê?ýDúG‡§àÏGÿ ûs·þlõ'nþ¸ê† ûëæø·G€x éÂ@g€| €Ø&@2(–`€a¨ŽøåÔCù𗬿ÿmüÁÚŸý»ì™ÿ,õO7ÿ`ø×½ñ˜š‹ÀÕ@Â@_à2@r0MÏ B¸ J€ 0L¹§6øë  \ú³ÖÂÿ™Lø‡Ñ?ÊþüÚ¿7ÿ õ¯«}í·9áŸÁ?ìý»@ÕE`É€¹€2@‘§Ð@M ä€í3À0ÐSþ:ès¿zÚÿŸÂ?¼ò à³?½öŸaþú¯®ýÒw~v±ûsÀF€Ùm˜‹ ´%³(Àö,$@¾   8ä8@þ&ÊÀÏ¢¿PúÚ_‚ÿöü™â_Gÿ0ûókÿÚüç«ÿF…ÿ8¬¶Átñ€d€¸PW²`kŒ!:Î 8d8 òpßX'ПþXûGà¿5 þîÒˆþqö7ÿPý£ênþuüãkt €ÝÂÀ_P ~-ìU l݃!àšÀ¨¨Ç¥0ä9 öìà/DdøƒÖÏkÖúÓ_¸óÏÂ^úAÑ¿yå‡Éþtó1ÿPýÕ#ÆpPE€v îpà3@³èK°Ð”yNd2@ŽˆRÀå€èC³_S üùè Iûׇ?.þmôï÷þtö‡ÍJýÛê?ÿºŽÿØtR ·‚ ÀªL€·b!@†LÏå" NCŽâO›~qôôçHyøËÉŸ¿ñ“ÿUþ4û£Í?†?£þUýûƒÀѬàJ@Ø5 ³H[@ð«`˜ð"$©(•c€:0TH õ”Yàoý…Ã?üðwk?üWjø£æÏìýÙÅ`þ¹êUÿG7JýW‡F€¡07ù€d€ºp- !€y°)A¼ˆJ6Èa€L âP û ðç ?4þÒðÏÐþþ›òà¿Â_5&úGÙoþýÏ}Éê¿)ãŸlR`ïÐm ж€n  ŒÄ0é¼HÅY Ð) èMH?U-ð— KÿpøËÚ_êýJáïŠýƒì5ÿÔüû½Vý7gü†–ô«€`J@.  i  5€ô6P°ËÀIPfb POäp@ï°@γHßCÁèÏALú'µ?ÚøGKæm?þáÿ þ¨ù£Ùgþý;Bõ¯^úÓŒêߟ¸°? Œ"€0 J™è*°&n áä ŠD@[ÐpÈz„lìçþôóÎ?¥ýÃÚÃÿÑpúSø³Ñ?Êþ‚Å?}ë·ñê¿:ĸ- pØ”€A3@[À«@ü" «²î¥$@m¨OyÐ@ÈýÜ⃿ý9Ã_ÐþiøsÓ߯ýK?6ú‡Ù_`þ}õçný›?ÍÿÌ€sê&°{(ˆÂ ЕºtÐ'§à"M0Àþa€ Èæ€&ð@Ég•Ÿ8 þ¡Ÿ.ü¡áï´?›üÚŸþüû<üMóg¢ÿ0û£ÕŸþµ¿êÖ/Tÿͪþý €¿@J@=@ÚBX"x+0ìIã"&„ê‹€Nq@/œì—þý ö㥡ö7ÖÃ߽꓅ÿÒü‘½?ÆüãêÏïý7RýW‡wA è"”¢À´€`(“ êê0@¨â" = *${ÂRðË£Ÿ›ýèOiügÃÿºùóÑ?Êþœù«¿†«ÿê`;€  ·|è~Hµ€ú*Z숀TqP—X ˆr@O“@ôÁد"ªû3Пþ ôã‡áÖþÌ¥så_Eÿ>û ›®úSÙ3ÕuXàK@˜-˜’­Ä¼ˆìãÐoÈ1`B2@Ç) I ñ@í¿ ý‰áÏ õ‡ÉÞùõoû‰Âÿ$ú‡ÙŸiþ¡ù·Õ_ÓÕu¨p% y°‹¸ P—æ&\ˆÀÄ!ÀV6c@X–3@ð0TH ôì§À_ý ôË þ˜•_—üaø?œÝüU[ÿ:úç²?`þõ Ãꯉê¿:Þ¸{ÚàÀl„ nÉ" G襠„ H1@ Ð! h8 ¤?}-ðg~Þø— Vû‹ð·¯úäáÖþpóf¸ù·æß«ÿ þUÿÕ‘JÀ 0 ß$- !€É€z@&HÇ€A ɯæ0@JÁÍcœÏ,úÙ\üq—~{ÃüëK@{f€zЖ°ä À+û>÷V`Ü‚ ô\ TY @“@QÔ¤™zƒ"Ÿ{Ú"ð3£ŸIý2ÐK?!ø ´¿µþ´÷sïú³W~ðô§ð‡ÍŸþÑÞŸËþªµÿ©þüa"šj8Û·€,` `nªwº©€¦€@@•Ȉ P,êR@ŒšËÑÍ>f;àŒþúé†?Xø…Ãi”üøÏï3ïúÓ7þˆø—àï¶þMô/f½aþõa"“âÀ¶€à20$€ Àà~p•ò=’x($@äq@œšD‰Ê?€} ü‰ÑG?5þxãGÔþë°ö’¿Uð7þ"ð¿6€¿/þMó£ÿ ûë!õ_ Pk@(Ô%€{#°Úò›À 0[›Ò{ØJ›€,(¢ ¨Ç]¦ô§ËÃ>7øsG.ú‘ôç‡?hý¼ög¬?×û©}G§¿ßúõwþLóg¢˜ýùÅŸ^2ÿúø-€ $%€[ð‹€ö€LPÀ,‘¤ ¦M@>PNdÀàAÞç&|ê,𠣿ý¼ô¼õá?+€¿öþöm~íÏÿ4ú§Ù_Ï4ÿð0T¨Jó2ÐúEÀ€ ÐïT0'$. Æ€BXÄ÷²I “šp¤'`–Sý1Ý/ ÿ\ô ¹ þ8í¬ÿ9³í›~Õ}<ý!üýÚjþô•ýÛì¯gÖþƒ3BÎQ  `\ŠìKAÕ/‹ @À÷¼€& MHR@ûÐt?w-ìGÁßúô‡¿Íý‰ö“?[ûW¿òc^õ™‚ÿ8 Øü‰Ù_O៉@èZ@sÐîåÀtGh€„ÐP P-%M@”öJ @’€l à8 B dȇåží`9ø±ë§èß›D\úƒ•?ü‘ö‡Ö?¨ýÍ|eÃß¾ë_ÿ¶ùc²¿Þ3ÿú¸ï¢À­¸E@B¶ÐoRïÔ¿ dV}Ȇa ÈIhÊ _Ä( Î1h D? ûHöð—Œþ2ô“ÜþTûcëz?µô§åǾëÏ\ùñÑŸ…ÿÿ ùSðá?æÿÿ×)nðxœíù¯—E–Æ55۠ш¢Æ&j”(ÁŽmºM«iKÀ¸D$jÇÆhkPj‰"{1ŠKÔF%€€ q_zïvÃE—A„FThl‡qœaf~šoUª:kÕû½Ü{Yî·þÞ×{}>ç9Ï9õÞÝv멳û{ôÛsϽöÞgß}÷ûÎþý8ð CzØÀÃ8ò»ƒ>ö¸!' ö½“Oùá©§ñã³Î9wøù^tÉ¥—]ñ“Ÿ^uÍÏ®»~ì¸ož0qÒí“§Üù‹_Ýu÷Ô{ïࡇ§=òØô³Ÿ3÷‰ßÎò©§Ÿ}îù^|éw¿ÿÃÿôç¿üõo/¿òêk¯/XðÆ›o½ýÎ; -^¼äÝw—¾÷/­³lùò÷W¬øàƒ?úèãÿµuV®üä“U«>ýtõê5kþÞ:k×®]·nýúsç³Ï>Û°áóÏ?ÿŸ/¿ürãÆ›6mú‡?›7oþ*œ¶Î×­óïp¶´Î¤ó;ÿ™Î·þü>ÿÍÎÖxþG=ÿ[;ÿ×ë§úJúIúå?òã ?±üô?Ðüóu?íø“w¿÷Û€_LëW~W­_ZëW×ú†ßdëWºaCë—ëÉëׯ[×ú¥»ßýš5«WúéªUŸ|²r¥ûãã?úèÃ>X±âýåË—¹ÿ{Þ[úî»K/^´ðwÞ~ëÍ7,xýµW_yùoýËŸÿôÇ?üþw/½øÂóÏ=ûôSOÎÿísç<>kÆôÇ™öðCÜïÔ»ïúÕ/îœ2ùöI'Ü|㸱×_÷³k®úéO®¸ìÒK.ºðüáçžsÖÏ8íÔžrò÷† =aÈqÇ=ø»GqøÀÃpÈAÐÿïì·ï¾ûì½×ž{öÛcÝ{L¦=w<örhéÿþt°À €cß8¯€‹`v óZxæY€Zh`á¢E‹—,iÀ`Ù²åï;| €X×.¾R°Å"  ! Ô)г4hüxãõ·¶£}$~¦þ-Šú¿jWýë¢ú©ü½ú?têù2'ÿ÷Zò_²dñ¢–üß~ËÉÿõׄüŸ}¦%ÿy-ùÏn(ÿ‹[ò?/Êÿû ÿc¼ü9ù|Ðý÷wúoɯUþ»íNà @ÀQÇ9qèI?:íŒ3+øõÝ÷xüæ‘G§Ï˜ùøì9-ÌwxîyoÞxÓY€…Á,] ð¡aþ,@$À†L€€L€’ h‚5#жÃ1_Ú”>Õ~—ÄJV?–¿Wÿ†¤þõQýZñÿ0/ÿ¥KCñwòÓËÿÕWˆü[Å¿%ÿù-ùÏ™ýøÌÓ}ä7^þ÷ÜýëŠüÏ<ã´9ùŸ4ôÄ!Ç;ù•åÊ’ÿN©€~-ìM0Ðàh €Ü÷Àƒ^x1 öo°à=èÞ €7 ` Ü¨@‰6v8 Øoj—}¦}áú‹¾¿¨~Qû™ú‘õÅÿWü—Çâ½ÿÑûGù{ï/äÿà÷Uä?BÊÿh/ÿTþ-÷߯ßÎ*ÿ €}0kàH €pËÄI·Mžòs€ÇfÌœ5{ÎÜž°À÷oç Ðcæ2 A3j61 €Å—ÛZÐ~µðkâ/©ÿXý¢ö+£âÞß·þ¯k­ÿ3O?Ù’ÿÜ9³gÍœñ‘ÿϧL¾mÒÄ[ òÿ–ÿ‘-ù†å¿ÏN.”"šp\Àé5ü2`š€Kç¹ð€ÜT,€Þèà€í! ¡ (S ÷9Py­Eé× [âêµ_4þzîW(þÁû ù»Öþ<Ÿü9ùOKòÿeMþ§gù—ä(“ÿNÛüÑC€ƒÝ`ЀNvÒÉ€³FZ¸ëž©÷ÝÿàCÓgæ1OQÐØt•ÜX}€‰Î€jèa4yúÖö¤¯~.~éûuãß®úÛ)þàý•ä‚ÿ™Óüzðþû¦Þs—%ÿ‘AþgƒüO>i؉'€üpòpð.ý§³{À~ƒ pøoºeâ­·M¾ƒ€Z €ô9$`…j¶U uMÐ ôþ©)ßÔ¾tý\üÅÒß%õkÅ…RüSî½”?´þ$øÇò¿còm·N¼å¦ÇÝ ª¿ÿ`.ÿý²üwjýÇ MC·PÀÕw&¤9 OÕ€ô‹¨ÄeÚ€v`2@‡¥Àƒ­uå é«Úo"~ÛøÕ_nüyñò_TöþÐú»ä/Îý¢üï¤ò¿º.ÿ0ø?ø ðäo§nþÃчÇ&œª`ŒÀ„[o»Ý -¤1€OÅ*Ú’vø6j¨˜€¶`3À€£Àvx ãuå—ªý®ˆßý êO¿²ñó>Q?*þû+K?>ùÃs?7öwò¿ý¶['xùQåj’ÿ±Dþ»JôŸë Š‹€.O˜’€Ç>û\ÙÊ€¤zØE` û€6`A@Á@ï€@y¬ùŠÊNCí3ñ ßJûê7s?Öù§âsÿ$ÿàý}ò‡‚ÿ(ÿ) ÿñIþ—ä÷~¨üwîæŽ6h€Ñ“Ð¥€)PzˆFP PŒl¨m1¤ hÎzå_Jû¯(i_~EüFé'Æ¿¦~Ëúçâ俚÷­JþðØÿŽÛ'!ùn[þ»Dö—NSÄ `8Àµcn;þ¦›ò&NCðŠ¥H9`nºFf }@C$¨(S ÷8Py õÕ¿ÕµßPü–勵-õë·ýEñg;? ÿ§hëï“?´õsë„›o?ö†1×bù½_C0Â*ðE—\:ŠÀ¯¢1ÀÃÓX€†¨æ€%¤@Ñh&  T P£Àv<úûZÒW´_¿Rú‰ñG»~¦úk¹ŸQüÙØµþ(ùss?¿ô‡å?*\ùÉs/ÿ!}Dþx È7+¸rôÕ×\;æú±ãý.pžÂu À&ÀsÊ*@œr `5x‡‰<`m@2 °PƒÀŽ…ëMékÚç-YüÈø«mPù©±±þ¬øç©ŸæýýÔßµþAþ®õOs?¿ó;~ìõc®½æêÑWÖåO¶~w•É>è*¼ ÐqB èB¿ M,] A`(&@" n" 0)°}9`¿Õ·Ué+Ú× Qü¦ñWÕ/¬ù׊¿6ösS×ú“ä/È?lý4‘¿XúßÙ/ýè¯Ы&.¸è’‘£.¿âÊÑW]s­_ô‹$!@Þ¦W¥0š€.@3Š 6 ! èU_ãÛ‚ô›i?ˆ_V~»ôwQýÔúóâO/ûÑ_ÚúãäÆþc¯¿îÚk®}å—yÉE”ä–þw¡Á?=mÀ_:7­N È!€ÙäI ³f `­ @&@u€Ê€S §XÐà¡EåëÒí«®?‹¿Qégê_ÛHýØú‹â¯Òû£ä/ýÃÒ_–ÿ¹éÊO_”?[l €‹GŽº,æ€( «@ñ>ºLbÀhð š4 ¨ jÚE@™0q Wy)í­¿iªývÄ_)ýÍÔ©¿·þ$öÇÅŸÊ~û…©«õÇÉÌý¢ü/5òâ¦òß•Öþä¡{@ø2`ø€ÿ$Ø@Ü‚1@¼CØÈ=@Á¤u@Úˆ °9 &ÀD@eP l?°×P_Õ¾©ý’øõÒßXý2ö£Ö?/ü‹?xÿ4õ÷­ºðÁ\úóòûÂò?&Ê?^ùÛåö~ø‰C €6ÎÄ]`?¤)  à»@ÈÀ.€Öä€k¨˜ Ò ¨@@r —@ÀŸj½%}Mû¨ð7Ñø«êG¡?kü…õ±¿ZüÃÎ÷þ¨õ'ÉÌýâ…?/ÿ³mù`òߥ&äPôg ‹@ç¸Àßö‹y €B€´ €z€t€]È Ò˜`Q jtÔm€Å€ “’ÝÏí öû|cJßÖ¾Vøkâ'¥Ÿ†~ºú«Öÿ<õÃûþÙûÇ©?Nþrðï·~F^|á#Îcò?™ÿ> ‡„‚žWýÆaoøÀÏæÊ€îàÐlJ(›€æ(0@B  t÷)¾@AùQú¦öÛ¥ô7Q¿´þû¡™¿ôþs!÷wÞMýãÊ/ÿ~îw~üOŸúò?¤Éí04àÌ€¸àç€4ô›á:€ïŸÍc@’07ä`µMÃ`3 *Ø¿[CéÚ7į—~Ký«eßo¨?Z”û‘Ο~åÏy¿ðï§þ,ùós¿8öwò?3ÉhAþ»àÞ?m6ò¥€>Àƒ@ߨ1`¶Z€bƒq+X  è: (ØÑ0P~–¾ªým¿büQÛŸwýLõCã¯Y«ø‡à/{?ö‹­JþòÜVþ;ò§· œ¾ xJº‹<L!@怮àu@žÒ 1  õí0  ŠÞ}ºþ††ôj_?òýãßHý¹ñWr?Qüa轿ûáÖ'ië.ü’¿õK¿}Pþœ H‹~ à¯å aàwâ:0±9ÌM€ˆj(JPD€d€8z–üYÖ;YʧÒÚo ~êûí¶¿®~Úø#ër?Yüý¯ßù ¹ûåÖ.ü@ðc/ÿ“…üôAù ÐË@GE #HcH]ànãA ëÒ}ôY<0šè Q nj}€G@Š 6 Â€ “ zî^b‹)}[ûZáO¿æû©ñÇ¡_Aý¾ñW­?ýó‡>Ò¾?xÿ4öó·}CëÉŸþ‰ü‡EùE¯üô-ù#ìmàØãÃßdsÀ”Â7A|{Ø «y˜-@Îó$@%ÀòÆ& HÔ €(PÂ@‘ üÌ-å¤ÏµßXü–ñ/©yAýÑúÓmÿ\üýÔ/!÷ïZÿq¡õ‡äÏýüùrßùWå¿wß‘¿ÙpÐE¸vSÀ{ˆé$ ,€Œð(€oEÈ6@ít¨6@e@„€BŒ zãl) ?*?J_ѾVøMñ¥Ÿ¼é›ÔÏBÚøãÜO)þaê‚?êýqëïwþ\ò—‚4ö×åßÇÌ8V à?âÿ2P^Ìc€”ò Îp ·°–k@A€bJøÂB€Æ€& è}Ч«/X”¾Ð>ÿeñ[¥?·ýTý˪_ÉýÐÆ_þbþ(ùóÁ?ZúóßùÇŸûè‹ò/` †vcà¸@1 ±d9 j ¤Ã@jÐ%T  S€s gIÀŸe¼Ò×M¤ok¿¡ø ã_¨ýiä'þÉú§Ü/ýdñÁòþ““÷­?ìüùÃÖO–ÿÀ¾.ÿ*à„©ˆ»@1´,j y€|7¶Ü°( ŠÌÕ$T) € çŽýBùLú²ìí7?ø~«ôGã·|Xí¯«_³þ´ø§àÏçþØû“Ö?%Xþƒ;ò‡ÿ]ÿ§Áò&ŒÐ2p Pàçá>@Œ“»<Tš1–1Û€ Úa‡€Bz å'~]U¾RöËÚ¯Šß4þTý˸ú}ì§[”û¡™?þü¾?äþÙûÇÖ?­ü¢¹_Üú¿òƒ/üöIùó)ÀáqHSÀÀÏ L“@Å e˜”€¦jШ (2À‚@¦Â@…=¾V„/”¯IßÖ~*üíˆ_2ñ+©?¥þÁúëÅ?NýBðGrÿèýCëO’¿4÷ ò?\È¿O%ÿø”àwÓ"€ð€õ~(Ç€Á<–,€l€ì° @š3 ("Àd€ DŒ^&}ò? ÊW¥/´ß@ü¢é×J?nû弿¨~Ãú§ØßÿüùîýYëç~që'^øëÈߟ"ü*`šB ˆCÖÐÐMu M€ `´† Рt˜%(À`èA|mê^~T¾-}UûÉõÛâ·K?6þeõ+?X«ø»© þ4ï­?$hîw~;ò‡`?¿ ¥€j@cÀ²1 ›@3UPPdƒ@‰”‚=rèÕ—Ò•Ò¯iŸþ’øõÒ_W?ŽýXã_+þ$øS½¿šüű?þÎ_—?@ü,8Úòc”¢@éâ*€fŒ& =° @šº (1 ÝÌñ[o±¹‰ô+Úç…¿ ~ZúqÛß–úmë/‹ú+Þµþ8ùƒà¶~Ї¾û¶ü3òß`sÀœò@ô1”`:^‚  p€Ú¥(!€µˆšàÈ01 ‘ ÛNá¡›-åGée?h_š~Cüªï'ÆŸDþ5õ§ÆR&ÿéJñÁŸðþFëÁžûáïü÷iùú©$ÀCÔ ñFµ9 A &ÀBFÜ& ]pPv%ôÊÙl _¯úXûVᯊ¿PúQäÏæýYý,ö ¿Vü™†b^ü‘÷ç­¿ÿ Uþýú¶üÈ1N}¨È1 ³áF@º¬ÆÆQ€JÚM@&êP(€1ÐÛ V^mS3é[Ú·Å_-ýÉøëêO¡ŒýDãŸ.úÆmQü!øCÞ?ýbë“?üwä_ä)`Ò 0õ9T-À£ÌàmN< (¶Ô” Û€"4 0ô ØcÔWÙÄ”¯IßÖ¾Vøkâ¥ß4þ4óWÔ~æ±Yüsð—¼û¡ÖßLþâÒ_GþáTào@ ˜CèÒb@aü=¤A`cHÐL ) c@AA·óÁ›,å›Ò·´ß¦øEéo¬~û™¹Ÿ_øcÅ‚¿”ûƒ÷G­LþàÂ-ÿí­¾àPˆ9`¸@ö0€Y·èn¤°m¼%€M@Lp °š!@i$(š` [YP~о®|¾­ýTø±øWëâG¾?wýÂø§=ÿ.¨r?·íïþhñ‡àæþØûûÖ?ÿrç·#ÿ|à2ž¦Ðíº |0÷° 1 ´þF@²&€hX!ÀRNÕHè6€3  2j 艃Ÿ¾Q(¿*}MûZá§â7J?5þUõÇ‘‰ýëï‡~náOþ`ç‡x7õw­ØùËÉ_û‡•ÿŽüÓ oÉ]@„MÒø] ˆý$PZ€>,- Kˆã@µ @&@CÀ*&ê@@ èYÐ'mTtÿ%ã¢ô ícñ¯*ˆ?–~iüÑÀ¯¤~ˆýdñ8å~¼øû©~ç‡x˜ú‡ÖŸîüÑ­Ÿ]òoüuõˆM +HƒÀØäP³îF€ß _‘M€M¿@†Ü$ ŒÕ”@! ( c@ g}¢-ü¨|"}[ûVá/‰_tý¼í‡ÈßÏû-õ«Öß}å#lü¸m¥øçà/zÿ<öÓ[ÿÎÖ}ø& ü& Qc@͸K!LM@•!x€FÔ > Mp˜°)€9ÀIÐÍ(Øh©^Ñ=W¾%}EûmŠ?ûþTúEè—·}Pß_S?X—û¹m¥øçà{û¥¥žüu¶~ŒÓ>€A`èÎ:Å€~ˆ-@¸F!ÌŸqHA`^Hˆ;¯EÔL€Žˆ›0@‹( ºéÐg¨¯ñyUù¸ì×µÏ?&þréOãþ´ëÔŸþ)öËòê‡ÜÏ ý¶?.þ~ê—ƒ¿°óÞßýRëß‘ó³»6!@ìÂÀ߈1 Ÿ pÃ8Xt—}M€œàQ€A€×U0€£€FÈ ( ºûXOåÂ/H_+û^ûMÄO›~\ú5õ¿n¨‡þzꬿËýÂg>n¾bÿVñÏçO_úp¹öþ¤õׂÿŽüù¡)`’9@ˆã6 ²áF€³>,4e@¸€@154g€H&º Å|n Ÿ*K¿©ö‹?•~¬þ)ôkKýÄú»ÜÏ¿íO‹¼ìwö™<÷—c?üwäožÝÓ0Ž*=U àrÀÜLM‹2hÀ£@fðN@B@èD#Àm€É€4 T@ÐÍ?WŸ)_JßÒ¾Rø‰íG‰_¿Òõ“¶ß‡~²ï—#¿¤~Hý£õw¹ŸVüYðWôþ,øïÈß8xˆCôY0¢Mƒˆƒ€˜æ&àî©÷6%@Ø ÎÃÞÐ>@¸’X6À3€æ8 Pô Ø#ÐÃ-áƒò é§~_h~µç'âO¾_1þ1ò‡MßFêÛ¾ÉúCî‡bÿPüãÔxûÅ}±Ö¿3÷«”ª! S€cÀd® 7P&)hH€8LA€eb€& X°(1@@ YЇ>½€x9¢|]ú†ö-ñÓ¸?û~½ôçÈ?Üñk®þÐøûÔ?ç~aÛ?Äþ©øçày:öc­'ù«œ!@¸ï@ &Ø„K1 M@XâÛ*^ŠÈA€œØà.€u$$8 ¶ò_#S^f½¦|!}Eû¸ðƒë·*¿¿’øç¶nù¨ê—XøñÖr¿pÕÿ0õsÅ?îûÇÛ~ÖN€ Ò60Ìâ*€i LM€_Ê·‚²ˆëŒ2PL€ì0@P04 0¨,èÚáÿ®úðõUå«e_Õ>Éû¤ø±ï×K?mû™úãÀŸÿ þ°ð­?ä~fñCÿ”ûû_­õïÈ¿Ñ!) ô Æ€ŠÈ9 o´{€x/Ú€WRPC²„+H'À)1 s@…Á¶û9ë¹ðmåé3í¯T´Oò>SüÉ÷Sõ¿’Œ?VÿóiÞo¨?5þÄúçÜO)þ)øS¼¿Úúwä_?>=@Ž©ë€áR Ëcà'a¨Ç h€Ú­("ÙM )0€8PAÏœõR÷QøTùé›Ú'-Aüzé÷Æ·ýÍÔ¿ŸùÅÔßYÿ0ô ÛþnæÏŠ? þ÷­Gþmš’€ì© ¬†K1LM€¿¶ ˆß G€6€g" P€l@lŠ ` èIÇ ÇëÂåcé—´L?~Cü´éW2?Ôöø?núԿ러?ä~áª_Xø3‹ÜùQ[ÿNòׯ1Bm@X€áÉ@èš7 pë@  P#À2s4 ôË@Þ¸u@ò&ÀÇa ,<@ÛËT6€3@1Ä H èP`°mÇ~Ê]øJÑgÒOeŸi?þ¢øÍÒÏŒø•ÕB?ñ?³þ0ôó ¾øû•<õ#¹ÿNÓúÿ?‡;ÉpxœíœùÏVÕµÇK4b4BÔ`j#¦6¶±FMmÔQ¢5"¢†€F  bD ÕF¨FkMk«©³Qĉ090Š‚ƒc{½µ¶×öÞ¿åž³ö¾kí½ŸçáäìŸyÎoòù¬ïwíóòƒªgذ£Ž:úècŽ~ì±Çü #FŒ<ñ¤“OuÊOýÑi£GŸþã3~ræOÏúùÙçœ{Þ/Îÿå…]cæ¬oºyμù·,øÕ¢[ß¾äŽ;ïZz÷=¿¹wÙòûîàÁß=ôû‡ÿðÇGþôçGûËãO<ùÔÓÏ<ûÜó/¼°âÅ•/½üò+¯¾¶jÕê5k×®[¿þõ7Þ|ó­·6lܸióæ·ßÞ²uë;ï¼ûî¶mï½÷þûÛ·ïØñÁ~øÑGüñλvíÞ½{ÏžO>ùäÓO?ýì³Ï>ÿüó/¾øâË/¿ü+¿5翚óÕW_ýwsþÞž¯›óö|ÓžÚùÿ¡óm:ÿæó9ÿkçÿà¯Õ¿ŠüÝø¯šþÞéßÿ(úGÒ?·ýwÓ ýI4?öçÒþ|ÒOªù‘5?¸æÇ×ü›eóݳ§ùÑîÚµsgóƒþè£?üàƒ;¶oÿý÷ÞÛ¶íÝwßygëÖ-o¿½yó¦7¼õÖ›o¾ñúúõëÖ®]³zÕª×^}åå—_ZùâŠ^xþ¹gŸyú©'Ÿxü/=úç?=òÇ?<üû‡~÷à÷ß·|Ù½¿¹çî¥wÝyÇ’ÛߺèW n™?oÎÍ7Ý8kæŒéSo¸þºÉ×Nºæê«®¼büå—»d옋/ºð—çÿâ¼sÏ9ûçgýôÌŸœñãÓG>íG§þð”Q'Ÿ|Ò‰#GŒ8áøã;öØáÇsôÑG5lØÁ¦é0<(€ãX'‘Z$üŒ Ðà‚Æc/¹tÜeã'4˜Ø`Jc€if7˜Û`ac€ÛÈ¿&ü¶j€çÉ/µx­1ÀšµëÖ5x£5À†›ZlI @d ØSQ:@%ðõ@ ¨Ì(‚ïÈþþ“q/à3ùýÐÿÐìçðïÉáGú þ--ü›6nh飡ݺµkú_ké‰è¾Jÿo‰þ_ý·5ô/lèŸÛÐ?»¡ZCÿ”†þ‰ ýÆ_6îÒKÆ6ô_ÐàOôÿŒñoè'üObüëðßÇ3Œ Ð`8 à„#Û0Š#  P¸´‰š0ñšk'O¹î†©Ó¦Ïœ5ûÆ›çÌw˂Ƌ[ܵ” °¼j€çÈ+[4!`õêd€¶„àSÀ.VÀ^8 ‡ØQæAæ‚ýwÜ—ü;ãÞƒä—Иýÿ®0ùýèßF¢uCÿ«-ý+‰þçªô/'ú—ÞÕÒ¿¸¡Á-óæÎ¹ùÆÙ³fNŸ6õ†ë¦L¾öš‰ÍðŸÐ ÿKiø_ ÃðoèÕÿ‘#N ü‡·ø·ôwøñp^èå0¦—Oˆ%`vSæÎo pkk€;“–Õ @5`Å‹m x…kÀšT0”z@P@Þ*¨JÀY hÀ<"*Ø7dÂïù6r_?‘_C¿Ì~)õ×&?ä~ýëÓèoƒKÿ‹Dÿ³ÏÔè_–迳¥ÿÖ–þù ý7ÍŽÑÂåíðSþ…ì?¼þûzBh"À‰m8¥o¸âÊ&LšŒ%€Ö µ¸£Ò"`….¬XØ”BÀ (Ä€è Q% ˆÔ g‚’ öú„~›c/Ü{ð‘ü€¾ŽýÀ~qð÷…¿¥Sýü©ö'úŸîCÿ-ý‹Jñ×è?¹‰þW·Ñ¿Ïðo³ÿ‰'Êðï²ÿ~9ÐRYçqÛF€PfÌ’5-Õ÷V €«@®¶ l°z@Yµ (6à€<€zX@5"p*Èm0¤ãŸ_eßÿÏ>äôãØöK©gË~ø)÷oháw;?­ý¼ô«Ð/ÒOk?*þ³fdÑÜ¥cyøGúmø´áßeÿýrJ€Ö€åpáEclH%`Êõ²¸iŽ,ß¶¤§²E@¾d Ø¡ (Æ€¼ J(X jE€&Èd0ÔãŸù¯*ö~N~}dß2eð;¿Ào¹ßþ¬ö÷¤ ÑOk¿97Iñ¿~ŠFÿ´÷“¢>üqñ×eÿý{òkÀÌ)`  ›[Ì›¿`¡]–[€®µÀ.BÀëà> 1€W€4ÞÈ‚H `Ñ@(ƒ¡÷ÐÒ·~ãÀÏÉ7ôKc¿Ê¾¤~¿Ñ¿9åþ œûÓè_ £Ÿ‚¿.ýêÉ?]ù-\ÐÒÅŸ¶þ.ú_xAFañ×eÿýz²Ð7ðK€­èm¾ @ø»€Xòz€l] pM 9`wÁ± X¨Y@4 (Š “Á>œÚó¿ Ü3ø=ÈWôCäwìï6ö-õ»É¯¿ûãèÁ¿´ó7úiéŸnü­øKô×½ß@ÿËþûõTÖ€•ÐàâTÒMÀĶ\wýT]¦«€ª`5€wz€=·ª[c@p@Mh¯õ€‰ j‚ýy¾É°îø@~ýÀ~eðsåWøÝÆ/æþ4úu㟂?ÔþžôÓÒ?­ý¦¶ô_;i¢mý›á_¢ß†·øû. À½ à#@¼ Ô@¯ñ -Õ·ä \À} ®Äm W€4èΰ ˆQÀ‡ó€‰L°_eàû û¯åoà‡¾¢«>žû}—ú3ø7 ü>÷Ãè‡û>¬ýîmŸ¥öºÒŸÖ~©ø§~,úÃ¥ŸþÙ¥‡ÿþ>ÃÂÐE€Z à›^ÐÛj€y%ÔZÜu@®€6äË€ÁÐS˜B@€ 2ìÃñOý:ÃÞM|7ó{ ?ûYåÇÉoð»…¿ÿjí/Ð?é§)þ¶õÏ¢þnñ×῟O1À z k€´œ6c¦]ö3Öéé¼ À]€W€Ä€‚  ¨´€J˜À¹ †~üSÿ±î+àùø}ëû}7øã¶_à§Ò/¹Ÿïúeôcð„þtå7sÆ4[ûiñ/ný}óï†ÿ8 ]–#ÀÙçœ%@×¼Th°Û@g­à:@z@Opèá¹*` ¨T¨‚ÌC?î¡ö]_yîü"ùEôyì×ÙÏR ~Íý²ð·Ñ¯Á¿Hÿm‹ýìúyígÅŸñ?çìêðÇÅ_‡ÿwvŠ7ö:`¥4HkYòe fx'P `5 º ”U@YÄÛK€ à$ÐÃÑ&0Afƒ!ÿ̯"öî‹äGôyìçìoWöyðWà—Òo+¿0ú-øgôßnôËìOW~ºö¹£ßE{᯻õ;§W=`õ.Pß’ËÀh€%ÎP`!îª À U :‚€“@ˆÉ^⪠³ÁP{¤}ÓßJÜ'ðù~èGôyìçì[è×Ê_ƒ_÷ýqô§Gÿ’ýÓ˜~~ß§r燿ê× ÿ~†e`F-¥»@¸ ¨ ¸À] \hÈ`ë@h.TP—@²@ ˜PÑC<îö=ñooC¿„~•}üúÝÂ/ÀϹ_þ¸ó«ÕþôO4úß¿ô³;ÿ0ü;ü¿Ó#@vX-d€´Ô×â `€<ø@«€¨€R ¨; &³@®ö@&TA´ÁŽ{\þm_"÷øJ~ýÞìÇÁá×}¿äþ|ô÷¤ŽÒ?Uè¿ú* ¿çÞO/ýºá@O5à°j^Fè;Ñ!è/pȰ&S€ßä° I@£†Ö@ð@ɹöúTª_ê¸OàÛÈ·¡Ñ·±Ÿ±ï„M~ÉýÐúuôWèŸ7·Hú~Šô‡½_7üÖéJ% » È 0?7ÔÐ* X Ѓ@If=Ÿ„0 € j.اóe„^±gîaäÛÌ'ò 臱Ù×Áoð¯­Ã/¹F?ÿœþùUúãÒßGÿnø§DÝÚ¦% 7Àxg€œª5Cö]˜^”b@OD ”,€i ¨e04!øÏÃíÛö0ñKäôû²Ÿ§~Ýö üVú5÷ãèïUûçä½Íé÷Ñ_~ÑWö~6ü;üàq¯­ÀÀ@®Ôö>@Åì׃¤ð*ÀÀ—‚«‚JØ È%P°@®ñ€ˆUàd°Ÿª_õ©ã>?#?G_ÙßZdßÿJ¯ú~.ýšûÝ[¾Ë—õ¡ÚÔ@¿{×÷¼s¡øÇèo—~Ýð?Ç"Àð,ØM@EàÀˆ!@{¬Ê ÈbWïZ @@ °¢ÌÑC?±OÜøž|ü-úaìûYè·Ô_„_J¿æþ8ú÷Žþ^Å¢¿ ÿáÝð?X'ñe€^k€ÌÓ‹€€×Ú‚^P¸e) 9@îò$à¢Y Ó{ ˆ]u0¤ƒO³ïpØ3÷|G¾ S÷ü6÷™}?¥~ëü~ŸûyôCð/Ò?}0úcô×+ÿnøô3¬¼”—\ Èõ®¨€žÈ:–ƒ8À‚HÀY@k y ˆ@Làd|°wÇ=Æž¾»€}â>¯iÉôqì÷g_+¿-üüOüûµõ÷ªýПE|ßÏïý:üÊI8Z"–» Ü›ë¼ È°")€I€ UÀ9 "Ì ˜ P™:þóö\ýªeîmäGòËè;ö5ôü<øé%Ÿ~)ý˜ûuôïúÏ@úÃÞ¯ýU¿nøÌ3¬VŠk€! ßXð Ð]¬”&PwÀï_HjÓ@ÁjpÚ`__&Ÿ‡>Oýlìcæìkê§Ê_€ßJÊýºðï?ú+ô»ÿ⊿EÙûuÃÿ8!P °5€-‹— nì„dè€MÀ¶Ñ1°ò(4{@D &@D! ~Ü#ìÉ:ì#÷ü|è+únìGö¡ñcêGøeãg¿Þ[ÿPèwÿÁ¬ý´øCôïö~‡ÊÁ«ÀXd ®ä2°`€5 p À@Ën1d€ À€( Y@Ãh y€E &08µP<ùgàú%;ûĽ¿ Àòyè#ú2ö=û…ÁO©Ÿ*6ùµô»Üo£¿Gð/Ð/W~¶ôÅßGÿÿCä”K€­ì* b€Ê"À…€° ÔU€W@z/€öÜ\ ð9€î ˜ 8 XHp"P€ œ†pàAúpù6ÀÞ¸'ð#ù<ô}û´çws?ü”úÓ~iÛàÇÜ/+?7ú+µ¿ý²öÓâßEÿCøÄ= _È" `- ° ÌC€n¸ð°( ÄÞ€t A@6&ˆÎ ä›À\`2Bð¸o÷Ì õ ûĽÉç¡è¿ÎèӨ׾ïÙçÆï¿-ürø9÷këÏGaé—%¥Ÿ×~¡øw{¿CóKÀ`ˆ—±Xð=@CÈ+–xà ;A ÐZ , 8ˆ ̨ƒ!x”>~[†½q¯àçä+ú’øiìë®Ï³¯Ÿ¿Vþ~(ý’ûmôÇàWþƒÒßEÿCþ` À5€]Ô Ðk!À/‹ àß´&À1@«8ËH f¯ð‹€M *xìÅÁ'ècßEêöƽ¿B~DŸ#dŸC? ~Iýü{}EøýÊF¯Ú߃~]úgÅ¿‹þ‡æ)•\Êe ½,·•E@)p€U@QÔ,ð¥@p–iN`§è1¨@\à|0ÄzÇA¿•¿Úsàù}Ûôqäìóªßªü9üPúÃʯü­ö»?}ÝÇ–þ¶öë¢ÿápb p‹À`÷>€®Ë5@C€ëEÜÿÀƒ¾ p (9 ! , $ˆ D&ƒ „~^º©OØ÷ ~N¾ŸúÙØ¯°OƒSºêËáw¹¿4ú!øëÒÏÝ÷WèÏ‹7üÝ3,–~ n€ôN \”j€†ßrð¥à}¢Ü:€àƒ€—€·7Ò€¦ä$6«Àd€>Òɳ7õ {â^'~ >§}G¾Gß}dÿIaß þÿ}|Õ—Ãïs¿ŽþRð—•?¼ëW¥ßßøwÃÿP?5œ4˜d 5@C€ïp%( à~;š€Ä¾€u9À‘@ÁkÍÁIÎê³A0Â@?«”oêmÞ ÷JþÚù}ûÆþ¾4~ü)õóK>Òù[øá²Ïç~ýüÃÊ¿ý…÷}:ú‡£k€ü*À@ß ÄB ˆ!€{¬¢øí@i² à*€9 ŠØ¢ï›€U`2@ìõ‡Ès7õ†½ã^Àgò{ cßÍ}ýÒø5õ·/ùáO¥Ÿsý!øãu¿¾ëW¦ßÖ~]ñ?|Ni ÐËpÀ‹®!¸PVÀÒ¤m2Ä à$à,ÀY Ó@òˆ@T 20%ô9ø)}”<›¿Ê°'î#ø<ó‘ü}ûû~ð§ÊÏ÷üø]ƒ¿«ý´òïGWüËS(xèo½\ ð¿€= ­h( KA]H è瀒¢¢ÔIhuÙ…0ðëù €zÂ^¹àòKè÷e_ªürÕ'ðÓÆßòs ¿ñOÁ¿HÿiB?^ùuÑÿ°={c5À…ì° p)€_ Ò& 1Àª@t'‚PÞά•Â^x„ˆ¼6PoÜðsò©ëú~ìö%ôãàçÔ/Û~?ä~lý¸ñ×ÚôŸôW’Gÿáy²E`Ýràk@¨¤ûZ”À˨ ¨ ðxŠ%-P˜œ Tª?¥âGô€½pàòúOô=ûûúqðså/ÁO¥?íû)÷g£ßXù÷£¿[ûΧ¯Òïòu ,Ú`¯R ëè¹äRÐ5‰E”%@u¢€Y4  € XìÓSÂ@>¨[Ðõ„½pàòièSà/¢_a_¿¥~¹êËá‡ÜO ý´ñ—àϵŸ/üè=ÿŽþïéÑ«€¾(Ô€¬è* ¤^@ *@ëØ€2 H0 €œ@Éâµ3ÂÀ>,ÏãÇ¿â±Gî|$_†¾G?²bŸ ¿„~ü¶ï+Âoû~»ë÷£?ÿéï–þ‡ù©€Þ •k€ Ö2È¿hM€b€TvÀ2q@'Ú €Jp $$° Ôh„½9ðqyâË=QOØ#÷ð|êú<õãØ‡¹OìKèOƒßR¿ÜóKçwð[îw£?Oÿ(xׯ£ÿûw† `\p ÈB€ëº àe€5«ÞË ëgÖ€z@ELTÀ.8%ìÍËWôD½b/Ü3ø|ú}dyd_B¿Kýmå/À¯—}šûK£ß‚¿Ôþ¾ôwøN/¸ë@{# ¤è*  €YI   î”$`} Y j@< "0$° Ä „Ü á„?¨'®PèzÁ^¸àù”÷ è û÷xöoöÓàOðÏ*À¯¥_raôã»>ᯣÿû}3@¨¼ ”€=@~CÀïð2@c€Ttï à: Q ·kÀy€D&`ˆ @Þ Åãþ¨>€ÈWê {äžÁ/‘OCŸ޾îúýúuð[åç«>„_J¿ä~ý¼óóÁ¿£ÿÈ:½ `«@¬䀺ø½Þf1 àWL¼(,à4 P˜ ’ ’ L*„è…ìø?§—ç=kÐ+õ‚½pà+ù4ô¹ë+ú!ò؃Ÿ÷}|Ï_‡_îúãè—àK¿Žþ#å p‚À!ð&€{¬@|)蚀Ā’ønÐM|  Tɤ‘è•0ø±ÏÊÓÒ³ŸRê{àžÁ÷3߆¾N}û|ÇWf_¿¥~¾êóðCéçÜo­F?Ö~ùýþŽþ#ã VVB°À«¯¾°eĩ辴 Àà:`Q,Àà4  ˜ ’ D¢T Ç>)ÏâG?á¨o±îyâëÈòyèsà÷è'öoO»>c_B¿~«ü¶í÷ðsé·ÜïG?\úuô)' Rä6 „€ÔxàÀ7± ¸*€X$(HûdÖ€÷€Š€LT\d`>% vìsò¤Çy‚ž¨ì=÷ |˜ù˜÷sô…ýEž}ý1õÛ¶ßÁÏ¥?å~?úmã_ þýGÊék®1¨ÎO«€‚®BP €*€X —ƒœ, €LZ¨ÈIÉ,ÑsBÿ’çL}ûùµïûú!õ#üãrø}î·ÖÏ;? þZûå·|:úŒS2@Ÿ = ‡ÒÛ¾ H(8`¾8$ uÀY@–ƒ¬öç3©€e :P! ªÿ¬|ž—ž­Ð õ2ï™{_Ò¾‘¯ßÐöçÙ—{>Lýé ¿žðKîï=ú;úØ“ ¯>d= ªˆR2ðÝ –€îœd/ÐjÀ{@D`&`$ˆÌ3à D?ÊzX™7ê{Ï}ùÔóùÚõ=ú‰ý9iר—Ѓ¿!÷ç£ßÿŽþ#ùØÿàÙ.—N>¤·¥ H °*€à»A  ĪÌ$5©€eÀ6 úøˆ<å!E>A¯Ô·ØGî|G¾ýˆ~bÿÆv×çÙ—Ð/ƒ_+?ÝóûÉïà·•_¾óËj÷;~Gæq«ÀJ €w¸È*À)@_ ÊcUï€ | D °DdSË€m >pRèuàËTäú–zÁž¹à;òuèçè û3"ûúãà×—|üVú9÷ë¿ü»¥ß}ª5À+àT×hPQ€4Š´ (8`jr@U ÈrÐi õ癀T\d :!<è½÷Çä³ü¨û”y‚ž¨o±çyßrÀ§´/äóЯ¡ŸØŸZdŸ? ~Iýø¹ôkî?5ÀßÿîøÀP ÚÊ  Wƒ¬ P °* ˜"¨J ³„VæAR¸ É@}€Rè{à#ò”åžyöˆ½qŸÀ—‘Ÿ‘_C_ØŸì[è·ÁO©Ÿîùkð»ÜïFü;úôã àw¹F‹ÎнDËj¬ 8¸2@ p0  ØœZ¨ HÉIÉ*g…ú?,Ÿ¿×'æ z¡¾Åžç}âÁ7òyèúÈ>}Ǿ…~ü”ú©òÓK>´íWøÏøGàÏv~ýÝÑk@)¸àpVR€] øÀU0 P–Eg§ö€ˆ@M@*H.H2P˜;ö)yÎÝÊû4W·VߟϪ½ÛñùTÕ:6D6lF7nÜ´iÓæÍ›·lÙºuë¶mÛ¦¦¶oß±cÇôôλvíÞ½gÏÞ½ûöíßàÀÁƒ‡>|äÈÌÌѣǎ?qâäÉS§~™=}úÌ™_Ïž›;wî·óç/\˜Ÿ¿xéÒåËW®\½zíúõ7nÞ\XøýÖ­Û·ïܹ{÷Þ½û÷~üøéÓ§¿5ùüùóß›|ùòåMþÙæ&¶ù+å_)ÿ¦üGòßAÑÏs…\/×NiŸ—ܾAó"íû4¯Õ¾]ó’Í«~øÐ¼tóêͰ¼Üü)KK¯_7ØË—‹‹ÍŸùüù³gOŸ>yòøñ£G>xpÿþ½{wïÞ¹sûö­[¿/,ܼyãÆõë×®^½råòåK—.ÎÏ_¸pþüoçÎÍÍ=ûë™3§OÏÎþrêÔÉ“'N?~ìèÑ™™#G>tèàÁöïß·oïÞ={vïÞµkçÎééæ+ܾ}jªùB›¯uË–æ n¾ææËn¾òÕþ_Y;±È ˜Ê ˜£€c¬€ÖZ4 ȸXq@’ÁK­PäOÙ,PArA–ë@Œ`½P?%G©Ô ýÅÔß?ÎýÑú#dTì0^Cà$@ë@i¯ò@+1ARArA–A¶¤06z‚k|äó z¦¾Åž¸wà—äÓÀïÐÈþø‹¹¿lýA¤/µ!@÷€Rã0§×â7ˆt00 °ÄIÙYÙ"«…zð“|úƒ"Ÿ˜OÐ3õŒ=qà—䧦/è»¶oÙÏðg¿~¸ò‹Ö™(åÀ{ÀŠpƒ€H€&ÒYÞ(1ARAvÙ€}R8BE¨ä2C/ÔöŽû ~I>u}Aßµ}\ø¿þêÜôG†% ¾èm (6N dx Ð:F°@EäAk‚¬‚ä‚,Ò¬Ðø(Ÿ¦bKÂ| }¢ž±'îKðüÔôíÀ/èû¶ß ßÉ>Lý~³ô»¹?Zd²T‡P€ä2Æ€Âf€m% £XÀk€<À"H&P$° È(…Ñ3\%×|i o©gì‰{¾'?5}D&~Óö ö¡ñËÊ_t~€?ZäkSÐ/~€1Ë€ (t' £@¶€×y€E &H*È.H2`°¬º‚Ÿåó¹Ú a>AÏÔ3öĽ?“¯M?íúˆ¾´}ùýZã§©oû{àÖYiFÀc€Ü” Pz1¨h õÍIb‚¤‚ì²û@0,zŠÊPѧ ½PßbOý¾å¾È×k>DŸÚ¾¬û%û²ñcã ÐYyt£Üh  UÀ:À.*´ð(ð  ’ T$Ò¬Ðø0Ÿ§r¹¶@ÏÝž±'îø–üÔôõž/¡oG~Ë> ýØøuêï…?æþÈ7Šœø¾ (ÆtÝà2PJ€GlŠZÐC/Ô·ØS¿o¹/Áò¹é;ôqä§}¿`ß5~¾ïƒÛ~…?æþÈ7ÎhŒø'ÞôGºt0à‹ÁÒªòŠ ™@U@2`°Ð ½s*˜« ôÜí{â^Á¯‘Ï»¾C?µýöyã穟/û{àú#ß.PŒôw@|1ˆ¨i€= "H&H*È.È2`¨ŒjÁÏÉa*vG˜OÐ'ê{æ¾>’Ï×|€¾¶}½ç7ìw5þ€?ò}Ó£» ðm@Åf` ð$`Gµ€j< "  È"€è®BE…y¥ž±î|G>7}èúŒ¾¶ý û°ñãÔðG¾oª ¨Ž° TÀƒoY³*µ@¡ö€ˆ ™@UÀ2È6P!+t?Íy€>QÏØ3÷øB¾ ?«èóÄÏm¿Îþþiüäûf" ø>–‘À #µ@¡ö€A2AVAvA–ë@°àÌ`ã>$‡©Øue>AŸ¨Gì™û|lúE×ÏmŸG~Ø÷…ý€?²¦  iâ€b@ x è0Ðj€–ñ€ˆ ™ « »€mÀ>@) â:TöŠ@Ÿ¨ì™{õ[ðµå;òKômÛÏ>MýðS_Àùžq (Æ€!蔀± 0 ¤q@D &È*È.`¨P ýR„Š^è•zÆ^À§ŽO-ßß…þ ö«?à¬N* (Æ€ŠÆH °h=DÀ‹QÉ€u Fp^¨Æ|T PA*/Ð˘/ýž¹ð òÇ _a¿ÚøþÈjgTßÌÖ~ðÐQ,@Àh@Qo±çŽÏàÛžOä×Ð×¶?Žýhü‘µT€» (`BΨãA6AV¹€d >@' “Rgù }¢^±7ÜøŽü.ô©í—ìû?ଵøMÇç¬*ð°È"È&È*  ÔV cƒ§¤Ô`>CŸ©OØî=øòKô©íw°_4þ€?²ÆÂ ès€h` À(PX@4 H"È&  Hê+…±ÁSRj™ÏÐ'ê3ö½€ïɇ¦ÏèÃÄm¿—ýhü‘µ›QmèrJÀ[ ªç$4»€e :°N<'ÅNóH}ÆÞr_ß“èe?äLjŒ&’€±€hÀyÀ˜€T 2X' ž”r\ÿ¸£Þs/àò'B¿d?äGɨî€b($P·€Õ@öˆÀª€e>@% –‚ü€~°OÜ[ðëäèm¿Â~ÀùÒ瀺Ì( p DäÐQÂÁóRt¡7Ø+÷|!ß4ý:úÁ~d¥â;tHÀΠð@™€TÀ.P#L¬"¥#ô™úŒ=p¯àÛžß¾mûÁ~dý¤×*¹¨Y k ð‰€LÀ* J+tÇÒjò€ƒH}ƾà^[¾#_v}E?جçŒ&‘€·h=@" ° ب«„¡1ǵê=QŸ±Gî|Gþ`ôƒýÈ:Šw€—€·h¦ò€›@\ 6pJ˜4¦Œ—Çí-±ÏÜCÇð=ùý`?²Î£($£@aÔyÀŠ@T2PTœ0&îè>S^ÃroÁ'òMÓô#NÍu x€ ÐV_S(/ḯ‚äG"ݱp` ˆDj+ƒB+Œ+‰OÛæ±gî|G~ ‰ô§nÑ€x@E &p2¨aâøzø¬­öÂ=ƒäG"“gÔ¡õ€ŠLàdP5Â$)Š™Gm)±î=øA~$2aF^ê˜ÀË n„Á)k™Gm®`/Ü øA~$ò5)50&ð2ètÂÔ*Ùgá[l ð#‘ÿcF£Š¬ ¼ º•0$µZöiøðz«ý/‰¬ßŒ:DP¸ G ÃR-ç9 î#‘ÕÈÈfc-U„'Hµ¨{ðjÿ;D"?yF•TÑ]QjÕWû/ŽD"õÔxýú¬ö_‰D"‘H$‰D"‘H$‰D"‘H$‰D"‘H$‰D"‘H$‰D"‘H$‰D"‘H$ò3伓š“þ²€ . D@ t¤¬(/home/amr/Borders/Vignette.tifCreated with The GIMP† ƒ'¬D~^,s(„”©“à ãù~ ý)Ò®üݽÑyíB HHphotoprint-0.4.2-pre2/borders/HeartsPortrait.tif0000644000175000017500000021646011074470402016641 00000000000000II*’xœí] @×Ö6„aµ®,.µ®­¢ÖME-›{\X% V@HHEŸEE .`mk­ÕbUˆ&îûÔ×jmÕßÅ*‰*!áÝ™{ïÌ$ ï½ÿ½>\æËd2ÙZ ßwÎwÎ=Ú´aÁ‚ ,XüïÀápè#Îk_ʂŻÇ€Ë50à CCs›övm-øÆ†­ý/cÁâ/‡kÀ5¶hץϰ±“¦û øaG³Öþ·±`ñׂc˜Ï›׸]ßñ³Âb±±1sü‡™s[~ë’X¼õ60 ƒ?— sßܲÃÀéáQ ¢'w22 ^¨û>.G¾‰•‹·#>ß”odÈÏðßÂܲ­ëÔÈXÀÿXAä.F†|cÓ]âQï`Àâírü<O‡þdø‡°þ`À”HAltà×.V¦f¶–ð½†\ã-­ûƒ°`ñoÃÀð02³ `iÓe”ÿè;µ·µ"ï›ñy\PÊæÇú¦ÖþaX°x M©CŽiw#ÎkèohbnÁ€ÕØXâ{f&F(ì3£¿!J CcÖ ±xÃÀwqåÃ#c[»Ž.ÖÜ6Ü–¨íƒý:R `lˆB? .ä?ÇИojjÊç›°vˆÅçàHï>mx–ºtstêeÇ{ý _c¦Ïy&Ìù¼–Þþ<SV,Þ$´õŠ–„q¶³ëÔͱ›Ó‡^ÞF͉ùß,æuv@- Ð߈oJÁ„-X¼10é´(>^>ö#G=݃#Gµ}uüoÎkçž.ŽvÖ¤{v±02Ñá¿ýMMÙ€ÅÛ~c'úL™åö¡c7GGçƒcÁ.-EqÍøoÙÎùãn#‡ èÙHÀfÔ!Ÿ¸ôч. æ›‘M>ë€X¼Q0µ¬wtvêÛÝÉÑÑ©çIÄ’®«¹á+J€füo×c¸»‡± ïïl×njä⤤Ä/Âg„ÌÛ·£•©‰ ŸÏ×þ@F­ýS³`A¨C7Òötäïޫ߈ϗ+º>ÿyü7'7Ë.C=0ÜGè¾$3'39:dæŒèUqÓ\íÍè¨ÈcÖ±x`dïèùïÔ«ïàQÞ“gG„/ĆöÕ¯€q ¬ßÿ±íåæAÃÝ-qqàgcÈcO¿Ø•É>ÝÌtø+`ƒÖþÁY¼ï :’Îýôëׯw¯Þ=?rÿ™/€_@hTL”›-Wø8þóuùo?ÐCžÌãˆM?Dt°Ð' üç™ZX[[˜óØÄÀâžÓ'nþÓgOŒ‰ò÷Ÿæíã‹á7+J<@'ðÓýOý ÛPáÝ=ôÄ”ŸíÛ¥þ3 ר¬cÏéᓇ|âbÅöFYü`èè…è0eÖBQ°8ÂðŸãfÔrü×™ÿè1Êã 2Á´Ì¹Í™ÄG7tÈÀØ% é˵k²²¾Œ tb­‹¿=¼}é€ïàÇä¿ïÌÁìÍ+Sþ÷ý*þðJ*Ì Ò-É{<ø¯àXô™¾zmÖZbX-ô²a=‹¿œ^ch¿ƒáƒòñ ˜'X0ÕI¿öåÂÀLÈÜ¢ûÈæ¬gØ /vعĺyü‡ü7ìØw”he&à>RYk2f;·òÇÃâÝFgÿiÍùÏHs‚¨{D|½•+füo‰ÿŒJø‹Ý2iî f%0ô?ÜÞ3ã2³Ö®ÉÌ\µreÆrp]İ2¼ëXü÷ÑÃÙ¼ 1á<\9IñŒø07666ÂÇš§›HûïàÕÓ–éÿ™þǽYœ°W.ËŸmÓbÿ‡×ov‚(uŪeËÒR%bqŠ@’šž±J<­kkT,Þ p,:vílgmJÆÛá¾#ìÛpí>ee‡û½&üûú/ˆ„¶Öƒ0j÷ÉTaNˆƒÿÎÃ[ŽþHÉR™¬ £¾ÿ!Ö¿xC„¢‰Dœ"ŠÉ«8U?‰-X´üž\KÇAž?›2+$8pÚ$ÞV¼q¡‹gví0åËììì¨dõu2…YQ ÄÌûÔÖHÇÿ´u~S Û0Ô /ëõ?uÛÿÞi2¹ìÀNæzñ|îÐy‰BÈ{‘PH …ðhbQÖ±Ð×ÔÒª½½ƒ}[|²ÇØÖ¡ƒ <$èB~ÛHûí¹àв‡ëØ ˜¥IjZZzZjª8!t̰Àؼüä©999Ù §¾6þÏŽŽ%ÎkŸ3–GóŸ×~ܪ|¹\VØ…¢¿E‡¯òÿ×ËärùþѶÍÚÿ†Ã£“á…º)ÂÙ.¼Vû Y¼àšw0r”§÷xoÏaýûöt0ïÐïSßéS={XpÚv±³µ5³èâһߘicôìÚÛ-$.Qœ–Ž––&.‰]œqàúùo²ÿs’_[ÿ†Æßí#ˆûéÆTô7žÈ,—ÉW ±¢øoÓKÑ‹‰øe ìŸo¯ÇcëO 1ßüaE$Os`gDYP0l×üçaáà67hüÐ ‘É@ðÔy#í;yÍðëî:ÌwzÈüðˆðyA¡!üi$ó!ÿÓ$’””uòk׎nÌü_>çuáßo.`?ÁÁ|ÏNÔ$¿cä.À~ÐwÎq&¨oIHÀÊå• `¾«€7Èü­›®ý7·÷LBÓOP[ ’ùh¿d„Ekæ,Þð: NÒŸ@xøüðÈØaJ* w‚ß´…ÂÄEQaä ¢cã…¤óIC9€0AñòoN\:˜·aCNöÚÈW“ß×wFBÊq„ŠžÐ³-¬‚MŽŸ"·È…ɤ"¼JqÊ—ùгgŽK ²æ½º:iç=UùÕ]Ë’E° &t´s;S^/Qéþ G³gi_¼ fÓ]¯çCñì²ÝÄkŽt0c„ÿ>s„Œ˜J`¦HuÌïÎ50ä±ügÁéî?yÙ#`ü‡^("fÁ~, J#¤D¤õ‡&ˆ,$bñ†ËJUeéVº•àCuCƒÏUª”Êò‹+–5¸ÆDNëݶk2Ì Èä»—v‡ô·t6¥¹ñ.ÈÃkövø™ìlToÆ D»qÉ":ôÓ B‹E¸(.u·56³°`O{ïÁÿx ïQÑ‘Q1‚‘0܇Ád+ˆ¢ÓÔGXÔb1ô=i8¤ŠSÖ}¤Rv+O/m)ô“\S¯y|}ýbT qþé{aùK²º`y;’þ#¥Y^î-įI[¤rôâ#GãºÓüï$Â}ªõ#J‘¬Ú²5kÓÆ’Tˆ<í»}:q¶xßÑiL0 uDôRÉêu«W.“$Ç "Â0ûÃf¬_¿î«¯Ö¬LŽA’ÀEBLÿÓ©NPªX,Þx—ˆÿJUÉÓu‹^j5lò‘‡J@•êñÍ5´˾) ìŒe];`œSïÕ›@Å|ž~k ¡ù8øûÎQ|<jæñ…zÜöÛê]çn\¿zóö/W¥VŠÉ|ê;ÑÏßß›u@ï;úLö'rÑÊ7çænÞ´i㺠áâh2ÌGÖì”Y¼çp ˆIÊÚ˜››G"wóÆ Ùk’¿õð™óŠ"p¹pöôñ=9) #Q-Þ$$âÿò•«þ¶&P|yˆp?€ßåGg3²7/s;ôö`ÿ@¦¿ u ‚|B©¼(?}½¬Bù\£ilÔh^>{ñ¼RY|G¥!™7 €S¡ciúOIøºP†Ü)ƒ¿>®z(Ïî$`•^ 2F}åÅÍÀä‹Ò7ü­pž"?ä?ÈÛW¤DÍ ã¿¿#{>Ø{1ó’פ§ÈOn¹yÛöÃÐ$ ÀüW\8)ÏKÏü¾ðÌEzHÕqîpþ>è~*Kvê­‚Íû®L…B?ñªêÚjeuIr’èðæåËF-¾~±/t bÿÁŽ#‡¨2™äÿ¡+•UÕÕ¿ìX:Éiô©—„rŸ^Üœ&¯“Ý€¿¹œŠ[SçN€Ý^wèÛ€ßÖ¾c{S¶1úž`|tÆ&ÊöÀàOdƒ­»Oèñ¿zp9òó³850ø_TtöT%æ¿RY²>P‡þAY7U þ×Ôk`˜'HÞOK>%P³o¹ ì9At¢ªì4òý¨[zøº²ªºNÓÔðàLÖÎJ虫Ïä,ÏÞõæ?ŽýÄæŒOÃÀÔαÏÀø,ÿßL\¼Çü\jŸ—ûô<ä:epÕé™®àöR1E•òúúPšþSSÏbÿ_Õ@¾ 2²š’úHP/¾ òòðð Xñ[]Så%ØöDÝùá’'UÕµÄ+_Öið®òÀ·¯ã€Â>ä?Qÿ¾2ˆâ¿‡‹•™üCÛüvN Ü“­ŠßŒ_ºžtÿ¸ý³@îöƒ°çCQžâ»[!úiúÑ‹¿>TRWÞÊ‹¤º@þ‹ü©BÝ!°{Z«¡ÈO…|mãªeh£lóç^ã³ÊÔ@ ×dÈüÀÕâã÷ŸV×Ôª›˜ÐÔ7^;ÿ;ûÌú·øîÝ;·nܼ¹iÞ$Èþ‰ã<‡ôvqédomÁ7²ìÚßuÈÁƒlÙïÉzoà–œ#~.•ˆëŽ#ØÖ è¯(¢¿‚Áû"”P‰pñ?U¨¿¶’݉A~dÿÇoîŽ2\÷[º ‡-vAMZÊQ™>Üt{íÌØí•ÄÝÆÛ‡ÐÒi^xTEú´µªgew‹KKiî£è÷æo—/ž?wöüîÔ󂦸{p 1à#ÇŽ½\G¸Oœè§ðn¬z‡a0XŒ[þ¹Œ6è·ûNé48)ËC;¡"劭"EQ5 ßËì}Tx"öªéE/än+_ú5Àk¡Õ64hZ|B][ý²—½Ðø þ«Õ UW¤Í¥4åÉÐý?ñÀÊÑæÿüSdñvÁ€KµiÔÌZý"Ž·î>ŽÛ=ÌÕ®":Ô3• 3qùà^c­Ša€””R¡ž¾¤‡0ÿé5¯&Úý¼Âûë)à/Ð2M?TÖÀ@%Ç0DZá)”êšòæÇPûÖüM±ø+Àáñð€—ß*Üýatòòvct< ÿ"†û¡¼µúKì®>'˜WÿDE1™ Æè§òÉ ÆˆCcÚ™^÷bìþÿÐ6b烤€ã¿Z­º"/lnø¥´ÐQ|/vâר `újìüiD°ëÝû:so4ÿC`½– ^c5“ÿ*j&?V­Õ6§6å}èù·ÿŒþÀ‰5ÒüG…±]]ɱB:è3ý?nAdz²§È¼{02 ”ãµÙÆ(¸É?Éà?îî3~ñe‰p¸]Gò®NEU»JĪJ FÊýPV_74µ Z ]õâ.ì5Tœ¥MZ÷"ùÏ,‡ÁÍ÷³mš}z<ëNNÎŽ]ìlølrx+Á31&sœ¾ÉÔàUþç躯IÏxêŒÑCÑø,1pp±´žä]êۯ¢›ÿT'èI=]ÿÒaŸ‰`ö‡þ#h ßoD¶_ùߨ¨º(EÅ/î÷“Z¢50œöDéð߀gÒ¹×@©!s‚gNó÷èó«€·†&èÏÄõYº@à BßJ/Ð3ÔÉ´á§“ŽC5ñ/pYS­¢ÆÐä-P<×4ÑÓ(V3:ýÚ¡îý—ù,N( T]AÍ)¶:8H)þˆf¬pŒÛö²$11IDüA%q|èøØ¿&ðöÁÐý™èãrè³_ð7@€ýæ¼ÃÞ(‹ &ýáõâjtJ-½¬d0ƒ\³b¶@éóÀp3ô¿À~h€ðú^ƒ¨¹!Å´ÿ¡ò• #èïHá˜÷öNHK$÷‰=À"?g6¼uà™ þ[eÁÖU“rØòóYAU 3Šj(ˆöGËë‘{o Ova„RKaušûØõ0ÕðÚe¯‡ÿj5¦f?OyüBñßùŽ €·{KõaL}|`– “ L@.OZH?4ßyŸBÞ"þc @Xý÷ážü6E\/øúù Ÿµf‹4Fu.UJòüx„E§©¨wWRÒ(U¼ï'»ýVžô=ÆþÖVÞß#çÏO eé§OdHì÷¼F?´'–#²[@‡e“ú{òëqîßïÁU1ññ©ç«söJ¨ÓÇVC{ç(±øÒ]`J^ Ñ) ¿”§­ÓB¹¯å½?6pÿå9GÈŽE¶öœûouð¼'6@ Àt9z|¬u¨"SE²ý[æ“ÏlÆ;«±ç d@uÐg¿¿Ó£ß§ˆëtÿƒŸ ILL<¦Ñ«¢Âëy ðølžØ¼×W2UDÕRIc„üb“€wfŽQ‹ª†tz³Ý=Yy%ÔsþóßNí€Àn7œM%4—ÉyõOí"ùó‡ñg6ìÕ•Xò`ÏO©O®þz—g¿Qm1dp‡·úúû }>:!1áD•¹H&!ª±à1ê8¦:‰wyCP g•À$ k<ïœ&*{'<è ©ïÆzÐÿsìðTÿ8¨Ïa§yO9Ïø…¤õ/O€Ÿ™×ìeDòÍDCaôÊ’_ˆ!p¯Â€Ivtª¿Q¯%$$$f×X*3Â%<õÃÂè#B–ƒ£\%Ÿ÷¡Öà3Qå«­B♑ÏGÁ.ðøz=S?:½ÅÑ!_©Qô ÿ™â üÕŸe´ÇŸ(<)`3É·¬XðKÝN~çs^ôð †ðŸù¢ê-ðàçï?&à‘ñÜ÷†ô÷»g1 Âñk–ZU vþa4ôÅã]Ñ'ù¨—yy&éPb#—õBZ;Í4ç©3͋Š`„V 'Áo'¤í1õƒü?uþ<ÿÁ±©ú$Q<,ã# ÉLp ú» ÏþùÜä»ßü„ºü@’ňXêgGy{{÷»¥ß³÷è?öîI“îè±û¼ÜÝõòˆø?k]"àFÅti¥=æ¿O‘i9Jþó'•þTºˆz‡;{ƒÙÖØÜÒ.x6Y­f£¹¹+z÷ ÿDíÓ]ÁšJ·qþ4$gÉ’%Ç?þó‚ÏHÞÓ…ÿt¼ú½W¦8pào·¹ˆ[ ŸiÞããîn?Lÿa¯î†ú'­Úb)9,Å)6 à“4é*uø2˜À ج€~r‹-.¬ü‡‘®©Ahœ“s4µtÉîžËþpN!çcGc‘‚2jZŒc¿_ÈâÝ@þa@`àÊ·áç‹0@4Ã{ÔŒЦss³ÿ~~S—Bú'ª6[j•‘mŠ¿<ÄdäмŠ7>ï¯âµ2÷¢Þ•x- }ô]ûúxÛC §“¾Tÿ“hØ¡?“*c9ïñå2Aþ3%b#+öòšŸE¾¸øµâµ1þ¾¢x^~ˆþÓ'x·»åMè?äé ÐUf‹ñrRX>,$ Û}à–øä5@ùЊ€R™{îš«¨çZ`šßÔtƒ4î©À)Lü8ÿÁ°â8_ù•³H€dC‰ Èâ‚¿"2ò}íW_®Y»–™ÂêÀÕàÎËž¿ð~ b?8ŠÈÓðòÅü¸od›ï«??¾0û9탽Ðý'¨°XLe»ˆì¡éO’ŠKÏQ²FÖôÃ$³•² ¤¡ ›õZ±Ñéž–· zù˜ÈŸ¦’LR÷rqü¤Fg†ˆkh•÷Ë ›wD†‡ì Þ´xþ/>ýhù’÷ÿùþ²åÿzv¸¯Å ØÃðHøp¯¯ë€ýXý¿²?!1é@‰Ñl®9µWÀXŒtCD<ÙFñS¯OK¿DåYÚ0ÝiƒM>]å9;£nOLœºzªþñ ½àЦÉxÕO§9+…¡AbÈ—Hú¯YûՆȌËåêËjuîñ›Ö®\üâ£÷;bÔ¤û¦aÌÇ“€ÈOÇòÿ©Bä#_Ìÿ€¯÷'&&%¥dæVþ›J0MÑi 13G©0Ÿõ:°X½˜{Y×¶ ë°ju†æîP·øÏ9X¸Ks@’ª9%pÿ¸Fsÿ|T Ý„ÜІ¨ìJXÂÀÐžÜøÜh0‹úº‡(€< Æÿ€&ñ0'~  [žz,õX‘µÉîh¶™ÍæZÕnÚø#q‰„ÃeÙ$½£¢¬ˆu½)ó®Û9z˜þ4t•çÝùÃNâþmoäiS—ÑÆ™kÀz!$n[¥ÏÚï“/Õh!óQO¯«W~;ß¿öûúúˆ€gÁ럀€IÔË{~dOìU-Å©g£Ål6ª÷†ñ™Ÿ0ªÿa èh/ù]¤/ŒòÕ¦ö:ÇaÒéº,óv†ðÿ(ù‰ ­8ì¦|Mz²`WÎÏè¹?lŒu¿OTVÔëtˆü¨|§×Õn˜Aýÿ@ûÒ³ÈÃkÏÿ€F¡Î\’õÇþßwsva5ÍÌ4YÔžØÅÚߨ$¯Âœе>B JÚjH½fƒV×Íè·»À9vãç;@íöæ’ãŒñ´ý‡™1ˆ”èÍ@ý­¿TƒXدÇ?uE» 3¯ƒŠpo@¿!3pÿï;FÝ?ÌÇà?̯b‰IÀ‹Å I ' –ýLJ¨Ã§¨üç…+€ë3¥674çšt:í&?ñßÐ?‹J_4ßÃ7þ Á¹ƒ4ÑïÊÁ €$ü®Û‘^T‹8¯Ó‘.&ÔͤËû÷tWÚ‹  ÞïÑúÜ{÷o? ]50¥ÿ É»•%6F¯fèÿÍÚü¸p—u´'tWìQw?TåV4¸cªÃ¢Õj=ÊÎépYò%H~Ú«N(„u/aÿY ß±)(((äH1f¾þÿå‡Þï@ÿ‹ü÷0LÒ?`ö¢íé¹Ç—üjô ÄÿQ‹² t¼2w4ÿo1Õ¦ï¡)PÚ„ÒÄL~í—`$¾XãžävØýÖýÓýPÂ;¥¿ Ö|á¨BPåb¤ôÿÈb·¬ ú–„½‚ä¿¶T~¯ûX俇1pº€ý>µ*ñD^^®êè–%OŽóê' NuAШÌ5Û,³Å¢N§™lt‘|œïþ´ÁAú_©í Åél4êt ÝÑÿÝ­s¬ñ¾jOô>Èd‚ܧâÈAù¡C ž°¯ƒÖ„¦•1Ú3çù¯Óþ¸p˜˜ÿé…è7Dèýç| Ë…ÈËË;üÎoÆ žºL™WÚ$ нñßœ¿‹µ>ð¹P0Š”çðín´ ‡ùEº3œÎ&S·Ê_ÝuÿÝó•ù•_ÖÂ4ºÊ…­w‘)¦¥g;uúœ2÷Üi¥*3>rçö´R-Kúè ÷)ÿõU»F»å¿ŸŸ·—hƒÏä93g>óä¬9sâñ_.Þ“ ¨éއ·,|âOGòNë\õ›¬f3ˆêO¢@FW@úïŠÎ¸t.—ÀøÖÿ3šöišÍÝã7þl+¿í‰ óŸ¶¾5”d¥¶[ö~0ãdþùKEõµe5ºªÊjÍ…‹§³¯Öc¹Où¯Nõ…ÓµÓ>€þî½çîñÆOœ0D\ïô¿gѪ¼¿ñÓ¿úÏÇËÞ–Ç܇ôÏÍSÉB#ÀµÕ…\`€ü7—Ÿˆ§ô'%0¨ÿã³+*Ïç)i( @äkí\ß´4uKÿwKq|¹—íü@¶jº–sH.þˆýé9ç‹+ëõ:ÞËëYŸÒÞh‚«xLFy]ûúÈöÞÈØYóæÎ™3wþ /Ìœà/N·cþžsâ°*/ûdNvö©#GU€õPý '±ƒ<×^5'*XÌÆ’¬X¶ü‘Ä»öÈÎ[¹Æš ylÍ;š ò.\ë²µÙÙ Þ=þs®Ê‡¥àÃrþ°‚mùƒûÒN]ªÔ rü4ÙìAo0™aµü-Vhà5íæÉDñ°"À ;§>6cÎ o½1kŒ8Übx?}ñâù3ù§±ËÏE'ÂþÓùàF~¾¹Å! go€kͽ:#’d>Iœ4þDŠp›k¡(Y ÷’¶ƒ-zÝÚ‹kßöÌ7³‚\°EZ~¥>mq ’ñ1˜l‚E;Λ €îäCùƒ†Ž1|äð¡Cûûð“³)æ<¿~ã‚ÉíZÐEÜTŒ^rQ­ÑhÔÅW Ncâ8]pæÜ…ËEjMqqyµÎflÁÐ k`W“YóôþÒÍômUçø¾7eînZz7>{8é.‡–þd‹¿6e*kôG“À‘üj¢s¨¶'¦@ìAg0·Ur-f ‚t×~7ÂwÐÈÉ¿øÕÌÇûõƒÓ§÷(b>µwBb–N%Ð-ÅÜx5´€¢+çOçRߟæì¥" ´ x()«¬5ñ¹ €¬–†›Õx1R°Pø±jÁ{Ê ØR°¼«¦ž[¡Ûãàxç/\õ‹ON޳e2ý@qü*Ñú´ºEVAíÙß Û[:]Ñ“MžÉó`<½!&ò_c<ÍˆÛ ƒþq¹5z_¹t.Éž³®¨1÷ÕèG£)­¬ççhu'à†¹ JBV‡ÇåºäwšË HöçôUc¯¦¿“&;i»QApã ó1“?2ÙÁ‚¶? ÍuâË S“»ÿˆ½A¯»´ú¾I¶á¼OÎ^µ;vçÿyš·ž+Fä‡ô‡(þñRaAÁÙ‹Wñ¬@o¡AimûÚ­Ó ŠÁ »œ5»ø=®©¦%ò‹M^ÖÕœ´ÙÓÁç=éÚw»ýsÚ,ÁFYE‚tõÿ¬ÛÙ ŠBØõ†kšô‹öô§¯Ì™=ûÝí±{¿yÞÓœ¸0èÃ<5ïÿ!Í‹ÕW/^ü]kˆ à8º3{mæ`»¢Ó‹lmnr•g•ªÜ².òžçºÑ§pÉ‹ªô&çµt¡ pÿUDòå»<‰9m…ù\£I¿tú/;ôþ¯¬•¼çïiVÜ>xdÇUææñ<‹‹ íÕÄ,ØJëÛå0¹æ’©$R–_Û¾{“³•=STçéE½‚sRº»lüFÔ?ý'Ù«sRIHq¶–ö·ñ®ŸØ€¾CïàhÐï˜ûëNùÿòW±±{C–½ùẩþ⪰›¯Eé„óÄÙ#¹ClAÃÓŸê MYû4×P·?§ÔíÚ‡¥²ÒÔõö=ç`ë¼ØÊ/²úEôm©9}7½þŸ8~€Éb6™-&£ÑéßàèøË9t]ñÿ±±1Ñá[6}¶pÖX·»1‰èô?Þqß_T ‘“DìކëÚ+ NQ£ï ¯ÇÑØ«?êûtð0ÝõÖáþ¯·Ô_8†ò?G «ý F³îT‡ö©kinnjl²X;MòrÆ#Ï<Ü)ÿ_]³7Bºsó‹~Ýñ†Ä"º ¯± æÞÕÿ/iLèÓ8— Æá< )7·ÿŠMOú½Û÷càÆgAö“H ×r´ÝXœ-—+Žä¨ë¡ï7Z›ZìB á8ÎÞ‰÷‡°•~ÿj§ü_¸9 :R.•öÂO³¤cʦØÏ_‰»D…šf€xþkü§±°¦COÿsçt ~ßã2;m¥Y©ézƒÞ`²5Ù¯bkÖ^øø)Föö™ 9KÿôO æ¿Túõsƒ<Í’¾‹»–«¯9O¿º=ÿé‹T#p“êÀQ°Ã!PBí}9×Xª¼Poo1Ì7¶RÓ©-ÿîwm9/?µR€H©4XÀ®¯žßS‡»Ò‹èFþ]ÙªYÔK…?VE„ÿ‚`@Sáfñz˜û'w‹”›ë€üsÚL7Ú¨j¨9ô/wŽŸÂÓëcb DúC|>ÉçñÅÜÿOó<”þÄXÔ«¡E ‹Á¡ÄÜ'ù仓­€AJÈ­‡G/6ßð:5kmÑú9sÜÒ⛡ü‰‰‘J‘„‡/ž¸dª˜½¸/Š•wyÖkXÞŸÊ}µà-½¹–Û=p‚•ïŽNþ•Înåk¬«¥cþ/AüÆò@ø‡/îù½ðú ÙC'Ô…Ã`þŠŸ„…Zmî‹úƒ£½v{w–"tŒ¦ºªCŸsË} ŠæíòñŸÀ®­ß|û¸$àz1À¯Ë5Õýf²Ð×…ß4 à+`ÞHà –›AŒÞb7‰þ­õÕU™Ë]`üò–hÄÿ(âýÃÁÏŽmùvñUŠh ÿ·ÿ:µ‹·LXAE£= y5Tþó•_ ¯Œ¬]Í?gpÒõy3`««ª,Ý÷R{×ðž$óºƒÓÎg†ÞÎô!ô›ñß-ŸÌëü÷kÎSƳ W¨vøØ—ñ¿¬²\S^V¦Ñôqþ£)àfI¼–úªªÊüož¥ùÎùóy+xêÅm{ÿ££ëGF yyä-¢MŸÿë_‡l[óÇɼåîŠYK_éå“AK€Ãò*ƒµ¡¹Á¤¯»VÕÐõ×ü3Gþ6½6°k«ªªÊU_.]-ÏR¥‡.ÿÛ›s‰zö¿»cbaü»7’È4 „~0í–§`øÒ­!¡Û7. è0ðy.‰òœúzA÷C»ˆjC#l€ÂFËÍ]ÆÛ·ÑüUMÍÕ\M­ÁÒØl«Óœ‹]õ;Ì{kG4Ì}ÆFGE„cê£ dÓLqIðõaäG!!!¡!߯ßÁ'çõXÐ>ñÃâ\A’GÐ §)­4õr7)2¼=ÐPWUchl¶Ó6Q޳×ÿ¸óm¨‚^ Ú‹Š_°ûû~TnßúœØt}óI(@Hèwó:HLyWÂøÏ+v¢E/l¥UÍ}6ã«Ñ¬36´pü^¥pè¬LY2oö³ïIaè ùƒ_©4"2**rûÖ?O¸µôùÙcìJ@~ðضìN·…€q ¾?x™•¹°”””h4%‚ YVZmð,gúZû!÷ÿÉTª?´â…ßÅÄàæ˜ýŒŠKJÞ·?E&KIŒ ÿâWbìº0þÓÄÿàog¸[C1òÕuÁ’¤\þkÊ*«««*ÊK4þk4åÝú¥\"\€ZªÿYœmÞ÷ïO÷bþÇÄDÇ&§¤9šžžž‘‘‘vH±÷ëCE¸Lü ó?$øíïŽ|i]HèÿöÓ°¤iUÖ`±Z­fƒÁ ­®(+å#âÒºü…Ô"ÜóïÕEÎ`T”¼.|üO–§efeËäl M±ñ¥‰âZ°ëÀÊÿР‡ÚtÏzùLyå«`p3üðU’æ)©ÐÚø –³[úÚʲ²h%u6’¥¯‚#[5"-‡-•™PúÄ&ìS¤gŸ8–|d?´4黈EàŸŽ{>ݾí›uA«×}¼x²K´ßЇÿ¼c§D"‘îÏÇ Ï’*S۔ܩ ®X@Å5cw¶¤Ñ!°ü'Gp2åï¡oBjFö‰ãˆýé„ÿx°âAq[¸ŸŒÉÿüôÃ?Í}ü‘§ÿòIàüa‚Æ=³q÷ÞèØ¸øø¸äl¬ý«Üös:›Ì†ê*}ÃÍß´ðöñþTá  úD\\¢"ëd6pþÀÒ1õÓÉD±ï?£Äà'ÂkôŒ{ȹÏ¿;“) /ÿ€„'¤Èr…B.Süp¹åÆŽ¼Ó*–ºn°âáX@ìÀz)9%3çdV&â<¥=¶p:öšØú“ÐoàÐÑãFúûøøôÃëÑ??FfNïa/‡Bî£=ÌòƒpãÃRm\ÎÛ{Áµò’‡îWùo¯ÉÈ<ùÃq*ùiôKl!==m÷ qø 0þ©7½·háÛï¾ý[T7|æIè†÷#köAÇO¡8˜W¬Q—õánþÞ¬}¿«L­N-òö”ûDK88¿ó†FwÜ1ø7ïŽMHJNNNJJŠÞð݇3†ÝõÚBø-Þ§€+(©YŠKªÅôÎ-Ç'~8aÌq&ìúy È ÎGÃéG¾™&* Ná5é/Ûâ¾A^^–²/%>"xåç_þ¡ÿi+"Sä˜ýÄýËåó‹4õbqë–‚¶ý´‰ÁÉzœv3ëIŒŽî›-î Ú¼&¼½c¿ \!G4GL?¿þé¿m—ò“ œRO^ÖôÝż½ y)홲ĎŸ¨ rNçg…´×‡{šb½C„¤ O;'îˆÂvryÛ‘3E}z1c¯Ó;4ë#Xi`Ë¥DÏ ž_¥ÓøÝÑž¦XoFÿß~ƒ>!½œÈ|"úiÔ‹|?9(r.›=Æ…Û,ûäÛ ²áLK{Òü:SBð¹r¼§9Ö›1pEœœ':¡8ºØ‚œ¿’=Û›/KŸŸýПJ![!«û¦ =?±pØ4ÅÓkÿÀ¯¶”xœí]{tÕßÍ*„$¢-P‘Z‹•b±ê±ÖW[=¶ U)žúª¢žÒ"µ_X«á—d7 !<Ä$<vÉ&dvó ›’ìNy”€BHˆ@̃lvg;3÷ÞïÞMhÿðœÝÙfæÇÎÌY0¿ï»¿ïqïêt¡‚¸õ{-f³Y:¤‹Å"ИÜÉ _Ê÷5矆`AðÉÿÛ‚<€ÃÛã²q'6›ø‘Oœ<ÀWŽÛ4CiŽ…0ôs7÷ÿflÀ° ² î¬WYJ¨ 2Ó¥“d¶ÙÁpWÌ|€÷Òsé´g¶Ò$ a„-Þ²—º4¢¤÷³ ‰ü˜ÿ–/=J“BE ”§ô÷ÁŒàn/§|Gô·‘éñß¶ïö0¥Y¢Ðëtá+r÷"Z3~d?ÆOÍ ŽÚÜJ“BEÀüÇÀxÉÿwåßæ±ÛŽùÑJ-4)Ï—ÙžH||¶¹ÿtg9vYiR¨’«Þãg>Ÿû,õø˜ûG¼?:æSši¡†ˆ¨È¨ÈðqDþÿ9ÏBž…ñõ …¨ò!‹™ïÑà AðaÚûð9•BâÑçBâ‡Ðž¨¬¤ÁŠYQJó-ÄqóÜ[ç̼"ÿ_üœ†·f9˜ç˜©DBSCݹaEI¡"`¿OÎ8ýC¾¹Xe?qûd@ÀÙ^›¦Wšp¡½N?á’V¾úØÓ£uaOo‡„'Ép²JhÄAf…²¶A¥y¡0‡˜‚…ˆ Ý9z9lòó·®Sšr!„ˆ¹¿ûÉ5wœôÉÇÿzþgwÍÕ…=¶•ä÷ßd"À  [`(jîWš*á> }“êû¢ÜYJp¥…¯NUšt!„9/¸ò¯ÿDDÒ‹O½ÿ渰ûs¨¯‡J—BÌŒ@„‘|ïìU˜j v}>šÿôên$Ä!‚Ï¥;ŒWšt¡ƒ˜ÇV%‰X½fÍšÕ/-ݹy¾~ÞFH÷Ä?‚¡æŸúG2©±GYZ¨Lä+à11qèî¨ã@òÓ¤'Sã¸Ý7hé‚°»ß\÷)Brò;k9ËòÈYŸP¯OT“ÿ„©?ÇjÎ )K Õ?$ î_è?^Éz‘Û§ PÙJ rø«š®4ûÇŒ¹¯­MI5¦JŸÔTCú΢í÷$¾•Ë6øXÌ{ò>ßñynþÎ]{‰"‚øØ –RÊk@ÐÀvý@ò_üx/ºìØË“¸—-ÿʢȺ0Vääì×’^˜Í$‚ÂT—ÒÇýá/I©F£Ñd4™Ä³)mÃÖmï-x6›ò»0ûÖœ¬27lÜ”½-[4ÄYhd°¯ök…I¡à†74¤•0|# vФÍ?ÿO‚Ýwň²wARYCñÇOΉ‹‰žðýùófÏš1YiF·¯J1JÄ7Êü—N&SúŠW2 dRï-ܽcËÆô4&Ù>2²¶äZØ“5WœÒZ€±£ƒäï7-eàúýƒ«²X“gGê&=šVër9îùÛÓâ¾7ÿѧ—¾µbé«/.ºgúÅ1ü[¢>Mi«3>Ëßc6ìÜž“‰¿Eöa4¦mÜVHbà‘ü/æµ ÀøÏ¿Pð´×Ò>O› a´ÂƼ’1sÉg¼Ëå⛊ ~aåZÃzƒÁ°~ÝÚU‹ï®ÐOZ+3^&?2|“™µm×®­Ùiè Ãq¸­ú!h•@5iü4¨Öþ„O¸|¤œ°ÝÆòŸ£!AÉÖÇÆßñ®Ý…À»9IëDꯗñ¼îíg¤–æ ˜ÛR€üF,$ªKçÌÍÙièýÙÐßÛ^Hcc&7d¶Óø`@ß¿@ À©A8WÏöú“œ'%¿xµ¬¾óžtÙ/µ{ÒEÞËd|œ*¦€ðiBŠ_>ùÑŸp‰"¤ŒL8>0¦í(¤ H‰Z,Ž.­.Ѐžðþ„À>ßБJ”¹ˆúg*_v®xpWïây‰þ¼xá+·§"þ È ÏVE},êÖÕ&#¿„é&Ha3 6 SfIú@G´8²6t+ÍŽ±Rë" >¿¨àí<\ÆaÕƒuͯB’?ÛÞ)qò2ó%ò‹FÀ7•¤‰Ä—é4añj¨ ŒŸŸJÜ=q‰Ï§jhDh€þdìØka å'´é{öAûƒÀäAûù ¦Ñ´=Ðll • È÷óxMÀžiÕL+™¢49ƒ€‰?':‡jZ À¶@äG¥?›ò-¤úÿ-ŽsŠRcìC Éhx É Áç>^cÇ‚Î6šEùÿŠÃÍ.äø%3@:ȱ ¹™ûòñy*ˆ~K½>ÅOÓ>Xü€ú—n6äBÛ'‰Ì¥ÍZù7À Ýž¤Ø…{ð|à=Sk§„gÂ^ ¤kU£‹¨»ê ×#Ú¯Gi ƒaÍïTÐ!zõ&ãñGýÂäŒí”ý¸1耶D°÷ ™<ËpÒ‡V}éÒ_WÖ#у$Ö?õ– ”úÁ6 –Þª4;)ϰ²=4 6Á…j y”¶y§Ùßû[JZû¦ÆXîð  €=}_T@ƒ§ ÚÞX$žÊ6¢¤'Êü`%ÔPšE?¾Þ»WivSŸóÏï€Æ¢£RÊ ‘ ù»¬|Ú„‚`®]sÿYõB3@¤ý_ê{»ÔVI{=ɾWÌÂG™þöê zñ< œe™¤þ%GÀRà‰±¿CDâÄ¿û¹FpýF?ÿÏ䉌Y;™%’ÒTPÔª­þ 8h±‹.üÂSÀÐÙƒ6&ÓCC`6üÕê^(–eÓžŠ¿ìûåѯUšžÇô7”ÿ&Zò"ºŸQ>Fjò‘½‹Y &Àþ.ÍýÐ]¾ƒUÀ"<_7Ð$?ÃHÿÈG¹£‰Ò^Öÿ覡ØÞëò)MÏ€#ñõ#8x5&Þ523Ô‡M¦ôíûö1 „--ŠRC`Røêa—Ž—Á"èx ÍdŒÔ‹PŸçɰ®ÓþýÿåKÞM Ⴧ•¦gÀ1åéd~“è—i ¢ßã)!=;o¿ÝîhæÕ”ìƒÕ5½ZëCÀÉÁï¡4\:Q ]ž4óÉn!ŽvBÓ"HÖäÊ‘oò²‡n¾*:6qÁ¯Ÿ{Í'‹ÆüAî[C‚^“‘JH‰2­? †6æ×éîïéè;öHS]µÍ*ò_åY­ó-`·yó{æí½é´âPy>$ÿ‰M€ç+·Èqïò»®BÄKüÙâe‹”egà1sĵ¤ë‡6>™°f‡¬¢#Ì.Wî¾s-U¥Ö}emƒšûZôe:¤ÏpçA;›ïá@û“•/öƒM$éÏC€ŒÀ–)ùÿä'5§ÎûéØ_ vmŠ?×AûYK  é›KÚý_ˆ÷›¯¾¨¯hé×è$m~`PôÐ+ >HBAtí¯8:Ð8Âýó<.4YS¤ˆ÷½[Øž‡ˆ˜HÅx$è¯O‘o¢jÇDJ`0 sC6wö o¤·í‚–û `É‹z¡åg¢|)Î4D?qRÔ^q·|ò¤êEb§c·œüynšÒ„ 2Âoüˆ6½1õ-Ðê02†´¼moÀÛ©óG¶€ÁcRû»Ñ!S.¯u¹(ý‘þA˜Û*W¿~«4!ƒŒ°øÇSü#]ÚáÉ6‘YasY‡Âo^‚ßš_‘þ^¯dƒmÕvZó²±°2îyÑCÛä¥ËÙÏ[Ƽà‰¨[S˜"/­n±ÝžLV´à¨–ä ½>åþ‰þÈ܇ÊH«Ô|¥¡LŠ}±ð!3I„òû³R䮇jXóâ‡èÛ ÆÑI’ÿgºâÐMùyMç‡è¾·>/–?ÒÇÓÝRÉæüI8PݽždÀËEù_hBÕ¯9c>á?áW?™Ì$xh j`x@S@½¶¾+d{@{½˜ûÒ xúÛ¤(6€¶á¶ô }œÛR ɾ¶ð‘)ªóÿºèûV3í=…κ8@Ê~òZ–3t€[¼HúËòG>.w8«è]ȦPîhÂdw1ÄÇa@Ci^Öúå÷κ!qì7|ŽBøÞ4@¢Ÿpž6{‚&’ÍÇ”~çXHý ÇïE àE¸»O9Ë™ð—³×4à>7<Ú—|®-µäýcÞ´øøøHÕmÿ©ÓÇ.Jb:ž Ói1ÀÈÀ¹'•~ãFA¦>¤‘gà©Ú2²ñg;pÈé‚È—î{‚žÔUì/Þ¸pŠHÿøhõñ_§{àƒT¶”ÉA€„{Ï(ý²5ø{|Ùÿ£À‹ÎÃC®*;Þú¡ÜÑèŠü?ÌM•û‹‹>¾;NâÿUêÓÿ:ÝÍZkÉüü'¥]J¿p ,@ñxqð ü瀋Çë ¨F]Ÿ.šô„ÆgÞéàŠ­û–Ï’è?Iuùúß|Ù~º¾…–½è®o¦Ê‹J¿q ¤øNN ýí­µåœÍ~ ÞÉnõÀCõKº?l+)..zùj™ÿqjä¿n¾3?~µ_éyÍ7Zþ'”€½?5°yìîn;\aÅ?i{ š‡'IPçáªâb«Õúê52ÿÕÄ,J‚þºŒf>ii¬ê¢Æÿ.{Aþ&Tö ´7UÕƒî§_Ü äj¨.•èo]ôOÜx5ºûV’€a–øÒ’0Mqšþ-à$ž\ðöh ÞþI´±Ú&»ë‡?‰C€ê À&þþSfá#ä>Iû3ÔÒ÷|¥ô ×à=~Á/©x/iæÁÝ“5¿ 8ëlÅÖbÉŒ¿BüQ£ÒݿʊŸ¨ÿkåÛ¼SJ¿o #@Òž8ÿ/@#4 ´7»˜vÍþ£ß½àŠKDˆ÷"¢üUJsQ L~Údd?T‚™Š˜tÖòÿ¡!ðˆ8Ýì¯ÏŒ°þ©//­vkqÔÖpÖ ˆÿq1JsQ Dýx¹ÿ>·ÌŽL ¯õ’Òo[Ã(P¿/à‡Á_5CÃ?OZ?aÏÿæ#mçúÝÃC—݃Ûþ9€*K`úiOÒÅ¿t1‰€¥Kúû‰î!-ý‚híBÑ$.j¡ÊŸtûƒh9ÖÙ7äÁ뼞Ë'Öà h¬ {àtºqs—ç§9OKw;ûCL2 ž>DØê‡MÏy¾õTGÛo%ǰã—8˜0ªvͤ+QfL!lòƒ«˜ß„n8’Í.níÖèª º‡V=½'[˜FÒüŒ  ¥­whä:¦®Ìé8øÎˆß½ÿÐeHLDÍ|‰Ýõ‰¤Ï¦ýÚºÇP‘þ¤Ô;ÜÙꢼgëËÕ|¼³ô*¾áæ…x˜ä÷Û§úq3–ÌSŠ•Áƒ>ñùŒÑÙtMû¬òŒ¶ì1´ 8 î>Ö ÍL׋omë¼Ò¿Ðo1ML ?ù·KoW˜ABôí«rÒG­Cw9•Ú¦'¡ þ{†‡:Dà[Zšùæ#G[øæô›_"ýÏÒ>=o܈s@±¤ ¦ž燯ÏT–›A@䌗¶~žîÿØ6Wž¹¢ÃÐR ÍŸ"ÿ‡‡Ýýíÿ>züä—_îøº«ýÌÙ3'O¶9ÚÚ|êâÐùÜM¿¾ŽH (ÙÂbbã¿»,}ñú€°+Ö·ÃoZ²)?ÿ³¬Œ4¨xAP6÷uPߣ†o Ú $xÝ¢ôïºÐÓÙí†Ýï`ÿ¥Þ®ó§Oõü%»eÁTO”VB†›”píSÛ’î›l–á®Pà »þÙŒü<Ñ6gÊ‘½!3'kcvΦ¬MéÖ“š÷ÿ?n|ðùDþ{<^Ç?c'ø„ËÿKÉö|òÃ胋üN\ü´û³,Ï]?–z"nN]à›òlFžŒÜ9YÙ[r­ÕÖ’CU\•£¬ÂVpt@Ë{þ¿@¥ë°÷[%,:_¾ó?~ü¸Øøø)s“‹¬w©ŠXT|¬8µù© ‰K2óDï/bwuME•³Ë;Øãñ {=½WH•iUÀnОo鳪žJ$3€ˆ„Ù±ZónQŠªBdLxT³Ð'úùMˆþ»Šv^ÒŠ¼c·uZß=sÃdàÿMOíµî|iJИùw#èåxœíyXgÇ%$ÜrD@P¬Õª«Vã­½l}Ôv«vÛZµ¥Ý]kE«­öPð¨m¨O·^=–¶º[µj•šÁ3¨™„ “ƒKD@TŽ„3$wŽw&$î¶ËŒï§Âè?Í|~ïû}óÎØ¯_¯àì7c÷Û>ôo‚¨ˆL† 2äüU£õ>¤/cÖ#ûûùÍ=,?ûÝ0aïXÙ‹ˆ—;² üy¼ó‹ ÷_v<ùj{G'ן?„c®¥ØýJ0©¿øéírùéhŽeý? ‰ G¶MrÃßzÎÝOŒý2Ù½‘ëÏÂ9•*ùé£Ò1¸ÿ¯:•œôÙ×îö8q`ìC&èrtÛ ¾NÞÏþDF$A³ä¾åV¦<ù\ÒžW"—K–#‹½ºéîäêÁ´Ÿ•¿á°ýÏÃ~K„Dv<µê¹o©ÌH–''ˬžù÷ýÉò¤]³œ»©ã1fÊ>TܦA$~÷–8BÆŸÄl˜~ xþ)SàöËåÉñ»9“,?ôö”€®à1xÜ„?¹?êH4êW¢åsì7¼ ˆð/;S`æú£‡ð(á?>œ='—'|ùÜÄQìþGøX‰äÉ gæ>„álÞ/#j€ò?õŒ?|ü¯Ê$Upö‡×&K$#EŒ7îac$ÉøÛœàäú(Ö‚“×èiom݇ÐúËÒ*`ëBäÿt99àßΧ윎ë>j ;pÜ%”Ð_2a83%8ñ(®†Ü‚C‡Ìüä®|!ç¯Cÿû6ÖŽkç}KñÅdÂ}¼Σº¼¤UÏM’HÆîO€pàh éÿhÚ砨ȡ¢ˆÆS>Á!!¡37ÆS3‚\¨„þ÷Y¬æ–¦Fcƒ¡©ÕÒy5•Ò?9ù’þŽ©y/€ñùàÆ Ä£'Pþþ;,Ø*}Ú›[—ÿÎâ‚ù?òÐK·¹> Žè4jJò ŠŠKË*k‹Ñóä O˹ÝjjoÒEÏÆ×ž }þ’ñáÎÀ¢Y[¤Ò…AËü’ú‡L‹!õÇ‹@QÍõi€pC§éN†Ã4-–¥LKÁõOÉ®h4µ·›Z >}n"îüèc€þ’qndÿS žµY*Ý:Žk›?"Êÿˆ%dúÇ׿Ê;\Ÿ't¶Wê0R}LC¾°ì Å…””ì›M&^ííߘ1yêô3¦O›:u2Q ’±dâwöæ3i¬T=ö‘ë <)ÿ/¤ö¾! Š*®O„ ¬-åÔÀÙÐh®(´·›Ûqý‰¯Êß_òæ'qû÷|½6rÖ¤‰xü'rù¹466V3o×>ÿ^D¤þÁ!/¦Ö¿ ª®Ï„ ,wõ¤þ`ì§ AƒåèËmøØëo¨LKMÏÌÌÊÎV«Õ—Sö­š1>WÈ{î'Ÿãá'V»eQ8×>ÿ^\ƒCBÉ x9žìþË˵°ÿÓ±6ÝÀ4´ýø Ó€ ¤É+­n4µ«‹¯êsrÀô€Îɼÿác‚~¯oø‚´_*ýâ0®}þyöïï :µÎý©ø2ä ªý/C°ÿÓ1UP^“z33QºÂÊ;•…¹Z-í>FÕ¦>»íÅ5ë_æÉa#¦¼÷™tÿ@®žÞ¾~~¾Þ^.ÄÊÝu1ü‡„Œ{ŸÚû ò®O„šKutüšÓ… Á´¹ù¹`Y !2À®\Š›îëéêââÞðKëgûüWÿ¸EàNØOâ-rê'".~‘¼ð5@ X×çÒûòAÜ¡Ð+`PÌ|€a¶?۬ħ¼E._Ýã~!ð íÇñ <ƒ€þ¡‹ʨí?2™ÊÀõ¹€ô:uZ ¶m°ýSfË?Ì\ úr‚']a~üî:{ýɾîîþ´þÓ6ÒñG&K­àúd@zë] høP¢ƒ.Ó ¢—¬DýÑ• ‘¡® Üyy¼“@ˆ×¦‹H(ôðë‚·ÿ@àÿÐeûdÔ8üÛ)=×'Òë˜o³ü·yzA6ÿm‡Áß×d~ýÂà¿È™wÃ8 ]ݽ¼½½}¼½¼|»úïHÿÏ|IÞúH% ãé&®Ï¤·i«dº:]eÓ+ö`ì€SŸÚø$í¿ˆwùÇÙ­¿Ÿ]ˆZ«ßk¨çþ€{RnÁp_£¹ŒIüŒôs5˜µü¥'°2Æ¿”çQò …B¾ùïìÑMù.ïÄäò7tè¢82üÈÀë´¶‰ëÓéeŒ×è1žñøÏ¬è…¨ :.å\N}ÇW_ÈÇñßÍ·‹ÿôò·‹ÿaóÓ™Õ/NBj9¼²ÑPÄ(m» "‘V«ÓiY aLÃþ[X–êâÁX¢º?"‚cvì·ÿþpýMFªŠRÓÛ?‰28¡4Â=} ÂÖ 4>1­>¿°¸¤´¬¬¤@Ç\`õD‰cÙª­Ãn®<»ÌÙ“zz@ø::®ÎÜ 9…P׿¨”Tláú„@z•ÆÒ®—~É™@›WÖ@= ¤£énU©^ƒ±Ó?h iÔªïgß|¼ù5½ì¬zÙþ‡M9Òd¶˜k³È±ŸZ€kçø|@zªÿÃ4<‰ÿô& “:­Í÷ µ¬†ÓÍR^|sâYÿSЭãß qЗNÍ‹¥½<í8X“ë€Ä{°Ô§è4Õ^Óëuôø¯Áò«Ú¬]Rp§µŸ˜]Ì&Ñ,Õ™e\‹î7û⃵€8"Ri° Î ô#€„äl#ô¿oÑÙÑÞÖvëZažŽ0;·¢¶­ç#À­7r™.³ î2šºÖkÑàâm7ü€wƒ¢4MfŠöšÌ$þ‘“ªku&øô>ˆ¹µ±æFq®¾¤ºÅbïü[›ÊsYW…©5rzf_÷= ÜD¢ü_MiÇ~3žÿÍæærþÎfßnn7[¬°ú æVíʆv'ßZ[¬e.”Ž"Q¡\‹îÇýŸ1å¤þf²Œ…gˆüsJQPk"ŽÀ  b5µ:¿m· XÛŸ‰·WÒÑ#Kxûà‡¾iþ·›ÚZŒ·2’O)ô•Fp¤VCIÿ1,[…Ê–ð«íÉFèxüŸ,#V¾æ–Ú[åe¥×Нb.a•“ÅLe"˜€ =i½™ËÞ‡åd*gÞåÛ¾Ž[ +r,æÖ{Õeú,•R‰¢ªÌ uÉÝÂ|¢,,–¸ ÒKý5f‹QêtTql Ï®û²x…t]öÒo†í½Ó\W©ÉLW¢„þ(þRfiË&²!DÔôÒΖ z(Ù½Œk³{:oýM]:#Øß^÷g~ʽrZìGÁOuI½ 䟀 =0Ý}jÀ‡Å×ã¹ÖÜ¢ˆÅ;Îx6¸ÛèO¼Þ–•GØOˆ«O}Ç¿e5X:(àøéAûmæþ0F›«Bi_MäÚs‡®H•þù©Ýg??É¡Ìt”ŸŠ>ä;âu¹¨ ÷;‰ן5„˜k˜çaš¼›jT‘É×ögèòRìÍÿòDÒ|Òz*ÿ ÔïÊœ¸ùâË]ºõƒit%õéhê›\{ߣ”ÞæwÛÿ0hïEfÙKÏJj"H××qý!CxKÇ=:þcÚ›ƺlÅ¿çðuûÿÊKTÀ¿„,“þûÿÅ Qw”ÌØOVþ¥†ÿÄÖ:æVàÜòzC½F¹e$϶=3žC»‰™FÆàà·©Ô€Ï @ä˜ø%£¨Fˆ}¬õôæ7]Ñ£ÁP~qÝc\{î9ñ`|W*ÎþðÖ&N9¡ ×¼ô@÷€”¨*§¶~ ö騥Ÿ ‘_Ug0ï)#Å\kîÉNÊ~Âê4ÙîÈÉabÒÿÐÕçé1Ÿ©¦Š*/_‡+`ˆ}Ì5àöÝu\ƒ¡A½†¿O=Ÿ¸KÉââ±ïb–L$ö {è•ùéȃ²&M/‚÷ÿBìÓR¦¥n.®1¨÷ÎáícoŸ?š< Ü+’î\=÷‰Çß½@‰&p ˜ž PUôbc~tW«ðÑÿÊLÜ0’kÏ1ÿ$+Ûƒ°zoôšÃJÆxÛÖÊâ*ú±!ìÿçW”礜M»\^—™ôóòÁ\‹ná’TæÊÊÌÊ çX?}”y\¥5sý1CøIGm1üç–æžÜ¹~mô¶_åÈÑc{þµêv û”N÷tÖ±EÛp¯¤+D ’R•ý‡Ø¥¥\Gü‹0¥y‡6¬ŒŠZµ:æ?þÜÏÅKПG÷¼|XÉä™ ¼¬–?ÝódºAäßS©¡ÿ»ˆÅi‹ª6FѬúXºKº lÄäÙ/ÿå•9“Ã<ùr9L­ ¥g/umÎ.áÇV(ôbkÝUL£»z÷fÜûQ6–¿ùêò•ËVïß}}’? @´,éïÛ¤GmGÉ„#|À @©Â ÿ{´Tè5úâ»†ÌØ¨¨•Qöyoš/ `Ä7—P›þLÈé¶ß™ÙÄ„#¥öÿ!ö1–hó®×Œ Ñ6ßWt/€Cøp?˜Ûò_ÓÙ™Õ/jKúÌ$`KA e4Àý;˜ïå—ß3 q8ÿ£¢ð`G„ðùÍûÏ1†Û®qÑ}éƒ6ëmY)³îƒØ¡¹âÚÍ:£ÑhønµCù‰îèíæÁåeaáÓ·Ç›ÜP[¬g®tÑ-!öRÀÖÅýoþCzÒÑPu»ÞHøÿÓ‡=­gå ¿½³xÑÒE³$œõB]ÆÆlß¹+þ"Óê[ l=OÖ!Û•ê·Œ‚6è?¤'¦†Úzb˃Á°wíƒÆÿ¨£7¬^¿nÍR/nô÷˜¸vûŽ;¤u»¿—ú•¬$Ä„ :%©«áöOHO¬mrô7þ¹¦Ç Ï^¯ß´gÓæ1 §s>Æõß±ãày¦áÃ,ÙÛY׿”¬‹cWàý;t´6I Æ}ë8þo ìß„Á<ŸÞ×ßuØk›wìØ{âB—+¼L'”Ýò¡/3I(£°™ëOÂC:ÍÍF"ý€lx€ý+Vn ìß„O ÿc­ÐÿÑ9y:xœí]ytTÕ'€hXDÅ¥ÒV=zZÔ"¢´§ÖªÇ*çXÑÖå´=U+=(’y“Èž¼ « ­‘"‚ dBÈ„ 0ï%a‰„°@A ’™yo^öŒ}w¿—âc&ÁsîofÞ{3“ü3ç÷}÷÷-÷{}úXÆ ¿Ÿ8{ÂÂO Åå2_ x } ?QÐ.úÕÞ³ßtGW³æõz=óàÝ3ÛöˆI–e‡CxæFëL¶‚«î?p?–otaîc®+”ÿ ´ä?ºF_+ê‹þÞþ©®@´úcþŸYdÿþǧ: ýÍWÌ}z’þCïŸ0Ëä¾ ¸ddoÇ1˜¡<3úWÊî/}½ýK \èòAî{Lx= Nþ~úÛS€ÿÈþö˰c¿ŸL|×dÿqmOÑ¿ÿðÞ¤äGfðŸì £:¢y€·'ªH!B¨¬ÊÝÛ?µÀ•‡®Vßä¿ûb}Ýæéݽ>á¿ ?Rÿà<éÁ«{†þa·¼šŽ¤>˜Ï+·¢3—ïb^Ÿ~NÍ üL{oÿÖWüíºFÔOãÙª=®MïHßÃÿÈ$èø¡ äx宾=Âÿa¿Ÿ¢_øHOÏX¯(ØßÓLÍÑûóªô¨§·k+þCó è×]_µÍ¹d¦#îÛp0i²L¸_Gò‹Ãz„ÿ7½˜Nò>x 0±hÕ.,v˜ÖWX&H¡0¶Š}"ù)ÐþŽfû^8ºi1÷I1Lñsþ_ŠNÁ¡/R@à*nÜU=Áÿ¡š…3?é$d2Š©ð瓞¤ÀÌ®Âý |-Àûý_»+cFŠlc¥ÙƒèÀÉ`©1Oöÿ¯Cý?YÒçÍÿoY¥ªÐ+)Ô º˜îÿœpÿÝÐÕ¢¡¬¿v®hÑtÒ7ŽÄhÀýˆ@ñ• ;ÐÆx Hüt$AoxhþùïÍŸÿÞ‚ï! ´0ëxíù½$íI\>+¹ÀÛ’£^Qû„¿UÜêçÐGÓ±k—)S%Jü’ú‰ÇßÊ4 %Pò¤Ûú…œÿƒž9oþ’¥+?ùhÅòeK—,0añºæªu¬”ð_áO4 ¡€KÝ_«‹ì@üíÍ:€¦yë?›‹h-Ë3¬Îžß-$MNäb_vt8Rì£C õ΂å«Ù99Ùk²œ«V,]¼hýI¯¦i *Uþ,íÃ*a´°ï”[7ÚÄ À¡³µÙ0|zuÎÛÐýO{/wû¾gËfÈûÔ¤T”òÁ6B1=àÿ=4÷£5¹¹¹y¹9kœ™›yM³Õ´S{™ÂçºßXTŒ>Ü}¢QÓu_[oÿâWº:;ÚZZš \øÂµúí´YKòÕ3n_[gSaçüíq)Dò³ ®Èq·‡žÿÞ[–CèŸg^ävÕKo¬*£Ù.(‰)JÙÑ ^“ÿº!$¿ií­ÍÀÜUŸeo,«óÀ,Ig}Þd,¤¨ÔôF?—6øpÈÛàúÞ³6xø(ÉÌI“yŸ/ð?alÈ› †Ž]¼>zãú=µ„®{¿Þ§ÒÞ’ìáÛþMúWžõ¢?ÖÄ ð0M ­µ­‹wŽ~ß2Pˆœ–{V/|›ª}ÒýC¬@–ã uüÛ÷Þ'öüø°© Èy ®¿Ü«Ò/Ô÷Óü¿¢”ì¯öè˜ÿºÑk¿±À®ÎîÒàÔÒX)æ­ÍMß|ã[—1wVšÌÅ$d>ãG†šÿƒŸ]Ü>8@þoþèü¨?º; ùYaÙpRËO4éxµÐ4C KÄ‘ò’ \éG·|ðMyâ<^âB®ÿo³­E´‡&N[ªuÌ~ÞÚƒ%\Ã+}¡ˆxïñF¢•Ìð‰¨À¥BÝ^Ó…®ŒÓe«ßNÅ¿ì 09zDÿóÿþ4¨~òHú'/·°–-°xj¨\ÙWa=@°ëó¤>⿈€., hk6êK3¦±Îg\0OSÚè°~cÃÜO.Ö@æqkÆô¦yÎWR¿¯°ú/4‚#õJýèð?t!€~<ºZ £qÿBÎÿÓììH±ÿ*¤þà£I+r`òå  þ“øÐÚÛp¸¤ûn`ôîpÕIH þ üxø[}>£nû;i´ü‹zád9iü¡ôÿwL]ôÉZ¤~rQ „Ûü?`vãÑ2~÷/)|<ïÕ±¥à¿úGÀÚ ÃÐj2§ä@a褺ÿþw%¯È\“ƒsÿùë Ö¯ËÏÏÏÍÝFý?Žlu­ñD¹J%éz«8ëÆ€ÿ,  4I¸+禑,Œzñχ‡¬ºßðä•™Îìàö ¶nݶµpó¦ 늪½hÐQðÛ}æÐn•2.å5nǾ¶Á+ü7|6̦ûqlêã!kÿé{Ë«gf9³Múírír¹víÚ¹£¸x»ëk7@8¤{꾪(%­Ï ñ¿ç«&f!˜þ‚ÿVôÏðÏM“¹hYN•F†Šþ}úß½8Ë„Éÿ Ûw™ŒVHUuí>ÙÄ뤀4oã™#e´ ì>Ò€Z„tbàÕ"ø/ðãÑ;¥õ“Ó‰þÇ)ЈŸ‡Œÿƒ[í„üßPä‚Ì7©¯+Pö» Bcq¯<ç«ö( ´²ÖËy~²´ þ üx´p§€'#ô"ýŸøÏ¡!ãÿ­¯9!ÿ ŠñÁY@ÉÁó:)háüâ¹§þËò2تî¯ö¢éþ‹ú¯€@þFÃG3¼÷—§þ9tÝ#ÞÉršµ[âüÿÍ·çp=‹©¬„OK@ÉçP"á¶Ãh1QÀ€þ1- aÓ–ÇèG ’è¨&²ò¶AÕ¯ î£àÀ9LnìáuÊp öª¥'9£ÀÞßtÿBþX€¿Íôþ ºeé~@‹€ýñ1cî}ß]7…? ôÀê¬,§3{ã¤~°ü6PqÆ«ñ “3ø¬áøç•§õoó´¿õö/)ðSØ)ì+@Λtö@)±ÒÄñ#Æ7røÀ`×GÜÿÚBñÿØû« nà; 4Nåƒ-Õgšðè$ô!ø/`(ýcú²ét ¸H™j—l`£¤4᯿½9È…°Q+@ø›·’š•Aje-ÝÒ¢SŠã`Ì3íö%}-]½ýK üùoZ@Ý%ÉQ¤þ[Eô+`-ÿzSÕ›tô?¸ÿtÿxJ²IϱhøËÍ`ãN•ÑwÊ«=¤¹sÿ,`ï ÷›ÛÚ;ý¬ ¹ouát6ýÓ!'ÅH6ò4­áõ{ƒ_÷ÔB3þÝ´SU™ìg%€²Ãu¤þE|>Möè~ÈþŽN¿_ˆ+ð·Pþ7(tvÿdF¢£×ÿî™mÀwü×ÿ¬¡üt@W#:ˆkzÃ×¾VÑõ#`°öë3N¯š!³Ûß™îß.áÀàú…;‚Æÿ°[S³`üø¡…€²ª $åÉ­U/L!|,Ãß[ ïát6øÜ<÷O €ñÿµ Þàæø¬,gþv"yˆ à\º¯ÆK“;œæ ˆ‰5AËCg Rÿ§6L#wˆK@r ðûÐù¨ 'nÿo˜°"Ó™½5°÷‡¥J«.zù?+ˆ±º—yE/Ë@W›òÿüÎt: X;sÿÄ€¼pgÐøþ»™«œÎBŽó*‹A¸ÆM3Ÿ,`%aøV¸Ë€Õ~¦Ã«¹ÔÑ%QçOøæ•QA+…]7éçšB"|XVA%U Þ€|?ÙIË¿`âm‡ÈûXFW;¬üúŽåÍsÁ?@ýÇaþSácCo¤¹&Xüïþ÷e™k¶àþg² Œ†f|ÊÍõ¼QöküpDÑò)`þt‹0ÏŽô4tsTdÉ“í6ªýIú^¾ô@xÐøßïΘ•k Šžø´ •çè&_RéÅúŸf†ÄŽ/ë0Õ?È}z+—;È¡$رó§â‰ ÉöïƒØÔ÷ù¥Îœ­*ë}£ûpŒ ¢éNÖ-@´< X†Í}ÐN~:ƒÛõ";R§Ø™ç·±8pxbPðø6:eeN!·û‹VñšP^ãæº@±î§1Øñ+²?Váoo†îÿëÍó·}­¤ñ‡ÏšÇIOÝ<þ÷øÌ¢ì ÅœÇ'Pl%‡j=Tù³ª ŠuÑó)`ˆþ>ßé¼w¹»©oqv­ûbéCvLxôÚ ò?lÌôOó·ñžŸo9Я.rÍ?d»/›ù)žX„¿£6>h93b§Ä%¥ ù$PR”MbÊŸHd "ÿû\?.=wó."~HÛ©î?åÖiÍ—«ãX¤,ÜôÂ0ôó.9ÊnŒž’ŠÇ^¥ÄÚmdß mÿ¤Zè©aÁäØÈÔÌõE$èåz ÈUI¼½##?gšf´‹ô€%t¡¶ÏúÒ9‘Úö¨) IÀR¢YÖÓ&$‚$éµG‚º ²Ï°gçæmSH¯^”¨ñèŒÿ´ýÛ„û°@ŸO?[¼(šÒ;:&61%5iŠ(d6f’4ñÁˆØ÷×1™`Ÿû! ( Tj§þé\Ñû `~8ñ¿éøÆ9“©º7‘1±ñ±Q´ÚK?Çøÿ‡ƒWÿ‚¸å/sò‹hœª° Î)¥§=m È„÷°;˜÷S¿ÿÓiÑ„áXòDFGI\ôËŠÀØ^yàê Ò?lðˆ×Wmq±€¤þ9%T²ÿt£—ný"£Ÿ‹ðw˜ô÷œVÞ—¸æ6) Úk£ÝoK/ ;+'vý*wæb©å'ê=?xÛ‹ ¿€%ø;š}¾ÆcçÅJ„ÿvÀŽÄhô?î¹þ‡}ëŸÃ¯zûK¹Û¸Rýea^ìý¢Ö­qm‚þVÿ¾Ï?&Ú‡´9H\ÈKž´Œ—„ˆq¿¸ ú÷íß}„bßðCFØ7¬s‘ùo$ªÐ( ´ûÀi7v"& XØñÕܲ4ÞÎñÛÆV K².Ð…<ß{íaý èv+«\3B®¨\_D·þÒFPV†ïJ*j<,hu_KÀwxI0ì¼¹Ã_0-ŠßÝK{ým6{d¤dçvÿÚ8þGüáÿ”ÿwxrxœí]{pTÕ&OÞ*Ê+@š¾Z_´VÚ±Òi)£ˆ£ÓQЍeäQÃ.òª#­µ¢µN}U‘*ÒQÀA­­R­ä± IÈÞç¾³ÙÝl’]²›}ÜKï¹÷¼6H‘Ý›ÉÀœ/»wïcÿ€;ßïw¾ßï|çî!gGAQ±†BúTQqéÒÏ|žæý•••U•UUø³JߟګÎééÝ=±ôi†sCUÔ~gÒ}±ÞxZU¥í,V«ÅjA[‹ìjxtÛ ›ŸýÚÆ%cǺdæÈÿCðs ¿¨?ý5þß»Wðy‡4È®3B ‡Êªê£b¨GG,5(7“გV2ñxJU%Õð§•:óå-pÏbݲý@}}mCsµí­¿[ Ï[,èó¯*< ¹¿ òò ‹ò2ÏÜør“×çóÈÂTÁ}¨i ôjùÿTœÑŸáÛBI¤3ŽúiEQµèþçïõôßÚkŦ7¿8Ú̉"¯½øæÊÝϯ…c€  ®Ìþ€ïyýNüú —W /÷õA¢}ý3ù_ÝL¤z{Nõ¥ûi gƒšÖò=>J&RŠ è¯*iá/Fæ·BНzr¯Í.Jà¼$¾ñÐî5V#>¬Pͺ,7þŸÇùÿ}Þ–šƒˆõF²îh¶æPò´šŠ%Ît g‡šŒ'‘J'ÓzîH‰íÞ°)|«uõæ7>?ÎÞK(Dáð[[P oVÝ<Ôdþ/;¨qD€»ÑV‰ _:à»ê˜?þ7,ù3œÔD<¡³FM§ôÔ"Œ'ÞÝŒ¤u妇[ öðÛÞ[‰F°}ôæ\äÿ7aænÿ¤úšŒÆzCýc㣌ù Ù@é‹õiHM§1ýu tŠßs»uÍ÷Ñ„ˆÉoð_ä½¼~ì iqðÄmfçÿ©;tù¯mÜ|]uU%ÕòÈAUÇÛƒ}.P¤ã±xJ1Ê^Ò|ÆjŸ[¯K›•Oîm4¿ˆ’?¸¯¶ý –ßl½óR“ùÃ.û} psG«åuöW×ÔØÖ`ÓNÊ=ʹÿ£ ß5‹%AÙ¨êA @þ+JÇ×%Àê­Ô ˆÿÔK áľGaò·,_´dΓù?c—Ëåt¹\nÛíl9RM&¼*kjëêŽ7655Ö9\bMO†l¡$a Å?¤¿šÿ÷i‹uÕÖ}Ç‘ä‡i_¡ź­+uñoµ¢:q>PBÈø†íµõÖų'/5øÿÓ{råÿ°-‡9Ž&:¬qÉ ŽTÀú )Ì*†ì ˤڅÌ3+2†uøîÑ¿®¶ÞUaѨ ¥ååß™þã¹¹òÜßì†ÄáŒäÎãhàqÂG”ÇZ@ð²Y`†ìkÍHñ$½ÁõUþê;ö·×.›£‰žü¡cJÆ_:zÌø\ù?kÒ9F  ]èïèìÛÈpa"qáê–LôfLàa€tCõþƒÇç_Sˆ[8lh íÏ執–jp"ñCjƒ’*€—cL1d5Õ%Óèn ^zò—niïæløÅ¹³ž`sµê}b¦ó4ïûñîJ=Œÿ çUMG4Ñ)›3=Ù‹‡’Øò÷e?n*ÿkӱħ$?Ž D~<Æs[ÃT5qã®§„[@´Ö‘2ŠÂI|ï¡©fLúb¬¯$MýþÝ(ûÑ Ð !v1þ3œ?TMÿ8ÉÚ2áK׸*fª¢ïþòr3é?¤âKÒÞAî|ÄgX"¨ž8!²(CPU夃jú“ OÏ„It”8¶Í4wÙãƒÿF)Ÿ#òŸÃJˆ#žâ2† 1ÄV1œ?4þ÷¶’¾gÆü®ƒ©ù`ÒÕv¸-ÓL¥ÿ{>!}lñ§ö)Ñ“qç%Ɔl ª‰pFà ò"Õ™!ÐâjÙ8sù?û#’ëqÌQêŸÏÔýDÉLÿ0d¥f},qPLOÃr˜®¤ÿÜn.ý‡Üò¾÷5yLxâ|ëG~Ҝ݌ÿ Ù!Þ*ÑV7ì…£=’®HÿškÚ¢ßüácK.)ºúÕ’õIzÇýÏLÓÕ!\l0C–HuW³˜Ñ IL› Ð7^¾Ñ$öçMžuׂÌ›õÒÒùá9람5Ôô0œƒ}.X¨12¿…'É2_¼ ÿ~ÓSW›Cÿ‚ëï{xé#Ëo;ˆù¥??¤ß‰íŸ\#x™üaÈ©öV·,eª~ÜäÉðÑC€ÔbVù[v·F~€åŠÍ<–>ÄA7…è¦('³é/†¬¡&{»Â7Y÷…ínXóDœru˜óÐ炟<\±@)3GØîFû?á9gl°ï!Ã… %™ŒŸ ºÐ@•öéµÚÞÇsF˜ÂÿáwT`¼×„… îþäŸá Âä €Ùú/†Ü *}>'²ûPIŸøŸÅŒ@xÿæSø?êNÂÿ×jì<-q°ù‡êõ m#‡Ùò†œ‘ê8D\ôRÓ"-}°zfª)ô2b.¦¿å™°ù“àˆÓGé‹jos?3˜åTf|ì¦ Ñôâ/IªgÂOŠ¡þY¾jÝÆçöÔñä©OàR›Ð ±•É3 ôxð éý; Î(2‡ÿùsôöÏòuϼ²kUsFo‡r=™a².ÌHÿÎ&Ì€šìràG|ÒöOÏ ¹0yß•fyÿo[RQa]³é•ýÕÍà™ÏÄÊ‘"˜zæ!æ?òAxºû¾1\,H{õû­€”$R€gÃÏMZû5âúùÖǶ×N¬läi‘ƒÛ=”%Ô8ñÁ¾k  ÂNjæ—Àh K€[;߸ΜGžÏ›;¿bÃëí‚N4P­~üF“„ûà”+:Ø÷ŒáâAŸßA$?å‰ …¯ÎPWך f( ¢eÏo\ñ¢Í ¾Q Ü>Èà@É.3ûóRˆ=û„Á4(íNb÷Én¦BöF"‘2ÿãÛµóÍ9ãç^Œ!€'ä'æOR`Cœ%ÌûÀ`&:ÈïL< ¨'Š´ä D£ÑΪù9y…ÃG}oáêM;äGüÏhúgLuáZ}C±¹_q(ó•þÁFövD£‘hû¹°¿pôØ %%S¿{ÃüÍPùƒDzÍ#î…âé0FóŸ=ù„ÁLœòÐfj$ OÆþˆ–ÿ£‘ÀKÙÿêKþèñ%SJu,Ø­¿<P®Ç5pæLx¾=9Ø7Œá¢BÜK›=‰ß“ôÿEÉÖù~=?kþšX Qþ«÷yÒüAý”äø$«~ÑõVöàCS‘n¥²?žñ¢V¿k鿵 ÈŸˆÿË'nÍ–þ…cKKaúŸ¾p·žô¨ÆÌ§§À8\sœ»›-|d0jØI­ôBŠ—¾à¬»ˆŸ¨ûí{§gÝÓiùâýœÎCeòŸZFó߈GûñS“ {ez Ìë¿þ.ÿïþld¶ì×äO æé¢ìPý XÿS©[?éÎ8–Cì§OÌ†šˆøˆå?Óø¬G;êǹ0èH’ÿKïÜÁóT ó?õ€|HļägâŸaŠzØøLÆìëÔèìù~.þ‡aÿgüÁŽùo( è¢ê^zU°¡ÿ%{èÀ Õt;Y–$Zü€+Ѳ$ºfbô’?’ÁÖÃö„ÿà7¯±æçÉ£p=,z"¬öe¨J2ioõz½n—SÆ%ò@·vöG£ /Õ‰œíðe“K§L*)™0~â¤)÷î’·@ñ40µÜšÿâ8ÁÕÁ:ÿ 5ÙÓ ÚZ½n‡Œ–Kâ]N]þGçåæ:nò¸aú^ñå·¾€º?† Â(ªç‰—#ù#3ÛÃ@@Gùÿõ ßí V~Iž°!¢³ŠrÊÿy#püä]a%}ÁP?À *R~òÈO=?ûÍw†@¬# Bêƒ1 lóyœ22DË~£úDææ¸þ%DNþìÏ8ÄzÌ^t¸xäüA^=ñ„-yg¤;ƒA=‚0ô ð9Âì×äÿÉg˳OþýqíÓG0ÿñ˜ ·bFsàÈÝÍž÷Ï0PzÃåƒ ýÃ0b¡­Õ¥7ƒd_G$ÚÕÑÑnçv?µdöÔbSøÙ]R 4 ·':$Òø' GYë‡a öuÁÜOC­—,ËžPG{H—½¾f߯Å& åjáÌ/å’Ãàçɨ5pâW`­†z²Š~=û#èá  ._›N}xIûЧnÇj3~uämï ú ¸ÚúN§OúeiØ &˜øg(ˆÚ0 ‚Û~?9¿ðK5ÏÎÌýA “×ÙqÞÇàŠ¨§•X§WàQçh!_œÑŸa@FÉm`š'Q€kƒ êù½xÝ9æî<¢¼xœíyxåÇwÃ!Šèc5U”Däñh©í£Õ¶¶è£àUÏÇR[+míaŸ–JË!R(ìì™@4Ù ˜(,(TÅå r(gØ#›°Ù%Ù™ÙÍA’M ›Ý¡óÎÌ{ll“Ñ”YóûÀÎÎÎî›y¾ï;¿ãûΚL½c¾hbE•ßï ðs —Ξ•ºB­|Èïóû|òS¨-}ÎR—Àó¼  ‡ í*{G‡ÈtæØÁ}è»/r†ç/Út ©©_{ ÎHè{%CÕ²þù×Ä»³}š€¯(éŽL­ýóŒþ•! `ý+£dçO/ë¯þG\sǽÊäÐ@;µ-ê\Ÿj9YP䌞ÉòI¾²¤[¥k—^<¹KG‚¶·òî ú«ÿÜÜWVd&uø«Å¤¤~³D¬®ZŽ€‚õR–Oð•%լɛ8ªÈñž6ßåã(©zæ¥ýÓÿàKss󦬯ò«ÀGA¤ûÉ–“Á@MCäœ+ºãêq"@ &GPFEÔ6¦ú9.ïšÜü—>:¢¦¾šþýêX’|¹Ö†P4¹/pÎèñt¯I›¾z„Dô t ~ã#ý’Î÷3ßýݳ>ðiÊ÷ke þ4™ðÓ­ àœ!u5bÉ• ™W!#ú¡ðÖ§sú£ÿù½oüòŽ óáð_¨š¤ß/ ÁphºË ¬âé15üÉø˜¼³}ÆåýÑîL¿Ï[uäÓ¢—=ü¸þ¯F@Ô{c’-$âÁ?Íy:ç 4У# ®ëþïÚàCõýªC{÷Ǩ€šÆdßßþ¤š±¶3\íõ<$¡¥?óÿÈ)û}jÛ Õøq@+ƒ2œKºãxJÇA¿Võ$-/¶û« åóu/÷§Uÿ²øw|°®¼ÈÎY,œÕQ¸lÅFokw º^€¤ÛE:»3&OFèØÚch”Þ~õÄÙnOá7†èQÿÐK¯º.ÿúÜ+s¯=Øíþñy“ÖTyåøÇï÷ݳ±¬ÀÆaõËúGÿJ¶4€ã0„TŒéy±5ÖüLí@¸=Pï}¯¤Øã)á&^7¼ù¹â»Ï/Âú^²hîK³ç®Þ¶ëÀ±ã¾ãÿþt¥ø ,œ2´Í«›¢PŒ ÕÂØX¯ÍtYOvj?{ËãvÛ§ß2¦Ðàk³XÕµE sä­xí'‡ö­/upŠèñ@}ŸãжvfûÄ‚tBdš_DÿŒÿSØ¡?ôn™Çó÷üøüëGöü\õèSýasbºÅí/åÃK+Aÿ€!´Ç?¯ZÊôÿDòqPˆ•ÞªOÿÿJË;2ÇÇ—þÔ=îHeû¼ƒ®f¦×EK>t]>$'mßQ+ÆbÖ|}úÿÞ,RðÇ¡~F;Œz"¨H½\ný†j©ý ›|2ê x ðފݲüãñÕ·éÓÿíÆý-¢oZ¥“>˜ë@ÑÐ?`RgS† 4£ëK×üÊûöÖÅeùÇ÷Ü«OÿwÎâ˜Ü–Ìû‰þiÞKÓôl+Ù úŒ¡»U$æfæˆXÿ¸1ÆGvV#‹_އͺôÿÐ<ŽJ›¶»˜úMz©àÊj ÿŒAêÐL øÆ'ÄîÀ˜¢>tpo@?ú™Þç²/…) ØYŸLïÇl¨ééØWÂ]£HžÊ°»Q÷)ÿÈTï®ÆùËÛ¢›uéêB+u}âb¿%Cï\åêakY¶Ï 0pNÇÉMàx&íeVÀDîØŠ!飸'æ}V—þŸø›•è›1’ú?M©'HyÛù„ÿ€a¤È20bƒãI2ŒŸ<¸ý`DŒ«ò—7ü‹ƒôèò+6RÚ!ÞÆÄ…H2ŒpýÆÑÝJ½Î$¦ó´¶ÒÛ€´¯E÷¨ù/Êì·×sÿóq3v+YÖÅúñTßÓü£æÖ•A¨þÆ’j‹gÜE+‰jŇNÿ(ú©|j„®Ø×cwhú§gš “3ý£Â÷£Ù>À€#ÙÇwy 81®ÎþêF-~Æ6ϹAúM¦ÑS;lµÆõ@ÓÖ„Xá`8R²5FÌÿÊCŒ75ªµê©E@±ò;uÞöØÄ9JÄ@Y Ûc¬p޳}.€H²™1~ B¬%Ñ™hmnÔ&~-ˆ5øVß§où—É<ö·.§Äüõ°‘]!Œ½ºª?@äþ?¼ÐØÖ%ÉiÁéSMq\öAD«þµböúôoºpšÓé°2‹¾ðHà˜p‡þå‡m•?Û'˜¤;šD­ú)6%º•Tº+Ñ¢dÀj Àû>Z^òwë¿L¦Ç­.—qû`ƒö[2f ·l{s¶Ï0@Iu4©€ØÔ‘fª€ü_¨y¿Ì]2íJ½ú`‘Ëå°rTüÔüIg|bˆSFIñ±lž`@“j)ß&ÖœJàhÔ¿Ùí.qß?J¯þoù5'€Ì¦ë¢¹þ„cO{Öþz`À“<¥„þ™¿ÀÒÝÚ¨”>Ū«–»KË&ëÖÿE÷Ìu9V -õP£'é„Ñf*þûÀúd éLs¼íLö«tZiƒ Ç+¶nÞ¹oÛ–Iºö4gÂ]Î'³ä‹,`:¬Âë'=ÒÉ®ÔçfàÔ)^¨‡C5Á`͉ššô˜ßT®zdº0þNÚ`3aü¾mé'Q@öþKü!®„ëdÂaù)ü°¾åˆa7ýÊåt9q Ì®&a½ñ­Åæt¹· 0€ó ©‹Ô!å£P~¼¯_½£˜¯xp|°[(YóÅ.P^Z.×Ú dÀùE*AÊ×®Suç¿ò`ܳN§Óa#ëÝq Dõc‹Õát¹Š>lÈö_ ™¤‰þÏÖ¯ó%w/Ví9&ø'«a8ÎVPèr¹Üûá×ó ©%“0÷Zýú7 3]Vµ & `ý?g-,{û­²’¢ ‘lÿ±Ð)q2¬ y»RçýU.o“/Z `!f]Œr¨`;¾ÊWƒ[ÿçRûIµô£ÄÿÛîííW_z’sÙs6T²[ÉrºÞ—„ÿŽ7÷·=›ïeûo€žÈñN~åÇÁ'ô7dÌ£æ;ѰQÛ?½ë‰þØJ+Àõ œ¯¤…ˆRûDú¯««žqÉÑ¿iÐO9åÀigüDÿjígÙ&>Û#ü/R:û‡C'æùBú7™aQ€#«€3nÄ9!ëÎ_¤NEúJñçDÈ{Ð9¡ÁÿïͶuxœí{XTeÇ$3•­pKt ŸBÛl³6·ËÓ}kÛ²žj{vÝž6"-7´ËºúÔÖZ¦À 3œ3sÎÌ ²‰Š‚3瀊×2µË†ø˜¥F¨‰7˜öÜÞËÜ0ÿ:ç߇fÎÞçùþÞ÷w{ßÊ=³mEEGQaA~„òKþ”¯lK;£ÒßÓÙyHúéì<оm(,:1î²HxôB‡dŒ]¿üÊÇ&PPàÝQï!@L.ëTøfÏçm­‚ 4ç^{yúõ̼"ÙŠìVEúê[¥ÀñE¯Þ#€Øœ?"‰ÿÐ7{vlji%ý ž/Sÿ §ç9ÈQhUäŸüŸ|ëæSA½G1é;Ý%{?û¶¯—Ô/ÿkç\™rÛ´<‡CÖ¿ÃnÓ<u°×ïÓ{„“þÞãÒôßñÅ–u¢(Ïþò»ü©øKJÞ/a2iWÃïySq€$”%@Ždý.鸠÷ 6~åÙR,Àn³ª‘o­øÓ³àýæìw‡üßæVQÖ¾*A¬÷WHçI#£Êߌ‘-ÀŸ’ù؇C52«[èÖ{|›àŞÿØÔ¢Lþ‚¶ˆBõŸU(åægŸ=û0›“ÒxÛ®:@5 È·y›Žôë=BˆÍ…ûÛ÷¶oPÄ/ é¿É;Þ—xýŸ>¬u3EêßIâˆ;gZý+>Ãî(ñwAæ00Áž¯ÛÖoÛܢŽšþe¨á”Ä«îx}Q@¬™ ÇGÑ¿ÙjâS¾úUô{kš”>æŠ_âþ¨Œ¸?w]®9Û{!ñ™¾“ÛÅ£I}h÷´%AXýks¤þ£{@fóàô)ïÙd¨úˆÞÀžüjƒ¨Nÿ"Nÿ¨hòWï4ü1yàù?þ–xÓvÉšOè=>€`ï¾6TóÂ~(båã|hÃÃbÇ¿ñ”hw'äI.P]¸?€éÛ»¹9ý8ñ©( $_>þËYÿ·¸=ö¢ÊÃzbs®c=öôC¼ 1,*ør¯Ï€¨ÿ!÷V..÷4×{„‹à¹£±¿Oò?Q=±‰¦YcÂ7ÄDÓ?ö‰O*\º¤¢j_€Q öv}†ô-àâNú Ìº>¼O=$4-ýƒî¥Œ›2¿jIÝah} Jo×öVìà“Úi€Ã!±üµî/<1Ù2Ô4𯽇[²žt/^sâ_ÀOغŽ$|Pø‹ºßÜ ¤þK ò­iÙSŸ¼=•ŽÐ|¹ ¾Ö’qó[‹V8§÷8 ’þsÇ÷lp”‹S •òÄî|ÇïùJNös“¯6_ÂRHžn±ÜðHIí>è~ŒGß©®]m¤ÓY$ mPbl‚¿âõœ©¿:éBÂ4‹elF–»vÏY½‡ aÏŸØ+ŸqBív¡#œô¡Býůÿýþ´ðˆ¤„HñËÛRÇX$2¹šÏOê=X¥¿÷ð® ¨äKš¨Þ‰3CbóG3¦Œ^>(4ë©l‚1' »Î¢`]üiÞ£šàùžƒ›H™WD^þEª`¤& >Ûk· —ܨ!!m?š% N+‰?Ãb™S¶ñ½Ç }g¾ý²ºP´‹úýIÿ³H‹_õNKØ—–z…"ý¤ä”+S®H”¬ éÚ1êôŸ9ëc4€FâÔþ-T£j÷Ä9PìøàNh­üÕ0ãùÔùÇ¥Ž–˜0(yäø{|èîG}Íà„¤4Mþ–qUC0ß}Ú‚U/’ûü´çƒÄ/Ýð×ι3Òý‰:zÔÈ[^^`cX'Ë0Eöy/Ý‘uGV&Ò?¿xÑ.H€âäWë©Y7ø gûÿ8û©Þm*ž‘ýÆÅ%¦OÊžWÈq/ÃqÎ"[Á¼ç½wâ –ŒŒp–Tì8£÷ˆ€páÈ6”æ)ÿŸ${põW¤¼ a 3ÍEÿ¦‰¯¸8^6õ-Óºpî‹ß•uë³ÿtòná˜Þ#BðL9èçûCZݨÄ?j†W¿7="ù/‘ò’,yæW—Åxޱ~ûÜ ó‹¤«úo 0ýÝ;q¯³H¾ý[„ò-ðÉœWR#N@1%=4ߥ*_™ÿµe@Æe_ï’ÿRó5}‰³t×é{Ç_Ñí Zhm鬜(úO™Íj“>Ofu9@KBå而Dÿ‰d«K”Ö*ŠS@ Üôœˆý_qæ1ùšó£èžC¶@ž/m-`€¡8+—è^œï!¡e òkżœœQþòœ"yG‡ÞÚ7÷Šp€#Ñz/:ç@mF[ã•k_‡j_8`Ùüë£ê?ùiÖÐ? 3mN­®ÅU®T} ¼'¥ÿýu'Ëàüƒ>ÇD-gÌ ÷ÂРŠ,j;¡¨>xñ§nèˆôf“K h%=»J«ë›Qç?]öU¸PÚ{@2ÑàAÍçÈüvB’|{Å^)Ï|»{œ èäÿ`§ÞUºlm€8?šüý+½,Ò¿VVå(Sz® %>yž ÔE`Q[wðâ™î-ðT`@w¶ºµŠ®¢n—·®ÑŽüÑ–_5®záä§²bÜ¥–ü—²ž§–lžå»Owî¨*)áL,@w¶yYTÒR_e5õ>?µ2°Ú«¥~–JÿKß'D9 î·ÿÆg>p<õ¦’¡%Ëêk¤Ïÿ¶ÿ¤÷Øà³-Ÿ‰Üz–ó”׬Aiú¯áPÔKÅnI W¿iø,µ<ó8ñɇÅÂn¯›ãÜþcýtgg9Ë`÷å8žª5ÍjXù1Ê÷h²GuÛÄpý›†fb¡Ó'!âŒ) W}­€þì®vi3:‘¸d\ñâº5É«œ$çƒâ`å?ߟ¦ÓU/’Î7œû'ËY¤é¿é{ˆ~ý9¸ŠgœÕa”áa]žòÚ¿o™‡ŠzÕÐ"é–°£€R§RÿR7Ùó‚“ TXúðÔì>PÀ¿k&-:V'qð̯š€uR²¤úÿæ±xœíyP”çÇ—Ã+Â.^5™LS1vš8M:MS'MÔit’´™´3©©‰GÎ6›4‘$&Ñæ´¨¸ { žÁÍ(*¼ïŠ *‚Uaßw9EXÎ]–}Û÷xžç}÷ üÓw3ý}†Ý}9fœÇùþ~ÏïzÞW£ÁŒ6ÙD0ŠoL>ð¿Ê z¸ÿ@Ð{Á ×ë ›ððùN¸”¾ßÅ·Í«fŒÔ(óðJAéFQú’þ%#@¦ ýD¼J;èðª½lñÚ·amK¢—´®Ð?úù™h I ¢}ô¯‰r#¯o£ˆ t.MFIÿ–ìËj/0­¹zYØHÝØçÝËôg›Þ›ë+ÍÈioHiÅ=²÷— ÀhÞs¾Gí5¦§”¸~Yü ýË´üëG£4þŒšý–¼Q¡y¡ÌÂNµ— kA~]õË ‰”Îß¼zz€ú5šhí¼-Xç&óH€®EÛÈ®T{Å àî1ñîDæ8òË}%Ö-Œ ¢M̽ëSäDþ&ÊÐf°çŠÚ ½—H…GÖ»žØÊ{åäX¯sr0ùk4Q÷~¦LyIÕ¥ÄÒ°­jŸ@á©ßmðþQÈC‚!½´3ðß¼2*¸þ5#æ®7¢Øäãùq-H¸6 9.B†‘üRùk4ñK7§¯LIõ“7‚ŒSwÕ^2¸î² e‰_/ÿý6”¬}2¤þ£&-߂ܾ‘|¢Ø‡l{샷¿¹Ð¢ìô’‡B~‰À›ÓBêŸOþ’,ý±òñ8‘ššš~’…ˆ¸ŽŠ¬_wº¾r_€ìüõŠ)¡õ¯‰}ú 2ö£tþ¸ Êëß”u¢v Bà<ΦÂtƒìãn¯")PØ„áËEÚ0úðÕ$#i‚‘R(Nxõ§ò—™×ûÁ€È€swu^û.UQâ!¢ñ‹úz}òû¿ˆ-ÿ‘ÏÅ+\1*OB ÿo4§edåÖös˜p®.gó™,yì“”ûõr$oÿ|vR÷Ïë’‡—ç>ɨð¹5sçž}=Zlo¼Û7¨öÒ€÷ÿN§³öˆI¡yôAùCñ» ‹#͸·yoL5ÊN_öþ¦´ÌìœÜ|š¢¨|º ¨Œmsè·÷n§óö…ݸâc½Oô#þ*iÅÌ‘áô?g ~´ÈÓ?¢ü3÷>žÇ‹Ÿ7šæßlåõ0 ¨Í@[Ãí;íÔVyÈ'ïUn›V>4:œü5‹“$µ§*‚ñ/³%}gN%Èž_›õ\ TÆÝÊÖÖÖ5T6ø©].ˆòløôãõ_»æ±±1<ÑÓÏQË“Mæ´ô­i–´4‹Ùl7KFfÖÎý¹E¶Ñíã/þš.¼<¨ ×ßÌ2 Ë\ËÛJú^¸ÖƒÇ@ ?]5};]Ò¤ÇŹ:ë/Ù„Øj+©méa8@=ú±üY¦úbzŠA¾ÙÃÒ™DìZòA Î÷ä}+rPy×÷)ºàJðàžsµ:Jm¶’ªÖ—ä¨×Çÿ¬(Þ ì¥;RIù?iî$¢~­H;O ÿt …¢~7ikq]¨ÕÓ×XUs»{b@U<íubùGÒ?Ë^È6§ òçsÄÐ'A_ýßûj©ê èŸ²U…¹Õ‰Ë  :mÉùKEP†¹p(=Uª®XNÿ:¥þ£¦¼“‡*>rùçŒj›@dÓÛD‚VÜØK¹»,bðå#¡”/1BYü™½–ÐI£Ú«€° ¶×J²—l@Ü* gçÁ6ÌQ;?àÿcž0¡ž®¬º´Uíå@8¸Þ‡œþ¢]€½^z"“Oƒ7?2ô ŒÿŸÚM¡¹ }¹]íõ@8<í7Yâ÷Å.°ôY•·Ã˜¢Ÿ79œþ}ëŸs3qá_®ÿWv©½>G‹$5H+àZÁž´”×f…ÓÿŸð£É¤üIz»WûÔ^„ÁÛY¾d¢)ˆaPÍ™#™ßüZÐy¨ ÈwnÖgd¶Ï·QÕ0ÙD2ý­7$—ÏÿO €-ÏÍzfB`ÔO.|Û¿¼ƒ_šmã_ t·€ÆÛyXÅ> …C,{åÔZß 5¥î¯ßüÛø—Iôƒ’`ª…ò?Á¸Xg¼Ò€·1f+­¯OêûüÆßF-"i/‚8mïW{…®ã&+'¿Äï3ÄìW,"Òú?G=ñ=>܈˟EסþD.î–²ãW>¤"Ä2ÿÞüP ç¹ÇÿäÏMÊ£í‚VÀžˆ…sÖ!¡ËЬ\ ’¦âNpŸN9ÿ‰‰xÌÔ5y¤,eÖò;j¯BÁ5¡PçFãíöNgW—³ãÖMn„¡¨:çÅqAô¯ |ÆýÍÅÅ|¼ýr‡Úk€p½BôÃÖ6µµw»<^/Çqƒ®žÎ[uRö€Ëé¿ ˆ}tÚ±§§¬>‚µ?+àI@¤2ØÆ«»®ùN÷À |@]8›ØàP$¬ýbÒ° wˆúÙ†ý4)€J¥·`ˆL8w=[×t§gÀ_¢ƒÎ&ˆà÷ûù7ü >Èó¿F?iL¢È4*1  2ñvÝhl T¿ð›îféóPM/›âk÷yüéø§–ÍÏ8‰‹?’ X¯‚þÈÄÓÑÜí >Ÿàínb`Ö^°tªOô3"PþšqSãÇ,Úu õÀ¤À•p[ 2ñö‡¾õ¬·³–ÌBˆi@ñk³'ÉÑO¨@GÅ­?&ÕÿQ(ôùwˆ\¸¾4„B ¶òÛ§§ N°vtÈÇ¿Ä.Ýy’&í_þý $À®ÛA t,þØ›ÓCÖ~È0ñ•le LÛªœj/†OßM†@èö(?›` ñÁ¢Ì#ú“”<MÓçšÕ^ O»b(N¬‚Ú+·=;V§›úÜCaô¯ûc–Üæ-á\<ã øñÁõÊ`F”õ…íKî7óscè§¿k4Ñq‰'ð90ñ /¥ÝÃþ§áÐ  :ý,KâþÍÎ\Í׿÷òü·>ÊÜ»0ÔÃ_DæmÉ¥È àøÈ9\9s2ªãr çàŠýëÖ¼¿êcýžÏé~É$¼´#ŸÜþŸ¦ ‡Û÷D®òÑ;S¶ã£ÄÄ5ŸnÛ—ý\Ø@jf¯þ·€…$ $D“-^HõqÕ"Ï/¾Ùí׋,‰‰‰Ÿ|ñîŸ=æñïPQcËN7›Íï9öèGtì”eÙÅ%Ë.ŸB d5¡(ðº]ÁŽ£ÀÿšŠðÒŸ'¾~÷g}ñÑm&£Ñønl@õç¿{õÃmxœí{t“õÇÓ”¶¤”‹º2±s ævdV;®šJAÔ!Ã*cŠ‚m†à6§ŽG7Aê™FÒ …‚PÌÛæZZÊJš+½©e- "P¤µ—4qïíwyÓ·Mø#M{>Mß¾MÞsàÍù>¿çúK ‰©i™9?»n‡Çã±×جV«Íj³Yíý?†ÄßÛÓë}Dœê%™Y˜9i Þþëš—Þ~SBœbpâFý:3[­ÑÌ¿hÙÆÝu¬°À}Wë ùO|þÀ0Ü„¤»L-J_8j–.š§Q«³3ÒøEÊàtO–Z@37gÙº‚‚B«÷U-WBÿ£ ~ FhÞEë?+3{ré³&% "ÿøñ™¢üÕÙjõÜœÇ[þ¶·€Ú“=Ѿ%›ê•¼ê³d™}ó ú9-[-eÞ’u…•«Õq{ ¶ð÷øzèê–M9ÍÏÈK_`Ú(yý§¤©‰gš…zo7ci¸<ì·CÒùËöö“§;®ô |­ü÷CéÖ$yýž­ȼ'×oÙÙÔ9ü÷Cè:îñml9v‚µiy²¿4gpõgf¦§*eõ?6]FÿjÍÃÏ­·‡.ÿÀðâ¿ò™Ûår»Ýž¦ö‹}Tù¥§hÁ`â¿oÚôi3&ÇËë?Cœ.`quoônäñ÷ºX`G¿8ÞñNüW VgÏ}äK}0›VúÌ;'©’“ǤÈëŸÿåɱCmˆ9ç›Xñ ¸›O]ìò Ï÷œ/}qÕÚW7nþàÝüW_^±l¡Ø ˜=}BB¼€l )5(ûEçË¢{£ ‡Ÿ €ØøÇ%<O|Ûãÿ1àï¾ÐnÖí?Rm;tÄå¶Ûön]»dnVfVƬŸ©â1r?aõÿÏŸAùˆ=úZ=nÑ4|ñu§¯ëÒ‰–›‹øìÀqp×›+ÌÉH›’Äê^‰ @FÿÊñ²á¿Z½¡E¦ÆQÆw¦‘׸ tö»ñÔùÏ›ô_We*ßµGÿáò9i“ãiäJ@ªŒÚçL"ßûC´oÐÿM“ s—/÷"üovó–s¦Ÿ2vÒ]So‰„/úý'þ2[þk4¹êŸ@,Âêß-È_Œ‚„u_п۹5}\|üˆxy䀟dŠÒ—ö—†ú'ƒœnä  nä°ô9+pnNMLüœ1€„ßd Ò—&‹Pÿb“GQî‹Ö~Á¸£³6-™SúQï8÷U>wGÆ€ò'ËóѾQ¡Õ㢠@‚ ½À‘‚ #ˆþ)†Ú“2K¦”½Ú ñ{ZÄP•€Ünœ¸êÞ+ù %…rz°ÈfOŸýôÛhß*  ·ÉMò_Á¸pLë_®þãï rܯ KÎGûV ˜ÀÕFT÷tIì€÷öãF TÿPÑ?Gü¿Syµú¡ý0ÿÄýÜ’°Gl§NëiÇKÔÿòW(ÆÝ3‡W?¥ÿyÚګѾW"Ð}Ê‹ ?béÇMÅBŽœ12ñÏÐË?ËO´úÏ]³×û]´o‚è¿ð¹U?EÉ è œïß*Sþ%E2QúŸÿÒGó…0>ÿ†“¾6/©þ»Iá;KÆh±ª¼ý+ÆÜEïƒyh•Ùím: @@ŒÑÓ(ê]hÙÂÆÔk,ò$L¼ŠfÁË6×ëiû>Úw ú/{¨Ö—‹DB¤ \—¥qõ…">)™À­…U¿ÇÛv v±„ÿê1<ú)±ªæÚp×ÀPý+“Tªä±©üÁirÖ2^Vÿì×)è±Dß9§Óé¨wPso¸üƒ“aÇŠ›8€úgåÏ2ú¶t6x0o/»ö{ØoïW°ˆ!ú/a±X­UkêœHúhu¹j^ºU@•Êpô/È_¥J¹uv¶fõ.'·ösà3è1Ä•fk ÃTT-U‡êÉ4rB@d\<4¤þFª°Ü;ci±Ë#„?žæ³1CßéÃŒá,¦š:»€¸ÌÃ9ǾgS¤°¡ôÏ]7Bt£oºáÎ×êøì—}4ž€03\ôš ŒÃTšÌµNqã#Ÿ;ëëíµÕ5µÿ©ÝùÔ8Éú?T(Ž}-NŸ¨âÜ@ròø¬Í¼p @ë·à€¡·Õʯüœ 0ð†1ÚjŽˆPG]mÕb6+&s….÷ŽÄ° e¢J5frêÏgd¼RVkçåïm>œàï]Q¡ÿë:Qý ¯}Zaª:lw¹öÚƒ“±‚mƒaöä/š>ê:l4jòÌÅ/¬Ñ¾öÖ¿?9Pa4WÛÝGÛè(àëéºp¼ù¨·¡©å¿ç:a:>|ç]FAÝ‚ð¹¼Ð+ÍÕGêªmÆÊ áEÑ †óÒÆ^‹Hšš³öÛô:½^_X¼§ÂZí>‹ÿýÝW¾jpÔv•”î.¯nüò;hÃÅ•&«(n¬rAÿÆhµT2 ~J0 öQúúýcðn€P#Њĩ‹ßb…Ï=(,ÞYftwtr)@À×ùMk½¹”5 î öÅ{+§`@ºÚk*„Ї΀ 8"2ñ#'a`>Y*\ý'Üúèß9q & üÔ–|bkéèôù®ži>TŽ´ÏÙ/]Q™­­²`œÁ x²?Þ¢T Ÿ*þ™8ÿM^ÕâCÜ@ñ~kSÇÙæª½üø%þ¤ÄÜÖíwøÀç0á¢Ä Dñ zG&}³E£RÄq*ÿUN_³­üdýçd®+ÜWmÝ[(,û¼IË?÷{±éK_´ßàú'ð½§¾(¼Çk½˜ö¢¨I_°•õ·qêŽ Yþõ@¾(w¼ºëðâŠ^Å~@§+±}e ÒôŸ3QUII‹W~œ Þ¸;tá‡ã¶§Þ× ¹/ŽstbL'89FVQÒÜ)a|íF†èZ°*Ö!á?ƒ\2‹¹áéæúmzÑH˜£§2Ú°‡Ð달¦¯¹RÐ?V8Yô‘5ˆ©Ar‘aÏ aÉ_ñÀ›dm|:êÁu.^\Ô] ÂôºTåÁO†,õh,Ž$ÂÈ.öåÏKÿYïP ””;õ¤„2”+ ¡D˜þ{ ©.nø¢ž0ÕC)±î¹ áèÿᑲ>J|ѪB}ñ !1 ú :@dé?k¢bz”<ªŽR‘{ÜöÌtUúdŽ|¤-°úǹ1òg` Y|ÇxÁ§‡Ýˆþ©Ù82Ç·<6ÿÞ¤Ð!ТPd#‰sÈs¤ ¤'ñqÔ€Èâ;n¥uªÕ‹Ú\Ô3¨$ØGù{O¯Z1#1”üã4›Ä¿Ž$¸¸€$C+B:=|HaüWJÆHå :H‹ Ø3ìÙ¬ÍË}zt(ýÇß¿R5i“Iªö¯G–›IñÅh¿;Àu¯®’è*õPAxè Bóg¥ïhµ¹/Ž )o_E÷¾PÑõôRKÀ¡÷s7ü™$ ÒŽT’¢'ÞþkÀJ‹¡ yYðå;6æåå>™2þ¿ñ 2ñ Ã^ h ˆœ’¦Xá§—¢ýæ×=þ– ­- á)häPFP¶õõ«‚ŠeÅJ(¨´*ˆ/ju«[Ýŵº*Qð­UDQy(P«$qñYL|Ö¶–§º´jm­â£îÑj­ZQ±(7  $»÷5sç¶„lÈ9f>%¹7Á?zæ|¿ùþ~3s^IûÅŸ)JòGI¾Qï,Ô½|­ÿäèšÿb0-AÍÍSyyy¹$ô¼èÌ ø\2Óc""ÂCGtxµÜòÏtFÜ wDÿJökåœ_ô–Œ•Pûø;(sFô@ùyl0À@`.9Y;cWF,›ìlŒü·*˜\èŸQ; 6¨Ÿ£ž[zT0VCÙõ¹€` ÈÍÎÊ”GG, êec”þFCÃÛ”`Z`'òzô¢ÊÒc‚y½1 ž_:¸~ö†žrÁ\džå~²2·EE„ëh\þ÷^ œ£z6ñCû¯Õ¯bÿ7E:K Æ*ÐסPýk>ÌûÀùç²6)ùggee¥®[ùAoãä/³ö~Ðô(oà.ûf¥Åcx@ñiØúÉåš>¹ rÙÈ ¯´ü³¶¬Y`k¤þd@÷Ðþ0ÉŸvDçKqóÓ’èä!FŸ-zÑ~(è~æd“î?+ó“Èw”¿í 6ïƒÄÏö+ó:õ.~1-оôGÐëAü>°ÿ°DË?;3óhâê‘íŒÔ¿]¸$|~ýËN 6”‡ª0üùÿ1óD{÷$,ró@ß?™ èßì[<毡QG36D¾ÓÙHýÚ°O»Ÿœãçü»  ¼HÔYz40ÖFq ž×R*(¶èà`^w ÕjZþ*:ÿì@êŠÚêt•ÄÝ 'ÀîJþ_ËB|ÜÄb1›ý)è;·É‹G6Uÿmº!=Ó÷½`Ã'õ~¨øÂ˜Òý0âgÜõÁêò*A_«Õ”‘Jn{”Àdå›4ØË³Ÿ·w_w1m~€ò˜¶lDåßÚŽÕ¾#å‚zlÍPBëV}[féñÁ¼Þ赂Múl@g:È: RÍÔÅDñ°í!çóøñÞ£§Ì’JgMç%†þ¿7ÕÿY:´‰úCÈÃ9`í.¶ëíÏ‘óåxÕ cVêÊUÀþ0 |©"ž\û†YÈ9¼a¬ðLéiH°¯;çþEÞ3æ¾ÕÔüoò?[ø…¥"‡I¾ø^ŸóR«BçôΖð _Ï‹®ŸÌ!-PÎÁ¨qï1ê§# ø-¤ "j¢þmÚuƒÚ§pr05YÉ5@|uQ…å13:Rô‚5 ÌT@¾?8wP¾ymÌúMÛ6ÏõY´ò™ã í¿[Ь!M~øO«ŽŽB4œzx'íÀþ¯¾/Á}Œ™1Ô°*çJ_Øbkòòìlêš.7oÑ’E!Á³æ L{¦ÏAnšþôè€=ú'ìe;?_œŒ7l,?9‘HÞ—6Ðð`Zÿn~FÔ¾p°:!úï9 ðÝÙ3'N;Œ~1-™ÿA£*žàJæówë/}YÞD/~ ¶3ZþA[ç^ݹú·Ï‰D2vLàß¶=´ôÈ`¬jó'ºô‹ÜpmÐÛ›Pÿ?·¾þ? õï9~¶±Ï>¡h×°›3˜ÄC%4I,=2k@¯åÌ¡·›è8(ú”Ó¼´¡þÇQýááÍËÿGx»öpbÚŸþŒü%££~²ôÈ`¬½Šú‡ b  (Ù¹ žýGc d”§ÈU48lý”æè¿URî#¼{’àä1”Mÿ’ÀYYxçÆüÔU•_¶@‘“`lœŒ’6ì€RÑB¾Íö»º˜œ°~†}3ô/ð¢ô0ÌÓYøæà `Nf•¥‡cÔUªhÿU*þd kÃw4t=éE®îã¢âÖ5¶ýOã1’¼ÿ 1"É;É%–Œ ×ª¹@?¸£çƒReX#ÉŸ& ‰$Ëâ¢'woÕý 1Š÷î/AôŸ€@ócÐi@ß6}`ê‡s‚êç¡õTÏ}ÙGì3s}|äÀ¶Í‘¿ §¤F-È·ôÐ`¬$zv ˜+ƒ¹N(ñüÛõ<„ÜOèÖ÷ï‘qqËýË 6îé_òá>ü—~1æ§î¡BÒ?ïÌ[ÿR÷¿}¹èö'¨Ÿû;K6Äņ9¿úKÓ݇'|¶˜ŒO¾c̾=ÿŽ‚±”¿Š¸ž:¯žþ™‰ ,läØ1qq‘“ìš©ÿvbÿFô?&ü¦¥‡cjàHä ²(ÌNOÎÅ£iTa«â}·ÒßèÍo‡·+f}‰·ÀaÌŽÙÊïþó€ Ç'WÌå韺 ]ºiÛ–¤„øø¸ˆ€f¦ ËðF`R2~òÆüè+¹мR˜(^¥*R,ã-P‘0?&Mž¶91>~C¸1Ͻ­‡Wâ|XÆ.½†—€1f‡zþ8éËmûáíÿaâãù=‹ëÕÀ¡+¶ÊäòÔM q±‹|šÿ¶]}hùð"`J&>ÿŽ1;]ð?ÐÁ ÷88jì^êÒPžþ—$Èår™<%).Fú—fû mÏáõÓ¿D2n%Îÿóo[Îó>0ë#‡ ÁôpoçrÄIç­M“‘(!vfçfœ~áÀªl“LJÁÿÁ˜¨­ºáª/·€PßÛVÀ¤sÂ7˨ô/—§l\5ÞÁý ZûÔOÿ£Ý·èð`¬½†Ûë¦âŒØþÉÛ÷ìLÒ|àoÉé¥&Ï÷êÒÜþ?M'^÷“¶bûƒi ôh ýÂ#ñȳਿ|ËÀÜ5)r Ê}2·½IúØtæÏcf*kþ‹#ÓÔ”qû?yMO.s-ÑÒ‡ùñ‹¨*`q­}9õó^/{“ü@`k?ˆ×ý‰ÚSb¨Åõc~t/‡_¡ ¿ªFjg7>OÛ²nñÜù±©´üé) v|»v&É_ °ëëãë7’-ƒV|¼ýFmuu-Œ¹1Ti@“î…Ï"`#ˆ¾ÿýfnºLöéÆÕÑ[@ò—ÉÒ¢ÇÚÛ÷ì·ú´êäàìÒ«·[ÿ¡tï3,.1ådµV[S÷ ×i+ÊÕ„J‹ƒc ô â2=#¼§~}?/•ôÓ¶¤¤1ÙŸ~…û˜hlì»9’œÅoÎX“˜$/$õÿR÷ÊE0Cêѽ;?ߺyû÷Ú–,Ìk‡¡R 'Äÿ€P ¸êøÁ¹ƒÛåÀ÷ËØ@.Ÿ/²oòsÏ•ÿ´üépñ2qyBRâŽ{Új*]0èÔîßúéJáåË…WïbýcL¢¦ÙüS/¨ªäÒç;dLϓӿL–:ñSóN1ØvèêÈÑÃ}bäÇÑ+"¶>yñÁS5_݆ÚgED…úÉmJû4Wnaÿƒ1 ƒVÍ/taÇw8¸¤ðØn9«FüLù»q¢}‡æþbhÊßѱûÀ÷?œ ñóî;Fštìúg` 5š‡Ï\»ûóõ+…Pÿw,7p˜×Ý äÄ/ ꇊ¯Ng?ÈþŒþåë$Lêþ´îÌÓ¿£ðÍžàÖ-x×ÍJ˜ßõUOnœÉ?sáR!Íeêuùê}¼Qcz­þ… *5÷<,‚x^ôãÁÑÉŸu?r¶û#—/y»C³žýõßÅñ•tŸpàû· u• òÏ_¼LÙ~Jýtþ¿z¯ Œiè*ÔpÅ] ƒJîSngDÏö}`ý+›ÝÛ´æ‡WëßÑeú…gt‚××h~»öãùï.±¹ŸŒj(¼r« ëcú—åÈ™¯R¢´´ÙAOo( úepãý¾uRg“Ò?_ÿÂúà¿ûn¥Á`¨­xJÖ¼@ú´öÙ¸Žõ1}µF¥¦¤O Ÿ ‚~11QüŸ@þ éɸ™,%ÒÏ„½ÿ­íÿ ú…_)ÖÕT=ýå:§~ ÚüSo×ÔXÿSÑW‘¨”ÎüL0Wª ž\=¶‹ñýrhz@ú—'L}óOôý?øJüxœí T÷Ç—C1ŠÈ r H8ÔxÄZ ‚6‰I“h=R“¨¤Ä+&ñŒ;ˆ†à‘jd¯x›Ãšú¢‰V›¶FM“<50ñ¨â 7²G:3ÿsXl™eÑ÷ÿì:;ìË{yoÞ÷÷ÿÇ̪T-àÒ£—OOræûÂé³%×Ïä ‡ñ¤@œä\0ýÊ`´K})Ï$xáD|‰‘ë'våfé…—ø–NÀ©ð)¼“Â:¶¤ïq‚§TÎ==µÏýó»3߉j/_@öb ~4:úâ1tLÕe@öHõ’þ…c)åÈÖ½I_ü…¯G‘ðdÏVË_åÔ­‘þá_‚þÇåI‹>XñÅË>Ø Ä0ø±ÜìèËÇx°1וó’î 8ÀV ¼}˜å.É_ ¸èÓ"\п›G¯Fx˜`}@ ÿ>¥“üïn° €ÑÌ5epÁ—V~èƒ`üc‹8¼üõKÇ÷Fwo½ü…hBÿø½ÈñÃ#0@8 „×µ{G_AÆŒ¹î®$zè߀tz~¯8ÀöèA(d-ê­Àò/г9ù{¿p”¬õùàMü?8?WÁ ãÂb4[ŒF³©Ád2Yê+Jy¶= "„ã­C ý×SöäëGuQDþHÿ¤ðƒˆ˜uðëÐêCÃO-ÿ0XÀ¸_,f“±¡®ª²ºº²²J|WUW”ÈÊMÞNm§åŸÍxºn©2Ë¿«Gsú¾4wûç'ò HÉ3@Î äè«Êx0°˜êª++Êxž,ùHøØ÷`ÿ"¡è/z½-ùz¿µO¶¾ö)âÔéÞJÿ^“RSS×nûüè ¸äãF‰…‚óU,`Ü–†ÚÊòR¤tâxx¨ø¥ápëØDþhõÏrW©•Ñsö?8áåéSƽ4uQöoв_@%¿0%>k` F˘ê*ËxlðÉ'Š´Ðo¸“¿‹Ðö’"`CÎ[Ѝ_¥rnd{~ƒG ŽŽ‰‰•¸ú³c'Q˜îIïÓWk}iíSu)jnB?Ï㵞‡ð-|Ur RWÿMkâÒ¿k#ã#™ßGûÇDNJÛxàÛœûÒ-ᣈU€-a©)'«>ZïÑFÀS±€ó`ðß9¿?<€X<ÍÙôÁ›…ôï쬿—Ú[D­öòòò”¤%Ÿ¶lÃW'ópÝÉŒAœ1° †m,ÆRÜÓ"õœÀå·©Zè™Os²²°û‡hãF.N!ù£ùAý¾}BÃ"Âú†úkµpéú3‹ËÜþ÷|<ö“Ë §‹YÀ°© ×÷ñÂÏ“Q•ã`¿„åO=®ýälÜž™ÐM)ý«\¤ú§—6<óh´œAä–­Ús .üyy§„÷¿aS¬àlIƒ£//£}c¹WF›ìzHÍýIx€/î|“CõÅcö‡;v¿é­˜üU*wO+ùÓH;@ì.-}Õßò N;|p×Þ-ÙÛwoÛù×I;A!ë€1lc®+E¥Mg¹èͽaÑãùgñxùئ,2ÿ#³7mß’‘ठþ{ôêåÕ´þÏ.âtºå›÷oÎY÷nÆŠééË—¿“‘±*÷Ócyù«}yí`¨’?¨þP’Çk¾é†Âå/õdêG4?[wíNKðRPþ*•[Ï^~aѶ .‰Óqi+2W¤§étÇ—þgúgØÆ\Ë“r?Îna€öR¢Â‚¿}<Vþ¥Åÿƒm»vVfòáÔÙÃ?¦þ;MTœ û¿ëÿœ2uÒ’=gôUfð‡¦£·<ýµÞ ÿ#.ÿ2壈ÈùÙÑ——ÑÎ1בò'¢¼Ý ³RPüçh.(û¿¿böÓQ¡Ã““¢;+.•S÷ [éoô˜9\ýa`'¤Ó­-tôåe´wJeón²!OÞ@ÔN’”\:¼Aò?ëS& ñÓôÚYÉÚÂÍÏ–ücž](×?õ/W_pôÕe´wL¨ÁË[éŸ?éÖ ‚‹_äˆÅŸ5óÇFøj´Ý”6ÿΞ‘6ôßüRTô‘l, 2ΰú?Ã6–:RóÁ*'S>ôÐ'±DÒŸE²õYk—½:Ò’¿¦—òåO‘^QÍtÀbb'.Ñq:ÒÓIº‡EPŽ[ó-»˜ÑåL„aP®vôÅe´{jË‘ý¡Ë<”áÇ­2"Çó?eý.¯ü@ÿj;éß©SsúêuZðqíŸ!Ž;t×Ñ—Ñî1U—"Ã/›õÄ“>8Æ#AÂôý¬> o7ûè_åÚx,ÑéɸïKú^¤ Ûw“%Œ–0VâÙâoÐè'Õ£ïç?yÆO®~½üʹWÜ¢zbÿŸ›§#uTý¡úÀ\Ω G_\F»ÇR_Žçûq€Žxˆ>ø›ï µR¿gçv© ¸h_Š@Õ}`üfV ,õP_Y%hù'7}qís%=î†->š’Å}âûÙárïãÞA™§þ4…S×—_ï/« ±épçU>­a[Ù£eêî–Ê2_eþÉÈácÓè™ü»Û§öéøvÒ¨X«`ä)h±§ ÿöCâkb´Œ©®¿¬¼Lxã»}ñô5'qa~Œ/­O{Y §Ž—,MD;$vZ2rÿT j èv\uô¥e<˜k‰—WÖÔÕ×Õ××Vß-£†Bé†0,‘Þ>4.HfzÚËú\Ç,Ô%'¦w€þc–è8\ï!=r/€pHÿ‚5÷©Š¯¨©7Z~µXÌõ5•edÞèe7× ÕÒò÷éaWù«œ긔O#µŸa³(«u:_à„[—çè Ëx0×–ß•ý\й¡¦ ç¿^†;g_‹ðmKý«Íº`Jü`¸<öûŽTýÑȹR:.ß{ÅQW”ñ ÑP]Ý`õ°pKMy)®öáQÿwn~2J–ýj4öõ?ªÀ9’ªSÞœ?DŒ€˜‘s8Žü”u¾P÷+íýì Œ–±444î“kï’¹8Ùí%…‹úZõ¾ìÖúBúOJ^gÁ‹qƒccKEr·šzFy0—öÎú/XõŸq˜šü¡ñ÷ï¨'~òwîÀ (>>¸2ÿ îj_ý;½˜Œ\nÞä'?³ -øp͇ŽK_ÿéiž=ÿ“Ñ2ÍýLбº ßsëòO?œ-¼x¥X€K«ÂE÷ï+‚ûêß}üb¼Îsº¹¯Ì¤=‰ç¡~’¹ãÔm¦~Fk°4T¢ àÊÁ¹qÃ?N÷õâ’Ÿfúk|ý´þ~BøøØíæGÌãoP~]j*õÐ+Øí¢þÔ¥­Þw£éMÁ¸o̵°äÿs¡"&¼òÊÖÁ!"ÁÁ~’þí5ûŒˆ|5Ï÷`pŒ+?0>Vî¿Î?­¦¡ 4wŒî 0vaV|XH0ü"¸Ÿ4ýfçz:ö:èF/`’çN›4þõY"œ±çæ}­ÇT%¥¾–F"µ‹;8"ë?$8@°@j…~ñ·YzŒ_ Wøä%©äAW3Çy´oHpÔI Ðö üË-¨qô•c< XꥒçgãCC H«Ñjí¬ÿÃÅ[½RNx2nd\ü3“_gßæ<ÿX¯ZÀÛ7üé¹x:}ç%æýJ`” PÖà}”øk#”úѯf ¦ãRf ëÓ[«íÑÿ‰’¦ •Ô/E@ès‹Ñ Ä{_–8úº1Ì•bÅ?sP“ʇۀ‡ô³·ÿQ©',ÕÍî‡õî:0²··ã==eÓÌþ0ÁR' .ÊÆú/è? Ôß®ãÿ"Ľ•Ótj#ý»v“éß ïØ©óçüéík¬õÅP Kýµ¢¢¢ÂÍOY‹^ì{ÁOw;þ`œiZù@þÞCg'%&î`Ë?CALW/}¼‘ÀjÛjùW©Ül¥¿Þƒ¦MO|}O±ÉÑ—Œña*õ*%ˆÞ`x¶AíéßVýÓoØôÄËso±ô—¡–Ú+‚ýùaY¤o#ÿƒ²ßÎö{î¡5T@"6ÃÔcg.Í\ý#k~1”£áÒ…sç·Æ=Ò3¨‰ÊA=;8·•ÿW9I€Õ&àÙ½›‡ð•fÐäÙÉ+3”ýja)0CÌwOóõ‘ÍóÇŒlBüÂÁ·“KÛé_åÒ¥sç.Ý<‰ø=Ü;¹¹ºvtëâ0j†(ÿÌm7LF#ó@ E0Þ:°ï³wnÖ¯˜Ö/X®|)pwunCý; ÿ3gW7wh}ººÁÖ³s§ðÉK3V®\ýÑq¾¾îËŠ`¼öñn‘];V'4a€úôäÿÿéÿ¿©¨xœí tSeÇÛ2€,VmÚBÙ’²(²ã *â‚#s…戀rEY†B“6[÷J¡¥ÍR6eqiYK‘e°*;4I—´Mò^ÞKâ|oI^¢%¯É÷kÚä8œóú¿÷ûßû-‰ˆ¸ÚtŒz Õ©-ûVdÜ›É))êÍǪN'êþù@/˜ ½Þ°iéÐþññqñ|¢m'Dþ)ß’ôèñH ï­®“W¨uùÇ­q¢¸7Ø7 xí'Œ@ý%%zƒ>Ú@?ýG?ú$8ú´¸s{ŸÿWÿϼ¢/mN€bž`ß9H(àµ}S²¥¨pó¦ÍE[6¯›<ØGÿý¢@ö$xðú ë_{+ÐA~¼Õ;Öçädgfffçæå¯zf?ûw“DˆDú$MÙ^VOˆ ä·ƒ])ÖijµZ£MÏý×s²þ¬ü»Jî®ÉÊ„­gídö'*rÀQ—ä¾±WdªY@¬œ–H@\t±É?b¨öG`„þ±_q¤ñ§g®7`Á¾‰V‹½è^Å‹åL*b:· ¶Üªþ©r@ñ3EéZN—ä>¹UÌ¥2´)³å@þ±]Ä'ÿˆá¹?’¹Ÿ(ì×ÙiZV«ÑeïrBöxÍþGŽÓüô¯Ö¥Ì/í&BùG ˽ì Ò?xÔÛœ®Õúdp´À …´*¼÷43hlµ5K¡ „ÑÖ»­V©¼9¨áÈù«Õ D4éË0é_ògõ¯;¶Ü…´ Hýcؽžk»´BòO™'>ýKÞPðä¨ÿ£ -yk!­Zÿ÷n' Ó¿rN°ÕHÛÙJ¡üÏÀÇ[ôÞBÄ× Ä5£0ïËÔÿÚ׃­ö@ÚÌM¹£þ+à @¸Cù‚{›ðœ/Ô>1öɳÁV»ÓÖÜIÿi§-}{!"ǃÙ»ç"Øþe–¿ò)>l± [èúyù¿oñû 7 # vo5€÷‡"ÜO°Pl± Ðs`áK“s® sÈé/*ð{ Çž÷¯"#@57*Øb`Àû:Fõé_›ûAÜbˆˆñò'ÜFwùû—Kt\ÊWñ‚ yF§`‹=È7t™¾Ÿ …­Ör!âÅCv?©ñÃ}—!à»<:ßû‘ºlrû`«=Ê’¼¦Ì¿F«+ƒíÿ0ÇK5ÿ)D‚7Ö8š¼VCš€õÏIoÉE¸öyá&ãÆô&*6ã'׃¼×ñáátOør]8gm*°osW~’|ø—¢›þm7&Ë`ÒoÐùg~¦ûSP Ëßð†hþctþÇ©QÇÎqè*¨ ·e{šùÌ—‹Ïþt\Vl2‹óš0@i„ãü>vAZ#^:ýã´ ¢š@·¾Ú±¿â!kŒþ°±‰ô¿æÕÇE—þ#:©JŒ 3…å_xÙŽ Íù¹›¹ÒZ¡‹_j€ú?jl3íÜ{ðbÀ!Þ†¯ÓAõKà'å;Oˆ°ûÓ~F¶Þh2é™@ã;lND`ÝŸƒ‡£„ÌÒ7œÎÿÔwœß­7o(ùîüÍz?º«LÂé_µò¥>bÜûÕki¡Ñ¨Ï׬SZ Õš•§ëÔå¿ìá<&1ðzxò'­½âêп6½øóCg¯ØXyxgr„ÝϺ¹Ã;[ì‚LÓlÒ-Ÿ?ãõ…©ö'éÍqkn‘g‚úd{†8<&1 ðpiǸ8Àðê£Û ú"Z­Ë)ÜQöKµ“’~m‡°üUMz¬íÝÅúÏYòÚèDyâ¸÷lò§^¤~0!qbyq.ßîxq”8&žúx™äÏ8:ÀÅ¥Ï †-Y”×É(Þúz-êùÕSw8½‰ôÿz¬øš?$ídO“Ç/ð٩Ѭ~ üÁòJ§oxÝ(qJ4@¡eþq&˜Fù]Uf0”l`6ùjóv¼X8.mõÙ÷ÅÁÊ÷‡v_ó‡¢ç 9Ř÷’5\öפ.Þœt!ÏÅrÑz'å8¡ }¼7%vî‹îùßvj«¡dsWì¦mùâì…ý¾îŸ‘Êò)]‚-ó¦h#•Ñú—~kµŠ©€5š_L$Þ;Æ‹H6B½nB“ PhC”¾¬îq~ @¾B®4êKrµ¼6gF~¡À¡'€Ô•Ó{ŠpåIdûxVÿò‘“ßMeôŸ2oùÖQ*ÿ%¯ÜàýéƒBá9題³ÛqfÖ—™úåZ ^[±SoØ,tʉöW'Í’ŠUþ’‡È9G¿ò>Uh–½D•G©c¡IËï¦äO^9áÙ¸¡ŒÇQ׈ÓkþÙ¢—~"ry¯ÑPœ¥ ”»?kç&ˆÕûý·í/çÀˆ1SÞ&ÆÍ?ž"®eÃw×Ðü@Ù±þ'´qÛkëQŒ/}v}YsÌd04Ñïᑲh¨O½¢‰”HâdrŸ>zÊü$Õâɉäå¨oœŒäæÚÿÇ‹ÔÖ8øÝ:ýs3aȽÖ­@æçozQ.Õ!Ø*o‰DÒwˆÜác§¾ýâH"ûËåãÑæ‡)ƒé@pÁöghƒÖV;è™/:û3ÀÌ4^(5èóÓ5¤Þ…Ý*uõÜQ]Äë~ýG%øë_.1þIj0?Šþ\0„7€+˜þCWņb¸¯óa—ÂW.Û‘R}Q® Ì[ù¦R~2s˜è>ì‹Ð‡8Zô¬â¢…6œÔ@@NÀôâ`6K5гŸ€\Öý¥úMY‚G’$/5®—8—=Ðý·‘ÊžaغïmT»‡R?Ýûî?äqÛ«­lÓ“ëûð£Áõó¾ÒâüŒ&ü«‹§ÔG„«ž9ˆÏàî.`€Ø~hú¾S×mv6ûÓú‡é?äñ¢u–Z®ñÏ9þfHçÙ½¦¢õºTAë¿vÁóO$ÄÆtmï?‚һLJ6¥ÿaS7˜¶}öŠ¥ÁN»ª€s_¡^o©vr]ŸìφEmÅSaú¿«_•rÕ¼ICãc¥Ò^"nÿú—<ß”þG,)2™ŒŸ~uüâµjS;ð3âãÆbsq;™¹^@ëàN~^’:?)@þÉKÿ>z€Ó·[°E~Hý·ïÐ¥íÏ„MF céŽÿ €1Eß>-•|ñCuèIò‡Såq¬úcbzˆ¹ÿÉè¿m—¹ß ذW2èäo2î:Ñ@HßEF@°-…Çn!zÉ'{¯ &¯O½%•ÆuI2ÐjÒ¢geœü¥ÒQÛº–HÚE ‘ñõ/“?¿Zo¢ª_㶃×PÚþ€¯`ÿV  /Zk©uòÖ=`\åˬ\øÔºýŸ|mYŠJ±|ΤA|ù‹ÜþõBê_FËÂâ"ZýÆÒ=gêÉâ— èÂÕâä΄È[z-³?z¸ٟ¬XðòSbùò—F‰yù[k€$’öÝrù_6b†²°?„úôÐMÒûƒb«Üßëß°ÁUg©qpg?³ nS$†»ªwÉ€ÐcýñoÓ'%ö§\L å~zˆôØ–H6ÚEÅq !^X¢ÊÈߢ'Šßí.ÙQÊü7\=jZ¶ÿãšp@ÜÌêΡֲg ­Ç9| ë}(ý÷ì âÅÿ¬þAÜ'&¾“¤LÕf匥ûÎÕQ…¯«ö‡ÿh2OÀ¿áf³Xl·÷‹ëþÓ¡€4T›O.zóõ>Ò>Dî~"ø€DÒáÑhò4 ‘³V(JeŠ.¯Ð`¢¾ †øO[ÆkŸòÌms_ì'oýŸ_ñ/ƒsŸüÈ‘~튯¾ø×÷ÿ7mæ  …²Ý+gEpÄçÁÑŸ;Ç”Xþ°6×Þ®¸Q\T\ZZ^UwÏj¯×Kðh˜k+‹ŒY×Ó¯&¥þ–œ’y=ÓÈVä¥H\g h¢™ ~(ÏÒ½;j°œû‚ÿïíjoæ>¨»¿óÆ¥ó¦Œîã7~ÖbÞŽU[xÈR@¶†"š÷ý€þüè`JµénEq˲F#Ëæ²%7ëÌö{Ń­ñ÷ÒœôäDHošIHÐ_I½’ò=çi8ææ‚ä‚ªª ÃÁù£[x=Cþ;©Ü¿üDÓ³-¯æÔn£>Y¾nãþ"‘ÿfÌ›7žÛ'’òŸÚ}.ÿVÏ~‘ÿÜ)¿´–ˆ ÅÁÖXœqE/¥7¡Ø‘ü=³?p"ç:­¬ÌýFó@úpWÛ›¹Omú÷pw}ƒ,ß–\[[wëFaÙ­ÊŠšÚ;&“¥±0.’˜/ü)<úRN¾À{éã²ÙÞo› ¬ù)z%8i7<”ñ_øì²¢KÁÓ†<ˆþ»¶qŒð—›Ú9ã·ý'~¸2:=55þDtÌÅÓ§._MÈd * 1á”Vâ¿(þu»ǧsnßøoFÅ5ö~ÝrØšŠ`uWâ¾$úi¨þA„Áâüf šåÿÒ}þß×w`÷ç;÷ÿP¨Ü^˜¶hͶ½á¼Â¡•¹'â`̱Ý"óÁcJ·çDŠ$z$#îØÂjRV,·“èè¡ãÇ]IõCï,"étðlÿè¡-ùïãÙÍAéïÔÁ~H¨äâ)(v$KÐ Á´»c¯fñÄôfî6·‚T…•…Æ\=Ìk¢/0ÅXò_|¿a¦Fã¯yyrüüÉ»¯»Z¥rHpÑ,Ý*R\+»B¦_§‹ˆÜ¾kWxx¸N§£tÇÓ õòãF‰€•kuR÷4ˆx‘؇r¦úìê×5<†Ëoï¶*•cò¿Í˜_DO/²ŸOäþ£ÇÇЩiç/¦ÄŽ=upß¾Ýg2’ëMh ^þ+ Í%‰ LiB…ƒW¼h\ýcFÁ[$𠮀†ôsU99&ÿû|JI>_tüÜXw –IÉÌæ½}ŽÁh0ä\Ï̼¤%ñÏBH:(¯‚””s%JuÒ êE–€âb,$ ~Èë…ƒGútRI°7]Ÿ8܃¶ìÂ_œt{NÒéYïAzGôú†£D}x5‚qnI­½_9†æÒ$HhɯcYJÓBÂéìÒ±#¥`øèÝÕNNŽIç~‹Ã ê/Q±©ÙPæiòýÒHJþc"€…ÆüD˜ð„%/áDQ0žýöÿÃdÑÿkÄ$è‘cF¾Ð–§Š#Òߩë?‹ªˆÝÞsØägä—œ> ‰ä–‘˜‚ÐT¨‡E^`Å0<ä7ÒÿœZ=Mòÿš1#üå?ª«H|¤¿“ÛØ0˜êÄOäé4\ÙHÁ®4f1'Á î @90WàâÓ8pÀRAx€aŽ.žø¯5bäh͘~nŽH| ¶Cÿ/|¢õÙ°¶¼< 9&zÐ< ZF^9éUlw.ã,§Ñ\€Ä>ÒC4þ1ÿ ôwã¯ãéÈôwê2s3…WyÃcÒŒ Í#Ëö±/¥@åE`>ZG&å >×õ¨Ø‹ø‹~œÿÇþ;eœa´—CÓߩˬmRöSäÿ>:Ë]>Þã&ç?Þ!N¹å&bŠAs¡<µƒÀˆÿXzõ@G~õÖäqc¡ònïÐôwjÿj˜D}1ÿs É ’ºyYòßµøüZ¢€Ë-(u`×3¦€`çjçð3¦¿1~, G{ô)CíµU øÏ_÷%½#E½FÜZ‹âbîTAšà”ƒúË0FÜÆ`Åa†Žû<((hjà+BÈ×ÃÞü|êè¾|§Xø‹‡.@lÛBâ·¨`3ƒtŸÏÞ/¢9[ÑžÁŠˆñ84ÉÅoøãÐôÀ¿qáïîŽ-~xtz7 xÞŽ%@bŸ…`½<ï óŸ’!äÖ¤˜Ë®è1?ê‹Àø:&î‡w§óüŸþšfôÐ޲Üëp†8j©ƒWAg3Jx‚~g0@Ò³0þå”6þ+Öº¬ØÓÉ€& °ÓƒÊ_ŒÌHè£+Þ™>}êë'ø èÒ èï¤ò¥ û)*RewŒ2;b `<*5Ùû¥ Xo&ë1†Cœ?\õÎ`ßFôf —“óŸÇA îµ&d?y8|щ ˆ@ÞFl>á¿’`b±^¨udšF J ©Ï=f•ïãÀÍÑ-u"·Pÿƒ<Ý ;@ÁRáAn9á¿¢PuUVÿ¢‘×ily°ŠÓ»µßÏÁ¥ë°÷ƒCaú‡¢¢“ݱâ~›¢a7Ü[$ÿ©(4¦12á-‡ƒDøüÌgýZƒè‡P¹õöÔ,Ø꿜슇ý(û¢ÚHÒ€ð_a°ÞHÓƒ%¨ãk‹í`Ì}¾ê ;\=&T.níûLüv;ZýBÅ^G%-8`U`ló(‹øK^ Iÿ( MÅÉ(û#¯3 $@ìÑЕËV.Y¾ÞßÍÞŒ|æP¹v›³¶ÿk©#W ˜»G–€2=í‘bóÈx…Áv';Ö€i¨rÐÒ/Á(.ÛøÙ›š!ƒ¼¼_8¼½½Ùh¨¼—k¡P{ã2QY 5ýÃdÊü áͤ¸‰ð_a0ÝÊÄWù¶tûÂçBä{£{¶.Ñs\ç¬ývE½ŒÔ½,èea^5@Ã08·œ,W,e)x¸ÿšÕªÞ£ÿû?‚%ÀZíî3PçËÛ~`3Þ!I üÛÄý+u…ix”‹u€Jqfm[{“OPû÷iû­V$S÷Xñ ª7á® žð_y°Ô$È6;JtüxÏÞÜSºM^¹¬ vŸ®*Ì룄(²î("ÝŸJ„õnV¾ ª{‰üß5ÞÞÔSܧn}pÚð#×eínhµ#–ôd±éC^Éþ+¶úô$þ±Èÿ¨iöfžBàù÷õÒ:H­6òlX׈QKÿHáAÁm{¿h‚ÃTž™K` ýnƒ¾®½‰§¸úd'ØæŸŠº˜ûz`Ó³Lî´¬~• • ëT=ƒ§ý±˜Ž]moâ)®ÃB@¥;ššƒõú P‰4à¾Î¯"ÙOå‚ÿ1Ôã†Ô?wºDµÊ’× jÓ?8LZF…ÊhQF“Öøä[B~LÁ°–¤%ÈZÝPS4sìc’ÿ—à6û;@Pø…ôTåe±,<£‘Æü›¤÷Y©°™ªî”¦Ê÷z@›2q;º¡î+mð [ ñ }“LJû!àǾ£²Q‡3Ì~‚> ¬#Že nõ¯XX«uaa;©gâñ20\I_:ÜÃÞ´S:¿ü«¸F~(!‰Ìý#þKGn©ý*ÖêÚа0jßÉ øö'p! C/èMÀ‹3Wls ZÝ þ×î0ª£¥_Ø&ÜÃÂÛDý+ÖÚË:ŽÿaÔžcd;aÁ€ŽÔ«5­ø}$œ{½±BÚ Euê²ës†U`ycqÿʆ­)%<4”³í®è“q°­†¤éþ.ÎŒVu×)k¶K?…y2®öÂu.†ŒÆü߉ûW2î%êxú‡…íXÿí/ÎÑ(ZávŽmå p¨zM_¶YÚ "êô5jô„Ÿ°(à.7‰ûW2šÏRÿCC·¯ý4ðí¯6+æê¬ØÐùsÞžõÖÜçM ?~ü„9K6í9WÐq+½‰ü‡pnïÁ¡ËÌ•[ÂÄß;šžƒ—z˜1ð†PPG¶}P,Ì…{ÿ91 %&}´24&þ’HÿKGf„ÊE࿇ÇÐyßmBO]ÍÆ6>ÇZà„A% ~ [ÉO“íÇa£‰o/ÚsA°€¸M]íM:Å@¥V9KüïÜsø¼`AE¡3`Îø~ òɦçÊEæ)8ÿE 7Ž¿N\¶õðEš‰ HÔ•Z­þߣs—ž/}°rs(¥ˆ¾˜yߢ䑾g#ùxÌùãþ_A3Þ[urç B <ýÕÀÿóèÚoÄkŸ®æ,`ç„–Eª¬ fKHòG¹Hþgý}xÅkÀ´…óIíBà¿â¿Gçn½¼^7Âg Ï„¥§³ñípEÈ«2þ+Ì-/7†Wû´qïãÕª¶{~4„ Àµ£÷n.œ‡pí;i9“eüÝnqÅLŠ_ŠEú¢‡;Þ|:8©IåƒDöwtîAåê9;J-í|n4æW6Y,VbJEÕª‡R_8 ílW¶)*ê6í\ÛrhçÖ¡£;þS ªvm>{9íüPx×d6[“ÿ6’(zÖ0ig>œýþý]íGµâÿnÌN‡xœí \TUûÇQRÔLsA-M-Í0óÕì5{_K+m5ÓMsyÿ©™I®)š’ –‚Î03,Š àŽûξϽ & «,3÷ÎÒÿlwf`û .wF>|bø>Ïù=ç<çL«V––@ÐJÐßµncݶú?öõÜêsèøåäÔ4¨ôTZ©R©Ôšê#­F­­×7ò2Ÿ®zŽq©]ƒ;Y°¦,«Ùë¼6íü3âêíÀòõÅjõáà¯ÖðÐÈ*ð™X;þÎ/µ}ä_œW5}ð?//¯_·†^ŒKN¾r4IõH®µþz /3ªHäZ;ÿ£{´¶4OMMo.ô‚úu{À± WÂwû\ªTÕcÐj4þz /³J²ll­üÛ½`iœšœºÍAü{­ß¸ý ÐwÓ¶l•Zý(cƒðW£ ~¥/3©ärкQ`\ŒÖ·¥qjrêù à‚6{ýºû{]´>P*Ä??4¢4ñÿ½k'°ïÌ}e×·¥aj‚èî¥ ¨íQù,b»V®‘õAìÃoã ¥-<îçëë³jº@p²ïgei”š¤tþýç嵯3Vµr­Aì“üÏ—À+Åù¿ü€þøiüœù¹ìï2”wþ''OÃô¿þ®“þ,†É”¶&þZ5Iüð+¾ã €Æ’¶üvŸ/àß÷5ïU·ÿouX¤&ª ˽ôZï9uÜØé²2œßk&v<ç©Öåu}fŠx™MjyÈ`|A ìù¿ß1Àÿínü¼çãI0óg=þkç}ðŽ³Ë»~¹Œ Â]=³ã)OÎû\€ `>ElVdÂŽ>«>~ÇÉqØ }ôí÷ZÞû?¦l<ôɹëû.ÎÎÎ.3£ŠUÈÝ€­åfüuø«¹ ¿Ð(Ržùk¿ 8øú¬™ðR—ŽíŸ³ngý\{~âçqÕmÁz®üuŸ6â€Ýƒ×q¦<1ð\àQ± ð*µ%ÉhRçŸ øûùlX:×Õ}ã®õm­yÓóÄêÿÙÿ0ÿ«æ~0Ö™èÛ+•qâ€H³ƒŠËÿ8PÀ0J%£d˜úVÁÚ4-d´Ð03þªLî¹?Aòßã9c¢ã›ƒ†þkª#ßéfY½=î›Õ`X·Üuâçob0jÝ*°¯w©8×O®è9òð¯7ÿM )™µŠ…¥+“Óhõ–º8!JxäˆôÔ…ÈC~¾{W»9öïcÛ¨ßèf ž·wžìñÓúµK>ç¢Ãÿýߢ䕘 Ÿä|Žáš„½‘V±,ûdH4i*îR9¹y…¥Š'ømÙÔ?<þãâäô¯©³¿]¸jóâñýü@xïcµ0ÊÙåãïVÌŸª§ßy¬gpÔí%žæÄU¯n²S­Ò ðe%ðÿõÎè,TK´Šš’SÙ÷ ÊõyªK“¸f(¾w¿Ác¦ ëo{ÀK;~¾ÿÉ%èèyÿè³÷œ ôÞá²S‰Å¬Îäã…^]€Ÿw, ?Óüµ,ÓBZ&´U4 @NÑôßÅJƒ_X£bUUJVU}zÍÔÏÈß< §l{Â`èø·áóÿ“˪ëHŒ¼“žþ‘C$‘2YlV%¦œës#†ß`í‹Eîà߀t®a[†û¿i…^³ É Õ0Ue…ggeå:#mI™ÊøGhc>éÑÓHø©N<ÿO.õ[£üN\€Ï‘ƒŸïòdôVÅEYéÒ#Ë*±ùoÈèn¼¨Ü\¥z@Ó~ }‚!€Í#LÙÝÔ„øøø ÄŒì2î¥ÓܼUdü¨¿c‚¬ù)3HÐÕÞ‰ðO²ÿ ›VVkCÀpòN —ÿI«§~æ~À™ˆÃÌ|K¡:wÿ@…®wKX SüwfR‚?*!%B¯UÕɬWßêÐcûƒc‚Ÿÿ1‹zÙò?j 5Š ‡ÿ ʹT—¾¸/ø‚*߆âßrø×VÉþ ¢ïç%AòððŸ@—cê+n…/6zqÖÙ½žçsHðŠ£Þÿ;õƒ/ª`üaYdd¤ìÔ…ZÏ?Wô’q¥ÿ†yŸ%u)­«år}Ö@b"‰„¬R\Ü•=w¯æÙýFMômu»[[æ¡¶}í9þímQN¼ê/ “IUr¾§ºýQãìÏð?µŠ-Ô£€äãBXž‘˜Ÿ˜œ’š––ž.©É ñ)w+Ð÷WeF ÏäVÿнµúÿž=_àYÔ¶×pœý‡wǯ¨`Hæ_væo¥š[ê"¶U,ª{0íÙ⤭̥` ÿ#'u%OOÉÈÈB%EeQYòÌôÔ´\5SUY^”+Px¾Ø°(ß6¶þ{ð{}Í£¶}ì þúG)x…äÿȨKŒZïü9aüùä_»´lI6 Ý¿»Ä?…Fx§‹ ð Y)§ü¾}ÛöÞ¶Ý(Ó5j n„yO©•~`„^àyôFÓͨ ùGBˆº™¯ ¶ŸóA¨çi1Óø'ÕÃû€qˆ;âœÂ€ž"ÏQxO¥ÅnYäá±`á¢ÅKVy_+!#€ún¨Ÿï×ÚÓÏž/ò€™dÝkØ .º-‚ÑEbÉd'ãH'œAÀ2UÊøä_—9v]àYPp¥Ç½?EÉÓb¶,vGòX¼9¦µ29‡×,ß´Ç}`üwæ sÉúÅŽú­'"ö%@F¹ÞùÀ;@aúõÄbËölKû0—ÆŸ(àÅ…ò>ˆ{›!9)Û@ÀÝý—Ó%pò(ÉoÙ÷e[½¦ôª¾îéÈêkÆò/»–ǰº@òWÒwN…‡Ýf- Ù³+âi| °p0{Ä¿û" $ùуðï±åRYuz×x¿rëoÕŠwžÿ§£¶?‡ùPÈN&—(Y®HÅ”æÄ]ˆ>v4 ª°%41?ž˜ÂÚtØb€’ãQ92@Ø¡Úàò6ݰh×¹+ëðý‚+§ô©ÿ®Ûò= OA‚{c÷K`™,6£Œa‰ÿ©*H‰‘>|,©ÊÒ˜=«R?¼GéæwpÐ#MÖ„qÐØ WÌý–ÀÒ ›–¹ÏÇ÷ —Î{Ûy[ƒû;´ã—€Ÿ‚¬ú‹‰ýÁ#@ôÕœJlØòœ›§"O„ …âsùÆì™Uy^¶.ñ£ÜOÐŽ’>È”úÆ«ëgÌpû…€Çw Ý9þ=.ü´–àÅN66ÏñÈü²ù"å}ä~`$œN(a bŠÓ.Æœ8&>"–J¤Òè,»¼þѪópß',oÉéÒßE1œÿámúï::OúrÎ<ýüysf»¹Íšõõ\KV;öî[j¬„uïÜÁï€Ì-A÷]ÇQå«ûˆ¾H)€ªî_–E„‰%R‰$ìBC€–1cÊ–ä ¬.ÇË^(¸õ/t‡["ЪòBr»>°·³s÷ÉœoçÍþt¢Ëh‡Qã>ž5ß}ÉFÏÁ5æ€P$téðoßžŸ5·Ú¼Jì?`pòvAY~úíÓ2Ùñ`ÿ}Á$id:WÃ-Â-îGKS|—Lù#Ôò8ëã;9±Bp%€tGÃ`ÈÍ´ƒrœ0u’ˆ»àÓþÝéó—þî;íCðÑ—/ÂìocÃWfW§¥Âl|Ð0 Ó·ã@Ù œà>J`„_-ÁÐ+²¯E…g)FË8%Nóð^6gkÈö/ SO†ZÎÕ¿d{ 1æßÎÞÞÞN¯q_ü°çÀŽñ5¶ÀÝ/­­ÛCÿciZšÚZüÑÏÁ'"¹Q'£Á×c"ÿ];÷Š$‘P òȉtPhÓ¯]<Þ¼ÅkŽÔ†¶%,kUå9·ë‹Ö÷ÿs[äœ%BîGg„àÍ¡ÏìŒåðþÒýlt¨á€º=ßÕÐÊšOÿfW·iÛV}ò£PÏ?©„##CþÚ³Ó{§oàÆÕË—-_ñÓÖ=!·ËÕrÑOî³\Üf-Ȫ MK8'ZUvŸ¦õü£Z–ºè9® ­?4i†@Q¡s °¡»;?Àÿàþ•ÕüÿKýpÙ+ð对5pånïe®¿p+À2²È ¿Ý;¼½wî\6ïëY³fÍžóí‚e[££¶/šíJä¶PXR+ZÓÇ©7/1…Ùh¯ ;ÍexÝFxJn°.Fs3 à6S<ÛDú·³{g®@@ÀÞ•c fAûºLåÏ~{Zêh?{ò°S½ÃH 4Æ?"4Àg§··÷ö ž³8Þ]gÎ]þÃ\7Wýã•1µ‘¡U?á9hMAê¢Ìt9š÷Ä->ršc_ß!']Ðx}€ð¡ïG&ù5ãÀAÿƒþûÖüg Wÿö½Ðsˆ¥1i¾²~é…6múÌö?!ã P䉰£vzo\0yÌ»Sôø£œ_íѿښ‚ÔŒ’mîük‹3’R—áÚz –|‰ççÒ?|ÈÍþ“:!ysuð‰²ÿ(à úyÍÕ¯›ùË÷<ÿOW­û/ôSàü Ø¿cùÔ×`ÿCÿ)kÖÎèni@š½†,þSrhÿ~Ÿ£â#;~ñÙ¶ò³Á[·jeû¾ ìõòJ7Ɇî˜iÖH]L¥eÜ<{3Ò­u¡d]>¸Ý/¤)‚“5‚î3mìœgîñ €!àï¿Û׎/Û¾_¶ÂÛÏð|о¥ã_çûÍ¿¸ÚZšŽ 6ð“‚¶í;÷·#[M{L0výÈáçVœ2…t?JE~Á£VÈš¨´LQÆ9±H( ¿ÅÁŽýžö‘“'i®%N÷udÏË7í?4³ý# èkÐ+‡ö‘ûú= òY1}ɯ²$-Z]] ™w­Y¬8i‚dþ…qŠFG³1¤©¸{C&Bú…°«ÜÖ^ʰà%¹Ÿ¦HËiΈõ™é |GNv¼{cð«_ôú›Cᣡ¯÷"ÈÆeÉ0ìÿm‘çê_7,ßÁÒ´Xu²«ÆÍú×+Å,|ƒ˜¢¸“7ŠÍFª8éT„_B@rV×ÙÛ~ô  dI˜–sÝt¢ì»±öp¦å|{»·ûwnׯªMÛ]û ~cè[/ë÷w ^÷زeûon‡N[´tJKвe=È4ù„ã–h`þû) ¹TØøt>mi˜¿cÅ"’ýÁ§ôlÍ-{Áu]¹nÓ9 +3-91!19%-#3éÀÔ‘3vCûè»ù[wêÝÅð-£]§|u•¿³÷ñ¯E‡=LŠ ‘Äæ5· ­¦èN2þø„@x*wèmÐû¬[K»ê»éǵ›v»òû$ƒŽ0ô«ë=LÛ÷ík#¢ßófAÙN¯ƒÿùFˆhT,£(K‹•JeOèS•¶*é¤T$•/¾ˆO$Ѥ¿oà6½àó¯nœîä ¿½ƒƒÓ'ûj+]#^®ó…·jËïõzÔÉQg~ô.ˆ,†¹mJ0BDÅ(¥i1!R©$:³ymcscÃŨêÅ€îB®áý¼Ù×…àh|œl®“£.ã;ØÛUãøKu¾ð‚Ö|¯Û3 Ö=>7QàÇsük.ÿB÷£(M?*‘HÄ’Íj´*=JÂq캕Æfp žƒÀ­m£ ®Í¿~ùŸ×³!'®Ø5²?ßG(k,ñBó_ñ—J¤bé ËúT¤yp!˜$}!¶?Hâ97ÕÃmÀ `rJ~tªaks þíðÇ6YõüÔhúç+d€fíLbØj»\´ÿŒ30ûK%Á¢³Ï¡ÞLIÉ8ӯ؟HÁ+¼\àYO8d¼_'ÿ¯ÚXúoË«²¶ûܸò…üQZãÍÀÔ,Èþ`þ¥QP¤Ü,-pæßH©U)*zš“F&}HB ìf&w²-Íuùඇô}ïš ^¯í-ý§åU žÿðK“³?ÞIÊêÇ¢kX¦,í 2?R©øhPXbC;àT¬1ëæÇ_ÃV>,}ØÀÿ7ÍÝlùIñË ’séÜ!Ï4>ú¯õRòÌ㘯Æ?ޞfªüýîx>âŸaIhUÌôӡè¬þŠo0 BLË”™xóôšükžôÝ´µÊòÒ’’E§™ÎýpÉ^ƒe)rn‡9š4ÊCÝêä¿?¿®Õ4ÔñÝ5æ?Áç7›OQ%Jøž`ä=ñ4ÿôÓaø°‰X(½ûèýC '«†~ªê ãæC¦@˜öÝ1@s :ÅÿÐÄkhSÃ!ùÁuê?¡ € H”ö‚Å Ê+É’àÄ[O ˆõòfRE}êÍÂÂ#"#£¢å1òÄä”siiýÓÎ$@²ƒ E}x€,@¡¼þ´êèÿúq±‚¢?4ƒü;¯êÿÛϳCE„ûBx„,@(ŽÏ¾VT XO€ŽŠ´Ñ곞tkíèèd×ЕCýÁ7ë8XÀÂ)vôÐÂ’4¹‰aôÊ$Á€ûAÀÄ%4ÁžEügëÆõë6l=Rø’Í~]v ôùa‘1rŠÙrÀsel\|\♤´ôä¸XH}l€úd(P¤ßxö&ô¯zz§Qš8*¼Wÿwx]ž$”Aò‹ Ð>"UM9þb-åò‹ ýáX@ ×4ë‡÷ÅŒïͦO{c#£Ææ ýL9¼xMœ?œ4uºÿ ìç¥ÈÙKÃãað !Å}ŠüG÷ïܺõpÌ¥»Ï)ê=J;¸10ÀŸBÀú_Î?a8uõ\ ¥|¤¡‘r¹ó]›‡>¹ƒ¥Ü'd=xþ¿¬(¤¹í@£É/*¯ÿð*/­‚¨ *½2 ~  DYÕ,‘Ï`Äzý! )øDù ýH9¼Œ›õùdÐÈ@™”M©4,TF|?°qþ§öoþa]`àÚŸ¶Dg] ß¶ÆŸ `O!’E¯+‹ÒcÃÁ/‡FËif#úc‡¯$ÎÞA×Ñ¿’\úô¯ª,Ö ç|?Dö·úk¨’h†ù$ €È/RÒ¿¨Ê~jí@{575J²Ý{pŸjènÃQÿŸž¥u³~KÉÕe„ó2)ëP ø¿w#!üšµ?î:ð#ðý«ýý×**(:¾ª¼ÙOyVl« Ñ®‚»Øí+q€MÚÆÞzýþ¿Ðÿ³D%Öû=ž§†bÝ/DÒ‡6Ùé|àù!ía\T|5ûlluûð´†ôïíÒ¤¡Ÿ$‡? Ón³wŠ¥ˆýDòãd¸„äϯ›ü«âÿª¥óçýk^@hÉë§wsÏDäT!ÇN_ÁxxæPIô˰)¾Aðä†%ð€²@êüâû/ê7T=/Láø—ÄÑ´`€ü§ü¿V›wV&¡nE¥þ:}>ûûtµà5ôCäðçÑ´ÝGGÅR3úG ä%þ÷|_þ”,›?ÓÛs²§×¢ƒ)Y)Ña@ùñE“š0[Ï”4÷iÁCCÞÃzÓÿõýB5dèèºîåÿúïU/Ÿ>,½E+ þb$¿R„ô?Ø^Í;&†¢¼qlz_}þ;7ô#äð_Á¸Ï¢Vˆu þo_Ks~õêU«ÐáŠÅ³¼<'Cøøí‘J1ÿÃåJ${ øÏø|ÆðM¼9_^oþ¿(-`ŸÍÿüë/þè·«^=¯|p_Wt6ç}˜ô?2†ÐŒ+Zâþ5™§#%"‹S²rãVôÓãgÎýÿÃѤó˜eÿKp @Jj_tô+ØŒäÏêåK-ô]àûíÒeËW-Ÿï3™†÷·û¤ êøÁ¦4“ëQ(X10+5D—ÂÊ”’zóÿY ùÚÀIþµ²çuK ª—O=¸_WVœ,aá/¢Ó puñþûÏìÛµ÷°ÝЏ”sñØ´>½z3ùO7[.øýç£qkõ»NÈ$Øù£Â/Œ~ û‰ø¿êÛ¹3¦zyzzyû̘ë;gÊd¦¡óò_AÓŸ‰}™s|“T¿H–lnÔ7{Sõ°˜ñù´dеҧuÔ’«^ç¡Ë–™è—ŒÔ^zZʾ©‡¿éòÁ(¿Ç)C‘¦\ÎVúÜ£§íÕɨ¡Ÿ‡¿|ç v “0˜’?€­þŒÃŸ4Ùž¾‡Ð •E)”ĵ+t²‡ÎÕƒ –™Äkë#Ý^–âÔ伆΀¢+×î>ª5 ôúåÓGóÿo]’‹Hà 5IˆŠ#/]Ó^ÉZÚ~8͇w H¢¸“±oR¯îÝ»÷tswëøßƒ«ú¾+0²h7Ëoס"Ýüå5ü²ŽâÿòÕXÏÂì-HýHC£‰ög¥üiƒ  Ïè"º¦LºfØMQ*oå«5´äW35`|­ ¸¬æ4‘>ååe:îVfÍy!C¡Pr:7;=d ]Ôu·Y”’s9tÁ î=\]:ôèÕ§—+çþß!ð]GÎÚ!–’@@ J¿Áþ ”û_Ìb{uKðY“Ÿ8ýC Ãy:ò%æ@·ÿ1"õz= ¯Ê ‘ÇGªGMJD f í“×Õ- êùCàöËnjr.fÞ)ו¥‰„ÕbpE-õua>“kÒ²Ö~Ô [ ¾‘M»¹¦·w Gl“àÕ¾(8¶Ùߥ/ÃúIÕùïµX T¿˜èǽì´môø@_oÞJWG§Öý¿‰º—- ÙµåûÀ_BH (Î ÍnaðÙpbÿÝG›eÈúa0¤>Ðÿ‚ã[Øú’~ª`ÞK ý)“*}Kí°5ÛÀÁù{õÓ?:m>žóB'?Ù}p ÿ5šëežÑFõºf}}ØÂ‘À¹óç;rv=¢Ÿ[÷îîC¼~ &IP°õ°lè‡Áámƒ÷Ù6ÀVþ¤€û~X½¤.÷?yz Tÿ0¤×ÔCy™ô»%ˆiV(rÔËÿ¿¼S a4=ŒðÑЃ_/½ÿàñóWЮ^SêÈŸu8µî=æ×–-œ€1t´ôÓ2Þ´¡Ÿ‡· ‡ÅG1ÿ(zdkÀ2ïºø?kÿ€ÿQ†üg<<+"À?ìÙêÕÿPõ@K\½šÅu5#‚° PÛÂ’ò Ýý‡•Ï^Vý^õåýË–¶DÔw &@9:¹ž@Þøÿq& ý48¼m ÙŒY/@©Ï ´=µƒßœê¬g°àCIÈMJ`L»Óô¯dìÔbÓn<«Çðò&ÓùÉÁŒ Ð¥0 Å÷***tº+Ÿ¿zZ~(dù89ÖŽO!=§>åôþ{‡O·œDNŸ+¡ã¿Ô,€¼–…`úK@À€¦;±&.f¢ct›šwûÑ@ÕÃ+*ÆÍÓ]Dö3f@í¯Ü,ÕþSðè hz Ü¿N<ª.þ·ýî$áÿÉÿß;ô\zP@³%Ðþð~5 Ÿñÿ”ª•ÿ¬t(kŽ ¾—z>ûúV€_ÝѨX•_Ö‹.Ó‰QíÝr®þܽ?Åÿ“Ÿ8ÕnŽóŽlhÐgúipxÛ°þä‡4å—„ÀðìÔþõ‹ç{Õªþõ3L¢ ðZÒ³=;* êŸÝ ‘x6=#ûfeݸª* Ujzɦš "aAþÒŠ b ãG‡ü¿çôøïµëQÈØ¦ ý48¼uØ~¹‰IôÔÑm GZ:ó–ø×kùQ)îëþD‘|ö²èÏ H*T% :!R¦¦g\*ÒÕ­þKÔ*Ìo [1E`bjýò# ¤+¿sãžî¾îøGÕ> ŸoE qÔ0‘˾‡p™}—½P$LÙá÷Ek~³± §Öâÿgü ’`ùº " g¼èï”L<Oäá§lð[°tëÉèÔÌKW½¬=¨ªÌÏËS3Z‡©}iÈ\Hz^@þ² èþuå™ ýFÅýCÃj¢=}aÊ>²*Šh†CC? o¦Ã‚YlÔö€ß˜v&ñmfÎ4 P'„ç¢=XþH ÿà ÿ•,µOÊŠÈPð/e‘1à4J´cžõN“&û¬ 9“‘q©Žöýç%š<ùYIO\`×î!¿_càŠ¢}ƒ†.>–[š4Ñ©îÓ˜÷+ž ,-éØÐÏ‚C õì#$ñIÙÀ‰Ã{ÇÚ£>0ž³Ït¯šÔÿŒÁRL}ôФkÀ¬þg¦éS¼ïûï-Zâ¿C ß÷­ç$ÊŽ¦¥gäÜz\Kðú¡V¥¢=«¸Æ\On¨U*V”Ëêx`ä ®ãØ…¿gç·573·°²²±ïЮVñãèØÑýƒÁ£çü›@“¹•}ÞGð,: öðÿ5èä¾U£ìŒõ| ¿Ù ó¡)LÙx’ ~É,°ÈÃ/é|Û4©:<0ÿ=¼W¤gdddf© oé Û÷¥+TåiòÙmÏäXÃhðZˆDù÷Ÿèfi`I Øë³US÷>}úöû`à˜­¿ …ìù/Þð›XÚ»-\þU7sÃÕ øÍú{ÈŸ‡ÅxîÉÿP¡-œÉê£÷ ñJ €¦SþÿR.忝ß7˜Ãõì®:k5™ôHK ™ Îòµ¿U`笠h÷p;3+ëfö,ÎëÂNÀ¬Þž­Ì-Z~±|û‰À^ òñsø; ±SKÛÆ¾MoFzÀÌÝ! íùq,•FÄÐ5.’ç„ã\0³ÿ?iÒ7gÓ32³óÔW¯ß)Ì4ð¿Ö]Uå©ó™þ6Zð0Ø2´w+ˆü¡Üÿ=ñ8gsÌ k›æµªg·>}zwulÂkijî0bÑú/¸ ð{Œš£?¾µûx¶ûß(HˆòGÞ}ùE„œîwÖ+þžb©ÿF‚¹1é—óTª¼OÉg k$Àê¶=“ÊoŸmÌXXÙØÕìý-56Ó[ÍÓˆÓ?jÏ¢ÝЉ sé³R(eóŸ9>v舄= ˜L…‘ÔÉß3Y€ó*ÿUªü+×ïÝ¿S—u.1!ù’Š„¿j&Êš *,)//¿wC]»ÿK/øX˜éó¿¹C ü··â²åP_ðFÍœîéí{÷½¡ü‰¤¢“¶oÚ´?šžæÈD;ëâ¿ç’Ë@øcþƒ RAªm*÷BrB|bj6YíG£§|ýÕ7JËËîªÅ+÷eÜ©¨¸›áo¦Kkëfú¢¿5—ìçPð{Í^>ÿ›Ÿñ¢'RÒþ ù/:²óÇõk:E/pB¯ø&ÔAÿISr‘øño† !+-!>>þtF.Kù°`¸Ï*()+¿§>ü…Uÿ5ñÅ·RV¹Tã¿­½aÔÎ’“:Þ6#×nû7Jx2Å/ð¢Ø¿{Ëú@ ë¶¢¬ì?RAa°Ù­–øwÖnL{K¡cUnfR||B|BbF.kÅz h´Ë¾X\Zö›êðJów/ _ÞÅÜÌÔ”f?ÈÿX¦@š›qË8sx34÷ØÈ/!å/àú…AÇönú~m ĺmÇ"™™.8 ŽôŸbÈzFþ/‹'’ûD8 \LM¤ü%ÒsHÑK&7M]Rv7gW_Èö¶c&t³¢8ofjÈÿzÚ§Y®Ó‡Ã›Ây¦Iö SÛ¾Æ?`ß<ßC‘d,fé‡yt `2±l >²óIìËð_•sî4?ðu.‡)‘þO`¹)©·Êî¤ÿ4ÓÝÖÎR_ýùCñß¡%›þ–ÜD_oÓ!?“EßpáK´}FO»^+1ý–NóÅ‚SrzÖ/~¬©-`ÞA-ø‘¹Pjw!)Žrþ”¤äЭnLû§:÷lBÆõ’ÌÕ]¡§g«ÖÈý·r¦Å]SÎùsø3h5'X‚%ø çv ¸dÒ} ¤ÿÊyG=ÆïD 3I!‘/»”­„–Gæ¨ØúŸ@÷Ÿ§D6ñÉY*z˜ÇùçÏ^̉˜`ÎpÞTÏû#÷ß̱¥“‰™vþû9ü9¹íeh§o[BçYŒ^EiŸo>>†âÿè K„+ÙIP…Rþoà Lÿ ^k#ò˜8ŽÈòÒc•ÊØ8ìÿâ“2³UÌüG°ËIOJLˆ‹O”M±5«”ú·²qp±oÌãY2ps3Žþþ,¬>Þ†K^â#ˆ9›àyb–ž«VífÕnägŸQà±ì`3ÿE¬žÂVý´Œì7Èg{N÷ úã$PÞ¥3±QÒý+ü6(±JHL½¤bÍþUçžONŒo½¨¹>íéA¿Öö-làçÛ88Ø4åò>þ4ŒZÌ9)¦Ü¿øøfŸöLã Ïå«[™ð¬Üÿ=ÆcÁö0ºþ‹vzÖ0|>°Kg÷áÓÃ/á‰~) H=~pÕÄíœZº0añþXJ¾ËL„É»˜JÅÇ0ÂØ<ØÜÐñC˜CõÓÜÎUz›X˜qÞŸÃÓ;ERaÐŽ¹CØÝF ¥bd7Àøi'™‰`á[fë+jç1~hwWW×Î=Æn”eä’ä’ÿÙAãzµ±Zž±±•s¯™GAœ™CO…¹tö´R&V(¨pû¸7»á‡ñþý­¬m›™aCåqΟÃ#Ç9'öoœ6 µEMw>,`ââÝazkÁ…¬›f˜šø±['Wˆa36''ÿsϯpæëÿÝqû$¥_Ƶ°¬´Ó ²Í¾¢årE„—ÚÄ¿µµ)ÇzštŸ>áÇÆµÈˆÆ­†ŒB0îk¿â(9] –_iXÙ»3¢¿kG·á^+vG’>U^¶|¨ÁZ伿0 8}ö²Î%%Äù²ã—»Ãå ùÁ¯,«e~Ì-¡ø·ä?‡¿<‡fÕ:g˜r’±ËPd#v6ïßÇÂÈêÿÊ胋õé?¶WÂ×N]ûž{0åbŒ€sÏ®nnÈZ£v{`),1å|ŽJ蟵±«‘ݧëB¢E›¿lY³ö·¶à*½þ×`E•üVÃ@èÓxÆÎÃf¬;N–PDXäÅŠ¿Ü£ë0ß=a)YýÏý§kõ ­Ùˆh˜ J<“™u)òþq§f5kÔÈÄmêŸ!m[èçL›¢Ôem#Ø‹F´:ê³ý±ÂÉ}Êž¨œ¬òö¦5ÐÄOº»2în[Z4éç³Q’‘›yb\ ƒgµ7NŸœ–zšÒBò-ýá øåtü¦lþ›41j ÀŠ+õrx `{Y~Û!º¡/ 56jd>è‡#*P*dë‡|4q NƒNݳ“+;´«ÏšwóÞ+û—mM¤‰×í붆ÄÄžN]q!ÓØë5óX`ìÑÈÄÒ’ûB#ol7Û´Uü5ê|Jñl¿Zy@*W†mmaÜaâT8xŒíÛ©c‡öíÛw ê§½ ^|Ù¬×ü%]küF]?ܱãÀ;N†*bã"×÷Õ‹x&Düàˆ—×˜[ÏœÃÛA-u%# ãZñ}PÄo'0‹lÜ×S)úëߦmK'{;;ç¶í)çß±­=ÃU3ÛšÛ3ùέ[ºPèîõí~a´òàW£„‘ vþÕÿõEÍ_ ÍGvaá>wËœ¶ðŠÕÀ±ã¿ߟGHÊ3¶iÛ±ckËz$)ùŽ.΀ÿ.­» ™µé¨o{ÃÐd@M¸Þf!žó­ÚÚá+Ʀö=Ýõ…»‹C½„Š1E}d.öƆ·ªnqMÍL¹|‡¿xFÈóø´ƒçñõIʺW'ŒÝÛBýãâlϧÄN 2‡gÌ9ï*x¦M-ÿÁpQ£Ÿçœ?‡w|SÛ.ŽÍ9¼Ÿà7¶nnΉï-Œ›pôçÀÃÿÿÊärþ²€ %dŠ @à ((/home/amr/Borders/HeartsPortrait.tifCreated with The GIMPÙ?4ÑFþUDgöv³„»‘Pž«Ûº5Ê›Ù:ê•Ñf’-F²½  • ? LZfŸ[ýHHphotoprint-0.4.2-pre2/pp_layout_nup_pageview.h0000644000175000017500000000353311101462351016446 00000000000000#ifndef __PP_LAYOUT_NUP_PAGEVIEW_H__ #define __PP_LAYOUT_NUP_PAGEVIEW_H__ #include #include #include #include #include #include "pixbufthumbnail/egg-pixbuf-thumbnail.h" #include "layout_nup.h" #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ #define PP_LAYOUT_NUP_PAGEVIEW(obj) GTK_CHECK_CAST (obj, pp_layout_nup_pageview_get_type (), pp_Layout_NUp_PageView) #define PP_LAYOUT_NUP_PAGEVIEW_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, pp_layout_nup_pageview_get_type (), pp_Layout_NUp_PageViewClass) #define PP_IS_PAGEVIEW(obj) GTK_CHECK_TYPE (obj, pp_layout_nup_pageview_get_type ()) typedef struct _pp_Layout_NUp_PageView pp_Layout_NUp_PageView; typedef struct _pp_Layout_NUp_PageViewClass pp_Layout_NUp_PageViewClass; struct _pp_Layout_NUp_PageView { GtkWidget widget; /* Button currently pressed or 0 if none */ guint8 button; /* ID of update timer, or 0 if none */ guint32 timer; Layout_NUp *layout; Layout_ImageInfo *selected; int left, top; int width, height; double scale; // Dragging state bool dragging; int init_x; int init_y; LayoutRectangle_Alignment init_hpan; LayoutRectangle_Alignment init_vpan; }; struct _pp_Layout_NUp_PageViewClass { GtkWidgetClass parent_class; void (*changed)(pp_Layout_NUp_PageView *pv); void (*reflow)(pp_Layout_NUp_PageView *pv); void (*popupmenu)(pp_Layout_NUp_PageView *pv); void (*selectionchanged)(pp_Layout_NUp_PageView *pv); }; GtkWidget* pp_layout_nup_pageview_new(Layout_NUp *layout); GtkType pp_layout_nup_pageview_get_type(void); void pp_layout_nup_pageview_set_page(pp_Layout_NUp_PageView *pv,int page); void pp_layout_nup_pageview_refresh(pp_Layout_NUp_PageView *pv); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* __PP_LAYOUT_NUP_PAGEVIEW_H__ */ photoprint-0.4.2-pre2/pp_pageextent.h0000644000175000017500000000313211221653326014526 00000000000000#ifndef __PP_PAGEEXTENT_H__ #define __PP_PAGEEXTENT_H__ #include #include #include #include #include #include #include #include #include #include "support/pageextent.h" G_BEGIN_DECLS #define PP_PAGEEXTENT_TYPE (pp_pageextent_get_type()) #define PP_PAGEEXTENT(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PP_PAGEEXTENT_TYPE, pp_PageExtent)) #define PP_PAGEEXTENT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PP_PAGEEXTENT_TYPE, pp_PageExtentClass)) #define IS_PP_PAGEEXTENT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PP_PAGEEXTENT_TYPE)) #define IS_PP_PAGEEXTENT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PP_PAGEEXTENT_TYPE)) typedef struct _pp_PageExtent pp_PageExtent; typedef struct _pp_PageExtentClass pp_PageExtentClass; class PhotoPrint_State; struct _pp_PageExtent { GtkExpander box; GtkWidget *lmargin; GtkWidget *rmargin; GtkWidget *tmargin; GtkWidget *bmargin; GtkWidget *pagesize; GtkWidget *customwidth; GtkWidget *customwidthlabel; GtkWidget *customheight; GtkWidget *customheightlabel; PageExtent *pe; PhotoPrint_State *state; bool blocksignals; }; struct _pp_PageExtentClass { GtkExpanderClass parent_class; void (*changed)(pp_PageExtent *sig); }; GType pp_pageextent_get_type (void); GtkWidget* pp_pageextent_new (PageExtent *pe,PhotoPrint_State *state); void pp_pageextent_refresh(pp_PageExtent *ob); void pp_pageextent_set_unit(pp_PageExtent *ob,enum Units unit); G_END_DECLS #endif /* __PP_PAGEEXTENT_H__ */ photoprint-0.4.2-pre2/pp_histogram.cpp0000644000175000017500000002243411317702367014726 00000000000000#include #include #include #include #include #include #include #include "config.h" #include "support/thread.h" #include "support/debug.h" #include "stpui_widgets/dimension.h" #include "imagesource/imagesource_util.h" #include "photoprint_state.h" #include "pp_histogram.h" #include "gettext.h" #define _(x) gettext(x) static void pp_histogram_class_init (pp_HistogramClass *klass); static void pp_histogram_init (pp_Histogram *stpuicombo); class DeferHistogram : public ThreadFunction { public: DeferHistogram(pp_Histogram *widget,Layout_ImageInfo *ii) : ThreadFunction(), widget(widget),ii(ii), thread(this) { Debug[TRACE] << "Main thread: Starting DeferHistogram thread" << endl; // thread.Start(); Debug[TRACE] << "Main thread: Thread started - waiting for Sync" << endl; // FIXME - need to use bi-directional sync signals - can't use the same signal in each direction // because there's no guarantee the main thread will receive the signal before the subthread waits // for the next one. // thread.WaitSync(); Debug[TRACE] << "Main thread: Startup confirmed" << endl; } virtual ~DeferHistogram() { } virtual int Entry(Thread &t) { // To avoid any possible deadlock situation we only attempt the mutex, and bail out if it fails. int count=10; while(!ii->AttemptMutexShared()) { if(count==0) { Debug[TRACE] << "DeferHistogram: Giving up attempt on mutex - bailing out" << endl; // The calling thread is waiting for us to acknowledge startup, so we have to send // the Sync before bailing out. thread.SendSync(); g_timeout_add(1,DeferHistogram::CleanupFunc,this); return(0); } #ifdef WIN32 Sleep(50); #else usleep(50000); #endif --count; } thread.SendSync(); Debug[TRACE] << "DeferHistogram: Succeeded in obtaining ImageInfo mutex" << endl; // If we get this far we have a shared lock on the ImageInfo. PPHistogram &hist=ii->GetHistogram(); Debug[TRACE] << "DeferHistogram: Subscribing to signal" << endl; hist.Subscribe(); Debug[TRACE] << "DeferHistogram: Subscribed - attemping mutex" << endl; if(!hist.AttemptMutexShared()) { Debug[TRACE] << "DeferHistogram: Couldn't get Histogram mutex - waiting..." << endl; hist.QueryAndWait(); Debug[TRACE] << "DeferHistogram: Got signal from Histogram - obtaining Mutex..." << endl; hist.ObtainMutexShared(); } Debug[TRACE] << "DeferHistogram: Histogram mutex obtained" << endl; g_timeout_add(1,DeferHistogram::IdleFunc,this); Debug[TRACE] << "DeferHistogram: Handed control back to main thread..." << endl; thread.WaitSync(); Debug[TRACE] << "DeferHistogram: Received signal to say main thread is done - cleaning up" << endl; hist.Unsubscribe(); Debug[TRACE] << "DeferHistogram: Unsubscribed" << endl; hist.ReleaseMutexShared(); ii->ReleaseMutexShared(); Debug[TRACE] << "DeferHistogram: Mutexes released - subthread ending" << endl; return(0); } // IdleFunc - runs on the main thread's context, // thus, can safely render into the UI. static gboolean IdleFunc(gpointer ud) { DeferHistogram *p=(DeferHistogram *)ud; PPHistogram &hist=p->ii->GetHistogram(); Debug[TRACE] << "DeferHistogram - IdleFunc: Drawing histogram" << endl; int width=p->widget->hist->allocation.width; if(width>50) { GdkPixbuf *pb=hist.DrawHistogram(width,(2*width)/3); gtk_image_set_from_pixbuf(GTK_IMAGE(p->widget->hist),pb); g_object_unref(G_OBJECT(pb)); Debug[TRACE] << "Done" << endl; } Debug[TRACE] << "DeferHistogram - IdleFunc: Signalling subthread" << endl; p->thread.SendSync(); Debug[TRACE] << "DeferHistogram - IdleFunc: Deleting payload" << endl; delete p; return(FALSE); } static gboolean CleanupFunc(gpointer ud) { DeferHistogram *p=(DeferHistogram *)ud; // p->thread.SendSync(); delete p; return(FALSE); } pp_Histogram *widget; Layout_ImageInfo *ii; Thread thread; }; class BuildHistogramThread : public ThreadFunction { public: BuildHistogramThread(pp_Histogram *widget,Layout_ImageInfo *ii) : ThreadFunction(), widget(widget), ii(ii), thread(this) { Debug[TRACE] << "BuildHistogramThread: Starting Histogram generation thread" << endl; thread.Start(); thread.WaitSync(); Debug[TRACE] << "BuildHistogramThread: Startup confirmed" << endl; } virtual ~BuildHistogramThread() { } virtual int Entry(Thread &t) { // To avoid any possible deadlock situation we only attempt the mutex, and bail out if it fails. int count=10; while(!ii->AttemptMutexShared()) { if(count==0) { Debug[WARN] << "BuildHistogramThread: Giving up attempt on mutex - bailing out" << endl; // The calling thread is waiting for us to acknowledge startup, so we have to send // the Sync before bailing out. thread.SendSync(); g_timeout_add(1,BuildHistogramThread::CleanupFunc,this); return(0); } #ifdef WIN32 Sleep(50); #else usleep(50000); #endif --count; } ISDataType *junk; ImageSource *is=ii->GetImageSource(); Debug[TRACE] << "BuildHistogramThread: Succeeded in obtaining ImageInfo mutex" << endl; // If we get this far we have a shared lock on the ImageInfo. // We have also created the ImageSource chain, so should have a write lock on the histogram. thread.SendSync(); // We only bother to read the image data if we have an exclusive lock on the histogram. if(ii->GetHistogram().CheckExclusive()) { new DeferHistogram(widget,ii); for(int y=0;yheight;++y) { junk=is->GetRow(y); } } delete is; g_timeout_add(1,BuildHistogramThread::CleanupFunc,this); Debug[TRACE] << "BuildHistogramThread: Handed control back to main thread..." << endl; thread.WaitSync(); Debug[TRACE] << "BuildHistogramThread: Received signal to say main thread is done - cleaning up" << endl; ii->ReleaseMutexShared(); return(0); } static gboolean CleanupFunc(gpointer ud) { BuildHistogramThread *p=(BuildHistogramThread *)ud; p->thread.SendSync(); delete p; return(FALSE); } pp_Histogram *widget; Layout_ImageInfo *ii; Thread thread; }; void pp_histogram_refresh(pp_Histogram *ob) { Debug[TRACE] << "Main thread: Refreshing histogram" << endl; if(ob && ob->layout) { LayoutIterator it(*ob->layout); Layout_ImageInfo *ii=it.FirstSelected(); if(ii) { // Histogram PPHistogram &hist=ii->GetHistogram(); Debug[TRACE] << "Main thread: Got histogram" << endl; if(hist.AttemptMutexShared()) { Debug[TRACE] << "Main thread: Got histogram's mutex - attempting to draw" << endl; // If we were able to obtain the histogram's mutex, then it's either // not been generated yet, or it's generated and ready for display... try { int width=ob->hist->allocation.width; if(width>50) { GdkPixbuf *pb=hist.DrawHistogram(width,(2*width)/3); gtk_image_set_from_pixbuf(GTK_IMAGE(ob->hist),pb); g_object_unref(G_OBJECT(pb)); } hist.ReleaseMutexShared(); } catch(const char *err) { // If drawing the histogram failed, we'll process it ourselves... Debug[TRACE] << "Main thread: Couldn't draw histogram - spawning thread to build it..." << endl; hist.ReleaseMutexShared(); new BuildHistogramThread(ob,ii); } } else { // If we couldn't obtain the Histogram's mutex, then histogram generation must // be in progress - so launch a thread to wait for it... Debug[TRACE] << "Main thread: couldn't obtain histogram's mutex - Deferring..." << endl; new DeferHistogram(ob,ii); Debug[TRACE] << "Main thread: DeferHistogram created..." << endl; } } else { gtk_image_clear(GTK_IMAGE(ob->hist)); } } Debug[TRACE] << "Main thread: Refresh complete." << endl; } static void expander_callback (GObject *object, GParamSpec *param_spec, gpointer userdata) { pp_Histogram *ob=PP_HISTOGRAM(object); ob->layout->state.SetInt("ExpanderState_Histogram",gtk_expander_get_expanded (GTK_EXPANDER(ob))); } GtkWidget* pp_histogram_new (Layout *layout) { pp_Histogram *ob=PP_HISTOGRAM(g_object_new (pp_histogram_get_type (), NULL)); // gtk_box_set_spacing(GTK_BOX(ob),5); ob->layout=layout; // Layout frame gtk_expander_set_label(GTK_EXPANDER(ob),_("Histogram")); gtk_expander_set_spacing(GTK_EXPANDER(ob),5); gtk_expander_set_expanded(GTK_EXPANDER(ob),layout->state.FindInt("ExpanderState_Histogram")); g_signal_connect(ob, "notify::expanded",G_CALLBACK (expander_callback), NULL); GtkWidget *vbox=gtk_vbox_new(FALSE,0); gtk_widget_show(vbox); ob->hist=gtk_image_new(); gtk_container_add(GTK_CONTAINER(ob),ob->hist); gtk_widget_show(ob->hist); pp_histogram_refresh(ob); return(GTK_WIDGET(ob)); } GType pp_histogram_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo pp_histogram_info = { sizeof (pp_HistogramClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) pp_histogram_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (pp_Histogram), 0, (GInstanceInitFunc) pp_histogram_init, }; stpuic_type = g_type_register_static (GTK_TYPE_EXPANDER, "pp_Histogram", &pp_histogram_info, (GTypeFlags)0); } return stpuic_type; } static void pp_histogram_class_init (pp_HistogramClass *klass) { } static void pp_histogram_init (pp_Histogram *ob) { ob->hist=NULL; ob->layout=NULL; } photoprint-0.4.2-pre2/gettext.h0000644000175000017500000000657011101462351013351 00000000000000/* Convenience header for conditional use of GNU . Copyright (C) 1995-1998, 2000-2002, 2004 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library 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 Library General Public License for more details. You should have received a copy of the GNU Library 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. */ #ifndef _LIBGETTEXT_H #define _LIBGETTEXT_H 1 /* NLS can be disabled through the configure --disable-nls option. */ #if ENABLE_NLS /* Get declarations of GNU message catalog functions. */ # include #else /* Solaris /usr/include/locale.h includes /usr/include/libintl.h, which chokes if dcgettext is defined as a macro. So include it now, to make later inclusions of a NOP. We don't include as well because people using "gettext.h" will not include , and also including would fail on SunOS 4, whereas is OK. */ #if defined(__sun) # include #endif /* Many header files from the libstdc++ coming with g++ 3.3 or newer include , which chokes if dcgettext is defined as a macro. So include it now, to make later inclusions of a NOP. */ #if defined(__cplusplus) && defined(__GNUG__) && (__GNUC__ >= 3) # include # if (__GLIBC__ >= 2) || _GLIBCXX_HAVE_LIBINTL_H # include # endif #endif /* Disabled NLS. The casts to 'const char *' serve the purpose of producing warnings for invalid uses of the value returned from these functions. On pre-ANSI systems without 'const', the config.h file is supposed to contain "#define const". */ # define gettext(Msgid) ((const char *) (Msgid)) # define dgettext(Domainname, Msgid) ((const char *) (Msgid)) # define dcgettext(Domainname, Msgid, Category) ((const char *) (Msgid)) # define ngettext(Msgid1, Msgid2, N) \ ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2)) # define dngettext(Domainname, Msgid1, Msgid2, N) \ ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2)) # define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \ ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2)) # define textdomain(Domainname) ((const char *) (Domainname)) # define bindtextdomain(Domainname, Dirname) ((const char *) (Dirname)) # define bind_textdomain_codeset(Domainname, Codeset) ((const char *) (Codeset)) #endif /* A pseudo function call that serves as a marker for the automated extraction of messages, but does not call gettext(). The run-time translation is done at a different place in the code. The argument, String, should be a literal string. Concatenated strings and other string expressions won't work. The macro's expansion is not parenthesized, so that it is suitable as initializer for static 'char[]' or 'const char[]' variables. */ #define gettext_noop(String) String #endif /* _LIBGETTEXT_H */ photoprint-0.4.2-pre2/dialogs.h0000644000175000017500000000167111264217324013314 00000000000000#ifndef PHOTOPRINT_DIALOGS_H #define PHOTOPRINT_DIALOGS_H #include #include "photoprint_state.h" void ColourManagement_Dialog(GtkWindow *parent,PhotoPrint_State &state); void ColourResponseTag_Dialog(GtkWidget *parent,PhotoPrint_State &state); void Units_Dialog(GtkWindow *parent,PhotoPrint_State &state); void Scaling_Dialog(GtkWindow *parent,PhotoPrint_State &state); void PrintSetup_Dialog(GtkWindow *parent,PhotoPrint_State &state); void Paths_Dialog(GtkWindow *parent,PhotoPrint_State &state); char *ImageMask_Dialog(GtkWindow *parent,PhotoPrint_State &state,char *oldfn); char *Background_Dialog(GtkWindow *parent,PhotoPrint_State &state,char *oldfn); void SetCustomProfileDialog(GtkWindow *parent,PhotoPrint_State &state,Layout_ImageInfo *ii); void ExportTiff_Dialog(GtkWindow *parent,PhotoPrint_State &state); void ExportJPEG_Dialog(GtkWindow *parent,PhotoPrint_State &state); void About_Dialog(GtkWindow *parent); #endif photoprint-0.4.2-pre2/pp_menu_shortcuts.h0000644000175000017500000000027411245770141015451 00000000000000#ifndef PP_MENU_SHORTCUTS_H #define PP_MENU_SHORTCUTS_H #include #include void BuildShortcutsMenu(void *userdata,GtkUIManager *ui_manager); #endif photoprint-0.4.2-pre2/pp_menu_image.cpp0000644000175000017500000003612311320073156015026 00000000000000#include #include #include #include #include #include #include #include #include #include "pp_mainwindow.h" #include "dialogs.h" #include "miscwidgets/generaldialogs.h" #include "progressbar.h" #include "support/pathsupport.h" #include "support/debug.h" #include "support/layoutrectangle.h" // For rotation enums //#include "effects/effects_dialog.h" #include "pixbufthumbnail/egg-pixbuf-thumbnail.h" #include "pp_menu_image.h" #include "config.h" #include "gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) using namespace std; // Yuk - but it's a royal pain to do this any other way. // Can't easily get signal connection IDs from the automatically-built menus static bool blocksignals=false; // Preview widget for file chooser static void updatepreview(GtkWidget *fc,void *ud) { GtkWidget *preview=GTK_WIDGET(ud); gchar *fn=gtk_file_chooser_get_preview_filename(GTK_FILE_CHOOSER(fc)); bool active=false; if(fn) { GError *err=NULL; GdkPixbuf *pb=egg_pixbuf_get_thumbnail_for_file(fn,EGG_PIXBUF_THUMBNAIL_NORMAL,&err); if(pb) { gtk_image_set_from_pixbuf(GTK_IMAGE(preview),pb); g_object_unref(pb); active=true; } } gtk_file_chooser_set_preview_widget_active(GTK_FILE_CHOOSER(fc),active); } static void imagemenu_addimage(GtkAction *act,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; PhotoPrint_State *state=mw->state; GtkWidget *sel; sel = gtk_file_chooser_dialog_new (_("Open File"), GTK_WINDOW(GTK_WINDOW(&mw->window)), GTK_FILE_CHOOSER_ACTION_OPEN, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT, NULL); gtk_file_chooser_set_select_multiple(GTK_FILE_CHOOSER(sel),TRUE); if(mw->prevfile) gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(sel),mw->prevfile); else { #ifdef WIN32 char *dirname=substitute_homedir("$HOME\\My Documents\\My Pictures"); #else char *dirname=substitute_homedir("$HOME"); #endif gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(sel),dirname); } g_free(mw->prevfile); mw->prevfile=NULL; GtkWidget *preview=gtk_image_new(); gtk_file_chooser_set_preview_widget(GTK_FILE_CHOOSER(sel),GTK_WIDGET(preview)); g_signal_connect(G_OBJECT(sel),"selection-changed",G_CALLBACK(updatepreview),preview); if (gtk_dialog_run (GTK_DIALOG (sel)) == GTK_RESPONSE_ACCEPT) { GSList *filenames=gtk_file_chooser_get_filenames(GTK_FILE_CHOOSER(sel)); GSList *current=filenames; if(filenames) { int count=0; while(current) { ++count; current=g_slist_next(current); } ProgressBar progress(_("Adding images..."),true,GTK_WIDGET(mw)); current=filenames; int i=0; int lastpage=0; while(current) { char *fn=(char *)current->data; // pp_Menu *menu=PP_MENU(mw->menu); lastpage=state->layout->AddImage(fn,ImageMenu_GetCropFlag(mw->uim),ImageMenu_GetRotation(mw->uim)); if(!(progress.DoProgress(i,count))) break; ++i; current=g_slist_next(current); if(!current) mw->prevfile=g_strdup(fn); g_free(fn); } state->layout->SetCurrentPage(lastpage); g_slist_free(filenames); } } gtk_widget_destroy (sel); pp_mainwindow_refresh(mw); } static void imagemenu_remove(GtkAction *act,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; LayoutIterator it(*mw->state->layout); Layout_ImageInfo *ii=it.FirstSelected(); while(ii) { mw->state->layout->Delete(ii); ii=it.FirstSelected(); } mw->state->layout->Reflow(); pp_mainwindow_refresh(mw); } static void imagemenu_duplicate(GtkAction *act,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; LayoutIterator it(*mw->state->layout); Layout_ImageInfo *ii=it.FirstSelected(); while(ii) { mw->state->layout->CopyImage(ii); ii=it.NextSelected(); } pp_mainwindow_refresh(mw); } static void imagemenu_duplicatetofillpage(GtkAction *act,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; int s=mw->state->layout->CountSelected(); if(s) { int c=mw->state->layout->FreeSlots(); if(c) { for(int i=0;istate->layout); Layout_ImageInfo *ii=it.FirstSelected(); while(ii && istate->layout->CopyImage(ii); ii=it.NextSelected(); ++i; } } } else ErrorMessage_Dialog(_("Page is already full!"),GTK_WIDGET(mw)); } pp_mainwindow_refresh(mw); } static void imagemenu_allowcropping(GtkToggleAction *act,gpointer *ob) { if(blocksignals) return; Debug[TRACE] << "Responding to AllowCropping..." << endl; pp_MainWindow *mw=(pp_MainWindow *)ob; bool checked=gtk_toggle_action_get_active(GTK_TOGGLE_ACTION(act)); // Pump any outstanding events - on Win32 without this the damaged portion of the window // gets redrawn at the ii->ObtainMutex() stage, which prematurely triggers // regeneration of the highres preview! while(gtk_events_pending()) gtk_main_iteration(); LayoutIterator it(*mw->state->layout); Layout_ImageInfo *ii=it.FirstSelected(); if(!ii) mw->state->layoutdb.SetInt("AllowCropping",checked); while(ii) { ii->ObtainMutexShared(); if(ii->allowcropping!=checked) { ii->allowcropping=checked; ii->ObtainMutex(); ii->allowcropping=checked; ii->ReleaseMutex(); } ii->ReleaseMutex(); ii=it.NextSelected(); } pp_mainwindow_refresh(mw); } static void imagemenu_setmask(GtkAction *act,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; static char *prevfile=NULL; // FIXME: Need to get existing filename... char *mask=ImageMask_Dialog(&mw->window,*mw->state,prevfile); if(mask) Debug[TRACE] << "Selected " << mask << endl; // Pump any outstanding events - on Win32 without this the damaged portion of the window // gets redrawn at the ii->ObtainMutex() stage, which prematurely triggers // regeneration of the highres preview! while(gtk_events_pending()) gtk_main_iteration(); LayoutIterator it(*mw->state->layout); Layout_ImageInfo *ii=it.FirstSelected(); while(ii) { ii->ObtainMutex(); ii->SetMask(mask); ii->ReleaseMutex(); ii=it.NextSelected(); } // if(prevfile) // free(prevfile); prevfile=mask; pp_mainwindow_refresh(mw); } static void imagemenu_setcolourprofile(GtkAction *act,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; LayoutIterator it(*mw->state->layout); Layout_ImageInfo *ii=it.FirstSelected(); if(ii) { ii->ObtainMutex(); SetCustomProfileDialog(&mw->window,*mw->state,ii); ii->ReleaseMutex(); pp_mainwindow_refresh(mw); } else ErrorMessage_Dialog(_("Please select an image first!"),GTK_WIDGET(mw)); } static void imagemenu_radio_dispatch(GtkAction *act,GtkRadioAction *ra,gpointer *ob) { if(blocksignals) return; pp_MainWindow *mw=(pp_MainWindow *)ob; enum PP_ROTATION rotation=PP_ROTATION(gtk_radio_action_get_current_value(ra)); // Pump any outstanding events - on Win32 without this the damaged portion of the window // gets redrawn at the ii->ObtainMutex() stage, which prematurely triggers // regeneration of the highres preview! while(gtk_events_pending()) gtk_main_iteration(); LayoutIterator it(*mw->state->layout); Layout_ImageInfo *ii=it.FirstSelected(); if(!ii) mw->state->layoutdb.SetInt("Rotation",rotation); while(ii) { ii->ObtainMutexShared(); if(ii->rotation!=rotation) { ii->rotation=rotation; ii->ObtainMutex(); ii->rotation=rotation; ii->ReleaseMutex(); } ii->ReleaseMutex(); ii=it.NextSelected(); } pp_mainwindow_refresh(mw); } static GtkActionEntry imagemenu_entries[] = { { "ImageMenu", NULL, N_("_Image") }, { "AddImage", NULL, N_("_Add Image..."), "I", N_("Add images to the current layout"), G_CALLBACK(imagemenu_addimage) }, { "RemoveImage", NULL, N_("_Remove Image"), NULL, N_("Remove selected images from the layout"), G_CALLBACK(imagemenu_remove) }, { "DuplicateImage", NULL, N_("_Duplicate Image"), NULL, N_("Duplicate the currently selected image"), G_CALLBACK(imagemenu_duplicate) }, { "DuplicateToFillPage", NULL, N_("Duplicate to _Fill Page"), NULL, N_("Fill the page with copies of the currently selected image"), G_CALLBACK(imagemenu_duplicatetofillpage) }, { "Rotation", NULL, N_("_Rotation") }, { "SetImageMask", NULL, N_("Set Image _Border..."), NULL, N_("Set a border mask for the selected image"), G_CALLBACK(imagemenu_setmask) }, // { "Effects", NULL, N_("_Effects..."), NULL, N_("Apply effects to the selected image"), G_CALLBACK(imagemenu_seteffects) }, { "SetColourProfile", NULL, N_("Set Colour _Profile..."), NULL, N_("Assign an ICC profile or custom rendering intent to the image"), G_CALLBACK(imagemenu_setcolourprofile) }, }; static GtkToggleActionEntry imagemenu_toggle_entries[] = { { "AllowCropping", NULL, N_("Allow _Cropping"), NULL, N_("Crop the selected images to fill the available space"), G_CALLBACK(imagemenu_allowcropping), FALSE } }; static GtkRadioActionEntry imagemenu_radio_entries[] = { { "RotationAuto", NULL, N_("_Auto"), NULL, N_("Automatically choose rotation to fit the available space."), PP_ROTATION_AUTO }, { "RotationNone", NULL, N_("_None"), NULL, N_("No rotation."), PP_ROTATION_NONE }, { "Rotation90", NULL, N_("_90 Degrees"), NULL, N_("Rotate 90 degrees clockwise."), PP_ROTATION_90 }, { "Rotation180", NULL, N_("_180 Degrees"), NULL, N_("Rotate 180 degrees."), PP_ROTATION_180 }, { "Rotation270", NULL, N_("_270 Degrees"), NULL, N_("Rotate 90 degrees anticlockwise."), PP_ROTATION_270 } }; static const char *imagemenu_ui_description = "" " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " //" " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " //" " " " " " ""; void BuildImageMenu(void *userdata,GtkUIManager *ui_manager) { GError *error=NULL; GtkActionGroup *action_group; action_group = gtk_action_group_new ("ImageMenuActions"); gtk_action_group_set_translation_domain(action_group,PACKAGE); gtk_action_group_add_actions (action_group, imagemenu_entries, G_N_ELEMENTS (imagemenu_entries), userdata); gtk_action_group_add_toggle_actions (action_group, imagemenu_toggle_entries, G_N_ELEMENTS (imagemenu_toggle_entries), userdata); gtk_action_group_add_radio_actions (action_group, imagemenu_radio_entries, G_N_ELEMENTS (imagemenu_radio_entries), 0, G_CALLBACK(imagemenu_radio_dispatch), userdata); gtk_ui_manager_insert_action_group (ui_manager, action_group, 0); if (!gtk_ui_manager_add_ui_from_string (ui_manager, imagemenu_ui_description, -1, &error)) throw error->message; pp_MainWindow *mw=(pp_MainWindow *)userdata; bool allowcropping=mw->state->layoutdb.FindInt("AllowCropping"); enum PP_ROTATION rotation=PP_ROTATION(mw->state->layoutdb.FindInt("Rotation")); ImageMenu_SetCropFlag(ui_manager,allowcropping); ImageMenu_SetRotation(ui_manager,rotation); } bool ImageMenu_GetCropFlag(GtkUIManager *ui_manager) { bool result=false; GtkAction *act=gtk_ui_manager_get_action(ui_manager,"/MainMenu/ImageMenu/AllowCropping"); if(act) result=gtk_toggle_action_get_active(GTK_TOGGLE_ACTION(act)); return(result); } void ImageMenu_SetCropFlag(GtkUIManager *ui_manager,bool active) { blocksignals=true; GtkAction *act=gtk_ui_manager_get_action(ui_manager,"/MainMenu/ImageMenu/AllowCropping"); if(act) gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(act),active); blocksignals=false; } enum PP_ROTATION ImageMenu_GetRotation(GtkUIManager *ui_manager) { enum PP_ROTATION result=PP_ROTATION_AUTO; GtkAction *act=gtk_ui_manager_get_action(ui_manager,"/MainMenu/ImageMenu/Rotation/RotationAuto"); if(act) result=PP_ROTATION(gtk_radio_action_get_current_value(GTK_RADIO_ACTION(act))); return(result); } void ImageMenu_SetRotation(GtkUIManager *ui_manager,enum PP_ROTATION rotation) { blocksignals=true; #if 0 GtkAction *act=gtk_ui_manager_get_action(ui_manager,"/MainMenu/ImageMenu/Rotation/RotationAuto"); if(act) gtk_radio_action_set_current_value(GTK_RADIO_ACTION(act),rotation); #else const char *menupaths[]= { "/MainMenu/ImageMenu/Rotation/RotationAuto", "/MainMenu/ImageMenu/Rotation/RotationNone", "/MainMenu/ImageMenu/Rotation/Rotation90", "/MainMenu/ImageMenu/Rotation/Rotation180", "/MainMenu/ImageMenu/Rotation/Rotation270" }; GtkWidget *w; for(unsigned int i=0;i<(sizeof(menupaths)/sizeof(const char *));++i) { w=gtk_ui_manager_get_widget(ui_manager,menupaths[i]); if(w) gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(w),PP_ROTATION(i)==rotation); } #endif blocksignals=false; } void ImageMenu_SetLayoutCapabilities(GtkUIManager *ui_manager,int features) { struct menucapentry { const char *path; int flag; }; menucapentry tags[]={ {"/MainMenu/ImageMenu/DuplicateToFillPage",PPLAYOUT_DUPLICATE}, {"/MainMenu/ImageMenu/AllowCropping",PPLAYOUT_CROP}, {"/MainMenu/ImageMenu/Rotation/RotationAuto",PPLAYOUT_ROTATE}, {"/MainMenu/ImageMenu/Rotation/RotationNone",PPLAYOUT_ROTATE}, {"/MainMenu/ImageMenu/Rotation/Rotation90",PPLAYOUT_ROTATE}, {"/MainMenu/ImageMenu/Rotation/Rotation180",PPLAYOUT_ROTATE}, {"/MainMenu/ImageMenu/Rotation/Rotation270",PPLAYOUT_ROTATE}, {"/MainMenu/ImageMenu/SetImageMask",PPLAYOUT_MASK}, {"/MainMenu/ImageMenu/SetEffects",PPLAYOUT_EFFECTS}, {"/MainMenu/ImageMenu/SetColourProfile",PPLAYOUT_PROFILE}, {"/popup/DuplicateToFillPage",PPLAYOUT_DUPLICATE}, {"/popup/AllowCropping",PPLAYOUT_CROP}, {"/popup/Rotation/RotationAuto",PPLAYOUT_ROTATE}, {"/popup/Rotation/RotationNone",PPLAYOUT_ROTATE}, {"/popup/Rotation/Rotation90",PPLAYOUT_ROTATE}, {"/popup/Rotation/Rotation180",PPLAYOUT_ROTATE}, {"/popup/Rotation/Rotation270",PPLAYOUT_ROTATE}, {"/popup/SetImageMask",PPLAYOUT_MASK}, // {"/popup/SetEffects",PPLAYOUT_EFFECTS}, {"/popup/SetColourProfile",PPLAYOUT_PROFILE}, {NULL,0} }; menucapentry *p=&tags[0]; while(p->flag) { GtkWidget *w=gtk_ui_manager_get_widget(ui_manager,p->path); if(w) gtk_widget_set_sensitive(w,(features&p->flag)!=0); ++p; } } void ImageMenu_DoPopup(GtkUIManager *ui_manager) { GtkWidget *menu=gtk_ui_manager_get_widget(ui_manager,"/popup"); gtk_menu_popup(GTK_MENU(menu),NULL,NULL,NULL,NULL,3,gtk_get_current_event_time()); } photoprint-0.4.2-pre2/pp_pageextent.cpp0000644000175000017500000002656411266340607015103 00000000000000/* * pp_pageextent.cpp - provides a custom widget for controlling a PageExtent. * Uses the GPrinter from PhotoPrint_State to display a list of pagesizes * and to get the page size. The margins are applied independently to the * supplied PageExtent. * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include #include "stpui_widgets/dimension.h" #include "stpui_widgets/stpui_combo.h" #include "photoprint_state.h" #include "pp_pageextent.h" #include "support/debug.h" #include "config.h" #include "gettext.h" #define _(x) gettext(x) enum { CHANGED_SIGNAL, LAST_SIGNAL }; static guint pp_pageextent_signals[LAST_SIGNAL] = { 0 }; static void pp_pageextent_class_init (pp_PageExtentClass *klass); static void pp_pageextent_init (pp_PageExtent *stpuicombo); static void customwidth_changed(GtkWidget *wid,gpointer *ob) { pp_PageExtent *lo=(pp_PageExtent *)ob; if(lo->blocksignals) return; Dimension *d=DIMENSION(lo->customwidth); int v=int(dimension_get_pt(d)); Debug[TRACE] << "Setting custom width to " << v << endl; lo->state->printer.SetCustomWidth(v); lo->state->layout->UpdatePageSize(); pp_pageextent_refresh(lo); g_signal_emit(G_OBJECT (ob),pp_pageextent_signals[CHANGED_SIGNAL], 0); } static void customheight_changed(GtkWidget *wid,gpointer *ob) { pp_PageExtent *lo=(pp_PageExtent *)ob; if(lo->blocksignals) return; Dimension *d=DIMENSION(lo->customheight); int v=int(dimension_get_pt(d)); Debug[TRACE] << "Setting custom height to " << v << endl; lo->state->printer.SetCustomHeight(v); lo->state->layout->UpdatePageSize(); pp_pageextent_refresh(lo); g_signal_emit(G_OBJECT (ob),pp_pageextent_signals[CHANGED_SIGNAL], 0); } static void lmargin_changed(GtkWidget *wid,gpointer *ob) { pp_PageExtent *lo=(pp_PageExtent *)ob; PageExtent *pe=lo->pe; Dimension *d=DIMENSION(lo->lmargin); int v=int(dimension_get_pt(d)); pe->SetMargins(v,pe->rightmargin,pe->topmargin,pe->bottommargin); g_signal_emit(G_OBJECT (ob),pp_pageextent_signals[CHANGED_SIGNAL], 0); } static void rmargin_changed(GtkWidget *wid,gpointer *ob) { pp_PageExtent *lo=(pp_PageExtent *)ob; PageExtent *pe=lo->pe; Dimension *d=DIMENSION(lo->rmargin); int v=int(dimension_get_pt(d)); pe->SetMargins(pe->leftmargin,v,pe->topmargin,pe->bottommargin); g_signal_emit(G_OBJECT (ob),pp_pageextent_signals[CHANGED_SIGNAL], 0); } static void tmargin_changed(GtkWidget *wid,gpointer *ob) { pp_PageExtent *lo=(pp_PageExtent *)ob; PageExtent *pe=lo->pe; Dimension *d=DIMENSION(lo->tmargin); int v=int(dimension_get_pt(d)); pe->SetMargins(pe->leftmargin,pe->rightmargin,v,pe->bottommargin); g_signal_emit(G_OBJECT (ob),pp_pageextent_signals[CHANGED_SIGNAL], 0); } static void bmargin_changed(GtkWidget *wid,gpointer *ob) { pp_PageExtent *lo=(pp_PageExtent *)ob; PageExtent *pe=lo->pe; Dimension *d=DIMENSION(lo->bmargin); int v=int(dimension_get_pt(d)); pe->SetMargins(pe->leftmargin,pe->rightmargin,pe->topmargin,v); g_signal_emit(G_OBJECT (ob),pp_pageextent_signals[CHANGED_SIGNAL], 0); } static void setcustomsizewidgets(pp_PageExtent *lo) { lo->blocksignals=true; GPrinter *p=&lo->state->printer; int nw=0,mw=0,nh=0,mh=0; Debug[TRACE] << "Getting size limits..." << endl; p->GetSizeLimits(nw,mw,nh,mh); Debug[TRACE] << "Comparing min and max width:" << endl; if(nw==mw) { Debug[TRACE] << "No width adjustment possible..." << endl; gtk_widget_hide(lo->customwidth); gtk_widget_hide(lo->customwidthlabel); } else { Debug[TRACE] << "Allowing width adjustment..." << endl; gtk_widget_show(lo->customwidth); gtk_widget_show(lo->customwidthlabel); Debug[TRACE] << "Setting range to :" << nw << " -> " << mw << endl; dimension_set_range_pt(DIMENSION(lo->customwidth),nw,mw); dimension_set_pt(DIMENSION(lo->customwidth),p->pagewidth); } Debug[TRACE] << "Comparing min and max height:" << endl; if(nh==mh) { Debug[TRACE] << "No height adjustment possible..." << endl; gtk_widget_hide(lo->customheight); gtk_widget_hide(lo->customheightlabel); } else { Debug[TRACE] << "Allowing height adjustment..." << endl; gtk_widget_show(lo->customheight); gtk_widget_show(lo->customheightlabel); Debug[TRACE] << "Setting range to :" << nh << " -> " << mh << endl; dimension_set_range_pt(DIMENSION(lo->customheight),nh,mh); dimension_set_pt(DIMENSION(lo->customheight),p->pageheight); } lo->blocksignals=false; } static void pagesize_changed(GtkWidget *wid,gpointer *ob) { pp_PageExtent *lo=(pp_PageExtent *)ob; lo->state->layout->UpdatePageSize(); setcustomsizewidgets(lo); pp_pageextent_refresh(lo); g_signal_emit(G_OBJECT (lo),pp_pageextent_signals[CHANGED_SIGNAL], 0); } void pp_pageextent_refresh(pp_PageExtent *ob) { ob->blocksignals=true; dimension_set_pt(DIMENSION(ob->lmargin),ob->pe->leftmargin); dimension_set_pt(DIMENSION(ob->rmargin),ob->pe->rightmargin); dimension_set_pt(DIMENSION(ob->tmargin),ob->pe->topmargin); dimension_set_pt(DIMENSION(ob->bmargin),ob->pe->bottommargin); dimension_set_pt(DIMENSION(ob->customwidth),ob->pe->pagewidth); dimension_set_pt(DIMENSION(ob->customheight),ob->pe->pageheight); stpui_combo_refresh(STPUI_COMBO(ob->pagesize)); ob->blocksignals=false; } void pp_pageextent_set_unit(pp_PageExtent *ob,enum Units unit) { dimension_set_unit(DIMENSION(ob->lmargin),unit); dimension_set_unit(DIMENSION(ob->rmargin),unit); dimension_set_unit(DIMENSION(ob->tmargin),unit); dimension_set_unit(DIMENSION(ob->bmargin),unit); dimension_set_unit(DIMENSION(ob->customwidth),unit); dimension_set_unit(DIMENSION(ob->customheight),unit); } static void expander_callback (GObject *object, GParamSpec *param_spec, gpointer userdata) { pp_PageExtent *ob=PP_PAGEEXTENT(object); ob->state->SetInt("ExpanderState_PageExtent",gtk_expander_get_expanded (GTK_EXPANDER(ob))); } GtkWidget* pp_pageextent_new (PageExtent *pe,PhotoPrint_State *state) { pp_PageExtent *ob=PP_PAGEEXTENT(g_object_new (pp_pageextent_get_type (), NULL)); // gtk_box_set_spacing(GTK_BOX(ob),5); ob->pe=pe; ob->state=state; GtkWidget *hbox; GtkWidget *label; GtkWidget *vbox; enum Units unit=state->GetUnits(); // PageSize Selector // frame=gtk_expander_new(_("Page Size and Margins")); gtk_expander_set_expanded(GTK_EXPANDER(ob),state->FindInt("ExpanderState_PageExtent")); g_signal_connect(ob, "notify::expanded",G_CALLBACK (expander_callback), NULL); gtk_expander_set_label(GTK_EXPANDER(ob),_("Page Size and Margins")); // gtk_box_pack_start(GTK_BOX(ob),frame,FALSE,FALSE,0); // gtk_widget_show(frame); vbox=gtk_vbox_new(FALSE,0); gtk_widget_show(vbox); GtkWidget *table=gtk_table_new(4,4,false); gtk_table_set_row_spacings(GTK_TABLE(table),5); gtk_container_add(GTK_CONTAINER(ob),vbox); gtk_box_pack_start(GTK_BOX(vbox),table,FALSE,FALSE,8); ob->pagesize=stpui_combo_new(ob->state->printer.stpvars,"PageSize",NULL); g_signal_connect(G_OBJECT(ob->pagesize),"changed",G_CALLBACK(pagesize_changed),ob); gtk_table_attach_defaults(GTK_TABLE(table),GTK_WIDGET(ob->pagesize),0,4,0,1); gtk_widget_show(ob->pagesize); // Hack around Gutenprint locale problems setlocale(LC_ALL,""); // Custom page size ob->customwidthlabel=gtk_label_new(_("W:")); gtk_misc_set_alignment(GTK_MISC(ob->customwidthlabel),1.0,0.5); gtk_widget_show(ob->customwidthlabel); gtk_table_attach_defaults(GTK_TABLE(table),GTK_WIDGET(ob->customwidthlabel),0,1,1,2); ob->customwidth=dimension_new(0.0,10.0,unit); gtk_widget_show(ob->customwidth); gtk_table_attach_defaults(GTK_TABLE(table),GTK_WIDGET(ob->customwidth),1,2,1,2); ob->customheightlabel=gtk_label_new(_("H:")); gtk_widget_show(ob->customheightlabel); gtk_table_attach_defaults(GTK_TABLE(table),GTK_WIDGET(ob->customheightlabel),2,3,1,2); gtk_misc_set_alignment(GTK_MISC(ob->customheightlabel),1.0,0.5); ob->customheight=dimension_new(0.0,10.0,unit); gtk_widget_show(ob->customheight); gtk_table_attach_defaults(GTK_TABLE(table),GTK_WIDGET(ob->customheight),3,4,1,2); // LeftMargin spin button label=gtk_label_new(_("Left:")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_table_attach_defaults(GTK_TABLE(table),GTK_WIDGET(label),0,1,2,3); gtk_widget_show(label); ob->lmargin=dimension_new(0.0,300.0,unit); g_signal_connect(G_OBJECT(ob->lmargin),"value-changed",G_CALLBACK(lmargin_changed),ob); gtk_widget_show(ob->lmargin); gtk_table_attach_defaults(GTK_TABLE(table),GTK_WIDGET(ob->lmargin),1,2,2,3); // RightMargin spin button hbox=gtk_hbox_new(FALSE,0); label=gtk_label_new(_("Right:")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_table_attach_defaults(GTK_TABLE(table),GTK_WIDGET(label),2,3,2,3); gtk_widget_show(label); ob->rmargin=dimension_new(0.0,300.0,unit); g_signal_connect(G_OBJECT(ob->rmargin),"value-changed",G_CALLBACK(rmargin_changed),ob); gtk_widget_show(ob->rmargin); gtk_table_attach_defaults(GTK_TABLE(table),GTK_WIDGET(ob->rmargin),3,4,2,3); // TopMargin spin button label=gtk_label_new(_("Top:")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_table_attach_defaults(GTK_TABLE(table),GTK_WIDGET(label),0,1,3,4); gtk_widget_show(label); ob->tmargin=dimension_new(0.0,300.0,unit); g_signal_connect(G_OBJECT(ob->tmargin),"value-changed",G_CALLBACK(tmargin_changed),ob); gtk_widget_show(ob->tmargin); gtk_table_attach_defaults(GTK_TABLE(table),GTK_WIDGET(ob->tmargin),1,2,3,4); label=gtk_label_new(_("Bottom:")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_table_attach_defaults(GTK_TABLE(table),GTK_WIDGET(label),2,3,3,4); gtk_widget_show(label); ob->bmargin=dimension_new(0.0,300.0,unit); g_signal_connect(G_OBJECT(ob->bmargin),"value-changed",G_CALLBACK(bmargin_changed),ob); gtk_widget_show(ob->bmargin); gtk_table_attach_defaults(GTK_TABLE(table),GTK_WIDGET(ob->bmargin),3,4,3,4); gtk_widget_show(table); ob->state->layout->UpdatePageSize(); setcustomsizewidgets(ob); g_signal_connect(G_OBJECT(ob->customheight),"value-changed",G_CALLBACK(customheight_changed),ob); g_signal_connect(G_OBJECT(ob->customwidth),"value-changed",G_CALLBACK(customwidth_changed),ob); pp_pageextent_refresh(ob); return(GTK_WIDGET(ob)); } GType pp_pageextent_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo pp_pageextent_info = { sizeof (pp_PageExtentClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) pp_pageextent_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (pp_PageExtent), 0, (GInstanceInitFunc) pp_pageextent_init, }; stpuic_type = g_type_register_static (GTK_TYPE_EXPANDER, "pp_PageExtent", &pp_pageextent_info, (GTypeFlags)0); } return stpuic_type; } static void pp_pageextent_class_init (pp_PageExtentClass *klass) { pp_pageextent_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (klass), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_PageExtentClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void pp_pageextent_init (pp_PageExtent *ob) { ob->pe=NULL; ob->blocksignals=false; } int pp_pageextent_get_expander_state(pp_PageExtent *ob) { int result=0; if(gtk_expander_get_expanded(GTK_EXPANDER(ob))) result=1; return(result); } void pp_pageextent_set_expander_state(pp_PageExtent *ob,int state) { gtk_expander_set_expanded(GTK_EXPANDER(ob),state!=0); } photoprint-0.4.2-pre2/imageutils/0000777000175000017500000000000011400250524013732 500000000000000photoprint-0.4.2-pre2/imageutils/tiffsave.h0000644000175000017500000000157711324606540015650 00000000000000/* * tiffsave.cpp - class for saving an ImageSource to disk as a TIFF file. * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * * TODO: Add support for 16-bit output, and other colour-spaces * */ #ifndef TIFFSAVE_H #define TIFFSAVE_H #include #include "imagesource.h" #include "imagesaver.h" #define TIFFSAVE_STRIPHEIGHT 64 class TIFFSaver : public ImageSaver { public: TIFFSaver(const char *filename,ImageSource *is,bool deep=false,int bitsperpixel=0,int compression=COMPRESSION_NONE); virtual ~TIFFSaver(); virtual void Save(); private: int width,height; int bitsperpixel; bool deep; float xres; float yres; int stripheight; int stripsize; int bytesperrow; TIFF *file; unsigned char *tmpbuffer; struct ImageSource *imagesource; }; #endif photoprint-0.4.2-pre2/imageutils/jpegsave.h0000644000175000017500000000170311330700333015624 00000000000000/* * jpegsave.cpp - class for saving an ImageSource to disk as a JPEG file. * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #ifndef JPEGSAVE_H #define JPEGSAVE_H #include extern "C" { #ifdef WIN32 // Ugly hack to be compatible with the libjpeg62 shipped with GIMP. typedef unsigned char boolean; #define HAVE_BOOLEAN #endif #include #include } #include "imagesource.h" #include "imagesaver.h" struct JPEGSaver_ErrManager; class JPEGSaver : public ImageSaver { public: JPEGSaver(const char *filename,ImageSource *is,int compression=85); ~JPEGSaver(); void Save(); void EmbedProfile(CMSProfile *profile); private: struct ImageSource *imagesource; int width,height; int bytesperrow; struct jpeg_compress_struct *cinfo; unsigned char *tmpbuffer; struct JPEGSaver_ErrManager *err; }; #endif photoprint-0.4.2-pre2/imageutils/rotatepixbuf.h0000644000175000017500000000075011130232130016526 00000000000000#ifndef ROTATEPIXBUF_H #define ROTATEPIXBUF_H #include #ifndef GDK_PIXBUF_TRANSFORM_H #define gdk_pixbuf_rotate_simple pv_gdk_pixbuf_rotate_simple typedef enum { GDK_PIXBUF_ROTATE_NONE = 0, GDK_PIXBUF_ROTATE_COUNTERCLOCKWISE = 90, GDK_PIXBUF_ROTATE_UPSIDEDOWN = 180, GDK_PIXBUF_ROTATE_CLOCKWISE = 270 } GdkPixbufRotation; #endif GdkPixbuf * pv_gdk_pixbuf_rotate_simple (const GdkPixbuf *src, GdkPixbufRotation angle); #endif photoprint-0.4.2-pre2/imageutils/maskpixbuf.h0000644000175000017500000000033711130232130016164 00000000000000#ifndef MASKPIXBUF_H #define MASKPIXBUF_H #include void maskpixbuf(GdkPixbuf *img,int xpos,int ypos,int width,int height,const GdkPixbuf *mask, int redbg8=255,int greenbg8=255,int bluebg8=255); #endif photoprint-0.4.2-pre2/imageutils/Makefile.in0000644000175000017500000003625311400237522015727 00000000000000# Makefile.in generated by automake 1.10.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 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@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@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 = imageutils DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/scripts/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libimageutils_la_LIBADD = am_libimageutils_la_OBJECTS = maskpixbuf.lo rotatepixbuf.lo \ cachedimage.lo jpegsave.lo tiffsave.lo libimageutils_la_OBJECTS = $(am_libimageutils_la_OBJECTS) libimageutils_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(libimageutils_la_LDFLAGS) $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/scripts/depcomp am__depfiles_maybe = depfiles CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) CXXLD = $(CXX) CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ SOURCES = $(libimageutils_la_SOURCES) DIST_SOURCES = $(libimageutils_la_SOURCES) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DSYMUTIL = @DSYMUTIL@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ GDKPIXBUF2_CFLAGS = @GDKPIXBUF2_CFLAGS@ GDKPIXBUF2_LIBS = @GDKPIXBUF2_LIBS@ GETOPT_LIBS = @GETOPT_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIB2_CFLAGS = @GLIB2_CFLAGS@ GLIB2_LIBS = @GLIB2_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GP_CFLAGS = @GP_CFLAGS@ GP_LIBS = @GP_LIBS@ GREP = @GREP@ GTHREAD_CFLAGS = @GTHREAD_CFLAGS@ GTHREAD_LIBS = @GTHREAD_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ JPEG_LIBS = @JPEG_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ LCMS_LIBS = @LCMS_LIBS@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBM_LIBS = @LIBM_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NMEDIT = @NMEDIT@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ POSUB = @POSUB@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ TIFF_LIBS = @TIFF_LIBS@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ 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@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ 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@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CXXFLAGS = -Wall -I../imagesource/ -I../pixbufthumbnail -I../profilemanager -I../support $(LCMS_CFLAGS) $(GTK2_CFLAGS) ${PNM_CFLAGS} noinst_LTLIBRARIES = libimageutils.la libimageutils_la_SOURCES = \ maskpixbuf.cpp \ maskpixbuf.h \ rotatepixbuf.cpp \ rotatepixbuf.h \ \ cachedimage.cpp \ cachedimage.h \ \ imagesaver.h \ jpegsave.cpp \ jpegsave.h \ tiffsave.cpp \ tiffsave.h libimageutils_la_LDFLAGS = -static all: all-am .SUFFIXES: .SUFFIXES: .cpp .lo .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 \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign imageutils/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign imageutils/Makefile .PRECIOUS: 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 clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libimageutils.la: $(libimageutils_la_OBJECTS) $(libimageutils_la_DEPENDENCIES) $(libimageutils_la_LINK) $(libimageutils_la_OBJECTS) $(libimageutils_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cachedimage.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/jpegsave.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/maskpixbuf.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rotatepixbuf.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tiffsave.Plo@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here 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 $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$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: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: 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: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_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-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-dvi: install-dvi-am 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 installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ 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 mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am # 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: photoprint-0.4.2-pre2/imageutils/imagesaver.h0000644000175000017500000000060211324606766016162 00000000000000#ifndef IMAGESAVER_H #define IMAGESAVER_H #include "progress.h" // Base class interface for saving images class ImageSaver { public: ImageSaver() : progress(NULL) { } virtual ~ImageSaver() { } virtual void SetProgress(Progress *p) { progress=p; } virtual void Save() { throw "Save() should be overridden by subclass!"; } protected: Progress *progress; }; #endif photoprint-0.4.2-pre2/imageutils/jpegsave.cpp0000644000175000017500000001172011331002603016153 00000000000000/* * jpegsave.cpp - class for saving an ImageSource to disk as a JPEG file. * * Copyright (c) 2007 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * * */ #include #include #include #include #include #include "debug.h" #include "lcmswrapper.h" #include "imagesource_flatten.h" #include "iccjpeg.h" #include "jpegsave.h" #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "gettext.h" #define _(x) gettext(x) using namespace std; struct JPEGSaver_ErrManager { struct jpeg_error_mgr std; FILE *file; }; static void isjpeg_error_exit (j_common_ptr cinfo) { char buffer[JMSG_LENGTH_MAX]; JPEGSaver_ErrManager *myerr = (JPEGSaver_ErrManager *) cinfo->err; cinfo->err->output_message(cinfo); cinfo->err->format_message(cinfo,buffer); cerr << buffer << endl; fclose(myerr->file); exit(1); } JPEGSaver::~JPEGSaver() { if(err) { if(err->file) fclose(err->file); delete err; } if(cinfo) { jpeg_destroy_compress((jpeg_compress_struct *)cinfo); delete cinfo; } if(tmpbuffer) free(tmpbuffer); } void JPEGSaver::Save() { if(err->file) { int i; unsigned char *dst; ISDataType *src; for(int row=0;rowDoProgress(row,height)) return; } dst=tmpbuffer; src=imagesource->GetRow(row); switch(imagesource->type) { case IS_TYPE_RGB: for(i=0;i255) t=255; if(t<0) t=0; dst[i]=t; } break; default: for(i=0;i255) t=255; if(t<0) t=0; dst[i]=t; } break; } JSAMPROW rowptr[1]={tmpbuffer}; jpeg_write_scanlines(cinfo, rowptr, 1); } if(progress) progress->DoProgress(height,height); jpeg_finish_compress(cinfo); jpeg_destroy_compress(cinfo); delete cinfo; cinfo=NULL; } } void JPEGSaver::EmbedProfile(CMSProfile *profile) { if(!profile) return; if(!cinfo) throw "JPEGSaver: cinfo already freed!"; FILE* f; size_t size, EmbedLen; JOCTET *EmbedBuffer; const char *fn=profile->GetFilename(); if(!fn) return; if(!(f = fopen(fn, "rb"))) return; fseek(f,0,SEEK_END); size=ftell(f); fseek(f,0,SEEK_SET); cerr << "Profile " << fn << " is " << size << "bytes." << endl; EmbedBuffer = (JOCTET *) malloc(size + 1); EmbedLen = fread(EmbedBuffer, 1, size, f); fclose(f); EmbedBuffer[EmbedLen] = 0; write_icc_profile(cinfo,EmbedBuffer,EmbedLen); free(EmbedBuffer); } JPEGSaver::JPEGSaver(const char *filename,struct ImageSource *is,int compression) : ImageSaver(), imagesource(is), cinfo(NULL), tmpbuffer(NULL) { if(STRIP_ALPHA(is->type)==IS_TYPE_BW) throw _("JPEG Saver only supports greyscale and colour images!"); // if(STRIP_ALPHA(is->type)==IS_TYPE_CMYK) // throw _("Saving CMYK JPEGs not (yet) supported"); if(HAS_ALPHA(is->type)) is=new ImageSource_Flatten(is); this->width=is->width; this->height=is->height; cinfo=new jpeg_compress_struct; err=new JPEGSaver_ErrManager; memset(cinfo,0,sizeof(jpeg_compress_struct)); memset(err,0,sizeof(JPEGSaver_ErrManager)); cinfo->err = jpeg_std_error(&err->std); err->std.error_exit = isjpeg_error_exit; if((err->file = fopen(filename,"wb")) == NULL) throw _("Can't open file for saving"); cerr << "File " << filename << " opened" << endl; jpeg_create_compress(cinfo); jpeg_stdio_dest(cinfo, err->file); cinfo->image_width=is->width; cinfo->image_height=is->height; switch(is->type) { case IS_TYPE_RGB: cinfo->input_components=3; cinfo->in_color_space = JCS_RGB; jpeg_set_defaults(cinfo); break; case IS_TYPE_GREY: cinfo->input_components=1; cinfo->in_color_space = JCS_GRAYSCALE; jpeg_set_defaults(cinfo); break; case IS_TYPE_CMYK: cinfo->input_components=4; cinfo->in_color_space = JCS_CMYK; cinfo->jpeg_color_space = JCS_YCCK; jpeg_set_defaults(cinfo); jpeg_set_colorspace(cinfo, JCS_YCCK); cinfo->write_JFIF_header=TRUE; // HACK to force resolution to be saved. // Not strictly correct, since JFIF files can't be CMYK. // LCMS's jpegicc does this too (though probably not deliberately!) break; default: throw _("JPEG Saver can currently only save RGB or Greyscale images."); break; } jpeg_set_quality(cinfo,compression,TRUE); cinfo->density_unit=1; cinfo->X_density=is->xres; cinfo->Y_density=is->yres; Debug[TRACE] << "JPEGSaver: Set xres to " << cinfo->X_density << endl; Debug[TRACE] << "JPEGSaver: Set yres to " << cinfo->Y_density << endl; jpeg_start_compress(cinfo,TRUE); if(is->GetEmbeddedProfile()) EmbedProfile(is->GetEmbeddedProfile()); bytesperrow = width*is->samplesperpixel; if(!(tmpbuffer=(unsigned char *)malloc(bytesperrow))) throw "No memory for tmpbuffer"; } photoprint-0.4.2-pre2/imageutils/tiffsave.cpp0000644000175000017500000001350211371621426016174 00000000000000/* * tiffsave.cpp - class for saving an ImageSource to disk as a TIFF file. * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * * TODO: Add support for 16-bit output, and other colour-spaces * */ #include #include #include #include #include #include "lcmswrapper.h" #include "tiffsave.h" using namespace std; TIFFSaver::~TIFFSaver() { if(file) { TIFFWriteDirectory(file); TIFFClose(file); } if(tmpbuffer) free(tmpbuffer); } void TIFFSaver::Save() { if(file) { int firstrow,i; unsigned char *dst; ISDataType *src; for(firstrow=0;firstrow(height)) lastrow=height; for(row=firstrow;rowDoProgress(row,height)) return; } dst=tmpbuffer+(row-firstrow)*(deep ? bytesperrow*2 : bytesperrow); src=imagesource->GetRow(row); switch(bitsperpixel) { case 1: // 1 bit per sample - pack 8 samples into each byte. for(i=0;i8 ? 7 : width-(i+1); for(j=0;j<=l;++j) { t=int(src[i+l-j]); t2>>=1; t2|=t&0x8000; } dst[i/8]=t2; } break; default: if(deep) // Save with 16 bits per sample? { unsigned short *dst16=(unsigned short *)dst; for(i=0;i255) t=255; if(t<0) t=0; dst[i]=t; } } break; } } TIFFWriteEncodedStrip(file, firstrow/stripheight, tmpbuffer, stripsize); } if(progress) progress->DoProgress(height,height); } } static void EmbedProfile(TIFF* Out,CMSProfile *profile) { if(!profile) return; FILE* f; size_t size, EmbedLen; char *EmbedBuffer; const char *fn=profile->GetFilename(); if(!fn) return; if(!(f = fopen(fn, "rb"))) return; fseek(f,0,SEEK_END); size=ftell(f); fseek(f,0,SEEK_SET); cerr << "Profile " << fn << " is " << size << "bytes." << endl; EmbedBuffer = (char *) malloc(size + 1); EmbedLen = fread(EmbedBuffer, 1, size, f); fclose(f); EmbedBuffer[EmbedLen] = 0; TIFFSetField(Out, TIFFTAG_ICCPROFILE, EmbedLen, EmbedBuffer); free(EmbedBuffer); } TIFFSaver::TIFFSaver(const char *filename,struct ImageSource *is,bool deep,int bpp,int compression) : ImageSaver(), deep(deep), imagesource(is) { switch(is->type) { case IS_TYPE_BW: bitsperpixel=1; break; default: bitsperpixel=is->samplesperpixel*8; break; } if(bpp && (bpp!=bitsperpixel)) { if((bitsperpixel!=8)||(bpp!=1)) throw "Currently only 8-bit -> 1-bit conversion is supported."; } this->width=is->width; this->height=is->height; this->xres=is->xres; this->yres=is->yres; stripheight=TIFFSAVE_STRIPHEIGHT; tmpbuffer=NULL; if(!(file = TIFFOpen(filename, "w"))) { throw "Can't open file"; } switch(bitsperpixel) { case 40: if(HAS_ALPHA(is->type)) { TIFFSetField(file, TIFFTAG_PHOTOMETRIC, PHOTOMETRIC_SEPARATED); TIFFSetField(file, TIFFTAG_SAMPLESPERPIXEL, 5); TIFFSetField(file, TIFFTAG_PLANARCONFIG, PLANARCONFIG_CONTIG); TIFFSetField(file, TIFFTAG_BITSPERSAMPLE, deep ? 16 : 8); } else throw "DeviceN TIFF output is not yet complete"; break; case 32: if(HAS_ALPHA(is->type)) { TIFFSetField(file, TIFFTAG_PHOTOMETRIC, PHOTOMETRIC_RGB); TIFFSetField(file, TIFFTAG_SAMPLESPERPIXEL, 4); TIFFSetField(file, TIFFTAG_PLANARCONFIG, PLANARCONFIG_CONTIG); TIFFSetField(file, TIFFTAG_BITSPERSAMPLE, deep ? 16 : 8); } else { TIFFSetField(file, TIFFTAG_PHOTOMETRIC, PHOTOMETRIC_SEPARATED); TIFFSetField(file, TIFFTAG_SAMPLESPERPIXEL, 4); TIFFSetField(file, TIFFTAG_PLANARCONFIG, PLANARCONFIG_CONTIG); TIFFSetField(file, TIFFTAG_INKSET, INKSET_CMYK); TIFFSetField(file, TIFFTAG_BITSPERSAMPLE, deep ? 16 : 8); } break; case 24: TIFFSetField(file, TIFFTAG_PHOTOMETRIC, PHOTOMETRIC_RGB); TIFFSetField(file, TIFFTAG_SAMPLESPERPIXEL, 3); TIFFSetField(file, TIFFTAG_PLANARCONFIG, PLANARCONFIG_CONTIG); TIFFSetField(file, TIFFTAG_BITSPERSAMPLE, deep ? 16 : 8); break; case 8: TIFFSetField(file, TIFFTAG_PHOTOMETRIC, PHOTOMETRIC_MINISWHITE); TIFFSetField(file, TIFFTAG_SAMPLESPERPIXEL, 1); TIFFSetField(file, TIFFTAG_PLANARCONFIG, PLANARCONFIG_CONTIG); TIFFSetField(file, TIFFTAG_BITSPERSAMPLE, deep ? 16 : 8); break; case 1: TIFFSetField(file, TIFFTAG_PHOTOMETRIC, PHOTOMETRIC_MINISWHITE); TIFFSetField(file, TIFFTAG_SAMPLESPERPIXEL, 1); TIFFSetField(file, TIFFTAG_PLANARCONFIG, PLANARCONFIG_CONTIG); TIFFSetField(file, TIFFTAG_BITSPERSAMPLE, 1); break; default: fprintf(stderr,"FIXME: unsupported bitspersample: %d\n",bitsperpixel); TIFFClose(file); throw "Unsupported image type"; break; } TIFFSetField(file, TIFFTAG_IMAGEWIDTH, width); TIFFSetField(file, TIFFTAG_IMAGELENGTH, height); TIFFSetField(file, TIFFTAG_ROWSPERSTRIP, stripheight); double xr=xres; double yr=yres; TIFFSetField(file, TIFFTAG_XRESOLUTION, xr); TIFFSetField(file, TIFFTAG_YRESOLUTION, yr); TIFFSetField(file, TIFFTAG_RESOLUTIONUNIT, RESUNIT_INCH); TIFFSetField(file, TIFFTAG_COMPRESSION, compression); if(is->GetEmbeddedProfile()) EmbedProfile(file,is->GetEmbeddedProfile()); stripsize = TIFFStripSize(file); bytesperrow = (width*bitsperpixel+7)/8; if(!(tmpbuffer=(unsigned char *)malloc(stripsize))) { TIFFClose(file); throw "No memory for tmpbuffer"; } } photoprint-0.4.2-pre2/imageutils/cachedimage.cpp0000644000175000017500000000560511400177721016601 00000000000000#include #include "profilemanager/lcmswrapper.h" #include "support/debug.h" #include "cachedimage.h" using namespace std; CachedImage_Deferred::CachedImage_Deferred(ImageSource *source) : source(source), width(source->width), height(source->height), samplesperpixel(source->samplesperpixel), type(source->type), embeddedprofile(NULL), xres(source->xres), yres(source->yres) { Debug[TRACE] << "In CachedImage_Deferred constructor" << endl; Debug[TRACE] << "Image type: " << type << ", width: " << width << ", height: " << height << endl; Debug[TRACE] << "(" << source->type << ")" << endl; try { imagedata=new ISDataType[width*height*samplesperpixel]; } catch (bad_alloc&) { throw "Can't allocate pixel buffer"; } CMSProfile *prof=source->GetEmbeddedProfile(); if(prof) embeddedprofile=new CMSProfile(*prof); } CachedImage_Deferred::~CachedImage_Deferred() { if(imagedata) delete[] imagedata; if(source); delete source; if(embeddedprofile) delete embeddedprofile; } void CachedImage_Deferred::ReadImage(Progress *prog) { Debug[TRACE] << "CachedImage: ReadImage()" << endl; if(!source) throw "CachedImage_Deferred::ReadImage - source is NULL"; // Displaying the progress meter can be expensive, // so we only update it often enough to reflect single // percentage steps. int progressmodulo=height/100; if(progressmodulo==0) progressmodulo=1; bool cont=true; for(int row=0;rowDoProgress(row,height); } if(source) delete source; source=NULL; } void CachedImage_Deferred::ReadRow(int row) { ISDataType *srcdata=source->GetRow(row); ISDataType *dstdata=GetRow(row); int spr=width*samplesperpixel; for(int s=0;s=height) row=height-1; if(row<0) row=0; return(imagedata+row*width*samplesperpixel); } ISDeviceNValue CachedImage_Deferred::GetPixel(int x, int y) { ISDeviceNValue result(samplesperpixel); ISDataType *row=GetRow(y); if(x<0) x=0; if(x>=width) x=width-1; row+=x*samplesperpixel; for(int s=0;swidth; height=img->height; xres=img->xres; yres=img->yres; samplesperpixel=img->samplesperpixel; type=img->type; cerr << "Image type: " << type << endl; randomaccess=true; if(img->embeddedprofile) { CMSProfile *prof=new CMSProfile(*img->embeddedprofile); SetEmbeddedProfile(prof,true); } } ImageSource_CachedImage::~ImageSource_CachedImage() { } ISDataType *ImageSource_CachedImage::GetRow(int row) { return(image->GetRow(row)); } photoprint-0.4.2-pre2/imageutils/cachedimage.h0000644000175000017500000000347611377274014016260 00000000000000#ifndef CACHEDIMAGE_H #define CACHEDIMAGE_H #include #include "progress.h" #include "imagesource/imagesource.h" // CachedImage_Deferred - the base class for cached images. Sets up the width, height, type, etc. // and allocated storage, but doesn't actually read the data from the ImageSource until asked. // ReadImage() reads and caches the entire image. // ReadRow() reads and caches a single row. // Generally you won't use this except with ImageSource_Tee. class CachedImage_Deferred { public: CachedImage_Deferred(ImageSource *source); virtual ~CachedImage_Deferred(); virtual void ReadImage(Progress *prog=NULL); virtual void ReadRow(int row); virtual ISDataType *GetRow(int row); virtual ImageSource *GetImageSource(); virtual ISDeviceNValue GetPixel(int x, int y); protected: ImageSource *source; int width, height; int samplesperpixel; IS_TYPE type; ISDataType *imagedata; CMSProfile *embeddedprofile; double xres,yres; friend class ImageSource_CachedImage; friend class ImageSource_Tee; }; // Convenience subclass, this variant completely builds and processes the Cached Image immediately. class CachedImage : public CachedImage_Deferred { public: CachedImage(ImageSource *source, Progress *prog=NULL) : CachedImage_Deferred(source) { ReadImage(prog); } virtual ~CachedImage() { } protected: }; // The GetImageSource member function of the CachedImage classes will return one of these. // Unlike most imagesources, this one claims no ownership of the source data, so you can // have as many operating concurrently and as many times on the Cached image as you like. class ImageSource_CachedImage : public ImageSource { public: ImageSource_CachedImage(CachedImage_Deferred *img); ~ImageSource_CachedImage(); ISDataType *GetRow(int row); protected: CachedImage_Deferred *image; }; #endif photoprint-0.4.2-pre2/imageutils/Makefile.am0000644000175000017500000000065611324606443015723 00000000000000AM_CXXFLAGS = -Wall -I../imagesource/ -I../pixbufthumbnail -I../profilemanager -I../support $(LCMS_CFLAGS) $(GTK2_CFLAGS) ${PNM_CFLAGS} noinst_LTLIBRARIES = libimageutils.la libimageutils_la_SOURCES = \ maskpixbuf.cpp \ maskpixbuf.h \ rotatepixbuf.cpp \ rotatepixbuf.h \ \ cachedimage.cpp \ cachedimage.h \ \ imagesaver.h \ jpegsave.cpp \ jpegsave.h \ tiffsave.cpp \ tiffsave.h libimageutils_la_LDFLAGS = -static photoprint-0.4.2-pre2/imageutils/maskpixbuf.cpp0000644000175000017500000000501211130232130016512 00000000000000#include #include #include "rotatepixbuf.h" #include "maskpixbuf.h" using namespace std; #define OFFSET(pb, x, y) ((x) * (gdk_pixbuf_get_n_channels(pb)) + (y) * gdk_pixbuf_get_rowstride(pb)) void maskpixbuf(GdkPixbuf *img,int xpos,int ypos,int width,int height,const GdkPixbuf *mask, int redbg8,int greenbg8,int bluebg8) { int bpp=gdk_pixbuf_get_n_channels(img); if(bpp==1) redbg8=(redbg8+greenbg8+bluebg8)/3; if(bpp>4) throw "maskpixbuf: More than 4 samples per pixel not supported!"; int background[4]; background[0]=redbg8; background[1]=greenbg8; background[2]=bluebg8; background[3]=255; GdkPixbuf *scaledmask; if((width #include "rotatepixbuf.h" /* HACK * HACK * HACK This function was pulled in from GdkPixBuf CVS as a stop-gap, since the rotate function within won't get widespread exposure until Gtk+-2.6 is released. The function has been adjusted to cope with _GdkPixbuf being opaque - direct accesses have been replaced with the appropriate accessor functions. If GDK_PIXBUF_ROTATE_COUNTERCLOCKWISE is defined, then the built-in function will be used instead of this one. Probably a year down the line, this can be removed and no-one will notice. */ /** * gdk_pixbuf_rotate_simple: * @src: a #GdkPixbuf * @angle: the angle to rotate by * * Rotates a pixbuf by a multiple of 90 degrees, and returns the * result in a new pixbuf. * * Returns: a new pixbuf * * Since: 2.6 */ #define OFFSET(pb, x, y) ((x) * (gdk_pixbuf_get_n_channels(pb)) + (y) * gdk_pixbuf_get_rowstride(pb)) GdkPixbuf * pv_gdk_pixbuf_rotate_simple (const GdkPixbuf *src, GdkPixbufRotation angle) { GdkPixbuf *dest; guchar *p, *q; gint x, y; int srcwidth=gdk_pixbuf_get_width(src); int srcheight=gdk_pixbuf_get_height(src); switch (angle % 360) { case 0: dest = gdk_pixbuf_copy (src); break; case 90: dest = gdk_pixbuf_new (gdk_pixbuf_get_colorspace(src), gdk_pixbuf_get_has_alpha(src), gdk_pixbuf_get_bits_per_sample(src), srcheight,srcwidth); if (!dest) return NULL; for (y = 0; y < srcheight; y++) { for (x = 0; x < srcwidth; x++) { p = gdk_pixbuf_get_pixels(src) + OFFSET (src, x, y); q = gdk_pixbuf_get_pixels(dest) + OFFSET (dest, y, srcwidth - x - 1); memcpy (q, p, gdk_pixbuf_get_n_channels(dest)); } } break; case 180: dest = gdk_pixbuf_new (gdk_pixbuf_get_colorspace(src), gdk_pixbuf_get_has_alpha(src), gdk_pixbuf_get_bits_per_sample(src), srcwidth,srcheight); if (!dest) return NULL; for (y = 0; y < srcheight; y++) { for (x = 0; x < srcwidth; x++) { p = gdk_pixbuf_get_pixels(src) + OFFSET (src, x, y); q = gdk_pixbuf_get_pixels(dest) + OFFSET (dest, srcwidth - x - 1, srcheight - y - 1); memcpy (q, p, gdk_pixbuf_get_n_channels(dest)); } } break; case 270: dest = gdk_pixbuf_new (gdk_pixbuf_get_colorspace(src), gdk_pixbuf_get_has_alpha(src), gdk_pixbuf_get_bits_per_sample(src), srcheight,srcwidth); if (!dest) return NULL; for (y = 0; y < srcheight; y++) { for (x = 0; x < srcwidth; x++) { p = gdk_pixbuf_get_pixels(src) + OFFSET (src, x, y); q = gdk_pixbuf_get_pixels(dest) + OFFSET (dest, srcheight - y - 1, x); memcpy (q, p, gdk_pixbuf_get_n_channels(dest)); } } break; default: dest = NULL; g_warning ("gdk_pixbuf_rotate_simple() can only rotate " "by multiples of 90 degrees"); g_assert_not_reached (); } return dest; } /* BORROWED FUNCTION ENDS */ photoprint-0.4.2-pre2/pp_mainwindow.cpp0000644000175000017500000001506111306464247015103 00000000000000#include #include #include #include #include #include #include #include #include #include #include #include #include #include "stpui_widgets/stpui_combo.h" #include "progressbar.h" #include "support/pathsupport.h" #include "layout.h" #include "dialogs.h" #include "miscwidgets/generaldialogs.h" #include "pixbufthumbnail/egg-pixbuf-thumbnail.h" #include "effects/effects_dialog.h" #include "pp_menu_file.h" #include "pp_menu_edit.h" #include "pp_menu_layout.h" #include "pp_menu_image.h" #include "pp_menu_options.h" #include "pp_menu_shortcuts.h" #include "pp_menu_help.h" #include "config.h" #include "gettext.h" #define _(x) gettext(x) #include "pp_mainwindow.h" enum { CHANGED_SIGNAL, LAST_SIGNAL }; static guint pp_mainwindow_signals[LAST_SIGNAL] = { 0 }; static void pp_mainwindow_class_init (pp_MainWindowClass *klass); static void pp_mainwindow_init (pp_MainWindow *stpuicombo); static void layout_changed(GtkWidget *wid,gpointer *ob); // Functions invoked from the menus: static void layout_selection_changed(GtkWidget *wid,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; PP_ROTATION rotation=ImageMenu_GetRotation(mw->uim); bool allowcropping=ImageMenu_GetCropFlag(mw->uim); bool removeimage=true; LayoutIterator it(*mw->state->layout); Layout_ImageInfo *ii=it.FirstSelected(); if(ii) { allowcropping=ii->allowcropping; rotation=ii->rotation; } else removeimage=false; while(ii) { if(rotation!=ii->rotation) rotation=PP_ROTATION_NONE; allowcropping&=ii->allowcropping; ii=it.NextSelected(); } ImageMenu_SetCropFlag(mw->uim,allowcropping); ImageMenu_SetRotation(mw->uim,rotation); } static void layout_popupmenu(GtkWidget *wid,gpointer *ob) { layout_selection_changed(NULL,ob); pp_MainWindow *mw=(pp_MainWindow *)ob; ImageMenu_DoPopup(mw->uim); } static void layout_changed(GtkWidget *wid,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; if(mw->layout) mw->state->layout->RefreshWidget(mw->layout); } void pp_mainwindow_refresh(pp_MainWindow *ob) { if(ob->layout) ob->state->layout->RefreshWidget(ob->layout); LayoutMenu_SetLayout(ob->uim,ob->state->layout->GetType()); } GtkWidget* pp_mainwindow_new (PhotoPrint_State *state) { pp_MainWindow *ob=PP_MAINWINDOW(g_object_new (pp_mainwindow_get_type (), NULL)); gtk_window_set_title (GTK_WINDOW (ob), PACKAGE_STRING); gtk_window_set_default_size(GTK_WINDOW(ob),state->FindInt("Win_W"),state->FindInt("Win_H")); gtk_window_move(GTK_WINDOW(ob),state->FindInt("Win_X"),state->FindInt("Win_Y")); ob->state=state; ob->vbox=gtk_vbox_new(FALSE,0); gtk_container_add(GTK_CONTAINER(ob),ob->vbox); gtk_widget_show(ob->vbox); GtkWidget *menubar; GtkAccelGroup *accel_group; ob->uim = gtk_ui_manager_new (); BuildFileMenu(ob,ob->uim); BuildEditMenu(ob,ob->uim); BuildLayoutMenu(ob,ob->uim); BuildImageMenu(ob,ob->uim); BuildOptionsMenu(ob,ob->uim); BuildShortcutsMenu(ob,ob->uim); BuildHelpMenu(ob,ob->uim); accel_group = gtk_ui_manager_get_accel_group (ob->uim); gtk_window_add_accel_group (GTK_WINDOW (ob), accel_group); GtkWidget *tmp; tmp=gtk_ui_manager_get_widget(ob->uim,"/MainMenu/EditMenu/Cut"); gtk_widget_set_sensitive(tmp,false); tmp=gtk_ui_manager_get_widget(ob->uim,"/MainMenu/EditMenu/Copy"); gtk_widget_set_sensitive(tmp,false); tmp=gtk_ui_manager_get_widget(ob->uim,"/MainMenu/EditMenu/Paste"); gtk_widget_set_sensitive(tmp,false); menubar = gtk_ui_manager_get_widget (ob->uim, "/MainMenu"); gtk_box_pack_start(GTK_BOX(ob->vbox),menubar,FALSE,TRUE,0); gtk_widget_show(menubar); if((ob->layout=state->layout->CreateWidget())) { gtk_box_pack_start(GTK_BOX(ob->vbox),ob->layout,TRUE,TRUE,0); gtk_widget_show(ob->layout); g_signal_connect(G_OBJECT(ob->layout),"changed",G_CALLBACK(layout_changed),ob); g_signal_connect(G_OBJECT(ob->layout),"popupmenu",G_CALLBACK(layout_popupmenu),ob); g_signal_connect(G_OBJECT(ob->layout),"selection_changed",G_CALLBACK(layout_selection_changed),ob); } int caps=ob->state->layout->GetCapabilities(); ImageMenu_SetLayoutCapabilities(ob->uim,caps); LayoutMenu_SetLayoutCapabilities(ob->uim,caps); OptionsMenu_SetHighresPreviews(ob->uim,state->FindInt("HighresPreviews")); OptionsMenu_SetProofMode(ob->uim,CMProofMode(state->profilemanager.FindInt("ProofMode"))); pp_mainwindow_refresh(ob); return(GTK_WIDGET(ob)); } GType pp_mainwindow_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo pp_mainwindow_info = { sizeof (pp_MainWindowClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) pp_mainwindow_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (pp_MainWindow), 0, (GInstanceInitFunc) pp_mainwindow_init, }; stpuic_type = g_type_register_static (GTK_TYPE_WINDOW, "pp_MainWindow", &pp_mainwindow_info, (GTypeFlags)0); } return stpuic_type; } static void pp_mainwindow_class_init (pp_MainWindowClass *klass) { pp_mainwindow_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (klass), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_MainWindowClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void pp_mainwindow_init (pp_MainWindow *ob) { ob->state=NULL; ob->layout=NULL; ob->prevfile=NULL; } void pp_mainwindow_rebuild(pp_MainWindow *mw) { try { ProgressBar p(_("Transferring images..."),true,GTK_WIDGET(mw)); if(mw->state->NewLayout(&p)) { gtk_widget_destroy(mw->layout); if((mw->layout=mw->state->layout->CreateWidget())) { gtk_box_pack_start(GTK_BOX(mw->vbox),mw->layout,TRUE,TRUE,0); gtk_widget_show(mw->layout); g_signal_connect(G_OBJECT(mw->layout),"changed",G_CALLBACK(layout_changed),mw); g_signal_connect(G_OBJECT(mw->layout),"popupmenu",G_CALLBACK(layout_popupmenu),mw); g_signal_connect(G_OBJECT(mw->layout),"selection_changed",G_CALLBACK(layout_selection_changed),mw); } mw->state->layout->FlushThumbnails(); } int caps=mw->state->layout->GetCapabilities(); ImageMenu_SetLayoutCapabilities(mw->uim,caps); LayoutMenu_SetLayoutCapabilities(mw->uim,caps); OptionsMenu_SetHighresPreviews(mw->uim,mw->state->FindInt("HighresPreviews")); OptionsMenu_SetProofMode(mw->uim,CMProofMode(mw->state->profilemanager.FindInt("ProofMode"))); pp_mainwindow_refresh(mw); } catch(const char *err) { ErrorMessage_Dialog(err); } } photoprint-0.4.2-pre2/printpreview.h0000644000175000017500000000017411264217344014427 00000000000000#ifndef PRINTPREVIEW_H #define PRINTPREVIEW_H void PrintPreview_Dialog(GtkWindow *parent,PhotoPrint_State &state); #endif photoprint-0.4.2-pre2/layoutdb.h0000644000175000017500000000307411266365717013530 00000000000000#ifndef LAYOUT_DB_H #define LAYOUT_DB_H #include #include "support/debug.h" #include "support/configdb.h" using namespace std; class Layout_NUpDB : public ConfigDB { public: Layout_NUpDB(ConfigFile *inif,const char *section) : ConfigDB(Template) { new ConfigDBHandler(inif,section,this); } private: static ConfigTemplate Template[]; }; class Layout_SingleDB : public ConfigDB { public: Layout_SingleDB(ConfigFile *inif,const char *section) : ConfigDB(Template) { new ConfigDBHandler(inif,section,this); } private: static ConfigTemplate Template[]; }; class Layout_PosterDB : public ConfigDB { public: Layout_PosterDB(ConfigFile *inif,const char *section) : ConfigDB(Template) { new ConfigDBHandler(inif,section,this); } private: static ConfigTemplate Template[]; }; class Layout_CarouselDB : public ConfigDB { public: Layout_CarouselDB(ConfigFile *inif,const char *section) : ConfigDB(Template) { new ConfigDBHandler(inif,section,this); } private: static ConfigTemplate Template[]; }; class LayoutDB : public ConfigDB { public: LayoutDB(ConfigFile *inif,const char *section) : ConfigDB(Template), nupdb(inif,"[Layout_NUp]"), singledb(inif,"[Layout_Single]"), posterdb(inif,"[Layout_Poster]"), carouseldb(inif,"[Layout_Carousel]") { Debug[TRACE] << "In LayoutDB constructor" << endl; new ConfigDBHandler(inif,section,this); } // Add DBs for each layout type here Layout_NUpDB nupdb; Layout_SingleDB singledb; Layout_PosterDB posterdb; Layout_CarouselDB carouseldb; protected: static ConfigTemplate Template[]; }; #endif photoprint-0.4.2-pre2/layout_poster.cpp0000644000175000017500000002636311400247332015135 00000000000000/* * layout_poster.cpp - Has responsibility for tracking the list of images and their layout. * Also has responsibility for building the ImageSource stack at print time. * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * * */ #include #include #include "support/debug.h" #include "support/layoutrectangle.h" #include "miscwidgets/generaldialogs.h" #include "dialogs.h" #include "pixbufthumbnail/egg-pixbuf-thumbnail.h" #include "imageutils/rotatepixbuf.h" #include "imagesource/imagesource_util.h" #include "imagesource/imagesource_crop.h" #include "imagesource/imagesource_rotate.h" #include "imagesource/imagesource_util.h" #include "imagesource/imagesource_flatten.h" #include "imagesource/imagesource_montage.h" #include "imagesource/imagesource_solid.h" #include "photoprint_state.h" #include "pp_layout_poster.h" #include "pp_layout_poster_pageview.h" #include "layout_poster.h" using namespace std; ConfigTemplate Layout_PosterDB::Template[]= { ConfigTemplate("LeftMargin",int(0)), ConfigTemplate("RightMargin",int(0)), ConfigTemplate("TopMargin",int(0)), ConfigTemplate("BottomMargin",int(0)), ConfigTemplate("HorizontalOverlap",int(8)), ConfigTemplate("VerticalOverlap",int(8)), ConfigTemplate("PosterWidth",int(1000)), ConfigTemplate("PosterHeight",int(1000)), ConfigTemplate() }; Layout_Poster_ImageInfo::Layout_Poster_ImageInfo(Layout_Poster &layout, const char *filename,int page,bool allowcropping,PP_ROTATION rotation) : Layout_ImageInfo((Layout &)layout,filename,page,allowcropping,rotation) { } Layout_Poster_ImageInfo::Layout_Poster_ImageInfo(Layout_Poster &layout, Layout_ImageInfo *ii,int page) : Layout_ImageInfo((Layout &)layout,ii,page) { } Layout_Poster_ImageInfo::~Layout_Poster_ImageInfo() { } void Layout_Poster_ImageInfo::DrawThumbnail(GtkWidget *widget,int xpos,int ypos,int width,int height) { Layout_Poster *l=(Layout_Poster *)&layout; LayoutRectangle target(l->leftmargin,l->topmargin,l->posterwidth,l->posterheight); double scale=width; scale/=l->paperwidth; target.Scale(scale); Layout_ImageInfo::DrawThumbnail(widget,xpos+target.x,ypos+target.y,target.w,target.h); } LayoutRectangle *Layout_Poster_ImageInfo::GetBounds() { Layout_Poster *l=(Layout_Poster *)&layout; return(new LayoutRectangle(l->leftmargin,l->topmargin,l->posterwidth,l->posterheight)); } Layout_Poster::Layout_Poster(PhotoPrint_State &state,Layout *oldlayout) : Layout(state,oldlayout), posters(1), currentposter(0), htiles(1), vtiles(1) { } Layout_Poster::~Layout_Poster() { } void Layout_Poster::Reflow() { int page=0; LayoutIterator it(*this); Layout_Poster_ImageInfo *ii=(Layout_Poster_ImageInfo *)it.FirstImage(); while(ii) { ii->page=page; ii=(Layout_Poster_ImageInfo *)it.NextImage(); posters=page; ++page; } SetCurrentPage(1); pages=page*htiles*vtiles; } int Layout_Poster::AddImage(const char *filename,bool allowcropping,PP_ROTATION rotation) { int page=posters+1; for(int i=0;i<=posters;++i) { if(!ImageAt(i)) { page=i; i=posters; } } Layout_Poster_ImageInfo *ii=NULL; try { ii=new Layout_Poster_ImageInfo(*this,filename,page,allowcropping,rotation); } catch(const char *msg) { ErrorMessage_Dialog(msg); } if(ii) { imagelist.push_back(ii); if(page>=posters) ++posters; pages=posters*htiles*vtiles; return(page*htiles*vtiles); } return(currentpage); } void Layout_Poster::CopyImage(Layout_ImageInfo *ii) { int page=posters+1; for(int i=0;i<=posters;++i) { if(!ImageAt(i)) { page=i; i=posters; } } ii=new Layout_Poster_ImageInfo(*this,ii,page); imagelist.push_back(ii); if(page>=posters) ++posters; pages=posters*htiles*vtiles; } // FIXME - this routine is *UGLY*. ImageSource *Layout_Poster::GetImageSource(int page,CMColourDevice target,CMTransformFactory *factory,int res,bool completepage) { ImageSource *is=NULL; try { int p=page/(htiles*vtiles); int r=page-htiles*vtiles*p; int vt=r/htiles; int ht=r-(htiles*vt); Debug[TRACE] << "HT: " << ht << endl; Debug[TRACE] << "VT: " << vt << endl; Layout_Poster_ImageInfo *ii=(Layout_Poster_ImageInfo *)ImageAt(p); if(ii) { GetImageableArea(); is=ii->GetImageSource(target,factory); LayoutRectangle srcr(is->width,is->height); LayoutRectangle target(posterwidth,posterheight); RectFit *fit=srcr.Fit(target,ii->allowcropping,ii->rotation,ii->crop_hpan,ii->crop_vpan); if(fit->rotation) is=new ImageSource_Rotate(is,fit->rotation); int l=ht*(imageablewidth-hoverlap); int r=(ht+1)*imageablewidth-ht*hoverlap; int t=vt*(imageableheight-voverlap); int b=(vt+1)*imageableheight-vt*voverlap; Debug[TRACE] << "Left: " << l << ", Right: " << r << endl; Debug[TRACE] << "Top: " << t << ", Bottom: " << b << endl; xoffset=leftmargin; yoffset=topmargin; l-=fit->xpos; r-=fit->xpos; t-=fit->ypos; b-=fit->ypos; Debug[TRACE] << "Left: " << l << ", Right: " << r << endl; Debug[TRACE] << "Top: " << t << ", Bottom: " << b << endl; if(l<0) { l=0; xoffset+=fit->xpos; } if(t<0) { t=0; yoffset+=fit->ypos; } if(r>fit->width) r=fit->width; if(b>fit->height) b=fit->height; l+=fit->xoffset; r+=fit->xoffset; t+=fit->yoffset; b+=fit->yoffset; Debug[TRACE] << "Left: " << l << ", Right: " << r << endl; Debug[TRACE] << "Top: " << t << ", Bottom: " << b << endl; l=(is->width*l)/fit->width; r=(is->width*r)/fit->width; t=(is->height*t)/fit->height; b=(is->height*b)/fit->height; Debug[TRACE] << "Left: " << l << ", Right: " << r << endl; Debug[TRACE] << "Top: " << t << ", Bottom: " << b << endl; is=ii->ApplyMask(is); is=new ImageSource_Flatten(is); Debug[TRACE] << "Old resolution: " << is->xres << " x " << is->yres << " dpi" << endl; is->SetResolution(72.0/fit->scale,72.0/fit->scale); is=new ImageSource_Crop(is,l,t,r-l,b-t); IS_ScalingQuality qual=IS_ScalingQuality(state.FindInt("ScalingQuality")); if(!res) res=state.FindInt("RenderingResolution"); is=ISScaleImageByResolution(is,res,res,qual); delete fit; } if(completepage) { // If the completepage flag is set we need to render a solid background. // This will be used for print preview and TIFF/JPEG export. IS_TYPE colourspace=GetColourSpace(target); ISDataType white[5]={0,0,0,0,0}; if(STRIP_ALPHA(colourspace)==IS_TYPE_RGB) white[0]=white[1]=white[2]=IS_SAMPLEMAX; if(factory) { CMSTransform *transform=factory->GetTransform(target,colourspace); if(transform) transform->Transform(white,white,1); } ImageSource_Montage *mon=new ImageSource_Montage(colourspace,res); mon->Add(is,(xoffset*res)/72,(yoffset*res)/72); mon->Add(new ImageSource_Solid(colourspace,(pagewidth*res)/72,(pageheight*res)/72,white),0,0); is=mon; } } catch (const char *msg) { ErrorMessage_Dialog(msg); } return(is); } void Layout_Poster::SetPageExtent(PageExtent &pe) { pe.GetImageableArea(); pagewidth=pe.pagewidth; pageheight=pe.pageheight; leftmargin=pe.leftmargin; rightmargin=pe.rightmargin; topmargin=pe.topmargin; bottommargin=pe.bottommargin; GetImageableArea(); } void Layout_Poster::SetMargins(int left,int right,int top,int bottom) { if((left+right)>=pagewidth) Debug[WARN] << "Margins are too wide!" << endl; else { leftmargin=left; rightmargin=right; } if((top+bottom)>=pageheight) Debug[WARN] << "Margins are too tall!" << endl; else { topmargin=top; bottommargin=bottom; } } void Layout_Poster::TilesFromSize() { GetImageableArea(); htiles=int(double(posterwidth-hoverlap)/(imageablewidth-hoverlap)+0.999); vtiles=int(double(posterheight-voverlap)/(imageableheight-voverlap)+0.999); paperwidth = leftmargin + rightmargin + imageablewidth*htiles - (htiles-1)*hoverlap; paperheight = topmargin + bottommargin + imageableheight*vtiles - (vtiles-1)*voverlap; pages=posters*htiles*vtiles; Layout::SetCurrentPage(currentposter*htiles*vtiles); } void Layout_Poster::SizeFromTiles() { GetImageableArea(); posterwidth = imageablewidth*htiles - (htiles-1)*hoverlap; posterheight = imageableheight*vtiles - (vtiles-1)*voverlap; paperwidth=leftmargin + rightmargin + posterwidth; paperheight=topmargin + bottommargin + posterheight; pages=posters*htiles*vtiles; Layout::SetCurrentPage(currentposter*htiles*vtiles); } void Layout_Poster::DBToLayout(LayoutDB &db) { Layout::DBToLayout(db); SetPageExtent(state.printer); SetMargins(db.posterdb.FindInt("LeftMargin"),db.posterdb.FindInt("RightMargin"), db.posterdb.FindInt("TopMargin"),db.posterdb.FindInt("BottomMargin")); hoverlap=db.posterdb.FindInt("HorizontalOverlap"); voverlap=db.posterdb.FindInt("VerticalOverlap"); posterwidth=db.posterdb.FindInt("PosterWidth"); posterheight=db.posterdb.FindInt("PosterHeight"); TilesFromSize(); } void Layout_Poster::LayoutToDB(LayoutDB &db) { Layout::LayoutToDB(db); db.posterdb.SetInt("LeftMargin",leftmargin); db.posterdb.SetInt("RightMargin",rightmargin); db.posterdb.SetInt("TopMargin",topmargin); db.posterdb.SetInt("BottomMargin",bottommargin); db.posterdb.SetInt("HorizontalOverlap",hoverlap); db.posterdb.SetInt("VerticalOverlap",voverlap); db.posterdb.SetInt("PosterWidth",posterwidth); db.posterdb.SetInt("PosterHeight",posterheight); } Layout_Poster_ImageInfo *Layout_Poster::ImageAt(int page) { Layout_Poster_ImageInfo *result=NULL; LayoutIterator it(*this); Layout_ImageInfo *ii=it.FirstImage(); while(ii) { Layout_Poster_ImageInfo *nii=(Layout_Poster_ImageInfo *)ii; if(nii->page==page) { result=nii; } ii=it.NextImage(); } return(result); } GtkWidget *Layout_Poster::CreateWidget() { return(pp_layout_poster_new(&state)); } void Layout_Poster::RefreshWidget(GtkWidget *widget) { pp_layout_poster_refresh(PP_LAYOUT_POSTER(widget)); } void Layout_Poster::DrawGridLines(GtkWidget *widget) { pp_layout_poster_pageview_draw_gridlines(PP_LAYOUT_POSTER_PAGEVIEW(widget)); } const char *Layout_Poster::GetType() { return("Poster"); } void Layout_Poster::SetCurrentPage(int page) { Layout::SetCurrentPage(page); currentposter=page/(htiles*vtiles); } void (*Layout_Poster::SetUnitFunc())(GtkWidget *wid,enum Units unit) { return(pp_layout_poster_set_unit); } void Layout_Poster::DrawPreview(GtkWidget *widget,int xpos,int ypos,int width,int height) { DrawPreviewBG(widget,xpos,ypos,width,height); LayoutIterator it(*this); Layout_ImageInfo *ii=it.FirstImage(); int cp=currentpage/(htiles*vtiles); while(ii) { if(cp==ii->page) { ii->DrawThumbnail(widget,xpos,ypos,width,height); } ii=it.NextImage(); } } int Layout_Poster::GetCapabilities() { return(PPLAYOUT_CROP|PPLAYOUT_ROTATE|PPLAYOUT_MASK|PPLAYOUT_EFFECTS|PPLAYOUT_PROFILE); } bool Layout_Poster_ImageInfo::GetSelected() { Layout_Poster *l=(Layout_Poster *)&layout; return(page==l->currentposter); } #if 0 Layout_ImageInfo *Layout_Poster::FirstSelected() { LayoutIterator it(*this); Layout_ImageInfo *ii=it.FirstImage(); while(ii) { if(ii->page==currentposter) return(ii); ii=it.NextSelected(); } return(NULL); } Layout_ImageInfo *Layout_Poster::NextSelected() { LayoutIterator it(*this); Layout_ImageInfo *ii=it.NextImage(); while(ii) { if(ii->page==currentposter) return(ii); ii=it.NextSelected(); } return(NULL); } #endif photoprint-0.4.2-pre2/configure0000755000175000017500000333525711400237517013443 00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.61 for photoprint 0.4.2-pre2. # # Report bugs to . # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, # 2002, 2003, 2004, 2005, 2006 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=: # Zsh 3.x and 4.x performs 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 # PATH needs CR # 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 # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Support unset when possible. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then as_unset=unset else as_unset=false 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.) as_nl=' ' IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. 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 echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 { (exit 1); exit 1; } fi # Work around bugs in pre-3.0 UWIN ksh. for as_var in ENV MAIL MAILPATH do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. for as_var in \ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ LC_TELEPHONE LC_TIME do if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then eval $as_var=C; export $as_var else ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var fi done # Required to use basename. 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 # Name of the executable. as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # CDPATH. $as_unset CDPATH if test "x$CONFIG_SHELL" = x; then if (eval ":") 2>/dev/null; then as_have_required=yes else as_have_required=no fi if test $as_have_required = yes && (eval ": (as_func_return () { (exit \$1) } as_func_success () { as_func_return 0 } as_func_failure () { as_func_return 1 } as_func_ret_success () { return 0 } as_func_ret_failure () { return 1 } exitcode=0 if as_func_success; then : else exitcode=1 echo as_func_success failed. fi if as_func_failure; then exitcode=1 echo as_func_failure succeeded. fi if as_func_ret_success; then : else exitcode=1 echo as_func_ret_success failed. fi if as_func_ret_failure; then exitcode=1 echo as_func_ret_failure succeeded. fi if ( set x; as_func_ret_success y && test x = \"\$1\" ); then : else exitcode=1 echo positional parameters were not saved. fi test \$exitcode = 0) || { (exit 1); exit 1; } ( as_lineno_1=\$LINENO as_lineno_2=\$LINENO test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" && test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; } ") 2> /dev/null; then : else as_candidate_shells= as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. case $as_dir in /*) for as_base in sh bash ksh sh5; do as_candidate_shells="$as_candidate_shells $as_dir/$as_base" done;; esac done IFS=$as_save_IFS for as_shell in $as_candidate_shells $SHELL; do # Try only shells that exist, to save several forks. if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { ("$as_shell") 2> /dev/null <<\_ASEOF if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs 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 : _ASEOF }; then CONFIG_SHELL=$as_shell as_have_required=yes if { "$as_shell" 2> /dev/null <<\_ASEOF if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs 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_func_return () { (exit $1) } as_func_success () { as_func_return 0 } as_func_failure () { as_func_return 1 } as_func_ret_success () { return 0 } as_func_ret_failure () { return 1 } exitcode=0 if as_func_success; then : else exitcode=1 echo as_func_success failed. fi if as_func_failure; then exitcode=1 echo as_func_failure succeeded. fi if as_func_ret_success; then : else exitcode=1 echo as_func_ret_success failed. fi if as_func_ret_failure; then exitcode=1 echo as_func_ret_failure succeeded. fi if ( set x; as_func_ret_success y && test x = "$1" ); then : else exitcode=1 echo positional parameters were not saved. fi test $exitcode = 0) || { (exit 1); exit 1; } ( as_lineno_1=$LINENO as_lineno_2=$LINENO test "x$as_lineno_1" != "x$as_lineno_2" && test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; } _ASEOF }; then break fi fi done if test "x$CONFIG_SHELL" != x; then for as_var in BASH_ENV ENV do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var done export CONFIG_SHELL exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} fi if test $as_have_required = no; then echo This script requires a shell more modern than all the echo shells that I found on your system. Please install a echo modern shell, or manually run the script under such a echo shell if you do have one. { (exit 1); exit 1; } fi fi fi (eval "as_func_return () { (exit \$1) } as_func_success () { as_func_return 0 } as_func_failure () { as_func_return 1 } as_func_ret_success () { return 0 } as_func_ret_failure () { return 1 } exitcode=0 if as_func_success; then : else exitcode=1 echo as_func_success failed. fi if as_func_failure; then exitcode=1 echo as_func_failure succeeded. fi if as_func_ret_success; then : else exitcode=1 echo as_func_ret_success failed. fi if as_func_ret_failure; then exitcode=1 echo as_func_ret_failure succeeded. fi if ( set x; as_func_ret_success y && test x = \"\$1\" ); then : else exitcode=1 echo positional parameters were not saved. fi test \$exitcode = 0") || { echo No shell found that supports shell functions. echo Please tell autoconf@gnu.org about your system, echo including any error possibly output before this echo message } as_lineno_1=$LINENO as_lineno_2=$LINENO test "x$as_lineno_1" != "x$as_lineno_2" && test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { # Create $as_me.lineno as a copy of $as_myself, but with $LINENO # uniformly replaced by the line number. The first 'sed' inserts a # line-number line after each line using $LINENO; the second 'sed' # does the real work. The second script uses 'N' to pair each # line-number line with the line containing $LINENO, and appends # trailing '-' during substitution so that $LINENO is not a special # case at line end. # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the # scripts with optimization help from Paolo Bonzini. 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" || { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 { (exit 1); exit 1; }; } # 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 } if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in -n*) case `echo 'x\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. *) ECHO_C='\c';; esac;; *) ECHO_N='-n';; esac if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi 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 fi echo >conf$$.file 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 -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' 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=: else test -d ./-p && rmdir ./-p as_mkdir_p=false fi if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # 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'" # Check that we are running under the correct shell. SHELL=${CONFIG_SHELL-/bin/sh} case X$ECHO in X*--fallback-echo) # Remove one level of quotation (which was required for Make). ECHO=`echo "$ECHO" | sed 's,\\\\\$\\$0,'$0','` ;; esac echo=${ECHO-echo} if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X$1" = X--fallback-echo; then # Avoid inline document here, it may be left over : elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then # Yippee, $echo works! : else # Restart under the correct shell. exec $SHELL "$0" --no-reexec ${1+"$@"} fi if test "X$1" = X--fallback-echo; then # used as fallback echo shift cat </dev/null 2>&1 && unset CDPATH if test -z "$ECHO"; then if test "X${echo_test_string+set}" != Xset; then # find a string as large as possible, as long as the shell can cope with it for cmd in 'sed 50q "$0"' 'sed 20q "$0"' 'sed 10q "$0"' 'sed 2q "$0"' 'echo test'; do # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... if (echo_test_string=`eval $cmd`) 2>/dev/null && echo_test_string=`eval $cmd` && (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null then break fi done fi if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then : else # The Solaris, AIX, and Digital Unix default echo programs unquote # backslashes. This makes it impossible to quote backslashes using # echo "$something" | sed 's/\\/\\\\/g' # # So, first we look for a working echo in the user's PATH. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for dir in $PATH /usr/ucb; do IFS="$lt_save_ifs" if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then echo="$dir/echo" break fi done IFS="$lt_save_ifs" if test "X$echo" = Xecho; then # We didn't find a better echo, so look for alternatives. if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # This shell has a builtin print -r that does the trick. echo='print -r' elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && test "X$CONFIG_SHELL" != X/bin/ksh; then # If we have ksh, try running configure again with it. ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} export ORIGINAL_CONFIG_SHELL CONFIG_SHELL=/bin/ksh export CONFIG_SHELL exec $CONFIG_SHELL "$0" --no-reexec ${1+"$@"} else # Try using printf. echo='printf %s\n' if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # Cool, printf works : elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL export CONFIG_SHELL SHELL="$CONFIG_SHELL" export SHELL echo="$CONFIG_SHELL $0 --fallback-echo" elif echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then echo="$CONFIG_SHELL $0 --fallback-echo" else # maybe with a smaller string... prev=: for cmd in 'echo test' 'sed 2q "$0"' 'sed 10q "$0"' 'sed 20q "$0"' 'sed 50q "$0"'; do if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null then break fi prev="$cmd" done if test "$prev" != 'sed 50q "$0"'; then echo_test_string=`eval $prev` export echo_test_string exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "$0" ${1+"$@"} else # Oops. We lost completely, so just stick with echo. echo=echo fi fi fi fi fi fi # Copy echo and quote the copy suitably for passing to libtool from # the Makefile, instead of quoting the original, which is used later. ECHO=$echo if test "X$ECHO" = "X$CONFIG_SHELL $0 --fallback-echo"; then ECHO="$CONFIG_SHELL \\\$\$0 --fallback-echo" fi tagnames=${tagnames+${tagnames},}CXX tagnames=${tagnames+${tagnames},}F77 exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, 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= SHELL=${CONFIG_SHELL-/bin/sh} # Identity of this package. PACKAGE_NAME='photoprint' PACKAGE_TARNAME='photoprint' PACKAGE_VERSION='0.4.2-pre2' PACKAGE_STRING='photoprint 0.4.2-pre2' PACKAGE_BUGREPORT='blackfive@fakenhamweb.co.uk' ac_unique_file="photoprint.cpp" gt_needs= # 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='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datarootdir datadir sysconfdir sharedstatedir localstatedir includedir oldincludedir docdir infodir htmldir dvidir pdfdir psdir libdir localedir mandir DEFS ECHO_C ECHO_N ECHO_T LIBS build_alias host_alias target_alias INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA am__isrc CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar USE_NLS GETTEXT_MACRO_VERSION MSGFMT GMSGFMT MSGFMT_015 GMSGFMT_015 XGETTEXT XGETTEXT_015 MSGMERGE XGETTEXT_EXTRA_OPTIONS CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE build build_cpu build_vendor build_os host host_cpu host_vendor host_os INTL_MACOSX_LIBS LIBICONV LTLIBICONV INTLLIBS LIBINTL LTLIBINTL POSUB SED GREP EGREP LN_S ECHO AR RANLIB DSYMUTIL NMEDIT CPP CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL PKG_CONFIG GLIB2_CFLAGS GLIB2_LIBS GTHREAD_CFLAGS GTHREAD_LIBS GTK2_CFLAGS GTK2_LIBS GDKPIXBUF2_CFLAGS GDKPIXBUF2_LIBS GP_CFLAGS GP_LIBS LCMS_CFLAGS LCMS_LIBS LIBM_LIBS TIFF_LIBS JPEG_LIBS GETOPT_LIBS LIBOBJS LTLIBOBJS' ac_subst_files='' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CPP CXX CXXFLAGS CCC CXXCPP F77 FFLAGS PKG_CONFIG GLIB2_CFLAGS GLIB2_LIBS GTHREAD_CFLAGS GTHREAD_LIBS GTK2_CFLAGS GTK2_LIBS GDKPIXBUF2_CFLAGS GDKPIXBUF2_LIBS GP_CFLAGS GP_LIBS LCMS_CFLAGS LCMS_LIBS' # Initialize some variables set by options. ac_init_help= ac_init_version=false # 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' 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=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_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid feature name: $ac_feature" >&2 { (exit 1); exit 1; }; } ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` eval enable_$ac_feature=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_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid feature name: $ac_feature" >&2 { (exit 1); exit 1; }; } ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` eval enable_$ac_feature=\$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 ;; -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_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid package name: $ac_package" >&2 { (exit 1); exit 1; }; } ac_package=`echo $ac_package | sed 's/[-.]/_/g'` eval with_$ac_package=\$ac_optarg ;; -without-* | --without-*) ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid package name: $ac_package" >&2 { (exit 1); exit 1; }; } ac_package=`echo $ac_package | sed 's/[-.]/_/g'` eval with_$ac_package=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 ;; -*) { echo "$as_me: error: unrecognized option: $ac_option Try \`$0 --help' for more information." >&2 { (exit 1); exit 1; }; } ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 { (exit 1); exit 1; }; } eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && 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'` { echo "$as_me: error: missing argument to $ac_option" >&2 { (exit 1); exit 1; }; } fi # Be sure to have absolute directory names. 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 do eval ac_val=\$$ac_var case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 { (exit 1); exit 1; }; } 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 echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. If a cross compiler is detected then cross compile mode will be used." >&2 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 .` || { echo "$as_me: error: Working directory cannot be determined" >&2 { (exit 1); exit 1; }; } test "X$ac_ls_di" = "X$ac_pwd_ls_di" || { echo "$as_me: error: pwd does not report name of working directory" >&2 { (exit 1); exit 1; }; } # 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 -- "$0" || $as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$0" : 'X\(//\)[^/]' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || echo X"$0" | 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 .." { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 { (exit 1); exit 1; }; } fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2 { (exit 1); exit 1; }; } 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 photoprint 0.4.2-pre2 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] --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/photoprint] --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 photoprint 0.4.2-pre2:";; esac cat <<\_ACEOF Optional Features: --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --disable-nls do not use Native Language Support --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors --disable-rpath do not hardcode runtime library paths --enable-shared[=PKGS] build shared libraries [default=yes] --enable-static[=PKGS] build static libraries [default=yes] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --disable-libtool-lock avoid locking (might break parallel builds) Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-gnu-ld assume the C compiler uses GNU ld default=no --with-libiconv-prefix[=DIR] search for libiconv in DIR/include and DIR/lib --without-libiconv-prefix don't search for libiconv in includedir and libdir --with-libintl-prefix[=DIR] search for libintl in DIR/include and DIR/lib --without-libintl-prefix don't search for libintl in includedir and libdir --with-gnu-ld assume the C compiler uses GNU ld [default=no] --with-pic try to use only PIC/non-PIC objects [default=use both] --with-tags[=TAGS] include additional configurations [automatic] 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 C/C++/Objective C preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor CXX C++ compiler command CXXFLAGS C++ compiler flags CXXCPP C++ preprocessor F77 Fortran 77 compiler command FFLAGS Fortran 77 compiler flags PKG_CONFIG path to pkg-config utility GLIB2_CFLAGS C compiler flags for GLIB2, overriding pkg-config GLIB2_LIBS linker flags for GLIB2, overriding pkg-config GTHREAD_CFLAGS C compiler flags for GTHREAD, overriding pkg-config GTHREAD_LIBS linker flags for GTHREAD, overriding pkg-config GTK2_CFLAGS C compiler flags for GTK2, overriding pkg-config GTK2_LIBS linker flags for GTK2, overriding pkg-config GDKPIXBUF2_CFLAGS C compiler flags for GDKPIXBUF2, overriding pkg-config GDKPIXBUF2_LIBS linker flags for GDKPIXBUF2, overriding pkg-config GP_CFLAGS C compiler flags for GP, overriding pkg-config GP_LIBS linker flags for GP, overriding pkg-config LCMS_CFLAGS C compiler flags for LCMS, overriding pkg-config LCMS_LIBS linker flags for LCMS, overriding pkg-config 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 . _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" || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`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 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 photoprint configure 0.4.2-pre2 generated by GNU Autoconf 2.61 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 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 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 photoprint $as_me 0.4.2-pre2, which was generated by GNU Autoconf 2.61. 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=. 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=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; 2) ac_configure_args1="$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 ac_configure_args="$ac_configure_args '$ac_arg'" ;; esac done done $as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } $as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export 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 cat <<\_ASBOX ## ---------------- ## ## Cache variables. ## ## ---------------- ## _ASBOX 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_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( *) $as_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 cat <<\_ASBOX ## ----------------- ## ## Output variables. ## ## ----------------- ## _ASBOX echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then cat <<\_ASBOX ## ------------------- ## ## File substitutions. ## ## ------------------- ## _ASBOX echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then cat <<\_ASBOX ## ----------- ## ## confdefs.h. ## ## ----------- ## _ASBOX echo cat confdefs.h echo fi test "$ac_signal" != 0 && echo "$as_me: caught signal $ac_signal" 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'; { (exit 1); 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 # 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 # Let the site file select an alternate cache file if it wants to. # Prefer explicitly selected file to automatically selected ones. if test -n "$CONFIG_SITE"; then set x "$CONFIG_SITE" elif test "x$prefix" != xNONE; then set x "$prefix/share/config.site" "$prefix/etc/config.site" else set x "$ac_default_prefix/share/config.site" \ "$ac_default_prefix/etc/config.site" fi shift for ac_site_file do if test -r "$ac_site_file"; then { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" 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. if test -f "$cache_file"; then { echo "$as_me:$LINENO: loading cache $cache_file" >&5 echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { echo "$as_me:$LINENO: creating cache $cache_file" >&5 echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi gt_needs="$gt_needs " # 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,) { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 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 { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 echo "$as_me: former value: $ac_old_val" >&2;} { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 echo "$as_me: current value: $ac_new_val" >&2;} ac_cache_corrupted=: fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`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. *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 echo "$as_me: error: changes in the environment can compromise the build" >&2;} { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} { (exit 1); exit 1; }; } 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_aux_dir= for ac_dir in scripts "$srcdir"/scripts; 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 { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in scripts \"$srcdir\"/scripts" >&5 echo "$as_me: error: cannot find install-sh or install.sh in scripts \"$srcdir\"/scripts" >&2;} { (exit 1); exit 1; }; } 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. ac_config_headers="$ac_config_headers config.h" am__api_version='1.10' # 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. { echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; } if test -z "$INSTALL"; then if test "${ac_cv_path_install+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$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 ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi done done ;; esac done IFS=$as_save_IFS 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 { echo "$as_me:$LINENO: result: $INSTALL" >&5 echo "${ECHO_T}$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' { echo "$as_me:$LINENO: checking whether build environment is sane" >&5 echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6; } # Just in case sleep 1 echo timestamp > conftest.file # 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 ( 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 rm -f conftest.file 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". { { echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken alias in your environment" >&5 echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken alias in your environment" >&2;} { (exit 1); exit 1; }; } fi test "$2" = conftest.file ) then # Ok. : else { { echo "$as_me:$LINENO: error: newly created file is older than distributed files! Check your system clock" >&5 echo "$as_me: error: newly created file is older than distributed files! Check your system clock" >&2;} { (exit 1); exit 1; }; } fi { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } 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 $. echo might interpret backslashes. # By default was `s,x,x', remove it if useless. cat <<\_ACEOF >conftest.sed s/[\\$]/&&/g;s/;s,x,x,$// _ACEOF program_transform_name=`echo $program_transform_name | sed -f conftest.sed` rm -f conftest.sed # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5 echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi { echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5 echo $ECHO_N "checking for a thread-safe mkdir -p... $ECHO_C" >&6; } if test -z "$MKDIR_P"; then if test "${ac_cv_path_mkdir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$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 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. test -d ./--version && rmdir ./--version MKDIR_P="$ac_install_sh -d" fi fi { echo "$as_me:$LINENO: result: $MKDIR_P" >&5 echo "${ECHO_T}$MKDIR_P" >&6; } mkdir_p="$MKDIR_P" case $mkdir_p in [\\/$]* | ?:[\\/]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac 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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_AWK+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_AWK="$ac_prog" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $AWK" >&5 echo "${ECHO_T}$AWK" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$AWK" && break done { echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; } set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&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 { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } SET_MAKE= else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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 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 { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} { (exit 1); exit 1; }; } 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='photoprint' VERSION='0.4.2-pre2' 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"} install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} # 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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $STRIP" >&5 echo "${ECHO_T}$STRIP" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_STRIP="strip" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 echo "${ECHO_T}$ac_ct_STRIP" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&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" # We need awk for the "check" target. The system "awk" is bad on # some platforms. # Always define AMTAR for backward compatibility. AMTAR=${AMTAR-"${am_missing_run}tar"} am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' { echo "$as_me:$LINENO: checking whether NLS is requested" >&5 echo $ECHO_N "checking whether NLS is requested... $ECHO_C" >&6; } # Check whether --enable-nls was given. if test "${enable_nls+set}" = set; then enableval=$enable_nls; USE_NLS=$enableval else USE_NLS=yes fi { echo "$as_me:$LINENO: result: $USE_NLS" >&5 echo "${ECHO_T}$USE_NLS" >&6; } GETTEXT_MACRO_VERSION=0.17 # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_MSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case "$MSGFMT" in [\\/]* | ?:[\\/]*) ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then echo "$as_me: trying $ac_dir/$ac_word..." >&5 if $ac_dir/$ac_word --statistics /dev/null >&5 2>&1 && (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then ac_cv_path_MSGFMT="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT=":" ;; esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != ":"; then { echo "$as_me:$LINENO: result: $MSGFMT" >&5 echo "${ECHO_T}$MSGFMT" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_GMSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $GMSGFMT in [\\/]* | ?:[\\/]*) ac_cv_path_GMSGFMT="$GMSGFMT" # 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" ;; esac fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then { echo "$as_me:$LINENO: result: $GMSGFMT" >&5 echo "${ECHO_T}$GMSGFMT" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi case `$MSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) MSGFMT_015=: ;; *) MSGFMT_015=$MSGFMT ;; esac case `$GMSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) GMSGFMT_015=: ;; *) GMSGFMT_015=$GMSGFMT ;; esac # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_XGETTEXT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case "$XGETTEXT" in [\\/]* | ?:[\\/]*) ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then echo "$as_me: trying $ac_dir/$ac_word..." >&5 if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >&5 2>&1 && (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then ac_cv_path_XGETTEXT="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":" ;; esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then { echo "$as_me:$LINENO: result: $XGETTEXT" >&5 echo "${ECHO_T}$XGETTEXT" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi rm -f messages.po case `$XGETTEXT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) XGETTEXT_015=: ;; *) XGETTEXT_015=$XGETTEXT ;; esac # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "msgmerge", so it can be a program name with args. set dummy msgmerge; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_MSGMERGE+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case "$MSGMERGE" in [\\/]* | ?:[\\/]*) ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then echo "$as_me: trying $ac_dir/$ac_word..." >&5 if $ac_dir/$ac_word --update -q /dev/null /dev/null >&5 2>&1; then ac_cv_path_MSGMERGE="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" test -z "$ac_cv_path_MSGMERGE" && ac_cv_path_MSGMERGE=":" ;; esac fi MSGMERGE="$ac_cv_path_MSGMERGE" if test "$MSGMERGE" != ":"; then { echo "$as_me:$LINENO: result: $MSGMERGE" >&5 echo "${ECHO_T}$MSGMERGE" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$localedir" || localedir='${datadir}/locale' test -n "${XGETTEXT_EXTRA_OPTIONS+set}" || XGETTEXT_EXTRA_OPTIONS= ac_config_commands="$ac_config_commands po-directories" if test "X$prefix" = "XNONE"; then acl_final_prefix="$ac_default_prefix" else acl_final_prefix="$prefix" fi if test "X$exec_prefix" = "XNONE"; then acl_final_exec_prefix='${prefix}' else acl_final_exec_prefix="$exec_prefix" fi acl_save_prefix="$prefix" prefix="$acl_final_prefix" eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" prefix="$acl_save_prefix" DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo done .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5 echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # We grep out `Entering directory' and `Leaving directory' # messages which can occur if `w' ends up in MAKEFLAGS. # In particular we don't look at `^make:' because GNU make might # be invoked under some other name (usually "gmake"), in which # case it prints its new name instead of `make'. if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then am__include=include am__quote= _am_result=GNU fi # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then am__include=.include am__quote="\"" _am_result=BSD fi fi { echo "$as_me:$LINENO: result: $_am_result" >&5 echo "${ECHO_T}$_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='\' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= 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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}gcc" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="gcc" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}cc" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$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" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="$ac_prog" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&5 echo "$as_me: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } # Provide some information about the compiler. echo "$as_me:$LINENO: checking for C compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (ac_try="$ac_compiler --version >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler --version >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -v >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -v >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -V >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -V >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out 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. { echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; } ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # # List of possible output files, starting from the most likely. # The algorithm is not robust to junk in `.', hence go to wildcards (a.*) # only as a last resort. b.out is created by i960 compilers. ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out' # # The IRIX 6 linker writes into existing files which may not be # executable, retaining their permissions. Remove them first so a # subsequent execution test works. ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link_default") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; 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 | *.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 { echo "$as_me:$LINENO: result: $ac_file" >&5 echo "${ECHO_T}$ac_file" >&6; } if test -z "$ac_file"; then echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { echo "$as_me:$LINENO: error: C compiler cannot create executables See \`config.log' for more details." >&5 echo "$as_me: error: C compiler cannot create executables See \`config.log' for more details." >&2;} { (exit 77); exit 77; }; } fi ac_exeext=$ac_cv_exeext # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { echo "$as_me:$LINENO: checking whether the C compiler works" >&5 echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6; } # FIXME: These cross compiler hacks should be removed for Autoconf 3.0 # If not cross compiling, check that we can run a simple program. if test "$cross_compiling" != yes; then if { ac_try='./$ac_file' { (case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { echo "$as_me:$LINENO: error: cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details." >&5 echo "$as_me: error: cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi fi fi { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } rm -f a.out a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; } { echo "$as_me:$LINENO: result: $cross_compiling" >&5 echo "${ECHO_T}$cross_compiling" >&6; } { echo "$as_me:$LINENO: checking for suffix of executables" >&5 echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; } if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; 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 | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link See \`config.log' for more details." >&5 echo "$as_me: error: cannot compute suffix of executables: cannot compile and link See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi rm -f conftest$ac_cv_exeext { echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 echo "${ECHO_T}$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT { echo "$as_me:$LINENO: checking for suffix of object files" >&5 echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; } if test "${ac_cv_objext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; 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 ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile See \`config.log' for more details." >&5 echo "$as_me: error: cannot compute suffix of object files: cannot compile See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 echo "${ECHO_T}$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; } if test "${ac_cv_c_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_compiler_gnu=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 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 { echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; } GCC=`test $ac_compiler_gnu = yes && echo yes` ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; } if test "${ac_cv_prog_cc_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 CFLAGS="" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 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 { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 echo "${ECHO_T}$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 { echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; } if test "${ac_cv_prog_cc_c89+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #include #include /* 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" 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_c89=$ac_arg else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 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) { echo "$as_me:$LINENO: result: none needed" >&5 echo "${ECHO_T}none needed" >&6; } ;; xno) { echo "$as_me:$LINENO: result: unsupported" >&5 echo "${ECHO_T}unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;; esac 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 depcc="$CC" am_compiler_list= { echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; } if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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'. 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 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 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in 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 ;; none) break ;; esac # 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. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} 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 sub/conftest.${OBJEXT-o} 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 { echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 echo "${ECHO_T}$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 # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || { { echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5 echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;} { (exit 1); exit 1; }; } { echo "$as_me:$LINENO: checking build system type" >&5 echo $ECHO_N "checking build system type... $ECHO_C" >&6; } if test "${ac_cv_build+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 && { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 echo "$as_me: error: cannot guess build type; you must specify one" >&2;} { (exit 1); exit 1; }; } ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5 echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;} { (exit 1); exit 1; }; } fi { echo "$as_me:$LINENO: result: $ac_cv_build" >&5 echo "${ECHO_T}$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) { { echo "$as_me:$LINENO: error: invalid value of canonical build" >&5 echo "$as_me: error: invalid value of canonical build" >&2;} { (exit 1); exit 1; }; };; 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 { echo "$as_me:$LINENO: checking host system type" >&5 echo $ECHO_N "checking host system type... $ECHO_C" >&6; } if test "${ac_cv_host+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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` || { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5 echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;} { (exit 1); exit 1; }; } fi fi { echo "$as_me:$LINENO: result: $ac_cv_host" >&5 echo "${ECHO_T}$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) { { echo "$as_me:$LINENO: error: invalid value of canonical host" >&5 echo "$as_me: error: invalid value of canonical host" >&2;} { (exit 1); exit 1; }; };; 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 # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. { echo "$as_me:$LINENO: checking for ld used by GCC" >&5 echo $ECHO_N "checking for ld used by GCC... $ECHO_C" >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | [A-Za-z]:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the path of ld ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'` while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then { echo "$as_me:$LINENO: checking for GNU ld" >&5 echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6; } else { echo "$as_me:$LINENO: checking for non-GNU ld" >&5 echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6; } fi if test "${acl_cv_path_LD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$LD"; then IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" for ac_dir in $PATH; do test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then acl_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some GNU ld's only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$acl_cv_path_LD" -v 2>&1 < /dev/null` in *GNU* | *'with BFD'*) test "$with_gnu_ld" != no && break ;; *) test "$with_gnu_ld" != yes && break ;; esac fi done IFS="$ac_save_ifs" else acl_cv_path_LD="$LD" # Let the user override the test with a path. fi fi LD="$acl_cv_path_LD" if test -n "$LD"; then { echo "$as_me:$LINENO: result: $LD" >&5 echo "${ECHO_T}$LD" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5 echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} { (exit 1); exit 1; }; } { echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6; } if test "${acl_cv_prog_gnu_ld+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # I'd rather use --version here, but apparently some GNU ld's only accept -v. case `$LD -v 2>&1 &5 echo "${ECHO_T}$acl_cv_prog_gnu_ld" >&6; } with_gnu_ld=$acl_cv_prog_gnu_ld { echo "$as_me:$LINENO: checking for shared library run path origin" >&5 echo $ECHO_N "checking for shared library run path origin... $ECHO_C" >&6; } if test "${acl_cv_rpath+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh . ./conftest.sh rm -f ./conftest.sh acl_cv_rpath=done fi { echo "$as_me:$LINENO: result: $acl_cv_rpath" >&5 echo "${ECHO_T}$acl_cv_rpath" >&6; } wl="$acl_cv_wl" acl_libext="$acl_cv_libext" acl_shlibext="$acl_cv_shlibext" acl_libname_spec="$acl_cv_libname_spec" acl_library_names_spec="$acl_cv_library_names_spec" acl_hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" acl_hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" acl_hardcode_direct="$acl_cv_hardcode_direct" acl_hardcode_minus_L="$acl_cv_hardcode_minus_L" # Check whether --enable-rpath was given. if test "${enable_rpath+set}" = set; then enableval=$enable_rpath; : else enable_rpath=yes fi acl_libdirstem=lib searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'` if test -n "$searchpath"; then acl_save_IFS="${IFS= }"; IFS=":" for searchdir in $searchpath; do if test -d "$searchdir"; then case "$searchdir" in */lib64/ | */lib64 ) acl_libdirstem=lib64 ;; *) searchdir=`cd "$searchdir" && pwd` case "$searchdir" in */lib64 ) acl_libdirstem=lib64 ;; esac ;; esac fi done IFS="$acl_save_IFS" fi use_additional=yes acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" # Check whether --with-libiconv-prefix was given. if test "${with_libiconv_prefix+set}" = set; then withval=$with_libiconv_prefix; if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" else additional_includedir="$withval/include" additional_libdir="$withval/$acl_libdirstem" fi fi fi LIBICONV= LTLIBICONV= INCICONV= LIBICONV_PREFIX= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='iconv ' while test -n "$names_next_round"; do names_this_round="$names_next_round" names_next_round= for name in $names_this_round; do already_handled= for n in $names_already_handled; do if test "$n" = "$name"; then already_handled=yes break fi done if test -z "$already_handled"; then names_already_handled="$names_already_handled $name" uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'` eval value=\"\$HAVE_LIB$uppername\" if test -n "$value"; then if test "$value" = yes; then eval value=\"\$LIB$uppername\" test -z "$value" || LIBICONV="${LIBICONV}${LIBICONV:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$value" else : fi else found_dir= found_la= found_so= found_a= eval libname=\"$acl_libname_spec\" # typically: libname=lib$name if test -n "$acl_shlibext"; then shrext=".$acl_shlibext" # typically: shrext=.so else shrext= fi if test $use_additional = yes; then dir="$additional_libdir" if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi fi if test "X$found_dir" = "X"; then for x in $LDFLAGS $LTLIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" case "$x" in -L*) dir=`echo "X$x" | sed -e 's/^X-L//'` if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi ;; esac if test "X$found_dir" != "X"; then break fi done fi if test "X$found_dir" != "X"; then LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/$acl_libdirstem"; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else haveit= for x in $ltrpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $found_dir" fi if test "$acl_hardcode_direct" = yes; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" haveit= for x in $rpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $found_dir" fi else haveit= for x in $LDFLAGS $LIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir" fi if test "$acl_hardcode_minus_L" != no; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_a" else LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir -l$name" fi fi additional_includedir= case "$found_dir" in */$acl_libdirstem | */$acl_libdirstem/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` LIBICONV_PREFIX="$basedir" additional_includedir="$basedir/include" ;; esac if test "X$additional_includedir" != "X"; then if test "X$additional_includedir" != "X/usr/include"; then haveit= if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INCICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_includedir"; then INCICONV="${INCICONV}${INCICONV:+ }-I$additional_includedir" fi fi fi fi fi if test -n "$found_la"; then save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` if test "X$additional_libdir" != "X/usr/$acl_libdirstem"; then haveit= if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LIBICONV="${LIBICONV}${LIBICONV:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then haveit= for x in $rpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $dir" fi haveit= for x in $ltrpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $dir" fi fi ;; -l*) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) LIBICONV="${LIBICONV}${LIBICONV:+ }$dep" LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$dep" ;; esac done fi else LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$acl_hardcode_libdir_separator"; then alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" done acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" else for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then for found_dir in $ltrpathdirs; do LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-R$found_dir" done fi { echo "$as_me:$LINENO: checking for CFPreferencesCopyAppValue" >&5 echo $ECHO_N "checking for CFPreferencesCopyAppValue... $ECHO_C" >&6; } if test "${gt_cv_func_CFPreferencesCopyAppValue+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include int main () { CFPreferencesCopyAppValue(NULL, NULL) ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then gt_cv_func_CFPreferencesCopyAppValue=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 gt_cv_func_CFPreferencesCopyAppValue=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS="$gt_save_LIBS" fi { echo "$as_me:$LINENO: result: $gt_cv_func_CFPreferencesCopyAppValue" >&5 echo "${ECHO_T}$gt_cv_func_CFPreferencesCopyAppValue" >&6; } if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_CFPREFERENCESCOPYAPPVALUE 1 _ACEOF fi { echo "$as_me:$LINENO: checking for CFLocaleCopyCurrent" >&5 echo $ECHO_N "checking for CFLocaleCopyCurrent... $ECHO_C" >&6; } if test "${gt_cv_func_CFLocaleCopyCurrent+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include int main () { CFLocaleCopyCurrent(); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then gt_cv_func_CFLocaleCopyCurrent=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 gt_cv_func_CFLocaleCopyCurrent=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS="$gt_save_LIBS" fi { echo "$as_me:$LINENO: result: $gt_cv_func_CFLocaleCopyCurrent" >&5 echo "${ECHO_T}$gt_cv_func_CFLocaleCopyCurrent" >&6; } if test $gt_cv_func_CFLocaleCopyCurrent = yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_CFLOCALECOPYCURRENT 1 _ACEOF fi INTL_MACOSX_LIBS= if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation" fi LIBINTL= LTLIBINTL= POSUB= case " $gt_needs " in *" need-formatstring-macros "*) gt_api_version=3 ;; *" need-ngettext "*) gt_api_version=2 ;; *) gt_api_version=1 ;; esac gt_func_gnugettext_libc="gt_cv_func_gnugettext${gt_api_version}_libc" gt_func_gnugettext_libintl="gt_cv_func_gnugettext${gt_api_version}_libintl" if test "$USE_NLS" = "yes"; then gt_use_preinstalled_gnugettext=no if test $gt_api_version -ge 3; then gt_revision_test_code=' #ifndef __GNU_GETTEXT_SUPPORTED_REVISION #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) #endif typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; ' else gt_revision_test_code= fi if test $gt_api_version -ge 2; then gt_expression_test_code=' + * ngettext ("", "", 0)' else gt_expression_test_code= fi { echo "$as_me:$LINENO: checking for GNU gettext in libc" >&5 echo $ECHO_N "checking for GNU gettext in libc... $ECHO_C" >&6; } if { as_var=$gt_func_gnugettext_libc; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern int *_nl_domain_bindings; int main () { bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_domain_bindings ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then eval "$gt_func_gnugettext_libc=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$gt_func_gnugettext_libc=no" fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi ac_res=`eval echo '${'$gt_func_gnugettext_libc'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then am_save_CPPFLAGS="$CPPFLAGS" for element in $INCICONV; do haveit= for x in $CPPFLAGS; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" fi done { echo "$as_me:$LINENO: checking for iconv" >&5 echo $ECHO_N "checking for iconv... $ECHO_C" >&6; } if test "${am_cv_func_iconv+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else am_cv_func_iconv="no, consider installing GNU libiconv" am_cv_lib_iconv=no cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include int main () { iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then am_cv_func_iconv=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext if test "$am_cv_func_iconv" != yes; then am_save_LIBS="$LIBS" LIBS="$LIBS $LIBICONV" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include int main () { iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then am_cv_lib_iconv=yes am_cv_func_iconv=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS="$am_save_LIBS" fi fi { echo "$as_me:$LINENO: result: $am_cv_func_iconv" >&5 echo "${ECHO_T}$am_cv_func_iconv" >&6; } if test "$am_cv_func_iconv" = yes; then { echo "$as_me:$LINENO: checking for working iconv" >&5 echo $ECHO_N "checking for working iconv... $ECHO_C" >&6; } if test "${am_cv_func_iconv_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else am_save_LIBS="$LIBS" if test $am_cv_lib_iconv = yes; then LIBS="$LIBS $LIBICONV" fi if test "$cross_compiling" = yes; then case "$host_os" in aix* | hpux*) am_cv_func_iconv_works="guessing no" ;; *) am_cv_func_iconv_works="guessing yes" ;; esac else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include int main () { /* Test against AIX 5.1 bug: Failures are not distinguishable from successful returns. */ { iconv_t cd_utf8_to_88591 = iconv_open ("ISO8859-1", "UTF-8"); if (cd_utf8_to_88591 != (iconv_t)(-1)) { static const char input[] = "\342\202\254"; /* EURO SIGN */ char buf[10]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_utf8_to_88591, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if (res == 0) return 1; } } #if 0 /* This bug could be worked around by the caller. */ /* Test against HP-UX 11.11 bug: Positive return value instead of 0. */ { iconv_t cd_88591_to_utf8 = iconv_open ("utf8", "iso88591"); if (cd_88591_to_utf8 != (iconv_t)(-1)) { static const char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337"; char buf[50]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_88591_to_utf8, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if ((int)res > 0) return 1; } } #endif /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is provided. */ if (/* Try standardized names. */ iconv_open ("UTF-8", "EUC-JP") == (iconv_t)(-1) /* Try IRIX, OSF/1 names. */ && iconv_open ("UTF-8", "eucJP") == (iconv_t)(-1) /* Try AIX names. */ && iconv_open ("UTF-8", "IBM-eucJP") == (iconv_t)(-1) /* Try HP-UX names. */ && iconv_open ("utf8", "eucJP") == (iconv_t)(-1)) return 1; return 0; } _ACEOF rm -f conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' { (case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_func_iconv_works=yes else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ( exit $ac_status ) am_cv_func_iconv_works=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi LIBS="$am_save_LIBS" fi { echo "$as_me:$LINENO: result: $am_cv_func_iconv_works" >&5 echo "${ECHO_T}$am_cv_func_iconv_works" >&6; } case "$am_cv_func_iconv_works" in *no) am_func_iconv=no am_cv_lib_iconv=no ;; *) am_func_iconv=yes ;; esac else am_func_iconv=no am_cv_lib_iconv=no fi if test "$am_func_iconv" = yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_ICONV 1 _ACEOF fi if test "$am_cv_lib_iconv" = yes; then { echo "$as_me:$LINENO: checking how to link with libiconv" >&5 echo $ECHO_N "checking how to link with libiconv... $ECHO_C" >&6; } { echo "$as_me:$LINENO: result: $LIBICONV" >&5 echo "${ECHO_T}$LIBICONV" >&6; } else CPPFLAGS="$am_save_CPPFLAGS" LIBICONV= LTLIBICONV= fi use_additional=yes acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" # Check whether --with-libintl-prefix was given. if test "${with_libintl_prefix+set}" = set; then withval=$with_libintl_prefix; if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" else additional_includedir="$withval/include" additional_libdir="$withval/$acl_libdirstem" fi fi fi LIBINTL= LTLIBINTL= INCINTL= LIBINTL_PREFIX= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='intl ' while test -n "$names_next_round"; do names_this_round="$names_next_round" names_next_round= for name in $names_this_round; do already_handled= for n in $names_already_handled; do if test "$n" = "$name"; then already_handled=yes break fi done if test -z "$already_handled"; then names_already_handled="$names_already_handled $name" uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'` eval value=\"\$HAVE_LIB$uppername\" if test -n "$value"; then if test "$value" = yes; then eval value=\"\$LIB$uppername\" test -z "$value" || LIBINTL="${LIBINTL}${LIBINTL:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$value" else : fi else found_dir= found_la= found_so= found_a= eval libname=\"$acl_libname_spec\" # typically: libname=lib$name if test -n "$acl_shlibext"; then shrext=".$acl_shlibext" # typically: shrext=.so else shrext= fi if test $use_additional = yes; then dir="$additional_libdir" if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi fi if test "X$found_dir" = "X"; then for x in $LDFLAGS $LTLIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" case "$x" in -L*) dir=`echo "X$x" | sed -e 's/^X-L//'` if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi ;; esac if test "X$found_dir" != "X"; then break fi done fi if test "X$found_dir" != "X"; then LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/$acl_libdirstem"; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else haveit= for x in $ltrpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $found_dir" fi if test "$acl_hardcode_direct" = yes; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" haveit= for x in $rpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $found_dir" fi else haveit= for x in $LDFLAGS $LIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir" fi if test "$acl_hardcode_minus_L" != no; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_a" else LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir -l$name" fi fi additional_includedir= case "$found_dir" in */$acl_libdirstem | */$acl_libdirstem/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` LIBINTL_PREFIX="$basedir" additional_includedir="$basedir/include" ;; esac if test "X$additional_includedir" != "X"; then if test "X$additional_includedir" != "X/usr/include"; then haveit= if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INCINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_includedir"; then INCINTL="${INCINTL}${INCINTL:+ }-I$additional_includedir" fi fi fi fi fi if test -n "$found_la"; then save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` if test "X$additional_libdir" != "X/usr/$acl_libdirstem"; then haveit= if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LIBINTL="${LIBINTL}${LIBINTL:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then haveit= for x in $rpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $dir" fi haveit= for x in $ltrpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $dir" fi fi ;; -l*) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) LIBINTL="${LIBINTL}${LIBINTL:+ }$dep" LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$dep" ;; esac done fi else LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name" LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$acl_hardcode_libdir_separator"; then alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" done acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBINTL="${LIBINTL}${LIBINTL:+ }$flag" else for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBINTL="${LIBINTL}${LIBINTL:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then for found_dir in $ltrpathdirs; do LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-R$found_dir" done fi { echo "$as_me:$LINENO: checking for GNU gettext in libintl" >&5 echo $ECHO_N "checking for GNU gettext in libintl... $ECHO_C" >&6; } if { as_var=$gt_func_gnugettext_libintl; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else gt_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $INCINTL" gt_save_LIBS="$LIBS" LIBS="$LIBS $LIBINTL" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (const char *); int main () { bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("") ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then eval "$gt_func_gnugettext_libintl=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$gt_func_gnugettext_libintl=no" fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" != yes; } && test -n "$LIBICONV"; then LIBS="$LIBS $LIBICONV" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (const char *); int main () { bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("") ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then LIBINTL="$LIBINTL $LIBICONV" LTLIBINTL="$LTLIBINTL $LTLIBICONV" eval "$gt_func_gnugettext_libintl=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi CPPFLAGS="$gt_save_CPPFLAGS" LIBS="$gt_save_LIBS" fi ac_res=`eval echo '${'$gt_func_gnugettext_libintl'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } fi if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" = "yes"; } \ || { { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; } \ && test "$PACKAGE" != gettext-runtime \ && test "$PACKAGE" != gettext-tools; }; then gt_use_preinstalled_gnugettext=yes else LIBINTL= LTLIBINTL= INCINTL= fi if test -n "$INTL_MACOSX_LIBS"; then if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then LIBINTL="$LIBINTL $INTL_MACOSX_LIBS" LTLIBINTL="$LTLIBINTL $INTL_MACOSX_LIBS" fi fi if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then cat >>confdefs.h <<\_ACEOF #define ENABLE_NLS 1 _ACEOF else USE_NLS=no fi fi { echo "$as_me:$LINENO: checking whether to use NLS" >&5 echo $ECHO_N "checking whether to use NLS... $ECHO_C" >&6; } { echo "$as_me:$LINENO: result: $USE_NLS" >&5 echo "${ECHO_T}$USE_NLS" >&6; } if test "$USE_NLS" = "yes"; then { echo "$as_me:$LINENO: checking where the gettext function comes from" >&5 echo $ECHO_N "checking where the gettext function comes from... $ECHO_C" >&6; } if test "$gt_use_preinstalled_gnugettext" = "yes"; then if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then gt_source="external libintl" else gt_source="libc" fi else gt_source="included intl directory" fi { echo "$as_me:$LINENO: result: $gt_source" >&5 echo "${ECHO_T}$gt_source" >&6; } fi if test "$USE_NLS" = "yes"; then if test "$gt_use_preinstalled_gnugettext" = "yes"; then if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then { echo "$as_me:$LINENO: checking how to link with libintl" >&5 echo $ECHO_N "checking how to link with libintl... $ECHO_C" >&6; } { echo "$as_me:$LINENO: result: $LIBINTL" >&5 echo "${ECHO_T}$LIBINTL" >&6; } for element in $INCINTL; do haveit= for x in $CPPFLAGS; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" fi done fi cat >>confdefs.h <<\_ACEOF #define HAVE_GETTEXT 1 _ACEOF cat >>confdefs.h <<\_ACEOF #define HAVE_DCGETTEXT 1 _ACEOF fi POSUB=po fi INTLLIBS="$LIBINTL" # Checks for programs. # Check whether --enable-shared was given. if test "${enable_shared+set}" = set; then enableval=$enable_shared; p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac else enable_shared=yes fi # Check whether --enable-static was given. if test "${enable_static+set}" = set; then enableval=$enable_static; p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac else enable_static=yes fi # Check whether --enable-fast-install was given. if test "${enable_fast_install+set}" = set; then enableval=$enable_fast_install; p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac else enable_fast_install=yes fi { echo "$as_me:$LINENO: checking for a sed that does not truncate output" >&5 echo $ECHO_N "checking for a sed that does not truncate output... $ECHO_C" >&6; } if test "${lt_cv_path_SED+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$lt_ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$lt_ac_prog$ac_exec_ext"; }; then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done IFS=$as_save_IFS lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do test ! -f $lt_ac_sed && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough test $lt_ac_count -gt 10 && break lt_ac_count=`expr $lt_ac_count + 1` if test $lt_ac_count -gt $lt_ac_max; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done fi SED=$lt_cv_path_SED { echo "$as_me:$LINENO: result: $SED" >&5 echo "${ECHO_T}$SED" >&6; } { echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5 echo $ECHO_N "checking for grep that handles long lines and -e... $ECHO_C" >&6; } if test "${ac_cv_path_GREP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # Extract the first word of "grep ggrep" to use in msg output if test -z "$GREP"; then set dummy grep ggrep; ac_prog_name=$2 if test "${ac_cv_path_GREP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else 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" { test -f "$ac_path_GREP" && $as_test_x "$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 echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" 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 ac_count=`expr $ac_count + 1` 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 fi GREP="$ac_cv_path_GREP" if test -z "$GREP"; then { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} { (exit 1); exit 1; }; } fi else ac_cv_path_GREP=$GREP fi fi { echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5 echo "${ECHO_T}$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { echo "$as_me:$LINENO: checking for egrep" >&5 echo $ECHO_N "checking for egrep... $ECHO_C" >&6; } if test "${ac_cv_path_EGREP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else # Extract the first word of "egrep" to use in msg output if test -z "$EGREP"; then set dummy egrep; ac_prog_name=$2 if test "${ac_cv_path_EGREP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else 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" { test -f "$ac_path_EGREP" && $as_test_x "$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 echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" 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 ac_count=`expr $ac_count + 1` 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 fi EGREP="$ac_cv_path_EGREP" if test -z "$EGREP"; then { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} { (exit 1); exit 1; }; } fi else ac_cv_path_EGREP=$EGREP fi fi fi { echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5 echo "${ECHO_T}$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. { echo "$as_me:$LINENO: checking for ld used by $CC" >&5 echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'` while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then { echo "$as_me:$LINENO: checking for GNU ld" >&5 echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6; } else { echo "$as_me:$LINENO: checking for non-GNU ld" >&5 echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6; } fi if test "${lt_cv_path_LD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 echo "${ECHO_T}$LD" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5 echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} { (exit 1); exit 1; }; } { echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6; } if test "${lt_cv_prog_gnu_ld+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6; } with_gnu_ld=$lt_cv_prog_gnu_ld { echo "$as_me:$LINENO: checking for $LD option to reload object files" >&5 echo $ECHO_N "checking for $LD option to reload object files... $ECHO_C" >&6; } if test "${lt_cv_ld_reload_flag+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_ld_reload_flag='-r' fi { echo "$as_me:$LINENO: result: $lt_cv_ld_reload_flag" >&5 echo "${ECHO_T}$lt_cv_ld_reload_flag" >&6; } reload_flag=$lt_cv_ld_reload_flag case $reload_flag in "" | " "*) ;; *) reload_flag=" $reload_flag" ;; esac reload_cmds='$LD$reload_flag -o $output$reload_objs' case $host_os in darwin*) if test "$GCC" = yes; then reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' else reload_cmds='$LD$reload_flag -o $output$reload_objs' fi ;; esac { echo "$as_me:$LINENO: checking for BSD-compatible nm" >&5 echo $ECHO_N "checking for BSD-compatible nm... $ECHO_C" >&6; } if test "${lt_cv_path_NM+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/$lt_tmp_nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm fi fi { echo "$as_me:$LINENO: result: $lt_cv_path_NM" >&5 echo "${ECHO_T}$lt_cv_path_NM" >&6; } NM="$lt_cv_path_NM" { echo "$as_me:$LINENO: checking whether ln -s works" >&5 echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6; } LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } else { echo "$as_me:$LINENO: result: no, using $LN_S" >&5 echo "${ECHO_T}no, using $LN_S" >&6; } fi { echo "$as_me:$LINENO: checking how to recognize dependent libraries" >&5 echo $ECHO_N "checking how to recognize dependent libraries... $ECHO_C" >&6; } if test "${lt_cv_deplibs_check_method+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. # `unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path # which responds to the $file_magic_cmd with a given extended regex. # If you have `file' or equivalent on your system and you're not sure # whether `pass_all' will *always* work, you probably want this one. case $host_os in aix[4-9]*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[45]*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. if ( file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; gnu*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]' lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9].[0-9]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[3-9]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be Linux ELF. linux* | k*bsd*-gnu) lt_cv_deplibs_check_method=pass_all ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; nto-qnx*) lt_cv_deplibs_check_method=unknown ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; esac fi { echo "$as_me:$LINENO: result: $lt_cv_deplibs_check_method" >&5 echo "${ECHO_T}$lt_cv_deplibs_check_method" >&6; } file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Check whether --enable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then enableval=$enable_libtool_lock; fi test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '#line 6522 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ s390*-*linux*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" { echo "$as_me:$LINENO: checking whether the C compiler needs -belf" >&5 echo $ECHO_N "checking whether the C compiler needs -belf... $ECHO_C" >&6; } if test "${lt_cv_cc_needs_belf+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else 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 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then lt_cv_cc_needs_belf=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 lt_cv_cc_needs_belf=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext 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 fi { echo "$as_me:$LINENO: result: $lt_cv_cc_needs_belf" >&5 echo "${ECHO_T}$lt_cv_cc_needs_belf" >&6; } if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; sparc*-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) LD="${LD-ld} -m elf64_sparc" ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks="$enable_libtool_lock" 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 { echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if test "${ac_cv_prog_CPP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then # Broken: success on invalid input. continue else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f 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 { echo "$as_me:$LINENO: result: $CPP" >&5 echo "${ECHO_T}$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 >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then # Broken: success on invalid input. continue else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details." >&5 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } 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 { echo "$as_me:$LINENO: checking for ANSI C header files" >&5 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; } if test "${ac_cv_header_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_header_stdc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 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 >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 rm -f conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' { (case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ( exit $ac_status ) ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi { echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then cat >>confdefs.h <<\_ACEOF #define STDC_HEADERS 1 _ACEOF 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=`echo "ac_cv_header_$ac_header" | $as_tr_sh` { echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include <$ac_header> _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then eval "$as_ac_Header=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$as_ac_Header=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi ac_res=`eval echo '${'$as_ac_Header'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_header in dlfcn.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then { echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi ac_res=`eval echo '${'$as_ac_Header'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } else # Is the header compilable? { echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include <$ac_header> _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_header_compiler=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6; } # Is the header present? { echo "$as_me:$LINENO: checking $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ------------------------------------------ ## ## Report this to blackfive@fakenhamweb.co.uk ## ## ------------------------------------------ ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else eval "$as_ac_Header=\$ac_header_preproc" fi ac_res=`eval echo '${'$as_ac_Header'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } fi if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test -z "$CXX"; then if test -n "$CCC"; then CXX=$CCC else if test -n "$ac_tool_prefix"; then for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC 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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CXX"; then ac_cv_prog_CXX="$CXX" # 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CXX=$ac_cv_prog_CXX if test -n "$CXX"; then { echo "$as_me:$LINENO: result: $CXX" >&5 echo "${ECHO_T}$CXX" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$CXX" && break done fi if test -z "$CXX"; then ac_ct_CXX=$CXX for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CXX"; then ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CXX="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CXX=$ac_cv_prog_ac_ct_CXX if test -n "$ac_ct_CXX"; then { echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 echo "${ECHO_T}$ac_ct_CXX" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$ac_ct_CXX" && break done if test "x$ac_ct_CXX" = x; then CXX="g++" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac CXX=$ac_ct_CXX fi fi fi fi # Provide some information about the compiler. echo "$as_me:$LINENO: checking for C++ compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (ac_try="$ac_compiler --version >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler --version >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -v >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -v >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -V >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -V >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5 echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6; } if test "${ac_cv_cxx_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_compiler_gnu=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_cxx_compiler_gnu=$ac_compiler_gnu fi { echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6; } GXX=`test $ac_compiler_gnu = yes && echo yes` ac_test_CXXFLAGS=${CXXFLAGS+set} ac_save_CXXFLAGS=$CXXFLAGS { echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6; } if test "${ac_cv_prog_cxx_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_save_cxx_werror_flag=$ac_cxx_werror_flag ac_cxx_werror_flag=yes ac_cv_prog_cxx_g=no CXXFLAGS="-g" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cxx_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 CXXFLAGS="" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cxx_werror_flag=$ac_save_cxx_werror_flag CXXFLAGS="-g" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cxx_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 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_cxx_werror_flag=$ac_save_cxx_werror_flag fi { echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6; } if test "$ac_test_CXXFLAGS" = set; then CXXFLAGS=$ac_save_CXXFLAGS elif test $ac_cv_prog_cxx_g = yes; then if test "$GXX" = yes; then CXXFLAGS="-g -O2" else CXXFLAGS="-g" fi else if test "$GXX" = yes; then CXXFLAGS="-O2" else CXXFLAGS= fi fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu depcc="$CXX" am_compiler_list= { echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; } if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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'. 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_CXX_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi 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 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in 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 ;; none) break ;; esac # 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. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} 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 sub/conftest.${OBJEXT-o} 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_CXX_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CXX_dependencies_compiler_type=none fi fi { echo "$as_me:$LINENO: result: $am_cv_CXX_dependencies_compiler_type" >&5 echo "${ECHO_T}$am_cv_CXX_dependencies_compiler_type" >&6; } CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then am__fastdepCXX_TRUE= am__fastdepCXX_FALSE='#' else am__fastdepCXX_TRUE='#' am__fastdepCXX_FALSE= fi if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu { echo "$as_me:$LINENO: checking how to run the C++ preprocessor" >&5 echo $ECHO_N "checking how to run the C++ preprocessor... $ECHO_C" >&6; } if test -z "$CXXCPP"; then if test "${ac_cv_prog_CXXCPP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # Double quotes because CXXCPP needs to be expanded for CXXCPP in "$CXX -E" "/lib/cpp" do ac_preproc_ok=false for ac_cxx_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 >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || test ! -s conftest.err }; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || test ! -s conftest.err }; then # Broken: success on invalid input. continue else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then break fi done ac_cv_prog_CXXCPP=$CXXCPP fi CXXCPP=$ac_cv_prog_CXXCPP else ac_cv_prog_CXXCPP=$CXXCPP fi { echo "$as_me:$LINENO: result: $CXXCPP" >&5 echo "${ECHO_T}$CXXCPP" >&6; } ac_preproc_ok=false for ac_cxx_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 >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || test ! -s conftest.err }; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || test ! -s conftest.err }; then # Broken: success on invalid input. continue else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { echo "$as_me:$LINENO: error: C++ preprocessor \"$CXXCPP\" fails sanity check See \`config.log' for more details." >&5 echo "$as_me: error: C++ preprocessor \"$CXXCPP\" fails sanity check See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu fi ac_ext=f ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_f77_compiler_gnu if test -n "$ac_tool_prefix"; then for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn 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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$F77"; then ac_cv_prog_F77="$F77" # 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_F77="$ac_tool_prefix$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi F77=$ac_cv_prog_F77 if test -n "$F77"; then { echo "$as_me:$LINENO: result: $F77" >&5 echo "${ECHO_T}$F77" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$F77" && break done fi if test -z "$F77"; then ac_ct_F77=$F77 for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_F77"; then ac_cv_prog_ac_ct_F77="$ac_ct_F77" # 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_F77="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_F77=$ac_cv_prog_ac_ct_F77 if test -n "$ac_ct_F77"; then { echo "$as_me:$LINENO: result: $ac_ct_F77" >&5 echo "${ECHO_T}$ac_ct_F77" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$ac_ct_F77" && break done if test "x$ac_ct_F77" = x; then F77="" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac F77=$ac_ct_F77 fi fi # Provide some information about the compiler. echo "$as_me:$LINENO: checking for Fortran 77 compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (ac_try="$ac_compiler --version >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler --version >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -v >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -v >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -V >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -V >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } rm -f a.out # If we don't use `.F' as extension, the preprocessor is not run on the # input file. (Note that this only needs to work for GNU compilers.) ac_save_ext=$ac_ext ac_ext=F { echo "$as_me:$LINENO: checking whether we are using the GNU Fortran 77 compiler" >&5 echo $ECHO_N "checking whether we are using the GNU Fortran 77 compiler... $ECHO_C" >&6; } if test "${ac_cv_f77_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF program main #ifndef __GNUC__ choke me #endif end _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_f77_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_compiler_gnu=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_f77_compiler_gnu=$ac_compiler_gnu fi { echo "$as_me:$LINENO: result: $ac_cv_f77_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_f77_compiler_gnu" >&6; } ac_ext=$ac_save_ext ac_test_FFLAGS=${FFLAGS+set} ac_save_FFLAGS=$FFLAGS FFLAGS= { echo "$as_me:$LINENO: checking whether $F77 accepts -g" >&5 echo $ECHO_N "checking whether $F77 accepts -g... $ECHO_C" >&6; } if test "${ac_cv_prog_f77_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else FFLAGS=-g cat >conftest.$ac_ext <<_ACEOF program main end _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_f77_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_f77_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_prog_f77_g=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $ac_cv_prog_f77_g" >&5 echo "${ECHO_T}$ac_cv_prog_f77_g" >&6; } if test "$ac_test_FFLAGS" = set; then FFLAGS=$ac_save_FFLAGS elif test $ac_cv_prog_f77_g = yes; then if test "x$ac_cv_f77_compiler_gnu" = xyes; then FFLAGS="-g -O2" else FFLAGS="-g" fi else if test "x$ac_cv_f77_compiler_gnu" = xyes; then FFLAGS="-O2" else FFLAGS= fi fi G77=`test $ac_compiler_gnu = yes && echo yes` 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 # Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! # find the maximum length of command line arguments { echo "$as_me:$LINENO: checking the maximum length of command line arguments" >&5 echo $ECHO_N "checking the maximum length of command line arguments... $ECHO_C" >&6; } if test "${lt_cv_sys_max_cmd_len+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} while (test "X"`$SHELL $0 --fallback-echo "X$teststring" 2>/dev/null` \ = "XX$teststring") >/dev/null 2>&1 && new_result=`expr "X$teststring" : ".*" 2>&1` && lt_cv_sys_max_cmd_len=$new_result && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done teststring= # Add a significant safety factor because C++ compilers can tack on massive # amounts of additional arguments before passing them to the linker. # It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac fi if test -n $lt_cv_sys_max_cmd_len ; then { echo "$as_me:$LINENO: result: $lt_cv_sys_max_cmd_len" >&5 echo "${ECHO_T}$lt_cv_sys_max_cmd_len" >&6; } else { echo "$as_me:$LINENO: result: none" >&5 echo "${ECHO_T}none" >&6; } fi # Check for command to grab the raw symbol name followed by C symbol from nm. { echo "$as_me:$LINENO: checking command to parse $NM output from $compiler object" >&5 echo $ECHO_N "checking command to parse $NM output from $compiler object... $ECHO_C" >&6; } if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[BCDEGRST]' # Regexp to match symbols that can be accessed directly from C. sympat='\([_A-Za-z][_A-Za-z0-9]*\)' # Transform an extracted symbol line into a proper C declaration lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([^ ]*\) \([^ ]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" # Define system-specific variables. case $host_os in aix*) symcode='[BCDT]' ;; cygwin* | mingw* | pw32*) symcode='[ABCDGISTW]' ;; hpux*) # Its linker distinguishes data from code symbols if test "$host_cpu" = ia64; then symcode='[ABCDEGRST]' fi lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ;; linux* | k*bsd*-gnu) if test "$host_cpu" = ia64; then symcode='[ABCDGIRSTW]' lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" fi ;; irix* | nonstopux*) symcode='[BCDEGRST]' ;; osf*) symcode='[BCDEGQRST]' ;; solaris*) symcode='[BDRT]' ;; sco3.2v5*) symcode='[DT]' ;; sysv4.2uw2*) symcode='[DT]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[ABDT]' ;; sysv4) symcode='[DFNSTU]' ;; esac # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[ABCDGIRSTW]' ;; esac # Try without a prefix undercore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then # Now try to grab the symbols. nlist=conftest.nm if { (eval echo "$as_me:$LINENO: \"$NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist\"") >&5 (eval $NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if grep ' nm_test_var$' "$nlist" >/dev/null; then if grep ' nm_test_func$' "$nlist" >/dev/null; then cat < conftest.$ac_ext #ifdef __cplusplus extern "C" { #endif EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext' cat <> conftest.$ac_ext #if defined (__STDC__) && __STDC__ # define lt_ptr_t void * #else # define lt_ptr_t char * # define const #endif /* The mapping between symbol names and symbols. */ const struct { const char *name; lt_ptr_t address; } lt_preloaded_symbols[] = { EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext cat <<\EOF >> conftest.$ac_ext {0, (lt_ptr_t) 0} }; #ifdef __cplusplus } #endif EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_save_LIBS="$LIBS" lt_save_CFLAGS="$CFLAGS" LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS="$lt_save_LIBS" CFLAGS="$lt_save_CFLAGS" else echo "cannot find nm_test_func in $nlist" >&5 fi else echo "cannot find nm_test_var in $nlist" >&5 fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 fi else echo "$progname: failed program was:" >&5 cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done fi if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then { echo "$as_me:$LINENO: result: failed" >&5 echo "${ECHO_T}failed" >&6; } else { echo "$as_me:$LINENO: result: ok" >&5 echo "${ECHO_T}ok" >&6; } fi { echo "$as_me:$LINENO: checking for objdir" >&5 echo $ECHO_N "checking for objdir... $ECHO_C" >&6; } if test "${lt_cv_objdir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null fi { echo "$as_me:$LINENO: result: $lt_cv_objdir" >&5 echo "${ECHO_T}$lt_cv_objdir" >&6; } objdir=$lt_cv_objdir case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='sed -e 1s/^X//' sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' # Constants: rm="rm -f" # Global variables: default_ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a ltmain="$ac_aux_dir/ltmain.sh" ofile="$default_ofile" with_gnu_ld="$lt_cv_prog_gnu_ld" if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. set dummy ${ac_tool_prefix}ar; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_AR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$AR"; then ac_cv_prog_AR="$AR" # 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_AR="${ac_tool_prefix}ar" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then { echo "$as_me:$LINENO: result: $AR" >&5 echo "${ECHO_T}$AR" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi if test -z "$ac_cv_prog_AR"; then ac_ct_AR=$AR # Extract the first word of "ar", so it can be a program name with args. set dummy ar; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_AR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_AR="ar" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then { echo "$as_me:$LINENO: result: $ac_ct_AR" >&5 echo "${ECHO_T}$ac_ct_AR" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_ct_AR" = x; then AR="false" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac AR=$ac_ct_AR fi else AR="$ac_cv_prog_AR" fi 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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_RANLIB="ranlib" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5 echo "${ECHO_T}$ac_ct_RANLIB" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_ct_RANLIB" = x; then RANLIB=":" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac RANLIB=$ac_ct_RANLIB fi else RANLIB="$ac_cv_prog_RANLIB" fi 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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $STRIP" >&5 echo "${ECHO_T}$STRIP" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_STRIP="strip" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 echo "${ECHO_T}$ac_ct_STRIP" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$AR" && AR=ar test -z "$AR_FLAGS" && AR_FLAGS=cru test -z "$AS" && AS=as test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$DLLTOOL" && DLLTOOL=dlltool test -z "$LD" && LD=ld test -z "$LN_S" && LN_S="ln -s" test -z "$MAGIC_CMD" && MAGIC_CMD=file test -z "$NM" && NM=nm test -z "$SED" && SED=sed test -z "$OBJDUMP" && OBJDUMP=objdump test -z "$RANLIB" && RANLIB=: test -z "$STRIP" && STRIP=: test -z "$ac_objext" && ac_objext=o # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" fi for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` # Only perform the check for file, if the check method requires it case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then { echo "$as_me:$LINENO: checking for ${ac_tool_prefix}file" >&5 echo $ECHO_N "checking for ${ac_tool_prefix}file... $ECHO_C" >&6; } if test "${lt_cv_path_MAGIC_CMD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/${ac_tool_prefix}file; then lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then { echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5 echo "${ECHO_T}$MAGIC_CMD" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then { echo "$as_me:$LINENO: checking for file" >&5 echo $ECHO_N "checking for file... $ECHO_C" >&6; } if test "${lt_cv_path_MAGIC_CMD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/file; then lt_cv_path_MAGIC_CMD="$ac_dir/file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then { echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5 echo "${ECHO_T}$MAGIC_CMD" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi else MAGIC_CMD=: fi fi fi ;; esac case $host_os in rhapsody* | darwin*) if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_DSYMUTIL+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$DSYMUTIL"; then ac_cv_prog_DSYMUTIL="$DSYMUTIL" # 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DSYMUTIL=$ac_cv_prog_DSYMUTIL if test -n "$DSYMUTIL"; then { echo "$as_me:$LINENO: result: $DSYMUTIL" >&5 echo "${ECHO_T}$DSYMUTIL" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi if test -z "$ac_cv_prog_DSYMUTIL"; then ac_ct_DSYMUTIL=$DSYMUTIL # Extract the first word of "dsymutil", so it can be a program name with args. set dummy dsymutil; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_DSYMUTIL+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_DSYMUTIL"; then ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL if test -n "$ac_ct_DSYMUTIL"; then { echo "$as_me:$LINENO: result: $ac_ct_DSYMUTIL" >&5 echo "${ECHO_T}$ac_ct_DSYMUTIL" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_ct_DSYMUTIL" = x; then DSYMUTIL=":" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac DSYMUTIL=$ac_ct_DSYMUTIL fi else DSYMUTIL="$ac_cv_prog_DSYMUTIL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. set dummy ${ac_tool_prefix}nmedit; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_NMEDIT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$NMEDIT"; then ac_cv_prog_NMEDIT="$NMEDIT" # 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi NMEDIT=$ac_cv_prog_NMEDIT if test -n "$NMEDIT"; then { echo "$as_me:$LINENO: result: $NMEDIT" >&5 echo "${ECHO_T}$NMEDIT" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi if test -z "$ac_cv_prog_NMEDIT"; then ac_ct_NMEDIT=$NMEDIT # Extract the first word of "nmedit", so it can be a program name with args. set dummy nmedit; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_NMEDIT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_NMEDIT"; then ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_NMEDIT="nmedit" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT if test -n "$ac_ct_NMEDIT"; then { echo "$as_me:$LINENO: result: $ac_ct_NMEDIT" >&5 echo "${ECHO_T}$ac_ct_NMEDIT" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_ct_NMEDIT" = x; then NMEDIT=":" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac NMEDIT=$ac_ct_NMEDIT fi else NMEDIT="$ac_cv_prog_NMEDIT" fi { echo "$as_me:$LINENO: checking for -single_module linker flag" >&5 echo $ECHO_N "checking for -single_module linker flag... $ECHO_C" >&6; } if test "${lt_cv_apple_cc_single_mod+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_apple_cc_single_mod=no if test -z "${LT_MULTI_MODULE}"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. echo "int foo(void){return 1;}" > conftest.c $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib ${wl}-single_module conftest.c if test -f libconftest.dylib; then lt_cv_apple_cc_single_mod=yes rm -rf libconftest.dylib* fi rm conftest.c fi fi { echo "$as_me:$LINENO: result: $lt_cv_apple_cc_single_mod" >&5 echo "${ECHO_T}$lt_cv_apple_cc_single_mod" >&6; } { echo "$as_me:$LINENO: checking for -exported_symbols_list linker flag" >&5 echo $ECHO_N "checking for -exported_symbols_list linker flag... $ECHO_C" >&6; } if test "${lt_cv_ld_exported_symbols_list+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then lt_cv_ld_exported_symbols_list=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 lt_cv_ld_exported_symbols_list=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LDFLAGS="$save_LDFLAGS" fi { echo "$as_me:$LINENO: result: $lt_cv_ld_exported_symbols_list" >&5 echo "${ECHO_T}$lt_cv_ld_exported_symbols_list" >&6; } case $host_os in rhapsody* | darwin1.[0123]) _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; darwin*) # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[91]*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; 10.[012]*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test "$lt_cv_apple_cc_single_mod" = "yes"; then _lt_dar_single_mod='$single_module' fi if test "$lt_cv_ld_exported_symbols_list" = "yes"; then _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' else _lt_dar_export_syms="~$NMEDIT -s \$output_objdir/\${libname}-symbols.expsym \${lib}" fi if test "$DSYMUTIL" != ":"; then _lt_dsymutil="~$DSYMUTIL \$lib || :" else _lt_dsymutil= fi ;; esac enable_dlopen=no enable_win32_dll=no # Check whether --enable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then enableval=$enable_libtool_lock; fi test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Check whether --with-pic was given. if test "${with_pic+set}" = set; then withval=$with_pic; pic_mode="$withval" else pic_mode=default fi test -z "$pic_mode" && pic_mode=default # Use C for the default configuration in the libtool script tagname= lt_save_CC="$CC" 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 # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o objext=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm -r conftest* lt_prog_compiler_no_builtin_flag= if test "$GCC" = yes; then lt_prog_compiler_no_builtin_flag=' -fno-builtin' { echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 echo $ECHO_N "checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-fno-rtti -fno-exceptions" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:9579: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:9583: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi $rm conftest* fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_rtti_exceptions" >&6; } if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" else : fi fi lt_prog_compiler_wl= lt_prog_compiler_pic= lt_prog_compiler_static= { echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; } if test "$GCC" = yes; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared=no enable_shared=no ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic='-fPIC' ;; esac ;; *) lt_prog_compiler_pic='-fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' fi ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) lt_prog_compiler_pic='-qnocommon' lt_prog_compiler_wl='-Wl,' ;; esac ;; mingw* | cygwin* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static='-non_shared' ;; newsos6) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; linux* | k*bsd*-gnu) case $cc_basename in icc* | ecc*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-static' ;; pgcc* | pgf77* | pgf90* | pgf95*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; ccc*) lt_prog_compiler_wl='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static='-non_shared' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Wl,' ;; *Sun\ F*) # Sun Fortran 8.3 passes all unrecognized flags to the linker lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='' ;; esac ;; esac ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static='-non_shared' ;; rdos*) lt_prog_compiler_static='-non_shared' ;; solaris*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' case $cc_basename in f77* | f90* | f95*) lt_prog_compiler_wl='-Qoption ld ';; *) lt_prog_compiler_wl='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl='-Qoption ld ' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then lt_prog_compiler_pic='-Kconform_pic' lt_prog_compiler_static='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; unicos*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_can_build_shared=no ;; uts4*) lt_prog_compiler_pic='-pic' lt_prog_compiler_static='-Bstatic' ;; *) lt_prog_compiler_can_build_shared=no ;; esac fi { echo "$as_me:$LINENO: result: $lt_prog_compiler_pic" >&5 echo "${ECHO_T}$lt_prog_compiler_pic" >&6; } # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic"; then { echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic works... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_pic_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_pic_works=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic -DPIC" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:9869: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:9873: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works=yes fi fi $rm conftest* fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_pic_works" >&6; } if test x"$lt_cv_prog_compiler_pic_works" = xyes; then case $lt_prog_compiler_pic in "" | " "*) ;; *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; esac else lt_prog_compiler_pic= lt_prog_compiler_can_build_shared=no fi fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic= ;; *) lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" ;; esac # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" { echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_static_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_static_works=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works=yes fi else lt_cv_prog_compiler_static_works=yes fi fi $rm -r conftest* LDFLAGS="$save_LDFLAGS" fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_static_works" >&6; } if test x"$lt_cv_prog_compiler_static_works" = xyes; then : else lt_prog_compiler_static= fi { echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_c_o+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_c_o=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:9973: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:9977: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_c_o" >&6; } hard_links="nottested" if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user { echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6; } hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no { echo "$as_me:$LINENO: result: $hard_links" >&5 echo "${ECHO_T}$hard_links" >&6; } if test "$hard_links" = no; then { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi { echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; } runpath_var= allow_undefined_flag= enable_shared_with_static_runtimes=no archive_cmds= archive_expsym_cmds= old_archive_From_new_cmds= old_archive_from_expsyms_cmds= export_dynamic_flag_spec= whole_archive_flag_spec= thread_safe_flag_spec= hardcode_libdir_flag_spec= hardcode_libdir_flag_spec_ld= hardcode_libdir_separator= hardcode_direct=no hardcode_minus_L=no hardcode_shlibpath_var=unsupported link_all_deplibs=unknown hardcode_automatic=no module_cmds= module_expsym_cmds= always_export_symbols=no export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. extract_expsyms_cmds= # Just being paranoid about ensuring that cc_basename is set. for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` case $host_os in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs=yes if test "$with_gnu_ld" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec= fi supports_anon_versioning=no case `$LD -v 2>/dev/null` in *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs=no cat <&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. EOF fi ;; amigaos*) archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we can't use # them. ld_shlibs=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then allow_undefined_flag=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs=no fi ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' allow_undefined_flag=unsupported always_export_symbols=no enable_shared_with_static_runtimes=yes export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/'\'' -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs=no fi ;; interix[3-9]*) hardcode_direct=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | k*bsd*-gnu) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then tmp_addflag= case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; *) tmp_sharedflag='-shared' ;; esac archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test $supports_anon_versioning = yes; then archive_expsym_cmds='$echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi link_all_deplibs=no else ld_shlibs=no fi ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ld_shlibs=no cat <&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. EOF elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' else ld_shlibs=no fi ;; esac ;; sunos4*) archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct=yes hardcode_shlibpath_var=no ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac if test "$ld_shlibs" = no; then runpath_var= hardcode_libdir_flag_spec= export_dynamic_flag_spec= whole_archive_flag_spec= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag=unsupported always_export_symbols=yes archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix[4-9]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds='' hardcode_direct=yes hardcode_libdir_separator=':' link_all_deplibs=yes if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag='-berok' # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/ p } }' aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag="-z nodefs" archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/ p } }' aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag=' ${wl}-bernotok' allow_undefined_flag=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec='$convenience' archive_cmds_need_lc=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes # see comment about different semantics on the GNU ld section ld_shlibs=no ;; bsdi[45]*) export_dynamic_flag_spec=-rdynamic ;; cygwin* | mingw* | pw32*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_From_new_cmds='true' # FIXME: Should let the user specify the lib program. old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' fix_srcfile_path='`cygpath -w "$srcfile"`' enable_shared_with_static_runtimes=yes ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[012]) allow_undefined_flag='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then allow_undefined_flag='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[012]) allow_undefined_flag='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) allow_undefined_flag='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac archive_cmds_need_lc=no hardcode_direct=no hardcode_automatic=yes hardcode_shlibpath_var=unsupported whole_archive_flag_spec='' link_all_deplibs=yes if test "$GCC" = yes ; then output_verbose_link_cmd='echo' archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" else case $cc_basename in xlc*) output_verbose_link_cmd='echo' archive_cmds='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring' module_cmds='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds archive_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' module_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ;; *) ld_shlibs=no ;; esac fi ;; dgux*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; freebsd1*) ld_shlibs=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; hpux9*) if test "$GCC" = yes; then archive_cmds='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else archive_cmds='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes export_dynamic_flag_spec='${wl}-E' ;; hpux10*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes export_dynamic_flag_spec='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes fi ;; hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: case $host_cpu in hppa*64*|ia64*) hardcode_libdir_flag_spec_ld='+b $libdir' hardcode_direct=no hardcode_shlibpath_var=no ;; *) hardcode_direct=yes export_dynamic_flag_spec='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_ld='-rpath $libdir' fi hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: link_all_deplibs=yes ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; newsos6) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: hardcode_shlibpath_var=no ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes hardcode_shlibpath_var=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' else case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-R$libdir' ;; *) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; esac fi else ld_shlibs=no fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported archive_cmds='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_From_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' fi hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi hardcode_libdir_separator=: ;; solaris*) no_undefined_flag=' -z text' if test "$GCC" = yes; then wlarc='${wl}' archive_cmds='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else wlarc='' archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' fi hardcode_libdir_flag_spec='-R$libdir' hardcode_shlibpath_var=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. GCC discards it without `$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test "$GCC" = yes; then whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' else whole_archive_flag_spec='-z allextract$convenience -z defaultextract' fi ;; esac link_all_deplibs=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; sysv4) case $host_vendor in sni) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds='$CC -r -o $output$reload_objs' hardcode_direct=no ;; motorola) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var=no ;; sysv4.3*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no export_dynamic_flag_spec='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag='${wl}-z,text' archive_cmds_need_lc=no hardcode_shlibpath_var=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag='${wl}-z,text' allow_undefined_flag='${wl}-z,nodefs' archive_cmds_need_lc=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' hardcode_libdir_separator=':' link_all_deplibs=yes export_dynamic_flag_spec='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; *) ld_shlibs=no ;; esac fi { echo "$as_me:$LINENO: result: $ld_shlibs" >&5 echo "${ECHO_T}$ld_shlibs" >&6; } test "$ld_shlibs" = no && can_build_shared=no # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc" in x|xyes) # Assume -lc should be added archive_cmds_need_lc=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6; } $rm conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl pic_flag=$lt_prog_compiler_pic compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag allow_undefined_flag= if { (eval echo "$as_me:$LINENO: \"$archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 (eval $archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } then archive_cmds_need_lc=no else archive_cmds_need_lc=yes fi allow_undefined_flag=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* { echo "$as_me:$LINENO: result: $archive_cmds_need_lc" >&5 echo "${ECHO_T}$archive_cmds_need_lc" >&6; } ;; esac fi ;; esac { echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6; } library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" if test "$GCC" = yes; then case $host_os in darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; *) lt_awk_arg="/^libraries:/" ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$lt_search_path_spec" | grep ';' >/dev/null ; then # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`echo "$lt_search_path_spec" | $SED -e 's/;/ /g'` else lt_search_path_spec=`echo "$lt_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary. lt_tmp_lt_search_path_spec= lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path/$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" else test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`echo $lt_tmp_lt_search_path_spec | awk ' BEGIN {RS=" "; FS="/|\n";} { lt_foo=""; lt_count=0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo="/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[lt_foo]++; } if (lt_freq[lt_foo] == 1) { print lt_foo; } }'` sys_lib_search_path_spec=`echo $lt_search_path_spec` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[4-9]*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[123]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix[3-9]*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux* | k*bsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' shlibpath_overrides_runpath=no else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' shlibpath_overrides_runpath=yes case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { echo "$as_me:$LINENO: result: $dynamic_linker" >&5 echo "${ECHO_T}$dynamic_linker" >&6; } test "$dynamic_linker" = no && can_build_shared=no if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec" fi sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec" fi sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi { echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; } hardcode_action= if test -n "$hardcode_libdir_flag_spec" || \ test -n "$runpath_var" || \ test "X$hardcode_automatic" = "Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, )" != no && test "$hardcode_minus_L" != no; then # Linking always hardcodes the temporary library directory. hardcode_action=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action=unsupported fi { echo "$as_me:$LINENO: result: $hardcode_action" >&5 echo "${ECHO_T}$hardcode_action" >&6; } if test "$hardcode_action" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi striplib= old_striplib= { echo "$as_me:$LINENO: checking whether stripping libraries is possible" >&5 echo $ECHO_N "checking whether stripping libraries is possible... $ECHO_C" >&6; } if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" old_striplib="$STRIP -S" { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi ;; *) { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } ;; esac fi if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it { echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6; } if test "${ac_cv_lib_dl_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_dl_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6; } if test $ac_cv_lib_dl_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes fi ;; *) { echo "$as_me:$LINENO: checking for shl_load" >&5 echo $ECHO_N "checking for shl_load... $ECHO_C" >&6; } if test "${ac_cv_func_shl_load+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define shl_load to an innocuous variant, in case declares shl_load. For example, HP-UX 11i declares gettimeofday. */ #define shl_load innocuous_shl_load /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shl_load (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef shl_load /* 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 shl_load (); /* 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_shl_load || defined __stub___shl_load choke me #endif int main () { return shl_load (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_func_shl_load=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_shl_load=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5 echo "${ECHO_T}$ac_cv_func_shl_load" >&6; } if test $ac_cv_func_shl_load = yes; then lt_cv_dlopen="shl_load" else { echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5 echo $ECHO_N "checking for shl_load in -ldld... $ECHO_C" >&6; } if test "${ac_cv_lib_dld_shl_load+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 shl_load (); int main () { return shl_load (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_dld_shl_load=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dld_shl_load=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5 echo "${ECHO_T}$ac_cv_lib_dld_shl_load" >&6; } if test $ac_cv_lib_dld_shl_load = yes; then lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" else { echo "$as_me:$LINENO: checking for dlopen" >&5 echo $ECHO_N "checking for dlopen... $ECHO_C" >&6; } if test "${ac_cv_func_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define dlopen to an innocuous variant, in case declares dlopen. For example, HP-UX 11i declares gettimeofday. */ #define dlopen innocuous_dlopen /* System header to define __stub macros and hopefully few prototypes, which can conflict with char dlopen (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef dlopen /* 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 dlopen (); /* 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_dlopen || defined __stub___dlopen choke me #endif int main () { return dlopen (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_func_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_func_dlopen=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5 echo "${ECHO_T}$ac_cv_func_dlopen" >&6; } if test $ac_cv_func_dlopen = yes; then lt_cv_dlopen="dlopen" else { echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6; } if test "${ac_cv_lib_dl_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_dl_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6; } if test $ac_cv_lib_dl_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else { echo "$as_me:$LINENO: checking for dlopen in -lsvld" >&5 echo $ECHO_N "checking for dlopen in -lsvld... $ECHO_C" >&6; } if test "${ac_cv_lib_svld_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsvld $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_svld_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_svld_dlopen=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_svld_dlopen" >&6; } if test $ac_cv_lib_svld_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" else { echo "$as_me:$LINENO: checking for dld_link in -ldld" >&5 echo $ECHO_N "checking for dld_link in -ldld... $ECHO_C" >&6; } if test "${ac_cv_lib_dld_dld_link+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 dld_link (); int main () { return dld_link (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_dld_dld_link=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_dld_dld_link=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5 echo "${ECHO_T}$ac_cv_lib_dld_dld_link" >&6; } if test $ac_cv_lib_dld_dld_link = yes; then lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" fi fi fi fi fi fi ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" { echo "$as_me:$LINENO: checking whether a program can dlopen itself" >&5 echo $ECHO_N "checking whether a program can dlopen itself... $ECHO_C" >&6; } if test "${lt_cv_dlopen_self+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif #ifdef __cplusplus extern "C" void exit (int); #endif void fnord() { int i=42;} int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; /* dlclose (self); */ } else puts (dlerror ()); exit (status); } EOF if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; esac else : # compilation failed lt_cv_dlopen_self=no fi fi rm -fr conftest* fi { echo "$as_me:$LINENO: result: $lt_cv_dlopen_self" >&5 echo "${ECHO_T}$lt_cv_dlopen_self" >&6; } if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" { echo "$as_me:$LINENO: checking whether a statically linked program can dlopen itself" >&5 echo $ECHO_N "checking whether a statically linked program can dlopen itself... $ECHO_C" >&6; } if test "${lt_cv_dlopen_self_static+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self_static=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif #ifdef __cplusplus extern "C" void exit (int); #endif void fnord() { int i=42;} int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; /* dlclose (self); */ } else puts (dlerror ()); exit (status); } EOF if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; esac else : # compilation failed lt_cv_dlopen_self_static=no fi fi rm -fr conftest* fi { echo "$as_me:$LINENO: result: $lt_cv_dlopen_self_static" >&5 echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6; } fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi # Report which library types will actually be built { echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5 echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6; } { echo "$as_me:$LINENO: result: $can_build_shared" >&5 echo "${ECHO_T}$can_build_shared" >&6; } { echo "$as_me:$LINENO: checking whether to build shared libraries" >&5 echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6; } test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[4-9]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac { echo "$as_me:$LINENO: result: $enable_shared" >&5 echo "${ECHO_T}$enable_shared" >&6; } { echo "$as_me:$LINENO: checking whether to build static libraries" >&5 echo $ECHO_N "checking whether to build static libraries... $ECHO_C" >&6; } # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes { echo "$as_me:$LINENO: result: $enable_static" >&5 echo "${ECHO_T}$enable_static" >&6; } # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler \ CC \ LD \ lt_prog_compiler_wl \ lt_prog_compiler_pic \ lt_prog_compiler_static \ lt_prog_compiler_no_builtin_flag \ export_dynamic_flag_spec \ thread_safe_flag_spec \ whole_archive_flag_spec \ enable_shared_with_static_runtimes \ old_archive_cmds \ old_archive_from_new_cmds \ predep_objects \ postdep_objects \ predeps \ postdeps \ compiler_lib_search_path \ compiler_lib_search_dirs \ archive_cmds \ archive_expsym_cmds \ postinstall_cmds \ postuninstall_cmds \ old_archive_from_expsyms_cmds \ allow_undefined_flag \ no_undefined_flag \ export_symbols_cmds \ hardcode_libdir_flag_spec \ hardcode_libdir_flag_spec_ld \ hardcode_libdir_separator \ hardcode_automatic \ module_cmds \ module_expsym_cmds \ lt_cv_prog_compiler_c_o \ fix_srcfile_path \ exclude_expsyms \ include_expsyms; do case $var in old_archive_cmds | \ old_archive_from_new_cmds | \ archive_cmds | \ archive_expsym_cmds | \ module_cmds | \ module_expsym_cmds | \ old_archive_from_expsyms_cmds | \ export_symbols_cmds | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="${ofile}T" trap "$rm \"$cfgfile\"; exit 1" 1 2 15 $rm -f "$cfgfile" { echo "$as_me:$LINENO: creating $ofile" >&5 echo "$as_me: creating $ofile" >&6;} cat <<__EOF__ >> "$cfgfile" #! $SHELL # `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) # NOTE: Changes made to this file will be lost: look at ltmain.sh. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 # Free Software Foundation, Inc. # # This file is part of GNU Libtool: # Originally by Gordon Matzigkeit , 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 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # 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. # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="$SED -e 1s/^X//" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # The names of the tagged configurations supported by this script. available_tags= # ### BEGIN LIBTOOL CONFIG # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_compiler # Is the compiler the GNU C compiler? with_gcc=$GCC # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds archive_expsym_cmds=$lt_archive_expsym_cmds postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds module_expsym_cmds=$lt_module_expsym_cmds # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=$lt_predep_objects # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=$lt_postdep_objects # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps # The directories searched by this compiler when creating a shared # library compiler_lib_search_dirs=$lt_compiler_lib_search_dirs # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs # Compile-time system search path for libraries sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path=$lt_fix_srcfile_path # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms # Symbols that must always be exported. include_expsyms=$lt_include_expsyms # ### END LIBTOOL CONFIG __EOF__ case $host_os in aix3*) cat <<\EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi EOF ;; esac # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || \ (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi 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 CC="$lt_save_CC" # Check whether --with-tags was given. if test "${with_tags+set}" = set; then withval=$with_tags; tagnames="$withval" fi if test -f "$ltmain" && test -n "$tagnames"; then if test ! -f "${ofile}"; then { echo "$as_me:$LINENO: WARNING: output file \`$ofile' does not exist" >&5 echo "$as_me: WARNING: output file \`$ofile' does not exist" >&2;} fi if test -z "$LTCC"; then eval "`$SHELL ${ofile} --config | grep '^LTCC='`" if test -z "$LTCC"; then { echo "$as_me:$LINENO: WARNING: output file \`$ofile' does not look like a libtool script" >&5 echo "$as_me: WARNING: output file \`$ofile' does not look like a libtool script" >&2;} else { echo "$as_me:$LINENO: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&5 echo "$as_me: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&2;} fi fi if test -z "$LTCFLAGS"; then eval "`$SHELL ${ofile} --config | grep '^LTCFLAGS='`" fi # Extract list of available tagged configurations in $ofile. # Note that this assumes the entire list is on one line. available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'` lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for tagname in $tagnames; do IFS="$lt_save_ifs" # Check whether tagname contains only valid characters case `$echo "X$tagname" | $Xsed -e 's:[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]::g'` in "") ;; *) { { echo "$as_me:$LINENO: error: invalid tag name: $tagname" >&5 echo "$as_me: error: invalid tag name: $tagname" >&2;} { (exit 1); exit 1; }; } ;; esac if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null then { { echo "$as_me:$LINENO: error: tag name \"$tagname\" already exists" >&5 echo "$as_me: error: tag name \"$tagname\" already exists" >&2;} { (exit 1); exit 1; }; } fi # Update the list of available tags. if test -n "$tagname"; then echo appending configuration tag \"$tagname\" to $ofile case $tagname in CXX) if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu archive_cmds_need_lc_CXX=no allow_undefined_flag_CXX= always_export_symbols_CXX=no archive_expsym_cmds_CXX= export_dynamic_flag_spec_CXX= hardcode_direct_CXX=no hardcode_libdir_flag_spec_CXX= hardcode_libdir_flag_spec_ld_CXX= hardcode_libdir_separator_CXX= hardcode_minus_L_CXX=no hardcode_shlibpath_var_CXX=unsupported hardcode_automatic_CXX=no module_cmds_CXX= module_expsym_cmds_CXX= link_all_deplibs_CXX=unknown old_archive_cmds_CXX=$old_archive_cmds no_undefined_flag_CXX= whole_archive_flag_spec_CXX= enable_shared_with_static_runtimes_CXX=no # Dependencies to place before and after the object being linked: predep_objects_CXX= postdep_objects_CXX= predeps_CXX= postdeps_CXX= compiler_lib_search_path_CXX= compiler_lib_search_dirs_CXX= # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o objext_CXX=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[]) { return(0); }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm -r conftest* # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} compiler=$CC compiler_CXX=$CC for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` # We don't want -fno-exception wen compiling C++ code, so set the # no_builtin_flag separately if test "$GXX" = yes; then lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' else lt_prog_compiler_no_builtin_flag_CXX= fi if test "$GXX" = yes; then # Set up default GNU C++ configuration # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. { echo "$as_me:$LINENO: checking for ld used by $CC" >&5 echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'` while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then { echo "$as_me:$LINENO: checking for GNU ld" >&5 echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6; } else { echo "$as_me:$LINENO: checking for non-GNU ld" >&5 echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6; } fi if test "${lt_cv_path_LD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 echo "${ECHO_T}$LD" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5 echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} { (exit 1); exit 1; }; } { echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6; } if test "${lt_cv_prog_gnu_ld+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6; } with_gnu_ld=$lt_cv_prog_gnu_ld # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test "$with_gnu_ld" = yes; then archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='${wl}' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | \ grep 'no-whole-archive' > /dev/null; then whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec_CXX= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics { echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; } ld_shlibs_CXX=yes case $host_os in aix3*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aix[4-9]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds_CXX='' hardcode_direct_CXX=yes hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes if test "$GXX" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct_CXX=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L_CXX=yes hardcode_libdir_flag_spec_CXX='-L$libdir' hardcode_libdir_separator_CXX= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols_CXX=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag_CXX='-berok' # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/ p } }' aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds_CXX="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec_CXX='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag_CXX="-z nodefs" archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/ p } }' aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag_CXX=' ${wl}-bernotok' allow_undefined_flag_CXX=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_CXX='$convenience' archive_cmds_need_lc_CXX=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then allow_undefined_flag_CXX=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs_CXX=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_CXX='-L$libdir' allow_undefined_flag_CXX=unsupported always_export_symbols_CXX=no enable_shared_with_static_runtimes_CXX=yes if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs_CXX=no fi ;; darwin* | rhapsody*) archive_cmds_need_lc_CXX=no hardcode_direct_CXX=no hardcode_automatic_CXX=yes hardcode_shlibpath_var_CXX=unsupported whole_archive_flag_spec_CXX='' link_all_deplibs_CXX=yes allow_undefined_flag_CXX="$_lt_dar_allow_undefined" if test "$GXX" = yes ; then output_verbose_link_cmd='echo' archive_cmds_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" module_expsym_cmds_CXX="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" if test "$lt_cv_apple_cc_single_mod" != "yes"; then archive_cmds_CXX="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" fi else case $cc_basename in xlc*) output_verbose_link_cmd='echo' archive_cmds_CXX='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring' module_cmds_CXX='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds archive_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' module_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ;; *) ld_shlibs_CXX=no ;; esac fi ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; freebsd[12]*) # C++ shared libraries reported to be fairly broken before switch to ELF ld_shlibs_CXX=no ;; freebsd-elf*) archive_cmds_need_lc_CXX=no ;; freebsd* | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions ld_shlibs_CXX=yes ;; gnu*) ;; hpux9*) hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' hardcode_libdir_separator_CXX=: export_dynamic_flag_spec_CXX='${wl}-E' hardcode_direct_CXX=yes hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aCC*) archive_cmds_CXX='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "[-]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then archive_cmds_CXX='$rm $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; hpux10*|hpux11*) if test $with_gnu_ld = no; then hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' hardcode_libdir_separator_CXX=: case $host_cpu in hppa*64*|ia64*) ;; *) export_dynamic_flag_spec_CXX='${wl}-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no ;; *) hardcode_direct_CXX=yes hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aCC*) case $host_cpu in hppa*64*) archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then if test $with_gnu_ld = no; then case $host_cpu in hppa*64*) archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; interix[3-9]*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' export_dynamic_flag_spec_CXX='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds_CXX='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test "$GXX" = yes; then if test "$with_gnu_ld" = no; then archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib' fi fi link_all_deplibs_CXX=yes ;; esac hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: ;; linux* | k*bsd*-gnu) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | grep "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' hardcode_libdir_flag_spec_CXX='${wl}--rpath,$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc*) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; esac archive_cmds_need_lc_CXX=no hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' whole_archive_flag_spec_CXX='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' ;; cxx*) # Compaq C++ archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_CXX='-rpath $libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 no_undefined_flag_CXX=' -zdefs' archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' archive_expsym_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' hardcode_libdir_flag_spec_CXX='-R$libdir' whole_archive_flag_spec_CXX='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' # Not sure whether something based on # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 # would be better. output_verbose_link_cmd='echo' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; m88k*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_CXX='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; openbsd2*) # C++ shared libraries are fairly broken ld_shlibs_CXX=no ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=no archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' export_dynamic_flag_spec_CXX='${wl}-E' whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' fi output_verbose_link_cmd='echo' else ld_shlibs_CXX=no fi ;; osf3*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' hardcode_libdir_separator_CXX=: # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; cxx*) allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' hardcode_libdir_separator_CXX=: # Archives containing C++ object files must be created using # the KAI C++ compiler. old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; cxx*) allow_undefined_flag_CXX=' -expect_unresolved \*' archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~ $rm $lib.exp' hardcode_libdir_flag_spec_CXX='-rpath $libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; solaris*) case $cc_basename in CC*) # Sun C++ 4.2, 5.x and Centerline C++ archive_cmds_need_lc_CXX=yes no_undefined_flag_CXX=' -zdefs' archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' archive_expsym_cmds_CXX='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_shlibpath_var_CXX=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) whole_archive_flag_spec_CXX='-z allextract$convenience -z defaultextract' ;; esac link_all_deplibs_CXX=yes output_verbose_link_cmd='echo' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test "$GXX" = yes && test "$with_gnu_ld" = no; then no_undefined_flag_CXX=' ${wl}-z ${wl}defs' if $CC --version | grep -v '^2\.7' > /dev/null; then archive_cmds_CXX='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' archive_expsym_cmds_CXX='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd="$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" else # g++ 2.7 appears to require `-G' NOT `-shared' on this # platform. archive_cmds_CXX='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' archive_expsym_cmds_CXX='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd="$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" fi hardcode_libdir_flag_spec_CXX='${wl}-R $wl$libdir' case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) whole_archive_flag_spec_CXX='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag_CXX='${wl}-z,text' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. # So that behaviour is only enabled if SCOABSPATH is set to a # non-empty value in the environment. Most likely only useful for # creating official distributions of packages. # This is a hack until libtool officially supports absolute path # names for shared libraries. no_undefined_flag_CXX='${wl}-z,text' allow_undefined_flag_CXX='${wl}-z,nodefs' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no hardcode_libdir_flag_spec_CXX='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes export_dynamic_flag_spec_CXX='${wl}-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) archive_cmds_CXX='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac { echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5 echo "${ECHO_T}$ld_shlibs_CXX" >&6; } test "$ld_shlibs_CXX" = no && can_build_shared=no GCC_CXX="$GXX" LD_CXX="$LD" cat > conftest.$ac_ext <&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then # Parse the compiler output and extract the necessary # objects, libraries and library flags. # Sentinel used to keep track of whether or not we are before # the conftest object file. pre_test_object_deps_done=no # The `*' in the case matches for architectures that use `case' in # $output_verbose_cmd can trigger glob expansion during the loop # eval without this substitution. output_verbose_link_cmd=`$echo "X$output_verbose_link_cmd" | $Xsed -e "$no_glob_subst"` for p in `eval $output_verbose_link_cmd`; do case $p in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. if test $p = "-L" \ || test $p = "-R"; then prev=$p continue else prev= fi if test "$pre_test_object_deps_done" = no; then case $p in -L* | -R*) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$compiler_lib_search_path_CXX"; then compiler_lib_search_path_CXX="${prev}${p}" else compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} ${prev}${p}" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$postdeps_CXX"; then postdeps_CXX="${prev}${p}" else postdeps_CXX="${postdeps_CXX} ${prev}${p}" fi fi ;; *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi if test "$pre_test_object_deps_done" = no; then if test -z "$predep_objects_CXX"; then predep_objects_CXX="$p" else predep_objects_CXX="$predep_objects_CXX $p" fi else if test -z "$postdep_objects_CXX"; then postdep_objects_CXX="$p" else postdep_objects_CXX="$postdep_objects_CXX $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling CXX test program" fi $rm -f confest.$objext compiler_lib_search_dirs_CXX= if test -n "$compiler_lib_search_path_CXX"; then compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` fi # PORTME: override above test on systems where it is broken case $host_os in interix[3-9]*) # Interix 3.5 installs completely hosed .la files for C++, so rather than # hack all around it, let's just trust "g++" to DTRT. predep_objects_CXX= postdep_objects_CXX= postdeps_CXX= ;; linux*) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 # # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac if test "$solaris_use_stlport4" != yes; then postdeps_CXX='-library=Cstd -library=Crun' fi ;; esac ;; solaris*) case $cc_basename in CC*) # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac # Adding this requires a known-good setup of shared libraries for # Sun compiler versions before 5.6, else PIC objects from an old # archive will be linked into the output, leading to subtle bugs. if test "$solaris_use_stlport4" != yes; then postdeps_CXX='-library=Cstd -library=Crun' fi ;; esac ;; esac case " $postdeps_CXX " in *" -lc "*) archive_cmds_need_lc_CXX=no ;; esac lt_prog_compiler_wl_CXX= lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX= { echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; } # C++ specific cases for pic, static, wl, etc. if test "$GXX" = yes; then lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic_CXX='-m68020 -resident32 -malways-restore-a4' ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | os2* | pw32*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic_CXX='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic_CXX='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all lt_prog_compiler_pic_CXX= ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic_CXX=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) ;; *) lt_prog_compiler_pic_CXX='-fPIC' ;; esac ;; *) lt_prog_compiler_pic_CXX='-fPIC' ;; esac else case $host_os in aix[4-9]*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' else lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_AC_TAGVAR(lt_prog_compiler_static, CXX)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) lt_prog_compiler_pic_CXX='-qnocommon' lt_prog_compiler_wl_CXX='-Wl,' ;; esac ;; dgux*) case $cc_basename in ec++*) lt_prog_compiler_pic_CXX='-KPIC' ;; ghcx*) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-pic' ;; *) ;; esac ;; freebsd* | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' if test "$host_cpu" != ia64; then lt_prog_compiler_pic_CXX='+Z' fi ;; aCC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_CXX='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux* | k*bsd*-gnu) case $cc_basename in KCC*) # KAI C++ Compiler lt_prog_compiler_wl_CXX='--backend -Wl,' lt_prog_compiler_pic_CXX='-fPIC' ;; icpc* | ecpc*) # Intel C++ lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler. lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-fpic' lt_prog_compiler_static_CXX='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX='-non_shared' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' lt_prog_compiler_wl_CXX='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) lt_prog_compiler_pic_CXX='-W c,exportall' ;; *) ;; esac ;; netbsd* | netbsdelf*-gnu) ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) lt_prog_compiler_wl_CXX='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 lt_prog_compiler_pic_CXX='-pic' ;; cxx*) # Digital/Compaq C++ lt_prog_compiler_wl_CXX='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC*) # Sun C++ 4.2, 5.x and Centerline C++ lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' lt_prog_compiler_wl_CXX='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x lt_prog_compiler_pic_CXX='-pic' lt_prog_compiler_static_CXX='-Bstatic' ;; lcc*) # Lucid lt_prog_compiler_pic_CXX='-pic' ;; *) ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 lt_prog_compiler_pic_CXX='-KPIC' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' ;; esac ;; vxworks*) ;; *) lt_prog_compiler_can_build_shared_CXX=no ;; esac fi { echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_CXX" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_CXX" >&6; } # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_CXX"; then { echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_pic_works_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_pic_works_CXX=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:14851: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:14855: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works_CXX=yes fi fi $rm conftest* fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_pic_works_CXX" >&6; } if test x"$lt_cv_prog_compiler_pic_works_CXX" = xyes; then case $lt_prog_compiler_pic_CXX in "" | " "*) ;; *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; esac else lt_prog_compiler_pic_CXX= lt_prog_compiler_can_build_shared_CXX=no fi fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_CXX= ;; *) lt_prog_compiler_pic_CXX="$lt_prog_compiler_pic_CXX -DPIC" ;; esac # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" { echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_static_works_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_static_works_CXX=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works_CXX=yes fi else lt_cv_prog_compiler_static_works_CXX=yes fi fi $rm -r conftest* LDFLAGS="$save_LDFLAGS" fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works_CXX" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_static_works_CXX" >&6; } if test x"$lt_cv_prog_compiler_static_works_CXX" = xyes; then : else lt_prog_compiler_static_CXX= fi { echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_c_o_CXX=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:14955: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:14959: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_CXX=yes fi fi chmod u+w . 2>&5 $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_CXX" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_c_o_CXX" >&6; } hard_links="nottested" if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user { echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6; } hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no { echo "$as_me:$LINENO: result: $hard_links" >&5 echo "${ECHO_T}$hard_links" >&6; } if test "$hard_links" = no; then { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi { echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; } export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' case $host_os in aix[4-9]*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds_CXX='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' fi ;; pw32*) export_symbols_cmds_CXX="$ltdll_cmds" ;; cygwin* | mingw*) export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;/^.*[ ]__nm__/s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' ;; linux* | k*bsd*-gnu) link_all_deplibs_CXX=no ;; *) export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' { echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5 echo "${ECHO_T}$ld_shlibs_CXX" >&6; } test "$ld_shlibs_CXX" = no && can_build_shared=no # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc_CXX" in x|xyes) # Assume -lc should be added archive_cmds_need_lc_CXX=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds_CXX in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6; } $rm conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl_CXX pic_flag=$lt_prog_compiler_pic_CXX compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_CXX allow_undefined_flag_CXX= if { (eval echo "$as_me:$LINENO: \"$archive_cmds_CXX 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 (eval $archive_cmds_CXX 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } then archive_cmds_need_lc_CXX=no else archive_cmds_need_lc_CXX=yes fi allow_undefined_flag_CXX=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* { echo "$as_me:$LINENO: result: $archive_cmds_need_lc_CXX" >&5 echo "${ECHO_T}$archive_cmds_need_lc_CXX" >&6; } ;; esac fi ;; esac { echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6; } library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[4-9]*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[123]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix[3-9]*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux* | k*bsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' shlibpath_overrides_runpath=no else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' shlibpath_overrides_runpath=yes case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { echo "$as_me:$LINENO: result: $dynamic_linker" >&5 echo "${ECHO_T}$dynamic_linker" >&6; } test "$dynamic_linker" = no && can_build_shared=no if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec" fi sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec" fi sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi { echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; } hardcode_action_CXX= if test -n "$hardcode_libdir_flag_spec_CXX" || \ test -n "$runpath_var_CXX" || \ test "X$hardcode_automatic_CXX" = "Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct_CXX" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, CXX)" != no && test "$hardcode_minus_L_CXX" != no; then # Linking always hardcodes the temporary library directory. hardcode_action_CXX=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action_CXX=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action_CXX=unsupported fi { echo "$as_me:$LINENO: result: $hardcode_action_CXX" >&5 echo "${ECHO_T}$hardcode_action_CXX" >&6; } if test "$hardcode_action_CXX" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler_CXX \ CC_CXX \ LD_CXX \ lt_prog_compiler_wl_CXX \ lt_prog_compiler_pic_CXX \ lt_prog_compiler_static_CXX \ lt_prog_compiler_no_builtin_flag_CXX \ export_dynamic_flag_spec_CXX \ thread_safe_flag_spec_CXX \ whole_archive_flag_spec_CXX \ enable_shared_with_static_runtimes_CXX \ old_archive_cmds_CXX \ old_archive_from_new_cmds_CXX \ predep_objects_CXX \ postdep_objects_CXX \ predeps_CXX \ postdeps_CXX \ compiler_lib_search_path_CXX \ compiler_lib_search_dirs_CXX \ archive_cmds_CXX \ archive_expsym_cmds_CXX \ postinstall_cmds_CXX \ postuninstall_cmds_CXX \ old_archive_from_expsyms_cmds_CXX \ allow_undefined_flag_CXX \ no_undefined_flag_CXX \ export_symbols_cmds_CXX \ hardcode_libdir_flag_spec_CXX \ hardcode_libdir_flag_spec_ld_CXX \ hardcode_libdir_separator_CXX \ hardcode_automatic_CXX \ module_cmds_CXX \ module_expsym_cmds_CXX \ lt_cv_prog_compiler_c_o_CXX \ fix_srcfile_path_CXX \ exclude_expsyms_CXX \ include_expsyms_CXX; do case $var in old_archive_cmds_CXX | \ old_archive_from_new_cmds_CXX | \ archive_cmds_CXX | \ archive_expsym_cmds_CXX | \ module_cmds_CXX | \ module_expsym_cmds_CXX | \ old_archive_from_expsyms_cmds_CXX | \ export_symbols_cmds_CXX | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="$ofile" cat <<__EOF__ >> "$cfgfile" # ### BEGIN LIBTOOL TAG CONFIG: $tagname # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_CXX # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_compiler_CXX # Is the compiler the GNU C compiler? with_gcc=$GCC_CXX # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD_CXX # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_CXX # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_CXX pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_CXX # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec_CXX # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds_CXX old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds_CXX archive_expsym_cmds=$lt_archive_expsym_cmds_CXX postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds_CXX module_expsym_cmds=$lt_module_expsym_cmds_CXX # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=$lt_predep_objects_CXX # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=$lt_postdep_objects_CXX # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps_CXX # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps_CXX # The directories searched by this compiler when creating a shared # library compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path_CXX # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_CXX # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_CXX # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_CXX # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_CXX # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct_CXX # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L_CXX # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic_CXX # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_CXX # Compile-time system search path for libraries sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path=$lt_fix_srcfile_path # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols_CXX # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_CXX # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_CXX # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_CXX # ### END LIBTOOL TAG CONFIG: $tagname __EOF__ else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi 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 CC=$lt_save_CC LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ldcxx=$with_gnu_ld with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld else tagname="" fi ;; F77) if test -n "$F77" && test "X$F77" != "Xno"; then ac_ext=f ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_f77_compiler_gnu archive_cmds_need_lc_F77=no allow_undefined_flag_F77= always_export_symbols_F77=no archive_expsym_cmds_F77= export_dynamic_flag_spec_F77= hardcode_direct_F77=no hardcode_libdir_flag_spec_F77= hardcode_libdir_flag_spec_ld_F77= hardcode_libdir_separator_F77= hardcode_minus_L_F77=no hardcode_automatic_F77=no module_cmds_F77= module_expsym_cmds_F77= link_all_deplibs_F77=unknown old_archive_cmds_F77=$old_archive_cmds no_undefined_flag_F77= whole_archive_flag_spec_F77= enable_shared_with_static_runtimes_F77=no # Source file extension for f77 test sources. ac_ext=f # Object file extension for compiled f77 test sources. objext=o objext_F77=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm -r conftest* # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${F77-"f77"} compiler=$CC compiler_F77=$CC for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` { echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5 echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6; } { echo "$as_me:$LINENO: result: $can_build_shared" >&5 echo "${ECHO_T}$can_build_shared" >&6; } { echo "$as_me:$LINENO: checking whether to build shared libraries" >&5 echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6; } test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[4-9]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac { echo "$as_me:$LINENO: result: $enable_shared" >&5 echo "${ECHO_T}$enable_shared" >&6; } { echo "$as_me:$LINENO: checking whether to build static libraries" >&5 echo $ECHO_N "checking whether to build static libraries... $ECHO_C" >&6; } # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes { echo "$as_me:$LINENO: result: $enable_static" >&5 echo "${ECHO_T}$enable_static" >&6; } GCC_F77="$G77" LD_F77="$LD" lt_prog_compiler_wl_F77= lt_prog_compiler_pic_F77= lt_prog_compiler_static_F77= { echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; } if test "$GCC" = yes; then lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_static_F77='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_F77='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic_F77='-m68020 -resident32 -malways-restore-a4' ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic_F77='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic_F77='-fno-common' ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared_F77=no enable_shared=no ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic_F77=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_F77='-fPIC' ;; esac ;; *) lt_prog_compiler_pic_F77='-fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl_F77='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_F77='-Bstatic' else lt_prog_compiler_static_F77='-bnso -bI:/lib/syscalls.exp' fi ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) lt_prog_compiler_pic_F77='-qnocommon' lt_prog_compiler_wl_F77='-Wl,' ;; esac ;; mingw* | cygwin* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic_F77='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl_F77='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_F77='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static_F77='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl_F77='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static_F77='-non_shared' ;; newsos6) lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' ;; linux* | k*bsd*-gnu) case $cc_basename in icc* | ecc*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-static' ;; pgcc* | pgf77* | pgf90* | pgf95*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-fpic' lt_prog_compiler_static_F77='-Bstatic' ;; ccc*) lt_prog_compiler_wl_F77='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static_F77='-non_shared' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' lt_prog_compiler_wl_F77='-Wl,' ;; *Sun\ F*) # Sun Fortran 8.3 passes all unrecognized flags to the linker lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' lt_prog_compiler_wl_F77='' ;; esac ;; esac ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl_F77='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static_F77='-non_shared' ;; rdos*) lt_prog_compiler_static_F77='-non_shared' ;; solaris*) lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' case $cc_basename in f77* | f90* | f95*) lt_prog_compiler_wl_F77='-Qoption ld ';; *) lt_prog_compiler_wl_F77='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl_F77='-Qoption ld ' lt_prog_compiler_pic_F77='-PIC' lt_prog_compiler_static_F77='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then lt_prog_compiler_pic_F77='-Kconform_pic' lt_prog_compiler_static_F77='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' ;; unicos*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_can_build_shared_F77=no ;; uts4*) lt_prog_compiler_pic_F77='-pic' lt_prog_compiler_static_F77='-Bstatic' ;; *) lt_prog_compiler_can_build_shared_F77=no ;; esac fi { echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_F77" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_F77" >&6; } # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_F77"; then { echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works" >&5 echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_pic_works_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_pic_works_F77=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic_F77" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:16553: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:16557: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works_F77=yes fi fi $rm conftest* fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works_F77" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_pic_works_F77" >&6; } if test x"$lt_cv_prog_compiler_pic_works_F77" = xyes; then case $lt_prog_compiler_pic_F77 in "" | " "*) ;; *) lt_prog_compiler_pic_F77=" $lt_prog_compiler_pic_F77" ;; esac else lt_prog_compiler_pic_F77= lt_prog_compiler_can_build_shared_F77=no fi fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_F77= ;; *) lt_prog_compiler_pic_F77="$lt_prog_compiler_pic_F77" ;; esac # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl_F77 eval lt_tmp_static_flag=\"$lt_prog_compiler_static_F77\" { echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_static_works_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_static_works_F77=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works_F77=yes fi else lt_cv_prog_compiler_static_works_F77=yes fi fi $rm -r conftest* LDFLAGS="$save_LDFLAGS" fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works_F77" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_static_works_F77" >&6; } if test x"$lt_cv_prog_compiler_static_works_F77" = xyes; then : else lt_prog_compiler_static_F77= fi { echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_c_o_F77+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_c_o_F77=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:16657: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:16661: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_F77=yes fi fi chmod u+w . 2>&5 $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_F77" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_c_o_F77" >&6; } hard_links="nottested" if test "$lt_cv_prog_compiler_c_o_F77" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user { echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6; } hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no { echo "$as_me:$LINENO: result: $hard_links" >&5 echo "${ECHO_T}$hard_links" >&6; } if test "$hard_links" = no; then { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi { echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; } runpath_var= allow_undefined_flag_F77= enable_shared_with_static_runtimes_F77=no archive_cmds_F77= archive_expsym_cmds_F77= old_archive_From_new_cmds_F77= old_archive_from_expsyms_cmds_F77= export_dynamic_flag_spec_F77= whole_archive_flag_spec_F77= thread_safe_flag_spec_F77= hardcode_libdir_flag_spec_F77= hardcode_libdir_flag_spec_ld_F77= hardcode_libdir_separator_F77= hardcode_direct_F77=no hardcode_minus_L_F77=no hardcode_shlibpath_var_F77=unsupported link_all_deplibs_F77=unknown hardcode_automatic_F77=no module_cmds_F77= module_expsym_cmds_F77= always_export_symbols_F77=no export_symbols_cmds_F77='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms_F77= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. exclude_expsyms_F77='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. extract_expsyms_cmds= # Just being paranoid about ensuring that cc_basename is set. for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` case $host_os in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs_F77=yes if test "$with_gnu_ld" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_F77='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec_F77='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then whole_archive_flag_spec_F77="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec_F77= fi supports_anon_versioning=no case `$LD -v 2>/dev/null` in *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs_F77=no cat <&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. EOF fi ;; amigaos*) archive_cmds_F77='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_minus_L_F77=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we can't use # them. ld_shlibs_F77=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then allow_undefined_flag_F77=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds_F77='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs_F77=no fi ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, F77) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_F77='-L$libdir' allow_undefined_flag_F77=unsupported always_export_symbols_F77=no enable_shared_with_static_runtimes_F77=yes export_symbols_cmds_F77='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/'\'' -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds_F77='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs_F77=no fi ;; interix[3-9]*) hardcode_direct_F77=no hardcode_shlibpath_var_F77=no hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' export_dynamic_flag_spec_F77='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds_F77='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds_F77='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | k*bsd*-gnu) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then tmp_addflag= case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec_F77='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers whole_archive_flag_spec_F77='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 whole_archive_flag_spec_F77='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; *) tmp_sharedflag='-shared' ;; esac archive_cmds_F77='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test $supports_anon_versioning = yes; then archive_expsym_cmds_F77='$echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi link_all_deplibs_F77=no else ld_shlibs_F77=no fi ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_F77='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ld_shlibs_F77=no cat <&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. EOF elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs_F77=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs_F77=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec_F77='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' else ld_shlibs_F77=no fi ;; esac ;; sunos4*) archive_cmds_F77='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs_F77=no fi ;; esac if test "$ld_shlibs_F77" = no; then runpath_var= hardcode_libdir_flag_spec_F77= export_dynamic_flag_spec_F77= whole_archive_flag_spec_F77= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag_F77=unsupported always_export_symbols_F77=yes archive_expsym_cmds_F77='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L_F77=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct_F77=unsupported fi ;; aix[4-9]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then export_symbols_cmds_F77='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds_F77='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds_F77='' hardcode_direct_F77=yes hardcode_libdir_separator_F77=':' link_all_deplibs_F77=yes if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct_F77=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L_F77=yes hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_libdir_separator_F77= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols_F77=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag_F77='-berok' # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF program main end _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_f77_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/ p } }' aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_F77='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds_F77="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec_F77='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag_F77="-z nodefs" archive_expsym_cmds_F77="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF program main end _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_f77_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/ p } }' aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_F77='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag_F77=' ${wl}-bernotok' allow_undefined_flag_F77=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_F77='$convenience' archive_cmds_need_lc_F77=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds_F77="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) archive_cmds_F77='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_minus_L_F77=yes # see comment about different semantics on the GNU ld section ld_shlibs_F77=no ;; bsdi[45]*) export_dynamic_flag_spec_F77=-rdynamic ;; cygwin* | mingw* | pw32*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec_F77=' ' allow_undefined_flag_F77=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds_F77='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_From_new_cmds_F77='true' # FIXME: Should let the user specify the lib program. old_archive_cmds_F77='lib -OUT:$oldlib$oldobjs$old_deplibs' fix_srcfile_path_F77='`cygpath -w "$srcfile"`' enable_shared_with_static_runtimes_F77=yes ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[012]) allow_undefined_flag_F77='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then allow_undefined_flag_F77='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[012]) allow_undefined_flag_F77='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) allow_undefined_flag_F77='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac archive_cmds_need_lc_F77=no hardcode_direct_F77=no hardcode_automatic_F77=yes hardcode_shlibpath_var_F77=unsupported whole_archive_flag_spec_F77='' link_all_deplibs_F77=yes if test "$GCC" = yes ; then output_verbose_link_cmd='echo' archive_cmds_F77="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" module_cmds_F77="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" archive_expsym_cmds_F77="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" module_expsym_cmds_F77="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" else case $cc_basename in xlc*) output_verbose_link_cmd='echo' archive_cmds_F77='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring' module_cmds_F77='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds archive_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' module_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ;; *) ld_shlibs_F77=no ;; esac fi ;; dgux*) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_shlibpath_var_F77=no ;; freebsd1*) ld_shlibs_F77=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=yes hardcode_minus_L_F77=yes hardcode_shlibpath_var_F77=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) archive_cmds_F77='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; hpux9*) if test "$GCC" = yes; then archive_cmds_F77='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else archive_cmds_F77='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' hardcode_libdir_separator_F77=: hardcode_direct_F77=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_F77=yes export_dynamic_flag_spec_F77='${wl}-E' ;; hpux10*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then archive_cmds_F77='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_F77='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' hardcode_libdir_separator_F77=: hardcode_direct_F77=yes export_dynamic_flag_spec_F77='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_F77=yes fi ;; hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) archive_cmds_F77='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds_F77='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_F77='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' hardcode_libdir_separator_F77=: case $host_cpu in hppa*64*|ia64*) hardcode_libdir_flag_spec_ld_F77='+b $libdir' hardcode_direct_F77=no hardcode_shlibpath_var_F77=no ;; *) hardcode_direct_F77=yes export_dynamic_flag_spec_F77='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_F77=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else archive_cmds_F77='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_ld_F77='-rpath $libdir' fi hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_F77=: link_all_deplibs_F77=yes ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds_F77='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; newsos6) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=yes hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_F77=: hardcode_shlibpath_var_F77=no ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' export_dynamic_flag_spec_F77='${wl}-E' else case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_F77='-R$libdir' ;; *) archive_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' ;; esac fi else ld_shlibs_F77=no fi ;; os2*) hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_minus_L_F77=yes allow_undefined_flag_F77=unsupported archive_cmds_F77='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_From_new_cmds_F77='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then allow_undefined_flag_F77=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else allow_undefined_flag_F77=' -expect_unresolved \*' archive_cmds_F77='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' fi hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_F77=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then allow_undefined_flag_F77=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' else allow_undefined_flag_F77=' -expect_unresolved \*' archive_cmds_F77='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds_F77='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec_F77='-rpath $libdir' fi hardcode_libdir_separator_F77=: ;; solaris*) no_undefined_flag_F77=' -z text' if test "$GCC" = yes; then wlarc='${wl}' archive_cmds_F77='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else wlarc='' archive_cmds_F77='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds_F77='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' fi hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_shlibpath_var_F77=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. GCC discards it without `$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test "$GCC" = yes; then whole_archive_flag_spec_F77='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' else whole_archive_flag_spec_F77='-z allextract$convenience -z defaultextract' fi ;; esac link_all_deplibs_F77=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds_F77='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_F77='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_direct_F77=yes hardcode_minus_L_F77=yes hardcode_shlibpath_var_F77=no ;; sysv4) case $host_vendor in sni) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds_F77='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds_F77='$CC -r -o $output$reload_objs' hardcode_direct_F77=no ;; motorola) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var_F77=no ;; sysv4.3*) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_F77=no export_dynamic_flag_spec_F77='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_F77=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs_F77=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag_F77='${wl}-z,text' archive_cmds_need_lc_F77=no hardcode_shlibpath_var_F77=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds_F77='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_F77='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag_F77='${wl}-z,text' allow_undefined_flag_F77='${wl}-z,nodefs' archive_cmds_need_lc_F77=no hardcode_shlibpath_var_F77=no hardcode_libdir_flag_spec_F77='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' hardcode_libdir_separator_F77=':' link_all_deplibs_F77=yes export_dynamic_flag_spec_F77='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds_F77='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_F77='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_shlibpath_var_F77=no ;; *) ld_shlibs_F77=no ;; esac fi { echo "$as_me:$LINENO: result: $ld_shlibs_F77" >&5 echo "${ECHO_T}$ld_shlibs_F77" >&6; } test "$ld_shlibs_F77" = no && can_build_shared=no # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc_F77" in x|xyes) # Assume -lc should be added archive_cmds_need_lc_F77=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds_F77 in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6; } $rm conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl_F77 pic_flag=$lt_prog_compiler_pic_F77 compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_F77 allow_undefined_flag_F77= if { (eval echo "$as_me:$LINENO: \"$archive_cmds_F77 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 (eval $archive_cmds_F77 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } then archive_cmds_need_lc_F77=no else archive_cmds_need_lc_F77=yes fi allow_undefined_flag_F77=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* { echo "$as_me:$LINENO: result: $archive_cmds_need_lc_F77" >&5 echo "${ECHO_T}$archive_cmds_need_lc_F77" >&6; } ;; esac fi ;; esac { echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6; } library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[4-9]*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[123]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix[3-9]*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux* | k*bsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' shlibpath_overrides_runpath=no else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' shlibpath_overrides_runpath=yes case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { echo "$as_me:$LINENO: result: $dynamic_linker" >&5 echo "${ECHO_T}$dynamic_linker" >&6; } test "$dynamic_linker" = no && can_build_shared=no if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec" fi sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec" fi sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi { echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; } hardcode_action_F77= if test -n "$hardcode_libdir_flag_spec_F77" || \ test -n "$runpath_var_F77" || \ test "X$hardcode_automatic_F77" = "Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct_F77" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, F77)" != no && test "$hardcode_minus_L_F77" != no; then # Linking always hardcodes the temporary library directory. hardcode_action_F77=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action_F77=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action_F77=unsupported fi { echo "$as_me:$LINENO: result: $hardcode_action_F77" >&5 echo "${ECHO_T}$hardcode_action_F77" >&6; } if test "$hardcode_action_F77" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler_F77 \ CC_F77 \ LD_F77 \ lt_prog_compiler_wl_F77 \ lt_prog_compiler_pic_F77 \ lt_prog_compiler_static_F77 \ lt_prog_compiler_no_builtin_flag_F77 \ export_dynamic_flag_spec_F77 \ thread_safe_flag_spec_F77 \ whole_archive_flag_spec_F77 \ enable_shared_with_static_runtimes_F77 \ old_archive_cmds_F77 \ old_archive_from_new_cmds_F77 \ predep_objects_F77 \ postdep_objects_F77 \ predeps_F77 \ postdeps_F77 \ compiler_lib_search_path_F77 \ compiler_lib_search_dirs_F77 \ archive_cmds_F77 \ archive_expsym_cmds_F77 \ postinstall_cmds_F77 \ postuninstall_cmds_F77 \ old_archive_from_expsyms_cmds_F77 \ allow_undefined_flag_F77 \ no_undefined_flag_F77 \ export_symbols_cmds_F77 \ hardcode_libdir_flag_spec_F77 \ hardcode_libdir_flag_spec_ld_F77 \ hardcode_libdir_separator_F77 \ hardcode_automatic_F77 \ module_cmds_F77 \ module_expsym_cmds_F77 \ lt_cv_prog_compiler_c_o_F77 \ fix_srcfile_path_F77 \ exclude_expsyms_F77 \ include_expsyms_F77; do case $var in old_archive_cmds_F77 | \ old_archive_from_new_cmds_F77 | \ archive_cmds_F77 | \ archive_expsym_cmds_F77 | \ module_cmds_F77 | \ module_expsym_cmds_F77 | \ old_archive_from_expsyms_cmds_F77 | \ export_symbols_cmds_F77 | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="$ofile" cat <<__EOF__ >> "$cfgfile" # ### BEGIN LIBTOOL TAG CONFIG: $tagname # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_F77 # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_F77 # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_compiler_F77 # Is the compiler the GNU C compiler? with_gcc=$GCC_F77 # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD_F77 # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_F77 # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_F77 pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_F77 # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_F77 # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_F77 # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_F77 # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_F77 # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec_F77 # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds_F77 old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_F77 # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_F77 # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds_F77 archive_expsym_cmds=$lt_archive_expsym_cmds_F77 postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds_F77 module_expsym_cmds=$lt_module_expsym_cmds_F77 # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=$lt_predep_objects_F77 # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=$lt_postdep_objects_F77 # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps_F77 # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps_F77 # The directories searched by this compiler when creating a shared # library compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_F77 # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path_F77 # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_F77 # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_F77 # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_F77 # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_F77 # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_F77 # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_F77 # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct_F77 # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L_F77 # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_F77 # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic_F77 # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_F77 # Compile-time system search path for libraries sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path=$lt_fix_srcfile_path # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols_F77 # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_F77 # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_F77 # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_F77 # ### END LIBTOOL TAG CONFIG: $tagname __EOF__ else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi 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 CC="$lt_save_CC" else tagname="" fi ;; GCJ) if test -n "$GCJ" && test "X$GCJ" != "Xno"; then # Source file extension for Java test sources. ac_ext=java # Object file extension for compiled Java test sources. objext=o objext_GCJ=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="class foo {}" # Code to be used in simple link tests lt_simple_link_test_code='public class conftest { public static void main(String[] argv) {}; }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm -r conftest* # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${GCJ-"gcj"} compiler=$CC compiler_GCJ=$CC for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` # GCJ did not exist at the time GCC didn't implicitly link libc in. archive_cmds_need_lc_GCJ=no old_archive_cmds_GCJ=$old_archive_cmds lt_prog_compiler_no_builtin_flag_GCJ= if test "$GCC" = yes; then lt_prog_compiler_no_builtin_flag_GCJ=' -fno-builtin' { echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 echo $ECHO_N "checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-fno-rtti -fno-exceptions" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:18877: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:18881: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi $rm conftest* fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_rtti_exceptions" >&6; } if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then lt_prog_compiler_no_builtin_flag_GCJ="$lt_prog_compiler_no_builtin_flag_GCJ -fno-rtti -fno-exceptions" else : fi fi lt_prog_compiler_wl_GCJ= lt_prog_compiler_pic_GCJ= lt_prog_compiler_static_GCJ= { echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; } if test "$GCC" = yes; then lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_static_GCJ='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_GCJ='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic_GCJ='-m68020 -resident32 -malways-restore-a4' ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic_GCJ='-fno-common' ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared_GCJ=no enable_shared=no ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic_GCJ=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_GCJ='-fPIC' ;; esac ;; *) lt_prog_compiler_pic_GCJ='-fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl_GCJ='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_GCJ='-Bstatic' else lt_prog_compiler_static_GCJ='-bnso -bI:/lib/syscalls.exp' fi ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) lt_prog_compiler_pic_GCJ='-qnocommon' lt_prog_compiler_wl_GCJ='-Wl,' ;; esac ;; mingw* | cygwin* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl_GCJ='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_GCJ='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static_GCJ='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl_GCJ='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static_GCJ='-non_shared' ;; newsos6) lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' ;; linux* | k*bsd*-gnu) case $cc_basename in icc* | ecc*) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-static' ;; pgcc* | pgf77* | pgf90* | pgf95*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_pic_GCJ='-fpic' lt_prog_compiler_static_GCJ='-Bstatic' ;; ccc*) lt_prog_compiler_wl_GCJ='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static_GCJ='-non_shared' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' lt_prog_compiler_wl_GCJ='-Wl,' ;; *Sun\ F*) # Sun Fortran 8.3 passes all unrecognized flags to the linker lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' lt_prog_compiler_wl_GCJ='' ;; esac ;; esac ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl_GCJ='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static_GCJ='-non_shared' ;; rdos*) lt_prog_compiler_static_GCJ='-non_shared' ;; solaris*) lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' case $cc_basename in f77* | f90* | f95*) lt_prog_compiler_wl_GCJ='-Qoption ld ';; *) lt_prog_compiler_wl_GCJ='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl_GCJ='-Qoption ld ' lt_prog_compiler_pic_GCJ='-PIC' lt_prog_compiler_static_GCJ='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then lt_prog_compiler_pic_GCJ='-Kconform_pic' lt_prog_compiler_static_GCJ='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' ;; unicos*) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_can_build_shared_GCJ=no ;; uts4*) lt_prog_compiler_pic_GCJ='-pic' lt_prog_compiler_static_GCJ='-Bstatic' ;; *) lt_prog_compiler_can_build_shared_GCJ=no ;; esac fi { echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_GCJ" >&5 echo "${ECHO_T}$lt_prog_compiler_pic_GCJ" >&6; } # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_GCJ"; then { echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works" >&5 echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_pic_works_GCJ+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_pic_works_GCJ=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic_GCJ" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:19167: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:19171: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works_GCJ=yes fi fi $rm conftest* fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works_GCJ" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_pic_works_GCJ" >&6; } if test x"$lt_cv_prog_compiler_pic_works_GCJ" = xyes; then case $lt_prog_compiler_pic_GCJ in "" | " "*) ;; *) lt_prog_compiler_pic_GCJ=" $lt_prog_compiler_pic_GCJ" ;; esac else lt_prog_compiler_pic_GCJ= lt_prog_compiler_can_build_shared_GCJ=no fi fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_GCJ= ;; *) lt_prog_compiler_pic_GCJ="$lt_prog_compiler_pic_GCJ" ;; esac # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl_GCJ eval lt_tmp_static_flag=\"$lt_prog_compiler_static_GCJ\" { echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_static_works_GCJ+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_static_works_GCJ=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works_GCJ=yes fi else lt_cv_prog_compiler_static_works_GCJ=yes fi fi $rm -r conftest* LDFLAGS="$save_LDFLAGS" fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works_GCJ" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_static_works_GCJ" >&6; } if test x"$lt_cv_prog_compiler_static_works_GCJ" = xyes; then : else lt_prog_compiler_static_GCJ= fi { echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_c_o_GCJ+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_prog_compiler_c_o_GCJ=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:19271: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:19275: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_GCJ=yes fi fi chmod u+w . 2>&5 $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* fi { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_GCJ" >&5 echo "${ECHO_T}$lt_cv_prog_compiler_c_o_GCJ" >&6; } hard_links="nottested" if test "$lt_cv_prog_compiler_c_o_GCJ" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user { echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6; } hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no { echo "$as_me:$LINENO: result: $hard_links" >&5 echo "${ECHO_T}$hard_links" >&6; } if test "$hard_links" = no; then { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi { echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; } runpath_var= allow_undefined_flag_GCJ= enable_shared_with_static_runtimes_GCJ=no archive_cmds_GCJ= archive_expsym_cmds_GCJ= old_archive_From_new_cmds_GCJ= old_archive_from_expsyms_cmds_GCJ= export_dynamic_flag_spec_GCJ= whole_archive_flag_spec_GCJ= thread_safe_flag_spec_GCJ= hardcode_libdir_flag_spec_GCJ= hardcode_libdir_flag_spec_ld_GCJ= hardcode_libdir_separator_GCJ= hardcode_direct_GCJ=no hardcode_minus_L_GCJ=no hardcode_shlibpath_var_GCJ=unsupported link_all_deplibs_GCJ=unknown hardcode_automatic_GCJ=no module_cmds_GCJ= module_expsym_cmds_GCJ= always_export_symbols_GCJ=no export_symbols_cmds_GCJ='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms_GCJ= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. exclude_expsyms_GCJ='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. extract_expsyms_cmds= # Just being paranoid about ensuring that cc_basename is set. for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` case $host_os in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs_GCJ=yes if test "$with_gnu_ld" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_GCJ='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec_GCJ='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then whole_archive_flag_spec_GCJ="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec_GCJ= fi supports_anon_versioning=no case `$LD -v 2>/dev/null` in *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs_GCJ=no cat <&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. EOF fi ;; amigaos*) archive_cmds_GCJ='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_minus_L_GCJ=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we can't use # them. ld_shlibs_GCJ=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then allow_undefined_flag_GCJ=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds_GCJ='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs_GCJ=no fi ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, GCJ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_GCJ='-L$libdir' allow_undefined_flag_GCJ=unsupported always_export_symbols_GCJ=no enable_shared_with_static_runtimes_GCJ=yes export_symbols_cmds_GCJ='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/'\'' -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds_GCJ='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs_GCJ=no fi ;; interix[3-9]*) hardcode_direct_GCJ=no hardcode_shlibpath_var_GCJ=no hardcode_libdir_flag_spec_GCJ='${wl}-rpath,$libdir' export_dynamic_flag_spec_GCJ='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds_GCJ='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds_GCJ='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | k*bsd*-gnu) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then tmp_addflag= case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec_GCJ='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers whole_archive_flag_spec_GCJ='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 whole_archive_flag_spec_GCJ='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; *) tmp_sharedflag='-shared' ;; esac archive_cmds_GCJ='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test $supports_anon_versioning = yes; then archive_expsym_cmds_GCJ='$echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi link_all_deplibs_GCJ=no else ld_shlibs_GCJ=no fi ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_GCJ='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ld_shlibs_GCJ=no cat <&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. EOF elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs_GCJ=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs_GCJ=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec_GCJ='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' else ld_shlibs_GCJ=no fi ;; esac ;; sunos4*) archive_cmds_GCJ='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs_GCJ=no fi ;; esac if test "$ld_shlibs_GCJ" = no; then runpath_var= hardcode_libdir_flag_spec_GCJ= export_dynamic_flag_spec_GCJ= whole_archive_flag_spec_GCJ= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag_GCJ=unsupported always_export_symbols_GCJ=yes archive_expsym_cmds_GCJ='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L_GCJ=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct_GCJ=unsupported fi ;; aix[4-9]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then export_symbols_cmds_GCJ='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds_GCJ='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$2 == "T") || (\$2 == "D") || (\$2 == "B")) && (substr(\$3,1,1) != ".")) { print \$3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds_GCJ='' hardcode_direct_GCJ=yes hardcode_libdir_separator_GCJ=':' link_all_deplibs_GCJ=yes if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct_GCJ=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L_GCJ=yes hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_libdir_separator_GCJ= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols_GCJ=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag_GCJ='-berok' # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/ p } }' aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_GCJ='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds_GCJ="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec_GCJ='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag_GCJ="-z nodefs" archive_expsym_cmds_GCJ="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/ p } }' aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_GCJ='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag_GCJ=' ${wl}-bernotok' allow_undefined_flag_GCJ=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_GCJ='$convenience' archive_cmds_need_lc_GCJ=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds_GCJ="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) archive_cmds_GCJ='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_minus_L_GCJ=yes # see comment about different semantics on the GNU ld section ld_shlibs_GCJ=no ;; bsdi[45]*) export_dynamic_flag_spec_GCJ=-rdynamic ;; cygwin* | mingw* | pw32*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec_GCJ=' ' allow_undefined_flag_GCJ=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds_GCJ='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_From_new_cmds_GCJ='true' # FIXME: Should let the user specify the lib program. old_archive_cmds_GCJ='lib -OUT:$oldlib$oldobjs$old_deplibs' fix_srcfile_path_GCJ='`cygpath -w "$srcfile"`' enable_shared_with_static_runtimes_GCJ=yes ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[012]) allow_undefined_flag_GCJ='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then allow_undefined_flag_GCJ='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[012]) allow_undefined_flag_GCJ='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) allow_undefined_flag_GCJ='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac archive_cmds_need_lc_GCJ=no hardcode_direct_GCJ=no hardcode_automatic_GCJ=yes hardcode_shlibpath_var_GCJ=unsupported whole_archive_flag_spec_GCJ='' link_all_deplibs_GCJ=yes if test "$GCC" = yes ; then output_verbose_link_cmd='echo' archive_cmds_GCJ="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" module_cmds_GCJ="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" archive_expsym_cmds_GCJ="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" module_expsym_cmds_GCJ="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" else case $cc_basename in xlc*) output_verbose_link_cmd='echo' archive_cmds_GCJ='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring' module_cmds_GCJ='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds archive_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' module_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ;; *) ld_shlibs_GCJ=no ;; esac fi ;; dgux*) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_shlibpath_var_GCJ=no ;; freebsd1*) ld_shlibs_GCJ=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec_GCJ='-R$libdir' hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_GCJ=yes hardcode_minus_L_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) archive_cmds_GCJ='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_GCJ='-R$libdir' hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; hpux9*) if test "$GCC" = yes; then archive_cmds_GCJ='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else archive_cmds_GCJ='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec_GCJ='${wl}+b ${wl}$libdir' hardcode_libdir_separator_GCJ=: hardcode_direct_GCJ=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_GCJ=yes export_dynamic_flag_spec_GCJ='${wl}-E' ;; hpux10*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then archive_cmds_GCJ='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_GCJ='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec_GCJ='${wl}+b ${wl}$libdir' hardcode_libdir_separator_GCJ=: hardcode_direct_GCJ=yes export_dynamic_flag_spec_GCJ='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_GCJ=yes fi ;; hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) archive_cmds_GCJ='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds_GCJ='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_GCJ='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds_GCJ='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds_GCJ='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_GCJ='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec_GCJ='${wl}+b ${wl}$libdir' hardcode_libdir_separator_GCJ=: case $host_cpu in hppa*64*|ia64*) hardcode_libdir_flag_spec_ld_GCJ='+b $libdir' hardcode_direct_GCJ=no hardcode_shlibpath_var_GCJ=no ;; *) hardcode_direct_GCJ=yes export_dynamic_flag_spec_GCJ='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_GCJ=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else archive_cmds_GCJ='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_ld_GCJ='-rpath $libdir' fi hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_GCJ=: link_all_deplibs_GCJ=yes ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds_GCJ='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec_GCJ='-R$libdir' hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; newsos6) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_GCJ=yes hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_GCJ=: hardcode_shlibpath_var_GCJ=no ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct_GCJ=yes hardcode_shlibpath_var_GCJ=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds_GCJ='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec_GCJ='${wl}-rpath,$libdir' export_dynamic_flag_spec_GCJ='${wl}-E' else case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds_GCJ='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_GCJ='-R$libdir' ;; *) archive_cmds_GCJ='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_GCJ='${wl}-rpath,$libdir' ;; esac fi else ld_shlibs_GCJ=no fi ;; os2*) hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_minus_L_GCJ=yes allow_undefined_flag_GCJ=unsupported archive_cmds_GCJ='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_From_new_cmds_GCJ='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then allow_undefined_flag_GCJ=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_GCJ='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else allow_undefined_flag_GCJ=' -expect_unresolved \*' archive_cmds_GCJ='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' fi hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_GCJ=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then allow_undefined_flag_GCJ=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_GCJ='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir' else allow_undefined_flag_GCJ=' -expect_unresolved \*' archive_cmds_GCJ='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds_GCJ='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec_GCJ='-rpath $libdir' fi hardcode_libdir_separator_GCJ=: ;; solaris*) no_undefined_flag_GCJ=' -z text' if test "$GCC" = yes; then wlarc='${wl}' archive_cmds_GCJ='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else wlarc='' archive_cmds_GCJ='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds_GCJ='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' fi hardcode_libdir_flag_spec_GCJ='-R$libdir' hardcode_shlibpath_var_GCJ=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. GCC discards it without `$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test "$GCC" = yes; then whole_archive_flag_spec_GCJ='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' else whole_archive_flag_spec_GCJ='-z allextract$convenience -z defaultextract' fi ;; esac link_all_deplibs_GCJ=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds_GCJ='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_GCJ='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_direct_GCJ=yes hardcode_minus_L_GCJ=yes hardcode_shlibpath_var_GCJ=no ;; sysv4) case $host_vendor in sni) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_GCJ=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds_GCJ='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds_GCJ='$CC -r -o $output$reload_objs' hardcode_direct_GCJ=no ;; motorola) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_GCJ=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var_GCJ=no ;; sysv4.3*) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_GCJ=no export_dynamic_flag_spec_GCJ='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_GCJ=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs_GCJ=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag_GCJ='${wl}-z,text' archive_cmds_need_lc_GCJ=no hardcode_shlibpath_var_GCJ=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds_GCJ='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_GCJ='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag_GCJ='${wl}-z,text' allow_undefined_flag_GCJ='${wl}-z,nodefs' archive_cmds_need_lc_GCJ=no hardcode_shlibpath_var_GCJ=no hardcode_libdir_flag_spec_GCJ='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' hardcode_libdir_separator_GCJ=':' link_all_deplibs_GCJ=yes export_dynamic_flag_spec_GCJ='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds_GCJ='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_GCJ='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds_GCJ='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_GCJ='-L$libdir' hardcode_shlibpath_var_GCJ=no ;; *) ld_shlibs_GCJ=no ;; esac fi { echo "$as_me:$LINENO: result: $ld_shlibs_GCJ" >&5 echo "${ECHO_T}$ld_shlibs_GCJ" >&6; } test "$ld_shlibs_GCJ" = no && can_build_shared=no # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc_GCJ" in x|xyes) # Assume -lc should be added archive_cmds_need_lc_GCJ=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds_GCJ in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6; } $rm conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl_GCJ pic_flag=$lt_prog_compiler_pic_GCJ compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_GCJ allow_undefined_flag_GCJ= if { (eval echo "$as_me:$LINENO: \"$archive_cmds_GCJ 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 (eval $archive_cmds_GCJ 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } then archive_cmds_need_lc_GCJ=no else archive_cmds_need_lc_GCJ=yes fi allow_undefined_flag_GCJ=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* { echo "$as_me:$LINENO: result: $archive_cmds_need_lc_GCJ" >&5 echo "${ECHO_T}$archive_cmds_need_lc_GCJ" >&6; } ;; esac fi ;; esac { echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6; } library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[4-9]*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[123]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix[3-9]*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux* | k*bsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' shlibpath_overrides_runpath=no else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' shlibpath_overrides_runpath=yes case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { echo "$as_me:$LINENO: result: $dynamic_linker" >&5 echo "${ECHO_T}$dynamic_linker" >&6; } test "$dynamic_linker" = no && can_build_shared=no if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec" fi sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec" fi sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi { echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; } hardcode_action_GCJ= if test -n "$hardcode_libdir_flag_spec_GCJ" || \ test -n "$runpath_var_GCJ" || \ test "X$hardcode_automatic_GCJ" = "Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct_GCJ" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, GCJ)" != no && test "$hardcode_minus_L_GCJ" != no; then # Linking always hardcodes the temporary library directory. hardcode_action_GCJ=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action_GCJ=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action_GCJ=unsupported fi { echo "$as_me:$LINENO: result: $hardcode_action_GCJ" >&5 echo "${ECHO_T}$hardcode_action_GCJ" >&6; } if test "$hardcode_action_GCJ" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler_GCJ \ CC_GCJ \ LD_GCJ \ lt_prog_compiler_wl_GCJ \ lt_prog_compiler_pic_GCJ \ lt_prog_compiler_static_GCJ \ lt_prog_compiler_no_builtin_flag_GCJ \ export_dynamic_flag_spec_GCJ \ thread_safe_flag_spec_GCJ \ whole_archive_flag_spec_GCJ \ enable_shared_with_static_runtimes_GCJ \ old_archive_cmds_GCJ \ old_archive_from_new_cmds_GCJ \ predep_objects_GCJ \ postdep_objects_GCJ \ predeps_GCJ \ postdeps_GCJ \ compiler_lib_search_path_GCJ \ compiler_lib_search_dirs_GCJ \ archive_cmds_GCJ \ archive_expsym_cmds_GCJ \ postinstall_cmds_GCJ \ postuninstall_cmds_GCJ \ old_archive_from_expsyms_cmds_GCJ \ allow_undefined_flag_GCJ \ no_undefined_flag_GCJ \ export_symbols_cmds_GCJ \ hardcode_libdir_flag_spec_GCJ \ hardcode_libdir_flag_spec_ld_GCJ \ hardcode_libdir_separator_GCJ \ hardcode_automatic_GCJ \ module_cmds_GCJ \ module_expsym_cmds_GCJ \ lt_cv_prog_compiler_c_o_GCJ \ fix_srcfile_path_GCJ \ exclude_expsyms_GCJ \ include_expsyms_GCJ; do case $var in old_archive_cmds_GCJ | \ old_archive_from_new_cmds_GCJ | \ archive_cmds_GCJ | \ archive_expsym_cmds_GCJ | \ module_cmds_GCJ | \ module_expsym_cmds_GCJ | \ old_archive_from_expsyms_cmds_GCJ | \ export_symbols_cmds_GCJ | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="$ofile" cat <<__EOF__ >> "$cfgfile" # ### BEGIN LIBTOOL TAG CONFIG: $tagname # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_GCJ # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_GCJ # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_compiler_GCJ # Is the compiler the GNU C compiler? with_gcc=$GCC_GCJ # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD_GCJ # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_GCJ # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_GCJ pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_GCJ # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_GCJ # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_GCJ # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_GCJ # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_GCJ # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec_GCJ # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds_GCJ old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_GCJ # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_GCJ # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds_GCJ archive_expsym_cmds=$lt_archive_expsym_cmds_GCJ postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds_GCJ module_expsym_cmds=$lt_module_expsym_cmds_GCJ # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=$lt_predep_objects_GCJ # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=$lt_postdep_objects_GCJ # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps_GCJ # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps_GCJ # The directories searched by this compiler when creating a shared # library compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_GCJ # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path_GCJ # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_GCJ # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_GCJ # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_GCJ # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_GCJ # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_GCJ # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_GCJ # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct_GCJ # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L_GCJ # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_GCJ # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic_GCJ # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_GCJ # Compile-time system search path for libraries sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path=$lt_fix_srcfile_path # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols_GCJ # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_GCJ # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_GCJ # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_GCJ # ### END LIBTOOL TAG CONFIG: $tagname __EOF__ else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi 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 CC="$lt_save_CC" else tagname="" fi ;; RC) # Source file extension for RC test sources. ac_ext=rc # Object file extension for compiled RC test sources. objext=o objext_RC=$objext # Code to be used in simple compile tests lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' # Code to be used in simple link tests lt_simple_link_test_code="$lt_simple_compile_test_code" # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm -r conftest* # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${RC-"windres"} compiler=$CC compiler_RC=$CC for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` lt_cv_prog_compiler_c_o_RC=yes # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ compiler_RC \ CC_RC \ LD_RC \ lt_prog_compiler_wl_RC \ lt_prog_compiler_pic_RC \ lt_prog_compiler_static_RC \ lt_prog_compiler_no_builtin_flag_RC \ export_dynamic_flag_spec_RC \ thread_safe_flag_spec_RC \ whole_archive_flag_spec_RC \ enable_shared_with_static_runtimes_RC \ old_archive_cmds_RC \ old_archive_from_new_cmds_RC \ predep_objects_RC \ postdep_objects_RC \ predeps_RC \ postdeps_RC \ compiler_lib_search_path_RC \ compiler_lib_search_dirs_RC \ archive_cmds_RC \ archive_expsym_cmds_RC \ postinstall_cmds_RC \ postuninstall_cmds_RC \ old_archive_from_expsyms_cmds_RC \ allow_undefined_flag_RC \ no_undefined_flag_RC \ export_symbols_cmds_RC \ hardcode_libdir_flag_spec_RC \ hardcode_libdir_flag_spec_ld_RC \ hardcode_libdir_separator_RC \ hardcode_automatic_RC \ module_cmds_RC \ module_expsym_cmds_RC \ lt_cv_prog_compiler_c_o_RC \ fix_srcfile_path_RC \ exclude_expsyms_RC \ include_expsyms_RC; do case $var in old_archive_cmds_RC | \ old_archive_from_new_cmds_RC | \ archive_cmds_RC | \ archive_expsym_cmds_RC | \ module_cmds_RC | \ module_expsym_cmds_RC | \ old_archive_from_expsyms_cmds_RC | \ export_symbols_cmds_RC | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\$0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'` ;; esac cfgfile="$ofile" cat <<__EOF__ >> "$cfgfile" # ### BEGIN LIBTOOL TAG CONFIG: $tagname # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_RC # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_RC # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_compiler_RC # Is the compiler the GNU C compiler? with_gcc=$GCC_RC # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_LD_RC # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_RC # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_RC pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_RC # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_RC # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_RC # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_RC # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_RC # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_thread_safe_flag_spec_RC # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_old_archive_cmds_RC old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_RC # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_RC # Commands used to build and install a shared archive. archive_cmds=$lt_archive_cmds_RC archive_expsym_cmds=$lt_archive_expsym_cmds_RC postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_module_cmds_RC module_expsym_cmds=$lt_module_expsym_cmds_RC # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=$lt_predep_objects_RC # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=$lt_postdep_objects_RC # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_predeps_RC # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_postdeps_RC # The directories searched by this compiler when creating a shared # library compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_RC # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path_RC # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_RC # Flag that forces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_RC # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_RC # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_RC # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_RC # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_RC # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$hardcode_direct_RC # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$hardcode_minus_L_RC # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_RC # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$hardcode_automatic_RC # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_RC # Compile-time system search path for libraries sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path=$lt_fix_srcfile_path # Set to yes if exported symbols are required. always_export_symbols=$always_export_symbols_RC # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_RC # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_RC # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_RC # ### END LIBTOOL TAG CONFIG: $tagname __EOF__ else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi 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 CC="$lt_save_CC" ;; *) { { echo "$as_me:$LINENO: error: Unsupported tag name: $tagname" >&5 echo "$as_me: error: Unsupported tag name: $tagname" >&2;} { (exit 1); exit 1; }; } ;; esac # Append the new tag name to the list of available tags. if test -n "$tagname" ; then available_tags="$available_tags $tagname" fi fi done IFS="$lt_save_ifs" # Now substitute the updated list of available tags. if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then mv "${ofile}T" "$ofile" chmod +x "$ofile" else rm -f "${ofile}T" { { echo "$as_me:$LINENO: error: unable to update list of available tagged configurations." >&5 echo "$as_me: error: unable to update list of available tagged configurations." >&2;} { (exit 1); exit 1; }; } fi fi # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' # Prevent multiple expansion ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test -z "$CXX"; then if test -n "$CCC"; then CXX=$CCC else if test -n "$ac_tool_prefix"; then for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC 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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$CXX"; then ac_cv_prog_CXX="$CXX" # 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CXX=$ac_cv_prog_CXX if test -n "$CXX"; then { echo "$as_me:$LINENO: result: $CXX" >&5 echo "${ECHO_T}$CXX" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$CXX" && break done fi if test -z "$CXX"; then ac_ct_CXX=$CXX for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test -n "$ac_ct_CXX"; then ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CXX="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CXX=$ac_cv_prog_ac_ct_CXX if test -n "$ac_ct_CXX"; then { echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 echo "${ECHO_T}$ac_ct_CXX" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi test -n "$ac_ct_CXX" && break done if test "x$ac_ct_CXX" = x; then CXX="g++" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac CXX=$ac_ct_CXX fi fi fi fi # Provide some information about the compiler. echo "$as_me:$LINENO: checking for C++ compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (ac_try="$ac_compiler --version >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler --version >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -v >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -v >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -V >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -V >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5 echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6; } if test "${ac_cv_cxx_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_compiler_gnu=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_cxx_compiler_gnu=$ac_compiler_gnu fi { echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6; } GXX=`test $ac_compiler_gnu = yes && echo yes` ac_test_CXXFLAGS=${CXXFLAGS+set} ac_save_CXXFLAGS=$CXXFLAGS { echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6; } if test "${ac_cv_prog_cxx_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_save_cxx_werror_flag=$ac_cxx_werror_flag ac_cxx_werror_flag=yes ac_cv_prog_cxx_g=no CXXFLAGS="-g" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cxx_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 CXXFLAGS="" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cxx_werror_flag=$ac_save_cxx_werror_flag CXXFLAGS="-g" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cxx_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 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_cxx_werror_flag=$ac_save_cxx_werror_flag fi { echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6; } if test "$ac_test_CXXFLAGS" = set; then CXXFLAGS=$ac_save_CXXFLAGS elif test $ac_cv_prog_cxx_g = yes; then if test "$GXX" = yes; then CXXFLAGS="-g -O2" else CXXFLAGS="-g" fi else if test "$GXX" = yes; then CXXFLAGS="-O2" else CXXFLAGS= fi 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 depcc="$CXX" am_compiler_list= { echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; } if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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'. 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_CXX_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi 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 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in 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 ;; none) break ;; esac # 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. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} 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 sub/conftest.${OBJEXT-o} 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_CXX_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CXX_dependencies_compiler_type=none fi fi { echo "$as_me:$LINENO: result: $am_cv_CXX_dependencies_compiler_type" >&5 echo "${ECHO_T}$am_cv_CXX_dependencies_compiler_type" >&6; } CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then am__fastdepCXX_TRUE= am__fastdepCXX_FALSE='#' else am__fastdepCXX_TRUE='#' am__fastdepCXX_FALSE= 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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}gcc" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="gcc" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}cc" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$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" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $CC" >&5 echo "${ECHO_T}$CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="$ac_prog" echo "$as_me:$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 { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}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:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&5 echo "$as_me: error: no acceptable C compiler found in \$PATH See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } # Provide some information about the compiler. echo "$as_me:$LINENO: checking for C compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (ac_try="$ac_compiler --version >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler --version >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -v >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -v >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { (ac_try="$ac_compiler -V >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compiler -V >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; } if test "${ac_cv_c_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_compiler_gnu=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 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 { echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; } GCC=`test $ac_compiler_gnu = yes && echo yes` ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; } if test "${ac_cv_prog_cc_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 CFLAGS="" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 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 { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 echo "${ECHO_T}$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 { echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; } if test "${ac_cv_prog_cc_c89+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #include #include /* 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" 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_prog_cc_c89=$ac_arg else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 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) { echo "$as_me:$LINENO: result: none needed" >&5 echo "${ECHO_T}none needed" >&6; } ;; xno) { echo "$as_me:$LINENO: result: unsupported" >&5 echo "${ECHO_T}unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;; esac 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 depcc="$CC" am_compiler_list= { echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; } if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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'. 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 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 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in 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 ;; none) break ;; esac # 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. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} 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 sub/conftest.${OBJEXT-o} 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 { echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 echo "${ECHO_T}$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 { echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; } set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&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 { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } SET_MAKE= else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } SET_MAKE="MAKE=${MAKE-make}" 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 { echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if test "${ac_cv_prog_CPP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&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 >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then # Broken: success on invalid input. continue else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f 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 { echo "$as_me:$LINENO: result: $CPP" >&5 echo "${ECHO_T}$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 >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then # Broken: success on invalid input. continue else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details." >&5 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } 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 # Are we building for Win32? case $host_os in *mingw32* ) echo "Configuring for mingw"; LIBS="-lwinspool $LIBS -mwindows" ;; esac # Checks for libraries. if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_PKG_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then { echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 echo "${ECHO_T}$PKG_CONFIG" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi fi if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 { echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else case $ac_pt_PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then { echo "$as_me:$LINENO: result: $ac_pt_PKG_CONFIG" >&5 echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi if test "x$ac_pt_PKG_CONFIG" = x; then PKG_CONFIG="" else case $cross_compiling:$ac_tool_warned in yes:) { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&5 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools whose name does not start with the host triplet. If you think this configuration is useful to you, please write to autoconf@gnu.org." >&2;} ac_tool_warned=yes ;; esac PKG_CONFIG=$ac_pt_PKG_CONFIG fi else PKG_CONFIG="$ac_cv_path_PKG_CONFIG" fi fi if test -n "$PKG_CONFIG"; then _pkg_min_version=0.9.0 { echo "$as_me:$LINENO: checking pkg-config is at least version $_pkg_min_version" >&5 echo $ECHO_N "checking pkg-config is at least version $_pkg_min_version... $ECHO_C" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } PKG_CONFIG="" fi fi pkg_failed=no { echo "$as_me:$LINENO: checking for GLIB2" >&5 echo $ECHO_N "checking for GLIB2... $ECHO_C" >&6; } if test -n "$PKG_CONFIG"; then if test -n "$GLIB2_CFLAGS"; then pkg_cv_GLIB2_CFLAGS="$GLIB2_CFLAGS" else if test -n "$PKG_CONFIG" && \ { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0\"") >&5 ($PKG_CONFIG --exists --print-errors "glib-2.0") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then pkg_cv_GLIB2_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0" 2>/dev/null` else pkg_failed=yes fi fi else pkg_failed=untried fi if test -n "$PKG_CONFIG"; then if test -n "$GLIB2_LIBS"; then pkg_cv_GLIB2_LIBS="$GLIB2_LIBS" else if test -n "$PKG_CONFIG" && \ { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0\"") >&5 ($PKG_CONFIG --exists --print-errors "glib-2.0") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then pkg_cv_GLIB2_LIBS=`$PKG_CONFIG --libs "glib-2.0" 2>/dev/null` else pkg_failed=yes fi fi else pkg_failed=untried fi if test $pkg_failed = yes; then if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then GLIB2_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "glib-2.0"` else GLIB2_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "glib-2.0"` fi # Put the nasty error message in config.log where it belongs echo "$GLIB2_PKG_ERRORS" >&5 { { echo "$as_me:$LINENO: error: Package requirements (glib-2.0) were not met: $GLIB2_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables GLIB2_CFLAGS and GLIB2_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. " >&5 echo "$as_me: error: Package requirements (glib-2.0) were not met: $GLIB2_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables GLIB2_CFLAGS and GLIB2_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. " >&2;} { (exit 1); exit 1; }; } elif test $pkg_failed = untried; then { { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables GLIB2_CFLAGS and GLIB2_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details." >&5 echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables GLIB2_CFLAGS and GLIB2_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } else GLIB2_CFLAGS=$pkg_cv_GLIB2_CFLAGS GLIB2_LIBS=$pkg_cv_GLIB2_LIBS { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } : fi pkg_failed=no { echo "$as_me:$LINENO: checking for GTHREAD" >&5 echo $ECHO_N "checking for GTHREAD... $ECHO_C" >&6; } if test -n "$PKG_CONFIG"; then if test -n "$GTHREAD_CFLAGS"; then pkg_cv_GTHREAD_CFLAGS="$GTHREAD_CFLAGS" else if test -n "$PKG_CONFIG" && \ { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gthread-2.0\"") >&5 ($PKG_CONFIG --exists --print-errors "gthread-2.0") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then pkg_cv_GTHREAD_CFLAGS=`$PKG_CONFIG --cflags "gthread-2.0" 2>/dev/null` else pkg_failed=yes fi fi else pkg_failed=untried fi if test -n "$PKG_CONFIG"; then if test -n "$GTHREAD_LIBS"; then pkg_cv_GTHREAD_LIBS="$GTHREAD_LIBS" else if test -n "$PKG_CONFIG" && \ { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gthread-2.0\"") >&5 ($PKG_CONFIG --exists --print-errors "gthread-2.0") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then pkg_cv_GTHREAD_LIBS=`$PKG_CONFIG --libs "gthread-2.0" 2>/dev/null` else pkg_failed=yes fi fi else pkg_failed=untried fi if test $pkg_failed = yes; then if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then GTHREAD_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gthread-2.0"` else GTHREAD_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gthread-2.0"` fi # Put the nasty error message in config.log where it belongs echo "$GTHREAD_PKG_ERRORS" >&5 { { echo "$as_me:$LINENO: error: Package requirements (gthread-2.0) were not met: $GTHREAD_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables GTHREAD_CFLAGS and GTHREAD_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. " >&5 echo "$as_me: error: Package requirements (gthread-2.0) were not met: $GTHREAD_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables GTHREAD_CFLAGS and GTHREAD_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. " >&2;} { (exit 1); exit 1; }; } elif test $pkg_failed = untried; then { { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables GTHREAD_CFLAGS and GTHREAD_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details." >&5 echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables GTHREAD_CFLAGS and GTHREAD_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } else GTHREAD_CFLAGS=$pkg_cv_GTHREAD_CFLAGS GTHREAD_LIBS=$pkg_cv_GTHREAD_LIBS { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } : fi pkg_failed=no { echo "$as_me:$LINENO: checking for GTK2" >&5 echo $ECHO_N "checking for GTK2... $ECHO_C" >&6; } if test -n "$PKG_CONFIG"; then if test -n "$GTK2_CFLAGS"; then pkg_cv_GTK2_CFLAGS="$GTK2_CFLAGS" else if test -n "$PKG_CONFIG" && \ { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0\"") >&5 ($PKG_CONFIG --exists --print-errors "gtk+-2.0") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then pkg_cv_GTK2_CFLAGS=`$PKG_CONFIG --cflags "gtk+-2.0" 2>/dev/null` else pkg_failed=yes fi fi else pkg_failed=untried fi if test -n "$PKG_CONFIG"; then if test -n "$GTK2_LIBS"; then pkg_cv_GTK2_LIBS="$GTK2_LIBS" else if test -n "$PKG_CONFIG" && \ { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0\"") >&5 ($PKG_CONFIG --exists --print-errors "gtk+-2.0") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then pkg_cv_GTK2_LIBS=`$PKG_CONFIG --libs "gtk+-2.0" 2>/dev/null` else pkg_failed=yes fi fi else pkg_failed=untried fi if test $pkg_failed = yes; then if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then GTK2_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gtk+-2.0"` else GTK2_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gtk+-2.0"` fi # Put the nasty error message in config.log where it belongs echo "$GTK2_PKG_ERRORS" >&5 { { echo "$as_me:$LINENO: error: Package requirements (gtk+-2.0) were not met: $GTK2_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables GTK2_CFLAGS and GTK2_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. " >&5 echo "$as_me: error: Package requirements (gtk+-2.0) were not met: $GTK2_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables GTK2_CFLAGS and GTK2_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. " >&2;} { (exit 1); exit 1; }; } elif test $pkg_failed = untried; then { { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables GTK2_CFLAGS and GTK2_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details." >&5 echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables GTK2_CFLAGS and GTK2_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } else GTK2_CFLAGS=$pkg_cv_GTK2_CFLAGS GTK2_LIBS=$pkg_cv_GTK2_LIBS { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } : fi pkg_failed=no { echo "$as_me:$LINENO: checking for GDKPIXBUF2" >&5 echo $ECHO_N "checking for GDKPIXBUF2... $ECHO_C" >&6; } if test -n "$PKG_CONFIG"; then if test -n "$GDKPIXBUF2_CFLAGS"; then pkg_cv_GDKPIXBUF2_CFLAGS="$GDKPIXBUF2_CFLAGS" else if test -n "$PKG_CONFIG" && \ { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gdk-pixbuf-2.0\"") >&5 ($PKG_CONFIG --exists --print-errors "gdk-pixbuf-2.0") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then pkg_cv_GDKPIXBUF2_CFLAGS=`$PKG_CONFIG --cflags "gdk-pixbuf-2.0" 2>/dev/null` else pkg_failed=yes fi fi else pkg_failed=untried fi if test -n "$PKG_CONFIG"; then if test -n "$GDKPIXBUF2_LIBS"; then pkg_cv_GDKPIXBUF2_LIBS="$GDKPIXBUF2_LIBS" else if test -n "$PKG_CONFIG" && \ { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gdk-pixbuf-2.0\"") >&5 ($PKG_CONFIG --exists --print-errors "gdk-pixbuf-2.0") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then pkg_cv_GDKPIXBUF2_LIBS=`$PKG_CONFIG --libs "gdk-pixbuf-2.0" 2>/dev/null` else pkg_failed=yes fi fi else pkg_failed=untried fi if test $pkg_failed = yes; then if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then GDKPIXBUF2_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gdk-pixbuf-2.0"` else GDKPIXBUF2_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gdk-pixbuf-2.0"` fi # Put the nasty error message in config.log where it belongs echo "$GDKPIXBUF2_PKG_ERRORS" >&5 { { echo "$as_me:$LINENO: error: Package requirements (gdk-pixbuf-2.0) were not met: $GDKPIXBUF2_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables GDKPIXBUF2_CFLAGS and GDKPIXBUF2_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. " >&5 echo "$as_me: error: Package requirements (gdk-pixbuf-2.0) were not met: $GDKPIXBUF2_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables GDKPIXBUF2_CFLAGS and GDKPIXBUF2_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. " >&2;} { (exit 1); exit 1; }; } elif test $pkg_failed = untried; then { { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables GDKPIXBUF2_CFLAGS and GDKPIXBUF2_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details." >&5 echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables GDKPIXBUF2_CFLAGS and GDKPIXBUF2_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } else GDKPIXBUF2_CFLAGS=$pkg_cv_GDKPIXBUF2_CFLAGS GDKPIXBUF2_LIBS=$pkg_cv_GDKPIXBUF2_LIBS { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } : fi pkg_failed=no { echo "$as_me:$LINENO: checking for GP" >&5 echo $ECHO_N "checking for GP... $ECHO_C" >&6; } if test -n "$PKG_CONFIG"; then if test -n "$GP_CFLAGS"; then pkg_cv_GP_CFLAGS="$GP_CFLAGS" else if test -n "$PKG_CONFIG" && \ { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gutenprint\"") >&5 ($PKG_CONFIG --exists --print-errors "gutenprint") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then pkg_cv_GP_CFLAGS=`$PKG_CONFIG --cflags "gutenprint" 2>/dev/null` else pkg_failed=yes fi fi else pkg_failed=untried fi if test -n "$PKG_CONFIG"; then if test -n "$GP_LIBS"; then pkg_cv_GP_LIBS="$GP_LIBS" else if test -n "$PKG_CONFIG" && \ { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gutenprint\"") >&5 ($PKG_CONFIG --exists --print-errors "gutenprint") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then pkg_cv_GP_LIBS=`$PKG_CONFIG --libs "gutenprint" 2>/dev/null` else pkg_failed=yes fi fi else pkg_failed=untried fi if test $pkg_failed = yes; then if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then GP_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gutenprint"` else GP_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gutenprint"` fi # Put the nasty error message in config.log where it belongs echo "$GP_PKG_ERRORS" >&5 { { echo "$as_me:$LINENO: error: Package requirements (gutenprint) were not met: $GP_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables GP_CFLAGS and GP_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. " >&5 echo "$as_me: error: Package requirements (gutenprint) were not met: $GP_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables GP_CFLAGS and GP_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. " >&2;} { (exit 1); exit 1; }; } elif test $pkg_failed = untried; then { { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables GP_CFLAGS and GP_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details." >&5 echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables GP_CFLAGS and GP_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } else GP_CFLAGS=$pkg_cv_GP_CFLAGS GP_LIBS=$pkg_cv_GP_LIBS { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } : fi pkg_failed=no { echo "$as_me:$LINENO: checking for LCMS" >&5 echo $ECHO_N "checking for LCMS... $ECHO_C" >&6; } if test -n "$PKG_CONFIG"; then if test -n "$LCMS_CFLAGS"; then pkg_cv_LCMS_CFLAGS="$LCMS_CFLAGS" else if test -n "$PKG_CONFIG" && \ { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"lcms\"") >&5 ($PKG_CONFIG --exists --print-errors "lcms") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then pkg_cv_LCMS_CFLAGS=`$PKG_CONFIG --cflags "lcms" 2>/dev/null` else pkg_failed=yes fi fi else pkg_failed=untried fi if test -n "$PKG_CONFIG"; then if test -n "$LCMS_LIBS"; then pkg_cv_LCMS_LIBS="$LCMS_LIBS" else if test -n "$PKG_CONFIG" && \ { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"lcms\"") >&5 ($PKG_CONFIG --exists --print-errors "lcms") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then pkg_cv_LCMS_LIBS=`$PKG_CONFIG --libs "lcms" 2>/dev/null` else pkg_failed=yes fi fi else pkg_failed=untried fi if test $pkg_failed = yes; then if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then LCMS_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "lcms"` else LCMS_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "lcms"` fi # Put the nasty error message in config.log where it belongs echo "$LCMS_PKG_ERRORS" >&5 { { echo "$as_me:$LINENO: error: Package requirements (lcms) were not met: $LCMS_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables LCMS_CFLAGS and LCMS_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. " >&5 echo "$as_me: error: Package requirements (lcms) were not met: $LCMS_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables LCMS_CFLAGS and LCMS_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. " >&2;} { (exit 1); exit 1; }; } elif test $pkg_failed = untried; then { { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables LCMS_CFLAGS and LCMS_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details." >&5 echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables LCMS_CFLAGS and LCMS_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } else LCMS_CFLAGS=$pkg_cv_LCMS_CFLAGS LCMS_LIBS=$pkg_cv_LCMS_LIBS { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } : fi { echo "$as_me:$LINENO: checking for pow in -lm" >&5 echo $ECHO_N "checking for pow in -lm... $ECHO_C" >&6; } if test "${ac_cv_lib_m_pow+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 pow (); int main () { return pow (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_m_pow=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_m_pow=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_m_pow" >&5 echo "${ECHO_T}$ac_cv_lib_m_pow" >&6; } if test $ac_cv_lib_m_pow = yes; then LIBM_LIBS="-lm" fi { echo "$as_me:$LINENO: checking for pnm_readpaminit in -lpnm" >&5 echo $ECHO_N "checking for pnm_readpaminit in -lpnm... $ECHO_C" >&6; } if test "${ac_cv_lib_pnm_pnm_readpaminit+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lpnm -lm $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 pnm_readpaminit (); int main () { return pnm_readpaminit (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_pnm_pnm_readpaminit=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_pnm_pnm_readpaminit=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_pnm_pnm_readpaminit" >&5 echo "${ECHO_T}$ac_cv_lib_pnm_pnm_readpaminit" >&6; } if test $ac_cv_lib_pnm_pnm_readpaminit = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBPNM 1 _ACEOF LIBS="-lpnm $LIBS" fi { echo "$as_me:$LINENO: checking for pnm_readpaminit in -lnetpbm" >&5 echo $ECHO_N "checking for pnm_readpaminit in -lnetpbm... $ECHO_C" >&6; } if test "${ac_cv_lib_netpbm_pnm_readpaminit+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lnetpbm -lm $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 pnm_readpaminit (); int main () { return pnm_readpaminit (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_netpbm_pnm_readpaminit=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_netpbm_pnm_readpaminit=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_netpbm_pnm_readpaminit" >&5 echo "${ECHO_T}$ac_cv_lib_netpbm_pnm_readpaminit" >&6; } if test $ac_cv_lib_netpbm_pnm_readpaminit = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBNETPBM 1 _ACEOF LIBS="-lnetpbm $LIBS" fi # Some distributions have the pam.h header in a netpbm subfolder for ac_header in netpbm/pam.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then { echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi ac_res=`eval echo '${'$as_ac_Header'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } else # Is the header compilable? { echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include <$ac_header> _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_header_compiler=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6; } # Is the header present? { echo "$as_me:$LINENO: checking $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ------------------------------------------ ## ## Report this to blackfive@fakenhamweb.co.uk ## ## ------------------------------------------ ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else eval "$as_ac_Header=\$ac_header_preproc" fi ac_res=`eval echo '${'$as_ac_Header'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } fi if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done { echo "$as_me:$LINENO: checking for TIFFOpen in -ltiff" >&5 echo $ECHO_N "checking for TIFFOpen in -ltiff... $ECHO_C" >&6; } if test "${ac_cv_lib_tiff_TIFFOpen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ltiff $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 TIFFOpen (); int main () { return TIFFOpen (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_tiff_TIFFOpen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_tiff_TIFFOpen=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_tiff_TIFFOpen" >&5 echo "${ECHO_T}$ac_cv_lib_tiff_TIFFOpen" >&6; } if test $ac_cv_lib_tiff_TIFFOpen = yes; then TIFF_LIBS="-ltiff" else unset ac_cv_lib_tiff_TIFFOpen { echo "$as_me:$LINENO: checking for TIFFOpen in -ltiff" >&5 echo $ECHO_N "checking for TIFFOpen in -ltiff... $ECHO_C" >&6; } if test "${ac_cv_lib_tiff_TIFFOpen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ltiff -lm $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 TIFFOpen (); int main () { return TIFFOpen (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_tiff_TIFFOpen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_tiff_TIFFOpen=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_tiff_TIFFOpen" >&5 echo "${ECHO_T}$ac_cv_lib_tiff_TIFFOpen" >&6; } if test $ac_cv_lib_tiff_TIFFOpen = yes; then TIFF_LIBS="-ltiff" else { echo "$as_me:$LINENO: checking for TIFFOpen in -ltiff3" >&5 echo $ECHO_N "checking for TIFFOpen in -ltiff3... $ECHO_C" >&6; } if test "${ac_cv_lib_tiff3_TIFFOpen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ltiff3 $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 TIFFOpen (); int main () { return TIFFOpen (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_tiff3_TIFFOpen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_tiff3_TIFFOpen=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_tiff3_TIFFOpen" >&5 echo "${ECHO_T}$ac_cv_lib_tiff3_TIFFOpen" >&6; } if test $ac_cv_lib_tiff3_TIFFOpen = yes; then TIFF_LIBS="-ltiff3" else { { echo "$as_me:$LINENO: error: libtiff or devel files not found See \`config.log' for more details." >&5 echo "$as_me: error: libtiff or devel files not found See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi fi fi { echo "$as_me:$LINENO: checking for jpeg_read_header in -ljpeg" >&5 echo $ECHO_N "checking for jpeg_read_header in -ljpeg... $ECHO_C" >&6; } if test "${ac_cv_lib_jpeg_jpeg_read_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ljpeg $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 jpeg_read_header (); int main () { return jpeg_read_header (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_jpeg_jpeg_read_header=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_jpeg_jpeg_read_header=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_jpeg_jpeg_read_header" >&5 echo "${ECHO_T}$ac_cv_lib_jpeg_jpeg_read_header" >&6; } if test $ac_cv_lib_jpeg_jpeg_read_header = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBJPEG 1 _ACEOF LIBS="-ljpeg $LIBS" else { echo "$as_me:$LINENO: checking for jpeg_read_header in -ljpeg62" >&5 echo $ECHO_N "checking for jpeg_read_header in -ljpeg62... $ECHO_C" >&6; } if test "${ac_cv_lib_jpeg62_jpeg_read_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ljpeg62 $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 jpeg_read_header (); int main () { return jpeg_read_header (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_jpeg62_jpeg_read_header=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_jpeg62_jpeg_read_header=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_jpeg62_jpeg_read_header" >&5 echo "${ECHO_T}$ac_cv_lib_jpeg62_jpeg_read_header" >&6; } if test $ac_cv_lib_jpeg62_jpeg_read_header = yes; then JPEG_LIBS="-ljpeg62" else { { echo "$as_me:$LINENO: error: libjpeg or devel files not found See \`config.log' for more details." >&5 echo "$as_me: error: libjpeg or devel files not found See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi fi { echo "$as_me:$LINENO: checking for pthread_attr_init in -lpthread" >&5 echo $ECHO_N "checking for pthread_attr_init in -lpthread... $ECHO_C" >&6; } if test "${ac_cv_lib_pthread_pthread_attr_init+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lpthread $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 pthread_attr_init (); int main () { return pthread_attr_init (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_pthread_pthread_attr_init=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_pthread_pthread_attr_init=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_pthread_pthread_attr_init" >&5 echo "${ECHO_T}$ac_cv_lib_pthread_pthread_attr_init" >&6; } if test $ac_cv_lib_pthread_pthread_attr_init = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBPTHREAD 1 _ACEOF LIBS="-lpthread $LIBS" fi { echo "$as_me:$LINENO: checking for pthread_attr_init in -lpthreadGC2" >&5 echo $ECHO_N "checking for pthread_attr_init in -lpthreadGC2... $ECHO_C" >&6; } if test "${ac_cv_lib_pthreadGC2_pthread_attr_init+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lpthreadGC2 $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 pthread_attr_init (); int main () { return pthread_attr_init (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_pthreadGC2_pthread_attr_init=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_pthreadGC2_pthread_attr_init=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_pthreadGC2_pthread_attr_init" >&5 echo "${ECHO_T}$ac_cv_lib_pthreadGC2_pthread_attr_init" >&6; } if test $ac_cv_lib_pthreadGC2_pthread_attr_init = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBPTHREADGC2 1 _ACEOF LIBS="-lpthreadGC2 $LIBS" fi { echo "$as_me:$LINENO: checking for getopt_long in -lgnugetopt" >&5 echo $ECHO_N "checking for getopt_long in -lgnugetopt... $ECHO_C" >&6; } if test "${ac_cv_lib_gnugetopt_getopt_long+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnugetopt $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 getopt_long (); int main () { return getopt_long (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_gnugetopt_getopt_long=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_gnugetopt_getopt_long=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_gnugetopt_getopt_long" >&5 echo "${ECHO_T}$ac_cv_lib_gnugetopt_getopt_long" >&6; } if test $ac_cv_lib_gnugetopt_getopt_long = yes; then GETOPT_LIBS=-lgnugetopt fi { echo "$as_me:$LINENO: checking for socket in -lsocket" >&5 echo $ECHO_N "checking for socket in -lsocket... $ECHO_C" >&6; } if test "${ac_cv_lib_socket_socket+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 socket (); int main () { return socket (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_socket_socket=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_socket_socket=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_socket_socket" >&5 echo "${ECHO_T}$ac_cv_lib_socket_socket" >&6; } if test $ac_cv_lib_socket_socket = yes; then if test "$uname" != "IRIX"; then LIBS="-lsocket $LIBS" else echo "Not using -lsocket since you are running IRIX." fi fi { echo "$as_me:$LINENO: checking for gethostbyaddr in -lnsl" >&5 echo $ECHO_N "checking for gethostbyaddr in -lnsl... $ECHO_C" >&6; } if test "${ac_cv_lib_nsl_gethostbyaddr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 gethostbyaddr (); int main () { return gethostbyaddr (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_nsl_gethostbyaddr=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_nsl_gethostbyaddr=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_gethostbyaddr" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyaddr" >&6; } if test $ac_cv_lib_nsl_gethostbyaddr = yes; then if test "$uname" != "IRIX"; then LIBS="-lnsl $LIBS" else echo "Not using -lnsl since you are running IRIX." fi fi { echo "$as_me:$LINENO: checking for httpConnect in -lcups" >&5 echo $ECHO_N "checking for httpConnect in -lcups... $ECHO_C" >&6; } if test "${ac_cv_lib_cups_httpConnect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lcups $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 httpConnect (); int main () { return httpConnect (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then ac_cv_lib_cups_httpConnect=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_lib_cups_httpConnect=no fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { echo "$as_me:$LINENO: result: $ac_cv_lib_cups_httpConnect" >&5 echo "${ECHO_T}$ac_cv_lib_cups_httpConnect" >&6; } if test $ac_cv_lib_cups_httpConnect = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBCUPS 1 _ACEOF LIBS="-lcups $LIBS" fi # Checks for header files. { echo "$as_me:$LINENO: checking for ANSI C header files" >&5 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; } if test "${ac_cv_header_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_header_stdc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 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 >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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 rm -f conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' { (case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ( exit $ac_status ) ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi { echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then cat >>confdefs.h <<\_ACEOF #define STDC_HEADERS 1 _ACEOF fi for ac_header in fcntl.h stdlib.h string.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then { echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi ac_res=`eval echo '${'$as_ac_Header'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } else # Is the header compilable? { echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include <$ac_header> _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_header_compiler=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6; } # Is the header present? { echo "$as_me:$LINENO: checking $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ------------------------------------------ ## ## Report this to blackfive@fakenhamweb.co.uk ## ## ------------------------------------------ ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else eval "$as_ac_Header=\$ac_header_preproc" fi ac_res=`eval echo '${'$as_ac_Header'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } fi if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done # Checks for typedefs, structures, and compiler characteristics. { echo "$as_me:$LINENO: checking for stdbool.h that conforms to C99" >&5 echo $ECHO_N "checking for stdbool.h that conforms to C99... $ECHO_C" >&6; } if test "${ac_cv_header_stdbool_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include #ifndef bool "error: bool is not defined" #endif #ifndef false "error: false is not defined" #endif #if false "error: false is not 0" #endif #ifndef true "error: true is not defined" #endif #if true != 1 "error: true is not 1" #endif #ifndef __bool_true_false_are_defined "error: __bool_true_false_are_defined is not defined" #endif struct s { _Bool s: 1; _Bool t; } s; char a[true == 1 ? 1 : -1]; char b[false == 0 ? 1 : -1]; char c[__bool_true_false_are_defined == 1 ? 1 : -1]; char d[(bool) 0.5 == true ? 1 : -1]; bool e = &s; char f[(_Bool) 0.0 == false ? 1 : -1]; char g[true]; char h[sizeof (_Bool)]; char i[sizeof s.t]; enum { j = false, k = true, l = false * true, m = true * 256 }; _Bool n[m]; char o[sizeof n == m * sizeof n[0] ? 1 : -1]; char p[-1 - (_Bool) 0 < 0 && -1 - (bool) 0 < 0 ? 1 : -1]; # if defined __xlc__ || defined __GNUC__ /* Catch a bug in IBM AIX xlc compiler version 6.0.0.0 reported by James Lemley on 2005-10-05; see http://lists.gnu.org/archive/html/bug-coreutils/2005-10/msg00086.html This test is not quite right, since xlc is allowed to reject this program, as the initializer for xlcbug is not one of the forms that C requires support for. However, doing the test right would require a runtime test, and that would make cross-compilation harder. Let us hope that IBM fixes the xlc bug, and also adds support for this kind of constant expression. In the meantime, this test will reject xlc, which is OK, since our stdbool.h substitute should suffice. We also test this with GCC, where it should work, to detect more quickly whether someone messes up the test in the future. */ char digs[] = "0123456789"; int xlcbug = 1 / (&(digs + 5)[-2 + (bool) 1] == &digs[4] ? 1 : -1); # endif /* Catch a bug in an HP-UX C compiler. See http://gcc.gnu.org/ml/gcc-patches/2003-12/msg02303.html http://lists.gnu.org/archive/html/bug-coreutils/2005-11/msg00161.html */ _Bool q = true; _Bool *pq = &q; int main () { *pq |= q; *pq |= ! q; /* Refer to every declared value, to avoid compiler optimizations. */ return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l + !m + !n + !o + !p + !q + !pq); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_header_stdbool_h=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_header_stdbool_h=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $ac_cv_header_stdbool_h" >&5 echo "${ECHO_T}$ac_cv_header_stdbool_h" >&6; } { echo "$as_me:$LINENO: checking for _Bool" >&5 echo $ECHO_N "checking for _Bool... $ECHO_C" >&6; } if test "${ac_cv_type__Bool+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default typedef _Bool ac__type_new_; int main () { if ((ac__type_new_ *) 0) return 0; if (sizeof (ac__type_new_)) return 0; ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_type__Bool=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type__Bool=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $ac_cv_type__Bool" >&5 echo "${ECHO_T}$ac_cv_type__Bool" >&6; } if test $ac_cv_type__Bool = yes; then cat >>confdefs.h <<_ACEOF #define HAVE__BOOL 1 _ACEOF fi if test $ac_cv_header_stdbool_h = yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_STDBOOL_H 1 _ACEOF fi { echo "$as_me:$LINENO: checking for an ANSI C-conforming const" >&5 echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6; } if test "${ac_cv_c_const+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ int main () { /* FIXME: Include the comments suggested by Paul. */ #ifndef __cplusplus /* Ultrix mips cc rejects this. */ typedef int charset[2]; const charset cs; /* 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. */ char *t; 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 saying "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */ struct s { int j; const int *ap[3]; }; struct s *b; 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 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_c_const=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_c_const=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $ac_cv_c_const" >&5 echo "${ECHO_T}$ac_cv_c_const" >&6; } if test $ac_cv_c_const = no; then cat >>confdefs.h <<\_ACEOF #define const _ACEOF fi { echo "$as_me:$LINENO: checking for size_t" >&5 echo $ECHO_N "checking for size_t... $ECHO_C" >&6; } if test "${ac_cv_type_size_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default typedef size_t ac__type_new_; int main () { if ((ac__type_new_ *) 0) return 0; if (sizeof (ac__type_new_)) return 0; ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_cv_type_size_t=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_cv_type_size_t=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5 echo "${ECHO_T}$ac_cv_type_size_t" >&6; } if test $ac_cv_type_size_t = yes; then : else cat >>confdefs.h <<_ACEOF #define size_t unsigned int _ACEOF fi # Checks for library functions. for ac_header in stdlib.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then { echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi ac_res=`eval echo '${'$as_ac_Header'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } else # Is the header compilable? { echo "$as_me:$LINENO: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default #include <$ac_header> _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then ac_header_compiler=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6; } # Is the header present? { echo "$as_me:$LINENO: checking $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <$ac_header> _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in yes:no: ) { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} ac_header_preproc=yes ;; no:yes:* ) { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ( cat <<\_ASBOX ## ------------------------------------------ ## ## Report this to blackfive@fakenhamweb.co.uk ## ## ------------------------------------------ ## _ASBOX ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { echo "$as_me:$LINENO: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else eval "$as_ac_Header=\$ac_header_preproc" fi ac_res=`eval echo '${'$as_ac_Header'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } fi if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done { echo "$as_me:$LINENO: checking for GNU libc compatible malloc" >&5 echo $ECHO_N "checking for GNU libc compatible malloc... $ECHO_C" >&6; } if test "${ac_cv_func_malloc_0_nonnull+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then ac_cv_func_malloc_0_nonnull=no else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #if defined STDC_HEADERS || defined HAVE_STDLIB_H # include #else char *malloc (); #endif int main () { return ! malloc (0); ; return 0; } _ACEOF rm -f conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' { (case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_malloc_0_nonnull=yes else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ( exit $ac_status ) ac_cv_func_malloc_0_nonnull=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi { echo "$as_me:$LINENO: result: $ac_cv_func_malloc_0_nonnull" >&5 echo "${ECHO_T}$ac_cv_func_malloc_0_nonnull" >&6; } if test $ac_cv_func_malloc_0_nonnull = yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_MALLOC 1 _ACEOF else cat >>confdefs.h <<\_ACEOF #define HAVE_MALLOC 0 _ACEOF case " $LIBOBJS " in *" malloc.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS malloc.$ac_objext" ;; esac cat >>confdefs.h <<\_ACEOF #define malloc rpl_malloc _ACEOF fi { echo "$as_me:$LINENO: checking whether lstat dereferences a symlink specified with a trailing slash" >&5 echo $ECHO_N "checking whether lstat dereferences a symlink specified with a trailing slash... $ECHO_C" >&6; } if test "${ac_cv_func_lstat_dereferences_slashed_symlink+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else rm -f conftest.sym conftest.file echo >conftest.file if test "$as_ln_s" = "ln -s" && ln -s conftest.file conftest.sym; then if test "$cross_compiling" = yes; then ac_cv_func_lstat_dereferences_slashed_symlink=no else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { struct stat sbuf; /* Linux will dereference the symlink and fail. That is better in the sense that it means we will not have to compile and use the lstat wrapper. */ return lstat ("conftest.sym/", &sbuf) == 0; ; return 0; } _ACEOF rm -f conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' { (case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_lstat_dereferences_slashed_symlink=yes else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ( exit $ac_status ) ac_cv_func_lstat_dereferences_slashed_symlink=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi else # If the `ln -s' command failed, then we probably don't even # have an lstat function. ac_cv_func_lstat_dereferences_slashed_symlink=no fi rm -f conftest.sym conftest.file fi { echo "$as_me:$LINENO: result: $ac_cv_func_lstat_dereferences_slashed_symlink" >&5 echo "${ECHO_T}$ac_cv_func_lstat_dereferences_slashed_symlink" >&6; } test $ac_cv_func_lstat_dereferences_slashed_symlink = yes && cat >>confdefs.h <<_ACEOF #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 _ACEOF if test $ac_cv_func_lstat_dereferences_slashed_symlink = no; then case " $LIBOBJS " in *" lstat.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS lstat.$ac_objext" ;; esac fi { echo "$as_me:$LINENO: checking whether stat accepts an empty string" >&5 echo $ECHO_N "checking whether stat accepts an empty string... $ECHO_C" >&6; } if test "${ac_cv_func_stat_empty_string_bug+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then ac_cv_func_stat_empty_string_bug=yes else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { struct stat sbuf; return stat ("", &sbuf) == 0; ; return 0; } _ACEOF rm -f conftest$ac_exeext if { (ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' { (case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_stat_empty_string_bug=no else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ( exit $ac_status ) ac_cv_func_stat_empty_string_bug=yes fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi { echo "$as_me:$LINENO: result: $ac_cv_func_stat_empty_string_bug" >&5 echo "${ECHO_T}$ac_cv_func_stat_empty_string_bug" >&6; } if test $ac_cv_func_stat_empty_string_bug = yes; then case " $LIBOBJS " in *" stat.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS stat.$ac_objext" ;; esac cat >>confdefs.h <<_ACEOF #define HAVE_STAT_EMPTY_STRING_BUG 1 _ACEOF fi for ac_func in memset mkdir strcasecmp strdup strncasecmp do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` { echo "$as_me:$LINENO: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ /* Define $ac_func to an innocuous variant, in case declares $ac_func. For example, HP-UX 11i declares gettimeofday. */ #define $ac_func innocuous_$ac_func /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $ac_func /* 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 $ac_func (); /* 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_$ac_func || defined __stub___$ac_func choke me #endif int main () { return $ac_func (); ; return 0; } _ACEOF 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 "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && $as_test_x conftest$ac_exeext; then eval "$as_ac_var=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 eval "$as_ac_var=no" fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi ac_res=`eval echo '${'$as_ac_var'}'` { echo "$as_me:$LINENO: result: $ac_res" >&5 echo "${ECHO_T}$ac_res" >&6; } if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done ac_config_files="$ac_config_files Makefile po/Makefile.in imagesource/Makefile imageutils/Makefile miscwidgets/Makefile support/Makefile profilemanager/Makefile pixbufthumbnail/Makefile effects/Makefile stpui_widgets/Makefile stp_support/Makefile gp_cppsupport/Makefile splashscreen/Makefile shortcuts/Makefile borders/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_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( *) $as_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 test "x$cache_file" != "x/dev/null" && { echo "$as_me:$LINENO: updating cache $cache_file" >&5 echo "$as_me: updating cache $cache_file" >&6;} cat confcache >$cache_file else { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5 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=`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. ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext" ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&5 echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi : ${CONFIG_STATUS=./config.status} ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF #! $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} _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF ## --------------------- ## ## 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=: # Zsh 3.x and 4.x performs 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 # PATH needs CR # 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 # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Support unset when possible. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then as_unset=unset else as_unset=false 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.) as_nl=' ' IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. 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 echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 { (exit 1); exit 1; } fi # Work around bugs in pre-3.0 UWIN ksh. for as_var in ENV MAIL MAILPATH do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. for as_var in \ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ LC_TELEPHONE LC_TIME do if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then eval $as_var=C; export $as_var else ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var fi done # Required to use basename. 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 # Name of the executable. as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # CDPATH. $as_unset CDPATH as_lineno_1=$LINENO as_lineno_2=$LINENO test "x$as_lineno_1" != "x$as_lineno_2" && test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { # Create $as_me.lineno as a copy of $as_myself, but with $LINENO # uniformly replaced by the line number. The first 'sed' inserts a # line-number line after each line using $LINENO; the second 'sed' # does the real work. The second script uses 'N' to pair each # line-number line with the line containing $LINENO, and appends # trailing '-' during substitution so that $LINENO is not a special # case at line end. # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the # scripts with optimization help from Paolo Bonzini. 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" || { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 { (exit 1); exit 1; }; } # 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 } if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in -n*) case `echo 'x\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. *) ECHO_C='\c';; esac;; *) ECHO_N='-n';; esac if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi 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 fi echo >conf$$.file 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 -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' 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=: else test -d ./-p && rmdir ./-p as_mkdir_p=false fi if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # 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 # 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 photoprint $as_me 0.4.2-pre2, which was generated by GNU Autoconf 2.61. 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 cat >>$CONFIG_STATUS <<_ACEOF # 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_cs_usage="\ \`$as_me' instantiates files from templates according to the current configuration. Usage: $0 [OPTIONS] [FILE]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit -q, --quiet 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 ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ photoprint config.status 0.4.2-pre2 configured by $0, generated by GNU Autoconf 2.61, with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" Copyright (C) 2006 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' _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF # If no file are specified by the user, then we need to provide default # value. By we need to know if files were specified by the user. 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=$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 ) echo "$ac_cs_version"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift CONFIG_FILES="$CONFIG_FILES $ac_optarg" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header { echo "$as_me: error: ambiguous option: $1 Try \`$0 --help' for more information." >&2 { (exit 1); exit 1; }; };; --help | --hel | -h ) 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. -*) { echo "$as_me: error: unrecognized option: $1 Try \`$0 --help' for more information." >&2 { (exit 1); exit 1; }; } ;; *) ac_config_targets="$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 if \$ac_cs_recheck; then echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 CONFIG_SHELL=$SHELL export CONFIG_SHELL exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF # # INIT-COMMANDS # # Capture the value of obsolete ALL_LINGUAS because we need it to compute # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it # from automake < 1.5. eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"' # Capture the value of LINGUAS because we need it to compute CATALOGS. LINGUAS="${LINGUAS-%UNSET%}" AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF # 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" ;; "po-directories") CONFIG_COMMANDS="$CONFIG_COMMANDS po-directories" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;; "imagesource/Makefile") CONFIG_FILES="$CONFIG_FILES imagesource/Makefile" ;; "imageutils/Makefile") CONFIG_FILES="$CONFIG_FILES imageutils/Makefile" ;; "miscwidgets/Makefile") CONFIG_FILES="$CONFIG_FILES miscwidgets/Makefile" ;; "support/Makefile") CONFIG_FILES="$CONFIG_FILES support/Makefile" ;; "profilemanager/Makefile") CONFIG_FILES="$CONFIG_FILES profilemanager/Makefile" ;; "pixbufthumbnail/Makefile") CONFIG_FILES="$CONFIG_FILES pixbufthumbnail/Makefile" ;; "effects/Makefile") CONFIG_FILES="$CONFIG_FILES effects/Makefile" ;; "stpui_widgets/Makefile") CONFIG_FILES="$CONFIG_FILES stpui_widgets/Makefile" ;; "stp_support/Makefile") CONFIG_FILES="$CONFIG_FILES stp_support/Makefile" ;; "gp_cppsupport/Makefile") CONFIG_FILES="$CONFIG_FILES gp_cppsupport/Makefile" ;; "splashscreen/Makefile") CONFIG_FILES="$CONFIG_FILES splashscreen/Makefile" ;; "shortcuts/Makefile") CONFIG_FILES="$CONFIG_FILES shortcuts/Makefile" ;; "borders/Makefile") CONFIG_FILES="$CONFIG_FILES borders/Makefile" ;; *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; 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= trap 'exit_status=$? { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status ' 0 trap '{ (exit 1); exit 1; }' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || { echo "$me: cannot create a temporary directory in ." >&2 { (exit 1); exit 1; } } # # Set up the sed scripts for CONFIG_FILES section. # # No need to generate the scripts if there are no CONFIG_FILES. # This happens for instance when ./config.status config.h if test -n "$CONFIG_FILES"; then _ACEOF ac_delim='%!_!# ' for ac_last_try in false false false false false :; do cat >conf$$subs.sed <<_ACEOF SHELL!$SHELL$ac_delim PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim PACKAGE_NAME!$PACKAGE_NAME$ac_delim PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim PACKAGE_STRING!$PACKAGE_STRING$ac_delim PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim exec_prefix!$exec_prefix$ac_delim prefix!$prefix$ac_delim program_transform_name!$program_transform_name$ac_delim bindir!$bindir$ac_delim sbindir!$sbindir$ac_delim libexecdir!$libexecdir$ac_delim datarootdir!$datarootdir$ac_delim datadir!$datadir$ac_delim sysconfdir!$sysconfdir$ac_delim sharedstatedir!$sharedstatedir$ac_delim localstatedir!$localstatedir$ac_delim includedir!$includedir$ac_delim oldincludedir!$oldincludedir$ac_delim docdir!$docdir$ac_delim infodir!$infodir$ac_delim htmldir!$htmldir$ac_delim dvidir!$dvidir$ac_delim pdfdir!$pdfdir$ac_delim psdir!$psdir$ac_delim libdir!$libdir$ac_delim localedir!$localedir$ac_delim mandir!$mandir$ac_delim DEFS!$DEFS$ac_delim ECHO_C!$ECHO_C$ac_delim ECHO_N!$ECHO_N$ac_delim ECHO_T!$ECHO_T$ac_delim LIBS!$LIBS$ac_delim build_alias!$build_alias$ac_delim host_alias!$host_alias$ac_delim target_alias!$target_alias$ac_delim INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim INSTALL_DATA!$INSTALL_DATA$ac_delim am__isrc!$am__isrc$ac_delim CYGPATH_W!$CYGPATH_W$ac_delim PACKAGE!$PACKAGE$ac_delim VERSION!$VERSION$ac_delim ACLOCAL!$ACLOCAL$ac_delim AUTOCONF!$AUTOCONF$ac_delim AUTOMAKE!$AUTOMAKE$ac_delim AUTOHEADER!$AUTOHEADER$ac_delim MAKEINFO!$MAKEINFO$ac_delim install_sh!$install_sh$ac_delim STRIP!$STRIP$ac_delim INSTALL_STRIP_PROGRAM!$INSTALL_STRIP_PROGRAM$ac_delim mkdir_p!$mkdir_p$ac_delim AWK!$AWK$ac_delim SET_MAKE!$SET_MAKE$ac_delim am__leading_dot!$am__leading_dot$ac_delim AMTAR!$AMTAR$ac_delim am__tar!$am__tar$ac_delim am__untar!$am__untar$ac_delim USE_NLS!$USE_NLS$ac_delim GETTEXT_MACRO_VERSION!$GETTEXT_MACRO_VERSION$ac_delim MSGFMT!$MSGFMT$ac_delim GMSGFMT!$GMSGFMT$ac_delim MSGFMT_015!$MSGFMT_015$ac_delim GMSGFMT_015!$GMSGFMT_015$ac_delim XGETTEXT!$XGETTEXT$ac_delim XGETTEXT_015!$XGETTEXT_015$ac_delim MSGMERGE!$MSGMERGE$ac_delim XGETTEXT_EXTRA_OPTIONS!$XGETTEXT_EXTRA_OPTIONS$ac_delim CC!$CC$ac_delim CFLAGS!$CFLAGS$ac_delim LDFLAGS!$LDFLAGS$ac_delim CPPFLAGS!$CPPFLAGS$ac_delim ac_ct_CC!$ac_ct_CC$ac_delim EXEEXT!$EXEEXT$ac_delim OBJEXT!$OBJEXT$ac_delim DEPDIR!$DEPDIR$ac_delim am__include!$am__include$ac_delim am__quote!$am__quote$ac_delim AMDEP_TRUE!$AMDEP_TRUE$ac_delim AMDEP_FALSE!$AMDEP_FALSE$ac_delim AMDEPBACKSLASH!$AMDEPBACKSLASH$ac_delim CCDEPMODE!$CCDEPMODE$ac_delim am__fastdepCC_TRUE!$am__fastdepCC_TRUE$ac_delim am__fastdepCC_FALSE!$am__fastdepCC_FALSE$ac_delim build!$build$ac_delim build_cpu!$build_cpu$ac_delim build_vendor!$build_vendor$ac_delim build_os!$build_os$ac_delim host!$host$ac_delim host_cpu!$host_cpu$ac_delim host_vendor!$host_vendor$ac_delim host_os!$host_os$ac_delim INTL_MACOSX_LIBS!$INTL_MACOSX_LIBS$ac_delim LIBICONV!$LIBICONV$ac_delim LTLIBICONV!$LTLIBICONV$ac_delim INTLLIBS!$INTLLIBS$ac_delim _ACEOF if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then break elif $ac_last_try; then { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} { (exit 1); exit 1; }; } else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` if test -n "$ac_eof"; then ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` ac_eof=`expr $ac_eof + 1` fi cat >>$CONFIG_STATUS <<_ACEOF cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof /@[a-zA-Z_][a-zA-Z_0-9]*@/!b _ACEOF sed ' s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g s/^/s,@/; s/!/@,|#_!!_#|/ :n t n s/'"$ac_delim"'$/,g/; t s/$/\\/; p N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n ' >>$CONFIG_STATUS >$CONFIG_STATUS <<_ACEOF CEOF$ac_eof _ACEOF ac_delim='%!_!# ' for ac_last_try in false false false false false :; do cat >conf$$subs.sed <<_ACEOF LIBINTL!$LIBINTL$ac_delim LTLIBINTL!$LTLIBINTL$ac_delim POSUB!$POSUB$ac_delim SED!$SED$ac_delim GREP!$GREP$ac_delim EGREP!$EGREP$ac_delim LN_S!$LN_S$ac_delim ECHO!$ECHO$ac_delim AR!$AR$ac_delim RANLIB!$RANLIB$ac_delim DSYMUTIL!$DSYMUTIL$ac_delim NMEDIT!$NMEDIT$ac_delim CPP!$CPP$ac_delim CXX!$CXX$ac_delim CXXFLAGS!$CXXFLAGS$ac_delim ac_ct_CXX!$ac_ct_CXX$ac_delim CXXDEPMODE!$CXXDEPMODE$ac_delim am__fastdepCXX_TRUE!$am__fastdepCXX_TRUE$ac_delim am__fastdepCXX_FALSE!$am__fastdepCXX_FALSE$ac_delim CXXCPP!$CXXCPP$ac_delim F77!$F77$ac_delim FFLAGS!$FFLAGS$ac_delim ac_ct_F77!$ac_ct_F77$ac_delim LIBTOOL!$LIBTOOL$ac_delim PKG_CONFIG!$PKG_CONFIG$ac_delim GLIB2_CFLAGS!$GLIB2_CFLAGS$ac_delim GLIB2_LIBS!$GLIB2_LIBS$ac_delim GTHREAD_CFLAGS!$GTHREAD_CFLAGS$ac_delim GTHREAD_LIBS!$GTHREAD_LIBS$ac_delim GTK2_CFLAGS!$GTK2_CFLAGS$ac_delim GTK2_LIBS!$GTK2_LIBS$ac_delim GDKPIXBUF2_CFLAGS!$GDKPIXBUF2_CFLAGS$ac_delim GDKPIXBUF2_LIBS!$GDKPIXBUF2_LIBS$ac_delim GP_CFLAGS!$GP_CFLAGS$ac_delim GP_LIBS!$GP_LIBS$ac_delim LCMS_CFLAGS!$LCMS_CFLAGS$ac_delim LCMS_LIBS!$LCMS_LIBS$ac_delim LIBM_LIBS!$LIBM_LIBS$ac_delim TIFF_LIBS!$TIFF_LIBS$ac_delim JPEG_LIBS!$JPEG_LIBS$ac_delim GETOPT_LIBS!$GETOPT_LIBS$ac_delim LIBOBJS!$LIBOBJS$ac_delim LTLIBOBJS!$LTLIBOBJS$ac_delim _ACEOF if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 43; then break elif $ac_last_try; then { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} { (exit 1); exit 1; }; } else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` if test -n "$ac_eof"; then ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` ac_eof=`expr $ac_eof + 1` fi cat >>$CONFIG_STATUS <<_ACEOF cat >"\$tmp/subs-2.sed" <<\CEOF$ac_eof /@[a-zA-Z_][a-zA-Z_0-9]*@/!b end _ACEOF sed ' s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g s/^/s,@/; s/!/@,|#_!!_#|/ :n t n s/'"$ac_delim"'$/,g/; t s/$/\\/; p N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n ' >>$CONFIG_STATUS >$CONFIG_STATUS <<_ACEOF :end s/|#_!!_#|//g CEOF$ac_eof _ACEOF # VPATH may cause trouble with some makes, so we remove $(srcdir), # ${srcdir} and @srcdir@ 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[ ]*=/{ s/:*\$(srcdir):*/:/ s/:*\${srcdir}:*/:/ s/:*@srcdir@:*/:/ s/^\([^=]*=[ ]*\):*/\1/ s/:*$// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF fi # test -n "$CONFIG_FILES" for ac_tag in :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5 echo "$as_me: error: Invalid tag $ac_tag." >&2;} { (exit 1); exit 1; }; };; :[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="$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 || { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 echo "$as_me: error: cannot find input file: $ac_f" >&2;} { (exit 1); exit 1; }; };; esac ac_file_inputs="$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 "`IFS=: echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure." if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { echo "$as_me:$LINENO: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} fi case $ac_tag in *:-:* | *:-) cat >"$tmp/stdin";; 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 || 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" case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`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 || 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" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 echo "$as_me: error: cannot create directory $as_dir" >&2;} { (exit 1); exit 1; }; }; } ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`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 # 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= case `sed -n '/datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p ' $ac_file_inputs` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF 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 sed "$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s&@configure_input@&$configure_input&;t t s&@top_builddir@&$ac_top_builddir_sub&;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 " $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" >$tmp/out test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined." >&5 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 "$tmp/stdin" case $ac_file in -) cat "$tmp/out"; rm -f "$tmp/out";; *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;; esac ;; :H) # # CONFIG_HEADER # _ACEOF # Transform confdefs.h into a sed script `conftest.defines', that # substitutes the proper values into config.h.in to produce config.h. rm -f conftest.defines conftest.tail # First, append a space to every undef/define line, to ease matching. echo 's/$/ /' >conftest.defines # Then, protect against being on the right side of a sed subst, or in # an unquoted here document, in config.status. If some macros were # called several times there might be several #defines for the same # symbol, which is useless. But do not sort them, since the last # AC_DEFINE must be honored. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* # These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where # NAME is the cpp macro being defined, VALUE is the value it is being given. # PARAMS is the parameter list in the macro definition--in most cases, it's # just an empty string. ac_dA='s,^\\([ #]*\\)[^ ]*\\([ ]*' ac_dB='\\)[ (].*,\\1define\\2' ac_dC=' ' ac_dD=' ,' uniq confdefs.h | sed -n ' t rset :rset s/^[ ]*#[ ]*define[ ][ ]*// t ok d :ok s/[\\&,]/\\&/g s/^\('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/ '"$ac_dA"'\1'"$ac_dB"'\2'"${ac_dC}"'\3'"$ac_dD"'/p s/^\('"$ac_word_re"'\)[ ]*\(.*\)/'"$ac_dA"'\1'"$ac_dB$ac_dC"'\2'"$ac_dD"'/p ' >>conftest.defines # Remove the space that was appended to ease matching. # Then 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. # (The regexp can be short, since the line contains either #define or #undef.) echo 's/ $// s,^[ #]*u.*,/* & */,' >>conftest.defines # Break up conftest.defines: ac_max_sed_lines=50 # First sed command is: sed -f defines.sed $ac_file_inputs >"$tmp/out1" # Second one is: sed -f defines.sed "$tmp/out1" >"$tmp/out2" # Third one will be: sed -f defines.sed "$tmp/out2" >"$tmp/out1" # et cetera. ac_in='$ac_file_inputs' ac_out='"$tmp/out1"' ac_nxt='"$tmp/out2"' while : do # Write a here document: cat >>$CONFIG_STATUS <<_ACEOF # First, check the format of the line: cat >"\$tmp/defines.sed" <<\\CEOF /^[ ]*#[ ]*undef[ ][ ]*$ac_word_re[ ]*\$/b def /^[ ]*#[ ]*define[ ][ ]*$ac_word_re[( ]/b def b :def _ACEOF sed ${ac_max_sed_lines}q conftest.defines >>$CONFIG_STATUS echo 'CEOF sed -f "$tmp/defines.sed"' "$ac_in >$ac_out" >>$CONFIG_STATUS ac_in=$ac_out; ac_out=$ac_nxt; ac_nxt=$ac_in sed 1,${ac_max_sed_lines}d conftest.defines >conftest.tail grep . conftest.tail >/dev/null || break rm -f conftest.defines mv conftest.tail conftest.defines done rm -f conftest.defines conftest.tail echo "ac_result=$ac_in" >>$CONFIG_STATUS cat >>$CONFIG_STATUS <<\_ACEOF if test x"$ac_file" != x-; then echo "/* $configure_input */" >"$tmp/config.h" cat "$ac_result" >>"$tmp/config.h" if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else rm -f $ac_file mv "$tmp/config.h" $ac_file fi else echo "/* $configure_input */" cat "$ac_result" fi rm -f "$tmp/out12" # 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 || 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) { echo "$as_me:$LINENO: executing $ac_file commands" >&5 echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "po-directories":C) for ac_file in $CONFIG_FILES; do # Support "outfile[:infile[:infile...]]" case "$ac_file" in *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; esac # PO directories have a Makefile.in generated from Makefile.in.in. case "$ac_file" in */Makefile.in) # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac # Treat a directory as a PO directory if and only if it has a # POTFILES.in file. This allows packages to have multiple PO # directories under different names or in different locations. if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then rm -f "$ac_dir/POTFILES" test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" POMAKEFILEDEPS="POTFILES.in" # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend # on $ac_dir but don't depend on user-specified configuration # parameters. if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then # The LINGUAS file contains the set of available languages. if test -n "$OBSOLETE_ALL_LINGUAS"; then test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" fi ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"` # Hide the ALL_LINGUAS assigment from automake < 1.5. eval 'ALL_LINGUAS''=$ALL_LINGUAS_' POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS" else # The set of available languages was given in configure.in. # Hide the ALL_LINGUAS assigment from automake < 1.5. eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS' fi # Compute POFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) # Compute UPDATEPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) # Compute DUMMYPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) # Compute GMOFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) case "$ac_given_srcdir" in .) srcdirpre= ;; *) srcdirpre='$(srcdir)/' ;; esac POFILES= UPDATEPOFILES= DUMMYPOFILES= GMOFILES= for lang in $ALL_LINGUAS; do POFILES="$POFILES $srcdirpre$lang.po" UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" DUMMYPOFILES="$DUMMYPOFILES $lang.nop" GMOFILES="$GMOFILES $srcdirpre$lang.gmo" done # CATALOGS depends on both $ac_dir and the user's LINGUAS # environment variable. INST_LINGUAS= if test -n "$ALL_LINGUAS"; then for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "$LINGUAS"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then INST_LINGUAS="$INST_LINGUAS $presentlang" fi done fi CATALOGS= if test -n "$INST_LINGUAS"; then for lang in $INST_LINGUAS; do CATALOGS="$CATALOGS $lang.gmo" done fi test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do if test -f "$f"; then case "$f" in *.orig | *.bak | *~) ;; *) cat "$f" >> "$ac_dir/Makefile" ;; esac fi done fi ;; esac done ;; "depfiles":C) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; 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 || 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"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //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' -e 's/\$U/'"$U"'/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 || 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 case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`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 || 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" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 echo "$as_me: error: cannot create directory $as_dir" >&2;} { (exit 1); exit 1; }; }; } # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done ;; esac done # for ac_tag { (exit 0); exit 0; } _ACEOF chmod +x $CONFIG_STATUS ac_clean_files=$ac_clean_files_save # 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 || { (exit 1); exit 1; } fi photoprint-0.4.2-pre2/stp_support/0000777000175000017500000000000011400250525014172 500000000000000photoprint-0.4.2-pre2/stp_support/printerqueues.c0000644000175000017500000000027511076423574017210 00000000000000#include #include "printerqueues.h" #ifdef HAVE_CONFIG_H #include "config.h" #endif #ifdef WIN32 #include "printerqueues_win32.c" #else #include "printerqueues_unix.c" #endif photoprint-0.4.2-pre2/stp_support/stputil.c0000644000175000017500000000564311266370202015773 00000000000000#include #include #include #include "stputil.h" void stputil_validate_parameters(stp_vars_t *v) { stp_parameter_list_t params = stp_get_parameter_list(v); int count = stp_parameter_list_count(params); int i; for (i = 0; i < count; i++) { const stp_parameter_t *p = stp_parameter_list_param(params, i); stp_parameter_t desc; stp_describe_parameter(v,p->name,&desc); if(desc.is_active && desc.p_level<=STP_PARAMETER_LEVEL_ADVANCED4) { switch(desc.p_type) { case STP_PARAMETER_TYPE_STRING_LIST: { int idx=-1; if(stp_check_string_parameter(v,desc.name,STP_PARAMETER_DEFAULTED)) { const char *val=stp_get_string_parameter(v,desc.name); stp_string_list_t *strlist=desc.bounds.str; if(strlist) { int j; int strcount=stp_string_list_count(strlist); for(j=0;jname,val)==0) { idx=j; j=strcount; } } } } if(idx<0 && desc.is_mandatory) { // fprintf(stderr,"Setting %s to default value %s\n",desc.name,desc.deflt.str); stp_set_string_parameter(v,desc.name,desc.deflt.str); } } break; case STP_PARAMETER_TYPE_INT: { int setdefault=1; if(stp_check_string_parameter(v,desc.name,STP_PARAMETER_DEFAULTED)) { int val=stp_get_int_parameter(v,desc.name); if(val>=desc.bounds.integer.lower && val<=desc.bounds.integer.upper) { setdefault=0; } } if(setdefault && desc.is_mandatory) stp_set_int_parameter(v,desc.name,desc.deflt.integer); } break; case STP_PARAMETER_TYPE_BOOLEAN: if(desc.is_mandatory && !stp_check_boolean_parameter(v,desc.name,STP_PARAMETER_DEFAULTED)) stp_set_boolean_parameter(v,desc.name,desc.deflt.boolean); break; case STP_PARAMETER_TYPE_DOUBLE: { int setdefault=1; if(stp_check_string_parameter(v,desc.name,STP_PARAMETER_DEFAULTED)) { int val=stp_get_int_parameter(v,desc.name); if(val>=desc.bounds.integer.lower && val<=desc.bounds.integer.upper) { setdefault=0; } } if(setdefault && desc.is_mandatory) stp_set_int_parameter(v,desc.name,desc.deflt.integer); } break; case STP_PARAMETER_TYPE_DIMENSION: { int setdefault=1; if(stp_check_dimension_parameter(v,desc.name,STP_PARAMETER_DEFAULTED)) { int val=stp_get_dimension_parameter(v,desc.name); if(val>=desc.bounds.dimension.lower && val<=desc.bounds.dimension.upper) { setdefault=0; } } if(setdefault && desc.is_mandatory) stp_set_dimension_parameter(v,desc.name,desc.deflt.dimension); } break; default: break; } } } stp_parameter_list_destroy(params); } photoprint-0.4.2-pre2/stp_support/printerqueues_unix.c0000644000175000017500000003041211316354736020247 00000000000000#include #include #include #include #include #include #include #ifdef HAVE_CONFIG_H #include "config.h" #endif #ifdef HAVE_LIBCUPS #include #endif struct PrintSystem { const char *print_command; const char *queue_select; const char *raw_flag; const char *key_file; const char *scan_command; const char *extra_opts; }; static struct PrintSystem printsystems[] = { { "lp -s", "-d", "-oraw", "/usr/sbin/cupsd", "/usr/bin/lpstat -v | grep -i '^device for ' | awk '{print $3}' | sed 's/://'" }, { "lp -s", "-d", "-oraw", "/usr/bin/lp", "/usr/bin/lpstat -v | grep -i '^device for ' | awk '{print $3}' | sed 's/://'" }, { "lpr", "-P", "-l", "/etc/lpc", "/etc/lpc status | grep '^...*:' | sed 's/:.*//'" }, { "lpr", "-P", "-l", "/usr/bsd/lpc", "/usr/bsd/lpc status | grep '^...*:' | sed 's/:.*//'" }, { "lpr", "-P", "-l", "/usr/etc/lpc", "/usr/etc/lpc status | grep '^...*:' | sed 's/:.*//'" }, { "lpr", "-P", "-l", "/usr/libexec/lpc", "/usr/libexec/lpc status | grep '^...*:' | sed 's/:.*//'" }, { "lpr", "-P", "-l", "/usr/sbin/lpc", "/usr/sbin/lpc status | grep '^...*:' | sed 's/:.*//'" }, }; struct printernode { void (*Dispose)(struct printernode *pn); struct printernode *next,*prev; struct pqprivate *head; char *name; }; enum pqoutputmode { PQMODE_COMMAND, PQMODE_CUSTOMCOMMAND, PQMODE_FILE }; struct pqprivate { void (*Dispose)(struct pqprivate *pp); char *currentqueue; int printsystem; struct printernode *first; int cancelled; char *printcommand; char *extopts; enum pqoutputmode mode; char *customcommand; char *(*getfilecallback)(void *userdata); void *userdata; enum pqinfo_datatype datatype; // Used to set the raw flag in the print command int pipefd[2]; int outputfd; int childpid; }; void pn_dispose(struct printernode *pn) { if(pn->next) pn->next->prev=pn->prev; if(pn->prev) pn->prev->next=pn->next; else pn->head->first=pn->next; if(pn->name) free(pn->name); free(pn); } struct printernode *printernode_create(struct pqprivate *head,const char *name) { struct printernode *pn=(struct printernode *)malloc(sizeof(struct printernode)); if(pn) { struct printernode *p=head->first; while(p) { if(strcmp(p->name,name)==0) { free(pn); return(p); } p=p->next; } p=head->first; pn->next=pn->prev=NULL; pn->Dispose=pn_dispose; pn->head=head; if(p) { while(p->next) p=p->next; p->next=pn; pn->prev=p; } else head->first=pn; pn->name=strdup(name); } return(pn); } static void pqp_dispose(struct pqprivate *pp) { while(pp->first) pp->first->Dispose(pp->first); if(pp->currentqueue) free(pp->currentqueue); if(pp->printcommand) free(pp->printcommand); if(pp->customcommand) free(pp->customcommand); if(pp->extopts) free(pp->extopts); free(pp); } static void pqp_identifyprintsystem(struct pqprivate *pq) { #ifdef HAVE_LIBCUPS pq->printsystem=0; #else int count=sizeof(printsystems)/sizeof(struct PrintSystem); int i; for(i=0;iprintsystem=i; i=count; } } #endif } static void pqp_buildqueuelist(struct pqprivate *pp) { // If libcups is available we use it to identify the print queues, to avoid the // increasingly messy environment variable issues on localized systems. #ifdef HAVE_LIBCUPS cups_dest_t *dests; int c,i; pqp_identifyprintsystem(pp); c=cupsGetDests(&dests); for(i=0;iprintsystem].scan_command, "r"))) { while (fgets(buf, sizeof(buf), pfile) != NULL) { int i; for(i=strlen(buf)-1;i>0;--i) { if(buf[i]=='\n') buf[i]=0; if(buf[i]=='\r') buf[i]=0; } printernode_create(pp,buf); } pclose(pfile); } if(old_lang) setenv("LANG",old_lang,1); else unsetenv("LANG"); if(old_lcall) setenv("LC_ALL",old_lcall,1); else unsetenv("LC_ALL"); if(old_lcmess) setenv("LC_MESSAGES",old_lcmess,1); else unsetenv("LC_MESSAGES"); } printernode_create(pp,PRINTERQUEUE_CUSTOMCOMMAND); printernode_create(pp,PRINTERQUEUE_SAVETOFILE); } static struct pqprivate *pqprivate_create() { struct pqprivate *pp=(struct pqprivate *)malloc(sizeof(struct pqprivate)); if(pp) { pp->Dispose=pqp_dispose; pp->first=NULL; pp->currentqueue=NULL; pp->printcommand=NULL; pp->customcommand=NULL; pp->extopts=strdup(""); pp->getfilecallback=NULL; pp->datatype=PQINFO_RAW; pqp_buildqueuelist(pp); } return(pp); } /* pqinfo member functions */ static void dispose(struct pqinfo *pq) { if(pq->priv) pq->priv->Dispose(pq->priv); free(pq); } static int getprintercount(struct pqinfo *pq) { int count=0; struct printernode *p=pq->priv->first; while(p) { ++count; p=p->next; } return(count); } static char *getprintername(struct pqinfo *pq,int index) { struct printernode *p=pq->priv->first; while(--index>=0 && p) { p=p->next; } if(p) return(strdup(p->name)); return(NULL); } static void setprinterqueue(struct pqinfo *pq,const char *queue) { if(queue) { if(pq->priv->currentqueue) free(pq->priv->currentqueue); pq->priv->currentqueue=strdup(queue); } if(strcmp(queue,PRINTERQUEUE_CUSTOMCOMMAND)==0) pq->priv->mode=PQMODE_CUSTOMCOMMAND; else if(strcmp(queue,PRINTERQUEUE_SAVETOFILE)==0) pq->priv->mode=PQMODE_FILE; else pq->priv->mode=PQMODE_COMMAND; } static const char *getprinterqueue(struct pqinfo *pq) { return(pq->priv->currentqueue); } static void setcustomcommand(struct pqinfo *pq,const char *command) { if(pq->priv->customcommand) free(pq->priv->customcommand); if(command) pq->priv->customcommand=strdup(command); else pq->priv->customcommand=NULL; } static const char *getcustomcommand(struct pqinfo *pq) { return(pq->priv->customcommand); } static void setextopts(struct pqinfo *pq,const char *opts) { if(pq->priv->extopts) free(pq->priv->extopts); if(opts) pq->priv->extopts=strdup(opts); else pq->priv->extopts=strdup(""); } static void setgetfilenamecallback(struct pqinfo *pq,char *(*func)(void *userdata),void *userdata) { pq->priv->getfilecallback=func; pq->priv->userdata=userdata; } static char *getdriver(struct pqinfo *pq) { if(strcmp(pq->priv->currentqueue,PRINTERQUEUE_SAVETOFILE)==0) return(NULL); if(strcmp(pq->priv->currentqueue,PRINTERQUEUE_CUSTOMCOMMAND)==0) return(NULL); #ifdef HAVE_LIBCUPS char *result=NULL; const char *ppdname=cupsGetPPD(pq->priv->currentqueue); if(ppdname) { const char *cmd="cat %s | grep -i 'StpDriverName' | awk '{print $2}' | sed 's/\"//g'"; int len=strlen(cmd)+strlen(ppdname)+2; char *cmd2=(char *)malloc(len); FILE *pfile; sprintf(cmd2,cmd,ppdname); if((pfile = popen(cmd2, "r"))) { char buf[256]; int i; if(fgets(buf, sizeof(buf), pfile)) { for(i=strlen(buf)-1;i>0;--i) { if(buf[i]=='\n') buf[i]=0; if(buf[i]=='\r') buf[i]=0; } if(strlen(buf)>1) result=strdup(buf); } pclose(pfile); } free(cmd2); } if(!result) result=strdup("ps2"); return(result); #else return(NULL); #endif } static char *getppd(struct pqinfo *pq) { char *result=NULL; #ifdef HAVE_LIBCUPS const char *ppdname=cupsGetPPD(pq->priv->currentqueue); if(ppdname) result=strdup(ppdname); #endif return(result); } /************ Job Spooling ************/ static int aborted=0; static void sighandler(int sig) { switch(sig) { case SIGPIPE: fprintf(stderr,"PrintQueue: Received SIGPIPE\n"); aborted=1; break; default: break; } } static void setdatatype(struct pqinfo *pq,enum pqinfo_datatype type) { pq->priv->datatype=type; } static char *buildprintcommand(struct pqinfo *pq) { int len=strlen(printsystems[pq->priv->printsystem].print_command); len+=strlen(printsystems[pq->priv->printsystem].queue_select); len+=strlen(printsystems[pq->priv->printsystem].raw_flag); len+=strlen(pq->priv->currentqueue); len+=strlen(pq->priv->extopts)+2; #if 0 const char *driver=getdriver(pq); if(driver) { if(strcmp("ps",driver)==0 || strcmp("ps2",driver)==0) rawmode=0; } else { fprintf(stderr,"***\n*** WARNING: driver is null - this shouldn't happen - please report this bug!\n***\n"); rawmode=0; } #endif char *cmd=(char *)malloc(len+15); sprintf(cmd,"%s %s %s %s %s", printsystems[pq->priv->printsystem].print_command, pq->priv->currentqueue ? printsystems[pq->priv->printsystem].queue_select : "", pq->priv->currentqueue ? pq->priv->currentqueue : "", pq->priv->datatype==PQINFO_RAW ? printsystems[pq->priv->printsystem].raw_flag : "", pq->priv->extopts ? pq->priv->extopts : ""); #if 0 free((void *)driver); #endif return(cmd); } static int initialisejob(struct pqinfo *pq) { if(pq->priv->mode==PQMODE_FILE) { char *fn=NULL; aborted=0; pq->priv->cancelled=0; if(pq->priv->getfilecallback) fn=pq->priv->getfilecallback(pq->priv->userdata); if(!fn) return(0); pq->priv->outputfd=-1; if(fn) pq->priv->outputfd=open(fn,O_CREAT|O_RDWR,0644); free(fn); if(pq->priv->outputfd<0) return(0); return(1); } // FIXME - bail out if the customcommand isn't set. if(pq->priv->mode==PQMODE_CUSTOMCOMMAND) { if(pq->priv->customcommand) pq->priv->printcommand=strdup(pq->priv->customcommand); else return(0); } else pq->priv->printcommand=buildprintcommand(pq); signal(SIGPIPE,&sighandler); aborted=0; pq->priv->cancelled=0; // FIXME - alternate runs seem to result in the SIGPIPE signal being received // immediately. Why? // Workaroud for now - clear aborted and cancelled flags in the InitialisePage function. // Race condition, though - not a permanent fix. fprintf(stderr,"Print command: %s\n",pq->priv->printcommand); if(pipe(pq->priv->pipefd)) return(0); pq->priv->outputfd=pq->priv->pipefd[1]; pq->priv->childpid=fork(); if(pq->priv->childpid==-1) { // fprintf(stderr,"PrinterQueue: Failed to create child process\n"); return(0); } if(pq->priv->childpid==0) { // printf("Child process: %d\n",pq->priv->childpid); dup2(pq->priv->pipefd[0],0); close(pq->priv->pipefd[0]); close(pq->priv->pipefd[1]); execl("/bin/sh", "/bin/sh", "-c", pq->priv->printcommand, NULL); exit(0); } return(1); } static void initialisepage(struct pqinfo *pq) { // FIXME - ugly workaround to the phantom SIGPIPE signals being received... aborted=0; pq->priv->cancelled=0; } static void endpage(struct pqinfo *pq) { } static void endjob(struct pqinfo *pq) { if(pq->priv->mode==PQMODE_FILE) { close(pq->priv->outputfd); } else { // fprintf(stderr,"In endjob()\n"); if(pq->priv->cancelled) { // fprintf(stderr,"Job cancelled - sending term signal"); kill(pq->priv->childpid,SIGTERM); } close(pq->priv->pipefd[0]); close(pq->priv->pipefd[1]); free(pq->priv->printcommand); pq->priv->printcommand=NULL; int st; wait(&st); } } static void canceljob(struct pqinfo *pq) { pq->priv->cancelled=1; } static int writedata(struct pqinfo *pq,const char *data,int bytecount) { int written=write(pq->priv->outputfd,data,bytecount); if(writtenDispose=dispose; pq->GetPrinterCount=getprintercount; pq->GetPrinterName=getprintername; pq->SetPrinterQueue=setprinterqueue; pq->GetPrinterQueue=getprinterqueue; pq->GetDriver=getdriver; pq->GetPPD=getppd; pq->SetDataType=setdatatype; pq->InitialiseJob=initialisejob; pq->InitialisePage=initialisepage; pq->EndPage=endpage; pq->EndJob=endjob; pq->CancelJob=canceljob; pq->WriteData=writedata; pq->SetCustomCommand=setcustomcommand; pq->GetCustomCommand=getcustomcommand; pq->SetExtendedOptions=setextopts; pq->SetGetFilenameCallback=setgetfilenamecallback; if(!(pq->priv=pqprivate_create())) { pq->Dispose(pq); return(NULL); } } return(pq); } photoprint-0.4.2-pre2/stp_support/Makefile.in0000644000175000017500000003436111400237522016164 00000000000000# Makefile.in generated by automake 1.10.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 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@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@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 = stp_support DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/scripts/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libstp_support_la_LIBADD = am_libstp_support_la_OBJECTS = printerqueues.lo stputil.lo libstp_support_la_OBJECTS = $(am_libstp_support_la_OBJECTS) libstp_support_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(libstp_support_la_LDFLAGS) $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/scripts/depcomp am__depfiles_maybe = depfiles COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ SOURCES = $(libstp_support_la_SOURCES) DIST_SOURCES = $(libstp_support_la_SOURCES) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DSYMUTIL = @DSYMUTIL@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ GDKPIXBUF2_CFLAGS = @GDKPIXBUF2_CFLAGS@ GDKPIXBUF2_LIBS = @GDKPIXBUF2_LIBS@ GETOPT_LIBS = @GETOPT_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIB2_CFLAGS = @GLIB2_CFLAGS@ GLIB2_LIBS = @GLIB2_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GP_CFLAGS = @GP_CFLAGS@ GP_LIBS = @GP_LIBS@ GREP = @GREP@ GTHREAD_CFLAGS = @GTHREAD_CFLAGS@ GTHREAD_LIBS = @GTHREAD_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ JPEG_LIBS = @JPEG_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ LCMS_LIBS = @LCMS_LIBS@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBM_LIBS = @LIBM_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NMEDIT = @NMEDIT@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ POSUB = @POSUB@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ TIFF_LIBS = @TIFF_LIBS@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ 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@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ 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@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = -Wall AM_CXXFLAGS = -Wall noinst_LTLIBRARIES = libstp_support.la libstp_support_la_SOURCES = \ printerqueues.c \ printerqueues.h \ stputil.c \ stputil.h libstp_support_la_LDFLAGS = -static EXTRA_DIST = printerqueues_unix.c printerqueues_win32.c all: all-am .SUFFIXES: .SUFFIXES: .c .lo .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 \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign stp_support/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign stp_support/Makefile .PRECIOUS: 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 clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libstp_support.la: $(libstp_support_la_OBJECTS) $(libstp_support_la_DEPENDENCIES) $(libstp_support_la_LINK) $(libstp_support_la_OBJECTS) $(libstp_support_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/printerqueues.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stputil.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here 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 $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$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: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: 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: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_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-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-dvi: install-dvi-am 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 installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ 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 mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am # 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: photoprint-0.4.2-pre2/stp_support/printerqueues_win32.c0000644000175000017500000001417511400177721020225 00000000000000#include #include #include #include #include #include struct printernode { void (*Dispose)(struct printernode *pn); struct printernode *next,*prev; struct pqprivate *head; char *name; }; enum pqoutputmode { PQMODE_PRINT, PQMODE_FILE }; struct pqprivate { void (*Dispose)(struct pqprivate *pp); char *currentqueue; struct printernode *first; HANDLE printer; enum pqoutputmode mode; char *(*getfilecallback)(void *userdata); void *userdata; FILE *outfile; }; void pn_dispose(struct printernode *pn) { if(pn->next) pn->next->prev=pn->prev; if(pn->prev) pn->prev->next=pn->next; else pn->head->first=pn->next; if(pn->name) free(pn->name); free(pn); } struct printernode *printernode_create(struct pqprivate *head,const char *name) { struct printernode *pn=(struct printernode *)malloc(sizeof(struct printernode)); if(pn) { struct printernode *p=head->first; pn->next=pn->prev=NULL; pn->Dispose=pn_dispose; pn->head=head; if(p) { while(p->next) p=p->next; p->next=pn; pn->prev=p; } else head->first=pn; pn->name=strdup(name); } return(pn); } static void pqp_dispose(struct pqprivate *pp) { while(pp->first) pp->first->Dispose(pp->first); if(pp->currentqueue) free(pp->currentqueue); free(pp); } static void pqp_buildqueuelist(struct pqprivate *pp) { DWORD dwSizeNeeded; DWORD dwNumItems; DWORD dwItem; LPPRINTER_INFO_2 lpInfo = NULL; EnumPrinters ( PRINTER_ENUM_LOCAL, NULL, 2, NULL, 0, &dwSizeNeeded, &dwNumItems ); lpInfo = (LPPRINTER_INFO_2)HeapAlloc ( GetProcessHeap (), HEAP_ZERO_MEMORY, dwSizeNeeded ); if(lpInfo) { if(EnumPrinters(PRINTER_ENUM_LOCAL,NULL,2,(LPBYTE)lpInfo,dwSizeNeeded,&dwSizeNeeded,&dwNumItems)) { for ( dwItem = 0; dwItem < dwNumItems; dwItem++ ) { fprintf(stderr,"Creating printer node for: %s\n",lpInfo[dwItem].pPrinterName); printernode_create(pp,lpInfo[dwItem].pPrinterName); } } } HeapFree ( GetProcessHeap (), 0, lpInfo ); printernode_create(pp,PRINTERQUEUE_SAVETOFILE); } static struct pqprivate *pqprivate_create() { struct pqprivate *pp=(struct pqprivate *)malloc(sizeof(struct pqprivate)); if(pp) { pp->Dispose=pqp_dispose; pp->first=NULL; pp->currentqueue=NULL; pqp_buildqueuelist(pp); } return(pp); } /* pqinfo member functions */ static void dispose(struct pqinfo *pq) { if(pq->priv) pq->priv->Dispose(pq->priv); free(pq); } static void setgetfilenamecallback(struct pqinfo *pq,char *(*func)(void *userdata),void *userdata) { fprintf(stderr,"Setting filename callback.\n"); pq->priv->getfilecallback=func; pq->priv->userdata=userdata; } static int getprintercount(struct pqinfo *pq) { int count=0; struct printernode *p=pq->priv->first; while(p) { ++count; p=p->next; } return(count); } static char *getprintername(struct pqinfo *pq,int index) { struct printernode *p=pq->priv->first; while(--index>=0 && p) { p=p->next; } if(p) return(strdup(p->name)); return(NULL); } static void setprinterqueue(struct pqinfo *pq,const char *queue) { if(pq->priv->currentqueue) free(pq->priv->currentqueue); if(queue) pq->priv->currentqueue=strdup(queue); else pq->priv->currentqueue=NULL; } static const char *getprinterqueue(struct pqinfo *pq) { return(pq->priv->currentqueue); } static char *getdriver(struct pqinfo *pq) { /* FIXME - is there any way we can guess a suitable driver from the Win32 queue name? */ return(NULL); } static char *getppd(struct pqinfo *pq) { return(NULL); } // Dummy function static void setdatatype(struct pqinfo *pq,enum pqinfo_datatype type) { } static int initialisejob(struct pqinfo *pq) { fprintf(stderr,"In initialisejob() - checking mode\n"); if(strcmp(pq->priv->currentqueue,PRINTERQUEUE_SAVETOFILE)==0) { char *fn=NULL; pq->priv->mode=PQMODE_FILE; fprintf(stderr,"Getting filename...\n"); if(pq->priv->getfilecallback) fn=pq->priv->getfilecallback(pq->priv->userdata); pq->priv->outfile=NULL; if(fn) pq->priv->outfile=fopen(fn,"wb"); free(fn); if(!pq->priv->outfile) return(0); return(1); } else { static DOC_INFO_1 mydi={"Gutenprint output",NULL,NULL}; BOOL result; fprintf(stderr,"Getting printer...\n"); result=OpenPrinter(pq->priv->currentqueue,&pq->priv->printer,NULL); if(result) StartDocPrinter(pq->priv->printer,1,(LPBYTE)&mydi); pq->priv->mode=PQMODE_PRINT; return(result); } } static void initialisepage(struct pqinfo *pq) { if(pq->priv->mode==PQMODE_PRINT) { if(pq->priv->printer) StartPagePrinter(pq->priv->printer); } } static void endpage(struct pqinfo *pq) { if(pq->priv->mode==PQMODE_PRINT) { if(pq->priv->printer) EndPagePrinter(pq->priv->printer); } } static void endjob(struct pqinfo *pq) { if(pq->priv->mode==PQMODE_PRINT) { if(pq->priv->printer) { EndDocPrinter(pq->priv->printer); ClosePrinter(pq->priv->printer); } pq->priv->printer=NULL; } else { if(pq->priv->outfile) fclose(pq->priv->outfile); pq->priv->outfile=NULL; } } static int writedata(struct pqinfo *pq,const char *data,int bytecount) { if(pq->priv->mode==PQMODE_PRINT) { long written=0; WritePrinter(pq->priv->printer,(char *)data,bytecount,&written); return((written!=0)); } else { long written=fwrite((char *)data,1,bytecount,pq->priv->outfile); return((written!=0)); } } static void canceljob(struct pqinfo *pq) { } static void setextopts(struct pqinfo *pq,const char *opts) { } struct pqinfo *pqinfo_create() { struct pqinfo *pq=(struct pqinfo *)malloc(sizeof(struct pqinfo)); if(pq) { pq->Dispose=dispose; pq->GetPrinterCount=getprintercount; pq->GetPrinterName=getprintername; pq->SetPrinterQueue=setprinterqueue; pq->GetPrinterQueue=getprinterqueue; pq->GetDriver=getdriver; pq->GetPPD=getppd; pq->SetDataType=setdatatype; pq->SetExtendedOptions=setextopts; pq->InitialiseJob=initialisejob; pq->InitialisePage=initialisepage; pq->EndPage=endpage; pq->EndJob=endjob; pq->CancelJob=canceljob; pq->WriteData=writedata; pq->SetGetFilenameCallback=setgetfilenamecallback; if(!(pq->priv=pqprivate_create())) { pq->Dispose(pq); return(NULL); } } return(pq); } photoprint-0.4.2-pre2/stp_support/stputil.h0000644000175000017500000000031111076423574015775 00000000000000#ifndef STPUTIL_H #define STPUTIL_H #include #ifdef __cplusplus extern "C" { #endif void stputil_validate_parameters(stp_vars_t *v); #ifdef __cplusplus } #endif #endif photoprint-0.4.2-pre2/stp_support/Makefile.am0000644000175000017500000000041411076423574016160 00000000000000AM_CFLAGS = -Wall AM_CXXFLAGS = -Wall noinst_LTLIBRARIES = libstp_support.la libstp_support_la_SOURCES = \ printerqueues.c \ printerqueues.h \ stputil.c \ stputil.h libstp_support_la_LDFLAGS = -static EXTRA_DIST = printerqueues_unix.c printerqueues_win32.c photoprint-0.4.2-pre2/stp_support/printerqueues.h0000644000175000017500000000517211316353674017216 00000000000000#ifndef PRINTERQUEUES_H #define PRINTERQUEUES_H #ifdef __cplusplus extern "C" { #endif #define PRINTERQUEUE_CUSTOMCOMMAND "" #define PRINTERQUEUE_SAVETOFILE "" enum pqinfo_datatype {PQINFO_POSTSCRIPT,PQINFO_RAW}; struct pqprivate; struct pqinfo { void (*Dispose)(struct pqinfo *pq); /***** For querying the available printer queues *****/ int (*GetPrinterCount)(struct pqinfo *pq); char *(*GetPrinterName)(struct pqinfo *pq,int index); /* Get and set the current printer queue... */ const char *(*GetPrinterQueue)(struct pqinfo *pq); void (*SetPrinterQueue)(struct pqinfo *pq,const char *queue); /* Returns the gutenprint driver associated with the queue, or NULL if unknown. */ char *(*GetDriver)(struct pqinfo *pq); /* Returns the PPD associated with the the queue, or NULL if unknown or not applicable. */ char *(*GetPPD)(struct pqinfo *pq); /***** Output Options *****/ #ifndef WIN32 /* Custom command (Unix only) If a custom command is set, then instead of piping data to the queue's default command, it will be piped to the custom command. */ const char *(*GetCustomCommand)(struct pqinfo *pq); void (*SetCustomCommand)(struct pqinfo *pq,const char *cmd); #endif /* Set Extended Options - No-op on Win32 or non-CUPS unix queues. On CUPS-capable systems, provide extra options in the form: -oopt=value -oopt=value ... */ void (*SetExtendedOptions)(struct pqinfo *pq,const char *extendedopts); /* Saving to a file (Unix and Windows) Redirects the print data to a file. Uses a callback function to get the output filename at print-time. Use like this: Define a function that returns a filename - must return a full path, which will be free()d once the file is open: char *mygetfnfunc(void *userdata) { struct myuserdata *ud=(struct myuserdata *ud)userdata; [do user interface stuff here] return(filename); } pqinfo->SetGetFilenameCallback(pqinfo,mygetfnfunc,userdata); */ void (*SetGetFilenameCallback)(struct pqinfo *pq,char *(*getfilename)(void *userdata),void *userdata); /***** Job Handling *****/ void (*SetDataType)(struct pqinfo *pq,enum pqinfo_datatype type); int (*InitialiseJob)(struct pqinfo *pq); void (*InitialisePage)(struct pqinfo *pq); void (*EndPage)(struct pqinfo *pq); void (*EndJob)(struct pqinfo *pq); void (*CancelJob)(struct pqinfo *pq); /* Function to write data to the printer queue */ int (*WriteData)(struct pqinfo *pq,const char *data,int bytecount); struct pqprivate *priv; }; struct pqinfo *pqinfo_create(); #ifdef __cplusplus } #endif #endif photoprint-0.4.2-pre2/aclocal.m40000644000175000017500000130301211400237500013342 00000000000000# generated automatically by aclocal 1.10.1 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2007, 2008 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_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(AC_AUTOCONF_VERSION, [2.61],, [m4_warning([this file was generated for autoconf 2.61. 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'.])]) # gettext.m4 serial 60 (gettext-0.17) dnl Copyright (C) 1995-2007 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. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2006. dnl Macro to add for using GNU gettext. dnl Usage: AM_GNU_GETTEXT([INTLSYMBOL], [NEEDSYMBOL], [INTLDIR]). dnl INTLSYMBOL can be one of 'external', 'no-libtool', 'use-libtool'. The dnl default (if it is not specified or empty) is 'no-libtool'. dnl INTLSYMBOL should be 'external' for packages with no intl directory, dnl and 'no-libtool' or 'use-libtool' for packages with an intl directory. dnl If INTLSYMBOL is 'use-libtool', then a libtool library dnl $(top_builddir)/intl/libintl.la will be created (shared and/or static, dnl depending on --{enable,disable}-{shared,static} and on the presence of dnl AM-DISABLE-SHARED). If INTLSYMBOL is 'no-libtool', a static library dnl $(top_builddir)/intl/libintl.a will be created. dnl If NEEDSYMBOL is specified and is 'need-ngettext', then GNU gettext dnl implementations (in libc or libintl) without the ngettext() function dnl will be ignored. If NEEDSYMBOL is specified and is dnl 'need-formatstring-macros', then GNU gettext implementations that don't dnl support the ISO C 99 formatstring macros will be ignored. dnl INTLDIR is used to find the intl libraries. If empty, dnl the value `$(top_builddir)/intl/' is used. dnl dnl The result of the configuration is one of three cases: dnl 1) GNU gettext, as included in the intl subdirectory, will be compiled dnl and used. dnl Catalog format: GNU --> install in $(datadir) dnl Catalog extension: .mo after installation, .gmo in source tree dnl 2) GNU gettext has been found in the system's C library. dnl Catalog format: GNU --> install in $(datadir) dnl Catalog extension: .mo after installation, .gmo in source tree dnl 3) No internationalization, always use English msgid. dnl Catalog format: none dnl Catalog extension: none dnl If INTLSYMBOL is 'external', only cases 2 and 3 can occur. dnl The use of .gmo is historical (it was needed to avoid overwriting the dnl GNU format catalogs when building on a platform with an X/Open gettext), dnl but we keep it in order not to force irrelevant filename changes on the dnl maintainers. dnl AC_DEFUN([AM_GNU_GETTEXT], [ dnl Argument checking. ifelse([$1], [], , [ifelse([$1], [external], , [ifelse([$1], [no-libtool], , [ifelse([$1], [use-libtool], , [errprint([ERROR: invalid first argument to AM_GNU_GETTEXT ])])])])]) ifelse([$2], [], , [ifelse([$2], [need-ngettext], , [ifelse([$2], [need-formatstring-macros], , [errprint([ERROR: invalid second argument to AM_GNU_GETTEXT ])])])]) define([gt_included_intl], ifelse([$1], [external], ifdef([AM_GNU_GETTEXT_][INTL_SUBDIR], [yes], [no]), [yes])) define([gt_libtool_suffix_prefix], ifelse([$1], [use-libtool], [l], [])) gt_NEEDS_INIT AM_GNU_GETTEXT_NEED([$2]) AC_REQUIRE([AM_PO_SUBDIRS])dnl ifelse(gt_included_intl, yes, [ AC_REQUIRE([AM_INTL_SUBDIR])dnl ]) dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) dnl Sometimes libintl requires libiconv, so first search for libiconv. dnl Ideally we would do this search only after the dnl if test "$USE_NLS" = "yes"; then dnl if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then dnl tests. But if configure.in invokes AM_ICONV after AM_GNU_GETTEXT dnl the configure script would need to contain the same shell code dnl again, outside any 'if'. There are two solutions: dnl - Invoke AM_ICONV_LINKFLAGS_BODY here, outside any 'if'. dnl - Control the expansions in more detail using AC_PROVIDE_IFELSE. dnl Since AC_PROVIDE_IFELSE is only in autoconf >= 2.52 and not dnl documented, we avoid it. ifelse(gt_included_intl, yes, , [ AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) ]) dnl Sometimes, on MacOS X, libintl requires linking with CoreFoundation. gt_INTL_MACOSX dnl Set USE_NLS. AC_REQUIRE([AM_NLS]) ifelse(gt_included_intl, yes, [ BUILD_INCLUDED_LIBINTL=no USE_INCLUDED_LIBINTL=no ]) LIBINTL= LTLIBINTL= POSUB= dnl Add a version number to the cache macros. case " $gt_needs " in *" need-formatstring-macros "*) gt_api_version=3 ;; *" need-ngettext "*) gt_api_version=2 ;; *) gt_api_version=1 ;; esac gt_func_gnugettext_libc="gt_cv_func_gnugettext${gt_api_version}_libc" gt_func_gnugettext_libintl="gt_cv_func_gnugettext${gt_api_version}_libintl" dnl If we use NLS figure out what method if test "$USE_NLS" = "yes"; then gt_use_preinstalled_gnugettext=no ifelse(gt_included_intl, yes, [ AC_MSG_CHECKING([whether included gettext is requested]) AC_ARG_WITH(included-gettext, [ --with-included-gettext use the GNU gettext library included here], nls_cv_force_use_gnu_gettext=$withval, nls_cv_force_use_gnu_gettext=no) AC_MSG_RESULT($nls_cv_force_use_gnu_gettext) nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext" if test "$nls_cv_force_use_gnu_gettext" != "yes"; then ]) dnl User does not insist on using GNU NLS library. Figure out what dnl to use. If GNU gettext is available we use this. Else we have dnl to fall back to GNU NLS library. if test $gt_api_version -ge 3; then gt_revision_test_code=' #ifndef __GNU_GETTEXT_SUPPORTED_REVISION #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) #endif changequote(,)dnl typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; changequote([,])dnl ' else gt_revision_test_code= fi if test $gt_api_version -ge 2; then gt_expression_test_code=' + * ngettext ("", "", 0)' else gt_expression_test_code= fi AC_CACHE_CHECK([for GNU gettext in libc], [$gt_func_gnugettext_libc], [AC_TRY_LINK([#include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern int *_nl_domain_bindings;], [bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_domain_bindings], [eval "$gt_func_gnugettext_libc=yes"], [eval "$gt_func_gnugettext_libc=no"])]) if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then dnl Sometimes libintl requires libiconv, so first search for libiconv. ifelse(gt_included_intl, yes, , [ AM_ICONV_LINK ]) dnl Search for libintl and define LIBINTL, LTLIBINTL and INCINTL dnl accordingly. Don't use AC_LIB_LINKFLAGS_BODY([intl],[iconv]) dnl because that would add "-liconv" to LIBINTL and LTLIBINTL dnl even if libiconv doesn't exist. AC_LIB_LINKFLAGS_BODY([intl]) AC_CACHE_CHECK([for GNU gettext in libintl], [$gt_func_gnugettext_libintl], [gt_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $INCINTL" gt_save_LIBS="$LIBS" LIBS="$LIBS $LIBINTL" dnl Now see whether libintl exists and does not depend on libiconv. AC_TRY_LINK([#include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (const char *);], [bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("")], [eval "$gt_func_gnugettext_libintl=yes"], [eval "$gt_func_gnugettext_libintl=no"]) dnl Now see whether libintl exists and depends on libiconv. if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" != yes; } && test -n "$LIBICONV"; then LIBS="$LIBS $LIBICONV" AC_TRY_LINK([#include $gt_revision_test_code extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (const char *);], [bindtextdomain ("", ""); return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("")], [LIBINTL="$LIBINTL $LIBICONV" LTLIBINTL="$LTLIBINTL $LTLIBICONV" eval "$gt_func_gnugettext_libintl=yes" ]) fi CPPFLAGS="$gt_save_CPPFLAGS" LIBS="$gt_save_LIBS"]) fi dnl If an already present or preinstalled GNU gettext() is found, dnl use it. But if this macro is used in GNU gettext, and GNU dnl gettext is already preinstalled in libintl, we update this dnl libintl. (Cf. the install rule in intl/Makefile.in.) if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" = "yes"; } \ || { { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; } \ && test "$PACKAGE" != gettext-runtime \ && test "$PACKAGE" != gettext-tools; }; then gt_use_preinstalled_gnugettext=yes else dnl Reset the values set by searching for libintl. LIBINTL= LTLIBINTL= INCINTL= fi ifelse(gt_included_intl, yes, [ if test "$gt_use_preinstalled_gnugettext" != "yes"; then dnl GNU gettext is not found in the C library. dnl Fall back on included GNU gettext library. nls_cv_use_gnu_gettext=yes fi fi if test "$nls_cv_use_gnu_gettext" = "yes"; then dnl Mark actions used to generate GNU NLS library. BUILD_INCLUDED_LIBINTL=yes USE_INCLUDED_LIBINTL=yes LIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LIBICONV $LIBTHREAD" LTLIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LTLIBICONV $LTLIBTHREAD" LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'` fi CATOBJEXT= if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then dnl Mark actions to use GNU gettext tools. CATOBJEXT=.gmo fi ]) if test -n "$INTL_MACOSX_LIBS"; then if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then dnl Some extra flags are needed during linking. LIBINTL="$LIBINTL $INTL_MACOSX_LIBS" LTLIBINTL="$LTLIBINTL $INTL_MACOSX_LIBS" fi fi if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then AC_DEFINE(ENABLE_NLS, 1, [Define to 1 if translation of program messages to the user's native language is requested.]) else USE_NLS=no fi fi AC_MSG_CHECKING([whether to use NLS]) AC_MSG_RESULT([$USE_NLS]) if test "$USE_NLS" = "yes"; then AC_MSG_CHECKING([where the gettext function comes from]) if test "$gt_use_preinstalled_gnugettext" = "yes"; then if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then gt_source="external libintl" else gt_source="libc" fi else gt_source="included intl directory" fi AC_MSG_RESULT([$gt_source]) fi if test "$USE_NLS" = "yes"; then if test "$gt_use_preinstalled_gnugettext" = "yes"; then if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then AC_MSG_CHECKING([how to link with libintl]) AC_MSG_RESULT([$LIBINTL]) AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCINTL]) fi dnl For backward compatibility. Some packages may be using this. AC_DEFINE(HAVE_GETTEXT, 1, [Define if the GNU gettext() function is already present or preinstalled.]) AC_DEFINE(HAVE_DCGETTEXT, 1, [Define if the GNU dcgettext() function is already present or preinstalled.]) fi dnl We need to process the po/ directory. POSUB=po fi ifelse(gt_included_intl, yes, [ dnl If this is used in GNU gettext we have to set BUILD_INCLUDED_LIBINTL dnl to 'yes' because some of the testsuite requires it. if test "$PACKAGE" = gettext-runtime || test "$PACKAGE" = gettext-tools; then BUILD_INCLUDED_LIBINTL=yes fi dnl Make all variables we use known to autoconf. AC_SUBST(BUILD_INCLUDED_LIBINTL) AC_SUBST(USE_INCLUDED_LIBINTL) AC_SUBST(CATOBJEXT) dnl For backward compatibility. Some configure.ins may be using this. nls_cv_header_intl= nls_cv_header_libgt= dnl For backward compatibility. Some Makefiles may be using this. DATADIRNAME=share AC_SUBST(DATADIRNAME) dnl For backward compatibility. Some Makefiles may be using this. INSTOBJEXT=.mo AC_SUBST(INSTOBJEXT) dnl For backward compatibility. Some Makefiles may be using this. GENCAT=gencat AC_SUBST(GENCAT) dnl For backward compatibility. Some Makefiles may be using this. INTLOBJS= if test "$USE_INCLUDED_LIBINTL" = yes; then INTLOBJS="\$(GETTOBJS)" fi AC_SUBST(INTLOBJS) dnl Enable libtool support if the surrounding package wishes it. INTL_LIBTOOL_SUFFIX_PREFIX=gt_libtool_suffix_prefix AC_SUBST(INTL_LIBTOOL_SUFFIX_PREFIX) ]) dnl For backward compatibility. Some Makefiles may be using this. INTLLIBS="$LIBINTL" AC_SUBST(INTLLIBS) dnl Make all documented variables known to autoconf. AC_SUBST(LIBINTL) AC_SUBST(LTLIBINTL) AC_SUBST(POSUB) ]) dnl gt_NEEDS_INIT ensures that the gt_needs variable is initialized. m4_define([gt_NEEDS_INIT], [ m4_divert_text([DEFAULTS], [gt_needs=]) m4_define([gt_NEEDS_INIT], []) ]) dnl Usage: AM_GNU_GETTEXT_NEED([NEEDSYMBOL]) AC_DEFUN([AM_GNU_GETTEXT_NEED], [ m4_divert_text([INIT_PREPARE], [gt_needs="$gt_needs $1"]) ]) dnl Usage: AM_GNU_GETTEXT_VERSION([gettext-version]) AC_DEFUN([AM_GNU_GETTEXT_VERSION], []) # iconv.m4 serial AM6 (gettext-0.17) dnl Copyright (C) 2000-2002, 2007 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. dnl From Bruno Haible. AC_DEFUN([AM_ICONV_LINKFLAGS_BODY], [ dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV dnl accordingly. AC_LIB_LINKFLAGS_BODY([iconv]) ]) AC_DEFUN([AM_ICONV_LINK], [ dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and dnl those with the standalone portable GNU libiconv installed). AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV dnl accordingly. AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) dnl Add $INCICONV to CPPFLAGS before performing the following checks, dnl because if the user has installed libiconv and not disabled its use dnl via --without-libiconv-prefix, he wants to use it. The first dnl AC_TRY_LINK will then fail, the second AC_TRY_LINK will succeed. am_save_CPPFLAGS="$CPPFLAGS" AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCICONV]) AC_CACHE_CHECK([for iconv], am_cv_func_iconv, [ am_cv_func_iconv="no, consider installing GNU libiconv" am_cv_lib_iconv=no AC_TRY_LINK([#include #include ], [iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd);], am_cv_func_iconv=yes) if test "$am_cv_func_iconv" != yes; then am_save_LIBS="$LIBS" LIBS="$LIBS $LIBICONV" AC_TRY_LINK([#include #include ], [iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd);], am_cv_lib_iconv=yes am_cv_func_iconv=yes) LIBS="$am_save_LIBS" fi ]) if test "$am_cv_func_iconv" = yes; then AC_CACHE_CHECK([for working iconv], am_cv_func_iconv_works, [ dnl This tests against bugs in AIX 5.1 and HP-UX 11.11. am_save_LIBS="$LIBS" if test $am_cv_lib_iconv = yes; then LIBS="$LIBS $LIBICONV" fi AC_TRY_RUN([ #include #include int main () { /* Test against AIX 5.1 bug: Failures are not distinguishable from successful returns. */ { iconv_t cd_utf8_to_88591 = iconv_open ("ISO8859-1", "UTF-8"); if (cd_utf8_to_88591 != (iconv_t)(-1)) { static const char input[] = "\342\202\254"; /* EURO SIGN */ char buf[10]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_utf8_to_88591, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if (res == 0) return 1; } } #if 0 /* This bug could be worked around by the caller. */ /* Test against HP-UX 11.11 bug: Positive return value instead of 0. */ { iconv_t cd_88591_to_utf8 = iconv_open ("utf8", "iso88591"); if (cd_88591_to_utf8 != (iconv_t)(-1)) { static const char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337"; char buf[50]; const char *inptr = input; size_t inbytesleft = strlen (input); char *outptr = buf; size_t outbytesleft = sizeof (buf); size_t res = iconv (cd_88591_to_utf8, (char **) &inptr, &inbytesleft, &outptr, &outbytesleft); if ((int)res > 0) return 1; } } #endif /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is provided. */ if (/* Try standardized names. */ iconv_open ("UTF-8", "EUC-JP") == (iconv_t)(-1) /* Try IRIX, OSF/1 names. */ && iconv_open ("UTF-8", "eucJP") == (iconv_t)(-1) /* Try AIX names. */ && iconv_open ("UTF-8", "IBM-eucJP") == (iconv_t)(-1) /* Try HP-UX names. */ && iconv_open ("utf8", "eucJP") == (iconv_t)(-1)) return 1; return 0; }], [am_cv_func_iconv_works=yes], [am_cv_func_iconv_works=no], [case "$host_os" in aix* | hpux*) am_cv_func_iconv_works="guessing no" ;; *) am_cv_func_iconv_works="guessing yes" ;; esac]) LIBS="$am_save_LIBS" ]) case "$am_cv_func_iconv_works" in *no) am_func_iconv=no am_cv_lib_iconv=no ;; *) am_func_iconv=yes ;; esac else am_func_iconv=no am_cv_lib_iconv=no fi if test "$am_func_iconv" = yes; then AC_DEFINE(HAVE_ICONV, 1, [Define if you have the iconv() function and it works.]) fi if test "$am_cv_lib_iconv" = yes; then AC_MSG_CHECKING([how to link with libiconv]) AC_MSG_RESULT([$LIBICONV]) else dnl If $LIBICONV didn't lead to a usable library, we don't need $INCICONV dnl either. CPPFLAGS="$am_save_CPPFLAGS" LIBICONV= LTLIBICONV= fi AC_SUBST(LIBICONV) AC_SUBST(LTLIBICONV) ]) AC_DEFUN([AM_ICONV], [ AM_ICONV_LINK if test "$am_cv_func_iconv" = yes; then AC_MSG_CHECKING([for iconv declaration]) AC_CACHE_VAL(am_cv_proto_iconv, [ AC_TRY_COMPILE([ #include #include extern #ifdef __cplusplus "C" #endif #if defined(__STDC__) || defined(__cplusplus) size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); #else size_t iconv(); #endif ], [], am_cv_proto_iconv_arg1="", am_cv_proto_iconv_arg1="const") am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"]) am_cv_proto_iconv=`echo "[$]am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` AC_MSG_RESULT([$]{ac_t:- }[$]am_cv_proto_iconv) AC_DEFINE_UNQUOTED(ICONV_CONST, $am_cv_proto_iconv_arg1, [Define as const if the declaration of iconv() needs const.]) fi ]) # intlmacosx.m4 serial 1 (gettext-0.17) dnl Copyright (C) 2004-2007 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. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Checks for special options needed on MacOS X. dnl Defines INTL_MACOSX_LIBS. AC_DEFUN([gt_INTL_MACOSX], [ dnl Check for API introduced in MacOS X 10.2. AC_CACHE_CHECK([for CFPreferencesCopyAppValue], gt_cv_func_CFPreferencesCopyAppValue, [gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" AC_TRY_LINK([#include ], [CFPreferencesCopyAppValue(NULL, NULL)], [gt_cv_func_CFPreferencesCopyAppValue=yes], [gt_cv_func_CFPreferencesCopyAppValue=no]) LIBS="$gt_save_LIBS"]) if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then AC_DEFINE([HAVE_CFPREFERENCESCOPYAPPVALUE], 1, [Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in the CoreFoundation framework.]) fi dnl Check for API introduced in MacOS X 10.3. AC_CACHE_CHECK([for CFLocaleCopyCurrent], gt_cv_func_CFLocaleCopyCurrent, [gt_save_LIBS="$LIBS" LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" AC_TRY_LINK([#include ], [CFLocaleCopyCurrent();], [gt_cv_func_CFLocaleCopyCurrent=yes], [gt_cv_func_CFLocaleCopyCurrent=no]) LIBS="$gt_save_LIBS"]) if test $gt_cv_func_CFLocaleCopyCurrent = yes; then AC_DEFINE([HAVE_CFLOCALECOPYCURRENT], 1, [Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the CoreFoundation framework.]) fi INTL_MACOSX_LIBS= if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation" fi AC_SUBST([INTL_MACOSX_LIBS]) ]) # lib-ld.m4 serial 3 (gettext-0.13) dnl Copyright (C) 1996-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. dnl Subroutines of libtool.m4, dnl with replacements s/AC_/AC_LIB/ and s/lt_cv/acl_cv/ to avoid collision dnl with libtool.m4. dnl From libtool-1.4. Sets the variable with_gnu_ld to yes or no. AC_DEFUN([AC_LIB_PROG_LD_GNU], [AC_CACHE_CHECK([if the linker ($LD) is GNU ld], acl_cv_prog_gnu_ld, [# I'd rather use --version here, but apparently some GNU ld's only accept -v. case `$LD -v 2>&1 conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by GCC]) case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]* | [A-Za-z]:[\\/]*)] [re_direlt='/[^/][^/]*/\.\./'] # Canonicalize the path of ld ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'` while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(acl_cv_path_LD, [if test -z "$LD"; then IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" for ac_dir in $PATH; do test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then acl_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some GNU ld's only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$acl_cv_path_LD" -v 2>&1 < /dev/null` in *GNU* | *'with BFD'*) test "$with_gnu_ld" != no && break ;; *) test "$with_gnu_ld" != yes && break ;; esac fi done IFS="$ac_save_ifs" else acl_cv_path_LD="$LD" # Let the user override the test with a path. fi]) LD="$acl_cv_path_LD" if test -n "$LD"; then AC_MSG_RESULT($LD) else AC_MSG_RESULT(no) fi test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH]) AC_LIB_PROG_LD_GNU ]) # lib-link.m4 serial 13 (gettext-0.17) dnl Copyright (C) 2001-2007 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. dnl From Bruno Haible. AC_PREREQ(2.54) dnl AC_LIB_LINKFLAGS(name [, dependencies]) searches for libname and dnl the libraries corresponding to explicit and implicit dependencies. dnl Sets and AC_SUBSTs the LIB${NAME} and LTLIB${NAME} variables and dnl augments the CPPFLAGS variable. dnl Sets and AC_SUBSTs the LIB${NAME}_PREFIX variable to nonempty if libname dnl was found in ${LIB${NAME}_PREFIX}/$acl_libdirstem. AC_DEFUN([AC_LIB_LINKFLAGS], [ AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) define([Name],[translit([$1],[./-], [___])]) define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) AC_CACHE_CHECK([how to link with lib[]$1], [ac_cv_lib[]Name[]_libs], [ AC_LIB_LINKFLAGS_BODY([$1], [$2]) ac_cv_lib[]Name[]_libs="$LIB[]NAME" ac_cv_lib[]Name[]_ltlibs="$LTLIB[]NAME" ac_cv_lib[]Name[]_cppflags="$INC[]NAME" ac_cv_lib[]Name[]_prefix="$LIB[]NAME[]_PREFIX" ]) LIB[]NAME="$ac_cv_lib[]Name[]_libs" LTLIB[]NAME="$ac_cv_lib[]Name[]_ltlibs" INC[]NAME="$ac_cv_lib[]Name[]_cppflags" LIB[]NAME[]_PREFIX="$ac_cv_lib[]Name[]_prefix" AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) AC_SUBST([LIB]NAME) AC_SUBST([LTLIB]NAME) AC_SUBST([LIB]NAME[_PREFIX]) dnl Also set HAVE_LIB[]NAME so that AC_LIB_HAVE_LINKFLAGS can reuse the dnl results of this search when this library appears as a dependency. HAVE_LIB[]NAME=yes undefine([Name]) undefine([NAME]) ]) dnl AC_LIB_HAVE_LINKFLAGS(name, dependencies, includes, testcode) dnl searches for libname and the libraries corresponding to explicit and dnl implicit dependencies, together with the specified include files and dnl the ability to compile and link the specified testcode. If found, it dnl sets and AC_SUBSTs HAVE_LIB${NAME}=yes and the LIB${NAME} and dnl LTLIB${NAME} variables and augments the CPPFLAGS variable, and dnl #defines HAVE_LIB${NAME} to 1. Otherwise, it sets and AC_SUBSTs dnl HAVE_LIB${NAME}=no and LIB${NAME} and LTLIB${NAME} to empty. dnl Sets and AC_SUBSTs the LIB${NAME}_PREFIX variable to nonempty if libname dnl was found in ${LIB${NAME}_PREFIX}/$acl_libdirstem. AC_DEFUN([AC_LIB_HAVE_LINKFLAGS], [ AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) define([Name],[translit([$1],[./-], [___])]) define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) dnl Search for lib[]Name and define LIB[]NAME, LTLIB[]NAME and INC[]NAME dnl accordingly. AC_LIB_LINKFLAGS_BODY([$1], [$2]) dnl Add $INC[]NAME to CPPFLAGS before performing the following checks, dnl because if the user has installed lib[]Name and not disabled its use dnl via --without-lib[]Name-prefix, he wants to use it. ac_save_CPPFLAGS="$CPPFLAGS" AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) AC_CACHE_CHECK([for lib[]$1], [ac_cv_lib[]Name], [ ac_save_LIBS="$LIBS" LIBS="$LIBS $LIB[]NAME" AC_TRY_LINK([$3], [$4], [ac_cv_lib[]Name=yes], [ac_cv_lib[]Name=no]) LIBS="$ac_save_LIBS" ]) if test "$ac_cv_lib[]Name" = yes; then HAVE_LIB[]NAME=yes AC_DEFINE([HAVE_LIB]NAME, 1, [Define if you have the $1 library.]) AC_MSG_CHECKING([how to link with lib[]$1]) AC_MSG_RESULT([$LIB[]NAME]) else HAVE_LIB[]NAME=no dnl If $LIB[]NAME didn't lead to a usable library, we don't need dnl $INC[]NAME either. CPPFLAGS="$ac_save_CPPFLAGS" LIB[]NAME= LTLIB[]NAME= LIB[]NAME[]_PREFIX= fi AC_SUBST([HAVE_LIB]NAME) AC_SUBST([LIB]NAME) AC_SUBST([LTLIB]NAME) AC_SUBST([LIB]NAME[_PREFIX]) undefine([Name]) undefine([NAME]) ]) dnl Determine the platform dependent parameters needed to use rpath: dnl acl_libext, dnl acl_shlibext, dnl acl_hardcode_libdir_flag_spec, dnl acl_hardcode_libdir_separator, dnl acl_hardcode_direct, dnl acl_hardcode_minus_L. AC_DEFUN([AC_LIB_RPATH], [ dnl Tell automake >= 1.10 to complain if config.rpath is missing. m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([config.rpath])]) AC_REQUIRE([AC_PROG_CC]) dnl we use $CC, $GCC, $LDFLAGS AC_REQUIRE([AC_LIB_PROG_LD]) dnl we use $LD, $with_gnu_ld AC_REQUIRE([AC_CANONICAL_HOST]) dnl we use $host AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT]) dnl we use $ac_aux_dir AC_CACHE_CHECK([for shared library run path origin], acl_cv_rpath, [ CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh . ./conftest.sh rm -f ./conftest.sh acl_cv_rpath=done ]) wl="$acl_cv_wl" acl_libext="$acl_cv_libext" acl_shlibext="$acl_cv_shlibext" acl_libname_spec="$acl_cv_libname_spec" acl_library_names_spec="$acl_cv_library_names_spec" acl_hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" acl_hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" acl_hardcode_direct="$acl_cv_hardcode_direct" acl_hardcode_minus_L="$acl_cv_hardcode_minus_L" dnl Determine whether the user wants rpath handling at all. AC_ARG_ENABLE(rpath, [ --disable-rpath do not hardcode runtime library paths], :, enable_rpath=yes) ]) dnl AC_LIB_LINKFLAGS_BODY(name [, dependencies]) searches for libname and dnl the libraries corresponding to explicit and implicit dependencies. dnl Sets the LIB${NAME}, LTLIB${NAME} and INC${NAME} variables. dnl Also, sets the LIB${NAME}_PREFIX variable to nonempty if libname was found dnl in ${LIB${NAME}_PREFIX}/$acl_libdirstem. AC_DEFUN([AC_LIB_LINKFLAGS_BODY], [ AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) dnl Autoconf >= 2.61 supports dots in --with options. define([N_A_M_E],[m4_if(m4_version_compare(m4_defn([m4_PACKAGE_VERSION]),[2.61]),[-1],[translit([$1],[.],[_])],[$1])]) dnl By default, look in $includedir and $libdir. use_additional=yes AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) AC_LIB_ARG_WITH([lib]N_A_M_E[-prefix], [ --with-lib]N_A_M_E[-prefix[=DIR] search for lib$1 in DIR/include and DIR/lib --without-lib]N_A_M_E[-prefix don't search for lib$1 in includedir and libdir], [ if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) else additional_includedir="$withval/include" additional_libdir="$withval/$acl_libdirstem" fi fi ]) dnl Search the library and its dependencies in $additional_libdir and dnl $LDFLAGS. Using breadth-first-seach. LIB[]NAME= LTLIB[]NAME= INC[]NAME= LIB[]NAME[]_PREFIX= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='$1 $2' while test -n "$names_next_round"; do names_this_round="$names_next_round" names_next_round= for name in $names_this_round; do already_handled= for n in $names_already_handled; do if test "$n" = "$name"; then already_handled=yes break fi done if test -z "$already_handled"; then names_already_handled="$names_already_handled $name" dnl See if it was already located by an earlier AC_LIB_LINKFLAGS dnl or AC_LIB_HAVE_LINKFLAGS call. uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'` eval value=\"\$HAVE_LIB$uppername\" if test -n "$value"; then if test "$value" = yes; then eval value=\"\$LIB$uppername\" test -z "$value" || LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$value" else dnl An earlier call to AC_LIB_HAVE_LINKFLAGS has determined dnl that this library doesn't exist. So just drop it. : fi else dnl Search the library lib$name in $additional_libdir and $LDFLAGS dnl and the already constructed $LIBNAME/$LTLIBNAME. found_dir= found_la= found_so= found_a= eval libname=\"$acl_libname_spec\" # typically: libname=lib$name if test -n "$acl_shlibext"; then shrext=".$acl_shlibext" # typically: shrext=.so else shrext= fi if test $use_additional = yes; then dir="$additional_libdir" dnl The same code as in the loop below: dnl First look for a shared library. if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi dnl Then look for a static library. if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi fi if test "X$found_dir" = "X"; then for x in $LDFLAGS $LTLIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) case "$x" in -L*) dir=`echo "X$x" | sed -e 's/^X-L//'` dnl First look for a shared library. if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi dnl Then look for a static library. if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi ;; esac if test "X$found_dir" != "X"; then break fi done fi if test "X$found_dir" != "X"; then dnl Found the library. LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then dnl Linking with a shared library. We attempt to hardcode its dnl directory into the executable's runpath, unless it's the dnl standard /usr/lib. if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/$acl_libdirstem"; then dnl No hardcoding is needed. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" else dnl Use an explicit option to hardcode DIR into the resulting dnl binary. dnl Potentially add DIR to ltrpathdirs. dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. haveit= for x in $ltrpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $found_dir" fi dnl The hardcoding into $LIBNAME is system dependent. if test "$acl_hardcode_direct" = yes; then dnl Using DIR/libNAME.so during linking hardcodes DIR into the dnl resulting binary. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" else if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then dnl Use an explicit option to hardcode DIR into the resulting dnl binary. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" dnl Potentially add DIR to rpathdirs. dnl The rpathdirs will be appended to $LIBNAME at the end. haveit= for x in $rpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $found_dir" fi else dnl Rely on "-L$found_dir". dnl But don't add it if it's already contained in the LDFLAGS dnl or the already constructed $LIBNAME haveit= for x in $LDFLAGS $LIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir" fi if test "$acl_hardcode_minus_L" != no; then dnl FIXME: Not sure whether we should use dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" dnl here. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" else dnl We cannot use $acl_hardcode_runpath_var and LD_RUN_PATH dnl here, because this doesn't fit in flags passed to the dnl compiler. So give up. No hardcoding. This affects only dnl very old systems. dnl FIXME: Not sure whether we should use dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" dnl here. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then dnl Linking with a static library. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_a" else dnl We shouldn't come here, but anyway it's good to have a dnl fallback. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir -l$name" fi fi dnl Assume the include files are nearby. additional_includedir= case "$found_dir" in */$acl_libdirstem | */$acl_libdirstem/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` LIB[]NAME[]_PREFIX="$basedir" additional_includedir="$basedir/include" ;; esac if test "X$additional_includedir" != "X"; then dnl Potentially add $additional_includedir to $INCNAME. dnl But don't add it dnl 1. if it's the standard /usr/include, dnl 2. if it's /usr/local/include and we are using GCC on Linux, dnl 3. if it's already present in $CPPFLAGS or the already dnl constructed $INCNAME, dnl 4. if it doesn't exist as a directory. if test "X$additional_includedir" != "X/usr/include"; then haveit= if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INC[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_includedir"; then dnl Really add $additional_includedir to $INCNAME. INC[]NAME="${INC[]NAME}${INC[]NAME:+ }-I$additional_includedir" fi fi fi fi fi dnl Look for dependencies. if test -n "$found_la"; then dnl Read the .la file. It defines the variables dnl dlname, library_names, old_library, dependency_libs, current, dnl age, revision, installed, dlopen, dlpreopen, libdir. save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" dnl We use only dependency_libs. for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` dnl Potentially add $additional_libdir to $LIBNAME and $LTLIBNAME. dnl But don't add it dnl 1. if it's the standard /usr/lib, dnl 2. if it's /usr/local/lib and we are using GCC on Linux, dnl 3. if it's already present in $LDFLAGS or the already dnl constructed $LIBNAME, dnl 4. if it doesn't exist as a directory. if test "X$additional_libdir" != "X/usr/$acl_libdirstem"; then haveit= if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then dnl Really add $additional_libdir to $LIBNAME. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then dnl Really add $additional_libdir to $LTLIBNAME. LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then dnl Potentially add DIR to rpathdirs. dnl The rpathdirs will be appended to $LIBNAME at the end. haveit= for x in $rpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $dir" fi dnl Potentially add DIR to ltrpathdirs. dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. haveit= for x in $ltrpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $dir" fi fi ;; -l*) dnl Handle this in the next round. names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) dnl Handle this in the next round. Throw away the .la's dnl directory; it is already contained in a preceding -L dnl option. names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) dnl Most likely an immediate library name. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$dep" LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$dep" ;; esac done fi else dnl Didn't find the library; assume it is in the system directories dnl known to the linker and runtime loader. (All the system dnl directories known to the linker should also be known to the dnl runtime loader, otherwise the system is severely misconfigured.) LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$acl_hardcode_libdir_separator"; then dnl Weird platform: only the last -rpath option counts, the user must dnl pass all path elements in one option. We can arrange that for a dnl single library, but not when more than one $LIBNAMEs are used. alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" done dnl Note: acl_hardcode_libdir_flag_spec uses $libdir and $wl. acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" else dnl The -rpath options are cumulative. for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then dnl When using libtool, the option that works for both libraries and dnl executables is -R. The -R options are cumulative. for found_dir in $ltrpathdirs; do LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-R$found_dir" done fi ]) dnl AC_LIB_APPENDTOVAR(VAR, CONTENTS) appends the elements of CONTENTS to VAR, dnl unless already present in VAR. dnl Works only for CPPFLAGS, not for LIB* variables because that sometimes dnl contains two or three consecutive elements that belong together. AC_DEFUN([AC_LIB_APPENDTOVAR], [ for element in [$2]; do haveit= for x in $[$1]; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then [$1]="${[$1]}${[$1]:+ }$element" fi done ]) dnl For those cases where a variable contains several -L and -l options dnl referring to unknown libraries and directories, this macro determines the dnl necessary additional linker options for the runtime path. dnl AC_LIB_LINKFLAGS_FROM_LIBS([LDADDVAR], [LIBSVALUE], [USE-LIBTOOL]) dnl sets LDADDVAR to linker options needed together with LIBSVALUE. dnl If USE-LIBTOOL evaluates to non-empty, linking with libtool is assumed, dnl otherwise linking without libtool is assumed. AC_DEFUN([AC_LIB_LINKFLAGS_FROM_LIBS], [ AC_REQUIRE([AC_LIB_RPATH]) AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) $1= if test "$enable_rpath" != no; then if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then dnl Use an explicit option to hardcode directories into the resulting dnl binary. rpathdirs= next= for opt in $2; do if test -n "$next"; then dir="$next" dnl No need to hardcode the standard /usr/lib. if test "X$dir" != "X/usr/$acl_libdirstem"; then rpathdirs="$rpathdirs $dir" fi next= else case $opt in -L) next=yes ;; -L*) dir=`echo "X$opt" | sed -e 's,^X-L,,'` dnl No need to hardcode the standard /usr/lib. if test "X$dir" != "X/usr/$acl_libdirstem"; then rpathdirs="$rpathdirs $dir" fi next= ;; *) next= ;; esac fi done if test "X$rpathdirs" != "X"; then if test -n ""$3""; then dnl libtool is used for linking. Use -R options. for dir in $rpathdirs; do $1="${$1}${$1:+ }-R$dir" done else dnl The linker is used for linking directly. if test -n "$acl_hardcode_libdir_separator"; then dnl Weird platform: only the last -rpath option counts, the user dnl must pass all path elements in one option. alldirs= for dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$dir" done acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" $1="$flag" else dnl The -rpath options are cumulative. for dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$dir" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" $1="${$1}${$1:+ }$flag" done fi fi fi fi fi AC_SUBST([$1]) ]) # lib-prefix.m4 serial 5 (gettext-0.15) dnl Copyright (C) 2001-2005 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. dnl From Bruno Haible. dnl AC_LIB_ARG_WITH is synonymous to AC_ARG_WITH in autoconf-2.13, and dnl similar to AC_ARG_WITH in autoconf 2.52...2.57 except that is doesn't dnl require excessive bracketing. ifdef([AC_HELP_STRING], [AC_DEFUN([AC_LIB_ARG_WITH], [AC_ARG_WITH([$1],[[$2]],[$3],[$4])])], [AC_DEFUN([AC_][LIB_ARG_WITH], [AC_ARG_WITH([$1],[$2],[$3],[$4])])]) dnl AC_LIB_PREFIX adds to the CPPFLAGS and LDFLAGS the flags that are needed dnl to access previously installed libraries. The basic assumption is that dnl a user will want packages to use other packages he previously installed dnl with the same --prefix option. dnl This macro is not needed if only AC_LIB_LINKFLAGS is used to locate dnl libraries, but is otherwise very convenient. AC_DEFUN([AC_LIB_PREFIX], [ AC_BEFORE([$0], [AC_LIB_LINKFLAGS]) AC_REQUIRE([AC_PROG_CC]) AC_REQUIRE([AC_CANONICAL_HOST]) AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) dnl By default, look in $includedir and $libdir. use_additional=yes AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) AC_LIB_ARG_WITH([lib-prefix], [ --with-lib-prefix[=DIR] search for libraries in DIR/include and DIR/lib --without-lib-prefix don't search for libraries in includedir and libdir], [ if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) else additional_includedir="$withval/include" additional_libdir="$withval/$acl_libdirstem" fi fi ]) if test $use_additional = yes; then dnl Potentially add $additional_includedir to $CPPFLAGS. dnl But don't add it dnl 1. if it's the standard /usr/include, dnl 2. if it's already present in $CPPFLAGS, dnl 3. if it's /usr/local/include and we are using GCC on Linux, dnl 4. if it doesn't exist as a directory. if test "X$additional_includedir" != "X/usr/include"; then haveit= for x in $CPPFLAGS; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then if test -d "$additional_includedir"; then dnl Really add $additional_includedir to $CPPFLAGS. CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }-I$additional_includedir" fi fi fi fi dnl Potentially add $additional_libdir to $LDFLAGS. dnl But don't add it dnl 1. if it's the standard /usr/lib, dnl 2. if it's already present in $LDFLAGS, dnl 3. if it's /usr/local/lib and we are using GCC on Linux, dnl 4. if it doesn't exist as a directory. if test "X$additional_libdir" != "X/usr/$acl_libdirstem"; then haveit= for x in $LDFLAGS; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem"; then if test -n "$GCC"; then case $host_os in linux*) haveit=yes;; esac fi fi if test -z "$haveit"; then if test -d "$additional_libdir"; then dnl Really add $additional_libdir to $LDFLAGS. LDFLAGS="${LDFLAGS}${LDFLAGS:+ }-L$additional_libdir" fi fi fi fi fi ]) dnl AC_LIB_PREPARE_PREFIX creates variables acl_final_prefix, dnl acl_final_exec_prefix, containing the values to which $prefix and dnl $exec_prefix will expand at the end of the configure script. AC_DEFUN([AC_LIB_PREPARE_PREFIX], [ dnl Unfortunately, prefix and exec_prefix get only finally determined dnl at the end of configure. if test "X$prefix" = "XNONE"; then acl_final_prefix="$ac_default_prefix" else acl_final_prefix="$prefix" fi if test "X$exec_prefix" = "XNONE"; then acl_final_exec_prefix='${prefix}' else acl_final_exec_prefix="$exec_prefix" fi acl_save_prefix="$prefix" prefix="$acl_final_prefix" eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" prefix="$acl_save_prefix" ]) dnl AC_LIB_WITH_FINAL_PREFIX([statement]) evaluates statement, with the dnl variables prefix and exec_prefix bound to the values they will have dnl at the end of the configure script. AC_DEFUN([AC_LIB_WITH_FINAL_PREFIX], [ acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" $1 exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" ]) dnl AC_LIB_PREPARE_MULTILIB creates a variable acl_libdirstem, containing dnl the basename of the libdir, either "lib" or "lib64". AC_DEFUN([AC_LIB_PREPARE_MULTILIB], [ dnl There is no formal standard regarding lib and lib64. The current dnl practice is that on a system supporting 32-bit and 64-bit instruction dnl sets or ABIs, 64-bit libraries go under $prefix/lib64 and 32-bit dnl libraries go under $prefix/lib. We determine the compiler's default dnl mode by looking at the compiler's library search path. If at least dnl of its elements ends in /lib64 or points to a directory whose absolute dnl pathname ends in /lib64, we assume a 64-bit ABI. Otherwise we use the dnl default, namely "lib". acl_libdirstem=lib searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'` if test -n "$searchpath"; then acl_save_IFS="${IFS= }"; IFS=":" for searchdir in $searchpath; do if test -d "$searchdir"; then case "$searchdir" in */lib64/ | */lib64 ) acl_libdirstem=lib64 ;; *) searchdir=`cd "$searchdir" && pwd` case "$searchdir" in */lib64 ) acl_libdirstem=lib64 ;; esac ;; esac fi done IFS="$acl_save_IFS" fi ]) # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # serial 52 Debian 1.5.26-1ubuntu1 AC_PROG_LIBTOOL # AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED) # ----------------------------------------------------------- # If this macro is not defined by Autoconf, define it here. m4_ifdef([AC_PROVIDE_IFELSE], [], [m4_define([AC_PROVIDE_IFELSE], [m4_ifdef([AC_PROVIDE_$1], [$2], [$3])])]) # AC_PROG_LIBTOOL # --------------- AC_DEFUN([AC_PROG_LIBTOOL], [AC_REQUIRE([_AC_PROG_LIBTOOL])dnl dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX. AC_PROVIDE_IFELSE([AC_PROG_CXX], [AC_LIBTOOL_CXX], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX ])]) dnl And a similar setup for Fortran 77 support AC_PROVIDE_IFELSE([AC_PROG_F77], [AC_LIBTOOL_F77], [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77 ])]) dnl Quote A][M_PROG_GCJ so that aclocal doesn't bring it in needlessly. dnl If either AC_PROG_GCJ or A][M_PROG_GCJ have already been expanded, run dnl AC_LIBTOOL_GCJ immediately, otherwise, hook it in at the end of both. AC_PROVIDE_IFELSE([AC_PROG_GCJ], [AC_LIBTOOL_GCJ], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], [AC_LIBTOOL_GCJ], [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ], [AC_LIBTOOL_GCJ], [ifdef([AC_PROG_GCJ], [define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[AC_LIBTOOL_GCJ])]) ifdef([A][M_PROG_GCJ], [define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[AC_LIBTOOL_GCJ])]) ifdef([LT_AC_PROG_GCJ], [define([LT_AC_PROG_GCJ], defn([LT_AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])])]) ])])# AC_PROG_LIBTOOL # _AC_PROG_LIBTOOL # ---------------- AC_DEFUN([_AC_PROG_LIBTOOL], [AC_REQUIRE([AC_LIBTOOL_SETUP])dnl AC_BEFORE([$0],[AC_LIBTOOL_CXX])dnl AC_BEFORE([$0],[AC_LIBTOOL_F77])dnl AC_BEFORE([$0],[AC_LIBTOOL_GCJ])dnl # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' AC_SUBST(LIBTOOL)dnl # Prevent multiple expansion define([AC_PROG_LIBTOOL], []) ])# _AC_PROG_LIBTOOL # AC_LIBTOOL_SETUP # ---------------- AC_DEFUN([AC_LIBTOOL_SETUP], [AC_PREREQ(2.50)dnl AC_REQUIRE([AC_ENABLE_SHARED])dnl AC_REQUIRE([AC_ENABLE_STATIC])dnl AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_PROG_LD])dnl AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl AC_REQUIRE([AC_PROG_NM])dnl AC_REQUIRE([AC_PROG_LN_S])dnl AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl # Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! AC_REQUIRE([AC_OBJEXT])dnl AC_REQUIRE([AC_EXEEXT])dnl dnl AC_LIBTOOL_SYS_MAX_CMD_LEN AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE AC_LIBTOOL_OBJDIR AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl _LT_AC_PROG_ECHO_BACKSLASH case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='sed -e 1s/^X//' [sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g'] # Same as above, but do not quote variable references. [double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g'] # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' # Constants: rm="rm -f" # Global variables: default_ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a ltmain="$ac_aux_dir/ltmain.sh" ofile="$default_ofile" with_gnu_ld="$lt_cv_prog_gnu_ld" AC_CHECK_TOOL(AR, ar, false) AC_CHECK_TOOL(RANLIB, ranlib, :) AC_CHECK_TOOL(STRIP, strip, :) old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$AR" && AR=ar test -z "$AR_FLAGS" && AR_FLAGS=cru test -z "$AS" && AS=as test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$DLLTOOL" && DLLTOOL=dlltool test -z "$LD" && LD=ld test -z "$LN_S" && LN_S="ln -s" test -z "$MAGIC_CMD" && MAGIC_CMD=file test -z "$NM" && NM=nm test -z "$SED" && SED=sed test -z "$OBJDUMP" && OBJDUMP=objdump test -z "$RANLIB" && RANLIB=: test -z "$STRIP" && STRIP=: test -z "$ac_objext" && ac_objext=o # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" fi _LT_CC_BASENAME([$compiler]) # Only perform the check for file, if the check method requires it case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then AC_PATH_MAGIC fi ;; esac _LT_REQUIRED_DARWIN_CHECKS AC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no) AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], enable_win32_dll=yes, enable_win32_dll=no) AC_ARG_ENABLE([libtool-lock], [AC_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes AC_ARG_WITH([pic], [AC_HELP_STRING([--with-pic], [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], [pic_mode="$withval"], [pic_mode=default]) test -z "$pic_mode" && pic_mode=default # Use C for the default configuration in the libtool script tagname= AC_LIBTOOL_LANG_C_CONFIG _LT_AC_TAGCONFIG ])# AC_LIBTOOL_SETUP # _LT_AC_SYS_COMPILER # ------------------- AC_DEFUN([_LT_AC_SYS_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC ])# _LT_AC_SYS_COMPILER # _LT_CC_BASENAME(CC) # ------------------- # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. AC_DEFUN([_LT_CC_BASENAME], [for cc_temp in $1""; do case $cc_temp in compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` ]) # _LT_COMPILER_BOILERPLATE # ------------------------ # Check for compiler boilerplate output or warnings with # the simple compiler test code. AC_DEFUN([_LT_COMPILER_BOILERPLATE], [AC_REQUIRE([LT_AC_PROG_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $rm conftest* ])# _LT_COMPILER_BOILERPLATE # _LT_LINKER_BOILERPLATE # ---------------------- # Check for linker boilerplate output or warnings with # the simple link test code. AC_DEFUN([_LT_LINKER_BOILERPLATE], [AC_REQUIRE([LT_AC_PROG_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $rm -r conftest* ])# _LT_LINKER_BOILERPLATE # _LT_REQUIRED_DARWIN_CHECKS # -------------------------- # Check for some things on darwin AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS],[ case $host_os in rhapsody* | darwin*) AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], [lt_cv_apple_cc_single_mod=no if test -z "${LT_MULTI_MODULE}"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. echo "int foo(void){return 1;}" > conftest.c $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib ${wl}-single_module conftest.c if test -f libconftest.dylib; then lt_cv_apple_cc_single_mod=yes rm -rf libconftest.dylib* fi rm conftest.c fi]) AC_CACHE_CHECK([for -exported_symbols_list linker flag], [lt_cv_ld_exported_symbols_list], [lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [lt_cv_ld_exported_symbols_list=yes], [lt_cv_ld_exported_symbols_list=no]) LDFLAGS="$save_LDFLAGS" ]) case $host_os in rhapsody* | darwin1.[[0123]]) _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; darwin*) # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; 10.[[012]]*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test "$lt_cv_apple_cc_single_mod" = "yes"; then _lt_dar_single_mod='$single_module' fi if test "$lt_cv_ld_exported_symbols_list" = "yes"; then _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' else _lt_dar_export_syms="~$NMEDIT -s \$output_objdir/\${libname}-symbols.expsym \${lib}" fi if test "$DSYMUTIL" != ":"; then _lt_dsymutil="~$DSYMUTIL \$lib || :" else _lt_dsymutil= fi ;; esac ]) # _LT_AC_SYS_LIBPATH_AIX # ---------------------- # Links a minimal program and checks the executable # for the system default hardcoded library path. In most cases, # this is /usr/lib:/lib, but when the MPI compilers are used # the location of the communication and MPI libs are included too. # If we don't find anything, use the default library path according # to the aix ld manual. AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX], [AC_REQUIRE([LT_AC_PROG_SED])dnl AC_LINK_IFELSE(AC_LANG_PROGRAM,[ lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/ p } }' aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi],[]) if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi ])# _LT_AC_SYS_LIBPATH_AIX # _LT_AC_SHELL_INIT(ARG) # ---------------------- AC_DEFUN([_LT_AC_SHELL_INIT], [ifdef([AC_DIVERSION_NOTICE], [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)], [AC_DIVERT_PUSH(NOTICE)]) $1 AC_DIVERT_POP ])# _LT_AC_SHELL_INIT # _LT_AC_PROG_ECHO_BACKSLASH # -------------------------- # Add some code to the start of the generated configure script which # will find an echo command which doesn't interpret backslashes. AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH], [_LT_AC_SHELL_INIT([ # Check that we are running under the correct shell. SHELL=${CONFIG_SHELL-/bin/sh} case X$ECHO in X*--fallback-echo) # Remove one level of quotation (which was required for Make). ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','` ;; esac echo=${ECHO-echo} if test "X[$]1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X[$]1" = X--fallback-echo; then # Avoid inline document here, it may be left over : elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then # Yippee, $echo works! : else # Restart under the correct shell. exec $SHELL "[$]0" --no-reexec ${1+"[$]@"} fi if test "X[$]1" = X--fallback-echo; then # used as fallback echo shift cat </dev/null 2>&1 && unset CDPATH if test -z "$ECHO"; then if test "X${echo_test_string+set}" != Xset; then # find a string as large as possible, as long as the shell can cope with it for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... if (echo_test_string=`eval $cmd`) 2>/dev/null && echo_test_string=`eval $cmd` && (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null then break fi done fi if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then : else # The Solaris, AIX, and Digital Unix default echo programs unquote # backslashes. This makes it impossible to quote backslashes using # echo "$something" | sed 's/\\/\\\\/g' # # So, first we look for a working echo in the user's PATH. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for dir in $PATH /usr/ucb; do IFS="$lt_save_ifs" if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then echo="$dir/echo" break fi done IFS="$lt_save_ifs" if test "X$echo" = Xecho; then # We didn't find a better echo, so look for alternatives. if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # This shell has a builtin print -r that does the trick. echo='print -r' elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && test "X$CONFIG_SHELL" != X/bin/ksh; then # If we have ksh, try running configure again with it. ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} export ORIGINAL_CONFIG_SHELL CONFIG_SHELL=/bin/ksh export CONFIG_SHELL exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"} else # Try using printf. echo='printf %s\n' if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # Cool, printf works : elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL export CONFIG_SHELL SHELL="$CONFIG_SHELL" export SHELL echo="$CONFIG_SHELL [$]0 --fallback-echo" elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then echo="$CONFIG_SHELL [$]0 --fallback-echo" else # maybe with a smaller string... prev=: for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null then break fi prev="$cmd" done if test "$prev" != 'sed 50q "[$]0"'; then echo_test_string=`eval $prev` export echo_test_string exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"} else # Oops. We lost completely, so just stick with echo. echo=echo fi fi fi fi fi fi # Copy echo and quote the copy suitably for passing to libtool from # the Makefile, instead of quoting the original, which is used later. ECHO=$echo if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo" fi AC_SUBST(ECHO) ])])# _LT_AC_PROG_ECHO_BACKSLASH # _LT_AC_LOCK # ----------- AC_DEFUN([_LT_AC_LOCK], [AC_ARG_ENABLE([libtool-lock], [AC_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '[#]line __oline__ "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ s390*-*linux*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, [AC_LANG_PUSH(C) AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; sparc*-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) LD="${LD-ld} -m elf64_sparc" ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], [*-*-cygwin* | *-*-mingw* | *-*-pw32*) AC_CHECK_TOOL(DLLTOOL, dlltool, false) AC_CHECK_TOOL(AS, as, false) AC_CHECK_TOOL(OBJDUMP, objdump, false) ;; ]) esac need_locks="$enable_libtool_lock" ])# _LT_AC_LOCK # AC_LIBTOOL_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------------------- # Check whether the given compiler option works AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_REQUIRE([LT_AC_PROG_SED]) AC_CACHE_CHECK([$1], [$2], [$2=no ifelse([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$3" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi fi $rm conftest* ]) if test x"[$]$2" = xyes; then ifelse([$5], , :, [$5]) else ifelse([$6], , :, [$6]) fi ])# AC_LIBTOOL_COMPILER_OPTION # AC_LIBTOOL_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [ACTION-SUCCESS], [ACTION-FAILURE]) # ------------------------------------------------------------ # Check whether the given compiler option works AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_REQUIRE([LT_AC_PROG_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $3" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&AS_MESSAGE_LOG_FD $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi else $2=yes fi fi $rm -r conftest* LDFLAGS="$save_LDFLAGS" ]) if test x"[$]$2" = xyes; then ifelse([$4], , :, [$4]) else ifelse([$5], , :, [$5]) fi ])# AC_LIBTOOL_LINKER_OPTION # AC_LIBTOOL_SYS_MAX_CMD_LEN # -------------------------- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [# find the maximum length of command line arguments AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} while (test "X"`$SHELL [$]0 --fallback-echo "X$teststring" 2>/dev/null` \ = "XX$teststring") >/dev/null 2>&1 && new_result=`expr "X$teststring" : ".*" 2>&1` && lt_cv_sys_max_cmd_len=$new_result && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done teststring= # Add a significant safety factor because C++ compilers can tack on massive # amounts of additional arguments before passing them to the linker. # It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac ]) if test -n $lt_cv_sys_max_cmd_len ; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) fi ])# AC_LIBTOOL_SYS_MAX_CMD_LEN # _LT_AC_CHECK_DLFCN # ------------------ AC_DEFUN([_LT_AC_CHECK_DLFCN], [AC_CHECK_HEADERS(dlfcn.h)dnl ])# _LT_AC_CHECK_DLFCN # _LT_AC_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) # --------------------------------------------------------------------- AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF], [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl if test "$cross_compiling" = yes; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif #ifdef __cplusplus extern "C" void exit (int); #endif void fnord() { int i=42;} int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; /* dlclose (self); */ } else puts (dlerror ()); exit (status); }] EOF if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) $1 ;; x$lt_dlneed_uscore) $2 ;; x$lt_dlunknown|x*) $3 ;; esac else : # compilation failed $3 fi fi rm -fr conftest* ])# _LT_AC_TRY_DLOPEN_SELF # AC_LIBTOOL_DLOPEN_SELF # ---------------------- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; *) AC_CHECK_FUNC([shl_load], [lt_cv_dlopen="shl_load"], [AC_CHECK_LIB([dld], [shl_load], [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], [AC_CHECK_FUNC([dlopen], [lt_cv_dlopen="dlopen"], [AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], [AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], [AC_CHECK_LIB([dld], [dld_link], [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) ]) ]) ]) ]) ]) ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], lt_cv_dlopen_self, [dnl _LT_AC_TRY_DLOPEN_SELF( lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl _LT_AC_TRY_DLOPEN_SELF( lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ]) fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi ])# AC_LIBTOOL_DLOPEN_SELF # AC_LIBTOOL_PROG_CC_C_O([TAGNAME]) # --------------------------------- # Check to see if options -c and -o are simultaneously supported by compiler AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O], [AC_REQUIRE([LT_AC_PROG_SED])dnl AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)], [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no $rm -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes fi fi chmod u+w . 2>&AS_MESSAGE_LOG_FD $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files $rm out/* && rmdir out cd .. rmdir conftest $rm conftest* ]) ])# AC_LIBTOOL_PROG_CC_C_O # AC_LIBTOOL_SYS_HARD_LINK_LOCKS([TAGNAME]) # ----------------------------------------- # Check to see if we can do hard links to lock some files if needed AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_REQUIRE([_LT_AC_LOCK])dnl hard_links="nottested" if test "$_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user AC_MSG_CHECKING([if we can lock with hard links]) hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no AC_MSG_RESULT([$hard_links]) if test "$hard_links" = no; then AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) need_locks=warn fi else need_locks=no fi ])# AC_LIBTOOL_SYS_HARD_LINK_LOCKS # AC_LIBTOOL_OBJDIR # ----------------- AC_DEFUN([AC_LIBTOOL_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir], [rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null]) objdir=$lt_cv_objdir ])# AC_LIBTOOL_OBJDIR # AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([TAGNAME]) # ---------------------------------------------- # Check hardcoding attributes. AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs]) _LT_AC_TAGVAR(hardcode_action, $1)= if test -n "$_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)" || \ test -n "$_LT_AC_TAGVAR(runpath_var, $1)" || \ test "X$_LT_AC_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then # We can hardcode non-existant directories. if test "$_LT_AC_TAGVAR(hardcode_direct, $1)" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)" != no && test "$_LT_AC_TAGVAR(hardcode_minus_L, $1)" != no; then # Linking always hardcodes the temporary library directory. _LT_AC_TAGVAR(hardcode_action, $1)=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. _LT_AC_TAGVAR(hardcode_action, $1)=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. _LT_AC_TAGVAR(hardcode_action, $1)=unsupported fi AC_MSG_RESULT([$_LT_AC_TAGVAR(hardcode_action, $1)]) if test "$_LT_AC_TAGVAR(hardcode_action, $1)" = relink; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi ])# AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH # AC_LIBTOOL_SYS_LIB_STRIP # ------------------------ AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP], [striplib= old_striplib= AC_MSG_CHECKING([whether stripping libraries is possible]) if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" AC_MSG_RESULT([yes]) else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" old_striplib="$STRIP -S" AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) fi ;; *) AC_MSG_RESULT([no]) ;; esac fi ])# AC_LIBTOOL_SYS_LIB_STRIP # AC_LIBTOOL_SYS_DYNAMIC_LINKER # ----------------------------- # PORTME Fill in your ld.so characteristics AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_REQUIRE([LT_AC_PROG_SED])dnl AC_MSG_CHECKING([dynamic linker characteristics]) library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" m4_if($1,[],[ if test "$GCC" = yes; then case $host_os in darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; *) lt_awk_arg="/^libraries:/" ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$lt_search_path_spec" | grep ';' >/dev/null ; then # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`echo "$lt_search_path_spec" | $SED -e 's/;/ /g'` else lt_search_path_spec=`echo "$lt_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary. lt_tmp_lt_search_path_spec= lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path/$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" else test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`echo $lt_tmp_lt_search_path_spec | awk ' BEGIN {RS=" "; FS="/|\n";} { lt_foo=""; lt_count=0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo="/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[[lt_foo]]++; } if (lt_freq[[lt_foo]] == 1) { print lt_foo; } }'` sys_lib_search_path_spec=`echo $lt_search_path_spec` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi]) need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[[4-9]]*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[[01]] | aix4.[[01]].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[[45]]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if echo "$sys_lib_search_path_spec" | [grep ';[c-zC-Z]:/' >/dev/null]; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[[123]]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[[01]]* | freebsdelf3.[[01]]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix[[3-9]]*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux* | k*bsd*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; nto-qnx*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[[89]] | openbsd2.[[89]].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no export_dynamic_flag_spec='${wl}-Blargedynsym' runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' shlibpath_overrides_runpath=no else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' shlibpath_overrides_runpath=yes case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac AC_MSG_RESULT([$dynamic_linker]) test "$dynamic_linker" = no && can_build_shared=no AC_CACHE_VAL([lt_cv_sys_lib_search_path_spec], [lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec"]) sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" AC_CACHE_VAL([lt_cv_sys_lib_dlsearch_path_spec], [lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec"]) sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi ])# AC_LIBTOOL_SYS_DYNAMIC_LINKER # _LT_AC_TAGCONFIG # ---------------- AC_DEFUN([_LT_AC_TAGCONFIG], [AC_REQUIRE([LT_AC_PROG_SED])dnl AC_ARG_WITH([tags], [AC_HELP_STRING([--with-tags@<:@=TAGS@:>@], [include additional configurations @<:@automatic@:>@])], [tagnames="$withval"]) if test -f "$ltmain" && test -n "$tagnames"; then if test ! -f "${ofile}"; then AC_MSG_WARN([output file `$ofile' does not exist]) fi if test -z "$LTCC"; then eval "`$SHELL ${ofile} --config | grep '^LTCC='`" if test -z "$LTCC"; then AC_MSG_WARN([output file `$ofile' does not look like a libtool script]) else AC_MSG_WARN([using `LTCC=$LTCC', extracted from `$ofile']) fi fi if test -z "$LTCFLAGS"; then eval "`$SHELL ${ofile} --config | grep '^LTCFLAGS='`" fi # Extract list of available tagged configurations in $ofile. # Note that this assumes the entire list is on one line. available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'` lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for tagname in $tagnames; do IFS="$lt_save_ifs" # Check whether tagname contains only valid characters case `$echo "X$tagname" | $Xsed -e 's:[[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]]::g'` in "") ;; *) AC_MSG_ERROR([invalid tag name: $tagname]) ;; esac if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null then AC_MSG_ERROR([tag name \"$tagname\" already exists]) fi # Update the list of available tags. if test -n "$tagname"; then echo appending configuration tag \"$tagname\" to $ofile case $tagname in CXX) if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then AC_LIBTOOL_LANG_CXX_CONFIG else tagname="" fi ;; F77) if test -n "$F77" && test "X$F77" != "Xno"; then AC_LIBTOOL_LANG_F77_CONFIG else tagname="" fi ;; GCJ) if test -n "$GCJ" && test "X$GCJ" != "Xno"; then AC_LIBTOOL_LANG_GCJ_CONFIG else tagname="" fi ;; RC) AC_LIBTOOL_LANG_RC_CONFIG ;; *) AC_MSG_ERROR([Unsupported tag name: $tagname]) ;; esac # Append the new tag name to the list of available tags. if test -n "$tagname" ; then available_tags="$available_tags $tagname" fi fi done IFS="$lt_save_ifs" # Now substitute the updated list of available tags. if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then mv "${ofile}T" "$ofile" chmod +x "$ofile" else rm -f "${ofile}T" AC_MSG_ERROR([unable to update list of available tagged configurations.]) fi fi ])# _LT_AC_TAGCONFIG # AC_LIBTOOL_DLOPEN # ----------------- # enable checks for dlopen support AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP]) ])# AC_LIBTOOL_DLOPEN # AC_LIBTOOL_WIN32_DLL # -------------------- # declare package support for building win32 DLLs AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_BEFORE([$0], [AC_LIBTOOL_SETUP]) ])# AC_LIBTOOL_WIN32_DLL # AC_ENABLE_SHARED([DEFAULT]) # --------------------------- # implement the --enable-shared flag # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. AC_DEFUN([AC_ENABLE_SHARED], [define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl AC_ARG_ENABLE([shared], [AC_HELP_STRING([--enable-shared@<:@=PKGS@:>@], [build shared libraries @<:@default=]AC_ENABLE_SHARED_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_shared=]AC_ENABLE_SHARED_DEFAULT) ])# AC_ENABLE_SHARED # AC_DISABLE_SHARED # ----------------- # set the default shared flag to --disable-shared AC_DEFUN([AC_DISABLE_SHARED], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_ENABLE_SHARED(no) ])# AC_DISABLE_SHARED # AC_ENABLE_STATIC([DEFAULT]) # --------------------------- # implement the --enable-static flag # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. AC_DEFUN([AC_ENABLE_STATIC], [define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl AC_ARG_ENABLE([static], [AC_HELP_STRING([--enable-static@<:@=PKGS@:>@], [build static libraries @<:@default=]AC_ENABLE_STATIC_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_static=]AC_ENABLE_STATIC_DEFAULT) ])# AC_ENABLE_STATIC # AC_DISABLE_STATIC # ----------------- # set the default static flag to --disable-static AC_DEFUN([AC_DISABLE_STATIC], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_ENABLE_STATIC(no) ])# AC_DISABLE_STATIC # AC_ENABLE_FAST_INSTALL([DEFAULT]) # --------------------------------- # implement the --enable-fast-install flag # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. AC_DEFUN([AC_ENABLE_FAST_INSTALL], [define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl AC_ARG_ENABLE([fast-install], [AC_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], [optimize for fast installation @<:@default=]AC_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_fast_install=]AC_ENABLE_FAST_INSTALL_DEFAULT) ])# AC_ENABLE_FAST_INSTALL # AC_DISABLE_FAST_INSTALL # ----------------------- # set the default to --disable-fast-install AC_DEFUN([AC_DISABLE_FAST_INSTALL], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_ENABLE_FAST_INSTALL(no) ])# AC_DISABLE_FAST_INSTALL # AC_LIBTOOL_PICMODE([MODE]) # -------------------------- # implement the --with-pic flag # MODE is either `yes' or `no'. If omitted, it defaults to `both'. AC_DEFUN([AC_LIBTOOL_PICMODE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl pic_mode=ifelse($#,1,$1,default) ])# AC_LIBTOOL_PICMODE # AC_PROG_EGREP # ------------- # This is predefined starting with Autoconf 2.54, so this conditional # definition can be removed once we require Autoconf 2.54 or later. m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP], [AC_CACHE_CHECK([for egrep], [ac_cv_prog_egrep], [if echo a | (grep -E '(a|b)') >/dev/null 2>&1 then ac_cv_prog_egrep='grep -E' else ac_cv_prog_egrep='egrep' fi]) EGREP=$ac_cv_prog_egrep AC_SUBST([EGREP]) ])]) # AC_PATH_TOOL_PREFIX # ------------------- # find a file program which can recognize shared library AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_REQUIRE([AC_PROG_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="ifelse([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$1; then lt_cv_path_MAGIC_CMD="$ac_dir/$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac]) MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else AC_MSG_RESULT(no) fi ])# AC_PATH_TOOL_PREFIX # AC_PATH_MAGIC # ------------- # find a file program which can recognize a shared library AC_DEFUN([AC_PATH_MAGIC], [AC_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then AC_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) else MAGIC_CMD=: fi fi ])# AC_PATH_MAGIC # AC_PROG_LD # ---------- # find the pathname to the GNU or non-GNU linker AC_DEFUN([AC_PROG_LD], [AC_ARG_WITH([gnu-ld], [AC_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], [test "$withval" = no || with_gnu_ld=yes], [with_gnu_ld=no]) AC_REQUIRE([LT_AC_PROG_SED])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]]* | ?:[[\\/]]*) re_direlt='/[[^/]][[^/]]*/\.\./' # Canonicalize the pathname of ld ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'` while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(lt_cv_path_LD, [if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; gnu*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]'] lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[[3-9]]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be Linux ELF. linux* | k*bsd*-gnu) lt_cv_deplibs_check_method=pass_all ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; nto-qnx*) lt_cv_deplibs_check_method=unknown ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; esac ]) file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown ])# AC_DEPLIBS_CHECK_METHOD # AC_PROG_NM # ---------- # find the pathname to a BSD-compatible name lister AC_DEFUN([AC_PROG_NM], [AC_CACHE_CHECK([for BSD-compatible nm], lt_cv_path_NM, [if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/$lt_tmp_nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm fi]) NM="$lt_cv_path_NM" ])# AC_PROG_NM # AC_CHECK_LIBM # ------------- # check for math library AC_DEFUN([AC_CHECK_LIBM], [AC_REQUIRE([AC_CANONICAL_HOST])dnl LIBM= case $host in *-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*) # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) AC_CHECK_LIB(m, cos, LIBM="-lm") ;; esac ])# AC_CHECK_LIBM # AC_LIBLTDL_CONVENIENCE([DIRECTORY]) # ----------------------------------- # sets LIBLTDL to the link flags for the libltdl convenience library and # LTDLINCL to the include flags for the libltdl header and adds # --enable-ltdl-convenience to the configure arguments. Note that # AC_CONFIG_SUBDIRS is not called here. If DIRECTORY is not provided, # it is assumed to be `libltdl'. LIBLTDL will be prefixed with # '${top_builddir}/' and LTDLINCL will be prefixed with '${top_srcdir}/' # (note the single quotes!). If your package is not flat and you're not # using automake, define top_builddir and top_srcdir appropriately in # the Makefiles. AC_DEFUN([AC_LIBLTDL_CONVENIENCE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl case $enable_ltdl_convenience in no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;; "") enable_ltdl_convenience=yes ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;; esac LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdlc.la LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) # For backwards non-gettext consistent compatibility... INCLTDL="$LTDLINCL" ])# AC_LIBLTDL_CONVENIENCE # AC_LIBLTDL_INSTALLABLE([DIRECTORY]) # ----------------------------------- # sets LIBLTDL to the link flags for the libltdl installable library and # LTDLINCL to the include flags for the libltdl header and adds # --enable-ltdl-install to the configure arguments. Note that # AC_CONFIG_SUBDIRS is not called here. If DIRECTORY is not provided, # and an installed libltdl is not found, it is assumed to be `libltdl'. # LIBLTDL will be prefixed with '${top_builddir}/'# and LTDLINCL with # '${top_srcdir}/' (note the single quotes!). If your package is not # flat and you're not using automake, define top_builddir and top_srcdir # appropriately in the Makefiles. # In the future, this macro may have to be called after AC_PROG_LIBTOOL. AC_DEFUN([AC_LIBLTDL_INSTALLABLE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_CHECK_LIB(ltdl, lt_dlinit, [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no], [if test x"$enable_ltdl_install" = xno; then AC_MSG_WARN([libltdl not installed, but installation disabled]) else enable_ltdl_install=yes fi ]) if test x"$enable_ltdl_install" = x"yes"; then ac_configure_args="$ac_configure_args --enable-ltdl-install" LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdl.la LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) else ac_configure_args="$ac_configure_args --enable-ltdl-install=no" LIBLTDL="-lltdl" LTDLINCL= fi # For backwards non-gettext consistent compatibility... INCLTDL="$LTDLINCL" ])# AC_LIBLTDL_INSTALLABLE # AC_LIBTOOL_CXX # -------------- # enable support for C++ libraries AC_DEFUN([AC_LIBTOOL_CXX], [AC_REQUIRE([_LT_AC_LANG_CXX]) ])# AC_LIBTOOL_CXX # _LT_AC_LANG_CXX # --------------- AC_DEFUN([_LT_AC_LANG_CXX], [AC_REQUIRE([AC_PROG_CXX]) AC_REQUIRE([_LT_AC_PROG_CXXCPP]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX]) ])# _LT_AC_LANG_CXX # _LT_AC_PROG_CXXCPP # ------------------ AC_DEFUN([_LT_AC_PROG_CXXCPP], [ AC_REQUIRE([AC_PROG_CXX]) if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then AC_PROG_CXXCPP fi ])# _LT_AC_PROG_CXXCPP # AC_LIBTOOL_F77 # -------------- # enable support for Fortran 77 libraries AC_DEFUN([AC_LIBTOOL_F77], [AC_REQUIRE([_LT_AC_LANG_F77]) ])# AC_LIBTOOL_F77 # _LT_AC_LANG_F77 # --------------- AC_DEFUN([_LT_AC_LANG_F77], [AC_REQUIRE([AC_PROG_F77]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}F77]) ])# _LT_AC_LANG_F77 # AC_LIBTOOL_GCJ # -------------- # enable support for GCJ libraries AC_DEFUN([AC_LIBTOOL_GCJ], [AC_REQUIRE([_LT_AC_LANG_GCJ]) ])# AC_LIBTOOL_GCJ # _LT_AC_LANG_GCJ # --------------- AC_DEFUN([_LT_AC_LANG_GCJ], [AC_PROVIDE_IFELSE([AC_PROG_GCJ],[], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],[], [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],[], [ifdef([AC_PROG_GCJ],[AC_REQUIRE([AC_PROG_GCJ])], [ifdef([A][M_PROG_GCJ],[AC_REQUIRE([A][M_PROG_GCJ])], [AC_REQUIRE([A][C_PROG_GCJ_OR_A][M_PROG_GCJ])])])])])]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}GCJ]) ])# _LT_AC_LANG_GCJ # AC_LIBTOOL_RC # ------------- # enable support for Windows resource files AC_DEFUN([AC_LIBTOOL_RC], [AC_REQUIRE([LT_AC_PROG_RC]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}RC]) ])# AC_LIBTOOL_RC # AC_LIBTOOL_LANG_C_CONFIG # ------------------------ # Ensure that the configuration vars for the C compiler are # suitably defined. Those variables are subsequently used by # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG], [_LT_AC_LANG_C_CONFIG]) AC_DEFUN([_LT_AC_LANG_C_CONFIG], [lt_save_CC="$CC" AC_LANG_PUSH(C) # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o _LT_AC_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' _LT_AC_SYS_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1) AC_LIBTOOL_PROG_COMPILER_PIC($1) AC_LIBTOOL_PROG_CC_C_O($1) AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) AC_LIBTOOL_PROG_LD_SHLIBS($1) AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) AC_LIBTOOL_SYS_LIB_STRIP AC_LIBTOOL_DLOPEN_SELF # Report which library types will actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) AC_LIBTOOL_CONFIG($1) AC_LANG_POP CC="$lt_save_CC" ])# AC_LIBTOOL_LANG_C_CONFIG # AC_LIBTOOL_LANG_CXX_CONFIG # -------------------------- # Ensure that the configuration vars for the C compiler are # suitably defined. Those variables are subsequently used by # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG], [_LT_AC_LANG_CXX_CONFIG(CXX)]) AC_DEFUN([_LT_AC_LANG_CXX_CONFIG], [AC_LANG_PUSH(C++) AC_REQUIRE([AC_PROG_CXX]) AC_REQUIRE([_LT_AC_PROG_CXXCPP]) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(allow_undefined_flag, $1)= _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(archive_expsym_cmds, $1)= _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= _LT_AC_TAGVAR(hardcode_minus_L, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(hardcode_automatic, $1)=no _LT_AC_TAGVAR(module_cmds, $1)= _LT_AC_TAGVAR(module_expsym_cmds, $1)= _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown _LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_AC_TAGVAR(no_undefined_flag, $1)= _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Dependencies to place before and after the object being linked: _LT_AC_TAGVAR(predep_objects, $1)= _LT_AC_TAGVAR(postdep_objects, $1)= _LT_AC_TAGVAR(predeps, $1)= _LT_AC_TAGVAR(postdeps, $1)= _LT_AC_TAGVAR(compiler_lib_search_path, $1)= _LT_AC_TAGVAR(compiler_lib_search_dirs, $1)= # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o _LT_AC_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_AC_SYS_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} compiler=$CC _LT_AC_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) # We don't want -fno-exception wen compiling C++ code, so set the # no_builtin_flag separately if test "$GXX" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi if test "$GXX" = yes; then # Set up default GNU C++ configuration AC_PROG_LD # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test "$with_gnu_ld" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='${wl}' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | \ grep 'no-whole-archive' > /dev/null; then _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) _LT_AC_TAGVAR(ld_shlibs, $1)=yes case $host_os in aix3*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; aix[[4-9]]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_AC_TAGVAR(archive_cmds, $1)='' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GXX" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_AC_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared libraries. _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; darwin* | rhapsody*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_automatic, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes _LT_AC_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" if test "$GXX" = yes ; then output_verbose_link_cmd='echo' _LT_AC_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" _LT_AC_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" _LT_AC_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" if test "$lt_cv_apple_cc_single_mod" != "yes"; then _LT_AC_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" fi else case $cc_basename in xlc*) output_verbose_link_cmd='echo' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring' _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ;; *) _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac fi ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; freebsd[[12]]*) # C++ shared libraries reported to be fairly broken before switch to ELF _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; freebsd-elf*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ;; freebsd* | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions _LT_AC_TAGVAR(ld_shlibs, $1)=yes ;; gnu*) ;; hpux9*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; aCC*) _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "[[-]]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; hpux10*|hpux11*) if test $with_gnu_ld = no; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) ;; *) _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; aCC*) case $host_cpu in hppa*64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then if test $with_gnu_ld = no; then case $host_cpu in hppa*64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; interix[[3-9]]*) _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test "$GXX" = yes; then if test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib' fi fi _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ;; esac _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ;; linux* | k*bsd*-gnu) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | grep "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc*) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' ;; cxx*) # Compaq C++ _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' # Not sure whether something based on # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 # would be better. output_verbose_link_cmd='echo' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; m88k*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; openbsd2*) # C++ shared libraries are fairly broken _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; openbsd*) if test -f /usr/libexec/ld.so; then _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' fi output_verbose_link_cmd='echo' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; osf3*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; cxx*) _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # the KAI C++ compiler. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; cxx*) _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~ $rm $lib.exp' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' else # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; solaris*) case $cc_basename in CC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_AC_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; esac _LT_AC_TAGVAR(link_all_deplibs, $1)=yes output_verbose_link_cmd='echo' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' if $CC --version | grep -v '^2\.7' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd="$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" else # g++ 2.7 appears to require `-G' NOT `-shared' on this # platform. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd="$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. # So that behaviour is only enabled if SCOABSPATH is set to a # non-empty value in the environment. Most likely only useful for # creating official distributions of packages. # This is a hack until libtool officially supports absolute path # names for shared libraries. _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no _LT_AC_TAGVAR(GCC, $1)="$GXX" _LT_AC_TAGVAR(LD, $1)="$LD" AC_LIBTOOL_POSTDEP_PREDEP($1) AC_LIBTOOL_PROG_COMPILER_PIC($1) AC_LIBTOOL_PROG_CC_C_O($1) AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) AC_LIBTOOL_PROG_LD_SHLIBS($1) AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) AC_LIBTOOL_CONFIG($1) AC_LANG_POP CC=$lt_save_CC LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ldcxx=$with_gnu_ld with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld ])# AC_LIBTOOL_LANG_CXX_CONFIG # AC_LIBTOOL_POSTDEP_PREDEP([TAGNAME]) # ------------------------------------ # Figure out "hidden" library dependencies from verbose # compiler output when linking a shared library. # Parse the compiler output and extract the necessary # objects, libraries and library flags. AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP], [AC_REQUIRE([LT_AC_PROG_SED])dnl dnl we can't use the lt_simple_compile_test_code here, dnl because it contains code intended for an executable, dnl not a library. It's possible we should let each dnl tag define a new lt_????_link_test_code variable, dnl but it's only used here... ifelse([$1],[],[cat > conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext <&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 # # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac if test "$solaris_use_stlport4" != yes; then _LT_AC_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' fi ;; esac ;; solaris*) case $cc_basename in CC*) # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac # Adding this requires a known-good setup of shared libraries for # Sun compiler versions before 5.6, else PIC objects from an old # archive will be linked into the output, leading to subtle bugs. if test "$solaris_use_stlport4" != yes; then _LT_AC_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' fi ;; esac ;; esac ]) case " $_LT_AC_TAGVAR(postdeps, $1) " in *" -lc "*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ;; esac ])# AC_LIBTOOL_POSTDEP_PREDEP # AC_LIBTOOL_LANG_F77_CONFIG # -------------------------- # Ensure that the configuration vars for the C compiler are # suitably defined. Those variables are subsequently used by # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG], [_LT_AC_LANG_F77_CONFIG(F77)]) AC_DEFUN([_LT_AC_LANG_F77_CONFIG], [AC_REQUIRE([AC_PROG_F77]) AC_LANG_PUSH(Fortran 77) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(allow_undefined_flag, $1)= _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(archive_expsym_cmds, $1)= _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= _LT_AC_TAGVAR(hardcode_minus_L, $1)=no _LT_AC_TAGVAR(hardcode_automatic, $1)=no _LT_AC_TAGVAR(module_cmds, $1)= _LT_AC_TAGVAR(module_expsym_cmds, $1)= _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown _LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_AC_TAGVAR(no_undefined_flag, $1)= _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for f77 test sources. ac_ext=f # Object file extension for compiled f77 test sources. objext=o _LT_AC_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_AC_SYS_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${F77-"f77"} compiler=$CC _LT_AC_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_AC_TAGVAR(GCC, $1)="$G77" _LT_AC_TAGVAR(LD, $1)="$LD" AC_LIBTOOL_PROG_COMPILER_PIC($1) AC_LIBTOOL_PROG_CC_C_O($1) AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) AC_LIBTOOL_PROG_LD_SHLIBS($1) AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) AC_LIBTOOL_CONFIG($1) AC_LANG_POP CC="$lt_save_CC" ])# AC_LIBTOOL_LANG_F77_CONFIG # AC_LIBTOOL_LANG_GCJ_CONFIG # -------------------------- # Ensure that the configuration vars for the C compiler are # suitably defined. Those variables are subsequently used by # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG], [_LT_AC_LANG_GCJ_CONFIG(GCJ)]) AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG], [AC_LANG_SAVE # Source file extension for Java test sources. ac_ext=java # Object file extension for compiled Java test sources. objext=o _LT_AC_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="class foo {}" # Code to be used in simple link tests lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_AC_SYS_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${GCJ-"gcj"} compiler=$CC _LT_AC_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) # GCJ did not exist at the time GCC didn't implicitly link libc in. _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1) AC_LIBTOOL_PROG_COMPILER_PIC($1) AC_LIBTOOL_PROG_CC_C_O($1) AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) AC_LIBTOOL_PROG_LD_SHLIBS($1) AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) AC_LIBTOOL_CONFIG($1) AC_LANG_RESTORE CC="$lt_save_CC" ])# AC_LIBTOOL_LANG_GCJ_CONFIG # AC_LIBTOOL_LANG_RC_CONFIG # ------------------------- # Ensure that the configuration vars for the Windows resource compiler are # suitably defined. Those variables are subsequently used by # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG], [_LT_AC_LANG_RC_CONFIG(RC)]) AC_DEFUN([_LT_AC_LANG_RC_CONFIG], [AC_LANG_SAVE # Source file extension for RC test sources. ac_ext=rc # Object file extension for compiled RC test sources. objext=o _LT_AC_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' # Code to be used in simple link tests lt_simple_link_test_code="$lt_simple_compile_test_code" # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_AC_SYS_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${RC-"windres"} compiler=$CC _LT_AC_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes AC_LIBTOOL_CONFIG($1) AC_LANG_RESTORE CC="$lt_save_CC" ])# AC_LIBTOOL_LANG_RC_CONFIG # AC_LIBTOOL_CONFIG([TAGNAME]) # ---------------------------- # If TAGNAME is not passed, then create an initial libtool script # with a default configuration from the untagged config vars. Otherwise # add code to config.status for appending the configuration named by # TAGNAME from the matching tagged config vars. AC_DEFUN([AC_LIBTOOL_CONFIG], [# The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh # with your package, and you will get complaints that there are # no rules to generate ltmain.sh. if test -f "$ltmain"; then # See if we are running on zsh, and set the options which allow our commands through # without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Now quote all the things that may contain metacharacters while being # careful not to overquote the AC_SUBSTed values. We take copies of the # variables and quote the copies for generation of the libtool script. for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ SED SHELL STRIP \ libname_spec library_names_spec soname_spec extract_expsyms_cmds \ old_striplib striplib file_magic_cmd finish_cmds finish_eval \ deplibs_check_method reload_flag reload_cmds need_locks \ lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ old_postinstall_cmds old_postuninstall_cmds \ _LT_AC_TAGVAR(compiler, $1) \ _LT_AC_TAGVAR(CC, $1) \ _LT_AC_TAGVAR(LD, $1) \ _LT_AC_TAGVAR(lt_prog_compiler_wl, $1) \ _LT_AC_TAGVAR(lt_prog_compiler_pic, $1) \ _LT_AC_TAGVAR(lt_prog_compiler_static, $1) \ _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) \ _LT_AC_TAGVAR(export_dynamic_flag_spec, $1) \ _LT_AC_TAGVAR(thread_safe_flag_spec, $1) \ _LT_AC_TAGVAR(whole_archive_flag_spec, $1) \ _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) \ _LT_AC_TAGVAR(old_archive_cmds, $1) \ _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) \ _LT_AC_TAGVAR(predep_objects, $1) \ _LT_AC_TAGVAR(postdep_objects, $1) \ _LT_AC_TAGVAR(predeps, $1) \ _LT_AC_TAGVAR(postdeps, $1) \ _LT_AC_TAGVAR(compiler_lib_search_path, $1) \ _LT_AC_TAGVAR(compiler_lib_search_dirs, $1) \ _LT_AC_TAGVAR(archive_cmds, $1) \ _LT_AC_TAGVAR(archive_expsym_cmds, $1) \ _LT_AC_TAGVAR(postinstall_cmds, $1) \ _LT_AC_TAGVAR(postuninstall_cmds, $1) \ _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) \ _LT_AC_TAGVAR(allow_undefined_flag, $1) \ _LT_AC_TAGVAR(no_undefined_flag, $1) \ _LT_AC_TAGVAR(export_symbols_cmds, $1) \ _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) \ _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) \ _LT_AC_TAGVAR(hardcode_libdir_separator, $1) \ _LT_AC_TAGVAR(hardcode_automatic, $1) \ _LT_AC_TAGVAR(module_cmds, $1) \ _LT_AC_TAGVAR(module_expsym_cmds, $1) \ _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) \ _LT_AC_TAGVAR(fix_srcfile_path, $1) \ _LT_AC_TAGVAR(exclude_expsyms, $1) \ _LT_AC_TAGVAR(include_expsyms, $1); do case $var in _LT_AC_TAGVAR(old_archive_cmds, $1) | \ _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) | \ _LT_AC_TAGVAR(archive_cmds, $1) | \ _LT_AC_TAGVAR(archive_expsym_cmds, $1) | \ _LT_AC_TAGVAR(module_cmds, $1) | \ _LT_AC_TAGVAR(module_expsym_cmds, $1) | \ _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) | \ _LT_AC_TAGVAR(export_symbols_cmds, $1) | \ extract_expsyms_cmds | reload_cmds | finish_cmds | \ postinstall_cmds | postuninstall_cmds | \ old_postinstall_cmds | old_postuninstall_cmds | \ sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) # Double-quote double-evaled strings. eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac done case $lt_echo in *'\[$]0 --fallback-echo"') lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\[$]0 --fallback-echo"[$]/[$]0 --fallback-echo"/'` ;; esac ifelse([$1], [], [cfgfile="${ofile}T" trap "$rm \"$cfgfile\"; exit 1" 1 2 15 $rm -f "$cfgfile" AC_MSG_NOTICE([creating $ofile])], [cfgfile="$ofile"]) cat <<__EOF__ >> "$cfgfile" ifelse([$1], [], [#! $SHELL # `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) # NOTE: Changes made to this file will be lost: look at ltmain.sh. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 # Free Software Foundation, Inc. # # This file is part of GNU Libtool: # Originally by Gordon Matzigkeit , 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 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # 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. # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="$SED -e 1s/^X//" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # The names of the tagged configurations supported by this script. available_tags= # ### BEGIN LIBTOOL CONFIG], [# ### BEGIN LIBTOOL TAG CONFIG: $tagname]) # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$_LT_AC_TAGVAR(archive_cmds_need_lc, $1) # Whether or not to disallow shared libs when runtime libs are static allow_libtool_libs_with_static_runtimes=$_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A C compiler. LTCC=$lt_LTCC # LTCC compiler flags. LTCFLAGS=$lt_LTCFLAGS # A language-specific compiler. CC=$lt_[]_LT_AC_TAGVAR(compiler, $1) # Is the compiler the GNU C compiler? with_gcc=$_LT_AC_TAGVAR(GCC, $1) # An ERE matcher. EGREP=$lt_EGREP # The linker used to build libraries. LD=$lt_[]_LT_AC_TAGVAR(LD, $1) # Whether we need hard or soft links. LN_S=$lt_LN_S # A BSD-compatible nm program. NM=$lt_NM # A symbol stripping program STRIP=$lt_STRIP # Used to examine libraries when file_magic_cmd begins "file" MAGIC_CMD=$MAGIC_CMD # Used on cygwin: DLL creation program. DLLTOOL="$DLLTOOL" # Used on cygwin: object dumper. OBJDUMP="$OBJDUMP" # Used on cygwin: assembler. AS="$AS" # The name of the directory that contains temporary libtool files. objdir=$objdir # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # How to pass a linker flag through the compiler. wl=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) # Object file suffix (normally "o"). objext="$ac_objext" # Old archive suffix (normally "a"). libext="$libext" # Shared library suffix (normally ".so"). shrext_cmds='$shrext_cmds' # Executable file suffix (normally ""). exeext="$exeext" # Additional compiler flags for building library objects. pic_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) pic_mode=$pic_mode # What is the maximum length of a command? max_cmd_len=$lt_cv_sys_max_cmd_len # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_[]_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) # Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Compiler flag to prevent dynamic linking. link_static_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_static, $1) # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_[]_LT_AC_TAGVAR(export_dynamic_flag_spec, $1) # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_[]_LT_AC_TAGVAR(whole_archive_flag_spec, $1) # Compiler flag to generate thread-safe objects. thread_safe_flag_spec=$lt_[]_LT_AC_TAGVAR(thread_safe_flag_spec, $1) # Library versioning type. version_type=$version_type # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME. library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Commands used to build and install an old-style archive. RANLIB=$lt_RANLIB old_archive_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_cmds, $1) old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_new_cmds, $1) # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) # Commands used to build and install a shared archive. archive_cmds=$lt_[]_LT_AC_TAGVAR(archive_cmds, $1) archive_expsym_cmds=$lt_[]_LT_AC_TAGVAR(archive_expsym_cmds, $1) postinstall_cmds=$lt_postinstall_cmds postuninstall_cmds=$lt_postuninstall_cmds # Commands used to build a loadable module (assumed same as above if empty) module_cmds=$lt_[]_LT_AC_TAGVAR(module_cmds, $1) module_expsym_cmds=$lt_[]_LT_AC_TAGVAR(module_expsym_cmds, $1) # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # Dependencies to place before the objects being linked to create a # shared library. predep_objects=$lt_[]_LT_AC_TAGVAR(predep_objects, $1) # Dependencies to place after the objects being linked to create a # shared library. postdep_objects=$lt_[]_LT_AC_TAGVAR(postdep_objects, $1) # Dependencies to place before the objects being linked to create a # shared library. predeps=$lt_[]_LT_AC_TAGVAR(predeps, $1) # Dependencies to place after the objects being linked to create a # shared library. postdeps=$lt_[]_LT_AC_TAGVAR(postdeps, $1) # The directories searched by this compiler when creating a shared # library compiler_lib_search_dirs=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_dirs, $1) # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1) # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == file_magic. file_magic_cmd=$lt_file_magic_cmd # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_[]_LT_AC_TAGVAR(allow_undefined_flag, $1) # Flag that forces no undefined symbols. no_undefined_flag=$lt_[]_LT_AC_TAGVAR(no_undefined_flag, $1) # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # Same as above, but a single script fragment to be evaled but not shown. finish_eval=$lt_finish_eval # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # This is the shared library runtime path variable. runpath_var=$runpath_var # This is the shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # How to hardcode a shared library path into an executable. hardcode_action=$_LT_AC_TAGVAR(hardcode_action, $1) # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist. hardcode_libdir_flag_spec=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) # If ld is used when linking, flag to hardcode \$libdir into # a binary during linking. This must work even if \$libdir does # not exist. hardcode_libdir_flag_spec_ld=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) # Whether we need a single -rpath flag with a separated argument. hardcode_libdir_separator=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_separator, $1) # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the # resulting binary. hardcode_direct=$_LT_AC_TAGVAR(hardcode_direct, $1) # Set to yes if using the -LDIR flag during linking hardcodes DIR into the # resulting binary. hardcode_minus_L=$_LT_AC_TAGVAR(hardcode_minus_L, $1) # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into # the resulting binary. hardcode_shlibpath_var=$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1) # Set to yes if building a shared library automatically hardcodes DIR into the library # and all subsequent libraries and executables linked against it. hardcode_automatic=$_LT_AC_TAGVAR(hardcode_automatic, $1) # Variables whose values should be saved in libtool wrapper scripts and # restored at relink time. variables_saved_for_relink="$variables_saved_for_relink" # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$_LT_AC_TAGVAR(link_all_deplibs, $1) # Compile-time system search path for libraries sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path=$lt_fix_srcfile_path # Set to yes if exported symbols are required. always_export_symbols=$_LT_AC_TAGVAR(always_export_symbols, $1) # The commands to list exported symbols. export_symbols_cmds=$lt_[]_LT_AC_TAGVAR(export_symbols_cmds, $1) # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_[]_LT_AC_TAGVAR(exclude_expsyms, $1) # Symbols that must always be exported. include_expsyms=$lt_[]_LT_AC_TAGVAR(include_expsyms, $1) ifelse([$1],[], [# ### END LIBTOOL CONFIG], [# ### END LIBTOOL TAG CONFIG: $tagname]) __EOF__ ifelse([$1],[], [ case $host_os in aix3*) cat <<\EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi EOF ;; esac # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || \ (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ]) else # If there is no Makefile yet, we rely on a make rule to execute # `config.status --recheck' to rerun these tests and create the # libtool script then. ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` if test -f "$ltmain_in"; then test -f Makefile && make "$ltmain" fi fi ])# AC_LIBTOOL_CONFIG # AC_LIBTOOL_PROG_COMPILER_NO_RTTI([TAGNAME]) # ------------------------------------------- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= if test "$GCC" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' AC_LIBTOOL_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], lt_cv_prog_compiler_rtti_exceptions, [-fno-rtti -fno-exceptions], [], [_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) fi ])# AC_LIBTOOL_PROG_COMPILER_NO_RTTI # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE # --------------------------------- AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_REQUIRE([AC_CANONICAL_HOST]) AC_REQUIRE([LT_AC_PROG_SED]) AC_REQUIRE([AC_PROG_NM]) AC_REQUIRE([AC_OBJEXT]) # Check for command to grab the raw symbol name followed by C symbol from nm. AC_MSG_CHECKING([command to parse $NM output from $compiler object]) AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [ # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[[BCDEGRST]]' # Regexp to match symbols that can be accessed directly from C. sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' # Transform an extracted symbol line into a proper C declaration lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" # Define system-specific variables. case $host_os in aix*) symcode='[[BCDT]]' ;; cygwin* | mingw* | pw32*) symcode='[[ABCDGISTW]]' ;; hpux*) # Its linker distinguishes data from code symbols if test "$host_cpu" = ia64; then symcode='[[ABCDEGRST]]' fi lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ;; linux* | k*bsd*-gnu) if test "$host_cpu" = ia64; then symcode='[[ABCDGIRSTW]]' lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" fi ;; irix* | nonstopux*) symcode='[[BCDEGRST]]' ;; osf*) symcode='[[BCDEGQRST]]' ;; solaris*) symcode='[[BDRT]]' ;; sco3.2v5*) symcode='[[DT]]' ;; sysv4.2uw2*) symcode='[[DT]]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[[ABDT]]' ;; sysv4) symcode='[[DFNSTU]]' ;; esac # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[[ABCDGIRSTW]]' ;; esac # Try without a prefix undercore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext < $nlist) && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if grep ' nm_test_var$' "$nlist" >/dev/null; then if grep ' nm_test_func$' "$nlist" >/dev/null; then cat < conftest.$ac_ext #ifdef __cplusplus extern "C" { #endif EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext' cat <> conftest.$ac_ext #if defined (__STDC__) && __STDC__ # define lt_ptr_t void * #else # define lt_ptr_t char * # define const #endif /* The mapping between symbol names and symbols. */ const struct { const char *name; lt_ptr_t address; } lt_preloaded_symbols[[]] = { EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext cat <<\EOF >> conftest.$ac_ext {0, (lt_ptr_t) 0} }; #ifdef __cplusplus } #endif EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_save_LIBS="$LIBS" lt_save_CFLAGS="$CFLAGS" LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS="$lt_save_LIBS" CFLAGS="$lt_save_CFLAGS" else echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD fi else echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done ]) if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then AC_MSG_RESULT(failed) else AC_MSG_RESULT(ok) fi ]) # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE # AC_LIBTOOL_PROG_COMPILER_PIC([TAGNAME]) # --------------------------------------- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC], [_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)= _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_static, $1)= AC_MSG_CHECKING([for $compiler option to produce PIC]) ifelse([$1],[CXX],[ # C++ specific cases for pic, static, wl, etc. if test "$GXX" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | os2* | pw32*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else case $host_os in aix[[4-9]]*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; esac ;; dgux*) case $cc_basename in ec++*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; ghcx*) # Green Hills C++ Compiler _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; freebsd* | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' if test "$host_cpu" != ia64; then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux* | k*bsd*-gnu) case $cc_basename in KCC*) # KAI C++ Compiler _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; icpc* | ecpc*) # Intel C++ _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler. _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' ;; *) ;; esac ;; netbsd* | netbsdelf*-gnu) ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; cxx*) # Digital/Compaq C++ _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; lcc*) # Lucid _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; vxworks*) ;; *) _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ], [ if test "$GCC" = yes; then _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no enable_shared=no ;; sysv4*MP*) if test -d /usr/nec; then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; darwin*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files case $cc_basename in xlc*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; esac ;; mingw* | cygwin* | pw32* | os2*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; hpux9* | hpux10* | hpux11*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC (with -KPIC) is the default. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; newsos6) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; linux* | k*bsd*-gnu) case $cc_basename in icc* | ecc*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgcc* | pgf77* | pgf90* | pgf95*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ccc*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All Alpha code is PIC. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; *Sun\ F*) # Sun Fortran 8.3 passes all unrecognized flags to the linker _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='' ;; esac ;; esac ;; osf3* | osf4* | osf5*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All OSF/1 code is PIC. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; rdos*) _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; solaris*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' case $cc_basename in f77* | f90* | f95*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; *) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; esac ;; sunos4*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; unicos*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; uts4*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *) _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ]) AC_MSG_RESULT([$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)]) # # Check to make sure the PIC flag actually works. # if test -n "$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)"; then AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) works], _LT_AC_TAGVAR(lt_cv_prog_compiler_pic_works, $1), [$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])], [], [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) in "" | " "*) ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)" ;; esac], [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= ;; *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])" ;; esac # # Check to make sure the static flag actually works. # wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_AC_TAGVAR(lt_prog_compiler_static, $1)\" AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], _LT_AC_TAGVAR(lt_cv_prog_compiler_static_works, $1), $lt_tmp_static_flag, [], [_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=]) ]) # AC_LIBTOOL_PROG_LD_SHLIBS([TAGNAME]) # ------------------------------------ # See if the linker supports building shared libraries. AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_REQUIRE([LT_AC_PROG_SED])dnl AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) ifelse([$1],[CXX],[ _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' case $host_os in aix[[4-9]]*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' else _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' fi ;; pw32*) _LT_AC_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" ;; cygwin* | mingw*) _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;/^.*[[ ]]__nm__/s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' ;; linux* | k*bsd*-gnu) _LT_AC_TAGVAR(link_all_deplibs, $1)=no ;; *) _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac _LT_AC_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] ],[ runpath_var= _LT_AC_TAGVAR(allow_undefined_flag, $1)= _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no _LT_AC_TAGVAR(archive_cmds, $1)= _LT_AC_TAGVAR(archive_expsym_cmds, $1)= _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)= _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)= _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= _LT_AC_TAGVAR(thread_safe_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_minus_L, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown _LT_AC_TAGVAR(hardcode_automatic, $1)=no _LT_AC_TAGVAR(module_cmds, $1)= _LT_AC_TAGVAR(module_expsym_cmds, $1)= _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list _LT_AC_TAGVAR(include_expsyms, $1)= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. _LT_AC_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. dnl Note also adjust exclude_expsyms for C++ above. extract_expsyms_cmds= # Just being paranoid about ensuring that cc_basename is set. _LT_CC_BASENAME([$compiler]) case $host_os in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac _LT_AC_TAGVAR(ld_shlibs, $1)=yes if test "$with_gnu_ld" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= fi supports_anon_versioning=no case `$LD -v 2>/dev/null` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[[3-9]]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then _LT_AC_TAGVAR(ld_shlibs, $1)=no cat <&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. EOF fi ;; amigaos*) _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we can't use # them. _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/'\'' -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; interix[[3-9]]*) _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | k*bsd*-gnu) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then tmp_addflag= case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; *) tmp_sharedflag='-shared' ;; esac _LT_AC_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test $supports_anon_versioning = yes; then _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ $echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi _LT_AC_TAGVAR(link_all_deplibs, $1)=no else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then _LT_AC_TAGVAR(ld_shlibs, $1)=no cat <&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. EOF elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) _LT_AC_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; sunos4*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; esac if test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no; then runpath_var= _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(always_export_symbols, $1)=yes _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported fi ;; aix[[4-9]]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | grep 'GNU' > /dev/null; then _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' else _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_AC_TAGVAR(archive_cmds, $1)='' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GCC" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_AC_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an empty executable. _LT_AC_SYS_LIBPATH_AIX _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared libraries. _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # see comment about different semantics on the GNU ld section _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; bsdi[[45]]*) _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic ;; cygwin* | mingw* | pw32*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='true' # FIXME: Should let the user specify the lib program. _LT_AC_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' _LT_AC_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`' _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; darwin* | rhapsody*) case $host_os in rhapsody* | darwin1.[[012]]) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress' ;; *) # Darwin 1.3 on if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' else case ${MACOSX_DEPLOYMENT_TARGET} in 10.[[012]]) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup' ;; esac fi ;; esac _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_automatic, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GCC" = yes ; then output_verbose_link_cmd='echo' _LT_AC_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" _LT_AC_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" _LT_AC_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" _LT_AC_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" else case $cc_basename in xlc*) output_verbose_link_cmd='echo' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring' _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ;; *) _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac fi ;; dgux*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; freebsd1*) _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; hpux9*) if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; hpux10*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes fi ;; hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac fi if test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; newsos6) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; openbsd*) if test -f /usr/libexec/ld.so; then _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' else case $host_os in openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ;; *) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ;; esac fi else _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; os2*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(archive_cmds, $1)='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' else _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' fi _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ;; solaris*) _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text' if test "$GCC" = yes; then wlarc='${wl}' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else wlarc='' _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. GCC discards it without `$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test "$GCC" = yes; then _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' else _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' fi ;; esac _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4) case $host_vendor in sni) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' _LT_AC_TAGVAR(hardcode_direct, $1)=no ;; motorola) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4.3*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes _LT_AC_TAGVAR(ld_shlibs, $1)=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac fi ]) AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no # # Do we need to explicitly link libc? # case "x$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)" in x|xyes) # Assume -lc should be added _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $_LT_AC_TAGVAR(archive_cmds, $1) in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. AC_MSG_CHECKING([whether -lc should be explicitly linked in]) $rm conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if AC_TRY_EVAL(ac_compile) 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) pic_flag=$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$_LT_AC_TAGVAR(allow_undefined_flag, $1) _LT_AC_TAGVAR(allow_undefined_flag, $1)= if AC_TRY_EVAL(_LT_AC_TAGVAR(archive_cmds, $1) 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) then _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no else _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes fi _LT_AC_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $rm conftest* AC_MSG_RESULT([$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)]) ;; esac fi ;; esac ])# AC_LIBTOOL_PROG_LD_SHLIBS # _LT_AC_FILE_LTDLL_C # ------------------- # Be careful that the start marker always follows a newline. AC_DEFUN([_LT_AC_FILE_LTDLL_C], [ # /* ltdll.c starts here */ # #define WIN32_LEAN_AND_MEAN # #include # #undef WIN32_LEAN_AND_MEAN # #include # # #ifndef __CYGWIN__ # # ifdef __CYGWIN32__ # # define __CYGWIN__ __CYGWIN32__ # # endif # #endif # # #ifdef __cplusplus # extern "C" { # #endif # BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved); # #ifdef __cplusplus # } # #endif # # #ifdef __CYGWIN__ # #include # DECLARE_CYGWIN_DLL( DllMain ); # #endif # HINSTANCE __hDllInstance_base; # # BOOL APIENTRY # DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved) # { # __hDllInstance_base = hInst; # return TRUE; # } # /* ltdll.c ends here */ ])# _LT_AC_FILE_LTDLL_C # _LT_AC_TAGVAR(VARNAME, [TAGNAME]) # --------------------------------- AC_DEFUN([_LT_AC_TAGVAR], [ifelse([$2], [], [$1], [$1_$2])]) # old names AC_DEFUN([AM_PROG_LIBTOOL], [AC_PROG_LIBTOOL]) AC_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) AC_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) AC_DEFUN([AM_PROG_LD], [AC_PROG_LD]) AC_DEFUN([AM_PROG_NM], [AC_PROG_NM]) # This is just to silence aclocal about the macro not being used ifelse([AC_DISABLE_FAST_INSTALL]) AC_DEFUN([LT_AC_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj, no) test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS) ]) AC_DEFUN([LT_AC_PROG_RC], [AC_CHECK_TOOL(RC, windres, no) ]) # Cheap backport of AS_EXECUTABLE_P and required macros # from Autoconf 2.59; we should not use $as_executable_p directly. # _AS_TEST_PREPARE # ---------------- m4_ifndef([_AS_TEST_PREPARE], [m4_defun([_AS_TEST_PREPARE], [if test -x / >/dev/null 2>&1; then as_executable_p='test -x' else as_executable_p='test -f' fi ])])# _AS_TEST_PREPARE # AS_EXECUTABLE_P # --------------- # Check whether a file is executable. m4_ifndef([AS_EXECUTABLE_P], [m4_defun([AS_EXECUTABLE_P], [AS_REQUIRE([_AS_TEST_PREPARE])dnl $as_executable_p $1[]dnl ])])# AS_EXECUTABLE_P # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_SED. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # # LT_AC_PROG_SED # -------------- # Check for a fully-functional sed program, that truncates # as few characters as possible. Prefer GNU sed if found. AC_DEFUN([LT_AC_PROG_SED], [AC_MSG_CHECKING([for a sed that does not truncate output]) AC_CACHE_VAL(lt_cv_path_SED, [# Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if AS_EXECUTABLE_P(["$as_dir/$lt_ac_prog$ac_exec_ext"]); then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done IFS=$as_save_IFS lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do test ! -f $lt_ac_sed && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough test $lt_ac_count -gt 10 && break lt_ac_count=`expr $lt_ac_count + 1` if test $lt_ac_count -gt $lt_ac_max; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done ]) SED=$lt_cv_path_SED AC_SUBST([SED]) AC_MSG_RESULT([$SED]) ]) # nls.m4 serial 3 (gettext-0.15) dnl Copyright (C) 1995-2003, 2005-2006 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. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2003. AC_PREREQ(2.50) AC_DEFUN([AM_NLS], [ AC_MSG_CHECKING([whether NLS is requested]) dnl Default is enabled NLS AC_ARG_ENABLE(nls, [ --disable-nls do not use Native Language Support], USE_NLS=$enableval, USE_NLS=yes) AC_MSG_RESULT($USE_NLS) AC_SUBST(USE_NLS) ]) # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- # # Copyright © 2004 Scott James Remnant . # # 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. # # 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. # PKG_PROG_PKG_CONFIG([MIN-VERSION]) # ---------------------------------- AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) fi if test -n "$PKG_CONFIG"; then _pkg_min_version=m4_default([$1], [0.9.0]) AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) PKG_CONFIG="" fi fi[]dnl ])# PKG_PROG_PKG_CONFIG # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # # Check to see whether a particular set of modules exists. Similar # to PKG_CHECK_MODULES(), but does not set variables or print errors. # # # Similar to PKG_CHECK_MODULES, make sure that the first instance of # this or PKG_CHECK_MODULES is called, or make sure to call # PKG_CHECK_EXISTS manually # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then m4_ifval([$2], [$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) # --------------------------------------------- m4_define([_PKG_CONFIG], [if test -n "$PKG_CONFIG"; then if test -n "$$1"; then pkg_cv_[]$1="$$1" else PKG_CHECK_EXISTS([$3], [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], [pkg_failed=yes]) fi else pkg_failed=untried fi[]dnl ])# _PKG_CONFIG # _PKG_SHORT_ERRORS_SUPPORTED # ----------------------------- AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi[]dnl ])# _PKG_SHORT_ERRORS_SUPPORTED # PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], # [ACTION-IF-NOT-FOUND]) # # # Note that if there is a possibility the first call to # PKG_CHECK_MODULES might not happen, you should be sure to include an # explicit call to PKG_PROG_PKG_CONFIG in your configure.ac # # # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl pkg_failed=no AC_MSG_CHECKING([for $1]) _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) _PKG_CONFIG([$1][_LIBS], [libs], [$2]) m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS and $1[]_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.]) if test $pkg_failed = yes; then _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$2"` else $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD ifelse([$4], , [AC_MSG_ERROR(dnl [Package requirements ($2) were not met: $$1_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. _PKG_TEXT ])], [AC_MSG_RESULT([no]) $4]) elif test $pkg_failed = untried; then ifelse([$4], , [AC_MSG_FAILURE(dnl [The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. _PKG_TEXT To get pkg-config, see .])], [$4]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) ifelse([$3], , :, [$3]) fi[]dnl ])# PKG_CHECK_MODULES # po.m4 serial 15 (gettext-0.17) dnl Copyright (C) 1995-2007 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. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2003. AC_PREREQ(2.50) dnl Checks for all prerequisites of the po subdirectory. AC_DEFUN([AM_PO_SUBDIRS], [ AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl AC_REQUIRE([AM_PROG_MKDIR_P])dnl defined by automake AC_REQUIRE([AM_NLS])dnl dnl Release version of the gettext macros. This is used to ensure that dnl the gettext macros and po/Makefile.in.in are in sync. AC_SUBST([GETTEXT_MACRO_VERSION], [0.17]) dnl Perform the following tests also if --disable-nls has been given, dnl because they are needed for "make dist" to work. dnl Search for GNU msgfmt in the PATH. dnl The first test excludes Solaris msgfmt and early GNU msgfmt versions. dnl The second test excludes FreeBSD msgfmt. AM_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, [$ac_dir/$ac_word --statistics /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1 && (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], :) AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) dnl Test whether it is GNU msgfmt >= 0.15. changequote(,)dnl case `$MSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) MSGFMT_015=: ;; *) MSGFMT_015=$MSGFMT ;; esac changequote([,])dnl AC_SUBST([MSGFMT_015]) changequote(,)dnl case `$GMSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) GMSGFMT_015=: ;; *) GMSGFMT_015=$GMSGFMT ;; esac changequote([,])dnl AC_SUBST([GMSGFMT_015]) dnl Search for GNU xgettext 0.12 or newer in the PATH. dnl The first test excludes Solaris xgettext and early GNU xgettext versions. dnl The second test excludes FreeBSD xgettext. AM_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, [$ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1 && (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], :) dnl Remove leftover from FreeBSD xgettext call. rm -f messages.po dnl Test whether it is GNU xgettext >= 0.15. changequote(,)dnl case `$XGETTEXT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) XGETTEXT_015=: ;; *) XGETTEXT_015=$XGETTEXT ;; esac changequote([,])dnl AC_SUBST([XGETTEXT_015]) dnl Search for GNU msgmerge 0.11 or newer in the PATH. AM_PATH_PROG_WITH_TEST(MSGMERGE, msgmerge, [$ac_dir/$ac_word --update -q /dev/null /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1], :) dnl Installation directories. dnl Autoconf >= 2.60 defines localedir. For older versions of autoconf, we dnl have to define it here, so that it can be used in po/Makefile. test -n "$localedir" || localedir='${datadir}/locale' AC_SUBST([localedir]) dnl Support for AM_XGETTEXT_OPTION. test -n "${XGETTEXT_EXTRA_OPTIONS+set}" || XGETTEXT_EXTRA_OPTIONS= AC_SUBST([XGETTEXT_EXTRA_OPTIONS]) AC_CONFIG_COMMANDS([po-directories], [[ for ac_file in $CONFIG_FILES; do # Support "outfile[:infile[:infile...]]" case "$ac_file" in *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; esac # PO directories have a Makefile.in generated from Makefile.in.in. case "$ac_file" in */Makefile.in) # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac # Treat a directory as a PO directory if and only if it has a # POTFILES.in file. This allows packages to have multiple PO # directories under different names or in different locations. if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then rm -f "$ac_dir/POTFILES" test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" POMAKEFILEDEPS="POTFILES.in" # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend # on $ac_dir but don't depend on user-specified configuration # parameters. if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then # The LINGUAS file contains the set of available languages. if test -n "$OBSOLETE_ALL_LINGUAS"; then test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" fi ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"` # Hide the ALL_LINGUAS assigment from automake < 1.5. eval 'ALL_LINGUAS''=$ALL_LINGUAS_' POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS" else # The set of available languages was given in configure.in. # Hide the ALL_LINGUAS assigment from automake < 1.5. eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS' fi # Compute POFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) # Compute UPDATEPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) # Compute DUMMYPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) # Compute GMOFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) case "$ac_given_srcdir" in .) srcdirpre= ;; *) srcdirpre='$(srcdir)/' ;; esac POFILES= UPDATEPOFILES= DUMMYPOFILES= GMOFILES= for lang in $ALL_LINGUAS; do POFILES="$POFILES $srcdirpre$lang.po" UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" DUMMYPOFILES="$DUMMYPOFILES $lang.nop" GMOFILES="$GMOFILES $srcdirpre$lang.gmo" done # CATALOGS depends on both $ac_dir and the user's LINGUAS # environment variable. INST_LINGUAS= if test -n "$ALL_LINGUAS"; then for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "$LINGUAS"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then INST_LINGUAS="$INST_LINGUAS $presentlang" fi done fi CATALOGS= if test -n "$INST_LINGUAS"; then for lang in $INST_LINGUAS; do CATALOGS="$CATALOGS $lang.gmo" done fi test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do if test -f "$f"; then case "$f" in *.orig | *.bak | *~) ;; *) cat "$f" >> "$ac_dir/Makefile" ;; esac fi done fi ;; esac done]], [# Capture the value of obsolete ALL_LINGUAS because we need it to compute # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it # from automake < 1.5. eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"' # Capture the value of LINGUAS because we need it to compute CATALOGS. LINGUAS="${LINGUAS-%UNSET%}" ]) ]) dnl Postprocesses a Makefile in a directory containing PO files. AC_DEFUN([AM_POSTPROCESS_PO_MAKEFILE], [ # When this code is run, in config.status, two variables have already been # set: # - OBSOLETE_ALL_LINGUAS is the value of LINGUAS set in configure.in, # - LINGUAS is the value of the environment variable LINGUAS at configure # time. changequote(,)dnl # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac # Find a way to echo strings without interpreting backslash. if test "X`(echo '\t') 2>/dev/null`" = 'X\t'; then gt_echo='echo' else if test "X`(printf '%s\n' '\t') 2>/dev/null`" = 'X\t'; then gt_echo='printf %s\n' else echo_func () { cat < "$ac_file.tmp" if grep -l '@TCLCATALOGS@' "$ac_file" > /dev/null; then # Add dependencies that cannot be formulated as a simple suffix rule. for lang in $ALL_LINGUAS; do frobbedlang=`echo $lang | sed -e 's/\..*$//' -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'` cat >> "$ac_file.tmp" < /dev/null; then # Add dependencies that cannot be formulated as a simple suffix rule. for lang in $ALL_LINGUAS; do frobbedlang=`echo $lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$/-Latn/' -e 's/@cyrillic$/-Cyrl/' -e 's/^sr-SP$/sr-SP-Latn/' -e 's/^uz-UZ$/uz-UZ-Latn/'` cat >> "$ac_file.tmp" <> "$ac_file.tmp" <, 1996. AC_PREREQ(2.50) # Search path for a program which passes the given test. dnl AM_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) AC_DEFUN([AM_PATH_PROG_WITH_TEST], [ # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "$2", so it can be a program name with args. set dummy $2; ac_word=[$]2 AC_MSG_CHECKING([for $ac_word]) AC_CACHE_VAL(ac_cv_path_$1, [case "[$]$1" in [[\\/]]* | ?:[[\\/]]*) ac_cv_path_$1="[$]$1" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in ifelse([$5], , $PATH, [$5]); do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then echo "$as_me: trying $ac_dir/$ac_word..." >&AS_MESSAGE_LOG_FD if [$3]; then ac_cv_path_$1="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" dnl If no 4th arg is given, leave the cache variable unset, dnl so AC_PATH_PROGS will keep looking. ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" ])dnl ;; esac])dnl $1="$ac_cv_path_$1" if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then AC_MSG_RESULT([$]$1) else AC_MSG_RESULT(no) fi AC_SUBST($1)dnl ]) # Copyright (C) 2002, 2003, 2005, 2006, 2007 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.10' 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.10.1], [], [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 AC_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.10.1])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(AC_AUTOCONF_VERSION)]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001, 2003, 2005 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], [dnl Rely on autoconf to set up CDPATH properly. AC_PREREQ([2.50])dnl # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006 # 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. # serial 8 # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl ifelse([$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 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, 2000, 2001, 2002, 2003, 2004, 2005, 2006 # 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. # serial 9 # 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", "GCJ", or "OBJC". # 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 ifelse([$1], CC, [depcc="$CC" am_compiler_list=], [$1], CXX, [depcc="$CXX" am_compiler_list=], [$1], OBJC, [depcc="$OBJC" 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'. 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 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 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in 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 ;; none) break ;; esac # 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. if depmode=$depmode \ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} 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 sub/conftest.${OBJEXT-o} 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, [ --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 # 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. #serial 3 # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [for mf in $CONFIG_FILES; 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"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //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' -e 's/\$U/'"$U"'/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"]) ]) # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 # 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. # serial 8 # AM_CONFIG_HEADER is obsolete. It has been replaced by AC_CONFIG_HEADERS. AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2008 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. # serial 13 # 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. # 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.60])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], [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], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, [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) AM_PROG_INSTALL_SH AM_PROG_INSTALL_STRIP AC_REQUIRE([AM_PROG_MKDIR_P])dnl # We need awk for the "check" target. 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)], [define([AC_PROG_CC], defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES(CXX)], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES(OBJC)], [define([AC_PROG_OBJC], defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl ]) ]) # 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, 2003, 2005 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 install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} AC_SUBST(install_sh)]) # Copyright (C) 2003, 2005 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. # serial 2 # 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])]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005 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. # serial 3 # 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 done .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 # We grep out `Entering directory' and `Leaving directory' # messages which can occur if `w' ends up in MAKEFLAGS. # In particular we don't look at `^make:' because GNU make might # be invoked under some other name (usually "gmake"), in which # case it prints its new name instead of `make'. if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then am__include=include am__quote= _am_result=GNU fi # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then am__include=.include am__quote="\"" _am_result=BSD fi 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, 1999, 2000, 2001, 2003, 2004, 2005 # 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. # serial 5 # 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 supports --run. # If it does, 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 test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= AC_MSG_WARN([`missing' script is too old or missing]) fi ]) # Copyright (C) 2003, 2004, 2005, 2006 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_MKDIR_P # --------------- # Check for `mkdir -p'. AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, dnl while keeping a definition of mkdir_p for backward compatibility. dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of dnl Makefile.ins that do not define MKDIR_P, so we do our own dnl adjustment using top_builddir (which is defined more often than dnl MKDIR_P). AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl case $mkdir_p in [[\\/$]]* | ?:[[\\/]]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac ]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005 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. # serial 3 # _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], [AC_FOREACH([_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])]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 # 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. # serial 4 # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Just in case sleep 1 echo timestamp > conftest.file # 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 ( 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 rm -f conftest.file 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 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)]) # Copyright (C) 2001, 2003, 2005 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 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]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004, 2005 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. # serial 2 # _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. AM_MISSING_PROG([AMTAR], [tar]) m4_if([$1], [v7], [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], [m4_case([$1], [ustar],, [pax],, [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' _am_tools=${am_cv_prog_tar_$1-$_am_tools} # Do not fold the above two line into one, because Tru64 sh and # Solaris sh will not grok spaces in the rhs of `-'. 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 photoprint-0.4.2-pre2/pp_layout_carousel_pageview.h0000644000175000017500000000400111101462351017450 00000000000000#ifndef __PP_LAYOUT_CAROUSEL_PAGEVIEW_H__ #define __PP_LAYOUT_CAROUSEL_PAGEVIEW_H__ #include #include #include #include #include #include "pixbufthumbnail/egg-pixbuf-thumbnail.h" #include "layout_carousel.h" #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ #define PP_LAYOUT_CAROUSEL_PAGEVIEW(obj) GTK_CHECK_CAST (obj, pp_layout_carousel_pageview_get_type (), pp_Layout_Carousel_PageView) #define PP_LAYOUT_CAROUSEL_PAGEVIEW_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, pp_layout_carousel_pageview_get_type (), pp_Layout_Carousel_PageViewClass) #define PP_IS_PAGEVIEW(obj) GTK_CHECK_TYPE (obj, pp_layout_carousel_pageview_get_type ()) typedef struct _pp_Layout_Carousel_PageView pp_Layout_Carousel_PageView; typedef struct _pp_Layout_Carousel_PageViewClass pp_Layout_Carousel_PageViewClass; struct _pp_Layout_Carousel_PageView { GtkWidget widget; /* Button currently pressed or 0 if none */ guint8 button; /* ID of update timer, or 0 if none */ guint32 timer; Layout_Carousel *layout; Layout_ImageInfo *selected; // GList *imagelist; int left, top; int width, height; double scale; // Dragging state bool dragging; int init_x; int init_y; LayoutRectangle_Alignment init_hpan; LayoutRectangle_Alignment init_vpan; }; struct _pp_Layout_Carousel_PageViewClass { GtkWidgetClass parent_class; void (*changed)(pp_Layout_Carousel_PageView *pv); void (*reflow)(pp_Layout_Carousel_PageView *pv); void (*selection_changed)(pp_Layout_Carousel_PageView *pv); void (*popupmenu)(pp_Layout_Carousel_PageView *pv); }; GtkWidget* pp_layout_carousel_pageview_new(Layout_Carousel *layout); GtkType pp_layout_carousel_pageview_get_type(void); void pp_layout_carousel_pageview_set_page(pp_Layout_Carousel_PageView *pv,int page); void pp_layout_carousel_pageview_refresh(pp_Layout_Carousel_PageView *pv); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* __PP_LAYOUT_CAROUSEL_PAGEVIEW_H__ */ photoprint-0.4.2-pre2/Makefile.am0000644000175000017500000000676211317517745013574 00000000000000# Makefile.am # RL 28/11/04 SUBDIRS = po support imagesource imageutils miscwidgets stpui_widgets stp_support gp_cppsupport pixbufthumbnail \ splashscreen profilemanager effects borders shortcuts localedir=$(datadir)/locale AM_CXXFLAGS = -DLOCALEDIR=\"$(localedir)\" -Wall -I./support/ -I./miscwidgets -I./imagesource/ -I./splashscreen -I./profilemanager -I./effects \ $(LCMS_CFLAGS) $(GP_CFLAGS) $(GTK2_CFLAGS) bin_PROGRAMS = photoprint photoprint_SOURCES = \ dialogs.cpp \ dialogs.h \ layoutdb.h \ layout.cpp \ layout.h \ layout_imageinfo.cpp \ layout_imageinfo.h \ layout_carousel.cpp \ layout_carousel.h \ layout_nup.cpp \ layout_nup.h \ layout_poster.cpp \ layout_poster.h \ layout_single.cpp \ layout_single.h \ histogram.cpp \ histogram.h \ photoprint.cpp \ photoprint_state.cpp \ photoprint_state.h \ pp_cms.cpp \ pp_cms.h \ pp_imagecontrol.cpp \ pp_imagecontrol.h \ pp_mainwindow.cpp \ pp_mainwindow.h \ pp_menu_file.cpp \ pp_menu_file.h \ pp_menu_edit.cpp \ pp_menu_edit.h \ pp_menu_layout.cpp \ pp_menu_layout.h \ pp_menu_image.cpp \ pp_menu_image.h \ pp_menu_options.cpp \ pp_menu_options.h \ pp_menu_shortcuts.cpp \ pp_menu_shortcuts.h \ pp_menu_help.cpp \ pp_menu_help.h \ pp_layout_carousel.cpp \ pp_layout_carousel.h \ pp_layout_carousel_pageview.cpp \ pp_layout_carousel_pageview.h \ pp_layout_nup.cpp \ pp_layout_nup.h \ pp_layout_nup_pageview.cpp \ pp_layout_nup_pageview.h \ pp_layout_poster.cpp \ pp_layout_poster.h \ pp_layout_poster_pageview.cpp \ pp_layout_poster_pageview.h \ pp_layout_single.cpp \ pp_layout_single.h \ pp_layout_single_pageview.cpp \ pp_layout_single_pageview.h \ pp_histogram.cpp \ pp_histogram.h \ pp_pageextent.cpp \ pp_pageextent.h \ pp_scaling.cpp \ pp_scaling.h \ pp_sigcontrol.cpp \ pp_sigcontrol.h \ pp_units.cpp \ pp_units.h \ pp_imageinfo.cpp \ pp_imageinfo.h \ printpreview.cpp \ printpreview.h \ cmtransformworker.h \ gettext.h LDADD = \ effects/libppeffects.la \ imagesource/libimagesource.la \ imageutils/libimageutils.la \ miscwidgets/libmiscwidgets.la \ profilemanager/libprofilemanager.la \ support/libsupport.la \ gp_cppsupport/libgp_cppsupport.la \ stpui_widgets/libstpui_widgets.la \ stp_support/libstp_support.la \ pixbufthumbnail/libpixbufthumbnail.la \ splashscreen/libsplashscreen.la \ $(LIBINTL) $(LIBM_LIBS) $(GETOPT_LIBS) $(JPEG_LIBS) $(PNM_LIBS) $(TIFF_LIBS) $(LCMS_LIBS) $(GP_LIBS) $(GTK2_LIBS) check_PROGRAMS = menucheck carouselcheck misccheck menucheck_SOURCES = menucheck.cpp carouselcheck_SOURCES = carouselcheck.cpp misccheck_SOURCES = misccheck.cpp imagesource/libimagesource.la: cd imagesource $(MAKE) libimagesource.la support/libsupport.la: cd support $(MAKE) libsupport.la profilemanager/libprofilemanager.la: cd profilemanager $(MAKE) libprofilemanager.la stpui_widgets/libstpui_widgets.la: cd stpui_widgets $(MAKE) libstpui_widgets.la stp_support/libstp_support.la: cd stp_support $(MAKE) libstp_support.la gp_cppsupport/libgp_cppsupport.la: cd gp_cppsupport $(MAKE) libgp_cppsupport.la pixbufthumbnail/libpixbufthumbnail.la: cd pixbufthumbnail $(MAKE) libpixbufthumbnail.la effects/libppeffects.la: cd effects $(MAKE) libppeffects.la splashscreen/libsplashscreen.la: cd splashscreen $(MAKE) libsplashscreen.la desktopdir = $(datadir)/applications desktop_DATA = fotoprint.desktop icondir = $(datadir)/icons/hicolor/48x48/apps/ icon_DATA = fotoprint.png EXTRA_DIST = COPYING README INSTALL TODO photoprint.1 fotoprint.desktop fotoprint.png photoprint-0.4.2-pre2/pp_menu_help.cpp0000644000175000017500000000254111306464275014703 00000000000000#include #include #include #include "pp_mainwindow.h" #include "dialogs.h" #include "miscwidgets/generaldialogs.h" #include "progressbar.h" #include "pp_menu_help.h" #include "config.h" #include "gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) using namespace std; static void help_about(GtkAction *action,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; About_Dialog(GTK_WINDOW(mw)); } static GtkActionEntry helpmenu_entries[] = { { "HelpMenu", NULL, N_("_Help") }, { "About", NULL, N_("About..."), NULL, N_("Some information about PhotoPrint"), G_CALLBACK(help_about) }, }; static const char *helpmenu_ui_description = "" " " " " " " " " " " ""; void BuildHelpMenu(void *userdata,GtkUIManager *ui_manager) { GError *error=NULL; GtkActionGroup *action_group; action_group = gtk_action_group_new ("HelpMenuActions"); gtk_action_group_set_translation_domain(action_group,PACKAGE); gtk_action_group_add_actions (action_group, helpmenu_entries, G_N_ELEMENTS (helpmenu_entries), userdata); gtk_ui_manager_insert_action_group (ui_manager, action_group, 0); if (!gtk_ui_manager_add_ui_from_string (ui_manager, helpmenu_ui_description, -1, &error)) throw error->message; } photoprint-0.4.2-pre2/misccheck.cpp0000644000175000017500000000204411266400036014145 00000000000000#include #include #include "imagesource/imagesource_util.h" #include "imagesource/pixbuf_from_imagesource.h" #include "imagesource/imagesource_montage.h" #include "imagesource/imagesource_segmentmask.h" #include "imagesource/imagesource_mask.h" #include "miscwidgets/pixbufview.h" #include "support/debug.h" #include "support/signature.h" #include "stpui_widgets/units.h" #include "config.h" #include "gettext.h" #define _(x) gettext(x) using namespace std; int main(int argc,char**argv) { gtk_init(&argc,&argv); try { GtkWidget *win=gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_window_set_title (GTK_WINDOW (win), _("PixBufView Test")); gtk_signal_connect (GTK_OBJECT (win), "delete_event", (GtkSignalFunc) gtk_main_quit, NULL); Signature sig; sig.SetPaperSize(595,842); // GtkWidget *sc=pp_sigcontrol_new(&sig,UNIT_MILLIMETERS); // gtk_container_add(GTK_CONTAINER(win),sc); gtk_widget_show_all(win); gtk_main(); } catch(const char *err) { Debug[ERROR] << "Error: " << err << endl; } return(0); } photoprint-0.4.2-pre2/layout_carousel.h0000644000175000017500000000460511244336107015103 00000000000000#ifndef LAYOUT_CAROUSEL_H #define LAYOUT_CAROUSEL_H #include #include #include #include #include "support/circlemontage.h" #include "support/pageextent.h" #include "imagesource/imagesource.h" #include "gp_cppsupport/gprinter.h" #include "layoutdb.h" #include "layout.h" class Layout_Carousel_ImageInfo; class PhotoPrint_State; class Layout_Carousel : public Layout { public: Layout_Carousel(PhotoPrint_State &state,Layout *oldlayout=NULL); virtual ~Layout_Carousel(); const char *GetType(); int GetCapabilities(); int AddImage(const char *filename,bool allowcropping=true,PP_ROTATION rotation=PP_ROTATION_AUTO); void CopyImage(Layout_ImageInfo *ii); void PlaceImage(const char *filename); int FreeSlots(); void Reflow(); virtual void LayoutToDB(LayoutDB &db); virtual void DBToLayout(LayoutDB &db); virtual GtkWidget *CreateWidget(); virtual void RefreshWidget(GtkWidget *widget); virtual ImageSource *GetImageSource(int page,CMColourDevice target=CM_COLOURDEVICE_PRINTER, CMTransformFactory *factory=NULL,int res=0,bool completepage=false); Layout_Carousel_ImageInfo *ImageAt(int page, int segment); Layout_ImageInfo *ImageAtCoord(int x,int y); virtual void (*SetUnitFunc())(GtkWidget *wid,enum Units unit); int CountImages(int page); Layout_Carousel_ImageInfo *GetNthImage(int page,int n); void FlushPreview(); void DrawPreview(GtkWidget *widget,int xpos,int ypos,int width,int height); void SetSegments(int segs); int GetSegments(); void SetOverlap(int overlap); int GetOverlap(); void SetAngleOffset(int ao); int GetAngleOffset(); void SetInnerRadius(int ir); int GetInnerRadius(); private: int segments; int overlap; int angleoffset; int innerradius; void RenderPreview(int width,int height); GdkPixbuf *preview; int prevwidth,prevheight; friend class Layout_Carousel_ImageInfo; }; class Layout_Carousel_ImageInfo : public Layout_ImageInfo { public: Layout_Carousel_ImageInfo(Layout_Carousel &layout,const char *filename,int page,bool allowcropping=false, PP_ROTATION rotation=PP_ROTATION_AUTO); Layout_Carousel_ImageInfo(Layout_Carousel &layout,Layout_ImageInfo *ii,int page); virtual ~Layout_Carousel_ImageInfo(); void DrawThumbnail(GtkWidget *widget,int xpos,int ypos,int width,int height); void FlushThumbnail(); virtual LayoutRectangle *GetBounds(); int segment; private: friend class Layout_Carousel; }; #endif photoprint-0.4.2-pre2/pp_menu_edit.h0000644000175000017500000000025411101462351014326 00000000000000#ifndef PP_MENU_EDIT_H #define PP_MENU_EDIT_H #include #include void BuildEditMenu(void *userdata,GtkUIManager *ui_manager); #endif photoprint-0.4.2-pre2/pp_histogram.h0000644000175000017500000000241511221450641014355 00000000000000#ifndef __PP_HISTOGRAM_H__ #define __PP_HISTOGRAM_H__ #include #include #include #include #include #include #include #include "layout.h" G_BEGIN_DECLS #define PP_HISTOGRAM_TYPE (pp_histogram_get_type()) #define PP_HISTOGRAM(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PP_HISTOGRAM_TYPE, pp_Histogram)) #define PP_HISTOGRAM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PP_HISTOGRAM_TYPE, pp_HistogramClass)) #define IS_PP_HISTOGRAM(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PP_HISTOGRAM_TYPE)) #define IS_PP_HISTOGRAM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PP_HISTOGRAM_TYPE)) typedef struct _pp_Histogram pp_Histogram; typedef struct _pp_HistogramClass pp_HistogramClass; struct Signature; class Thread; struct _pp_Histogram { GtkExpander expander; GtkWidget *hist; GtkWidget *scrollwin; // ThreadFunction *thread; Layout *layout; }; struct _pp_HistogramClass { GtkExpanderClass parent_class; void (*changed)(pp_Histogram *ii); }; GType pp_histogram_get_type (void); GtkWidget* pp_histogram_new (Layout *layout); void pp_histogram_refresh(pp_Histogram *ob); void pp_histogram_change_image(pp_Histogram *ob); G_END_DECLS #endif /* __PP_HISTOGRAM_H__ */ photoprint-0.4.2-pre2/pp_units.h0000644000175000017500000000232011101462351013513 00000000000000#ifndef __PP_UNITS_H__ #define __PP_UNITS_H__ #include #include #include #include #include #include #include #include "lcmswrapper.h" #include "stpui_widgets/units.h" G_BEGIN_DECLS #define PP_UNITS_TYPE (pp_units_get_type()) #define PP_UNITS(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PP_UNITS_TYPE, pp_Units)) #define PP_UNITS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PP_UNITS_TYPE, pp_UnitsClass)) #define IS_PP_UNITS(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PP_UNITS_TYPE)) #define IS_PP_UNITS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PP_UNITS_TYPE)) typedef struct _pp_Units pp_Units; typedef struct _pp_UnitsClass pp_UnitsClass; struct _pp_Units { GtkVBox vbox; GtkWidget *unitselector; }; struct _pp_UnitsClass { GtkVBoxClass parent_class; void (*changed)(pp_Units *units); }; GType pp_units_get_type (void); GtkWidget* pp_units_new (); void pp_units_refresh(pp_Units *ob); void pp_units_set_unit(pp_Units *ob,enum Units unit); enum Units pp_units_get_unit(pp_Units *ob); enum Units pp_units_run_dialog(enum Units unit,GtkWindow *parent); G_END_DECLS #endif /* __PP_UNITS_H__ */ photoprint-0.4.2-pre2/fotoprint.png0000644000175000017500000001344111101462351014241 00000000000000‰PNG  IHDR00Wù‡bKGDÿÿÿ ½§“ pHYs  ÒÝ~ütIME×#¾~§ÅtEXtCommentCreated with The GIMPïd%n…IDATxÚ}zy˜UÕ•ïoŸáÎSÝš¨¢A PKQP0Am Mì(¨m:mc:駉/tìî|t^bÚ ­I4j«1¼´‘ -HdžŠ©Æ[ã­;çžiýçòNn“w¿o}÷žsví³ÖoÿÖÚk¯U¤¯O´ ŽH8ÿ!˜KTç[r„8cî\{(®y¸#Ùy&!Î=âº&®yq‘ßÂu-àL¨ºJ®I<¨#Üõ¼Öî!\óÉ1@¹ˆ þøã†HÒÅ ç”'„’ 0 ¡8/ð¸^ú§Œ¨N »P–jV¡j ê2Ž»”UkÀ/¢ü0غõµæÛnÛ˜²m€@V@dbðìIòɇ/Bq½\u!âFØ ÀvŒ¨"RE¹:Ž»ž{\Ï««ã6Œ»€/B'QÈ[·þ|c{ÇÌw–-[61Ô?Hv½ûïÒÀé1=5È^~£EúúD»óÇ*Ÿ£€äò‰**¶#¿#nC© ŸK9ꌩÆz¨º^VüþãüÄy&©*¤Ñѱº—^úæß«²r¢§_=uòcvIï&=—N°P(L?uãZ¡;ŠU•PÔe—U¥m×XÙW¥s)ës”…s¯º’UÊJ„À»{÷ý×­Y³ewUiY‘b®"íxóY϶wÿë®õ·Üê;wî\ï±Óò‰nþúaŸUôn¸ù!ÉÒ¡Ãûm@Ô™Ôtq–:ˆyj–·j„å(§ºŒ…k|Ž—>—Ë–¥Õuu¥o.kG uu—WÊ û?xÖóÁ;Ï©ªÇOŸì_¸ô†;÷ôô`d$Aö>u×ÊÕ·Œë›2;a€WÑ&BІkéUGiÙ…4q °jЖ%ܪXÌð(œ!茧.ãB $ ÞTêg×ww/÷O'Ÿ¿ñ¹½}ô“ß㲫×ê³æ­´OÝî7•¶ë׬¹‰2>>&²ÙLà?ú×Õ?¸õÚ­C;N¶'ÏIц†¢äPE,   @ƒ~Õ ½ŽÔˆ»BcHëe£yûSÏ^'):sÅÄALV÷úÎÿ>qì×s¹8|U$2Ÿ„£bÆÂ«ý‹6þåìÔïÌŸ¿{Áª™z¥ ‡CIJ, @2˜IÏž%wŒÏˆÏ#rø½XŒ+ŽâR Êa‡†‹÷>Gùj%ÎsÀKd„'vXš6.—$ˆ€,!(+` àÇö=¾ç§ž3G¶ù¯»«{Eï’/©~+dân}xMÐÓžþ—§^O*ľ§HNMáä‰"^_éd’0Æ&B/ÿìÀü\¾à1l£ÐÝZ/K.*\@™ A„´hwèUõ Ýv :4yu׬Ž©#×yˆ œ=ØðóÜßþÍž9oÿÇ=ñŽÙŸFó‚ÎΞޥÑúúkR(N"“Õ¤}‡__ÒÐÜ)Û”+koº1S(Ì_<÷^}å 'd@˜¦mÍ#‡£P/Sª¸#K@‘á=Ôw"Þ»`QŦ6-ÛAœˆ8†¨ eúàö}³Cµ¹®»…œ}ãý•ßúÉãSã Üù¹ïÚg~×øýkßò‹]¯…Z/Õg†C­DUÂ0 aYJEŽá‘á–‡þjU<™IëÛ/õß~ûŸìÛ·wî‰'â¶eE"Å€Œ1‹1 Œq-›bž§Â —ÓRXªù©×^Z÷Ò“ß}ŸÈB\ØE%'Z™² UV—TxÇFoï]z庫$_,€¨?¹Ê{oר5Ͼñë'Â7o|Ôüì's{®õoùõÚ°a@i ¶UD©œG¹ÄˆÇT<õ]'OMèãoïô4×EõϬ]}0W¶c#‰‘`¾‡mRN)…"ÖÑÖf¬X¶ŒV÷ê.,K04‘Œøê{>:vèìÊžÞI‹" (Ið( <Š $'’ÚÎí?ŽŽ}¹‘]0ë¶?û|°qA;ô¬Ê-hgJm²(ÿ¯ï]Ô».¿|ÍÍáĵUJ²D ˜MaW,èe['N读nÓr»2˜UÃòÏ/Óí½ùcgü¥ƒ‡ÆÂÙ¯¶45ŠÑÑqÁe™SÓÂÔu®Ø3¾äöµôÒe—W2¥c§ŽÛ«×=\*—rtÇ[? H<^‚ŠŒØ om]Ä$Ñ4§=.Eƒ*ñyU#õÒX|]ý?üÛ`zfw/ÈkÊ×½¯~(q:´fÝÝrA+ütåñŒœ-]D¡P@ɪ€‚¾ãþW~ýÛðÑã}¡¾¡Q_º`)²¬¢œ±h4§ÅŠÆ=ŽäØ’Ã#0tƒ NÌ…a:©x²ÿé Œ’‡×> ¯[÷çö¯|Í?|ö#ŧpI9utûŒÃ=øCÃÈŒ/Õß¹þ2«½I˜CŰ¡ieœí?Þø…Õó®½ú²Â=7ò BõÉÁuUgÃýCrëwÖ#5’B:—%­@†‚ ׈™b¾ñ±‘ÌgXbtP$Î5rS+ZÙ\E²ýaÆIåª" ›RÆ„N‚*xSL!W®¶ûm#[Ï<XyÓÃ¥hýLy¬‡wÍm_ËÉõlç?öö^g}˜Ÿ5ÿrÏõW\BZëB$_®¾áqœÁôÄ(’©¢§¡¸[ ª½W.!3Ú$P‹ÀCÄ©=çvÆ@~4‹ÑôO¢h—‘ˆ¨DÊý“cÂÔ8É/P.[F>£SM·–wù,ÏkºDm¹!dIŒVbáx!ÖÒUˆ„dcÉÜ€ÝÓÐѹˆÞõÀO´‡ßTîù­§¹µÛ|ä[û2 ¯¼½¬Lf¹”Ô›¥1=é¿,D4è‡"I0)ƒaØÐ+&¨Y' ׿‘]Ú¹cûÈÜÅ+HG×|´_Õ¦cáÔñ7NFùˆP-n“¼]„.kÖ¨<©!Ï…¡ÄKÊã h½êjdÇ'á·˜˜Ðtz ›4à ¨´6„EevŒ§ÓËÖŒŽú׿Yš;Í~òÝ[‚»ÞAõüÖæ‡>ý©[ÌÚ*”BW,³,oÙúL‹ý´$ØùC¦eC3LØ– nÛˆ@^ÔyíljŒ¼»};Q=;qÅU×ÐÙ³ºÈÚˆ~øãc¾d:«+d™ZÑ…ß' tÃÉ›büÔgªGtwÎF[×\œž‰Étzj1Ra~õÙ‚,cÛo¾é{ìÁÖúh]‹U)i|٪ϖï}èż?¨¦p~þ¬"æî5·\¾L=z¦¨¶Ïè@gk3QUãé"NŒbhx¥ô$á‚" }ê,×*¶ðGdŸ×/M$ÎðñÄišÊ Ì+õ¢D…( ^±+ pPØzEü;Žè±`ÈìgŸìß#âñz,šßÂÛf4ZZiD:wr‡ÚÚ¾ˆ‡"M,1tX‰ÄÙ{cìæ?ÿê8 稜((Дî=Ô0/gNcl2‰ƒc¨XM˜HåÍåI¥T³-B`RD6+Š<E¢°æ¶Ùym3§yEãÔKê$C#°Åù:€à\ä’)áó(•}ÖÀÈ­on] {I|ü¨¤–w‹ÆÈ:vߣÛr¥|ªø½o,m?øÞ·C%öú;¿Y¸ýžoçAÀ >!.œú¬êÞEöíû÷LW{3Yüg?úg‘E= ÑÞÜHŠš†S§8{F! !ÉΘQ¢LáQƒEdªH^«µ«A—½Æ ’V %KÖ—ü‘6¨.b±õy}fÀ«Vb­z0Þ`EEÎX±dmöÝmÿÇ;xvŸW"„ÅâíÖôÔæ-¼¶tïCÏŸœ1ë’’mAp~á´g: ¥éˆ%ÿóc_xÜ,¢µE§¿ëŒ'™-IÉtãããHO$ ³àðèêµòD•PÛŠhjõ²r–³ ³YsKož=‡ÅB‚mšqšgÅ@‹=ÉbÖ„ncÞ¸åÍ|Âì³o‰Jv­óô;6ÿpðÌÑíÁb!é$¾é¡_äï}è©l0\Û†)r¦d”\§A À–/kô<~îÌZûxï bÑJ™t’ä““P¨!¼¬ÄYf˜B›¦”1¢¨*<<’UQxP1Ó,Òú†vN­¼¸´YðSýokmcÌÈÚíjÊ®CÊöF#ô KçŸü§w”S><ð‰¯ïÈÛÁí¯¯%›Izzz×?þ/FgϿ°,hœAs¥ùÕt^Pp ©°” a!œšÇ}èéš#̱sn,Å2)[š7%&É;ç Û¦Ä4 qòt?òE Õ•š+Ñ‹^t´5!'<äªÞ0Q/oíéäý‡>añRŽ…J±wÇá ®ecKV~.Ý÷»`E;©´´Í¡›þæÅé—-KX’– 8§?êÐ¥z*Tœ¡Tu`ÙóÞc™`c¤<„áé"N ¤å·7"§§ Ù *¡Œh¨‹ÆÆ:Q¶8O§§ùd&CÇŒEýÖ¬¦Úê q“sn– Bõ žÌ³ÏõõÑy‹z‹[^øvýoý0j™š 6åìuw~#}û¦,€£L)JB`@ÒáwµÎjWùTÙPJ“^|ô_A /ZÛæ€Œ@,©gâ,͈ÑLeÛB…Édz*‹T²@$Y„yóçñe×.gëo\ "­M(S¼÷Ñ~²9’ص_ä‡'‰,éß\ÑvݺGD¼¾Ó 1J)ºç--n~äå“ÝÔ¶áá ‡Õì¸èP¥ºÂeu¾"çû?~|á•7¡{îÕƒ —C¨&¸ÉÎáóªàL‚¦ ‘daV žšÎr*É”øs¬ã²2[Ü1GxDgvAÌ»8ÿ•¿ß: µð‘ËÒ¥é‘]‘Ôà›•ÿÅ_ÿ*}ïŸJBu)ÛFNpŽrº#ÕŠxÅ¡IÕq…sßvÕk™rèã·p¤ïò“d²î|àVq裗5 æÌÉdŠÔ‡…4–e$2§I44D¸–£ìæÛ>Åêâ%àÕ—ö`Û–g ¥‚CF¼¾@iõú¿Íœ=ù÷ð¾ÿôsÎYÛü;¦ïþâ«™`Hµ Áa:H W¹«•<ݹ®¸ê®RUyŒìÝÿÛŒ©”Ðwø¶½ün½wëðýoÿŒD}uø‹UóÈé3 ’4|dñº¹ðxUvôã$ÿ«GdÏÿäûŒUBå›n}"÷þ›ÿ:~p«_’!8ãŒrÎDSËÌò¦‡_8ݳdUÚ6¡0ÈHÈ8J*.¾[.©8[ª)áW+|Œœ:µ-sàÀn´|²½ƒCã¸ÿßÞåŸF:= f—IA›ÂoŸùOL%Jh7‹ævÊŽö÷‹¾#‡Ø²U›s÷>üüxS+Èk¿|*úÆ+_oàœqô¦ O¤>ó¹è¢6t!.p+rŽTWÁ]Ku;«áPIs•.«åz‰|ë‰M™=îÇêO_ ?ñ`ïÞè쉠­¥ …”„P{_yøi1 Ážü˧óÖèÐqÕãQ8 „¢zí®9W—ÏœÜ |ö¥KóùåßL´´Ï(Û&9GÖAš¸*%g%ŠÎµì*þÒ®WW£âÜzý ,[¿#ã PË•ŸYcXþOA–̤͘HíÁ–_lÇþÝ0¿õ£#‰HbçÛ[}[ž¤^+e.˜r®ï bÞ¹ùGC7¬¿oÒ¶Ó@ÙQ²ä2@®©11Wn#×Tº™ uÙUž·/Pèù—¿‘yû÷!CFScýÃI\ÚÜ€’ hzà:Òc'`Tt€0t_²¬üÀ£¯Ž—KúÂÓ÷ÌœNö{9µù•ËïžÞôÐ þ Z¤6 ÎÁtS Wcƒ;iÎ³Š«B(»zt´¦WG]þaäŽ;–gxY€2ÙR-MøedòYÄ~óŠk6hïü’WÅÎ)¸‚ÙT0ÑÔÚ©ÝÿÈ -ì]‘´LCÙ…ZÁÉa4W(¬¶¥L—Ç@îªÑ¢Fyîú®RË&wܺ*SÖ-˜ÌĬÙ]ðXeLF(ÚnþóO%T„¦>÷ÔƒMv½Ü@$ Ô6BØ·=>vû¦…@ÅÉÓ«hV_Rp(¤» ¨úå(]ÿFMî#»ê±n˜kOà ñ ¬¸iæ]Öˆ}¯ïÆÑû I …´÷Ñ{::ï}èW#^oCç>2fƒY ³ç][xà˯ µ´wdm?zÑ…$\ŽWUν’{3ªQŽ×´®DâÜ-äëÝš )²á²×á»ÞûyXõªD’T0FÁ8…‚ÁPغ뾧«×oNÚÊ”^Xþ¢CÝÕÑ´ç-¹r·Ì•ç®1ô"]Kþ'DµWG3~ù7“×®¾±Äxß‘£ä—?ÚØ™Kúº[9R9ŠtŽŠ%+?;¹ùo^ñTÚÐ8¿à˜Õm¸Rjo¡ìˆåŠUŠWïÁ¬qN^Ó-­EþµÁð˧îj*þÞ´aó„mWb8§85l¡»«KßüÕÏõô®œ¶ÎŸñ«»cu›×.Báºgºb:¯if»éîn½¨é1“ÅÅÿ[%¡ c6lËDCs—žžö €ÈŠÌ×nxbrÃ=O& ¥–0\ŠéÊSL—Â&«>`×좵QÆí¶ë÷ý[Aâü e’OF>;áfÏ_–ð+[Í­íYÛF޳ H.Gµ]Ê[®.gU1³&g5ˆ’‹Dáj¦×|µŠ_¸V€sj›ðúCÖÝŸfð†õ÷¥m ºi çÐÅ}:Ò]¹Šþ'¸Ëj”woHR UhM¸DÍ?u¸øRÀ¶tÑ{íÆ©û~©ßT-Ó€Á9 Ng51Ûv!^‹põŶ뾛>ÌE·sÒ‹8éÅä Set Colour Profile... dialog with no images selected. * Fixed another possible segfaul with default PPD file, in photoprint_state.cpp * More changes to mask routines, hopefully finally got min-is-white greyscale images and max-is-full-opacity alpha channels resolved. * Updated Russian translation - thanks to Alexandre Prokoudine. * Added ability to specify cell size for n-up layout * Added button to set the cell size to the natural size of the currently selected image * Fixed left/top margin issue for single layout (at last). * Fixed glitch in TIFF Loader - unitialized resolution variables if the image has no resolution set. * Fixed bug in .desktop file - now asks for Filenames (%F) not URIs (%U) * Solved problem with margins not being saved in Single, Poster and Carousel modes * Fixed a threading bug which caused stale CMSTransforms to be used when changing proof mode * Fixed drag-and-drop problem with KDE4. * Added mechanism for interruption to lengthy ImageSource operations. Added support for this to rotation routines. Improves the UI responsiveness in high-res-preview mode. * Fixed a deadlock / segfault condition which showed up under Win32. PhotoPrint-0.3.9 * Fixed a bug where vertical offsets and cropping were ignored when images are downsampled. * Threads code should now work on Win32 * SearchPath class renamed to avoid Win32 name clash * Resolved a couple of other Win32 build issues * Hopefully fixed custom page size bug for borderless mode * Fixed a resolution bug in the TIFF loader - a decimal point in the wrong place! * Hopefully fixed a papersize bug which afflicted papersizes not normally known to Gutenprint, but specified within a PPD file. * ProfileManager can now use the LCMS inbuilt sRGB profile. * Added physical size and resolution information to the ImageInfo widget. * Fixed a bug with high-res previews and rotation. * Effects are now copied when duplicating images. PhotoPrint-0.3.8b * Nasty exception-handling bug in the multi-threaded high-res previews fixed. * Single layout supports fractional percentage scaling. PhotoPrint-0.3.8 * Fixed some minor errors causing compilation problems in some instances. Thanks for Hubert Figuiere for pointing these out and supplying a patch. * Fixed broken compilation if libcups-devel is missing. * Configure script will now bail out if either libtiff or libjpeg is missing. * Added ability to save 16-bit data to TIFFSaver and export. * Reworked ProfileSelector to show Descriptive names rather than filenames, and to use tooltips rather than a separate label box to show ancillary information (i.e. the filename). * Vastly improved implementation of the Downsample filter - no longer results in dark edges when the reduction is slight, and no longer slightly darkens the whole image. * Fixed an FD leak in the ImageInfo widget that would lead to a crash after several hundred refreshes of the Manual and Poster layouts. * Added a pixbufview widget, which will be used to implement Print Preview. * BMP Loader can now handle 32-bit RGBA BMP files. * Print Setup dialog now hides inactive options, rather than merely greying them out. * Added copy constructor and better handling of virtual profiles to lcmswrapper * Support for high-resolution previews. The low-res previews are used initially for speed, then a sub-thread renders a high-resolution preview. Lots of "interesting" issues still to resolve with the introduction of multi-threading! * Created a new RWMutex similar to pthreads rwlocks but explicitly capable of dealing with recursion, and mixing lock types. * Effects are now properly applied to low-res previews before the final colour management transform - thus images rendered grey by the Desaturate widget now correctly mimic paper-white/grey in Simulate Print mode. * Images can now be duplicated on the page - both singly and to fill the page. * Improved performance of the high-resolution rendering thread system. * Scaling routines are now split into separate horizontal and vertical stages so the image processing engine can now use different filters for the two dimensions. * Previews with alpha channel now composite against the correct background colour (only makes a difference in Paper-simulation mode). * Support added to the Montage routine for RGBA colour space - needed to fix the above for the Carousel preview. PhotoPrint-0.3.7 * Hopefully fixed a papersize bug. * The Rotation and Allow Cropping settings are now stored in the preset files, and are thus now usable in batch mode. * Fixed a bug in the Dimension widgets when working in Points. * JPEG Export dialog no longer suggests "exported.tif" as a suitable filename! * JPEG Export dialog now contains a spin button for setting the export Quality. * Started reorganising User Interface. Layout controls are now more compact. Frames have been replaced with expanders, to allow the right-hand pane to be better used with image manipulation controls. * The background image preview now works again. * Added an ImageInfo widget which displays the filename, dimensions and applied colour profile of a selected image. * Now displays a dialog on preset loading if the printer queue specified in the preset doesn't exist, allowing the user to change queues in this case without resetting the printer settings. * Fixed a segfault upon 180-degree rotation of large images. * Fixed a problem with CMYK->RGB conversion in the thumbnail code. * Re-worked the EffectSelector widget, and embedded it into the main control panel. * Refactored a lot of the Effect-handling code, and created a new widget for the Colour Temperature changer. * Fixed a bug in the Carousel mode which sometimes prevented images being panned. * Unavailable image operations are now correctly greyed out in the popup menu. * Added Unsharp Mask effect. * Effects can now be applied to multiple images simultaneously. * Now uses CUPS, if available, to enumerate the available printer queues. PhotoPrint-0.3.6 * Fixed a segfault in the rotation routines. * Fixed a problem with the TIFF Loader - it now loads the first page of multi-page Images, instead of the second. This was causing the thumbnail rather than the main image to be used in some cases. * Portuguese (Brazilian) translation added. Many thanks for Krishnamurti Lelis Lima Vieira Nunes for this. Krishnamurti's translation will currently be used both by Brazilian and European Portuguese locales - if anyone would like to adjust the European translation to better suit the European style it would be much appreciated. * Fixed a bug which caused a floating-point exception at startup if there was no default.preset file. * Spanish translation added. Many thanks to Redy Rodriguez for this. PhotoPrint-0.3.5 * Can now fetch a profile attached to a display, using the _ICC_PROFILE atom described by Ross Burton's XICC specification. (X11 only - does anyone know how to do the equivalent under Win32?) * Embedded profiles in JPEG images are now used. * First stab at an effects dialog, allowing various modifications to an image on the page. Currently implemented: * Desaturate - replace each of RGB with (R+G+B)/3. * Cool/Warm - uses LCMS virtual profiles to adjust the colour temperature of an image. Very useful for black-and-white photographs, if you wish to print them cooler or warmer than your printer's neutral grey. (Yes, I know this dialog sucks - it will be replaced with something better in due course!) * Migrated the menus to GtkUIManager for easier translation. Menus are now translated. * Custom media sizes and roll papers are now supported - but not comprehensively tested. * Fixed bug in queue selector - custom command entry now shows up if custom command is the initial setting. * Now sets the LC_ALL environment variable to "C" before building the queue list, fixing a parsing problem of lpstat's output when localised. * Fixed a unit-handling bug in the dimension widget. * Full translations now included for Russian and French. Many many thanks to Alexandre Prokoudine and Séverin Lemaignan for their translation work. * Reduced the memory usage of N-up mode during printing and export. * Fixed 180-degree rotation bug * PPD file now fetched using CUPS when a Postscript-based queue is selected. * PrintingMode parameter now set to "Color" at print time. (Fixed segfault with PS driver). * Now includes a .desktop file (thanks to Alexandre Prokoudine) and icon. * Fixed profile selector - no longer bombards the user with file dialogs if no profiles are found on the system! PhotoPrint-0.3.4 * Now uses a high-quality DownSample filter when reducing images, unless Nearest Neighbour is specified. * Full print proofing is now possible - by way of a new option menu in the colour management dialog. The options for "Display Mode" are "Normal" - i.e no proofing, "Simulate Print" - a proofing transform, using Absolute Colorimetric, and "Simulate Print, Adapt White" - proof using Relative Colorimetric. * Fixed the call to wait() in stp_util/printerqueues_unix.c * The queue handler can now capture output to a file; the unix version can send the print data to a custom command. * New, general purpose queue selector widget - allows the user to select between the detected printer queues, and two special purpose queues - and (UNIX only). If the custom command option is selected, the widget will make a text entry available for entering the custom command. No entry is made available for the Print to File option - instead, a callback is used to fetch a filename at run-time - which PhotoPrint links to a file chooser in save mode. * Save dialog now prompts you to confirm before over-writing an existing file. * Fixed problem with inverted image masks! Thanks to Joel Swartz for the bug report. * Added tooltips to the IntentSelector widget, to provide a short description of each rendering intent. * Print proofing mode now adjusts the "paper white" as well as the images. * Internationalization support. Just a partial Russian translation so far - many, many thanks to Alexandre Prokoudine for this, and for prodding me into implementing i18n - the infrastructure is now largely present, and most of the strings are marked for translation. I'm bound to have missed some, though - so bug reports and more translations are *very* welcome! Note that currently the menus are marked for translation, but will not actually be translated. PhotoPrint-0.3.3 * Now builds and runs under Win32 (mingw) * Added new printer queue management routines in a new stp_support library This handles the unpleasant details of getting the raw data to the printer and abstracts away the differences between UNIX and Windows queue handling. * Modified the searchpath code to deal with Win32 path structure. * Modified the thumbnail code to deal with Win32 absolute paths. * Modified thumbnail code again - now uses g_path_is_absolute() * Created new routine to substitute the user's homedir into a path or filename. Will be used throughout to improve Win32 support. * Save Default menu item now stores the window geometry in the preset. * Now uses new GtkFileChooser instead of GtkFileSel - and hence requires GTK+ 2.4 or newer. * TIFF export is now much more flexible. There is now a dialog for setting the range of pages to be printed, the resolution, and optional output colour profile. * Layout view is now colour-managed. * TIFF Export now embeds the colour profile in the generated file. * Worked around a problem with the pipe-to-print-command code - should prevent alternate print jobs failing on some systems. * Can now tag images with a custom profile, and set the rendering intent individually. PhotoPrint-0.3.2 * Improved the performance of the ProfileSelector widget. The ProfileManager now caches the list of files, so the directories only have to be scanned once and the profiles only have to be opened once for filtering purposes, even when a dialog contains several ProfileSelectors. * Added preliminary support for PPDs when using the PostScript driver. * Reversed the direction of mask rotation to match the "Auto" image rotation. * Cancelling a print job no longer results in "Unable to generate print data" error message. * Cancelling a print job now actually *cancels* the job! * Fixed bug in imagesource_promote - Greyscale->CMYK promotion now works! * Cleaned up the Layouts' detection of the default colour space - used by the colour-space BW/Grey->RGB/CMYK "promotion" code. * Reverted loaders' black/white polarity, and reversed it in imagesource_promote. Greyscale and B/W images are now always treated as MinIsWhite - to match CMYK. * Hopefully fixed a segfault which showed up on some systems when there was no .photoprint directory. * Added support for "panning" cropped images - you can now click-and-drag a cropped image to re-frame it. * Added support to the n-up layout for a background image. * Added a path selector for background images. * pixbuf_from_imagesource() now supports CMYK images. * The ImageSelector widget (used for borders and backgrounds) now supports drag'n'dropping an image. Photoprint-0.3.1 * Fixed Greyscale BMPs printing in negative! * Possibly fixed bug that sometimes causes prints to be offset by about 3mm * Added a dedicated ProfileSelector widget * Created a PathEditor widget * Created an ImageSelector widget (used for selecting masks) * Added a new "Paths" dialog for selecting profile and border paths. * Batch mode works again * Reworked the ConfigFile code a little to ease the storing of paths. * Moved some of the more general-purpose and reusable UI code into support/ * Cleaned up a minor signal-handling bug in the poster layout. * Should now be able to do full-bleed printing when Borderless is selected in the print options. * pixbuf_from_imagesource can now cope with GreyScale images. PhotoPrint-0.3.0 * Fixed uncaught exception if a bad / non-existent mask filename is provided. * Fixed a problem with detecting libpnm on systems that don't have it linked to the math library. * Fixed a double-free in imagesource_lanczossinc.cpp. * Added new ProfileManager class. * Reworked all four layout classes to use the new ProfileManager. Much tidier now. * Added some much-needed comments to the hairier parts of the ProfileManager. * DeviceLink profiles are now supported. If the printer's profile is a DeviceLink, then ordinarily the default profile is ignored; images that have an embedded profile are transformed first to the default profile and then the printer profile is applied. Therefore, the default profile should be the same one used as a source profile when the DeviceLink was made. * PhotoPrint's version is now encoded into the preset files. The ProfileManager's parameters now have their own section within the preset file; PhotoPrint will automatically transfer these parameters from old presets, but newly-saved presets will now be incompatible with previous versions. PhotoPrint-0.2.9 * JPEG loader doesn't now initialise the decompressor until the first row is requested. I'd hoped this would improve performance when querying image dimensions and resolution, but it seems to make no appreciable difference. * Layout::TransferImages now accepts a Progress object, and is cancellable. * Greyscale images are now "promoted" to RGB. * Multi-selection now works in N-Up mode, and "Remove Image", "Allow Cropping" and "Allow Rotation" are correctly applied to all selected images. * New "Image" menu - duplicating the functionality of the context menus; allows settings to be applied en masse. * Context menu is no longer handled by the individual pageview widgets; instead they emit a "popupmenu" signal which the pp_layout_* widget propagates back to the pp_mainwindow widget. * Layouts now provide a bitwise mask defining their capabilities; this is used to enable and disable entries in the menus. * Layouts now support explicit rotation to 0, 90, 180 and 270 degrees, and also support "Auto" rotation - similar to the old behaviour. * Auto layout now supports shift-click multi-selection * Cleaned up multipage handling, which was failing to deal with the possibility of removing more than a pagefull of images in one go. * Added multi-selection to Carousel mode, plus selection highlighting. * Fixed a page numbering problem with the Single layout. PhotoPrint-0.2.8 * Fixed an uninitialised variable that was wreaking havok in stpui_combo * Created a search-path system for the ICC profiles. The program will now use the following search paths by default (in this order): $HOME/.color/icc $HOME/.photoprint/icc /usr/share/color/icc /usr/local/share/color/icc When a profile is selected in the file selector, its path is checked to see whether it's in any of the standard paths. If so, the path component is removed. The paths are checked one by one to locate the profile when it's needed. (This makes sharing preset files much easier, since the path to the profile is no longer absolute.) * Added #include to imagesource_segmentmask.cpp PhotoPrint-0.2.7 * Added (at last!) the ability to create the .photoprint directory if necessary. * Splash screen no longer appears in batch mode. * Fixed a problem with the "changed" signal not being caught after a layout change. * Renamed and rearranged the layout names - Single is not useful except in specific circumstances, so should be less "inviting". * Can now cancel the adding of multiple images. * The problem with previewing multiple pages in poster mode is fixed. * The manual sizing mode now automatically shrinks newly-placed images if their natural size would be too large to fit the page. * Fixed some problems with the Carousel mode's UI. Layout_Single was used as a starting point for Layout_Carousel, and I'd missed a few references to Layout_Single. PhotoPrint-0.2.6 * Fixed (I hope) the problem on some machines with the unit conversion macros failing. Something seems to be interfering with the use of round() * Fixed a problem with the options system, which caused PhotoPrint's output to be considerably darker than the print plugin's with the same settings. WARNING: THIS WILL INVALIDATE ALL EXISTING PROFILES - but by vastly reducing the gamma setting you should be able to reproduce the old behaviour! * Added spin buttons to control number of segments and overlap for Carousel layout. * Fixed double free error in the layouts (transformed preview) PhotoPrint-0.2.5 * Added a LayoutRectangle class, with a Fit() function. * Migrated all fitting functions to use the new LayoutRectangle class (Went suspiciously smoothly!) * Fixed major screwup in the poster-mode preview caused in migrating to LayoutRectangle. * Finally added support for physical dimensions in Print Setup. * Added dummy menu item for Print Preview * New layout mode: Image Carousel (for CDs) - arranges the images in a circular fashion and blends between images. (It's done by placing half the images hard-masked to a segment shape, and overlaying the other half with an alpha blend, so only works well for an even number of images.) * Fixed bug when loading a new preset of the same type as the current preset. (Stale pointer to the stp_vars, which is flushed and replaced on preset load.) * Added routines to calculate image bounds of Image Carousel segments and to provide an imagesource with an appropriate mask applied. * Moved thumbnail drawing (common between n-up and poster mode) into the layout superclass, along with allowcropping and new allowrotation flags to replace the old cropfit flag. * Fixed misplaced semicolon in thumbnail "stealing" code. * Layout_ImageInfo now generates a thumbnail in the constructor so that unsupported file formats are caught earlier. * Masking is now implemented for the n-up, single and poster layouts. * "Retired" imagesource_signature. It's too specific to belong in the general imagesource library, and with imagesource_montage factored out, it was very small anyway. The functionality is now included in layout_nup.cpp, which makes adding the masks much tidier. PhotoPrint-0.2.4 * Added a unit widget for physical dimensions * Added rounding to neat increments to the unit widget. * Printer settings are now cleared before loading a preset. * Added Scaling Quality dialog. * The file selector now remembers the most recently added image. * Refactored the Montage imagesource. Montage is now more general, and the specific n-up layout is now handled by a subclass, ImageSource_Signature. * Added support for alpha channels to TIFF loader and compositing functions. * Added a PS/PDF loader that generates a temporary TIFF file using GhostScript * Fixed #ifndef in rotatepixbuf.h (Thanks to regisr for pointing this out) * Removed dependency on ini.h in lcmswrapper.*, and created new types to deal with whitepoint, primaries, etc. * Created new subdirectory, "support", containing non-photoprint specific routines. * Added a splashscreen, in "splashscreen" directory. * Eliminated several compiler warnings - should now compile cleanly with -Wall PhotoPrint-0.2.3 * Added support for CMYK images * Re-worked the colour-management dialog - invalidates old presets * Optional parameters now have a check box to disable them * Fixed resetting of margins with every print-setup operation. * Relative pathnames now work * Fixed a couple of compilation warnings regarding non-virtual destructors * Fixed a C++/C99 declaration in some C code. * Created a Bilinear filter PhotoPrint-0.2.2 * Batch mode now implemented * Infrastructure is in place for multiple layout types, including swapping between them at runtime * Single layout now implemented * Poster layout now implemented * Added a Lanczos-windowed Sinc interpolation filter (currently used for scaling operations of more than 250% linear) * Infrastructure in place for selecting scaling type and rendering resolution at runtime. (GUI to follow). Scaling strategy is currently automatically selected. * BMP Loader now fetches the image resolution from the file. * Should no longer segfault when fed a bad filename. * Layout controls are now in a scrollwindow widget, making the program more usable with low screen resolutions. * Window geometry is now saved with the preset. * Now allows more friendly printer configuration; displays a list of known printer queues, automatically generates suitable default commands, and (if linked against libcups) can deduce the correct Gutenprint driver to use. * A nasty bug fixed in pp_signature.cpp, where a typo was wreaking havoc with the sizegroup, due to a widget being added to it twice. PhotoPrint-0.2.1 * Now uses autotools for configuration. * Added a context menu to the images, allowing removal and cropping. * "Allow Cropping" menu item scales the image to fill the frame completely, as opposed to the default method, which scales as large as possible while still keeping the entire image within the frame. * Added a "crop-fit" fitting method to the ImageSource_Montage class, to support the "Allow Cropping" option. * Refactored the Layout class into a super- and sub-class, which should allow the relatively painless addition of alternative layout styles in the future. * Moved all the UI elements relating to the NUp layout into a composite widget, which again should allow the addition of alternative layouts in the future. * Added an optional cancel button to the progress indicator. * Both the TIFF saver and Printer now respect the cancel button. * Fixed a string-freeing error in stpui_widgets/stpui_printerselector.c. PhotoPrint-0.2.0 * First GUI-based release PhotoPrint-0.1.0 * Initial command-line driven utility. photoprint-0.4.2-pre2/config.h.in0000644000175000017500000000760711400237540013543 00000000000000/* config.h.in. Generated from configure.ac by autoheader. */ /* Define to 1 if translation of program messages to the user's native language is requested. */ #undef ENABLE_NLS /* Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the CoreFoundation framework. */ #undef HAVE_CFLOCALECOPYCURRENT /* Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in the CoreFoundation framework. */ #undef HAVE_CFPREFERENCESCOPYAPPVALUE /* Define if the GNU dcgettext() function is already present or preinstalled. */ #undef HAVE_DCGETTEXT /* Define to 1 if you have the header file. */ #undef HAVE_DLFCN_H /* Define to 1 if you have the header file. */ #undef HAVE_FCNTL_H /* Define if the GNU gettext() function is already present or preinstalled. */ #undef HAVE_GETTEXT /* Define if you have the iconv() function and it works. */ #undef HAVE_ICONV /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define to 1 if you have the `cups' library (-lcups). */ #undef HAVE_LIBCUPS /* Define to 1 if you have the `jpeg' library (-ljpeg). */ #undef HAVE_LIBJPEG /* Define to 1 if you have the `netpbm' library (-lnetpbm). */ #undef HAVE_LIBNETPBM /* Define to 1 if you have the `pnm' library (-lpnm). */ #undef HAVE_LIBPNM /* Define to 1 if you have the `pthread' library (-lpthread). */ #undef HAVE_LIBPTHREAD /* Define to 1 if you have the `pthreadGC2' library (-lpthreadGC2). */ #undef HAVE_LIBPTHREADGC2 /* Define to 1 if your system has a GNU libc compatible `malloc' function, and to 0 otherwise. */ #undef HAVE_MALLOC /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H /* Define to 1 if you have the `memset' function. */ #undef HAVE_MEMSET /* Define to 1 if you have the `mkdir' function. */ #undef HAVE_MKDIR /* Define to 1 if you have the header file. */ #undef HAVE_NETPBM_PAM_H /* Define to 1 if `stat' has the bug that it succeeds when given the zero-length file name argument. */ #undef HAVE_STAT_EMPTY_STRING_BUG /* Define to 1 if stdbool.h conforms to C99. */ #undef HAVE_STDBOOL_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 `strcasecmp' function. */ #undef HAVE_STRCASECMP /* 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 `strncasecmp' function. */ #undef HAVE_STRNCASECMP /* 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 /* Define to 1 if the system has the type `_Bool'. */ #undef HAVE__BOOL /* Define to 1 if `lstat' dereferences a symlink specified with a trailing slash. */ #undef LSTAT_FOLLOWS_SLASHED_SYMLINK /* 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 version of this package. */ #undef PACKAGE_VERSION /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Version number of package */ #undef VERSION /* Define to empty if `const' does not conform to ANSI C. */ #undef const /* Define to rpl_malloc if the replacement function should be used. */ #undef malloc /* Define to `unsigned int' if does not define. */ #undef size_t photoprint-0.4.2-pre2/pp_menu_options.cpp0000644000175000017500000001470711306464316015451 00000000000000#include #include #include #include #include #include "pp_mainwindow.h" #include "dialogs.h" #include "miscwidgets/generaldialogs.h" #include "progressbar.h" #include "support/debug.h" #include "profilemanager/profilemanager.h" #include "pp_menu_options.h" #include "config.h" #include "gettext.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) using namespace std; static void options_paths(GtkAction *act,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; Paths_Dialog(GTK_WINDOW(mw),*mw->state); pp_mainwindow_refresh(mw); } static void options_colourmanagement(GtkAction *act,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; ColourManagement_Dialog(GTK_WINDOW(mw),*mw->state); mw->state->layout->FlushThumbnails(); pp_mainwindow_refresh(mw); OptionsMenu_SetProofMode(mw->uim,CMProofMode(mw->state->profilemanager.FindInt("ProofMode"))); } static void options_colourresponsetag(GtkAction *act,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; ColourResponseTag_Dialog(GTK_WIDGET(mw),*mw->state); } static void options_units(GtkAction *act,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; Units_Dialog(GTK_WINDOW(mw),*mw->state); (mw->state->layout->SetUnitFunc())(mw->layout,mw->state->GetUnits()); } static void options_scaling(GtkAction *act,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; Scaling_Dialog(GTK_WINDOW(mw),*mw->state); } static void options_highres(GtkToggleAction *act,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; bool checked=gtk_toggle_action_get_active(GTK_TOGGLE_ACTION(act)); mw->state->SetInt("HighresPreviews",checked); if(checked) pp_mainwindow_refresh(mw); } static gboolean radioidlefunc(gpointer userdata) { pp_MainWindow *mw=(pp_MainWindow *)userdata; Debug[TRACE] << "In Idle function - reverting menu item" << endl; OptionsMenu_SetProofMode(mw->uim,CM_PROOFMODE_NONE); Debug[TRACE] << "done" << endl; return(FALSE); } static void optionsmenu_radio_dispatch(GtkAction *act,GtkRadioAction *ra,gpointer *ob) { pp_MainWindow *mw=(pp_MainWindow *)ob; enum CMProofMode proofmode=CMProofMode(gtk_radio_action_get_current_value(ra)); Debug[TRACE] << "Proofmode set to: " << proofmode << endl; try { mw->state->profilemanager.SetProofMode(proofmode); mw->state->layout->FlushThumbnails(); pp_mainwindow_refresh(mw); } catch(const char *err) { ErrorMessage_Dialog(err,GTK_WIDGET(mw)); Debug[TRACE] << "Dialog displayed - adding idle function..." << endl; gtk_idle_add(radioidlefunc,mw); } } static GtkActionEntry optionsmenu_entries[] = { { "OptionsMenu", NULL, N_("_Options") }, { "Paths", NULL, N_("_Paths..."), NULL, N_("Set search paths for ICC profiles, borders, etc."), G_CALLBACK(options_paths) }, { "ColourManagement", NULL, N_("_Colour Management..."), NULL, N_("Set colour management options"), G_CALLBACK(options_colourmanagement) }, { "ColourResponseHash", NULL, N_("_Colour Response Hash..."), NULL, N_("Create a hash for verifying printer settings"), G_CALLBACK(options_colourresponsetag) }, { "Units", NULL, N_("_Units..."), NULL, N_("Select the units used throughout PhotoPrint"), G_CALLBACK(options_units) }, { "Scaling", NULL, N_("_Scaling..."), NULL, N_("Select the preferred scaling method."), G_CALLBACK(options_scaling) }, }; static GtkToggleActionEntry optionsmenu_toggle_entries[] = { { "HighresPreviews", NULL, N_("High-res Previews"), NULL, N_("Render high-resolution previews in the background"), G_CALLBACK(options_highres), FALSE } }; static GtkRadioActionEntry optionsmenu_radio_entries[] = { { "NormalDisplay", NULL, N_("_Normal Display"), NULL, N_("Display colours with no print simulation"), CM_PROOFMODE_NONE}, { "SimulatePrint", NULL, N_("Simulate Prin_t"), NULL, N_("Adjust colours on screen to imitate printed colours, including paper white"), CM_PROOFMODE_SIMULATEPRINT}, { "SimulatePrintAdaptWhite", NULL, N_("Simulate Print, _Adapt White"), NULL, N_("Adjust colours to imitate printed colours, excluding paper white"), CM_PROOFMODE_SIMULATEPRINTADAPTWHITE}, }; static const char *optionsmenu_ui_description = "" " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " ""; void BuildOptionsMenu(void *userdata,GtkUIManager *ui_manager) { GError *error=NULL; GtkActionGroup *action_group; action_group = gtk_action_group_new ("OptionsMenuActions"); gtk_action_group_set_translation_domain(action_group,PACKAGE); gtk_action_group_add_actions (action_group, optionsmenu_entries, G_N_ELEMENTS (optionsmenu_entries), userdata); gtk_action_group_add_toggle_actions (action_group, optionsmenu_toggle_entries, G_N_ELEMENTS (optionsmenu_toggle_entries), userdata); gtk_action_group_add_radio_actions (action_group, optionsmenu_radio_entries, G_N_ELEMENTS (optionsmenu_radio_entries), 0, G_CALLBACK(optionsmenu_radio_dispatch), userdata); gtk_ui_manager_insert_action_group (ui_manager, action_group, 0); if (!gtk_ui_manager_add_ui_from_string (ui_manager, optionsmenu_ui_description, -1, &error)) throw error->message; } void OptionsMenu_SetHighresPreviews(GtkUIManager *ui_manager,int hrpreview) { GtkAction *act=gtk_ui_manager_get_action(ui_manager,"/MainMenu/OptionsMenu/HighresPreviews"); if(act) gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(act),hrpreview); } void OptionsMenu_SetProofMode(GtkUIManager *ui_manager,enum CMProofMode item) { Debug[TRACE] << "Setting proof mode to " << item << endl; #if 0 GtkAction *act=gtk_ui_manager_get_action(ui_manager,"/MainMenu/OptionsMenu/NormalDisplay"); if(act) gtk_radio_action_set_current_value(GTK_RADIO_ACTION(act),item); #else const char *menupaths[]= { "/MainMenu/OptionsMenu/NormalDisplay", "/MainMenu/OptionsMenu/SimulatePrint", "/MainMenu/OptionsMenu/SimulatePrintAdaptWhite" }; GtkWidget *w; for(unsigned int i=0;i<(sizeof(menupaths)/sizeof(const char *));++i) { w=gtk_ui_manager_get_widget(ui_manager,menupaths[i]); if(w) { gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(w),(enum CMProofMode)i==item); } } #endif } photoprint-0.4.2-pre2/photoprint.cpp0000644000175000017500000001151411363166243014433 00000000000000/* * PhotoPrint * Copyright (c) 2004-2009 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include #include #include #include "config.h" #include "gettext.h" #include "support/debug.h" #include "support/configdb.h" #include "photoprint_state.h" #include "pp_mainwindow.h" #include "progressbar.h" #include "support/progresstext.h" #include "dialogs.h" #include "miscwidgets/generaldialogs.h" #include "splashscreen/splashscreen.h" #include "profilemanager/profileselector.h" #include "profilemanager/intentselector.h" #include "miscwidgets/patheditor.h" #include "support/pathsupport.h" #include "support/util.h" #define _(x) gettext(x) #define N_(x) gettext_noop(x) using namespace std; bool ParseOptions(int argc,char *argv[],char **presetname) { int batchmode=false; static struct option long_options[] = { {"help",no_argument,NULL,'h'}, {"version",no_argument,NULL,'v'}, {"preset",required_argument,NULL,'p'}, {"batch",no_argument,NULL,'b'}, {"debug",required_argument,NULL,'d'}, {0, 0, 0, 0} }; while(1) { int c; c = getopt_long(argc,argv,"hvp:bd:",long_options,NULL); if(c==-1) break; switch (c) { case 'h': printf("Usage: %s [options] image1 [image2] ... \n",argv[0]); printf("\t -h --help\t\tdisplay this message\n"); printf("\t -v --version\t\tdisplay version\n"); printf("\t -p --preset\t\tread a specific preset file\n"); printf("\t -b --batch\t\trun without user interface\n"); printf("\t -d --debug\t\tset debugging level - 0 for silent, 4 for verbose"); throw 0; break; case 'v': printf("%s\n",PACKAGE_STRING); throw 0; break; case 'p': *presetname=optarg; break; case 'b': batchmode=true; break; case 'd': Debug.SetLevel(DebugLevel(atoi(optarg))); break; } } return(batchmode); } static void destroy( GtkWidget *widget, gpointer data ) { gtk_main_quit (); } int main(int argc,char **argv) { Debug[TRACE] << "Photoprint starting..." << endl; gboolean have_gtk=false; char *presetname=NULL; Debug.SetLevel(WARN); #ifdef WIN32 char *logname=substitute_homedir("$HOME" SEARCHPATH_SEPARATOR_S ".photoprint_errorlog"); Debug.SetLogFile(logname); free(logname); #endif try { bool batchmode=ParseOptions(argc,argv,&presetname); if(!batchmode) have_gtk=gtk_init_check (&argc, &argv); if(have_gtk) gtk_set_locale(); else { g_type_init(); setlocale(LC_ALL,""); } bindtextdomain(PACKAGE,LOCALEDIR); bind_textdomain_codeset(PACKAGE, "UTF-8"); textdomain(PACKAGE); SplashScreen *splash=NULL; if(have_gtk) { splash=new SplashScreen; splash->SetMessage(_("Initializing...")); } PhotoPrint_State state(batchmode); if(presetname) state.SetFilename(presetname); if(have_gtk) splash->SetMessage(_("Checking .photoprint directory...")); CheckSettingsDir(".photoprint"); if(have_gtk) splash->SetMessage(_("Loading preset...")); state.ParseConfigFile(); if(have_gtk) { splash->SetMessage(_("Creating layout...")); delete splash; } state.NewLayout(); if(batchmode) { try { Debug[TRACE] << "Running in batch mode" << endl; if(argc>optind) { bool allowcropping=state.layoutdb.FindInt("AllowCropping"); enum PP_ROTATION rotation=PP_ROTATION(state.layoutdb.FindInt("Rotation")); for(int i=optind;iAddImage(argv[i],allowcropping,rotation); } ProgressText p; state.layout->Print(&p); } } catch(const char *err) { Debug[ERROR] << "Error: " << err << endl; } } else { try { GtkWidget *mainwindow; mainwindow = pp_mainwindow_new(&state); g_signal_connect (G_OBJECT (mainwindow), "destroy", G_CALLBACK (destroy), NULL); gtk_widget_show (mainwindow); if(argc>optind) { bool allowcropping=state.layoutdb.FindInt("AllowCropping"); enum PP_ROTATION rotation=PP_ROTATION(state.layoutdb.FindInt("Rotation")); ProgressBar p(_("Loading images..."),true,mainwindow); int lastpage=0; for(int i=optind;iAddImage(argv[i],allowcropping,rotation); } state.layout->SetCurrentPage(lastpage); } pp_mainwindow_refresh(PP_MAINWINDOW(mainwindow)); gtk_main (); } catch (const char *err) { ErrorMessage_Dialog(err); } } } catch(const char *err) { if(have_gtk) ErrorMessage_Dialog(err); Debug[ERROR] << "Error: " << err << endl; } catch(int retcode) { return(retcode); } return(0); } photoprint-0.4.2-pre2/layout_single.h0000644000175000017500000000425311264073471014552 00000000000000#ifndef LAYOUT_SINGLE_H #define LAYOUT_SINGLE_H #include #include #include #include #include "imagesource/imagesource.h" #include "support/pageextent.h" #include "gp_cppsupport/gprinter.h" #include "layoutdb.h" #include "layout.h" class Layout_Single_ImageInfo; class LayoutIterator_Single; class PhotoPrint_State; class Layout_Single : public Layout { public: Layout_Single(PhotoPrint_State &state,Layout *oldlayout=NULL); virtual ~Layout_Single(); const char *GetType(); int GetCapabilities(); int AddImage(const char *filename,bool allowcropping=false,PP_ROTATION rotation=PP_ROTATION_AUTO); void CopyImage(Layout_ImageInfo *ii); void Reflow(); void SetPageExtent(PageExtent &pe); virtual void LayoutToDB(LayoutDB &db); virtual void DBToLayout(LayoutDB &db); virtual GtkWidget *CreateWidget(); virtual void RefreshWidget(GtkWidget *widget); virtual void Print(Progress *p); // Overridden so we can set the top/left position... virtual ImageSource *GetImageSource(int page,CMColourDevice target=CM_COLOURDEVICE_PRINTER, CMTransformFactory *factory=NULL,int res=0,bool completepage=false); Layout_Single_ImageInfo *ImageAt(int page); virtual void (*SetUnitFunc())(GtkWidget *wid,enum Units unit); friend class Layout_Single_ImageInfo; friend class LayoutIterator_Single; }; class Layout_Single_ImageInfo : public Layout_ImageInfo { public: Layout_Single_ImageInfo(Layout_Single &layout,const char *filename,int page,bool allowcropping=false,PP_ROTATION rotation=PP_ROTATION_AUTO); Layout_Single_ImageInfo(Layout_Single &layout,Layout_ImageInfo *ii,int page); virtual ~Layout_Single_ImageInfo(); void DrawThumbnail(GtkWidget *widget,int xpos,int ypos,int width,int height); virtual ImageSource *GetImageSource(CMColourDevice target=CM_COLOURDEVICE_PRINTER,CMTransformFactory *factory=NULL); virtual LayoutRectangle *GetBounds(); // The dimensions of the image's "slot". virtual RectFit *GetFit(double scale); // Details of the image's size after fitting to its slot. virtual bool GetSelected(); float hscale; float vscale; private: void Init(); friend class Layout_Single; friend class LayoutIterator_Single; }; #endif photoprint-0.4.2-pre2/pp_imageinfo.h0000644000175000017500000000260111221454153014315 00000000000000#ifndef __PP_IMAGEINFO_H__ #define __PP_IMAGEINFO_H__ #include #include #include #include #include #include #include #include "layout.h" G_BEGIN_DECLS #define PP_IMAGEINFO_TYPE (pp_imageinfo_get_type()) #define PP_IMAGEINFO(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PP_IMAGEINFO_TYPE, pp_ImageInfo)) #define PP_IMAGEINFO_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PP_IMAGEINFO_TYPE, pp_ImageInfoClass)) #define IS_PP_IMAGEINFO(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PP_IMAGEINFO_TYPE)) #define IS_PP_IMAGEINFO_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PP_IMAGEINFO_TYPE)) typedef struct _pp_ImageInfo pp_ImageInfo; typedef struct _pp_ImageInfoClass pp_ImageInfoClass; struct Signature; class Thread; struct _pp_ImageInfo { GtkExpander expander; GtkWidget *table; GtkWidget *filename; GtkWidget *dimensions; GtkWidget *physicalsize; GtkWidget *resolution; GtkWidget *profile; GtkWidget *scrollwin; ThreadFunction *thread; Layout *layout; }; struct _pp_ImageInfoClass { GtkExpanderClass parent_class; void (*changed)(pp_ImageInfo *ii); }; GType pp_imageinfo_get_type (void); GtkWidget* pp_imageinfo_new (Layout *layout); void pp_imageinfo_refresh(pp_ImageInfo *ob); void pp_imageinfo_change_image(pp_ImageInfo *ob); G_END_DECLS #endif /* __PP_IMAGEINFO_H__ */ photoprint-0.4.2-pre2/pp_layout_poster_pageview.h0000644000175000017500000000363711400241117017162 00000000000000#ifndef __PP_LAYOUT_POSTER_PAGEVIEW_H__ #define __PP_LAYOUT_POSTER_PAGEVIEW_H__ #include #include #include #include #include #include "pixbufthumbnail/egg-pixbuf-thumbnail.h" #include "layout_poster.h" #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ #define PP_LAYOUT_POSTER_PAGEVIEW(obj) GTK_CHECK_CAST (obj, pp_layout_poster_pageview_get_type (), pp_Layout_Poster_PageView) #define PP_LAYOUT_POSTER_PAGEVIEW_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, pp_layout_poster_pageview_get_type (), pp_Layout_Poster_PageViewClass) #define PP_IS_PAGEVIEW(obj) GTK_CHECK_TYPE (obj, pp_layout_poster_pageview_get_type ()) typedef struct _pp_Layout_Poster_PageView pp_Layout_Poster_PageView; typedef struct _pp_Layout_Poster_PageViewClass pp_Layout_Poster_PageViewClass; struct _pp_Layout_Poster_PageView { GtkWidget widget; /* Button currently pressed or 0 if none */ guint8 button; /* ID of update timer, or 0 if none */ guint32 timer; Layout_Poster *layout; Layout_Poster_ImageInfo *selected; int left, top; int width, height; double scale; // Dragging state bool dragging; int init_x; int init_y; LayoutRectangle_Alignment init_hpan; LayoutRectangle_Alignment init_vpan; }; struct _pp_Layout_Poster_PageViewClass { GtkWidgetClass parent_class; void (*changed)(pp_Layout_Poster_PageView *pv); void (*reflow)(pp_Layout_Poster_PageView *pv); }; GtkWidget* pp_layout_poster_pageview_new(Layout_Poster *layout); GtkType pp_layout_poster_pageview_get_type(void); void pp_layout_poster_pageview_set_page(pp_Layout_Poster_PageView *pv,int page); void pp_layout_poster_pageview_refresh(pp_Layout_Poster_PageView *pv); void pp_layout_poster_pageview_draw_gridlines(pp_Layout_Poster_PageView *pageview); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* __PP_LAYOUT_POSTER_PAGEVIEW_H__ */ photoprint-0.4.2-pre2/pp_layout_poster.cpp0000644000175000017500000004202511400247402015623 00000000000000#include #include #include #include #include #include #include #include "support/debug.h" #include "stpui_widgets/stpui_combo.h" #include "stpui_widgets/dimension.h" #include "layout.h" #include "dialogs.h" #include "pp_pageextent.h" #include "pp_imagecontrol.h" #include "pp_layout_poster_pageview.h" #include "pp_layout_poster.h" #include "config.h" #include "gettext.h" #define _(x) gettext(x) enum { CHANGED_SIGNAL, POPUPMENU_SIGNAL, SELECTIONCHANGED_SIGNAL, LAST_SIGNAL }; static guint pp_layout_poster_signals[LAST_SIGNAL] = { 0 }; static void pp_layout_poster_class_init (pp_Layout_PosterClass *klass); static void pp_layout_poster_init (pp_Layout_Poster *stpuicombo); static void reflow(GtkWidget *wid,gpointer *ob) { pp_Layout_Poster *lo=(pp_Layout_Poster *)ob; pp_Layout_Poster_PageView *pv=PP_LAYOUT_POSTER_PAGEVIEW(lo->pageview); Layout_Poster *l=(Layout_Poster*)lo->state->layout; l->Reflow(); pp_layout_poster_pageview_refresh(PP_LAYOUT_POSTER_PAGEVIEW(pv)); int pages=l->GetPages(); pages/=l->htiles*l->vtiles; gtk_widget_set_sensitive(lo->page,pages>1); gtk_spin_button_set_range(GTK_SPIN_BUTTON(lo->page),1.0,pages); g_signal_emit(G_OBJECT (lo),pp_layout_poster_signals[CHANGED_SIGNAL], 0); } static void pe_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_Poster *lo=(pp_Layout_Poster *)ob; Layout_Poster *l=(Layout_Poster*)lo->state->layout; l->FlushHRPreviews(); l->TilesFromSize(); pp_layout_poster_refresh(lo); pp_Layout_Poster_PageView *pv=PP_LAYOUT_POSTER_PAGEVIEW(lo->pageview); pp_layout_poster_pageview_refresh(pv); g_signal_emit(G_OBJECT (ob),pp_layout_poster_signals[CHANGED_SIGNAL], 0); } static void ic_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_Poster *lo=(pp_Layout_Poster *)ob; Layout_Poster *l=(Layout_Poster*)lo->state->layout; l->FlushHRPreviews(); pp_Layout_Poster_PageView *pv=PP_LAYOUT_POSTER_PAGEVIEW(lo->pageview); pp_layout_poster_pageview_refresh(PP_LAYOUT_POSTER_PAGEVIEW(pv)); g_signal_emit(G_OBJECT (ob),pp_layout_poster_signals[CHANGED_SIGNAL], 0); } static void posterwidth_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_Poster *lo=(pp_Layout_Poster *)ob; Layout_Poster *l=(Layout_Poster*)lo->state->layout; l->FlushHRPreviews(); l->posterwidth=int(dimension_get_pt(DIMENSION(lo->posterwidth))); l->TilesFromSize(); g_signal_emit(G_OBJECT (lo),pp_layout_poster_signals[CHANGED_SIGNAL], 0); } static void posterheight_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_Poster *lo=(pp_Layout_Poster *)ob; Layout_Poster *l=(Layout_Poster*)lo->state->layout; l->FlushHRPreviews(); l->posterheight=int(dimension_get_pt(DIMENSION(lo->posterheight))); l->TilesFromSize(); g_signal_emit(G_OBJECT (lo),pp_layout_poster_signals[CHANGED_SIGNAL], 0); } static void htiles_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_Poster *lo=(pp_Layout_Poster *)ob; Layout_Poster *l=(Layout_Poster*)lo->state->layout; l->FlushHRPreviews(); l->htiles=gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(lo->htiles)); l->SizeFromTiles(); g_signal_emit(G_OBJECT (lo),pp_layout_poster_signals[CHANGED_SIGNAL], 0); } static void vtiles_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_Poster *lo=(pp_Layout_Poster *)ob; Layout_Poster *l=(Layout_Poster*)lo->state->layout; l->FlushHRPreviews(); Debug[TRACE] << "In VTiles_Changed" << endl; l->vtiles=gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(lo->vtiles)); l->SizeFromTiles(); g_signal_emit(G_OBJECT (lo),pp_layout_poster_signals[CHANGED_SIGNAL], 0); } static void hoverlap_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_Poster *lo=(pp_Layout_Poster *)ob; Layout_Poster *l=(Layout_Poster*)lo->state->layout; l->FlushHRPreviews(); l->hoverlap=int(dimension_get_pt(DIMENSION(lo->hoverlap))); l->TilesFromSize(); g_signal_emit(G_OBJECT (lo),pp_layout_poster_signals[CHANGED_SIGNAL], 0); } static void voverlap_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_Poster *lo=(pp_Layout_Poster *)ob; Layout_Poster *l=(Layout_Poster*)lo->state->layout; l->FlushHRPreviews(); l->voverlap=int(dimension_get_pt(DIMENSION(lo->voverlap))); l->TilesFromSize(); g_signal_emit(G_OBJECT (lo),pp_layout_poster_signals[CHANGED_SIGNAL], 0); } static void page_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_Poster *lo=(pp_Layout_Poster *)ob; pp_Layout_Poster_PageView *pv=PP_LAYOUT_POSTER_PAGEVIEW(lo->pageview); int pagesperposter=pv->layout->htiles*pv->layout->vtiles; Layout_Poster *l=(Layout_Poster*)lo->state->layout; l->CancelRenderThreads(); pp_layout_poster_pageview_set_page(pv,pagesperposter*(gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(lo->page))-1)); pp_imagecontrol_set_image(PP_IMAGECONTROL(lo->imagecontrol)); g_signal_emit(G_OBJECT (lo),pp_layout_poster_signals[CHANGED_SIGNAL], 0); } static void pageview_changed(GtkWidget *wid,gpointer *ob) { pp_Layout_Poster *lo=(pp_Layout_Poster *)ob; g_signal_emit(G_OBJECT (lo),pp_layout_poster_signals[CHANGED_SIGNAL], 0); } static void pageview_popupmenu(GtkWidget *wid,gpointer *ob) { pp_Layout_Poster *lo=(pp_Layout_Poster *)ob; Debug[TRACE] << "Forwarding popupmenu signal..." << endl; g_signal_emit(G_OBJECT (lo),pp_layout_poster_signals[POPUPMENU_SIGNAL], 0); } void pp_layout_poster_refresh(pp_Layout_Poster *ob) { Layout_Poster *l=(Layout_Poster *)ob->state->layout; l->LayoutToDB(ob->state->layoutdb); int pages=l->GetPages(); int cpage=l->GetCurrentPage(); pages/=l->htiles*l->vtiles; cpage/=l->htiles*l->vtiles; gtk_widget_set_sensitive(ob->page,pages!=1); if(pages>1) { gtk_spin_button_set_range(GTK_SPIN_BUTTON(ob->page),1.0,pages); gtk_spin_button_set_value(GTK_SPIN_BUTTON(ob->page),cpage+1); } g_signal_handlers_block_matched (G_OBJECT(ob->posterwidth),G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, ob); g_signal_handlers_block_matched (G_OBJECT(ob->posterheight),G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, ob); g_signal_handlers_block_matched (G_OBJECT(ob->htiles),G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, ob); g_signal_handlers_block_matched (G_OBJECT(ob->vtiles),G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, ob); g_signal_handlers_block_matched (G_OBJECT(ob->hoverlap),G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, ob); g_signal_handlers_block_matched (G_OBJECT(ob->voverlap),G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, ob); dimension_set_pt(DIMENSION(ob->posterwidth),l->posterwidth); dimension_set_pt(DIMENSION(ob->posterheight),l->posterheight); gtk_spin_button_set_value(GTK_SPIN_BUTTON(ob->htiles),l->htiles); gtk_spin_button_set_value(GTK_SPIN_BUTTON(ob->vtiles),l->vtiles); dimension_set_pt(DIMENSION(ob->hoverlap),l->hoverlap); dimension_set_pt(DIMENSION(ob->voverlap),l->voverlap); g_signal_handlers_unblock_matched (G_OBJECT(ob->posterwidth),G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, ob); g_signal_handlers_unblock_matched (G_OBJECT(ob->posterheight),G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, ob); g_signal_handlers_unblock_matched (G_OBJECT(ob->htiles),G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, ob); g_signal_handlers_unblock_matched (G_OBJECT(ob->vtiles),G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, ob); g_signal_handlers_unblock_matched (G_OBJECT(ob->hoverlap),G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, ob); g_signal_handlers_unblock_matched (G_OBJECT(ob->voverlap),G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, ob); pp_imagecontrol_refresh(PP_IMAGECONTROL(ob->imagecontrol)); pp_Layout_Poster_PageView *pv=PP_LAYOUT_POSTER_PAGEVIEW(ob->pageview); if(pv) pp_layout_poster_pageview_refresh(pv); } void pp_layout_poster_set_unit(GtkWidget *wid,enum Units unit) { pp_Layout_Poster *ob=PP_LAYOUT_POSTER(wid); pp_pageextent_set_unit(PP_PAGEEXTENT(ob->pageextent),unit); dimension_set_unit(DIMENSION(ob->posterwidth),unit); dimension_set_unit(DIMENSION(ob->posterheight),unit); dimension_set_unit(DIMENSION(ob->hoverlap),unit); dimension_set_unit(DIMENSION(ob->voverlap),unit); } static void expander_callback (GObject *object, GParamSpec *param_spec, gpointer userdata) { pp_Layout_Poster *ob=PP_LAYOUT_POSTER(userdata); ob->state->SetInt("ExpanderState_Poster",gtk_expander_get_expanded (GTK_EXPANDER(object))); } static void expander_callback2 (GObject *object, GParamSpec *param_spec, gpointer userdata) { pp_Layout_Poster *ob=PP_LAYOUT_POSTER(userdata); ob->state->SetInt("ExpanderState_PosterOverlap",gtk_expander_get_expanded (GTK_EXPANDER(object))); } GtkWidget *pp_layout_poster_new (PhotoPrint_State *state) { pp_Layout_Poster *ob=PP_LAYOUT_POSTER(g_object_new (pp_layout_poster_get_type (), NULL)); gtk_container_set_border_width(GTK_CONTAINER(&ob->hbox),10); ob->state=state; GtkWidget *vbox; GtkWidget *hbox; GtkWidget *label; enum Units unit=state->GetUnits(); GtkWidget *frame = gtk_frame_new (NULL); gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN); gtk_box_pack_start(GTK_BOX (&ob->hbox), frame,TRUE,TRUE,0); gtk_widget_show (frame); ob->pageview = pp_layout_poster_pageview_new ((Layout_Poster *)ob->state->layout); g_signal_connect(G_OBJECT(ob->pageview),"changed",G_CALLBACK(pageview_changed),ob); g_signal_connect(G_OBJECT(ob->pageview),"popupmenu",G_CALLBACK(pageview_popupmenu),ob); g_signal_connect(G_OBJECT(ob->pageview),"reflow",G_CALLBACK(reflow),ob); gtk_container_add (GTK_CONTAINER (frame), ob->pageview); gtk_widget_show (ob->pageview); // Scroll Window GtkWidget *scrollwin=gtk_scrolled_window_new(NULL,NULL); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrollwin), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); vbox = gtk_vbox_new (FALSE, 5); gtk_box_pack_start(GTK_BOX(&ob->hbox),vbox,FALSE,FALSE,0); gtk_widget_show (vbox); gtk_box_pack_start(GTK_BOX(vbox),scrollwin,TRUE,TRUE,0); gtk_widget_show (scrollwin); // Page number hbox=gtk_hbox_new(FALSE,5); label=gtk_label_new(_("Page:")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_box_pack_start(GTK_BOX(hbox),label,TRUE,TRUE,0); gtk_widget_show(label); ob->page=gtk_spin_button_new_with_range(1.0,2.0,1.0); g_signal_connect(G_OBJECT(ob->page),"value-changed",G_CALLBACK(page_changed),ob); gtk_widget_show(ob->page); gtk_box_pack_start(GTK_BOX(hbox),ob->page,FALSE,FALSE,0); gtk_box_pack_start(GTK_BOX(vbox),hbox,FALSE,FALSE,0); gtk_widget_show(hbox); // Contents of scrollwindow GtkWidget *hbox2=gtk_hbox_new(FALSE,0); gtk_widget_show (hbox2); vbox = gtk_vbox_new (FALSE, 0); gtk_box_pack_start(GTK_BOX(hbox2),vbox,TRUE,TRUE,5); gtk_scrolled_window_add_with_viewport (GTK_SCROLLED_WINDOW (scrollwin), hbox2); // gtk_container_foreach(GTK_CONTAINER(scrollwin),killshadow,NULL); gtk_widget_show (vbox); // PosterSize frame=gtk_expander_new(_("Poster Layout")); gtk_expander_set_expanded(GTK_EXPANDER(frame),state->FindInt("ExpanderState_Poster")); g_signal_connect(frame, "notify::expanded",G_CALLBACK (expander_callback), ob); gtk_box_pack_start(GTK_BOX(vbox),frame,FALSE,FALSE,0); gtk_widget_show(frame); GtkWidget *table=gtk_table_new(4,2,false); gtk_table_set_row_spacing(GTK_TABLE(table),0,5); gtk_table_set_row_spacing(GTK_TABLE(table),2,3); gtk_table_set_col_spacings(GTK_TABLE(table),3); gtk_container_add(GTK_CONTAINER(frame),table); gtk_widget_show(table); // Width label=gtk_label_new(_("Size")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_table_attach_defaults(GTK_TABLE(table),GTK_WIDGET(label),0,1,0,1); gtk_widget_show(label); ob->posterwidth=dimension_new(350,10000,unit); g_signal_connect(G_OBJECT(ob->posterwidth),"value-changed",G_CALLBACK(posterwidth_changed),ob); gtk_table_attach_defaults(GTK_TABLE(table),GTK_WIDGET(ob->posterwidth),1,2,0,1); gtk_widget_show(ob->posterwidth); // Height label=gtk_label_new(_("by")); gtk_misc_set_alignment(GTK_MISC(label),0.5,0.5); gtk_table_attach_defaults(GTK_TABLE(table),GTK_WIDGET(label),2,3,0,1); gtk_widget_show(label); ob->posterheight=dimension_new(350,10000,unit); g_signal_connect(G_OBJECT(ob->posterheight),"value-changed",G_CALLBACK(posterheight_changed),ob); gtk_table_attach_defaults(GTK_TABLE(table),GTK_WIDGET(ob->posterheight),3,4,0,1); gtk_widget_show(ob->posterheight); // Tiles - H label=gtk_label_new(_("Tiles")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_table_attach_defaults(GTK_TABLE(table),GTK_WIDGET(label),0,1,1,2); gtk_widget_show(label); ob->htiles=gtk_spin_button_new_with_range(1,10,1); g_signal_connect(G_OBJECT(ob->htiles),"value-changed",G_CALLBACK(htiles_changed),ob); gtk_table_attach_defaults(GTK_TABLE(table),GTK_WIDGET(ob->htiles),1,2,1,2); gtk_widget_show(ob->htiles); // Height label=gtk_label_new(_("by")); gtk_misc_set_alignment(GTK_MISC(label),0.5,0.5); gtk_table_attach_defaults(GTK_TABLE(table),GTK_WIDGET(label),2,3,1,2); gtk_widget_show(label); ob->vtiles=gtk_spin_button_new_with_range(1,10,1); g_signal_connect(G_OBJECT(ob->vtiles),"value-changed",G_CALLBACK(vtiles_changed),ob); gtk_table_attach_defaults(GTK_TABLE(table),GTK_WIDGET(ob->vtiles),3,4,1,2); gtk_widget_show(ob->vtiles); frame=gtk_expander_new(_("Overlap")); gtk_expander_set_expanded(GTK_EXPANDER(frame),state->FindInt("ExpanderState_PosterOverlap")); g_signal_connect(frame, "notify::expanded",G_CALLBACK (expander_callback2), ob); gtk_box_pack_start(GTK_BOX(vbox),frame,FALSE,FALSE,0); gtk_widget_show(frame); table=gtk_table_new(4,1,false); gtk_table_set_row_spacings(GTK_TABLE(table),3); gtk_table_set_col_spacings(GTK_TABLE(table),3); gtk_container_add(GTK_CONTAINER(frame),table); gtk_widget_show(table); // HOverlap label=gtk_label_new(_("H:")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_table_attach_defaults(GTK_TABLE(table),GTK_WIDGET(label),0,1,0,1); gtk_widget_show(label); ob->hoverlap=dimension_new(0,72,unit); g_signal_connect(G_OBJECT(ob->hoverlap),"value-changed",G_CALLBACK(hoverlap_changed),ob); gtk_table_attach_defaults(GTK_TABLE(table),GTK_WIDGET(ob->hoverlap),1,2,0,1); gtk_widget_show(ob->hoverlap); // VOverlap label=gtk_label_new(_("V:")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_table_attach_defaults(GTK_TABLE(table),GTK_WIDGET(label),2,3,0,1); gtk_widget_show(label); ob->voverlap=dimension_new(0,72,unit); g_signal_connect(G_OBJECT(ob->voverlap),"value-changed",G_CALLBACK(voverlap_changed),ob); gtk_table_attach_defaults(GTK_TABLE(table),GTK_WIDGET(ob->voverlap),3,4,0,1); gtk_widget_show(ob->voverlap); // PageExtent ob->pageextent=pp_pageextent_new((Layout_Poster *)ob->state->layout,ob->state); g_signal_connect(G_OBJECT(ob->pageextent),"changed",G_CALLBACK(pe_changed),ob); gtk_box_pack_start(GTK_BOX(vbox),ob->pageextent,FALSE,FALSE,0); gtk_widget_show(ob->pageextent); #if 0 // Spacer box tmp=gtk_vbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(vbox),tmp,TRUE,TRUE,0); gtk_widget_show(tmp); #endif // ImageControl ob->imagecontrol=pp_imagecontrol_new(ob->state->layout); gtk_box_pack_start(GTK_BOX(vbox),ob->imagecontrol,TRUE,TRUE,0); g_signal_connect(G_OBJECT(ob->imagecontrol),"changed",G_CALLBACK(ic_changed),ob); gtk_widget_show(ob->imagecontrol); #if 0 // Page number hbox=gtk_hbox_new(FALSE,5); label=gtk_label_new(_("Page:")); gtk_misc_set_alignment(GTK_MISC(label),1.0,0.5); gtk_box_pack_start(GTK_BOX(hbox),label,TRUE,TRUE,0); gtk_widget_show(label); ob->page=gtk_spin_button_new_with_range(1.0,2.0,1.0); g_signal_connect(G_OBJECT(ob->page),"value-changed",G_CALLBACK(page_changed),ob); gtk_widget_show(ob->page); gtk_box_pack_start(GTK_BOX(hbox),ob->page,FALSE,FALSE,0); gtk_box_pack_start(GTK_BOX(vbox),hbox,FALSE,FALSE,0); gtk_widget_show(hbox); #endif pp_layout_poster_refresh(ob); pp_pageextent_refresh(PP_PAGEEXTENT(ob->pageextent)); return(GTK_WIDGET(ob)); } GType pp_layout_poster_get_type (void) { static GType stpuic_type = 0; if (!stpuic_type) { static const GTypeInfo pp_layout_poster_info = { sizeof (pp_Layout_PosterClass), NULL, /* base_init */ NULL, /* base_finalize */ (GClassInitFunc) pp_layout_poster_class_init, NULL, /* class_finalize */ NULL, /* class_data */ sizeof (pp_Layout_Poster), 0, (GInstanceInitFunc) pp_layout_poster_init, }; stpuic_type = g_type_register_static (GTK_TYPE_HBOX, "pp_Layout_Poster", &pp_layout_poster_info, (GTypeFlags)0); } return stpuic_type; } static void pp_layout_poster_class_init (pp_Layout_PosterClass *klass) { pp_layout_poster_signals[CHANGED_SIGNAL] = g_signal_new ("changed", G_TYPE_FROM_CLASS (klass), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_Layout_PosterClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); pp_layout_poster_signals[POPUPMENU_SIGNAL] = g_signal_new ("popupmenu", G_TYPE_FROM_CLASS (klass), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_Layout_PosterClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); pp_layout_poster_signals[SELECTIONCHANGED_SIGNAL] = g_signal_new ("selection_changed", G_TYPE_FROM_CLASS (klass), GSignalFlags(G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION), G_STRUCT_OFFSET (pp_Layout_PosterClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } static void pp_layout_poster_init (pp_Layout_Poster *ob) { ob->state=NULL; ob->pageview=NULL; ob->imagecontrol=NULL; } photoprint-0.4.2-pre2/pp_menu_image.h0000644000175000017500000000116011264135764014477 00000000000000#ifndef PP_MENU_IMAGE_H #define PP_MENU_IMAGE_H #include #include #include "support/layoutrectangle.h" #include "pp_mainwindow.h" void BuildImageMenu(void *userdata,GtkUIManager *ui_manager); bool ImageMenu_GetCropFlag(GtkUIManager *ui_manager); void ImageMenu_SetCropFlag(GtkUIManager *ui_manager,bool active); enum PP_ROTATION ImageMenu_GetRotation(GtkUIManager *ui_manager); void ImageMenu_SetRotation(GtkUIManager *ui_manager,enum PP_ROTATION rotation); void ImageMenu_SetLayoutCapabilities(GtkUIManager *ui_manager,int features); void ImageMenu_DoPopup(GtkUIManager *ui); #endif photoprint-0.4.2-pre2/splashscreen/0000777000175000017500000000000011400250525014262 500000000000000photoprint-0.4.2-pre2/splashscreen/SplashScreen.tif0000644000175000017500000135200011101462352017276 00000000000000II*¨Ò=============================================>>>>>>>>>>>>>???????????????@@@@@@@@@@@@BCCCCCCCCCDDDEEEEEEEEEE E E E F F F FEE E E F G G F F F F F F F F F G G G G G G G H H I I IJJKKKKMMMMMMMMMMMNNNNNNNNNNNNNNNNNNNNMMMMKKKMMMMMJKLMNNNNNNNNORRRTTTVVVVWXXXXXWWXXWXXXXXXWWWWWYYYXXYY!![!![""\""\""\%%^%%^%%^%%^%%^%%^%%^%%^%%^&&_%%^&&_&&_''`''`''`''a''`''a''a((b((b((b((b**c**c**c**c++d++d++d,,e,,e,,e,,e--f,,e++d--f--f00h00h00h00h00h00h00h//h00h00h22j22j22k22k22k22k33k55m55m66n77n77n77n66n77n66n66n77n77o88p<>u??v@@w@@wAAxAAxAAxBByBByCCzAAxAAx??vAAxAAxAAxDD{DD{DD{DD{FF|FF|FF}GG~GG~HH~HH~IIIIHH~IIJJ€KKKKLLLL‚MMƒOO…MMƒQQ†QQ†QQ‡QQ‡RRˆRRˆTT‰TT‰TT‰SSˆVV‹VV‹XX[[[[\\‘\\‘]]‘]]‘\\‘\\‘]]‘__“^^’^^’``”__“aa”aa•aa”cc—cc—=============================================>>>>>>>>>>>>>???????????????@@@@@@@@@@@@BCCCCCCCCCDDDEEEEEEEEEE E E E F F F FEE E E F G G F F F F F F F F F G G G G G G G H H I I IJJKKKKMMMMMMMMMMMNNNNNNNNNNOOOOONONNNNNNNMMNNNNNNLNNNNNNPPPPPRTTTUUUWWWWXYXXXXXXYXWXXXWWVVVVVVYYYXXYY!![!![""\""\""\%%^%%^%%^%%^%%^%%^%%^&&_%%^&&_%%^&&_&&_''`''`&&_''`((b((b))b))b))b((b))b**c**c**c**c++d,,e--f00h..g//h00h00h..g..g00h00h00h00h00h00h22k22j22j22j55m55m66n66n66n66n22k44l33k33k33k55m88p88p::q88p88p77o77o77o77o88p<>u>>u>>u??v??v??v>>u??v@@wAAxAAxBByCCzAAxAAxBByDD{FF|FF|FF|FF}EE{EE{GG~GG~FF}FF}GG~HH~GG~GG~LLLLOO…PP…QQ†QQ†QQ†PP…PP…PP…OO…QQ†SSˆVV‹VV‹WWŒWWŒUUŠUUŠVV‹WWŒZZŽZZŽZZŽ[[\\‘\\‘\\‘\\‘]]‘]]‘]]‘]]‘__“__“__“``”bb–bb–bb–bb–cc—ffš================================>>>>>>>>>>>>>>>>????????????????@@@@@@@@ABBBBCCCCCCCCCCCCEEEEEEEEEEEEEEEEEE E F F G G G G G G G G F G G G G G G E EEEEEEEEEEEEEE F F H I I I I IJKKKLLLMMMMMNNNNNNNNNNOOOOOOOOOOONNNNNNOOOOONOOOPPPRRRTTTTTTUUUXXXXXYXXXXXXYXWXXXXYXXXXYY!![""[""\ Z Z!![""[""[""[##]##]##]''`''`&&_&&_''`''`''a((b''`''a''`''`''`''`''`&&_''`))b))b**c**c**c**c++d++d++d,,e,,e,,e--f..g//h..g..g00h00h00h00h//h//h//h..g..g//h11i22j22j00h22k22k33k33k66n66n22k33k33k55m55m66n::q::q;;r::q::q::q<>u>>u??v@@w@@wAAx@@w@@w@@wAAxAAxCCzDD{DD{EE{EE{DD{EE{FF|FF}GG~HH~FF}HH~HH~HH~HH~HH~FF}FF}HH~JJ€IIKKNN„MMƒPP…PP…QQ†QQ†PP…OO…PP…NN„NN„NN„QQ‡UUŠVV‹UUŠVV‹VV‹VV‹VV‹YYŽ[[[[[[[[]]‘^^’^^’__“``”``”aa•aa•aa•cc—cc—cc—ffšffšhh›hh›hh›iiœ================================>>>>>>>>>>>>>>>>????????????????@@@@@@@@ABBBBCCCCCCCCCCCCEEEEEEEEEEEE E F F F F F F G G H H H H H H H H G H H H H H H F F E E F F G G G G G G G G G H HJKKKKKKKKMNNNNNNNNOOOOOOOOPPRRRRRQQPPPOOOONNNNOOOONOOOPPPRRRRRTTTTTUUXXXXXXXXXWXWXWVVVXXXXXXXY!![YY Z Z Z!![%%^%%^%%^%%^%%^%%^''a''a''`''`''a''`''a((b((b))b((b))b))b((b((b((b))b**c**c++d++d**c++d++d++d,,e..g//h00h22j22k11i00h00h00h00h00h11i11i11i11i00h33k44l44l55m55m33k33k33k44l44l66n66n55m66n77n77o88p::q::q::q::q88p88p99q;;r>>u>>u==u==u==u<>u??vAAxAAxCCzAAxAAx@@wBByBByCCzBByAAxAAxAAxBByCCzEE{FF}GG~HH~HH~IILLLLKKKKKKLLLLLLNN„PP…PP…PP…QQ‡QQ‡QQ‡RRˆRRˆTT‰UUŠSSˆVV‹VV‹VV‹WWŒWWŒWWŒZZŽ[[[[[[\\‘]]‘]]‘]]‘^^’__“__“aa”aa•bb–bb–``”aa•aa”cc—cc—ff™gg›hh›hh›hh›hh›jj================================>>>>>>>>>>>>>>>>????????????????@@@@@@@@ABBBBCCCCCCCCCCCCEEEEEEEEEEEE E F F F F F F G G H H H H H H H H G H H H H H H F F E E F F G G G G G G G G G H HJKKKKKKKKMNNNNNNNNOOOOOOOOPPRRRRRQQPPPOOOONNNNOOOONOQQRRRTTTTTUUUUVVXYYYY Z ZYYYYYYYYXXXYY Z ZYYY""[##]!![!![!![!![!![""[%%^%%^%%^&&_&&_&&_))b))b))b))b**c**c**c((b((b((b))b))b))b((b((b''a''a))b))b))b))b((b))b**c**c++d,,e..g--f00h22j22j11i11i00h00h00h11i22j22j22j22j55m66n66n33k33k33k33k33k66n66n66n66n77n77o88p::q;;r<>u==u==u??v??v>>u>>u??v@@wBByBByDD{EE{FF}EE{DD{DD{DD{EE{DD{BByCCzEE{EE{FF}GG~JJ€KKKKKKLLLL‚LL‚MMƒMMƒMMƒMMƒLL‚LL‚OO…RRˆRRˆRRˆUUŠVV‹UUŠSSˆSSˆSSˆUUŠUUŠVV‹WWŒYYŽYYŽXXWWŒYYŽZZŽYYŽ[[]]‘]]‘^^’__“^^’``”``”``”aa•aa”bb–aa•dd˜ee˜ff™ff™ee˜ff™hh›iiœkkžllŸllŸ======================>>>>>>>>>>>>>>>>??????????????????????????@BBBBBBBBBBBBCCCCCCCCCCCCEEEEEEEEEEEE E G G G G G G G G H H H H H H H H H H H H H H H E EEE EE F E E EEEEEE F F IJJJJJKKKKKKKMMMMNOOOOOOOOPPRRRRRQQQQQQPPPONNNOOOONOQQRRRTTTTTTTTTVVXYYYY Z ZYYYYYYYYXXXYY Z ZYYY""[##]!![!![!![""[""[##]&&_&&_&&_''`''`''`**c**c**c**c**c**c**c((b((b((b))b**c**c))b))b**c**c++d++d,,e--f,,e,,e++d,,e--f--f//h--f00h11i22j22k22j22j22k33k66n55m55m55m55m55m66n66n33k66n66n66n66n99q99q77o77o77o88p;;r;;r<>u>>u??v>>u<>u@@wAAxCCzDD{DD{DD{EE{DD{EE{FF}FF}EE{CCzBByCCzFF|FF}GG~HH~IIIIIIKKLLLLLL‚MMƒMMƒNN„NN„OO…OO…OO…QQ†QQ‡QQ‡TT‰VV‹UUŠUUŠVV‹VV‹WWŒWWŒWWŒWWŒZZŽZZŽZZŽYYŽ\\‘]]‘\\‘]]‘__“``”aa•aa•aa•cc—cc—cc—dd˜cc—dd˜dd˜ffšgg›hh›hh›hh›jjkkžkkžmm nn¡nn¡======================>>>>>>>>>>>>>>>>??????????????????????????@BBBBBBBBBBBBCCCCCCCCCCCCEEEEEEEEE E F F G H H H H H H H H H H H I I I I I I I IJ I IJ H H G F F F G H H H G G G G G G GJJJJKKKKKNNNNNNNOOONQQQQQQRRRRRRRRQQQRRRRRPOOOPPPPOOQQRRRTTTTTTTTUXXY!![!![!![!![""[""[!![!![!![!![YY!![ ZY Z!![""\""[!![!![!![!![!![!![""[!![!![!![""\$$^%%^%%^%%^%%^&&_&&_&&_))b))b))b))b**c))b))b((b((b((b))b**c**c**c**c++d++d,,e++d,,e,,e,,e--f--f--f..g//h00h11i22j22j33k44l22k22j22k44l66n66n66n66n66n66n55m55m33k66n77n77n77n99q99q99q99q88p88p;;r;;r<>u@@wAAxAAx>>u>>u??v??v??vAAxDD{DD{EE{EE{FF}FF}EE{FF}HH~IIFF}FF}FF|FF}GG~IIIIKKKKKKLL‚MMƒMMƒNN„NN„PP…PP…PP…QQ†PP…RRˆRRˆSSˆSSˆUUŠUUŠVV‹UUŠVV‹WWŒZZŽZZŽ]]‘\\‘[[ZZŽ[[\\‘]]‘``”aa•bb–cc—dd˜cc—bb–bb–cc—ee˜ff™ff™ffšgg›gg›iiœhh›hh›hh›iiœkkžmm nn¡mm mm nn¡oo¡======================>>>>>>>>>>>=====>>????????????????????????@AAAAABBBBBBBCCCCCCCCCCCCEEEEEEEEE E F F G H H H H H H H H H H H I I I I I I I IJ I IJ H H G F F F G H H H G G G G G G GJJJJKKKKKNNMMMMMNNNNQQQQQQQQQQQQRRQQQRRRRRPOOOPPPPOOQQRRRTTTTTTTTUXXY!![!![!![!![##]##]""\""\""\""[!![!![""[!![ Z!![""\""\""[!![!![!![!![!![""[$$^##]##]##]%%^%%^''`''a''a''a((b))b))b**c**c**c**c++d**c++d**c++d++d,,e,,e,,e,,e,,e--f..g..g--f--f,,e--f..g//h//h00h11i22j22k22j44l55m44l22k44l55m55m55m55m55m77n77o77o77n88p88p::q;;r;;r;;r77o77o88p88p::q::q>>u@@w@@w??v>>u>>u>>u>>u>>uAAxAAxAAxAAxAAxCCzCCzDD{DD{EE{EE{EE{EE{DD{FF|GG~HH~IIKKKKHH~HH~IIKKKKLLLLMMƒLL‚LL‚LL‚LLLLLL‚LL‚LL‚LL‚QQ†QQ‡RRˆUUŠUUŠVV‹TT‰UUŠUUŠTT‰UUŠVV‹VV‹ZZŽ[[[[[[]]‘\\‘\\‘]]‘^^’``”``”aa”aa•cc—dd˜cc—dd˜ee˜gg›gg›hh›hh›iiœiiœkkžjjkkžkkžkkžllŸnn¡pp¢oo¡pp£pp£ss¥===============>>>>>>>>>>?>>>>>>>>>>>>>>>>>>>??????????BBBBAAAAAAAABBBBBCCCCCDDDEEEEEEEEEEEE F G G G G G G H H H H H H H H H H H H H H I I I I I I I H H H H H H H H F F F G H H H G G G G G G G G H H H H HKKJMMMMMMMMMMMPPPPPPPQQQQQQQQQQRRRRRPORRRRRRPPRRTTTTTTTTUVVXYY Z!![!![!![!![##]##]""\""\""\""[!![!![""[!![ Z!![""\""\""[!![!![!![!![!![""[$$^##]##]##]%%^%%^''`''a''a''a((b))b))b**c**c**c**c++d**c++d**c++d++d,,e,,e,,e,,e,,e--f..g..g--f--f,,e--f..g//h//h00h11i22j22k22j44l55m44l22k44l55m55m55m55m55m77n77o77o77n88p88p::q;;r;;r;;r77o77o88p88p::q::q>>u@@w@@w??v>>u>>u>>u>>u>>uAAxAAxAAxAAxAAxCCzCCzDD{DD{EE{EE{EE{EE{EE{FF}HH~JJ€JJ€KKKKIIIIKKLLLL‚MMƒMMƒNN„NN„NN„MMƒLL‚MMƒOO…PP…PP…PP…TT‰UUŠVV‹WWŒWWŒWWŒWWŒVV‹WWŒWWŒWWŒZZŽZZŽ\\‘]]‘\\‘\\‘``”``”__“aa•bb–cc—bb–cc—dd˜dd˜ee˜ffšhh›gg›ffšffšgg›hh›jjmm llŸnn¡nn¡pp¢pp¢qq¤ss¥pp£pp¢rr¤tt¦uu¨===============>>>>>>>===>>>>=============>>>>>>???????BBBAAAAAAAAABBBBBBCCCCDDDEEEEEEEEEEEE G H H H H H H H H H H H I I I I I I I I IJJJKKKKJJ H H IJJ I H H H H H H H H H H H H H H H I I IJIMMMNNMMNNNONNNOOOOOOPPRRRSSSRRRSSSRRRRRRTTTTRQRRTTTUUUUUWXXY Z Z""\##]##]##]##]$$^##]""\""\""\##]##]""\""\""[""\""\##]$$^##]##]##]##]##]$$^%%^''`&&_%%^%%^&&_''`''`((b((b((b**c,,e,,e++d++d,,e,,e--f,,e,,e,,e,,e,,e--f--f,,e,,e--f..g//h00h00h00h11i22j22j22k44l55m66n66n66n55m55m55m66n55m66n66n66n66n77o99q88p::q::q88p88p88p99q99q;;r;;r;;r;;r<>>>>=========<<<<<<<<<<<<=====>>>>?????BAAAAA@@@@@@AAABBBBBCCDDDEEEEEEEEEEEE G H H H H H H H H H H H I I I I I I I I IJJJKKKKJJ H H IJJ I H H H H H H H H H H H H H H H I I IIIMMLMMMLMMMNMMMNNNNNNNOQQQRRRRRRRSSRRRRRRTTTTRQRRTTTUUUUUWXXY Z Z""\##]##]##]##]$$^##]""\""\""\##]##]""\""\""[""\""\##]$$^##]##]##]##]##]$$^%%^''`&&_%%^%%^&&_''`''`((b((b((b**c,,e,,e++d++d,,e,,e--f,,e,,e,,e,,e,,e--f--f,,e,,e--f..g//h00h00h00h11i22j22j22k44l55m66n66n66n55m55m55m66n55m66n66n66n66n77o99q88p::q::q88p88p88p99q99q;;r;;r;;r;;r<>>>===<<<<<<;;;;;;;;;;;;;;<<<===>>>>???AAAA@@@?????@AAABDDDEEEEEE E E E F F F F F F F F H H H H I I I I I I I IJJJKKKKKKKKLLLMMKKJJJJKJ I I I H H I H I I I I I I I IJIIJJMMMLLLLMLLMLLMNNNNNNNOPQRSSTSSTTTSTTTTTTTTTTRRTTTTTVVWWWXXXX!!Z!!Z##\$$]$$]%%^%%^%%^%%^%%^%%^$$^$$^$$^$$^$$^##]##]$$^%%^%%^%%^%%^%%^%%^''`((b''`&&_&&_&&_''`((b++d++d,,e,,e,,e,,e//h//h//h//h00h00h..g--f--f--f//h//h..g..g00h00h00h00h00h22j22j11i22j22k22k22k44l55m77n66n77n77o77n77n77n;;r::q::q::q::q;;r;;r;;r88p::q;;r<>u>>u==u==u>>u>>u@@w@@w@@w@@wAAxAAxAAxBByBByCCzFF}FF|EE{CCzCCzCCzDD{FF}GG~JJ€KKKKKKLLKKLLLL‚MMƒLL‚LLKKLL‚MMƒNN„OO…PP…PP…PP…QQ†RRˆRRˆRRˆSSˆSSˆUUŠUUŠTT‰UUŠWWŒWWŒXXXXYYŽZZŽ[[[[[[\\‘]]‘__“aa•``”^^’__“``”cc—ee˜ffšffšgg›hh›hh›gg›gg›gg›hh›iiœkkžmm kkžnn¡nn¡nn¡pp¢pp¢pp£qq¤rr¤tt¦uu§uu§uu¨uu¨xxªuu¨vv¨ww©xxª{{¬==>>>>>>>>>>>>>>>=>>===<<;;:::99999999999:;;<>???@@AAAAAAAAA@ D©P??????AACDDDEEEE E F F H H H H H H H H H H H H H I I I I I I I IJJJKKKKJJJJKKLMMMMMKLLMMKK I H H I IJJJ I I I I H H HIJIIHHGJIHJIIJJJKKKKKLLLMNPPQRRRSSTTSSTTTTTTTTTTTUUVVVXXYYXXXX!!Z!!Z!!Z##\$$]$$]%%]%%]%%^%%^%%^%%^$$^$$^$$^$$^$$^##]##]$$^%%^%%^%%^%%^%%^%%^''`((b''`&&_&&_&&_''`((b++d++d,,e,,e,,e,,e//g//g//g//g00g00g..g--f--f--f//h//h..g..g00h00h00h00h00h22j22j11i22j22k22k22k44l55m77n66n77n77o77n77n77n;;r::q::q::q::q;;r;;r;;r88p::q;;r<>u>>u==u==u>>u>>u@@w@@w@@w@@wAAxAAxAAxBByBByCCzFF}FF|EE{CCzCCzCCzDD{FF}GG~JJ€KKKKLLLL‚LLLL‚MMƒMMƒLL‚LL‚LLMMƒNN„PP…QQ†QQ†QQ†QQ‡RRˆTT‰UUŠUUŠWWŒWWŒWWŒWWŒWWŒXX[[[[[[[[\\‘]]‘]]‘]]‘^^’``”aa•aa”bb–aa”bb–cc—dd˜ff™gg›hh›hh›iiœiiœiiœiiœjjkkžjjiiœjjmm nn¡qq¤pp£pp£rr¤ss¥tt¦vv¨vv¨uu¨uu¨ww©xxª{{¬{{¬||®~~¯~~¯€€±°==>>>>>>>>>>>>>>==>==<<;::998877777777778899:==>??@@@AAA@@A@@tt“ÿÿÿîîòhhŠ@>>>>@ACDDDDEEE E F F H H H H H H H H H H H H H I I I I I I I IJJJKJJJJJJJKKKLLMMMKLLMMKK I H H I IJJJ I I I I H H HIIIHGGFHGFHGGHGGHIIIIIIJJLMNOPQQRRSSSSSTTTTTTTTTTVVWWWXXYXXXXX Y!!Y!!Y$$\$$]$$]&&^&&^''`''_&&_&&_&&_&&_&&_&&_&&_%%^%%^''`''`&&_&&_&&_&&_&&_''`**c))b((b((b((b))b**c--f--f..g..f00g00g00g00g//g//g00g00g00g00g11h11i22j22j11i11i22j22j22k22k22k22j22k22j22j22k33k44l55m77n88p99q99q77o99q::q::q::q::q::q::q<>u>>u@@w@@w@@w==u==u>>u>>u??v??vCCzCCzDD{DD{CCzCCzCCzCCzFF|EE{FF}FF}GG~FF}IIIIIIIIKKKKKKIILLLL‚OO…OO…PP…PP…MMƒNN„PP…QQ†RRˆRRˆRRˆSSˆRRˆSSˆRRˆRRˆRRˆRRˆUUŠUUŠWWŒYYŽZZŽ[[]]‘]]‘[[\\‘[[[[\\‘]]‘]]‘``”aa•aa”aa•cc—ee˜ff™ffšgg›hh›hh›hh›iiœkkžllŸllŸnn¡pp¢nn¡mm nn¡pp¢pp£uu§tt¦uu¨vv¨vv¨vv¨yy«zz«yy«zz«zz«zz«||®~~¯~~¯€€±‚‚³‚‚³‚‚³==>>>>>>>>>>>>>>====<;::9LBBjgg†ˆˆ ¥¥·½½ÊÕÕÝèèíññôúúûûûüððóÙÙá··Åš;;c7788;<==>??@@@@@@@?Jëëðÿÿÿÿÿÿÿÿÿvv”====?@CCDDDEEE E F F H H H H H H H H H H H H H I I IJJJJJKKJLLLLLKKKLMMMMMNNMMNNNLMKJJJJJKKKKKKIIIIJIHHGFF))XNNurr‘¨««½ÂÂÎØØàêêîòòõúúûûûüññôÜÜ佽ˌŒ¤LLrKKLMNOPPQQRTTUUUUUTUUUUUTUUWWWXXWWWXWW!!Z""Z""Z%%\%%]%%]%%]&&^((a''`''`''a''`&&_&&_''`&&_%%^&&_''a''a''`&&_&&_&&_&&_&&_))b))b((b((b**c++d++d,,e,,d--e--e--f..f..f..f//f//f//f//f//g//g11h11h22j11i22j22j22k33k33k22k22j22j22k33k44l44l66n66n77o77o88p99q99q77o99q::q::q::q::q::q;;r==u<>u??v??v@@w@@wAAx==u>>u??v??vAAxAAxFF}FF}EE{EE{DD{DD{DD{FF|HH~HH~IIIIHH~IIJJ€KKLLLL‚LL‚MMƒNN„MMƒMMƒOO…QQ†PP…OO…PP…QQ†QQ†RRˆRRˆUUŠSSˆSSˆSSˆUUŠUUŠSSˆVV‹WWŒVV‹VV‹VV‹YYŽ\\‘\\‘]]‘^^’^^’]]‘]]‘]]‘]]‘__“bb–cc—dd˜dd˜cc—cc—cc—ee˜ee˜hh›hh›kkžkkžkkžkkžkkžllŸllŸmm mm nn¡pp¢qq¤ss¥ss¥ss¥tt¦tt¦vv¨ww©xxªzz«yy«zz«{{­{{­~~¯~~¯€€±²‚‚³……µ……µ……µ>>>>>??????????>>==G==hkk‹™™¯ÅÅÑïïòÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÜÜãee„989:;=>?@@AAA@@?>…… ÿÿÿÿÿÿÿÿÿïïóI;<==??@CD D D E F F F F G G H H H H H H H H H H H H I I IJJJJJKJJLLKKKKKKLLLMMMMNNNNONNNLKKKKKKKJJJIIIIIIRGGrss“žž´ÈÈÔððóÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÞÞåppŽJJKMNOPPQSTTUUUUTUUUUUTUUWWWWWWWVWWV!!X##Z##Z%%\&&]&&]&&]&&^''`''`''`''`''`&&_&&_''`&&_%%^&&_((b**c))b((b((b((b))b))b++d++d**c**c,,e--f--f..f..f--f--e//f00g//f//f//e//e11h11h11h00g11i22i22j22j22j22k33k44l55m44l44l55m55m66n77o88p99q::q99q99q::q::q;;r99q88p::q;;r::q::q<>u<>u??vAAxAAxEE{EE{EE{EE{DD{DD{EE{FF|FF}HH~GG~GG~HH~FF}FF}IIKKLL‚LL‚PP…NN„NN„NN„NN„OO…PP…PP…NN„MMƒNN„QQ†QQ†SSˆUUŠVV‹VV‹VV‹WWŒWWŒYYŽVV‹XXZZŽWWŒXX[[]]‘``”``”``”aa”aa”``”``”``”bb–cc—ff™gg›ee˜ee˜ee˜gg›hh›hh›gg›iiœkkžnn¡llŸnn¡nn¡pp£nn¡pp¢pp£pp¢qq¤tt¦uu§uu§uu§uu§vv¨ww©ww©yy«zz«||®}}®}}®||®~~¯~~¯~~¯€€±‚‚³ƒƒ´……µ……¶††·>>>>>??????????>>=ÊÊÖÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¿¿ÌD789;=>??@@@@?>Nóóöÿÿÿÿÿÿÿÿÿyy•::;<=>?@CC D D D F F F F G G H H H H H H H H H H H H I I IJJJJJJJJKKKKJJJJKKLLLMMMNNNONNNLKKKKKKKJJJIIIHHÍÍØÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÄÄÐ))UJLMNPQSTUVWWVVUWWWWWUWWXXWXXXWW XbbˆŸ""Y##Y##Y&&]&&]&&^&&^''_''`&&_''`''`((a''`&&_&&_%%^&&_''`''a((b''a''a''`''`((b((b**c++d**c**c++d,,e,,d--e,,e--e--e//e00g..d..d//e//e00f00f00f00g11h11h22j22i22j22k33k44l55m66n66n77o77o77o88p::q::q<>u==u??v??v@@w@@wAAxAAxBByCCzFF|CCzCCzEE{EE{FF}FF}FF}FF}FF|FF}GG~HH~LLLLJJ€GG~FF}FF}HH~JJ€LL‚OO…PP…QQ†PP…PP…QQ†QQ†QQ†RRˆPP…OO…NN„QQ†RRˆRRˆSSˆUUŠUUŠUUŠWWŒWWŒWWŒXXWWŒXXZZŽYYŽZZŽ[[]]‘__“``”``”^^’^^’bb–bb–cc—ff™ff™ffšffšee˜ffšgg›kkžnn¡nn¡nn¡pp¢oo¡pp¢nn¡nn¡pp¢rr¤qq¤ss¥tt¦tt¦uu¨uu¨vv¨vv¨yy«zz«zz«{{­zz«{{­}}®~~¯~~¯°€€±€€±€€±ƒƒ´‚‚³ƒƒ´……µ……¶‰‰¹ŠŠ»>>>>>?????????>>==ˆˆ£ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿûûüùùúÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÒÒÛ?78:;<=>????>=””«ÿÿÿÿÿÿÿÿÿääé@::;<>?@?BC E E E G G G G H H H H H IJJJJJJJJJJJMMMMLLLKKKJddŠQJJJJJKLMMNNNNNONOONMMLKKKKJIIIIHHH©ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿûûüùùúÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÕÕÞ$$QJKLNPQSTUUVVUWXXXXXUWWWWWXWWVV!!YÉÉÖÿÿÿ³³Å,,_""W%%[%%\&&]&&]&&^''_&&_&&_''`((a))a((b((b''a((b((b))b**c**c))b))b))b))b))b++d,,e++d++d,,e..f..f//g//f00g//f11gzzœ88l00e00e00e//e00f00f00f11h11h22i11j44k66m66n77n77o88p88p88p99q88p99q::q::q<>u>>u>>u??v??v??vAAxBBy@@wBByAAxAAxEE{EE{EE{EE{FF}FF}FF}GG~GG~HH~LL‚LL‚LLIIIIHH~KKLLNN„PP…QQ†QQ†QQ†QQ†RRˆSSˆRRˆSSˆQQ†RRˆRRˆTT‰UUŠWWŒWWŒWWŒWWŒXXXXWWŒXXZZŽ[[[[]]‘]]‘]]‘]]‘``”``”aa”aa•aa•aa•cc—ee˜ffšff™ee˜dd˜ff™gg›hh›iiœkkžllŸllŸmm oo¡oo¡pp£pp£ss¥ss¥qq¤rr¤tt¦uu§uu¨zz«zz«zz«{{­||®~~¯}}®}}®}}®~~¯€€±²€€±‚‚³ƒƒ´‡‡·……¶‡‡·††·††·‰‰¹ŠŠ»½¾??????????????>>=<,,[ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿêêîÇÇÑõõ÷ÿÿÿÿÿÿÿÿÿqqˆ!!E 1.. 2%%KPPo˜˜ªòòôÿÿÿÿÿÿÿÿÿÿÿÿ¥¥¶678:;<?@@@@? Qøøúÿÿÿÿÿÿÿÿÿee„899:<=>@ABCCDD D E E E F F G H G G H H H HIIJJJJJMMMLLLKKJJ77fýýþÝÝåFFqHHHIJKLMMNNNMONNNNNNLLLKKMLLLKKJ G66eÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿëëïÊÊÔöö÷ÿÿÿÿÿÿÿÿÿyy--P>;<A33W\\zŸŸ°óóõÿÿÿÿÿÿÿÿÿÿÿÿ¬¬¼GIKMOQSTUVVWVWXYYYYVXXXXX!!Y!!Y!!X!!W VJJuÿÿÿÿÿÿÿÿÿÙÙâ''[%%Z&&Z''\((]))_((_))`))a))a))a))a((a((b''a((b((b))b**c**c))b))b))b++d++d,,e,,e**c++d++c..f--e//f//e//e//dQQ~ýýþââé^^‡11e11e..c//d//e00f22h00h22h33j55m66m77m77n77n77n66n77n77o77o99q<>u>>u==u>>u??v??v??vAAxAAxAAxAAxAAxAAxAAxCCzDD{EE{DD{AAxAAxAAxAAxFF}FF}IIIIIIJJ€JJ€KKKKKKLL‚LL‚MMƒLL‚LL‚LL‚LL‚NN„PP…PP…PP…NN„QQ†QQ‡RRˆTT‰TT‰SSˆSSˆUUŠVV‹WWŒVV‹WWŒXXWWŒXXZZŽWWŒYYŽZZŽZZŽ[[]]‘``”aa•bb–bb–dd˜cc—cc—cc—bb–bb–dd˜dd˜ff™iiœhh›hh›iiœjjkkžnn¡nn¡pp¢oo¡nn¡oo¡pp¢ss¥ss¥ss¥uu§tt¦tt¦uu¨vv¨xxªzz«{{¬{{­}}®}}®~~¯°€€±€€±€€±ƒƒ´ƒƒ´‚‚³„„´‡‡·ˆˆ¸ŠŠºŠŠº‰‰¹ŠŠ»ŠŠ»½À’’Á??????????????>>=<;ÑÑÛÉÉÔ™™®jj‡99`<1%%Kþþþÿÿÿÿÿÿééí 0,,--.//0?®®¼ÿÿÿÿÿÿÿÿÿÿÿÿ<????>——­ÿÿÿÿÿÿÿÿÿÕÕÝ87789;<>?@BCCDD D D D D E E F G G G H H H HIIIIIIJMLLLLKKJIHªª¾ÿÿÿÿÿÿýýþww•FGGHJKLMNNONOMNNNNNMMMMMNMMLLLKGHÓÓÝËËמž³qqŽDDi L?22Wþþþÿÿÿÿÿÿëëî<89:<=>??&&M³³ÁÿÿÿÿÿÿÿÿÿÿÿÿLLoHJLMPQSTUVVUVVWWWWTWWXWW Y X WVU¨¨½ÿÿÿÿÿÿÿÿÿ¨¨¼##W%%X%%Y&&Z''\((^))_((_))`))a))a**b**b**b**b**b**b**b**b**b**b**b++c..f..f--e--e--e..f//g11i11h22h11g33h33h¶¶Èÿÿÿÿÿÿýýþ‰‰¦11c00c00d22f33g44h44j44k66k66l66n77n77n77n77o77n77o88p::q;;r<>u>>u>>u>>u>>u>>uAAxAAxBByCCzCCzDD{DD{DD{EE{DD{CCzCCzCCzEE{FF}LLLLKKKKIIIIIIKKLL‚MMƒNN„NN„OO…NN„QQ†PP…QQ†QQ‡QQ‡RRˆSSˆRRˆSSˆTT‰VV‹TT‰TT‰SSˆVV‹VV‹WWŒYYŽXXXXXXXXZZŽYYŽZZŽ[[[[ZZŽ\\‘__“aa•bb–cc—cc—ee˜dd˜dd˜dd˜dd˜dd˜hh›iiœiiœkkžjjkkžkkžnn¡nn¡pp¢pp£ss¥tt¦pp£qq¤ss¥tt¦uu§tt¦uu¨ww©zz«zz«xxªxxªxxª{{¬}}®°€€±€€±‚‚³‚‚³‚‚³ƒƒ´„„´……µ††·ˆˆ¸‰‰¹ŠŠ»‹‹»ŠŠ»ŒŒ¼¿¿‘‘Á””Õ•Ä??????????????>>=<;9864310ˆˆÿÿÿÿÿÿÿÿÿ‹‹+++,-.//002»»Çÿÿÿÿÿÿÿÿÿ™™¬4578<=>>>>""RøøúÿÿÿÿÿÿÿÿÿQQs56689; = > @ A B CCCD E G G G G G G H HIHHIIKKLLLLLLLMMLLKJI33büüýÿÿÿÿÿÿÿÿÿ\\FFGHJKMNOPPQQNNNNNNLKJKKLKKKKJI FED BCA>?=£ÿÿÿÿÿÿÿÿÿ‘‘¢7789;=>>??AÀÀËÿÿÿÿÿÿÿÿÿ¡¡³FIKMNPSUUVWVWXXXXWW Y!!Z""Z""Z""Z##Z""Z##Y##X99iùùúÿÿÿÿÿÿúúû<>u??v@@w??v>>u==u>>u@@wAAxAAxAAxCCzDD{EE{CCzDD{DD{DD{FF|FF|EE{DD{FF|EE{FF}FF}IIKKKKIIIIHH~HH~IILL‚NN„PP…PP…MMƒOO…OO…QQ†RRˆRRˆUUŠUUŠVV‹UUŠUUŠVV‹WWŒVV‹UUŠVV‹VV‹WWŒWWŒXX[[[[\\‘\\‘]]‘^^’]]‘]]‘__“]]‘]]‘__“bb–dd˜ee˜ee˜dd˜cc—dd˜ff™ffšiiœiiœllŸkkžkkžjjllŸnn¡pp¢qq¤ss¥tt¦tt¦uu§tt¦tt¦tt¦ww©uu¨xxªxxªzz«zz«{{¬{{­~~¯°°°°€€±€€±……µ……µ……µ……µ……¶ˆˆ¸‰‰¹ŠŠ»ŠŠ»ŠŠ»¾ŽŽ¾¾¿À’’Á••Ä••Ä••Ä???????????????>>=;:87642 4ççëÿÿÿÿÿÿþþþ&&H++,,-.//111BBbÿÿÿÿÿÿÿÿÿÍÍÖ4679;<== ? >šš°ÿÿÿÿÿÿÿÿÿÃÃÎ555679: < > ? A B CBCC D E F F G G F F GHGGHHKKKKKLLLLLLLKJIH¢¢·ÿÿÿÿÿÿÿÿÿËËÖCCDEFHILMNOPPPPOPPPPNMKKKKLLLKKJFFECCA?>@ééìÿÿÿÿÿÿþþþ33S899:;=@@AAAOOnÿÿÿÿÿÿÿÿÿÑÑÙEGILLORTTUVUWWWWWWVW!!X""Y!!Y!!Y""Y""X""W""V¢¢¸ÿÿÿÿÿÿÿÿÿ¥¥¹##T$$U&&X&&X''Z(([))]))^**_**`**a**a**b++c**b**b**b,,d--e,,d,,d,,d,,d--e//f//f..f..f//f11h11h00h00g00f00d22e¯¯ÂÿÿÿÿÿÿÿÿÿÑÑÜ//^//^//_//`11b22d22f33h44i55k77m88n88o88p99p::p<>u@@w>>u>>u??v??v@@w>>u>>u@@wAAx@@wAAxBByCCzDD{AAxCCzCCzCCzDD{FF}FF}FF}FF}HH~KKLLLLLLLLKKKKLL‚MMƒOO…QQ†OO…NN„MMƒLLPP…PP…RRˆUUŠVV‹VV‹VV‹WWŒVV‹VV‹VV‹VV‹TT‰UUŠUUŠWWŒWWŒZZŽ[[[[[[]]‘^^’__“``”``”aa”bb–bb–bb–cc—cc—ee˜ff™ffšffšgg›hh›iiœjjllŸllŸllŸkkžkkžnn¡pp£ss¥tt¦ss¥ss¥uu§uu§vv¨uu¨xxªww©uu¨uu¨xxªzz«{{¬||®~~¯}}®€€±€€±‚‚³‚‚³‚‚³‚‚³ƒƒ´……¶‡‡·††·ŠŠ»ŠŠ»ŠŠ»ŒŒ¼ŽŽ¾ŽŽ¾¾’’Á’’Á••Ä––Å––Ř˜Ç˜˜Ç––Å™™Ç????????????@@A@@?><:9752VVsÿÿÿÿÿÿÿÿÿ¼¼Æ+++,-./00222:ÿÿÿÿÿÿÿÿÿßßä3568:;<< >$$RùùúÿÿÿÿÿÿÿÿÿBBe5555679;<>?@ABBCACCCCCC D E E E EGGGHHHIIKKKLLKJIH++ZúúûÿÿÿÿÿÿÿÿÿLLqBBCDEGIKLNNOOPPPPPPPNKKKKKLLLKKKIHFEECA>^^{ÿÿÿÿÿÿÿÿÿÀÀÊ889:;<>AABBA""IÿÿÿÿÿÿÿÿÿááçDFHKKMPRSTTTVV W W W WUVU V V U!!W!!W""V::hùùúÿÿÿÿÿÿüüý??i##S$$T&&W''X''Y(([))]))^**_++`,,b++b++b,,c++b++c++b,,c--d,,c,,c++b++b,,c..e..e//e//e11g00h00g11f00e00d//bGGtûûüÿÿÿÿÿÿÿÿÿaa„--Z--[--\..]//_00a11c22e33h66k88m99n99n::p::q<<;9753ººÆÿÿÿÿÿÿÿÿÿWWq++,-./011322DÿÿÿÿÿÿÿÿÿÐÐØ34579:;; =˜˜­ÿÿÿÿÿÿÿÿÿ¸¸Å 65554679; < > ? @ A B BB@CC C D D C D D D E EFFFFGGHHJKKKKJIGF——®ÿÿÿÿÿÿÿÿÿ½½Ë?AABCEFHJKLMNNOOOOPNNMJHHHHIJJIIIHGEDECA?¾¾Éÿÿÿÿÿÿÿÿÿ__y88:;<>@BBCBB--RÿÿÿÿÿÿÿÿÿÔÔÜEGIKLORT U!!V!!WVVV V V V VT U00a V V U""V!!U!!TXX}ððóÿÿÿÿÿÿ¯¯À##R##R$$S&&U&&W''X((Z))\(([((]))^**`++`**`**a**a**a++b++b,,c++a++a++a++a++a..c..d..d--d//e11f00f22g11e11e00c¥¥ºÿÿÿÿÿÿÿÿÿÅÅÒ,,Y,,X,,X,,X--Z..]//_11c33e66i88k99n::o<>t>>t??vAAxCCzAAxCCzBByAAxCCzDD{EE{DD{DD{EE{FF}FF}FF}FF}FF}FF}FF}HH~FF}FF}FF}FF}FF}HH~LL‚LL‚NN„NN„NN„OO…OO…PP…PP…QQ†RRˆQQ‡QQ‡SSˆRRˆTT‰VV‹VV‹VV‹VV‹VV‹WWŒXXZZŽZZŽZZŽYYŽ[[]]‘^^’^^’__“__“]]‘]]‘__“^^’``”aa”aa•aa”cc—dd˜gg›gg›hh›iiœhh›iiœiiœhh›hh›iiœkkžnn¡pp£pp£pp¢qq¤tt¦uu§uu¨vv¨xxªzz«xxªxxªvv¨zz«{{¬{{­||®€€±€€±€€±°°€€±€€±„„´††·††·‡‡·‰‰¹ŠŠº‰‰¹ŠŠ»ŠŠ»ŠŠ»ŠŠ»¾¿¿‘‘ÁÀ••Ä••Ä——Æ™™ÇššÉššÉ››ÊššÉžžÌ¡¡Ï  Î????????@@@@BAAA@@?><:86$$Mþþþÿÿÿÿÿÿèèì 0---/01233433PPoÿÿÿÿÿÿÿÿÿ««¹457 8 9 ; < <""Pøøúÿÿÿÿÿÿÿÿÿ::] 65554568L;;d<=>?@@A?A@A A B A B B B B C C CDEEHHIJKJJIHHG$$TööøÿÿÿÿÿÿÿÿÿHHk=>?@ACDFHKMNNOOOOOONMNLJJJJIIKJIIIHGEHED11Yþþþÿÿÿÿÿÿêêí=99;=>@BCDDCC^^zÿÿÿÿÿÿÿÿÿ±±¿DFHJKNPQSSSTTRTTTT''Y¦¦»ððóEEpTS""T""T!!S!!R<<;97‡‡žÿÿÿÿÿÿÿÿÿ‰‰œ--..013445443ÁÁÍÿÿÿÿÿÿÿÿÿhh‚456 7 9 : ; ;““¨ÿÿÿÿÿÿÿÿÿ³³Á 6 5 5 5 556 7++Uààæððó55_<=>??@@@?@ A ATTz²²ÃééîøøúÞÞ圜±//\ ? ACCFGHIIIIHGIGŒŒ¤ÿÿÿÿÿÿÿÿÿÄÄÏ=<<=>?ACDFIKLMMNNNMN^^ƒ¶¶Çêêïùùúààç  µ66bFGGJHHHHHGEHFD¥ÿÿÿÿÿÿÿÿÿ£::;=>@ADFHHGFÇÇÑÿÿÿÿÿÿÿÿÿttEFHJLN<>s@@v@@wCCzDD{DD{CCzBByAAxCCzDD{FF|EE{EE{GG~IIJJ€JJ€IIIIIIJJ€KKJJ€IIKKKKNN„PP…PP…PP…NN„NN„MMƒNN„PP…PP…UUŠUUŠUUŠRRˆTT‰VV‹WWŒXXZZŽ[[[[[[[[[[[[[[XX[[ZZŽ[[]]‘^^’``”``”``”aa•cc—dd˜dd˜ee˜gg›ff™ff™hh›hh›hh›jjjjkkžjjnn¡nn¡pp¢pp¢qq¤pp¢qq¤pp£ss¥ss¥vv¨yy«yy«xxªww©zz«zz«{{¬||®}}®{{¬}}®||®°°ƒƒ´……µ……µ……¶……¶‰‰¹‡‡·ŠŠºŠŠºŠŠº½¿¾¿‘‘Á‘‘Á‘‘Á••Ä••Ä••Ä••Ę˜ÇššÈžžÌžžÌŸŸÎžžÌŸŸÍ¡¡Ï¤¤Ñ¥¥Ó¤¤Ñ¦¦Ôªª×?????@@@BBBBBAAA@A@>=;9 :èèìÿÿÿÿÿÿþþþ&&J-../12445555||”ÿÿÿÿÿÿÿÿÿííð< 4 5 6 8 9 : ;Jõõ÷ÿÿÿÿÿÿþþþ88\ 6 5 5 5 5 5 6BBeííðÿÿÿÿÿÿêêî..Y < = > ? ? @ @??//\ÇÇÓÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿóóõMMq ?ABDEFGHHGFEGNîîòÿÿÿÿÿÿÿÿÿRRq:::?11VQQqpp‹¥®®¾ÌÌÖLIJKMMML::gÊÊÖÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿóóöSSwGGIHIJJJJGGEFééíÿÿÿÿÿÿþþþ33V;<<>?ACEHIIH‡‡žÿÿÿÿÿÿÿÿÿîîñ$$KEFHIKM““«ÿÿÿôôö¥¥¹IIrQOQQ##T••¬üüýÿÿÿÿÿÿÿÿÿÿÿÿÏÏÙ&&U!!Q((UÃÃÐ< ?ACDFFFEFDE||–ÿÿÿÿÿÿÿÿÿôôö£­­»ÊÊÓççëýýýÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿCCjHIJKLL^^óóöÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿîîò++VDFHHIJJIGGE``ÿÿÿÿÿÿÿÿÿ¿¿Ê>=>?@BCFGIII‡‡ŸÿÿÿÿÿÿÿÿÿÿÿÿwwEFGHJK""PêêîÿÿÿÿÿÿÿÿÿŒŒ¥OOO<>s@@uBBxDDyCCzDDzEE{FF}FF}FF}FF}GG~GG~FF}GG~GG~HH~HH~FF}IIKKLLMMƒNN„LL‚LLMMƒMMƒNN„QQ†QQ‡RRˆQQ‡RRˆTT‰UUŠVV‹VV‹VV‹VV‹SSˆUUŠWWŒWWŒ[[[[\\‘\\‘\\‘]]‘__“``”``”]]‘]]‘^^’aa”bb–dd˜dd˜cc—dd˜ee˜ff™ee˜ffšgg›hh›hh›iiœkkžllŸnn¡nn¡oo¡oo¡oo¡nn¡pp¢pp£ss¥uu§uu¨tt¦uu§ww©zz«zz«{{­}}®~~¯°}}®°°°°€€±ƒƒ´……µ††·……µ……µ‰‰¹‰‰¹‹‹»‹‹»ŽŽ¾½½¾ŒŒ¼¾‘‘Á””Õ•Ä••Ä––Å••Ę˜Ç™™Ç››ÊŸŸÍ  Î¡¡Ï¡¡Ï¡¡Ï¡¡Ï¤¤Ò¥¥Óªª×ªª×««Ø¬¬Ù­­Ú®®Ú­­ÚBBBBBBBBBBBCCCBBBA@??=<ººÈÿÿÿÿÿÿÿÿÿWWt0000124457Fªªºÿÿÿÿÿÿÿÿÿÿÿÿ±±¿4 4 5 6 7 8 9 9Dððóÿÿÿÿÿÿþþþ66Y 4 5 4 4 4 5uuþþþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿZZz 9 ; < = > > >``üüýÿÿÿÿÿÿÿÿÿÿÿÿüüýÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ‡‡ž < = >ABEL;;f^^„„ž©©¼ÔÔÝýýþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿrrFGHIJii‰üüýÿÿÿÿÿÿÿÿÿÿÿÿüüýÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ‹‹¢BCFFGHIIGEC¾¾Ëÿÿÿÿÿÿÿÿÿaa}=>?@BCEGHI..W±±Áÿÿÿÿÿÿÿÿÿÿÿÿ··ÄDEGHIKKkkˆÿÿÿÿÿÿÿÿÿõõ÷00YLLcc‚ððóÿÿÿÿÿÿÿÿÿÿÿÿååêhh‡ N N N""OÕÕÞÿÿÿÿÿÿÿÿÿyy•##P##P%%R%%R((U((V((VÊÊÕÿÿÿÿÿÿÿÿÿ©©¼))W**Y**Y**Y**Y))Xcc…òòõÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿyy–**X**Y++Z--\66dUU|tt”““«µµÅÙÙâýýþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ††¢88g99i::l<>q??s@@uCCxFF|EE|EE|GG~FF}HH~JJ€JJ€JJ€IIIILLKKLLLLLLLLLL‚MMƒMMƒLL‚LL‚LLLL‚NN„RRˆSSˆUUŠUUŠUUŠUUŠUUŠUUŠVV‹VV‹WWŒYYŽXXXX[[[[\\‘\\‘\\‘]]‘__“__“aa”aa”``”__“aa•cc—dd˜ee˜ee˜ee˜ff™gg›hh›gg›ff™gg›ffšhh›kkžnn¡pp£ss¥rr¤pp£nn¡mm nn¡nn¡tt¦uu¨vv¨ww©xxªxxªzz«{{¬||®||®}}®€€±€€±²€€±‚‚³²‚‚³²‚‚³……¶ˆˆ¸ŠŠ»‹‹»ŒŒ¼¾¾‹‹»½½¾‘‘Á““Â’’Á••Ä••Ä——Æ™™ÇššÉššÉššÈ››ÊËŸŸÍ££Ñ¤¤Ñ¢¢Ð¡¡Ï¥¥Ó¨¨Õªª×§§Ô¬¬Ù­­Ú¯¯Û¯¯Û´´à´´à´´áBBBBBBBBBBBCCCBBBA@??=&&Týýýÿÿÿÿÿÿèèì 500001244 :ooŠêêîÿÿÿÿÿÿÿÿÿÿÿÿ¿¿Ê; 4 5 5 6 8 9 : :xx“ÿÿÿÿÿÿÿÿÿ°°¾ 5 4 4 3 3 4 ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÇÇÑ 6 7 9 : ; < ?@BDFH!!M{{•ììïÿÿÿÿÿÿÿÿÿÿÿÿÄÄÎ##LFGGIIKLÇÇÓÿÿÿÿÿÿÿÿÿ››¯J K˜˜¬ÿÿÿÿÿÿÿÿÿÿÿÿüüý——«&&PJLLLWWxÿÿÿÿÿÿÿÿÿ÷÷ù99`##O$$P%%Q&&R''T((UFFmþþþÿÿÿÿÿÿÿÿÿLLr((V))V((V((V((U{{—üüüÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÝÝä,,W++W,,X,,YÒÒÜþþþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ··Ç77e88h::k>>p@@rBBuCCxDDyFF{HH~IIIIHH~HH~JJ€JJ€IIJJ€KKMMƒLL‚LL‚LL‚LL‚LL‚MMƒMMƒLL‚NN„QQ†QQ‡QQ‡SSˆUUŠSSˆSSˆRRˆRRˆSSˆVV‹XXYYŽYYŽWWŒYYŽZZŽZZŽ\\‘]]‘]]‘]]‘]]‘__“aa”``”aa”aa”aa”aa”cc—cc—ee˜ee˜ee˜gg›hh›hh›hh›iiœhh›hh›jjllŸnn¡nn¡pp¢pp£pp£pp¢pp¢qq¤ss¥tt¦ww©vv¨vv¨ww©yy«{{­{{­~~¯°°€€±²²²‚‚³ƒƒ´²„„´……µ……µŠŠºŠŠ»ŠŠ»‹‹»½¿¿¾¿¿¿••Ä––Å™™Ç››Ê™™Ç™™Ç››Ê››ÊžžÌ¡¡Ï¡¡Ï££Ñ¥¥Ó¦¦Ô¦¦Ô¤¤Ò¦¦Ô¬¬Ù­­Úªª×««Ø¯¯Û²²Þ²²Þ´´à´´á´´á··ãBBCCCCCCCCCCCCDDDCB@?=‡‡ ÿÿÿÿÿÿÿÿÿˆˆ2111234?rrŒßßåÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ  ±9 5 5 5 6 6 8 9 :=ääéÿÿÿÿÿÿþþþ66Z 4 3 3 25££²ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿGGg 45 7 7 8866]ôôöÿÿÿÿÿÿÿÿÿ²²Á>433Aÿÿÿÿÿÿÿÿÿîîñ 6 8 : < =‡‡ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿýýýééíÑÑØ¹¹ÄŸŸ®††™mm…TTq@@b11U##KHDDEFCCiõõ÷ÿÿÿÿÿÿÿÿÿ··Å!!KB@A''Nÿÿÿÿÿÿÿÿÿîîñ@BDFGIJJJGŽŽ¦ÿÿÿÿÿÿÿÿÿ¤>==?@CD&&O}}–ââçÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ§§¸!!KFFGHIJJDDiÿÿÿÿÿÿÿÿÿüüý88^--TÂÂÍÿÿÿÿÿÿÿÿÿÿÿÿÙÙàJJlFFHJJJ··Åÿÿÿÿÿÿÿÿÿšš®""M""N##O&&Q&&R((T((T››¯ÿÿÿÿÿÿÿÿÿÆÆÒ))T))T**U))T**U——¬ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿnnŠ))R**U++W++W––¬ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿýýþììïÕÕÜ¿¿É©©·““¥}}”ggƒUUvIIl==e99d66b66d88g::k==o@@rBBvCCxDDyEE{HH}FF}EE|HH~HH~LLLLLLLL‚NN„OO…OO…NN„PP…PP…PP…QQ‡PP…QQ†QQ‡RRˆUUŠUUŠVV‹WWŒVV‹VV‹VV‹VV‹WWŒZZŽ[[ZZŽZZŽYYŽZZŽ\\‘]]‘__“aa•aa•aa•aa•cc—cc—bb–aa”``”aa•bb–cc—ee˜ffšgg›gg›jjjjkkžjjllŸllŸllŸoo¡pp¢pp£pp£rr¤uu§uu§tt¦tt¦tt¦uu§vv¨zz«ww©yy«{{¬||®€€±€€±²²²€€±‚‚³……µ……µ……¶††·††·ŠŠºŠŠ»‰‰¹‰‰¹ŒŒ¼¾¿À‘‘ÁÀ••Ä••Ä••Ä––Å––Å••ÄššÉššÉ››Ê››ÊžžÌžžÌ  Î¤¤Ñ¥¥Ó¨¨Õ¦¦Ô§§Ô©©Ö¬¬Ù¬¬Ù¯¯Ü®®Ú±±Þ²²Þµµá´´á²²Þ··ãµµá··ã¹¹äBBCCCCCCCCCCCCDDCCA@? @ææëÿÿÿÿÿÿýýý&&M21011<<]™™«ððòÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿììï\\y 5 5 5 5 6 6 8 9 : :ccÿÿÿÿÿÿÿÿÿ²²À 5 4 3 29¶¶ÂÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÀÀÊ 3 3 4 56 8DÝÝäÿÿÿÿÿÿÿÿÿ²²À 943222ííðÿÿÿÿÿÿùùú 6 7 9 ; @BCDE%%Pßßæÿÿÿÿÿÿÿÿÿ··ÄFBAA@?îîñÿÿÿÿÿÿùùú>@ADEFGHGHççìÿÿÿÿÿÿýýþ22W=<=>?IIi  ±ññóÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿííñii†IHHHIIJ K K¢¢´ÿÿÿÿÿÿÿÿÿ´´Â@@cááæÿÿÿÿÿÿÿÿÿÿÿÿŸŸ°##KEEEHII;;`üüýÿÿÿÿÿÿ÷÷ù33Z""L""M##N&&Q&&Q))U--Xììðÿÿÿÿÿÿÿÿÿhh†((R((R((Q--U´´ÂÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÔÔÛ''O((P**R**S**TccƒÿÿÿÿÿÿÿÿÿÿÿÿúúûÿÿÿÿÿÿÿÿÿÛÛáGGe,,N((J((J))K**M++O,,P--S..V00Y22]55`77d99g;;j<>oAAsBBvFFzII}HH}JJJJ€HH~JJ€KKLL‚LL‚LL‚MMƒNN„MMƒMMƒNN„QQ†RRˆSSˆSSˆRRˆRRˆSSˆSSˆVV‹VV‹WWŒWWŒWWŒWWŒYYŽYYŽZZŽXX[[XXXX\\‘\\‘^^’aa”aa”aa•bb–cc—cc—dd˜ee˜cc—aa•bb–ee˜gg›hh›iiœiiœhh›iiœkkžhh›jjjjllŸnn¡nn¡pp¢ss¥tt¦tt¦uu§tt¦uu§tt¦uu¨xxªyy«}}®||®zz«||®°€€±²‚‚³……µ……¶……¶……µ……µ……µ……µ……¶ˆˆ¸ŠŠ»‹‹»¾¾ŽŽ¾¿¿À““””Õ•Ä••Ä••Ä––ÅššÈššÈ››ÊœœËŸŸÍŸŸÎ  Î££Ñ¤¤Ò¥¥Ó©©Ö©©Öªª×§§Ôªª×­­Ú­­Ú¯¯Ü´´à´´á¶¶â¶¶â··ã··ã¸¸äººæ¹¹ä¹¹ä¹¹äBBCCCCCCBBBBCCDDCBA@>UUyÿÿÿÿÿÿÿÿÿººÆ21 177X……™ÙÙàÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿøøù‘‘¤C 6 6 7 7 7 8 8 9 : : ;ÐÐÙÿÿÿÿÿÿÿÿÿ<<] 5 3 3?ÈÈÐÿÿÿÿÿÿÿÿÿööøøøùÿÿÿÿÿÿÿÿÿHHf 2 3 3 5 5 7««»ÿÿÿÿÿÿÿÿÿÌÌÕ= 6 54111ôôöÿÿÿÿÿÿééí 5 6 8;<E||•[[{;;aEÊÊÓÿÿÿÿÿÿÿÿÿff5555679:<=?ABCCD°°¿ÿÿÿÿÿÿÿÿÿÏÏØJBA@>>=õõ÷ÿÿÿÿÿÿêêî=?ACEGFGG^^€ÿÿÿÿÿÿÿÿÿ¾¾Ê>=>n??qAAtCCwEEyHH|HH}KKKKJJ€LL€LL‚LL‚LL‚LL‚NN„OO…NN„NN„PP…QQ†RRˆTT‰RRˆQQ†QQ†QQ‡SSˆWWŒXXXXXXXXXXZZŽZZŽ\\‘ZZŽ\\‘\\‘\\‘]]‘]]‘__“aa•bb–cc—dd˜cc—ffšffšff™cc—cc—gg›iiœkkžkkžkkžmm kkžmm mm kkžllŸkkžmm pp¢tt¦uu¨xxªvv¨ww©uu¨uu¨uu¨xxªzz«||®||®}}®°°€€±€€±²ƒƒ´……µ††·……µ……µ‡‡·‰‰¹††·††·‰‰¹ŠŠºŒŒ¼ŒŒ¼¿¿’’Á••Ä””ԔёÁ••Ä––Å™™Ç››ÊœœË  ÎžžÌŸŸÎ¢¢Ð££Ñ¤¤Ñ¦¦Ô§§Ôªª×¬¬Ù¬¬Ù««Ø¨¨Õ¬¬Ù´´à³³ß²²Þ²²Þµµá´´á³³ß¸¸ä¸¸ä¸¸äººæººæººæººæººæCCCCCEEEDDDDEDDDCBA @ ?¹¹ÇÿÿÿÿÿÿÿÿÿqqŠ]]yŸŸ¯ääèÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿóóõ’’¥$$K 6 6 6 6 7 8 8 9 : : : :KKnÿÿÿÿÿÿÿÿÿ¸¸Ä 5 3 2CÑÑØÿÿÿÿÿÿÿÿÿêêíuuŠÿÿÿÿÿÿÿÿÿÈÈÑ 1 2 3 3 4 5]]zÿÿÿÿÿÿÿÿÿïïò%%M4332106ÿÿÿÿÿÿÿÿÿÖÖÝ 3 4 6 7 9 :=<;AAdÿÿÿÿÿÿÿÿÿååé7555679:<=>@CCDDeeƒÿÿÿÿÿÿÿÿÿððò22XBA@??>CÿÿÿÿÿÿÿÿÿØØß=?BBFGGGG¼¼Êÿÿÿÿÿÿÿÿÿyy‘ff¤¤³ååêÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿôôöšš­55[IJJJ K K K!!L""M""M!!M}}–ÿÿÿÿÿÿÿÿÿúúûôôöÿÿÿÿÿÿÿÿÿÐÐ×33TBDEFFGHI**Ròòôÿÿÿÿÿÿûûû::_!!J##L$$N%%O''R))T**UÈÈÓÿÿÿÿÿÿÿÿÿ„„›&&M&&L66YÒÒÚÿÿÿÿÿÿÿÿÿõõö——©ÿÿÿÿÿÿÿÿÿÑÑÙ$$H&&K''M''N))Q++S--V00Y00Y00YZZzÿÿÿÿÿÿÿÿÿèèì,,O))K))K**L))L**M++P--R..T00X44\66`77c99f::h<?ACCDE**Tííðÿÿÿÿÿÿÿÿÿee‚BABAA?>??`ÿÿÿÿÿÿÿÿÿººÅ>@BBEGFF22\ýýþÿÿÿÿÿÿ÷÷øÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÜÜâ˜))QGIJ K!!L!!L!!L!!M!!M!!N""N##O##NÛÛâÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ««¸""E@BDFGGHI I—ÿÿÿÿÿÿÿÿÿ¯¯½##K##K$$N%%O&&P((R))SKKnÿÿÿÿÿÿÿÿÿôôö22V&&L>>_ÞÞãÿÿÿÿÿÿÿÿÿééìLLi¾¾Èÿÿÿÿÿÿÿÿÿkk‚%%G''J((M))O++R,,U..W11Z11Z00Y´´Âÿÿÿÿÿÿÿÿÿ‘‘¤++N,,N**M++N--P..R//U11W33Y44\66`77c88d::g;;j>>m@@pDDtFFxGGzHH|KKMM‚MM‚MM‚KKOO„QQ…QQ†RRˆRRˆTT‰RRˆRRˆRRˆRRˆRRˆTT‰TT‰SSˆVV‹WWŒXXZZŽ[[ZZŽZZŽ[[ZZŽ\\‘]]‘__“__“^^’]]‘]]‘``”``”dd˜gg›gg›ffšhh›gg›hh›hh›hh›ff™ffšgg›hh›iiœllŸnn¡nn¡pp¢pp£ss¥qq¤uu§tt¦ss¥uu§uu§vv¨xxªzz«yy«{{¬{{¬{{¬}}®°°°~~¯~~¯‚‚³‚‚³††·‡‡·ˆˆ¸ŠŠºŠŠ»ŠŠ»‹‹»‹‹»‹‹»‹‹»¾À‘‘Á••Ä••Ä••Ä••Ę˜Ç˜˜Ç——ÆššÉ››Ê››Ê››ÊŸŸÎŸŸÎ¡¡Ï¡¡Ï¤¤Ñ¦¦Ô§§Ô§§Ôªª×ªª×¬¬Ù®®Ú¯¯Û¬¬Ù®®Ú´´àµµá³³ß²²Þ··ã··ã¸¸äººæ¹¹åººæººæººæ¹¸ãœ—­xlgUC T= fI aF CCCCCEEEEEEEEDDCB B A ?‡‡ ÿÿÿÿÿÿÿÿÿ€€–ÚÚáÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿëëîšš«CCc 4 5 6 6 7 7 8 8 9 : ; ; = = = =33[þþþÿÿÿÿÿÿÂÂÍ 6 4((JÝÝâÿÿÿÿÿÿÿÿÿÐÐ×@--LýýýÿÿÿÿÿÿÛÛà 0 / 0 2 3 5žž®ÿÿÿÿÿÿÿÿÿ°°¾ 6 6 6 6 5 4 3 3ffÿÿÿÿÿÿÿÿÿ„„˜ 3 4 6 8 8:;;&&Nùùúÿÿÿÿÿÿøøù##F6778:;=?ABCDEEE££µÿÿÿÿÿÿÿÿÿ´´ÂCBBBAAA@nn‡ÿÿÿÿÿÿÿÿÿ‹‹Ÿ?@ABEGGGŽŽ¥ÿÿÿÿÿÿÿÿÿ……›ÜÜâÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿììï¡¡±QQoEGHIJ K!!M""N""N""O##P##P##P##P$$Q\\}ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ††™??@BEFH I I!!K##MááæÿÿÿÿÿÿÿÿÿLLn$$M$$N%%N&&O((R((R))R££µÿÿÿÿÿÿÿÿÿ¢¢²''LCCbääéÿÿÿÿÿÿÿÿÿÛÛà==[JJfþþþÿÿÿÿÿÿââæ$$F$$F''K))N))P++R--V//X11Z11ZCChúúûÿÿÿÿÿÿøøú==_--O,,O++O,,P..R//T11X33[44\66_77c99e::g>>l@@oAAqDDuEEwHHzHH{JJ~LL€MM‚MM‚LL‚LL‚QQ…QQ‡QQ‡RRˆSSˆTT‰TT‰SSˆVV‹WWŒWWŒYYŽWWŒWWŒWWŒWWŒZZŽ[[]]‘]]‘\\‘]]‘]]‘^^’^^’^^’aa”__“``”aa•cc—cc—ff™gg›ffšffšhh›iiœjjkkžhh›gg›jjllŸnn¡oo¡pp¢nn¡nn¡pp¢nn¡pp£pp£tt¦tt¦tt¦xxªyy«{{¬{{¬{{¬zz«zz«zz«{{¬~~¯€€±ƒƒ´‚‚³„„´ƒƒ´……µ……µ‡‡·‡‡·ŠŠ»‹‹»ŠŠ»ŽŽ¾¾‹‹»‹‹»ŠŠ»¾’’Á““••Ä••Ä——Ƙ˜Ç™™Ç˜˜Ç——Æ››ÊË››ÊŸŸÎ¢¢Ð¥¥Ó££Ñ¤¤Ò¥¥Ó¨¨Õ©©Ö¬¬Ù¬¬Ù¯¯Û±±Þ°°Ý¯¯Û­­Ú±±Þ··ã¶¶â´´á¶¶â¹¹å¸¸ä¶¶âººæ¸¸ä¸¸ä œµynjTB!S= gJ sRkMhK `F CCCCCEEEEEEEDDDCB B @ @ååêÿÿÿÿÿÿûûü Gqq‰ÿÿÿÿÿÿÞÞã““¤EEb 4 2 3 4 6 7 8 8 9 : : ; < = = > > >?ŸŸ²ÿÿÿÿÿÿÿÿÿPPo 5((JààäÿÿÿÿÿÿÿÿÿÆÆÎ; .šš¨ÿÿÿÿÿÿÿÿÿoo„ . / 1 3 3<<\ýýýÿÿÿÿÿÿõõö((N 6 6 6 6 6 5 4 3žž®ÿÿÿÿÿÿÿÿÿQQn 2 3 6 7 8 :;;……›ÿÿÿÿÿÿÿÿÿ¤¤³76889;=@ACDEEGFFFjýýþÿÿÿÿÿÿõõ÷11XBCCCCCCB¤¤´ÿÿÿÿÿÿÿÿÿ]]zA@BCEFGJççìÿÿÿÿÿÿûûü++Pxxÿÿÿÿÿÿààå™™ªOOmABCEGIJ K L##O##P$$Q$$R$$R$$R$$R%%S&&R¸¸ÆÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿýýþwwŒ?@@ACFH I!!K K""Mff„ÿÿÿÿÿÿÿÿÿÅÅÐ##K##K$$M$$N%%O((R((R22YóóõÿÿÿÿÿÿüüýCCcFFdèèìÿÿÿÿÿÿÿÿÿËËÓ11P""C±±½ÿÿÿÿÿÿÿÿÿ„„—$$E%%H))L**O++Q,,T--W00Z11[11Z––«ÿÿÿÿÿÿÿÿÿ¯¯½..Q--P--Q..Q..S00V22Y33[44^66a88d< > > ? ? >!!MööøÿÿÿÿÿÿÒÒÚ 5$$GÝÝâÿÿÿÿÿÿÿÿÿÁÁÊ6 .;ôôöÿÿÿÿÿÿññó8 . / 1 34½½Èÿÿÿÿÿÿÿÿÿ„„™ 8 8 8 6 7 7 6 6 8èèìÿÿÿÿÿÿúúû? 3 3 6 7 7 9;?ççëÿÿÿÿÿÿÿÿÿ<<\779:;=@BDEFGHHGÀÀÍÿÿÿÿÿÿÿÿÿŠŠŸCBCCCEEEEééíÿÿÿÿÿÿûûû''MBACDEHGaa€ÿÿÿÿÿÿÿÿÿ´´Â> F„„˜??^<??ACEGI K!!M!!N""O%%R%%S&&T&&T&&U&&U&&T''T==eüüüÿÿÿÿÿÿÿÿÿÿÿÿýýþmm„A@ACCE H!!J!!L""M!!M$$OÆÆÑÿÿÿÿÿÿÿÿÿcc€$$M$$L$$N%%N&&P))R**S˜ÿÿÿÿÿÿÿÿÿ¶¶ÂHHgééìÿÿÿÿÿÿÿÿÿ¿¿È**I!!B??Züüýÿÿÿÿÿÿöö÷22P$$G((J))M++P,,S..V//X22\33]77`êêîÿÿÿÿÿÿÿÿÿUUr..R..Q..R..R00U22X44[44^66a;;e==i??lAAoAApBBrEEtFFvGGyII|MM€NN‚OO‚PP…PP…QQ‡QQ‡SS‡RRˆRRˆTT‰VV‹WWŒWWŒWWŒWWŒWWŒWWŒZZŽYYŽWWŒZZŽ[[]]‘]]‘__“]]‘]]‘^^’aa”aa”ffšffšdd˜cc—cc—ee˜ffšjjjjjjhh›iiœiiœiiœkkžiiœjjmm nn¡nn¡pp¢pp£pp£tt¦ss¥ss¥ss¥uu§tt¦tt¦yy«yy«||®||®}}®}}®€€±²‚‚³‚‚³ƒƒ´ƒƒ´„„´ƒƒ´……µˆˆ¸ŠŠ»ŒŒ¼½¾ŽŽ¾ŠŠ»ŽŽ¾¾À‘‘Á••Ä••Ä••Ä––ÅššÈ™™ÇššÈ››ÊœœËœœËŸŸÍ¡¡Ï  Î¢¢Ð¤¤Ò££Ñ££Ñ¦¦Ô©©Ö¬¬Ù¬¬Ù¬¬Ù¯¯Û¯¯Ü²²Þ²²Þ²²Þ°°Ý²²Þ··ã¸¸ä¶¶âµµá¹¹å¸¸ä¸¸äººæ¤¡½‚xz\L2I6 I6 I6 J7 X@ W? Q; ^O5–¢±°Ö§¤Â…|EEDDDCCCEEEDD E D B A@ @¸¸ÇÿÿÿÿÿÿÿÿÿMMm 3 3 2 1 1 2 2 3 4 6 7 9 : ; < = > ? ?@@@AA?ƒƒœÿÿÿÿÿÿÿÿÿcc~C××ÝÿÿÿÿÿÿÿÿÿÄÄÌ6 . .zzÿÿÿÿÿÿÿÿÿ––¤ . . / 24GGeÿÿÿÿÿÿÿÿÿëëï@ 7 8 7 7 9 8 8 8CCdÿÿÿÿÿÿÿÿÿ¼¼È 4 4 4 5 7 8:>???@ABDFI K L""O""P$$R%%T%%U((W((X((X((W((W''U––¬ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ}}’BBBC EF H!!K""M##N$$P""NHHmÿÿÿÿÿÿÿÿÿÝÝã%%N$$M$$M$$N%%N&&P))R))SÛÛáÿÿÿÿÿÿÿÿÿqq‰ééíÿÿÿÿÿÿÿÿÿµµÀ&&F""B""A«ÿÿÿÿÿÿÿÿÿ§§´$$F&&H((K**N,,R..V00Y33]66`66`{{—ÿÿÿÿÿÿÿÿÿÉÉÓ00U00T00T11U//U33Y55\88`99c;;f>>j??mAAoBBqBBrEEuHHzII|NNNN‚PPƒQQ„QQ…QQ†PP†RR‡VVŠVVŠVV‹WWŒWWŒWWŒXXWWŒWWŒWWŒWWŒWWŒXX[[[[]]‘__“__“]]‘__“^^’^^’aa”bb–dd˜dd˜cc—cc—cc—ffšgg›jjllŸllŸllŸmm nn¡nn¡nn¡nn¡kkžmm oo¡pp£tt¦tt¦tt¦tt¦ww©ww©xxªyy«{{¬zz«zz«||®}}®°°°°°²ƒƒ´……¶‡‡·ˆˆ¸‰‰¹‰‰¹‰‰¹ŠŠ»ŒŒ¼½¿’’ÁÀ‘‘Á””Õ•Ä““Â’’Á••ÄššÈššÈššÈËžžÌœœËžžÌËË¡¡Ï¥¥Ó¤¤Ò££Ñªª×ªª×¬¬Ù¬¬Ù®®Ú¯¯Û¯¯Ü²²Þ³³ßµµá¶¶â´´áµµá··ã¹¹åººæ¹¹ä¶¶â¹¹äººæ¬ªÌ„{`P8J8I6 I6 I6 I6 M:th`Œ„ocWR@I7I7SA ncV’ŒšEEDDDCCCEEEDD E D BA?&&Uýýýÿÿÿÿÿÿßßå 6 3 3 2 2 2 4 5 6 7 8 : ; < =@@BBCCCCCBDççëÿÿÿÿÿÿããèCÌÌÕÿÿÿÿÿÿÿÿÿÇÇÏ8 . .0ààäÿÿÿÿÿÿÿÿÿ22P / 0 1 25½½Èÿÿÿÿÿÿÿÿÿ{{‘ 7 7 8 7 8 8 : 9 8  ±ÿÿÿÿÿÿÿÿÿooˆ 4 4 5 6 7 8;<ÉÉÓÿÿÿÿÿÿÿÿÿVVs989;<>@::_DGIJJJJÀÀÍÿÿÿÿÿÿÿÿÿ™EDDDEFFGF¦¦¶ÿÿÿÿÿÿÿÿÿxxCEDEFFG44\ýýþÿÿÿÿÿÿááçB@?AAABCFIJ L!!N""P$$R$$S%%T((X((Y))Y))Z))Y))Y((X--Zììðÿÿÿÿÿÿÿÿÿÿÿÿ˜˜©CCCC E!!G H##L$$N%%P&&R&&R$$Q¦¦¸ÿÿÿÿÿÿÿÿÿ˜''P&&O&&O''P((Q))R++S__}ÿÿÿÿÿÿÿÿÿááæååéÿÿÿÿÿÿÿÿÿ°°»''E$$C##C--LòòôÿÿÿÿÿÿÿÿÿKKf%%G((J**N,,Q..U00X33]55_77b66aÒÒÛÿÿÿÿÿÿÿÿÿpp‹33X33X33W33X33X55\77^XXz::d<†† ÿÿÿÿÿÿÿÿÿ~~– 5 4 4 3 3 4 5 7 8 9 : < = > ?BCCDEEEDCBee„ÿÿÿÿÿÿÿÿÿ‚‚—ÁÁÌÿÿÿÿÿÿÿÿÿËËÓ9 . . .UUnÿÿÿÿÿÿÿÿÿÁÁÉ1123477VÿÿÿÿÿÿÿÿÿïïòB::;;;;;;Göö÷ÿÿÿÿÿÿùùú""I 6 5 6 7 8 9;??cÿÿÿÿÿÿÿÿÿÛÛâ;99::;Dœœ®þþþ——«HIJJJAAgÿÿÿÿÿÿÿÿÿððó$$MEEEFFGGG**Sööøÿÿÿÿÿÿúúû//TDDEFFGG¤ÿÿÿÿÿÿÿÿÿ‡‡AA@?@BDEJ K!!N""P##R$$T%%U%%V''X**[**[,,^,,^,,]++\++Zuu”ÿÿÿÿÿÿÿÿÿÿÿÿÈÈÒ$$I!!F!!F!!F""G""I##K##L$$O''R((T((U((U33^ööøÿÿÿÿÿÿððó00X((Q((P((P((Q))R))S++T¹¹Æÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ­­¹%%D$$C##C##C“ÿÿÿÿÿÿÿÿÿËËÓ&&G''I**M++P--S//W11Z44^66`77c__ÿÿÿÿÿÿÿÿÿááç66[44Y44Y44X33X44Z==bªª»þþþ§§º==iAAnBBpDDsGGvHHyKK|LLMM€PPƒQQ„TTˆUU‰VVŠVV‹VV‹WW‹WWŒWWŒWWŒ[[[[\\‘]]‘]]‘]]‘]]‘]]‘\\‘]]‘\\‘]]‘aa•dd˜dd˜dd˜cc—ee˜dd˜ff™iiœhh›gg›ff™hh›hh›jjllŸnn¡llŸllŸnn¡pp¢qq¤pp£pp£ss¥tt¦uu§vv¨vv¨vv¨yy«vv¨ww©vv¨yy«ww©{{¬}}®°‚‚³ƒƒ´‚‚³‚‚³‚‚³„„´……µ††·‡‡·‰‰¹ˆˆ¸‰‰¹‰‰¹½À‘‘Á’’Á““ÂÀ‘‘Á””Õ•Ä••Ä——ÆššÉ››Ê››ÊŸŸÍžžÌžžÌŸŸÎ££Ñ¡¡Ï££Ñ§§Ô¦¦Ô§§Ôªª×««Ø««Ø¬¬Ù°°Ý¯¯Ü²²Þ²²Þ´´à´´à¸¸ä¸¸ä¸¸ä´´à¶¶â¹¹å¹¹å¶¶â®¬Ñއ“hZHM;I6 I6 I6 I6 I6 K8vvª§Çš•©vkdVF'J8I6 M;aR<„{¥¢¾˜¯]N5H5 E G G G G F F F F F E E E D CA @ Aääêÿÿÿÿÿÿûûü!!I 5 4 4 4 5 6 8 9 ; < = >@@ADEEFFFEECBÍÍ×ÿÿÿÿÿÿöö÷ÁÁÌÿÿÿÿÿÿÿÿÿÓÓÙ< . . . .ººÄÿÿÿÿÿÿÿÿÿ]]u12345žž®ÿÿÿÿÿÿÿÿÿŒŒ ;<<====<I6 I6 M;eWCˆ…©¦ÅµµÝž™°{pmYI,I6 I6 J7B1-#EE F F F E E EEEDDCCB@ @SSxÿÿÿÿÿÿÿÿÿ¯¯¾443 4 5 6 8 9 ; =@ABCDEFFHHHHGFDEElÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÛÛà""B / / / /,,Kþþþÿÿÿÿÿÿêêí62345?õõöÿÿÿÿÿÿüüý++P;<=>=>=<@ääéÿÿÿÿÿÿÿÿÿDDe 8 7 7 8 8:;""Køøúÿÿÿÿÿÿïïò?8789qq‰÷÷øÿÿÿÿÿÿÿÿÿÿÿÿååê<>b44Y44X33W33X……›øøùÿÿÿÿÿÿÿÿÿÿÿÿééî^^„EEsFFtHHyKK|LL~QQƒSS†VVŠWW‹YYŒWWŒWWŒXXŒ[[Ž\\‘\\‘]]‘]]‘]]‘]]‘\\‘]]‘]]‘__“aa”``”aa”aa•bb–dd˜dd˜ffšffšff™ffšhh›iiœjjjjkkžkkžllŸnn¡pp¢qq¤qq¤ss¥ss¥ss¥tt¦rr¤rr¤pp£tt¦vv¨zz«{{¬zz«{{­}}®}}®}}®}}®~~¯~~¯°ƒƒ´……µ……µ‡‡·††·‡‡·……µ……µŠŠºŽŽ¾¿¿À““Â’’Á‘‘Á””Õ•Ä••Ä——ÆššÉššÉ››ÊËŸŸÍŸŸÎŸŸÎ¡¡ÏŸŸÎ¡¡Ï¥¥Ó§§Ô§§Ô©©Ö¬¬Ù¨¨Õ§§Ô®®Ú¯¯Û¬¬Ù³³ß³³ß²²Þ²²Þ´´á´´á¹¹ä¹¹å¹¹ä¸¸ä´´á··ãµ´Ý—‘¤j]MO=I6 W@ `F fJ dI W? J8ƒy|°®Ó±¯Ô”œpcVRAI7I6 M:`Q:ƒz~ˆ•fXFF3 4&    E F F F F E E EEDDDCBA@ ?¶¶ÅÿÿÿÿÿÿÿÿÿLLm433 5 6 7 : ; = ?BDEEFGHHIIIHGFD­­½ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿããè))H /0111ŠŠ›ÿÿÿÿÿÿÿÿÿ 33456ggÿÿÿÿÿÿÿÿÿ··Ä:;<>??@A?ooŠÿÿÿÿÿÿÿÿÿÏÏØ99 9 : :::;ƒƒšÿÿÿÿÿÿÿÿÿ£698""E³³¿ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿªªº''QHIIoo‹ÿÿÿÿÿÿÿÿÿººÇEEEGGIIJKvv’ÿÿÿÿÿÿÿÿÿÒÒÛHGGIJ KKH»»Èÿÿÿÿÿÿÿÿÿ\\zFEFFFHKM O!!Q##U%%W''Z((\,,_,,_--a..c..c..c//c00c//a.._¸¸ÈÿÿÿÿÿÿÿÿÿÓÓÛ((P''M%%L%%L&&N''O''Q))T**V))W))Y++Z--\,,[rr’ÿÿÿÿÿÿÿÿÿ¸¸Æ))S**S))S))S))S,,T,,T00Xëëïÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¿¿É**K''G&&F((H((H''G··Âÿÿÿÿÿÿÿÿÿœœ¬))L**N..R11W22Y33\44_77b::f::fšš°ÿÿÿÿÿÿÿÿÿ££µ66\55Z66YBBc¾¾Êÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¸¸ÈMMvCCoGGtGGvKKzOOQQ‚TT†UU‡VV‰VVŠZZŽZZŽXX[[\\‘\\‘\\‘^^’^^’^^’__“__“__“aa•cc—aa•``”bb–cc—gg›iiœhh›gg›hh›hh›hh›kkžkkžllŸjjmm mm nn¡pp¢rr¤qq¤ss¥tt¦uu¨uu¨vv¨tt¦uu¨vv¨zz«{{­{{¬{{¬{{¬||®}}®{{­}}®||®€€±‚‚³……µ‰‰¹ŠŠºˆˆ¸‰‰¹††·‡‡·‰‰¹‰‰¹ŽŽ¾‘‘ÁŽŽ¾ŽŽ¾¿••Ä––Ř˜Ç™™ÇššÉ––Ř˜ÇššÉ››ÊššÈœœË  Î¡¡Ï¡¡Ï¥¥Ó¤¤Ñ¦¦Ôªª×©©Ö©©Öªª×¯¯Û¬¬Ù¬¬Ù¯¯Û°°Ý°°Ý´´à´´á¶¶â··ã¹¹ä¸¸äººæ¹¹ä¸¸ä´³Þ• uibSB!I6 I6 I6 I6 I6 TC"oaPYI,J7I6 I6 SB!qdY”Žž²±×³²Ø—‘£qeZJ8I6 I6PA"3+      F F F F F E E G F E E E D C B @$$Süüýÿÿÿÿÿÿßßå 7 6 6 6 7 8 : = ? @ ADEFGHHIIJJIHGE''Uúúûÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿììï33Q 0 01124ääèÿÿÿÿÿÿÿÿÿ22Q56678¾¾Éÿÿÿÿÿÿÿÿÿ^^z:;=>@AABEààæÿÿÿÿÿÿÿÿÿUUu;;:;;;;>ååêÿÿÿÿÿÿüüý,,P78??^ááæÿÿÿÿÿÿÿÿÿÿÿÿëëï^^{CEFGHÁÁÍÿÿÿÿÿÿÿÿÿee‚DDFHIJKL##Pááçÿÿÿÿÿÿÿÿÿ``~III J K!!L L77^üüýÿÿÿÿÿÿââçIHFFHHJ N!!Q!!S##U%%X''Z((\**^--a--b..c//d//d//c00d11e00bGGrüüüÿÿÿÿÿÿÿÿÿ[[z''P''O''N''O''P((R))T**V++Y++Y**[++[++[++[ÏÏÙÿÿÿÿÿÿÿÿÿZZ{))S++T++T++T++T,,U,,UttÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÐÐ×22R))J))I((I))I))J88WúúûÿÿÿÿÿÿþþþJJh,,P--R00V22Y44\55_88b;;f==h@@iêêïÿÿÿÿÿÿýýýQQr77\66Z]]zææêÿÿÿÿÿÿÿÿÿÿÿÿîîñxx”@@iBBlCCoGGtHHvKKzNN~PPSS…VVˆWWŠYY[[ZZ]]]]‘\\‘\\‘]]‘``”aa•bb–bb–bb–bb–dd˜cc—cc—bb–dd˜ee˜kkžjjjjiiœkkžllŸnn¡oo¡mm mm llŸpp¢qq¤tt¦uu§uu§ss¥tt¦uu¨zz«zz«xxªvv¨ww©zz«zz«}}®}}®}}®°°²‚‚³ƒƒ´‚‚³……¶††·‡‡·‰‰¹‰‰¹‰‰¹‰‰¹ŠŠ»ŒŒ¼¾À¾¿““““••Ä——Æ™™ÇššÈ››ÊËžžÌžžÌ  ÎŸŸÎŸŸÍ¡¡Ï¦¦Ô¦¦Ô§§Ôªª×««Øªª×ªª×¨¨Õ¨¨Õ®®Ú²²Þ³³ß²²Þ··ã³³ß´´á¶¶â¶¶â··ã¹¹äººæººæ³²Û˜²ynjRAI6 I6 I6 I6 I6 I6 I6 P>‰‰®¬Ï¶µÞ¢ž¸~ts\L1K9I6 I7Q?m`R~ts]M3A1 +  ? ? A D D EGGHJJJIJIHFŠŠ£ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿöö÷@@] 2 1 1223PPkÿÿÿÿÿÿÿÿÿÆÆÎ56778Bùùúÿÿÿÿÿÿòòô@;;=?@ABB}}—ÿÿÿÿÿÿÿÿÿÉÉÓ=;;:;;;;``~ÿÿÿÿÿÿÿÿÿ²²¿65llƒøøùÿÿÿÿÿÿÿÿÿÿÿÿ¶¶Â))O@CEGG&&Púúûÿÿÿÿÿÿóóõ##LEEFHIJ K L……ÿÿÿÿÿÿÿÿÿÌÌÖ J J II K K!!LKŽŽ¤ÿÿÿÿÿÿÿÿÿ‰‰ŸFFFGIIL!!P""T%%W&&Y&&Z))]**`++a//d//d00e00f//f00e11e22e11b  ¶ÿÿÿÿÿÿÿÿÿÃÃÏ))S((Q((P((Q((Q))S**V,,W--Z..\..^//_//_//^XX~ÿÿÿÿÿÿÿÿÿÒÒÛ++U**T,,T,,T,,U,,U--V..WÏÏØÿÿÿÿÿÿÿÿÿÿÿÿééí@@`++M++K**K**K**K**LˆˆœÿÿÿÿÿÿÿÿÿÉÉÒ..Q..S00U11X44[66^77a::e==g==iœÿÿÿÿÿÿÿÿÿ¿¿Ì88\66Yƒƒ˜ùùúÿÿÿÿÿÿÿÿÿÿÿÿÁÁÌJJn==eAAjCCmFFqIIuKKxMM|OO€RRƒUU‡XX‹[[Ž\\\\\\[[^^’^^’^^’aa”aa•aa•aa•bb–dd˜ff™ffšdd˜ee˜ffšhh›hh›kkžkkžkkžkkžnn¡nn¡oo¡pp¢oo¡oo¡pp£ss¥tt¦uu§uu¨vv¨uu¨ww©zz«xxªxxªuu¨zz«{{­°°~~¯°²²²‚‚³²‚‚³……µ‰‰¹ŠŠ»ŠŠ»‹‹»ŒŒ¼ŒŒ¼‹‹»‹‹»¾••Ä••Ä••Ä––Å››ÊššÈššÈššÉË››Ê››ÊŸŸÎ  Î  Î¤¤Ñ¥¥Ó¦¦Ô¤¤Ò¥¥Ó¥¥Ó¦¦Ô««Ø®®Ú¯¯Ü³³ß±±Þ±±Þ¯¯Û²²Þ²²Þ´´á¹¹ä··ã··ã¸¸ä¸¸ä··ã¹¹å£ ¼wlfUD$I6 I6 I6 I6 I6 M:gXFpdYUC#I6 I6 I6 O=i[JŒ…­«Î¸·â£ŸºzokJ7I6 F4 3&   639ƒ}†ÛÖÛʿȠ“ ƒ~‡ H H F F FEE F D D F D B A@ ?ããéÿÿÿÿÿÿûûüH444679: < = A B D F GHHILLKKJIGIééíÿÿÿÿÿÿÿÿÿÿÿÿûûüVVp3222345¬¬¹ÿÿÿÿÿÿÿÿÿkkƒ7788:ZZvÿÿÿÿÿÿÿÿÿ²²À<<=>?@BC))RññôÿÿÿÿÿÿÿÿÿMMn><=>=>>>ÇÇÒÿÿÿÿÿÿÿÿÿJJh:ŸŸ®ÿÿÿÿÿÿÿÿÿÿÿÿõõöppˆ=>@CDFG``ÿÿÿÿÿÿÿÿÿµµÃFFFGHJ K L22[òòôÿÿÿÿÿÿÿÿÿYYx!!L!!K!!L!!K!!L K!!L##Nææëÿÿÿÿÿÿüüü44[IIJK M O!!R""T##V&&Y''[''\++a..c..d00f00f00f00g00f00e22f22e::iññôÿÿÿÿÿÿÿÿÿ\\|++S**R**R++S**T++V,,Y..[..]//_00_00`00`//`°°Âÿÿÿÿÿÿÿÿÿtt‘**U**T++T++T,,T,,U--VUUwÿÿÿÿÿÿÿÿÿÿÿÿøøúXXt,,O,,N++M++M++M,,O,,OÚÚáÿÿÿÿÿÿÿÿÿwwŽ//S//U11W44Z88`99c::d<>i@@kÒÒÜÿÿÿÿÿÿÿÿÿjj‡<<`¯¯½ÿÿÿÿÿÿÿÿÿÿÿÿööø‡‡œ;;`==c@@gCCkEEnFFqJJvLLzNN~SSƒUU†XXŠZZŒ\\]]^^’``“aa“aa”``”cc—cc—cc—cc—cc—cc—ffšffšffšee˜ffšhh›llŸllŸllŸllŸkkžkkžmm pp£pp£qq¤qq¤pp¢rr¤tt¦uu§vv¨xxªvv¨{{¬{{­{{­zz«zz«{{¬°°€€±€€±°‚‚³ƒƒ´²‚‚³„„´††·ˆˆ¸ŠŠº¾¾¾‹‹»½ŽŽ¾À““••Ä••Ä””ԔؘÇËŸŸÎŸŸÎ  Î  ÎŸŸÎžžÌ¢¢Ð¡¡Ï  Î¤¤Ñ¨¨Õªª×ªª×­­Ú¯¯Û­­Ú°°Ý¯¯Û³³ß´´á´´á´´áµµá¸¸ä´´áµµá¹¹ä¶¶â¸¸ä¸·á£ »|rp[L0J7I6 I6 I6 I6 I6 I6 I6 fXF›•ª´³ÛµµÝœ—¬wkeWF'J7I6 I6 M;eWCqdZQ@<, " ##PKSwr|›œ I I G G G F F F D D F F C C @QQvÿÿÿÿÿÿÿÿÿ¯¯¾544578:; = ? B B D FGIIILLLKJIGii‰ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿqqˆ5433455C÷÷øÿÿÿÿÿÿõõöA8899:““¥ÿÿÿÿÿÿÿÿÿqqŠ<<=>?@CCªª»ÿÿÿÿÿÿÿÿÿ±±À??>>??@@??dÿÿÿÿÿÿÿÿÿÖÖÝ**NÍÍÕÿÿÿÿÿÿÿÿÿÿÿÿÑÑÙ77W;=@ACDFG——«ÿÿÿÿÿÿÿÿÿwwFFFGHI K K®®¾ÿÿÿÿÿÿÿÿÿµµÃ!!K!!L!!L!!L""L""M!!L!!Mbbÿÿÿÿÿÿÿÿÿ··ÄIIIKL N!!Q""S""T##W''[''\((^++b,,c//e//f11h11h11g22g22g33f33eˆˆ¤ÿÿÿÿÿÿÿÿÿÎÎØ++U,,T++T,,T,,U,,W,,X..[//^//_00a11a00a00aBBnøøúÿÿÿÿÿÿèèí//Z--V,,U..W..W//X//X11Z°°Àÿÿÿÿÿÿÿÿÿÿÿÿ……›..R..Q--P--P--P..Q//RXXuÿÿÿÿÿÿÿÿÿîîñ66Y11V22W55\88_::b::d;;f<>`<<==>@B]]|ÿÿÿÿÿÿÿÿÿóóõ//V@@>?@>>>¦¦·ÿÿÿÿÿÿÿÿÿ¤¤³êêíÿÿÿÿÿÿÿÿÿÿÿÿ››ª:79=?ACEFGÁÁÌÿÿÿÿÿÿÿÿÿGGhFEFFHI Kdd‚ÿÿÿÿÿÿÿÿÿôôö99^!!K""L""L""M##N##N""N""N»»Éÿÿÿÿÿÿÿÿÿ]]|JJ K L!!N""Q##S$$V%%W%%Z''\))_))`--d//f11h22i55k55k44k44i44h33e44fããéÿÿÿÿÿÿÿÿÿmmŠ,,U,,U,,V--W..Y//[00]22`33b33c44e55e33d11b——¯ÿÿÿÿÿÿÿÿÿ§..X--W--V00Y00Y00Z00ZAAgùùúÿÿÿÿÿÿÿÿÿÇÇÑ11U00T11T00S00S//S00T11U¦¦¶ÿÿÿÿÿÿÿÿÿ££´11V11W22Y66^99a::d<>iAAl¸¸Èÿÿÿÿÿÿÿÿÿ¶¶Äîîñÿÿÿÿÿÿÿÿÿÿÿÿ««¹<<]99\;;^==b@@fCCjFFnHHrJJvLLyPP~SSƒWW‡[[Œ[[^^^^‘^^‘``“cc–cc–cc—ff™gg›gg›gg›hh›hh›hh›kkžgg›iiœjjllŸnn¡pp¢pp¢pp¢rr¤rr¤ss¥tt¦ss¥pp£ss¥uu¨vv¨zz«{{¬{{¬}}®}}®~~¯~~¯}}®||®°°‚‚³ƒƒ´ƒƒ´……¶††·‰‰¹ˆˆ¸ŠŠ»ŠŠºŠŠ»ŒŒ¼¾¿¿¿‘‘Á““‘‘Á‘‘Á••Ä––ÅššÉššÉ››ÊŸŸÍ¡¡ÏŸŸÎ¡¡Ï¤¤Ò¢¢Ð¡¡Ï¦¦Ô§§Ô¥¥Ó©©Ö­­Ú®®Ú¬¬Ù¯¯Ü¯¯Û°°Ý´´à´´à··ã¹¹ä¶¶â¶¶â¶¶âµµáµµá··ãººæ«©Íƒz^N5J7W@ X@ J7 I6 I6 I6 I6 SB Œ„­«Î¹¸ã­«Î‹ƒ‹fWDN<I6 I6 I7SB!pcXhYGI87)     #!%  IJJJJ I I HDD DBA A&&Vüüýÿÿÿÿÿÿààæ7555679 < > @ B B B C C E E G GIIHIJHKKrÿÿÿÿÿÿÿÿÿÿÿÿÈÈÒ<8777899:ËËÔÿÿÿÿÿÿÿÿÿZZw;;<<<<ââçÿÿÿÿÿÿüüý@==>>@@..Tííðÿÿÿÿÿÿÿÿÿ}}–CBB?@@??((Qùùúÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿóóõ``x468;>@ADFGHããéÿÿÿÿÿÿüüý!!IEEEFGI88]îîñÿÿÿÿÿÿÿÿÿƒƒ›!!L!!L##M##M##N%%O%%P%%P??eüüýÿÿÿÿÿÿããé""M!!L!!L!!L##O##Q%%T%%U&&X&&Z&&[**_++b,,c--e//f11h22i44k55k44j44i44h33fvv—ÿÿÿÿÿÿÿÿÿààæ//Y--W--W//X//Y11\00]22_33b44d44e55f55f22d77hîîòÿÿÿÿÿÿ÷÷ø::c--W--W--W//X//Y00Y00Y””©ÿÿÿÿÿÿÿÿÿññôIIk33X33W33W22W33W33X22W88\ððóÿÿÿÿÿÿÿÿÿWWv55Z66\77]88`::c<>dBBiDDlIIrKKvNNzQQ~SSXX‡ZZŠ^^__‘``“aa”bb•bb–ff˜ff™ffšgg›ffšffšgg›hh›kkžllŸmm kkžkkžkkžnn¡pp¢pp£pp£pp¢rr¤ss¥vv¨zz«uu¨tt¦uu§ww©zz«}}®°~~¯°€€±€€±°°€€±ƒƒ´ƒƒ´††·‡‡·††·‡‡·‡‡·……µ……µŠŠº‹‹»½¿““””Õ•Ä’’Á‘‘Á””Ö–Å——ÆššÈššÈ››ÊššÉŸŸÎ¢¢Ð¥¥Ó¤¤Ò¤¤Ò§§Ô§§Ô§§Ôªª×ªª×¦¦Ôªª×±±Þ³³ß´´à··ã··ã´´á´´à°°Ý²²Þ¸¸ä¹¹ä´´áººæ¶¶â­«Ð‡‡bT>XBU> iK jL |YwUcKoaUl_QO=I6 I6 I6 O=i[J†‘°®Ò¹¹ä¬©ËŠ‚ŠQ@I6 I6 ?/(        :9?=?EÊÊÔÿÿÿÿÿÿÿÿÿÊÊÔECBBBCDBDŒŒ¢ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÚÚà55S469;>@BDFHIIôôöÿÿÿÿÿÿííñFFGGGH&&NÌÌÖÿÿÿÿÿÿÿÿÿÍÍÖ%%N""L""L$$M$$N%%O%%P%%Q&&Ršš®ÿÿÿÿÿÿÿÿÿ‹‹¢ K!!L K L!!N""Q##S$$U%%X%%Z%%Z((_**a++c,,d//g11i22j44k55k44j44h33g33fÒÒÝÿÿÿÿÿÿÿÿÿ†† ..Y--X//Y00Z11\22^33`44c66e77g88i88j88i66g‰‰¦ÿÿÿÿÿÿÿÿÿ¬¬½..Z//Y00Z00Z11[11[11[77`ëëïÿÿÿÿÿÿÿÿÿˆˆŸ55[55Z44Y44Y44Y44Z55[55[xx‘ÿÿÿÿÿÿÿÿÿØØß66\66\77]88_99b<=E&        JKKKMKKJ G F E C ADììðÿÿÿÿÿÿûûü K 7 7 7 8 9 ; = ? @ B D E E G G G GIJJKJII33aýýþÿÿÿÿÿÿÿÿÿooŠ=;:::<=>>……›ÿÿÿÿÿÿÿÿÿ¥¥µ===>>??ûûüÿÿÿÿÿÿôôö>==>>A°°¿ÿÿÿÿÿÿÿÿÿòòõ66[CCDEDDDBIììðÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¾¾È@3468:=ACEFHIJûûüÿÿÿÿÿÿôôöFFFGG##J´´Âÿÿÿÿÿÿÿÿÿóóõ??c##M$$M$$M%%O&&Q''R''T''T,,Xîîòÿÿÿÿÿÿüüü::`$$O%%O##N##P%%S&&U))Y((Z))\**_++`..d00g11h11j22j55l55m66l66l55k55j55iee‹ÿÿÿÿÿÿÿÿÿóóö::c00Z//Y00Z11\33^44a55c55e77g88i77j77j66i77gææìÿÿÿÿÿÿÿÿÿVVz..Y..Y//Y//Y11[22\22]šÿÿÿÿÿÿÿÿÿÛÛâ88`66\66\66\88^77]77^88_::`ÄÄÐÿÿÿÿÿÿÿÿÿ’’§88_88_99`<?A C D D G G G G G H HH G FEœœ²ÿÿÿÿÿÿÿÿÿÄÄÏ?<;<<<>?@AÕÕÝÿÿÿÿÿÿÿÿÿYYw>>?@@AAììïÿÿÿÿÿÿÿÿÿ<<^=>> G³³Áÿÿÿÿÿÿÿÿÿþþþ__|BCEFGFFFEppŒÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ­85458:<ACEGHJLLííðÿÿÿÿÿÿÿÿÿDDeFFF((N¶¶Ãÿÿÿÿÿÿÿÿÿþþþff‚##L##M$$M$$N%%P''R''S((U((Vuu’ÿÿÿÿÿÿÿÿÿººÈ&&Q&&Q&&Q$$P%%R&&T''W**Z(([))^**`++b++b++c..g00g00g22j22j55l55l66l66k55hÃÃÑÿÿÿÿÿÿÿÿÿ¥¥¸11]11[11[22\33_55a66d77f99i::k;;m;;n::m::l€€ ÿÿÿÿÿÿÿÿÿÍÍØ33^00[22]22\22\55_66`77aÞÞåÿÿÿÿÿÿÿÿÿjjˆ88_88_88_::`::`99`99a99aIInûûüÿÿÿÿÿÿýýþLLo77^88_88`==e??h@@kAAlBBoCCo¨ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¯¯½<<^99Z::\<<^>>aBBeBBgFFlIIrKKuPPzSS€VVƒYYˆ\\‹__cc“ee–ee—ee˜ff™hh›jjkkkkžllŸmm nn¡nn¡oo¡pp¢qq¤pp£oo¡pp£qq¤tt¦uu§uu¨uu§uu¨xxªyy«||®||®zz«yy«{{­~~¯‚‚³„„´……µ……µ††·ˆˆ¸‰‰¹††·……µ‡‡·‰‰¹ŽŽ¾¾¾ŽŽ¾½ŽŽ¾ŒŒ¼¿À’’Á••Ę˜ÇššÉ››Ê˜˜Ç™™Ç™™ÇŸŸÎ  ÎŸŸÎŸŸÎ¢¢Ð££Ñ¤¤Ñ¨¨Õ««Ø¬¬Ù¬¬Ù±±Þ²²Þ²²Þ±±Þ´´á²²Þ±±Þµµá¶¶â··ã¹¹å¹¹ä¸¸ä¶¶â¯¯Ü©¨Ð”ŽŸocWP>I6 I6 L8 Y@ kM\C ]C TA’‹š·¶à¹¸ã£Ÿ¹}sq[K0J8I6 I6 I6 L:gYE…|€sg^Q?cL#›{RÄt˜wMeM$K8E44+%! ! !       !".&/ZU]^Zcujxzq†r‹|j~ˆsƒMMMMMMLLLKKJGÓÓÝÿÿÿÿÿÿÿÿÿNNq 8 8 8 9 : < > @ A B B C D E F F G G G G G F E D""Tööøÿÿÿÿÿÿüüý::`@?>>??ABB;;`ÿÿÿÿÿÿÿÿÿóóõE??@AABBÂÂÍÿÿÿÿÿÿÿÿÿÄÄÎ**NC__zÛÛáÿÿÿÿÿÿÿÿÿÿÿÿ‚‚˜BBCFGHIJKJÙÙáÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ„„™88878;<?BEGILONNÄÄÐÿÿÿÿÿÿÿÿÿÆÆÐ33X$$Jee€ÜÜâÿÿÿÿÿÿÿÿÿÿÿÿ‡‡ž##K$$M%%O%%P&&Q''S''T((V**W**XØØàÿÿÿÿÿÿÿÿÿdd„''S))T))U''S((U((V))Y,,^++^--a--b..d--e--e00g11h11h55l55m66l66m77m77j[[…þþþÿÿÿÿÿÿþþþQQw22^22]22]22^44`66c77f88h::k::l;;m::m::l< @ B C C D D E F G G G H G G G G F‰‰¤ÿÿÿÿÿÿÿÿÿ››¯?AA@@ABCDE‹‹¢ÿÿÿÿÿÿÿÿÿ²²ÀCBBBCCDDxx’ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿýýýÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿŒŒ¡BCDEFHJLMN--Yééíÿÿÿÿÿÿÿÿÿûûüll‡<:999;<>ACHJKMPPO||—ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿýýþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¤""J##K%%N%%P&&Q''S''T((V))W++Yqqÿÿÿÿÿÿÿÿÿääê,,X++W++W,,W((U))W))X**Z--_..a//c..c..e//f--f22i22j33j33j55m66m88n88m88l¦¦½ÿÿÿÿÿÿÿÿÿËË×55a44`33_44`44`88e99h;;k;;l<>q==p<>f>>g>>g??h@@i@@j@@j@@jÏÏÚÿÿÿÿÿÿÿÿÿŠŠ¢==f==f==f??iAAkDDoDDoDDqFFsUU~ííòÿÿÿÿÿÿÿÿÿüüý‰‰ @@dAAd??b>>a??bAAeCChFFmKKrOOyRR}SSVV„ZZ‰\\‹__bb’gg˜hh™jjœkkjjllŸoo oo pp¢pp£pp£pp£qq¤ss¥tt¦uu¨tt¦tt¦uu§xxª{{¬}}®||®{{­||®||®~~¯°°~~¯°²„„´††·††·††·††·‡‡·‡‡·††·……µˆˆ¸ŒŒ¼¾¾ŽŽ¾““““‘‘ÁÀ””Õ•Ę˜ÇššÉžžÌŸŸÍ  ÎË››Êˤ¤Ò¤¤Ò¨¨Õ¤¤Òªª×««Ø®®Ú¯¯Ü³³ß²²Þ´´à´´à³³ß²²Þ²²Þ°°Ý±±Þ´´á··ã¸¸ä¹¹åººæ¹¹äœ—¯tidRAI6 I6 I6 I6 I6 I6 I6 ^O7™“¦³²Ù¤ ½vw]N4K8I6 I6 I6 K8aR;†}‚¢ž¸Ž†‘aR;M:r\4°“kæÁšòˤñÊ¢ñÈ ñÈŸðÆ›ðÆ›ïÄ™ï™ïÀ—í¿–Í£z˜vMeM$K8F49.+& %& ( '! (#!(#!($")#!)[Olxsˆxv}{zƒvsy~w}z€çØÓMMMMMMLLKKKJ66d¿¿Íÿÿÿÿÿÿ‚‚œ@== ; = = > @ A C D D E F F G H H H H GIH G FKggˆÊÊÕééîN?>?>?BCDEGÛÛâÿÿÿÿÿÿÿÿÿii†DCCDDDEE##NááçÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿûûüwwBCDEFHILN O OO88aÙÙáÿÿÿúúûaa~@?===<>?AEHKNOR R Q Q**Yââèÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿüüü~~•##L$$M$$N&&O''R))T**V++X++Y,,[..\NNuÆÆÓÿÿÿÿÿÿ‘‘©,,X,,X,,X,,Y))X**Z**Z++]--`..c//e00f11g//f..f22i44k44k55l66n99o99o99n::o99laaˆ°°Ã÷÷ù{{š77d66c66c77d77d::g;;j==m>>n>>p>>q??s>>q==p<>i>>i@@j@@j@@jAAkCCmBBmBBmRRyýýýÿÿÿÿÿÿúúûMMs@@h??h@@iDDnFFqGGrHHtIIvJJwMM{aa‰ááèÿÿÿûûüƒƒFFkEEiCCgCCgDDgFFjHHnJJqMMuPPyRR~VV‚XX†\\Š__Žaa‘ff–gg˜kkjjœllžmm mm pp¡pp¡pp£rr¤rr¤ss¥tt¦tt¦uu§ww©uu¨tt¦uu¨vv¨{{¬{{¬||®{{¬{{­||®~~¯²€€±°°²……µ‡‡·‰‰¹‰‰¹‰‰¹‹‹»ŒŒ¼ŠŠ»ŠŠ»‹‹»¾À””Õ•Ä””Ó“““””Õ•Ä——ÆššÈžžÌ¡¡Ï  Î¡¡Ï¡¡Ï¤¤Ñ¥¥Ó¦¦Ôªª×««Øªª×¬¬Ù¬¬Ù­­Ú¯¯Ü²²Þ²²Þ°°Ý³³ß··ãµµáµµá¹¹ä¹¹å··ã´´à³³ß³³ÞŸœ¸{poVE&I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 M:dT?‰ˆ­ªÌ¹¹ä·¶à£Ÿ¹~tsZJ-J7I6 I6 I6 K9_M'œ‡aÙ¡ôÙ·õسõÕ®ôÒ«óϧóÎ¥òÌ¢ñÊ ñÉŸðÈžðÇðÅšïØïÁ—ïÀ–꺑̢v—uKcK!K7E4:.-(%#)#$+#$,$%,&%-&$,WQpRS]TRYeajwrz¡Ÿ¨žž¦±ª¯MNNNNNMMLLKJHHiiŠííñ))WCA@ > ? > ? A A C D F F G G H H H H G GIH FGEDBNB@?@@AEEGJL‰‰£ääêÿÿÿüüý((SHGGHHHIHHFFjïïòÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÕÕÝIIhBCDFGIJLM P Q Q Q P00\ÅÅÑZZ{GECAAAACEFJJLNOPRR QPJJpïïòÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ××ÞQQp##K##L$$N%%O''Q((S**V++X,,Z,,[--]//^//^//^{{™ïïòBBk--Z--Z--Z..[,,[--],,^--`00c00d33h00h11h11j22j66m77n77o77n77o::p::p::o;;o;;n::l99iCCp<>o<>m??m??m>>mAAn@@mBBpCCoGGsGGsHHtIIuIIuIIvHHueeг³Åööøÿÿÿƒƒ EEoDDoEEoEEpGGsJJvJJwKKyNN|RRSSRRRR~RR}PP{NNxLLuLLtKKrKKrLLtOOwPPzSS}VV‚ZZ†]]Š``Ž``bb’ff—gg˜llnnŸqq¢oo¢oo¢pp¢tt¥ss¥ss¥uu§uu¨uu¨uu¨vv¨xxª{{¬ww©vv¨yy«||®€€±‚‚³²€€±²²‡‡·……¶……¶……µ……µ‰‰¹ŒŒ¼¾¾ŒŒ¼ŽŽ¾¿À¿¿’’Á••Ę˜Ç™™Ç˜˜Ç˜˜ÇššÉššÉššÉ™™ÇžžÌ¤¤Ò¥¥Ó¥¥Ó¦¦Ô¦¦Ô©©Öªª×¬¬Ù¯¯Û®®Ú¯¯Û°°Ý¯¯Ü³³ß³³ß´´á²²Þ´´à··ã¶¶â¶¶â¹¹äººæ·¶á§¥È‚y~^N6J8I6 I6 I6 I6 I6 I6 I6 I6 M;{pm¢ž¸··áº¹å±¯Õ’‹™l^OO=I6 I6 I6 I6 O=YI,O=lU:¦Š„×¹¿íÖÚ÷ïéú÷òûùôûùõûùöûùõûùõûøóúöðøðçöêÝõàÇôײõÔªôÒ¨ôЧóÍ¥òË¡ñÈŸðÆ›ðÄ›ïØïÀ–î½“íº‘èµ‹Ëœr–rGcJ K8F5=11,$'(,))298DHFRaajqqzpowst{MNNNNNMMMLKJIIHIHGFEEFGGHHJHHJJJJJJJIIJIHHHGFFFEEFFHIIJKKJLLKLLKKLLLLLLKIHGFDCCCDEGHJLM O Q!!R""U##U$$W##W##V##UPOMJIHHIIKMMOOQSST!!V!!V!!T!!S""S""Q##P##O$$O$$M$$L$$L$$M%%N%%N&&P''Q((S))V++Y--\//^00`11b11c11c11c33d22d22b22b22a22a00`11a33c44e11d22f33h33h55k44j44l55l55l33k44l77n77n77n;;q;;q<>m==m==l==m==m>>oAAqCCtDDvEExDDxCCxEEyDDyDDxBBvAAt??q>>o>>o>>n==m<>s@@t??r??q@@q??o??qAAqAArBBrBBsEEvGGxHHzHH|II}HH|JJ}HH|GG{FFyDDwAAtBBtDDuCCtCCs>>oBBrDDsDDtEEvEEvFFwFFwHHyHHxLL{LL{OO}OO}PP~PPPP~OO~NN}PP~OO|LLzLLyMMyLLxKKwLLwMMyPP}QQ~RRTT‚XX†ZZ‰ZZ‰YYˆ[[‰[[ˆYY…XXƒXX‚UU€UU€VVXXƒYY…[[‡^^‹bbdd“gg–gg—iišllœoo pp¡tt¦tt§tt§uu¦vv¨yy«xxªzz«{{¬zz«zz«{{¬}}®€€±}}®||®°²……µ††·††·……¶††·††·ŠŠ»ŠŠ»‹‹»ŠŠ»‹‹»ŽŽ¾’’Á””Ô”ÃÀ““••Ä••Ä••Ä••Ę˜Ç››ÊËËžžÌËŸŸÎŸŸÎžžÌ££Ñ££Ñªª×ªª×««Ø¨¨Õ­­Ú®®Ú®®Ú²²Þ²²Þ±±Þ²²Þ±±Þ´´à´´á¶¶â´´á´´à´´á¸¸ä··ã®¬Ñˆ€†gYGM:K7 lNkM rRiK pPK7 L:‰‚а¯×¸·ã±¯Ô‰–j\KO=I6 I6 I6 I6 L9_P8wy|roXG)Q<zY:º –æÊ×ìÌâéÅÝèÄÜæ¿Õã¾ÎíÕÕøñëùóëùôïøñëøðèùóíúöðú÷òú÷òûøóûøôûùôûøôú÷ñú÷ðûùôú÷ðùòëöèÛôáÏñÕ»ðήïÈ ðÇœðÅšïÂ–î¾“í¼‘ì¹ëµ‹ê²Šä¬ƒÇ•k“nDbIK8G5>25.%0.3C@FNNNNOOOQQPPONMLKKJJJKMNMNLMKIIKKKLKJJI H H G G G FGHFFFGGKKKLMOPPPPPPPPRRRRRRQONMLJJIIJKL N!!Q""S##U##V$$X$$Y%%Z%%[%%[%%[''[''[''Z&&X&&W$$U##T Q Q""T S T!!VU VVUV W!!X!!X##Y##X%%Z%%W%%W$$U%%T%%S%%R%%Q''R''S((S++W,,X--Z..\//^//`11b22e44g55h66i66i66i77j77i77j66i66h66h66g66h77i88k44h44i44j55k66m66n77n77n77n66n55m77o99q::p<>s??t@@u??s@@sAAs@@rAAsCCtCCtCCuDDvFFxHHzHH|II}JJ~II}JJ~II}HH|FFzEExBBvCCvEEwEEvEEv@@rDDuEEvEEvGGxGGxHHyGGyJJ{JJ{NN~NN}QQ€QQ€RR‚RR‚RRQQPP€RR€PPNN|NN|OO|OO{MMzNN{OO|RRSSTTƒUU„YYˆ\\Œ[[‹ZZŠ\\Œ]]‹\\‰[[ˆ[[‡YY†XX…ZZ†[[ˆ]]Š^^Œaaee”ff–hh™iišjjœllpp¡qq£tt§uu§uu§uu§vv¨yy«xxªzz«{{¬zz«zz«{{¬}}®€€±}}®||®°²……µ††·††·……¶††·††·ŠŠ»ŠŠ»‹‹»ŠŠ»‹‹»ŽŽ¾’’Á””Ô”ÃÀ““••Ä••Ä••Ä••Ę˜Ç››ÊËËžžÌËŸŸÎŸŸÎžžÌ££Ñ££Ñªª×ªª×««Ø¨¨Õ­­Ú®®Ú®®Ú²²Þ²²Þ±±Þ²²Þ²²Þ´´á¶¶â¶¶â´´á´´àª©Î’‹šk^OL:I6 I6 I6 I6 I6 I6 `F S= I6 I6 I6 L:cUAŠ‚‹­«Îººæººæ­«ÎŒ„fXDL:I6 I6 I6 K8mS-«…cà¬ë©Žè¤Œâ¤Žå¶¤èÅÂèÉÑå¿ÎßµÃëÐÍ÷îåùñéùñæùòêùóìøðè÷íâøïæùóíúõðú÷òúøóúøóú÷òú÷ñûúõûùóûøòú÷ñúõîùôíøòëöìâòÜÉî̬îÛðÙïÁ–íºì·ê³Šé±‰ç®…ãªÄ’h’lBbHJ7G6C6RRRRRRRQQQPPQPONNMMMNNONQRRPNMNKJJ I IJJIJIHHHGHIHHHHHIIKMMNPORRRSS T U""U""V""V""U""T!!S!!R P ON N N O P!!P!!Q""R""T$$U%%X&&Y''\((]((^((^))_((^((]))^((]))]((\(([(([%%X&&Y&&Y##X''[%%[%%[%%[$$Z$$[$$[$$\!!Y""Z""Z""Y""W$$Y%%W%%W%%U&&V&&U''T((V++X,,Y,,Z..\//^00`11b22c33e44g66i88l88m99n88m88m88l99m99l::l::l::m;;n::m;;o<TB!O;vR0°x]娑ò·Ÿò¶¡ò´ òµ¡ó·¡õ½¥õ¿¥õ¼¢ô¶›ñ­Žï¦ƒë |䟄îİôáÒøíá÷êÜöçÖóßÅîÎ¬ëÆ ëºˆïË£íÓ·ïÛÆñßÌõçÕøîàùóêú÷ñúøòûøóúøñú÷ñúõîúôìùóêùòêùòêùóìú÷òú÷ñùóîöíæðÞÐê̴滜æ´è´‹è²ˆæ¯„å«ã©~á¦{Ü¡uRRRRRRRRQQQQRRQQPPPPQQQRSUUUUTSOOMLLMNNMLLKKKKKKLLLMNNQQQRRQTUT!!W""X##X##Y##Y$$Z%%[%%Z%%[%%Z%%Z$$X$$W##V##V##U$$U$$V%%W%%X''Z''[((\((]))_**`++b++b,,c,,c,,c++b++b++a++`++`--b--b**`++`**_((^((_''_((_''`&&^''_&&^%%]##]!!Y!!Z%%\%%]'']((]((](([))\))\,,]--^00`00a11c22c22e66h77k88l99n99o;;p;;q<>s>>r>>r>>s>>s>>s??t??u??u;;r<>u??v??u@@wCCyEE{DDzFF{HH|HH|HH|II}KKKKLL€LL€NN‚OO„PP…PP…PP…PP…PP„OOƒMM‚LLJJKKMMMM€MM€II|LL€NNNNOOƒOOƒPPƒPPƒTT‡TT‡WW‰XX‹[[[[[[\\ŽZZŒYY‹YYŠ[[ŒYYŠWWˆYYŠZZŠZZ‰YY‰YYŠ\\Œ^^Ž^^__cc”ee–ff—gg˜jj›kk›kkšii˜jj™hh˜ii˜kkšll›mmœmmœnnŸooŸrr£tt¥tt¥vv¨yyª{{«}}­}}®~~¯||®€€±°~~¯°‚‚³‚‚³ƒƒ´‚‚³„„´‡‡·……µ……µ‡‡·ŒŒ¼‹‹»‹‹»ŠŠ»ŒŒ¼¾’’Á‘‘Á¿¾••Ä••Ę˜Ç™™Ç˜˜ÇœœËŸŸÎžžÌššÉ™™ÇŸŸÍ¢¢Ð¢¢Ð¢¢Ð¢¢Ð¨¨Õªª×§§Ô¬¬Ù««Ø¯¯Û¯¯Û±±Þ²²Þ²²Þ²²Þ¯¯Ü±±Þ´´à¹¹ä··ã´´à´´á´³Û ›³xniR@I6 I6 I6 I6 I6 I6 J7RAM;I6 I6 I6 I6 I6 L:eWCŒ…®¬Ðº¹åº¹å³²Ø“Œ›\L1I6 I6 L9iX8¨ŠÞ¼±éª™Û’}Ôˆtݕ柋쩕ñ²žñ²Ÿð­šï«–ð®”ò¯’ñ¨†ï |í›xì™vê™vé›w椅ӘzÄŠnÁƒc€]̉^Ì‹^ÒaÐcÚ©ƒÕ wÐŽ`å·ò×´õãÆöåÍùñæúöðú÷ñúöïúöïúõíùòèøñåúôëûøñú÷ñúöðùõïùóíøñëöíåïàÑçʱ䷗專篅孂㩀â§}RRRRTTTTTSSSSRRRRSSSTTTTUUUVVWVVVTSQPNMOMNNMLLJJKLLMNNMMMNNPQRSVW!!X$$Z$$Z$$Z%%\%%[&&]&&\%%[%%[%%Z$$Y$$Y$$X%%X%%X&&Z&&Z((]((]((^))_))`**a,,c,,d,,d,,d,,d,,d,,c,,c++b++b..d..d..d..d..d--d--d))a++c**b))a))a((a''`''_$$]##\&&_&&^%%]'']((^**_++_--`--`--a//a00b00c22e44g77j88m99n::o::p;;r<>s>>t>>t>>t??u??t??t@@uAAvAAw??u??uBBxBBy??u??u==u>>u==u??v>>u>>u>>u<l_P‘Š—”œm`RN<VAˆn`§¬èÕÛîäæîåæìÚÖ伮؞ˆÇ„nÇ}gÑ…pÚŽy㘅蜊ä•݇nàŠpàˆlå‰mì–vñ¢ƒô¬ô¯‘òª‰ò§…ð£‚ë¡‚â™zà“rÒ„a³fE S1¥dD«iC¤X1·xOЗläµˆíÆœïÏ©óÜÁøòèùôîúöðúöðúõîùóéúôêúõìúõìúõíúõíúõîúöïùõîøñêöðçôêàêÔÃḚܨݦ{á¨}RRRRTTTTTTSSSSSRSTTTTTUUUUVVVWXXXXVTTQPQPPPNNNMLLLMOPPOQOQQRSTU X X!!Y%%\%%\&&]''_''_&&^&&^'']'']''\&&[&&[''\''\''\''\((^**_++a++b++b,,c,,d,,d--e//f//g//f//f//f//f//f//e11g11g11h11h11h//f//f++d,,d))a++c++d**c**c))a''_&&^%%^&&_&&^''^))`++`++a..b..c22f33g33g33h77k99m99m<>t@@v@@v@@v@@v@@v??u@@vAAwBBxCCyCCyCCyBByBByCCzDD{AAxAAx@@wAAxAAx??v??v??v==u==u??v@@wAAxEE|GG}HH~II~JJKKKKNN‚PP…PP…PP…PP…PP†RR‡TT‰TT‰TTˆRR‡SS‡RR‡QQ‡QQ‡PP…PP„PP…PP…PP…NN‚TTˆVVŠVVŠWW‹WW‹WW‹WW‹YYŒYYŒ]]``“bb•cc•cc•cc•bb•aa“aa“``“^^``’``’aa’``‘``‘``’cc•cc–dd–gg˜ii›llžmmžnnŸpp¡oo oo pp¡nn nn oo qq¡nn qq¢ss¥tt¥ww¨ww©vv¨xxªzzª{{¬€€±‚‚³‚‚³²„„´„„´ƒƒ´……¶ˆˆ¸‡‡·‰‰¹‰‰¹‹‹»‹‹»ŠŠ»ŠŠ»ŽŽ¾‘‘Á””Ó“Â’’Á””Õ•Ę˜Ç––Å••Ä™™ÇššÈËË››ÊŸŸÍ¡¡Ï££Ñ  ÎŸŸÎ¢¢Ð§§Ô§§Ô§§Ô§§Ô¬¬Ù®®Ú¬¬Ù®®Ú°°Ý³³ß³³ß´´à´´á··ã´´à´´à´´á´´à¸·á œ·ynlZJ.J7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 [K0ƒz}¨¥Ä¹¸ã¹¹å¸·á¤ ¼}srZJ-J8I6 I6 I6 I6 I6 P>taC¥„ί¹Ö¶ÃÖ¶ÅØ¹ÆÛÂÈÝÄÆÜÆÆÝÆÆØ½¶Ò´¬¿‰w¿hÄy`ÉxaÏ{fÔjÎwaÐwaÒxaØ~gçwñ¢Šô«˜ö´ õ­—ô«ó¬ó¨‰ó¦ˆð¡ƒô©Œ÷¯‘ð¤†Ñƒfª[>žP1¥W4ª]7°c9¦_4«j@Ä‹bÝ´’éˬðÚÁõçÕ÷îáøïãùóéúõìúóéùòèùòçùòèùóêùôìùóë÷ñèöïåôìàôìáóêàéÖÇÛº£RRRRTTTTTTTSSSTTTUUUVWWWWXXXXXXYYYYWVTSRRQPNPPNNNNNOPPQRSTTUVWW Y Y##\&&^&&^&&_''`''`''`((_))`))`))`))_))_))_))_))_))_**a**a++b,,c,,d,,d,,d,,e..f00g00g00g00g//g//g//f//f11h11h11i11i11i11j22j00g00g,,e00h..g,,e++d++d))a((a''`&&^%%]''`))`**a,,c..c//e11f11f44h44j77l99n::p<>t??u??v@@v@@wAAxBByBByCCzCCzCCyDDyEE{EE|EE|EE|EE|CCzCCzFF|FF}BByAAxAAxAAxBByAAxAAxAAxAAxAAxBByDD{DD{HH~HH~KK€KKLL‚NN„OO„PP…QQ‡RR‡RR‡RR‡RR‡VVŠWW‹WW‹WW‹VVŠVVŠUU‰TTˆRR‡QQ‡PP…PP†QQ‡QQ‡PP…RR‡TT‰TT‰VV‹VV‹WWŒWWŒZZŽ[[__’aa”cc–dd–ee˜ee˜ee—cc–dd˜dd—cc”cc”cc–dd—cc•cc•ff˜gg™hh™hhšjjœmmžoo qq¢ss¤tt¦uu¦ss¥ss¥rr£ss¤tt¥vv§tt¥tt¥ww¨ww©yyªzz«||­||­~~¯°²‚‚³‚‚³²……µ……µ……¶ˆˆ¸‡‡·††·ŠŠº‹‹»¾ŒŒ¼ŽŽ¾ŽŽ¾À••Ä••Ä••Ä••Ä––ÅššÈ››ÊššÉ™™ÇššÉ››Ê¡¡Ï££Ñ¢¢Ð¢¢Ð¦¦Ô§§Ô¥¥Ó¤¤Ò§§Ô««Ø¬¬Ù®®Ú®®Úªª×®®Ú¬¬Ù®®Ú²²Þ··ã¸¸ä¸¸ä²²Þ´´á´´á´´á§£Á„{]M4I6 I6 I6 I6 I6 I6 I6 L9bT>^N5J8I6 I6 I6 I6 I6 L:dUAŒ„°®Òººæººæ¶µÞ‰–M:I6 J7eT0¡“}×ÎÃîæßîäÝïæáïæâìàÜæØÑèÚÓç×Îè×ÍìÜÓäîêÓÃéŪèÀšâ±ŒÎjºrYÁqZÂpYÅr[ÏvaÛjáˆqçwê’yê”|휃ò©‘ö´ô¥êufÜZOìyô¡…ù®”ú´øªêpÓxX¿nN¶iD®f@ŸX6œU1²kB·vKÇcË“iÕ£xâ¶ñÖ¸÷ê×øðâùòçùòæùòçøñåøñçøñå÷ïãõíàôìàöðæöðèðæÚçÔÅRRRRTTTTTVVVVUUUUUUUVWWXXXXXXXXYYY!![!![ Z ZXXSRROQPOOONNNOOQRSSSSTTVVWX!!Z""Z$$]%%]$$]&&^((`))a**b**a++b**a**a**a**a++b++b++c,,d,,d--e--f..f..f00g00g00g22j22j22j22j22j22j22j22j22j22j66m66m66m22k22k00h00h..g..g..g..g,,e,,e++c))a((a++c++c--e//e00g11g22h33i55k66l88n;;p<>uAAxDD{DD{FF}FF}KK€LL€KKMMƒOO„PP†SSˆUUŠVVŠVVŠVVŠWW‹XXXXXXWWŒWWŒWWŒWW‹WW‹VVŠUU‰VV‹VV‹VV‹TT‰UUŠVV‹VV‹ZZŽZZŽ[[[[^^’``“bb–ee˜ee™ee™ggšffšffšffšggšee—ee—dd˜dd—ee˜dd—dd—gg™ii›ggšii›kkoo¡qq£ss¥vv¨vv¨ww©yyªyyªww©vv¨xxªww©yyª{{­||­{{­||­}}­°€€±……µ……µ……µƒƒ´ƒƒ´……¶‡‡·‡‡·ŠŠ»ŠŠ»ŠŠºŠŠ»‹‹»¾ŒŒ¼¾‘‘Á••Ä••Ä••Ä••Ä––ÅššÈœœË››Ê››Ê››ÊŸŸÎ¢¢Ð££Ñ££Ñ££Ñ¥¥Ó¨¨Õ§§Ô¥¥Ó¦¦Ô©©Ö­­Ú¬¬Ù¬¬Ù²²Þ³³ß²²Þ²²Þ²²Þ¶¶â¶¶â¶¶âµµá¸¸ä´´à©§Êx|\M3I7I6 I6 I6 I6 I6 I6 I6 I6 vke©§É·¶â··â¤¡¿~tsZJ.J8I6 I6 I6 I6 I6 M;k^P„{k]NM:YG!Œ~cÍÄ·ñêåóíçôíèôíçóëäòêãñéâòêäñêäñéáóëåôíçñæÝìׯïÜËîÜÌæÆ­Ûª‡È€R°{_˜^I ZE¶kTÄp\Ù{hä…sì‘}ñžˆêuÞ|bÑl[Ô`XÞXUèicízkð˜€ï’vð˜|ô£Šö¦òŽvåt\á}dÚ€cÎ|[Æ{WµrNªjIœ^=¢eA£f@³wNÁˆ_Ï“fØ™hâ¬yíÆšòÚºõçÒ÷îà÷ïâöîáôêÛñåÒñæÔôíáïâÓã͸ѯ™RRRRTTTTTVVVVWWWWWWWWXXXXYYYYYYYYY!![!![!![""[!![!![VUUSSSSTTTTTTTTTTSUUVWXWX!!Z!!Z""[&&^((a((a**b**c**c**b++c,,d,,d,,d,,d,,d,,d,,d,,d--f--f00g00g00g00h00h00h00h22k22k22k22k22j22j22j22j22j22k66n66n66n66n66n33k33k22j00h00h,,e++d++d**c**b((a++c**c++c++c--e//f11h33i44j66l88o99o;;r<l_Q• µµÝ¹¹å¹¹äµ´Ü™¯ujbR@I6 I6 I6 I6 I6 L:vgG¶ª˜çß×òìæòìæóíéóíçôîéôîéôíèôíçôîçôíæôíèóìæóìåóëåóëäïâØç˱êÕÇîàÕìÚÌÓ¦‡’T5p<)o>.A3µ^LÀlVÕvbäqíŽ{ôŸˆò›ƒç‹vëŒwìŠuìwì‰pæƒkêˆrñ Œí‰nÛnRÚpXÕyf¢^N•RGÚ|eâfËnMÀnL«cA£a@‹M.šW5¢_9›Y5 ]7©c8¹q>ˇQÛŸiä·‡ëÍ©ïÜÃðãÏêÕ¼èÔ½æÑ¿Ü¾§Ö°–Ó¢ƒTVVVVVVVVVVWWXXXXXXXXXXXYY!![!![!![!![!![!![!![!![!![!![!![""[""[""[XXXSSSRTTTTRRRQQQRTTTTTSUVWY##]%%^&&_''`++c++c++c--e,,e,,e--f--f--f--f..f..f//g//g00h00h11i22k22k22k22k22k22k55m55m66n66n66n66n66n66n77n77n77o77o77o66n66n33k11i00h11i00h00h//h..g,,e,,d,,d,,d,,d--f11i22j55m66m::q<Š‚‰²±×··ã¸·ã­«ÏŒ…ŽdU@K9I6 I6 I6 I6 I6 J8[K/wlfi[JN<TB‹}aËÁ´òëæøòî÷ñíöðìöðëöðêõïêöðì÷òîõïëôíæòêäñèáðçáòéäñéãòêãóìæóìèòëäòéãñéâðæßîãÜìáÙêÝÕéÛÒæÕÊØº¤¥qRo?*f7(‰B4ÃaRÇdT¬SA¬YC¼eOÊkUØo]ßvbåxgæueßkYÝxhÅmc»i`Ý~qä†yî—…ô§•ó¢Œï‘|â}fÞwbê‚lç}aÞpQÍkH«Z8ƒ@#w;!e2V(U([(^)k.|5ŽB¡W+¡]2¥d8©h<®mC³tN¼\UVVVWWWWWWWWWXXXYYY!![!![!![!![!![!![!![!![!![""[""[##]##]##]##]##]##]##]##]##]$$^%%^%%^&&_""[""[""[WWWTTUUUTTTTTTUUWXYYY!![""[##]$$^''a))b))b--f..g..g00h00h00h22j22k22k22k22k22k22k22k22k33k33k55m55m66n66n66n66n77o77o77o77o77o77o77o77o77o77o;;r;;r;;r77o77n66n44l66n33k22k22j11i11i00h..g00h00h11i33k66n77o88p::q;;r<,„:(Œ@,ŠE.œR=²^H¿ePÊjTÎjVÐjX»aOŠE<¤VPæŠ~珞ã„sç†sñžó¤”ó‰ò”}ñvðsëgásVÍeI¨S3†>!m1i3i4e0a+b+h-w6ƒ<‰?ŽCDŽL%€H({F%VVVVWWWWWWWWWXXXYYY!![!![!![!![!![!![!![!![!![""[""[##]##]##]##]##]##]##]##]##]$$^%%^%%^&&_$$^$$^%%^YYYTTTTUUUTTTTWWWXYYYY Z""[""[%%^%%^&&_**c..g..g..g00h00h22j22k22k22k22k22k22k22k22k33k33k55m55m66n66n66n66n77o77o77o77o77o77o77o77o77o88p<>uAAxCCzDD{EE{FF}HH~HH~HH~HH~HH~IIJJ€LL‚LL‚LL‚LL‚LL‚NN„NN„PP…PP…PP…QQ†OO…QQ†LL‚JJ€IIIIJJ€KKIIIIHH~JJ€LLLL‚MMƒQQ†RRˆUUŠWWŒXXZZŽ[[\\‘]]‘]]‘]]‘]]‘__“aa•aa•aa”__“__“__“^^’]]‘[[\\‘]]‘]]‘]]‘__“``”aa•ee˜ee˜ee˜gg›hh›kkžmm pp£pp£pp£ss¥qq¤pp£tt¦ss¥pp£qq¤qq¤rr¤qq¤qq¤uu¨uu¨uu§vv¨{{­||®||®€€±²‚‚³„„µ††¶‚‚³ƒƒ³NNf##)‚‚¯ˆˆ¸††·ˆˆ¸‹‹»‹‹»ŽŽ¾ŽŽ¾¿‘‘Á¿••Ä””Ô”Õ•Ä——Æ••Ę˜ÇššÈ››Ê››ÊššÈ››Ê  Î¤¤Ò££Ñ¢¢Ð¢¢Ð££Ñªª×ªª×©©Ö««Ø­­Ú°°Ý³³ß±±Þ±±Þ²²Þ³³ß±±Þ´´àµµá¸¸ä¶¶â¶¶â±±Û’Œ pd[R@S= _E kM gJtSqQvT`FjX7j\KP>I6 I6 I6 I6 I6 I6 I7TC"vjdŸš³··áººæ¹¹ä¨¤ÃdVBI6 J7YG!TAI6 I6 M:m\;©‰ãÛÓ÷ðìùóðùôðøóîøòîùôðùôðùóïùóðùóïøóïøòî÷ñíöðëöðëöñí÷òî÷òîõïêóìæôíèôíèóìçòêäñèãïæßîäÝëß×èÚÐåÖË×ö¹š†”iP{I3j9%l7#a-\)c.q:&†I5žT@ªWBµXE¸WEºWEÃ^NÌk[ÇgVÅ]JÝq_êní‡tîˆvíŠvì‡rìmézcßnUÃW<¤A&ˆ5u/o.p3r6…G(ˆK-}?!n1f*i(k*o,€9‡?y8VVVVWWXXXXXYYYYYYYY!![""[""[##]##]##]##]##]##]##]##]##]##]$$^%%^%%^&&_&&_&&_&&_&&_&&_&&_&&_&&_''`((b&&_&&_&&_ Z ZXXYYYYYXXXXXXYYYYY Z""[##]%%^''`((b,,e--f//h00h11i22k22k22k33k33k33k33k33k33k44l44l66n66n77o77o77o77o77o77o::q::q;;r;;r;;r;;r;;r<>u@@w@@w@@w<>u??vAAxDD{FF}IIIILLMMƒMMƒMMƒMMƒMMƒNN„NN„QQ†QQ†QQ†QQ‡QQ‡RRˆSSˆSSˆRRˆSSˆSSˆTT‰QQ‡OO…MMƒMMƒPP…MMƒLL‚LL‚LLLL‚QQ†QQ‡QQ‡UUŠVV‹XXZZŽ\\‘]]‘``”aa•cc—cc—cc—cc—ee˜ffšffšee˜cc—cc—cc—bb–``”aa•cc—cc—cc—aa•bb–dd˜hh›hh›iiœkkžllŸpp¢pp¢uu§uu§uu¨ww©vv¨vv¨xxªvv¨uu¨uu¨vv¨uu¨uu¨xxªyy«yy«zz«°²‚‚³ƒƒ´‡‡·††·ŠŠº‹‹»ˆˆ¸‰‰¹uu™--.--.,,-LL]ŽŽ½¿‘‘¿’’Á””Â’’Á••Ä––Å••Ä››ÊššÉ››Ê››ÊœœË››ÊžžÌ¡¡Ï¡¡Ï¡¡Ï¡¡Ï¢¢Ð§§Ôªª×ªª×¬¬Ù¬¬Ù¬¬Ù­­Ú¬¬Ù­­Ú¯¯Ü²²Þ´´à´´à´´á¶¶âµµá³³ß²²Þ²²Þ¢ž¹{qnUD$I6 I6 I6 I6 I6 I6 I6 J6 [B K7 I6 I6 SA uibž™°¶¶ßººæººæ¹¸ã©¦Æ‚y{[K/J8I6 I6 I6 I6 I6 L9cR0‡yaıž×Å´ÕIJÒÁ®Ï½¬Î½¬Ï½¬Á¯›—„hfS/L9I6 J7YG"~dǼ­ìãÝòêåõîêùôñùöóùöóúõòùõñùóðùóðøòîøòîøóïøòîøòîøñì÷ðêöïéöîèõíçôìåóëäòéáñéàóëãóíåóìäïæÜãÑÁÇ¥­€b§pLT2v?%b.`,c/o;&€K4…N8€G0€E-ˆF.’I1˜H/›F.žB*Ÿ?(£>)¨B,¬F/¬C-¨?)–7!†0r'g$q-ƒA%‰K.‚E(x< o1j+g)e& g& r,|4z4u1q/XYYYYYYYYYY!![!![""[""[""[""[""[""[""[""[""[##]##]##]$$^%%^&&_&&_&&_&&_&&_&&_&&_&&_&&_''`''`((b((b((b((b((b((b((b((b((b**c**c++d++d''`''`''`""[""[ ZY!![YYYYXXXYY""\##]""\%%^%%^%%^''`((b**c++d,,e00h22k33k44l55m66n77n77o77o77o77o77o77o77o88p88p::q::q;;r;;r;;r;;r<>u<(‚H0‰S:xF/g4 b-h/j/k.j*f&c"b h#i$j&i(j0q6w7z;|= w8i/_'`%c&f% j' p* x.3ˆ:?XYYY!![!![!![!![!![!![!![!![!![""[""[""[""[""[""[""[""[""[##]##]##]$$^%%^&&_&&_''`''`''`''`''`''`''`''`''`((b((b))b))b))b))b))b))b))b**c**c++d++d++d++d++d%%^%%^""[ Z Z Z!![ Z""[!![!![!![!![""[""\##]##]%%^%%^%%^%%^&&_&&_((b++d,,e11i33k44l55m66n77o77o77o88p88p88p88p88p99q99q;;r;;r<$‰N/ˆL.€G(s9s8w; ‹K*‚E&”W7}C'b)X W_k#r' z- „4XYYY!![!![""[""[""[""[""[""[""[""[""[##]##]##]$$^%%^&&_&&_&&_&&_&&_&&_&&_&&_''`((b((b((b((b((b))b))b))b))b))b))b**c**c++d,,e,,e--f--f--f--f--f--f--f--f00h..g00h,,e**c((b%%^%%^%%^$$^%%^%%^##]##]##]""\""\""\""\%%^%%^''`''`((b))b**c++d,,e11i11i22k66n77n77o::q::q<>u<>uAAxCCzEE{FF}IIKKLL‚PP…QQ†RRˆRRˆSSˆSSˆSSˆUUŠUUŠWWŒWWŒWWŒWWŒZZŽZZŽ[[[[[[[[[[\\‘XXVV‹VV‹VV‹WWŒVV‹VV‹VV‹RRˆWWŒYYŽZZŽ]]‘``”bb–dd˜ee˜ffšhh›kkžkkžkkžkkžkkžnn¡nn¡nn¡llŸkkžkkžjjiiœhh›iiœiiœiiœhh›kkžnn¡qq¤qq¤qq¤uu§uu§zz«{{¬~~¯°‚‚³€€±°°°~~¯°€€±€€±€€±²……µ……µ……µ‡‡·ŠŠ»‹‹»¾‘‘Á””••Ä••Õ•Ö–ÁSS[TTT]]]bbbaaaZZZOOPww££Î¥¥Ñ¤¤Ð¢¢Ð  Î¥¥Ó¤¤Ò§§Ô©©Ö¦¦Ô¦¦Ô¨¨Õ¬¬Ù¬¬Ù¯¯Û²²Þ³³ß²²Þ±±Þ°°Ý³³ß´´á´´à°°Ý±±Þ´´á­«Ð†~„eWEL:I6 I6 I6 I6 I6 I6 I6 I7I6 I6 I6 I6 I6 I6 I6 J7XG*~ts§¤Â¹¸ãººæººæ¹¹ä¬ªË„{N<I6 I6 J7ZI&‰k½»¹Ö×ÝרÞÕÖÜÓÉÏÖ¥×”š×“˜Ö¤§ÕÅÇÔÒÔÔÓÔÅÅijª¡ØÉºÛξÚ˼ÙÉ»ÖǸÕŵÕĵÓ³ÑÁ±ÐÀ±ÏÀ±Í¾®Ì½­Í¾®Ì½¬½®š“‚fdR.L9I6 I6 UB‚qTº©—áÓÊéÛÓèÙÓéÚÔçÙÐåÖÏèÙÔìßÚìáÝìáÜîãÝïåàðçáðæßïåßðåßïåßðæàðçàòêãòêäðçáîáÙéØÌâÊ·Ç™y¬lB¡]5œZ3–V0”R.‰G%E$o4W%U$[*T#L W$z>"R2v?%ˆM/’S3~@"q5g,v:“R0v5<v6x7o,k& o( u+ |/ †7Œ=Y!![!![!![!![!![""[""[##]##]$$^$$^$$^$$^$$^$$^$$^$$^%%^%%^&&_&&_''`''`''`''`''`''`''`((b((b((b((b))b**c++d++d++d++d++d++d++d++d,,e,,e--f--f--f--f--f--f--f--f00h00h00h00h00h--f**c((b%%^%%^##]$$^$$^$$^$$^##]""\""\""\%%^%%^''a((b''a((b((b))b++d,,e,,e11i33k77n;;r<>u>>u>>u>>u>>u>>u>>u@@w@@wAAxAAxAAxAAxAAxDD{DD{EE{EE{EE{EE{EE{FF}FF}FF}FF}FF}DD{CCzAAx@@wAAx>>u>>u<t1m+n*u.t,r+n) t0~9†>Œ@BX!![""[""[""[""[""[""[##]##]$$^%%^%%^&&_&&_&&_&&_&&_&&_&&_&&_&&_''`''`''`''`''`''`''`((b((b((b((b))b**c++d,,e,,e,,e,,e,,e,,e,,e,,e,,e--f--f..g..g..g..g..g..g00h00h00h00h22k22k00h00h++d++d''`%%^%%^&&_%%^''a''`''`''a''a''a((b))b((b((b++d++d++d,,e--f00h11i33k77o;;r;;r<>u==u<>u??v@@wAAxAAxAAxAAxAAxAAxAAxBByBByDD{DD{EE{EE{EE{FF}FF}FF}FF}FF}FF}FF}FF}IILLLLLLKKFF}DD{CCzCCzAAxAAx@@w??v<o3X" QTTUXXY""\""\##]##]%%^%%^&&_&&_''`''`''`''`''`''`''`''`((b((b((b))b**c++d++d++d++d++d++d++d++d--f--f--f--f--f..g..g..g..g..g..g00h00h22j22j22k22k22k22k22k22k22k22k55m55m55m55m22k11i--f++d**c**c**c++d**c**c))b((b((b((b**c**c,,e,,e,,e..g//h11i33k33k66n88p<>u>>u??v@@wDD{FF|GG~IIMMƒQQ‡RRˆVV‹VV‹XX[[]]‘]]‘]]‘]]‘]]‘]]‘``”``”``”aa”cc—cc—dd˜dd˜``”aa•cc—cc—__“^^’__“__“]]‘]]‘\\‘]]‘``”aa•gg›iiœkkžmm nn¡pp¢pp£uu§vv§vv¢llvv¨zz«yy«xxªuu¨uu¨uu§uu§qq¤ss¥uu§uu§qq¤uu¨xxª{{¬{{¬||®€€±€€±„„´ˆˆ¸‰‰¹ŠŠºŠŠ»ŠŠº‰‰¹‰‰¹‡‡·‰‰¹ŠŠ»ŠŠ»ŠŠº‹‹»¾ŽŽ¾ŽŽ¾À––Å——ÆœœËËŸŸÍ¡¡ÎžžÌ™™ÁLLRTTTfffuuv‚††‡……†~~rrscccQQR\\f¯¯×³³Þ±±Ý²²ß³³Þ²²Þ²²Þ¶¶â¶¶â°°Ý²²Þ´´à¯®×•£ujeP?I6 I6 I6 I6 I6 I6 I6 I6 M;]M4WF(J7I6 I6 I6 I6 I6 I6 I6 J8^O6ˆ€†­«Íº¹åººæº¹å®¬Ð~tsI7I6 O<gY<‘‹¹¹¼ÃÃÉÄÄÈÀÁĺº½´´´²±±¬¬­§§§¢¢¡œ—˜—““‘Ž‹ˆˆ…ƒƒ~~{xxurqmmlgffaa`\][VYWRUTPTRNSRMVUPWWR]]Yee_qqlˆ‡¡ œ¸¶³ÄÃÁÊÈÆÏËÉÑÌÊÒÎËÑÍÉÐËÇÍÇÂËüǿ¶Æº¯Çº¬É»«ÏÀ±ÎÀ±¾°Ÿ‘gdR/L9I6 I6 TA‡x\Ƽ­ïèâöðë÷ðì÷ïêöîéóëäòèàñçÞñçàðæÞïãÛîàØêÛÑäÒÆÛõԸ¬Í® ÇžŒÎŸ†Û§ˆÞ¨ˆØ¢~Ë“qµ}[ªuT|I,E$b6_3h3k0r/q,d% m-p4u7‹DŒF‹H ŒF‡A›JšOšQ ›Q"¤W$¢X#”T'‡J#PRTTXY Z$$^%%^%%^%%^%%^&&_&&_&&_''`((b((b))b))b))b))b))b))b))b))b**c**c++d,,e,,e,,e,,e,,e,,e,,e--f--f--f--f..g00h00h22j22j22j22j22j22j22j22j22k22k33k33k33k33k33k33k55m55m66n66n77o66n22j//h--f**c))b**c++d**c++d++d**c**c++d++d,,e,,e--f..g//h00h00h22j22k66n99q>>u>>uAAxAAxAAxCCzDD{FF}FF}FF}FF}FF}FF}FF}GG~GG~HH~HH~HH~HH~IILLLL‚LL‚LL‚LL‚LL‚LL‚LL‚NN„QQ†QQ†PP…NN„LL‚IIFF|FF|DD{DD{BByAAx??vBByFF|FF}HH~KKOO…QQ†RRˆVV‹VV‹[[\\‘]]‘__“__“__“``”``”cc—cc—cc—cc—ee˜ff™ffšffšffšff™ffšgg›bb–__“^^’``”^^’]]‘]]‘\\‘__“cc—cc—ee˜iiœkkžnn¡pp£ss¤vv§ww¨ss‘^^Jyy¨{{«{{«{{«yyªzz«xxªxxªuu§uu¨xxªxxªuu¨yy«{{¬~~¯~~¯°²²‡‡·ŒŒ¼ŒŒ¼ŽŽ¾¾ŽŽ¾ŒŒ¼½ŠŠ»½ŽŽ¾½ŒŒ¼ŽŽ¾““Â’’Á••Ä––Å™™ÇššÉŸŸÍŸŸÌ  Î££Ð££Ïgg{FFGZZZllm||}ˆˆ‰ŽŒŒ„„…xxyjjjXXYGGGyy´´Þµµß´´àµµà³³ß´´à²²Þ²²Þ²²ÞŸ›·ujdTC#aF aF hK L8 I6 I6 I6 I6 I6 ZK/x|¥¢À³²Þ±°Ù™”¨obVN<I6 I6 I6 I6 I6 I6 I6 I6 O=naT‡~„ocWQ?J7bP,‘‚i¹­¡¼¶²·¶µ««ª‰‰„lkeZWSPLHMGCOGDMB>J?;H<8I;6G94E60E60C50B3.@1,>0,:-)9.)9-)7/,820951973<84A=:FB>IEAHE@JGBIGCKIENKEXSKnh`Œ‰‚¯¬§ÇÃÀÎËÈÓÎËÔÏÌÔÏÌÕÏÌÓÏÊÒÍÉÐÌÇÌÇÂÇÁ»Ãº²À¶ªÀ´¥Ãµ¤³£ˆvYYG!I6 I6 J7`O+—ŠqÔ˾ôíçõíæôëäòèáñåÝðåÜîâÙêÛÓåÐÆÝÄ·ÙÀ²Ì«œÈžŠÔžƒÖ}Ú¡ן~Õ›yÍ•r­xYS9iA+b;(l?'sA$^4^7#c9#n<#s:y6k& o/w:…J&˜_;”\:‹P-ŒN%•P#‚D•R(¡]/¢_/±k2­l5¡f8RRSSTUVY Z""[%%^%%^%%^''`''`''`((b((b))b**c**c**c++d++d++d++d++d++d++d,,e--f--f--f--f..g..g..g..g..g..g00h00h00h22k22k22k22k22k22k22k22k22k22k55m55m77n77n77n77n77n77n77n77n77o88p77n66n55m11i,,e,,e,,e++d--f--f,,e,,e,,e++d++d,,e,,e..g00h11i00h33k44l66n77o;;r;;rAAxAAxBByDD{DD{FF}FF}FF}FF}FF}FF}FF}GG~GG~JJ€JJ€LLLLLLLL‚LL‚MMƒMMƒMMƒMMƒMMƒMMƒNN„QQ†QQ‡QQ‡QQ†MMƒJJ€HH~IIJJ€IIHH~GG~BByBByEE{FF|IILL‚PP…QQ†SSˆVV‹XX]]‘]]‘]]‘bb–bb–bb–bb–bb–cc—ee˜ee˜ee˜ff™gg›hh›iiœiiœgg›ffšhh›ff™bb–aa•cc—cc—bb–bb–aa•aa”dd˜ee˜kkžnn¡pp£tt¥vv§vv¨yy«{{«ooocc%||¡~~¯°¯}}®}}®{{¬zz«xxªyy«{{¬{{¬ww©{{¬}}®²²‚‚³††·††·ŠŠ»¿¿¿À¿¿¾¾¾ÀÀÀ••Ä••Ä••Ä––Å››ÊË¡¡Ï££Ñ¤¤Ò¥¥Ò¥¥Ñ°==?MMNaaattu„„…““”’’“‹‹Œ€€€qqq__`LLMAACššº··á¶¶â³³ß³³Þ´´ß›–±wliSB!I6I6 I6 wUiL wU\V? I6 I6 I6 I6 eWD”Ž¡°¯Ø··ã¹¹åººæººæ°®Òˆ€†_O8K8I6 I6 I6 I6 I6 I6 I6 I6 UD}nS­£–Ä¿»¿¿¾¯µ´ŠŽ‹faWZM?VE:T?8U<7^<7h=:i;8^95]=9nBDHN†HOv@D[42R0)P,$P+"N*N* N+M+ N-"O/$M0%H/$A-%=+$@2+B72B:4<62>94@94L;3ODKH?ZWNxvm™’º·²ËÇÄÑËÈÒÌÉÓÎÊÓÎËÒÍÊÒÌÉÑÌÉÏÊÇÌÇÃÅ¿º»³ª¶¬žº­œ¢“zyhHTBI6 I6 K8hW5¥˜ÙÌ¿ëÜÐëÛÎäÏ¿ßÅ´ÝÂµÝÆ¹×¼°È¦˜Å•€Û¤„Í“qÓ™xÖ|Ì”t¥oTpE1[6%^:(c@-lE1j?*j@*sF.vI1qB*i<%j;"uB%T1n3r4ˆH%¤g@ªuQŒQ/˜X1”X6“X3€G$ˆO*d<§m@³xF¹~MRSTTTTTUWV Z!![##]%%^''a''a''a))b))b**c**c**c++d,,e,,e,,e,,e,,e,,e,,e--f--f--f--f00h00h00h00h00h00h00h00h00h22k22k22k22k33k33k33k33k33k33k55m55m77n77n77o77o77o77o77o77o77o88p::q::q::q;;r77n66n22j11i..g..g//h--f,,e,,e++d++d,,e--f..g11i22j22k33k44l66n88p88p==u==uBByDD{EE{FF}FF}HH~HH~HH~HH~HH~HH~HH~KKKKLL‚LL‚LL‚LL‚LL‚NN„PP…QQ†QQ†QQ†QQ†QQ†QQ†QQ‡RRˆRRˆPP…NN„LL‚LL‚LL‚JJ€HH~GG~FF|DD{DD{FF}IILLNN„PP…RRˆVV‹WWŒ[[[[]]‘bb–bb–cc—cc—cc—dd˜gg›gg›gg›gg›hh›iiœjjjjiiœhh›iiœiiœff™dd˜dd˜ff™cc—cc—cc—aa•ee˜ff™llŸnn¡tt¥tt¥vv¨vv©{{¬~~¬ooGttvv†€€°±€€±~~¯~~®}}®||®zz«zz«||®||®ww©{{­~~¯²²²……µ……¶ŒŒ¼‘‘Á‘‘Á““””Ã’’Á‘‘Á’’ÁÀ’’Á““Â’’Á‘‘Á••Ę˜Ç––Å››ÊœœËŸŸÍ££Ñ¤¤Ñ¥¥Ò¦¦Ó££ÍJJT@@ATTUiii|||‹‹Œ••–šš›˜˜™‘………uuveeeRRS@@AGGO­­Ó¶¶á¢Ÿ¼ƒ{]M4I6 I6 I6 I6 I6 I6 I6 I6 T= \C K7 I6 I6 I6 I6 I6 I7XH+~ttª§Çººæººæººæººæ¸·â œ´uiaK8I6 I6 I6 L9l]>›‘ƒ¾¹µÅÂÁÁÁ¿¡©¥rvpRICP<5S:3R60S5/V6/{76»8:Ì54Ò66Í97§KJÙrŒé{›í ì„£½Uf¢/0ª%"¤("‡(W#Q$P#O#N$N$N%N&O&M'M(K*H+D,#B1)D6.D=6OE>WF@QD>JD™R'•V/E"œ`8¨lD’W1˜\7„J'X2”^9¢jD»„WRSTTTTTUUTVUX Z##]%%^&&_((b**c**c**c++d++d,,e--f--f..g..g..g..g..g..g..g..g00h00h22j22j22j22j22j22j22j22k22k22k22k55m55m77n77n77n77n77n77n77n77n77o77o88p88p88p88p88p88p::q::q;;r<j]Oxnk_P9K8I6 I6 I6 I6 I6 I6 I6 I6 K9gXF’Œš³²Øººæ´³Û—‘£m`RK8J8^M+Š~j¸³®ÇÄÆÇÂüº¸‘‹aZRO93Q6/Q4,S3,S2)T0*\3/~IK£bh¼R[ÅHKÄ[U®^TŠYO“ke¦uv©tx¦tu­LKÎ61Þ4*âG?ÛHG«CHšDLˆ<@d*%Q"P"N!O!O"N"N#N$N$M%L&J)D.#B6-H=5P?7Q<5N:4G:4E<6D?8E@8GB:TPGtpg˜•·´®ÄÁ¾ÆÃÀÄÁ¾Á¿»À¾»Á¿¼À¿¼Á¾»ÄÁ¾Â¿»»·±°¨œ¥˜…‚rTaO*K8I6 I6 P=sZ;¤y[Ñ™zØŸ~ÕœzÑ—w¿ˆi•cJc<+P1"U4&X5&_7&b9&e:&g;&tB+zG/zH.vD*wC)yD){E+}H.yG-zH.}J-xB&|D"„AŠFz;‚G$S0”X3“S+‘P(O(¡g?¥pK‹]7TUUUUVVVWUXVXY""[%%^&&_''a**c++d++d,,e,,e,,e--f--f..g00h00h00h00h00h00h00h00h00h22j22k22k22k22k33k33k33k33k33k33k55m55m77o77o77o77o77o77o77o77o77o77o::q;;r<>u>>u>>u;;r::q66n22j22k11i22k33k22j11i11i11i11i22j22j55m66n66n66n99q99q<>u@@wAAxFF|FF|IIIILL‚LL‚LL‚LL‚LL‚LL‚LL‚LL‚OO…PP…QQ†QQ†QQ†QQ‡RRˆSSˆSSˆSSˆSSˆSSˆSSˆSSˆWWŒWWŒWWŒWWŒSSˆPP…NN„QQ†QQ†OO…NN„LL‚GG~JJ€LL‚NN„SSˆVV‹WWŒXXYYŽ]]‘bb–cc—cc—gg›hh›hh›hh›iiœjjllŸllŸllŸmm nn¡pp¢pp¢nn¡mm nn¡llŸhh›hh›hh›iiœhh›gg›ffšff™iiœjjqq£vv¨xx©{{¬}}­°}}€ŽŽ'‘‘%‚‚?††­ˆˆ·‡‡¶††µ……µ„„µ‚‚³²€€±‚‚³‚‚³°‚‚³……µ‰‰¹‰‰¹‰‰¹ŒŒ¼ŽŽ¾””ؘǙ™Ç››ÊššÉššÈ™™Ç——Æ——Æ™™Ç™™Ç˜˜ÇššÉžžÌ››ÊŸŸÍ¤¤Ñ¥¥Ó©©Ö­­Ù®®Û°°ÛŽŽ¯002<<=QQRggg|||Ž››œ¤¤¤¦¦¦¢¢¢šš›ŽŽmmn[[[HHH777('&:0M:K8J8J7I6 I6 I6 YH,‰‚Œ©§Ê´³à··ã¸·â ›´uibP?I6 I6 I6 I6 I6 I6 I6 I6 I7UD%hZGWF'I7R?xjO¥‘Á½¼ÂÁÃÀÂĪ«©ytpSC>N4-P3,O1)R1*R1(S1)T0(]60ªXdáo‹éx•퀞耛¾v–xn”zn“{owmŒsjŠofˆka†cY”g]«bcèvñœóƒ ò†£Ûth((T"Q!P P!N N N"N!O#O#O#M$I&B)B/#D7+C9.<4+=2+>3,>5/=81?;4?;4D?7JD=a\Tƒ~v¥¢œ¹¸´¿¾¼ÂÀ½ÈÄÂÈÄÂÈÅÃÈÅÂÆÄÁľÁ½¸·²ª«¡“™ŠsnNXFI6 I6 J7ZC„b<§xW‡ZCY8(Q0"O-V2#[4$]5$`6#b6#n@)sD,|H/~J0|H/{H-wE*yF*zE)zF+{G+}I-|H,~H.{F,zD*ƒK+ŠH#ŠE’N"ž[/³wJ§e5–P#ŽT)mM$L8TTTTTUUUWVXWWYY Z$$^%%^''`((b,,e,,e..g..g..g..g..g00h00h00h22j22j22j22j22j22j22j22k22k22k22k55m55m66n66n66n66n66n66n77o77o77o77o88p88p88p88p88p88p::q;;r<>u??v??vAAx@@w@@w<K9I6 I6 I6 I6 I6 I6 I6 M;lZ:™Œy½¸´ÄÂÂÃÃÄ·¾½ˆ‘Ž_VPM2,M/'N-%N-%P-%P,#P+"Q+!S+ X+"ˆLFªRPÉOW×YfÍuÀŠŒ¦ƒz™|o•|mƒfX‚aU“xh–w]ž}\—xX¥Œy¸¥ ½œž°pvË`mÕPZÅ7;£$!…] T Q R"O O O P P!Q"S$R%N$F%81 47$9/#61&83)=7.A;2@:2@92=6/<4.?82RLDzwn¨¦ ÀÀ¼ÉÆÃËÈÅËÈÅÊÆÄÈÅÁÈÄÁÊÆÃËÆÂÅ¿ºµ« ®¢ŽtzjJSAI6 I6 I6 J5N4Y7#_8&`7$^5"e9$k>(tB+tA(yD+|F+xD){E+}G-|I-|H.{H,|G,~I.{G,|G*K-„M1‚K/…O1‹R3‹S3ŽT4 `5ÉS²yInFM8I6 J7UTTTTTTUVVXXXYYYY Z""\""[%%^))b++d,,e//h//h00h00h00h00h22j22k22k33k33k33k33k33k33k33k33k55m55m77n77n77n77n77n77n77o77o77o77o::q::q<>u??v??v??v??v??v@@w@@wAAxAAxCCzBBy>>u;;r77o33k22k33k44l55m44l44l44l55m55m66n88p::q<RRShhh~~~’’“¢¢¢¬¬¬±±±°°°©©©ŸŸŸ‘‘‘qqp^^]LLK::9+++F5J8J7I6 I6 I6 I6 I6 K9bS=…²±×ººæººæººæººæ¸¸ã£Ÿºm`RI6 I6 I6 J7]J%|b·©šÅ½¸ÄÀÀÅÃĪ­ªvxqO@9J-%M*!O* N(M(N(O(O&Q&Z&a&r&!Ç-,à)$è1)éD>ÒF9©vaÇ£iÙ¹lÞÀnÖ¹jÀ¥lÞ¼qîÏkñÕmòØoìÑl´™S€_M€WJ°@<Ö-&ä/(ç;5Ø7,XTS R Q Q Q R P P!P"S&V+M#E8 ./4=+?5':2';1'@7-E=4B<3B<6A92<3,JC<{wn´²¬ÇÅÄÍÊÈÐËÉÐÌÈÑÍÉÓÏËÕÑÎÖÒÏÖÒÏÎÊŽµ«²¦•º¬˜£“zn];M:I6 I6 J6P7^9i;$s?(p>(r@)vB)wC)uA'vA(vA'zD*J/„M1‚L1…N2†N2‡O3ˆP4ŠQ5ŽT7R5ŽU6‘V8U5‰O/”S)‰V!T<I6 I6 I6 I6 TTTTTTTTUUXXXY Z Z Z Z ZYY##]%%^&&_**c,,e..g00h11i11i22j22k22k33k55m55m66n66n66n66n66n66n66n77o77o77o77o88p88p88p88p88p88p::q::q<5-C<5mia©¦¤ËÉÇÕÒÑÖÒÐÖÒÏÖÒÏÖÒÐ×ÓÑØÔÑØÔÒ×ÒÍÏÉÄ»²©²¥“ϯʼ©—†kdR.K8I6 I6 K6U7^8n?&u@&yE+}F,~G,G-…M0ˆM0ˆN2‰N2ŠO3ŠO3‰P4ŽR4‘W8–Y=’V:”X:’V9’V6|M*U<I7]L2\M2K8I6 I6 TUUUWXWXXXXXXXYYYYYYY""[""\%%^&&_))b++d,,e//h22j22j33k33k33k55m55m66n77n77n77n77n77n77n77o77o77o77o::q::q;;r;;r;;r;;r;;r;;r<>u>>u??v??v??v??v@@w@@wAAxAAxAAxCCzCCzCCzCCzCCzCCzDD{DD{DD{DD{AAx>>u<>u>>u@@w@@wFF|FF|LL‚MMƒQQ‡QQ‡RRˆSSˆVV‹WWŒWWŒWWŒWWŒWWŒWWŒWWŒYYŽZZŽ[[[[[[]]‘]]‘]]‘]]‘]]‘]]‘]]‘``”aa•aa•``”]]‘\\‘YYŽXXWWŒVV‹TT‰QQ†QQ†QQ†TT‰VV‹ZZŽ^^’bb–cc—ff™hh›nn¡nn¡qq¤ss¥ss¥ss¥tt¦ww©xxªxxªxxªzz«{{¬{{¬{{¬xxªzz«xxªuu§tt¦vv¨vv¨uu¨uu¨rr¤ww©yyª{{¬ƒƒ³††¶‹‹°œœ^³³K¶¶O··Q¶¶O±±L••†——Ö–Ä““À’’À¿¿‹‹¼ŒŒ¼ŽŽ¾‹‹»ŽŽ¾À””ԔԔؘǛ›ÊŸŸÎ¥¥Ó¦¦Ô¨¨Õ¦¦Ô¦¦Ô¦¦Ô¤¤Ò§§Ô§§Ô¦¦Ô§§Ôªª×ªª×®®Ú³³ßµµà¸¸ã¹¹ä§§Ì115000AABVVWmmmƒƒƒ˜˜˜¨¨¨´´´ººººººµµµ¬¬¬ŸŸŸ}}}llkZZYHHH999+++\Xbh[IL:I6 I6 I6 I6 I6 I6 I6 I6 I6 K9[K/\L1K9L9kX7ŒuǶ§Ó÷ÏÁ¶Ã½¹¼»º’’ZXRNG@P@6K+#L'N&R&X&`2*›DSÚe„æp‘ét•ât“ÊUcØIGçGAê]WÌ\TØ~Œí}—õ†¤ö‘®ò•°Ç~Ь‡ž„wš‚rš~iÛ¹uòÖtõÝwõßyêÔw¯˜f£‰p»ŸtÃ¥rÕœu뎈è•釢ä›Äcye#!XU T T S R R R S S!S!R R Q O H 832- :O5J<+>4(;1&1) 1'80%B:/JD:qhg–Ž”ÌÊÊ×ÔÕÙÖÕ×ÔÓ×ÓÒØÔÒÚÔÒÙÓÏØÑÌØÒÍÕÑÍÌÆÁ´ª·©”ÙË»Ù̽¼®š‡wZXFJ7I6 I6 N7^=uE'K.‡M1ŠN2‹Q4ŠP2‰N0‡M.‰O0‹R4ŽT6ŽT7T5“X9•[=™^=…Q1^@J6Q?ކ‘¶µÞ¶¶ß¡¸{qoWG)UUUWXYY!![!![YYXXWXXYY!![!![""[##]$$^%%^%%^&&_((b))b++d..g00h22j44l44l44l66n66n77n77o88p88p88p88p88p88p88p88p::q::q<>u>>u>>u>>u>>u>>u??vAAxAAxAAxAAxAAxAAxAAxAAxAAxDD{EE{FF}FF}FF}FF}FF}FF}FF}HH~HH~HH~FF|AAx>>u88p99q99q;;r::q88p77o77o77o77o<>u>>u>>uDD{DD{GG~IINN„PP…SSˆTT‰VV‹WWŒWWŒWWŒWWŒWWŒWWŒXXZZŽ[[\\‘\\‘\\‘]]‘__“__“``”``”``”``”``”bb–cc—cc—aa•__“[[[[[[[[YYŽWWŒVV‹VV‹WWŒWWŒ[[aa•cc—ff™jjllŸqq¤qq¤ss¥uu§uu§uu§uu¨xxªzz«zz«zz«{{¬}}®~~¯~~¯||®||®~~¯zz«vv¨uu¨uu¨uu§vv§rr¤vv©{{¬}}­……´‹‹¸ŽŽ”±±SººV½½Z¿¿\½½YººT¦¦aššºššÇ——Ä••Ó“‘‘Á¿¿ÀÀ’’Á••Ä™™Ç™™ÇššÉË¡¡Ï¤¤Òªª×¬¬Ù­­Ú¬¬Ù¬¬Ùªª×¨¨Õ¨¨Õ©©Ö¨¨Õ¬¬Ù¬¬Ù««Ø¯¯Ü´´ß¶¶áººå¶¶àOO])))99:MMMccczyy¤¤¤³³³½¼¼À¿¿¾½½¶¶¶«««ŒŒ‹yyyhhgVVUDDD555(((  ŸÅ§¤Â}srWF'I6 I6 I6 I6 I6 I6 I6 I6 J7^K'Ž}cÁ° ÕĸÔøÓ¶ÍÀ·Â¾»À¾¾•—”OKENE>u>>u>>u>>u>>u>>u??vAAxAAxAAxCCzCCzCCzCCzCCzCCzDD{EE{FF}FF}FF}FF}FF}FF}FF}HH~IIIILLFF}FF|@@w<000$## ??M¸¸äººæ´³Û”Ž`P8I6 I6 I6 I6 R?}jL³¢ŽÔĸÚʾ×ȼÔŸÒµÌÀ·Ã¿¼Â¿À»ººilhND;NA9N4,N,"O(W)! 74Ô1,ä4-äMEÀNC‡UMŠe_Œd_²˜”àÕ×ßμò؃÷䄸鉸ì’îßŒæØ»çÚË×ÌÁ¨–ŒŸˆ|†zre…w³Ÿ­”zß¾oò×rôÜvóÝyïØvÒ¸Y˰hѹsÄ­s³tI×;.æ3*ë4+éC8¶.ZVU STTU V! V"V! X#Y%U#LGFEFM B=17W-N:$A6*ZJ1XF*ZJ0A9.e\Z~s€¼»½ÏÎÑÑÑÓÐÎÏÐÎÍÑÎÎÒÎÍÒÎËÔÑÎØÓÐÚÖÓÜ×ÔÚÔÑÎÊų©žº®›áÕÇä×Êä×Êã×ËÓǸ¥–n\:M:I6 I6 K7Y<oE#‚K+‹Q3U6’W9’W9“X9V6jD M8I6 I6 I6 I6 I6 I6 J7WF(yok œ¶´´Þ''`%%^%%^%%^""\""\ Z!![!![ Z""[ Z!![ Z""[!![!![""[""[""\""\$$^%%^%%^''a&&_&&_%%^&&_%%^**c,,e..g00h33k66n77o77o88p88p88p::q::q<>u>>u>>u>>u>>u>>u>>u>>u??v??vAAxAAxAAxAAxAAxAAxAAxAAxCCzDD{EE{FF}FF}FF}FF}FF}FF}FF}HH~IIIIIIIIIIKKKKLLLL‚LL‚LL‚IIDD{BBy@@w>>u??v@@w??v>>u>>u>>u>>u>>uAAxDD{DD{FF|FF|KKLLQQ†QQ‡WWŒWWŒZZŽ\\‘]]‘]]‘]]‘]]‘]]‘]]‘]]‘``”aa”aa•aa•aa•cc—dd˜ee˜ee˜ee˜ee˜ee˜gg›hh›hh›gg›dd˜aa”aa•``”^^’]]‘]]‘XX[[]]‘``”bb–ff™gg›kkžqq¤qq¤ww©ww©||®}}®}}®}}®~~¯°€€±€€±€€±ƒƒ´……µ……µ‚‚³²‚‚³°||®{{¬}}®||¬||­zz«~~¯ƒƒ²‹‹¸´´ZÀÀ_ÆÆiÉÉoÊÊqÈÈnÆÆgÀÀ^¬¬f  ½¡¡ÍÉ››É˜˜Æ••Ä––Ä™™Ç™™ÇššÈ››Ê  Î  Î¡¡Ï¥¥Óªª×¬¬Ù¯¯Ü±±Þ±±Þ°°Ý¯¯Ü®®Ú­­Ú®®Ú­­Ú®®Ú±±Þ¯¯Û¯¯Üµµà¶¶á¥¢¼wni%"'''887MMLedd}}}•••ªªª¹¹¹ÄÃÃÉÈÈÈÈÇÁÁÁ¶¶¶¨¨¨–––ƒƒƒppo]]\KKJ::9,,, ††¦º¹å«¨É…|€ZJ.I6 L9kX6 Žxп°ÛË¿ÙɽØÈ¼ÖÈ»ÔŹÑ·ɾ³¾º¸À¾¾¼»»¯¯¯OPKG;1L90O0)O+"R*!l73›LU¼WgÃZi¤Z_²”’¿®®Ïįŏ¸ÐÃÃïèìÚÓÓàѸåÖŸçÜšàωîÕxóÙzõÞòÝ‚ßË;©Å·²ÏÄÁ¯¢›ž‡zŸ…tÈ©nîÕyöä…÷éôèžÍ¸u–x`˜yi—l`®llÃemÑS]ÄRR™H>f!\ XVUUUV V! Z'X![&[)Y&O DEHI JEFC4 7]) Z@%TE3YJ/YI.NB1LE;oak—’˜ÃÄÆÍÍÐÉÉËÈÈÈËÊÉÍËÊÎËÊÑÏÍÕÓÐ×ÔÑÙÔÒØÔÒÔÐÍÌÉĸ°§¯£áÔÆå×Êä×Êä×ËâÖÊàÕÈʽ­–‡ncQ.J7I6 I6 M7`?wJ(‰P1ŽT6tI%Q:I7eWCއ’yniUD%I6 I6 I6 I6 I6 I6 J7\M2++d((b((b((b%%^%%^""\""[!![ Z!![ Z!![""[##]$$^$$^$$^$$^##]""[""\""\##]$$^%%^%%^%%^''`&&_))b**c++d**c--f//h11i44l66n77o99q99q;;r<>u>>u>>u>>u>>u>>u>>u>>u??v@@wAAxAAxAAxCCzCCzCCzCCzCCzCCzDD{FF}FF}FF}HH~HH~HH~HH~HH~HH~KKKKLLLL‚LL‚LL‚LL‚LL‚LL‚MMƒNN„QQ†KKIIFF|AAxAAxAAx@@wAAx>>u??v>>u??vAAxEE{EE{FF|FF|KKLL‚NN„QQ†WWŒWWŒ[[[[]]‘]]‘``”``”``”``”aa”aa”bb–cc—cc—cc—dd˜ee˜gg›hh›hh›hh›hh›hh›hh›kkžllŸjjhh›ee˜dd˜cc—bb–aa•``”[[[[^^’``”hh›hh›mm pp£pp£uu¨xxª||®~~¯~~¯~~¯°€€±‚‚³ƒƒ´ƒƒ´……µ††·‡‡·‡‡·……µ……¶……µ€€±~~¯€€°€€°¯~~¯¯‡‡¶‹‹´r¼¼[ÄÄgÊÊqÍÍwÎÎyÎÎvÉÉpÄÄe¼¼[¡¡¦¦Î¡¡Î  ÍËššÈššÈ››Ê››Ê››ÊžžÌ¡¡Ï¡¡Ï¢¢Ð¦¦Ô¬¬Ù²²Þ´´à¶¶â´´á´´à³³ß¯¯Ü²²Þ¯¯Ü¯¯Û¯¯Û±±Þ­­Øœ˜µ‚z~_P7P?4+---AA@WWVqqp‰‰‰¡¡¡´´´ÂÂÁÊÊÊÌÌÌÊÊÊÁÁÁ¶¶¶¦¦¦“’’~~~kkjXXWFFE555''' fXHM;J7[H#‹y^¿®žÙǼÛÌÀØÊ½ÙɽÖǼÑùзο´Ê½²¾¸´¿»»½»»¸¶´ž¡ ;958,#H2+O-&Q*!X,$³RbänŠï{™ô†¦ç…¡œdi¤ƒ€ØÌÎÐÅÆàÖØêãçÚÓÕÞÖ×ÞÕÕàØ×áÕÊñÜ öä÷é”óèšðÝ„ëÒ‚ïØ‘ðÛ—áϚɹ ®œ‘­™«•ƒ©s¶ž€²›ƒ¨‚v®—Ó‰–ñ†§ô‹®õŒ°ó‹¯Öx“g($\"Y X W W W Y!['[$]'`-b3$_/ V%KAE I JGEE?4=S'bH1ZI/XF)XG-C9-]UQrgu®®±ÄÅÈÃÄÆ¿¿ÂÁÁÂÅÄÄËÉÉÑÏÎÔÒÐÕÒÐÔÐÎÐÎÌÍËÉÊÉÆÂÀ½µ°¨¨œˆáÕÇæÚÍåÙÌåØÌäØÍäØÌäØÌàÓÇÁ³ ‰y\YF J7I6 I6 Q:U;I6 I6 |rp¶¶ßººæ··ã²±Ù•¢ocVP?I6 I6 I6 I6 I6 ,,e**c**c,,e**c++d++d**c))b''`''`$$^##]$$^$$^%%^%%^%%^&&_%%^%%^%%^%%^$$^%%^&&_''`''`((b((b**c**c**c**c))b**c++d..g11i55m88p::q<>u>>u??v??vAAxAAxAAxAAxAAxAAxAAxAAxAAxDD{DD{EE{EE{EE{EE{EE{FF}FF}FF}HH~IIIIIIIIIIKKKKLLLL‚NN„NN„NN„NN„NN„NN„PP…QQ†RRˆQQ†PP…JJ€GG~FF|DD{EE{FF|DD{DD{CCzCCzDD{DD{FF}GG~KKLLLL‚OO…RRˆSSˆWWŒ[[]]‘^^’aa•bb–cc—cc—cc—cc—cc—ee˜ff™gg›gg›gg›gg›jjkkžkkžkkžkkžkkžllŸnn¡pp¢nn¡kkžiiœffšee˜cc—bb–``”[[]]‘``”ffšffšllŸpp£pp£vv¨zz«||®°‚‚³‚‚³‚‚³ƒƒ´……µ††·††·‡‡·‰‰¹ŠŠ»ŠŠ»ŠŠºŠŠºŠŠ»††·ƒƒ´„„´††¶„„µ„„´ƒƒ²‹‹¹ŽŽ™³³XÁÁ`ÈÈnÎÎxÑÑ~ÒÒ€ÒÒ}ÎÎvÉÉmÁÁ`°°`££µ¦¦Ñ¥¥Ñ¢¢ÐŸŸÌŸŸÍ¡¡Î  ÎŸŸÎ¢¢Ð¦¦Ô¦¦Ô§§Ô¬¬Ù°°Ý¶¶â··ã¸¸ä¶¶â¶¶â²²Þ¯¯Û±±Þ¯¯Û®®Ú£¡Ãƒz‚]M4J8L9N<J:"""333HHG``_zzz”””ªªª½¼¼ÉÉÉÏÏÏÐÐÐËËËÁÁÁ´´´¤¤¥‘{{|gggSSRAA@111### 9+saA«™„ÒÁ´ÙȼÙȽ×Ç¼×ÆºÓÄ·ÒøÐ¶ξ´Ì½²É¼²¾·±º¶·¹··¹·¸µµ¶‹Ž42-0%B-%O.'Q+"T*!n73§R^Åj~Ñh}ÏBLÐ01×=:Ç`[šxr¤‹†Ë¼¹¿¯ª»«¥¿¯«ÜÑÑïêëñïðóðëíéàŶ¢âÃ{öÞzøäøæ„øéòßçàØëåæäÞকž…{¡‡{¡ŠÅ¶´ÞÕÖ´““Ìs‚åu‘é„ ß‘§»v„e'#]#X W W WX Z#[$\&a.d7(e9-_0 Z+MDDCE Q#L HA:><T&dN6XE(XE(M@-H?7hZbƒ}‡²µ¸½¿Â¼½À¾¿ÁÆÅÅÌÊÊÑÎÐÓÑÑÐÎÍÌËÉÈÇÆÆÅÅÅÅÄÃÃÁ»¼¹®ª£¤˜†ãÖÉçÙÍçÙÍæÙÎåØÌåØËçÙÌæÙÌåØËÜξ´¤dR.I6 I6 I6 I6 I6 L9dVA‹ƒ®¬Ï¸¸ä··ã´´á«©Ï‹„fXFL:I6 I6 ,,e**c**c,,e**c++d++d++d++d))b))b''`''`%%^%%^%%^%%^&&_''`&&_&&_''`&&_%%^''`''`''`''`((b))b**c++d++d,,e++d**c++d++d..g22j66n77n<>u>>u??v??vAAxAAxCCzCCzCCzCCzCCzCCzCCzDD{EE{FF}FF}FF}HH~HH~HH~HH~HH~HH~KKLLLL‚LL‚LL‚LL‚LL‚LL‚LL‚PP…PP…QQ†QQ†QQ†QQ†QQ†QQ†RRˆRRˆRRˆPP…LL‚IIFF}EE{FF}FF|FF}DD{DD{CCzCCzEE{FF}IIHH~JJ€PP…QQ†RRˆWWŒ\\‘__“``”aa•cc—dd˜ee˜ee˜ee˜ee˜ff™ffšhh›hh›hh›hh›jjllŸnn¡nn¡nn¡nn¡nn¡nn¡qq¤qq¤pp¢nn¡hh›ffšffšee˜dd˜bb–aa•bb–dd˜ffšllŸqq¤qq¤vv¨zz«||®€€±ƒƒ´……µ……µ……µ……¶‰‰¹ŠŠºŠŠºŠŠ»ŒŒ¼ŽŽ¾ŒŒ¼ŠŠ»ŒŒ¼ŠŠ»††·„„´††·††¶††¶††¶³h»»XÄÄgÌÌtÑÑ~ÔÔ„ÕÕ†ÕÕƒÑÑ}ÌÌsÅÅf¼¼Y¤¤vªªÍ©©Ô¥¥Ò££Ð¡¡Ï££Ð¢¢Ð¢¢Ð¥¥Ó¨¨Õ¨¨Õªª×®®Ú´´à¹¹äººæ¹¹å··ã¶¶â²²Þ¯¯Û¦¤É€w}cUAL9I6 J7 mO fLO=1(%%%887NNMhhg‚‚‚œœœ²²²ÃÂÂÍÍÍÒÒÒÓÓÓÌÌÌÁÁÁ³³³¡¡¢ŽŽŽyyyddePPQ>>>.--  963¾²¨Á´©È¹¯ÒÁ¶ÕźÖźÕĹÒ¶ÏÀ´Ì¾³É¼±Ç¹¯¿³¨²®¬°®®¯¬®¬«­ªª¬nut0)#+!<)"P2'Q-$R,#T) V(b3*™:6×.(æ,&ë7.åLE¼[`Èz‰Ì„‘¯x~‘oh€vªŒ…ʶµßÓÔëâåîæêçÞáÁ¯¥ÚÄâÏ”æÔ”ÙÁ‡Îª…ÀŸ•²˜‘º¥ Ð¥ªÑƒ’Ñw‡Í{숉°~ÍGGá1.ç0)æ84Ö>:œMAa&[ Z X X Y Z#[%c2#b3#i?2g>2g<2h>3[*MEFG<I JGC@?>BlI-YI2UE(TD+>4'XPKl]m››Ÿº¼¿ÁÃÆÁÂÄÆÆÇÍËÌÏÎÍÏÍÍÊÉÊÅÄÅÃÃÄÀÁÁ¿ÀÁÂÃÿÁÁ¹»º©¢›®¡ŽæÙÍæÚÎçÛÐèÜÒæÙÎæÙÌçÙÌçØËÒ±†tVN;K8K8I6 I6 I6 I6 I6 I6 O=k^P’Œ®¬Ô¹¹ä´´á³³Þ’Œ L9I6 00h00h00h00h00h00h00h22k22k00h00h..g--f,,e**c((b''a''`''`%%^''`''`''a''`((b))b((b''`''a''a''a**c++d++d,,e,,e,,e--f--f11i00h22j55m77n;;r<>uAAxAAxCCzCCzCCzCCzDD{EE{FF}FF}FF}FF}FF}FF}FF}FF}IIIIKKKKKKKKLLLL‚LL‚LL‚NN„NN„NN„NN„NN„PP…PP…QQ†RRˆSSˆSSˆSSˆSSˆSSˆSSˆUUŠVV‹WWŒSSˆRRˆLL‚FF}EE{FF|DD{FF}EE{EE{FF|FF|HH~KKLL‚MMƒLL‚OO…QQ†SSˆWWŒ[[``”cc—ee˜gg›hh›hgšhh›hh›hh›iiœjjllŸllŸllŸllŸpp¢pp£pp£pp£pp£pp£ss¥uu§uu§tt¦pp£nn¡mm iiœiiœgg›dd˜bb–dd˜hh›llŸrr¤rr¤uu¨{{­}}®ƒƒ´ƒƒ´††·‰‰¹‰‰¹ŠŠºŠŠ»½ŽŽ¾ŽŽ¾¿‘‘Á‘‘ÁÀÀ’’Á‹‹»‹‹»ŠŠºŒŒ¼ŒŒ»ŽŽ»ŽŽŒ²²Q¾¾]ÈÈmÏÏzÔÔ„××‹ØØ×׊ÔÔƒÏÏzÈÈlÀÀ^´´U¡¡š¯¯×««Ö©©Õ¦¦Ô§§Õ§§Ô¦¦Ô¨¨Õªª×ªª×¬¬Ù°°Ý¶¶âººæººæººæ¸¸äª¨Í‹„’gZJL:J7 V? N9 fJ gJ }Z xX qT(((;;:SSRnnmˆˆˆ¢¢¢···ÈÇÇÑÑÑÕÕÕÓÓÓËËËÀÀ¿²²²ŸŸŸŒŒŒvvvaabMMN;;<,,,  ´«¦È¾¸Ä¹±Á¶¬È¹­ÑÀ´ÑÀ´Í¾³Ì¿´Ç»°Ä¹®¿´ª²«¥©¦¥¦£¤¤£¤¤¤¥££¦X^^*#&7%"P5.Q/&Q,$R*!T)T%Z'{,"Ž*’4(È]hï|žõ…«÷³÷–ºÈatÇ9:×1/Û:5ÔQH½tnÞ›ªéŽ¨æ†¢ã£Îœ·feÖ>5â6)å:-ÜB6»I@Ýh}ñ{šôƒ£öˆ¨õ®Ðk„­01Û6/í:2òLCçUK«6$` [ Y X Y Y! ]&c2"f7'g9)j?1lD:oJBiA8Y'MGI HJ JN K HDDCAZ-\I4VD'VE'L8"J7+fY_{q¯²´¼¾ÁÂÃÅÆÅÇËÊËÏÍÎÎÍÍÊÉÉÇÇÇÃÃÄÁÂÂÃÃÄÁÂÃÄÅÅÂÃø¹¹™„ǼªçÜÐéÝÓèÝÒæÚÏçÚÏÞÑÙˆnTAJ7i\K¡¶¢ž¸}sqWG)I6 I6 I6 I6 I6 I6 I6 TC#tic“ vyP?I6 I6 22j22k22k22k22k22k22k22k22k11i11i22j11i11i22j22k11i00h..g++d**c((b**c((b**c++d,,e++d,,e++d**c++d,,e,,e,,e,,e..g..g00h11i00h00h22j00h55m77n99q>>u>>uBByBByCCzCCzDD{FF}FF}HH~HH~HH~HH~HH~HH~HH~IIKKLL‚LL‚LL‚MMƒMMƒMMƒMMƒMMƒPP…QQ†QQ‡QQ‡QQ‡QQ‡QQ‡QQ‡RRˆSSˆUUŠVV‹VV‹VV‹VV‹VV‹VV‹WWŒWWŒWWŒWWŒQQ‡NN„LL‚JJ€LL‚LLLLIIIIHH~JJ€LL‚LL‚PP…PP…TT‰VV‹ZZŽ]]‘aa•ff™ffšgg›jhœf[Žkkžkkžkkžkkžkkžmm oo¡pp¢pp¢pp£qq¤ss¥ss¥ss¥ss¥ss¥uu¨xxªxxªuu¨ss¥llŸnn¡llŸkkžjjhh›cc—hh›iiœrr¤rr¤vv¨~~¯~~¯……µ‡‡·‡‡·‹‹»ŒŒ¼ŒŒ¼ŽŽ¾¿ÀÀ‘‘Á••Ä••Ä••Ä””Ô”ÿ½¼¾½­W¸¸RÂÂbËËrÒÒ€×׊ÛÛ‘ÜÜ’ÛÛ×׈ÒÒÌÌrÃÃd»»U©©Z©©¾°°Ú­­Ø¬¬Ø««Ø««×§§Ôªª×¬¬Ù¬¬Ù¬¬Ù²²Þ¶¶âººæ´³Ú• h[JL9K7 L8 N9 aF uTzWˆaƒ]oQ yZF;),+,???VVVrrqŒ§§§¼»»ÊÊÊÓÓÓÖÖÖÓÓÓËËË¿¾¾¯¯¯œœœˆˆˆsst^^^JII888((( yxÑÈÅÎÆÂËÁ¼Ç½·Ã¶¬Êº®Ê»¯Çº®Áµª»±§´ª¡¦£¡¤¢¡¥££ žŸ¡ ¢žž¡ELI' %-#O<7S6.T1(S+!T)T(U$T$U&W$p0*´XiØu’ÝÌ}“¼?Já,)í/&ó8.óRI×>6èw“õ…ªøŽ´ø—¼öŸÁË[oÙ1,ì4&ò;,õOBÝI7”;2¹`kÏiÙvŽÉz•LVf'i's%z(o'c$\ Z Y Z Z"]&d4$i=/i=.b5&kB8oH@rMEqLDZ*JIM M JHJ L PR!S!O JQ bH4UA'VC%WD'O1!\PInZm–•›»½ÁÉÊÍËËÎÍÌÎÎÍÍÌÊÌÊÈÈÉÇÇÆÅÄÁÁÀÃÄÃÆÆÆÅÅÅÆÆÅÀÁÁ°¯­’ˆwàÕÊæÛÑçÛÑßÔÉ©›…\J%I6 I6 eVC­ªÌ¸·ã··ã··ã³³Üš•ªre\RAI6 I6 I6 I6 I6 I6 I6I6 I6 I6 I6 22j22k22k22k22k22k22k22k22k11i11i22j11i11i22j22k11i11i00h..g,,e,,e,,e++d++d++d++d++d,,e,,e++d++d,,e,,e,,e,,e,,e,,e//h11i22j22j22j00h22k33k55m99q99q@@w@@wEE{EE{FF}FF}FF}HH~HH~IIIIKKKKKKKKLLLL‚LL‚LL‚MMƒMMƒMMƒMMƒMMƒPP…QQ†QQ‡QQ‡SSˆSSˆSSˆSSˆSSˆSSˆUUŠVV‹WWŒXXXXXXXXXXZZŽZZŽ]]‘\\‘XXVV‹MMƒMMƒLLLLLL‚LL‚LL‚LL‚MMƒOO…QQ‡RRˆWWŒWWŒYYŽZZŽ[[bb”ff˜ii›je˜V?lmjžoo¡oo¡oo¡nn¡nn¡pp¢rr¤ss¥ss¥ss¥uu§xxªxxªxxªxxªxxªxxªzz«||®{{¬xxªuu§rr¤pp¢nn¡nn¡iiœiiœllŸqq¤qq¤vv¨{{¬||®‚‚³‡‡·ˆˆ¸ŒŒ¼¾¿¿‘‘Á••Ä••Ä••Ä––Å™™Ç™™Ç˜˜Ç˜˜Ç™™Ç””Ã’’À””Õ•¿‘‘t¯¯I»»XÅÅiÎÎxÕÕ†ÛÛÞÞ•ÞÞ—ÝÝ•ÚÚŽÔÔ„ÏÏxÇÇj¾¾Z´´L  m±±Ó²²Ý®®Ú­­Ú­­Ù§§Ôªª×ªª×ªª×¬¬Ù­­Ù‘‹šm`RRAI6 L8 tT|YwUmNsR{X]C `F [C ^N2ž™°;;E---AABYYZttt‘‘©©©¾½½ÌÌÌÕÕÕ×××ÓÓÓÊÊʾ½½®®®ššš………ppo[[ZGGF766''' FCCÕÎÌÒÊÈÎÆÄÌÃÀ޹¿²§À²§¼¯¥µª ¯¤›¦ž—œš˜œšš™—˜›™š™—™‘‘“8;:'!#,$">1/YD>T6/U1)S+!S)U'U&V&U$V"W!Y![ \!`!~"›&¢'“)t&{2,§Q\¿f{½h~ Xdv:8q-!‡)–)Ž)s'`"^!] _!] [ \ Z [ Z Z Z Y Y Z ["`*nD:|YSxXRiA9b5*kA7vRLnG?^/!P P OK L IHK N R"Y(W%W%MZ# bH0R7"VC&VD%U<%U?1m]fyj{°²´ÃÅÇÐÐÒÎÍÎËÊÉÆÄÄÅÃÄÄÃÃÃÂÁÄÃÃÄÄÄÇÇÆËÊÉÏÎÍÈÈȾ¾¾–޵­œåÙκ­›jY6J7I6 I6 I6 I6 O=m`R–¢µµÝ··ã²²Þ²²Þ«©Îˆ•hZHL9I6 I6 I6 I6 I6 I6 I6 I6 22k22k22k33k33k66n66n77n77n77o77o77o77o77o77o77o77o77o77o77o66n66n66n44l11i00h--f,,e,,e++d++d,,e//h//h//h//h..g..g//h00h00h00h11i11i22k22k55m66n66n88p88p??v??vDD{DD{GG~GG~HH~IILLLL‚MMƒMMƒMMƒMMƒMMƒMMƒMMƒNN„QQ†QQ‡QQ‡RRˆRRˆRRˆRRˆRRˆSSˆVV‹WWŒWWŒWWŒWWŒWWŒWWŒWWŒZZŽZZŽ\\‘\\‘\\‘\\‘\\‘]]‘]]‘]]‘]]‘UUŠTT‰PP…PP…QQ†QQ‡PP…LL‚MMƒMMƒNN„QQ†RRˆQQ‡SSˆVVŠZZŽ__’dd—jjœh\K"Pmf™qq¢rr¤tt¥tt¥tt¥ss¥tt¦uu§vv¨vv¨vv¨xxªzz«{{¬{{¬{{¬{{¬||®}}®°||®zz«uu¨uu¨tt¦qq¤oo¡oo¡llŸoo¡oo¡ww©||®€€±……µŠŠ»ŒŒ¼¾‘‘Á””Ô”Õ•Ä••Ä™™Ç™™Ç™™Ç››ÊœœËË››ÊËË——Å™™Æ““££F´´LÀÀ]ÉÉoÑÑ~ØØŒÞÞ–àà›ááœßßšÜÜ“×׈ÑÑ}ÊÊoÁÁ_··P««Fžž‹´´Ü±±Û®®Ú­­ÙªªÖ¬¬Ù§¦ÏމœrgaP>I6 N9 L8 P; gJfIzW„^uT L8 M9 K7 J7J8N;^SA...AABZZ[vvv’’“«««¿¿¿ÎÍÍÕÕÕ×××ÓÓÓÉÉɽ¼¼¬¬¬˜˜˜ƒƒƒnnmYYXFFF666''' ÏÈÇÔÍËÏÈÅÊÂÀƽ»¸®©³¥›°¤›©ž–£™‘š“”‘ŽŽ‘ƒ„,0,'!("1*'<30OB>V=5U4+U.$T* T'U&U&U&U%U"W#V V W W X X [ ^$Y Y Y Z [ [ Y X X XXXWXXXY Y YZ \!Z [!["^&c-nA6€^YŠssuvxYVsQLf>6nG@c80S T"W%V%O K II J HN V)]._1S#O xF+_E0U3"XC+VC%VC&P9)obclOl–™ÁÃÅÌÌÐÌÌÎÉÉÊÆÅÆÃÂÂÅÃÄÆÄÄÇÆÆÈÈÉÉÉÉÏÎÍÕÔÔÓÒÒÊÉȵ±­†zdwgGK8J8I7I6 I6 I6 I6 I6 I6 I6SB!wlg¡œµ´³Ý³³ß±±Þ¨¦Íj^QI6 I6 I6 I6 I6 I6 I6 I6 22k22k22k33k33k66n66n77n77n77o77o77o77o77o77o77o77o77o77o88p77o88p99q88p77o66n55m33k11i00h00h00h11i11i11i22j22j00h00h00h22j22j44l44l66n77n88p77o77o66n66n::q::qAAxCCzGG~IIJJ€LLLL‚LL‚MMƒMMƒNN„NN„PP…PP…PP…PP…QQ‡QQ‡QQ‡RRˆRRˆRRˆRRˆRRˆSSˆVV‹WWŒWWŒXXXXXXXXXXZZŽZZŽ\\‘]]‘]]‘]]‘]]‘]]‘]]‘__“bb–bb–bb–[[[[RRˆSSˆQQ†RRˆSSˆRRˆRRˆSSˆSSˆUUŠXXŒ\\^^‘aa•bb•ed˜\EvUNfV‡rq£rr¥uu§vv¨vv§vv§vv§uu¨ww©xxªxxªxxªzz«}}®}}®}}®}}®}}®~~¯‚‚³‚‚³‚‚³~~¯{{¬zz«vv¨tt¦tt¦nn¡qq¤qq¤uu¨{{­°ƒƒ´‰‰¹ŠŠ»¾‘‘Á––Å––Å––Ř˜Ç››Ê››Ê››ÊžžÌŸŸÎ  Î¡¡ÎŸŸÍ¡¡Ï˘˜¸••T­­C¹¹SÃÃeÎÎvÔÔ…ÜÜ’àà›ââ ââ¡ááÞÞ—ÙÙÓÓÌÌsÄÄdººU°°F  D¢¢¨¯¯Ú®®Ú­­Ú–’­rg`SB!I6 I6 I6 S< tRdnO €[cGsRL8 N: I6 I6 I6 J7K8M:4) ---AABZZ[vvv‘‘’«««¿¿¿ÍÍÍÕÕÕÖÖÖÑÑÑÈÈÈ»ººªªª–––€€€kkjVVUCCB211$$$ ±¬¬ÏÉÉËÆÄÆ¿¿¿¹¸±©¦§›“£š‘ž•Ž™ˆ‘‰ƒŠ†…‡„„†„ƒ…„„†…†vxx242,*''# -(&:3.0)(D0,U90S/&U,!S(V'V&U&U#U"U#V!W!V!W VW X W W W VVWWVUVVX WWX Y [ \" ^$]! ]#]"`'e0 qF;ƒaZ‰nn‚ccbarNKz[YuTQh@9`3)Y(X'[+Y+N L L L KJ J N"R$Y,\.T'V&f0vQ9fJ8^;)WA.PA(M>$]S@qZfkBjza}»¼ÀÉÉÍËËÏÊÊÎÊÉËÈÆÇÇÆÇÆÆÇÉÈÊËÊÌÎÍÍÕÓÓÙ×ÖÙ×מznUL:J8naU¡¶˜“¦pcWO=I6 I6 I6 I6 I6 I6 I6 J7\L3€wyŠ‚ŒZJ/I6 I6 I6 I6 I6 I6 I6 I6 I6 55m77n77n77o77o77o77o77o77o77o77o88p88p::q;;r<>uAAxDD{FF|KKKKLL‚LL‚NN„QQ†RRˆRRˆRRˆRRˆRRˆRRˆRRˆRRˆVV‹WWŒWWŒWWŒWWŒWWŒWWŒWWŒZZŽ[[\\‘]]‘]]‘]]‘]]‘]]‘]]‘__“``”bb–bb–bb–bb–bb–bb–dd˜aa•aa•VV‹VV‹RRˆSSˆUUŠTT‰SSˆRRˆRRˆUU‰WW‹XXWWŒWWŒZZŽ`]‘[1dcXbBssr¥tt¥ww¨ww©yy«yyªyyªyyªyy«zz«||®}}®}}®}}®€€±‚‚³‚‚³‚‚³‚‚³‚‚³……µ‡‡·……µ……µ€€±zz«||®||®zz«ss¥ss¥yy«€€±‚‚³‡‡·‹‹»¾¿••Ę˜ÇššÉššÉ››ÊË  Î  Î¡¡Ï££Ñ¥¥Ó¦¦Ô¦¦Ô¦¦Ó§§Ïr¥¥<²²J¾¾[ÉÉmÑÑ~ØØßß™ãã¡ää¦ää¦ãã¢àà›ÛÛ‘ÕÕ…ÎÎwÆÆh½½Y³³J§§<••I“˜wliUC#J8S= W? S= ^D ^D ƒ]fI‡`aF fK[J-SB!I6 I6 I6 I6 I6 J7K8M:  ***?>>XXXttt©©©½½½ÌÌÌÔÓÓÔÔÔÏÏÏÆÆÅ¸¸¸¨¨§”““}}}hhgSSR@@?///!!! ‹†‡ÉÂÂü¼¾···±±¨ œ ”‹›‘‰•Œ…‡€‡€z|z}|{|zz|{{}~vww9=9651,*'.,):51-)', ?2,M3-T-$R)U'U(U&V%V%U%W$V#W#W!U V W W X! V V UVVWWY Z Z [ ^" _%`'a&a'c(d,d/ k9+n?3xUNŠpouTSsPMnHCmE?qKHvSOuTQlE@\-"V$\/#T$M NOM MM K K LL K IT%Z&qA!rX?gJ:_C4M?1F<-SLB~ntm?kp>p~a„¼¼ÀÈÈÍÌÌÐÏÎÒÏÍÐÌÉËÊÉÊÊÉÊÌËÌÏÎÏÓÒÒ×ÕÕÔÏÍ—‹xR@I6 I6 ‚x{¶µà··ã··ã··ã²°×…dVBL:I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 _P9–’©55m77n77n77o77o77o77o77o77o77o77o88p88p;;r<>u>>u==u>>u>>u==u<>u>>u>>u??vCCzFF}LL‚NN„QQ‡RRˆRRˆRRˆRRˆRRˆRRˆSSˆVV‹VV‹VV‹VV‹WWŒWWŒWWŒWWŒXXZZŽZZŽZZŽ[[\\‘\\‘]]‘]]‘]]‘]]‘]]‘]]‘__“``”cc—cc—cc—cc—cc—cc—dd˜gg›gg›hh›hh›cc—XXXXWWŒWWŒWWŒWW‹WW‹WWŒXX[[__’aa”d[e&anbb/eniœrr£ww¨yyª||¬}}¯~~®~~®~~®}}®~~¯€€±²²²ƒƒ´……µ……µ……µ……µ††·‡‡·ŠŠºŠŠº……µ~~¯~~¯zz«vv¨tt¦tt¦ss¥yy«||®²‡‡·ŒŒ¼À••Ä™™ÇËŸŸÎŸŸÎ  Î££Ñ¥¥Ó¥¥Ó¦¦ÔªªÖ««Ø¬¬Ø­­ØœœŸ››<¬¬@··RÃÃcÍÍvÕÕ†ÝÝ•ââ åå¨ææ«ææªää¦áážÝÝ”ÖÖˆÐÐzÈÈk¿¿[´´K¨¨:š™*qlXFtTbG €[uT‡`rR}YzWYA dQ0ƒy|¦£À¶¶ß±°Öއ“`Q9J7I6 I6 J7K8L9(((<<;TTSpppŒŒŒ¥¥¥¹¹¹ÈÇÇÐÐÐÒÒÑÍÍÍÄÄͶ¶¥¥¥zzzdddPPO==<--- fab½µ¶¹±±³­«ª¥¥™Š–‹‚’‡Œ‚|…|vwqvrquttusswuu{zz}}~[^];<78731/+<84,)&)5-&0("?,&O/'R*T(U%T%T%U%V$W%X$W#W#X"V V V V V W W W X X Y Z Y Z!Y Z!^&\"_'_)g4%sI?}YRŒttvUSmGBnGBoGBtPMzZWtQMe;2[*TS!Q Q O P O O N M M JK II Q"V#[)c2!eI6gN?\G;OB8MF>rppfq>rq:ttFz¦®ÆÇËÎÍÒÐÏÔÑÐÔÐÎÐÍÊËËÉÉÍËÌÏÍÎÐÍÎÑÌɤš‹^M*I6 I6 I6 I6 L9bS=ЂН­Ð··ã´´à´´à·¶á¤¡¿}tuXG+I6I6 I6 I6 I6 I6 iK vToP`F O: I6 M;‚y««Ô®®Ú77o77o77o77o77o88p88p::q;;r<>u??v@@wAAxAAxAAxAAxAAx@@w@@w@@w>>u>>u>>u< L9• ¹¸ãººæººæººæ¹¹å¹¹ä¸¸âžš±obWO=J7J8H6  &&&998PPOkkj………   ´´´ÄÄÄÌÌÌÎÎÎÊÊÊÀÀÀ³³³¡¡¡ŒŒŒvvvaaaMMM:::*)) KII®¦§ª¤¤¥Ÿž–Ž‚{‹‚z‡~xyr{smvoinigommqnnsqqxvw}„ƒ…imkDEB21-940;83-%":0);3+<4,7-(N81S2(T*T(T&U%T$W$X&Y'Y&X%V%W#X"X!Y#Y" X"Y#Z"["]%^%_&`)b,`*`*a+n>0tLC]Y|YTzUQd81i?7tRMqNIrMGkB:b4*U T S TQ O P P O O O N LK L K Q!R!W%X&k=/mSDcPDVI=QJ@mga‹}‹yKzu=xw?z…cŒ®©·ÉÊÏÐÐÔÓÒÖÔÓÖÔÑÔÐÎÐÐÎÏÏÌÍÐÏÏÐÎί¨gW7I6 I6 I6 I6 I6 I6 I6 I6 I6 M;l_Q“Ÿ¬¬Ó²²Þ²²Þ³³ß´´Ýqe[I6 I6 I6 gJ sR}XlMrQ]D U> i\N¡ž¿®®Úªª×¬¬Ù77o77o77o77o77o88p88p::q;;r<>u@@wAAxAAxAAxAAxAAxAAxAAxAAxAAxAAxAAxAAxAAxAAxAAx==u==u<EA;LF>NH?TLCTMEME=L:3Q3*T*U&U$V%V$W$X'W%V%W%X&W$Y%Z%Z$[$\%\'^'b,c/!c-e2&g6*i<1lA7lA8c4)\*X"X"]+b2'f;2h?7W&SUR SQ O RR N P O O N M MM P S"S#^+v?!–e@zeM_SIXOGbb]ŠŠ„`…xAxyAz€X†¤˜¬ÆÅÌÐÏÔÓÒÖÕÓØØÕÙØÕÙÖÓÖÒÐÓÑÏÑÓÑÒ¾¹³ugLL9L9sg^ކ’pcWO=I6 I6 I6 I6 I6 I6 I6 I6VE&ynj™³œ˜µi[KJ7I6 I6 I6 J6 V? V? hKS< TB!Š›¯¯Û¯¯Ü¬¬Ù««Ø§§Ô::q::q::q<>u>>u??v@@wAAxAAxAAxAAxAAxAAxAAxAAxBByCCzDD{FF|FF|FF}FF}FF}FF}FF}FF}FF|EE{FF|EE{EE{DD{CCzAAx??v@@w;;r;;r99q99q<>u==u==u<>u>>uAAxAAxDD{EE{GG~JJ€NN„RRˆUUŠWWŒZZŽ]]‘]]‘]]‘]]‘]]‘]]‘]]‘__“``”aa•bb–bb–bb–bb–bb–cc—ee˜ffšhh›hh›hh›hh›hh›iiœiiœnn¡nn¡nn¡nn¡nn¡nn¡nn¡qq¤pp¢jjœgg™dd˜ee˜ee˜ffšff˜ee˜h^}:x‰6}Š7}Š6|x@xtnŸtt¦zzª±‚‚²„„´ƒƒ´††¶‡‡·‡‡·‡‡·‡‡·ˆˆ¸ŠŠº‹‹»ŒŒ¼ŒŒ¼ŽŽ¾À‘‘Á‘‘Á‘‘Á‘‘Á““––Å––Å‘‘ÁŠŠ»‰‰¹‰‰¹††·ƒƒ´}}®„„´‰‰¹¾””×—ÆŸŸÎ¥¥Ó¨¨Õªª×¯¯Û¯¯Û¯¯Ü³³Þµµà¶¶á¸¸àœœšš4¨¨<´´K¿¿]ÊÊpÔÔ‚ÝÝ”ãã¢çç®êêµêê¸êê·èè²åå©ááŸÛÛ’ÔÔ„ÍÍuÅÄf¼¼W²±G¨§8œ,‘‘ „ƒifP@J8J7I6 I6 I6 I6 I6 I6 K9i\K˜“¦·¶àººæººæººæººæººæººæ¶µÝkcb  110EEE^^^wxw¦¦¦¶¶¶¿¿¿Â¿¿¿¶¶¶©©©———ƒƒ‚mmlWWWDDD332$$$ \THztn~um~tl{rlwniskeogble_ia]e_Zc_]hfenllurr~|}Ї‰”’”ž ¦¦©£¤¦}~__ZWSLXSLZVOXTMYRJ_WNaWOWPGRG>Q90P*Q%T$U$U$V%U#V#V#W#W"X$X"X#W#['X"[&X#Z%Z%Z'[*V%V#T X&T!U!U"RSS!JP S M T#V"QQ P PP P"Q$S'T&S#U&W)Y. `2'|H1¢yOtbJXNDb^VˆƒƒtŒyExzBz}Q›‰¡À¿ÆÐÏÔÔÒ××ÕÙÚÕÚÜØÜÜØÝÙÖÚÙÕØÖÓÕÆÂ¿…ycM;I6 ZJ,¢ž¸¸¸ä¹¹äººæ­«Ðˆ€ŠbS=L9I6 I6 I6 I6 I6 I6 I6 I6 I6I6 I6 I6 I6 I6 I6 I6 I6 M;tidª©Ò®®Ú¬¬Ù««Ø««Ø¦¦Ô¦¦Ô::q::q::q<>u>>u??v@@wAAxAAxAAxAAxAAxAAxAAxAAxBByCCzDD{FF|FF|FF}FF}FF}FF}FF}FF}FF|EE{FF|EE{FF}EE{DD{CCz@@w@@w;;r<>u<>uAAxCCzCCzEE{DD{FF|FF|HH~KKQQ†WWŒZZŽ\\‘]]‘]]‘]]‘]]‘__“bb–bb–bb–bb–bb–bb–bb–dd˜ee˜gg›gg›gg›gg›gg›hh›jjkkžnn¡nn¡nn¡nn¡nn¡nn¡nn¡ss¥ss¥ss¥ss¥ss¥tt¦vv¨yy«ss¥kkffšgg™ggškj›oV…Ž>‚’?†’@†‘>…‹@q`Žqq¢uu¥xx¨yyª±††¶ˆˆ¸‰‰¹ŠŠ»ŒŒ¼ŒŒ¼ŒŒ¼ŒŒ¼ŽŽ¾¿‘‘Á‘‘Á‘‘Á••Ä––Å––Å––Å––Ř˜Ç››Ê››Ê––Å¿¿¾‹‹»ŠŠºƒƒ´‰‰¹½””Ù™Çˤ¤Òªª×­­Ú²²Þ³³ß´´ßµµà¸¸ã¹¹äªªº’’<££7¯¯E»»VÆÆiÐÐ|ÚÚŽáážææ¬êê´êê¹ëëºêé·çæ±åå©áážÛÛ‘ÓÓ‚ÌÌsÄÃcººT±±E§¦7œ›+‘ ƒƒtsWR M<J7I6 I6 I6 I6 I6 I6 I6 I6 J7]M3Ђв°×ººæººæµµÝ™“§pcWG7 ,,+>>>UUUmml††…›››¬¬¬¶¶¶ººº¸¸¸°°°¢¢¢}}|gggRRR@??///   (* ?6%_VKphbohdmfbjc_f_[e^Zc]Yb\Yda`ljjtrs€}~ŠˆŠ•“•œ›’“–ˆŠŽ„‡‹’—†ˆ‰lkf\YRVRJTPHOJBVNE_VLd[Re]TYPHM;/D%? C J!M!Q!P!R R!O NLKM N R Q Q R R! Q!RT#RP M L U'QY(X)X(X'R!QO O OQ R&W.[4(_6*iB5b:+a8(d6#g8%q<(‘cN—r[kWf\OTLD~|–…–}Q€{F||Mx–·³½ÌÊÏÔÑÕÙÕÙÜ×ÚßÙÜàÚÞßÚÞÝØÜÜ×ÚÔÏÏ—ŒzUDI6 I6 I6 M;pdX™“¨³³Ü··ã··ã¸¸ä¶¶á¡ºzpoVE'I6I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 ^O8™•±­­Ú¯¯Û««Ø««Ø§§Ô¦¦Ô¤¤Ñ¥¥Ó<>u??v??v??vAAxAAxAAxAAxAAxAAxAAxAAxAAxCCzCCzDD{EE{FF}FF}FF}FF}FF}FF}FF}GG~HH~IIKKKKLL‚LL‚LL‚LL‚LL‚LL‚LLKKKKLL‚LLMMƒJJ€JJ€EE{EE{AAxAAx@@wAAxBByDD{DD{CCzCCzAAxBByCCzDD{FF}GG~IIIIJJ€IILLNN„RRˆXX]]‘``”aa•bb–bb–cc—ee˜gg›gg›gg›gg›gg›gg›hh›jjkkžllŸllŸllŸllŸnn¡pp¢pp£ss¥ss¥ss¥ss¥ss¥tt¦xxªxxªxxªyyªyyªyy«{{¬~~¯°{{«ss¤qlœ€N„—F‹šHŽšIŽšH—F‹}S†ur£vv¦uu¦xx¨{{¬¯††¶ŠŠºŒŒ¼ŽŽ¾‘‘Á‘‘Á‘‘Á‘‘Á’’Á““••Ä––Å––Å™™Ç››Ê››Ê››Ê››ÊË¡¡Ï¡¡Ï››Ê››Ê••Ä””ÃÀ¿ˆˆ¸¾¿——ÆžžÌ¢¢Ð¨¨Õ¬¬Ù²²Þ··â··â··ã¹¹ä··×Xžž2««?··PÃÃaÍÍtÖÖˆßß™ää¨çç±êê¹ëë½ëë½êê¹èç²åå¨ààœÚÙŽÒÒÊÊpÂÁ`¸·Q°°D§¦9/’’%……uudc OE K8I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 R@sg^vkdWF'I6 K8TE# &&&887KKKbbbyyxŽŽžžžªªª¯¯¯®®®§§§ššš‰‰‰vvuaaaMMM;;:+++  $$#".%IB7^XRd]Yc]Xb\Xa[Xc]Yc^Zjggurr||ˆ††‰‰Šyz|{~€Ž•’”™““˜§¨­´´¹¢¤¦tutNMFID=F@9F?7RH?ZPEcYOg_Uf_VmbW`NAJ-C H B JK"DA?BB@GM LIKM MJJ M O R RPOM K M NOP R#Z. a:.jD9hA5kC:e:/e<1mC4rE/„N-§uK³•q{hf[N^XPwwq›•ˆ`„{F|{I~†g®§µÌÊÐ×ÔØÙÕÙÜØÜàÚÞàÛÞâÛßàÚÞßÙÜÝר©Ÿ’^M+I6 I6 I6 I6 I6 I6 I6 I6 XH+}tt£ ¾¶¶á´´à³³ß´´à±°Ù“Ž¡WH*I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 P>ƒ{‚®®Ù¬¬Ù««Øªª×©©Ö©©Ö¨¨Õ¥¥Ó¤¤Ñ  Î<>u??v??v??vAAxAAxAAxAAxAAxAAxAAxAAxAAxCCzCCzDD{EE{FF}FF}FF}FF}FF}FF}FF}GG~HH~IIKKKKLL‚LL‚LL‚LL‚LL‚LL‚LLKKKKLL‚LLMMƒJJ€JJ€EE{EE{AAxAAx@@wAAxBByDD{DD{CCzCCzAAxBByCCzDD{FF}GG~IIIIJJ€IILLNN„RRˆXX]]‘``”aa•bb–bb–cc—ee˜gg›gg›gg›gg›gg›gg›hh›jjkkžllŸllŸllŸllŸnn¡pp¢pp£ss¥ss¥ss¥ss¥ss¥tt¦xxªxxªxxªyyªyy«yy«{{¬°°||¬tt¥sd‘•NŒŸO’¡R•¢S–¡R•ŸO’’N‹wk™ww§vv§yy©||¬¯‡‡¶ŠŠº½ŽŽ¾‘‘Á‘‘Á‘‘Á‘‘Á’’Á““••Ä––Å––Å™™Ç››Ê››Ê››Ê››ÊË¡¡Ï¡¡Ï››Ê››Ê••Ä””ÃÀ¿ˆˆ¸¾¿——ÆžžÌ¢¢Ð¨¨Õ¬¬Ù²²Þ··â··â¸¸ã»»ã™™‰——0¥¥8±±H¾¾ZÈÈmÒÒÚÚââ çæ®êê¹ëë¿ììÂëë¿êêºèç²ää§ßßšÙØ‹ÐÐ{ÈÇkÀ¿]¹¹S°°F¦¦9››-#‚‚tteeZZf\AM;I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I7SK,‹s¬«–  //.@@@TTTjjj›››¡¡¡¡¡¡›››€€nnnZZZGGG555&&&  #!!! # 81$QKD_YUa[Xd^Yfa\hc`qnnywwwwvnpp{|Ž’’“–žŸ£²±¶À½ÂÌÈÍÏÌÑÏÌÑ»º¼ƒ…‚NKFH;3C;3?5(G9(YJ9_RD^RBdVFj\PkWJdJ9I)> C HE DE G FEF EH K IJK HJ HFHIIHII M Q!Y+`1#i=/j?2c5&a.c/l<+zI3‘dF²–u°‘s›‡sk^USMFotsœž p~L~~J~‚[†¡•ªÆÅÌÖÒ×ÚÖÚÝØÜßÚÞâÜàãÝàâÛÝâÚÛáÚÛ¼³ªm]>J7M;]N4O=I6 I6 I6 I6 I6 I6 I6 I6 L:dUB‹„«ªÏ´³ß¬«ÑynlM;I6 I6 I6 I6 I6 I6 I6 I6 J7maV¡ŸÀ°°Ý®®Ú¬¬Ù««Øªª×©©Ö©©Ö¨¨Õ¥¥Ó¤¤Ñ  Î<AACCEFL M N O L J HJJK NR X%`-b1j9#j: sB*‹X9•lG”nO•w\‹n\i^tg_c^Wy{v™¢¤Š¡‚T€MU„˜ƒž¿¼ÅÔÑ×ÚÖÛÞØÝáÛßâÜàãÝáãÜààÚÜâÛÜÊÁ»|mRK9J8k^P¥¢¾ººæ¯­Ñ‰‰aR;K8I6 I6 I6 I6 I6 I6 I6 I6 P?gYHVE&I6 I6 I6 I6 I6 I6 I6 I6 I6 VE'‘Œ ®®Ú¬¬Ù««Ø¬¬Ù¬¬Ù««Øªª×§§Ô££Ñ¥¥Ó¡¡Ï¡¡Ï››Ê<2(!& @8,b[TvojqnjomnŒ‰‹ž›­ªª½¸¹ÈÃÃÑËÊØÐÑÝÔÕÞ××àØØàרà×ÙÞרÜÖ×ÏËÌ  Ÿab`HD>@71?3)L:&_M4cS>_NI6 I6 ]N5©¦Å¹¹äººæ¸¸ä¸¸ä··á¢Ÿ¹wlgTC#I6I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 K8ujg¥¤Ê¯¯Û®®Ú®®Ú¬¬Ùªª×©©Ö¨¨Õ§§Ô¤¤Ñ¡¡Ï  Î¡¡ÏËœœË>>u??v??vAAxAAxAAxAAxAAxDD{DD{DD{EE{FF}FF}FF}FF}FF}FF}FF}FF}HH~IIIILLLL‚LL‚LL‚LL‚LL‚LL‚LL‚MMƒMMƒNN„PP…QQ†QQ‡QQ‡QQ‡QQ‡QQ‡RRˆRRˆTT‰VV‹VV‹WWŒWWŒWWŒWWŒWWŒWWŒWWŒWWŒYYŽXXYYŽWWŒVV‹TT‰QQ†OO…LL‚KKLLLL‚MMƒNN„LL‚MMƒMMƒOO…QQ†RRˆRRˆSSˆUUŠSSˆSSˆWWŒ[[aa•ee˜kkžoo¡pp¢pp£pp£qq¤ss¥uu¨vv¨vv¨vv¨vv¨vv¨xxªzz«||®||®||®||®}}®°²‚‚³ƒƒ´ƒƒ´ƒƒ´„„´‰‰·ŒŒºŽŒºŒlš¥Zš­b¢²i§µm©µoª´m©±h¦­c¡¦[›‡g•|«zz©zzª~~®~~®||¬}}®²‰‰¹‘‘Á™™Ç››ÊŸŸÍ¡¡Ï¡¡Ï¡¡Ï¡¡Ï¢¢Ð¦¦Ô¦¦Ô¦¦Ôªª×¬¬Ù¬¬Ù¬¬Ù¬¬Ù¬¬Ù²²Þ²²Þ¬¬Ù¦¦Ô¤¤Ò££Ñ  ÎššÈ››Ê˦¦Ô««×­­Ú´´ß¥¡»xpV…ƒ™˜'¦¥6³²H¿¿\ËËrÖÕ‡ààœæå­êê»ííÅïïËððÌïïÊííÄêêºçæ®ââ¡ÚÚÒÒÊÊnÀÀ]¶µN¬¬?¢¡2—–&Œssgg]] SSMMee:ª¨Ã‡…`P8I7I6 Q?xlL¬¨’ËÎÁÄɾÁÅ»¼Àµ¿Ã¸ÂźÌÎĹ»±„„}LNI  """...<<;KJJXXXbbbjjjmmmkkkdddZZZMMM???000$$$ MLGHHDCEBPNIXTLHHC660.( !& =4#f^R}xr†…¨¢¢¹²³Ä¾½ÎÇÆÖÎÍÛÒÒß×ÖáØØâÙÙâØ×ãÙØãÚÚáØØÝÖרÓÔÒÍϰ®®ttpIF@ID=@6,E6%VE/aQ=hZI]TG]UNib[xrmtqmUQMJ?:F5-K4)N2&V9*V>/U@0\C/_F2iJ5nL1bE.bC-gG0oP9sSlNšcDÆŽ]vZ…ƒ¢’ §‹¥ŽgR…‡c¦š¬ÆÅÊÕÒÖÚÖÚáÛßåÞãèâåèáåæÞâãÚÜÛÒÒ‘WE I6 I6 I6 I6 I6 M;i[J’Œš²±Ù¶¶â¶¶â··ã´´á°¯×‘‹›hZJM:I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 ]N5š–°¯¯Ü¬¬Ù­­Ú««Ø¬¬Ùªª×¨¨Õ¦¦Ô¤¤Ñ¤¤Ñ¡¡Ï¢¢ÐŸŸÎžžÌËššÈ>>u??v??vAAxCCzDD{EE{EE{FF}FF}FF}FF}FF}FF}FF}IIIIIILLLL‚LL‚LL‚LL‚LL‚LL‚LL‚MMƒNN„PP…QQ†QQ‡QQ‡QQ‡QQ‡QQ‡QQ‡RRˆRRˆSSˆUUŠUUŠWWŒWWŒWWŒWWŒWWŒWWŒWWŒYYŽ[[[[\\‘\\‘[[[[YYŽYYŽXXXXWWŒWWŒVV‹UUŠRRˆSSˆRRˆQQ†QQ‡PP…QQ†QQ†QQ†QQ†MMƒPP…QQ†SSˆTT‰VV‹WWŒWWŒWWŒWWŒ[[aa”ffškkžnn¡qq¤ss¥uu¨vv¨xxªyy«yy«yy«yy«{{¬}}®~~¯~~¯°°€€±²‚‚³††¶ˆˆ¸‰‰¸ŠŠ¹‹‹ººŽ„°œ_—«` ²i§·p¬ºu®»w¯ºu¯¶q«²j¦«a ^—…z¥„ƒ²¯®¯‚‚²„„´„„µ‡‡·‹‹»––ÅŸŸÎ¡¡Ï¢¢Ð¦¦Ô¦¦Ô¦¦Ô¦¦Ô§§Ô««Ø¬¬Ù¬¬Ù¯¯Ü²²Þ²²Þ²²Þ²²Þ²²Þ¶¶â¶¶â±±Þªª×©©Ö§§Ô¤¤Ò››Ê››ÊžÊ•‘¯~uy_P6TCidŽœ,ªª<·¶OÄÃdÏÏzÚÚãã¤éè´ììÁïïÊòòÐòòÒññÌîîÅêêºæå­áážÚÙŽÐÐ|ÈÇk¾¾Z´³J©©;Ÿž.””"ˆ‡{zml ``XWPPLLKJNBI6 L9dW5ŒuÁÁ¯ÕÖÉÍÒÈÂǽ¾Ã¹ÁĺÃżÇÉ¿ÍÏÄÀøÂĸÈɾ¬¬¡AA< ###...::9EEDNMMTTTWWWWWWRRRJJJ???333((( &'%AC@?BAADBFHDSQKOMI?B@KLG@@;/-#!  "$(,!=1f[Jˆ€´ª©Ç¾½ÐÈÇÖÎÍÛÒÑßÖÖáØ×âÙ×à×ÖáØ×á××ÞÕÕÜÔÓÚÓÓØÒÓØÑÓÔÏÑ¿¿–”’ee`MIDB;5@5(QA/cTCWMCPD?`VQƒzurnkb^YSG?RD:RC9TE9XE9WE9VC6TB5\F6aH8]D5[C5ZB4[B4bD3[@2`B2]A3_C5aE6bE8bF7cH9cI;fN?mUIyaW„if“ruƒ_wwItwDv{J}…\‰¦•¬¼¹ÂÎÍÒ×ÔØÞÙÞâÝáèãæêäèéãååÞáß××®¢•aP.I6I6 I6 I6 I6 I6 I6 I6 I6 I7TC#wlh¡¸²²Þ´´à±±Þ³³ß®­×ukgI6 I6 I6 I6 I6 I6 I6 I6 I6 I6 N<…}†­¬Ö­­Ú®®Ú¬¬Ù¬¬Ùªª×¨¨Õªª×¨¨Õ§§Ô¤¤Ò¢¢Ð¡¡ÏËœœË™™Ç””ÃÀ::q::q::q??v@@w>>u@@wAAxCCzCCzDD{FF}FF}FF}FF}IIIIIILLLL‚LL‚LL‚LL‚LL‚LL‚LL‚MMƒNN„PP…QQ†QQ‡QQ‡QQ‡QQ‡RRˆRRˆSSˆSSˆSSˆUUŠUUŠWWŒWWŒXXXXXXZZŽZZŽZZŽ[[[[]]‘^^’^^’``”aa•aa•aa•aa”aa”__“``”``”^^’^^’[[VV‹TT‰QQ‡RRˆTT‰VV‹VV‹UUŠVV‹VV‹VV‹TT‰VV‹XXYYŽYYŽ[[\\‘``”cc—hh›kkžpp¢qq¤uu§uu¨xxª{{¬||®||®||®||®}}®°°‚‚³‚‚³ƒƒ´ƒƒ´ƒƒ´††¶ˆˆ¸‹‹º½¾‘½Žoœ§\œ¯e¤¶o«»w°¾|³À~µ¿|´¼x²·q¬±h¦¨_žŽh—Œˆ¶‰‰·††µ„„´ƒƒ³„„´††·ŠŠºŠŠ»‘‘Á——Æ  Î¤¤Ò¦¦Ôªª×¬¬Ù¬¬Ù¬¬Ù®®Ú°°Ý²²Þ²²Þ´´à¶¶â¶¶â¶¶â¶¶â¶¶âººæººæ´´á®®Ú©©Ö¦¦Ô–”·wnvYI1K8M;O=WJ}|’’! Ÿ0®®@»»UÈÇkÓÓ‚ÝÝ˜ææ«ëë½ððÉòòÑóóÕóóÔññÎïïÇìì¼çæ®ààœÙØ‹ÏÏyÆÅg¼¼W²±F¨§7œ›+‘‘ „ƒvvih ]]TSLKJJJIJEaY7œ™€¾À±ÒÑÁ×ÙÍÑÔËÇËÂÂÅ»ÁúÃÅ»ÅǽÃĹÀ¸¿¿µÂøº¹®À¾³¹¸®"" """+++444;;:BBACCCCCC@@@:::111(((   KIEKHD?A==?<;>;;>;@B>:>=8==8>=9??7=<02,'""$(, 0# 4' >/aS:šŽ‚Ⱦ»ÖÌËÚÑÐÜÔÓÞÕÔàÖÕßÕÔßÕÔàÕÔßÕÓÞÕÓßÕÕßרÞÖØÞÖ×ÜÕ×ÚÓÕÖÒÓÉÆÈµ²´››‚~}rjela]hXYcSWbQVcQVdRVbPVbQVbQUeRWgTYiTZjT[hSZlU[lS[nR\oS\oS^qT_rTaqVcpVdrYesXgsWgrWgrVitWkuYnuXovTpsPprMqvNu|T~ˆeŒ›‚ ²¦¸ÉÅÍÑÎÓ×ÓÖÛÖÚäßãîëîðíïîéíëãææÞßÀ¶­p`AJ7K9naT|rp]M3I7I6 I6 I6 I6 I6 I6 I6 I6 K8`Q:†~†¥¢Åš–°cUAI6I6 I6 I6 I6 I6 I6 I6 I6 I6 j]P¤£Ç®®Ú­­Ú®®Ú¬¬Ù¯¯Û­­Ú¬¬Ùªª×§§Ô¦¦Ô¡¡Ï  ÎššÉ˜˜Ç••Ä’’ÁÀŽŽ¾‹‹»::q<>u@@wAAxCCzDD{FF}IIIILLLL‚LL‚LL‚LL‚LL‚LL‚LL‚MMƒNN„PP…QQ†QQ‡QQ‡QQ‡QQ‡QQ‡QQ‡RRˆRRˆSSˆUUŠVV‹WWŒWWŒWWŒWWŒWWŒWWŒWWŒXXZZŽZZŽ\\‘\\‘\\‘\\‘\\‘]]‘^^’^^’``”aa•bb–bb–bb–bb–bb–cc—cc—bb–cc—cc—cc—bb–aa”]]‘[[WWŒWWŒVV‹XX[[\\‘ZZŽZZŽ[[]]‘]]‘__“aa”aa”``”``”cc—gg›nn¡uu§{{¬||®||®}}®~~¯€€±²²²²‚‚³……µ††·††·‡‡¸‡‡¸ˆˆ¸¼¾‘‘¿‘‡±š]–«` ³k¨ºu¯¿}´Â‚·Ãƒ¹Âƒ¸À~µ»w±µnª®d¢¡^™}§º»ŠŠ¹ˆˆ·‡‡·‡‡·‹‹¼‹‹»’’Á••ÄššÈŸŸÍ¦¦Ô««Ø¯¯Ü²²Þ²²Þ²²Þ²²Þ´´á¶¶â¶¶â··ã¹¹äººæººæººæººæººæººæ©§Ëv{[L3K9J7J8L9N<SAb\†…••#£¢3±±E¾¾ZËËpÖÕˆáážèç±îîÃññÍóóÕóó×óóÕññÏïïÇìì¼çç®áážÙØŒÏÎxÄÃdººT°°C¥¤5š™(€sred[ZQPKKKKLLQQuŸžžž¿Ã¶Ó×ÌÇÊÀ¿Â·ÅÆ»ËËÀÇȽÃĸÃùÁÀ·»º°¹·­Á¿´µ´¨‚tVUK %%%+++000222222///***%%% 11.OOJURMHGC<=98956725734744864884865966;98=<695/,*! , 0$ 5' 9* =- B1 ZI)’„qȾ¹ÜÓÒÝÔÓàÖÕßÖÕà×Õá×Õâ×ÖâØ×ãÚÙâÚØáÙÙáÙÚâÙÚáØÚߨÚß×ÚÞ×ÚߨÜÜÖÚÑËÏÁºÀ²¨°¤™¤›‹›˜†™—…˜šˆ›œŠœŸ ¢”£¤—¥¥˜¦¥™¨¬œ©³ ­´ ®µ£°¶¥²¸§³·©´¶«¶²¬¶²­·¶¯¹¸²»·²»¸´¼º¶¿º¶¿½¸Â¾¹Ã¿¼Ä¾ÅÈÄÊÒÎÔÛÖÛàÚßáÙÞàØÜߨÜãÛßåÞáèáãëæçîéëéãåÐÆÀ€pUL9I6 cU>Ÿš²¹¹äººæ··áž™¯sf]Q@I6 I6 I6 I6 I6 I6 I6 I6 I6 L9K8I6 I6 I6 I6 I6 I6 I6 I6 I6 YI.Žˆš¯¯Û¬¬Ù®®Ú¯¯Ü®®Ú­­Úªª×©©Ö¤¤Ò¤¤Ò¡¡ÏËššÈ˜˜Ç••Ä””Ñ‘Á¿ŒŒ¼ŠŠ»ŠŠ»77n77o77o<>u>>u??v??vAAxEE{EE{EE{FF}FF}HH~IILLLL‚LL‚NN„PP…PP…QQ†QQ‡QQ‡RRˆRRˆSSˆUUŠUUŠUUŠVV‹VV‹VV‹WWŒWWŒXXZZŽ[[\\‘\\‘\\‘\\‘\\‘]]‘]]‘]]‘__“__“aa•aa•aa•aa•bb–cc—cc—ee˜ee˜ffšffšffšff™ff™ff™ff™ffšff™bb–aa•]]‘]]‘ZZŽZZŽYYŽ[[[[\\‘]]‘[[[[ZZŽ\\‘^^’aa”cc—ff™ffšhh›hh›oo¡tt¦||®~~¯²²‚‚³……µ††·††·††·††·‡‡·ŠŠº‹‹¼ŒŒ¼¼ŽŽ½‘‘¿•’¿Žkš¥Zš¯e£·p¬¾{³Âƒ¸Å†»Æˆ¼Åˆ»Ã„¹¿}µ¹s®²i¦ª_ž—e™–º’’¿¼ŽŽ¼ŒŒ»ŠŠ¹ŠŠºŒŒ¼’’Á””Ö–Å››Ê¡¡Ïªª×¯¯Ü´´à¶¶â¶¶â¶¶â¶¶â¸¸ä¹¹åººæººæººæººæººæ¯®ÒŠ‚Šj\LM:I6 I6 I6 J7K8M:O<TFpnˆ‡—–%¥¤5³²HÀÀ]ÍÍuÙØŒââ¢éèµííÃññÏóó×óóØóóÖññÏïïÇëë»çç­ááÙÙÐÐzÅÅgº¹R®®A£¢3˜—&Œ‹~}po ccXXQPMMMMMMNNŒ‹^ÃÀ®ª¦–}|pswlšž“ÀøÐÐÅÊʿøÅĺ¾½´¼º°À¿µ¿½²˜—ŠXWMFE>FD=B<6  !!!!!!"!! >>7AB>FGDBCA=?=9;956245045003..2./20-1.,1,/424869><=@;:7*4*5' 9* =- A0 D2 F3 R?€pW½±§ßÔÔà×Õâ××ãØ×ãÙ×áØÕãÚØãÛÙäÛÚäÛÙãÚÚãÙÙãÚÛãÙÚãÚÚãÚÛåÜÞæÞáåÝáãÜßâÙÝàÙÝߨÝߨÜàÙÝáÚÞáÙÝâÙÞãÚßãÛßãÛßáÚßâÚßãÜàâÚßâÛßàÙÝàÙÝߨÜߨÝߨÜߨÛÞØÛÞÙÜÝØÜÜÖÙÝÖÙÜ×ÚÜÖÚÜ×ÛÝ×ÛÝØÛáÙÝäÜàæÝàåÝàäÜßäÜßåÝàæÞâçßâèáãçßáÛÒÑ’…oQ?I6 I6 I7xmg©§Æººæ¹¹ä¸¸ä¸¸ä··ã«©ÎˆŠaR;J7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 K8ynm«ªÓ²²Þ±±Þ±±Þ¯¯Û««Øªª×©©Ö¦¦Ô¤¤Ñ  ÎžžÌššÈ™™Ç˜˜Ç••Ä’’Á¿À¾ŽŽ¾‹‹»ŠŠ»44l55m55m77o::q::q</A0 D2 F3 G5 H5 J8kY9§˜ˆ×ÌÇãÙØåÚÚäÚÚäÚÚäÚÙäÛÚåÛÚåÚÙåÛÚåÛÚåÛÚåÜÚåÛÚæÝÜçÝÝæÝßçßáçàâèàãèáäéáäêãæêãåêâåêâåéâåêâåéâäéâäèàãèßãçßâæÞàæÝáäÜßäÛÝãÛÝáÚÜãÛÞãÚÞáÚÝàÙÜàÙÛÞØÚÞØÚÞ×ÚÞ×ÚÝ×ÚáÚÞäÜàäÝàäÜàãÜßåÝàåÝßäÝàåÞàæàááÙÙ¤˜‡XF!I6 I6 I6 I6 I6 I6 L:gZG‘‹š¯®Õ¶¶â´´á´´á´´à³²ÝŸ›·wlhR@I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 bT?Ÿœ¸²²Þ¯¯Ü¯¯Ü®®Úªª×§§Ô¦¦Ô££Ñ¡¡ÏœœËË››Ê››Ê••Ä••Ä••Ä‘‘Á’’Á¾½¾ŽŽ¾ŠŠ»ŠŠº55m55m55m77n88p77o99q77o<>u@@wAAxBByCCzDD{FF}FF}FF}IIIIKKMMƒQQ†QQ†SSˆVV‹VV‹WWŒWWŒWWŒWWŒWWŒXXZZŽ[[\\‘\\‘\\‘\\‘UX‹[\‘]]‘__“__“``”aa•aa•bb–bb–bb–cc—cc—cc—dd˜gg›hh›hh›hh›iiœiiœiiœiiœkkžmm nn¡oo¡pp¢pp£pp£pp£pp¢pp¢pp¢oo¡pp¢pp¢kkžffšcc—aa•aa•bb–dd˜ee˜ff™ee˜ee˜gg›hh›iiœkkžkkžllŸnn¡pp£yy«||®……¶ŠŠºŠŠº‹‹»ŒŒ¼¿‘‘À‘‘Á’’Á””Õ•Ù”ÁŽa“¢U—¬a¡µnª¾z³Ã…¹ÈŒ¾Ë‘ÂÌ’ÃË‘ÂɿĆ»¿}µ¸s­±g¦¨[œšY” ‘º¬¬Ö¤¤Ð™™Ç——Å——Å””ÂÀÀ••Ę˜Ç™™ÇœœË¤¤Ñªª×´´à¹¹å¹¹åººæººæ¸¸ã“Œ›l_PRAI6 I6 I6 I6 I6 I6 I6 I6 J7J8L9N<]N-^\yyЉ™˜'¨§7µ´KÃÂbÏÏzÛÛ’ää§êê¹ïïÈòòÒôôÖôôÖòòÔððÍííÃêê¸ææªßßš×׈ÍÍsÂÁ`¶µM««= Ÿ0••%ŠŠ}}ppcc WW OOMMMMMMMMRR¶µ˜Å¯ÅÀ®Å¿­Ä¿¬»´¢—€fbYcbY‰Š´²ª®«¡a]QIF?IF?cYQ•Š} ˜ˆŸ–…‹{[ZP 2-$>0.G/77)*8.*A5,&%+."*++( >,26&) /.")(%((-#-5&LN@YXNTVMPSGUK3J:F4 G5 H5 H6 I6 I6 YG"}fȼ´àÖÔãÙØäÛÚåÛÚæÜÛåÜÛæÜÛæÜÛåÛÛåÜÚåÜÛæÞÝæÝÝæÝÝæÝÞçÞàçÞßèßáéáâêââêâãêâãéàãèáâèàâèáãèàâæÝàåÜßåÜÞåÜÝãÚÛáØØàÙÙâÚÚáÙÚáØÚàÙÚÝרÝÖØÛÖ×ÚÕ×ÛÕÖÜÖ×Þ×ÙÞØÚàÙÛãÛÞáÚÝâÛÞáÛÝãÜÞäÜÞåÝßæß൫ŸeT3I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 UE%xnj œ¹³²Þ´´à²²Þ±±Þ©§ÌgYJI6 I6 I6 I6 I6 I6 I6 I6 I6 I6 O=Ђޝ¯Ø­­Ú­­Úªª×ªª×¥¥Ó¤¤Ñ  Î¡¡Ï¡¡ÏžžÌ™™Ç˜˜ÇššÈ••Ä““Â’’Á••Ä””Ñ‘Á¾½‹‹»ŠŠº‡‡·……µ77o77n77n77n77o77o88p77o99q88p99q<>u??vAAxDD{DD{FF}KKLLKKLL‚MMƒMMƒQQ†QQ‡QQ‡VV‹WWŒWWŒZZŽ[[[[\\‘\\‘\\‘]]‘^^‘^_“FNv^`“bb•bb•aa•aa•bb–bb–dd˜ee˜ee˜ffšgg›gg›gg›hh›hh›hh›iiœkkžnn¡nn¡nn¡nn¡nn¡oo¡pp¢pp£ss¥ss¥tt¦uu§uu¨uu§tt¦tt¦uu§ss¥qq¤qq¤oo¡llŸhh›ffšffšhh›hh›iiœiiœhh›hh›iiœkkžnn¡pp¢pp¢qq¤pp£vv¨²²ŠŠ»¾À’’Á——Å——Ř˜Æš™Æv¢šO§X›°f¤¹s®À·ÆŠ¼Ë‘ÂΕÄÏ—ÅΕÄË’ÂÇ‹¾Â‚¸¼w±´l©¬_ ¢T—”a•­¦Ï³³Þ¯¯Ú¤¤Ð››ÈššÈ˜˜Æ••Ä••Ä––ÅššÈËŸŸÍ¥¥Ó©©Ö²²Þ¯®Ö—‘£wlfP>I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 K9\L1~tt º““šii{{ŠŠ™˜(¨§8µ´LÃÂbÐÐzÛÛ“åå¨êêºïïÉòòÓôôÖôôÖòòÔððËììÀèè³äã¥ÝÝ”ÓÓÊÊnÀÀ\¶µL­¬>¢¢2——&‰ˆ||mm`` UUNNMMMMMMMMMM›™sÃÀ®Ã¾­Ã¾­Â½«¿¹¦»´¢µ®œ™f_VPMFQPFB@:SKEvk›“„˜€ˆylj^PLEe\WŒƒ}urm**( <7-96'0-!(&'$0%%-""5.!,) )+>+$L07I-8#  &#(!!"16 _ZG}r]~h¸§‰Æ´•¥‘n\K&J7H6 I6 I6 I6 I6 L:saC¬žÖËÇàÕÔäÚÙæÜÛæÝÝåÜÜæÜÜæÞÜæÞÝæÞÞæÝÞçÞÞçÝßçßßèßàéààéàáéàáéááêááéáâéàáèßßèßàçÞßæÞßåÜÞäÛÜâÚÛàÙÙáØØâÙÚãÚÛߨØß××Þ××ÝÖ×ÝÖØÛÕ×ÚÔÕÚÓÔÜÕ×Þ×ÙߨÚáÙÚâÙÚâÚÛäÜÞäÝÞåÞßåÝÞú²rbDJ7J8gZH‚y|hYGM;I6 I6 I6 I6 I6 I6 I6 I6 I6 J7aR=ˆŒŸœ¼†~‰SB!I6 I6 I6 I6 I6 I6 I6 I6 I6 K8m`U§¦Ì««Øªª×ªª×¦¦Ô¦¦Ô§§Ô¦¦Ô¡¡ÏËŸŸÎŸŸÎ™™ÇššÉ™™Ç˜˜Ç˜˜Ç••Ä““‘‘ÁÀ¾ŒŒ¼ŠŠ»‰‰¹††·‚‚³€€±::q::q::q::q;;r::q<>u>>u@@wAAxBByEE{FF}FF}GG~JJ€KKMMƒPP…PP…QQ‡SSˆVV‹WWŒXX[[]]‘^^‘^^‘``“aa”[^-;YX\Œcc–dd—ee˜ff˜ggšffšffšffšffšgg›iiœiiœjjkkžllŸllŸllŸnn¡nn¡nn¡nn¡pp£ss¥ss¥ss¥tt¦tt¦tt¦uu¨vv¨xxªyy«zz«{{¬{{¬zz«zz«{{¬yy«xxªww©uu§ss¥nn¡kkžkkžmm nn¡nn¡mm llŸnn¡nn¡pp¢ss¥tt¦uu§ww©ww©||®††·ŽŽ¾‘‘Á––Ä™™ÇÉ™¼ŽR‹ŸP“ª]³k¨¼x²Ã„ºÉÀΕÄÑšÇÒ›ÈÑšÇΕÄÊÁĆ»¾|´·p«¯d£¦WšœO‘•t¡µ²Ü··á¶¶á­­Ù¢¢ÐœœÊ››ÊššÉ™™Ç˜˜ÇššÈ››ÊššÉŒˆ¤nc]RAX@ iKuTP: I6 I6 I6 I6 I6 I6 I6 I6 J7tiaŸ›³··ß»»æ¸¸á~~ell||"œ›-©¨:µ´LÃÂbÐÐzÛÛ’åå¨êêºïïÉòòÒòòÖôôÖòòÓïïÊìì¿èç±ãã£ÛÛ‘ÒÒÊÊnÀÀ]¶¶L¬¬>¡¡1••%‡‡yykk ]] TTMMMMMMLLLLMM~O»¸§»·¨¹µ¤·²¡¶° ´®œ±ª™­¤“¤›ŠŠ€r`YPl`X”Š}”Œ~‡wtqdPNFIE>qhb–‘‹™’ª¤œ¨¤}xDB? )'$MIC[VNWMDZOFLA45)  "%?9(MC3D:,4,*" 5-%A8*7-!!=4.B544-'@92I@?A>8FG;TN:xiN°|¦“t­Ÿ€ˆjsnXxfAQ>I6 I6 I6 I6 I6 J7^M)‘lÈ»³ÚÎÌßÕÓâ×ÖåÛÙäÛÙäÛÚäÚÛåÛÛæÜÜçÞÞçßßèßßèààéááéááéááêâãéâãéááèàßéààèßàçÞßäÛÚãÚÙáÙØâÙØâÛÙâÚÙâÚÙáØØà××Þ×ÖÝÖÕÝÖÖÜÕÖÞÖ×ÝÕÖÞרߨÙàØÙâÚÛäÚÛäÛÜæÞÞæÞßÔËÇ„u\N;I6 \K1–¢¸¸ãººæ¸¸ã¦£Á~tsUD%I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 K8I6I6 I6 I6 I6 I6 I6 I6 I6 I6 XH+‹¡¬¬Ù¨¨Õ§§Ôªª×ªª×££Ñ¥¥Ó££Ñ¡¡ÏŸŸÎ  ÎËžžÌ››ÊššÉ——Æ••Ä””Ã’’Á¿½ŠŠ»ŠŠº‡‡·††·‚‚³²€€±}}®;;r<>u>>u==u==u>>u>>u>>u??v??v??v@@wBByCCzEE{HH~JJ€LLNN„OO…PP…QQ†RRˆSSˆVV‹XXŒYY[[Ž]]‘^^‘bb–RY†4NLT~dd˜ee™ee˜ff˜hh›hh›ii›iiœiiœiiœjjjjjjllŸnn¡nn¡pp¢pp£pp£pp£pp£qq¤ss¥ss¥tt¦vv¨vv¨vv¨ww©ww©xxªyy«{{­}}®}}®}}®~~¯}}®||®||®°}}®||®zz«uu§ss¥pp¢nn¡nn¡rr¤ss¥tt¦rr¤qq¤tt¦uu¨xxªzz«zz«||­€€°„„µŒŒ¼””žžÊžšÈˆc“—IŒ£T—®b¢¶q¬¿}µÆŠ½Ì“ÃÑšÈÓžÊÓ ËÓžÊЙÇÌ“ÄÇŠ¾Â€·ºu¯²h¦©\ P“”LŒŸ‹µ¹¸âººä»»å¸¸ã­­Ù¡¡ÏË››Ê˜˜Æ…œk`]P>I6 I6 P: §vbF€[€[‚]jL I6 I6 I6 I6 I6 I6 J7sh_¦£¿»ºå»»æ¸¸Ûii4kk{{ŒŒ!œœ.ªª>··QÃÃdÏÏyÛÛ‘ää§êê¹ïïÇññÑòòÕòòÕññÑïïÉëë½çç¯ãâ¡ÛÛÓÓÊÊmÀÀ[µµK©©;ž.’’#……wwii [[ QQLLLLLLLLLLLLih1¯­œ®¬¯ª›®©™«¦–©¤”§¢’¤œŽ ˜ˆœ”„–Ž}’ˆyˆz„~qVUJB>8IB=slfŽŠ„™•Ž –¢—¢œ”¡š“¢œ”—‘ŠzvpYUP<:6$#   #".,(>;6OKE[VM\XIVQ@JA1TK=PE7IA0TC=K;:E;/40*'=9!OI2PH32-/*@0$L8.6#4*"OA8gSQ[GB\JBgPOFA1MJ1šŒlÅ´ÖÞ•…m€{hŠ„rÀ¯Â±‹{ZTE!I7I6 I6 I6 I6 I6 N;ziL´¦—ÒÆ¿ÖÉÂØÍÈÛÑÎÝÓÐßÕÔãÚØæÝÝçÞÞèÞßèààéàáêââêââêããêââêáâéááéáàéááçÞÞåÜÜåÜÛãÚØãÚÚãÜÛäÜÛãÛÚâÚÚáÙÙáÙØßØ×àØÙßÙÙáÙÛäÜÝãÛÜäÜÝçÞàçÞßèßáéááÞÕÒ–‰tP>I6 I6 I7~ts®¬Ï¹¹ä¹¹äººæ··ã··ã³²Ü“Ÿi[LN;I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 M;ypqª©Ô««Ø««Ø§§Ô©©Ö¦¦Ô¦¦Ô¥¥Ó¨¨Õ££Ñ¡¡Ï  ÎŸŸÍ››ÊœœËššÉ™™Ç’’ÁÀ¾½ŠŠºˆˆ¸……µ……µ……µ……µ²°~~¯||®@@wAAxAAxAAxAAx@@wAAx@@wAAxAAxAAx@@w@@w@@w@@w@@wCCzAAxAAxAAxDD{DD{DD{EE{EE{FF|GG~KKKKLLPP…QQ†SSˆSSˆVVŠVV‹XXYYŽ^_’@Lq:U:Ikcd˜ee™gg›gg›iiœii›jjœkkjjllŸnn¡nn¡nn¡nn¡pp¢pp¢pp¢qq¤tt¦uu§uu§vv¨vv¨vv¨xxªxxªxxªxxª{{¬}}®}}®}}®~~¯~~¯°€€±‚‚³ƒƒ´„„´……µ……µ……µ„„´……µƒƒ´„„´²||®zz«uu¨tt¦uu¨uu¨ww©zz«xxªxxªyy«zz«||­€€±±ƒƒ´ˆˆ·‘¾‰u¢ŽD…œK§Z›²h¥ºv°Ãƒ¹ÊÁИÆÓŸËÕ£ÍÕ¤ÎÔ¢ÍÒÊΗÆÉŽÀă¹½y±´l©¬` £T—™HO‰¬ Ê½¼ç¼¼ç»»æ»»æµµß™•²rhhWH.I6 I6 I6 I6 I6 I6 N9 nN¤tlMnOxVI6 I6 I6 I6 I6 I6 I6 I6 N<obV¢Ÿ·­¬Ä]]kkzzŒŒ ››-©©=··PÅÅfÑÑ|ÛÛ‘ãã¥éé¶ííÄññÎòòÓòòÔññÏîîÇëë½èè°ãã¢ÛÛÒÒ}ÈÈj¾½Y³²H¦¦9››,!ƒ‚ttff ZZPPLLLLLLMMMMMMYY£¡¦£–¦¢“¥Ÿ‘£Ž š‹ž—‰™’„–’‰{Ž…wŠ‚s†~p{mibWOG?ng`‰…~‘‡–“™”Žž˜‘¡š“£–¡š’œ–Ž˜’Š}xnUPGC<4KB9`WOgaYe_Wb]Ua[S`[S_[S_[S_[S_ZRPJ=NH7OH9LE7UJ?RD6\PKXGDOE2=:988582>4 4,J,&U4,Y:4M&5'% <0+F:3bOCjQGJB.RQ@Z[NzwdØÉ¦ß̨ØÂ¢Á¯”°£Œ‰Š|¡žž—ˆsr`XQ4J9I6 I6 I6 I6 I6 K8iW5¤”~ÕÆ½ÙÌÅÕÇÁÓÇÁÔÉÅÙÎÌÞÔÓâØ×åÛÚçÞÝèààêââêââêãäìãäëããêââéââèàßæÞÝæÝÜæÝÜåÝÝæÞßæÞÞæÞÞäÜÜåÜÜåÜÜäÜÛåÝÞåÝÝçÞßéáäéâäéâãêãäëäåæßß©\J&I6 I6 I6 I6 I6 I6 P?pdZ›–­±±Ü³³ß´´á³³ß²²Þ³³ß¥¢ÃuxWG)I6 I6 I6 I6 dHjLjL M8 I6 I6 I6 I6 I6 eWFš–³ªª×¬¬Ùªª×««Øªª×««Ø¨¨Õ©©Ö¦¦Ô¢¢Ð¡¡Ï  ÎË™™Ç——Æ””ÿ¿ŒŒ¼ŠŠ»ŠŠºŠŠº‡‡·……¶„„´‚‚³€€±²~~¯~~¯~~¯~~¯EE{DD{DD{CCzDD{BByFF|EE{FF}FF}FF}FF|FF|EE{EE{FF}FF}FF}EE{FF}FF}FF|FF}GG~FF}FF}FF}JJ€IIHH~LLMMNNƒQQ…SS‰UUŠYYYYY\Ž0DdA_,B`^a’dd—ff™gg™iiœjjkkllžllžnn¡nn¡pp¢pp¢qq¤ss¥tt¦tt¦tt¦uu§uu§uu§xxªyy«zz«zz«||®||®||®}}®}}®}}®°‚‚³‚‚³‚‚³ƒƒ´ƒƒ´„„´……¶‡‡·ˆˆ¸‰‰¹ŠŠ»ŠŠ»ŠŠ»ŠŠºŠŠ»‰‰¹ŠŠºˆˆ¸²°zz«ww©||®{{¬}}®}}®~~®~~¯€€°‚‚²‡‡¶‹Šº‰­G€•Cˆ¡P”«_Ÿµnª¿|´Æ‰½Í•ÄÒžÊÕ¤Î×§ÏרÐÖ¥ÎÔ¡ÌÑ›ÈË‘ÃŇ»¿|´·o«®c¢¦W™œJ’@†ŠY´®Ø¼¼ç«¨Æ„|]M3J7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 L8 O: J7 I6 I6 I6 I6 I6 I6 I6 I6 I6 J7J8M:bY5YY iixx‰‰™™,¨¨;µµNÃÃbÏÏyÚÚââ¢èç³ììÁððËññÑòñÑññÍïïÆìì»çç­ââŸÙÚŒÐÑ{ÆÆh¼»V±±E¥¥7™™*ŒŒ€qqcc WWOOLLLLLLMLMMMMQQ˜”~žšŒœ˜Š›–ˆ™”‡–‘„“Žˆ{‰ƒv€|p„}qzn{ui{ti|vj}vkyrgd\Qnh`…€w–‘‰›”‹ž–Œ¢›‘¤œ”‰€e_TOH>UKBlaVvoeojajd\faYd_Wb]Ua\T`[T`[T`[T`[T]XNZPERB8H9,LB5VK@XK>ND2?<@= FB$C=&2&+:1)F3)I/N+"J#!,")"$#"# %92$A<.OM@feXln]³¬ßϪåÒ¬áÍ«ÒÀ¥·¬›µ¯¢¨©¢Œ‹˜šuƒ†Z\ML?I6 I6 I6 I6 I6 I6 UBŒz_ɸ©æÕÍåÕËßÐÈÜÎÆÛÎÈÜÏÉÞÒÍßÔÐâØÖãÙ׿ÜÛçÞÞéßÞéáàéááéááèààèààèßàèàáçàáçàáçàáçàáçßáçßáçàâèáãèâäèáãèáäçààçßÞçßß¹®¢fU4I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I7[L1ƒ{€§¥Ç³³ß³³ß³³ß³³ß²±Ý‘ŒŸK9I6 I6 I6 |XrR\|YeI I6 I6 Q?Šƒ‘¯¯Û¬¬Ù¬¬Ù¯¯Û¬¬Ùªª×©©Ö§§Ô¥¥Ó¡¡ÏŸŸÍœœËššÈ––Å””Ñ‘Á““¿¿½ŠŠ»ŒŒ¼††·……µ……µ……µ……µƒƒ´ƒƒ´‚‚³~~¯}}®{{¬{{¬JJ€IIKKJJ€JJ€HH~JJ€GG~GG~HH~IIHH~JJ€IIIIIIIIIIHH~IIHH~FF}HH~GG~KKKKJJ€LLKKLLMMMMMMƒMMƒPP…QQ†SSˆTUŠPV„)Ed#Ih&FcSY…bb•bb–cc—dd—hh›hhœkkžkkoo¡pp¢pp¢pp£qq¤tt¦uu§uu§vv¨xxªyy«yy«yy«zz«zz«{{¬}}®~~¯°²²²‚‚³‚‚³‚‚³……µ††·‡‡·‡‡·‰‰¹‰‰¹‰‰¹ŠŠ»ŒŒ¼ŽŽ¾¿ÀÀÀÀ¿¿‘‘Á¾‰‰¹††·²°€€±€€±††¶‡‡¶……µ‡‡¶Š…µ|S…Ž=‚™H¥V˜¯e¤¹t¯Âƒ¹ÊÂÑšÈÕ£ÍØ©ÐÙ«ÒÙ«ÒØ©ÑÕ¤ÎÒžÊÍ”ÄÇŠ½Á¶¹r®°f¤¨ZœžM‘”A‡‰9}xQpgTAN;L9J8J7J7I6 I6 I6 I6 I6 I6 I6 J7O>M;I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 J7J8L9LB VUdc uu‡‡——)¥¥8³³I¿¿[ËÊpÕÕ†ààœçç®ìì¾ððÉññÎññÎððÊîîÃëë¸ææªàà›×؈ÏÏwÄÄdººR®®B¢¢3––'‰‰|{nnaa VVNNLLLLKKKKLKLLNN ‰‡n“‚‘€’Ž‹~Œ‡{„€t}q{p|wkrnetpevpeoj`mi_upf{vlynxpge]Rh`U„~s–Œ¥Ÿ–wj[RGcUK}pe‰‚w‚|rytjqldlg_hc[e`Yc^Wb]Va\V`\Va\V`\U_ZS[KD_NH[LEXOAJA+A@"@<O>.VE7]NA^PEZ1-V/)J-'9*D8'[ABU;<@,(-+10(8naU”¥«ªÓ£¡Ãoc[L9I6 I6 I6 I6 I6 M9 N9 jL eI J7ocZ«ªÐ°°Ý¯¯Û­­Ú¬¬Ù««Ø¦¦Ô¦¦Ô¢¢ÐŸŸÎË™™Ç˜˜Ç™™Ç——Æ““““¾¿ŽŽ¾ŠŠ»‹‹»ŒŒ¼ŠŠ»ŠŠº††·††·ƒƒ´ƒƒ´²€€±€€±~~¯{{¬yy«zz«LL‚MMƒOO…OO…QQ‡QQ†QQ†OO…PP…NN„PP…NN„PP…MMƒMMƒMMƒMMƒMMƒOO…OO…NN„NN„NN„LL‚QQ†PP…MMƒMMƒMMƒNNƒPP…QQ†QQ†RR†QQ†SS‡SS‡TTˆDOv*No*Pq*OoCPu\\``“bb•cc–ee˜gg™hhœhhœjjœkknn¡pp£tt¦uu§vv¨vv¨xxªzz«zz«{{¬}}®~~¯°²²²‚‚³‚‚³ƒƒ´……µ††·‡‡·‰‰¹‰‰¹‰‰¹‰‰¹ŠŠ»‹‹»ŒŒ¼¾¿ÀÀÀ’’Á””Õ•Ä——Ƙ˜Ç˜˜Ç——Æ––Å——Æ––Ř˜Ç••Ä½ŽŽ¾‰‰¹ˆˆ¸‹‹º¼f•†;|”B‡ŸO’ª^ž´l©¾|³Æ‰½Î–ÅÔ¡ÌØ©ÑÛ®ÔܰÕܯÕÚ¬Ó×§ÏÓ ÌÏ—ÆÉŒ¿Â·ºt¯±i¦¨[œžM“@„‡4wx+eV40N:L9K8J8J7I6 I6 I6 I6 I6TC%nd`‰¤ŸžÊžœÄ}u~WG+I6 I6 I6 I6 I6 I6 I6 I6 I6 J7J8L9LC TSaapo €‘"Ÿž/¬¬>º¹RÇÆiÓÒßߘçç¬ëëºîîÄðñÊðñÊïïÇíí¿éé´ää¦ÞÞ—ÕÕ„ÍÍrÂÂa··O¬¬?ŸŸ0”“$†…wvjj ^^ SSLLKKKKLKLLLLLLLL}{`‡ƒx…‚w…v„€u‚}r~yoxtjtpfvqfmi`gd\b`Xie\lg^jf]nja{uk…t†zŠ‚vtj^f]QnfYi[P‡zlž•ˆ˜’‡‰…€w{wntognjcif_fc\d`Yb^Xb^Xa]W`\Va\U_ZR]SM^ON_SSYJBWP>IE+?HK?DF:87+# %(E='xsRvv\xyk„os^lcRnfUYOFD<832<,-8,*0'$#.-';:,E<"H8I6 I6 I6 I6 I6 I6 \I$™‡nÓµëÙÑëÚÒêÛÓéÛÓéÛÓêÞÖëÝÕëÞÕìÞÕëÞÕëÝÕêÜÔéÝÔèÛÔæÚÓåØÑåØÒåØÑã×Ñâ×ÐäÙÒäÙÑåÛÓåÛÔæÛÕÒÆ»ƒsWL9I6 XG)އ’¶¶à·¶àš•ªnbVO=I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6RAO=I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 [L2™”¯±±Þ¯¯Û««Øªª×ªª×¦¦Ô¤¤Ñ¡¡ÏŸŸÎŸŸÍ››ÊœœË››Ê˜˜Ç““••Ä““ÂÀ““ÂÀ¾ŒŒ¼ŠŠºŠŠº‡‡·……µ……µ……µ²€€±°~~¯}}®{{¬yy«yy«vv¨PP…PP…PP…PP…QQ‡QQ‡QQ‡QQ‡RRˆQQ†SSˆRRˆRRˆRRˆTT‰SSˆRRˆQQ‡RRˆPP…OO…QQ‡QQ‡QQ†TT‰TT‰QQ‡QQ†RR‡RR‡SSˆRRˆTT‰TT‰TT‰UUŠUUŠWY‹z<ƒšI¤V˜¯e¤ºt¯Ãƒ¸Ë‘ÂÒÊרÐÛ®Ôݲ×Þ³×ݲ×Û®ÔØ©ÑÔ¢ÍϘÇÉÀ¸ºu­°g¢¦Y–LŒ“@ƒ‰5y+ni&UQ5$M:K8J8J7I6 I6 O=rf\—’¦¨§Ð¦¦Ô¥¥Ó¦¦Ô¦¦Ô©©Ö¨§Ð‡€Œ[K1J7I6 I6 I6 I6 I6 I6 J7J7L9KC RQ]]lk {zŒ›š)©¨:¸·OÆÆfÒÒ|ÜÜ’ää¤éé³ìì¾îîÄîîÅííÂëëºçç¯ââ¢ÝÝ’ÔÔ€ÊÊn¿À\µµLªª<œ-!‚‚ssff ZZPOLKLKKJKJKJKKKKKKspV}yn|xmzvlxtjwsiuqgqmccb[jg_he\b`XZZSWWRYYSie\ojankbtrh|xo€|r†|ž–ˆ‘†y¦ª¢•¦Ÿ‘–‹’ƒˆƒ{~zruqiplelhbhd^eb\c`Yb^Xa]Va]Va]Va\Ua\U`[U`[U`XT[RFYOEXOFLC4S@>_OQ_[Xa^Z_XRb^Y`ZTMG38801L>L> NF,SO5E@+5:18<8<>=;::3-++ ) +%,62.!&$%) 22-FIJ/%"*"/+*.&%)! %! &$$)*&0(@1H6 I6 I6 I6 I6 I6 P=}kL¿®œæÖÎêÜÓìÞÖëÞÕêÜÕëÞÖëÞÖìÝÕìÞÖìÞÖêÜÕëÜÕëÝÖéÜÖéÛÕéÛÔëÜÖëÞ×ïáÚïáÙïâÛä×Í›ŠrTBI6 I6 gZH±¯Õººæººæººæººæ¹¸ã«¨Ê„{ZJ.J7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 K9|su««Ô¬¬Ù««Ø¨¨Õ§§Ô¦¦Ô§§Ô¡¡ÏŸŸÍŸŸÎŸŸÎœœË˜˜Ç››Ê››Ê˜˜Ç••Ä••Ä““‘‘Á¿ŽŽ¾ŒŒ¼ŠŠ»ŠŠº‰‰¹††·……µƒƒ´‚‚³€€±€€±°||®zz«uu¨tt¦tt¦rr¤UUŠUUŠVV‹VV‹VV‹VV‹VV‹VV‹VV‹UUŠWWŒWWŒWWŒWWŒXXYYŽXXWWŒXXWWŒYYŽYYŽXXXXWWŒWWŒVV‹VV‹WW‹XXŒXXYYYYXXŒZZŽ[[\\V[‡:Yx7_€7`€6_€9ZzT[…^^‘__‘\\^^’^^’``“``“cc—ee˜hh›kkžkkžnn¡pp£qq¤uu§uu¨vv¨{{¬}}®€€±‚‚³‚‚³……µ……µ††·‡‡·ŠŠºŠŠ»ŒŒ¼ŽŽ¾ŽŽ¾ŽŽ¾¾¿À““””Õ•Ä••Ä••Ä––Å––Ř˜Ç››Ê››Ê››ÊËËŸŸÍ¡¡Ï££Ñ¤¤Ò¥¥Ó¥¥Ó¦¦Ô¦¦Ô¥¥Ò¦¦Ò ™Æ~M‚‹9•Cˆ P”«_Ÿµmª¿}µÈ‹¾Ð™ÇÖ¥ÏÛ­ÔÞ³×ßµÙß¶ÙÞ´ØÜ±ÖÙªÑÔ¢ÍИÅÇŒ¼À²·rª°e §Y—L“AƒŠ6y€+ou#d[#DO7L9J8J7I6 I6 aR;¨¥Ãººæººæ¸¸ä²²Þ®®Ú®®Ú®®Ú¯¯Û¯¯Û°°Ú“aT>J7I6 I6 I6 I6 I6 J7L9KC PO[Zhg ww‰ˆ™™(¨¨9¶¶KÁÁ_ÍÍtØØ‰áá›ææ«êêµìì¼íí¾ëë¼ééµååªááÚÚÑÑ{ÇÇi¼¼X²²H¦¦8šš+~~oocc WWNNJJKJKKKKKKKKKKKJkhOspfroeqmcpkbnj`mi`lh^gc[a^W\ZRYWPVUPRSNRSMUVP]\Vfd[cd]ooh‰~˜‘…š”ˆª£•ª¢•˜’†¢œž˜’‚‹†€{suphhd]caZgc]fc\d`Zc_Yb^Xb^Wa]Ua\U`[T`[T`[U_ZT_YR_SN_UUZKN^NR]KMVH>UK8WU=CG#AE!AE>@:=>@WY>edN_]IEK9X`EV];CK2JNBECA8542-+4.(( (":4,62,42,3/*:<6@BC!  %"!#7( G4 I6 I6 I6 I6 I6 J7eR/£’{ÛË¿ëÝÕêÝÕêÝÕêÝÕéÜÔêÝÕìÞÖìÞÖêÝÕêÜÖêÜÕéÝÖêÝÖëÝÖìÞ×îߨêÛÒ¯ž‰]K&I6 I6 I6 I6 M:k^P˜’¥µ´Ý¸¸ä··ã··ãµµá³³ß®®Ù”ޤk^RN<I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 cUBš»««Ø¦¦Ô¨¨Õ©©Ö¨¨Õ¤¤Ò¢¢Ð¡¡Ï¡¡Ï¡¡Ï  ÎŸŸÎ››Ê™™Ç˜˜Ç••Ä––Å••Ä‘‘Á¿¾ŽŽ¾ŠŠ»ŠŠº‰‰¹††·‡‡·ƒƒ´‚‚³}}®{{¬{{¬zz«xxªww©tt¦qq¤pp£qq¤nn¡VV‹VV‹WWŒWWŒWWŒWWŒXXYYŽYYŽZZŽ[[[[[[[[ZZŽ[[ZZŽZZŽ[[\\‘__“__“``”]]‘]]‘__“]]‘^^‘__’^^’^^’__’^^’^^‘aa”``”bc•Q]>c…>g‡?gˆ>g‡>e…M]bd•bb”aa”cc–aa”aa”``“``”``”cc–ee˜dd˜iiœllŸmm rr¤ss¥uu¨xxª{{¬||®~~¯€€±ƒƒ´‡‡·ŠŠºŠŠºŠŠ»ŒŒ¼ŒŒ¼¾¿‘‘Á““””Ô”Õ•Ä••Ä••Ę˜Ç››Ê››ÊËËËË  Î¡¡Ï¢¢Ð¤¤Ò¥¥Ó¦¦Ô¦¦Ô¨¨Õ¬¬Ø®®Û¯¯Û°°Û®¬Øˆi—†7{’?…œJ§Y›±h¥»w±Å†ºÍ”ÄÔ¡ÌÚ¬ÓÞ³×à·Úà¹Úá¹Úß¶Ùܱը©ÏÒ ÉΖÂÅŠº¿~²·r©¯e ¦Y–LŒ“AƒŠ6y€+ov#fiYP%2M8J8J7I6 I6 I6 M;qe[¤¡½¹¹äººæ¹¹å¸¸ä¶¶â¶¶â¶¶â¶¶â¸¸ä¸·âœ—¬h[IK9I6 I6 I6 J7K8KA MLXWfe uu††–•&££3±±D½¼VÈÈjÓÓ}ÜÜãã çç«éé²ééµèè´çç­ãã¤ÞÞ—ÖÖ‡ÎÎvÄÄd¹¹S®®C¢¢4——'ŠŠ{zlk `_TTLLJJJJKJJJJJJJJJIIa^Fkh`kh`kh_jg_he]gcZeaXeaXd_V^ZQRQDMMASRJSSMUTNUTNZZTbc]jke}{q‡…zƒƒy‹Š¡šŒ™’†‰‡}Š€‡{‚~ukkeqmfsoghe_\ZTZYTd`Zd`Yc^Xa\V`\T`[S_ZQ_ZQ_ZR_ZS^ZR^YR^YR`[V`\T`[U_YRWPHMJ:XWG><*EF,RU5HM&PS._^=egAcdFrp]fhO‰„se^L?:*;2'-'53.;:5?;64.)<;7331//../,--,***("        + A/ I6 I6 I6 I6 I6 I6 TB‡vZȺªçÚÑêÝÔéÝÔéÜÓéÜÔéÛÔéÛÓéÜÔéÛÔëÞ×ëÞ×éÝ×ëÝÕ¾¯jX5J7I6 I6 I6 I6 I6 I6 I6 J7YI,€wz§¥Ç²±Ý²²Þ±±Þ°°Ý´´à²²Ý¢ ÃtibI6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 TC$„}‰©©Õªª×««Ø§§Ô§§Ô§§Ô¦¦Ô§§Ô¤¤Ò¢¢Ð¢¢ÐŸŸÎËššÉššÉ™™Ç••Ä••Ä••Ä““¾¾ŒŒ¼‹‹»ˆˆ¸……µ‚‚³‚‚³€€±}}®}}®{{­yy«ww©ss¥ss¥tt¦rr¤pp¢oo¡pp¢jjWWŒZZŽZZŽZZŽ[[\\‘\\‘\\‘\\‘]]‘]]‘]]‘^^’^^’``”aa•aa•bb–bb–bb–bb–bb–bb–aa”aa•cc—cc—ff˜ee˜dd˜ee˜dd—dd˜dd—ff™ff˜eg—Lc‚ElŒGoGoGoEmJcƒei–ii›hhšggšee—cc—cc—ee˜cc—dd—ff˜dd—ff™gg›hh›kkžmm oo¡qq¤uu§uu¨zz«||®~~¯°‚‚³……µŠŠºŒŒ¼¾ÀÀ““””Õ•Ä––Å™™ÇššÉ››Ê››Ê››Ê››ÊŸŸÎ  Î¡¡Ï££Ñ££Ñ££Ñ¤¤Ò¥¥Ó¨¨Õªª×¬¬Ù¯¯Ú¯¯Ú°°Û°°Û³²Þœ‹¶;zŽ;˜F‹£T—­c¢¸r­Á·ÊÂÒžÊØ©Ñݲ×à¸Úá¼Ûâ½ÛáºØÞ¶ÖÛ°ÓשÎÒ ÈÍ•Áʼn¹¿}±¶p¨®dŸ¥W•œJ‹’@‚‰5x€+nu#ekZ[JL*$L8J7J7I6 I6 I6 I6 L9m_Q ›³¹¹äººæººæººæººæººæººæººæººæµµÝpdYI6 I6 I6 J7O>`W%MMVVbb pp‘‘"žž/¬¬>··NÃÃbÎÎt×Ö…ÞÞ•ãã¡å卿æ«ååªãã¥ààœÛÚÓÓ€ËËpÁÁ_¶¶N««>ŸŸ0””$††wwhh [[QQKJJJJJJJJJJJJJJJIIZU@ZWMa^Wb_Xb_Xc`Xa^V`\Ua\T`[Sa\T[WORPEJJˆ3w~)mt"djY^PL:L1J7J7I6 I6 I6 I6 I6 I6 K9hYG›–«¸·âººæººæººæ¸¸ã¦¢¿}srWG(J7I6 K9[K%{nN•‘y“‹eNN SS^^ jk{{‹‹˜˜)¥¥6²²F½½VÇÇiÑÑyØØ‡ÝÝ”ááœââ ââŸàà›ÜÜ’ÖÖ†ÐÐxÇÇi½½X³²H§§9››,!rrdd YYPPJJJJJJJJJJJJJJJJII SM:QK?PLBURJYVPWSKTPFSRCYVKUQH]XO_ZRa[S^YPPNCBE4JK>[YPa_VdbXff\mmbtsg„€s‡‚s}{lwxmsulnqihkdad`\_[\]YYZUYYShe\SSMOPLWVPa]Vb]Ua\T`[S^YR]XQ\WP[VOYTNXSLXSLXSMURLPOLOPNPQPSSSWXWLLFAB)HO6]cX_eSjlRMJ=RQ8oqDpnGUL9G>287545265354243253053.52.1-),)&*&$    & ?0F3 I6 I6 I6 I6 I6 I6YG!‘€fÏÀ³çÙÑéÛÔêÜÔêÝÕ×ɽ‰x\O<I6 SA uuƒz~^O5K8I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 J7ZJ/y~“¡l_TK8I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 YJ/•‘¨®®Ú¬¬Ùªª×¬¬Ù¬¬Ù¨¨Õ¦¦Ô¤¤Ò¤¤Ò¢¢Ð¢¢ÐËËššÉ››Ê››Ê••Ä““Â’’Á¾ŽŽ¾½‰‰¹ŠŠ»……¶ƒƒ´„„´€€±°~~¯{{¬zz«yy«yy«xxªvv¨uu§ss¥rr¤rr¤pp¢oo¡nn¡nn¡jj[[\\‘]]‘]]‘]]‘]]‘]]‘__“``”``”aa•bb–cc—dd˜dd˜dd˜ffšffšffšffšhh›hh›hh›iiœjjkkžoo¡nn oo¢pp¢qq¢rr£rr£ss¤tt¥su¥]mŽRw—U{šW}œX~X~V|›Rx—YnŒtv£uu¦uu¥ss¤rr¤qq£qq¢nn oo¢qq£oo¡nn¡nn¡mm nn¡oo¡mm nn¡nn¡pp¢ss¥rr¤rr¤uu§zz«{{­||®€€±„„´‰‰¹ŠŠºŒŒ¼¾““˜˜Ç™™Ç››Ê¡¡Ï¡¡Ï¢¢Ð¤¤Ò¥¥Ó¦¦Ôªª×ªª×®®Ú®®Ú®®Ú¯¯Ü¯¯Ü´´àµµà··â¸¸ã¸¸ã·´ßˆd“…5y=ƒšIަW™°f¤»u°Ä…ºÎ•ÅÕ¢ÍÚ­ÒÞ¶Öâ½ÚäÁÜäÂÝäÁÜâ¾Úß·ÖÛ°ÓÖ§ÍÑÇʿĶ»w­³j¤ª_œ¢S”™H‹=€†1u}(lr!bhX]ORDF+L5J7I6 I6 I6 I6 I6 I6 I6 I6 J7cU?”œ¡·‹ƒ‹cT>K9I6 I6 VG"vkL—u—u•Šqž˜~œ”uWUOOYYee ssƒƒ‘’#žž/««<¶µLÀÀ[ÉÉkÐÐyÖÖ„ÚÚÜÜ’ÜÜ’ÚÚŽ×ׇÑÑ|ÊÊoÂÁ`¹¹Q®®C££4——(‹‹}}mm`` VVMLJJJJJJJJJJJJJJJJJINI;KD8KE9LG=LH?QNFHF=JG*IF(@?'E:'LH)OP*SS5XSi`B|¨°¤©¬š¨£‹Ÿ—|’„j›tŸ—|pk5MMTT__ kk{{ŠŠ––'££3®®@¸·O¿¿]ÇÇiÎÎuÒÒ}ÔÔÕÕƒÓÓ€ÐÐzËËpÄÄe½½W³³J©©<žž/““%††xxii \\SRLLKKKKJJJJJJJJJJIIGEJG58"=A&<@'45"@<.IC4MF7c\Mb_JQS7UY?U[7_cDcdMbcNfeSgeWol]eg\_aWXXOVWOTVOQUPNRNKNJHKFSSLRRLIKHILHGIGGIFCFDBFEJLIRRNUTP\YT[WSNPNFKLFKMFLOHPSKSWNX]Q\a=D<=D.<:'J;*U]+GV49EC&QA1<8(FJ(EI*OS9GC77.%'!  #+& .*&,(&+&"),(0>K%&,%  4.!(   )9%F3 I6 I6 I6 I6 I6 J7Q>I6 I6 I6 uib´³Û¹¹å¹¹å¹¹å¹¹å¹¹ä¹¸ã«©Ìƒz~ZJ/J7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 J7eWF¤¢Å¯¯Ü®®Ú®®Ú¬¬Ù¬¬Ùªª×¨¨Õ¦¦Ô¢¢ÐŸŸÍŸŸÍššÉ˜˜Ç••Ä••Ä““ÂŽŽ¾ŒŒ¼ŽŽ¾ŠŠ»‰‰¹……µ„„´……µ……µ€€±€€±°€€±~~¯||®||®{{¬xxªww©ww©uu§tt¦rr¤pp£oo¡nn¡nn¡llŸkkžjjiiœgg›__“aa•aa•aa•bb–bb–bb–bb–dd˜dd˜ee˜ffšgg›hh›iiœiiœiiœkkžkkžllŸllŸllŸnn¡nn¡pp¢qq¢rr¤tt¦vv§vv§ww¨xxªzz«{{¬}~­jv—[_„¢dˆ¦gЍh‹©hŒ¨eЧa†¤\ ex•ƒ°„„²ƒƒ²„„³ƒƒ²ƒƒ³±²²€€±€€±°~~¯°~~¯~~¯€€±€€±€€±~~¯°€€±°~~¯°°²€€±€€±‚‚³„„´……µ……µ‡‡·ŽŽ¾À““••ÄËŸŸÎË££Ñ§§Ôªª×¯¯Û³³ß´´à¶¶â··ã¸¸ãººä»»å¼¼ç´®Ù~I…3y‘=„›JަXš°f£¹u­Ã…¶Í–ÂÕ¥ËÛ±Óá»ÙäÂÝæÈàçÉáæÉàåÅÞã¿ÛÞ¶ÖÚ®ÑÔ¤ËΘÃÈŒ½Á€¶¹s®±g¤¨[œŸO’—DŠŽ;„1x{(no bdUYJO BH ;@.K1I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 J7_Q/‚h¢¦˜©±§©¯¦«²§¬±¥¥£Ž¢›”‡k‚fž”z‹ƒ\NNPPYYee rrŽŽ šš+¥¥6®®B¶¶N¾¾ZÄÄdÈÈkËËqÍÍsËËqÈÈkÄÃc¾¾X¶¶N­­A¤£5š™+Ž€€rree ZYQQKKKKKKKKKJJJJJJJHHD@#=9/=;3A@7DA7FA5JD8KE9GA6JH6MK>=;.MK=*OK;IH7:<'B@4GE7?>.:9'KH8WUFEG+DF(AA(;=(9<$CE#EN%IO(HJ/>F#LX(Ze0V_3JO7HHE;6JA'5$   "%"2IEKtr>bb#31$*)*./())!")4)*7.!7)5&,9H7     B0 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 N;l`T—’¨¯¯Ø²²Þ°°Ý¯¯Ü¯¯Ü°°Ý¯¯Úš–²N<I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 L9uje§¦Î®®Ú®®Ú¬¬Ù¨¨Õªª×¦¦Ô¤¤Ò££Ñ  Î››Ê››Ê››ÊššÈ••Ä••Ä••Ä’’Á‘‘Á¿ŽŽ¾ŒŒ¼‹‹»ŠŠ»‡‡·††·„„´……µ‚‚³°~~¯||®||®{{­xxªww©uu¨tt¦tt¦rr¤qq¤pp¢mm mm kkžkkžiiœgg›ffšgg›dd˜cc—__“aa•aa•bb–dd˜ee˜ffšgg›hh›hh›iiœjjkkžnn¡nn¡nn¡nn¡pp¢pp£pp£qq¤qq¤qq¤ss¥tt¦vv§vv§ww©zz«{{¬||­®°‚°pzœ_‚ e‰¦lެp“¯t–²v—´u—³s”±n‘­hŒ©b†¤j}š‹¸Ž¼½ŽŽ¼ŽŽ½ŽŽ½ŽŽ½½ŒŒ¼ŠŠ»‹‹»ŒŒ¼½½¾ŽŽ¾¿¿¿¿ŽŽ¾¿ŽŽ¾¾¾¾‘‘ÁŽŽ¾ŒŒ¼¿ŽŽ¾¾¾““ÂÀ‘‘ÁÀ““ÂÀ““••Ä––ÅË¡¡Ï¡¡Ï©©Ö¬¬Ù©©Õ°°Ý±±Ý·¶â¡•¹q1f-p‹7z–D†¢S’®dž¹t¬Ä†·Î—ÃÖ§ÍݳÔã¾ÛæÇßèËâéÎãéÎãèËâæÆßã¿ÛÞ´ÕØ«ÏÒŸÈË’Àͼw®³k§¬` £T—šH‘=ƒˆ4{+qt#gk^_UVKNDF =? 6= .I-I6 I6 I6 I6 I6 L:bW8€k—œ£§ž£¨Ÿ¦© £¦œ¤§ž©®£§¬¢¥©Ÿ¥¨Ÿ¦¨¤¡ ˜~—ŠoŒz`’„kŒƒ^PO OOWWaa mmzz††‘#šš+¢¢3©©<°°D´´J·¶N¶¶O´´L³²J°°F¬¬@¥¥7.–•&‹‹ssfe [[SSLLKKJJJJJJJJJJJJIIKI%GE.B,0I8:ZM*K5C\N-/)5"G4 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 J7\M4ƒ{ƒ§¦Ì¯¯Ü¯¯Ü®®ÚŠž[K1I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 ^O9”¨ªª×§§Ô¨¨Õ¨¨Õ¥¥Ó¡¡Ï¤¤Ò¡¡Ï  ÎŸŸÎŸŸÍ››Ê››Ê››ÊššÈ••Ä••Ä““ÂÀŽŽ¾ŽŽ¾ŠŠ»‰‰¹‡‡·……¶……µ‚‚³²€€±~~¯||®||®zz«zz«xxªuu§tt¦ss¥rr¤pp£nn¡nn¡mm kkžjjjjhh›hh›ee˜ee˜dd˜cc—cc—]]‘``”aa”bb–cc—ee˜ff™ee˜gg›hh›hh›jjkkžllŸllŸnn¡pp¢pp£ss¥ss¥tt¦tt¦uu§uu¨vv¨ww¨ww©xx©zz«||­~~­€€¯ƒƒ²‚¬d{—b‡¤jŽªr“°w˜´{›·|¸|œ·yš¶u–²n‘­gЍcƒ¡~…§“”À••““Á““À““Á’’À““““””••Ä••Ä––Å——Ƙ˜Ç˜˜Ç——Æ——Æ——Æ™™ÇššÉ™™ÇššÉššÈ˜˜Ç™™ÇššÈ••Ä””ښȗ—Æ™™ÇššÉ››Ê˜˜Ç˜˜Ç™™Ç••Ä––Å••Ę˜Ç••Ä››ÊššÈ™™ÇœœËžžËžžÌœš¿ˆ‚“k\NX-9v%f„.r;~›IЦY—²j£¾{°ÈŽ¼ÒžÈÚ­Ñß¹×åÄÞèËâêÏäëÑåêÐäéÌâæÆßã¾ÛݳÕשÎÑÇȽÁ´·sª¯e ¦Y˜ N’—EŠ;…1x{(nq"eg[\QSHLBE ©©<¦¥8ŸŸ1›š+•”%ŒŒ‚wwkk __WWOOJJJJJJJJJJJJJJJJIIJG8JE;KF;MG0J71A3   .# E4I6 L9nbU—‘¢†~…]M4J7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 P>qe^‡Šj]OJ7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 N<y€§§Óªª×««Ø§§Ô§§Ô§§Ô§§Ô¥¥Ó¦¦Ô¢¢Ð  ÎŸŸÎËššÉ™™Ç••Ä••Ä’’Á¿¿ŽŽ¾ŠŠº‰‰¹ˆˆ¸‡‡·……µ‚‚³²€€±~~¯||®{{­zz«zz«uu¨uu¨uu§rr¤rr¤qq¤pp£pp¢nn¡kkžllŸkkžiiœiiœhh›ee˜cc—cc—cc—aa•]]‘[[]]‘^^’]]‘^^’__“aa”``”dd˜dd˜cc—ffšhh›gg›kkžllŸnn¡pp¢pp£qq¤tt¦uu§vv¨xxªyyªzz«||­~~¯¯€€°‚‚²……³†‡µr|`‚ŸgЍo‘®v˜´}¸€ »‚¢¼‚¡¼Ÿ¹{š¶t–±l¬d‡¦j€œ’»——Ö–Õ•Ô”×—Ä——Å——Æ™™Ç™™Ç™™ÇššÉ››Ê››ÊœœËžžÌŸŸÎ¡¡Ï¡¡Ï¡¡Ï¡¡Ï¢¢Ð¡¡Ï¡¡Ï¤¤Ò¥¥Ó¥¥Ó§§Ô¦¦Ô¦¦Ô¤¤Ò¥¥Ó¢¢Ð  Î¡¡Ï¤¤Ñ  Î££Ñ  ÎŸŸÎžžÌ››ÊššÈ™™Ç——Å}w†bVHR@P>S9$e!S{'j‡2v’?‚žMŽª_›µp¨Â‚´Í”ÁÕ¥ÌݳÔã¿ÛæÉáêÏäìÒæìÓçëÑæéÍãæÇßâ½ÚܳÔרÍЛÆÇ»¿~²¶p¨­cž¤U”šHŠ’?Š6|‚.ux&ko bcXYNQFH >A 6=3=2= ,G.<-3&@3,މž¤™Ÿ¤™ž£˜¢— – ¢˜Ÿ¡˜ž –Ÿ”Ÿ¡•¢¢–Ÿ¡”Ÿ’Ÿ •¢¤š¤¤š¡œˆž“{ŽeŠy_”‡ihc-MLSS[[cc onxxƒƒ‹‹’’$——(™™*œ-ŸŸ1  1ŸŸ/œœ,––'!ˆˆwwmmcc YYQQKKJJJJJJJJJJJJJJJJTQ6UPFTNESLCPI?TMDLG=KE;LF;MF;KD8HB5GA4GA4KD5ZUE^[JYUBGG0XUBfeVokYˆƒsrpZ\b4Pxf9[LAgW:bV4YI)R=+PA'K<2J?!8..H;6 /S>0L?:XG.A8$"@0 I6 I6 bS<œ˜®¹¹ä¹¹ä¹¹ä¶µÞ™“¨k^PL9I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 gYJ¢ŸÃ««Ø¬¬Ù¬¬Ùªª×¦¦Ô¦¦Ô¦¦Ô¥¥Ó¡¡Ï¡¡ÏŸŸÍ››Ê™™Ç——Æ––Å““““‘‘Á¾½ŒŒ¼ŠŠ»……¶‡‡·……¶……µ²°°€€±~~¯||®xxªzz«xxªvv¨uu§tt¦ss¥pp£nn¡nn¡oo¡kkžkkžhh›hh›hh›ffšff™ff™cc—aa•``”__“]]‘ZZŽ[[[[[[]]‘__“aa•aa”cc—cc—cc—dd˜gg›gg›iiœiiœiiœkkžllŸnn¡qq¤rr¤tt¦vv¨ww¨ww©||­}}­}}­€€°ƒƒ²‡‡¶‚…¯b{—a†¤kŽ«t•²|œ·‚¡¼†¤¾‡¥¿‡¥¿„£½Ÿ¹yšµp“¯hŒ©b„¡z…¤™šÅ™™ÆššÇ™™Æ™™ÇššÈššÈ››ÊœœÊ››ÊË  Î  Î¡¡Ï££Ñ££Ñ¤¤Ò¦¦Ô¦¦Ô§§Ôªª×ªª×¬¬Ù­­Ú­­Ú¬¬Ù¬¬Ù¬¬Ù¬¬Ù®®Ú¬¬Ù¯¯Û¬¬Ù¯¯Û­­Ú««Ø¬¬Ù§§Ô¤¤Ñ¦¦ÔžÆ†”h\QO>K8M:O<R>T)6p _~)mŠ5y•C…¢R‘®džºu¬Åˆ¸ÐšÅÙ«Ðà¸ÙåÄßéÌãëÒæíÕçíÕçìÓæéÍãæÆßâ½ÚܳÔÖ¦ÌÏ™ÄÆ‹º¾|°µm¦«`œ¢R‘˜EˆŽ;~…0t}(mt#fj]^RTGK ?D 9>4=2>3> 4]DSqph…†}’†™œ £—¢¥™ž¢˜ž¡˜ž¢—ž •œŸ“›Ÿ’¡¡•¢¤™œ‘››žŸ”ž –“¡ ”˜“~‘†n†w^ƒv_‚fd`)NNSSZZ bb lluu}}„„ŠŠŒ‘‘#““$““$‘‘#ŽŽ ŠŠ„„}}ssll bb ZZSSMMJJJJJJJJJJJJJJIIWU2b_Va]V`[T_[S_ZT^ZT[VNWQHQJ?LE:LD:MF:IB7GA5HA5LE9PJ=^XJ`^Nd`NMM:ZWAsoYllMCN&N[%[g4z{^zwZ‹„fGM-UT0TX/DG&9>&maGcU5yjM²›y¨”u…ydƒ|n—Ž|š}p^MP7&N8'1%,#)!'!$!%# -.+BB?B81)),*-)" " ")D/)  Kc[6UJAaT3SG0F?71%J=Jjd=]\%68.&2")E2+C2&5$?YB7J*A<I6 I6 I6 UD%«©Êººæººæººæººæººæ¹¹ä¹¹ä«¨É}ssVF'I6I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 VF(‘Œ ­­Ú­­Ú¬¬Ù©©Ö§§Ô§§Ô¦¦Ô££Ñ££Ñ¡¡ÏŸŸÎžžÌ››Ê——Æ––Å••Ä““¿¾½ŒŒ¼ŠŠ»‰‰¹‡‡·……µ……µƒƒ´……µ€€±}}®~~¯||®{{­zz«yy«xxªuu§qq¤ss¥ss¥rr¤oo¡mm llŸkkžhh›jjiiœffšbb–cc—dd˜dd˜``”__“__“]]‘\\‘XX[[\\‘]]‘]]‘]]‘__“]]‘``”bb–aa•cc—ffšee˜ff™iiœgg›iiœnn¡mm nn¡nn¡pp¢uu¦ss¤tt¦ww¨ww©zz«}}®®ƒ„²ny™]€že‰§o’®x™µ€ º†¤¾Š¨ÁŒ©Â‹©Áˆ¦À„£½~ž¸u—³l­cˆ¥eœ‘¶œœÈœœÈ››ÈœœÉËËžžÌ  ÎŸŸÎ¡¡Ï¢¢Ð¢¢Ð¢¢Ð¥¥Ó¥¥Ó§§Ôªª×ªª×¬¬Ù¯¯Û¯¯Û±±Þ²²Þ²²Þ³³ß´´à´´á¶¶â··ã··ã··ã¶¶â´´á´´á³³ß²²Þ°°Ü“Ž£qf^R@I6 J7J8L9M;O=R9!]Ks!c€+nŒ7{—Eˆ¤V”°g¡½{°ÉŽ¾Ô¡ÌܱÖã¾ÝçÉãëÐæíÖèíÖèíÖèìÓæéÍãæÆßâ¼ÚܱÓÕ¥ÌΗÃň¹½z¯³k¤ª^š P–D†9|ƒ.ry&io_dTYKQCI =B 7? 5? 5?5? 5N%EŽˆ–œŽ—›œŸ“œŸ“¡£—¡¤™ £š¢¥™šŸ‘™œž’Ÿ • ¡–œž” –šœ‘œ›œž“œ“œ“š™Š‚n‡{f€s^‚v`Š€gle3ON RRYY`` gg oouu{{ƒƒ„ƒ„„ƒƒ€€|{uunn hh aaYYRRLLJJJJJJJJJJJJJJJJWV1c`Wb_Xa^Xb^Xa]Xa]W`\V_[U^ZS]XRWRJPJ?NHOH=LE:JD9UOC\TDc[Ac`D>C FI(zwbrr_osXIX(hw9€P‹t|dAE#<$‡wb´ …² …¤—‚ˆ„x‚‚xqaQV<),)+- , )* 5'-# ( (()" ! " # # 6$<*   !7Q?KcZ26Y%.5#'3HKafczvezhb{49=+>1@]:7Y8DF:@8I7I6 I6 I6 I6 I6 Q?th`¢ž¹¹¹äººæººæ¸¸ä¸¸ä¹¹ä¶¶â°¯Öއ•bT?J7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 K8wli¨§Ð¬¬Ù¬¬Ù««Ø©©Ö§§Ô¦¦Ô¥¥Ó¡¡Ï¡¡Ï¡¡Ï  ÎššÉššÉššÉ••ÄÀÀ‘‘Á¿ŒŒ¼ŒŒ¼ŠŠ»‡‡·‡‡·††·……µ‚‚³²²€€±°||®zz«yy«xxªuu¨ww©vv¨qq¤pp¢mm mm nn¡kkžiiœiiœffšffšffšcc—cc—bb–aa•aa•]]‘]]‘__“\\‘YYŽWWŒ[[[[]]‘]]‘]]‘^^’]]‘aa”cc—bb–cc—dd˜cc—ee˜hh›ffšgg›jjkkžmm nn¡nn¡qq£uu¦tt¦vv§ww©zzª~~®€€¯x}¦]w”^ƒ¢iªs•±}¸…¤½Š¨Á«Ä­Å¬ÄªÂˆ¦¿¡»z›¶p“°fŠ©_‚¡pŸŸÉ¡¡Í  Ì¢¢Ð¢¢Ï¡¡Ï££Ñ££Ð££Ð¤¤Ò¥¥Ó¥¥Ó§§Ôªª×ªª×®®Ú¯¯Û¯¯Û²²Þ²²Þ²²Þ´´à´´à¶¶â··ã··ã¹¹ä¹¹äººæººæººæººæ¹¹å¸¸âŸš±xmgRAI6 I6 I6 J7J7K8L9N<Q=P*.gVu"e,p9}™HЧZ™µm©Á€·Ì“ÃÖ¥ÎÞ´ØäÁÞéÌäìÓéîØëîØêíØéìÓçéÍãæÆßá»ÙÛ°ÓÔ¤ËÍ–Â㏼x®²i£¨\™žNŽ”B„‹7z,pw$gm\aSWIN AF ;A 7> 5> 4>4? 5A8„uz˜šž˜œŸ¢—ž •›ž“Ÿ • ¢•Ÿ’žŸ“Ÿ ”œœ›œ›œ‘™šž•›“™™•“‰™˜–—Ž’‘…‰ƒpˆ}fv^t]Œ‚k}uKUSPPWW\\ aa gg llppssttttssppll hg cc \\WWQQLLJJIIIIJJJJJJJJLK [Y;b`Xa^X_]V]YSa]W`]V`\Va]W_[T]YR^ZS[WP\WOVQHRLBQJ>QJ?OG:JB5H@1MJ0eaJngOJD,C<,aXD‡€rdhAlt7|DŽbY^9‰‰f¦Ÿ~ytM}HtrGsoLYW:”Šs¿³ À´£»¯µ§•¯¡Œ…uH>6$   #)6&5"#% $ ! " "   # <,.    5I;7LAHVU€›B‘¢=‡„J‚„”g~’i|’ƒŽŒ•NƒNPH8I6 I6 I6 I6 I6 I6 I6 I6 I6 J7bT>†”°¯Ö¶¶â³³ß´´à±±Þ¯¯Û±±Þ¯¯ÛŽˆšJ7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 bT@›—³¬¬Ù««Ø¬¬Ùªª×§§Ô¦¦Ô¤¤Ò¡¡Ï¡¡ÏŸŸÎ››Ê››Ê››ÊššÉ––Å––ÅÀÀ‘‘Á¾ŒŒ¼ŠŠ»‹‹»††·„„´‚‚³„„´€€±€€±~~¯~~¯zz«yy«zz«ww©tt¦tt¦ss¥tt¦pp¢nn¡nn¡nn¡nn¡llŸiiœiiœiiœff™ffšffšdd˜aa•__“^^’^^’]]‘[[\\‘ZZŽXX[[]]‘]]‘^^’]]‘^^’__“]]‘aa”cc—cc—cc—ee˜cc—ff™iiœhh›hh›jjjjmm nn¡nn¡qq£qq¤rr¤ss¥ww¨yy©{{«|~¬ds’X|›b‡¤m¬w˜´ »‰¦À¬Ä“¯Ç”°Ç“¯Ç‘­ÅŒ©Â…¤¾}Ÿ¸u—²kެa†¤]~œ‰©žŸÊ  Í££Ð¢¢Ð¢¢Ï¦¦Ô¦¦Ô§§Ôªª×ªª×¬¬Ù¯¯Û¯¯Û±±Þ²²Þ²²Þ²²Þ´´à´´à¶¶â··ã··ã¹¹ä¹¹äººæººæººæººæººæ¹¸ã¤¡¼}sq\L1I6 I6 I6 I6 I6 I6 J7J8K8M:O<R;R=iYv#fƒ-qŽ;~œK«^ž·q¬Ãƒ¹Î–ÅרÐß·ÙåÄàêÎåíÖêîÙëïÚìîÙëíÕééÎäåÅÞáºÙÚ¯ÒÔ¢ÊÍ”ÁÄ…¶»v¬±g¢§Z—L“@ƒ‰5y*nu#ek[_QUHL @D :?6>4>3?4? 5? 6jL_¤¤˜¥¨›£¥™£¥˜¥¦›¡¢–œ‘›œŽœœŽž‘¡¡•žž’––‰””†—˜–˜——Œ••Œ…’’ˆ‡‹‹€‹€†€n‡|fr\{oX†ybŠ]le2RPRRWW\\ __ bb cc ee ee dd aa __ [[WWSSOOLLJJJJJJJJIIHHGGRP"`_Mba[^]WZXRa_Z\YRYVP]ZSXUN]ZTWTNPNHVRMVTNXUP\WPZUMTOFMH=KC6JF3LE4NG3QK7XU=NL2=<283+91%=5#F>%XP+||G¨§vÀ¹¦¬­•‹•g‹“g_pJ^a<`aC†p¿µ¤Ç¿²Ä¾²µ­¢udY9&-(   " 7$)%&     )<+$  0*5PDUvNœ¶Rž´9œ°2•–;–r‹ ”€˜wnXQAI6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6UE&zpp žÀ¯¯Ú®®Ú¬¬Ù­­Ø‡—XH,I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 P>…}‡ª©Ô­­Ú¬¬Ù©©Ö©©Ö¨¨Õ¥¥Ó¥¥Ó¡¡Ï¡¡ÏŸŸÎ››ÊššÉššÉššÈ——Æ••Ä’’Á¿ŽŽ¾¾ŠŠ»‹‹»‰‰¹……¶……µ„„´²°~~¯°zz«xxªww©uu§ww©ss¥pp£rr¤qq¤pp¢llŸllŸkkžhh›iiœhh›gg›ff™cc—aa•cc—bb–aa•^^’]]‘]]‘\\‘\\‘XXWWŒWWŒWWŒ^^’``”``”bb–aa•bb–dd˜cc—dd˜ee˜ee˜ffšhh›ffšgg›iiœhh›gg›iiœiiœllŸnn¡oo¡pp¡qq£rr¤ss¥ww¨yy©{{«nu›Ut’Z€žf‰§p“¯{œ·…¤¾ªÂ“¯Æ—²É˜³Ê˜³Ê”°È¬Å‰§À¡»yšµn‘¯d‰§Z€ž^x•Œ‘·ÉŸŸËŸŸÌ  Í¢¢Ð££Ñ¦¦Ó¨¨Õªª×ªª×¯¯Û¯¯Ü²²Þ´´à´´à¶¶â··ã··ã¹¹ä¹¹äººæººæººæººæººæººæ¨¥Ãƒz|[K0I6 I6 I6 I6 I6 I6 I6 I6 I6 J7J8K8M;O=N1$YIjZw$gƒ.r<œJ‹©\š·p«Ä…ºÏ™ÆØªÑà¹ÚæÆáêÏæíÖêðÚìñÛíîÙëíÖéêÏææÅààºØÚ®ÑÓ¡ÉÌ“Àõºu¬°f¡¦X–œJ‹’?‚ˆ4w~)mr!dhX^PTGK ?D 9?5>4>4?5?5@5R(H£ž•««žª«Ÿª«ž§¤•¤Œ¡™„™‘~•ƒ˜†™ˆš˜‰–”ˆ”“‡”“‡““ІƒŽ†Œ‚Œ„ŒŒ…‹ŠŒŒƒ}k€u`{o\viSoZ~f†yWme5WTRQ TTWWXXZZYYYYXWTTQQNNMMJJJJJJJJJJJJJJ GG42/(G@7]ZSa_Yaa[_]W_]W[XQSPIOMGNLFTPI^YQUQKPNIVTMURLVRLVRLVRLVQIPL=II0HH*LO,db?„gokRVVOJIHD?7<1%2%3&nfRœ ˜š£Ÿ‰’Š~„s~gbiO\cJU[E¡™†»°ŸŒ~qD2&00-& 6 3 # ("     . 2%   &##4.[zu:YOq”v`N]€H‚LrƒFv`WV? I6 I6 ZI-dVBP?I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 L:j]P‰ž“Ž¥fXHJ7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 j]P£¡Ã¬¬Ù¬¬Ù®®Ú©©Ö©©Öªª×¥¥Ó££Ñ¢¢ÐŸŸÍœœËœœË››Ê––Å––Å––Å••Ä““Â¿ŽŽ¾ŠŠ»ŠŠ»‡‡·ˆˆ¸‰‰¹ƒƒ´²€€±°}}®~~¯}}®zz«xxªxxªuu§tt¦qq¤qq¤qq¤oo¡llŸkkžkkžiiœffšhh›gg›dd˜cc—bb–bb–bb–__“]]‘]]‘]]‘[[ZZŽZZŽWWŒWWŒVV‹UUŠee˜gg›hh›hh›ff™hh›iiœjjjjjjiiœjjkkžjjiiœmm nn¡nn¡oo¡pp¢pp£rr¤qq£ss¥vv§vv§ww¨xx©{{«wz§Xm‹Ty˜^ƒ¡jŒªt–²Ÿº‰§À‘­Ä–²È™µÊ›¶ËšµÊ˜³Ê“¯ÇªÃ…¤¾|·r•°hŒª^‚¢Uz™fx•”–ÀœœÈœœÉËŸŸÌ¡¡Î  Ï££Ð¡¡Ï¤¤Ò¨¨Õ©©Ö««Ø®®Ú°°Ý³³ß´´á¶¶â¸¸ä¹¹ä¹¹äººæº¹å­ªÌ†}‚_O7J7I6 I6 P; K7 S= I6 I6 I6 I6 I6 I6 J7J8L9M;Q<K!/\MkZw$g„/r<œKŒ©]šµo¨Âƒ¶Ï˜ÆÙ«ÒáºÚæÇáêÐæî×êðÚìðÚìîÙëíÕéêÎåæÅàá»ÛÛ®ÓÒ ÉË‘¿Â‚´¹s«¯dŸ¤W•šIŠ<…0v{'lpbgW\OSEJ ?D :?5>4?5? 5@5@6D:—Љ©¨š¬¬¬¬ž¨¥•£š„Ÿ•€ƒm—‹v”œ‘|”Œx‰wއvŒ‡v‹‡z‹ˆ}ˆ†|‡…{‡…|‰ˆ€ŠŠƒˆˆ€‰Š‚Œ‹ƒƒ}ls^|oXxjRzkU‡xaŠy]ˆxY{pMmh>][%TSPO NNNNNNMMKKIIIIIIJIKJ NMRP'YV=^\P`^Y[ZXEEB,+&-'"F>5WSGXTHURGROETODJG=BA7>?8BB<;=6694AB=DE@FGCLKGWTMXVOSRLURKYTEXR=_Z>lfKjbJlgOTSCUPHI@:6*#0$5&D9-\SJD;2;4+:5-=6+TODdk[CG6G6&7!5!1-% !4 B'+*(    0"$   &:* ,'@^V2OC-D+B<I6I6 SA ‡„³²Ù¹¸ã«©ËƒzXG*I6I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6J7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 UD&Žˆš¬¬Ø¬¬Ù¬¬Ùªª×©©Öªª×¦¦Ô££Ñ¤¤Ò¡¡ÏËË››Ê——Æ——Æ––Å––ÅÀ’’Á¾½ŒŒ¼ŠŠ»‡‡·……µ††·²²°°||®{{­yy«xxªuu§uu¨ss¥pp£qq¤qq¤llŸllŸllŸkkžhh›gg›gg›ffšee˜dd˜bb–aa•aa•__“__“]]‘\\‘\\‘[[WWŒWWŒXXWWŒWWŒUUŠSSˆjjmm mm nn¡nn¡oo¡oo¡pp£qq¤pp£oo¡pp£qq¤rr¤qq¤ss¥tt¦tt¦uu§uu¨uu¨vv¨vv¨vv©zz«yyª{{¬®€°fq”Nr‘W|œb‡¤n­y𵄣½ªÃ”°Ç™µÊ¸ÌŸ¹Íž¸Íš¶Ë—²É­Åˆ¦À€ ºw˜³l¬b†¥W}œRu“tŸš›Ç››È™™ÆœœÊËžžÌ  ÎŸŸÎ¡¡Ï¤¤Ò¤¤Ò¦¦Ô¨¨Õ««Ø««Ø««Ø¬¬Ù¬¬Ù¬¬Ù£ Ãƒ{ƒaR=I6 I6 I6 I6 I6 G4 ˆ`²~{Y I6 R< I6 I6 I6 I6 J7J8L9N<P9L9\NkZw$g„/s=KŒª]šµp¨Ã„µÎ˜ÃשÏà¹ÚçÇâëÐçîØëðÚìðÚìîØëíÕééÍåæÃßß·×Ù«ÐÒžÈɽÁ€³·qª­c £U•—F‰:~„/uz&jn`eWZMQ DJ ?A 7>3?4? 5@ 5@6@6? 6€ir£¡’§¥˜«©œ©¨šŸ˜›‘xl‡zf™}”‹u‘‡s†t‡wˆƒr…€o…€qƒ~p{m~zo~{q€wyƒ„~‡‡€……‚sv_€qY{kTyjU‡xb‰{bˆw_‚u^xe‚{jzt]niMfaAa]9]Y5[W3ZW4WS4JG-HE2YVL^\V\YU]ZX^[Y_]Z`_]aa`WXV-,'+&93$JB4RM?A>2FB7>>698110( !-0):=9=@<@C>HIEKMISTN_\UeaW`ZMdbM}}cdfLPN8JI2OO;TLAG<5;0(;.&RJBJECGDCEFF)" 07 3/+ & .A)8 */& !  %2%   &!3O@8# =&%5$:8H6I6 I7vke¯­Ñººæººæ¹¹å¹¹ä¹¹ä´´Ý“eWEK8I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 K8ynm¦¥Ì¬¬Ù¬¬Ù©©Ö§§Ô§§Ô¦¦Ô¥¥Ó¡¡Ï  Î¡¡Ï››ÊššÉ››Ê––Å••Ä••Ä¿¿¾¾ŠŠ»ˆˆ¸ˆˆ¸……µ……µ€€±€€±°~~¯||®{{¬{{¬vv¨uu¨vv¨uu§qq¤pp£pp¢nn¡llŸjjiiœhh›gg›ffšffšdd˜cc—bb–aa•``”__“]]‘\\‘]]‘\\‘ZZŽZZŽXXVV‹VV‹WWŒUUŠRRˆQQ†QQ†oo¡oo¡qq¤rr¤rr¤ss¥rr¤tt¦uu§tt¦uu§ww©xxªww©vv¨zz«{{¬{{¬||®}}®~~®€€°€€±€€°ƒƒ³‚‚³„„³††µx~¦PkŠOv•Z€ŸfЧr”°}ž¹ˆ¦¿‘®Æ™´Êž¸Ì »Î¢»Ï¡»ÏŸ¸ÎšµË”¯ÇŒ©Âƒ£½z›¶o’¯e‰§Z€ŸQw—RoŽƒŠ¯š›È™™ÆÊŸŸÌÌËŸŸÎ¡¡Ï  Î¡¡Ï¢¢Ð¢¢Ð££Ñ¢¢Ð¤¤Ò›š¿y…bTBL:I6 K7 J7 I6 Q; aF pP‘ggK M8 Œd‚\oPJ8N<M:J7J7J8L9N;M/!O@\NjYw$g„.r<œKŒ©]šµo¨ÂƒµÎ—ÃשÎ߷׿ÅÞëÏæî×êîÙëðÚìî×êìÒæèÊâäÁÜÞµÕØªÏÑÇÈŽ½À€´¶q«¬c £U•˜GŠ;ƒ.sx$in_cUYLP DI >B 8? 5?5? 5> 5?6?6? 5jL_©¦š«©ªªªª¡Ÿ”‹s…n}s_†zjŽ…r‰~i…}jˆƒt…€p€|l~yk}yk}yl|xl{wjyuizvk}{qƒ‚{ˆˆŒŒ…Œ‰}„ze€q[~pY~pZƒva‰}h‚taylYvk[{rhwqhpj`mg^icYf`Wc]Ta[S`[SZUMFC=?=:TQP]ZY^\Z_][[ZXA?=1,(0-$3/ DA,UQDFD2=9*;6.95,*')&#& ()#,-&23,45.>?8KKEWVN`_XmjbmlbabTLS8EK,EI-SQ4ZJ9F<3MC?PGBZRK^VPYQKQJF2+& $;+ )%( @)D%,,*# # ! -+   #-)1B>)F08@G7I6 I6 I6 I7tia¨¤Ã¹¹äººæººæººæººæ¹¹ä¹¹ä¸·á¡žºtibP>I6 I6 I6 I6 I6 I6 I6 I6 I6 T= •i}YtS]C N9 J7 I6 I6^N7›˜¶««Ø¬¬Ùªª×¨¨Õ¨¨Õ¦¦Ô  Î¡¡Ï¡¡ÏËœœËœœË˜˜Ç••Ä••Ä““ÂŽŽ¾¿ŽŽ¾ŽŽ¾ŠŠ»ŠŠ»††·……µ……µƒƒ´€€±~~¯°||®zz«xxªvv¨vv¨uu§ss¥ss¥pp£pp¢pp£nn¡llŸkkžiiœgg›hh›gg›ff™cc—bb–bb–``”]]‘]]‘]]‘[[YYŽ[[WWŒVV‹VV‹VV‹SSˆRRˆRRˆQQ†QQ†PP…PP…vv¨uu¨ww©yy«xxªxxªyy«zz«zz«{{­||®{{­||®}}®}}®°°€€±€€±€€±€€±ƒƒ´……µ„„´‡‡·ˆˆ·‹‹º†ˆµYm‹IoSz™_„£k¬w™´‚¢¼ªÂ–±È·Í¢»Ð¥½Ò¦¾Ó¥½Ò¢»Ð·Í—²É¬Ä†¦¾}ž¸s•±iŒª^ƒ¢TzšKq‘Xo’–¾ŸŸÌ  Í¡¡Î  ÍžžÌ  ÍŸŸÎžžÌžžÌŸŸÎžžÌš™Ã‚{‹dWIK8I6 I6 I6 I6 rR€[oP{W¦uhK O9 –j]R< UD%uie›—¯¬«Ñ¨¦ÆzplQ?J8L9O;H"(QC\NiXv$fƒ.q<~œJ‹©\™µn§Â‚µÎ–ÂרÎÞ¶ÖåÄÞéÍãíÔèí×éí×éíÕèêÐåæÉáã¿ÛÝ´ÖשÏМÇǾ¿~´µo©¬až¢S”—GŠ:ƒ0ux%il]aSXKM AF 5> 5> 5?6?6?6Z4P¦¡—©¨›©§š§¥™¥¤——“€ˆl‚yfvkY…{j†~k…|i|uf€zl~xkzuhxsgxsgvrfvqgxshyti{vi|wj€}q‰‡€Žˆ‡ˆƒtŠ~iƒv^ykVviT}o]znZqdQi]LlbUoi`lf^hbZe^Uc]Tb\Sb]T`[S`[S[VNEC<;$!' OJCHB<[VQTPH:;(142/$1,'95)22 #%!    *)!FB8ONDQUOV^Z]eackh`hY`dORT9SU;YRFQOOQMLYSO^UO_UM_UMI?:,!""$ 8#O19.3+% " 3%"  )#E6I6 I6 I6 I6 I6 I6 I6 L:j]N𔍷·áººæººæººæººæ¹¹ä¹¹ä¸¸ä¬«Ï…|XH+I6 I6 I6 I6 J7 dHvTX@ T= vTxUhJ„^N: R@yªª×««Ø¬¬Ù¨¨Õ¨¨Õ§§Ô¤¤Ñ¢¢Ð¡¡ÏËË››ÊššÈššÉ••Ä””Õ•Ä¿ŽŽ¾ŽŽ¾ŠŠºŠŠº‡‡·††·ƒƒ´‚‚³²°~~¯{{¬{{¬zz«zz«uu¨uu§tt¦tt¦pp£qq¤oo¡mm kkžkkžiiœhh›ff™cc—cc—cc—bb–__“^^’^^’\\‘[[[[ZZŽXXWWŒWWŒUUŠVV‹VV‹VV‹RRˆRRˆQQ‡QQ‡QQ†PP…NN„{{¬{{­||®~~¯°€€±²²‚‚³ƒƒ´„„´„„´……µ††·‡‡·‡‡·‰‰¹‰‰¹ŠŠºŠŠ»ŠŠ»‹‹¼¿¼ŽŽ½‘‘¿’“¿mxšGj‰Ms”X~cˆ¦p“¯}·‡¦¿’®ÆšµË¡ºÏ¦¾Ò©ÀÔ©ÀÔ¨¿Ó¥½Ò ºÏšµË’¯ÆŠ¨À€ »v˜´l¬a†¥W|œMt”FlŒdu“ £Í¨¨Õ§§Ô¤¤Ò¤¤Ò¥¥Ñ¡¡Ï¡¡ÏœÇ„~‘bUEN<I6 I6 I6 I6 N: ^D kMzWV? ‡a¢siK–kjL R?i]S‹†š¥¤Í¬¬Ù¯¯Ü¯¯Ü´´à´³ß¨¦ÆvkdQ?O9E.QC\NhWu#e‚-qŽ;~›IЍ[˜µm¦Á³Í”ÁÖ¦ÍÞ´ÕäÂÝéÌâìÓæíÖèíÖèìÔçêÎåçÇàâ¿ÛݳÖרÏÐšÆÆŠ¼¾|²´m§ª_ž Q“–EˆŒ8~ƒ/tw%im_`TVIL ?D :>4=3>4?5?5?5?5?5KAš’Œ¢ “¢Ÿ‘¢ž’¡‘œšŒ‘Œy„zdxo[ndS€ue~wezrbvn`ysfupcsnbql`qlarmbsnctodwqf{vizl„~rˆƒxŽ‹‚•‘‰“„‹ƒp‚wavjTi\In`NqdSj_MdXH`VIb\Sb]Vc]Tc\Tb\Sa\S`[R`[S_ZS_ZSZVNB@:$#(# B=9VRNYVRWROLG>EA398+32&0.$)+         ,,$GC9PLA;:231,1-(3-%=8/NR?MS9KI2>5$>1)JC>PHEC;6D:5LB>WNGB:50)$,$!.'%0)$.D#3790) "'/!   <- I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 J8]M4Š‚‹­«Ñ··ã´´á´´á´´à²²Þ³³ß¯®Ù€w{I6I6 I6 I6 O: ‰a~YwU~ZlMyVR< J7k^T¢ Äªª×©©Öªª×¦¦Ô¥¥Ó¦¦Ô¢¢Ð¡¡ÏŸŸÎ››Ê››ÊššÉ••Ä••Ä••Ä‘‘Á¿¿ŒŒ¼ŠŠ»‰‰¹‡‡·‡‡·……µƒƒ´€€±°°{{¬yy«xxªuu¨uu¨tt¦ss¥pp£oo¡nn¡mm kkžkkžjjiiœhh›ff™ffšff™ee˜bb–bb–aa”``”aa”__“\\‘ZZŽZZŽYYŽWWŒWWŒWWŒSSˆRRˆQQ‡RRˆPP…PP…NN„NN„LLKKKK°€€±²‚‚³„„´……µ……µ……µ……¶††·ˆˆ¸ˆˆ¸‰‰¹ŠŠºŠŠ»ŠŠ»ŒŒ¼½¾¾‘‘À‘‘Á••Ö–Ę˜Æ™™Æƒ‰¯Jh†GnRx˜]ƒ¡jªv˜´ƒ¢»«Â—³ÉŸ¹Î¦¾ÒªÁÕ­ÃÖ­Ä׬ÂÖ¨¿Ó£¼Ð¸Ì•±ÈªÃƒ¢½zš¶n’­cˆ§Y€žNv•EmŽCf…x„¤¬®Ù¯¯Û®®Ú¬¬Ø¨§ÑŠ„•od\Q@I6 I6 U> lN hJtR“hZA —k›nZB Q< I6 gJ V? M;~vƒœ›Â¡¡Ï¤¤Ñ¥¥Ó§§Ôªª×ªª×¯¯Ü¯¯Ü´´àµµà¦£Áq_]C4PBZMgVs"c,p9|™Gˆ¦Y–³k¤¿~²Ë’¿Ô¤ËݳÔãÀÜèÊáêÐåíÔçíÕèëÓçéÍäæÅàá½ÚܱÕÖ¥ÍÍ—ÄĈ»¼y°²j¥¨\šžN‘”B†‹6|€-rv$gk]`RUHK ?D 9?5=3=3>4?5>5>5>5D:‹€}™—Šš—Š›—Š›—‰˜•‡•‘ƒˆ‚o|s\mfQk`Mxn_wo`pj[oi]smapk_ni^mg]nh]oi^pj`smbwrf}wk„~rŒ…x‰|’Š“…—”‰‰{‚yewlYfZG^RB_VH\TGRK@JD)/ ' +H>5TRPR]hCBG-% %$/ 67"+ .!(   6( I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 RAvkhœ™¹­¬Ù­­Ú««Ø˜”±bTBJ7I6 I6 I6 I6 I6 I6 cG ‚]lMnOI6 YI-Œ†™§§Ô¨¨Õ¦¦Ô££Ñ¥¥Ó¢¢Ð  Î¡¡ÏŸŸÎœœË››ÊššÉ––Å••Ä””ÃÀ¿ŒŒ¼½‰‰¹††·……¶‚‚³€€±€€±°}}®||®yy«zz«yy«xxªuu¨ss¥uu§tt¦qq¤pp¢oo¡nn¡llŸkkžllŸhh›hh›ff™ee˜ff™cc—aa•__“__“]]‘]]‘]]‘[[[[ZZŽWWŒWWŒWWŒVV‹VV‹WWŒVV‹RRˆSSˆRRˆRRˆSSˆQQ‡QQ‡QQ†OO…²ƒƒ´ƒƒ´……µ……µ‡‡·‡‡·‡‡·‰‰¹ŠŠº‹‹»‹‹»ŒŒ¼ŽŽ¾¿À‘‘Á““””Õ•Ä––Ä––ÅššÈ››ÈÉ“—ÁVk‰CiŠKs“W}cˆ¥p’®|¸ˆ¦¿’¯Æœ·Ì¤¼ÑªÂÕ¯Ä×°ÅØ±ÆÙ¯Å׫ÂÕ¥¾ÒŸ¹Î˜³É¬Ä…¤¾|·q“°gŠ©\‚ Rx˜Go?f‡Dc•¸¯¯Öœ˜°wlgRAJ7J7I6 I6 ZB xV«y[ qQhK H6 H5 _DˆaU> I6 I6 I6 L:tjjžœÂ¤¤Ò¦¦Ô¦¦Ô§§Ôªª×ªª×®®Ú¯¯Ü²²Þµµà··â¢”ÁJBPCZKeUr a*nŒ7z—D‡¤V”±g¢½{°È޼ӡÉÛ°Òâ½ÚæÇàéÍãëÑæëÒçêÐåèËãåÄÞß¹ÙÛ¯ÓÔ£ÌÌ”Âĸºv®°g£§Y˜œKŽ’@ƒˆ4y~+pt"ei\_QUHK ?D 9?5>4=4=4>5>5>4>4@ 6~opŽ”ƒ•’„“ƒ‘Ž€‹}‹‡y€ziwnZhaNd[JogXleVhaSjcXni^kf[jdZmf[nh]qj`tncwqd{uh{n‰‚u‡{’Œ–‚•‚•…”Ž„„~nwm[aYJPI=TJ?[QC[REVMAMD9PG=421.,';?2EWA#    $#0      /"G5 I6 L9n`S{qo]N5J7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 L:fYK‚zƒrgcM;I6 I6 I6 I6 I6 I6 I6 I6 I6 J6 J7 L9zpr¤¤Í§§Ô§§Ô¦¦Ô££Ñ££ÑŸŸÎŸŸÎœœËššÉššÉ——Æ••Ä••Ä’’Á‘‘Á¾¾½‹‹»ŠŠºˆˆ¸††·„„´……µ€€±€€±}}®~~¯||®ww©yy«uu¨uu§tt¦pp£nn¡nn¡nn¡nn¡iiœiiœgg›hh›iiœffšee˜cc—cc—ee˜cc—aa•aa”``”__“``”]]‘]]‘__“]]‘ZZŽ[[ZZŽWWŒWWŒYYŽVV‹SSˆVV‹UUŠRRˆRRˆQQ‡QQ‡QQ†PP…ƒƒ´……µ††·‡‡·‰‰¹ŠŠºŠŠ»‹‹»ŒŒ¼ŽŽ¾¾ÀÀ‘‘Á““••Ä••Ä••Ę˜ÇššÇššÈ››ÈË  ÍŸÊjw—Ae…GmQx—]‚¡iªv—³‚¢¼Ž«Ã™µÊ¢¼Ð©ÂÔ¯ÆØ²ÈÙ´ÈÚ³ÉÙ±ÇÙ­Ä×§ÀÓ¢»Ï™´Ë­Å‡¦¿~ž¸r•±hŒª]ƒ¡SyšIq‘@h‰8^~>TfRI4M:L9K8J8J7W@ fI sR|YO9 ‚\ªyqR M8 I6 I6 I6 I6 I6 I6 I6 I6 I6 RA ~ty¦¥Í®®Ú®®Ú±±Þ°°Ý´´à´´à··ã¸¸ãººä—…±H@PEZOdVp_}(m‰4x•C…¢R’®dŸ»w­ÅŠ¹ÑœÆÙ¬Ð߸×åÃÝèÊáéÍãêÎäéÌâçÈàãÀÜÞ·×Ú­ÒÓŸÉÊ‘ÀÁ¶¸s¬®d¡¤V–šIŒ=†2x})mq bgY\OSGI >B 8>4=4=4=3=3=3>4>4> 5p^d†„x‹‡z‹‡z‹‡{ˆ„x†ƒwƒs~{ouo`ogUa[JWQCcZMe]P`YKb[PjdZjdZke[lf[pj^unbyrf}uizl|zpˆ„x‘Š}”Œ~””Ž€“Œ€Š€zuhg`TfZMj_PbZM\SHVNDPI?KC9H@4RK?VQF[VLZUKPK>NH;JE;HD3_JSywl~{o‚~r~q|p}zo{wlyuitpefaSd\LVO?IA4VL@XN>UK=[SFgaWlf[mg]qj_wnc|th}wkmj`aZLsmc…z’Œ€•€–”€Œ‡{zuhslaoh[haVa[QZTJRJ?MC6J>/G;,E;->9&?;#74>6"C.B9+>9->90:60B=6;<9797(*,/+QM>04  #")    %# ""% -/) +'&## + A(T-J$90&MkY*GB)D=-MI%B4$;$*C*?_M:]<.S+2S3'D) 7!#/! "$#)!"  B0 I6 I6 P>’‹™¸·âººæººæ¹¹ä¹¹ä··ã¶¶á£ ¾vkfQ?I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 P?‡€¤£Ð¤¤Ò¥¥Ó¡¡Ï¡¡Ï  ÎžžÌžžÌ››ÊššÉššÉ˜˜Ç––Å––Å’’Á””Ñ‘Á¿¾ŽŽ¾¾ŠŠ»ŠŠºŠŠºŠŠº……¶……µ……µ‚‚³‚‚³€€±°||®||®{{¬zz«ww©ww©vv¨tt¦qq¤qq¤pp¢qq¤nn¡llŸllŸkkžjjiiœiiœhh›hh›ee˜ee˜cc—aa•bb–cc—aa•__“]]‘]]‘]]‘[[ZZŽZZŽXXWWŒWWŒWWŒVV‹UUŠRRˆRRˆRRˆQQ‡QQ†NN„……µ……µ††·‰‰¹‰‰¹ŠŠºŠŠº‹‹»ŽŽ¾ŽŽ¾¾¾‘‘ÁÀ¿””Õ•Ä––Ä––ÄššÈËœœÊžŸÌ•½Lfƒ>e‡FnRy˜^ƒ¢jŽ«x˜´„£½­Å›¶Ë¥¾Ò­Ä׳ÉÚ·ÌÛºÍݺÎݸÍܵÊÚ°ÆØªÂÕ¤½Ñ›¶Ì’®Æˆ§ÀŸ¹t–±hŒ¨\€Qw“FmŠ=d‚5\z-Tq'Ia9<0pS­|“i P; wU|XjLbG L8 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I7\L1‰–··áººæººæººæ»»æ»ºæˆqE 4=4=4=3=3=3=3>3=3V?JfeYlj^socwshurgvrgurgrndplblh^c^P^VFPI9@8*JA7TK=XM=[SFhaXojarlavnd|tizmztef^N[RCb`]~„ƒŒ‹„™‘…˜„“‹…zƒ}szulsoihfa^\UUMCOD6K?1E9,C8+<5&A:"R: A1.*?1<-<8-..%$$)'0/*31-545'()   %"#$*,4 /2!" ! !   +.&)($%# % 8R.R% >&YaJ\‡~Aae04Z%+J1)5-D3GfZEn^Htc2X@&D%776.&+ <, I6 I6 I6 I6 N<…|€±¯Ôººæººæººæººæ¹¹ä¹¹ä··ã··ãª¨Í„{XH+I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 nbZ¤£Ê¬¬Ù¬¬Ù©©Ö¬¬Ùªª×§§Ô¨¨Õ§§Ô¢¢Ð¢¢Ð££ÑžžÌËœœËššÉ˜˜Ç••Ä””Ó“¿¿¾‹‹»ŠŠ»ŠŠ»ŠŠº‡‡·††·……µƒƒ´ƒƒ´‚‚³€€±°}}®}}®{{¬{{¬yy«vv¨uu§uu§ss¥pp£ss¥pp£nn¡kkžkkžjjiiœiiœgg›ee˜dd˜ff™bb–``”aa•aa”__“]]‘[[[[[[WWŒWWŒWWŒWWŒVV‹TT‰RRˆTT‰RRˆQQ‡QQ†QQ†OO…OO…LL€€±²‚‚³„„´……µ……µ……µ‰‰¹ŠŠ»ŠŠ»ŠŠ»‹‹»¾¿¾¿••Ä––Ä––Å——ÅœœÊžžÌšœÈ]n;b‚CjŒMu”Y~že‰§r”°ŸºŒ©Â—³É¢¼Ð«ÃÕ³ÈÙ¸ÌܼÎÞ½Ïß½ÎÞºÍݶËÛ±ÇÙ«ÃÕ£½Ð›¶Ë’®Å‡¥½{œ´p’«e‰¤Z›Qw“FmŠ=d‚5]z/Ur(Lh(BP{ceJ oP ‚^jL J6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I7_O7–¢·¶à¹¹ä¯­Ñ…V65=4=4=3>3>3>3>3>3=3U>IdaVdaVdbWjf]nj_plaokanj`kh^ie\he[eaW_YLQJ:>7*@9/OG;TJ;VL)A*B1$" ((*'&#" ""00'-/'"!    !!& +"#%" " !  .H1\8A G g;dk9klwoig][9Q> B 2&'#5$6VEGod1TH/WD;,":.!.%  !,($-*)!  5' H6 I6 I6 I6 I6 I6 I6 I6 P>xmg§¤Á¹¹äººæººæººæººæ¹¹ä¹¹ä··ãµ´Þ’ŒcUAI7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 ]N5–‘§±±Þ¯¯Û¯¯Ü¯¯Û®®Ú¬¬Ù¬¬Ùªª×§§Ô§§Ô¥¥Ó¢¢Ð££Ñ¡¡ÏžžÌžžÌ››ÊššÉ™™Ç””Ó“””Ó“Â¾ŽŽ¾ŒŒ¼ŠŠ»ŠŠ»ˆˆ¸……µ„„´‚‚³‚‚³°~~¯{{­zz«zz«ww©uu¨uu¨tt¦rr¤qq¤pp¢nn¡oo¡nn¡kkžjjiiœhh›ffšhh›ee˜cc—bb–cc—aa”]]‘^^’]]‘[[XXWWŒWWŒVV‹TT‰SSˆRRˆQQ‡OO…MMƒLL‚LL‚LL‚IIIIGG~HH~GG~FF|~~¯°°€€±„„´……¶……µ……µ‡‡·ŠŠ»ŠŠ»ŠŠ»½¾¿‘‘Á””––Ř˜Æ˜˜ÆššÈžËt¡<_~?fˆHpTzš_…¤m¬y𶇥¿“¯Æž¹Í©ÁÔ±ÆØ¸ËܽÎÞ¿Ðà¿Ðà¿Ðß¼ÎÞ·ËܱÆÙ«ÂÕ¡ºÎ˜³ÇŽª¿ƒ¢¹zš²o‘ªd‰£Y~›Qv’HnŠ>e5\z0Vq'Lh!C].>>WFM:dU@ˆ€‰”ŸƒzTB!I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 J7\L1`Q9R@K8H'> 3E :N BXJbSo`{(k‡3w“@ƒŸO«`¶p¨ÀµË‘¿Ò ÈتÏܲÔß·×á»Ùà¹ØÝµÖÛ¯ÒÖ¦ÌЛÆÈ޽À²·q©­bž¤U”šIŠ=€†1w{(lq ceXZMQEI >B 8=4>4>4>3>4=3=3=3=3=3T>H`]S`]S`]S`]S`]Tc_Ve`Xgd[gcZfbYeaYebZdaY^ZPNI=A:-?8.ME:VM?ZREd]Syrj„v‹…z‘Š}˜ž“…¢˜‹¤›¥šŽ£Ÿ˜gppab^ˆvˆ~‡y~yqupimiddb]\\YUUSOLGIB9G:-B3&=5%617.=";"5)./&*  A>4DB2+'!$$%$$&*)+'')    !#% #   $ =#]0S(J-eN$QZ%=W6VHbC†twƒywuWjHD]1HI4HD0>> 2XI#J4"H44\N&C8."(   (# /,-65667;227)(,# !         -!G4 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 M:l_Pœ˜®¹¹äººæººæººæººæººæººæººæž™°M:I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 M:‚y}±°Ù³³ß²²Þ³³ß±±Þ­­Ú®®Ú¬¬Ù¨¨Õ¦¦Ô¦¦Ô¤¤Ñ¢¢ÐžžÌŸŸÍËššÈ˜˜Ç˜˜Ç••Ä••Ä’’Á¿¿ŽŽ¾ŠŠ»‰‰¹‰‰¹ˆˆ¸……µ‚‚³€€±~~¯{{­{{­yy«uu¨tt¦tt¦qq¤pp¢nn¡mm jjiiœgg›hh›gg›ee˜cc—cc—bb–aa”aa•__“^^’]]‘[[[[[[YYŽXXWWŒWWŒVV‹SSˆTT‰SSˆSSˆRRˆQQ†OO…OO…LL‚LL‚LL‚LL‚LLIIIIGG~HH~GG~FF|€€±‚‚³²‚‚³……µ‰‰¹ˆˆ¸††·ˆˆ¸½ŽŽ¾½½À““””““——ÅššÈ››ÉœÉˆŽµD_~;c„DlOw–[€ gŒ©t–²‚¡¼¬Ãš¶Ë¥¾Ò¯ÅØ·ËÛ½ÏÞÀÑàÂÓâÂÓâÀÑà¼ÏÞ·ËÛ°ÅÖ¨¿Ñ ¸Ê–±ÆŒ©¾ƒ¡¸y™±n©fˆ¡\™Nu‘Fl‰@e€7]y-Tp%KhD^4>4=4=3=3=3=3=3=3=4T@I\YP[XPZWMYVLYVMXUMXUL[VN`\Tc`Xb^Vb^Xc_Xc`Yb^WVRELE8E@5LF;]YOee[dbToh^އ€Ž„‘ƒŽ‡ušŒ¬¢”¬¡’ªŸ‘¨Ž…YdaY[X~up‚|uxsmplfif`_^YYYWSUSQKHF3%:5742+5" A%3! #" &*#      )((+)**)*,*+!   !#       /A&> 6e+›HLjM\S!E[2(W7&O9>Ta^Zƒ\[z/7AD6c+"T4 B*/VG)I>24@)7&   "( ,&$.-043:69B9>I9DS@O`BTm>Qn?Pn=Mh+< /A 6H =QE[NhZs!d+pŠ6{•B… P«_œµo§¾}²Å‹»Î—ÃÒ ÉÕ¥ÍØ©ÏتÏÖ§ÍÔ¢ÊÏšÄɾ‚µ¹u¬°h¢¦Z˜L“@ƒˆ4x~*mt"ek\_QVHL AF :@ 6>4=4=3=3=3=3=3=3=3= 4TEIYVNXUMWULVSJVRIUQIVRITQHTPHXUM]ZR^[Sa]Va]Vc_Xd`Ya^V[WMSNCMHC.?*>/B*<" %       "%"! $!' $      %7",$ 1S"p. ’A­O¿d(Ye€gD}oL„sJvi1EP2GJPXyIEp*I& /D,D&>kWFoi!C2366%"4)!,$#.&0'.%+"(!,(&646=@EBJTFRcHZxH_…Hc‹EaˆFQSI:I6 I6 R@_N6O=I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 UD&{qs–‘©‚{„SB"I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 Q?Œ†–ªªÖªª×ªª×¨¨Õ¨¨Õ¤¤Ò¤¤Ò¡¡ÏŸŸÎŸŸÎššÉ››Ê››Ê••Ä••Ä‘‘Á¿¿ŽŽ¾ŠŠ»ŠŠ»ˆˆ¸……µ……µƒƒ´°°}}®||®yy«ww©ww©tt¦tt¦qq¤pp¢mm mm kkžiiœffšffšff™ee˜cc—cc—aa”__“__“]]‘]]‘]]‘[[[[WWŒWWŒWWŒVV‹VV‹TT‰RRˆRRˆQQ‡RRˆOO…MMƒNN„LL‚LL‚LL‚KKKKHH~GG~FF}FF|DD{EE{DD{BByAAx@@wAAx>>u==u==u<!H9!E8D1<-?4F :M AVIbSm^y&j„0u=€šJŒ¥W—®f¡¸s«À€´Æ‹»Ì”ÂÑœÆÓ ÈÓ ÉÒžÇÏ™ÄÊ‘¿Å‡¸¾{±µp¨¬bž¢U”™H‰<†1u|'lp afX[MRFK ?D 9>4>4=3=3=3=3=3=3=3=3> 4SGGTRITQIURJTRITQHTPHUQITQITPISOFSNFVQJZVO]YR_[Sc_Xhe^jgafbYa\PRNBXUKjm_cdUqti|{n§¡—¡¢™¿º±½µ«º±§´ªŸ©¡”™“ˆ•„ˆvpnhGNKEECWSN.0/! )0( ;73LI:PA)QE,R>(U=#P6:&:, ,"       !08?$)    +,# ! 7?G_$u/‡?—I§]2žzY‘{‘w\MG+B)@*1>#E`UP^\?^[Ctz#HA9&=oh4i`0]P+I?9NC@@@C=:9@=>u??v<f„7^|/Vt)Ol#IgC`*=3C 8J >RE\OiYs!d*nˆ5y“@ƒœMާZ™°h£ºv­À€´Å‰»Ê¿Ì”ÁÍ•ÃÌ“ÂȽň¸¿~³¹t«±i£¨\šŸO–D†‹8{‚.rx$hm^bUXJN AG >u>>u<cY:bu?^N1;#>5L6#K4@ rXGÅ»ŸŠ~bZXNQcfJ\aPX[NKKPIHMJLMKONKMNJLKGKGBDGA=I;"I6I6 I6 I6 bT>µ´Üººæººæººæººæ··ã··ã´´à²²Þ®®Ù‘Œ¢fXHL9I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 N<ukm¡¡Î££Ñ  Î¡¡Ï  ÎËË››Ê™™Ç––Å––Å””ÃÀ‘‘Á¾ŠŠ»‹‹»ŠŠºŠŠº……µ‚‚³ƒƒ´‚‚³~~¯}}®}}®{{¬yy«xxªvv¨uu¨uu§ss¥pp£pp£pp¢nn¡jjkkžiiœiiœffšffšdd˜dd˜cc—cc—__“``”]]‘]]‘[[\\‘ZZŽZZŽWWŒWWŒVV‹VV‹UUŠQQ‡RRˆQQ†QQ†QQ‡NN„LL‚LL‚LL‚LLIIHH~IIHH~FF}FF}EE{AAxDD{CCzCCzCCzAAx@@w>>u>>u<kaDXO:PJ?>6(@5"=4 ;4 ;1:/8-7+9.;/@4F5*>2> 4D 9K ?SG\OgYq b{'l…1uŽ;—F‰ P¨[š®e ´m§¸t¬»x®½z°½z¯»w­·rª³k¥­bŸ¦X˜žO•D†Œ9|„/t{&kpaeW[MQDJ =C 7=4<2<2=2=3=3=3=3=3=3<3F/>3WUJrnfƒxŽŠyuergUe[C^S:QM.]I/yeO𛇄‰mSM7<9*,82I@03- " .&P@/7-##% 50/003     & '*,(*#0=:+<5*LG6NQOOY)@>1JE2LI(NG2[[ 0. ",&(/+-% ! " & ) - /8Fh9 ¼¨‰¿±šÄµ§¾®Ÿ‹yoU@M(EA>>7X8&¿¡€Ûº”ä«lòµUâªK˜l9UF?MFFLGFKFGJDEKFIMLQPQZOMSI?-I7I6 I6 I6 I6 I6 I7YI,‡…²±×ººæººæººæººæ¶¶â¶¶â²²Þ±±Þ««×•’®nbZN<I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6aTC”‘²¢¢Ð  Î¢¢ÐžžÌŸŸÎžžÌ››ÊË™™Ç––Å••Ä––Å““¿À¾ŠŠºŠŠ»ŠŠ»‰‰¹……µ‚‚³ƒƒ´²}}®||®}}®{{¬vv¨uu¨vv¨uu¨tt¦pp£pp£pp£nn¡llŸiiœkkžhh›hh›ffšffšcc—cc—bb–cc—]]‘``”]]‘]]‘[[[[XXZZŽXXVV‹SSˆUUŠSSˆRRˆSSˆQQ†NN„PP…MMƒLL‚MMƒLL‚LLFF}FF}HH~FF}FF}FF}EE{CCzDD{AAxAAxAAxAAx@@w??v??v<>u;;r88p88p;;r››Ê¡¡Ï¡¡Ï¡¡Ï  Î¦¦Ô¦¦Ô¦¦Ô¦¦Ô¬¬Ù««Ø««Ø¬¬Ø±±Ý²²Þ±±Ý²²Ü§«ÓMd4[|f„7_|/Wt(Ol"Gc@Z9R3J.D*@'<+@s} ¶·ãººæººæººæ¸·â¢ž¸zokUC#I6 I6 I6 O:oS1‡iK~kNd[IYRBe^QXRG`XS[VTVPMRHAF<59.(4)4)7,<0?2 >)<2@ 5F ;M AVIaSl]u#h+qˆ4y=˜EˆžO¥X—ª_¯f¡²j¤´l¦³m§²j¥®f¡ª`¥X—ŸO—Fˆ=‡4x*ov"fk\bSWJN AG ;A6<3<2<2<2<2<2=3=3=3=3=3K?@KH@LIBMKCLJCIG?IF?GD9543CB;-/!A@0TRJsphxwkyugMN61222--E=+HB4J@->-H.9(0K:+B9( $     ##!    !%+1//(%2%#/$$#SWa…s…‚v†^p]CaY+OQ4]`1JL"82'5/%-'';:AAEO72J9I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 R@}rpª§Çººæººæººæººæ··ã¶¶â²²Þ³³ß®®Ú žÁ_Q=I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 SB#ƒ|‹¥¥Ó¤¤Ò¢¢Ð¡¡Ï¡¡Ï  ÎžžÌË››Ê››Ê——Æ••Ä––Å’’ÁÀ¿¾ŠŠ»‰‰¹‰‰¹‡‡·„„´„„´€€±€€±°||®{{¬{{¬uu¨uu§tt¦qq¤pp¢nn¡oo¡jjiiœiiœgg›cc—dd˜cc—bb–``”``”__“]]‘]]‘]]‘[[\\‘XXWWŒXXWWŒVV‹WWŒVV‹RRˆQQ†QQ‡QQ†QQ‡QQ‡MMƒLLLL‚LL‚KKIIIIHH~EE{FF}FF}DD{DD{DD{CCzAAxAAx@@w??v??v@@w@@w>>u>>u<X7P1H-B)> &9 %8#3A›¾µ´Ü¬ªÌ‡…_P8K9I6 I6 J6[D˜{aÓ¯ Ö¯¤¦‡yr`N[H8\B0dE4eD3bB1`B2\C2YG8YO?YWKSQOPOOUTSQQQHB@B12; 0>3C 8I =PCXLcTm^v#g€+pˆ4y<€–EˆL¡S“¥X—¨\šª^›©^›¨\š¥Y˜¢T”NŽ—Fˆ’>‚‰5z‚-rz&jpafX]OSFK ?D 9>5<2<2<2<2<2<2<2<2=3<2@ 6KF@JGAJG@JHAKH@KHAIF>HE>MJCMJCLHBMJDKICJHBJHBLKEJH@<=2671,0,478%2/(!?9&Q3@ 0. . ))nE.„FN™V˜W‰Mq= D93934G>5H8I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 O=rf\£Ÿ¹¹¸ãººæººæººæ¸¸ä··ã°¯Ø…}…Q?I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 J7shc£¡Æ««Ø««Øªª×§§Ô¨¨Õ¤¤Ò¦¦Ô¢¢Ð¡¡Ï¢¢ÐžžÌššÉššÈ––Å””ÃÀÀ¾‰‰¹‰‰¹††·……µƒƒ´€€±€€±€€±zz«zz«zz«xxªtt¦uu§tt¦ss¥pp£nn¡nn¡llŸjjiiœhh›hh›hh›dd˜dd˜cc—cc—aa•aa•__“aa”\\‘\\‘\\‘ZZŽXXYYŽWWŒVV‹VV‹SSˆQQ‡SSˆSSˆRRˆQQ†MMƒMMƒMMƒNN„LL‚JJ€HH~IIFF}FF}FF}EE{EE{DD{CCzCCzAAx<>u??v<;3?=6DB:9:-00%32%22'35-QOAMN;;?.FJ?NO?TF8iZQXK?`D=PD=./ -.'(($ (!1* 1">(;,#      $#!%-: *-1.7@!*1  "    !"! %'5CDs}‹bsFmsAiiBjcDwtd’˜?`dHLN3/(3/,711834FAFRPWPOZQWjP_I_…GXyGTmENcFPaDKZ%#$ %, 0 / + -- b?&c<I…K{Ed5 ?<.  3& I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 K8hZG™“§··áººæº¹åœ—­_P7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 ]M4›–¯´´á²²Þ³³ß°°Ý¯¯Ü°°Ý««Ø¬¬Ù¦¦Ô¤¤Ò¤¤Ñ¡¡ÏžžÌššÉ˜˜Ç••Ä““ÂÀÀ½‹‹»ŠŠ»ˆˆ¸……µ††·‚‚³‚‚³°~~¯}}®||®zz«zz«vv¨uu¨tt¦tt¦rr¤qq¤pp¢nn¡oo¡llŸllŸkkžiiœiiœffšffšcc—cc—cc—bb–]]‘[[[[[[XXWWŒVV‹VV‹VV‹RRˆQQ‡RRˆRRˆOO…NN„NN„LLLLKKJJ€HH~HH~FF}FF}DD{EE{EE{DD{BByBBy@@w??v??v@@w>>u??v@@w<)SF1USBWXLVWOZVPVKDK<5B2'?/!;-;-8+4)4&8(=2A 6F ;M AUI^QfYoaw$h})nƒ.sˆ4xŒ9}=“@„”C†•C†•C†“@ƒ=Œ8|‡3w‚-q{(lu#fm_dV[NSGK @E :?5<3<3<3<2<2<2<2<2<2:0. ! /*DA9JHBJHBJHALJBLJBLIALH@LHANJCKHAGD,3- ( ('==:CCDBJR" ' % !)',%  '12  #'3 &!&&'(*/       .5?Yk{qqzV[[%>2BlcIrq@ioYssgddXW[YY`YX_YU]ZX`US\QNVQNTLKTFGTEHS?CP<@N99D))0%%+ ! $ 4  >+N2b8m>h:[1 ?A2 , F4 I6 I7ZJ.tiafXDK9I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 J7^N5|ronaTL9I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 M;‰€‡µµÝ¹¹ä··ã··ã´´á´´á²²Þ±±Þ¬¬Ù¬¬Ùªª×¥¥Ó¥¥Ó¡¡ÏŸŸÍžžÌššÈ™™Ç––Å••Ä””ÃÀ¿ŽŽ¾‹‹»ŒŒ¼‰‰¹††·……¶……µ‚‚³‚‚³°~~¯||®zz«zz«ww©uu¨tt¦ss¥nn¡oo¡nn¡kkžiiœiiœhh›ffšdd˜dd˜aa•aa•aa•``”]]‘[[[[\\‘ZZŽXXWWŒVV‹VV‹VV‹TT‰RRˆRRˆQQ†PP…QQ†QQ†OO…MMƒLL‚LL‚LLKKLL‚JJ€HH~IIFF}DD{EE{CCzBByAAxAAxAAx@@w??v<H'Mi0Wu:aDl‰Rw”_ƒŸn©~µŒ©¿œµÈªÀÒ¶ÉØÀÒÞÉ×ãÐÜçÕáëØãìÙãíÙãíÕßëÏÝèÉØåÁÓá¹ÍݯÅפ½Ñ™´ÊŒªÀž¶s”­gФ[€œQw“Gn‹=e‚6]{.Us&Lj Ea>X7P2I-C)> &9 $8 $8 $8$485 g]Gii_~‚ƒoidlZMpXIdNAvhÌ •繯绲Υ—Ÿƒqq_MXC2N:'G5$D3!G4#F3"E4"K=+TI';"K' ]1^5P+ ;@!. &D2 I6 I6 RA…|€´³Ú··ã³³ßœ—±maUL:I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 k^N­«Í··ã··ã··ã´´á´´á³³ß²²Þ¯¯Ü®®Ú¬¬Ùªª×ªª×¤¤Ò¤¤Ò¡¡ÏŸŸÎžžÌ››Ê››Ê˜˜Ç••Ä••Ä““‘‘Á¿½½ŠŠ»‰‰¹††·……¶„„´²°°{{¬zz«yy«xxªuu§uu§tt¦qq¤pp£pp¢nn¡llŸmm kkžiiœgg›gg›ffšff™dd˜cc—aa•aa•aa•__“]]‘\\‘[[ZZŽZZŽWWŒVV‹UUŠUUŠRRˆQQ†PP…PP…NN„LL‚LL‚KKIIHH~JJ€FF}FF|FF|BByCCzCCzCCzBByAAx??v??v==u>>u<M:O<P?<;-"C[(Om2Yv;cGn‹Tz–b†¡q“¬ ·¬ÁŸ¸Ê­ÃÔ¹ÌÚÄÓàÌÛæÔßê×ãíÙãíÚäíØãíÕàëÏÜèÉØåÁÓá¸ÍÜ®Å×£¼Ð˜³ÊŒ©ÂŸºr”¯e‰£Y~šOu’El‰;c4[y,Sp%KhD^jYC|t_’”…©£”ʰ£âÀ·èÀ¶Ó¬Ÿ¥‡v{jY^QAJ;*L8'K5#H3"H2"J3"H3!E1A/=/MKFJIJE8B;3>4C 7G C 8>4<3<3<3<2<2<2<2<2;17+&  /+CA9GE>HF?HE>?:2<3*>93;93;93BA2/C54M>@Q?(.98AHZ@@M&#' +AEE#,+#)(  %8B.=X>/T@6[I*?-4#   +((57<8@I/8B#&    -ECNZYd\[f\ZcXU\XTZXTZZT[WQYTOUVPTQKPJFLDBJA@G98@,-5('/#!'(D"G$;*7%2$,@/ I6 I6 M;wlf®¬Ï¸¸äµµá´´à³³ß°°Ý­­Ù›˜¸peaO>I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 YI,’‹›¸·ãµµá¶¶â¶¶â´´à³³ß±±Þ¯¯Ü¬¬Ù¬¬Ù¨¨Õ§§Ô¥¥Ó¤¤Ò  Î  ÎË››Ê››Ê––Å––Å••Ä““““‘‘Á¾¾ŒŒ¼ŠŠ»ŠŠº‡‡·……µ……µƒƒ´²°~~¯}}®||®{{¬yy«xxªuu¨uu§tt¦ss¥qq¤pp¢pp¢nn¡llŸkkžiiœiiœgg›ff™dd˜cc—aa•``”__“]]‘]]‘[[[[YYŽXXWWŒWWŒUUŠUUŠTT‰SSˆRRˆQQ‡QQ†PP…NN„MMƒMMƒLLKKIIJJ€GG~FF}FF}EE{DD{EE{DD{AAxAAx>>u??v==u<.9,1(/'4(9,5? 5C 9H =M ARFXK^QdViZm^par!cu!et"eu!et!dqcn_jW`R[NTHN CI >D :?5<3<3<3<2<2<2<2<2;17,)/, >A7<9,A8*:1&+0$70+:73;95=<555+ !:2-MCGSV_NJRM=@?1.20/477 '%#  $(($60(LZL5A4* ),)  ' (  +:4CWN%?3*@;%;0%>*)  #2.3;@PBLe:DV35>.02(./),-  +E;C]Yac`fb`g^\c\Y`XRYVPUYQUWSVVSXSRXKKTFFODDK:9B--3''.""+  '& @2I6 I6 I6 I6 th`¹¸ãººæººæººæ¸¸ä´´à¯¯Û««Ø©©Ö¢¢Ð•“¸rimQ@ I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 K8xmk«ªÒ¯¯Ü°°Ý­­Ú®®Ú®®Úªª×­­Úªª×ªª×¨¨Õ¦¦Ô¦¦Ô¤¤Ñ££ÑŸŸÎŸŸÎ››ÊššÉššÉ––Å••Ä••Ä‘‘Á¿¿ŽŽ¾‹‹»‹‹»‡‡·††·††·……µ²²€€±~~¯}}®||®{{¬yy«yy«vv¨vv¨uu§tt¦ss¥qq¤pp¢nn¡nn¡llŸkkžiiœhh›hh›ffšee˜ee˜dd˜aa•aa•``”__“__“]]‘\\‘[[ZZŽXXXXVV‹VV‹VV‹UUŠRRˆRRˆQQ†OO…MMƒMMƒMMƒLLIIJJ€IIGG~GG~HH~EE{DD{DD{DD{CCzAAxAAxAAx@@w@@w>>u>>u>>u<I6 I6 J7J8K8M:N<P>A<&;O"Gd*Qn4[y>e„JqŽW|™gФw—°†¤»–±Æ¥½Ï³ÇÖ¾ÐÝÈ×âÐÜæÖáéØãëÚäíÙäíØãíÕàëÏÜèÈ×ä¿Ñà¶ËÛ¬ÃÖ¡»Î•±È‰§À~ž¸p“°fЍZ€ŸOu•Cj‡:`}1Xv)Pm"Gd@Z9S4K/E+@(< (; '; '; ': ';*;or^«¢rµ­y¶¯|·±€½·‡¸²‚´©|Ĭ‰Ø±šã³¢Û«›Áš‰gTSG2F@-KH8USGWVONLHC>3=4)@9271*5,#:-"C1&I4)K7*J7*D4'?2";.<(!:*< 1A 6G ;K @OCUHYM^QbUfXhZh[j\j\iZdV`T\OWJRGM BH >D :?5<3<3<3<3<2<2<2<2;16*'! 0/ ' %-)%!,/1.14.0/-0-#$"65?>FY=Oh;MfEK]KBI;0.'# ,00## %($)D._YKSZM5G40M:5O9  217,*)!VTbhiuin„P_u&BB62Elj2VO"$ /&2AE  4.-=9;<9@?@G@CLCLZBJ]./:!  "+7:>  3!=6;ZV_c`ffbfb_d_\b\X]YTV[TX[V[[Y_YX^RQXLJSKJP<>u>>u>>u<X#He+Ro5\z?f„LrY~šh‹¥x™±ˆ¦¼˜³Ç§¾ÐµÈ×ÀÑÞÊØãÑÝç×âêÙãëÛåíÚåíØãìÕßëÎÝèÈ×ä¿ÐàµÊÚ«ÃÕ ºÏ”°È‡§À|¸o’¯d‰§YžMt“Ah†8_}0Wu(Nl!Fb?Y9R3K0F+@)<); (; (; (; '; ':DVV¯°ŽÃ½–ÉÞÃø¸Œ§§x¦¥x·©‚έ‘Û²žÛ¬šÉ—€™rZ_K4>6#:1"8/4+0)/*/+AB5KOEDGAX[WX\[Z\[UQPWNMUHCKA4<3<3<3<3<2<2<2;1:01 '!"%  ! '(& %##&,-3,+-'$!!)''$$$ %@BTBM_6@P987"&02) % ) 6[D5b^_]cfm‰^a…IHtK-Q50H5  !.+-6;@+/4&%0Shk@[UFh_3VRHlg%O>9]Y*NK+@>'3,/E@CHDFDAC?>u>>u< 4@?Y#He+Ro5]z?g…LsZ~›iŒ¦z™²‰§½™´È©¿Ñ¶ÉØÁÒßÊØäÒÞç×âêÛåíÜæíÛåì×âêÔàéÍÛçÇÖä¾Ñß´ÊÚ©ÂÔŸ¹Î“¯Ç†¦¿{œ¶n¬a…¢Tz—Jp@g…7^|/Vt'Mk!Fb>Y:S4K/D,@)<(; (; (; (; '; ':#:D†‹q–’qžœ|œ¡š ¤¬´¹œ½»¢Ê½ªÕ½¯×·©Ì§–§…qiXE;7)5/"2+/)-',%,&.&1'1)0+35*IPFT[SITSINL??;B?6EB:HGAFD@>02D$8< 2A5E 9H =K @N AO CPDQESFSFRFQFODNBJ ?G =D 9@6=4<3<3<3<3<2<2;1:15,) "#   # 031/76&%'./1><<687,.- #$.%.) 6.!XYCU_E:J3&3    +'%')+"*6"59.Yp[k‹QYzX>Z>%9&!# #33?;ANQS_dhzVohBdW7]G2^E/ZG)B: "+%!3/2HDHJEIHBDE@CC@D?=B88?12:"$) .'!2*&)"$& &%.NMVb`gecic`fcafb_c_[^_Y[]YZ_\_\Z_TSWJB3H7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I7VF'†~ƒ°®Óººæººæººæººæ··ã³³ß²²Þ ½gZMI6I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 J8aTH‹²’’Á““ÂÀ““ÂŽŽ¾¿½¿ŽŽ¾ŽŽ¾À‹‹»ŽŽ¾ŠŠºŠŠ»‡‡·††·‡‡·……µ††·ƒƒ´……µƒƒ´²€€±€€±€€±}}®||®||®}}®~~¯zz«ww©zz«ww©uu¨uu§ss¥rr¤pp£rr¤oo¡mm nn¡llŸkkžkkžhh›gg›hh›hh›hh›gg›dd˜dd˜dd˜cc—cc—cc—``”__“__“]]‘\\‘[[[[[[ZZŽWWŒVV‹VV‹UUŠVV‹UUŠQQ‡QQ‡QQ‡QQ†QQ†PP…MMƒMMƒLLLLLLIIIIIIHH~FF}FF}FF}EE{EE{EE{CCzCCzCCzAAxAAxAAxAAx??v>>u>>u<f„6^{.Us'Mj!Eb?Y9Q3J/D+?(;(; (; (; (; ': ':*9SZ@g^J ?J ?J >J ?J ?G 4<3<3<3<3<3<2;19/3)+ &'"*$0' /$-".$.#,!"  %#)/0"(- $KEJYX[VTWMLN*32#)' *J=){oHo„7'@ &;,#9, ++)"#%!O]M[cPKL@+/$Z]O;I9(##-,.,*-/+,61367>;>F9AF-78,42  9)cK:tlf49@#602MKKPMLHCDFABEBE??F58A,0;!&-&,<#(8'  "!)IHQZ[d]\eb_fccia_ea`c`_bXQGL<I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 SB!}sq­«Íººæººæººæµ´Ý‚y|P?I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 UD(„~”ššÉ˜˜Ç––Å••Ä’’Á’’ÁŠŠ»‰‰¹‰‰¹‡‡·‚‚³‚‚³ƒƒ´°‚‚³||®~~¯||®{{­~~¯||®~~¯xxª{{¬yy«uu¨xxªuu¨uu§rr¤qq¤tt¦rr¤pp£pp¢pp£oo¡mm nn¡kkžnn¡jjjjiiœhh›gg›hh›iiœffšff™ee˜cc—dd˜cc—cc—aa•]]‘]]‘aa”^^’\\‘\\‘YYŽWWŒ[[XXYYŽZZŽWWŒWWŒUUŠUUŠUUŠUUŠUUŠSSˆRRˆQQ‡PP…PP…NN„MMƒMMƒLLLLKKKKIIHH~FF}FF}EE{EE{FF}EE{CCzCCzAAxAAxAAxAAx??v>>u>>u>>u<(; (; (; (; (; (; ': '8>G57155-AB6JL>LMCCEABB>??=9751-,,(#+%/(3)6,7,9. A:+C<.A6%=4#5-5*7&7#7(9 -< 1? 4A 7B 8B 9B 7B 8A 7@6>4<3<3<3;2;2:17-3), !%   " &-#6-;3&<2';/'6*"0$(   ! #)627>$(72;-+1;><0>5$5*( ;>:?F,mq83N+5U=1J5!# " '"!649ADKCKPb_PRF='>WN% )"$1++5-.:34=88;:=47?G9=G9;E57?(,5!  !>?KSR\ZX`cbh]YSO@!I6 I6 J7P>M;I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 N<uiaš•©’‹™[K/I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 M;wml¤£Î¤¤Ñ££Ñ  ÎË™™Ç––Å””ÿ‹‹»ŒŒ¼ˆˆ¸……¶……¶²}}®°xxª{{¬ww©uu¨uu¨tt¦tt¦qq¤qq¤pp¢nn¡pp£pp£pp¢nn¡mm mm kkžhh›llŸjjiiœgg›ff™ff™gg›ff™dd˜dd˜dd˜dd˜bb–cc—bb–aa”bb–``”cc—__“__“__“\\‘YYŽ]]‘\\‘ZZŽZZŽWWŒVV‹XXVV‹WWŒVV‹SSˆRRˆOO…QQ†RRˆRRˆQQ‡PP…OO…OO…MMƒNN„LL‚LLLLLLLLKKJJ€FF}FF}FF}EE{EE{DD{DD{DD{BByAAxAAx@@w??v??v>>u<?~vZŒ~\’Šf«©{ÄÀÎËŸÍÊ¢ÈÙź™Å±šÂ¦—´–†Œt^WP;AD2]_M|wfƒm~{iiiWDG8++!+*/0%47.;>7>C=BECBCBCDDIECHH@IJCHE<<3&I@2IF<>?:0'3%1#/./2"3&5 )5 +7 -8 /8 /8 06 .5 ,2 )/ %*"&!     !(."5);. =0";0#9/$;1&;2(5,$.#'   ! 00-)23#(!GGJJRWF=@G"#$ ,&&400<78B<>D?BCCG%*3@I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 _P8Ÿ›·²²Þ°°Ý««Øªª×¤¤Ò¥¥Ó¡¡Ï  Î˜˜Ç••Ä””Ó“ÂŒŒ¼ŠŠ»ŠŠ»……µƒƒ´‚‚³}}®{{­zz«tt¦tt¦qq¤oo¡nn¡mm jjgg›iiœgg›ffšdd˜cc—cc—bb–aa•dd˜dd˜dd˜aa•aa•bb–aa”aa”]]‘^^’__“]]‘[[XX[[[[[[XXWWŒVV‹VV‹VV‹WWŒTT‰VV‹VV‹SSˆSSˆRRˆRRˆVV‹SSˆRRˆPP…PP…OO…LL‚OO…PP…OO…MMƒKKJJ€IIGG~IIIIHH~HH~FF}FF}FF|BByAAxAAxBByDD{DD{BByAAx@@w@@w>>u@@w??v>>u<C@?988*)+  !.$%823=9:C?@FDHDGM=CI49B,3:#&  )&(FBCKGFHBDFAEDAFBBH9f„KqŽX}šh‹¥w˜±ˆ¦¼˜³Ç§¾ÐµÈ×ÀÑÞÉ×ãÐÝæÖáêØãêØâê×âêÔßèÎÛåÈÖâ¿ÑÞ¶ÊØ¬ÂÓ¡¹Ì•±Å‰¦½|µo’¬dˆ£X}›Nt‘Ck‰9b2Yy)Qo#IgC^;V4M/F,@)<(<(<(; '; ': ': ': ': 5>‡‰e“‘g¡¡|³µ‘¿¿¢¿¾¥»º¡³³–¬§ˆª ©—v¤pšˆh“‹k–’t™–|—–’‘xˆ†gkmH:@#*('$#"$%**10':8.76-)%&#*$,$0%4&8):*9(6%1#+ '%$//)&'"$                '!.'/*!/)"3*!/%3'3(2'1(2)72%:3*4*7+6),%& !#%'&  !53E9AU;KSA\]0WQ+GD*81/-'B97HBA==A+,0  $A4/E>>IEFIDD@=<.-0    %"$826A=@GFICKV@KY:FQ3#)  # $>:>u>>u>>u==u??v>>u==u<1.0"  ,&&6/0C<>HBCIDF@?B004""%  "#427><@?BH;FU=HU:AK5>I1=J"*4   715@>CC?BGBDCAEBBI;?H27B-/: & >. I6 I6 I6 I6 I6 zol°®Óººæººæ¹¹ä³³ßªª×ªª×¥¥Ó  ÎË››Ê––ÁyrXI1J7I6 I6 I6 I6 I6 I6 I6 I6 J7 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 XG*™”¦¹¹ä··ã··ã´´á´´à´´à¯¯Ü¯¯Ü¬¬Ù¬¬Ù¨¨Õ¨¨Õ¥¥Ó¥¥Ó  Î  ÎË››Ê™™Ç™™Ç••Ä””Ã¾ŽŽ¾ŠŠ»‰‰¹……µ€€±€€±||®{{­{{¬vv¨tt¦rr¤oo¡nn¡mm gg›ee˜cc—aa”aa”[[[[YYŽYYŽVV‹UUŠRRˆRRˆQQ†OO…LL‚MMƒLLKKLLJJ€GG~JJ€FF}FF}FF|EE{DD{FF}FF|FF|FF|EE{DD{EE{CCzEE{CCzBByBByAAx@@w>>u@@w>>u==u@@w@@w>>u??v>>u==u<(<(;(;(;(;':': ': ':+<€ƒr«©Œ²²™³³ °±¥®¯ ª«–§£…¤™w¢“r p›Šl–…hƒh„€ij{|f{ydtt]adMMR=:?(2:!=A(LN1UU4UT3LI'@:2-'$34+44-! ' ' % "    !    ! &&   ""/)5-$5,$-$' ,$7.(/$,"$"%#$"%%#!() 61(1'*! !"$&(+ ."1$ 4' 0"$ !7/3=9?748,),>8ALHNKGJ=;?0.2   /&'C:;F@AECE@?B337&&*  /.425=8@M;AM;AL:ES7EW/:H%-5  /-1>;?A>@B>B@?D@BL=AK27A,.8#!7) H5 I6 I6 I6 I6 I6 I6 I6 TC"vv¯­Ñººæººæ··ã··ã¬¬Ù¡¡Ï››Ê••ÄÀ¿Œ‹¸wq…WI5J7I6 I6 I6 I6 K7 zWvT™llML8 J6 I6 I6 I6 I6 I6 K8ut³²Ø··ã··ã´´á´´á´´à´´à¯¯Ü®®Ú¬¬Ùªª×ªª×¥¥Ó¥¥Ó  Î  ÎËË™™Ç™™Ç••Ä••Ä••ÄÀÀŽŽ¾‹‹»‹‹»ŠŠº……µ……µ°||®{{¬yy«uu¨tt¦qq¤pp£nn¡jjhh›gg›ee˜cc—aa”__“^^’\\‘YYŽVV‹WWŒVV‹TT‰RRˆPP…PP…NN„LL‚LLKKIIJJ€FF|DD{CCzCCzAAxCCzBBy??v??v>>u<>u==u==u<X9Q2I/C+>(;(<(;(;(;':': ': '9)9ltTš›g¡¡t¨§ƒ¦¥‡¡ ƒ“•u‚†g}}c†~h“…p’†s†tˆƒq~kzzessZsqWsqYjkTX\GFJ96>-?D1JM7MM5KJ2@>)0/#!  02&      ##%#  (!-$4*4+!0%0'1&- '&$$"$"+(#$' '!21(,$.$)" !#%'), /#2% 5' 8) ;, 1# *$+706518,+3&%*4/:KIRIHN=<@/-1  (!"?89GABHEHBAE46;*,2 ,-302;/3?4:G;DS9FV3>M1=C?==B7 H6I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 P>{pmª¨Èººæººæººæ¸¸ä¬¬Ù››ÊÀ¿ŒŒ¼‡‡·ƒƒ°VG2I6 I6 I6 I6 L8 ¦uxU}Y}Y„^¡rR< I6 I6 I6 dU@¨¥Ã¸¸ä··ãµµá´´á´´à´´à¯¯Ü®®Ú¬¬Ù¬¬Ùªª×¨¨Õ¥¥Ó££Ñ¡¡Ï  ÎžžÌ››Ê››Ê••Ä••Ä‘‘Á‘‘Á‘‘Á¾¾‹‹»‹‹»ŠŠ»††·††·……µ²€€±~~¯||®yy«ww©tt¦rr¤pp¢nn¡mm kkžhh›hh›ffšee˜cc—aa•]]‘[[[[ZZŽWWŒUUŠQQ‡RRˆPP…MMƒLL‚KKKKJJ€GG~EE{FF}FF}DD{BByAAx>>u>>u==u<X9P2H-B*=';(: (:(:(:': &; &; &;(:dncžŸŸŸƒ™˜|‘‘q~`_fCQU5QQ6g\E~mT†x`†~h‚j|ivtaehRY^IZ\J]^O[YJAB3.074$KD4QK;NNB)/%    .-%>=<   (&#!   "$$&&!0($%#"! !()1/&)$("$ +(#&)' #$%(*-!0#3% 6( 9* <, >. @0 8+ /*25160.3)&+42?KKVIGN;<@FDKGFLBDJ48?(,4% ,-4.08/3=37B8?L:CS3 I6 SB"ˆŠ¶µà¶¶â··ã´´á´´à²²Þ°°Ý®®Ú­­Ú¬¬Ùªª×§§Ô¥¥Ó££Ñ¢¢Ð¡¡ÏŸŸÎžžÌ››ÊššÉ––Å••Ä””ÃÀÀÀ‹‹»‹‹»‡‡·‡‡·‡‡·……µ……µ‚‚³²²}}®||®||®zz«xxªuu¨uu§ss¥pp£pp¢jjhh›ff™ff™cc—cc—``”]]‘]]‘\\‘ZZŽWWŒTT‰TT‰RRˆQQ‡QQ†LL‚KKHH~FF}FF}FF}FF}DD{AAxAAxAAxAAx??v==u>>u;;r<e„5]{-Uq&Lg!E^=V6O1G-A)<(;(; '; '; &; &: &: &9 &9 (9VcV™™y™—~–“}ŽŽw}€jemXX`MY_PgfXtq^}xe{i{xesr[aaGIJ179#35!<9%D=(JD1CB2:9(?;,98*-1$68112.   ""392  $% $ !         #+(.*$!     !"))%""&$+&+&-+.+%      !# &(+ ."0$ 4& 7( :+ <- ?/ A0 C2 C3 4& ,(,2-2-,2%%,1.=GGHOHIO@EJ27?)/8 (   7BS4:E3:F0:H->u==u;;r<eƒJqW|˜e‰£v–°†¥½–²Ç¤½Ð¯Æ×ºÎÜÁÒ߯×âÉÙãÊÙäÈØãÆÕâÀÒàºÍÛ²ÇרÀÒž¸Ë‘®Ã…¤ºyš²mªb†¢W}šMtDkˆ:b2Zv*Qm$IdA[;S3J/D*?(; '; '; '; ': &: &: &: &: &: ':N[WrŽpŠˆi…ƒc||[ssTsrVsqYus[wu`zudzuixtioj]]YIEI:27()*.,83!C<+LE6PMCED>&( &#><80.*  (#  %( * ) ' % # !           "% /*!     $/2,"&'''$("%$"  ,.&!$$(#'%)+*-'," /#2% 4' 8) :+ =- @/ B0 D2 E3 F4 F4 4& ,)2,-4((0##) /,8EFRCDO9;C.18") "$BKS?DMCDMDHP>EL4=I.>N"0 BNcO^‡IW}EQi8AI)06,04-2729A7BK9GT8N_*CU0N\U{cˆ£c‰¤b‰£cˆ¤`„¡[€œTfmJA#I6 I6 I7J7I7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 L:l_P‘‹˜Š‚‹YH+I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 RB'xsŒ‹‹»À¿••Ä——Æ››Ê  Î¢¢Ð¦¦Ô¦¦Ô¨¨Õ¥¥Ó¤¤Ò¢¢Ð¡¡Ï  ÎœœË››Ê™™Ç˜˜Ç˜˜Ç••Ä••ÄÀ¿ŽŽ¾ŽŽ¾ŽŽ¾ŠŠ»ŠŠº††·……µ……µ‚‚³²€€±}}®||®||®yy«vv¨vv¨uu§ss¥ss¥qq¤pp£pp¢pp¢nn¡llŸjjiiœiiœgg›ee˜ee˜dd˜bb–__“]]‘]]‘]]‘[[VV‹VV‹SSˆSSˆQQ†QQ‡LL‚MMƒIIHH~GG~GG~EE{EE{AAxAAx??v;;r<57(10"14)10$94&LB2QG8EB5591296*/-!'%&%24%FH@=<130 3--&% " )".') + * + ) ' & $!   ('" !!"$#)274     (#,+&$"$&'-16'$+(,&*(*/.424-3& 6( 8* ;, >. @/ B1 D2 E3 F4 G5 H5 G4 3&  "%008E+/9'*4 &/ #*/LWeLZkJYjLZiBSe.EU#+6AFQ]cX^cV\]JW`M^jQerSgxRj~Jez?Ve[n~[k|XfsT_iWagZcgZeiVchXej[jq`q|ezŠf”hƒœcƒŸg‡¤i‰¨iŒ¬g‹«eˆ©_v†QM7I6I6 I6 VE&Šƒ‹™±ˆ€ŠZJ.I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 K8i`fƒ‚®††·……µ……µ……¶ˆˆ¸††·‹‹»¿¾••Ä‘‘Á••Ä••Ä——Æ››Ê››Ê™™ÇššÉ˜˜Ç––Å••Ä““‘‘Á¿¾ŽŽ¾‹‹»ŠŠ»ŠŠ»††·……µƒƒ´ƒƒ´‚‚³²€€±~~¯{{¬{{¬zz«xxªvv¨vv¨uu§qq¤qq¤pp¢nn¡nn¡nn¡kkžjjiiœhh›gg›ffšee˜dd˜bb–bb–``”__“__“]]‘ZZŽXXWWŒWWŒVV‹RRˆRRˆNN„NN„LL‚KKKKJJ€FF}FF}CCzAAxAAx@@w@@w>>u@@w<.D4L:TC^'Mi0Wv>,+- )*38-IPGJL@DF2FF0DB,MM9TYM??4($( ) ) ,#<0$)( ' & #! !    #"&($((&("$,,(#(#//17,%*%*57*(+#  *+01557/:+ <, ?. A0 C1 D3 F3 F4 G5 H5 H6 I6 G5 JB+WbiHauG]n@P\=IRIT``m~hyo„Ÿv”³y–·t’²pŒ©j€–dr€^goX_cgr|j|l–k~–u‹¥q‰¢j~™eveuŽbrˆYgyS\mPXdQV_NR\JNXJOXFLUGP\O\jQ^nPTgNN_X]l`ix[e|V^pOK~ts®­Ò´´á´´á´´àª©Ñ†ŒYJ/I6I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 J7[M;„‚¥ŠŠ»‡‡·††·ƒƒ´ƒƒ´ƒƒ´²²€€±°²~~¯²²‡‡·ˆˆ¸ŠŠ»½¿‘‘Á““““ÂÀÀ¾½‹‹»ŠŠ»‡‡·……¶……¶„„´ƒƒ´²€€±€€±||®{{¬{{¬yy«yy«vv¨uu¨uu¨tt¦pp£pp£pp¢nn¡llŸllŸkkžiiœgg›ffšee˜dd˜cc—cc—bb–aa•``”``”__“]]‘\\‘[[ZZŽZZŽXXVV‹UUŠUUŠRRˆQQ‡QQ†NN„LL‚LL‚IIIIFF|EE{DD{DD{DD{AAxAAx<6%4 (<,B2J9R D_)Ol1Yw;b‚Dl‹Pw•\‚ h©v™³„£¼‘®Ã·Ê¦¾Ñ®ÄÕ´ÈØ¸ÌÚºÍÛºÌÛ¸ËÚ´ÉØ¯ÄÕ§¾Ðž·Ê“®Ä‰§½ž¶s•®g‹¦[Qw•Em‹;c‚2Zw*Qn#Ie@\:T5M0F+@(< ': ': &: &: %9 %9 %: %: %: %: &:HTQ||d||e{zeywavt]roXojTnfPi\GhWDl]JndRmgVjeU]ZICD257%<;(PJ5aX@f_G`^LORD8>19<-?A/GG3RVBYcUAKA/4%*,$#97/SKF60)'-!. * 60&>6/)#/'") &"!        ,+'*$2+2,+)"!   -+' !$(&*(2,5*1=52627:6+.-=CBZbfKTZ595=>-@?-D?*A7@0 B0 C2 E3 F4 G4 H5 H5 H6 I6 I6 I6 J8PL.I7I6 I6 K9pdY¨¥Å··ã··ã²²Þ±±Þ±±Þ®®Ú¨¨Õ¤£Î‡]M5I7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 TC#ˆŽ££Ñ••ÄÀŠŠ»ŠŠºƒƒ´ƒƒ´²€€±}}®zz«||®{{­{{¬yy«zz«}}®||®€€±²‚‚³……µ††·‰‰¹ŒŒ¼ŽŽ¾‹‹»ŠŠ»ŠŠ»ˆˆ¸††·……µ……µ‚‚³€€±°°~~¯||®{{¬zz«vv¨uu¨uu§tt¦tt¦ss¥pp£pp£nn¡kkžkkžkkžjjhh›gg›ffšee˜dd˜bb–aa•``”__“]]‘]]‘]]‘\\‘[[[[ZZŽXXWWŒVV‹UUŠUUŠUUŠQQ‡QQ†QQ†NN„NN„LLLLIIIIFF}FF}FF|AAxAAx>>u@@w??v@@w>>u<Y8Q3K.D*> ': ': &9 &9 &9 %9 %9 %: %: %: %: &9LVQvvdvveuudsraqp\nlWhfP_\FVQ;VN8^W;ea@feDbcBZ\00(!   !##)%)%'"!%$ 59:,/0-.%BHCSY[Y\bFGGDA6GC4KJ9UVEYWDOB%D3 E3 F4 G5 H5 H5 H6 I6 I6 I6 I6 I6 I6RC'jcZvuwv{„pz‹q{jq…acqTQWJGGHB>LGEYVWZ^f`kwcn~`hwoqvqopgegpmkuofiaXfXOl\JbTBVL>ZOB]QCPJAd`Vwtfzxogjimqoz|vy{sg`MN=I6 I6 I6 I6 xmg¹¹äººæ´´á³³ß²²Þ¬¬Ùªª×¨¨Õ¦¦Ô¡¡ÏËœ›Ç…‘^O9J7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 K9vjc±°Õ··ã¶¶â´´à¬¬Ù££Ñ••ÄŽŽ¾††·‚‚³€€±}}®||®xxªvv¨uu¨tt¦uu§tt¦ss¥pp¢ss¥pp£uu§zz«||®}}®°€€±²……µ……µ‚‚³²²€€±}}®||®{{¬{{¬xxªvv¨uu¨tt¦tt¦ss¥pp£pp£pp¢llŸkkžkkžjjjjiiœhh›ffšffšdd˜cc—bb–aa•aa•``”]]‘]]‘\\‘[[ZZŽZZŽXXWWŒWWŒVV‹VV‹UUŠSSˆRRˆQQ†QQ†PP…PP…PP…LLLLLLLLIIFF}FF}DD{DD{CCzCCzAAxAAx>>u<.C2H8P>X$Hc+Qm3Zxe‚4[y,Tq&Li!E`=V7P1I-B)= &: &: &9 &9 %9 %9 %9 %9 %9 %9 %9&8RXSpocpobonanmalk]jhWebQZXDKK6KN2TW3[`6[b8[a:Y^9TY5NR/UU6][Ab]Be_Ab^ATT=AD239(=B2EI@EC4EB*AC'W];‘k§¢—myxK;B%%D@?NQWEMYKTdS]oCN_RXbUX`@FRIINSKH=88>67XIAmha\\\@DL@FOpqpb]PPA I6 I6 I6 I6 I6 I6 O=wke©§Æººæ´´à®®Ú¬¬Ù¦¦Ô  ÎŸŸÎžžÌ™™Ç””Ô”Ó“À„“`R=J7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 `Q9œ˜­¸¸ä··ã··ã´´á´´à²²Þ¯¯Ü§§Ô  Î““ÂŒŒ¼††·~~¯zz«vv¨uu§qq¤nn¡pp£kkžllŸkkžkkžjjkkžkkžhh›kkžnn¡nn¡pp¢tt¦xxªww©||®||®}}®zz«{{¬zz«xxªww©uu¨uu§ss¥qq¤pp£oo¡oo¡nn¡llŸkkžjjhh›ffšffšee˜ee˜dd˜cc—aa•aa•``”__“]]‘\\‘\\‘[[ZZŽXXWWŒWWŒVV‹UUŠSSˆRRˆQQ†PP…PP…PP…PP…NN„MMƒLL‚LLLLKKIIIIFF}FF}FF}FF}EE{DD{AAxAAx??v??v>>u>>u>>u==u</E5LUY.9;+RQ9voN‡fŽ‹nŒjŸm·³€¼¹†³±ƒˆŽi5?%#!# & A<2B>7"   " ',%1-),%!##!  (3$2%5/%! !%)%*/8'6<9   +&60,,"1(4+>9(VVLXUPME?E<6E?3E?-ED,NQ9kpY_aARHH6H6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 H6:;,!:E6E9F>PI_NkPoRqSrPoNkLiB^RDZLfOlIi GdEQA:!I6I6 I6 I6 I6 I6 I6 I6 I6 I6 N<uia¨¥Ã³²Þªª×¦¦ÔŸŸÎ˜˜Ç––Å••Ä““¾‹‹»½½…€—UD%I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 M;†}‚·¶à··ã··ãµµá´´à²²Þ²²Þ¯¯Ü®®Ú¬¬Ùªª×¨¨Õ££Ñ••ÄŠŠº~~¯||®uu¨uu¨pp¢nn¡llŸjjhh›gg›ee˜ff™ff™ee˜ee˜dd˜cc—ee˜hh›hh›iiœllŸllŸqq¤oo¡tt¦uu§uu§ss¥tt¦qq¤pp£oo¡nn¡mm kkžkkžiiœhh›gg›ffšffšffšdd˜bb–aa•aa•``”``”]]‘]]‘\\‘\\‘[[ZZŽWWŒWWŒWWŒVV‹UUŠUUŠRRˆQQ‡QQ†PP…PP…MMƒMMƒLLKKKKKKKKIIHH~FF}FF}FF}EE{EE{DD{DD{AAxAAxAAxAAx@@w??v>>u>>u<X]>Z[7\\3\]3Y]2OV+GM'MM/YT:]ZBc`M]]Pa`Pxt[ŽŠiš—q¡¡vª¨´³‘º¸’­¬}Ž^\c8EO=:=<# " # C<2@>>)"# ' ' '965=::.))       !   #"  ! ')*,'+ $+1* "! & 0)C=7^6R 4L 1D 2A 5E 8I >S B[GdNqV€X†V… Rw.B;G7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 N<sg^¢Ÿ½¬¬Ù¤¤Ò››Ê““¾¾ŽŽ¾ŠŠ»††·‡‡·|x–SC%I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 i[J«¨È··ã··ã··ã´´á²²Þ²²Þ°°Ý®®Ú¬¬Ùªª×ªª×¥¥Ó¤¤Ò¢¢Ð¡¡Ï››ÊÀ‰‰¹}}®xxªpp£pp£llŸiiœgg›ffšaa•dd˜aa•``”^^’__“__“]]‘aa”]]‘aa”aa”aa”dd˜bb–ff™hh›jjkkžoo¡nn¡nn¡llŸjjkkžkkžiiœhh›ffšff™dd˜cc—cc—bb–aa•aa•``”__“]]‘\\‘\\‘[[[[XXXXWWŒWWŒVV‹UUŠRRˆRRˆQQ‡QQ‡PP…PP…PP…LL‚LL‚LLKKKKHH~HH~FF}FF}EE{EE{EE{DD{DD{AAxAAxAAxAAx@@w??v??v??v<X7P2I,C)> &; &; %: %9 %9 %9 %9 %9 %9 %9 %9 %8!25FJ0>@'65!;8%LC1_Q?fXFg[HdXD^U=YU7XX3V[2T[2X]7]^=``=^^6W[0SX/VX2ZZ8\Z<_ZAjeM|ycˆ‡s”“x œw§¤xª§yª§{£¢|”–tfkQ19$#,'IIH::;;;;A?;#!/($ *%$2..!  !!!    (('!0*602.)( 211(#2-+', /#5(<3":,A4NB.L?-H>-jk`^b[AD:CH6>E+t|b‡ƒd†ƒX‰‡N”“bwYR>I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 F70C;TpXXV~Ou Dh >^8R1H /C /? 0> 4C 8J ?T C\ HeMpUV…Qz&EHE8I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 M:ocX𖳤¤ÑË¿ŠŠºŠŠº‰‰¹§aVSK8I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 SB ‘Š—¸¸â··ã··ã´´á²²Þ²²Þ²²Þ¯¯Ü¬¬Ù««Øªª×§§Ô¤¤Ò¤¤Ñ¡¡Ï  ÎžžÌ››ÊššÉ˜˜Ç••ÄŠŠ»ƒƒ´xxªtt¦iiœhh›ee˜cc—cc—aa•]]‘]]‘\\‘\\‘ZZŽ[[XXXXWWŒWWŒYYŽZZŽZZŽaa”aa”aa•dd˜cc—ee˜ee˜hh›hh›hh›ffšee˜ff™dd˜cc—bb–aa”``”__“]]‘\\‘\\‘[[[[ZZŽZZŽWWŒWWŒVV‹UUŠSSˆRRˆRRˆQQ‡QQ‡QQ‡QQ†NN„MMƒMMƒLL‚LL‚KKKKKKHH~HH~FF}FF}EE{DD{DD{CCzAAxAAxAAxAAxAAx@@w??v>>u>>u<)B>'+1 %8(<-B3J:R@Z$Jd+Qm1Yu8a}@h„HoŒQx“Z›c‡¢kލs”­yš²ž¶‚ ¸…¢º…£»ƒ¢ºŸ·{›´u–¯m«f‰¤]‚žUy—KrCiˆ:b€2Zx+Sp%JgC^:U5M/G+B(= &: &: %: %: %: %: %: %: %: %9 $9 $7-:4FF+<<#75 B;*VJ9cVGe]Pe_Qd]M^ZCXY9TY1RZ.RZ.T[/Y\1\^5\_:Y^;T[4RW-KP'JN*WW9mjL€|\ŽŠj—”wŸ€¡y”‘f€VeiEFK/80?1B38.*$  .++)=939/-/%4,;1!;3!RMBC=3RE4L:%I7 @6b^N>:.AB*^^;ttD’_~yHwvDll6€}_p\ 2A7I @WE`IiLpTVƒIW@:I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 M:k_T•‘¯››Ê““†…´mfsP? I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 ti`°®Ò··ã··ã··ã´´á²²Þ²²Þ¯¯Ü¬¬Ù¬¬Ùªª×¨¨Õ¥¥Ó££Ñ¡¡Ï¡¡ÏËœœË››Ê››Ê••Ä••Ä””Ô”þ‹‹»€€±yy«qq¤iiœcc—bb–__“]]‘\\‘ZZŽXXWWŒWWŒUUŠVV‹VV‹VV‹RRˆSSˆQQ‡VV‹UUŠWWŒYYŽ[[\\‘]]‘aa”aa”cc—cc—cc—dd˜cc—aa•aa•__“__“]]‘\\‘[[[[ZZŽWWŒWWŒWWŒVV‹VV‹UUŠUUŠRRˆQQ‡QQ†PP…NN„NN„MMƒMMƒLL‚LL‚LLLLIIHH~HH~FF}FF}EE{EE{EE{DD{CCzAAxAAx@@w@@w??v??v>>u<Z8Q1J-D*? ': &9 &9 %9 %9 %9 %: $9 $9 $9 $9 $9'6;D3GI/CC-77!<8%PF5_RBdZJd[KbYF^W>UU5PU/PW.QX.RY/TZ0TZ.SY-QY.RY1TW5NP2MM/\[=rnNƒ~]Œ‡e‹f…„_tvS]eHPWD%*%%%#%%HQO@AH&& HLM65< ,./=<=$!$ &*./3&=3*<3/8.)1"++( & #  # 4)J?1>.4'$ +*"-,).#3&<2%SQJ91+90"6-4/WWY:.'D6E6A7>7 ON<[U7tm;}u8zt/€NLK%==@E5lmhŽ}tŒfSnM*O:I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 E7*822E ,?*: +: -< /=4B:NA[GeLoQxULb;<$I6 I6 I6 M;N<I7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 K8fYLpecZK5I6I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 ]N4¡¶¸¸ä··ã··ã´´á²²Þ²²Þ²²Þ¯¯Ü¬¬Ùªª×¨¨Õ¥¥Ó££Ñ££Ñ¡¡ÏŸŸÎ››Ê››Ê››Ê——Æ••Ä••Ä““ÂÀ¿ŒŒ¼ŒŒ¼ŠŠº‡‡·°yy«pp£hh›gg›aa•\\‘XXXXWWŒWWŒRRˆSSˆPP…PP…QQ†QQ†OO…PP…LL‚NN„LL‚QQ†NN„QQ†RRˆUUŠWWŒWWŒVV‹[[[[]]‘]]‘]]‘\\‘[[[[ZZŽZZŽXXWWŒVV‹VV‹TT‰SSˆRRˆRRˆQQ†QQ†PP…PP…NN„MMƒLL‚LLIIIIIIHH~HH~FF}FF}FF}FF}DD{DD{CCzCCzAAx@@w@@w@@w@@w??v>>u<9>7>7?9@E+#8:':+>0D4J:Q?W#Ga(Oj.Vr5]z;dBi…GoŒNu’V{—\€b…¡fФj§l©m©lŽ©jŒ¨f‰¥b…¡\U{˜Nt’Fm‹?f„8_~1Xv*Qn$JgB^;V4N/H+B(= %9 %9 $9 $9 $9 $9 $9 $9 $9 $9 $9 $804EL3IK1CD-99$53 C;'PE0YM8\P:ZO9UO5QN0PP.PQ-RT.VX0XZ2X[1TZ-RY.NU,HM'HI)VQ4fbIqlSytV}xVzy\aeLDH203 ;:+HG=%),.## "!KJL421 '#KGF744   +(";:<+(&&,. 0"1!/!. 2#9,$<1,1 ;/7,FC6OLP:0<4C?'EA&b\8‡}Y…w>€r3mf)Y[4Z__" B8 ‡w^ˆg[rQ6ZC!?0 E3 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 C5(/! +4 +9.< 5F>TD`IiOvTPm4@1H6I6 I6 M;zol¨¥Å«©Ë‰ŠWF(I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 O=ƒz|¶µÞ··ã··ã¶¶â´´á´´à²²Þ®®Ú¬¬Ù¬¬Ùªª×¨¨Õ¦¦Ô¥¥Ó  ÎžžÌžžÌžžÌ››Ê˜˜Ç––Å••Ä””Ñ‘Á¿¿ŽŽ¾‹‹»ŠŠ»‡‡·‡‡·††·‚‚³~~¯tt¦pp¢ee˜__“]]‘[[UUŠVV‹RRˆSSˆNN„NN„PP…MMƒLL‚LL‚KKLLLLLLKKIILLOO…OO…PP…NN„RRˆRRˆVV‹VV‹VV‹WWŒWWŒXXXXWWŒWWŒVV‹UUŠUUŠTT‰RRˆQQ‡QQ†PP…OO…NN„MMƒMMƒLL‚LL‚LLIIIIHH~FF}FF}FF}FF}EE{EE{DD{DD{CCzAAxAAx??v??v??v??v??v<Z8R2J.D*@ &; %9 %9 $9 $8 $8 $8 $8 $8 $8 $8 $8 $6/<2GK0HI.ED+<<&3353 @:'JC0PI6RM9RN9SO6TP4SP0SP/VT0ZY2[]4Y]1W]/TZ.RV.TV1ZZ6a]:b]=d`DdaIKK5=<(00((%$991VUW" % # #  @8.UTZ%$2 ,'IJE00/ " " &+#?7.0' + -!- ,,-/.5*!90+7/..% &$ # !  ! +:(?*7&=6--'$ " 2.&GED1'?9,RLOA3'C7#A5 9/SMBCB=B@0BA.TF)e7ŸI ˆ]ƒn:gY*F>IJ@DHS&"UB,kM5Žw`lXLE:$-)#"4+ F4 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 D5(2% 6D;T@]IjQx Qt-B>u<!?9=8=8>9@< NM+y~H–¤aH^L*:*=.B2G6M &: %9 %8 $8 $8 $8 $8 $8 $8 $8 $8 $8,3@H/HL.JL.HI,BC)8:#1184#@:*D@.GE2OL6XT:[W:YX8VW4WY4Y\5Z^5Z_3Z`2X_0Y`2]c6_d6_c6a_9a[:d\=a[CNG*E>$:62.('>>5Z\[" '!& $ ! !INNIOU+)'OLM662 $ ' ' * :3,A=;3,,&)))++*)(, 0'3*$+%"%( 3)!>/%@/$;*-!<;: # 52'IKN)$c`_:0/G:&H<&H;%B8$SUM95,L?$w]5“s>™x>¢•gyhOYI(A33$ LMDFFPYC5rT;qV9ƒubPFC5/)' *# 5+ D4I6I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 A6#;8EcKo%EGC8I6 I6 I7`Q9›–ª¶µàµµá´´à²²Þ®®Ú®®Ú®®Ú®®Ú¬«Ò‡‡WF(I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 O>tn€ŽŽ½À˧§Ô¯¯Ü³³ß²²Þ®®Ú®®Ú¬¬Ùªª×¨¨Õ¥¥Ó¢¢Ð  ÎžžÌžžÌË››Ê˜˜Ç••Ä••ÄÀ¿¿¿ŒŒ¼ŠŠ»‰‰¹ˆˆ¸††·……¶ƒƒ´‚‚³²€€±~~¯||®{{¬zz«vv¨ss¥nn¡ffš``”VV‹VV‹PP…PP…MMƒLLIIKKHH~FF}FF}DD{DD{CCzCCzBByAAxBByBByEE{BByCCzCCzDD{HH~GG~IIJJ€JJ€KKLL‚NN„NN„NN„PP…PP…NN„MMƒLL‚LLKKKKJJ€IIGG~FF}FF}EE{EE{DD{DD{DD{CCzCCzAAxAAx??v??v??v??v>>u>>u<0C3I7M=TC[#Ic(Oi-Tp1Yv5]z9a=eƒBi†ElŠGnŒIpŽJqŽKrJrIpFm‹Bi‡=eƒ7`~2[y-Ts'Nm#IgC_=X7Q2J.E*@ '; %8 %8 $8 $8 $8 $8 $8 $8 $8 $8 $8%66B0HO,HO,IO.IM.GH,>>&84 :3 ;6":6"B?(PL/ZX6^];]_:\^:[^;\_=[_;[_7W_4U^2Yb6]e<_e;ghEuoOwX‡`ŽŠr†}brMna?ZP2H?(:4 GG>Y^_%$(#& " "  */+GIJ.-(  )(# &!# # #  0*!@><:72&!&( (())( ())+!FC?)!- /"2$1$+ 0)"76:" $ % *!*#2- VQRQOSA=A@6"G<$N?'N@)KC-onjpYB‘q>œ{D’u?te4x|h?5.6(0% -$ ^bZbSSqQ9vX:nU7}o_PB@?1=/A0F3J7J7I6I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 A8@9I6 I6 I6 I6 k^O¸·â¹¹ä¸¸ä²²Þ¯¯Û®®Úªª×§§Ô§§Ô§§Ô©©Ö¬¬Ù¯®Ö‡‡XH*I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 J7f[[„ƒ¬ƒƒ´‰‰¹ŠŠ»‹‹»••Ä˦¦Ô««Ø®®Úªª×§§Ô¦¦Ô¤¤Ò¢¢Ð  ÎŸŸÎ››Ê˜˜Ç˜˜Ç˜˜Ç––Å••Ä‘‘ÁÀ¿‹‹»ŠŠ»ŠŠ»ŠŠ»‡‡·……µƒƒ´‚‚³²€€±~~¯}}®||®{{¬yy«vv¨vv¨uu¨tt¦ss¥llŸcc—bb–VV‹VV‹QQ†PP…KKHH~FF}EE{EE{CCzCCzAAx??vAAxAAx??v>>u==u<>u??v??v>>u??v@@wAAxDD{GG~FF}FF}GG~IIIIIIHH~KKHH~HH~IIGG~FF}FF}FF}EE{DD{CCzBByBByAAxAAx@@w@@w??v??v>>u<Y8R3L/F,B(< %9 %8 %8 $8 $8 $8 $8 $8 $8 $8 $8 %7$61GQ-IQ*HP+IO-JN.IL,HI*GI)HH'CD$<=:;BC$JM*PT,TY0V[4V[6V]8W]7Z^7[_6Z_7Za;Z_;``?mhM~u]Šƒm’|™™‹¢¡–¨ŸŠ “sŒ~[ziGgX8SI/WVE_b\,*-(($("% " #A>5[ce"%, ,0(IKM)(-!  ! " )#;94:72+%() ***)))).&<89&, ."0$3%/"GD@-&-*. /"2%3'3&7.fggihr5+!@6H<"LA%RB&o^:¦‘yžyQ›zC†m#N>u;;r::q;;r::q<>uAAxAAxDD{FF|FF}FF}FF}EE{EE{CCzDD{DD{BByAAxAAxAAx@@w@@w>>u>>u==u==u<*<,?1D4H8MY9S4M0H-C )> &: %8 $8 #8 #8 #8 $8 $8 $8 $8 $8 $8.4GP0NT+LS+LQ+KQ,JQ.MT0RX2VZ3TV0HL&8=02010337:>;6JC=+%!()) *!+ ((&=<71,/, .".$1'3'3'VQT*!"0$0$4&6(6(8*9.qi`:/'A5A6B9QB%x[3~O¬Žpk@v]3`I*M5WMBVQZ=*F2K6N@"}kb[Dce;_hI6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 P>vmu““‰‰¹„„´„„´……µ……µƒƒ´²„„´ƒƒ´„„´ˆˆ¸‘‘Á››ÊŸŸÍ  ÎžžÌ››Ê››ÊššÈ––Å••Ä””Ñ‘Á¿ŽŽ¾ŒŒ¼‹‹»‹‹»‡‡·……µ……µƒƒ´²°°°}}®{{¬zz«xxªxxªvv¨uu§tt¦ss¥qq¤pp£nn¡llŸllŸkkžiiœiiœee˜bb–VV‹UUŠKKIIHH~AAxCCzAAxAAx??v>>u;;r::q<>uAAx@@wAAx@@w@@w@@wAAxAAxCCzAAx@@wAAx??v??v??v??v==u==u<WA[ Fa$Jf'Nj)Pn+Sp-Ur.Vt/Xu/Xu/Wt.Vs,Tq*Rn'Ok$Kg"FbB]=X8S4M1H-D*? '; $9 $8 $8 #8 #8 #8 #8 $8 $8 $8 #7'3>u<>uAAx@@w@@wAAx??v??v>>u>>u<2 ?7"C?&JG)ML,MN/LL0JJ2JG5GC5C=2@:/>8-:5)71%5.#5."5.!72!@>$LM*UU.ZY2]Y5cW7gU;iU>iTAmXF|dQŒs\šƒi©‘x² ˆ¹²¢Ä¹ Í¿¡Ó ÔÀšÙÆ¢âÒµäÜÄåáÔáÚÏÔË´¼¯“™nuUylNrV–‡i«™~À³š –€~tYJG/&&$ &  QST !#*%MLR"*++ * - .!-"3-$IHO!$!#!$!,'0$[XT4+)4&4'2(2*6-<0@6QK)QC(RD+MC*|x[NBj\8nc LA"BCSiEVoWGEI6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 UD&{r{–•¿––Å””Ã’’ÁÀ‘‘Á••ÄËÇ|t|Q@I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 ZJ-• ´´á®®Ú¥¥Ó££Ñ››Ê‹‹»‹‹»ƒƒ´°€€±°°vv¨zz«||®{{¬{{­°††·ŠŠ»””Õ•Ä““ÂÀ¿¾½ŠŠ»ŠŠº‰‰¹……µ……µ‚‚³‚‚³²€€±}}®{{¬{{¬zz«vv¨uu§uu§uu§uu§ss¥pp¢pp¢nn¡nn¡llŸkkžiiœiiœgg›ffšffšdd˜bb–bb–aa•``”__“VV‹SSˆLLHH~FF}AAx@@w<+?-A0F3I6M9Q=U?YA] D`!Eb"Gc#Gd"Fc!Fb E` D^A]>Y;U8R5N2J/G-C+?(< %8 %8 %8 $8 $8 $8 $8 #8 #8 #7 #6$0**%7-8.8/;4 ?:"FC&KH)MI+NH/IC0CP?$P=L;L= LC"GEK?I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6UD'woz‘»¿¾ŽŽ¾ŽŽ½~y‘YJ3I6I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 K9~ts±¯Ö··ã··ã±±Þ¨¨Õ¤¤ÒžžÌ––Å––ņ†·~~¯zz«yy«zz«zz«uu§tt¦uu¨vv¨uu§ww©||®„„´‰‰¹¾¾ŒŒ¼ŠŠ»ŠŠ»ŠŠº‡‡·……µ……µƒƒ´€€±°}}®}}®||®{{¬yy«vv¨uu¨uu§ss¥pp¢pp¢pp¢pp¢nn¡kkžjjjjiiœhh›gg›ff™dd˜dd˜cc—aa•aa•``”__“]]‘\\‘ZZŽZZŽVV‹NN„FF}@@w<^V;{z]ŠŒ^—\—¤_™ª`™®a—±cµg¬Ào¿ÑyÑáƒÝêŠáîèð‘ðòŸñò¶ïñËìîÏÕ×¹z‡z$;E+>-A.C1F4I6M8P:SY?Y?Z?Y=WeZAi_Bj`@g\=cW<`T?`TC]SD[QAZO=]Q;ZS8{vjUO;^W9ogF‹\§™r¿±ŒÖÇ§åØ¿éáÐíêàíçØïåÓîáÈéÙ¹êØ¶ëØ´çÔ­ØÃ˜Æ·–{rRRK/?8 801,0'+"IFBHFP#& % "!HEB0/9"( ,! ,#_^_)#&+%(# +$ 4'9(WOGIBE<0A:"LL3Z`EdoQo{Zz‚_{„^£®–ƒ‰s~ˆ`|ˆ\|‡\}‡[|Š]`¤­—{†k†\‚W||Oˆ†`„qaX:^R.XN*[S){zYŠ‹t‹a‘¢n—¨s’¦pš©‰diNOL*M? M<K9I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 TD(tmy‡…ª€|aULJ8I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 bS=¤ ¼··ã··ã´´à´´à´´à¬¬Ùªª×ŸŸÎ™™Ç™™Ç¿²zz«uu§rr¤tt¦tt¦pp£nn¡oo¡pp¢pp£oo¡rr¤{{¬²††·ŠŠºŠŠ»‡‡·……µ……µ……µ²€€±€€±°{{¬zz«yy«yy«xxªvv¨uu§ss¥qq¤pp¢nn¡llŸkkžkkžkkžjjiiœee˜ee˜ee˜dd˜bb–bb–aa”``”``”__“]]‘\\‘[[[[ZZŽXXQQ‡PP…LL‚KKFF}AAx??v<-A/E1H4J4L5M6N7P6P7P6P6O4N3L2J0H/F-C*@(= &; %8 %8 %8 %8 $9 $9 $8 %8 #8 $7(4733J:2Q?3TB6WE8XH9YI9ZK:[N;[O;[O;[N9YL7VJ3SG1TH2QE/RG.RH.OH.MG.JF-JG.LJ/PO1SR3VV5YZ7\]:^^:\[5UT.JJ&88-,+)*()%)%*%*$=82@>;,(2.;7 HE*[W;woO˜Šhµ¥ÐÁ¡ßÏ·åЮë׳ïÜ»ñßÁïÞÂêÛ¾àбÕÈ­µª™Ž€^xjGfX7VK.I@(>7!4+iba94:/',$&! #!  VVW($+" " &." <5,WU_.$3)5(5(9)8(plkSGIxhWs\wrWghIX]\F,WD'SB"P? xpai_YnmWŠj”¢}£²„·Â¡€‰dMDI6 I6 I6 K8hYHxmii\KL9I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6K9K8I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 P>ˆ“µ´ß··ã´´á´´à´´à¯¯Ü¯¯Ü¯¯Ü¨¨Õ¥¥ÓššÉššÉ””ÃŠŠº°yy«ss¥qq¤pp£pp£nn¡kkžkkžnn¡mm llŸpp¢vv¨zz«~~¯‚‚³……µ……µ²€€±€€±°||®{{¬{{¬zz«uu¨uu§uu§uu§tt¦qq¤pp¢nn¡nn¡llŸjjjjhh›hh›gg›ee˜dd˜dd˜aa•aa”aa”__“]]‘]]‘[[[[[[ZZŽXXWWŒVV‹VV‹VV‹VV‹UUŠQQ†HH~CCz<'< %: %9 %9 %9 $9 $8 $8 $8 $8%7!,6<99RC9XD7YE7YG8WG8VG7UH5TI3SK3RM2RN0PN.LL+IJ(FI&CH$EJ&HL%JM%IN&GM'EL(DK(EL*HN,LQ.OT/QV1PV0KP,DI&:>01&%      ""$!NKF%#(".(72'=:0>?1>;(NI.e_=¡žƒŸ–{¾¨€Ô¾•äЭîÜ¿ðâÊïãÍíàÊéßÏÚ̸˸—·¥~žŽi‡xUpbC^S7QH5wtp52+620*+#& "(!ebd"%$###'+ c]X<7<4(7*5(6)6(C;-`\]PGeL2[H-YN5Ž‘…‡yz‹}q‰|l{uYje/E=.E=-D?,C?+AA)AC'CF&FI&GL&HN&IO%HO$HP$HP$HO$GO$HP%JQ&JQ&HQ(GP(GN(EK&@F$=C">B#@C"?B:=15&&          "#5/&PPJ(&,%)%("-%.'1*60?=,†‡ƒ^ZI†|Y¨˜rųŽÛƤåÒ³ëÚ¼ìÜÀìãÒêÙÀèÕ·áͰӾ ¿«‰¨˜s”„_Œ‚byvpOJ:CA)53-)(# &! 62'[\d "!##$) 0(oop-%'4*4+3,4021mleMINRN9WP8XO4XK0fO9ƒ_M¨vmÉ’ŽçÂÁíËÓðÐÔëÐÔßÂÅË©ª¸Ž‹¤wo¤‡}šxzˆ]T†]Jˆ^L”nZªƒˆ˜^[‘^O‚^K}i[ykŸš”€rkiW*=(<(<'<';':&:&:&9(:):,<1<'69*51-2'44$88$=<+>=+??*?A*AD*AF)BH(BI'CK&EM%HO&IP%JP%LP&NP&NQ&PR'PS(PS&NR%LR%JR%LS'LQ'FJ":?.2%'#$%#$"    ("2+!73)=;2CB;EE>CFB/=?-=>)?>'A<$B<$A:#^[NikpC@2YS5oiJŒ‚b£•q¸¥~Í·ŽÞΰçÛÈêØ»ëÚ¿êØ¼èÓ¶ãϯÙŤȶ“Å»¥™€†xY{jLmZ=RG,75+)JIDMLS!$ !%$' -%JG?UT_/+4366;;FE$PO6„€]^Svq[‡ua™rb§qe±th±xk§zm—vh·¦ŸtemaYNRK:H@+H;$J:#F5 tpkN?BL9#O=!N>#si[qYXxYGk[‘ob}hYh_AVE!I6 I6 I6 N<|rp®­Ñ´´à²²Þ¯¯Ü¬¬Ùªª×ªª×¯¯Ü±±Þ±±Þ¯¯Ù’Œž_P8I7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 L:{qm²±Ú··ã¶¶â´´à´´à¯¯Ü¯¯Ü¯¯Üªª×ªª×§§Ô¥¥Ó¥¥Ó  Î  Î  Î  Î••Ä““‹‹»‡‡·……µ||®tt¦nn¡hh›ff™ffšffšee˜``”``”bb–ee˜cc—cc—ffšiiœpp£vv¨zz«zz«uu¨uu¨tt¦tt¦rr¤pp£pp¢nn¡kkžjjiiœgg›ffšffšffšee˜dd˜aa•``”``”__“__“[[[[[[[[ZZŽZZŽVV‹VV‹VV‹UUŠUUŠRRˆQQ‡QQ†QQ†QQ†PP…NN„MMƒLLLLLLKKHH~AAx@@w<,-        !*#:1%H=2YNDh_Wsjdwohwoftl]tjX|nZs^ˆze‘†qµ®¢§™Ž§™†¤–¥—|§—z¡’t¢“p¬™r¯œqÀ¹—”–x‹Žc‚‰a~ˆfxX…‹bœ›t®§ƒÐ͵ºžÍÀ˜ÖÇÝͨåÔ²çÕ¸äÓ·ßдÝÕÄн¥Ì®‹Äx­‡cƒlKbW:HD+jjb<;F'$&%%# %# $# (('%lif12:..2277AA!IK/ltb~‚„}q}ugpbSeS@XG0Q@$LD@3A;,J=,UB0[L6^R7`W5aZ6_[4\Z1XY.UW,TW.VX/VX0VX2XX4ZZ4[[3[Z0]W,^R(^J$\C"X= U<P<H; C;C? FBHCD?:6/*)"%"  %-!5)=1$=2&F=1QI@OKDDE=78,34#86#>:&B?*HF1VYEsve‹…gjYhiPvx^„†p„‰v•𰧉¼¯‹¾³ˆÏË©º·‡»¹¼º€»¹|ÁÁ€ËÊÓјÖרÜÞÄÕÕ©ÛÙ©àݱåá¹çâ¾èâÂèáÄèãËæàÐãÓ·ØÄŸÃ±†¬žs•Žc}ShiF†Œ‚?C<8>$28.4,1).+,33#mnv()%66?<&RQ>jj[vyiª«¦wpsZYM>?093 6.9,?/E2@.ldZnljZRMA2!H8J:I9J9I:%\TLA3%D9MC)OE)cW?O>J7I6 I6 I6 I6 I6 I6 R@~uv®­Ó®®Ú¬¬Ù¦¦Ô¢¢Ð  Î  Î¥¥Ó§§Ô§§Ô§§Ô««Ø®®Ú°°Ý­­Õ‹ƒŽYH+I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 O=~v€¤¤Ð¬¬Ùªª×³³ß´´à¯¯Ü¯¯Û®®Úªª×ªª×¥¥Ó¥¥Ó¥¥Ó  Î  ÎœœË››Ê››Ê••Ä••Ä••Ä••Ä‹‹»‡‡·‚‚³}}®yy«uu§kkždd˜aa•]]‘]]‘]]‘^^’[[WWŒWWŒ[[[[[[[[``”ee˜iiœllŸpp¢pp£pp¢llŸkkžkkžkkžiiœhh›ffšffšee˜cc—``”``”``”``”``”__“[[[[[[ZZŽZZŽVV‹VV‹VV‹VV‹VV‹UUŠQQ‡QQ†QQ†QQ†PP…OO…MMƒLL‚LLLLLLKKIIIIFF}FF}FF}FF}EE{AAx<580$2'4'6(6)4)1(4.5/^`W9<=B:/A:+=2"<4 E;$PA"TE#UJ&leTxyr_[;hf:nn=uzBƒ‰NŽ–[—¡f±º’²¼—²À‡ÀË’ÊÔžÐÚ¥ÖݪÞâ²æç½ììÏïìÔìéÄêèÀæç¼ãå¸Ýâ³ÔÝ®ÎÚ°ËÔ»«¿’œµªs|gk‘Z_ƒPSwHb„_PnSOlLTkObu]fv`]p[Xl[]he2>.193513103.6.6*og^<2;NK?NNI?7+E5F6J8I8XP;UK?L=#L> L;J7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 SB!v|¤£Ê££ÑŸŸÎ››Ê››Ê  Î¡¡Ï¡¡Ï¢¢Ð¦¦Ô§§Ô««Ø®®Ú²²Þ°¯Ø„|J8I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6fZSŽ³Ë¡¡Ï££Ñ©©Ö©©Ö¯¯Û®®Úªª×ªª×¨¨Õ¥¥Ó¤¤Ò  Î  Î  Î››Ê››Ê——Æ••Ä••Ä••ÄÀÀÀŠŠ»††·²{{¬xxªtt¦pp¢dd˜__“[[WWŒWWŒWWŒZZŽWWŒRRˆQQ‡SSˆVV‹TT‰QQ‡VV‹YYŽ__“dd˜iiœkkžjjiiœffšffšff™dd˜cc—bb–aa•``”``”]]‘[[[[[[[[[[ZZŽVV‹VV‹VV‹UUŠUUŠQQ†QQ†QQ†QQ†QQ†PP…NN„LL‚LLLLLLKKJJ€HH~FF}FF}FF}FF}EE{DD{DD{CCzAAxAAxAAxAAxAAx>>u<4@7,E7,O;-W@.\G0]I1[J5^S>aY@`X7aW3]T1YR0[U;[S9[S3[R3VN.MG'A=;5908+6*2(3*7-!<0%=2(=2*=2*8/%4.$,$2&;*?, B."B/"@.!;+6)7*<, ?/"A1"G6%N<,VC3YD5Q@/F5#>.<,>/B1B1@1;0:12,olk/)$=0>2A2A5D6G9G:A3 ‚}>75J;#J; I: I<G=G>F@'ƒ„~GH5UX1\a8aj?lwI‰Z™›mªªÎͶÇĤ×Ñ¥æß¸ñéÉòï×ññßðòâðòâîðáíðÑêíÆáç¸ÖãªÑá£ÍߢÊߣÑâ°ÇÛ§ÂØ£¼Ô¡µÐŸ¬É™Ÿ¾‹—·‰‰«„€£qu›hl’biŠac€]OqJDc:OfFP]L6J(4J*K^G@C(;<@;B;E:SN0M? I7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 WF*w‚œœÈ››Ê››Ê¡¡Ï¢¢Ð¡¡Ï¢¢Ð¦¦Ô§§Ô¬¬Ù¯¯Û²²Þ´³ß‘‹šK8I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 Q@!z’••Ä™™ÇË¡¡Ï££Ñ©©Ö©©Ö¯¯Û®®Úªª×ªª×¨¨Õ¥¥Ó¤¤Ò  Î  Î  Î››Ê››Ê——Æ••Ä••Ä••ÄÀÀÀŠŠ»††·²{{¬xxªtt¦pp¢dd˜__“[[WWŒWWŒWWŒZZŽWWŒRRˆQQ‡SSˆVV‹TT‰QQ‡VV‹YYŽ__“dd˜iiœkkžjjiiœffšffšff™dd˜cc—bb–aa•``”``”]]‘[[[[[[[[[[ZZŽVV‹VV‹VV‹UUŠUUŠQQ†QQ†QQ†QQ†QQ†PP…NN„LL‚LLLLLLKKJJ€HH~FF}FF}FF}FF}EE{DD{DD{CCzAAxAAxAAxAAxAAx>>u<(C:%?6"=4!?5"=4!913-/).'.'0(0'0'0(5,"<3(B8/G;2G;2A5+9."3*4'D1$J6(@/"C/"F/"H0"E0"B/!<-9,@2'C4&G4"M9&V?+XA,V@+Q=(I8"C2C3I6!N8!O9"I7!E8"@7$ulbVUX6,<1@5@4@4?4=4>3SKBc^fB4&F9H8H8G8F6D4`VM]WZD9&H=!J? J@$OG*ZT8i`ExY‡n—Œj®£ȸ•ÛË­éÚÀñäÍòëØóîÞòïÞóëÕëà¿ÚÓ§ÈÉ’¼Â‡±¿«½¼Í˜ÄÍ–ÅЙ¿Ñ›ºÓ›ÁÚŸÉß¦Ùæ¹Üè·ÛéµÚè¸ÝéÀØç¼ÏäµÈß°ÆÞ«Ñá½¼Õ©»Ô©µÌ¢­Ç›°Å¤¢¶—Š¥y^mCF;I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 VF,|v…••Á››ÊžžÌžžÌžžÌ¡¡Ï¤¤Ñ¦¦Ô©©Öš¹i\NJ7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 M;j`aŽŽ½ŽŽ¾¿’’Á––ÅššÉœœËŸŸÎ¤¤Ñ££Ñªª×§§Ô¥¥Ó¤¤Ò££Ñ  ÎŸŸÎ››Ê››Ê››Ê••Ä••Ä’’ÁÀÀÀ‹‹»‹‹»‹‹»‰‰¹……µ²zz«uu¨tt¦pp£hh›aa•[[WWŒQQ‡RRˆRRˆSSˆSSˆQQ†MMƒNN„PP…OO…KKLL‚QQ†VV‹WWŒ^^’dd˜ff™ee˜bb–aa•aa”aa”__“]]‘\\‘\\‘[[[[XXVV‹VV‹VV‹VV‹VV‹UUŠQQ‡QQ†QQ†QQ†PP…MMƒLLLLLLLLLLKKIIFF}FF}FF}FF}FF|EE{DD{AAxAAxAAxAAxAAx@@w??v??v>>u<5 =4;3:3;381F?/A6 B6D7E6 H8H6F5@2XMG?3)D3C5D8 KA*YP;g]KpeTxo]rnZlhOtmP‚wW–ˆf°¡~ÑÀ¡æÖ½îàËóäÑñàÈìÛÀåÖºØÌ®Ä»—±ª‚ÈÁ ¾´ž©¤…¤¯Žª¸•®½‹½È‘ÔÖ¬ËÍ¢´¼Š§¸©»ž‘¯€•¶~¾…§ÇŒ´ÑšÀÙ¦×åÅÎá³Ðå­Ó殸Âmd8J8I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 J7YJ4{™™ÆššÈššÈœœËŸŸÍœ›ÅwnpO=I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 ]O<‡„¥’’ÁŒŒ¼ŒŒ¼‹‹»ŽŽ¾¾••Ä——Æ™™ÇœœËŸŸÎŸŸÍ¥¥Ó¢¢Ð  ÎŸŸÎË››ÊššÉ••Ä••Ä••ÄÀÀ½½‹‹»‹‹»††·††·††·……µ||®yy«tt¦nn¡llŸhh›bb–]]‘[[WWŒRRˆQQ†QQ†QQ‡QQ‡MMƒLLLLLL‚LL‚LL‚NN„RRˆWWŒ]]‘``”aa”aa•aa•``”]]‘\\‘\\‘[[[[ZZŽWWŒWWŒWWŒVV‹VV‹SSˆQQ‡QQ‡QQ‡QQ‡QQ†PP…PP…MMƒMMƒLLLLLLKKKKIIIIFF}FF}FF}FF}FF|EE{DD{AAxAAxAAxAAxAAx@@w??v??v>>u<2F=3VPI__^]\[D<3@3)?2'=1&:/%7-!7/$6/$60'50)5-&4,#5,#5) 7*!7,!9-#9.#:.$?6-ME?XSNSPI?4&<."<.$9-"7+ 9,?/!G2%N6'R8'T9(R8'I3"=-6+2):.H6"R<$V?&W@'S?&R>&WA)]E+\D)U?(I:!@5:2F>*=4"?7#D8&G8&E8&B5'?4%<4%=7)MG7E:-UA:[DAWI@[XFYZHZZHZYOsgleV[i^`b\\`\Vkk_oqi|vxt–”lqqY^Upqe__TfdX~{jš‘|ǵšâ̳êÐ²ïØºïÙºêÖ´ãΣÜÉ—ß΢Ų́ÙÌ ÞÓ¤âÛ©äܨÜ՞dž§¦l~Obi>BJ/-;(9'=+A2I >u<1G;/G:0KC:][X^^\HB1'*WC-^J5\J7[O@YSLMF?QMN]W[hcelqk~‚yƒ‰ˆs€‡pvjulgojhl‘š–vsqƒ~€€x|tnstrrgea]TPPD?xzD;8G>/C=/JD5WQ<`\HeaPdbS~v\[UWVLNMCCB879)39!KM,€V½¦}Ë®wѽ…ÐÁ‹ÒÃÙÇ’äÑïã¹òæÃòê¾òë¾ëç·âàªÙÖ£ÎÈ—»³…£™p¡˜t~pUrd@m\:_P0F?#2/+)wrt2*F6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 J8UE+TD(J8I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 J7nb\š˜¾žžÌ˜˜Ç””Ñ‘Á¿ŠŠ»ŠŠ»ˆˆ¸ŠŠ»‹‹»ŽŽ¾À””Õ•Ę˜Ç™™Ç››Ê››Ê––Å••Ä••Ä““ÂÀÀ‹‹»‹‹»‹‹»††·††·††·„„´‚‚³‚‚³€€±~~¯~~¯~~¯vv¨tt¦nn¡iiœhh›ee˜bb–[[XXVV‹PP…LL‚LL‚LL‚MMƒLLFF}EE{FF}GG~GG~FF}FF}LL‚PP…VV‹WWŒ[[\\‘\\‘[[XXWWŒWWŒVV‹VV‹UUŠRRˆQQ‡QQ‡QQ†QQ†NN„MMƒLLLLLLLLLLKKHH~FF}FF}FF}EE{EE{CCzCCzCCzCCzAAxAAxAAx@@w??v??v??v>>u<Œwkˆ{XK1fT8lZ=s^B|gJ{eIzbF•{a—{Z‘pM¤„b¾¨ÌƹÈÈÄ¿¾¼·¶³¬¨¤¥¡Ÿœ—”“}Œt…†w~~kywZuqToockkeig`ffdcc`cb^[TJPB4TH=TLCVPJ_][[ZVD=2@5*?4)>5)>5(<3'=2'<2'=1'=3*=3*E<4LFAUSP[ZX[ZXQJEUPJFA95.&0*"2+#90(>7,G:3H91H7-G7,D5(B2%J7*O=/P;,S<+W>-X@/ZC3ZD5^J;ZF7WE3WC1WE3]N/B<0C<3_[VC<0I@/J>/E8*D7(E9)F;)D7'‚y‚:5?D<(B8$@6 >3=/<.=2 vvx1%%9,93?:$EA*LK2RR=\\Jnpka_WgdYb]UTQIBD86<)8Dn~Jª«~®±^³ºa®»e±ºnº¼xÍɈæà´ìæÂðëºìé·ç䳿à·ëàÁëÞÃèÛ¿äÖ¹åÚÂÙʱÓťʹ–¶¦‚šh|pMOA Q>I6 I6 I6 N<xmgކ’„{VE&I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 [K1”§©©Ö¤¤Ñ¡¡ÏššÉ˜˜Ç‘‘ÁŽŽ¾‹‹»††·„„´……µ††·……µŠŠºŠŠ»‹‹»¾À¿••Ä••ÄÀÀ¿¿ŒŒ¼‹‹»‰‰¹‰‰¹††·††·……µ‚‚³€€±€€±€€±||®||®||®{{¬vv¨tt¦pp¢kkžffšdd˜``”[[PP…LLKKFF}FF}GG~GG~FF}DD{AAxCCzEE{FF}FF|FF}FF|GG~IIOO…QQ‡SSˆWWŒWWŒVV‹VV‹UUŠTT‰TT‰RRˆQQ‡QQ‡QQ†QQ†NN„MMƒLLLLLLLLLLKKHH~FF}FF}FF}EE{EE{CCzAAxAAxAAxAAxAAx@@w??v>>u<*I=+MA,QD/TF3UH3YD.±™‰Ïȹi]DjZ>p]@v_B}cD‚oS™”–f—tR¯ŠhÙȱ×ÖÑÐÐÐÈÈÈÁÁÁ¸¸¸¯°°¨¨§žžš––Œ‚‡ˆ€xz{gvuProRmj]keVgfac^Xd]Pc]Oc_Va\U`_Z`_]][XPMFOKDQMGPLGNLENLGPMGTNHTPKUSOWVTZYW^^]__^___]^]ZZYVRRFFA@>:B<:@>9D?;KB?KC1ZD2R?*G7&I6'M9(P9'S<)Y?,`C0gG3gH4_D.Q=&G8 TB,eL5tV<{\@~_BvZ?iS:[H1Q@+K<%fVQPIRB7&?4:16/6/92=7:5‚€312=6:09-8-6*5)A/#sjx',! ,# -(1.6488"_aVSWlSRM`]Qb\RXUIJN>OY8mu=Ÿ _¶»‰®½\¯ÃZ§À\¢½b§½k½Éãã¸éæÃî鏿á­âÚ¨êܵñàÂñáÆðãÌñçÐòíÞóéÔôèÐõæÏðàȸ§ˆbO(I6 I6 I6 K8k_O¥¡½·¶â··ã··ã°®ÒvvQ?I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 L9ƒ{€­¬Ö­­Ú©©Ö¤¤Ñ¢¢ÐË••Ä••ÄŒŒ¼‹‹»……µ……µ‚‚³ƒƒ´……µ……µ‰‰¹ŠŠ»½ŽŽ¾¾¿““¿¾ŽŽ¾ŒŒ¼ŠŠ»ŠŠ»††·††·††·††·²²~~¯||®||®||®xxªvv¨vv¨vv¨pp£kkžiiœdd˜aa•]]‘]]‘WWŒRRˆQQ†LLFF}FF}FF|EE{FF}DD{AAx@@w@@wAAxBBy@@wAAxDD{HH~MMƒOO…TT‰VV‹VV‹VV‹SSˆQQ‡QQ‡QQ‡QQ†PP…MMƒMMƒLL‚LLLLIIIIFF}FF}FF}FF}FF}FF}EE{CCzAAxAAxAAxAAx@@w>>u>>u>>u>>u>>u<'A:)@9&A;%H>)K>*L>,J?*OF4b\R€uqvn|rÙËÁ‚o}kPŠ~i Šw½©˜Áü»²©²–€Ç«“ß×ÊÝÝÚØØØÑÑÑÊÊÊÃÃúºº²²²©©© ¡ ˜™•‘‰ˆ‰ƒ‚ƒ{|}swwlrqkonhji_hifgfeedaccbbbaaa_`_]__^``_``_```_____^__^___]]]XTQ_][[[ZZYVWTPMHCIC=KE@C;6?50?4->2+?2+@3+A5+F8.K>3K=0L=1RKB]YSa\VWN?H9$E5"H7%K9(K9&L9'O;(YB0cH6oN=sR?oP;aH0TA)VB+iM5z[>…bD‰eGƒcDz]BlU>UG0A4 }pu50<9.6+3)1(0)41;9:5†„3/1;37.4+2(3&1%A5(gdp#$""% '# &"wun55D=>4MK?UPFSQFMSC^fBqs<˜\¥°~£·Z§¼Z¤»[ž¸]¢¼e»Ë|æåµëç»íä­èÞ æÛ—êÚ—êØ™ßÑÛÑ©âØ¹äàÉÛÖ¦Ü֢ƹwe?J7I6 I6 I7`Q:𔍶¶á´´á´´á´´á´´á··ã··ã¬©ÊwlfN<I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 J7 T= I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 h[J¨¦È´´à¯¯Û¬¬Ù§§Ô££ÑË™™Ç‘‘ÁÀˆˆ¸‡‡·……µ°°~~¯°~~¯²„„´……µˆˆ¸ŠŠ»ŠŠº¿¿‹‹»‹‹»ŠŠ»ŠŠº††·††·²²²²||®||®{{¬zz«xxªxxªuu¨tt¦tt¦tt¦nn¡nn¡kkžgg›cc—bb–]]‘WWŒQQ†LLFF}DD{BByAAxCCzDD{AAx@@w<>uAAxAAxAAxAAxAAxFF|FF}LL‚LL‚QQ†QQ†RRˆQQ†QQ†NN„NN„NN„MMƒMMƒKKKKKKIIIIFF}FF}FF}FF}FF}FF}EE{CCzAAxAAxAAxAAx@@w>>u<8KD>VQLTQM]ZX^[Y^[XVMFZND]SFWNDLA5E6'E5$I;(N?,O?,P>,R?,P=)P=*XE4cMrY=gP8\I2G9(xos3*(=0<.5,2+5.86@?A;ƒ{3/%733-3* 1& .$ + I;4\Xf "$%!' ~||#!(.0=>0IGKQ9R]3ƒ—gœ«}¢·Z­¾^³ÀbºÂc½Äb¿Çiãà¨áÖ è×”ç׈æÝäà}ÚÛyÉÐ|ÁÇ‚ÏСÁ¿ž¥¢jtf5M:I6 I6 I6 VF'…´³Ü´´á´´á³³ß²²Þ²²Þ´´à´´á´´á··ã·¶â¥¢¿nbUL9I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 YA ÄŠ¤tœn‚]dH Q; I6 K7 I6 I6 I6 WG)‘Š—¹¸ã´´á´´à°°Ý®®Ú©©Ö¤¤ÑœœË››Ê••ľ‹‹»……µ‚‚³}}®{{¬{{¬{{¬||®~~¯‚‚³„„´„„´……¶ˆˆ¸ˆˆ¸‰‰¹ŠŠ»††·††·……¶……µ‚‚³²~~¯~~¯~~¯||®zz«zz«xxªuu¨uu¨uu¨qq¤qq¤qq¤pp£nn¡iiœffš__“[[WWŒVV‹RRˆNN„IIFF}DD{@@w??v@@w@@wAAx==u<>u==u<>u>>u<SL?G@3HA2F<)E8#I<(H<(K=)N@+TC-]K4^L5fR=p[Dɾ¯ððîîîïÈÇ¿´¦Œ§‰f¬†]¹”hÀ˜méÙ¾ããßÞÞÞÚÚÚÕÕÕÎÎÎÈÈÈÀÀÀ¸¸¸¯¯¯§§§žžž——–Žˆ‡‡€{{ywwuqrqoonkjhgdae`]a[Vb\V\VP`\Wba_ba`a_Ya_V`_X`_Z_]Y^\Y`_^_________^\Z\TOYOJ^YUZYVVVO]]Y``^__^__]\[Z]][WTORIBL?4C4&A2">0!@5$H@,PH1UJ2UG0UD/WB-WA-XA,\F3_I8gN=lR?mQ/O>%I9E6C5C8H?OF O?&†|„;2*;43*2& 0#,!)WDDOJa $() 4* nlz$()37#AB0DH3LP9U_;iy<§¬w°»†±Ã`²Å_¼ÈaÃÊ_ÉÎeÐÏnëã±éПëÑ’åÔ†àÙwßßt×ÝrÉÕpÁÌlÊÊtLP=I6 I6 I6 I6 TC"®¬Ð¸¸ä¶¶â´´à¯¯Ü®®Ú®®Ú®®Ú¯¯Ü²²Þ´´à´´á´´á··ã¶¶ážš±gYFJ8I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 L8 L8 I6 I6 rQvT_E ˜ke®zŸqYA I6 J8yni²°Ö¹¹ä··ã²²Þ°°Ý®®Ú¨¨Õ¤¤ÑŸŸÎ››Ê••Ä‘‘ÁŒŒ¼ŠŠº‚‚³°||®yy«ww©vv¨vv¨xxªzz«||®€€±€€±ƒƒ´……µ……µ‡‡·……µ……µƒƒ´‚‚³€€±°||®||®{{¬{{¬vv¨vv¨vv¨tt¦rr¤qq¤qq¤nn¡nn¡nn¡nn¡iiœee˜dd˜``”]]‘\\‘ZZŽWWŒQQ†KKDD{@@w>>u==u<>u>>u::q77o88p;;r<>uAAxFF|GG~JJ€LL‚LL‚LLLLIIIIIIIIHH~FF}FF|EE{EE{DD{DD{AAxAAxAAxAAxAAxAAx@@w??v<‘}aáÙÌïíëÚÕËÀ¦‹À«‡¥‹^¦†ZƦ|éãÐãäâààßÛÛÙ××ÖÐÐÐÉÉɺºº²²²©©©¢¢¢™™™’’’‹‹Š…„xyyvtutqqqnnmkkjiiigggfffecbdc`bbaab``\Vb^Taa]``^`_ZPKBIB9PKEXUPRQLTQMRNJPJDQMGNIBLG@FB;F>5B9-90&4-#7/&7-";/"=/"2">7&EA-MK2PL3QK2TG/WB,[B-^C0^F2\F1XE1UD0RB-TC,_G-lL/zT6ƒZ:‚[;|X9pP4pR6{W<„\=ˆZ>£n^U}ZAnS9cK3]E-XB&UC&TF#WJ$WI1|yxC8(>51+ ,$+#) '[QN?=I !#)* RF=TPa*+;EUd3ozCt}Er€Dv‡B–A¿Ä³Â}«ÁX­ÂW¹ÅZ½Ç[ÇÐhÓÔyèã¹ÞΤÝΓÖÑ‚ÑÕtÒÙqÑÜtÈÓp””GZII6 I6 I6 I6 I6 I6 M;€vx¯®Ó²²Þ¯¯Û®®Ú««Øªª×ªª×¬¬Ù®®Ú¯¯Ü²²Þ´´à´´á´´á··ã¶µà—‘£`P8J7I6 I6 I6 I6 I6 I6 I6 I6 J7 sS ²~eH5 I6 K7 ‰a‰aJ6 I6 W? M9 I6 ^O7 ›µ¹¹ä··ã··ã´´á²²Þ®®Ú®®Ú¦¦Ô¤¤Ñ¡¡ÏË••Ä““ÂŽŽ¾††·‚‚³}}®||®xxªuu¨tt¦uu§ww©vv¨xxª{{¬{{¬}}®€€±~~¯€€±……µ²€€±€€±°||®||®||®vv¨vv¨vv¨uu¨ss¥rr¤pp£pp¢nn¡nn¡kkžjjjjjjgg›dd˜bb–]]‘ZZŽWWŒUUŠQQ†KKCCz@@w@@w<>u>>u>>u>>u<%TC*UD+ZE._I1eN6lT+ZC1`H6^H6WF3SB.O@-K=)M='YF,kP4yW9ƒ]<‡`>‡^>ˆ`@ˆ_@‡`AŒbC_D³‰’aS’fI„`BvV9fL0[E(XG&WK%VM&]W=tsuG@)CA >B:A7>/2 !#ga^21A $"/,40sugHNRQ`7n‚D‰œT™©Y–¨UŽ£PŒ¤O’ªNÁÏŠ±¾y³Ä^ËÏdÚÏcÖÍfÍÊmÈÌ„ßàÅÓѵÏѨÎÑœÕÚ”ÛರbeX#I7 I6 I6 I6 I6 I6 I6 I6 I6 I6 VF'…}‡©©Ó¦¦Ô¦¦Ô¦¦Ô¦¦Ôªª×ªª×¬¬Ù®®Ú¯¯Ü²²Þ´´à´´áµµá··ãµ´Ýއ“UD$I6 I6 I6 I6 I6 I6 Q; ¦v’hP; „^rQI6 I6 M8 žosRI6 I6 M;}tw®®×··ã··ã´´á´´á³³ß±±Þ««Øªª×§§Ô¢¢ÐË——ÆÀ¿‹‹»……µ²||®zz«xxªtt¦rr¤pp¢qq¤tt¦tt¦ww©zz«xxª{{¬||®{{­²²~~¯||®{{­{{¬xxªxxªvv¨tt¦tt¦tt¦qq¤pp¢pp¢nn¡llŸkkžkkžhh›gg›gg›gg›dd˜``”]]‘ZZŽVV‹UUŠRRˆQQ†MMƒHH~AAx>>u;;r88p77o88p::q99q::q77o55m77n66n88p77o66n77o77o<$WC+SA)TB)XC,^G.cK2hP8mU;v\@ŒqTºž‡äàÖíîììíìêêçÞØÇèàËæâÓäãàÞÞÞÙÙÙÕÕÕÎÎÎÈÈÈÁÁÁ¸¸¸±±±©©©¡¢¢ššš“““ŒŒŒ‡‡†€€||{xxxtttqqqnnnllljjjiiihgeggbefddedb`[PKB?6,;2(80&5-#4,"3,"3,!2,!2, 3, 5-!5, 5,!6.#4*!1*!00'22)1/&,' 0+ 2. <:'DD.HG1FE/@>*:5"9/?1!H9*P>/VB3TB3SB2VB0]G2fN7oT;tW=uX=|\@ƒaCŠdEŽfH’hJ‘fGŽdDeFŽqTšv”fM“hH†a@tS5eI,[F&VE"VJ#XP'o`Jpmj^c9bn7dv:`t7Xj/I\'9H{vo4>u>>u>>u<&R?)SB+WC,[E.`I1fN5kS:t[AƒeI¤c®•wÊ»¤ÝÔÇêèãìëèåÜÊçÞ¿äãÖààÝÜÜÜ×××ÑÑÑÊÊÊÃÄļ¼¼µµµ­­­¦¦¦žžž˜˜˜‘‘‘ŠŠŠ„…„€|||xxxtutqrqpppmmmkkjjjihhhghgedcVPKA92<3)91&81&60%3-"1+ 0*/*/*0*1*0)/'.&,$)"'!'")%32)BC:DG5QQsT7dJ.ZD&VF%XM(ZR)xuXp|dw†J”K…œP„›Nƒ˜K€“G{‹E¨³Š†”sœ¡uª«´³Š½º”Á½˜ÃÀ ÙÕÊǦÁÁ•´ºˆ«¶|¬·z°¹y¯»v°»nªµcÏÕ§¾ÁƒÈÊzËÊ„ÅÆ‹ÄÄšÎʰäÞÐðèææÝÚËÄ»ƒvZN<I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 J7`R@‰¢¢¢Ï££Ñ¥¥Ó§§Ô§§Ôªª×ªª×¯¯Û±±Þ²²Þ³³ß¡ž¹fXEJ7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 X? “hJ6 I6 I6 P>„~¦¦Ò¨¨Õ­­Ú®®Ú°°Ý²²Þ²²Þ¯¯Ü¯¯Üªª×¦¦Ô¤¤Ñ¡¡ÏË™™Ç••Ä¿ŠŠºŠŠº……µ}}®zz«tt¦rr¤pp£kkžkkžhh›jjkkžnn¡pp¢rr¤rr¤uu¨vv¨uu§xxª{{­zz«uu¨uu¨uu§uu§ss¥qq¤nn¡nn¡nn¡nn¡kkžjjiiœhh›ffšffšffšcc—bb–bb–bb–``”]]‘ZZŽWWŒRRˆPP…MMƒKKFF}AAx>>u;;r88p77n55m66n66n77o44l22k00h00h22j22j00h11i11i22j66n77o77o@@w@@wCCzCCzCCzCCzAAx@@w@@w@@w@@w??v>>u==u<5@4B5D7E8 OB1rmbTODQI:RD0ZQC`URSG.@=,98(21#1."0.!0.!/,.),&+$*#)"(!'!)#-):9)PM9`^HihQjiS`aILP89<(,,*%5)=+C-E/F2 N9%^G0rW@ƒfOpYŒq[‡nWvaFsZ;uY7xY;zZ;^>ƒ`>^<¤†u‰^HŽeDŠdB_?tW8hO1aL0\M/\S-WX+„Žnug‡–P£Q“«U–®Y±]¬½h¿ÇxÚß³À¾”®°¡v”šuŽ”tŒ”tª²‘¼Ã¬®¸‰¦¹|œ³pŸ·p°¿z¹Â}¹Áx¹¿xÀÁ}ßÚ¹ÓΦàÙ³Üѷü¨¡¥“𢒵²©Â½¹ƒxaQ?I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 K9g[P“°¢¢Ï££Ñ¥¥Ó§§Ô§§Ô¬¬Ù¬¬Ù§¦ËwlhM;I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 L8 I6 L9i^W›šÃ¡¡Ï££Ñ¤¤Ñªª×ªª×­­Ú±±Þ¯¯Üªª×ªª×§§Ô¦¦Ô  ÎŸŸÍœœË˜˜Ç““½‡‡·……µƒƒ´}}®yy«uu§pp£pp¢llŸjjgg›gg›hh›jjkkžoo¡pp¢oo¡ss¥tt¦tt¦uu§xxªuu¨tt¦ss¥ss¥pp£pp¢nn¡llŸkkžkkžkkžgg›gg›ffšdd˜cc—cc—cc—``”__“__“__“]]‘WWŒWWŒSSˆPP…LL‚KKHH~EE{CCz<>u>>u??vAAxAAx??v??v??v>>u==u==u<,9<,8;*79)66&21!-+*%)"(!(!*#+$/+CA.ZXBjhPqoYppZcfMMS:5=('**$3%:(?*B,H2L6 ]H0iV>€hRŠq[—ya›{]—xVjCˆc8‚\6tU1oT5tW:}eH‡nY{X<€]:ƒ\;„\<‚^=|\;uY:mZ;pcAqi@ž•w„e†QЦQ­W–²]¡¹dµÇmÄÌx××±¤©u}ˆSR`:>K+:E*S^A©Ÿ¬¯š»Ã˜½Èš²ÀŒ«º¯º€·º³µ{³·}¾¼„ÛÖº¿¾Ÿ½º¡«§’Œ}dm^DS>VP5YH$I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 N<pec™˜½¢¢Ð££Ñ¥¥Ó§§Ó†‹UE&I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 XI0‡ƒŸššÉœœË¡¡Ï¢¢Ð££Ñ¨¨Õªª×ªª×¬¬Ùªª×§§Ô§§Ô¥¥Ó¡¡ÏË››ÊššÈ••Ä¿ŒŒ¼‰‰¹„„´‚‚³{{¬xxªuu§oo¡nn¡nn¡iiœhh›ff™ffšhh›iiœjjllŸnn¡pp£pp£pp¢nn¡uu¨uu§pp£pp£pp£oo¡llŸllŸllŸhh›hh›hh›gg›ee˜dd˜cc—aa•aa”``”``”]]‘\\‘\\‘\\‘[[XXWWŒUUŠQQ†LL‚KKHH~EE{@@w88p77o55m22k22j00h00h00h11i00h00h--f--f--f..g,,e,,e**c**c11i11i77n77n77o>>u>>u??v??v??v<aN6bL5fP6jR9u[?qX;sZ>x^@bC…gFŽoL¨†cÖǯâÞÖÞÚÓØÏ¿ÓÅ©ÐÎÄÈÈÇÁ¿º¹¬œµ²©Ÿ˜‹}lziStdN€{lŽ‹‹‹‡ˆ‡utqkg`}}{zzzxxxvutjidQMCIB4GB2IG5MO9NR:MS9IQ7DM5BJ3AI2AH2>D.9=)46$/.+(*%+%+$*"*",':9'NO9`_GjiPkmSglQ_eISY?HM56:"0*5(9*=->/B2E6PB'gV>x`HŠlN˜sOžsLœoE–kBŽhDŠgHŠkO‹oR¥œ„„q]}`@|^:\6…]8‰_:fBhE‹kH†oL…sIµ¬Œƒ•cŠ¥W‹®U“³Y›¶]Ÿº`¥¾`¬¾cÃÉ Œ¢_uŠFWg/=H,4 =I&¯²§¸¶¬ÖÒ¾×Ò»ÄÅ©«±“ž£—˜w’j“™j¢¤r½¿¥†‰klwWU`DLW3EJ E9I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 P?xpu‹§‰ƒ™`Q=I6I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 N<umtššÉ——Æ™™Ç››ÊË  Î¡¡Ï¤¤Ñ¥¥Ó¦¦Ô©©Ö§§Ô¥¥Ó££Ñ££Ñ  Î››Ê˜˜Ç——Æ‘‘Á½ŠŠ»……µ‚‚³°{{¬uu¨tt¦nn¡jjiiœgg›cc—cc—cc—cc—ffšee˜iiœjjjjiiœnn¡llŸpp¢qq¤pp£nn¡nn¡mm kkžjjiiœgg›ee˜ee˜ee˜ee˜bb–aa•aa”__“^^’]]‘]]‘[[ZZŽZZŽZZŽZZŽVV‹SSˆQQ†MMƒIIFF}EE{CCz@@w<+E:"B4C4E6E5B4C<+XRJ]QI]MFsnhSU@SD*XE-ZF-[H-_I1kQ7jP4mS7pV;w]<~dCgEˆkJ‘tS©Žp¯˜zÁ²Ÿ»¬•®žˆ©œ‹¡”ƒ{]†tWzeLvbJtaKseQ“’‰—––‘’’ŽŽŽwtojcW}w€~~~{{{xxxjhdKH;KH7NO:QT=QW=NVG0;B-8<)33$/. .+,'+%*#+#(#,*9<*KQ:[bDhnOswYy{]xyZnsSXbBEK.BA(>;":2:/;/;/<2C8"VI1gT7v[;‚`>‡_=ŠdAiG xW¹”r¼™t±‰]§}O™rB’m?kCjF“kEšqK wU¦~Y›{ZŒzY› {‹–]’©Y—µZž»\¥½^§½_ »\§»b¹È™–°f‹Vr€BV_)@C\V>ª¥¤´±¨Ï˺×Ô¹Éɨ¤¨Šƒnmn^clR†Z–Yª­ptKbk6[a(PEI7 I6 I6 I6 I7J8I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 J7I6I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 dWKŽ‹­™™Ç˜˜Ç••Ä••ÄššÈ››ÊŸŸÍœœË  Î¢¢Ð¡¡Ï¦¦Ô¦¦Ô££Ñ  Î  ÎË™™Ç••Ä””ÃÀŒŒ¼ŠŠº††·……µ~~¯||®vv¨qq¤nn¡kkžiiœhh›cc—cc—bb–bb–cc—cc—cc—ff™hh›hh›kkžkkžkkžoo¡nn¡kkžkkžjjiiœiiœgg›ffšee˜cc—cc—cc—bb–__“__“^^’\\‘[[[[[[ZZŽWWŒWWŒWWŒWWŒSSˆQQ†MMƒLLFF}EE{CCzAAx@@w::q33k00h..g//h,,e,,e..g..g--f,,e**c))b++d++d,,e,,e**c**c..g..g00h77n55m99q;;r;;r<ilNz|_…†lŽŒrŽsrŒk€€ZpoL]Z3E9!O?%XD)bI/vbJ¥u½ž€ÄšmΜcÌ™ZÀŒP®HœqBh=‰d;‡c:ˆa:‹d>’iE—rN«œ®¡ƒ¡žl¢°h£¸dª¿fµÄp°Áq¨¼m±Æ|¶È—£´m“žZv|C]^1NG)Œ‚}…†¢¡Å̦ßà¬ÕÔ˜¤ªpfnMQV?osH š_±®mµ²š}€G[TJ8I6 I6 I6 O={pm§¤Â¬©Ê‡…TC#I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 SB$‚|——Æ——Ƙ˜Ç––Å••Ä••Ä——Ƙ˜ÇššÉššÈ››ÊŸŸÍŸŸÍ¢¢Ð¡¡Ï  ÎËË››Ê˜˜Ç““Â’’Á¿ŠŠº……µ‚‚³°zz«xxªss¥nn¡llŸgg›ee˜dd˜__“]]‘]]‘]]‘]]‘``”``”cc—ee˜dd˜ee˜gg›gg›kkžkkžkkžkkžhh›hh›hh›ffšdd˜dd˜bb–``”``”``”__“]]‘]]‘[[[[ZZŽZZŽZZŽWWŒVV‹VV‹VV‹UUŠQQ†NN„LL‚IIFF}EE{DD{AAx??v88p77o55m22j..g,,e++d,,e++d,,e,,e**c))b''`((b((b**c**c**c**c**c00h..g22j44l66n77o99q::q88p77o66n66n66n66n66n55m44l44l33k22j22j00h00h00h..g--f--f--f--f--f--f,,e**c**c))b))b))b))b((b((b''`&&_&&_&&_&&_%%^%%^$$^$$^$$^##]##]##]##]""[!![ ZYYYYYYYYXWWVVVVUUUUTTTRRONNKKKKMKKMKKMK<3@5A3@3JC.]QCRNC;8(=4!B4 B2C3D4H7T?(ZG2]J2Q@'R@%ZE+`K0bM2hT7jS6qX:t\?t^?s`AwbCycDwdGœŽzsaH|jSmV{gQudNp^Im^KsgVˆ…y©©¦¥¤£—‰„€t|wb‰‚j‰sŒ‹‹ˆˆ‡†€{wrjahh]\[KX\I^eUV`NPZCX]BQY7D8!C7!YG8sh˜…o¬Š`ËcÚ¦hݦeÖ_ÉYº„UªyPŸrK’jF‰d?†b?‹dB–oT¶ž’ªˆtµœoĸ}ÆÄ½Æx¯Âl§½g©¼i±ÁvËØ±´À‘¡«k’YrqHfdDYXF“’‘w}t¶Á“ÒÞ¥çë±ààŸ®´scmEZ_<’]ÀµzÅ·„‹bO>I6 I6 I6 J8l_Q¥¢¿·¶â··ã··ã··ã­«ÍyniM;I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6ndc–•¾››Ê——Æ——Æ——Ƙ˜Ç““‘‘Á““••Ä™™Ç™™Ç™™Ç››ÊššÈœœËžžÌËššÉššÉ™™Ç••ľ¾½††·„„´‚‚³°{{­xxªuu§nn¡kkžhh›cc—cc—``”]]‘]]‘[[[[]]‘[[]]‘^^’``”cc—cc—ffšgg›ee˜iiœiiœffšee˜ee˜dd˜cc—bb–aa•__“__“__“__“\\‘[[[[YYŽWWŒWWŒWWŒWWŒUUŠSSˆSSˆSSˆRRˆPP…LL‚LLHH~DD{CCzAAx@@w<2>1=/;.]VPLH@>2 A0@.>.@1A2F4H5O<%SB)YE,WE.fYFa]HdYGl_OxeWugUn^DpT|lRqgR‹{”‡‚seubPt^I{dL„ucƒyhyoamaUmcTŸ™©¥Ÿ£Ÿ•žš•“‡“‘~—’|–‘}’„ŽŽˆŒŒ‰ƒ‚{„‚||x|{|zyyxuuqpogdeXcdTadRfiZmndlj_WS9EI-=A*89%42 /++&,&,'1.<=(LN5[^AjmNy|\‹Šj–•uš™y”qtYNX7768/60401/95C:#D<'YSCofdo`Vz`<£}KÇ—^Ü¥há©jÛ¢gЖaÀ‰[³W©vQžoKŽeC];vU6‹t^¢ŒˆŽp[¯—lнˆáÕ›âÛÒÔŽ¸Èy¨¿lµÆÌÒ¤»Â³¶k™œTwx?ZT*G@(}}kqcµ¼Šåè¹îðÍðñÔææÁ³¸‹uYwX˜›hŽ„OXFI6 I6 I6 J7bS<š•ª´³à´´á´´á´´á´´á··ã··ã··ã¦¢¿m_QK9I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 \M7Š«ššÉ™™Ç˜˜Ç••Ä••Ä••Ä••ľ¾‘‘Á””Õ•Ä••Ä””ؘǘ˜Ç››Ê››Ê››Ê˜˜Ç••Ä••Ä‘‘ÁŽŽ¾ŠŠ»ŠŠº††·ƒƒ´°}}®zz«ss¥qq¤llŸiiœgg›bb–aa•aa”]]‘[[YYŽXXYYŽYYŽ[[]]‘__“aa•aa”cc—cc—aa”gg›gg›ffšcc—cc—cc—aa•aa”__“__“]]‘[[[[[[ZZŽWWŒWWŒVV‹VV‹UUŠUUŠUUŠRRˆQQ†QQ†QQ†QQ†MMƒLLIIEE{CCzAAxAAx??v>>u88p33k--f++d**c**c''a))b))b**c**c''`&&_%%^%%^%%^&&_&&_$$^''`%%^%%^**c,,e..g00h22k44l55m66n55m55m55m33k33k33k22j22j00h00h00h00h00h..g--f,,e++d++d++d++d++d**c**c))b))b((b((b''`''`&&_%%^%%^$$^$$^##]##]##]##]##]##]##]YYYYYYYYXXXWVVVUUUUUTTTTTTTTRPONMMMKKKKMKKKK/A0E4J8"N<'Q?*^M;ulae^UiZMgVFgVEjVBhU=gXEwvivpg‹hf_|p\rk\rufNp^HfVAeT@cT@eV@tgS—Žª¦¢¬¬«¨¨¨¥¥¢œšŽ‹qŠpŠt‹{Ž‹€‰ˆ~……~…„||}|zqkeodXtoduummodafQV]@NX8JT4FN0?F+8<%//*&)$($(&+)0/37!=B*PX©†R˜^Ì`È–\½‰X¬~RœrJ”kH‹gCb>sY9eN3‡|poea\K6shB ”dÉ»„ÚΓÖпÅ~¨·j·Æ’¿ÂÁ½Ë½}À¬o¢ŽVvh:QE&„|}LGO„Š^áà«òòÐðòÞñòÞææÅ¿ÅžŸ¢~†V]O$J7I6 I6 I6 WF'†‘°¯Ù´´á´´á´´á´´à´´à´´à´´à´´á··ã··ã¶¶áš”¨_P9I7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 Q@|s|žÊššÉ——Æ––Ř˜Ç’’Á’’Á’’ÁÀŽŽ¾ŒŒ¼ŽŽ¾ŽŽ¾À‘‘Á‘‘Á••Ä••Ä••Ę˜Ç––Å••Ä””Ô”ÃÀ½ŠŠ»‰‰¹††·²}}®||®ww©rr¤pp¢llŸiiœffšbb–^^’]]‘[[WWŒVV‹VV‹VV‹WWŒXXZZŽ[[\\‘\\‘\\‘bb–aa”cc—cc—dd˜aa•aa•``”__“__“]]‘]]‘\\‘ZZŽZZŽZZŽZZŽWWŒVV‹VV‹TT‰SSˆRRˆRRˆRRˆPP…PP…PP…PP…PP…LL‚IIHH~FF}CCz@@w>>u<1>/>.<.<,=+;+=-G9(M?0J;&L@-K>)K<%TE/YG0YC.]H4eR@raPvk[rfUˆwŸ¥Ÿ¡¨ªˆƒqg\cTEdS?cQ;bR;fQ:gQ:dP;bP;bQdVAiZD‰zdª£˜­ª£Ÿ„’††k€€dˆ…iމo‰q‰†n…ƒnƒ„swxaqr[imV`eMZ_D^bF\cF\cC\dBZc@Yb>U_;MW5FN.;B&03)&)$'#%!$!%!%$+(46 GK0^dCpsNuxRpvO]hBNY4emJ€ƒb‘o™™{’—„]eUQL8\X8df@vO›h¿·чʺ¬žf‡yHvd}vB~zG€S–”~]\PFC,GD&TU2{wM˜’`¤žhž˜b˜`¬³—‘q¥–nä{Σ{ɘt·…gœlV°’Œšgr–dXÅ´ƒñí¿ññßððìððêîíÝÆ½¤sc?J8I6 I6 I6 I6 eVC±°Ö¶¶â´´á±±Þ¯¯Ü¯¯Ü¯¯Ü¯¯Ü²²Þ´´à´´à´´àµµá··ã··ãµ´Þ†WG)I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 k_U›š¿  ÎœœË™™Ç˜˜Ç––Å””ÿ¿¿‘‘ÁŒŒ¼ŠŠº‹‹»½À¿ŽŽ¾‘‘Á‘‘Á’’Á••Ä••Ä””ÃÀÀŽŽ¾‹‹»……¶……µ„„´~~¯||®{{¬ww©uu§pp¢llŸiiœdd˜bb–__“\\‘[[XXWWŒVV‹VV‹WWŒXXWWŒWWŒYYŽ\\‘ZZŽ``”__“]]‘]]‘cc—aa•aa•__“^^’]]‘\\‘[[[[XXWWŒWWŒWWŒWWŒUUŠSSˆSSˆRRˆQQ†PP…PP…PP…MMƒLLLLLLLLKKFF}FF}DD{@@w<2@3@2?/?/=.=-;-<,;,:,<,<->/B1K;'WK9haR~zskWUr[Jo[JlZIjYLkXGaO=f]Sd\OeVEcU=`Q8bO7cP6aP8bP8bN8bN7cN8`O7_O8^P:cW?qhOw\ž•y®¤‹±¨•¯¬¤©¨¡œ”€—ƒf•‰m“’ywuŽ|‚‚opsX_fJPY?KT:QY>W`A\eC`hEaiEciEdiE]b?RV7FI/79&--'%%!# # # %"'#+(57VY;vuQ‘g¡v¨©‚¯²Œ½¾žÍ̳ØÕ½Ðή¹¼Ÿ©z‘žpŸ¨z±¹ˆÃʘØÚ§çã³çá¯Úס½ÁŠ›¨q…˜\†žV—¨\¬´nÆÆšÔÍ´´©‹Ÿ“r}bŒnVkVœq]¥zaª}a¯‰oÅ¥¯vu³xj¾nɇvÏŠy͆tÄ~oÕ§£Ã„†ÂtgÌ™qáÔññ³òóÏñòÜßßÈ…dQ>I6 I6 I6 I6 I6 I6 aR;¤¡À±±Ý®®Ú®®Ú­­Ú¬¬Ù¬¬Ù¯¯Û¯¯Ü¯¯Ü²²Þ´´à´´à´´àµµá··ã··ã¯®Ó|rsO=I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 WF)‹Ÿ§§Ô¢¢ÐžžÌ››Ê––Å’’Á““ÂÀ½½½ŒŒ¼……µ……µ……¶ˆˆ¸‹‹»ŠŠ»‰‰¹ŒŒ¼ŽŽ¾ŽŽ¾À’’ÁÀŒŒ¼ŒŒ¼‹‹»ŠŠº……µ‚‚³²~~¯||®xxªuu¨rr¤kkžjjhh›dd˜cc—aa•\\‘[[YYŽUUŠUUŠSSˆRRˆSSˆRRˆRRˆWWŒYYŽXX\\‘ZZŽ[[[[``”]]‘__“\\‘[[[[ZZŽZZŽXXWWŒWWŒUUŠUUŠUUŠUUŠQQ‡QQ†QQ†PP…NN„NN„MMƒMMƒLLKKKKKKKKFF}EE{AAxAAx>>u;;r;;r77o55m22k00h++d++d''`%%^%%^""\""[""\""\$$^$$^YYY""[ Z""[ Z ZX""[%%^&&_((b,,e,,e..g00h00h00h00h00h00h..g..g..g,,e,,e++d**c**c**c**c**c))b((b''`&&_&&_&&_&&_&&_%%^%%^$$^$$^##]##]##]##]##]YYYYYYYYYYXXWVVUUUUUTTTTTTTTRRRPPPPOOOOOONMMKKKKJJ:#C5@0A0@/=->,;,<+:+=,@-@0B1D3G8 OA(OB,RB.WD1_H3aI5bK5dN6dO6aN5`M4bO5fYA\M5^M5`L4aL5_L4`L5`L6_M5aT9f\AiaEjgHtuU‰ŠgŸžz¯¬Š·³•¸µ›¹¸¨´²£­¦¥ž€ Ÿƒœƒ™š€••{Žt~ƒfhpTPY?EK5IO8OV,<+<+<,>-@/B1C3D4F8 L>&K<%O?'UC+\F/aI2`J2dK3dM2cM3dN4aK2eS9[K1]J1]J2]I3]H1]I2\I1^N4h\=slI{yS€ƒ[‚Œcšmœ¦z¯´Œ¼¼™Á¿ Á¾¤¾¼£»¹ ¹·žµ²š±®—«©“¦¥¡Ÿ‰˜—~‹ry~dlr\\bMY_HW^DV^@W`?afElnMwuT}vU~rSvhNiYEVI:D:2;3+9/&:.#=.#E3)L:/V@6bG=pVHŠu[«ž{ŽšÔϰ××ÁÚÛËÞàÎàâÐãåÒæèÒééÐêêÏììÑííÔïîÓñïÑñíÐóîÑóïÑòðÐñðÌñïÄïï½îïÁïðÏæåºÒÑ›¸¸…¢˜r|_…lS{`IsUAjI8nhnv[BBYF7YH8]L=dTEh[JiYJœ‹xemoWHw[>…gC¡“^ËȆ±©pcS'I7 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 VE'„}‰¥¤Ï¨¨Õªª×¬¬Ùªª×¬¬Ù¯¯Ü¯¯Ü°°Ý²²Þ³³ß´´à´´á²²Þ¬¬Ù©©Ö¦¦ÐXH.I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I7bT?£ À®®Ú««Øªª×££ÑŸŸÎššÉ˜˜Ç••ľ¿ŒŒ¼‰‰¹‰‰¹ŠŠºŠŠº‚‚³‚‚³‚‚³ƒƒ´††·‡‡·……µ‡‡·‰‰¹ŠŠºŠŠ»½‹‹»‰‰¹‡‡·‡‡·……µ‚‚³}}®||®{{­uu¨uu§ss¥pp£mm hh›gg›cc—]]‘]]‘XXVV‹VV‹SSˆQQ†PP…OO…OO…PP…QQ†PP…QQ‡RRˆWWŒSSˆXXXXWWŒUUŠ\\‘[[XXWWŒWWŒWWŒVV‹UUŠUUŠSSˆQQ‡QQ†QQ†QQ†PP…NN„MMƒMMƒLL‚KKKKKKKKHH~FF}FF}FF}FF}EE{AAxAAx@@w>>u::q77o77n66n55m00h,,e((b$$^##]""[YY!![!![""\!![YYWXXYYYXXX Z##]%%^''a((b**c,,e,,e--f--f++d**c**c**c**c**c**c**c((b''a''`&&_&&_%%^%%^%%^$$^$$^##]##]##]##]##]##]##]YYYYYYYXXWVVVVVUUTTTTTTTTSRQQQPOOOOOOONNNNNNMMMKKKKR?'Q>%N:#F4A/?.@/>-@.B.D1E3F5L;&N?(K;$M<$P?&SA(ZD,]E.`H2cK3cL3bK3`K0mZ@`L3\G/[F-ZG/XG/XF-ZF0ZH2`S7nhD~}T‰Ža’žn¬~£³†¯»–»Â£½¿œÀÀ ÃÁ¥ÃÁ¨Â¿¦À½¥½º¥¹¶£´²¡±¯¬ª—¦£ŽŸ…•”|ŒŠs„k}wasoXkfOkbKodLykSƒpXŠsZ‹oYˆgV€]QzVMzUM€XO…YP†WP‡UO†VO‡WP‹YR\T”gX¨ˆrÁ³˜ÏǧØÔ³ÜÜÂÞàÊââÌäåÐçèÓèéØéìÜêíÛìïÙííÔìêÌèæÆêçÇíéÈðëËðìÌíêÉïîÊòñØòò×òó¾ññ­æé¡Éу• Vci3TO.JE)@:$ypna[d0+$0/.067%A?.JG7TMB—pek`UHleJƒ~W¢œl ˜ejZ-J7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6^O:Š¡¥¥Ò¨¨Õªª×¬¬Ù««Ø®®Ú¯¯Ü¯¯Ü°°Ý°°Ý®®Ú­­Úªª× žÁk`WK8I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 O=Š‚²²Þ³³ß®®Ú««Ø§§Ô¡¡ÏžžÌššÉ••ÄÀŒŒ¼¾‹‹»……¶……¶††·……¶‚‚³€€±€€±€€±‚‚³ƒƒ´ƒƒ´……µˆˆ¸……¶††·ŠŠº‡‡·††·……µ……µƒƒ´€€±{{¬zz«zz«uu¨tt¦oo¡mm iiœdd˜cc—aa•]]‘[[XXVV‹RRˆQQ†NN„MMƒLL‚JJ€KKKKLL‚MMƒPP…RRˆQQ‡SSˆSSˆVV‹SSˆYYŽXXXXWWŒVV‹VV‹UUŠTT‰SSˆRRˆQQ‡PP…PP…PP…PP…NN„LLLLLLIIIIHH~HH~HH~FF}EE{EE{EE{EE{CCzAAx@@w??v<&P:#J6!E1E1B0B0C0D0F3I7!Q>)O=&O=%O=%Q>&R?(RA)WB*[C-^F.aI2cJ1`I1qdN`R6^H0ZF0WD-VD,VD,VE,WE.XG/]R5nhF€€Y‘˜lž«y«¸‰²¾‘´Á–µÀ™¹Àœ½Á ÁÁ¤ÂÁ§¿Á¦¿¿¥¿½¦½»¦¼¹¦·¶¢±°¬¬–©§‘¥¡Šž™ƒ˜z‚mˆvbfTy]NwZKy[K|^L~_O]P€^RˆeW“lZ o[§q\¦o]—eUˆ[N~TIxRGuOE~WLzoŠ~o›’q³­ƒÅÕÒÏ¢ÙØ¬ßݱæä»éèÆêëÎìíÕííØëìÙççÔר½ÍίÏΫÒΩÑΩÉÏ­ÔÞÈéíÏòóÌóóÑóôËóôÀóõ¶òó«á啬·lp~GltG”š‹z}tRWBMR2EI+AD*AD+FG2II8‘Žqhvd^QmiL‚€X‰Wl^/L9I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 L9j]Rš—·¦¦Óªª×««Ø««Ø««Ø®®Ú±±Þ¯¯Ü¬¬Ù¨§Ñw~Q@I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 K8k^Qª¨Ì²²Þ²²Þ²²Þªª×§§Ô¥¥ÓŸŸÎ››Ê••Ä’’Á¾ŠŠ»ŒŒ¼††·²²²²~~¯{{¬zz«{{¬}}®²€€±€€±‚‚³‚‚³‚‚³……¶……¶……µ‚‚³‚‚³²°||®zz«yy«uu§qq¤nn¡mm hh›dd˜bb–bb–]]‘XXWWŒSSˆPP…OO…MMƒKKIIFF}IIIIKKMMƒMMƒOO…OO…PP…PP…UUŠRRˆUUŠRRˆVV‹VV‹RRˆRRˆRRˆRRˆQQ†PP…PP…PP…MMƒLL‚LL‚LL‚LLKKIIHH~FF}FF}FF}FF}FF}DD{CCzCCzCCzCCzAAx??v>>u<bVDYF1[E.[E.ZC-VC-UD-ZG0\H1ZE0YJ2_W9qpJ†‰^§x¯ºŠ½Ä™ÁÉ¢ÁÉ¥ÂȦÄǨÆÇ«ÄÆ©ÀæÀ¦ÃèÂÀ§À¾¦¼¹¢¶³œ°«’¬¥Š¥„”{‘…o‚t_udRn]JcM>^F9ZC5VB4ZI:i[G|nS’€_¦kªŠf¢xY“jPwZD[G5OvuM‡‰\˜œk©°y¼ÁŠÍΛØÙ«ßÞ¶áÞ½ÛÚ»ÏдÄDZ¸»ª¤¦‘¤£‰œ›’¥“•§›£µæë°òóÑðñãðòâñóÔòôÆóôÁòô¼éí¸ßä¸äçÌääÏÛÝ¿×Ú»ÆÉ§¥§‚Žk~|^zsZ¦Ÿ•„zxujWwnOrlE`V+L:I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 O=wmn¡ Ç§§Ôªª×««Ø¬¬Ù««Ø©©Õ‘Œ¢\M5I6I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 VF(“ޤ¯¯Ü²²Þ²²Þ¯¯Ü¯¯Û§§Ô¥¥Ó¢¢ÐššÉ––Å’’Á¾‹‹»……µ‡‡·‚‚³€€±€€±€€±°{{¬yy«yy«{{­{{­}}®||®||®€€±€€±€€±ƒƒ´ƒƒ´‚‚³€€±€€±€€±||®zz«uu§tt¦ss¥nn¡kkžjjgg›ff™aa•aa•\\‘WWŒUUŠRRˆOO…MMƒLL‚IIIIHH~GG~GG~HH~KKFF}KKKKMMƒMMƒQQ‡PP…QQ†NN„UUŠUUŠRRˆQQ‡QQ†QQ†PP…OO…NN„MMƒLL‚KKKKKKKKKKHH~FF}FF}FF|EE{DD{DD{DD{AAxAAxAAxAAxAAx@@w>>u<)L>&K?&NA'TG+]X6rtI‡ŒX’˜a‘•de‡‰f„‚f‹ƒk’ˆp”ˆr‚m’Št‘‹…lf\c\?ca9•SÚÛˆóó¸ñóÙïñçðñëðòåñóØòóÈñóÎðñæððîðïïððððððððððððððïððîððëððìíìß«¥„UFI6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 J7_P>u>>u>>u>>u<+S@-SD/P>.K8(I8#L8"K7$H7%F8)K9-N:-L;-K:+M:-P;/O;.N=,N@.L=*P?*R?)V?(Y@)X?)VA'TA(TA)RB*SF/ZT;opT‘”q¯±‡ÅÄ—ÏΤÔÔ¬ÔÔ®ÕÔ±ÖÔ±Ú×¶ÛÙ·×Ö³ÔÓ¬Į́Áž¬¯‹”—twzZ^_ARP5KI4JD2G@0@;+<6'51!4+0*/*@7WW:knKŒ‰a›•k™’j„^]_K\e_NJ@RD€y†¤¤Ñ¦¦Ô¨¨Õªª×ªª×­­Ú¬¬Ù¨¨Õ§§Ô¤¤ÒŸŸÍË––ÅÀ¾ŠŠ»……µ‚‚³°‚‚³}}®xxªxxªxxªvv¨uu§pp£qq¤ss¥uu§xxªww©vv¨xxªzz«ww©{{¬||®{{¬zz«xxªxxªvv¨uu§rr¤oo¡nn¡nn¡iiœff™dd˜aa”^^’ZZŽZZŽWWŒUUŠQQ†NN„JJ€HH~GG~FF|DD{CCz@@wBByBByDD{HH~EE{HH~HH~KKHH~LL‚LLLL‚KKPP…PP…MMƒLL‚LLKKKKKKIIHH~HH~FF}EE{EE{EE{EE{CCzAAxAAxAAxAAx@@w??v??v??v<'M;&N<)L;'K9$J7!K8"L8#L:%N<)P>+Q>+R>*R>+P=)R>+M=)M=%O>&S?'V@(XA)XA'UA'RA)RB*YN4_\?hlIz„\Žšo¢­}­·…´¼³½¹Á•¼À–ÀÚÃÇÄÆ¾À˜¸¹’¬¬†›šv‚ƒcnnP\Z>NH.E>'A;'@9';6#52 1/.+.)+)/2JO2twSš˜u£x›—p‰ˆdyƒjy~uXVWC;*H?$NB)VF,_M1eS6hT9jZ;pkE~€Q—]š£d™¤`‰—TtGgiBkaBvfIsgHŽ‘{“€yiZqaDf[:QN-EE%GH%W`+™®Váé‹óõ²òôÍñóØðòàðñçððìððîðððððððððððððððððððððððð×Ô΄w]M;I6 I6 I6 K8obV œµ¨¥Ä– \M1I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 i]Tš˜¾¡¡Ï¤¤Ò§§Ô¦¦Ô¨¨Õ««Ø««Ø©©Ö§§Ô¥¥Ó¡¡ÏššÉ™™Ç––ÅŽŽ¾‹‹»……¶ƒƒ´²||®°yy«uu§uu§uu§ss¥rr¤oo¡pp¢pp£qq¤uu§tt¦tt¦uu§vv¨uu¨ww©zz«yy«xxªuu¨uu¨uu¨ss¥pp£nn¡mm kkžee˜dd˜cc—bb–``”\\‘XXWWŒSSˆNN„NN„KKKKHH~HH~DD{AAxAAxBByAAxBByDD{AAxDD{DD{FF}EE{IIHH~KKIIKKLL‚LL‚LLIIIIIIHH~GG~FF}FF}FF}DD{CCzCCzCCzCCzAAx@@w@@w@@w>>u==u==u<#S?$TB'UE*VK.XQ3\Z9ejEq{Q{‡X‚”`‹žh‘£l–¦o–¦q˜©u ®|¤¯¥­}¥«~¢y’–p‡‰gyw[jfM`[CWP9LA-F<&?8#;5#72 2.0,-*)**,9?&^fIŠŒj¦¢{«¦~¢¡z”˜{{z_pfPcT>bU<]R8QM/MH-TK/\Q4d[>u<)R?*S>*S>*P>'L<%K;#L:&M:&K:%M<(M;&N;%R>+N=&R?&S@#Q@"OA"TL+e^>rlLyuT~Zƒˆ_„`‰•cŒeŒŸeŒ¡eŒ fŸf‘¢i”£l—£k“hŒ”e…[suNjhHaZ@XO9TI4QD.MA+J=(F;%A8%;4"613/0-1-12BH/joO‘m©¥|®ª©§€•˜x}hc[DcU9eW9gX;gZdbBejDipFuTƒŽ`–eŽ•a‰“YƒR‡‹RŒ†T€U†vT|s] ’‡qoULATN4TL.WJ,XK+WM+TK*PJ+IF&EQ"”L×ßœððÎñò×òóÓðóÌïóÕïñéïðîððïðððððððððêé訠[J&I6 I6 I6 I6 XG*ˆ”³³Ü··ã··ã··ã··ã··ã··ã¹¹ä©¦ÅpdYK9I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 N<uknŸŸÊ  Î  Î¡¡Ï¡¡Ï¢¢Ð¤¤Ñ££Ñ¤¤Ñ¥¥Ó¦¦Ô¢¢Ð¢¢Ð  ÎššÉ””Ã’’Á¾‰‰¹……µ€€±}}®||®ww©zz«uu§qq¤qq¤rr¤pp¢nn¡jjkkžmm nn¡pp£pp¢pp£oo¡rr¤qq¤pp£tt¦tt¦tt¦qq¤pp£pp£pp£nn¡jjhh›hh›ffšcc—aa”__“]]‘[[VV‹UUŠSSˆQQ‡MMƒMMƒKKFF|FF|DD{BBy@@w@@w>>u@@w@@w@@wAAxAAxEE{DD{FF}DD{FF}FF}FF|FF|HH~KKIIFF}FF}FF}FF|EE{DD{CCzCCzAAx@@w@@w@@w@@w@@w>>u<>u<[R9VM7YQ9[T6^W7`X6^W5YR1XQ0[Z7ab>fg@efA]_JS;\hK„Œm§­´´“®¯‹¨¬ƒ…’fetFOY/DE%?>"@<#?;"@=#AD&ZbBo~TŠ™dŸªq¡¬r—¤iˆ\xyMolDuiGybDŠq]—‹„e_cLF9FA&LD'VH-YJ-XK.XL1[N6\R9a\E…‚l«œ”…z€pY~nPulKy{T®·yãå˜óô¨ôö²óõ»òóÎ×ÕÃ…y^L:I6 I6 I6 I6 I6 RA ¯­Ò¶¶â´´á±±Þ¯¯Ü¯¯Ü¯¯Ü²²Þ´´à´´à´´à´´à´´à··ã··ãµµá²²Þ®®Ú¢ Åpe_M:I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 J7odaœÃ££Ñ¡¡ÏŸŸÎŸŸÎžžÌššÉ››Ê››Ê››ÊœœËœœËŸŸÍËššÉššÉššÈ––Å““¾ŒŒ¼‰‰¹ƒƒ´°||®zz«uu§tt¦pp¢ss¥nn¡iiœiiœjjiiœgg›dd˜cc—ee˜ff™hh›kkžjjhh›kkžllŸjjllŸnn¡nn¡nn¡kkžjjjjhh›ffšcc—bb–aa•__“\\‘[[WWŒVV‹SSˆQQ‡OO…NN„KKFF}FF}FF}AAx@@w??v>>u;;r::q::q99q99q::q::q;;r;;r<>u??v>>u>>uAAxAAxAAxBByEE{DD{AAxAAxAAxAAx@@w??v>>u>>u>>u<&P>&N=&N>)L?&MA'OF+QE,XJ1_R:cU;aS:_O9XK5OC+L?&K=&K=&OA)RC+SD+SC*QA(Q@'OB(PE*SJ.RM/OL.KF+E@%NK3MK7<8 ?8!B;#KA,RD.YD.tYHxlgli`^\LilR†t°¶Êɱº»Ÿ¥¨ƒ–pq{WU_>EK-@B&?=#?=">;#;9;<?H'WfAv…\Žœm—¡oŽ™g‰YlqFb^:i]>‚qU°œ‹—ƒ{zeTi[?SK.E?#G@$NC&OC'MD(JB(NF4hup|šzt}~m]…qT‰tSˆtQ†uRŽˆ]¶¹xÝáñóªòôÆäåÌ™tTBI6 I6 I6 I6 I6 I6 I6 J8i[K¡º±°Ý±±Þ±±Þ°°Ý¯¯Ü¯¯Ü¯¯Ü²²Þ´´à´´à´´à´´à´´á²²Þ®®Ú¬¬Ù§§Ô¥¥Ò‘Œ§_P=J7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 XH-Œ§¢¢Ð££Ñ¡¡ÏžžÌŸŸÎœœËššÉššÉ››ÊššÉ™™Ç››Ê™™ÇššÈ››Ê››ÊššÉ••Ä••Ä‘‘Á½ŠŠ»‡‡·‚‚³°zz«ww©uu§uu§pp¢pp£llŸhh›hh›hh›hh›ffšcc—cc—cc—cc—ff™iiœgg›ff™iiœjjiiœiiœllŸllŸkkžjjiiœiiœgg›ee˜bb–``”__“__“]]‘\\‘WWŒVV‹RRˆQQ‡MMƒMMƒKKFF}DD{DD{AAx>>u>>u<>u>>u==u==u@@w??v>>uAAxCCzAAxAAx@@w??v??v>>u>>u==u<3A4?4<2>2A3B5D6G7 H9!H8 H:"J;#J:#J<%L?&QE+QA*QC+OB*RC,QA+M@)I;"H9I9 J9!L<#P?'P@'O?&N?%P?%M?$J<"J="J>%F?%F?&F=&C=#E?&NL5>9#@:%D=&KB,]R?zl_pc]]SHedNr´¶œÂÃ¥ÊȪÃß«±Œˆ’p^lMJO5GE.EB*D@'?;";< >B$KQ1agCy}XˆŒc’›i—¡k¢©v‚Ž]dsCSZ3QT?{€z”‹„„l[‡jN‚gHr^>cU5TL.HD(G?$A:"C<,vf_us{NN\NHBaX?nbFzkM‚pPƒpOƒsR†~[’tÆÖ¨Ý⻩¢|[J#I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 N<xnm¤£É¬¬Ù®®Ú¯¯Ü¯¯Ü¯¯Ü¯¯Ü¯¯Ü²²Þ´´à´´à²²Þ¬¬Ùªª×ªª×§§Ô¤¤Ò¥¥Ó¤£Ï{rxJ7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 O=zqv¤¤Ò¢¢Ð¢¢Ð  ÎŸŸÎžžÌ››ÊššÉ––Å••Ä••Ä––Å••Ä––Å——Ƙ˜Ç––Å••Ä––Å””Ñ‘ÁŽŽ¾‰‰¹‡‡·ƒƒ´}}®zz«xxªtt¦pp£pp¢llŸnn¡iiœff™ff™ff™dd˜cc—aa”aa•aa•bb–cc—dd˜cc—cc—gg›iiœiiœhh›jjjjiiœgg›ffšffšffšdd˜aa”]]‘]]‘\\‘ZZŽWWŒVV‹SSˆRRˆQQ†LL‚LLIIFF}DD{CCz@@w<>u==u<>u>>u>>u==u<3?3B4E6E7F7E8 E7!G8!G9!J>'L;&M<$L<#L<#K9"J8 I8G8H9I9K:M<"O?%O?&M?&L>$K?$I>%E<"D<"D<#B=#D>'D>'D=%H?)YTD>;'G@+JA,XQ?bZK^RCl]M€€nž£Œ¬²—Á¡ÓÑ­ÏÏ©¹¿—”whrQJN2FC+GB*E@'D@&A>#IK,giD„^¢“l¥˜o œm™›iŠZx€JltE\hE^vkm}f\VtaFhGƒgE{fCo^>u<>u==u<>u??v??v>>u>>u<'J:"K8!K8 N:!O:"N:"M9 N:!N; K; L&J>%F>%D=%B=$B=%A<$B<$E=%F?(F?)F>)yuk?;-LC-OF2UN?db\zsb‡‡yƒ‰p–Ÿ{µ»’ÈÊ ÇÈŸ¸¹œ¢zv[RX7FC(E?&C?$C?"E@&ML-ihC…\¦”lª–nžh†ƒZnqIekIrw\qr^cj^UZXGA4aR6r]>|dE|dCubCk["F>#H@%LE*QL2WaN‡’†¢œ—…{r\L/J7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 J7fYI𖳬¬Ø¬¬Ù¬¬Ù¯¯Û¯¯Ü®®Ú««Ø§§Ô§§Ô¦¦Ô¢¢Ð¢¢Ð¤¤Ò•’°dWHJ7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 VE(…¢¢Ð¤¤Ò¢¢ÐŸŸÎŸŸÎ  Î››Ê››Ê™™Ç˜˜Ç––Å‘‘Á‘‘Á••Ä””ԔÒ’Á’’Á••Ä““Â’’ÁÀŒŒ¼‹‹»‡‡·„„´²}}®xxªuu¨rr¤oo¡llŸkkžhh›jjee˜bb–bb–cc—aa•``”]]‘]]‘\\‘^^’__“bb–aa•``”aa•cc—cc—dd˜ffšffšee˜ee˜cc—cc—cc—aa•``”\\‘YYŽXXWWŒVV‹SSˆQQ†OO…LL‚JJ€FF}FF}CCzAAx??v>>u<>u>>u>>u<%K>&K=&H>'E>'D?(D?(D>(D>(B?'E?'G?(NI3`]FSN?IC.QE/dZI€|x|ovybŒ‘p¡©²»¾Ä˜»Â’¥®€‡enuPRW7FD)D?%B>#B>$C>#GA$YV3ztM‘…[”ˆ_ƒ^†‚e„twur\\\?=;2,/-<:#\M5jX0?1>1>1A2E4I6 I8"G8"J9"K;"L<#I8I7M9 N:"P:"Q;"R<$R<'R>&N=$J=$J;'H<'G>(F=)I?+F@*C@)A>*><+BA-KI;WZL`f[nj`rl`daRceVbcSvu[bjUnuYƒ‹g™¢w¯·ˆÂÆ–ÃÅ”»¾¤­}„e\h>FK(??#A=#B>$C?#FA%GA'GC(TT6ssTŒŽr’”€‰‰zecY62).).)*)().-D?%]L2q^BwbFjU:|mX…|qltVMK]S?hZ@n^BvdGzfIzgJvdGk[@ccNƒy~yzTLKL>&J8I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 WF*‹„”ªªÕ©©Ö¦¦Ô££Ñ¥¥Ó¡¡Ï ŸÌƒ}VF*I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 ]N7‹¢¦¦Ô¥¥Ó¡¡Ï  ÎžžÌ››Ê››ÊËššÉ••Ä••ÄÀÀŒŒ¼ŒŒ¼¾ŽŽ¾½ŒŒ¼¾ŽŽ¾ŽŽ¾ŽŽ¾ŒŒ¼ŠŠ»‡‡·……µ€€±°||®xxªss¥pp¢nn¡jjhh›ee˜cc—dd˜bb–^^’^^’^^’]]‘]]‘ZZŽYYŽZZŽZZŽZZŽ]]‘[[[[]]‘__“``”]]‘aa”aa•bb–aa•``”__“__“]]‘[[ZZŽXXWWŒVV‹UUŠQQ†MMƒLL‚LLIIFF|CCzAAxAAx??v<>u;;r88p88p55m55m44l00h00h00h00h00h00h00h22j00h22k22k22k55m44l66n77o77o77n77o88p::q::q88p77o77o77n77n66n66n55m55m33k22k22k22k22k22k00h00h00h00h//h..g,,e,,e,,e,,e,,e**c**c))b))b))b))b((b''`&&_%%^""[""[""[XXXWVVTTPNNNNMMLLNNNNNMKKMNNNNNMMKLLLPNNPPPPPPOOONNNNNNMMLKKKKKKKKJ I I I I I I I I I H H G F F F F F F F FEEEEEA5#?3 ?2;1<19080:0=2A1B2@3A4B4 C7!E9#F:%F8G8G8"G8#H8!H7"K9%N:&J;'G;)M>3UMAf^Utql{y~^_d`\YZVYLHH??9<<1?>.B@+DB,JM0Zc8 50.)+''$&#'%97(^\R}uq‹yvh^iW?hZCbW?RK4KE,JC*MF.QH0UK3XK5nma‰‹Œ‰|‚paYcQ8Q>I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 N<pfdvmrk`[M;I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 dVFž›¾§§Ô§§Ô¥¥Ó££ÑŸŸÎËžžÌ™™Ç™™Ç™™Ç••Ä‘‘Á‘‘Á¾¾ŽŽ¾‰‰¹ŠŠº‰‰¹‰‰¹‰‰¹ŒŒ¼‹‹»ŠŠ»ŠŠºŠŠº‡‡·††·……µ‚‚³}}®}}®zz«tt¦pp£nn¡iiœhh›ffšcc—aa”``”]]‘YYŽYYŽZZŽZZŽWWŒVV‹TT‰UUŠWWŒVV‹XXWWŒWWŒWWŒ[[]]‘[[[[]]‘``”__“]]‘[[[[[[ZZŽXXVV‹TT‰SSˆRRˆNN„MMƒLL‚KKJJ€GG~DD{DD{CCzAAx>>u;;r::q::q55m55m44l00h00h00h00h..g..g..g00h00h22j00h22j33k22j33k44l66n55m66n66n77n77o77o66n55m55m55m44l44l33k22k22k22j00h00h00h00h00h00h--f--f--f--f,,e++d**c**c**c**c**c((b((b((b((b((b((b&&_%%^%%^%%^%%^""[""[""[""[!![!![YWTRRPNNNMMNNNOONMMMNNNNOOONNNNNKKNNNNOOOOONNNNNNMMLKKKKKKKKJ I I I I I H H H H G G G F F F F FEEEEEECC?6"80;/=4">5%81:2<2@4A3C3A4B5"D6$D7&H<*F:'H;%G9%D8$E8)J>2SKCic_z||rz„{€‹€v…vfjgWV[PLOD=G=1F?+C>+D>+B?,A@,A@,@@+IN3[gAoP–]§g›¶rŸ¸v£ºz¦»«½„¤¶”§q„—bpOZj=GO*=?'KF6iaX|wu{sqi^]QD>M?0OA-NB)L@'I?'E=&>660.++'+)D@5efavrwkgsUMOR@7]H4gQ5gS4aQ3WL1]YCST;@@%GA*KD.k_P’‡‚mfkRIHXM6Q@J7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 H5 H5 H5 H5 RA"‹†˜¨¨Ô©©Ö¦¦Ô££Ñ¢¢Ð¡¡ÏžžÌ››Ê˜˜Ç––Å””Ô”Ó“ÂŽŽ¾ŒŒ¼ŠŠ»‰‰¹††·††·ŠŠº††·††·††·……¶††·‰‰¹‰‰¹‰‰¹††·……µ‚‚³€€±{{­{{¬ww©qq¤oo¡kkžkkžhh›ee˜cc—aa•aa•]]‘[[[[\\‘[[YYŽWWŒVV‹VV‹WWŒVV‹XXXXWWŒWWŒWWŒYYŽ[[[[[[]]‘[[[[ZZŽZZŽZZŽWWŒVV‹TT‰RRˆQQ‡QQ†PP…LL‚LL‚IIHH~FF}EE{AAx@@w??v<Q_J]j[dshlyjcg^oon{}{|sriufZe\QVQDFD88F60K8+QA3VL>M?,O?*L>*H>*G>+E>*E>*E@+EA,GE.RX9coGuˆW„b“°nœ¹v¸w º}¡¶}ž±{‘£q€‘besIV]=bdOvrjvxyhekOHJ@8-C;*I>*I@(KB'NA(K?&I;#IA(>5 <1:4#_^RknmhjpTPQ:422+$<2"G>%UF*`L/gQ1eQ2`P2TK,MF+^^J^j]LUC[ZB]RDQE=RH2L>I7I6 I6 I6 I6 ZJ-tiaxmhYH+I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 K8pea¡ Ê¦¦Ô§§Ô¤¤Ò¡¡ÏžžÌ››ÊššÈ––Å™™Ç••ÄÀÀÀŒŒ¼‹‹»ŠŠ»‡‡·‡‡·……µ‚‚³……¶„„´ƒƒ´……µƒƒ´„„´……µ‡‡·……¶‚‚³‚‚³~~¯zz«ww©ww©tt¦nn¡llŸiiœff™cc—bb–``”^^’``”]]‘YYŽYYŽYYŽWWŒWWŒVV‹UUŠUUŠVV‹UUŠWWŒXXYYŽWWŒWWŒYYŽZZŽZZŽ[[]]‘[[[[XXXXXXWWŒVV‹TT‰QQ†PP…OO…NN„LLLLHH~GG~EE{AAx>>u>>u<CG<8I91K;/N=,M<*L;(K9(H8$G8&M:,pf`@5,L<)M>)J='J>(K?+I>)H>)H?*IA*JE,RW7cpEvŒU…¡d¯m˜¶t›¹v¢»|Ÿµ|–©xŒ¡y‚ŽŒroiWSOEA7>;+>='A=%B; E<"C=#C=#F=$E;#F;$QK7^\MYIC–‰†_Y]I?83/'2.5172<4@9LC&ZI-eO1gQ3cP2\P8aXIxmc^VGwyv¥«©LMJH@/OA"J8I6 I6 I6 I6 SA ‚y}°¯Ö··ã¹¹ä°®ÒzolN<I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 ^O:•‘¬¦¦Ô¥¥Ó¦¦Ô¦¦Ô¤¤Ò¡¡ÏŸŸÎ››Ê˜˜Ç˜˜Ç””ԔёÁ¾ŽŽ¾‰‰¹‡‡·ˆˆ¸ˆˆ¸„„´ƒƒ´ƒƒ´‚‚³€€±‚‚³‚‚³„„´ƒƒ´‚‚³‚‚³‚‚³°~~¯{{¬yy«uu§tt¦qq¤kkžiiœff™dd˜aa”__“[[[[]]‘[[VV‹VV‹VV‹VV‹VV‹RRˆRRˆRRˆSSˆRRˆUUŠVV‹VV‹VV‹WWŒXXWWŒVV‹WWŒZZŽ[[ZZŽWWŒVV‹VV‹VV‹UUŠRRˆOO…NN„MMƒMMƒKKKKGG~FF}EE{AAx>>u>>u<0?7-=7->5+=5)?7)?7';3$XRKXb]*O>+M;(J7$H8$C7"I;)F8+H:)K;'K=)K>*L>(M?)L>)K?'J?(I@+JD-VZ9ixIy‘Xˆ¤e‘®l˜µv¥¾…ªÁ·Å£¨µ™•}os[QQ;HE-HD+HC(A?"@>"A9 B="KB'VG-jZB…ub—‹‚……qbg[MFRG4NH2SPFrl^G7I6 I6 I6 I6 M:ujc©§É··ã··ã··ã··ã··ã¹¸ãŸ›³cT?I7I6 I6 I6 I6 I6 I6 I6 I6 I6 I6 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 N<}u~¤£Ï¦¦Ô¥¥Ó¦¦Ô¦¦Ô¡¡ÏŸŸÎËššÈ˜˜Ç””Ó“¿ŒŒ¼ŽŽ¾¾ŠŠ»‰‰¹‡‡·‚‚³‚‚³€€±}}®°€€±°€€±~~¯°€€±€€±²°}}®||®xxªtt¦ss¥ss¥nn¡hh›gg›dd˜aa”__“]]‘ZZŽZZŽZZŽWWŒTT‰TT‰UUŠTT‰RRˆQQ‡OO…OO…PP…PP…QQ†SSˆRRˆQQ‡QQ†TT‰TT‰UUŠUUŠWWŒWWŒVV‹VV‹UUŠUUŠUUŠRRˆQQ†PP…LL‚LL‚LLJJ€FF}EE{DD{BByAAx@@w<6&@;+B?4‹Š†/222.$82"<6$>8&C9(K<+M=*M=*K;&J7%I7%G8%J>,G;*I:(L<)L=+L>*L>*L>(K='M='G='F>/PM=inW‘s˜­Œ¥¸–³Á¢³Â£°½Ÿš¨€Š–mrW^iEOR4KG+KD&JC)GB)C?%@=#?:&IC5c]U~y{wv‚_]eDB?:9.>;)>;#<;":9!96":7!;8 >;#<:";;&JG7g`U„ƒ{‹„…ˆtmx]LlU>dS9]Q6YO3SK/PE&J:I6 I6 I6 I6 K8i[J£Ÿ¹·¶â··ã··ã··ã··ã··ã··ã¹¹ä¹¹äµ´ÜŠ‚ŠSA H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 i]S˜–¹¥¥Ó¦¦Ô¦¦Ô¥¥Ó¦¦Ô¦¦Ô¡¡ÏŸŸÎËššÈ˜˜Ç””Ó“¿ŒŒ¼ŽŽ¾¾ŠŠ»‰‰¹‡‡·‚‚³‚‚³€€±}}®°€€±°€€±~~¯°€€±€€±²°}}®||®xxªtt¦ss¥ss¥nn¡hh›gg›dd˜aa”__“]]‘ZZŽZZŽZZŽWWŒTT‰TT‰UUŠTT‰RRˆQQ‡OO…OO…PP…PP…QQ†SSˆRRˆQQ‡QQ†TT‰TT‰UUŠUUŠWWŒWWŒVV‹VV‹UUŠUUŠUUŠRRˆQQ†PP…LL‚LL‚LLJJ€FF}EE{DD{BByAAx@@w<CE69<,75$83"B=,QL=@>4^^ZUYT,+$20#63#75#;7%?8'D;)G<)H<(I:&I9&I;(M?-L>+K;*K=*J<,J<-K<.QH=\XOspk†y|†„‡‡„Ž€~†zyuvzht}^z‡]‚‘a‰”d…a|†ZnwO[bALO4HD+JB*LC*G?(JD3^`Qwzp|{}lhsOKN;<69:/:<(8>#7>!9= 6<7;7:58 76!<=,WZMvvp}{|wpv^TYSH@\L8gS6mX7o\;kZ9\O2RI+L>I6I6 I6 I6 I6 ]N4–¡µ´ß··ã´´à´´à¶¶â··ã··ã··ã··ã··ã¸¸ä¹¹ä¹¹ä¨¦ÇnaUI6H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 RA Œ‡œ¦¦Ô¤¤Ñ§§Ô¤¤Ñ¤¤Ñ¡¡Ï¢¢Ð¢¢ÐŸŸÍ››ÊššÉ——Æ””Ô”ÿ¾ŽŽ¾ŠŠº‰‰¹……µ‚‚³ƒƒ´ƒƒ´°~~¯~~¯~~¯||®||®~~¯~~¯°~~¯||®||®{{­zz«xxªtt¦qq¤pp¢nn¡kkždd˜cc—``”^^’[[ZZŽVV‹WWŒWWŒVV‹QQ‡QQ‡QQ†QQ†RRˆNN„LL‚LL‚MMƒMMƒOO…PP…PP…QQ†PP…RRˆSSˆQQ‡QQ†TT‰UUŠUUŠUUŠQQ‡QQ†QQ†QQ†PP…MMƒJJ€IIIIHH~FF}EE{EE{AAxAAx==u<+H?,J?,I;)F:(J:*YD8[VNifhyy~ƒˆŽˆ’Žƒ‰{qxh\cWISH=7=:-?>+>?*;>';=(8>&5?$5>#4: 087=&NNCkjiy~…uv~c[[MA;F=/F@+GB&TK,cS2lZ7pY9oXŠ‚‹µµß··ã´´à´´à´´à´´à´´à´´à´´à¶¶â··ã··ã··ã¶¶â´´á³³ß¯¯Ú‰XH-H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 L:rhe¤¤Ð¥¥Ó¤¤Ò££Ñ¤¤Ò¤¤Ñ¤¤Ñ¤¤Ñ¤¤Ò¢¢Ð››Ê››Ê••Ä••Ä‘‘Á‘‘ÁŽŽ¾ŠŠ»ŠŠ»ŠŠ»‡‡·……µƒƒ´€€±°~~¯zz«{{¬{{­{{¬{{¬{{­zz«zz«}}®||®{{­yy«xxªuu¨pp¢mm mm mm gg›cc—aa•]]‘[[WWŒWWŒTT‰UUŠVV‹RRˆOO…OO…OO…MMƒOO…LL‚JJ€KKKKLLLL‚MMƒOO…NN„LL‚OO…OO…QQ†PP…RRˆSSˆRRˆQQ‡PP…PP…PP…PP…NN„MMƒJJ€HH~GG~GG~FF}EE{EE{AAxAAx==u<-A='=<%=<'=>'=?'=?)=>(;='6;'EN,JB(LC*LC)JC(KF)WL.]P4{t\ …‹z`R?H5 H5 H5 H5 H5 H5 wke¸¸ä¶¶â¶¶â±±Þ±±Þ³³ß´´à´´à´´à´´à´´à¶¶â··ã¶¶â³³ß²²Þ¬¬Ù««Øªª×¤£ÊwmlL:H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 _P<—”²¦¦Ô¥¥Ó¤¤Ò¢¢Ð¥¥Ó¡¡Ï¡¡Ï¡¡Ï¡¡ÏŸŸÎ››Ê––Å••Ä““¾¾ŠŠ»‡‡·††·……µ……µƒƒ´~~¯~~¯||®zz«xxªxxªyy«zz«xxªxxªuu¨uu¨ww©yy«yy«xxªuu¨tt¦ss¥pp¢llŸkkžiiœee˜aa”``”^^’\\‘XXWWŒUUŠVV‹UUŠRRˆPP…PP…PP…OO…OO…LL‚JJ€JJ€JJ€KKKKLL‚MMƒLL‚KKMMƒOO…QQ†PP…QQ‡RRˆQQ‡QQ†PP…PP…PP…PP…MMƒLLIIFF}FF}FF}EE{CCzAAx??v??v<&E=&><";;#=<#<;!::$IK:kqf‡‰‰|}„gisACM12/:9(;;!@=!D?"FA%HD'FD&FA%IF-jiXŠƒ™”{e]O;H5 H5 H5 H5 H5 H5 H5 H5 RA†’°°Ú²²Þ±±Þ°°Ý±±Þ±±Þ³³ß´´à´´à´´à´´à´´à²²Þ¯¯Û¬¬Ùªª×§§Ô¨¨Õ¥¥Ó¥¥Ó–“°bTAI6H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 Q?y„§§Ô¦¦Ô¦¦Ô¢¢Ð££ÑžžÌ¡¡Ï¢¢Ð››Ê››ÊœœËžžÌ™™Ç––Å‘‘Á¾ŠŠºŠŠ»‡‡·……µ……µ……µƒƒ´~~¯~~¯{{¬zz«yy«uu§tt¦uu§uu§uu§uu¨xxªyy«xxªuu§uu§uu§tt¦ss¥qq¤nn¡kkžjjhh›dd˜__“]]‘[[YYŽWWŒVV‹QQ‡RRˆQQ‡PP…LL‚LL‚LL‚LL‚LL‚JJ€FF}FF}GG~IIIIKKKKIIJJ€LL‚MMƒLL‚LLMMƒOO…QQ†PP…MMƒLLLLLLLLIIHH~FF|FF|EE{CCzAAx??v>>u>>u<(I?%I?'H?$E?$A=D?1EB-BB(@?&A?%@>"BC'ER0TfA`uPz‹n“ Œœ¨—ƒ‘„dhUN?H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 I6fXHŸœ»¯¯Ü±±Þ±±Þ¯¯Ü¯¯Ü³³ß³³ß´´à´´à±±Þ­­Úªª×©©Ö§§Ô§§Ô§§Ô¦¦Ô§§Ô¨¨Õ¤¤Ï|sxH5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 l`Xš¾¥¥Ó¤¤Ñ££Ñ¡¡Ï  Î  ÎËœœËžžÌ››Ê››Ê™™ÇššÈ““ÂÀ¾‰‰¹ŠŠº‰‰¹……µƒƒ´€€±°°{{¬zz«{{¬zz«xxªuu¨uu¨uu¨uu§uu§uu¨ww©vv¨ww©uu¨uu¨tt¦ss¥qq¤pp£jjiiœiiœhh›bb–__“^^’[[WWŒVV‹VV‹RRˆRRˆRRˆPP…LL‚LL‚LL‚LL‚LL‚IIFF}FF}FF}GG~JJ€KKLL‚LLKKLLLL‚LL‚KKMMƒNN„PP…PP…MMƒLLLLLLLLIIHH~EE{EE{DD{CCzAAx??v>>u<VI9LC3E?->:(>:'@:%A9%G;'J;&B7%GA/=8#D<%F>&D;#B:$LE6j_Y~‚~~}likHDC74'B=*HC+KB*ND,OF,QI-PH-MH+MO.YhAv‘j¡¹™¸ÑµÆÕ·µÉ ¤¿–¨ye^6H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 N<~vzª©Ñ¯¯Ü±±Þ±±Þ¯¯Ü¯¯Ü±±Þ²²Þ®®Ú««Ø©©Ö¨¨Õªª×¨¨Õ§§Ô§§Ô§§Ô©©Ö¨¨Ôy„H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 WG+މ §§Ô§§Ô¦¦Ô¤¤Ò££ÑŸŸÎžžÌžžÌ››Ê˜˜ÇššÉššÈššÈ••Ä‘‘Á¾ŠŠºŠŠº……µ††·††·€€±°~~¯€€±||®yy«yy«ww©uu§ss¥tt¦tt¦tt¦ss¥tt¦pp£pp£qq¤tt¦tt¦tt¦rr¤pp¢nn¡kkžgg›ff™dd˜cc—]]‘YYŽXXWWŒSSˆQQ‡QQ†MMƒPP…PP…MMƒJJ€JJ€JJ€HH~HH~GG~EE{FF}EE{FF|FF}FF}JJ€JJ€GG~HH~JJ€KKJJ€LL‚LL‚LL‚LL‚LLKKKKKKKKFF}FF}DD{BByAAxAAxAAx>>u<dS?eS>dP<`N9XJ7RF3H@,H?,F=(B;%C;#D9!C9#;1$‚€„+-0GB.VP>u<.DB1KM8ML:VL?^ODfSEvSGmXOb^`kdbjmgjxqrq{—ˆ…› ­²=BLYSGIC2A:-B9)D>%?< :9687787:9!A>$D@%EC%S[1‚^§ºŠÃÕ¬Ã×¢³Ïˆ¶Óƒ¿ÞˆÄ䎼݊†’SN?H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 L9tif¦¥Ë¯¯Ü¯¯Ü¬¬Ù©©Ö¢¢Ð  Î¤¤Ò¤¤Ò¥¥Ó¤¤Ò¤¤Ñ¢¢Î€x‚P>H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 ]O9–“±¨¨Õ¥¥Ó¦¦Ô¤¤Ñ¢¢Ð  ÎžžÌœœË››Ê——ÆššÈ––Å‘‘Á‘‘Á““““¿¾ŠŠ»‡‡·……µ……µ‚‚³°~~¯{{¬zz«zz«uu§tt¦uu§tt¦pp¢nn¡nn¡pp¢nn¡llŸpp¢qq¤qq¤pp¢nn¡pp¢nn¡mm nn¡kkžhh›dd˜cc—cc—``”[[XXWWŒTT‰RRˆQQ†QQ†LLMMƒLLKKFF}FF}FF}FF}FF|CCzAAxAAxBByDD{CCzDD{FF|DD{DD{FF|FF}IIFF}FF}HH~JJ€KKKKHH~FF}FF}FF}FF}DD{BByAAx@@w@@w??v<>&imY”¥Œ¸É¢¼Õ™½Ú†»ß|»áz¾â€¾ä„Âæ‰›¬bYMG4 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 WG*Š„–¦¦Ò¨¨Õ§§Ô¤¤Ñ¢¢Ð¡¡Ï¡¡Ï££Ñ¥¥ÒŒ¦\M7H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 N<„}‰¥¥Ï¥¥Ó¦¦Ô¤¤Ñ¥¥Ó¡¡Ï¡¡ÏË››Ê™™Ç™™Ç˜˜Ç––Å••Ä’’ÁÀ‘‘Á‘‘Á‹‹»ŠŠ»……¶ƒƒ´²‚‚³²||®{{¬{{¬{{¬xxªuu¨uu¨tt¦qq¤pp£nn¡nn¡nn¡nn¡oo¡pp¢nn¡nn¡mm nn¡nn¡nn¡llŸjjiiœffšcc—bb–aa”^^’XXVV‹UUŠSSˆQQ‡PP…PP…LL‚NN„LL‚IIFF}FF}GG~FF}FF}EE{BByBByBByCCzBByCCzFF|EE{EE{EE{FF|FF}FF}FF}FF}HH~IIHH~FF}FF}FF}FF}FF}DD{BByAAx??v>>u>>u<FL8AK9?@01?/1=11=50C5.I90N?3RA4UC2YF5]H7\K6ZG6YG4UG1QE.MD.F@*A=&@<)87#njZ;=197 ?9A:A<@;?9=724CJ6t}k›¥“«À¢žÂ‘¡Ç±×€½âƒÄè‡Ãè‰ÂæˆÃ牧½le])G4 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 J7i]R—”¸Ë¡¡Ï  Î  Î¡¡Ï—•¹l`YJ7H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 I6j]S ŸÅ¦¦Ô¦¦Ô¦¦Ô¤¤Ò££Ñ¡¡ÏŸŸÎË››Ê˜˜Ç™™Ç••Ä••Ä’’ÁÀ¿““ÂŽŽ¾ŽŽ¾ˆˆ¸††·……µ€€±²°}}®{{¬yy«yy«xxªuu¨ss¥qq¤oo¡nn¡llŸjjllŸnn¡kkžkkžmm llŸllŸkkžkkžmm kkžiiœgg›ffšdd˜cc—cc—^^’]]‘XXVV‹SSˆRRˆOO…MMƒLL‚JJ€LLKKHH~EE{EE{EE{DD{CCzAAx@@wAAxAAxAAxAAxAAxEE{DD{CCzBByCCzEE{EE{FF|FF}GG~FF}FF}FF}EE{EE{EE{EE{CCzAAxAAx<*A6%?3"?5$B8&C8%F;'M=,P@,UC/XE0ZG3]I3ZH1YH1UH1RE0MC.H@,E>);3 |usPPK85=9A:@9<9%LN@rwl™§–¶Ê©·Ð™µÔŒ¶Û‰»ßˆ¾â‡ÁåŠÂå‹Â匾䊫Ëyon6I6 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 Q?|t€œœÈŸŸÍžžÉ|t}O>H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 XI/ˆœ¨¨Õ§§Ô¥¥Ó¥¥Ó¤¤Ò¡¡ÏŸŸÎËËššÈššÉ””Õ•Ä••Ä’’Á‘‘Á¾‹‹»½‡‡·‡‡·‡‡·ƒƒ´€€±}}®}}®{{¬zz«xxªvv¨xxªuu§qq¤pp£pp¢oo¡llŸkkžllŸnn¡kkžiiœjjmm kkžkkžkkžllŸllŸhh›hh›ffšdd˜``”]]‘]]‘[[XXVV‹TT‰QQ†OO…LL‚LL‚LLGG~JJ€IIFF}DD{DD{CCzCCzBByAAx??v??v??vAAx@@wAAxDD{CCzBByCCzCCzEE{DD{DD{EE{FF}FF}FF}FF}EE{DD{DD{DD{AAxAAxAAx==u==u</SI=I:,N?1L?0L?0JA1HA/LF1NE.MF,PE.QD.TD1PC.L@(O@*O@-N?-N=+K<*G:(@5"B4"B7%C8'F8(H9(N>,TB0XE0XF2[J1YI1XI2YJ4UG1PF0ME0IC,F>*JE7@<*;4=:(e`R‚}uŒ‡‰lrszf­ÁwÎàŽÖé˜Òê›Æç•Àå¿å‹¾åŠ½äŠ±Õz‚CK:H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 ZK4[L7TD(H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 L9xnp¦¥Ï¦¦Ô¦¦Ô¥¥Ó¤¤Ò¤¤Ñ¡¡ÏžžÌËššÉššÈ••Ä••Ä••Ä‘‘Á““¾‹‹»ŠŠ»‡‡·ŠŠº……¶……¶„„´‚‚³||®{{¬zz«vv¨uu§uu§uu§tt¦pp£pp¢nn¡mm llŸjjhh›hh›iiœgg›hh›iiœiiœiiœiiœiiœhh›hh›hh›gg›ee˜cc—aa•]]‘]]‘[[XXTT‰RRˆQQ†NN„LL‚KKJJ€FF}KKHH~EE{BByBByBByBByAAx@@w>>u==u==u>>u??v??vAAxAAxAAxAAxAAxDD{DD{BByBByCCzDD{EE{EE{CCzAAxAAxAAxAAx??v??v<@;/E=,KB2J>.O=,O>.P?.L?,M@.RD2RE3RF3RE1RC-RC+QE-NB,P?+Q@-RC/PA,P@-M>,J<)E<'B8"A5#C7&E9*H<,K>-N?1QA3QE7TG4OH2KI1GJ5IP:JX?N^CSeMXiTbw_onc‚|„{iVZP91G>'kqD¢¬eËÓàå“åí âî¢Þì¥Ùê£Úë¤Û鯛jQBH5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 cUD˜•²§§Ô¦¦Ô¥¥Ó££Ñ¡¡Ï¡¡Ï¡¡Ï  ÎžžÌššÉ™™Ç••Ä””ÃÀ¾ŽŽ¾½½ŠŠ»ŠŠ»ŠŠº‰‰¹„„´„„´€€±°{{¬zz«zz«uu¨uu¨ss¥qq¤qq¤pp¢nn¡llŸmm kkžgg›ffšffšhh›gg›hh›hh›hh›hh›hh›ffšgg›gg›hh›ee˜cc—aa•``”]]‘\\‘YYŽWWŒRRˆQQ‡PP…LL‚KKHH~GG~FF}HH~FF}CCzAAxAAxAAxAAx??v@@w>>u==u==u==u<>u>>u>>u==u>>uAAxAAxAAxAAxAAxCCzCCzCCzAAxAAxAAxAAxAAx??v??v<9,KA2KC2L@/RB0PB1O@0N@0RB3SA2RA4J>4H<0J;-HC-AB*BD-CH2GI5KQ>NSAVRG[VSe_anflynqˆqr”{ˆŽ…™‡š––š–¤ž­ªŸ›¢œ¢œ ¥œš¥œ˜¤”’›“—‡€‰zmzvfvg]cC87F;(I<"I<"MG$pm=‘’P¯±a½ÃkÉÐ{ÚÞ˜Ýâ°ØÞµ²¯ŠaQ,G4 H5 H5 H5 H5 YI,cT?dVAJ8H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 O=…~§§Ó¥¥Ó¦¦Ô¤¤Ò¤¤Ñ¡¡Ï££ÑŸŸÎËššÉ˜˜Ç••Ä••Ä’’ÁÀÀŽŽ¾ŒŒ¼ŠŠ»ŠŠ»‹‹»ŠŠ»††·„„´€€±€€±{{­{{­xxªvv¨vv¨tt¦qq¤pp£qq¤pp¢jjjjiiœiiœhh›ee˜ee˜gg›gg›dd˜ff™dd˜ffšee˜ffšffšgg›ff™dd˜cc—aa•__“[[[[ZZŽVV‹SSˆQQ†QQ†LLJJ€HH~HH~FF|DD{FF}DD{AAx@@w@@wAAxAAx>>u>>u<>u??v??v>>u>>uAAxAAxBByAAxAAxBByAAxAAxAAx@@w@@w@@w@@w>>u<RB;QC9RB8SB6WD6WG4WG1XG1RE1SI3LB,JC*JB'G>#C<OH+nlG•˜o¥¨‡Ÿ¡ŠŒxxzW]P$H5 H5 H5 H5 H5 TC#‹ƒŒµµÝ¹¸ã¸¸â•ŽžWF'H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 J8k`W ŸÇ¦¦Ô¦¦Ô¦¦Ô¤¤Ò¡¡Ï¢¢Ð¡¡Ï  ÎË››ÊššÈ••Ä””ÃÀ¿ŽŽ¾ŽŽ¾½‹‹»ŠŠº‰‰¹††·……¶€€±°}}®}}®{{­ww©vv¨tt¦tt¦qq¤qq¤pp£qq¤nn¡kkžkkžhh›hh›gg›dd˜ee˜ffšdd˜cc—dd˜dd˜ff™ee˜ffšee˜dd˜bb–aa•aa•``”]]‘YYŽWWŒWWŒVV‹RRˆOO…MMƒKKJJ€GG~FF}EE{BByDD{CCzAAx==u==u>>u>>u==u;;r::q::q::q;;r::q<>u<>u>>u>>u>>u@@wAAxAAxAAxAAx@@w??v??v??v<5&A> F<H5 H5 H5 H5 H5 M;}sq¯®Ó··ã··ã¹¹ä¹¹ä¹¹ä®­Ðsg^K8H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 XH/Ф¦¦Ô§§Ô¥¥Ó¤¤Ò¡¡Ï  Î  ÎŸŸÎ››Ê››ÊššÈ™™Ç••Ä““¿¿ŠŠ»‡‡·‰‰¹ˆˆ¸ŠŠ»††·ƒƒ´ƒƒ´……¶°°{{­{{­yy«uu¨tt¦pp¢pp¢pp¢nn¡llŸllŸjjhh›gg›gg›ff™cc—aa•bb–dd˜cc—bb–cc—cc—dd˜cc—cc—aa•aa”aa”``”]]‘\\‘ZZŽWWŒWWŒVV‹RRˆPP…LL‚LLKKHH~FF|DD{CCzAAxDD{AAxAAx==u==u>>u>>u==u;;r99q77o77o88p99q<>u>>u>>u<>u??vAAx@@w@@w??v<KB9DF?@J>6RH:LC2JB1I>3H?0CA0D@0H>3JB6LD5QG8SH:TH?UKBOP=JL9LF9ND7KG7JD4N@9M>:FE3AJ2CA4H@5DD4CR8GR>u<>u>>u??v??v??v<>>==423C98J;>[OVNAIL@EK>AK;@L;?O>DO?AN@DVGJ\OMaQNcVUg\^l^^n`an_aj]`eZ]bVX_SV\OSYNNYNIXMDXK@[KAXK@SG>u::q::q::q::q99q99q77n66n77n77n77n77n77o99q77o77n88p99q::q;;r::q;;r;;r<>>==2H649*IB1J@0L@.OA-KB.KA-OC/OD1NE2NF3TJ:YO>^TDcYHg^NmaTpcVl_Tl^Sh`Sg`Uf_Vc^S`[P]XL]VF[Q?YL;\L7ZL6WK6RG3PD1KA.E=+H<)M=,N?-N@,PC-SF.VH/WI3VJ3TH0SG/`T=VH1PB+J>!K9H5 H5 H5 H5 H5 H6 ~tr²±×´´á´´á´´á´´à´´à´´à´´à´´à´´á··ã··ãµµá´´à±±Þ¯¯Ü­­Úªª×§§ÔŸžÅshdK8H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 G5 X@ ¹†Ì’M8 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 nd`›™ÁËŸŸÍ  Î¡¡Ï££Ñ¤¤ÑŸŸÎžžÌ››ÊššÉ˜˜Ç––Å••Ä••Ä’’Á¿½ŒŒ¼ŠŠº‡‡·ƒƒ´‚‚³²‚‚³‚‚³€€±€€±€€±°{{¬xxªvv¨tt¦pp£pp£nn¡llŸkkžjjiiœhh›iiœffšcc—cc—aa•aa”^^’]]‘\\‘]]‘]]‘\\‘[[\\‘^^’^^’^^’\\‘[[[[[[YYŽXXWWŒUUŠSSˆSSˆRRˆQQ†LLIIFF}FF}FF|BByAAx@@w==u==u??v<>>==§¯¾:BM-3*?=*C=)G>,G?,F@,F@-F?-IA/HC2IF3KG3RI:TP?WSE\UIbWJbWMeZQa^R_aUe^Ve[SYYNRUKMODKGAICFE7BF1DB6E?>u>>u<>u<>>==OH\ÂÀÁ~‰ƒuŒ}nukŒ{w€{•‰‰›Ž‹ŒŒš…–’Œ£”˜Ÿšž—š—žš•¤žš¡ž¤Ÿ¤žœ§¨ª­¨¯­²²´¹ª­²«­§®­©±¯°«³¤ž´¢ ³¤©¬ª¬®°ª±¬ ³ª¡µ¦¥± œ¦£•¤ž¥¢•ª— —Žž–Šš•‚™‘x”„“Ž‚ygxo^VQ>H5 H5 H5 H5 H5 H5 H5 H5 J8k^P¦¤Å±±Þ±±Þ±±Þ¯¯Ü²²Þ´´à´´à´´à´´à´´à²²Þ¯¯Ü­­Úªª×¨¨Õ§§Ô§§Ô§§Ô¨¨Õ¦¦Ô¦¦Ô¡ ÈujiL9H5 H5 H5 H5 H5 H5 H5 H5 qR Ë“’jL8 H5 Y@ÆŒL7 H5 H5 H5 H5 H5 H5 H5 H5 H5 O=xpwžžÊ››Ê››Ê››Ê¡¡Ï  Î››Ê››Ê››Ê››Ê››Ê––Å••Ä••Ä’’ÁÀ¿‹‹»ŠŠº‡‡·††·……¶……µ‚‚³‚‚³€€±€€±}}®°{{¬yy«zz«ww©tt¦uu§pp¢oo¡kkžkkžllŸiiœffšffšee˜dd˜ffšcc—aa•``”__“]]‘\\‘[[ZZŽZZŽYYŽZZŽ[[[[[[[[[[\\‘\\‘[[WWŒWWŒWWŒVV‹QQ‡OO…MMƒMMƒLL‚HH~FF}FF|CCzAAx??v>>u>>u99q99q<>>>========€~}ptzhcoWSdL=O^DQ`LYcS_bMU]KT]O^ZJWXLUTETO@LSHTSGJWEFXEH]KPfXZj[`l[anY]lX\`STYNMTHIRDIRCCRC>YD?\E>_G@bJB^IA_I?[I>>>========‡69>D@7?5%B8#I=)N?,OA.MB.LB/I@-L@,LA-G?,C<+C>+D@+HA0OE5TJ:[M@aREeUGgUFfTE_O@XK8UH5YH6VG4WH3YI4YJ4XJ5^K8_L9`L8aO9\M6UI3RH2TK2LF,JB+K?!J8H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 J7j]P¥£Æ±±Þ±±Þ±±Þ¯¯Ü¬¬Ù¯¯Û­­Úªª×¦¦Ô¥¥Ó¤¤Ò¥¥Ó¦¦Ô¦¦Ô¥¥Ó¦¦Ô¨¨Õ¨¨Õªª×©©ÕzqtH5 H5 H5 H5 H5 H5 H5 H5 G4 F3 G5 H5 H5 H5 hJ½…I6 H5 H5 H5 H5 H5 TC%„}Œ¡¡ÏË››Ê››Ê››Ê››Ê››ÊššÉœœËžžÌ››Ê••Ä””ÃÀ¿¿¿‹‹»ŠŠ»‰‰¹ˆˆ¸††·……µ‚‚³€€±||®}}®||®{{­zz«vv¨vv¨yy«ww©tt¦ss¥oo¡nn¡llŸiiœhh›hh›ffšdd˜dd˜cc—cc—aa•]]‘]]‘]]‘\\‘]]‘[[WWŒWWŒXXWWŒWWŒVV‹WWŒWWŒXXXXWWŒXXWWŒWWŒVV‹TT‰RRˆQQ†PP…NN„MMƒLL‚IIEE{DD{BByAAxAAx>>u<>>>========_bc85,92>4 B6 H<'L@*N@,OB.OC.JC/H@*I?*F>)C<)A9'C<(F>,LA0PB1VF6ZK;^L:bM;bL;_J7\J1YH0VF0VF0VH1XH1ZJ4YJ6[K9]L9]M9\O7ZO9YN7TI3ND-MD(I9H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 SB!‹…“¯¯Û±±Þ±±Þ­­Ú««Ø§§Ô§§Ô¥¥Ó¤¤Ò¤¤Ò¤¤Ò¤¤Ñ¤¤Ò¥¥Ó¦¦Ô§§Ô¨¨Õ›˜·gYKH5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 J6 ‰jLH5 H5 H5 J8qfb ŸÇ¡¡Ï  Î  ÎËššÈ——Æ››Ê››ÊššÉ™™Ç™™Ç˜˜Ç••Ä••Ä‘‘Á¿¾ŒŒ¼ŠŠ»ˆˆ¸††·††·„„´ƒƒ´€€±°{{¬zz«yy«yy«yy«ww©ww©ww©uu§pp¢oo¡nn¡llŸkkžgg›gg›gg›dd˜cc—bb–bb–bb–__“\\‘\\‘[[YYŽYYŽXXWWŒWWŒWWŒVV‹VV‹VV‹WWŒVV‹VV‹VV‹WWŒXXWWŒWWŒUUŠUUŠRRˆQQ†NN„NN„MMƒLLIIEE{CCzBByAAx>>u<>>============ ".-/328 57";4%?9(B>(?=)B;0A;3<>29=,86(86/8<*8D,;A.E?6K<9IJ=JTDOXCQTETMQXXN[bM`]Oi`^f_hcgijtbnwgzys~x‚z~Žˆ›œ›••—†ˆL>u<>>============žž«“—¦‘¤¨œ¯®§§¯©ž®£¤®Ÿ¨¬ª¤°¶¥½¤¡·£¨¶£¦¯«Ÿµ¢—±˜™«ž ®¡›«¥“«œ‘©›˜©™¤¡˜¬¢‘ª ”©ž˜¨–‡š—‘–„œˆvyg€ueyteuzd|{_z{bu}hshov^bcKEM:H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 SB"‰‚‘¦¦Ò¤¤Ò¢¢Ð  Î¡¡Ï¡¡Ï££Ñ¤¤Ò¤¤Ò¥¥Ó¦¦Ò‰ƒ”VF)H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 M;€w€¤¤Ï¦¦Ô££Ñ  ÎššÉ˜˜Ç••Ä™™ÇššÉ––Å••Ä••Ę˜Ç––Å““Â¿ŽŽ¾ŽŽ¾‹‹»‹‹»ŠŠº‰‰¹……¶„„´°°||®||®{{¬yy«vv¨ww©uu¨ww©tt¦qq¤qq¤rr¤pp£nn¡kkžiiœiiœffšdd˜cc—cc—__“]]‘__“]]‘``”\\‘ZZŽXXWWŒWWŒVV‹SSˆRRˆRRˆRRˆSSˆRRˆTT‰TT‰UUŠTT‰UUŠRRˆRRˆRRˆRRˆQQ‡PP…NN„LLIIIIHH~GG~FF|AAxAAx>>u<>>============0-6/,730<92;>5>B6>H9=G85V@7UA6SB5Q?2R?/S@0O>.J>+G:)G<*M?-SC1XF4]I6XE(K9H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 J8i]Sš˜½¡¡Ï¡¡Ï¡¡Ï¡¡Ï¡¡Ï¤¤Ò¦¦Ô—“³dWGI6H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 I6fXIŸÀ¨¨Õ¦¦Ô¦¦ÔœœËššÉššÉššÉ••Ä••Ä––Å––ÅššÈ––Å””Ñ‘Á¾ŒŒ¼ŠŠ»ŠŠºŠŠº‡‡·‡‡·……µ‚‚³°°°{{­yy«uu¨vv¨uu§tt¦qq¤rr¤qq¤pp£ss¥qq¤mm kkžhh›gg›ff™bb–bb–aa•aa•__“]]‘\\‘\\‘ZZŽWWŒWWŒWWŒWWŒVV‹SSˆQQ‡QQ‡RRˆRRˆQQ‡QQ‡RRˆRRˆSSˆRRˆSSˆRRˆRRˆRRˆQQ‡OO…MMƒLL‚KKIIHH~HH~FF|AAx??v>>u==u<>>>>>>>>>============336475:6?:"D;%D;&G:(F7&G8&H:&F:%G9&H:%F9'J:'I<(F;)J;)K;*H<*L<*R>,T?-UA,R@(M='K:%J9#H:$I;%E:#F=&L@)RC.TB)L9H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 SB$ƒ|Ž  Í¡¡Ï¡¡Ï¢¢ÐœÅtjjL:H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 TC%Žˆœªª×§§Ô¦¦Ô££Ñ  Î››Ê››Ê™™Ç••Ä¿’’Á••Ä““••ÄÀ¾¾½‹‹»ŠŠ»‡‡·††·„„´‚‚³‚‚³²~~¯~~¯{{¬ww©vv¨uu¨uu¨tt¦ss¥nn¡nn¡pp£pp¢pp¢mm kkžjjgg›ee˜ee˜aa•aa•]]‘]]‘]]‘[[\\‘\\‘WWŒVV‹VV‹VV‹VV‹UUŠRRˆRRˆQQ‡SSˆQQ†QQ†QQ†RRˆRRˆQQ†QQ†RRˆSSˆRRˆRRˆQQ†OO…NN„LL‚KKGG~GG~FF}DD{AAx??v>>u<>>>>>>>>>============55957566:6>7"<7">6!=4 A6!A6!B6 H8#F9$E9'H9&J;$L<&L:(I:'I:'I9&K:'N=*P>+O>(J<&H9#G8!D7!B7 D;%H='I;#I8H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 K8i]T“±Œ©ƒ|‹TD&H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 J8tig¤£Í¨¨Õ§§Ô©©Ö¤¤ÑŸŸÍË››Ê––Å‘‘Á’’Á””Õ•Ä’’Á¿ÀÀŽŽ¾ŒŒ¼‹‹»ŠŠ»ˆˆ¸††·……µ‚‚³€€±€€±}}®{{¬zz«ww©vv¨vv¨uu§tt¦rr¤rr¤pp¢pp¢pp£mm iiœiiœhh›gg›ffšbb–cc—aa•__“]]‘]]‘]]‘[[[[ZZŽVV‹UUŠSSˆSSˆSSˆRRˆQQ†PP…PP…QQ†PP…NN„NN„QQ†OO…QQ†QQ†RRˆQQ‡QQ†OO…OO…NN„NN„LL‚KKFF}FF}FF|DD{AAx@@w??v==u;;r88p77o77n66n55m55m55m22j22j00h00h00h00h00h00h--f++d**c**c++d++d,,e,,e..g,,e,,e,,e--f//h00h00h00h00h00h00h11i00h00h00h..g..g..g..g..g,,e**c**c**c))b))b))b))b''`''`&&_&&_%%^$$^##]""[""[""[""[""[""[YXXVUTSSRRPPPPONNNNNNMNNNNNNOOPONNNNMOOOONNNNNNNNMMMKKKKKKKKKJJ I I I I H H H H H G G G G F FEEEEEEEEECCCCCCBBBBBBBBBB@@@?????????????????>>>>>>>>>>============546495:7:7;6<5;2?5A5B7 C8E7#E:%J:'I;*J;&H9#I:(J<*E9%F9%H:&I;'K<(L<(H:(@6$?4;081%90#G8H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 I6H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 aS?–’­¨¨Õ¨¨Õ¨¨Õ¤¤Ò¤¤ÒŸŸÍ››Ê––Å’’ÁÀ¿¿¿¿¿ŒŒ¼ŽŽ¾½‹‹»ŠŠ»‡‡·……¶„„´……µ……µ‚‚³°||®yy«xxªww©ww©tt¦qq¤oo¡pp£oo¡rr¤qq¤pp¢mm llŸgg›ff™dd˜cc—cc—aa”aa”``”]]‘\\‘\\‘[[XXZZŽZZŽUUŠUUŠSSˆRRˆQQ‡QQ†PP…NN„PP…QQ†OO…MMƒMMƒMMƒOO…OO…QQ†QQ†QQ†PP…MMƒNN„MMƒLLHH~FF}EE{DD{DD{DD{AAx>>u==u::q88p77o77n77n66n22k22k22k00h00h//h//h//h//h--f//h,,e++d++d++d++d++d++d,,e,,e,,e,,e,,e,,e..g//h00h00h00h//h00h00h00h00h..g..g..g..g..g--f++d**c**c**c))b))b))b))b&&_&&_%%^%%^%%^##]""[""[""[!![!![!![!![YVVTTTSSSRRPPPPNNNNNNMNNNNNNONONNNNNMOOOONNNNNMMMKKKKKKJJJJJJJJ I H H H H H H G G F F F F F FEEEEEEEEECCCCCCBBBBBBBBBB@@@?????????????????>>>>>>>>>>============776574:5:6;6;5=4A7!C6%B7$A8"F8%E9(E6(D5)C5(;2(C22>;7@@@TFJeQOi^_wow‡y„•„‘›––¥¢š§{n`H5H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 O=„|‡¦¦Ò¨¨Õ¨¨Õ¦¦Ô¦¦Ô¡¡Ï¡¡Ï››Ê••Ä””Ã’’ÁÀŽŽ¾¾¿¿¾½ŠŠ»ŠŠ»††·……µ……µ……µ‚‚³²€€±~~¯~~¯{{¬yy«vv¨tt¦tt¦pp£pp£nn¡pp¢oo¡oo¡nn¡nn¡mm mm iiœffšff™cc—cc—]]‘]]‘]]‘\\‘ZZŽZZŽXXWWŒZZŽWWŒSSˆSSˆRRˆRRˆPP…MMƒLL‚LL‚MMƒNN„LL‚MMƒMMƒNN„OO…MMƒMMƒLL‚NN„NN„MMƒMMƒLLIIFF}EE{EE{DD{DD{AAx<>>>>>>>>>==================31 .0,/!/.%31,=45E>BFFHdYcxeqrnx}ˆ“ƒ—¤£–«§š²°Ÿ¹¢—µ›­Œ§ˆƒ£ˆ|–‚p|cypZw^OjZI^TAUF6;H6G4 H5 H5 H5 H5 H5 H5 H6 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 k_T¡ŸÃ¨¨Õ§§Ô¤¤Ò¥¥Ó¥¥Ó¥¥Ó¡¡Ï››Ê••Ä••Ä‘‘Á¾ŽŽ¾ŽŽ¾¾¾ŒŒ¼¾ŒŒ¼ŠŠº‡‡·……µƒƒ´²²²~~¯°{{¬yy«yy«yy«uu¨tt¦pp£nn¡pp£oo¡nn¡mm iiœiiœkkžkkžjjffšee˜cc—``”__“\\‘\\‘]]‘ZZŽWWŒWWŒWWŒWWŒWWŒVV‹RRˆRRˆQQ†RRˆOO…MMƒLL‚LL‚LL‚LL‚LL‚MMƒOO…PP…NN„LL‚LL‚LL‚MMƒMMƒLL‚KKKKHH~FF}EE{EE{DD{CCz@@w<>>>>>>>>>==================ž•«Œ—©žœ¶¢šµ¡—¸Ÿ’·“‡©Š{ž‹x›|jˆjVxcHlYB`Q;VJ5MH3CH2?E1;=23?4.D8.E:,E;+F;+J<-L>/N>'K8H5 H5 H5 H5 H5 L:wke›–ª¢ž¸ˆ”SB H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 VF)“Ž¥©©Õªª×§§Ô¦¦Ô¦¦Ô££Ñ¡¡Ï¡¡Ï››ÊššÈ••Ä““¿ŒŒ¼ŠŠ»‹‹»ŠŠ»‹‹»‰‰¹‰‰¹††·ˆˆ¸……¶ƒƒ´²€€±°||®{{­zz«xxªvv¨uu¨tt¦qq¤pp¢pp¢pp¢oo¡nn¡kkžiiœhh›hh›iiœgg›gg›dd˜cc—bb–``”^^’]]‘\\‘ZZŽWWŒWWŒWWŒWWŒVV‹UUŠRRˆQQ‡QQ‡QQ†QQ‡OO…LL‚LL‚MMƒLL‚KKKKLLLL‚LL‚LL‚LLLL‚LL‚LL‚LL‚IIGG~HH~FF}EE{CCzAAxAAx??v==u;;r99q88p77n55m22k11i00h00h//h00h00h..g..g**c**c**c**c**c**c))b''a&&_&&_&&_((b''a))b++d,,e,,e**c++d**c++d,,e,,e++d++d,,e..g..g--f,,e++d**c**c**c**c))b))b))b((b''`''`''`''`$$^$$^$$^$$^$$^$$^""\""[""[YYYYXWWWWWTSSSRRPONNNNNNNNNNMNNNNNNMMNNNNNNNNNNNKKKKKKKKJJJJJ I H H H H H H H G G F F F F F EEEEEEEEECCCCCCCCCBBBBBBB????????????????????>>>>>>>>>>==================@3D:2>;1<8167/48/2;21?3,A4*C6(D5%F9'I;)I:'G7%F8$H9%G:&G;'D8!G=$I>'L?)K?*L='K9H5 H5 H5 H5 H5 H6 hZI£Ÿº¹¹ä¹¹ä¹¹ä¹¹ä¨¥ÃgYFI7H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 L:vll¤£Íªª×ªª×§§Ô¦¦Ô¦¦Ô¢¢ÐŸŸÍ››Ê››Ê˜˜Ç••Ä¿¾¾ŒŒ¼‹‹»‹‹»ŠŠº‰‰¹‰‰¹‡‡·……µ……¶ƒƒ´ƒƒ´€€±}}®||®{{­{{¬zz«vv¨ss¥ss¥qq¤pp£nn¡nn¡mm kkžhh›hh›iiœgg›ee˜ffšdd˜aa•``”]]‘]]‘]]‘[[ZZŽXXWWŒVV‹UUŠUUŠSSˆSSˆQQ‡NN„NN„NN„LL‚OO…LL‚LLLLLL‚LLKKIIIIIIKKLLKKMMƒLL‚LLJJ€HH~HH~FF}FF}CCzAAx@@w>>u>>u>>u;;r99q88p66n44l22k11i00h00h//h00h00h--f--f**c**c**c**c**c**c((b''`%%^%%^%%^''`''a))b**c++d++d))b))b((b**c**c**c**c**c,,e--f,,e,,e,,e++d**c**c**c**c))b((b((b&&_%%^%%^%%^%%^%%^%%^$$^$$^$$^##]##]""[""[YYYYXXXWWWUTTSSSQPOONNNNNNNNKMMNNNNNLMNNMMLLNMMMKKKKKJJJJJJ I I I H H H H H H H G G F F F F F EEEEEEEEECCBBBBBBBBBB@@@@?????????????>>>>>>>>>>=========================?7$@9#=8#:6!93 :4 :4"<3!?5!D;%E>)H;'I8%G9$D8#@5"B6%A7#?7"89 9>#AD,:C(H<H5 H5 H5 H5 H5 H6 \M3–‘£¶¶á··ã··ã¹¹ä¹¹ä¹¹ä¹¹ä¶µÝ…|O=H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 bTB˜•µ¨¨Õªª×§§Ô¥¥Ó¥¥Ó¢¢Ð¡¡ÏœœËË––Å––Å¿ÀŠŠ»‡‡·‡‡·‡‡·‰‰¹‡‡·††·††·††·……µ‚‚³²°||®{{¬}}®||®{{¬xxªvv¨ss¥rr¤qq¤oo¡oo¡nn¡llŸkkžllŸjjjjiiœgg›ee˜gg›cc—``”``”]]‘\\‘ZZŽYYŽXXXXWWŒVV‹SSˆSSˆSSˆQQ‡PP…MMƒMMƒNN„LLLL‚KKIIIIKKKKIIHH~HH~GG~IIJJ€JJ€KKJJ€KKHH~IIHH~FF}FF}AAx@@w??v??v>>u<>>>>>>>>>=========================8/!5,!11!,4-8"/@&5F*=G1EF:UPOc]dmiqiftuu„€Ž’‹—–˜œž¤¤¥ª ©­¦ª­‚„lI;H5 H5 H5 H5 H5 R@ˆ€ˆ³²Û··ã··ã··ã··ã··ã¸¸ä¹¹ä¹¹ä¹¹ä¸·ã˜²]N5H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 O>ƒ{‰§§Ó¨¨Õªª×§§Ô¥¥Ó¤¤Ñ¡¡ÏŸŸÎŸŸÎ››ÊššÈ¿¿ŽŽ¾ŠŠ»ŠŠº……µ……¶……¶……µ……¶……µ……µ‚‚³ƒƒ´€€±~~¯}}®||®{{¬yy«xxªuu¨tt¦tt¦ss¥pp¢oo¡nn¡jjhh›hh›iiœjjiiœff™ee˜ff™cc—bb–``”^^’\\‘[[WWŒWWŒWWŒWWŒUUŠSSˆRRˆQQ‡QQ‡RRˆPP…MMƒLL‚LLLL‚IIGG~FF}FF}FF}HH~FF}FF}FF}IIJJ€IIGG~GG~GG~HH~IIGG~FF}FF}EE{CCzAAx@@w??v??v==u::q77o66n66n33k22k11i00h00h,,e++d,,e++d**c**c((b((b((b))b''a''a%%^%%^%%^%%^%%^&&_%%^%%^%%^%%^%%^%%^&&_''`((b**c**c**c))b))b**c++d**c**c))b))b((b((b((b((b&&_%%^$$^$$^$$^$$^$$^$$^$$^""[""[!![!![!![YYYYYXWWWVUUTRRRRRQPOOONNMMMMMMKKKMMMKKLLKKKJJLKKKKK I I I I I I H H H H H H H G G F F F F F F FEEEEEEEDDDCCCCCBBBBBBBBBB?????????????????>>>>>>>>>>========================= ›´ ›´Ÿ± ¨³«³À¦«·›¬“¦‰„£Š~xzis\jPn`DeT>u<>>>>>>>>>>>>>=============================/F=-<:,99,78,76+09/,>3.>4/F=3D:.J=.N>,K=+H<*F:&C8#F8I7H5 H5 H5 H5 H5 I6m`R¥¢À··ã´´à´´à´´à´´à··ã··ã··ã··ã··ã··ã´´á²²Þ¯¯Ü¬¬Ùªª×©©ÕˆœUE&H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 UD(‰„˜¥¥Ó¦¦Ô§§Ô¦¦Ô¦¦Ô¤¤Ñ££Ñ¢¢ÐŸŸÍ››Ê˜˜Ç™™ÇÀ½ŒŒ¼ŒŒ¼ŠŠº‡‡·‚‚³……µ……µ„„´ƒƒ´‚‚³€€±~~¯°~~¯{{¬zz«yy«xxªuu§tt¦tt¦tt¦pp¢mm mm kkžkkžhh›hh›ff™ff™cc—cc—cc—bb–aa•aa•``”]]‘]]‘[[XXWWŒUUŠSSˆUUŠRRˆQQ‡QQ†QQ†PP…PP…PP…MMƒMMƒLL‚KKLLIIIIFF}FF}EE{FF}FF}FF}HH~GG~FF}FF}FF}FF}FF}FF|FF}EE{CCzDD{CCzAAx??v==u==u<>>>>>>>>>>>>>============================D:'A4">19/7/71;4A8#FC056#B:%D=&I?'I?&C=&A;!F6H5 H5 H5 H5 H5 H5 _P8œ—®··ã´´à´´à´´à´´à´´à´´à´´à¶¶â··ã··ã¶¶âµµá´´à®®Úªª×ªª×¨¨Õªª×ªª×¡ Åk_TJ7H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 K8tkmžÇ¦¦Ô¦¦Ô¢¢Ð¥¥Ó¦¦Ô¢¢Ð¡¡Ï¡¡ÏžžÌœœËššÉ••Ä““ÂŽŽ¾ŠŠ»‰‰¹‰‰¹††·……µ²ƒƒ´ƒƒ´‚‚³‚‚³²°||®}}®}}®{{¬xxªuu¨uu§tt¦tt¦rr¤pp£llŸkkžjjhh›hh›gg›gg›cc—ff™cc—cc—bb–bb–__“aa”^^’]]‘]]‘[[YYŽWWŒTT‰SSˆSSˆQQ‡PP…PP…MMƒNN„NN„LL‚KKKKIIHH~JJ€FF}FF}EE{FF}EE{DD{EE{DD{DD{FF|FF}FF}GG~GG~FF}FF|EE{DD{CCzCCzAAx@@w<>>>>>>>>>>>>>============================G:(A6'6/-&,&0*%6/-GA?uwtp}vZkXRcN^u]`pV93H6 H5 H5 H5 H5 H5 H5 J8›–¬µµá´´á´´à´´à´´à´´à´´à´´à´´à´´à´´à¶¶â´´à¯¯Û®®Ú««Ø©©Ö¦¦Ôªª×¨¨Õ¨¨Õªª×¨¨Ó…~ŠQ?H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 \N9•’±¡¡Ï££Ñ¤¤Ñ¤¤Ò¥¥Ó££Ñ¢¢Ð¡¡Ï››Ê››Ê››Ê––Å””Ñ‘Á¿‰‰¹……µ°°€€±€€±}}®€€±~~¯||®°}}®}}®{{­zz«xxªuu¨tt¦uu§uu§tt¦pp£nn¡llŸkkžiiœhh›hh›ffšee˜cc—ee˜ee˜cc—cc—]]‘]]‘^^’__“]]‘[[ZZŽXXWWŒVV‹SSˆSSˆSSˆPP…NN„NN„LL‚LL‚LL‚IIFF}FF}FF}FF}HH~GG~FF}EE{FF}FF}EE{DD{DD{DD{DD{EE{EE{FF}FF|FF|EE{DD{CCzCCzAAxAAx>>u;;r;;r::q::q99q66n33k22k22j//h//h..g--f--f++d**c++d**c''`''a&&_&&_&&_&&_&&_&&_%%^$$^!![""[""[""\##]%%^%%^''`''a&&_%%^$$^%%^%%^%%^''`%%^&&_''a))b))b((b((b''`&&_%%^%%^%%^$$^$$^$$^$$^""[!![!![!![!![YYYYYYYXXXUUUUTTTTTTRQPPOOONNNNMMMMMMMMKKKKKLLJJKKKKJJJJJ I I I H H H H H H H G G F F F FEEEEEEEEEECCCCCBBBBBBBBBB????????????????>>>>>>>>>>>>>>============================“Œ— —¨«£³±¨»µªÃ³¥À°¢¿­™·¢­©’±¦—«›Ž ’†}TBH4 H5 H5 H5 H5 H5 H5 H5 M;ˆ€Š°¯Ù±±Þ±±Þ¯¯Ü²²Þ´´à´´à´´à´´à´´à²²Þ¯¯Û¯¯Û¬¬Ù¨¨Õ¨¨Õ§§Ô§§Ô§§Ô¨¨Õ¨¨Õªª×ªª×ªª×œ™ºbUCJ7H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 P?€y†œœË¡¡Ï¡¡Ï¡¡Ï¥¥Ó¤¤Ñ¢¢Ð££ÑŸŸÍˢ˜Ç––Å••Ä””Ã½ŠŠ»‰‰¹‡‡·€€±€€±°²°~~¯}}®||®°{{­||®yy«xxªxxªtt¦tt¦ss¥ss¥pp£oo¡nn¡kkžkkžiiœhh›ffšee˜cc—bb–cc—bb–bb–cc—aa”``”``”[[YYŽYYŽWWŒWWŒTT‰TT‰RRˆQQ‡RRˆNN„NN„NN„MMƒLL‚LL‚HH~FF}FF}FF|DD{EE{DD{CCzAAxCCzCCzAAxAAxAAxBByAAxAAxBByAAxBByDD{CCzBByAAx@@w??v>>u;;r::q99q99q77o66n22k11i00h//h,,e,,e++d**c**c''a''a**c))b&&_&&_%%^%%^%%^%%^$$^%%^##]""\Y Z Z!![""\$$^$$^%%^%%^$$^$$^""\##]%%^%%^%%^%%^%%^&&_''`%%^%%^%%^%%^$$^$$^$$^$$^$$^$$^""[""[YYYYYYYYYYXXWWWUUUUUUUTTTTRRRQQQPNNNNNNNNNNMKKMMMMMKKKKKKJJJJJ I I I H G G G G G G F F EEEEEEECCCCCCCCBBBBBBBA@@?????????????????>>>>>>>======================================^IcXAZU:YM5SF4H@/>>-7A/3H45I52K7'I5H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 J7l`T§¥Ê±±Þ±±Þ°°Ý±±Þ³³ß´´à³³ß³³ß²²Þ¬¬Ù¨¨Õ¦¦Ô§§Ô§§Ô§§Ô§§Ô§§Ô¨¨Õ§§Ô©©Öªª×ªª×ªª×££ÌwmoJ7H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 I6i]U˜—¾  Î¡¡Ï¡¡Ï££Ñ££Ñ¢¢Ð££Ñ¡¡ÏžžÌžžÌ››Ê™™Ç••Ä••Ä¿¿……¶……µ‚‚³‚‚³€€±€€±}}®°}}®°}}®}}®{{¬ww©vv¨uu§tt¦rr¤rr¤qq¤pp¢nn¡llŸllŸjjiiœiiœgg›ffšbb–cc—aa”``”aa”``”``”``”``”^^’__“YYŽWWŒVV‹SSˆSSˆQQ†QQ†QQ†NN„QQ†NN„NN„NN„LL‚LLLLFF}FF}FF}FF|DD{DD{CCzAAxAAxCCzCCzAAxAAxAAxCCzBByBByDD{CCzBByDD{CCzBByAAx@@w??v>>u<>>>>>>======================================I@*F>'H=)J=(H=)I<*F;'D;&E7G5H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 WG*”¤±±Ý±±Þ±±Þ¯¯Ü²²Þ³³ß°°Ý®®Úªª×©©Ö¥¥Ó¤¤Ò§§Ô§§Ô§§Ô§§Ô¨¨Õ©©Ö§§Ô¨¨Õ©©Ö¦¦Ô¦¦ÔzqvH5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 YJ2†˜››Ê¡¡Ï¡¡Ï¡¡Ï¡¡Ï¡¡Ï  ÎŸŸÎ››Ê››Ê››Ê™™Ç˜˜Ç––Å““¿½ŠŠ»ƒƒ´²€€±€€±||®||®~~¯°}}®}}®||®{{¬zz«xxªuu¨tt¦tt¦ss¥rr¤pp¢pp¢mm kkžiiœhh›hh›ff™cc—cc—aa•bb–__“__“^^’aa”]]‘]]‘^^’\\‘[[XXWWŒVV‹SSˆRRˆPP…PP…PP…NN„MMƒLLKKKKIIKKKKFF}FF}DD{BByAAx@@w??v>>u??v??v@@w@@w@@wAAx@@wAAxAAxAAxBByAAxAAxAAxAAx??v??v??v>>u<>>>>>>======================================JB*IC)J@)E=&C9(C8'D4 J9H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 M:{qr­¬Õ±±Þ±±Þ¯¯Û®®Ú¬¬Ùªª×§§Ô¦¦Ô¦¦Ô¥¥Ó¥¥Ó¦¦Ô§§Ô§§Ô§§Ô¨¨Õ§§Ô§§Ô¦¦Ô¢¢Î}uP>H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 J8wns™˜Ä››ÊœœËŸŸÎŸŸÎ¡¡Ï¡¡Ï¡¡ÏŸŸÎžžÌœœË™™Ç˜˜Ç––Å””Ã’’Á¿¿‰‰¹……µ‚‚³²||®}}®}}®}}®~~¯}}®zz«{{¬zz«xxªxxªww©uu¨tt¦pp£oo¡nn¡oo¡mm kkžjjffšdd˜cc—bb–bb–aa•__“]]‘\\‘]]‘]]‘``”[[[[[[YYŽWWŒVV‹VV‹TT‰RRˆQQ‡MMƒNN„NN„MMƒLL‚LLIIIIIIIIIIFF}FF}EE{EE{BByAAxAAx@@wAAxAAxAAxAAxAAxAAxAAxAAxAAxAAxAAx@@w??v>>u>>u>>u>>u>>u<>>>>>>>>>==========================================dqbo€n€€• ”Ÿ¢˜_Y=G5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 I6 bT@Ÿœ»¯¯Û¬¬Ù¨¨Õ¦¦Ô¡¡Ï¥¥Ó¤¤Ò¥¥Ó¦¦Ô¥¥Ó¥¥Ó¦¦Ô¨¨Õ¨¨Õ¨¨Õ¨¨Õ¨¨Ô‹¤[L5H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 `R@’²œœËŸŸÍœœË››ÊË››ÊžžÌžžÌËŸŸÎ››Ê™™Ç––Å••Ä’’ÁÀ¿ŒŒ¼ŠŠ»……µƒƒ´‚‚³€€±||®{{¬||®||®{{­||®yy«zz«yy«uu¨uu¨ss¥ss¥rr¤oo¡nn¡nn¡nn¡llŸkkžiiœffšffšdd˜cc—aa”``”__“^^’]]‘YYŽZZŽ[[XXWWŒXXWWŒUUŠSSˆRRˆQQ‡OO…NN„LL‚MMƒLLHH~FF}FF}FF}FF}FF}DD{DD{CCzCCzAAxBByAAx>>u>>u>>u>>u??v>>u==u>>u??v??v??v>>u@@w??v>>u??v==u==u==u<>>>>>>>>>==========================================¢ªˆv—r`…iYcTBG4 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 R@‡€Œ§¦Ò¦¦Ô¢¢Ð¡¡Ï¡¡Ï¤¤Ò¤¤Ò¥¥Ó¦¦Ô¦¦Ô¤¤Ñ¦¦Ô¨¨Õªª×›¿l`XJ8H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 P?ƒ}Ž›šÈœœË™™Ç››Ê››Ê››ÊœœË››ÊššÉË™™Ç™™Ç™™Ç••Ä““““Â¿ŠŠ»ŠŠº……¶……¶€€±°{{¬zz«tt¦uu¨ww©ww©uu¨uu¨uu¨ww©vv¨uu¨tt¦qq¤pp£nn¡oo¡nn¡kkžiiœhh›ffšdd˜dd˜dd˜cc—aa•__“__“__“__“^^’[[YYŽYYŽYYŽZZŽYYŽXXVV‹UUŠSSˆRRˆQQ†PP…NN„NN„KKHH~HH~HH~FF}FF}FF}CCzCCzAAxAAxAAxAAxAAx??v??v@@w@@w>>u<>u@@w??v??v==u<>>>>>>>>>==========================================O@4O>*J7H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 J8k_Vš™¿¢¢Ð¡¡Ï¡¡Ï¡¡Ï¡¡Ï¤¤Ò¤¤Ò¦¦Ô¦¦Ô§§Ô¤£Î}u~O>H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 J8la[š™ÃžžÌ››Ê››Ê››Ê››ÊššÉË››ÊË››ÊššÈ˜˜Ç––Å••Ä““¿¾ŒŒ¼‰‰¹‡‡·‚‚³€€±}}®}}®vv¨ww©tt¦uu¨uu§uu§uu¨uu§tt¦tt¦uu§ss¥pp¢nn¡nn¡kkžkkžjjiiœffšdd˜dd˜cc—cc—aa”aa”__“]]‘]]‘]]‘]]‘[[YYŽWWŒWWŒVV‹WWŒWWŒVV‹UUŠRRˆQQ†QQ†OO…MMƒLL‚LLHH~FF}FF}FF}FF}EE{EE{AAxAAxAAxAAx@@wAAxAAx??v??v@@w@@w>>u<>u@@w??v??v==u<>>>>>>>>>================================================I7H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 WG,Œ‡Ÿ££Ð¢¢Ð££Ñ¢¢Ð¡¡Ï¥¥Ó¦¦Ô¤¤ÑŽŠ¢\M5H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 [K5ˆ£žžÌžžÌ››Ê››Ê˜˜ÇœœË››ÊššÉ››Ê››Ê˜˜Ç™™Ç˜˜Ç””Ã’’Á‘‘Á¿½ŒŒ¼ŠŠ»††·²{{¬zz«yy«yy«uu¨uu§tt¦vv¨vv¨vv¨uu§tt¦qq¤pp¢oo¡llŸllŸmm mm jjhh›gg›ff™ff™dd˜bb–aa”^^’]]‘]]‘\\‘]]‘[[YYŽXXWWŒVV‹WWŒWWŒWWŒSSˆRRˆPP…PP…NN„NN„LL‚JJ€IIIIKKIIFF}EE{EE{EE{EE{DD{@@w@@w@@w@@w<>u==u==u==u<>>>>>>>>>================================================H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 M;wnqŸžÉ££Ñ¢¢Ð¡¡Ï¥¥Ó›™¼j^UJ7H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 M<ypwŸžÊ¡¡ÏžžÌžžÌ››Ê››Ê˜˜ÇœœË››ÊššÉ››Ê››Ê˜˜Ç™™Ç˜˜Ç””Ã’’Á‘‘Á¿½ŒŒ¼ŠŠ»††·²{{¬zz«yy«yy«uu¨uu§tt¦vv¨vv¨vv¨uu§tt¦qq¤pp¢oo¡llŸllŸmm mm jjhh›gg›ff™ff™dd˜bb–aa”^^’]]‘]]‘\\‘]]‘[[YYŽXXWWŒVV‹WWŒWWŒWWŒSSˆRRˆPP…PP…NN„NN„LL‚JJ€IIIIKKIIFF}EE{EE{EE{EE{DD{@@w@@w@@w@@w<>u==u==u==u<>>>>>>>>>================================================H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 I6aSA•’³œ›Ä˜–»{szO=H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 gZN”’³¡¡ÏžžÌœœË››Ê˜˜Ç››ÊššÈššÈššÉššÉššÉ——Æ™™Ç˜˜Ç••Ä””ÃÀ¾ŽŽ¾½ˆˆ¸……µƒƒ´€€±}}®{{­zz«vv¨uu¨tt¦uu¨tt¦ss¥ss¥ss¥ss¥pp£oo¡nn¡nn¡kkžhh›hh›hh›hh›gg›ffšdd˜aa•__“__“]]‘]]‘[[XXWWŒWWŒWWŒVV‹WWŒVV‹WWŒUUŠRRˆRRˆQQ‡PP…PP…MMƒLLJJ€HH~HH~HH~FF}EE{DD{DD{CCzCCzEE{AAxAAx@@w@@w??v??v<>>>>>>>>>================================================H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 O=O>K8H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 Q@Š„˜££Ñ¡¡ÏŸŸÎžžÌ››Ê››Ê––ÅššÈššÈ˜˜Ç››Ê››Ê˜˜Ç˜˜Ç––Å••Ä””ÿ¾½‰‰¹‰‰¹……µ……µ€€±zz«zz«yy«uu¨tt¦uu§tt¦tt¦qq¤ss¥qq¤qq¤pp¢nn¡mm llŸjjiiœffšff™ee˜ff™cc—cc—aa•__“]]‘\\‘[[ZZŽWWŒWWŒUUŠVV‹VV‹TT‰VV‹VV‹TT‰QQ‡QQ†PP…OO…NN„MMƒKKIIGG~FF}FF}FF}EE{DD{CCzCCzAAxAAxDD{AAx@@w@@w@@w>>u>>u<>>>>>>=======================================================H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 L9qfb£¢Î££Ñ  ÎŸŸÎË››Ê››ÊššÈ——Æ••Ä••Ä••Ä——ÆššÈ••Ä””Ó“¿¾ŽŽ¾ŠŠ»ŠŠº……µ‚‚³€€±~~¯zz«vv¨rr¤qq¤pp¢llŸnn¡nn¡oo¡nn¡mm nn¡nn¡nn¡llŸhh›hh›hh›ff™ff™ee˜cc—bb–aa•aa•__“^^’^^’\\‘[[ZZŽXXWWŒWWŒWWŒWWŒVV‹VV‹UUŠUUŠTT‰SSˆQQ‡PP…OO…MMƒKKJJ€HH~FF}FF}FF}DD{DD{CCzCCzAAxAAxAAx@@w??v??v??v<>>>>>>=======================================================H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 XH.”®¤¤Ñ  ÎžžÌžžÌË››Ê™™ÇššÈ••Ä••Ä––Å••Ä””Ô”Ô”Ô”ÃÀ¿ŒŒ¼‹‹»ŠŠº‰‰¹‡‡·ƒƒ´€€±~~¯{{¬xxªss¥pp¢pp£nn¡mm mm nn¡nn¡nn¡nn¡nn¡nn¡mm kkžhh›hh›hh›dd˜dd˜ee˜cc—aa•__“__“]]‘\\‘[[ZZŽZZŽWWŒWWŒVV‹UUŠVV‹UUŠQQ‡NN„OO…PP…QQ†QQ†MMƒLL‚LLKKKKGG~FF|EE{FF}CCzAAx@@w??v??v??v??v>>u<>>>>>>=======================================================H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 N<}u{¦¦Ò¥¥Ó¡¡ÏžžÌ››ÊššÉ˜˜Ç••Ä‘‘Á““””Õ•Ä••Ä••Ä¿’’ÁÀ¿½ŠŠ»ŠŠºˆˆ¸……¶„„´„„´²}}®vv¨uu¨tt¦tt¦pp£oo¡oo¡oo¡pp¢nn¡nn¡mm mm kkžkkžjjiiœgg›ffšffšff™cc—aa•aa”^^’^^’\\‘YYŽYYŽWWŒVV‹VV‹UUŠVV‹TT‰SSˆRRˆRRˆQQ†OO…QQ†PP…PP…NN„LLKKKKIIIIGG~FF|EE{FF}CCzAAx@@w??v??v??v??v>>u<>>>>>>>>>==========================================================j\KI7H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 eXIœš½§§Ô¤¤Ñ¡¡ÏŸŸÎË››Ê™™Ç––Å““””Ó“Â’’Á’’Á¿““ÂÀ¾¿¾ŠŠºˆˆ¸‰‰¹……µ‚‚³‚‚³€€±°zz«tt¦tt¦ss¥qq¤nn¡nn¡oo¡nn¡nn¡llŸnn¡kkžkkžhh›hh›ffšdd˜dd˜dd˜dd˜cc—aa•``”]]‘]]‘\\‘\\‘YYŽYYŽWWŒVV‹UUŠVV‹WWŒVV‹UUŠRRˆQQ‡QQ†QQ†RRˆQQ†OO…MMƒKKKKKKIIGG~FF}EE{EE{DD{AAxAAxAAx@@wAAx@@w??v<>>>>>>>>>==========================================================µµÝ‚y{N<H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 H5 VF)Šƒ”¦¦Ô¥¥Ó¤¤ÑŸŸÎŸŸÍË››Ê™™Ç••Ä••Ä““Â’’Á¿¿À¿¾¾ŽŽ¾ŽŽ¾‹‹»ŠŠ»††·……¶„„´‚‚³€€±°{{¬vv¨qq¤rr¤pp¢nn¡nn¡mm oo¡oo¡oo¡nn¡mm kkžjjgg›gg›dd˜cc—cc—cc—cc—aa•aa•aa•__“]]‘ZZŽZZŽYYŽWWŒVV‹UUŠSSˆTT‰SSˆRRˆQQ‡QQ‡RRˆQQ†NN„MMƒNN„LL‚IIHH~FF}FF}FF}CCzBByAAxAAxAAx@@w@@w@@w??v??v>>u<>>>>>>>>>==========================================================þ>zÓ 2€Ó²ÓÈÓ@ÜÓðÓøÓ(/home/amr/PhotoPrintSplashScreen/SplashScreen.tifCreated with The GIMP,X„°,,,, "ÍûGÍûGphotoprint-0.4.2-pre2/splashscreen/Makefile.in0000644000175000017500000003572711400237522016263 00000000000000# Makefile.in generated by automake 1.10.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 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@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@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 = splashscreen DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/scripts/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libsplashscreen_la_LIBADD = am_libsplashscreen_la_OBJECTS = splashscreen.lo libsplashscreen_la_OBJECTS = $(am_libsplashscreen_la_OBJECTS) libsplashscreen_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(libsplashscreen_la_LDFLAGS) $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/scripts/depcomp am__depfiles_maybe = depfiles CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) CXXLD = $(CXX) CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ SOURCES = $(libsplashscreen_la_SOURCES) DIST_SOURCES = $(libsplashscreen_la_SOURCES) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DSYMUTIL = @DSYMUTIL@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ GDKPIXBUF2_CFLAGS = @GDKPIXBUF2_CFLAGS@ GDKPIXBUF2_LIBS = @GDKPIXBUF2_LIBS@ GETOPT_LIBS = @GETOPT_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIB2_CFLAGS = @GLIB2_CFLAGS@ GLIB2_LIBS = @GLIB2_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GP_CFLAGS = @GP_CFLAGS@ GP_LIBS = @GP_LIBS@ GREP = @GREP@ GTHREAD_CFLAGS = @GTHREAD_CFLAGS@ GTHREAD_LIBS = @GTHREAD_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ JPEG_LIBS = @JPEG_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ LCMS_LIBS = @LCMS_LIBS@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBM_LIBS = @LIBM_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NMEDIT = @NMEDIT@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ POSUB = @POSUB@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ TIFF_LIBS = @TIFF_LIBS@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ 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@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ 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@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CXXFLAGS = -Wall $(GTK2_CFLAGS) noinst_LTLIBRARIES = libsplashscreen.la libsplashscreen_la_SOURCES = \ splashscreen.cpp \ splashscreen.h \ SplashScreen.tif BUILT_SOURCES = splashscreendata.cpp libsplashscreen_la_LDFLAGS = -static EXTRA_DIST = splashscreendata.cpp all: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) all-am .SUFFIXES: .SUFFIXES: .cpp .lo .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 \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign splashscreen/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign splashscreen/Makefile .PRECIOUS: 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 clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libsplashscreen.la: $(libsplashscreen_la_OBJECTS) $(libsplashscreen_la_DEPENDENCIES) $(libsplashscreen_la_LINK) $(libsplashscreen_la_OBJECTS) $(libsplashscreen_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splashscreen.Plo@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here 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 $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$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 $(LTLIBRARIES) 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: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) 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) clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-dvi: install-dvi-am 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 installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ 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 mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am splashscreendata.cpp: gdk-pixbuf-csource >splashscreendata.cpp SplashScreen.tif # 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: photoprint-0.4.2-pre2/splashscreen/splashscreen.cpp0000644000175000017500000000264311264346260017413 00000000000000#include #include #include #include "splashscreen.h" #include "splashscreendata.cpp" GdkPixbuf *SplashScreen::GetPixbuf() { GdkPixdata pd; GdkPixbuf *result; GError *err; if(!gdk_pixdata_deserialize(&pd,sizeof(my_pixbuf),my_pixbuf,&err)) throw(err->message); if(!(result=gdk_pixbuf_from_pixdata(&pd,false,&err))) throw(err->message); return(result); } SplashScreen::SplashScreen() : window(NULL), image(NULL), message(NULL), pixbuf(NULL) { pixbuf=GetPixbuf(); window=gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_window_set_position(GTK_WINDOW(window),GTK_WIN_POS_CENTER_ALWAYS); gtk_window_set_decorated(GTK_WINDOW(window),FALSE); GtkWidget *box=gtk_vbox_new(FALSE,0); gtk_container_add(GTK_CONTAINER(window),box); image=gtk_image_new_from_pixbuf(pixbuf); gtk_box_pack_start(GTK_BOX(box),image,FALSE,FALSE,0); message=gtk_label_new(""); gtk_box_pack_start(GTK_BOX(box),message,TRUE,FALSE,0); gtk_widget_show(message); gtk_widget_show(image); gtk_widget_show(box); gtk_widget_show(window); } SplashScreen::~SplashScreen() { if(window) gtk_widget_destroy(window); if(pixbuf) g_object_unref(G_OBJECT(pixbuf)); } void SplashScreen::SetMessage(const char *msg) { if(message) gtk_label_set_text(GTK_LABEL(message),msg); gtk_label_set_selectable(GTK_LABEL(message),TRUE); while(gtk_events_pending()) gtk_main_iteration_do(false); } photoprint-0.4.2-pre2/splashscreen/splashscreen.h0000644000175000017500000000052111101462352017040 00000000000000#ifndef SPLASHSCREEN_H #define SPLASHSCREEN_H #include #include class SplashScreen { public: SplashScreen(); ~SplashScreen(); void SetMessage(const char *msg); static GdkPixbuf *GetPixbuf(); private: GtkWidget *window; GtkWidget *image; GtkWidget *message; GdkPixbuf *pixbuf; }; #endif photoprint-0.4.2-pre2/splashscreen/splashscreendata.cpp0000644000175000017500000417550211101462352020245 00000000000000/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ #ifdef __SUNPRO_C #pragma align 4 (my_pixbuf) #endif #ifdef __GNUC__ static const guint8 my_pixbuf[] __attribute__ ((__aligned__ (4))) = #else static const guint8 my_pixbuf[] = #endif { "" /* Pixbuf magic (0x47646b50) */ "GdkP" /* length: header (24) + pixel_data (378236) */ "\0\5\305\224" /* pixdata_type (0x2010002) */ "\2\1\0\2" /* rowstride (1600) */ "\0\0\6@" /* width (400) */ "\0\0\1\220" /* height (318) */ "\0\0\1>" /* pixel_data: */ "\255\0\0=\377\215\1\1>\377\212\2\2\77\377\205\3\3\77\377\214\3\3@\377" "\1\6\6B\377\211\7\7C\377\203\10\10D\377\212\10\10E\377\203\11\11E\377" "\204\12\12F\377\202\10\10E\377\202\11\11E\377\1\12\12F\377\202\13\13" "G\377\211\12\12F\377\207\13\13G\377\202\15\15H\377\203\15\15I\377\202" "\16\16J\377\204\17\17K\377\213\22\22M\377\210\22\22N\377\205\23\23N\377" "\203\22\22N\377\1\23\23N\377\203\22\22N\377\204\22\22M\377\203\20\20" "K\377\205\22\22M\377\4\16\16J\377\20\20K\377\21\21L\377\22\22M\377\203" "\22\22N\377\205\23\23N\377\1\24\24O\377\203\27\27R\377\203\31\31T\377" "\204\34\34V\377\1\35\35W\377\202\36\36X\377\203\35\35X\377\202\35\35" "W\377\3\36\36X\377\35\35X\377\35\35W\377\206\35\35X\377\205\35\35W\377" "\203\37\37Y\377\202\36\36X\377\202\37\37Y\377\202!![\377\203\"\"\\\377" "\211%%^\377\2&&_\377%%^\377\202&&_\377\203''`\377\2''a\377''`\377\202" "''a\377\204((b\377\204**c\377\203++d\377\204,,e\377\3--f\377,,e\377+" "+d\377\202--f\377\20700h\377\1//h\377\20200h\377\20222j\377\20422k\377" "\1""33k\377\20255m\377\1""66n\377\20377n\377\2""66n\37777n\377\20266" "n\377\4""77n\37777o\37788p\377<>u\377\77\77v\377\202@@w\377\203AAx\377\202BBy\377" "\1CCz\377\202AAx\377\1\77\77v\377\203AAx\377\204DD{\377\202FF|\377\1" "FF}\377\202GG~\377\202HH~\377\202II\177\377\3HH~\377II\177\377JJ\200" "\377\202KK\201\377\5LL\201\377LL\202\377MM\203\377OO\205\377MM\203\377" "\202QQ\206\377\202QQ\207\377\202RR\210\377\203TT\211\377\1SS\210\377" "\202VV\213\377\1XX\215\377\202[[\217\377\202\\\\\221\377\202]]\221\377" "\202\\\\\221\377\2]]\221\377__\223\377\202^^\222\377\5``\224\377__\223" "\377aa\224\377aa\225\377aa\224\377\202cc\227\377\255\0\0=\377\215\1\1" ">\377\212\2\2\77\377\205\3\3\77\377\214\3\3@\377\1\6\6B\377\211\7\7C" "\377\203\10\10D\377\212\10\10E\377\203\11\11E\377\204\12\12F\377\202" "\10\10E\377\202\11\11E\377\1\12\12F\377\202\13\13G\377\211\12\12F\377" "\207\13\13G\377\202\15\15H\377\203\15\15I\377\202\16\16J\377\204\17\17" "K\377\213\22\22M\377\210\22\22N\377\202\23\23N\377\205\24\24O\377\2\23" "\23N\377\24\24O\377\203\23\23N\377\204\22\22N\377\202\22\22M\377\1\22" "\22N\377\205\23\23N\377\1\21\21L\377\203\22\22N\377\203\23\23N\377\205" "\25\25P\377\1\27\27R\377\203\31\31T\377\1\32\32U\377\202\33\33U\377\204" "\35\35W\377\3\36\36X\377\37\37Y\377\36\36X\377\203\35\35X\377\202\36" "\36X\377\3\37\37Y\377\35\35X\377\35\35W\377\203\35\35X\377\202\35\35" "W\377\206\34\34V\377\203\37\37Y\377\202\36\36X\377\202\37\37Y\377\202" "!![\377\203\"\"\\\377\207%%^\377\4&&_\377%%^\377&&_\377%%^\377\202&&" "_\377\202''`\377\2&&_\377''`\377\202((b\377\203))b\377\2((b\377))b\377" "\204**c\377\6++d\377,,e\377--f\37700h\377..g\377//h\377\20200h\377\202" "..g\377\20600h\377\1""22k\377\20322j\377\20255m\377\20466n\377\2""22" "k\37744l\377\20333k\377\1""55m\377\20288p\377\1::q\377\20288p\377\204" "77o\377\1""88p\377\203<>u\377" "\203\77\77v\377\3>>u\377\77\77v\377@@w\377\202AAx\377\2BBy\377CCz\377" "\202AAx\377\2BBy\377DD{\377\203FF|\377\1FF}\377\202EE{\377\202GG~\377" "\202FF}\377\2GG~\377HH~\377\202GG~\377\202LL\201\377\2OO\205\377PP\205" "\377\203QQ\206\377\203PP\205\377\3OO\205\377QQ\206\377SS\210\377\202" "VV\213\377\202WW\214\377\202UU\212\377\2VV\213\377WW\214\377\203ZZ\216" "\377\1[[\220\377\204\\\\\221\377\204]]\221\377\203__\223\377\1``\224" "\377\204bb\226\377\2cc\227\377ff\232\377\240\0\0=\377\220\1\1>\377\216" "\2\2\77\377\202\3\3\77\377\210\3\3@\377\1\4\4A\377\202\5\5B\377\202\6" "\6B\377\214\7\7C\377\222\10\10E\377\1\11\11E\377\202\12\12F\377\210\13" "\13G\377\1\12\12F\377\206\13\13G\377\202\11\11E\377\215\10\10E\377\202" "\12\12F\377\1\15\15H\377\205\15\15I\377\1\16\16J\377\203\20\20K\377\203" "\21\21L\377\205\22\22M\377\210\22\22N\377\202\23\23N\377\213\24\24O\377" "\203\23\23N\377\202\22\22N\377\1\23\23N\377\205\24\24O\377\1\23\23N\377" "\203\24\24O\377\203\25\25P\377\203\27\27R\377\206\31\31T\377\203\33\33" "U\377\205\36\36X\377\2\37\37Y\377\36\36X\377\203\35\35X\377\202\36\36" "X\377\3\37\37Y\377\35\35X\377\35\35W\377\202\35\35X\377\3\36\36X\377" "\35\35X\377\37\37Y\377\204\36\36X\377\202\37\37Y\377\3!![\377\"\"[\377" "\"\"\\\377\202\40\40Z\377\1!![\377\203\"\"[\377\203##]\377\202''`\377" "\202&&_\377\202''`\377\4''a\377((b\377''`\377''a\377\205''`\377\2&&_" "\377''`\377\202))b\377\204**c\377\203++d\377\203,,e\377\3--f\377..g\377" "//h\377\202..g\377\20400h\377\203//h\377\202..g\377\2//h\37711i\377\202" "22j\377\1""00h\377\20222k\377\20233k\377\20266n\377\1""22k\377\20233" "k\377\20255m\377\1""66n\377\202::q\377\1;;r\377\203::q\377\205<>u\377\1\77\77v\377\202@@w\377\1AAx\377\203" "@@w\377\202AAx\377\1CCz\377\202DD{\377\202EE{\377\7DD{\377EE{\377FF|" "\377FF}\377GG~\377HH~\377FF}\377\205HH~\377\202FF}\377\6HH~\377JJ\200" "\377II\177\377KK\201\377NN\204\377MM\203\377\202PP\205\377\202QQ\206" "\377\3PP\205\377OO\205\377PP\205\377\203NN\204\377\4QQ\207\377UU\212" "\377VV\213\377UU\212\377\204VV\213\377\1YY\216\377\204[[\220\377\1]]" "\221\377\202^^\222\377\1__\223\377\202``\224\377\203aa\225\377\203cc" "\227\377\202ff\232\377\203hh\233\377\1ii\234\377\240\0\0=\377\220\1\1" ">\377\216\2\2\77\377\202\3\3\77\377\210\3\3@\377\1\4\4A\377\202\5\5B" "\377\202\6\6B\377\214\7\7C\377\214\10\10E\377\1\11\11E\377\206\12\12" "F\377\202\13\13G\377\203\14\14H\377\205\15\15H\377\1\13\13G\377\203\14" "\14H\377\203\15\15H\377\202\12\12F\377\202\11\11E\377\202\12\12F\377" "\211\13\13G\377\202\15\15H\377\1\16\16J\377\205\17\17K\377\203\20\20" "K\377\1\22\22M\377\207\22\22N\377\1\23\23N\377\210\24\24O\377\202\25" "\25P\377\205\27\27R\377\202\26\26Q\377\203\25\25P\377\204\24\24O\377" "\2\23\23N\377\22\22N\377\202\23\23N\377\204\24\24O\377\1\23\23N\377\203" "\24\24O\377\203\25\25P\377\205\27\27R\377\205\31\31T\377\2\32\32U\377" "\33\33U\377\204\36\36X\377\2\35\35X\377\36\36X\377\203\35\35X\377\5\35" "\35W\377\36\36X\377\35\35W\377\36\36X\377\35\35W\377\203\34\34V\377\2" "\36\36X\377\35\35X\377\205\36\36X\377\2\37\37Y\377!![\377\202\37\37Y" "\377\203\40\40Z\377\1!![\377\206%%^\377\202''a\377\202''`\377\3''a\377" "''`\377''a\377\202((b\377\2))b\377((b\377\202))b\377\203((b\377\1))b" "\377\202**c\377\202++d\377\1**c\377\203++d\377\7,,e\377..g\377//h\377" "00h\37722j\37722k\37711i\377\20500h\377\20411i\377\2""00h\37733k\377" "\20244l\377\20255m\377\20333k\377\20244l\377\20266n\377\5""55m\37766" "n\37777n\37777o\37788p\377\204::q\377\20288p\377\2""99q\377;;r\377\202" ">>u\377\203==u\377\5<>u\377\77\77v\377\202AAx\377" "\1CCz\377\202AAx\377\1@@w\377\202BBy\377\2CCz\377BBy\377\203AAx\377\5" "BBy\377CCz\377EE{\377FF}\377GG~\377\202HH~\377\1II\177\377\202LL\201" "\377\203KK\201\377\203LL\201\377\1NN\204\377\203PP\205\377\203QQ\207" "\377\202RR\210\377\3TT\211\377UU\212\377SS\210\377\203VV\213\377\203" "WW\214\377\1ZZ\216\377\203[[\217\377\1\\\\\221\377\203]]\221\377\1^^" "\222\377\202__\223\377\2aa\224\377aa\225\377\202bb\226\377\3``\224\377" "aa\225\377aa\224\377\202cc\227\377\2ff\231\377gg\233\377\204hh\233\377" "\1jj\235\377\240\0\0=\377\220\1\1>\377\216\2\2\77\377\202\3\3\77\377" "\210\3\3@\377\1\4\4A\377\202\5\5B\377\202\6\6B\377\214\7\7C\377\214\10" "\10E\377\1\11\11E\377\206\12\12F\377\202\13\13G\377\203\14\14H\377\205" "\15\15H\377\1\13\13G\377\203\14\14H\377\203\15\15H\377\202\12\12F\377" "\202\11\11E\377\202\12\12F\377\211\13\13G\377\202\15\15H\377\1\16\16" "J\377\205\17\17K\377\203\20\20K\377\1\22\22M\377\207\22\22N\377\1\23" "\23N\377\210\24\24O\377\202\25\25P\377\205\27\27R\377\202\26\26Q\377" "\203\25\25P\377\204\24\24O\377\2\23\23N\377\22\22N\377\202\23\23N\377" "\204\24\24O\377\2\23\23N\377\24\24O\377\202\26\26Q\377\203\27\27R\377" "\205\31\31T\377\204\32\32U\377\202\34\34V\377\1\35\35X\377\204\37\37" "Y\377\202\40\40Z\377\210\37\37Y\377\203\36\36X\377\202\37\37Y\377\202" "\40\40Z\377\203\37\37Y\377\2\"\"[\377##]\377\205!![\377\1\"\"[\377\203" "%%^\377\203&&_\377\204))b\377\203**c\377\203((b\377\203))b\377\202((" "b\377\202''a\377\204))b\377\2((b\377))b\377\202**c\377\5++d\377,,e\377" "..g\377--f\37700h\377\20222j\377\20211i\377\20300h\377\1""11i\377\204" "22j\377\1""55m\377\20266n\377\20533k\377\20466n\377\5""77n\37777o\377" "88p\377::q\377;;r\377\204<>u\377\202=" "=u\377\202\77\77v\377\202>>u\377\2\77\77v\377@@w\377\202BBy\377\4DD{" "\377EE{\377FF}\377EE{\377\203DD{\377\4EE{\377DD{\377BBy\377CCz\377\202" "EE{\377\3FF}\377GG~\377JJ\200\377\203KK\201\377\1LL\201\377\202LL\202" "\377\204MM\203\377\202LL\202\377\1OO\205\377\203RR\210\377\3UU\212\377" "VV\213\377UU\212\377\203SS\210\377\202UU\212\377\2VV\213\377WW\214\377" "\202YY\216\377\6XX\215\377WW\214\377YY\216\377ZZ\216\377YY\216\377[[" "\217\377\202]]\221\377\3^^\222\377__\223\377^^\222\377\203``\224\377" "\6aa\225\377aa\224\377bb\226\377aa\225\377dd\230\377ee\230\377\202ff" "\231\377\5ee\230\377ff\231\377hh\233\377ii\234\377kk\236\377\202ll\237" "\377\226\0\0=\377\220\1\1>\377\216\2\2\77\377\214\3\3\77\377\1\3\3@\377" "\214\6\6B\377\214\7\7C\377\214\10\10E\377\1\11\11E\377\210\13\13G\377" "\203\14\14H\377\214\15\15H\377\202\11\11E\377\202\10\10E\377\3\11\11" "E\377\10\10E\377\12\12F\377\203\11\11E\377\205\10\10E\377\202\12\12F" "\377\1\15\15I\377\205\16\16J\377\203\17\17K\377\204\20\20K\377\204\22" "\22M\377\1\22\22N\377\210\24\24O\377\202\25\25P\377\205\27\27R\377\206" "\26\26Q\377\203\25\25P\377\1\24\24O\377\203\23\23N\377\204\24\24O\377" "\2\23\23N\377\24\24O\377\202\26\26Q\377\203\27\27R\377\211\31\31T\377" "\202\34\34V\377\1\35\35X\377\204\37\37Y\377\202\40\40Z\377\210\37\37" "Y\377\203\36\36X\377\202\37\37Y\377\202\40\40Z\377\203\37\37Y\377\2\"" "\"[\377##]\377\203!![\377\202\"\"[\377\1##]\377\203&&_\377\203''`\377" "\207**c\377\203((b\377\1))b\377\202**c\377\202))b\377\202**c\377\202" "++d\377\2,,e\377--f\377\202,,e\377\2++d\377,,e\377\202--f\377\6//h\377" "--f\37700h\37711i\37722j\37722k\377\20222j\377\3""22k\37733k\37766n\377" "\20555m\377\20266n\377\1""33k\377\20466n\377\20299q\377\20377o\377\1" "88p\377\202;;r\377\2<>u\377\3" "\77\77v\377>>u\377<>u\377@@w\377AAx\377CC" "z\377\203DD{\377\3EE{\377DD{\377EE{\377\202FF}\377\10EE{\377CCz\377B" "By\377CCz\377FF|\377FF}\377GG~\377HH~\377\203II\177\377\1KK\201\377\202" "LL\201\377\1LL\202\377\202MM\203\377\202NN\204\377\203OO\205\377\1QQ" "\206\377\202QQ\207\377\2TT\211\377VV\213\377\202UU\212\377\202VV\213" "\377\204WW\214\377\203ZZ\216\377\7YY\216\377\\\\\221\377]]\221\377\\" "\\\221\377]]\221\377__\223\377``\224\377\203aa\225\377\203cc\227\377" "\2dd\230\377cc\227\377\202dd\230\377\2ff\232\377gg\233\377\203hh\233" "\377\1jj\235\377\202kk\236\377\1mm\240\377\202nn\241\377\226\0\0=\377" "\220\1\1>\377\216\2\2\77\377\214\3\3\77\377\1\3\3@\377\214\6\6B\377\214" "\7\7C\377\211\10\10E\377\1\11\11E\377\202\12\12F\377\1\13\13G\377\213" "\15\15H\377\210\15\15I\377\1\16\16J\377\202\15\15I\377\1\16\16J\377\202" "\14\14H\377\1\13\13G\377\203\12\12F\377\1\13\13G\377\203\14\14H\377\207" "\13\13G\377\204\16\16J\377\202\17\17K\377\203\20\20K\377\204\22\22N\377" "\203\23\23N\377\203\24\24O\377\1\24\24N\377\206\27\27Q\377\210\27\27" "R\377\203\26\26Q\377\205\27\27R\377\1\25\25P\377\203\24\24O\377\204\25" "\25P\377\202\24\24O\377\202\26\26Q\377\203\27\27R\377\210\31\31T\377" "\4\33\33U\377\35\35X\377\36\36X\377\37\37Y\377\204!![\377\202\"\"[\377" "\204!![\377\202\37\37Y\377\7!![\377\40\40Z\377\37\37Y\377\40\40Z\377" "!![\377\"\"\\\377\"\"[\377\206!![\377\1\"\"[\377\203!![\377\2\"\"\\\377" "$$^\377\204%%^\377\203&&_\377\204))b\377\1**c\377\202))b\377\203((b\377" "\1))b\377\204**c\377\202++d\377\2,,e\377++d\377\203,,e\377\203--f\377" "\4..g\377//h\37700h\37711i\377\20222j\377\6""33k\37744l\37722k\37722" "j\37722k\37744l\377\20666n\377\20255m\377\2""33k\37766n\377\20377n\377" "\20499q\377\20288p\377\202;;r\377\2<>u\377@@w\377\202AAx\377\202>>u\377\203\77\77v\377\1AAx\377\202DD" "{\377\202EE{\377\202FF}\377\4EE{\377FF}\377HH~\377II\177\377\202FF}\377" "\3FF|\377FF}\377GG~\377\202II\177\377\203KK\201\377\1LL\202\377\202M" "M\203\377\202NN\204\377\203PP\205\377\2QQ\206\377PP\205\377\202RR\210" "\377\202SS\210\377\202UU\212\377\4VV\213\377UU\212\377VV\213\377WW\214" "\377\202ZZ\216\377\15]]\221\377\\\\\221\377[[\220\377ZZ\216\377[[\217" "\377\\\\\221\377]]\221\377``\224\377aa\225\377bb\226\377cc\227\377dd" "\230\377cc\227\377\202bb\226\377\2cc\227\377ee\230\377\202ff\231\377" "\1ff\232\377\202gg\233\377\1ii\234\377\203hh\233\377\4ii\234\377kk\236" "\377mm\240\377nn\241\377\202mm\240\377\2nn\241\377oo\241\377\226\0\0" "=\377\213\1\1>\377\205\1\1=\377\202\2\2>\377\214\2\2\77\377\214\3\3\77" "\377\1\3\3@\377\205\6\6A\377\207\6\6B\377\214\7\7C\377\211\10\10E\377" "\1\11\11E\377\202\12\12F\377\1\13\13G\377\213\15\15H\377\210\15\15I\377" "\1\16\16J\377\202\15\15I\377\1\16\16J\377\202\14\14H\377\1\13\13G\377" "\203\12\12F\377\1\13\13G\377\203\14\14H\377\207\13\13G\377\204\16\16" "J\377\202\17\17K\377\203\20\20K\377\202\22\22N\377\202\22\22M\377\203" "\23\23M\377\204\24\24N\377\214\27\27Q\377\202\27\27R\377\203\26\26Q\377" "\205\27\27R\377\1\25\25P\377\203\24\24O\377\204\25\25P\377\202\24\24" "O\377\202\26\26Q\377\203\27\27R\377\210\31\31T\377\4\33\33U\377\35\35" "X\377\36\36X\377\37\37Y\377\204!![\377\202##]\377\203\"\"\\\377\1\"\"" "[\377\202!![\377\4\"\"[\377!![\377\40\40Z\377!![\377\202\"\"\\\377\1" "\"\"[\377\205!![\377\2\"\"[\377$$^\377\203##]\377\202%%^\377\1''`\377" "\203''a\377\1((b\377\202))b\377\204**c\377\4++d\377**c\377++d\377**c" "\377\202++d\377\205,,e\377\1--f\377\202..g\377\202--f\377\3,,e\377--" "f\377..g\377\202//h\377\12""00h\37711i\37722j\37722k\37722j\37744l\377" "55m\37744l\37722k\37744l\377\20555m\377\1""77n\377\20277o\377\1""77n" "\377\20288p\377\1::q\377\203;;r\377\20277o\377\20288p\377\202::q\377" "\1>>u\377\202@@w\377\1\77\77v\377\205>>u\377\205AAx\377\202CCz\377\202" "DD{\377\204EE{\377\5DD{\377FF|\377GG~\377HH~\377II\177\377\202KK\201" "\377\202HH~\377\1II\177\377\202KK\201\377\202LL\201\377\1MM\203\377\203" "LL\202\377\202LL\201\377\204LL\202\377\3QQ\206\377QQ\207\377RR\210\377" "\202UU\212\377\2VV\213\377TT\211\377\202UU\212\377\2TT\211\377UU\212" "\377\202VV\213\377\2ZZ\216\377[[\217\377\202[[\220\377\1]]\221\377\202" "\\\\\221\377\2]]\221\377^^\222\377\202``\224\377\7aa\224\377aa\225\377" "cc\227\377dd\230\377cc\227\377dd\230\377ee\230\377\202gg\233\377\202" "hh\233\377\202ii\234\377\2kk\236\377jj\235\377\203kk\236\377\4ll\237" "\377nn\241\377pp\242\377oo\241\377\202pp\243\377\1ss\245\377\217\0\0" "=\377\212\1\1>\377\1\2\2\77\377\220\2\2>\377\203\3\3>\377\212\3\3\77" "\377\204\6\6B\377\210\6\6A\377\205\7\7B\377\205\7\7C\377\203\10\10D\377" "\214\10\10E\377\1\12\12F\377\206\13\13G\377\202\14\14H\377\214\15\15" "H\377\207\15\15I\377\202\15\15H\377\203\14\14H\377\202\15\15H\377\1\14" "\14H\377\203\12\12F\377\1\13\13G\377\203\14\14H\377\210\13\13G\377\203" "\14\14H\377\202\15\15H\377\202\20\20K\377\1\20\20J\377\204\22\22M\377" "\203\23\23M\377\204\24\24M\377\204\26\26P\377\203\27\27P\377\207\27\27" "Q\377\203\26\26Q\377\205\27\27R\377\2\25\25P\377\24\24O\377\206\27\27" "R\377\202\25\25P\377\202\27\27R\377\210\31\31T\377\1\32\32U\377\202\34" "\34V\377\1\35\35X\377\202\37\37Y\377\1\40\40Z\377\204!![\377\202##]\377" "\203\"\"\\\377\1\"\"[\377\202!![\377\4\"\"[\377!![\377\40\40Z\377!![" "\377\202\"\"\\\377\1\"\"[\377\205!![\377\2\"\"[\377$$^\377\203##]\377" "\202%%^\377\1''`\377\203''a\377\1((b\377\202))b\377\204**c\377\4++d\377" "**c\377++d\377**c\377\202++d\377\205,,e\377\1--f\377\202..g\377\202-" "-f\377\3,,e\377--f\377..g\377\202//h\377\12""00h\37711i\37722j\37722" "k\37722j\37744l\37755m\37744l\37722k\37744l\377\20555m\377\1""77n\377" "\20277o\377\1""77n\377\20288p\377\1::q\377\203;;r\377\20277o\377\202" "88p\377\202::q\377\1>>u\377\202@@w\377\1\77\77v\377\205>>u\377\205AA" "x\377\202CCz\377\202DD{\377\205EE{\377\2FF}\377HH~\377\202JJ\200\377" "\202KK\201\377\202II\177\377\3KK\201\377LL\201\377LL\202\377\202MM\203" "\377\203NN\204\377\4MM\203\377LL\202\377MM\203\377OO\205\377\203PP\205" "\377\3TT\211\377UU\212\377VV\213\377\204WW\214\377\1VV\213\377\203WW" "\214\377\202ZZ\216\377\2\\\\\221\377]]\221\377\202\\\\\221\377\202``" "\224\377\6__\223\377aa\225\377bb\226\377cc\227\377bb\226\377cc\227\377" "\202dd\230\377\4ee\230\377ff\232\377hh\233\377gg\233\377\202ff\232\377" "\5gg\233\377hh\233\377jj\235\377mm\240\377ll\237\377\202nn\241\377\202" "pp\242\377\7qq\244\377ss\245\377pp\243\377pp\242\377rr\244\377tt\246" "\377uu\250\377\217\0\0=\377\207\1\1>\377\203\1\1=\377\204\2\2>\377\215" "\2\2=\377\206\3\3>\377\207\3\3\77\377\203\6\6B\377\211\6\6A\377\206\7" "\7B\377\204\7\7C\377\203\10\10D\377\214\10\10E\377\1\13\13G\377\213\15" "\15H\377\211\15\15I\377\203\16\16J\377\204\17\17K\377\202\16\16J\377" "\202\15\15H\377\1\15\15I\377\202\16\16J\377\1\15\15I\377\204\15\15H\377" "\203\14\14H\377\210\15\15H\377\203\15\15I\377\2\16\16J\377\16\16I\377" "\203\22\22M\377\202\24\24N\377\202\24\24M\377\202\25\25N\377\2\24\24" "N\377\25\25O\377\203\25\25N\377\206\26\26O\377\202\26\26P\377\202\30" "\30R\377\1\31\31R\377\203\31\31S\377\203\30\30R\377\203\30\30S\377\206" "\27\27R\377\204\31\31T\377\2\27\27R\377\26\26Q\377\202\27\27R\377\203" "\31\31T\377\205\32\32U\377\1\35\35W\377\202\36\36X\377\1\37\37Y\377\202" "\40\40Z\377\1\"\"\\\377\204##]\377\2$$^\377##]\377\203\"\"\\\377\202" "##]\377\202\"\"\\\377\1\"\"[\377\202\"\"\\\377\2##]\377$$^\377\205##" "]\377\4$$^\377%%^\377''`\377&&_\377\202%%^\377\1&&_\377\202''`\377\203" "((b\377\1**c\377\202,,e\377\202++d\377\202,,e\377\1--f\377\205,,e\377" "\202--f\377\202,,e\377\3--f\377..g\377//h\377\20300h\377\1""11i\377\202" "22j\377\3""22k\37744l\37755m\377\20366n\377\20355m\377\2""66n\37755m" "\377\20466n\377\3""77o\37799q\37788p\377\202::q\377\20388p\377\20299" "q\377\204;;r\377\202<\377\205\1\1=\377\204\2\2=\377\214\2\2<\377\1\2\2=\377\204\3\3=\377" "\204\3\3>\377\205\3\3\77\377\1\6\6B\377\205\6\6A\377\206\6\6@\377\203" "\7\7A\377\205\7\7B\377\202\7\7C\377\203\10\10D\377\214\10\10E\377\1\13" "\13G\377\213\15\15H\377\211\15\15I\377\203\16\16J\377\204\17\17K\377" "\202\16\16J\377\202\15\15H\377\1\15\15I\377\202\16\16J\377\1\15\15I\377" "\204\15\15H\377\203\14\14H\377\210\15\15H\377\203\15\15I\377\202\16\16" "I\377\202\22\22M\377\1\22\22L\377\202\24\24M\377\2\23\23M\377\23\23L" "\377\203\24\24M\377\1\25\25N\377\203\25\25M\377\207\26\26N\377\1\26\26" "O\377\203\30\30Q\377\202\30\30R\377\1\31\31R\377\204\30\30R\377\202\30" "\30S\377\206\27\27R\377\204\31\31T\377\2\27\27R\377\26\26Q\377\202\27" "\27R\377\203\31\31T\377\205\32\32U\377\1\35\35W\377\202\36\36X\377\1" "\37\37Y\377\202\40\40Z\377\1\"\"\\\377\204##]\377\2$$^\377##]\377\203" "\"\"\\\377\202##]\377\202\"\"\\\377\1\"\"[\377\202\"\"\\\377\2##]\377" "$$^\377\205##]\377\4$$^\377%%^\377''`\377&&_\377\202%%^\377\1&&_\377" "\202''`\377\203((b\377\1**c\377\202,,e\377\202++d\377\202,,e\377\1--" "f\377\205,,e\377\202--f\377\202,,e\377\3--f\377..g\377//h\377\20300h" "\377\1""11i\377\20222j\377\3""22k\37744l\37755m\377\20366n\377\20355" "m\377\2""66n\37755m\377\20466n\377\3""77o\37799q\37788p\377\202::q\377" "\20388p\377\20299q\377\204;;r\377\202<\377\203\1\1=\377\203\1\1<\377\203\2\2<\377\216\2\2;\377\203" "\3\3<\377\203\3\3=\377\204\3\3>\377\203\3\3\77\377\204\6\6A\377\203\6" "\6@\377\205\6\6\77\377\1\7\7@\377\203\7\7A\377\1\7\7B\377\203\10\10D" "\377\206\10\10E\377\203\11\11E\377\210\12\12F\377\204\15\15H\377\210" "\15\15I\377\203\16\16J\377\206\17\17K\377\202\20\20K\377\203\21\21L\377" "\202\22\22M\377\202\20\20K\377\204\16\16J\377\2\17\17K\377\16\16J\377" "\203\15\15I\377\202\15\15H\377\2\15\15I\377\15\15H\377\210\15\15I\377" "\1\16\16J\377\202\16\16I\377\202\20\20J\377\202\24\24M\377\1\23\23M\377" "\203\23\23L\377\2\24\24L\377\25\25M\377\202\25\25L\377\1\25\25M\377\202" "\25\25L\377\1\26\26M\377\207\27\27N\377\4\30\30O\377\31\31P\377\32\32" "Q\377\33\33R\377\202\33\33S\377\1\33\33T\377\202\32\32S\377\203\32\32" "T\377\1\31\31S\377\212\31\31T\377\202\27\27R\377\205\31\31T\377\202\34" "\34V\377\203\35\35W\377\1\36\36X\377\203\37\37X\377\202!!Z\377\1##\\" "\377\202$$]\377\206%%^\377\205$$^\377\202##]\377\1$$^\377\206%%^\377" "\3''`\377((b\377''`\377\203&&_\377\2''`\377((b\377\202++d\377\204,,e" "\377\204//h\377\20200h\377\1..g\377\203--f\377\202//h\377\202..g\377" "\20500h\377\20222j\377\2""11i\37722j\377\20322k\377\6""44l\37755m\377" "77n\37766n\37777n\37777o\377\20377n\377\1;;r\377\204::q\377\203;;r\377" "\3""88p\377::q\377;;r\377\202<>u\377\202==u\377\202>>u\377" "\204@@w\377\203AAx\377\202BBy\377\4CCz\377FF}\377FF|\377EE{\377\203C" "Cz\377\4DD{\377FF}\377GG~\377JJ\200\377\203KK\201\377\14LL\201\377KK" "\201\377LL\201\377LL\202\377MM\203\377LL\202\377LL\201\377KK\201\377" "LL\202\377MM\203\377NN\204\377OO\205\377\203PP\205\377\1QQ\206\377\203" "RR\210\377\202SS\210\377\202UU\212\377\2TT\211\377UU\212\377\202WW\214" "\377\202XX\215\377\3YY\216\377ZZ\216\377[[\217\377\202[[\220\377\12\\" "\\\221\377]]\221\377__\223\377aa\225\377``\224\377^^\222\377__\223\377" "``\224\377cc\227\377ee\230\377\202ff\232\377\1gg\233\377\202hh\233\377" "\203gg\233\377\5hh\233\377ii\234\377kk\236\377mm\240\377kk\236\377\203" "nn\241\377\202pp\242\377\4pp\243\377qq\244\377rr\244\377tt\246\377\202" "uu\247\377\202uu\250\377\6xx\252\377uu\250\377vv\250\377ww\251\377xx" "\252\377{{\254\377\202\0\0=\377\217\1\1>\377\1\1\1=\377\202\2\2>\377" "\203\2\2=\377\202\2\2<\377\202\2\2;\377\1\2\2:\377\202\3\3:\377\213\3" "\3""9\377\1\3\3:\377\202\3\3;\377\2\3\3<\377\6\6>\377\203\6\6\77\377" "\202\6\6@\377\207\6\6A\377\202\7\7A\377\4\7\7@\377\15\15D\377\217\217" "\251\377\34\34P\377\204\7\7\77\377\202\6\6\77\377\202\7\7A\377\1\10\10" "C\377\203\10\10D\377\204\10\10E\377\1\11\11E\377\202\12\12F\377\1\14" "\14H\377\214\15\15H\377\210\15\15I\377\203\16\16J\377\204\17\17K\377" "\202\17\17J\377\202\20\20J\377\202\21\21K\377\1\21\21L\377\205\22\22" "M\377\1\20\20K\377\202\21\21L\377\202\22\22M\377\202\17\17K\377\1\15" "\15I\377\202\15\15H\377\202\15\15I\377\203\16\16J\377\204\15\15I\377" "\203\15\15H\377\2\16\16I\377\20\20J\377\202\20\20I\377\202\17\17H\377" "\5\17\17G\377\21\21J\377\21\21I\377\22\22H\377\23\23J\377\202\23\23I" "\377\203\25\25J\377\205\26\26K\377\203\27\27L\377\2\27\27M\377\30\30" "N\377\202\32\32P\377\1\32\32Q\377\202\33\33R\377\3\32\32R\377\32\32S" "\377\31\31S\377\202\32\32T\377\202\31\31S\377\213\31\31T\377\202\33\33" "U\377\203\34\34V\377\202\36\36X\377\202\37\37Y\377\204\37\37X\377\203" "!!Z\377\1##\\\377\202$$]\377\202%%]\377\204%%^\377\205$$^\377\202##]" "\377\1$$^\377\206%%^\377\3''`\377((b\377''`\377\203&&_\377\2''`\377(" "(b\377\202++d\377\204,,e\377\204//g\377\20200g\377\1..g\377\203--f\377" "\202//h\377\202..g\377\20500h\377\20222j\377\2""11i\37722j\377\20322" "k\377\6""44l\37755m\37777n\37766n\37777n\37777o\377\20377n\377\1;;r\377" "\204::q\377\203;;r\377\3""88p\377::q\377;;r\377\202<>u\377" "\202==u\377\202>>u\377\204@@w\377\203AAx\377\202BBy\377\4CCz\377FF}\377" "FF|\377EE{\377\203CCz\377\4DD{\377FF}\377GG~\377JJ\200\377\202KK\201" "\377\4LL\201\377LL\202\377LL\201\377LL\202\377\202MM\203\377\202LL\202" "\377\4LL\201\377MM\203\377NN\204\377PP\205\377\203QQ\206\377\3QQ\207" "\377RR\210\377TT\211\377\202UU\212\377\205WW\214\377\1XX\215\377\203" "[[\217\377\2[[\220\377\\\\\221\377\203]]\221\377\13^^\222\377``\224\377" "aa\225\377aa\224\377bb\226\377aa\224\377bb\226\377cc\227\377dd\230\377" "ff\231\377gg\233\377\202hh\233\377\204ii\234\377\10jj\235\377kk\236\377" "jj\235\377ii\234\377jj\235\377mm\240\377nn\241\377qq\244\377\202pp\243" "\377\3rr\244\377ss\245\377tt\246\377\202vv\250\377\202uu\250\377\2ww" "\251\377xx\252\377\202{{\254\377\1||\256\377\202~~\257\377\2\200\200" "\261\377\177\177\260\377\202\0\0=\377\216\1\1>\377\202\1\1=\377\1\2\2" ">\377\202\2\2=\377\202\2\2<\377\1\2\2;\377\202\2\2:\377\202\2\2""9\377" "\202\3\3""8\377\212\3\3""7\377\202\3\3""8\377\202\3\3""9\377\1\3\3:\377" "\202\6\6=\377\1\6\6>\377\202\6\6\77\377\203\6\6@\377\203\6\6A\377\202" "\6\6@\377\1\7\7A\377\202\7\7@\377\7tt\223\377\377\377\377\377\356\356" "\362\377hh\212\377\10\10@\377\6\6>\377\7\7>\377\202\6\6>\377\3\7\7@\377" "\7\7A\377\10\10C\377\204\10\10D\377\203\10\10E\377\1\11\11E\377\202\12" "\12F\377\1\14\14H\377\214\15\15H\377\210\15\15I\377\203\16\16J\377\1" "\17\17K\377\205\17\17J\377\202\20\20J\377\203\21\21K\377\202\22\22L\377" "\203\22\22M\377\1\20\20K\377\202\21\21L\377\202\22\22M\377\202\17\17" "K\377\1\15\15I\377\202\15\15H\377\202\15\15I\377\203\16\16J\377\204\15" "\15I\377\203\15\15H\377\1\16\16I\377\202\20\20I\377\1\17\17H\377\202" "\17\17G\377\5\17\17F\377\21\21H\377\20\20G\377\21\21F\377\23\23H\377" "\202\23\23G\377\1\24\24H\377\202\24\24G\377\1\25\25H\377\206\26\26I\377" "\202\26\26J\377\5\27\27L\377\31\31M\377\31\31N\377\32\32O\377\32\32P" "\377\202\32\32Q\377\2\32\32R\377\31\31R\377\205\31\31S\377\212\31\31" "T\377\202\34\34V\377\203\35\35W\377\202\36\36X\377\1\37\37Y\377\205\37" "\37X\377\1\40\40Y\377\202!!Y\377\1$$\\\377\202$$]\377\202&&^\377\2''" "`\377''_\377\207&&_\377\202%%^\377\202''`\377\205&&_\377\3''`\377**c" "\377))b\377\203((b\377\2))b\377**c\377\202--f\377\2..g\377..f\377\204" "00g\377\202//g\377\20400g\377\2""11h\37711i\377\20222j\377\20211i\377" "\20222j\377\20322k\377\2""22j\37722k\377\20222j\377\6""22k\37733k\377" "44l\37755m\37777n\37788p\377\20299q\377\2""77o\37799q\377\206::q\377" "\1<>u\377\203@@w\377\202==u\377\202>>" "u\377\202\77\77v\377\202CCz\377\202DD{\377\204CCz\377\2FF|\377EE{\377" "\202FF}\377\2GG~\377FF}\377\204II\177\377\203KK\201\377\3II\177\377L" "L\201\377LL\202\377\202OO\205\377\202PP\205\377\4MM\203\377NN\204\377" "PP\205\377QQ\206\377\203RR\210\377\3SS\210\377RR\210\377SS\210\377\204" "RR\210\377\202UU\212\377\4WW\214\377YY\216\377ZZ\216\377[[\217\377\202" "]]\221\377\5[[\220\377\\\\\221\377[[\220\377[[\217\377\\\\\221\377\202" "]]\221\377\11``\224\377aa\225\377aa\224\377aa\225\377cc\227\377ee\230" "\377ff\231\377ff\232\377gg\233\377\203hh\233\377\2ii\234\377kk\236\377" "\202ll\237\377\12nn\241\377pp\242\377nn\241\377mm\240\377nn\241\377p" "p\242\377pp\243\377uu\247\377tt\246\377uu\250\377\203vv\250\377\3yy\253" "\377zz\253\377yy\253\377\203zz\253\377\1||\256\377\202~~\257\377\1\200" "\200\261\377\203\202\202\263\377\202\0\0=\377\216\1\1>\377\202\1\1=\377" "\202\2\2=\377\2\2\2<\377\2\2;\377\202\2\2:\377\23\2\2""9\377\34\34L\377" "BBj\377gg\206\377\210\210\240\377\245\245\267\377\275\275\312\377\325" "\325\335\377\350\350\355\377\361\361\364\377\372\372\373\377\373\373" "\374\377\360\360\363\377\331\331\341\377\267\267\305\377\201\201\232" "\377;;c\377\4\4""7\377\3\3""7\377\202\3\3""8\377\2\5\5;\377\5\5<\377" "\202\6\6=\377\1\6\6>\377\202\6\6\77\377\206\6\6@\377\4\7\7@\377\7\7\77" "\377\25\25J\377\353\353\360\377\203\377\377\377\377\1vv\224\377\204\6" "\6=\377\2\7\7\77\377\7\7@\377\202\10\10C\377\203\10\10D\377\203\10\10" "E\377\1\11\11E\377\202\12\12F\377\1\14\14H\377\214\15\15H\377\203\15" "\15I\377\205\16\16J\377\202\17\17K\377\1\17\17J\377\205\22\22L\377\203" "\22\22K\377\1\22\22L\377\205\22\22M\377\202\22\22N\377\202\22\22M\377" "\203\22\22N\377\3\21\21L\377\22\22M\377\17\17K\377\205\16\16J\377\202" "\20\20K\377\204\17\17K\377\203\16\16I\377\40\17\17I\377\20\20J\377\20" "\20I\377\20\20H\377\21\21H\377\21\21G\377\20\20F\377\21\21F\377))X\377" "NNu\377rr\221\377\220\220\250\377\253\253\275\377\302\302\316\377\330" "\330\340\377\352\352\356\377\362\362\365\377\372\372\373\377\373\373" "\374\377\361\361\364\377\334\334\344\377\275\275\313\377\214\214\244" "\377LLr\377\31\31K\377\30\30K\377\31\31L\377\32\32M\377\32\32N\377\32" "\32O\377\33\33P\377\32\32P\377\202\32\32Q\377\1\32\32R\377\202\33\33" "T\377\203\34\34U\377\202\32\32U\377\1\31\31T\377\205\32\32U\377\1\31" "\31T\377\202\33\33U\377\203\35\35W\377\202\36\36X\377\203\36\36W\377" "\1\37\37X\377\202\36\36W\377\1!!Z\377\202\"\"Z\377\1%%\\\377\203%%]\377" "\2&&^\377((a\377\202''`\377\2''a\377''`\377\202&&_\377\4''`\377&&_\377" "%%^\377&&_\377\202''a\377\1''`\377\205&&_\377\202))b\377\202((b\377\1" "**c\377\202++d\377\2,,e\377,,d\377\202--e\377\1--f\377\203..f\377\204" "//f\377\202//g\377\20211h\377\2""22j\37711i\377\20222j\377\1""22k\377" "\20233k\377\1""22k\377\20222j\377\2""22k\37733k\377\20244l\377\20266" "n\377\20277o\377\1""88p\377\20299q\377\2""77o\37799q\377\205::q\377\5" ";;r\377==u\377<>u\377\202\77\77v\377\202@@w\377\3AAx\377" "==u\377>>u\377\202\77\77v\377\202AAx\377\202FF}\377\202EE{\377\203DD" "{\377\1FF|\377\202HH~\377\202II\177\377\5HH~\377II\177\377JJ\200\377" "KK\201\377LL\201\377\202LL\202\377\2MM\203\377NN\204\377\202MM\203\377" "\5OO\205\377QQ\206\377PP\205\377OO\205\377PP\205\377\202QQ\206\377\202" "RR\210\377\1UU\212\377\203SS\210\377\202UU\212\377\3SS\210\377VV\213" "\377WW\214\377\203VV\213\377\1YY\216\377\202\\\\\221\377\1]]\221\377" "\202^^\222\377\204]]\221\377\3__\223\377bb\226\377cc\227\377\202dd\230" "\377\203cc\227\377\202ee\230\377\202hh\233\377\205kk\236\377\202ll\237" "\377\202mm\240\377\3nn\241\377pp\242\377qq\244\377\203ss\245\377\202" "tt\246\377\6vv\250\377ww\251\377xx\252\377zz\253\377yy\253\377zz\253" "\377\202{{\255\377\202~~\257\377\3\200\200\261\377\201\201\262\377\202" "\202\263\377\203\205\205\265\377\205\1\1>\377\212\2\2\77\377\202\2\2" ">\377\10\2\2=\377\3\3=\377\21\21G\377==h\377kk\213\377\231\231\257\377" "\305\305\321\377\357\357\362\377\220\377\377\377\377\12\334\334\343\377" "ee\204\377\6\6""9\377\5\5""8\377\5\5""9\377\5\5:\377\5\5;\377\6\6=\377" "\6\6>\377\7\7\77\377\202\7\7@\377\203\7\7A\377\202\7\7@\377\3\7\7\77" "\377\7\7>\377\205\205\240\377\203\377\377\377\377\4\357\357\363\377\30" "\30I\377\6\6;\377\6\6<\377\202\6\6=\377\202\7\7\77\377\3\7\7@\377\10" "\10C\377\10\10D\377\202\11\11D\377\1\11\11E\377\204\12\12F\377\202\13" "\13G\377\1\14\14H\377\213\15\15H\377\203\15\15I\377\205\16\16J\377\1" "\17\17K\377\202\17\17J\377\202\22\22L\377\206\22\22K\377\203\22\22L\377" "\204\22\22M\377\203\22\22N\377\3\23\23N\377\24\24O\377\22\22N\377\202" "\23\23N\377\1\21\21L\377\202\20\20K\377\203\17\17K\377\202\20\20K\377" "\203\16\16J\377\204\16\16I\377\10\17\17I\377\20\20I\377\35\35R\377GG" "r\377ss\223\377\236\236\264\377\310\310\324\377\360\360\363\377\220\377" "\377\377\377\2\336\336\345\377pp\216\377\202\31\31J\377\10\31\31K\377" "\32\32M\377\32\32N\377\32\32O\377\32\32P\377\31\31P\377\32\32Q\377\33" "\33S\377\202\33\33T\377\202\34\34U\377\202\32\32U\377\1\31\31T\377\205" "\32\32U\377\1\31\31T\377\202\33\33U\377\203\35\35W\377\204\36\36W\377" "\1\35\35V\377\202\36\36W\377\2\36\36V\377!!X\377\202##Z\377\1%%\\\377" "\203&&]\377\1&&^\377\205''`\377\202&&_\377\7''`\377&&_\377%%^\377&&_" "\377((b\377**c\377))b\377\203((b\377\202))b\377\202++d\377\202**c\377" "\1,,e\377\202--f\377\202..f\377\4--f\377--e\377//f\37700g\377\202//f" "\377\202//e\377\20311h\377\3""00g\37711i\37722i\377\20322j\377\4""22" "k\37733k\37744l\37755m\377\20244l\377\20255m\377\5""66n\37777o\37788" "p\37799q\377::q\377\20299q\377\202::q\377\5;;r\37799q\37788p\377::q\377" ";;r\377\202::q\377\4<>u\377\204<>u\377\77\77v\377\202AAx\377\204EE{\377\202DD{" "\377\4EE{\377FF|\377FF}\377HH~\377\202GG~\377\1HH~\377\202FF}\377\2I" "I\177\377KK\201\377\202LL\202\377\1PP\205\377\204NN\204\377\1OO\205\377" "\202PP\205\377\3NN\204\377MM\203\377NN\204\377\202QQ\206\377\2SS\210" "\377UU\212\377\203VV\213\377\202WW\214\377\10YY\216\377VV\213\377XX\215" "\377ZZ\216\377WW\214\377XX\215\377[[\217\377]]\221\377\203``\224\377" "\202aa\224\377\203``\224\377\4bb\226\377cc\227\377ff\231\377gg\233\377" "\203ee\230\377\1gg\233\377\202hh\233\377\5gg\233\377ii\234\377kk\236" "\377nn\241\377ll\237\377\202nn\241\377\7pp\243\377nn\241\377pp\242\377" "pp\243\377pp\242\377qq\244\377tt\246\377\204uu\247\377\1vv\250\377\202" "ww\251\377\3yy\253\377zz\253\377||\256\377\202}}\256\377\1||\256\377" "\203~~\257\377\6\200\200\261\377\202\202\263\377\203\203\264\377\205" "\205\265\377\205\205\266\377\206\206\267\377\205\1\1>\377\212\2\2\77" "\377\202\2\2>\377\2\2\2=\377\312\312\326\377\230\377\377\377\377\10\277" "\277\314\377\27\27D\377\5\5""7\377\5\5""8\377\5\5""9\377\6\6;\377\6\6" "=\377\6\6>\377\202\7\7\77\377\204\7\7@\377\4\7\7\77\377\7\7>\377\33\33" "N\377\363\363\366\377\203\377\377\377\377\1yy\225\377\202\6\6:\377\6" "\6\6;\377\6\6<\377\6\6=\377\6\6>\377\7\7\77\377\7\7@\377\202\10\10C\377" "\203\11\11D\377\204\12\12F\377\202\13\13G\377\1\14\14H\377\213\15\15" "H\377\203\15\15I\377\205\16\16J\377\203\17\17J\377\203\22\22K\377\1\21" "\21K\377\204\21\21J\377\202\21\21K\377\203\22\22L\377\203\22\22M\377" "\202\22\22N\377\3\23\23N\377\24\24O\377\22\22N\377\202\23\23N\377\1\21" "\21L\377\202\20\20K\377\203\17\17K\377\202\20\20K\377\203\16\16J\377" "\203\16\16I\377\202\16\16H\377\1\315\315\330\377\230\377\377\377\377" "\14\304\304\320\377))U\377\32\32J\377\32\32L\377\33\33M\377\33\33N\377" "\33\33P\377\33\33Q\377\33\33S\377\35\35T\377\35\35U\377\35\35V\377\202" "\36\36W\377\3\35\35V\377\34\34V\377\32\32U\377\205\35\35W\377\1\33\33" "U\377\202\35\35W\377\202\36\36X\377\1\36\36W\377\203\37\37X\377\202\36" "\36W\377\4\40\40X\377bb\210\377\177\177\237\377\"\"Y\377\202##Y\377\202" "&&]\377\202&&^\377\3''_\377''`\377&&_\377\202''`\377\2((a\377''`\377" "\202&&_\377\5%%^\377&&_\377''`\377''a\377((b\377\202''a\377\202''`\377" "\202((b\377\2**c\377++d\377\202**c\377\5++d\377,,e\377,,d\377--e\377" ",,e\377\202--e\377\2//e\37700g\377\202..d\377\202//e\377\20300f\377\1" "00g\377\20211h\377\7""22j\37722i\37722j\37722k\37733k\37744l\37755m\377" "\20266n\377\20377o\377\1""88p\377\202::q\377\202<>u\377==u\377\202\77\77v\377" "\202@@w\377\202AAx\377\3BBy\377CCz\377FF|\377\202CCz\377\202EE{\377\204" "FF}\377\4FF|\377FF}\377GG~\377HH~\377\202LL\201\377\2JJ\200\377GG~\377" "\202FF}\377\6HH~\377JJ\200\377LL\202\377OO\205\377PP\205\377QQ\206\377" "\202PP\205\377\203QQ\206\377\5RR\210\377PP\205\377OO\205\377NN\204\377" "QQ\206\377\202RR\210\377\1SS\210\377\203UU\212\377\203WW\214\377\11X" "X\215\377WW\214\377XX\215\377ZZ\216\377YY\216\377ZZ\216\377[[\217\377" "]]\221\377__\223\377\202``\224\377\202^^\222\377\202bb\226\377\1cc\227" "\377\202ff\231\377\202ff\232\377\4ee\230\377ff\232\377gg\233\377kk\236" "\377\203nn\241\377\3pp\242\377oo\241\377pp\242\377\202nn\241\377\4pp" "\242\377rr\244\377qq\244\377ss\245\377\202tt\246\377\202uu\250\377\202" "vv\250\377\1yy\253\377\202zz\253\377\4{{\255\377zz\253\377{{\255\377" "}}\256\377\202~~\257\377\1\177\177\260\377\203\200\200\261\377\7\203" "\203\264\377\202\202\263\377\203\203\264\377\205\205\265\377\205\205" "\266\377\211\211\271\377\212\212\273\377\205\1\1>\377\211\2\2\77\377" "\202\2\2>\377\202\2\2=\377\1\210\210\243\377\217\377\377\377\377\2\373" "\373\374\377\371\371\372\377\210\377\377\377\377\11\322\322\333\377\21" "\21\77\377\5\5""7\377\5\5""8\377\6\6:\377\6\6;\377\6\6<\377\6\6=\377" "\7\7>\377\204\7\7\77\377\3\7\7>\377\6\6=\377\224\224\253\377\203\377" "\377\377\377\2\344\344\351\377\17\17@\377\202\7\7:\377\10\7\7;\377\7" "\7<\377\7\7>\377\7\7\77\377\7\7@\377\7\7\77\377\10\10B\377\10\10C\377" "\203\12\12E\377\204\13\13G\377\203\14\14H\377\202\15\15H\377\1\15\15" "I\377\213\16\16J\377\204\22\22M\377\203\22\22L\377\202\22\22K\377\4\21" "\21K\377\21\21J\377dd\212\377\32\32Q\377\205\21\21J\377\4\22\22K\377" "\23\23L\377\23\23M\377\24\24M\377\204\24\24N\377\3\23\23N\377\24\24O" "\377\23\23N\377\202\24\24O\377\1\22\22N\377\202\22\22M\377\2\21\21L\377" "\20\20K\377\203\17\17K\377\1\16\16J\377\204\16\16I\377\203\16\16H\377" "\1\217\217\251\377\217\377\377\377\377\2\373\373\374\377\371\371\372" "\377\210\377\377\377\377\12\325\325\336\377$$Q\377\32\32J\377\32\32K" "\377\32\32L\377\33\33N\377\32\32P\377\33\33Q\377\33\33S\377\34\34T\377" "\202\34\34U\377\202\35\35V\377\2\34\34U\377\35\35W\377\205\36\36X\377" "\1\33\33U\377\202\35\35W\377\203\36\36W\377\1\37\37X\377\202\36\36W\377" "\202\36\36V\377\10!!Y\377\311\311\326\377\377\377\377\377\263\263\305" "\377,,_\377\"\"W\377%%[\377%%\\\377\202&&]\377\2&&^\377''_\377\202&&" "_\377\3''`\377((a\377))a\377\202((b\377\1''a\377\202((b\377\1))b\377" "\202**c\377\205))b\377\2++d\377,,e\377\202++d\377\1,,e\377\202..f\377" "\7//g\377//f\37700g\377//f\37711g\377zz\234\37788l\377\20300e\377\1/" "/e\377\20300f\377\20211h\377\7""22i\37711j\37744k\37766m\37766n\3777" "7n\37777o\377\20388p\377\3""99q\37788p\37799q\377\202::q\377\204<>u\377\203\77\77v\377" "\4AAx\377BBy\377@@w\377BBy\377\202AAx\377\204EE{\377\203FF}\377\202G" "G~\377\1HH~\377\202LL\202\377\1LL\201\377\202II\177\377\5HH~\377KK\201" "\377LL\201\377NN\204\377PP\205\377\204QQ\206\377\5RR\210\377SS\210\377" "RR\210\377SS\210\377QQ\206\377\202RR\210\377\2TT\211\377UU\212\377\204" "WW\214\377\202XX\215\377\5WW\214\377XX\215\377ZZ\216\377[[\217\377[[" "\220\377\204]]\221\377\202``\224\377\1aa\224\377\203aa\225\377\13cc\227" "\377ee\230\377ff\232\377ff\231\377ee\230\377dd\230\377ff\231\377gg\233" "\377hh\233\377ii\234\377kk\236\377\202ll\237\377\1mm\240\377\202oo\241" "\377\202pp\243\377\202ss\245\377\5qq\244\377rr\244\377tt\246\377uu\247" "\377uu\250\377\203zz\253\377\3{{\255\377||\256\377~~\257\377\203}}\256" "\377\11~~\257\377\200\200\261\377\201\201\262\377\200\200\261\377\202" "\202\263\377\203\203\264\377\207\207\267\377\205\205\266\377\207\207" "\267\377\202\206\206\267\377\4\211\211\271\377\212\212\273\377\215\215" "\275\377\217\217\276\377\210\2\2\77\377\206\3\3\77\377\202\3\3>\377\3" "\3\3=\377\3\3<\377,,[\377\206\377\377\377\377\3\352\352\356\377\307\307" "\321\377\365\365\367\377\203\377\377\377\377\3qq\210\377!!E\377\11\11" "1\377\202\4\4.\377\5\11\11""2\377%%K\377PPo\377\230\230\252\377\362\362" "\364\377\204\377\377\377\377\10\245\245\266\377\6\6""6\377\6\6""7\377" "\6\6""8\377\6\6:\377\6\6;\377\6\6<\377\7\7\77\377\204\7\7@\377\3\7\7" "\77\377\40\40Q\377\370\370\372\377\203\377\377\377\377\2ee\204\377\7" "\7""8\377\202\7\7""9\377\7\7\7:\377\7\7<\377\7\7=\377\7\7>\377\7\7@\377" "\10\10A\377\10\10B\377\202\10\10C\377\202\10\10D\377\1\11\11D\377\203" "\11\11E\377\202\12\12F\377\4\13\13G\377\14\14H\377\14\14G\377\15\15G" "\377\204\15\15H\377\202\16\16I\377\205\16\16J\377\203\22\22M\377\203" "\22\22L\377\202\22\22K\377\202\21\21J\377\4""77f\377\375\375\376\377" "\335\335\345\377FFq\377\203\21\21H\377\6\21\21I\377\22\22J\377\23\23" "K\377\23\23L\377\23\23M\377\24\24M\377\203\24\24N\377\2\23\23M\377\24" "\24O\377\202\22\22N\377\202\23\23N\377\202\22\22N\377\203\22\22L\377" "\202\21\21K\377\1\22\22M\377\203\22\22L\377\202\22\22K\377\3\21\21J\377" "\15\15G\37766e\377\206\377\377\377\377\3\353\353\357\377\312\312\324" "\377\366\366\367\377\203\377\377\377\377\12yy\220\377--P\377\30\30>\377" "\23\23;\377\24\24<\377\31\31A\37733W\377\\\\z\377\237\237\260\377\363" "\363\365\377\204\377\377\377\377\12\254\254\274\377\31\31G\377\31\31" "I\377\32\32K\377\33\33M\377\33\33O\377\34\34Q\377\35\35S\377\35\35T\377" "\35\35U\377\202\35\35V\377\4\36\36W\377\35\35V\377\36\36W\377\37\37X" "\377\204\37\37Y\377\1\35\35V\377\205\37\37X\377\202!!Y\377\4!!X\377!" "!W\377\40\40V\377JJu\377\203\377\377\377\377\11\331\331\342\377''[\377" "%%Z\377&&Z\377''\\\377((]\377))_\377((_\377))`\377\204))a\377\3((a\377" "((b\377''a\377\202((b\377\1))b\377\202**c\377\203))b\377\202++d\377\202" ",,e\377\6**c\377++d\377++c\377..f\377--e\377//f\377\202//e\377\5//d\377" "QQ~\377\375\375\376\377\342\342\351\377^^\207\377\20211e\377\13..c\377" "//d\377//e\37700f\37722h\37700h\37722h\37733j\37755m\37766m\37777m\377" "\20377n\377\2""66n\37777n\377\20277o\377\6""99q\377<>u\377\2==u\377>>u\377\203\77\77v\377\207" "AAx\377\4CCz\377DD{\377EE{\377DD{\377\204AAx\377\202FF}\377\203II\177" "\377\202JJ\200\377\203KK\201\377\202LL\202\377\1MM\203\377\204LL\202" "\377\1NN\204\377\203PP\205\377\4NN\204\377QQ\206\377QQ\207\377RR\210" "\377\202TT\211\377\202SS\210\377\13UU\212\377VV\213\377WW\214\377VV\213" "\377WW\214\377XX\215\377WW\214\377XX\215\377ZZ\216\377WW\214\377YY\216" "\377\202ZZ\216\377\4[[\217\377]]\221\377``\224\377aa\225\377\202bb\226" "\377\1dd\230\377\203cc\227\377\202bb\226\377\202dd\230\377\2ff\231\377" "ii\234\377\202hh\233\377\3ii\234\377jj\235\377kk\236\377\202nn\241\377" "\5pp\242\377oo\241\377nn\241\377oo\241\377pp\242\377\203ss\245\377\1" "uu\247\377\202tt\246\377\6uu\250\377vv\250\377xx\252\377zz\253\377{{" "\254\377{{\255\377\202}}\256\377\2~~\257\377\177\177\260\377\203\200" "\200\261\377\202\203\203\264\377\4\202\202\263\377\204\204\264\377\207" "\207\267\377\210\210\270\377\202\212\212\272\377\1\211\211\271\377\202" "\212\212\273\377\3\215\215\275\377\220\220\300\377\222\222\301\377\210" "\2\2\77\377\206\3\3\77\377\202\3\3>\377\14\3\3=\377\3\3<\377\3\3;\377" "\321\321\333\377\311\311\324\377\231\231\256\377jj\207\37799`\377\17" "\17<\377\3\3""1\377%%K\377\376\376\376\377\202\377\377\377\377\2\351" "\351\355\377\11\11""0\377\202\4\4,\377\202\4\4-\377\1\5\5.\377\202\5" "\5/\377\3\5\5""0\377\27\27\77\377\256\256\274\377\204\377\377\377\377" "\7<\377" "\204\7\7\77\377\2\7\7>\377\227\227\255\377\203\377\377\377\377\14\325" "\325\335\377\10\10""8\377\7\7""7\377\6\6""7\377\7\7""8\377\7\7""9\377" "\7\7;\377\7\7<\377\7\7>\377\7\7\77\377\7\7@\377\10\10B\377\202\10\10" "C\377\202\10\10D\377\204\11\11D\377\202\12\12E\377\1\13\13F\377\202\14" "\14G\377\1\15\15G\377\204\15\15H\377\206\16\16I\377\2\16\16J\377\22\22" "M\377\204\22\22L\377\202\22\22K\377\4\21\21J\377\21\21I\377\21\21H\377" "\252\252\276\377\202\377\377\377\377\3\375\375\376\377ww\225\377\21\21" "F\377\202\21\21G\377\5\22\22H\377\23\23J\377\23\23K\377\23\23L\377\24" "\24M\377\202\25\25N\377\4\25\25O\377\24\24N\377\25\25O\377\23\23M\377" "\205\24\24N\377\203\22\22M\377\202\23\23M\377\1\24\24N\377\202\23\23" "M\377\202\23\23L\377\15\22\22L\377\22\22K\377\17\17G\377\21\21H\377\323" "\323\335\377\313\313\327\377\236\236\263\377qq\216\377DDi\377\40\40L" "\377\23\23\77\37722W\377\376\376\376\377\202\377\377\377\377\10\353\353" "\356\377\27\27<\377\22\22""8\377\23\23""9\377\23\23:\377\24\24<\377\25" "\25=\377\26\26>\377\202\26\26\77\377\2&&M\377\263\263\301\377\204\377" "\377\377\377\12LLo\377\32\32H\377\32\32J\377\33\33L\377\33\33M\377\34" "\34P\377\34\34Q\377\35\35S\377\34\34T\377\35\35U\377\202\35\35V\377\1" "\34\34U\377\202\35\35V\377\204\36\36W\377\1\33\33T\377\202\35\35W\377" "\1\37\37X\377\202\36\36W\377\6\40\40Y\377\40\40X\377\40\40W\377\37\37" "V\377\37\37U\377\250\250\275\377\203\377\377\377\377\12\250\250\274\377" "##W\377%%X\377%%Y\377&&Z\377''\\\377((^\377))_\377((_\377))`\377\202" "))a\377\213**b\377\1++c\377\202..f\377\203--e\377\6..f\377//g\37711i" "\37711h\37722h\37711g\377\20233h\377\1\266\266\310\377\202\377\377\377" "\377\15\375\375\376\377\211\211\246\37711c\37700c\37700d\37722f\3773" "3g\37744h\37744j\37744k\37766k\37766l\37766n\377\20377n\377\11""77o\377" "77n\37777o\37788p\377::q\377;;r\377<>u\377\202AAx\377\1BBy\377\202CCz\377\203DD{\377\2EE{\377" "DD{\377\203CCz\377\2EE{\377FF}\377\202LL\201\377\202KK\201\377\203II" "\177\377\3KK\201\377LL\202\377MM\203\377\202NN\204\377\5OO\205\377NN" "\204\377QQ\206\377PP\205\377QQ\206\377\202QQ\207\377\6RR\210\377SS\210" "\377RR\210\377SS\210\377TT\211\377VV\213\377\202TT\211\377\1SS\210\377" "\202VV\213\377\2WW\214\377YY\216\377\204XX\215\377\3ZZ\216\377YY\216" "\377ZZ\216\377\202[[\220\377\5ZZ\216\377\\\\\221\377__\223\377aa\225" "\377bb\226\377\202cc\227\377\1ee\230\377\205dd\230\377\1hh\233\377\202" "ii\234\377\2kk\236\377jj\235\377\202kk\236\377\202nn\241\377\14pp\242" "\377pp\243\377ss\245\377tt\246\377pp\243\377qq\244\377ss\245\377tt\246" "\377uu\247\377tt\246\377uu\250\377ww\251\377\202zz\253\377\203xx\252" "\377\3{{\254\377}}\256\377\177\177\260\377\202\200\200\261\377\203\202" "\202\263\377\12\203\203\264\377\204\204\264\377\205\205\265\377\206\206" "\267\377\210\210\270\377\211\211\271\377\212\212\273\377\213\213\273" "\377\212\212\273\377\214\214\274\377\202\220\220\277\377\3\221\221\301" "\377\224\224\303\377\225\225\304\377\210\2\2\77\377\206\3\3\77\377\202" "\3\3>\377\13\3\3=\377\3\3<\377\3\3;\377\3\3""9\377\3\3""8\377\3\3""6" "\377\2\2""4\377\2\2""3\377\2\2""1\377\3\3""0\377\210\210\235\377\203" "\377\377\377\377\1\213\213\235\377\203\4\4+\377\3\4\4,\377\4\4-\377\5" "\5.\377\202\5\5/\377\202\5\5""0\377\2\7\7""2\377\273\273\307\377\203" "\377\377\377\377\7\231\231\254\377\5\5""4\377\6\6""5\377\6\6""7\377\6" "\6""8\377\7\7<\377\7\7=\377\204\7\7>\377\2\"\"R\377\370\370\372\377\203" "\377\377\377\377\15QQs\377\6\6""5\377\7\7""6\377\6\6""6\377\10\10""8" "\377\10\10""9\377\10\10;\377\11\11=\377\11\11>\377\11\11@\377\11\11A" "\377\11\11B\377\12\12C\377\202\10\10C\377\2\10\10D\377\12\12E\377\203" "\14\14G\377\203\15\15G\377\202\15\15H\377\1\16\16I\377\202\16\16H\377" "\202\20\20I\377\202\22\22K\377\207\22\22L\377\202\22\22M\377\202\22\22" "L\377\5\21\21K\377\21\21J\377\21\21I\37733b\377\374\374\375\377\203\377" "\377\377\377\1\\\\\177\377\202\22\22F\377\11\22\22G\377\22\22H\377\23" "\23J\377\24\24K\377\25\25M\377\25\25N\377\26\26O\377\26\26P\377\27\27" "P\377\202\27\27Q\377\206\24\24N\377\3\23\23L\377\22\22K\377\21\21J\377" "\202\22\22K\377\1\22\22L\377\203\22\22K\377\15\21\21K\377\21\21J\377" "\21\21I\377\15\15F\377\16\16E\377\16\16D\377\15\15B\377\17\17C\377\17" "\17A\377\16\16>\377\22\22\77\377\21\21=\377\217\217\243\377\203\377\377" "\377\377\1\221\221\242\377\202\21\21""7\377\4\22\22""8\377\23\23""9\377" "\24\24;\377\25\25=\377\202\26\26>\377\202\26\26\77\377\2\30\30A\377\300" "\300\313\377\203\377\377\377\377\10\241\241\263\377\31\31F\377\32\32" "I\377\33\33K\377\33\33M\377\33\33N\377\34\34P\377\35\35S\377\202\36\36" "U\377\4\36\36V\377\36\36W\377\35\35V\377\36\36W\377\204\37\37X\377\202" "\36\36W\377\2\40\40Y\377!!Z\377\203\"\"Z\377\6##Z\377\"\"Z\377##Y\377" "##X\37799i\377\371\371\372\377\202\377\377\377\377\10\372\372\373\377" "<>u\377\77\77v\377@@w\377\77\77v\377>>u\377==u\377>>u\377@@w\377\203" "AAx\377\4CCz\377DD{\377EE{\377CCz\377\203DD{\377\202FF|\377\4EE{\377" "DD{\377FF|\377EE{\377\202FF}\377\1II\177\377\202KK\201\377\202II\177" "\377\202HH~\377\3II\177\377LL\202\377NN\204\377\202PP\205\377\1MM\203" "\377\202OO\205\377\1QQ\206\377\202RR\210\377\202UU\212\377\1VV\213\377" "\202UU\212\377\4VV\213\377WW\214\377VV\213\377UU\212\377\202VV\213\377" "\202WW\214\377\1XX\215\377\202[[\217\377\202\\\\\221\377\2]]\221\377" "^^\222\377\202]]\221\377\1__\223\377\202]]\221\377\3__\223\377bb\226" "\377dd\230\377\202ee\230\377\5dd\230\377cc\227\377dd\230\377ff\231\377" "ff\232\377\202ii\234\377\1ll\237\377\202kk\236\377\6jj\235\377ll\237" "\377nn\241\377pp\242\377qq\244\377ss\245\377\202tt\246\377\1uu\247\377" "\203tt\246\377\2ww\251\377uu\250\377\202xx\252\377\202zz\253\377\3{{" "\254\377{{\255\377~~\257\377\204\177\177\260\377\202\200\200\261\377" "\204\205\205\265\377\3\205\205\266\377\210\210\270\377\211\211\271\377" "\203\212\212\273\377\6\217\217\276\377\216\216\276\377\217\217\276\377" "\220\220\277\377\220\220\300\377\222\222\301\377\203\225\225\304\377" "\210\2\2\77\377\207\3\3\77\377\202\3\3>\377\12\3\3=\377\3\3;\377\3\3" ":\377\3\3""8\377\3\3""7\377\3\3""6\377\3\3""4\377\3\3""2\377\11\11""4" "\377\347\347\353\377\202\377\377\377\377\4\376\376\376\377&&H\377\4\4" "+\377\5\5+\377\202\5\5,\377\2\5\5-\377\5\5.\377\202\5\5/\377\203\6\6" "1\377\1BBb\377\203\377\377\377\377\7\315\315\326\377\6\6""4\377\6\6""6" "\377\6\6""7\377\7\7""9\377\7\7;\377\7\7<\377\202\7\7=\377\3\12\12\77" "\377\12\12>\377\232\232\260\377\203\377\377\377\377\1\303\303\316\377" "\203\7\7""5\377\13\6\6""6\377\10\10""7\377\10\10""9\377\10\10:\377\11" "\11<\377\11\11>\377\11\11\77\377\11\11A\377\11\11B\377\12\12C\377\10" "\10B\377\202\10\10C\377\2\11\11D\377\12\12E\377\202\13\13F\377\202\14" "\14G\377\4\14\14F\377\15\15F\377\15\15G\377\16\16H\377\202\16\16G\377" "\202\17\17H\377\1\21\21K\377\204\22\22K\377\207\22\22L\377\5\21\21K\377" "\21\21J\377\21\21I\377\21\21H\377\242\242\267\377\203\377\377\377\377" "\1\313\313\326\377\202\21\21C\377\11\21\21D\377\21\21E\377\22\22F\377" "\23\23H\377\23\23I\377\25\25L\377\25\25M\377\26\26N\377\26\26O\377\202" "\26\26P\377\202\27\27P\377\2\26\26O\377\27\27P\377\203\26\26P\377\2\24" "\24N\377\23\23M\377\202\22\22K\377\2\21\21K\377\22\22K\377\203\23\23" "L\377\202\22\22K\377\13\22\22J\377\17\17F\377\20\20F\377\17\17E\377\17" "\17C\377\21\21C\377\20\20A\377\20\20\77\377\22\22>\377\26\26@\377\351" "\351\354\377\202\377\377\377\377\10\376\376\376\37733S\377\23\23""8\377" "\23\23""9\377\24\24""9\377\24\24:\377\24\24;\377\25\25=\377\202\27\27" "@\377\202\27\27A\377\2\30\30A\377OOn\377\203\377\377\377\377\15\321\321" "\331\377\32\32E\377\33\33G\377\33\33I\377\34\34L\377\33\33L\377\33\33" "O\377\35\35R\377\36\36T\377\35\35T\377\36\36U\377\36\36V\377\35\35U\377" "\206\36\36W\377\4\36\36V\377\37\37W\377!!X\377\"\"Y\377\202!!Y\377\5" "\"\"Y\377\"\"X\377\"\"W\377\"\"V\377\242\242\270\377\203\377\377\377" "\377\3\245\245\271\377##T\377$$U\377\202&&X\377\6''Z\377(([\377))]\377" "))^\377**_\377**`\377\202**a\377\2**b\377++c\377\203**b\377\2,,d\377" "--e\377\204,,d\377\1--e\377\202//f\377\202..f\377\1//f\377\20211h\377" "\6""00h\37700g\37700f\37700d\37722e\377\257\257\302\377\203\377\377\377" "\377\1\321\321\334\377\202//^\377\16//_\377//`\37711b\37722d\37722f\377" "33h\37744i\37755k\37777m\37788n\37788o\37788p\37799p\377::p\377\202<" ">u\377@@w\377\202>>u\377\202\77\77v\377\1@@w\377\202" ">>u\377\10@@w\377AAx\377@@w\377AAx\377BBy\377CCz\377DD{\377AAx\377\203" "CCz\377\1DD{\377\204FF}\377\2HH~\377KK\201\377\204LL\201\377\202KK\201" "\377\10LL\202\377MM\203\377OO\205\377QQ\206\377OO\205\377NN\204\377M" "M\203\377LL\201\377\202PP\205\377\2RR\210\377UU\212\377\203VV\213\377" "\1WW\214\377\204VV\213\377\1TT\211\377\202UU\212\377\202WW\214\377\1" "ZZ\216\377\203[[\217\377\3]]\221\377^^\222\377__\223\377\202``\224\377" "\1aa\224\377\203bb\226\377\202cc\227\377\2ee\230\377ff\231\377\202ff" "\232\377\4gg\233\377hh\233\377ii\234\377jj\235\377\203ll\237\377\202" "kk\236\377\4nn\241\377pp\243\377ss\245\377tt\246\377\202ss\245\377\202" "uu\247\377\4vv\250\377uu\250\377xx\252\377ww\251\377\202uu\250\377\6" "xx\252\377zz\253\377{{\254\377||\256\377~~\257\377}}\256\377\202\200" "\200\261\377\204\202\202\263\377\4\203\203\264\377\205\205\266\377\207" "\207\267\377\206\206\267\377\203\212\212\273\377\1\214\214\274\377\202" "\216\216\276\377\1\217\217\276\377\202\222\222\301\377\1\225\225\304" "\377\202\226\226\305\377\202\230\230\307\377\2\226\226\305\377\231\231" "\307\377\202\2\2\77\377\212\3\3\77\377\202\3\3@\377\1\5\5A\377\202\6" "\6@\377\11\6\6\77\377\6\6>\377\5\5<\377\5\5:\377\5\5""9\377\5\5""7\377" "\5\5""5\377\5\5""2\377VVs\377\203\377\377\377\377\1\274\274\306\377\202" "\4\4+\377\5\5\5+\377\5\5,\377\5\5-\377\5\5.\377\5\5/\377\202\5\5""0\377" "\203\6\6""2\377\1\21\21:\377\203\377\377\377\377\7\337\337\344\377\6" "\6""3\377\6\6""5\377\6\6""6\377\6\6""8\377\7\7:\377\7\7;\377\202\7\7" "<\377\3\12\12>\377$$R\377\371\371\372\377\203\377\377\377\377\1BBe\377" "\203\10\10""5\377\12\6\6""5\377\7\7""6\377\7\7""7\377\7\7""9\377\7\7" ";\377\7\7<\377\7\7>\377\7\7\77\377\7\7@\377\10\10A\377\202\10\10B\377" "\2\10\10C\377\7\7A\377\206\10\10C\377\2\13\13D\377\13\13E\377\203\14" "\14E\377\203\16\16G\377\202\16\16H\377\1\17\17H\377\202\20\20I\377\203" "\22\22K\377\10\22\22L\377\21\21L\377\21\21K\377\22\22J\377\22\22I\377" "\21\21H\377++Z\377\372\372\373\377\203\377\377\377\377\1LLq\377\202\21" "\21B\377\7\22\22C\377\22\22D\377\22\22E\377\23\23G\377\24\24I\377\25" "\25K\377\25\25L\377\202\26\26N\377\202\26\26O\377\204\26\26P\377\203" "\27\27P\377\1\26\26N\377\205\23\23K\377\203\24\24L\377\203\23\23K\377" "\11\22\22I\377\21\21H\377\21\21F\377\21\21E\377\23\23E\377\22\22C\377" "\22\22A\377\22\22>\377^^{\377\203\377\377\377\377\1\300\300\312\377\202" "\23\23""8\377\7\23\23""9\377\24\24:\377\24\24;\377\24\24<\377\26\26>" "\377\27\27A\377\30\30A\377\202\30\30B\377\2\30\30A\377\"\"I\377\203\377" "\377\377\377\12\341\341\347\377\31\31D\377\32\32F\377\33\33H\377\33\33" "K\377\32\32K\377\33\33M\377\35\35P\377\35\35R\377\35\35S\377\203\35\35" "T\377\202\36\36V\377\204\40\40W\377\3\36\36U\377\36\36V\377\36\36U\377" "\202\40\40V\377\1\40\40U\377\202!!W\377\3\"\"V\377::h\377\371\371\372" "\377\202\377\377\377\377\15\374\374\375\377\77\77i\377##S\377$$T\377" "&&W\377''X\377''Y\377(([\377))]\377))^\377**_\377++`\377,,b\377\202+" "+b\377\6,,c\377++b\377++c\377++b\377,,c\377--d\377\202,,c\377\202++b" "\377\1,,c\377\202..e\377\202//e\377\11""11g\37700h\37700g\37711f\377" "00e\37700d\377//b\377GGt\377\373\373\374\377\203\377\377\377\377\14a" "a\204\377--Z\377--[\377--\\\377..]\377//_\37700a\37711c\37722e\37733" "h\37766k\37788m\377\20299n\377\2::p\377::q\377\202<\377\5\5<\377\5\5" ";\377\5\5""9\377\5\5""7\377\5\5""5\377\5\5""3\377\272\272\306\377\203" "\377\377\377\377\1WWq\377\202\5\5+\377\5\5\5,\377\5\5-\377\5\5.\377\5" "\5/\377\5\5""0\377\202\5\5""1\377\1\6\6""3\377\202\6\6""2\377\1\33\33" "D\377\203\377\377\377\377\7\320\320\330\377\6\6""3\377\6\6""4\377\6\6" "5\377\6\6""7\377\7\7""9\377\7\7:\377\202\7\7;\377\2\11\11=\377\230\230" "\255\377\203\377\377\377\377\2\270\270\305\377\12\12""6\377\203\10\10" "5\377\12\7\7""4\377\7\7""6\377\7\7""7\377\7\7""9\377\10\10;\377\11\11" "<\377\11\11>\377\11\11\77\377\11\11@\377\11\11A\377\202\11\11B\377\2" "\10\10B\377\7\7@\377\202\10\10C\377\1\12\12C\377\202\13\13D\377\1\12" "\12C\377\203\14\14D\377\202\15\15E\377\204\16\16F\377\2\16\16G\377\17" "\17G\377\202\17\17H\377\1\21\21J\377\204\21\21K\377\5\21\21J\377\22\22" "I\377\21\21G\377\21\21F\377\227\227\256\377\203\377\377\377\377\2\275" "\275\313\377\21\21\77\377\202\22\22A\377\11\22\22B\377\23\23C\377\23" "\23E\377\24\24F\377\24\24H\377\25\25J\377\25\25K\377\25\25L\377\26\26" "M\377\202\26\26N\377\203\26\26O\377\2\27\27O\377\30\30P\377\202\27\27" "N\377\2\26\26M\377\23\23J\377\202\22\22H\377\3\21\21H\377\22\22H\377" "\23\23I\377\202\23\23J\377\1\22\22I\377\202\21\21I\377\11\21\21H\377" "\21\21G\377\20\20E\377\20\20D\377\23\23E\377\22\22C\377\22\22A\377\22" "\22\77\377\276\276\311\377\203\377\377\377\377\1__y\377\202\22\22""8" "\377\10\23\23:\377\24\24;\377\24\24<\377\26\26>\377\27\27@\377\30\30" "B\377\31\31B\377\31\31C\377\202\31\31B\377\1--R\377\203\377\377\377\377" "\14\324\324\334\377\32\32E\377\33\33G\377\34\34I\377\34\34K\377\34\34" "L\377\35\35O\377\37\37R\377\37\37T\377\40\40U\377!!V\377!!W\377\203\37" "\37V\377\204\40\40V\377\3\36\36T\377\40\40U\37700a\377\202\40\40V\377" "\6\40\40U\377\"\"V\377!!U\377!!T\377XX}\377\360\360\363\377\202\377\377" "\377\377\1\257\257\300\377\202##R\377\14$$S\377&&U\377&&W\377''X\377" "((Z\377))\\\377(([\377((]\377))^\377**`\377++`\377**`\377\203**a\377" "\202++b\377\1,,c\377\205++a\377\1..c\377\202..d\377\5--d\377//e\3771" "1f\37700f\37722g\377\20211e\377\2""00c\377\245\245\272\377\203\377\377" "\377\377\2\305\305\322\377,,Y\377\203,,X\377\15--Z\377..]\377//_\377" "11c\37733e\37766i\37788k\37799n\377::o\377<>t\377\12\77\77v\377AAx\377CCz\377AAx\377CCz\377BBy\377AAx\377C" "Cz\377DD{\377EE{\377\202DD{\377\1EE{\377\207FF}\377\1HH~\377\205FF}\377" "\1HH~\377\202LL\202\377\203NN\204\377\202OO\205\377\202PP\205\377\2Q" "Q\206\377RR\210\377\202QQ\207\377\3SS\210\377RR\210\377TT\211\377\205" "VV\213\377\2WW\214\377XX\215\377\203ZZ\216\377\3YY\216\377[[\220\377" "]]\221\377\202^^\222\377\202__\223\377\202]]\221\377\10__\223\377^^\222" "\377``\224\377aa\224\377aa\225\377aa\224\377cc\227\377dd\230\377\202" "gg\233\377\3hh\233\377ii\234\377hh\233\377\202ii\234\377\202hh\233\377" "\3ii\234\377kk\236\377nn\241\377\202pp\243\377\10pp\242\377qq\244\377" "tt\246\377uu\247\377uu\250\377vv\250\377xx\252\377zz\253\377\202xx\252" "\377\5vv\250\377zz\253\377{{\254\377{{\255\377||\256\377\203\200\200" "\261\377\202\177\177\260\377\202\200\200\261\377\1\204\204\264\377\202" "\206\206\267\377\4\207\207\267\377\211\211\271\377\212\212\272\377\211" "\211\271\377\204\212\212\273\377\1\217\217\276\377\202\220\220\277\377" "\2\221\221\301\377\220\220\300\377\202\225\225\304\377\2\227\227\306" "\377\231\231\307\377\202\232\232\311\377\5\233\233\312\377\232\232\311" "\377\236\236\314\377\241\241\317\377\240\240\316\377\202\2\2\77\377\206" "\3\3\77\377\204\3\3@\377\1\5\5B\377\202\5\5A\377\13\6\6A\377\6\6@\377" "\7\7@\377\7\7\77\377\6\6>\377\6\6<\377\6\6:\377\6\6""8\377\6\6""6\377" "$$M\377\376\376\376\377\202\377\377\377\377\2\350\350\354\377\12\12""0" "\377\203\5\5-\377\4\5\5/\377\6\6""0\377\6\6""1\377\6\6""2\377\202\6\6" "3\377\1\6\6""4\377\202\6\6""3\377\1PPo\377\203\377\377\377\377\7\253" "\253\271\377\10\10""4\377\10\10""5\377\10\10""7\377\11\11""8\377\11\11" "9\377\11\11;\377\202\11\11<\377\2\"\"P\377\370\370\372\377\203\377\377" "\377\377\2::]\377\12\12""6\377\203\10\10""5\377\12\7\7""4\377\7\7""5" "\377\7\7""6\377\6\6""8\377\37\37L\377;;d\377\7\7<\377\7\7=\377\7\7>\377" "\7\7\77\377\202\7\7@\377\11\10\10A\377\7\7\77\377\10\10A\377\7\7@\377" "\10\10A\377\11\11A\377\11\11B\377\11\11A\377\13\13B\377\203\14\14B\377" "\203\15\15C\377\1\16\16D\377\202\17\17E\377\202\21\21H\377\6\21\21I\377" "\21\21J\377\21\21K\377\21\21J\377\22\22J\377\22\22I\377\202\22\22H\377" "\3\22\22G\377$$T\377\366\366\370\377\203\377\377\377\377\14HHk\377\20" "\20=\377\22\22>\377\22\22\77\377\22\22@\377\22\22A\377\23\23C\377\23" "\23D\377\24\24F\377\24\24H\377\26\26K\377\27\27M\377\202\27\27N\377\206" "\30\30O\377\4\27\27N\377\27\27M\377\30\30N\377\26\26L\377\204\25\25J" "\377\4\24\24I\377\23\23I\377\25\25K\377\23\23J\377\202\23\23I\377\11" "\22\22I\377\22\22H\377\22\22G\377\21\21E\377\25\25H\377\24\24E\377\24" "\24D\37711Y\377\376\376\376\377\202\377\377\377\377\2\352\352\355\377" "\30\30=\377\202\23\23""9\377\6\24\24;\377\25\25=\377\26\26>\377\26\26" "@\377\27\27B\377\30\30C\377\202\31\31D\377\202\31\31C\377\1^^z\377\203" "\377\377\377\377\11\261\261\277\377\32\32D\377\33\33F\377\34\34H\377" "\34\34J\377\34\34K\377\35\35N\377\35\35P\377\36\36Q\377\203\37\37S\377" "\202\36\36T\377\2\35\35R\377\37\37T\377\203\36\36T\377\6''Y\377\246\246" "\273\377\360\360\363\377EEp\377\37\37T\377\37\37S\377\202\"\"T\377\6" "!!S\377!!R\377<\377" "\6\6<\377\6\6;\377\6\6""9\377\6\6""7\377\207\207\236\377\203\377\377" "\377\377\1\211\211\234\377\202\5\5-\377\202\5\5.\377\3\6\6""0\377\6\6" "1\377\6\6""3\377\202\6\6""4\377\1\6\6""5\377\202\6\6""4\377\2\6\6""3" "\377\301\301\315\377\203\377\377\377\377\7hh\202\377\10\10""4\377\10" "\10""5\377\10\10""6\377\11\11""7\377\11\11""9\377\11\11:\377\202\11\11" ";\377\1\223\223\250\377\203\377\377\377\377\3\263\263\301\377\12\12""6" "\377\12\12""5\377\202\11\11""5\377\13\12\12""5\377\10\10""5\377\10\10" "6\377\11\11""7\377++U\377\340\340\346\377\360\360\363\37755_\377\7\7" "<\377\7\7=\377\7\7>\377\202\7\7\77\377\203\7\7@\377\15\7\7\77\377\7\7" "@\377\11\11A\377\12\12A\377TTz\377\262\262\303\377\351\351\356\377\370" "\370\372\377\336\336\345\377\234\234\261\377//\\\377\13\13\77\377\14" "\14A\377\202\16\16C\377\3\20\20F\377\21\21G\377\21\21H\377\204\21\21" "I\377\5\22\22H\377\21\21G\377\25\25I\377\24\24G\377\214\214\244\377\203" "\377\377\377\377\2\304\304\317\377\21\21=\377\202\21\21<\377\12\21\21" "=\377\21\21>\377\22\22\77\377\22\22A\377\23\23C\377\23\23D\377\24\24" "F\377\25\25I\377\26\26K\377\27\27L\377\202\27\27M\377\203\27\27N\377" "\12\27\27M\377\30\30N\377^^\203\377\266\266\307\377\352\352\357\377\371" "\371\372\377\340\340\347\377\240\240\265\37766b\377\22\22F\377\202\23" "\23G\377\2\25\25J\377\23\23H\377\204\22\22H\377\6\22\22G\377\21\21E\377" "\25\25H\377\24\24F\377\24\24D\377\217\217\245\377\203\377\377\377\377" "\17\220\220\243\377\23\23:\377\24\24:\377\24\24;\377\25\25=\377\26\26" ">\377\26\26@\377\27\27A\377\31\31D\377\32\32F\377\34\34H\377\33\33H\377" "\33\33G\377\33\33F\377\307\307\321\377\203\377\377\377\377\17tt\215\377" "\34\34E\377\34\34F\377\35\35H\377\35\35J\377\36\36L\377\36\36N\377<<" "g\377\210\210\242\377,,\\\377\37\37R\377\37\37S\377\37\37R\377\36\36" "R\377\37\37R\377\203\40\40T\377\2TT|\377\341\341\350\377\202\377\377" "\377\377\4\345\345\353\37744b\377\40\40Q\377\"\"S\377\202!!R\377\5!!" "Q\377!!P\377''U\377jj\212\377\"\"P\377\202$$R\377\12%%S\377&&T\377&&" "V\377((X\377\244\244\270\377\221\221\252\377<>s\377@@v\377@@w\377CCz\377\202DD{\377\6CCz\377BBy\377" "AAx\377CCz\377DD{\377FF|\377\202EE{\377\2GG~\377II\177\377\202JJ\200" "\377\203II\177\377\4JJ\200\377KK\201\377JJ\200\377II\177\377\202KK\201" "\377\1NN\204\377\203PP\205\377\202NN\204\377\2MM\203\377NN\204\377\202" "PP\205\377\203UU\212\377\6RR\210\377TT\211\377VV\213\377WW\214\377XX" "\215\377ZZ\216\377\205[[\217\377\202[[\220\377\6XX\215\377[[\217\377" "ZZ\216\377[[\220\377]]\221\377^^\222\377\203``\224\377\2aa\225\377cc" "\227\377\202dd\230\377\2ee\230\377gg\233\377\202ff\231\377\203hh\233" "\377\202jj\235\377\2kk\236\377jj\235\377\202nn\241\377\202pp\242\377" "\4qq\244\377pp\242\377qq\244\377pp\243\377\202ss\245\377\1vv\250\377" "\202yy\253\377\2xx\252\377ww\251\377\202zz\253\377\6{{\254\377||\256" "\377}}\256\377{{\254\377}}\256\377||\256\377\202\177\177\260\377\1\203" "\203\264\377\202\205\205\265\377\202\205\205\266\377\2\211\211\271\377" "\207\207\267\377\203\212\212\272\377\4\215\215\275\377\220\220\277\377" "\217\217\276\377\220\220\277\377\203\221\221\301\377\204\225\225\304" "\377\2\230\230\307\377\232\232\310\377\202\236\236\314\377\11\237\237" "\316\377\236\236\314\377\237\237\315\377\241\241\317\377\244\244\321" "\377\245\245\323\377\244\244\321\377\246\246\324\377\252\252\327\377" "\205\3\3\77\377\203\3\3@\377\205\6\6B\377\203\6\6A\377\11\6\6@\377\7" "\7A\377\7\7@\377\7\7>\377\6\6=\377\6\6;\377\6\6""9\377\12\12:\377\350" "\350\354\377\202\377\377\377\377\3\376\376\376\377&&J\377\5\5-\377\202" "\5\5.\377\3\6\6/\377\6\6""1\377\6\6""2\377\202\6\6""4\377\204\6\6""5" "\377\1||\224\377\203\377\377\377\377\13\355\355\360\377\23\23<\377\11" "\11""4\377\12\12""5\377\12\12""6\377\12\12""8\377\12\12""9\377\13\13" ":\377\13\13;\377\36\36J\377\365\365\367\377\202\377\377\377\377\3\376" "\376\376\37788\\\377\12\12""6\377\204\11\11""5\377\4\12\12""5\377\12" "\12""6\377BBe\377\355\355\360\377\202\377\377\377\377\5\352\352\356\377" "..Y\377\11\11<\377\11\11=\377\11\11>\377\202\11\11\77\377\202\11\11@" "\377\202\7\7\77\377\2//\\\377\307\307\323\377\206\377\377\377\377\11" "\363\363\365\377MMq\377\14\14\77\377\16\16A\377\16\16B\377\20\20D\377" "\20\20E\377\20\20F\377\20\20G\377\202\21\21H\377\6\20\20G\377\21\21F" "\377\21\21E\377\24\24G\377\36\36N\377\356\356\362\377\203\377\377\377" "\377\1RRq\377\203\20\20:\377\14\26\26\77\37711V\377QQq\377pp\213\377" "\217\217\245\377\256\256\276\377\314\314\326\377\33\33L\377\26\26I\377" "\26\26J\377\26\26K\377\27\27M\377\202\30\30M\377\3\27\27L\377::g\377" "\312\312\326\377\206\377\377\377\377\2\363\363\366\377SSw\377\202\24" "\24G\377\3\26\26I\377\24\24H\377\25\25I\377\204\25\25J\377\5\23\23G\377" "\24\24G\377\23\23E\377\27\27F\377\351\351\355\377\202\377\377\377\377" "\3\376\376\376\37733V\377\24\24;\377\202\24\24<\377\6\26\26>\377\26\26" "\77\377\27\27A\377\27\27C\377\31\31E\377\33\33H\377\202\34\34I\377\2" "\34\34H\377\207\207\236\377\203\377\377\377\377\24\356\356\361\377$$" "K\377\34\34E\377\34\34F\377\35\35H\377\35\35I\377\35\35K\377\35\35M\377" "\223\223\253\377\377\377\377\377\364\364\366\377\245\245\271\377IIr\377" "\36\36Q\377\35\35O\377\36\36Q\377\37\37Q\377##T\377\225\225\254\377\374" "\374\375\377\204\377\377\377\377\7\317\317\331\377&&U\377!!Q\377((U\377" "\303\303\320\377<\377\15\15\77\377\17\17A\377\20\20C\377" "\20\20D\377\203\21\21F\377\5\21\21E\377\22\22F\377\21\21D\377\23\23E" "\377||\226\377\203\377\377\377\377\6\364\364\366\377\217\217\243\377" "\255\255\273\377\312\312\323\377\347\347\353\377\375\375\375\377\206" "\377\377\377\377\5CCj\377\26\26H\377\26\26I\377\30\30J\377\30\30K\377" "\202\31\31L\377\2^^\201\377\363\363\366\377\210\377\377\377\377\7\356" "\356\362\377++V\377\23\23D\377\24\24F\377\25\25H\377\24\24H\377\24\24" "I\377\202\25\25J\377\5\25\25I\377\23\23G\377\24\24G\377\23\23E\377``" "\201\377\203\377\377\377\377\16\277\277\312\377\26\26>\377\25\25=\377" "\27\27>\377\27\27\77\377\30\30@\377\31\31B\377\31\31C\377\32\32F\377" "\32\32G\377\33\33I\377\34\34I\377\35\35I\377\207\207\237\377\204\377" "\377\377\377\11ww\220\377\34\34E\377\34\34F\377\35\35G\377\35\35H\377" "\36\36J\377\36\36K\377\"\"P\377\352\352\356\377\203\377\377\377\377\6" "\214\214\245\377\37\37O\377\36\36O\377\37\37O\377<>s\377@@u\377" "BBx\377DDy\377CCz\377DDz\377EE{\377\204FF}\377\202GG~\377\1FF}\377\202" "GG~\377\202HH~\377\10FF}\377II\177\377KK\201\377LL\201\377MM\203\377" "NN\204\377LL\202\377LL\201\377\202MM\203\377\10NN\204\377QQ\206\377Q" "Q\207\377RR\210\377QQ\207\377RR\210\377TT\211\377UU\212\377\204VV\213" "\377\2SS\210\377UU\212\377\202WW\214\377\2[[\217\377[[\220\377\203\\" "\\\221\377\2]]\221\377__\223\377\202``\224\377\202]]\221\377\3^^\222" "\377aa\224\377bb\226\377\202dd\230\377\7cc\227\377dd\230\377ee\230\377" "ff\231\377ee\230\377ff\232\377gg\233\377\202hh\233\377\3ii\234\377kk" "\236\377ll\237\377\202nn\241\377\203oo\241\377\11nn\241\377pp\242\377" "pp\243\377ss\245\377uu\247\377uu\250\377tt\246\377uu\247\377ww\251\377" "\202zz\253\377\5{{\255\377}}\256\377~~\257\377\177\177\260\377}}\256" "\377\204\177\177\260\377\4\200\200\261\377\203\203\264\377\205\205\265" "\377\206\206\267\377\202\205\205\265\377\202\211\211\271\377\202\213" "\213\273\377\1\216\216\276\377\202\215\215\275\377\5\217\217\276\377" "\214\214\274\377\217\217\276\377\221\221\301\377\224\224\303\377\202" "\225\225\304\377\7\226\226\305\377\225\225\304\377\230\230\307\377\231" "\231\307\377\233\233\312\377\237\237\315\377\240\240\316\377\204\241" "\241\317\377\2\244\244\322\377\245\245\323\377\202\252\252\327\377\5" "\253\253\330\377\254\254\331\377\255\255\332\377\256\256\332\377\255" "\255\332\377\213\6\6B\377\203\7\7C\377\203\7\7B\377\2\7\7A\377\7\7@\377" "\202\7\7\77\377\3\7\7=\377\7\7<\377\272\272\310\377\203\377\377\377\377" "\1WWt\377\204\6\6""0\377\2\6\6""1\377\6\6""2\377\202\6\6""4\377\4\7\7" "5\377\10\10""7\377\32\32F\377\252\252\272\377\204\377\377\377\377\7\261" "\261\277\377\10\10""4\377\11\11""4\377\12\12""5\377\12\12""6\377\12\12" "7\377\12\12""8\377\202\12\12""9\377\2\26\26D\377\360\360\363\377\202" "\377\377\377\377\4\376\376\376\37766Y\377\11\11""4\377\12\12""5\377\203" "\12\12""4\377\3\12\12""5\377uu\215\377\376\376\376\377\205\377\377\377" "\377\5ZZz\377\11\11""9\377\13\13;\377\12\12<\377\12\12=\377\203\12\12" ">\377\2``\201\377\374\374\375\377\204\377\377\377\377\1\374\374\375\377" "\205\377\377\377\377\16\207\207\236\377\14\14<\377\14\14=\377\14\14>" "\377\17\17A\377\20\20B\377\21\21E\377\31\31L\377;;f\377^^\201\377\204" "\204\236\377\251\251\274\377\324\324\335\377\375\375\376\377\217\377" "\377\377\377\10rr\217\377\26\26F\377\26\26G\377\27\27H\377\27\27I\377" "\30\30J\377ii\211\377\374\374\375\377\204\377\377\377\377\1\374\374\375" "\377\205\377\377\377\377\3\213\213\242\377\22\22B\377\23\23C\377\202" "\24\24F\377\2\24\24G\377\24\24H\377\202\24\24I\377\4\23\23G\377\22\22" "E\377\22\22C\377\276\276\313\377\203\377\377\377\377\15aa}\377\25\25" "=\377\26\26>\377\27\27\77\377\27\27@\377\30\30B\377\31\31C\377\31\31" "E\377\33\33G\377\33\33H\377\35\35I\377..W\377\261\261\301\377\204\377" "\377\377\377\11\267\267\304\377\33\33D\377\34\34E\377\35\35G\377\35\35" "H\377\36\36I\377\37\37K\377\36\36K\377kk\210\377\203\377\377\377\377" "\6\365\365\367\37700Y\377\36\36L\377\35\35L\377cc\202\377\360\360\363" "\377\204\377\377\377\377\2\345\345\352\377hh\207\377\203\40\40N\377\2" "\"\"O\377\325\325\336\377\203\377\377\377\377\1yy\225\377\202##P\377" "\202%%R\377\1((U\377\202((V\377\1\312\312\325\377\203\377\377\377\377" "\2\251\251\274\377))W\377\204**Y\377\3))X\377cc\205\377\362\362\365\377" "\205\377\377\377\377\14yy\226\377**X\377**Y\377++Z\377--\\\37766d\377" "UU|\377tt\224\377\223\223\253\377\265\265\305\377\331\331\342\377\375" "\375\376\377\217\377\377\377\377\12\206\206\242\37788g\37799i\377::l" "\377<>q\377\77\77s\377@@u\377CCx\377FF|\377\202EE|\377\3GG~\377" "FF}\377HH~\377\203JJ\200\377\202II\177\377\2LL\201\377KK\201\377\204" "LL\201\377\1LL\202\377\202MM\203\377\202LL\202\377\5LL\201\377LL\202" "\377NN\204\377RR\210\377SS\210\377\206UU\212\377\202VV\213\377\2WW\214" "\377YY\216\377\202XX\215\377\202[[\217\377\203\\\\\221\377\1]]\221\377" "\202__\223\377\202aa\224\377\5``\224\377__\223\377aa\225\377cc\227\377" "dd\230\377\203ee\230\377\20ff\231\377gg\233\377hh\233\377gg\233\377f" "f\231\377gg\233\377ff\232\377hh\233\377kk\236\377nn\241\377pp\243\377" "ss\245\377rr\244\377pp\243\377nn\241\377mm\240\377\202nn\241\377\4tt" "\246\377uu\250\377vv\250\377ww\251\377\202xx\252\377\2zz\253\377{{\254" "\377\202||\256\377\1}}\256\377\202\200\200\261\377\14\201\201\262\377" "\200\200\261\377\202\202\263\377\201\201\262\377\202\202\263\377\201" "\201\262\377\202\202\263\377\205\205\266\377\210\210\270\377\212\212" "\273\377\213\213\273\377\214\214\274\377\202\217\217\276\377\1\213\213" "\273\377\202\215\215\275\377\4\217\217\276\377\221\221\301\377\223\223" "\302\377\222\222\301\377\202\225\225\304\377\2\227\227\306\377\231\231" "\307\377\202\232\232\311\377\16\232\232\310\377\233\233\312\377\235\235" "\313\377\237\237\315\377\243\243\321\377\244\244\321\377\242\242\320" "\377\241\241\317\377\245\245\323\377\250\250\325\377\252\252\327\377" "\247\247\324\377\254\254\331\377\255\255\332\377\202\257\257\333\377" "\202\264\264\340\377\1\264\264\341\377\213\6\6B\377\203\7\7C\377\203" "\7\7B\377\2\7\7A\377\7\7@\377\202\7\7\77\377\3\7\7=\377&&T\377\375\375" "\375\377\202\377\377\377\377\2\350\350\354\377\13\13""5\377\204\6\6""0" "\377\2\6\6""1\377\7\7""2\377\202\7\7""4\377\3\15\15:\377oo\212\377\352" "\352\356\377\204\377\377\377\377\10\277\277\312\377\21\21;\377\11\11" "4\377\11\11""5\377\12\12""5\377\12\12""6\377\12\12""8\377\12\12""9\377" "\202\12\12:\377\1xx\223\377\203\377\377\377\377\4\260\260\276\377\11" "\11""5\377\11\11""4\377\12\12""4\377\202\12\12""3\377\2\13\13""4\377" "\215\215\240\377\206\377\377\377\377\12\307\307\321\377\11\11""6\377" "\11\11""7\377\12\12""9\377\12\12:\377\12\12;\377\12\12<\377\11\11<\377" "QQu\377\374\374\375\377\203\377\377\377\377\5\331\331\340\377RRs\377" "\15\15:\377\31\31D\377\252\252\271\377\203\377\377\377\377\10\320\320" "\331\377\14\14:\377\14\14;\377\14\14<\377\17\17\77\377\17\17@\377\315" "\315\327\377\376\376\376\377\225\377\377\377\377\7\253\253\274\377\26" "\26E\377\26\26F\377\27\27G\377\30\30I\377\\\\\177\377\374\374\375\377" "\203\377\377\377\377\5\334\334\343\377^^}\377\33\33G\377&&P\377\257\257" "\276\377\203\377\377\377\377\7\322\322\332\377\23\23A\377\24\24C\377" "\25\25E\377\26\26G\377\26\26I\377\27\27J\377\202\26\26J\377\4\24\24H" "\377\24\24F\37711\\\377\375\375\376\377\202\377\377\377\377\15\351\351" "\355\377\32\32B\377\24\24=\377\26\26>\377\27\27\77\377\27\27@\377\31" "\31B\377\32\32D\377\32\32F\377\34\34H\377!!M\377{{\225\377\354\354\357" "\377\204\377\377\377\377\12\304\304\316\377##L\377\34\34F\377\35\35G" "\377\36\36G\377\36\36I\377\37\37I\377\37\37K\377\37\37L\377\307\307\323" "\377\203\377\377\377\377\4\233\233\257\377\36\36J\377\40\40K\377\230" "\230\254\377\204\377\377\377\377\4\374\374\375\377\227\227\253\377&&" "P\377\36\36J\377\203\37\37L\377\1WWx\377\203\377\377\377\377\12\367\367" "\371\37799`\377##O\377$$P\377%%Q\377&&R\377''T\377((U\377FFm\377\376" "\376\376\377\203\377\377\377\377\3LLr\377((V\377))V\377\202((V\377\3" "((U\377{{\227\377\374\374\374\377\205\377\377\377\377\7\335\335\344\377" ",,W\377++W\377,,X\377,,Y\377\322\322\334\377\376\376\376\377\225\377" "\377\377\377\13\267\267\307\37777e\37788h\377::k\377>>p\377@@r\377BB" "u\377CCx\377DDy\377FF{\377HH~\377\202II\177\377\202HH~\377\202JJ\200" "\377\4II\177\377JJ\200\377KK\201\377MM\203\377\205LL\202\377\202MM\203" "\377\3LL\202\377NN\204\377QQ\206\377\202QQ\207\377\2SS\210\377UU\212" "\377\202SS\210\377\202RR\210\377\3SS\210\377VV\213\377XX\215\377\202" "YY\216\377\2WW\214\377YY\216\377\202ZZ\216\377\1\\\\\221\377\204]]\221" "\377\3__\223\377aa\224\377``\224\377\204aa\224\377\202cc\227\377\203" "ee\230\377\1gg\233\377\203hh\233\377\1ii\234\377\202hh\233\377\2jj\235" "\377ll\237\377\202nn\241\377\1pp\242\377\202pp\243\377\202pp\242\377" "\4qq\244\377ss\245\377tt\246\377ww\251\377\202vv\250\377\2ww\251\377" "yy\253\377\202{{\255\377\1~~\257\377\202\177\177\260\377\1\200\200\261" "\377\203\201\201\262\377\4\202\202\263\377\203\203\264\377\201\201\262" "\377\204\204\264\377\202\205\205\265\377\1\212\212\272\377\202\212\212" "\273\377\2\213\213\273\377\215\215\275\377\202\220\220\277\377\1\217" "\217\276\377\203\220\220\277\377\4\225\225\304\377\226\226\305\377\231" "\231\307\377\233\233\312\377\202\231\231\307\377\202\233\233\312\377" "\1\236\236\314\377\202\241\241\317\377\2\243\243\321\377\245\245\323" "\377\202\246\246\324\377\7\244\244\322\377\246\246\324\377\254\254\331" "\377\255\255\332\377\252\252\327\377\253\253\330\377\257\257\333\377" "\202\262\262\336\377\1\264\264\340\377\202\264\264\341\377\1\267\267" "\343\377\202\6\6B\377\214\7\7C\377\203\10\10D\377\6\10\10C\377\10\10" "B\377\7\7@\377\7\7\77\377\7\7=\377\207\207\240\377\203\377\377\377\377" "\2\210\210\235\377\10\10""2\377\203\10\10""1\377\6\10\10""2\377\10\10" "3\377\10\10""4\377\24\24\77\377rr\214\377\337\337\345\377\205\377\377" "\377\377\2\240\240\261\377\17\17""9\377\203\12\12""5\377\202\12\12""6" "\377\5\12\12""8\377\12\12""9\377\12\12:\377\16\16=\377\344\344\351\377" "\202\377\377\377\377\10\376\376\376\37766Z\377\11\11""4\377\11\11""3" "\377\12\12""3\377\12\12""2\377\16\16""5\377\243\243\262\377\207\377\377" "\377\377\3GGg\377\11\11""4\377\10\10""5\377\202\11\11""7\377\4\11\11" "8\377\10\10""8\37766]\377\364\364\366\377\203\377\377\377\377\3\262\262" "\301\377\21\21>\377\6\6""4\377\202\6\6""3\377\1\31\31A\377\203\377\377" "\377\377\7\356\356\361\377\12\12""6\377\12\12""8\377\13\13:\377\15\15" "<\377\15\15=\377\207\207\240\377\212\377\377\377\377\22\375\375\375\377" "\351\351\355\377\321\321\330\377\271\271\304\377\237\237\256\377\206" "\206\231\377mm\205\377TTq\377@@b\37711U\377##K\377\34\34H\377\27\27D" "\377\26\26D\377\27\27E\377\27\27F\377CCi\377\365\365\367\377\203\377" "\377\377\377\6\267\267\305\377!!K\377\26\26B\377\25\25@\377\25\25A\377" "''N\377\203\377\377\377\377\7\356\356\361\377\23\23@\377\24\24B\377\25" "\25D\377\25\25F\377\27\27G\377\27\27I\377\203\27\27J\377\2\25\25G\377" "\216\216\246\377\203\377\377\377\377\2\220\220\244\377\25\25>\377\202" "\25\25=\377\7\30\30\77\377\30\30@\377\32\32C\377\32\32D\377&&O\377}}" "\226\377\342\342\347\377\205\377\377\377\377\2\247\247\270\377!!K\377" "\202\34\34F\377\3\35\35G\377\36\36H\377\36\36I\377\202\37\37J\377\1D" "Di\377\203\377\377\377\377\4\374\374\375\37788^\377--T\377\302\302\315" "\377\204\377\377\377\377\2\331\331\340\377JJl\377\202\34\34F\377\1\35" "\35H\377\203\36\36J\377\1\267\267\305\377\203\377\377\377\377\6\232\232" "\256\377\"\"M\377\"\"N\377##O\377&&Q\377&&R\377\202((T\377\1\233\233" "\257\377\203\377\377\377\377\1\306\306\322\377\202))T\377\4**U\377))" "T\377**U\377\227\227\254\377\207\377\377\377\377\3nn\212\377))R\377*" "*U\377\202++W\377\1\226\226\254\377\212\377\377\377\377\31\375\375\376" "\377\354\354\357\377\325\325\334\377\277\277\311\377\251\251\267\377" "\223\223\245\377}}\224\377gg\203\377UUv\377IIl\377==e\37799d\37766b\377" "66d\37788g\377::k\377==o\377@@r\377BBv\377CCx\377DDy\377EE{\377HH}\377" "FF}\377EE|\377\202HH~\377\203LL\201\377\2LL\202\377NN\204\377\202OO\205" "\377\1NN\204\377\203PP\205\377\5QQ\207\377PP\205\377QQ\206\377QQ\207" "\377RR\210\377\202UU\212\377\2VV\213\377WW\214\377\204VV\213\377\3WW" "\214\377ZZ\216\377[[\217\377\202ZZ\216\377\5YY\216\377ZZ\216\377\\\\" "\221\377]]\221\377__\223\377\204aa\225\377\202cc\227\377\10bb\226\377" "aa\224\377``\224\377aa\225\377bb\226\377cc\227\377ee\230\377ff\232\377" "\202gg\233\377\202jj\235\377\2kk\236\377jj\235\377\203ll\237\377\2oo" "\241\377pp\242\377\202pp\243\377\1rr\244\377\202uu\247\377\203tt\246" "\377\7uu\247\377vv\250\377zz\253\377ww\251\377yy\253\377{{\254\377||" "\256\377\202\200\200\261\377\203\201\201\262\377\2\200\200\261\377\202" "\202\263\377\202\205\205\265\377\1\205\205\266\377\202\206\206\267\377" "\2\212\212\272\377\212\212\273\377\202\211\211\271\377\6\214\214\274" "\377\217\217\276\377\220\220\277\377\220\220\300\377\221\221\301\377" "\220\220\300\377\203\225\225\304\377\202\226\226\305\377\1\225\225\304" "\377\202\232\232\311\377\202\233\233\312\377\202\236\236\314\377\7\240" "\240\316\377\244\244\321\377\245\245\323\377\250\250\325\377\246\246" "\324\377\247\247\324\377\251\251\326\377\202\254\254\331\377\13\257\257" "\334\377\256\256\332\377\261\261\336\377\262\262\336\377\265\265\341" "\377\264\264\341\377\262\262\336\377\267\267\343\377\265\265\341\377" "\267\267\343\377\271\271\344\377\202\6\6B\377\214\7\7C\377\202\10\10" "D\377\202\10\10C\377\5\10\10A\377\7\7@\377\7\7\77\377\13\13@\377\346" "\346\353\377\202\377\377\377\377\5\375\375\375\377&&M\377\10\10""2\377" "\10\10""1\377\10\10""0\377\202\10\10""1\377\3<<]\377\231\231\253\377" "\360\360\362\377\205\377\377\377\377\2\354\354\357\377\\\\y\377\204\12" "\12""5\377\202\12\12""6\377\5\12\12""8\377\12\12""9\377\12\12:\377\13" "\13:\377cc\201\377\203\377\377\377\377\7\262\262\300\377\12\12""5\377" "\12\12""4\377\12\12""3\377\12\12""2\377\22\22""9\377\266\266\302\377" "\207\377\377\377\377\11\300\300\312\377\12\12""3\377\11\11""3\377\11" "\11""4\377\11\11""5\377\10\10""6\377\12\12""8\377\27\27D\377\335\335" "\344\377\203\377\377\377\377\4\262\262\300\377\14\14""9\377\7\7""4\377" "\6\6""3\377\202\6\6""2\377\2\7\7""2\377\355\355\360\377\202\377\377\377" "\377\7\371\371\372\377\12\12""6\377\12\12""7\377\13\13""9\377\15\15;" "\377\15\15<\377NNr\377\204\377\377\377\377\1\371\371\372\377\203\377" "\377\377\377\3\327\327\335\37711R\377\24\24""8\377\202\17\17""4\377\16" "\20\20""4\377\20\20""5\377\21\21""7\377\21\21""9\377\22\22:\377\24\24" "=\377\24\24>\377\25\25@\377\26\26B\377\26\26C\377\27\27D\377\27\27E\377" "%%P\377\337\337\346\377\203\377\377\377\377\10\267\267\304\377\33\33" "F\377\27\27B\377\27\27A\377\26\26A\377\26\26@\377\26\26\77\377\356\356" "\361\377\202\377\377\377\377\14\371\371\372\377\22\22>\377\23\23@\377" "\23\23A\377\24\24D\377\25\25E\377\25\25F\377\25\25G\377\25\25H\377\25" "\25G\377\27\27H\377\347\347\354\377\202\377\377\377\377\12\375\375\376" "\37722W\377\24\24=\377\24\24<\377\25\25=\377\27\27>\377\27\27\77\377" "IIi\377\240\240\261\377\361\361\363\377\205\377\377\377\377\3\355\355" "\361\377ii\206\377\36\36I\377\203\35\35H\377\3\36\36I\377\37\37I\377" "\37\37J\377\202\40\40K\377\1\242\242\264\377\203\377\377\377\377\3\264" "\264\302\377@@c\377\341\341\346\377\204\377\377\377\377\2\237\237\260" "\377##K\377\202\34\34E\377\2\33\33E\377\36\36H\377\202\37\37I\377\2;" ";`\377\374\374\375\377\202\377\377\377\377\5\367\367\371\37733Z\377\"" "\"L\377\"\"M\377##N\377\202&&Q\377\3))U\377--X\377\354\354\360\377\203" "\377\377\377\377\1hh\206\377\202((R\377\3((Q\377--U\377\264\264\302\377" "\207\377\377\377\377\7\324\324\333\377''O\377((P\377**R\377**S\377**" "T\377cc\203\377\204\377\377\377\377\1\372\372\373\377\203\377\377\377" "\377\3\333\333\341\377GGe\377,,N\377\202((J\377\30))K\377**M\377++O\377" ",,P\377--S\377..V\37700Y\37722]\37755`\37777d\37799g\377;;j\377<>o\377AAs\377BBv\377FFz\377II}\377HH}\377JJ\177\377JJ\200\377HH~\377" "JJ\200\377KK\201\377\203LL\202\377\2MM\203\377NN\204\377\202MM\203\377" "\3NN\204\377QQ\206\377RR\210\377\202SS\210\377\202RR\210\377\202SS\210" "\377\202VV\213\377\204WW\214\377\202YY\216\377\3ZZ\216\377XX\215\377" "[[\217\377\202XX\215\377\202\\\\\221\377\1^^\222\377\202aa\224\377\2" "aa\225\377bb\226\377\202cc\227\377\10dd\230\377ee\230\377cc\227\377a" "a\225\377bb\226\377ee\230\377gg\233\377hh\233\377\202ii\234\377\4hh\233" "\377ii\234\377kk\236\377hh\233\377\202jj\235\377\1ll\237\377\202nn\241" "\377\2pp\242\377ss\245\377\202tt\246\377\20uu\247\377tt\246\377uu\247" "\377tt\246\377uu\250\377xx\252\377yy\253\377}}\256\377||\256\377zz\253" "\377||\256\377\177\177\260\377\200\200\261\377\201\201\262\377\202\202" "\263\377\205\205\265\377\202\205\205\266\377\204\205\205\265\377\4\205" "\205\266\377\210\210\270\377\212\212\273\377\213\213\273\377\202\217" "\217\276\377\1\216\216\276\377\202\220\220\277\377\3\220\220\300\377" "\223\223\302\377\224\224\303\377\203\225\225\304\377\1\226\226\305\377" "\202\232\232\310\377\10\233\233\312\377\234\234\313\377\237\237\315\377" "\237\237\316\377\240\240\316\377\243\243\321\377\244\244\322\377\245" "\245\323\377\202\251\251\326\377\3\252\252\327\377\247\247\324\377\252" "\252\327\377\202\255\255\332\377\3\257\257\334\377\264\264\340\377\264" "\264\341\377\202\266\266\342\377\202\267\267\343\377\2\270\270\344\377" "\272\272\346\377\203\271\271\344\377\202\6\6B\377\206\7\7C\377\204\6" "\6B\377\202\7\7C\377\202\10\10D\377\6\10\10C\377\10\10B\377\10\10A\377" "\7\7@\377\7\7>\377UUy\377\203\377\377\377\377\7\272\272\306\377\7\7""2" "\377\10\10""1\377\11\11""1\37777X\377\205\205\231\377\331\331\340\377" "\206\377\377\377\377\3\370\370\371\377\221\221\244\377\32\32C\377\202" "\12\12""6\377\203\12\12""7\377\202\12\12""8\377\1\12\12""9\377\202\12" "\12:\377\2\14\14;\377\320\320\331\377\203\377\377\377\377\2<<]\377\13" "\13""5\377\202\13\13""3\377\2\32\32\77\377\310\310\320\377\203\377\377" "\377\377\2\366\366\370\377\370\370\371\377\203\377\377\377\377\4HHf\377" "\13\13""2\377\13\13""3\377\12\12""3\377\202\12\12""5\377\2\12\12""7\377" "\253\253\273\377\203\377\377\377\377\5\314\314\325\377\22\22=\377\11" "\11""6\377\11\11""5\377\10\10""4\377\202\6\6""1\377\2\10\10""1\377\364" "\364\366\377\202\377\377\377\377\14\351\351\355\377\12\12""5\377\12\12" "6\377\14\14""8\377\16\16;\377\16\16<\377\27\27E\377||\225\377[[{\377" ";;a\377\31\31E\377\312\312\323\377\203\377\377\377\377\2ff\177\377\20" "\20""5\377\203\21\21""5\377\11\22\22""6\377\22\22""7\377\22\22""9\377" "\23\23:\377\23\23<\377\24\24=\377\24\24\77\377\26\26A\377\26\26B\377" "\202\26\26C\377\2\27\27D\377\260\260\277\377\203\377\377\377\377\11\317" "\317\330\377\37\37J\377\27\27B\377\27\27A\377\26\26@\377\25\25>\377\26" "\26>\377\25\25=\377\365\365\367\377\202\377\377\377\377\10\352\352\356" "\377\23\23=\377\23\23\77\377\25\25A\377\24\24C\377\27\27E\377\27\27G" "\377\25\25F\377\202\25\25G\377\1^^\200\377\203\377\377\377\377\7\276" "\276\312\377\25\25>\377\25\25=\377\24\24<\377BBb\377\214\214\240\377" "\334\334\342\377\206\377\377\377\377\3\371\371\372\377\232\232\255\377" "..U\377\202\37\37I\377\202\36\36I\377\2\37\37I\377\37\37J\377\203!!L" "\377\2++T\377\364\364\366\377\203\377\377\377\377\2\203\203\231\377\357" "\357\362\377\203\377\377\377\377\10\353\353\357\377^^y\377\35\35D\377" "\35\35E\377\36\36F\377\35\35F\377\34\34F\377\37\37I\377\202\40\40J\377" "\1\232\232\255\377\203\377\377\377\377\5\236\236\261\377!!K\377$$M\377" "%%O\377&&P\377\202((S\377\2**U\377pp\215\377\203\377\377\377\377\6\341" "\341\346\377))Q\377''O\377&&N\37711W\377\310\310\322\377\203\377\377" "\377\377\2\374\374\375\377\375\375\376\377\203\377\377\377\377\14bb|" "\377''M\377))O\377))P\377))R\377**T\37744]\377\215\215\245\377qq\216" "\377UUx\37766^\377\320\320\331\377\203\377\377\377\377\2ww\215\377))" "K\377\203((J\377\27))L\377++N\377,,P\377,,R\377..U\37711Y\37733\\\377" "55_\37788d\37799f\377;;h\377<>n\377\77\77q\377AAt\377CCw\377E" "Ey\377HH|\377HH}\377KK\177\377KK\201\377JJ\200\377LL\200\377\204LL\202" "\377\2NN\204\377OO\205\377\202NN\204\377\5PP\205\377QQ\206\377RR\210" "\377TT\211\377RR\210\377\202QQ\206\377\3QQ\207\377SS\210\377WW\214\377" "\205XX\215\377\202ZZ\216\377\2\\\\\221\377ZZ\216\377\203\\\\\221\377" "\202]]\221\377\6__\223\377aa\225\377bb\226\377cc\227\377dd\230\377cc" "\227\377\202ff\232\377\1ff\231\377\202cc\227\377\2gg\233\377ii\234\377" "\203kk\236\377\2mm\240\377kk\236\377\202mm\240\377\12kk\236\377ll\237" "\377kk\236\377mm\240\377pp\242\377tt\246\377uu\250\377xx\252\377vv\250" "\377ww\251\377\203uu\250\377\2xx\252\377zz\253\377\202||\256\377\1}}" "\256\377\202\177\177\260\377\202\200\200\261\377\4\201\201\262\377\203" "\203\264\377\205\205\265\377\206\206\267\377\202\205\205\265\377\2\207" "\207\267\377\211\211\271\377\202\206\206\267\377\2\211\211\271\377\212" "\212\272\377\202\214\214\274\377\202\220\220\277\377\2\222\222\301\377" "\225\225\304\377\202\224\224\303\377\17\221\221\301\377\225\225\304\377" "\226\226\305\377\231\231\307\377\233\233\312\377\234\234\313\377\240" "\240\316\377\236\236\314\377\237\237\316\377\242\242\320\377\243\243" "\321\377\244\244\321\377\246\246\324\377\247\247\324\377\252\252\327" "\377\202\254\254\331\377\5\253\253\330\377\250\250\325\377\254\254\331" "\377\264\264\340\377\263\263\337\377\202\262\262\336\377\3\265\265\341" "\377\264\264\341\377\263\263\337\377\203\270\270\344\377\205\272\272" "\346\377\205\7\7C\377\203\10\10E\377\204\10\10D\377\1\10\10E\377\203" "\10\10D\377\6\10\10C\377\10\10B\377\10\10A\377\11\11@\377\12\12\77\377" "\271\271\307\377\203\377\377\377\377\4qq\212\377]]y\377\237\237\257\377" "\344\344\350\377\207\377\377\377\377\3\363\363\365\377\222\222\245\377" "$$K\377\204\12\12""6\377\1\12\12""7\377\202\12\12""8\377\1\12\12""9\377" "\204\12\12:\377\1KKn\377\203\377\377\377\377\6\270\270\304\377\13\13" "5\377\13\13""3\377\13\13""2\377\37\37C\377\321\321\330\377\203\377\377" "\377\377\2\352\352\355\377uu\212\377\203\377\377\377\377\10\310\310\321" "\377\13\13""1\377\14\14""2\377\14\14""3\377\13\13""3\377\13\13""4\377" "\12\12""5\377]]z\377\203\377\377\377\377\3\357\357\362\377%%M\377\7\7" "4\377\202\7\7""3\377\4\6\6""2\377\6\6""1\377\6\6""0\377\16\16""6\377" "\203\377\377\377\377\13\326\326\335\377\11\11""3\377\11\11""4\377\12" "\12""6\377\12\12""7\377\13\13""9\377\14\14:\377\16\16=\377\16\16<\377" "\16\16;\377AAd\377\203\377\377\377\377\3\345\345\351\377\23\23""7\377" "\20\20""5\377\202\21\21""5\377\12\22\22""6\377\22\22""7\377\22\22""9" "\377\23\23:\377\23\23<\377\24\24=\377\24\24>\377\25\25@\377\26\26C\377" "\27\27C\377\202\27\27D\377\1ee\203\377\203\377\377\377\377\5\360\360" "\362\37722X\377\27\27B\377\26\26A\377\26\26@\377\202\26\26\77\377\2\26" "\26>\377\33\33C\377\203\377\377\377\377\3\330\330\337\377\24\24=\377" "\24\24\77\377\202\26\26B\377\2\27\27F\377\30\30G\377\203\26\26G\377\1" "\274\274\312\377\203\377\377\377\377\4yy\221\377ff\201\377\244\244\263" "\377\345\345\352\377\207\377\377\377\377\4\364\364\366\377\232\232\255" "\37755[\377\36\36I\377\203\37\37J\377\203\40\40K\377\1!!L\377\202\"\"" "M\377\2!!M\377}}\226\377\203\377\377\377\377\2\372\372\373\377\364\364" "\366\377\203\377\377\377\377\14\320\320\327\37733T\377\34\34B\377\35" "\35D\377\36\36E\377\36\36F\377\35\35F\377\36\36G\377\36\36H\377\37\37" "I\377**R\377\362\362\364\377\202\377\377\377\377\12\373\373\373\377:" ":_\377!!J\377##L\377$$N\377%%O\377''R\377))T\377**U\377\310\310\323\377" "\203\377\377\377\377\5\204\204\233\377&&M\377&&L\37766Y\377\322\322\332" "\377\203\377\377\377\377\2\365\365\366\377\227\227\251\377\203\377\377" "\377\377\10\321\321\331\377$$H\377&&K\377''M\377''N\377))Q\377++S\377" "--V\377\20300Y\377\1ZZz\377\203\377\377\377\377\2\350\350\354\377,,O" "\377\202))K\377\24**L\377))L\377**M\377++P\377--R\377..T\37700X\3774" "4\\\37766`\37777c\37799f\377::h\377<\377\25\25\77\377\26\26A\377\202\26\26C\377\4\27\27D\377\30\30" "E\377**T\377\355\355\360\377\203\377\377\377\377\11ee\202\377\27\27B" "\377\27\27A\377\30\30B\377\30\30A\377\27\27A\377\26\26\77\377\26\26>" "\377\77\77`\377\203\377\377\377\377\3\272\272\305\377\25\25>\377\25\25" "@\377\202\26\26B\377\2\30\30E\377\30\30G\377\202\27\27F\377\2""22\\\377" "\375\375\376\377\202\377\377\377\377\1\367\367\370\377\211\377\377\377" "\377\7\334\334\342\377\201\201\230\377))Q\377\35\35G\377\36\36I\377\37" "\37J\377\40\40K\377\203!!L\377\202!!M\377\5!!N\377\"\"N\377##O\377##" "N\377\333\333\342\377\207\377\377\377\377\14\253\253\270\377\"\"E\377" "\33\33@\377\34\34B\377\36\36D\377\36\36F\377\37\37G\377\36\36G\377\36" "\36H\377\37\37I\377\40\40I\377\177\177\227\377\203\377\377\377\377\1" "\257\257\275\377\202##K\377\6$$N\377%%O\377&&P\377((R\377))S\377KKn\377" "\203\377\377\377\377\5\364\364\366\37722V\377&&L\377>>_\377\336\336\343" "\377\203\377\377\377\377\3\351\351\354\377LLi\377\276\276\310\377\203" "\377\377\377\377\10kk\202\377%%G\377''J\377((M\377))O\377++R\377,,U\377" "..W\377\20211Z\377\2""00Y\377\264\264\302\377\203\377\377\377\377\27" "\221\221\244\377++N\377,,N\377**M\377++N\377--P\377..R\377//U\37711W" "\37733Y\37744\\\37766`\37777c\37788d\377::g\377;;j\377>>m\377@@p\377" "DDt\377FFx\377GGz\377HH|\377KK\177\377\203MM\202\377\4KK\201\377OO\204" "\377QQ\205\377QQ\206\377\202RR\210\377\1TT\211\377\205RR\210\377\202" "TT\211\377\6SS\210\377VV\213\377WW\214\377XX\215\377ZZ\216\377[[\217" "\377\202ZZ\216\377\4[[\217\377ZZ\216\377\\\\\221\377]]\221\377\202__" "\223\377\1^^\222\377\202]]\221\377\202``\224\377\1dd\230\377\202gg\233" "\377\3ff\232\377hh\233\377gg\233\377\203hh\233\377\6ff\231\377ff\232" "\377gg\233\377hh\233\377ii\234\377ll\237\377\202nn\241\377\7pp\242\377" "pp\243\377ss\245\377qq\244\377uu\247\377tt\246\377ss\245\377\202uu\247" "\377\4vv\250\377xx\252\377zz\253\377yy\253\377\203{{\254\377\1}}\256" "\377\203\177\177\260\377\202~~\257\377\202\202\202\263\377\4\206\206" "\267\377\207\207\267\377\210\210\270\377\212\212\272\377\202\212\212" "\273\377\204\213\213\273\377\3\217\217\276\377\220\220\300\377\221\221" "\301\377\204\225\225\304\377\202\230\230\307\377\2\227\227\306\377\232" "\232\311\377\203\233\233\312\377\202\237\237\316\377\202\241\241\317" "\377\2\244\244\321\377\246\246\324\377\202\247\247\324\377\202\252\252" "\327\377\11\254\254\331\377\256\256\332\377\257\257\333\377\254\254\331" "\377\256\256\332\377\264\264\340\377\265\265\341\377\263\263\337\377" "\262\262\336\377\202\267\267\343\377\3\270\270\344\377\272\272\346\377" "\271\271\345\377\203\272\272\346\377\7\271\270\343\377\234\227\255\377" "xlg\377UC\40\377T=\13\377fI\11\377aF\12\377\205\7\7C\377\210\10\10E\377" "\202\10\10D\377\6\10\10C\377\10\10B\377\11\11B\377\11\11A\377\11\11\77" "\377\207\207\240\377\203\377\377\377\377\2\200\200\226\377\332\332\341" "\377\205\377\377\377\377\5\353\353\356\377\232\232\253\377CCc\377\11" "\11""4\377\11\11""5\377\202\12\12""6\377\202\12\12""7\377\202\12\12""8" "\377\2\12\12""9\377\13\13:\377\202\13\13;\377\203\14\14=\377\3\15\15" "=\37733[\377\376\376\376\377\202\377\377\377\377\5\302\302\315\377\15" "\15""6\377\14\14""4\377((J\377\335\335\342\377\203\377\377\377\377\4" "\320\320\327\377\37\37@\377--L\377\375\375\375\377\202\377\377\377\377" "\10\333\333\340\377\15\15""0\377\13\13/\377\14\14""0\377\14\14""2\377" "\14\14""3\377\14\14""5\377\236\236\256\377\203\377\377\377\377\3\260" "\260\276\377\14\14""6\377\13\13""6\377\202\12\12""6\377\2\12\12""5\377" "\11\11""4\377\202\11\11""3\377\1ff\177\377\203\377\377\377\377\4\204" "\204\230\377\11\11""3\377\11\11""4\377\13\13""6\377\202\14\14""8\377" "\1\16\16:\377\202\16\16;\377\2&&N\377\371\371\372\377\202\377\377\377" "\377\3\370\370\371\377##F\377\20\20""6\377\202\22\22""7\377\11\22\22" "8\377\23\23:\377\24\24;\377\25\25=\377\26\26\77\377\26\26A\377\27\27" "B\377\27\27C\377\27\27D\377\203\30\30E\377\1\243\243\265\377\203\377" "\377\377\377\3\264\264\302\377\30\30C\377\30\30B\377\202\31\31B\377\203" "\30\30A\377\2\30\30@\377nn\207\377\203\377\377\377\377\7\213\213\237" "\377\26\26\77\377\25\25@\377\25\25A\377\26\26B\377\30\30E\377\31\31G" "\377\202\30\30G\377\1\216\216\245\377\203\377\377\377\377\2\205\205\233" "\377\334\334\342\377\205\377\377\377\377\12\354\354\357\377\241\241\261" "\377QQo\377\34\34E\377\35\35G\377\36\36H\377\37\37I\377\37\37J\377\40" "\40K\377!!M\377\202\"\"N\377\1\"\"O\377\204##P\377\2$$Q\377\\\\}\377" "\207\377\377\377\377\1\206\206\231\377\202\33\33\77\377\5\33\33@\377" "\35\35B\377\36\36E\377\37\37F\377\37\37H\377\202\40\40I\377\3!!K\377" "##M\377\341\341\346\377\203\377\377\377\377\5LLn\377$$M\377$$N\377%%" "N\377&&O\377\202((R\377\2))R\377\243\243\265\377\203\377\377\377\377" "\4\242\242\262\377''L\377CCb\377\344\344\351\377\203\377\377\377\377" "\4\333\333\340\377==[\377JJf\377\376\376\376\377\202\377\377\377\377" "\1\342\342\346\377\202$$F\377\6''K\377))N\377))P\377++R\377--V\377//" "X\377\20211Z\377\2CCh\377\372\372\373\377\202\377\377\377\377\30\370" "\370\372\377==_\377--O\377,,O\377++O\377,,P\377..R\377//T\37711X\377" "33[\37744\\\37766_\37777c\37799e\377::g\377>>l\377@@o\377AAq\377DDu\377" "EEw\377HHz\377HH{\377JJ~\377LL\200\377\202MM\202\377\202LL\202\377\1" "QQ\205\377\202QQ\207\377\2RR\210\377SS\210\377\202TT\211\377\2SS\210" "\377VV\213\377\202WW\214\377\1YY\216\377\204WW\214\377\2ZZ\216\377[[" "\217\377\202]]\221\377\1\\\\\221\377\202]]\221\377\203^^\222\377\4aa" "\224\377__\223\377``\224\377aa\225\377\202cc\227\377\2ff\231\377gg\233" "\377\202ff\232\377\13hh\233\377ii\234\377jj\235\377kk\236\377hh\233\377" "gg\233\377jj\235\377ll\237\377nn\241\377oo\241\377pp\242\377\202nn\241" "\377\2pp\242\377nn\241\377\202pp\243\377\203tt\246\377\2xx\252\377yy" "\253\377\203{{\254\377\203zz\253\377\7{{\254\377~~\257\377\200\200\261" "\377\203\203\264\377\202\202\263\377\204\204\264\377\203\203\264\377" "\202\205\205\265\377\202\207\207\267\377\5\212\212\273\377\213\213\273" "\377\212\212\273\377\216\216\276\377\217\217\276\377\202\213\213\273" "\377\4\212\212\273\377\217\217\276\377\222\222\301\377\223\223\302\377" "\202\225\225\304\377\20\227\227\306\377\230\230\307\377\231\231\307\377" "\230\230\307\377\227\227\306\377\233\233\312\377\235\235\313\377\233" "\233\312\377\237\237\316\377\242\242\320\377\245\245\323\377\243\243" "\321\377\244\244\322\377\245\245\323\377\250\250\325\377\251\251\326" "\377\202\254\254\331\377\16\257\257\333\377\261\261\336\377\260\260\335" "\377\257\257\333\377\255\255\332\377\261\261\336\377\267\267\343\377" "\266\266\342\377\264\264\341\377\266\266\342\377\271\271\345\377\270" "\270\344\377\266\266\342\377\272\272\346\377\202\270\270\344\377\11\240" "\234\265\377ynj\377TB!\377S=\14\377gJ\11\377sR\7\377kM\10\377hK\11\377" "`F\14\377\205\7\7C\377\207\10\10E\377\203\10\10D\377\6\10\10C\377\10" "\10B\377\11\11B\377\11\11@\377\14\14@\377\345\345\352\377\202\377\377" "\377\377\3\373\373\374\377\40\40G\377qq\211\377\202\377\377\377\377\11" "\336\336\343\377\223\223\244\377EEb\377\13\13""4\377\11\11""2\377\11" "\11""3\377\11\11""4\377\12\12""6\377\12\12""7\377\202\13\13""8\377\1" "\13\13""9\377\202\13\13:\377\4\13\13;\377\13\13<\377\13\13=\377\14\14" "=\377\203\15\15>\377\2\17\17\77\377\237\237\262\377\203\377\377\377\377" "\4PPo\377\14\14""5\377((J\377\340\340\344\377\203\377\377\377\377\4\306" "\306\316\377\31\31;\377\13\13.\377\232\232\250\377\203\377\377\377\377" "\4oo\204\377\13\13.\377\13\13/\377\15\15""1\377\202\15\15""3\377\2<<" "\\\377\375\375\375\377\202\377\377\377\377\4\365\365\366\377((N\377\14" "\14""6\377\13\13""6\377\203\12\12""6\377\4\11\11""5\377\11\11""4\377" "\11\11""3\377\236\236\256\377\203\377\377\377\377\7QQn\377\11\11""2\377" "\11\11""3\377\12\12""6\377\13\13""7\377\13\13""8\377\15\15:\377\202\16" "\16;\377\1\205\205\233\377\203\377\377\377\377\3\244\244\263\377\20\20" "7\377\20\20""6\377\202\22\22""8\377\7\23\23""9\377\24\24;\377\24\24=" "\377\26\26@\377\26\26A\377\27\27C\377\27\27D\377\202\30\30E\377\4\31" "\31G\377\30\30F\377FFj\377\375\375\376\377\202\377\377\377\377\3\365" "\365\367\37711X\377\31\31B\377\206\31\31C\377\2\31\31B\377\244\244\264" "\377\203\377\377\377\377\12]]z\377\30\30A\377\26\26@\377\27\27B\377\27" "\27C\377\30\30E\377\30\30F\377\31\31G\377\35\35J\377\347\347\354\377" "\202\377\377\377\377\3\373\373\374\377++P\377xx\217\377\202\377\377\377" "\377\17\340\340\345\377\231\231\252\377OOm\377\32\32A\377\33\33B\377" "\33\33C\377\34\34E\377\36\36G\377\37\37I\377\37\37J\377\40\40K\377\40" "\40L\377##O\377##P\377$$Q\377\204$$R\377\3%%S\377&&R\377\270\270\306" "\377\205\377\377\377\377\3\375\375\376\377ww\214\377\34\34\77\377\202" "\34\34@\377\11\34\34A\377\35\35C\377\36\36F\377\37\37H\377\40\40I\377" "!!K\377\40\40K\377\"\"M\377ff\204\377\203\377\377\377\377\1\305\305\320" "\377\202##K\377\3$$M\377$$N\377%%O\377\202((R\377\2""22Y\377\363\363" "\365\377\202\377\377\377\377\4\374\374\375\377CCc\377FFd\377\350\350" "\354\377\203\377\377\377\377\4\313\313\323\37711P\377\"\"C\377\261\261" "\275\377\203\377\377\377\377\14\204\204\227\377$$E\377%%H\377))L\377" "**O\377++Q\377,,T\377--W\37700Z\37711[\37711Z\377\226\226\253\377\203" "\377\377\377\377\33\257\257\275\377..Q\377--P\377--Q\377..Q\377..S\377" "00V\37722Y\37733[\37744^\37766a\37788d\377<\377\202\15\15\77\377\3\15\15>\377!" "!M\377\366\366\370\377\202\377\377\377\377\4\322\322\332\377\14\14""5" "\377$$G\377\335\335\342\377\203\377\377\377\377\5\301\301\312\377\25" "\25""6\377\13\13.\377\32\32;\377\364\364\366\377\202\377\377\377\377" "\10\361\361\363\377\26\26""8\377\13\13.\377\13\13/\377\15\15""1\377\15" "\15""3\377\16\16""4\377\275\275\310\377\203\377\377\377\377\1\204\204" "\231\377\203\15\15""8\377\1\14\14""6\377\202\13\13""7\377\202\12\12""6" "\377\2\14\14""8\377\350\350\354\377\202\377\377\377\377\2\372\372\373" "\377\27\27\77\377\202\11\11""3\377\1\12\12""6\377\202\12\12""7\377\4" "\14\14""9\377\16\16;\377\23\23\77\377\347\347\353\377\203\377\377\377" "\377\1<<\\\377\202\20\20""7\377\12\23\23""9\377\23\23:\377\24\24;\377" "\25\25=\377\26\26@\377\27\27B\377\30\30D\377\30\30E\377\30\30F\377\31" "\31G\377\202\31\31H\377\2\31\31G\377\300\300\315\377\203\377\377\377" "\377\3\212\212\237\377\31\31C\377\31\31B\377\203\31\31C\377\203\32\32" "E\377\2\34\34E\377\351\351\355\377\202\377\377\377\377\12\373\373\373" "\377''M\377\31\31B\377\27\27A\377\30\30C\377\30\30D\377\30\30E\377\32" "\32H\377\31\31G\377aa\200\377\203\377\377\377\377\6\264\264\302\377\25" "\25>\377\40\40F\377\204\204\230\377\77\77^\377\27\27<\377\202\30\30\77" "\377\13\31\31A\377\33\33C\377\34\34E\377\36\36G\377\37\37I\377\40\40" "K\377!!M\377!!N\377\"\"O\377%%R\377%%S\377\202&&T\377\202&&U\377\4&&" "T\377''T\377==e\377\374\374\374\377\204\377\377\377\377\17\375\375\376" "\377mm\204\377\35\35A\377\35\35@\377\35\35A\377\36\36C\377\35\35C\377" "\36\36E\377\40\40H\377!!J\377!!L\377\"\"M\377!!M\377$$O\377\306\306\321" "\377\203\377\377\377\377\11cc\200\377$$M\377$$L\377$$N\377%%N\377&&P" "\377))R\377**S\377\201\201\230\377\203\377\377\377\377\3\266\266\302" "\377HHg\377\351\351\354\377\203\377\377\377\377\5\277\277\310\377**I" "\377!!B\377\77\77Z\377\374\374\375\377\202\377\377\377\377\15\366\366" "\367\37722P\377$$G\377((J\377))M\377++P\377,,S\377..V\377//X\37722\\" "\37733]\37777`\377\352\352\356\377\203\377\377\377\377\3UUr\377..R\377" "..Q\377\202..R\377\22""00U\37722X\37744[\37744^\37766a\377;;e\377==i" "\377\77\77l\377AAo\377AAp\377BBr\377EEt\377FFv\377GGy\377II|\377MM\200" "\377NN\202\377OO\202\377\202PP\205\377\202QQ\207\377\1SS\207\377\202" "RR\210\377\2TT\211\377VV\213\377\206WW\214\377\5ZZ\216\377YY\216\377" "WW\214\377ZZ\216\377[[\217\377\202]]\221\377\1__\223\377\202]]\221\377" "\1^^\222\377\202aa\224\377\202ff\232\377\1dd\230\377\202cc\227\377\2" "ee\230\377ff\232\377\203jj\235\377\1hh\233\377\203ii\234\377\4kk\236" "\377ii\234\377jj\235\377mm\240\377\202nn\241\377\1pp\242\377\202pp\243" "\377\1tt\246\377\203ss\245\377\1uu\247\377\202tt\246\377\202yy\253\377" "\202||\256\377\202}}\256\377\2\200\200\261\377\201\201\262\377\202\202" "\202\263\377\202\203\203\264\377\16\204\204\264\377\203\203\264\377\205" "\205\265\377\210\210\270\377\212\212\273\377\214\214\274\377\215\215" "\275\377\217\217\276\377\216\216\276\377\212\212\273\377\216\216\276" "\377\217\217\276\377\220\220\300\377\221\221\301\377\203\225\225\304" "\377\5\226\226\305\377\232\232\310\377\231\231\307\377\232\232\310\377" "\233\233\312\377\202\234\234\313\377\5\237\237\315\377\241\241\317\377" "\240\240\316\377\242\242\320\377\244\244\322\377\202\243\243\321\377" "\2\246\246\324\377\251\251\326\377\203\254\254\331\377\2\257\257\333" "\377\257\257\334\377\203\262\262\336\377\7\260\260\335\377\262\262\336" "\377\267\267\343\377\270\270\344\377\266\266\342\377\265\265\341\377" "\271\271\345\377\202\270\270\344\377\4\272\272\346\377\244\241\275\377" "\202xz\377\\L2\377\203I6\15\377\11J7\15\377X@\13\377W\77\13\377Q;\14" "\377^O5\377\226\220\242\377\261\260\326\377\247\244\302\377\205|\201" "\377\202\10\10E\377\203\10\10D\377\203\7\7C\377\203\10\10E\377\202\10" "\10D\377\7\12\12E\377\12\12D\377\11\11B\377\11\11A\377\10\10@\377\12" "\12@\377\270\270\307\377\203\377\377\377\377\1MMm\377\202\11\11""3\377" "\1\11\11""2\377\202\11\11""1\377\202\11\11""2\377\12\11\11""3\377\11" "\11""4\377\12\12""6\377\12\12""7\377\13\13""9\377\14\14:\377\15\15;\377" "\15\15<\377\15\15=\377\15\15>\377\202\15\15\77\377\203\16\16@\377\4\17" "\17A\377\16\16A\377\16\16\77\377\203\203\234\377\203\377\377\377\377" "\3cc~\377\36\36C\377\327\327\335\377\203\377\377\377\377\2\304\304\314" "\377\25\25""6\377\202\13\13.\377\1zz\215\377\203\377\377\377\377\1\226" "\226\244\377\202\13\13.\377\4\14\14/\377\15\15""2\377\17\17""4\377GG" "e\377\203\377\377\377\377\4\353\353\357\377\27\27@\377\15\15""7\377\15" "\15""8\377\202\14\14""7\377\1\15\15""9\377\202\15\15""8\377\2\14\14""8" "\377CCd\377\203\377\377\377\377\1\274\274\310\377\203\11\11""4\377\6" "\11\11""5\377\12\12""7\377\13\13""8\377\16\16:\377\17\17<\377bb\177\377" "\203\377\377\377\377\2\300\300\313\377\21\21""9\377\202\21\21""8\377" "\10\22\22""9\377\22\22:\377\24\24<\377\26\26\77\377\26\26A\377\27\27" "C\377\30\30E\377\30\30F\377\204\31\31H\377\1NNr\377\203\377\377\377\377" "\2\354\354\360\377$$M\377\204\32\32D\377\1\33\33E\377\203\33\33F\377" "\1OOo\377\203\377\377\377\377\1\300\300\313\377\202\32\32C\377\7\30\30" "B\377\30\30C\377\30\30D\377\30\30E\377\32\32G\377\31\31G\377\275\275" "\312\377\203\377\377\377\377\1WWu\377\202\26\26>\377\203\30\30\77\377" "\16\30\30@\377\31\31A\377\32\32B\377\33\33D\377\35\35F\377\36\36I\377" "\40\40K\377\40\40L\377\"\"O\377\"\"P\377$$R\377%%T\377%%U\377((W\377" "\202((X\377\202((W\377\2''U\377\226\226\254\377\205\377\377\377\377\1" "}}\222\377\203\36\36B\377\12\37\37C\377\40\40E\377\37\37F\377\40\40H" "\377!!K\377\"\"M\377##N\377$$P\377\"\"N\377HHm\377\203\377\377\377\377" "\2\335\335\343\377%%N\377\202$$M\377\6$$N\377%%N\377&&P\377))R\377))" "S\377\333\333\341\377\203\377\377\377\377\2qq\211\377\351\351\355\377" "\203\377\377\377\377\5\265\265\300\377&&F\377\"\"B\377\"\"A\377\235\235" "\253\377\203\377\377\377\377\11\247\247\264\377$$F\377&&H\377((K\377" "**N\377,,R\377..V\37700Y\37733]\377\20266`\377\1{{\227\377\203\377\377" "\377\377\2\311\311\323\37700U\377\20200T\377\27""11U\377//U\37733Y\377" "55\\\37788`\37799c\377;;f\377>>j\377\77\77m\377AAo\377BBq\377BBr\377" "EEu\377HHz\377II|\377NN\201\377NN\202\377PP\203\377QQ\204\377QQ\205\377" "QQ\206\377PP\206\377RR\207\377\202VV\212\377\1VV\213\377\203WW\214\377" "\1XX\215\377\205WW\214\377\1XX\215\377\202[[\217\377\1]]\221\377\202" "__\223\377\2]]\221\377__\223\377\202^^\222\377\2aa\224\377bb\226\377" "\202dd\230\377\203cc\227\377\3ff\232\377gg\233\377jj\235\377\203ll\237" "\377\1mm\240\377\204nn\241\377\4kk\236\377mm\240\377oo\241\377pp\243" "\377\204tt\246\377\202ww\251\377\3xx\252\377yy\253\377{{\254\377\202" "zz\253\377\2||\256\377}}\256\377\205\177\177\260\377\5\201\201\262\377" "\203\203\264\377\205\205\266\377\207\207\267\377\210\210\270\377\203" "\211\211\271\377\14\212\212\273\377\214\214\274\377\215\215\275\377\220" "\220\277\377\222\222\301\377\220\220\300\377\221\221\301\377\224\224" "\303\377\225\225\304\377\223\223\302\377\222\222\301\377\225\225\304" "\377\203\232\232\310\377\4\235\235\313\377\236\236\314\377\234\234\313" "\377\236\236\314\377\202\235\235\313\377\4\241\241\317\377\245\245\323" "\377\244\244\322\377\243\243\321\377\202\252\252\327\377\202\254\254" "\331\377\24\256\256\332\377\257\257\333\377\257\257\334\377\262\262\336" "\377\263\263\337\377\265\265\341\377\266\266\342\377\264\264\341\377" "\265\265\341\377\267\267\343\377\271\271\345\377\272\272\346\377\271" "\271\344\377\266\266\342\377\271\271\344\377\272\272\346\377\254\252" "\314\377\204{\201\377`P8\377J8\20\377\204I6\15\377\5M:\24\377th`\377" "\214\204\215\377ocW\377R@\36\377\202I7\16\377\3SA\40\377ncV\377\222\214" "\232\377\202\10\10E\377\203\10\10D\377\203\7\7C\377\203\10\10E\377\202" "\10\10D\377\7\12\12E\377\12\12D\377\11\11B\377\10\10A\377\10\10\77\377" "&&U\377\375\375\375\377\202\377\377\377\377\2\337\337\345\377\12\12""6" "\377\202\11\11""3\377\203\11\11""2\377\11\12\12""4\377\12\12""5\377\12" "\12""6\377\12\12""7\377\13\13""8\377\14\14:\377\14\14;\377\14\14<\377" "\15\15=\377\202\17\17@\377\202\17\17B\377\205\20\20C\377\3\17\17B\377" "\24\24D\377\347\347\353\377\202\377\377\377\377\3\343\343\350\377\34" "\34C\377\314\314\325\377\203\377\377\377\377\2\307\307\317\377\26\26" "8\377\202\14\14.\377\2\16\16""0\377\340\340\344\377\203\377\377\377\377" "\7""22P\377\14\14/\377\15\15""0\377\15\15""1\377\15\15""2\377\17\17""5" "\377\275\275\310\377\203\377\377\377\377\1{{\221\377\202\15\15""7\377" "\2\15\15""8\377\14\14""7\377\202\15\15""8\377\4\15\15:\377\15\15""9\377" "\14\14""8\377\240\240\261\377\203\377\377\377\377\1oo\210\377\202\11" "\11""4\377\7\11\11""5\377\12\12""6\377\12\12""7\377\13\13""8\377\16\16" ";\377\17\17<\377\311\311\323\377\203\377\377\377\377\14VVs\377\21\21" "9\377\21\21""8\377\21\21""9\377\24\24;\377\24\24<\377\25\25>\377\26\26" "@\377::_\377\30\30D\377\32\32G\377\32\32I\377\204\33\33J\377\1\300\300" "\315\377\203\377\377\377\377\2\201\201\231\377\32\32E\377\203\32\32D" "\377\6\32\32E\377\33\33F\377\34\34F\377\34\34G\377\34\34F\377\246\246" "\266\377\203\377\377\377\377\5xx\220\377\32\32C\377\33\33E\377\32\32" "D\377\32\32E\377\202\32\32F\377\3\32\32G\37744\\\377\375\375\376\377" "\202\377\377\377\377\4\341\341\347\377\31\31B\377\27\27@\377\30\30\77" "\377\202\31\31A\377\20\32\32A\377\32\32B\377\32\32C\377\34\34F\377\36" "\36I\377\37\37J\377\40\40L\377!!N\377\"\"P\377$$R\377$$S\377%%T\377(" "(X\377((Y\377))Y\377))Z\377\202))Y\377\3((X\377--Z\377\354\354\360\377" "\204\377\377\377\377\1\230\230\251\377\204\37\37C\377\6\40\40E\377!!" "G\377\40\40H\377##L\377$$N\377%%P\377\202&&R\377\2$$Q\377\246\246\270" "\377\203\377\377\377\377\2\177\177\230\377''P\377\202&&O\377\5''P\377" "((Q\377))R\377++S\377__}\377\203\377\377\377\377\2\341\341\346\377\345" "\345\351\377\203\377\377\377\377\6\260\260\273\377''E\377$$C\377##C\377" "--L\377\362\362\364\377\203\377\377\377\377\14KKf\377%%G\377((J\377*" "*N\377,,Q\377..U\37700X\37733]\37755_\37777b\37766a\377\322\322\333\377" "\203\377\377\377\377\1pp\213\377\20233X\377\1""33W\377\20233X\377\15" "55\\\37777^\377XXz\377::d\377<\377\206\206\240\377\203\377\377\377\377\2~~\226\377" "\11\11""5\377\202\11\11""4\377\202\11\11""3\377\13\11\11""4\377\12\12" "5\377\12\12""7\377\13\13""8\377\13\13""9\377\13\13:\377\14\14<\377\14" "\14=\377\14\14>\377\15\15\77\377\17\17B\377\202\20\20C\377\1\20\20D\377" "\203\20\20E\377\4\20\20D\377\20\20C\377\17\17B\377ee\204\377\203\377" "\377\377\377\2\202\202\227\377\301\301\314\377\203\377\377\377\377\3" "\313\313\323\377\27\27""9\377\13\13.\377\202\14\14.\377\1UUn\377\203" "\377\377\377\377\1\301\301\311\377\202\16\16""1\377\4\16\16""2\377\16" "\16""3\377\17\17""4\37777V\377\203\377\377\377\377\2\357\357\362\377" "\32\32B\377\202\20\20:\377\1\21\21;\377\202\17\17;\377\203\16\16;\377" "\2\35\35G\377\366\366\367\377\202\377\377\377\377\12\371\371\372\377" "\"\"I\377\13\13""6\377\11\11""5\377\12\12""6\377\12\12""7\377\14\14""8" "\377\14\14""9\377\16\16;\377\77\77c\377\203\377\377\377\377\2\333\333" "\342\377\22\22;\377\202\21\21""9\377\202\22\22:\377\13\23\23;\377\34" "\34D\377\234\234\256\377\376\376\376\377\227\227\253\377\32\32H\377\33" "\33I\377\33\33J\377\34\34J\377\33\33J\377AAg\377\203\377\377\377\377" "\3\360\360\363\377$$M\377\33\33E\377\202\32\32E\377\202\33\33F\377\203" "\34\34G\377\2**S\377\366\366\370\377\202\377\377\377\377\2\372\372\373" "\377//T\377\202\33\33D\377\3\33\33E\377\34\34F\377\32\32F\377\202\32" "\32G\377\1\215\215\244\377\203\377\377\377\377\22\207\207\235\377\30" "\30A\377\27\27A\377\30\30@\377\26\26\77\377\30\30@\377\31\31B\377\32" "\32D\377\33\33E\377\36\36J\377\40\40K\377!!N\377\"\"P\377##R\377$$T\377" "%%U\377%%V\377''X\377\202**[\377\202,,^\377\4,,]\377++\\\377++Z\377u" "u\224\377\204\377\377\377\377\2\310\310\322\377$$I\377\203!!F\377\7\"" "\"G\377\"\"I\377##K\377##L\377$$O\377''R\377((T\377\202((U\377\2""33" "^\377\366\366\370\377\202\377\377\377\377\3\360\360\363\37700X\377((" "Q\377\202((P\377\5((Q\377))R\377))S\377++T\377\271\271\306\377\207\377" "\377\377\377\3\255\255\271\377%%D\377$$C\377\202##C\377\1\201\201\223" "\377\203\377\377\377\377\14\313\313\323\377&&G\377''I\377**M\377++P\377" "--S\377//W\37711Z\37744^\37766`\37777c\377__\201\377\203\377\377\377" "\377\2\341\341\347\37766[\377\20244Y\377\25""44X\37733X\37744Z\377==" "b\377\252\252\273\377\376\376\376\377\247\247\272\377==i\377AAn\377B" "Bp\377DDs\377GGv\377HHy\377KK|\377LL\177\377MM\200\377PP\203\377QQ\204" "\377TT\210\377UU\211\377VV\212\377\202VV\213\377\1WW\213\377\203WW\214" "\377\3[[\217\377[[\220\377\\\\\221\377\205]]\221\377\5\\\\\221\377]]" "\221\377\\\\\221\377]]\221\377aa\225\377\203dd\230\377\10cc\227\377e" "e\230\377dd\230\377ff\231\377ii\234\377hh\233\377gg\233\377ff\231\377" "\202hh\233\377\3jj\235\377ll\237\377nn\241\377\202ll\237\377\3nn\241" "\377pp\242\377qq\244\377\202pp\243\377\3ss\245\377tt\246\377uu\247\377" "\203vv\250\377\13yy\253\377vv\250\377ww\251\377vv\250\377yy\253\377w" "w\251\377{{\254\377}}\256\377\177\177\260\377\202\202\263\377\203\203" "\264\377\203\202\202\263\377\6\204\204\264\377\205\205\265\377\206\206" "\267\377\207\207\267\377\211\211\271\377\210\210\270\377\202\211\211" "\271\377\10\215\215\275\377\220\220\300\377\221\221\301\377\222\222\301" "\377\223\223\302\377\220\220\300\377\221\221\301\377\224\224\303\377" "\202\225\225\304\377\2\227\227\306\377\232\232\311\377\202\233\233\312" "\377\1\237\237\315\377\202\236\236\314\377\10\237\237\316\377\243\243" "\321\377\241\241\317\377\243\243\321\377\247\247\324\377\246\246\324" "\377\247\247\324\377\252\252\327\377\202\253\253\330\377\3\254\254\331" "\377\260\260\335\377\257\257\334\377\202\262\262\336\377\202\264\264" "\340\377\203\270\270\344\377\2\264\264\340\377\266\266\342\377\202\271" "\271\345\377\5\266\266\342\377\256\254\321\377\216\207\223\377hZH\377" "M;\25\377\205I6\15\377\20K8\20\377\177vv\377\252\247\307\377\232\225" "\251\377vkd\377VF'\377J8\20\377I6\15\377M;\25\377aR<\377\204{\177\377" "\245\242\276\377\235\230\257\377]N5\377H5\15\377\11\11E\377\204\13\13" "G\377\205\12\12F\377\203\12\12E\377\6\12\12D\377\12\12C\377\10\10A\377" "\11\11@\377\14\14A\377\344\344\352\377\202\377\377\377\377\3\373\373" "\374\377!!I\377\12\12""5\377\203\11\11""4\377\10\11\11""5\377\12\12""6" "\377\13\13""8\377\13\13""9\377\15\15;\377\15\15<\377\15\15=\377\15\15" ">\377\202\16\16@\377\2\16\16A\377\20\20D\377\202\20\20E\377\203\20\20" "F\377\202\20\20E\377\3\20\20C\377\17\17B\377\315\315\327\377\202\377" "\377\377\377\2\366\366\367\377\301\301\314\377\203\377\377\377\377\2" "\323\323\331\377\33\33<\377\202\13\13.\377\202\14\14.\377\1\272\272\304" "\377\203\377\377\377\377\7]]u\377\16\16""1\377\16\16""2\377\16\16""3" "\377\17\17""4\377\17\17""5\377\236\236\256\377\203\377\377\377\377\2" "\214\214\240\377\21\21;\377\202\22\22<\377\1\22\22=\377\202\21\21=\377" "\4\20\20=\377\17\17<\377\16\16<\377xx\221\377\203\377\377\377\377\4\252" "\252\271\377\15\15""8\377\13\13""6\377\12\12""6\377\202\12\12""7\377" "\202\15\15:\377\2\16\16;\377\246\246\267\377\203\377\377\377\377\10r" "r\212\377\21\21:\377\21\21""9\377\22\22""9\377\23\23:\377\24\24<\377" ";;]\377\325\325\334\377\203\377\377\377\377\3\243\243\265\377\34\34I" "\377\33\33I\377\202\34\34K\377\1\243\243\266\377\203\377\377\377\377" "\2\221\221\246\377\33\33F\377\203\33\33E\377\6\34\34F\377\34\34G\377" "\34\34H\377\35\35I\377\36\36J\377\200\200\230\377\203\377\377\377\377" "\1\257\257\276\377\203\33\33D\377\1\33\33E\377\202\34\34G\377\3\32\32" "G\377\35\35I\377\346\346\353\377\202\377\377\377\377\25\373\373\374\377" "..T\377\30\30B\377\30\30A\377\27\27A\377\26\26@\377\27\27A\377\31\31" "C\377\31\31E\377\33\33G\377\36\36K\377\37\37M\377!!P\377##R\377##S\377" "%%V\377&&X\377''Y\377((Z\377++]\377,,^\377\202--`\377\4,,^\377,,]\377" "++[\377\323\323\334\377\203\377\377\377\377\3\357\357\362\377<<_\377" "##I\377\202\"\"G\377\10##I\377##J\377##L\377%%O\377$$O\377''S\377((V" "\377))W\377\202))X\377\1\210\210\241\377\203\377\377\377\377\3\233\233" "\257\377))R\377))Q\377\202((Q\377\1))R\377\202))S\377\2BBe\377\374\374" "\374\377\206\377\377\377\377\2\257\257\273\377''F\377\202$$C\377\3##" "C\377$$D\377\337\337\344\377\203\377\377\377\377\14rr\210\377''I\377" "))L\377++O\377//T\37700W\37711Z\37733]\37777b\37777c\37799d\377\266\266" "\305\377\203\377\377\377\377\2\211\211\237\37744Z\377\20344X\377\3""4" "4Y\377VVv\377\333\333\342\377\203\377\377\377\377\12\262\262\303\377" "DDp\377EEs\377GGu\377IIz\377JJz\377KK}\377NN\201\377OO\202\377SS\206" "\377\202UU\211\377\5VV\212\377WW\214\377VV\213\377WW\213\377XX\215\377" "\202WW\214\377\1YY\216\377\202[[\220\377\1[[\217\377\202\\\\\221\377" "\2]]\221\377^^\222\377\202]]\221\377\6__\223\377``\224\377bb\226\377" "dd\230\377ee\230\377dd\230\377\202cc\227\377\5ff\231\377hh\233\377ii" "\234\377kk\236\377ii\234\377\202hh\233\377\3kk\236\377nn\241\377pp\242" "\377\202pp\243\377\202pp\242\377\202ss\245\377\1tt\246\377\202pp\243" "\377\6rr\244\377uu\247\377uu\250\377vv\250\377xx\252\377yy\253\377\202" "{{\255\377\2}}\256\377\177\177\260\377\202~~\257\377\4\200\200\261\377" "\201\201\262\377\202\202\263\377\205\205\265\377\202\204\204\264\377" "\10\205\205\265\377\205\205\266\377\211\211\271\377\212\212\273\377\213" "\213\273\377\212\212\273\377\213\213\273\377\214\214\274\377\202\217" "\217\276\377\3\220\220\277\377\221\221\301\377\222\222\301\377\202\225" "\225\304\377\7\227\227\306\377\230\230\307\377\233\233\312\377\231\231" "\307\377\226\226\305\377\232\232\310\377\233\233\312\377\202\237\237" "\316\377\1\243\243\321\377\202\244\244\321\377\4\243\243\321\377\244" "\244\321\377\243\243\321\377\250\250\325\377\203\254\254\331\377\25\255" "\255\332\377\262\262\336\377\257\257\333\377\261\261\336\377\262\262" "\336\377\263\263\337\377\264\264\341\377\266\266\342\377\271\271\344" "\377\271\271\345\377\271\271\344\377\266\266\342\377\267\267\343\377" "\271\271\344\377\270\270\344\377\265\264\334\377\223\214\233\377pbQ\377" "YA\21\377ZB\13\377M8\15\377\202I6\15\377\3K8\20\377ZI,\377P>\32\377\202" "I6\15\377\10M;\25\377eWC\377\210\177\205\377\251\246\305\377\265\265" "\335\377\236\231\260\377{pm\377YI,\377\202I6\15\377\4J7\17\377B1\17\377" "-#\17\377\34\30\25\377\202\10\10E\377\203\12\12F\377\203\11\11E\377\202" "\10\10E\377\202\10\10D\377\202\10\10C\377\4\10\10B\377\7\7@\377\11\11" "@\377SSx\377\203\377\377\377\377\1\257\257\276\377\202\7\7""4\377\16" "\7\7""3\377\11\11""4\377\12\12""5\377\12\12""6\377\13\13""8\377\13\13" "9\377\13\13;\377\14\14=\377\17\17@\377\17\17A\377\20\20B\377\20\20C\377" "\20\20D\377\20\20E\377\202\20\20F\377\204\21\21H\377\4\20\20G\377\20" "\20F\377\20\20D\377EEl\377\207\377\377\377\377\2\333\333\340\377\"\"" "B\377\204\14\14/\377\2,,K\377\376\376\376\377\202\377\377\377\377\10" "\352\352\355\377\23\23""6\377\16\16""2\377\16\16""3\377\17\17""4\377" "\17\17""5\377\31\31\77\377\365\365\366\377\202\377\377\377\377\14\374" "\374\375\377++P\377\21\21;\377\22\22<\377\22\22=\377\22\22>\377\21\21" "=\377\21\21>\377\17\17=\377\16\16<\377\23\23@\377\344\344\351\377\203" "\377\377\377\377\2DDe\377\15\15""8\377\202\14\14""7\377\202\14\14""8" "\377\4\16\16:\377\16\16;\377\"\"K\377\370\370\372\377\202\377\377\377" "\377\10\357\357\362\377\27\27\77\377\20\20""8\377\20\20""7\377\21\21" "8\377\22\22""9\377qq\211\377\367\367\370\377\204\377\377\377\377\6\345" "\345\352\377<>b\37744Y\37744X\37733W\37733X\377\205\205\233\377\370\370" "\371\377\204\377\377\377\377\14\351\351\356\377^^\204\377EEs\377FFt\377" "HHy\377KK|\377LL~\377QQ\203\377SS\206\377VV\212\377WW\213\377YY\214\377" "\202WW\214\377\2XX\214\377[[\216\377\202\\\\\221\377\204]]\221\377\1" "\\\\\221\377\202]]\221\377\6__\223\377aa\224\377``\224\377aa\224\377" "aa\225\377bb\226\377\202dd\230\377\202ff\232\377\4ff\231\377ff\232\377" "hh\233\377ii\234\377\202jj\235\377\202kk\236\377\3ll\237\377nn\241\377" "pp\242\377\202qq\244\377\203ss\245\377\1tt\246\377\202rr\244\377\7pp" "\243\377tt\246\377vv\250\377zz\253\377{{\254\377zz\253\377{{\255\377" "\204}}\256\377\202~~\257\377\2\177\177\260\377\203\203\264\377\202\205" "\205\265\377\3\207\207\267\377\206\206\267\377\207\207\267\377\202\205" "\205\265\377\2\212\212\272\377\216\216\276\377\202\220\220\277\377\5" "\220\220\300\377\223\223\302\377\222\222\301\377\221\221\301\377\224" "\224\303\377\202\225\225\304\377\1\227\227\306\377\202\232\232\311\377" "\3\233\233\312\377\235\235\313\377\237\237\315\377\202\237\237\316\377" "\4\241\241\317\377\237\237\316\377\241\241\317\377\245\245\323\377\202" "\247\247\324\377\7\251\251\326\377\254\254\331\377\250\250\325\377\247" "\247\324\377\256\256\332\377\257\257\333\377\254\254\331\377\202\263" "\263\337\377\202\262\262\336\377\202\264\264\341\377%\271\271\344\377" "\271\271\345\377\271\271\344\377\270\270\344\377\264\264\341\377\267" "\267\343\377\265\264\335\377\227\221\244\377j]M\377O=\31\377I6\15\377" "W@\13\377`F\12\377fJ\12\377dI\12\377W\77\13\377J8\20\377\203y|\377\260" "\256\323\377\261\257\324\377\224\215\234\377pcV\377RA\37\377I7\16\377" "I6\15\377M:\24\377`Q:\377\203z~\377\220\210\225\377fXF\377F3\15\3774" "&\14\377\34\25\13\377\15\12\16\377\13\13\20\377\17\15\25\377\10\10E\377" "\204\12\12F\377\203\11\11E\377\1\10\10E\377\203\10\10D\377\6\10\10C\377" "\10\10B\377\10\10A\377\7\7@\377\11\11\77\377\266\266\305\377\203\377" "\377\377\377\2LLm\377\7\7""4\377\202\7\7""3\377\11\11\11""5\377\11\11" "6\377\12\12""7\377\13\13:\377\13\13;\377\14\14=\377\15\15\77\377\20\20" "B\377\20\20D\377\202\20\20E\377\2\20\20F\377\21\21G\377\202\21\21H\377" "\203\21\21I\377\5\22\22H\377\21\21G\377\21\21F\377\20\20D\377\255\255" "\275\377\206\377\377\377\377\4\343\343\350\377))H\377\14\14/\377\16\16" "0\377\203\16\16""1\377\1\212\212\233\377\203\377\377\377\377\1\217\217" "\240\377\202\16\16""3\377\4\17\17""4\377\17\17""5\377\17\17""6\377gg" "\177\377\203\377\377\377\377\5\267\267\304\377\21\21:\377\22\22;\377" "\22\22<\377\23\23>\377\202\23\23\77\377\4\23\23@\377\23\23A\377\22\22" "\77\377oo\212\377\203\377\377\377\377\1\317\317\330\377\202\16\16""9" "\377\1\15\15""9\377\202\15\15:\377\202\16\16:\377\2\16\16;\377\203\203" "\232\377\203\377\377\377\377\6\220\220\243\377\16\16""6\377\21\21""9" "\377\21\21""8\377\"\"E\377\263\263\277\377\205\377\377\377\377\6\252" "\252\272\377''Q\377\33\33H\377\33\33I\377\34\34I\377oo\213\377\203\377" "\377\377\377\1\272\272\307\377\202\33\33E\377\1\34\34E\377\202\35\35" "G\377\202\36\36I\377\3\36\36J\377\36\36K\377vv\222\377\203\377\377\377" "\377\12\322\322\333\377\36\36H\377\36\36G\377\35\35G\377\37\37I\377\37" "\37J\377\40\40K\377\36\36K\377\34\34H\377\273\273\310\377\203\377\377" "\377\377\3\\\\z\377\35\35F\377\34\34E\377\202\34\34F\377\12\32\32F\377" "\34\34H\377\36\36K\377\37\37M\377\40\40O\377!!Q\377##U\377%%W\377''Z" "\377((\\\377\202,,_\377\1--a\377\203..c\377\5//c\37700c\377//a\377.." "_\377\270\270\310\377\203\377\377\377\377\3\323\323\333\377((P\377''" "M\377\202%%L\377\13&&N\377''O\377''Q\377))T\377**V\377))W\377))Y\377" "++Z\377--\\\377,,[\377rr\222\377\203\377\377\377\377\3\270\270\306\377" "))S\377**S\377\203))S\377\202,,T\377\2""00X\377\353\353\357\377\205\377" "\377\377\377\4\277\277\311\377**K\377''G\377&&F\377\202((H\377\2''G\377" "\267\267\302\377\203\377\377\377\377\11\234\234\254\377))L\377**N\377" "..R\37711W\37722Y\37733\\\37744_\37777b\377\202::f\377\1\232\232\260" "\377\203\377\377\377\377\6\243\243\265\37766\\\37755Z\37766Y\377BBc\377" "\276\276\312\377\205\377\377\377\377\14\270\270\310\377MMv\377CCo\377" "GGt\377GGv\377KKz\377OO\177\377QQ\202\377TT\206\377UU\207\377VV\211\377" "VV\212\377\202ZZ\216\377\2XX\215\377[[\217\377\203\\\\\221\377\203^^" "\222\377\203__\223\377\12aa\225\377cc\227\377aa\225\377``\224\377bb\226" "\377cc\227\377gg\233\377ii\234\377hh\233\377gg\233\377\203hh\233\377" "\202kk\236\377\2ll\237\377jj\235\377\202mm\240\377\6nn\241\377pp\242" "\377rr\244\377qq\244\377ss\245\377tt\246\377\202uu\250\377\6vv\250\377" "tt\246\377uu\250\377vv\250\377zz\253\377{{\255\377\203{{\254\377\16|" "|\256\377}}\256\377{{\255\377}}\256\377||\256\377\200\200\261\377\202" "\202\263\377\205\205\265\377\211\211\271\377\212\212\272\377\210\210" "\270\377\211\211\271\377\206\206\267\377\207\207\267\377\202\211\211" "\271\377\2\216\216\276\377\221\221\301\377\202\216\216\276\377\15\220" "\220\277\377\225\225\304\377\226\226\305\377\230\230\307\377\231\231" "\307\377\232\232\311\377\226\226\305\377\230\230\307\377\232\232\311" "\377\233\233\312\377\232\232\310\377\234\234\313\377\240\240\316\377" "\202\241\241\317\377\4\245\245\323\377\244\244\321\377\246\246\324\377" "\252\252\327\377\202\251\251\326\377\2\252\252\327\377\257\257\333\377" "\202\254\254\331\377\1\257\257\333\377\202\260\260\335\377\15\264\264" "\340\377\264\264\341\377\266\266\342\377\267\267\343\377\271\271\344" "\377\270\270\344\377\272\272\346\377\271\271\344\377\270\270\344\377" "\264\263\336\377\225\217\240\377uib\377SB!\377\205I6\15\377\4TC\"\377" "oaP\377YI,\377J7\17\377\202I6\15\377\22SB!\377qdY\377\224\216\236\377" "\262\261\327\377\263\262\330\377\227\221\243\377qeZ\377J8\20\377I6\15" "\377I6\16\377PA\"\3773+\33\377\20\14\12\377\6\5\12\377\10\6\14\377\12" "\7\15\377\14\11\21\377\15\14\23\377\205\12\12F\377\202\11\11E\377\2\13" "\13G\377\12\12F\377\203\12\12E\377\6\12\12D\377\12\12C\377\11\11B\377" "\11\11@\377$$S\377\374\374\375\377\202\377\377\377\377\2\337\337\345" "\377\11\11""7\377\203\11\11""6\377\13\12\12""7\377\12\12""8\377\13\13" ":\377\14\14=\377\15\15\77\377\15\15@\377\15\15A\377\20\20D\377\20\20" "E\377\20\20F\377\21\21G\377\202\21\21H\377\202\21\21I\377\202\21\21J" "\377\6\21\21I\377\22\22H\377\21\21G\377\21\21E\377''U\377\372\372\373" "\377\205\377\377\377\377\2\354\354\357\37733Q\377\202\15\15""0\377\202" "\16\16""1\377\3\16\16""2\377\20\20""4\377\344\344\350\377\203\377\377" "\377\377\2""22Q\377\20\20""5\377\202\20\20""6\377\3\20\20""7\377\21\21" "8\377\276\276\311\377\203\377\377\377\377\13^^z\377\21\21:\377\22\22" ";\377\23\23=\377\24\24>\377\25\25@\377\25\25A\377\24\24A\377\24\24B\377" "\30\30E\377\340\340\346\377\203\377\377\377\377\1UUu\377\202\17\17;\377" "\1\17\17:\377\202\17\17;\377\202\16\16;\377\2\22\22>\377\345\345\352" "\377\202\377\377\377\377\6\374\374\375\377,,P\377\17\17""7\377\21\21" "8\377\77\77^\377\341\341\346\377\204\377\377\377\377\10\353\353\357\377" "^^{\377\30\30C\377\32\32E\377\32\32F\377\33\33G\377\34\34H\377\301\301" "\315\377\203\377\377\377\377\1ee\202\377\202\33\33D\377\10\34\34F\377" "\35\35H\377\36\36I\377\36\36J\377\37\37K\377\37\37L\377##P\377\341\341" "\347\377\203\377\377\377\377\1``~\377\203\37\37I\377\6\40\40J\377\40" "\40K\377!!L\377\40\40L\37777^\377\374\374\375\377\202\377\377\377\377" "\3\342\342\347\377\36\36I\377\35\35H\377\202\34\34F\377\16\35\35H\377" "\33\33H\377\34\34J\377\40\40N\377!!Q\377!!S\377##U\377%%X\377''Z\377" "((\\\377**^\377--a\377--b\377..c\377\202//d\377\6//c\37700d\37711e\377" "00b\377GGr\377\374\374\374\377\203\377\377\377\377\11[[z\377''P\377'" "'O\377''N\377''O\377''P\377((R\377))T\377**V\377\202++Y\377\1**[\377" "\203++[\377\1\317\317\331\377\203\377\377\377\377\2ZZ{\377))S\377\204" "++T\377\202,,U\377\1tt\217\377\205\377\377\377\377\11\320\320\327\377" "22R\377))J\377))I\377((I\377))I\377))J\37788W\377\372\372\373\377\202" "\377\377\377\377\15\376\376\376\377JJh\377,,P\377--R\37700V\37722Y\377" "44\\\37755_\37788b\377;;f\377==h\377@@i\377\352\352\357\377\202\377\377" "\377\377\6\375\375\375\377QQr\37777\\\37766Z\377]]z\377\346\346\352\377" "\204\377\377\377\377\22\356\356\361\377xx\224\377@@i\377BBl\377CCo\377" "GGt\377HHv\377KKz\377NN~\377PP\201\377SS\205\377VV\210\377WW\212\377" "YY\215\377[[\217\377ZZ\217\377]]\220\377]]\221\377\202\\\\\221\377\3" "]]\221\377``\224\377aa\225\377\204bb\226\377\1dd\230\377\202cc\227\377" "\4bb\226\377dd\230\377ee\230\377kk\236\377\202jj\235\377\5ii\234\377" "kk\236\377ll\237\377nn\241\377oo\241\377\202mm\240\377\4ll\237\377pp" "\242\377qq\244\377tt\246\377\202uu\247\377\3ss\245\377tt\246\377uu\250" "\377\202zz\253\377\3xx\252\377vv\250\377ww\251\377\202zz\253\377\203" "}}\256\377\202\177\177\260\377\7\201\201\262\377\202\202\263\377\203" "\203\264\377\202\202\263\377\205\205\266\377\206\206\267\377\207\207" "\267\377\204\211\211\271\377\6\212\212\273\377\214\214\274\377\217\217" "\276\377\220\220\300\377\217\217\276\377\220\220\277\377\202\223\223" "\302\377\6\225\225\304\377\227\227\306\377\231\231\307\377\232\232\310" "\377\233\233\312\377\235\235\313\377\202\236\236\314\377\4\240\240\316" "\377\237\237\316\377\237\237\315\377\241\241\317\377\202\246\246\324" "\377\3\247\247\324\377\252\252\327\377\253\253\330\377\202\252\252\327" "\377\202\250\250\325\377\7\256\256\332\377\262\262\336\377\263\263\337" "\377\262\262\336\377\267\267\343\377\263\263\337\377\264\264\341\377" "\202\266\266\342\377\2\267\267\343\377\271\271\344\377\202\272\272\346" "\377\4\263\262\333\377\235\230\262\377ynj\377RA\37\377\207I6\15\377\31" "P>\32\377\211\201\211\377\256\254\317\377\266\265\336\377\242\236\270" "\377~ts\377\\L1\377K9\21\377I6\15\377I7\16\377Q\77\33\377m`R\377~ts\377" "]M3\377A1\15\377+\37\11\377\27\21\14\377\77\377\13\13\77\377\14\14A\377\202\15\15D\377\1\15\15E\377\202\17\17G" "\377\1\17\17H\377\203\21\21J\377\6\21\21I\377\21\21J\377\23\23I\377\22" "\22H\377\22\22F\377\212\212\243\377\205\377\377\377\377\3\366\366\367" "\377@@]\377\15\15""2\377\202\15\15""1\377\202\16\16""2\377\2\16\16""3" "\377PPk\377\203\377\377\377\377\3\306\306\316\377\17\17""5\377\20\20" "6\377\202\20\20""7\377\3\21\21""8\377\34\34B\377\371\371\372\377\202" "\377\377\377\377\10\362\362\364\377\30\30@\377\21\21;\377\22\22;\377" "\23\23=\377\24\24\77\377\25\25@\377\25\25A\377\202\26\26B\377\1}}\227" "\377\203\377\377\377\377\2\311\311\323\377\21\21=\377\202\17\17;\377" "\1\17\17:\377\202\17\17;\377\202\16\16;\377\1``~\377\203\377\377\377" "\377\5\262\262\277\377\16\16""6\377\16\16""5\377ll\203\377\370\370\371" "\377\204\377\377\377\377\5\266\266\302\377))O\377\26\26@\377\31\31C\377" "\31\31E\377\202\33\33G\377\2&&P\377\372\372\373\377\202\377\377\377\377" "\2\363\363\365\377##L\377\202\34\34E\377\7\34\34F\377\35\35H\377\36\36" "I\377\37\37J\377\40\40K\377\40\40L\377\205\205\235\377\203\377\377\377" "\377\1\314\314\326\377\202\40\40J\377\2\40\40I\377\37\37I\377\202\40" "\40K\377\3!!L\377\37\37K\377\216\216\244\377\203\377\377\377\377\1\211" "\211\237\377\203\33\33F\377\1\33\33G\377\202\34\34I\377\11\35\35L\377" "!!P\377\"\"T\377%%W\377&&Y\377&&Z\377))]\377**`\377++a\377\202//d\377" "\10""00e\37700f\377//f\37700e\37711e\37722e\37711b\377\240\240\266\377" "\203\377\377\377\377\4\303\303\317\377))S\377((Q\377((P\377\202((Q\377" "\6))S\377**V\377,,W\377--Z\377..\\\377..^\377\202//_\377\2//^\377XX~" "\377\203\377\377\377\377\3\322\322\333\377++U\377**T\377\202,,T\377\202" ",,U\377\3--V\377..W\377\317\317\330\377\204\377\377\377\377\4\351\351" "\355\377@@`\377++M\377++K\377\203**K\377\2**L\377\210\210\234\377\203" "\377\377\377\377\14\311\311\322\377..Q\377..S\37700U\37711X\37744[\377" "66^\37777a\377::e\377==g\377==i\377\177\177\234\377\203\377\377\377\377" "\5\277\277\314\37788\\\37766Y\377\203\203\230\377\371\371\372\377\204" "\377\377\377\377\17\301\301\314\377JJn\377==e\377AAj\377CCm\377FFq\377" "IIu\377KKx\377MM|\377OO\200\377RR\203\377UU\207\377XX\213\377[[\216\377" "\\\\\217\377\202\\\\\220\377\1[[\217\377\203^^\222\377\1aa\224\377\203" "aa\225\377\7bb\226\377dd\230\377ff\231\377ff\232\377dd\230\377ee\230" "\377ff\232\377\202hh\233\377\204kk\236\377\202nn\241\377\2oo\241\377" "pp\242\377\202oo\241\377\11pp\243\377ss\245\377tt\246\377uu\247\377u" "u\250\377vv\250\377uu\250\377ww\251\377zz\253\377\202xx\252\377\3uu\250" "\377zz\253\377{{\255\377\202\177\177\260\377\2~~\257\377\177\177\260" "\377\203\201\201\262\377\5\202\202\263\377\201\201\262\377\202\202\263" "\377\205\205\265\377\211\211\271\377\202\212\212\273\377\1\213\213\273" "\377\202\214\214\274\377\202\213\213\273\377\1\217\217\276\377\203\225" "\225\304\377\2\226\226\305\377\233\233\312\377\202\232\232\310\377\2" "\232\232\311\377\235\235\313\377\202\233\233\312\377\1\237\237\316\377" "\202\240\240\316\377\4\244\244\321\377\245\245\323\377\246\246\324\377" "\244\244\322\377\202\245\245\323\377\5\246\246\324\377\253\253\330\377" "\256\256\332\377\257\257\334\377\263\263\337\377\202\261\261\336\377" "\1\257\257\333\377\202\262\262\336\377\2\264\264\341\377\271\271\344" "\377\202\267\267\343\377\202\270\270\344\377\5\267\267\343\377\271\271" "\345\377\243\240\274\377wlf\377UD$\377\205I6\15\377\4M:\24\377gXF\377" "pdY\377UC#\377\203I6\15\377\27O=\30\377i[J\377\214\205\217\377\255\253" "\316\377\270\267\342\377\243\237\272\377zok\377J7\17\377I6\15\377F4\14" "\3773&\11\377\31\22\6\377\6\4\4\377\1\0\3\377\2\1\4\377\2\1\5\377\12" "\10\14\377639\377\203}\206\377\333\326\333\377\312\277\310\377\240\223" "\240\377\203~\207\377\202\15\15H\377\203\12\12F\377\202\10\10E\377\1" "\12\12F\377\202\11\11D\377\7\13\13F\377\12\12D\377\11\11B\377\11\11A" "\377\7\7@\377\11\11\77\377\343\343\351\377\202\377\377\377\377\2\373" "\373\374\377\35\35H\377\203\6\6""4\377\20\10\10""6\377\10\10""7\377\10" "\10""9\377\10\10:\377\11\11<\377\11\11=\377\13\13A\377\13\13B\377\14" "\14D\377\15\15F\377\15\15G\377\16\16H\377\17\17H\377\20\20I\377\22\22" "L\377\21\21L\377\202\21\21K\377\5\22\22J\377\23\23I\377\22\22G\377\30" "\30I\377\351\351\355\377\204\377\377\377\377\3\373\373\374\377VVp\377" "\16\16""3\377\203\16\16""2\377\4\16\16""3\377\17\17""4\377\17\17""5\377" "\254\254\271\377\203\377\377\377\377\1kk\203\377\202\20\20""7\377\202" "\21\21""8\377\2\22\22:\377ZZv\377\203\377\377\377\377\13\262\262\300" "\377\23\23<\377\24\24<\377\24\24=\377\24\24>\377\24\24\77\377\25\25@" "\377\26\26B\377\26\26C\377))R\377\361\361\364\377\203\377\377\377\377" "\6MMn\377\22\22>\377\21\21<\377\22\22=\377\22\22>\377\21\21=\377\203" "\21\21>\377\1\307\307\322\377\203\377\377\377\377\3JJh\377\24\24:\377" "\237\237\256\377\204\377\377\377\377\12\365\365\366\377pp\210\377\25" "\25=\377\26\26>\377\26\26@\377\31\31C\377\31\31D\377\33\33F\377\33\33" "G\377``\177\377\203\377\377\377\377\1\265\265\303\377\203\35\35F\377" "\7\35\35G\377\36\36H\377\37\37J\377\40\40K\377\40\40L\37722[\377\362" "\362\364\377\203\377\377\377\377\12YYx\377!!L\377!!K\377!!L\377!!K\377" "!!L\377\40\40K\377!!L\377##N\377\346\346\353\377\202\377\377\377\377" "\21\374\374\374\37744[\377\36\36I\377\37\37I\377\36\36J\377\37\37K\377" "\40\40M\377\40\40O\377!!R\377\"\"T\377##V\377&&Y\377''[\377''\\\377+" "+a\377..c\377..d\377\20300f\377\7""00g\37700f\37700e\37722f\37722e\377" "::i\377\361\361\364\377\203\377\377\377\377\2\\\\|\377++S\377\202**R" "\377\10++S\377**T\377++V\377,,Y\377..[\377..]\377//_\37700_\377\2020" "0`\377\2//`\377\260\260\302\377\203\377\377\377\377\3tt\221\377**U\377" "**T\377\202++T\377\4,,T\377,,U\377--V\377UUw\377\204\377\377\377\377" "\4\370\370\372\377XXt\377,,O\377,,N\377\203++M\377\202,,O\377\1\332\332" "\341\377\203\377\377\377\377\14ww\216\377//S\377//U\37711W\37744Z\377" "88`\37799c\377::d\377<>i\377@@k\377\322\322\334\377\203\377\377" "\377\377\3jj\207\377<<`\377\257\257\275\377\204\377\377\377\377\26\366" "\366\370\377\207\207\234\377;;`\377==c\377@@g\377CCk\377EEn\377FFq\377" "JJv\377LLz\377NN~\377SS\203\377UU\206\377XX\212\377ZZ\214\377\\\\\217" "\377]]\220\377^^\222\377``\223\377aa\223\377aa\224\377``\224\377\206" "cc\227\377\203ff\232\377\3ee\230\377ff\232\377hh\233\377\204ll\237\377" "\202kk\236\377\1mm\240\377\202pp\243\377\202qq\244\377\10pp\242\377r" "r\244\377tt\246\377uu\247\377vv\250\377xx\252\377vv\250\377{{\254\377" "\202{{\255\377\202zz\253\377\1{{\254\377\202\177\177\260\377\202\200" "\200\261\377\11\177\177\260\377\202\202\263\377\203\203\264\377\201\201" "\262\377\202\202\263\377\204\204\264\377\206\206\267\377\210\210\270" "\377\212\212\272\377\203\217\217\276\377\5\213\213\273\377\215\215\275" "\377\216\216\276\377\220\220\300\377\223\223\302\377\202\225\225\304" "\377\202\224\224\303\377\2\230\230\307\377\235\235\313\377\202\237\237" "\316\377\202\240\240\316\377\7\237\237\316\377\236\236\314\377\242\242" "\320\377\241\241\317\377\240\240\316\377\244\244\321\377\250\250\325" "\377\202\252\252\327\377\6\255\255\332\377\257\257\333\377\255\255\332" "\377\260\260\335\377\257\257\333\377\263\263\337\377\203\264\264\341" "\377\14\265\265\341\377\270\270\344\377\264\264\341\377\265\265\341\377" "\271\271\344\377\266\266\342\377\270\270\344\377\270\267\341\377\243" "\240\273\377|rp\377[L0\377J7\17\377\207I6\15\377\10fXF\377\233\225\252" "\377\264\263\333\377\265\265\335\377\234\227\254\377wke\377WF'\377J7" "\17\377\202I6\15\377\24M;\25\377eWC\377qdZ\377Q@\37\377<,\13\377\"\31" "\7\377\11\6\3\377\1\0\2\377\0\0\2\377\1\0\3\377\1\0\4\377\2\1\3\377\3" "\1\4\377\3\1\5\377\4\2\5\377\7\4\10\377#\35#\377PKS\377wr|\377\233\217" "\234\377\202\15\15I\377\203\13\13G\377\203\12\12F\377\202\11\11D\377" "\202\14\14F\377\4\12\12C\377\13\13C\377\11\11@\377QQv\377\203\377\377" "\377\377\2\257\257\276\377\6\6""5\377\202\6\6""4\377\15\6\6""5\377\10" "\10""7\377\10\10""8\377\10\10:\377\10\10;\377\11\11=\377\11\11\77\377" "\13\13B\377\12\12B\377\14\14D\377\14\14F\377\16\16G\377\17\17I\377\202" "\20\20I\377\202\22\22L\377\6\21\21L\377\21\21K\377\22\22J\377\22\22I" "\377\22\22G\377ii\211\377\205\377\377\377\377\3qq\210\377\17\17""5\377" "\17\17""4\377\202\16\16""3\377\1\17\17""4\377\202\17\17""5\377\2\36\36" "C\377\367\367\370\377\202\377\377\377\377\2\365\365\366\377\33\33A\377" "\202\21\21""8\377\202\21\21""9\377\2\22\22:\377\223\223\245\377\203\377" "\377\377\377\7qq\212\377\23\23<\377\24\24<\377\24\24=\377\24\24>\377" "\24\24\77\377\25\25@\377\202\27\27C\377\1\252\252\273\377\203\377\377" "\377\377\1\261\261\300\377\202\24\24\77\377\2\22\22>\377\23\23>\377\202" "\23\23\77\377\202\23\23@\377\1\77\77d\377\203\377\377\377\377\3\326\326" "\335\377**N\377\315\315\325\377\204\377\377\377\377\13\321\321\331\377" "77W\377\25\25;\377\25\25=\377\27\27@\377\30\30A\377\31\31C\377\31\31" "D\377\33\33F\377\34\34G\377\227\227\253\377\203\377\377\377\377\1ww\220" "\377\202\34\34F\377\4\35\35F\377\35\35G\377\36\36H\377\37\37I\377\202" "\40\40K\377\1\256\256\276\377\203\377\377\377\377\2\265\265\303\377!" "!K\377\203!!L\377\5\"\"L\377\"\"M\377!!L\377!!M\377bb\201\377\203\377" "\377\377\377\1\267\267\304\377\203\37\37I\377\16\36\36K\377\37\37L\377" "\40\40N\377!!Q\377\"\"S\377\"\"T\377##W\377''[\377''\\\377((^\377++b" "\377,,c\377//e\377//f\377\20211h\377\1""11g\377\20222g\377\3""33f\377" "33e\377\210\210\244\377\203\377\377\377\377\15\316\316\330\377++U\377" ",,T\377++T\377,,T\377,,U\377,,W\377,,X\377..[\377//^\377//_\37700a\377" "11a\377\20200a\377\2BBn\377\370\370\372\377\202\377\377\377\377\4\350" "\350\355\377//Z\377--V\377,,U\377\202..W\377\202//X\377\2""11Z\377\260" "\260\300\377\204\377\377\377\377\3\205\205\233\377..R\377..Q\377\203" "--P\377\3..Q\377//R\377XXu\377\203\377\377\377\377\14\356\356\361\377" "66Y\37711V\37722W\37755\\\37788_\377::b\377::d\377;;f\377<>`\377\202\23\23<\377" "\202\24\24=\377\4\24\24>\377\25\25@\377\26\26B\377]]|\377\203\377\377" "\377\377\2\363\363\365\377//V\377\202\25\25@\377\4\22\22>\377\23\23\77" "\377\24\24@\377\21\21>\377\202\22\22>\377\1\246\246\267\377\203\377\377" "\377\377\2\244\244\263\377\352\352\355\377\204\377\377\377\377\14\233" "\233\252\377\26\26:\377\21\21""7\377\22\22""9\377\25\25=\377\26\26\77" "\377\26\26A\377\31\31C\377\31\31E\377\32\32F\377\34\34G\377\301\301\314" "\377\203\377\377\377\377\3GGh\377\35\35F\377\35\35E\377\202\35\35F\377" "\4\36\36H\377\37\37I\377\40\40K\377dd\202\377\203\377\377\377\377\3\364" "\364\366\37799^\377!!K\377\202\"\"L\377\1\"\"M\377\202##N\377\202\"\"" "N\377\1\273\273\311\377\203\377\377\377\377\1]]|\377\202\37\37J\377\17" "\40\40K\377\40\40L\377!!N\377\"\"Q\377##S\377$$V\377%%W\377%%Z\377''" "\\\377))_\377))`\377--d\377//f\37711h\37722i\377\20255k\377\6""44k\377" "44i\37744h\37733e\37744f\377\343\343\351\377\203\377\377\377\377\1mm" "\212\377\202,,U\377\15,,V\377--W\377..Y\377//[\37700]\37722`\37733b\377" "33c\37744e\37755e\37733d\37711b\377\227\227\257\377\203\377\377\377\377" "\4\220\220\247\377..X\377--W\377--V\377\20200Y\377\20200Z\377\2AAg\377" "\371\371\372\377\203\377\377\377\377\4\307\307\321\37711U\37700T\377" "11T\377\20200S\377\4//S\37700T\37711U\377\246\246\266\377\203\377\377" "\377\377\14\243\243\264\37711V\37711W\37722Y\37766^\37799a\377::d\377" "<>i\377AAl\377\270\270\310\377\203\377\377\377\377\2\266" "\266\304\377\356\356\361\377\204\377\377\377\377\21\253\253\271\377<" "<]\37799\\\377;;^\377==b\377@@f\377CCj\377FFn\377HHr\377JJv\377LLy\377" "PP~\377SS\203\377WW\207\377[[\214\377[[\215\377^^\220\377\202^^\221\377" "\1``\223\377\202cc\226\377\2cc\227\377ff\231\377\203gg\233\377\203hh" "\233\377\6kk\236\377gg\233\377ii\234\377jj\235\377ll\237\377nn\241\377" "\203pp\242\377\202rr\244\377\10ss\245\377tt\246\377ss\245\377pp\243\377" "ss\245\377uu\250\377vv\250\377zz\253\377\202{{\254\377\202}}\256\377" "\202~~\257\377\2}}\256\377||\256\377\202\177\177\260\377\1\202\202\263" "\377\202\203\203\264\377\11\205\205\266\377\206\206\267\377\211\211\271" "\377\210\210\270\377\212\212\273\377\212\212\272\377\212\212\273\377" "\214\214\274\377\217\217\276\377\203\220\220\277\377\2\221\221\301\377" "\223\223\302\377\202\221\221\301\377\2\225\225\304\377\226\226\305\377" "\202\232\232\311\377\22\233\233\312\377\237\237\315\377\241\241\317\377" "\237\237\316\377\241\241\317\377\244\244\322\377\242\242\320\377\241" "\241\317\377\246\246\324\377\247\247\324\377\245\245\323\377\251\251" "\326\377\255\255\332\377\256\256\332\377\254\254\331\377\257\257\334" "\377\257\257\333\377\260\260\335\377\202\264\264\340\377\2\267\267\343" "\377\271\271\344\377\203\266\266\342\377\202\265\265\341\377\11\267\267" "\343\377\272\272\346\377\253\251\315\377\203z\177\377^N5\377J7\17\377" "W@\13\377X@\13\377J7\15\377\204I6\15\377\10SB\40\377\214\204\215\377" "\255\253\316\377\271\270\343\377\255\253\316\377\213\203\213\377fWD\377" "N<\27\377\202I6\15\377\11I7\16\377SB!\377pcX\377hYG\377I8\23\3777)\15" "\377\36\30\16\377\13\12\20\377\6\7\16\377\202\5\5\14\377\6\4\4\11\377" "\4\3\10\377#!%\377\20\21\25\377\4\3\10\377\4\2\5\377\202\4\1\6\377\10" "\10\5\12\377\6\3\6\377\6\1\5\377\5\1\5\377\4\1\6\377\6\2\6\377\10\2\7" "\377\15\15I\377\204\16\16J\377\202\15\15I\377\1\15\15H\377\202\10\10" "D\377\6\12\12D\377\10\10B\377\10\10A\377\11\11A\377&&V\377\374\374\375" "\377\202\377\377\377\377\2\340\340\346\377\10\10""7\377\203\6\6""5\377" "\7\6\6""6\377\6\6""7\377\7\7""9\377\11\11<\377\11\11>\377\12\12@\377" "\12\12B\377\202\11\11B\377\202\11\11C\377\202\12\12E\377\202\15\15G\377" "\7\16\16I\377\17\17I\377\17\17H\377\21\21I\377\23\23J\377\22\22H\377" "KKr\377\204\377\377\377\377\3\310\310\322\377\24\24<\377\21\21""8\377" "\203\20\20""7\377\1\21\21""8\377\202\21\21""9\377\2\21\21:\377\313\313" "\324\377\203\377\377\377\377\1ZZw\377\202\23\23;\377\202\23\23<\377\202" "\24\24<\377\1\342\342\347\377\202\377\377\377\377\2\374\374\375\377\31" "\31@\377\202\25\25=\377\202\25\25>\377\202\26\26@\377\2..T\377\355\355" "\360\377\203\377\377\377\377\2}}\226\377\30\30C\377\202\27\27B\377\1" "\24\24\77\377\202\24\24@\377\202\22\22\77\377\2((Q\377\371\371\372\377" "\207\377\377\377\377\16\363\363\365\377``x\377\17\17""4\377\21\21""6" "\377\22\22""8\377\24\24;\377\26\26>\377\26\26@\377\27\27A\377\31\31D" "\377\32\32F\377\33\33G\377\34\34H\377\343\343\351\377\202\377\377\377" "\377\2\374\374\375\377!!I\377\203\35\35E\377\5\35\35F\377\36\36G\377" "\37\37I\37788]\377\356\356\361\377\203\377\377\377\377\1\203\203\233" "\377\202!!L\377\202##M\377\2##N\377%%O\377\202%%P\377\2\77\77e\377\374" "\374\375\377\202\377\377\377\377\2\343\343\351\377\"\"M\377\203!!L\377" "\25##O\377##Q\377%%T\377%%U\377&&X\377&&Z\377&&[\377**_\377++b\377,," "c\377--e\377//f\37711h\37722i\37744k\37755k\37744j\37744i\37744h\377" "33f\377vv\227\377\203\377\377\377\377\2\340\340\346\377//Y\377\202--" "W\377\10//X\377//Y\37711\\\37700]\37722_\37733b\37744d\37744e\377\202" "55f\377\3""22d\37777h\377\356\356\362\377\202\377\377\377\377\2\367\367" "\370\377::c\377\203--W\377\2//X\377//Y\377\20200Y\377\1\224\224\251\377" "\203\377\377\377\377\3\361\361\364\377IIk\37733X\377\20233W\377\6""2" "2W\37733W\37733X\37722W\37788\\\377\360\360\363\377\203\377\377\377\377" "\14WWv\37755Z\37766\\\37777]\37788`\377::c\377<>d\377BBi\377DDl\377IIr\377KK" "v\377NNz\377QQ~\377SS\201\377XX\207\377ZZ\212\377^^\217\377__\221\377" "``\223\377aa\224\377bb\225\377bb\226\377ff\230\377ff\231\377ff\232\377" "gg\233\377\202ff\232\377\5gg\233\377hh\233\377kk\236\377ll\237\377mm" "\240\377\203kk\236\377\2nn\241\377pp\242\377\202pp\243\377\16pp\242\377" "rr\244\377ss\245\377vv\250\377zz\253\377uu\250\377tt\246\377uu\247\377" "ww\251\377zz\253\377}}\256\377\177\177\260\377~~\257\377\177\177\260" "\377\202\200\200\261\377\202\177\177\260\377\1\200\200\261\377\202\203" "\203\264\377\3\206\206\267\377\207\207\267\377\206\206\267\377\202\207" "\207\267\377\202\205\205\265\377\14\212\212\272\377\213\213\273\377\215" "\215\275\377\220\220\277\377\223\223\302\377\224\224\303\377\225\225" "\304\377\222\222\301\377\221\221\301\377\224\224\303\377\226\226\305" "\377\227\227\306\377\202\232\232\310\377\5\233\233\312\377\232\232\311" "\377\237\237\316\377\242\242\320\377\245\245\323\377\202\244\244\322" "\377\203\247\247\324\377\202\252\252\327\377\5\246\246\324\377\252\252" "\327\377\261\261\336\377\263\263\337\377\264\264\340\377\202\267\267" "\343\377\26\264\264\341\377\264\264\340\377\260\260\335\377\262\262\336" "\377\270\270\344\377\271\271\344\377\264\264\341\377\272\272\346\377" "\266\266\342\377\255\253\320\377\207\177\207\377bT>\377XB\24\377U>\13" "\377iK\11\377jL\11\377|Y\5\377wU\7\377cK\27\377oaU\377l_Q\377O=\31\377" "\203I6\15\377\10O=\31\377i[J\377\215\206\221\377\260\256\322\377\271" "\271\344\377\254\251\313\377\212\202\212\377Q@\35\377\202I6\15\377\31" "\77/\16\377(\40\21\377\22\21\22\377\12\14\23\377\11\13\24\377\11\13\23" "\377\10\13\24\377\11\11\22\377\10\11\21\377\7\10\20\377\7\7\16\377\15" "\13\24\377:9\77\377=\377\25\25\77\377\34\34E\377\312\312\324\377" "\203\377\377\377\377\3\312\312\324\377\33\33E\377\30\30C\377\203\27\27" "B\377\5\26\26C\377\26\26D\377\26\26B\377\27\27D\377\214\214\242\377\207" "\377\377\377\377\14\332\332\340\37755S\377\21\21""4\377\21\21""6\377" "\23\23""9\377\23\23;\377\26\26>\377\27\27@\377\27\27B\377\30\30D\377" "\31\31F\377\33\33H\377\202\35\35I\377\1\364\364\366\377\202\377\377\377" "\377\3\355\355\361\377\35\35F\377\36\36F\377\203\37\37G\377\3\37\37H" "\377&&N\377\314\314\326\377\203\377\377\377\377\2\315\315\326\377%%N" "\377\202\"\"L\377\7$$M\377$$N\377%%O\377%%P\377%%Q\377&&R\377\232\232" "\256\377\203\377\377\377\377\12\213\213\242\377\40\40K\377!!L\377\40" "\40K\377\40\40L\377!!N\377\"\"Q\377##S\377$$U\377%%X\377\202%%Z\377\16" "((_\377**a\377++c\377,,d\377//g\37711i\37722j\37744k\37755k\37744j\377" "44h\37733g\37733f\377\322\322\335\377\203\377\377\377\377\20\206\206" "\240\377..Y\377--X\377//Y\37700Z\37711\\\37722^\37733`\37744c\37766e" "\37777g\37788i\37788j\37788i\37766g\377\211\211\246\377\203\377\377\377" "\377\3\254\254\275\377..Z\377//Y\377\20200Z\377\20311[\377\2""77`\377" "\353\353\357\377\203\377\377\377\377\3\210\210\237\37755[\37755Z\377" "\20344Y\377\1""44Z\377\20255[\377\1xx\221\377\203\377\377\377\377\1\330" "\330\337\377\20266\\\377\11""77]\37788_\37799b\377<=E\377\37" "\36&\377\17\13\23\377\15\11\22\377\14\10\21\377\15\10\20\377\12\6\14" "\377\13\5\15\377\20\7\15\377\16\16J\377\203\17\17K\377\1\22\22M\377\202" "\20\20K\377\10\20\20J\377\15\15G\377\15\15F\377\15\15E\377\12\12C\377" "\11\11A\377\17\17D\377\354\354\360\377\202\377\377\377\377\2\373\373" "\374\377\40\40K\377\203\11\11""7\377\13\11\11""8\377\11\11""9\377\11" "\11;\377\11\11=\377\12\12\77\377\12\12@\377\12\12B\377\14\14D\377\14" "\14E\377\13\13E\377\14\14G\377\203\15\15G\377\11\16\16I\377\17\17J\377" "\20\20J\377\22\22K\377\21\21J\377\21\21I\377\23\23I\37733a\377\375\375" "\376\377\203\377\377\377\377\3oo\212\377\22\22=\377\22\22;\377\203\21" "\21:\377\2\24\24<\377\24\24=\377\202\24\24>\377\1\205\205\233\377\203" "\377\377\377\377\1\245\245\265\377\203\24\24=\377\202\25\25>\377\202" "\25\25\77\377\1\373\373\374\377\202\377\377\377\377\2\364\364\366\377" "\26\26>\377\202\25\25=\377\202\26\26>\377\2\31\31A\377\260\260\277\377" "\203\377\377\377\377\2\362\362\365\37766[\377\202\30\30C\377\3\31\31" "D\377\31\31E\377\30\30D\377\202\27\27D\377\3\25\25B\377\35\35I\377\354" "\354\360\377\206\377\377\377\377\20\276\276\310\377\36\36@\377\16\16" "3\377\17\17""4\377\20\20""6\377\21\21""8\377\21\21:\377\24\24=\377\25" "\25A\377\27\27C\377\30\30E\377\30\30F\377\32\32H\377\34\34I\377\35\35" "J\377\373\373\374\377\202\377\377\377\377\4\364\364\366\377\35\35F\377" "\36\36F\377\37\37F\377\202\37\37G\377\2##J\377\264\264\302\377\203\377" "\377\377\377\3\363\363\365\377\77\77c\377##M\377\202$$M\377\3%%O\377" "&&Q\377''R\377\202''T\377\2,,X\377\356\356\362\377\202\377\377\377\377" "\24\374\374\374\377::`\377$$O\377%%O\377##N\377##P\377%%S\377&&U\377" "))Y\377((Z\377))\\\377**_\377++`\377..d\37700g\37711h\37711j\37722j\377" "55l\37755m\377\20266l\377\4""55k\37755j\37755i\377ee\213\377\203\377" "\377\377\377\14\363\363\366\377::c\37700Z\377//Y\37700Z\37711\\\3773" "3^\37744a\37755c\37755e\37777g\37788i\377\20277j\377\3""66i\37777g\377" "\346\346\354\377\203\377\377\377\377\1VVz\377\202..Y\377\202//Y\377\4" "11[\37722\\\37722]\377\177\177\232\377\203\377\377\377\377\2\333\333" "\342\37788`\377\20366\\\377\6""88^\37777]\37777^\37788_\377::`\377\304" "\304\320\377\203\377\377\377\377\1\222\222\247\377\20288_\377\11""99" "`\377<\377\7\7\77\377\10\10A\377\12\12C\377\12\12D\377\11\11D\377\14\14G\377" "\204\15\15G\377\202\15\15H\377\5\16\16H\377\15\15G\377\15\15F\377\16" "\16E\377\234\234\262\377\203\377\377\377\377\4\304\304\317\377\22\22" "\77\377\21\21<\377\21\21;\377\203\22\22<\377\5\24\24>\377\25\25\77\377" "\25\25@\377\25\25A\377\325\325\335\377\203\377\377\377\377\1YYw\377\202" "\24\24>\377\1\25\25\77\377\202\25\25@\377\202\26\26A\377\1\354\354\357" "\377\203\377\377\377\377\2<<^\377\25\25=\377\202\27\27>\377\2\40\40G" "\377\263\263\301\377\203\377\377\377\377\10\376\376\376\377__|\377\31" "\31B\377\31\31C\377\32\32E\377\32\32F\377\33\33G\377\31\31F\377\202\30" "\30F\377\2\27\27E\377pp\214\377\206\377\377\377\377\16\235\235\255\377" "\23\23""8\377\20\20""5\377\17\17""4\377\17\17""5\377\21\21""8\377\22" "\22:\377\22\22<\377\25\25A\377\27\27C\377\30\30E\377\31\31G\377\32\32" "H\377\34\34J\377\202\36\36L\377\1\355\355\360\377\203\377\377\377\377" "\1DDe\377\202\36\36F\377\3\37\37F\377((N\377\266\266\303\377\203\377" "\377\377\377\14\376\376\376\377ff\202\377##L\377##M\377$$M\377$$N\377" "%%P\377''R\377''S\377((U\377((V\377uu\222\377\203\377\377\377\377\1\272" "\272\310\377\203&&Q\377\10$$P\377%%R\377&&T\377''W\377**Z\377(([\377" "))^\377**`\377\202++b\377\2++c\377..g\377\20200g\377\20222j\377\2025" "5l\377\4""66l\37766k\37755h\377\303\303\321\377\203\377\377\377\377\2" "\245\245\270\37711]\377\20211[\377\14""22\\\37733_\37755a\37766d\377" "77f\37799i\377::k\377;;m\377;;n\377::m\377::l\377\200\200\240\377\203" "\377\377\377\377\4\315\315\330\37733^\37700[\37722]\377\20222\\\377\4" "55_\37766`\37777a\377\336\336\345\377\203\377\377\377\377\1jj\210\377" "\20388_\377\202::`\377\1""99`\377\20299a\377\2IIn\377\373\373\374\377" "\202\377\377\377\377\14\375\375\376\377LLo\37777^\37788_\37788`\377=" "=e\377\77\77h\377@@k\377AAl\377BBo\377CCo\377\215\215\250\377\206\377" "\377\377\377\34\257\257\275\377<<^\37799Z\377::\\\377<<^\377>>a\377B" "Be\377BBg\377FFl\377IIr\377KKu\377PPz\377SS\200\377VV\203\377YY\210\377" "\\\\\213\377__\220\377cc\223\377ee\226\377ee\227\377ee\230\377ff\231" "\377hh\233\377jj\235\377kk\235\377kk\236\377ll\237\377mm\240\377\202" "nn\241\377\16oo\241\377pp\242\377qq\244\377pp\243\377oo\241\377pp\243" "\377qq\244\377tt\246\377uu\247\377uu\250\377uu\247\377uu\250\377xx\252" "\377yy\253\377\202||\256\377\6zz\253\377yy\253\377{{\255\377~~\257\377" "\202\202\263\377\204\204\264\377\202\205\205\265\377\10\206\206\267\377" "\210\210\270\377\211\211\271\377\206\206\267\377\205\205\265\377\207" "\207\267\377\211\211\271\377\216\216\276\377\202\217\217\276\377\14\216" "\216\276\377\215\215\275\377\216\216\276\377\214\214\274\377\220\220" "\277\377\220\220\300\377\222\222\301\377\225\225\304\377\230\230\307" "\377\232\232\311\377\233\233\312\377\230\230\307\377\202\231\231\307" "\377\2\237\237\316\377\240\240\316\377\202\237\237\316\377\5\242\242" "\320\377\243\243\321\377\244\244\321\377\250\250\325\377\253\253\330" "\377\202\254\254\331\377\1\261\261\336\377\202\262\262\336\377\20\261" "\261\336\377\264\264\341\377\262\262\336\377\261\261\336\377\265\265" "\341\377\266\266\342\377\267\267\343\377\271\271\345\377\271\271\344" "\377\270\270\344\377\266\266\342\377\257\257\334\377\251\250\320\377" "\224\216\237\377ocW\377P>\32\377\202I6\15\377\15L8\15\377Y@\12\377kM" "\10\377\\C\12\377]C\13\377TA\32\377\222\213\232\377\267\266\340\377\271" "\270\343\377\243\237\271\377}sq\377[K0\377J8\20\377\203I6\15\377%L:\23" "\377gYE\377\205|\200\377sg^\377Q\77\34\377cL#\377\233{R\377\304\235t" "\377\230wM\377eM$\377K8\17\377E4\16\3774+\23\377%!\31\377\32\33\37\377" "\26\31\40\377\26\31!\377\27\31\40\377\30\31!\377\26\31\40\377\30\30\40" "\377\31\30\40\377\32\30\40\377\31\30\37\377\32\30\40\377\33\30\40\377" "\34\30\40\377\35\31!\377\37\32\"\377.&/\377ZU]\377^Zc\377ujx\377zq\201" "\377\206r\213\377|j~\377\210s\203\377\206\22\22M\377\203\22\22L\377\5" "\22\22K\377\21\21K\377\21\21J\377\21\21G\377\323\323\335\377\203\377" "\377\377\377\1NNq\377\203\11\11""8\377\13\12\12""9\377\13\13:\377\12" "\12<\377\13\13>\377\13\13@\377\13\13A\377\12\12B\377\11\11B\377\12\12" "C\377\12\12D\377\12\12E\377\202\13\13F\377\202\13\13G\377\1\15\15G\377" "\202\14\14G\377\5\15\15F\377\14\14E\377\14\14D\377\"\"T\377\366\366\370" "\377\202\377\377\377\377\4\374\374\375\377::`\377\23\23@\377\23\23\77" "\377\202\22\22>\377\202\23\23\77\377\4\25\25A\377\25\25B\377\26\26B\377" ";;`\377\203\377\377\377\377\2\363\363\365\377\33\33E\377\202\25\25\77" "\377\1\25\25@\377\202\25\25A\377\202\26\26B\377\1\302\302\315\377\203" "\377\377\377\377\5\304\304\316\377**N\377\34\34C\377__z\377\333\333\341" "\377\204\377\377\377\377\14\202\202\230\377\30\30B\377\31\31B\377\31" "\31C\377\32\32F\377\33\33G\377\33\33H\377\34\34I\377\34\34J\377\34\34" "K\377\34\34J\377\331\331\341\377\205\377\377\377\377\1\204\204\231\377" "\203\22\22""8\377\13\20\20""7\377\21\21""8\377\23\23;\377\23\23<\377" "\24\24\77\377\25\25B\377\30\30E\377\30\30G\377\31\31I\377\33\33L\377" "\36\36O\377\202\37\37N\377\1\304\304\320\377\203\377\377\377\377\5\306" "\306\320\37733X\377$$J\377ee\200\377\334\334\342\377\204\377\377\377" "\377\14\207\207\236\377##K\377$$M\377%%O\377%%P\377&&Q\377''S\377''T" "\377((V\377**W\377**X\377\330\330\340\377\203\377\377\377\377\15dd\204" "\377''S\377))T\377))U\377''S\377((U\377((V\377))Y\377,,^\377++^\377-" "-a\377--b\377..d\377\202--e\377\1""00g\377\20211h\377\10""55l\37755m" "\37766l\37766m\37777m\37777j\377[[\205\377\376\376\376\377\202\377\377" "\377\377\3\376\376\376\377QQw\37722^\377\20222]\377\14""22^\37744`\377" "66c\37777f\37788h\377::k\377::l\377;;m\377::m\377::l\377<\377" "\13\13@\377\13\13B\377\202\12\12C\377\202\12\12D\377\2\12\12E\377\13" "\13F\377\203\13\13G\377\1\15\15H\377\204\15\15G\377\2\15\15F\377\211" "\211\244\377\203\377\377\377\377\4\233\233\257\377\20\20\77\377\23\23" "A\377\24\24A\377\202\24\24@\377\6\25\25A\377\26\26B\377\26\26C\377\26" "\26D\377\27\27E\377\213\213\242\377\203\377\377\377\377\2\262\262\300" "\377\27\27C\377\202\26\26B\377\1\27\27B\377\202\27\27C\377\202\30\30" "D\377\1xx\222\377\205\377\377\377\377\1\375\375\375\377\205\377\377\377" "\377\15\214\214\241\377\31\31B\377\31\31C\377\32\32D\377\32\32E\377\32" "\32F\377\33\33H\377\35\35J\377\37\37L\377\37\37M\377\37\37N\377--Y\377" "\351\351\355\377\203\377\377\377\377\4\373\373\374\377ll\207\377\24\24" "<\377\23\23:\377\202\23\23""9\377\12\21\21""9\377\22\22;\377\22\22<\377" "\23\23>\377\25\25A\377\25\25C\377\30\30H\377\32\32J\377\32\32K\377\34" "\34M\377\202\37\37P\377\2\37\37O\377||\227\377\205\377\377\377\377\1" "\375\375\376\377\205\377\377\377\377\14\220\220\244\377\"\"J\377##K\377" "%%N\377%%P\377&&Q\377''S\377''T\377((V\377))W\377++Y\377qq\220\377\203" "\377\377\377\377\2\344\344\352\377,,X\377\202++W\377\16,,W\377((U\377" "))W\377))X\377**Z\377--_\377..a\377//c\377..c\377..e\377//f\377--f\377" "22i\37722j\377\20233j\377\6""55m\37766m\37788n\37788m\37788l\377\246" "\246\275\377\203\377\377\377\377\4\313\313\327\37755a\37744`\37733_\377" "\20244`\377\13""88e\37799h\377;;k\377;;l\377<>q\377==p" "\377<>f\377\202>>g\377\2\77" "\77h\377@@i\377\203@@j\377\1\317\317\332\377\203\377\377\377\377\1\212" "\212\242\377\203==f\377\2\77\77i\377AAk\377\202DDo\377\4DDq\377FFs\377" "UU~\377\355\355\362\377\203\377\377\377\377\31\374\374\375\377\211\211" "\240\377@@d\377AAd\377\77\77b\377>>a\377\77\77b\377AAe\377CCh\377FFm" "\377KKr\377OOy\377RR}\377SS\177\377VV\204\377ZZ\211\377\\\\\213\377_" "_\220\377bb\222\377gg\230\377hh\231\377jj\234\377kk\235\377jj\235\377" "ll\237\377\202oo\240\377\1pp\242\377\203pp\243\377\4qq\244\377ss\245" "\377tt\246\377uu\250\377\202tt\246\377\6uu\247\377xx\252\377{{\254\377" "}}\256\377||\256\377{{\255\377\202||\256\377\1~~\257\377\202\177\177" "\260\377\4~~\257\377\177\177\260\377\201\201\262\377\204\204\264\377" "\204\206\206\267\377\202\207\207\267\377\4\206\206\267\377\205\205\265" "\377\210\210\270\377\214\214\274\377\202\217\217\276\377\1\216\216\276" "\377\202\223\223\302\377\14\221\221\301\377\220\220\300\377\224\224\303" "\377\225\225\304\377\230\230\307\377\232\232\311\377\236\236\314\377" "\237\237\315\377\240\240\316\377\235\235\313\377\233\233\312\377\235" "\235\313\377\202\244\244\322\377\10\250\250\325\377\244\244\322\377\252" "\252\327\377\253\253\330\377\256\256\332\377\257\257\334\377\263\263" "\337\377\262\262\336\377\202\264\264\340\377\1\263\263\337\377\202\262" "\262\336\377\13\260\260\335\377\261\261\336\377\264\264\341\377\267\267" "\343\377\270\270\344\377\271\271\345\377\272\272\346\377\271\271\344" "\377\234\227\257\377tid\377RA\37\377\207I6\15\377\7^O7\377\231\223\246" "\377\263\262\331\377\244\240\275\377\177vw\377]N4\377K8\20\377\203I6" "\15\377\16K8\20\377aR;\377\206}\202\377\242\236\270\377\216\206\221\377" "aR;\377M:\21\377r\\4\377\260\223k\377\346\301\232\377\362\313\244\377" "\361\312\242\377\361\310\240\377\361\310\237\377\202\360\306\233\377" "\20\357\304\231\377\357\302\231\377\357\300\227\377\355\277\226\377\315" "\243z\377\230vM\377eM$\377K8\17\377F4\17\3779.\26\377+&\36\377\40\40" "%\377\35\37&\377\36\40(\377\40\40'\377!\40(\377\202#!(\377\12$\")\377" "#!)\377[Ol\377xs\210\377xv}\377{z\203\377vsy\377~w}\377\215z\200\377" "\347\330\323\377\206\22\22M\377\202\22\22L\377\202\22\22K\377\4\21\21" "K\377\21\21J\37766d\377\277\277\315\377\202\377\377\377\377\2\202\202" "\234\377\17\17@\377\202\16\16=\377\7\13\13;\377\14\14=\377\13\13=\377" "\13\13>\377\13\13@\377\13\13A\377\13\13C\377\202\13\13D\377\1\13\13E" "\377\202\13\13F\377\1\14\14G\377\203\14\14H\377\26\15\15H\377\15\15G" "\377\16\16I\377\16\16H\377\15\15G\377\15\15F\377\26\26K\377gg\210\377" "\312\312\325\377\351\351\356\377\37\37N\377\17\17\77\377\17\17>\377\20" "\20\77\377\20\20>\377\20\20\77\377\24\24B\377\24\24C\377\24\24D\377\26" "\26E\377\30\30G\377\333\333\342\377\203\377\377\377\377\2ii\206\377\27" "\27D\377\202\27\27C\377\203\27\27D\377\202\30\30E\377\2##N\377\341\341" "\347\377\210\377\377\377\377\13\373\373\374\377ww\217\377\31\31B\377" "\31\31C\377\32\32D\377\32\32E\377\32\32F\377\33\33H\377\34\34I\377\36" "\36L\377\37\37N\377\202\40\40O\377\10\37\37O\37788a\377\331\331\341\377" "\377\377\377\377\372\372\373\377aa~\377\26\26@\377\26\26\77\377\203\24" "\24=\377\13\22\22<\377\23\23>\377\23\23\77\377\23\23A\377\26\26E\377" "\30\30H\377\32\32K\377\34\34N\377\35\35O\377\37\37R\377\40\40R\377\202" "\40\40Q\377\2**Y\377\342\342\350\377\210\377\377\377\377\17\374\374\374" "\377~~\225\377##L\377$$M\377$$N\377&&O\377''R\377))T\377**V\377++X\377" "++Y\377,,[\377..\\\377NNu\377\306\306\323\377\202\377\377\377\377\1\221" "\221\251\377\203,,X\377\2,,Y\377))X\377\202**Z\377\11++]\377--`\377." ".c\377//e\37700f\37711g\377//f\377..f\37722i\377\20244k\377\2""55l\377" "66n\377\20299o\377\10""99n\377::o\37799l\377aa\210\377\260\260\303\377" "\367\367\371\377{{\232\37777d\377\20266c\377\20277d\377\22::g\377;;j" "\377==m\377>>n\377>>p\377>>q\377\77\77s\377>>q\377==p\377<>i\377\203@@j\377\2AAk\377CCm\377\202BBm\377" "\2RRy\377\375\375\375\377\202\377\377\377\377\23\372\372\373\377MMs\377" "@@h\377\77\77h\377@@i\377DDn\377FFq\377GGr\377HHt\377IIv\377JJw\377M" "M{\377aa\211\377\341\341\350\377\377\377\377\377\373\373\374\377\203" "\203\235\377FFk\377EEi\377\202CCg\377\21DDg\377FFj\377HHn\377JJq\377" "MMu\377PPy\377RR~\377VV\202\377XX\206\377\\\\\212\377__\216\377aa\221" "\377ff\226\377gg\230\377kk\235\377jj\234\377ll\236\377\202mm\240\377" "\202pp\241\377\1pp\243\377\202rr\244\377\1ss\245\377\202tt\246\377\6" "uu\247\377ww\251\377uu\250\377tt\246\377uu\250\377vv\250\377\202{{\254" "\377\7||\256\377{{\254\377{{\255\377||\256\377~~\257\377\201\201\262" "\377\200\200\261\377\202\177\177\260\377\3\201\201\262\377\205\205\265" "\377\207\207\267\377\203\211\211\271\377\2\213\213\273\377\214\214\274" "\377\202\212\212\273\377\6\213\213\273\377\217\217\276\377\220\220\300" "\377\224\224\303\377\225\225\304\377\224\224\303\377\202\223\223\302" "\377\7\224\224\303\377\225\225\304\377\227\227\306\377\232\232\310\377" "\236\236\314\377\241\241\317\377\240\240\316\377\202\241\241\317\377" "\6\244\244\321\377\245\245\323\377\246\246\324\377\252\252\327\377\253" "\253\330\377\252\252\327\377\202\254\254\331\377\2\255\255\332\377\257" "\257\334\377\202\262\262\336\377\3\260\260\335\377\263\263\337\377\267" "\267\343\377\202\265\265\341\377\11\271\271\344\377\271\271\345\377\267" "\267\343\377\264\264\340\377\263\263\337\377\263\263\336\377\237\234" "\270\377{po\377VE&\377\212I6\15\377\12M:\24\377dT\77\377\211\201\210" "\377\255\252\314\377\271\271\344\377\267\266\340\377\243\237\271\377" "~ts\377ZJ-\377J7\17\377\203I6\15\377*K9\21\377_M'\377\234\207a\377\331" "\302\241\377\364\331\267\377\365\330\263\377\365\325\256\377\364\322" "\253\377\363\317\247\377\363\316\245\377\362\314\242\377\361\312\240" "\377\361\311\237\377\360\310\236\377\360\307\235\377\360\305\232\377" "\357\303\230\377\357\301\227\377\357\300\226\377\352\272\221\377\314" "\242v\377\227uK\377cK!\377K7\17\377E4\17\377:.\26\377-(\37\377%#)\377" "#$+\377#$,\377$%,\377&%-\377&$,\377WQp\377RS]\377TRY\377eaj\377wrz\377" "\241\237\250\377\236\236\246\377\261\252\257\377\22\22M\377\205\23\23" "N\377\202\23\23M\377\4\23\23L\377\22\22L\377\22\22K\377\22\22J\377\202" "\22\22H\377\20ii\212\377\355\355\361\377))W\377\22\22C\377\20\20A\377" "\17\17@\377\14\14>\377\15\15\77\377\13\13>\377\13\13\77\377\13\13A\377" "\12\12A\377\12\12C\377\12\12D\377\14\14F\377\15\15F\377\202\15\15G\377" "\204\15\15H\377\202\15\15G\377\13\16\16I\377\16\16H\377\14\14F\377\16" "\16G\377\17\17E\377\16\16D\377\16\16B\377\37\37N\377\17\17B\377\17\17" "@\377\17\17\77\377\202\20\20@\377\14\22\22A\377\24\24E\377\25\25E\377" "\26\26G\377\30\30J\377\33\33L\377\211\211\243\377\344\344\352\377\377" "\377\377\377\374\374\375\377((S\377\32\32H\377\202\32\32G\377\203\32" "\32H\377\1\32\32I\377\202\32\32H\377\2FFj\377\357\357\362\377\206\377" "\377\377\377\14\325\325\335\377IIh\377\31\31B\377\32\32C\377\33\33D\377" "\33\33F\377\34\34G\377\35\35I\377\35\35J\377\36\36L\377\36\36M\377\40" "\40P\377\203\40\40Q\377\7\40\40P\37700\\\377\305\305\321\377ZZ{\377\33" "\33G\377\31\31E\377\31\31C\377\202\26\26A\377\21\27\27A\377\25\25A\377" "\26\26C\377\27\27E\377\27\27F\377\32\32J\377\31\31J\377\31\31L\377\33" "\33N\377\33\33O\377\34\34P\377\36\36R\377\37\37R\377\40\40Q\377\37\37" "P\377JJp\377\357\357\362\377\206\377\377\377\377\15\327\327\336\377Q" "Qp\377##K\377##L\377$$N\377%%O\377''Q\377((S\377**V\377++X\377,,Z\377" ",,[\377--]\377\203//^\377\3{{\231\377\357\357\362\377BBk\377\203--Z\377" "\21..[\377,,[\377--]\377,,^\377--`\37700c\37700d\37733h\37700h\37711" "h\37711j\37722j\37766m\37777n\37777o\37777n\37777o\377\202::p\377&::" "o\377;;o\377;;n\377::l\37799i\377CCp\377<>o\377<>m\377\202\77\77m\377\5>>m\377AAn\377@@m" "\377BBp\377CCo\377\202GGs\377\1HHt\377\202IIu\377\31IIv\377HHu\377ee" "\212\377\263\263\305\377\366\366\370\377\377\377\377\377\203\203\240" "\377EEo\377DDo\377EEo\377EEp\377GGs\377JJv\377JJw\377KKy\377NN|\377R" "R\177\377SS\201\377RR\177\377RR~\377RR}\377PP{\377NNx\377LLu\377LLt\377" "\202KKr\377\17LLt\377OOw\377PPz\377SS}\377VV\202\377ZZ\206\377]]\212" "\377``\216\377``\217\377bb\222\377ff\227\377gg\230\377ll\235\377nn\237" "\377qq\242\377\202oo\242\377\2pp\242\377tt\245\377\202ss\245\377\1uu" "\247\377\203uu\250\377\13vv\250\377xx\252\377{{\254\377ww\251\377vv\250" "\377yy\253\377||\256\377\200\200\261\377\202\202\263\377\201\201\262" "\377\200\200\261\377\202\201\201\262\377\1\207\207\267\377\202\205\205" "\266\377\202\205\205\265\377\2\211\211\271\377\214\214\274\377\202\217" "\217\276\377\4\214\214\274\377\216\216\276\377\220\220\277\377\220\220" "\300\377\202\220\220\277\377\4\222\222\301\377\225\225\304\377\230\230" "\307\377\231\231\307\377\202\230\230\307\377\203\232\232\311\377\3\231" "\231\307\377\236\236\314\377\244\244\322\377\202\245\245\323\377\202" "\246\246\324\377\10\251\251\326\377\252\252\327\377\254\254\331\377\257" "\257\333\377\256\256\332\377\257\257\333\377\260\260\335\377\257\257" "\334\377\202\263\263\337\377\4\264\264\341\377\262\262\336\377\264\264" "\340\377\267\267\343\377\202\266\266\342\377\7\271\271\344\377\272\272" "\346\377\267\266\341\377\247\245\310\377\202y~\377^N6\377J8\20\377\210" "I6\15\377\11M;\25\377{pm\377\242\236\270\377\267\267\341\377\272\271" "\345\377\261\257\325\377\222\213\231\377l^O\377O=\31\377\204I6\15\377" "\14O=\30\377YI,\377O=\27\377lU:\377\246\212\204\377\327\271\277\377\355" "\326\332\377\367\357\351\377\372\367\362\377\373\371\364\377\373\371" "\365\377\373\371\366\377\202\373\371\365\377#\373\370\363\377\372\366" "\360\377\370\360\347\377\366\352\335\377\365\340\307\377\364\327\262" "\377\365\324\252\377\364\322\250\377\364\320\247\377\363\315\245\377" "\362\313\241\377\361\310\237\377\360\306\233\377\360\304\233\377\357" "\303\230\377\357\300\226\377\356\275\223\377\355\272\221\377\350\265" "\213\377\313\234r\377\226rG\377cJ\40\377K8\17\377F5\20\377=1\30\3771" ",$\377'(,\377))2\37798D\377HFR\377aaj\377qqz\377pow\377st{\377\22\22" "M\377\205\23\23N\377\203\23\23M\377\3\23\23L\377\22\22K\377\22\22J\377" "\202\22\22I\377\5\23\23H\377\24\24I\377\24\24H\377\24\24G\377\24\24F" "\377\202\22\22E\377\3\22\22F\377\22\22G\377\20\20G\377\202\21\21H\377" "\1\21\21J\377\202\16\16H\377\202\17\17J\377\205\16\16J\377\202\16\16" "I\377\11\17\17J\377\17\17I\377\16\16H\377\17\17H\377\21\21H\377\21\21" "G\377\20\20F\377\21\21F\377\22\22F\377\202\22\22E\377\202\24\24F\377" "\1\26\26H\377\202\26\26I\377\1\26\26J\377\202\30\30K\377\6\30\30J\377" "\31\31L\377\33\33L\377\32\32K\377\34\34L\377\33\33L\377\202\33\33K\377" "\1\33\33L\377\204\34\34L\377\7\33\33L\377\33\33K\377\33\33I\377\33\33" "H\377\33\33G\377\32\32F\377\32\32D\377\203\31\31C\377\25\32\32D\377\33" "\33E\377\34\34G\377\35\35H\377\36\36J\377\36\36L\377\37\37M\377\40\40" "O\377\40\40Q\377!!R\377\"\"U\377##U\377$$W\377##W\377##V\377##U\377\37" "\37P\377\37\37O\377\36\36M\377\33\33J\377\33\33I\377\202\33\33H\377\3" "\33\33I\377\32\32I\377\33\33K\377\202\33\33M\377\3\34\34O\377\32\32O" "\377\34\34Q\377\202\35\35S\377\1\36\36T\377\202!!V\377\10!!T\377!!S\377" "\"\"S\377\"\"Q\377##P\377##O\377$$O\377$$M\377\202$$L\377\1$$M\377\202" "%%N\377\11&&P\377''Q\377((S\377))V\377++Y\377--\\\377//^\37700`\3771" "1b\377\20311c\377\2""33d\37722d\377\20222b\377\20222a\377\6""00`\377" "11a\37733c\37744e\37711d\37722f\377\20233h\377\3""55k\37744j\37744l\377" "\20255l\377\2""33k\37744l\377\20377n\377\202;;q\377\11<>m\377==m\377==l\377\202==m\377\15>>o\377" "AAq\377CCt\377DDv\377EEx\377DDx\377CCx\377EEy\377DDy\377DDx\377BBv\377" "AAt\377\77\77q\377\202>>o\377\4>>n\377==m\377<>s\377@@t\377" "\77\77r\377\77\77q\377@@q\377\77\77o\377\77\77q\377AAq\377AAr\377BBr" "\377BBs\377EEv\377GGx\377HHz\377HH|\377II}\377HH|\377JJ}\377HH|\377G" "G{\377FFy\377DDw\377AAt\377BBt\377DDu\377CCt\377CCs\377>>o\377BBr\377" "DDs\377DDt\377\202EEv\377\202FFw\377\2HHy\377HHx\377\202LL{\377\202O" "O}\377\23PP~\377PP\177\377PP~\377OO~\377NN}\377PP~\377OO|\377LLz\377" "LLy\377MMy\377LLx\377KKw\377LLw\377MMy\377PP}\377QQ~\377RR\201\377TT" "\202\377XX\206\377\202ZZ\211\377\6YY\210\377[[\211\377[[\210\377YY\205" "\377XX\203\377XX\202\377\202UU\200\377\16VV\201\377XX\203\377YY\205\377" "[[\207\377^^\213\377bb\220\377dd\223\377gg\226\377gg\227\377ii\232\377" "ll\234\377oo\240\377pp\241\377tt\246\377\202tt\247\377\6uu\246\377vv" "\250\377yy\253\377xx\252\377zz\253\377{{\254\377\202zz\253\377\10{{\254" "\377}}\256\377\200\200\261\377}}\256\377||\256\377\177\177\260\377\201" "\201\262\377\205\205\265\377\202\206\206\267\377\1\205\205\266\377\202" "\206\206\267\377\202\212\212\273\377\5\213\213\273\377\212\212\273\377" "\213\213\273\377\216\216\276\377\222\222\301\377\202\224\224\303\377" "\2\220\220\300\377\223\223\302\377\204\225\225\304\377\2\230\230\307" "\377\233\233\312\377\202\235\235\313\377\2\236\236\314\377\235\235\313" "\377\202\237\237\316\377\1\236\236\314\377\202\243\243\321\377\202\252" "\252\327\377\3\253\253\330\377\250\250\325\377\255\255\332\377\202\256" "\256\332\377\202\262\262\336\377\36\261\261\336\377\262\262\336\377\261" "\261\336\377\264\264\340\377\264\264\341\377\266\266\342\377\264\264" "\341\377\264\264\340\377\264\264\341\377\270\270\344\377\267\267\343" "\377\256\254\321\377\210\200\206\377gYG\377M:\24\377K7\14\377lN\10\377" "kM\11\377rR\10\377iK\11\377pP\7\377K7\14\377L:\23\377\211\202\212\377" "\260\257\327\377\270\267\343\377\261\257\324\377\220\211\226\377j\\K" "\377O=\30\377\204I6\15\377\26L9\22\377_P8\377\201wy\377|ro\377XG)\377" "Q<\25\377zY:\377\272\240\226\377\346\312\327\377\354\314\342\377\351" "\305\335\377\350\304\334\377\346\277\325\377\343\276\316\377\355\325" "\325\377\370\361\353\377\371\363\353\377\371\364\357\377\370\361\353" "\377\370\360\350\377\371\363\355\377\372\366\360\377\202\372\367\362" "\377\40\373\370\363\377\373\370\364\377\373\371\364\377\373\370\364\377" "\372\367\361\377\372\367\360\377\373\371\364\377\372\367\360\377\371" "\362\353\377\366\350\333\377\364\341\317\377\361\325\273\377\360\316" "\256\377\357\310\240\377\360\307\234\377\360\305\232\377\357\302\226" "\377\356\276\223\377\355\274\221\377\354\271\217\377\353\265\213\377" "\352\262\212\377\344\254\203\377\307\225k\377\223nD\377bI\37\377K8\17" "\377G5\20\377>2\32\3775.%\3770.3\377C@F\377\204\23\23N\377\203\24\24" "O\377\202\27\27Q\377\6\27\27P\377\26\26P\377\26\26O\377\26\26N\377\26" "\26M\377\25\25L\377\202\25\25K\377\203\25\25J\377\10\25\25K\377\27\27" "M\377\27\27N\377\26\26M\377\26\26N\377\23\23L\377\23\23M\377\21\21K\377" "\202\16\16I\377\5\17\17K\377\20\20K\377\17\17K\377\21\21L\377\17\17K" "\377\202\16\16J\377\1\16\16I\377\202\15\15H\377\203\15\15G\377\3\15\15" "F\377\20\20G\377\21\21H\377\203\20\20F\377\202\21\21G\377\203\25\25K" "\377\4\26\26L\377\27\27M\377\32\32O\377\33\33P\377\203\34\34P\377\202" "\35\35P\377\202\36\36P\377\206\37\37R\377\7\36\36Q\377\36\36O\377\35" "\35N\377\36\36M\377\36\36L\377\35\35J\377\36\36J\377\202\35\35I\377\13" "\36\36J\377\36\36K\377\36\36L\377\40\40N\377!!Q\377\"\"S\377##U\377#" "#V\377$$X\377$$Y\377%%Z\377\203%%[\377\202''[\377\5''Z\377&&X\377&&W" "\377$$U\377##T\377\202\40\40Q\377\12\"\"T\377\40\40S\377\40\40T\377!" "!V\377\37\37U\377\40\40V\377\37\37V\377\36\36U\377\36\36V\377\40\40W" "\377\202!!X\377\3##Y\377##X\377%%Z\377\202%%W\377\22$$U\377%%T\377%%" "S\377%%R\377%%Q\377''R\377''S\377((S\377++W\377,,X\377--Z\377..\\\377" "//^\377//`\37711b\37722e\37744g\37755h\377\20366i\377\4""77j\37777i\377" "77j\37766i\377\20266h\377\12""66g\37766h\37777i\37788k\37744h\37744i" "\37744j\37755k\37766m\37766n\377\20377n\377\17""66n\37755m\37777o\377" "99q\377::p\377<>s\377\77\77t\377@@u\377\77\77s\377@@s\377" "AAs\377@@r\377AAs\377\202CCt\377\20CCu\377DDv\377FFx\377HHz\377HH|\377" "II}\377JJ~\377II}\377JJ~\377II}\377HH|\377FFz\377EEx\377BBv\377CCv\377" "EEw\377\202EEv\377\2@@r\377DDu\377\202EEv\377\202GGx\377\2HHy\377GGy" "\377\202JJ{\377\2NN~\377NN}\377\202QQ\200\377\202RR\202\377\5RR\201\377" "QQ\201\377PP\200\377RR\200\377PP\177\377\202NN|\377\"OO|\377OO{\377M" "Mz\377NN{\377OO|\377RR\177\377SS\201\377TT\203\377UU\204\377YY\210\377" "\\\\\214\377[[\213\377ZZ\212\377\\\\\214\377]]\213\377\\\\\211\377[[" "\210\377[[\207\377YY\206\377XX\205\377ZZ\206\377[[\210\377]]\212\377" "^^\214\377aa\220\377ee\224\377ff\226\377hh\231\377ii\232\377jj\234\377" "ll\235\377pp\241\377qq\243\377tt\247\377\203uu\247\377\5vv\250\377yy" "\253\377xx\252\377zz\253\377{{\254\377\202zz\253\377\10{{\254\377}}\256" "\377\200\200\261\377}}\256\377||\256\377\177\177\260\377\201\201\262" "\377\205\205\265\377\202\206\206\267\377\1\205\205\266\377\202\206\206" "\267\377\202\212\212\273\377\5\213\213\273\377\212\212\273\377\213\213" "\273\377\216\216\276\377\222\222\301\377\202\224\224\303\377\2\220\220" "\300\377\223\223\302\377\204\225\225\304\377\2\230\230\307\377\233\233" "\312\377\202\235\235\313\377\2\236\236\314\377\235\235\313\377\202\237" "\237\316\377\1\236\236\314\377\202\243\243\321\377\202\252\252\327\377" "\3\253\253\330\377\250\250\325\377\255\255\332\377\202\256\256\332\377" "\202\262\262\336\377\1\261\261\336\377\202\262\262\336\377\1\264\264" "\341\377\202\266\266\342\377\6\264\264\341\377\264\264\340\377\252\251" "\316\377\222\213\232\377k^O\377L:\23\377\206I6\15\377\2`F\12\377S=\14" "\377\203I6\15\377\4L:\23\377cUA\377\212\202\213\377\255\253\316\377\202" "\272\272\346\377\4\255\253\316\377\214\204\215\377fXD\377L:\23\377\203" "I6\15\377\30K8\17\377mS-\377\253\205c\377\340\254\215\377\353\251\216" "\377\350\244\214\377\342\244\216\377\345\266\244\377\350\305\302\377" "\350\311\321\377\345\277\316\377\337\265\303\377\353\320\315\377\367" "\356\345\377\371\361\351\377\371\361\346\377\371\362\352\377\371\363" "\354\377\370\360\350\377\367\355\342\377\370\357\346\377\371\363\355" "\377\372\365\360\377\372\367\362\377\202\372\370\363\377\34\372\367\362" "\377\372\367\361\377\373\372\365\377\373\371\363\377\373\370\362\377" "\372\367\361\377\372\365\356\377\371\364\355\377\370\362\353\377\366" "\354\342\377\362\334\311\377\356\314\254\377\356\303\233\377\360\303" "\231\377\357\301\226\377\356\276\223\377\355\272\220\377\354\267\215" "\377\352\263\212\377\351\261\211\377\347\256\205\377\343\252\177\377" "\304\222h\377\222lB\377bH\37\377J7\16\377G6\20\377C6\34\377\207\27\27" "R\377\203\27\27Q\377\202\26\26P\377\3\30\30Q\377\30\30P\377\30\30O\377" "\202\27\27N\377\203\27\27M\377\202\27\27N\377\3\30\30O\377\26\26N\377" "\30\30Q\377\202\30\30R\377\5\26\26P\377\24\24N\377\23\23M\377\22\22N" "\377\17\17K\377\202\16\16J\377\202\15\15I\377\6\16\16J\377\17\17J\377" "\16\16I\377\17\17J\377\16\16I\377\16\16H\377\202\17\17H\377\3\17\17G" "\377\21\21H\377\21\21I\377\202\21\21H\377\203\22\22H\377\202\22\22I\377" "\7\24\24K\377\26\26M\377\25\25M\377\27\27N\377\33\33P\377\33\33O\377" "\35\35R\377\202\36\36R\377\202\37\37S\377\3\40\40T\377\40\40U\377\"\"" "U\377\202\"\"V\377\7\"\"U\377\"\"T\377!!S\377!!R\377\40\40P\377\40\40" "O\377\37\37N\377\202\40\40N\377\13\40\40O\377\40\40P\377!!P\377!!Q\377" "\"\"R\377\"\"T\377$$U\377%%X\377&&Y\377''\\\377((]\377\202((^\377\7)" ")_\377((^\377((]\377))^\377((]\377))]\377((\\\377\202(([\377\1%%X\377" "\202&&Y\377\2##X\377''[\377\203%%[\377\1$$Z\377\202$$[\377\2$$\\\377" "!!Y\377\202\"\"Z\377\3\"\"Y\377\"\"W\377$$Y\377\202%%W\377\23%%U\377" "&&V\377&&U\377''T\377((V\377++X\377,,Y\377,,Z\377..\\\377//^\37700`\377" "11b\37722c\37733e\37744g\37766i\37788l\37788m\37799n\377\20288m\377\3" "88l\37799m\37799l\377\202::l\377\11::m\377;;n\377::m\377;;o\377<\33\377TB!\377O;\24\377vR0\377\260x]\377\345\250" "\221\377\362\267\237\377\362\266\241\377\362\264\240\377\362\265\241" "\377\363\267\241\377\365\275\245\377\365\277\245\377\365\274\242\377" "\364\266\233\377\361\255\216\377\357\246\203\377\353\240|\377\344\237" "\204\377\356\304\260\377\364\341\322\377\370\355\341\377\367\352\334" "\377\366\347\326\377\363\337\305\377\356\316\254\377\353\306\240\377" "\353\272\210\377\357\313\243\377\355\323\267\377\357\333\306\377\361" "\337\314\377\365\347\325\377\370\356\340\377\371\363\352\377\372\367" "\361\377\372\370\362\377\373\370\363\377\372\370\361\377\372\367\361" "\377\372\365\356\377\372\364\354\377\371\363\352\377\202\371\362\352" "\377\20\371\363\354\377\372\367\362\377\372\367\361\377\371\363\356\377" "\366\355\346\377\360\336\320\377\352\314\264\377\346\273\234\377\346" "\264\215\377\350\264\213\377\350\262\210\377\346\257\204\377\345\253" "\201\377\343\251~\377\341\246{\377\334\241u\377\210\27\27R\377\204\27" "\27Q\377\202\30\30R\377\202\30\30Q\377\204\30\30P\377\203\30\30Q\377" "\2\30\30R\377\31\31S\377\203\34\34U\377\3\32\32U\377\31\31T\377\30\30" "S\377\202\24\24O\377\1\22\22M\377\202\21\21L\377\1\22\22M\377\202\22" "\22N\377\1\22\22M\377\202\22\22L\377\203\22\22K\377\203\21\21K\377\203" "\23\23L\377\1\24\24M\377\202\25\25N\377\203\30\30Q\377\11\31\31R\377" "\33\33R\377\32\32Q\377\35\35T\377\36\36U\377\36\36T\377!!W\377\"\"X\377" "##X\377\202##Y\377\4$$Z\377%%[\377%%Z\377%%[\377\202%%Z\377\2$$X\377" "$$W\377\202##V\377\13##U\377$$U\377$$V\377%%W\377%%X\377''Z\377''[\377" "((\\\377((]\377))_\377**`\377\202++b\377\203,,c\377\202++b\377\1++a\377" "\202++`\377\202--b\377\22**`\377++`\377**_\377((^\377((_\377''_\377(" "(_\377''`\377&&^\377''_\377&&^\377%%]\377##]\377!!Y\377!!Z\377%%\\\377" "%%]\377'']\377\202((]\377\1(([\377\202))\\\377\17,,]\377--^\37700`\377" "00a\37711c\37722c\37722e\37766h\37777k\37788l\37799n\37799o\377;;p\377" ";;q\377<>s\377\202>>r\377\203>>s\377" "\1\77\77t\377\202\77\77u\377\7;;r\377<>u\377\77\77v\377\77\77u\377" "@@w\377CCy\377EE{\377DDz\377FF{\377\203HH|\377\1II}\377\202KK\177\377" "\202LL\200\377\2NN\202\377OO\204\377\204PP\205\377\7PP\204\377OO\203" "\377MM\202\377LL\201\377JJ\177\377KK\177\377MM\201\377\202MM\200\377" "\2II|\377LL\200\377\202NN\201\377\202OO\203\377\202PP\203\377\202TT\207" "\377\2WW\211\377XX\213\377\203[[\215\377\35\\\\\216\377ZZ\214\377YY\213" "\377YY\212\377[[\214\377YY\212\377WW\210\377YY\212\377ZZ\212\377ZZ\211" "\377YY\211\377YY\212\377\\\\\214\377^^\216\377^^\217\377__\220\377cc" "\224\377ee\226\377ff\227\377gg\230\377jj\233\377kk\233\377kk\232\377" "ii\230\377jj\231\377hh\230\377ii\230\377kk\232\377ll\233\377\202mm\234" "\377\3nn\237\377oo\237\377rr\243\377\202tt\245\377\13vv\250\377yy\252" "\377{{\253\377}}\255\377}}\256\377~~\257\377||\256\377\200\200\261\377" "\177\177\260\377~~\257\377\177\177\260\377\202\202\202\263\377\4\203" "\203\264\377\202\202\263\377\204\204\264\377\207\207\267\377\202\205" "\205\265\377\2\207\207\267\377\214\214\274\377\202\213\213\273\377\7" "\212\212\273\377\214\214\274\377\217\217\276\377\222\222\301\377\221" "\221\301\377\220\220\277\377\217\217\276\377\202\225\225\304\377\11\230" "\230\307\377\231\231\307\377\230\230\307\377\234\234\313\377\237\237" "\316\377\236\236\314\377\232\232\311\377\231\231\307\377\237\237\315" "\377\204\242\242\320\377\5\250\250\325\377\252\252\327\377\247\247\324" "\377\254\254\331\377\253\253\330\377\202\257\257\333\377\1\261\261\336" "\377\203\262\262\336\377\13\257\257\334\377\261\261\336\377\264\264\340" "\377\271\271\344\377\267\267\343\377\264\264\340\377\264\264\341\377" "\264\263\333\377\240\233\263\377xni\377R@\36\377\206I6\15\377\3J7\17" "\377RA\37\377M;\25\377\205I6\15\377\4L:\24\377eWC\377\214\205\217\377" "\256\254\320\377\202\272\271\345\377\3\263\262\330\377\223\214\233\377" "\\L1\377\202I6\15\377)L9\21\377iX8\377\250\235\212\377\336\274\261\377" "\351\252\231\377\333\222}\377\324\210t\377\335\225\201\377\346\237\213" "\377\354\251\225\377\361\262\236\377\361\262\237\377\360\255\232\377" "\357\253\226\377\360\256\224\377\362\257\222\377\361\250\206\377\357" "\240|\377\355\233x\377\354\231v\377\352\231v\377\351\233w\377\346\244" "\205\377\323\230z\377\304\212n\377\301\203c\377\302\200]\377\314\211" "^\377\314\213^\377\322\220a\377\320\217c\377\332\251\203\377\325\240" "w\377\320\216`\377\345\267\215\377\362\327\264\377\365\343\306\377\366" "\345\315\377\371\361\346\377\372\366\360\377\372\367\361\377\202\372" "\366\357\377\23\372\365\355\377\371\362\350\377\370\361\345\377\372\364" "\353\377\373\370\361\377\372\367\361\377\372\366\360\377\371\365\357" "\377\371\363\355\377\370\361\353\377\366\355\345\377\357\340\321\377" "\347\312\261\377\344\267\227\377\345\260\210\377\347\257\205\377\345" "\255\202\377\343\251\200\377\342\247}\377\204\27\27R\377\205\31\31T\377" "\204\31\31S\377\1\31\31R\377\202\30\30R\377\1\31\31R\377\203\33\33S\377" "\204\33\33T\377\203\34\34U\377\202\34\34V\377\1\35\35W\377\203\34\34" "V\377\10\31\31T\377\30\30S\377\26\26Q\377\25\25P\377\22\22N\377\22\22" "M\377\24\24O\377\23\23M\377\202\24\24N\377\1\22\22M\377\202\22\22L\377" "\202\21\21J\377\1\22\22K\377\202\22\22L\377\1\24\24M\377\202\25\25N\377" "\202\24\24M\377\1\23\23M\377\202\25\25N\377\7\27\27P\377\30\30Q\377\33" "\33R\377\34\34S\377\36\36V\377\37\37W\377!!X\377\203$$Z\377\4%%\\\377" "%%[\377&&]\377&&\\\377\202%%[\377\1%%Z\377\202$$Y\377\1$$X\377\202%%" "X\377\202&&Z\377\202((]\377\5((^\377))_\377))`\377**a\377,,c\377\205" ",,d\377\202,,c\377\202++b\377\205..d\377\202--d\377\3))a\377++c\377*" "*b\377\202))a\377\14((a\377''`\377''_\377$$]\377##\\\377&&_\377&&^\377" "%%]\377'']\377((^\377**_\377++_\377\202--`\377\17--a\377//a\37700b\377" "00c\37722e\37744g\37777j\37788m\37799n\377::o\377::p\377;;r\377<>s\377\203>>t\377\1\77\77u\377\202\77\77t\377\3@@u\377AAv\377" "AAw\377\202\77\77u\377\2BBx\377BBy\377\202\77\77u\377\4==u\377>>u\377" "==u\377\77\77v\377\203>>u\377\202<\32" "\377l_P\377\221\212\227\377\224\215\234\377m`R\377N<\27\377VA\36\377" "\210n`\377\302\247\254\377\350\325\333\377\356\344\346\377\356\345\346" "\377\354\332\326\377\344\274\256\377\330\236\210\377\307\204n\377\307" "}g\377\321\205p\377\332\216y\377\343\230\205\377\350\234\212\377\344" "\225\177\377\335\207n\377\340\212p\377\340\210l\377\345\211m\377\354" "\226v\377\361\242\203\377\364\254\220\377\364\257\221\377\362\252\211" "\377\362\247\205\377\360\243\202\377\353\241\202\377\342\231z\377\340" "\223r\377\322\204a\377\263fE\377\240S1\377\245dD\377\253iC\377\244X1" "\377\267xO\377\320\227l\377\344\265\210\377\355\306\234\377\357\317\251" "\377\363\334\301\377\370\362\350\377\371\364\356\377\202\372\366\360" "\377\3\372\365\356\377\371\363\351\377\372\364\352\377\202\372\365\354" "\377\202\372\365\355\377\13\372\365\356\377\372\366\357\377\371\365\356" "\377\370\361\352\377\366\360\347\377\364\352\340\377\352\324\303\377" "\341\270\232\377\334\250\201\377\335\246{\377\341\250}\377\204\27\27" "R\377\206\31\31T\377\205\31\31S\377\2\31\31R\377\31\31S\377\205\33\33" "T\377\204\34\34U\377\203\34\34V\377\1\35\35W\377\204\36\36X\377\1\34" "\34V\377\202\31\31T\377\4\26\26Q\377\25\25P\377\26\26Q\377\25\25P\377" "\202\26\26P\377\203\24\24N\377\1\22\22M\377\203\22\22L\377\2\22\22M\377" "\25\25O\377\202\26\26P\377\3\25\25O\377\27\27Q\377\26\26O\377\202\27" "\27Q\377\4\30\30R\377\33\33S\377\34\34T\377\34\34U\377\202\40\40X\377" "\1!!Y\377\202%%\\\377\1&&]\377\202''_\377\202&&^\377\202'']\377\1''\\" "\377\202&&[\377\204''\\\377\3((^\377**_\377++a\377\202++b\377\1,,c\377" "\202,,d\377\3--e\377//f\377//g\377\205//f\377\1//e\377\20211g\377\203" "11h\377\202//f\377\5++d\377,,d\377))a\377++c\377++d\377\202**c\377\15" "))a\377''_\377&&^\377%%^\377&&_\377&&^\377''^\377))`\377++`\377++a\377" "..b\377..c\37722f\377\20233g\377\2""33h\37777k\377\20299m\377\4<>t\377\205@@v\377\4\77\77u\377@@v" "\377AAw\377BBx\377\203CCy\377\202BBy\377\2CCz\377DD{\377\202AAx\377\1" "@@w\377\202AAx\377\203\77\77v\377\202==u\377\10\77\77v\377@@w\377AAx" "\377EE|\377GG}\377HH~\377II~\377JJ\177\377\202KK\177\377\1NN\202\377" "\204PP\205\377\2PP\206\377RR\207\377\202TT\211\377\4TT\210\377RR\207" "\377SS\207\377RR\207\377\202QQ\207\377\2PP\205\377PP\204\377\203PP\205" "\377\2NN\202\377TT\210\377\202VV\212\377\204WW\213\377\202YY\214\377" "\3]]\220\377``\223\377bb\225\377\203cc\225\377\1bb\225\377\202aa\223" "\377\2``\223\377^^\220\377\202``\222\377\1aa\222\377\202``\221\377\12" "``\222\377cc\225\377cc\226\377dd\226\377gg\230\377ii\233\377ll\236\377" "mm\236\377nn\237\377pp\241\377\202oo\240\377\1pp\241\377\202nn\240\377" "\15oo\240\377qq\241\377nn\240\377qq\242\377ss\245\377tt\245\377ww\250" "\377ww\251\377vv\250\377xx\252\377zz\252\377{{\254\377\200\200\261\377" "\202\202\202\263\377\1\201\201\262\377\202\204\204\264\377\4\203\203" "\264\377\205\205\266\377\210\210\270\377\207\207\267\377\202\211\211" "\271\377\202\213\213\273\377\202\212\212\273\377\14\216\216\276\377\221" "\221\301\377\224\224\303\377\223\223\302\377\222\222\301\377\224\224" "\303\377\225\225\304\377\230\230\307\377\226\226\305\377\225\225\304" "\377\231\231\307\377\232\232\310\377\202\235\235\313\377\7\233\233\312" "\377\237\237\315\377\241\241\317\377\243\243\321\377\240\240\316\377" "\237\237\316\377\242\242\320\377\204\247\247\324\377\5\254\254\331\377" "\256\256\332\377\254\254\331\377\256\256\332\377\260\260\335\377\202" "\263\263\337\377\3\264\264\340\377\264\264\341\377\267\267\343\377\202" "\264\264\340\377\7\264\264\341\377\264\264\340\377\270\267\341\377\240" "\234\267\377ynl\377ZJ.\377J7\17\377\212I6\15\377\12[K0\377\203z}\377" "\250\245\304\377\271\270\343\377\271\271\345\377\270\267\341\377\244" "\240\274\377}sr\377ZJ-\377J8\20\377\205I6\15\377CP>\26\377taC\377\245" "\215\204\377\316\257\271\377\326\266\303\377\326\266\305\377\330\271" "\306\377\333\302\310\377\335\304\306\377\334\306\306\377\335\306\306" "\377\330\275\266\377\322\264\254\377\277\211w\377\277\201h\377\304y`" "\377\311xa\377\317{f\377\324\177j\377\316wa\377\320wa\377\322xa\377\330" "~g\377\347\217w\377\361\242\212\377\364\253\230\377\366\264\240\377\365" "\255\227\377\364\253\217\377\363\254\215\377\363\250\211\377\363\246" "\210\377\360\241\203\377\364\251\214\377\367\257\221\377\360\244\206" "\377\321\203f\377\252[>\377\236P1\377\245W4\377\252]7\377\260c9\377\246" "_4\377\253j@\377\304\213b\377\335\264\222\377\351\313\254\377\360\332" "\301\377\365\347\325\377\367\356\341\377\370\357\343\377\371\363\351" "\377\372\365\354\377\372\363\351\377\371\362\350\377\371\362\347\377" "\371\362\350\377\371\363\352\377\371\364\354\377\371\363\353\377\367" "\361\350\377\366\357\345\377\364\354\340\377\364\354\341\377\363\352" "\340\377\351\326\307\377\333\272\243\377\204\27\27R\377\207\31\31T\377" "\203\31\31S\377\203\32\32T\377\203\34\34U\377\1\35\35V\377\204\36\36" "W\377\206\36\36X\377\204\37\37Y\377\4\35\35W\377\34\34V\377\31\31T\377" "\30\30S\377\202\27\27R\377\3\26\26Q\377\26\26P\377\24\24N\377\202\26" "\26P\377\205\24\24N\377\1\25\25O\377\202\26\26P\377\3\27\27Q\377\30\30" "R\377\31\31S\377\202\33\33T\377\2\34\34U\377\35\35V\377\202\36\36W\377" "\202\40\40Y\377\1##\\\377\202&&^\377\1&&_\377\203''`\377\1((_\377\203" "))`\377\206))_\377\202**a\377\2++b\377,,c\377\203,,d\377\2,,e\377..f" "\377\20400g\377\202//g\377\202//f\377\20211h\377\20311i\377\2""11j\377" "22j\377\20200g\377\4,,e\37700h\377..g\377,,e\377\202++d\377\13))a\377" "((a\377''`\377&&^\377%%]\377''`\377))`\377**a\377,,c\377..c\377//e\377" "\20211f\377\15""44h\37744j\37777l\37799n\377::p\377<>t" "\377\77\77u\377\77\77v\377@@v\377@@w\377AAx\377\202BBy\377\202CCz\377" "\3CCy\377DDy\377EE{\377\204EE|\377\202CCz\377\3FF|\377FF}\377BBy\377" "\203AAx\377\1BBy\377\205AAx\377\1BBy\377\202DD{\377\202HH~\377\7KK\200" "\377KK\201\377LL\202\377NN\204\377OO\204\377PP\205\377QQ\207\377\204" "RR\207\377\1VV\212\377\203WW\213\377\202VV\212\377\6UU\211\377TT\210" "\377RR\207\377QQ\207\377PP\205\377PP\206\377\202QQ\207\377\2PP\205\377" "RR\207\377\202TT\211\377\202VV\213\377\202WW\214\377\6ZZ\216\377[[\217" "\377__\222\377aa\224\377cc\226\377dd\226\377\202ee\230\377\4ee\227\377" "cc\226\377dd\230\377dd\227\377\202cc\224\377\2cc\226\377dd\227\377\202" "cc\225\377\13ff\230\377gg\231\377hh\231\377hh\232\377jj\234\377mm\236" "\377oo\240\377qq\242\377ss\244\377tt\246\377uu\246\377\202ss\245\377" "\4rr\243\377ss\244\377tt\245\377vv\247\377\202tt\245\377\4ww\250\377" "ww\251\377yy\252\377zz\253\377\202||\255\377\3~~\257\377\177\177\260" "\377\201\201\262\377\202\202\202\263\377\1\201\201\262\377\202\205\205" "\265\377\10\205\205\266\377\210\210\270\377\207\207\267\377\206\206\267" "\377\212\212\272\377\213\213\273\377\217\217\276\377\214\214\274\377" "\202\216\216\276\377\1\220\220\300\377\204\225\225\304\377\11\226\226" "\305\377\232\232\310\377\233\233\312\377\232\232\311\377\231\231\307" "\377\232\232\311\377\233\233\312\377\241\241\317\377\243\243\321\377" "\202\242\242\320\377\7\246\246\324\377\247\247\324\377\245\245\323\377" "\244\244\322\377\247\247\324\377\253\253\330\377\254\254\331\377\202" "\256\256\332\377\6\252\252\327\377\256\256\332\377\254\254\331\377\256" "\256\332\377\262\262\336\377\267\267\343\377\202\270\270\344\377\1\262" "\262\336\377\203\264\264\341\377\3\247\243\301\377\204{\201\377]M4\377" "\207I6\15\377\4L9\22\377bT>\377^N5\377J8\20\377\205I6\15\377\4L:\24\377" "dUA\377\214\204\215\377\260\256\322\377\202\272\272\346\377J\266\265" "\336\377\220\211\226\377M:\24\377I6\15\377J7\16\377eT0\377\241\223}\377" "\327\316\303\377\356\346\337\377\356\344\335\377\357\346\341\377\357" "\346\342\377\354\340\334\377\346\330\321\377\350\332\323\377\347\327" "\316\377\350\327\315\377\354\334\323\377\344\303\256\377\352\323\303" "\377\351\305\252\377\350\300\232\377\342\261\214\377\316\215j\377\272" "rY\377\301qZ\377\302pY\377\305r[\377\317va\377\333\177j\377\341\210q" "\377\347\217w\377\352\222y\377\352\224|\377\355\234\203\377\362\251\221" "\377\366\264\235\377\364\245\220\377\352uf\377\334ZO\377\354\217y\377" "\364\241\205\377\371\256\224\377\372\264\235\377\370\252\220\377\352" "\217p\377\323xX\377\277nN\377\266iD\377\256f@\377\237X6\377\234U1\377" "\262kB\377\267vK\377\307\215c\377\313\223i\377\325\243x\377\342\266\217" "\377\361\326\270\377\367\352\327\377\370\360\342\377\371\362\347\377" "\371\362\346\377\371\362\347\377\370\361\345\377\370\361\347\377\370" "\361\345\377\367\357\343\377\365\355\340\377\364\354\340\377\366\360" "\346\377\366\360\350\377\360\346\332\377\347\324\305\377\204\27\27R\377" "\205\31\31T\377\204\34\34V\377\207\34\34U\377\1\35\35V\377\202\36\36" "W\377\210\36\36X\377\203\37\37Y\377\202!![\377\202\40\40Z\377\3\36\36" "X\377\35\35X\377\30\30S\377\202\27\27R\377\3\24\24O\377\26\26Q\377\26" "\26P\377\203\25\25O\377\203\24\24N\377\202\25\25O\377\2\27\27Q\377\30" "\30R\377\204\31\31S\377\2\32\32T\377\33\33T\377\202\35\35V\377\15\36" "\36W\377\37\37X\377!!Z\377\"\"Z\377$$]\377%%]\377$$]\377&&^\377((`\377" "))a\377**b\377**a\377++b\377\204**a\377\202++b\377\1++c\377\202,,d\377" "\2--e\377--f\377\202..f\377\20300g\377\21222j\377\20366m\377\20222k\377" "\20200h\377\204..g\377\202,,e\377\3++c\377))a\377((a\377\202++c\377\13" "--e\377//e\37700g\37711g\37722h\37733i\37755k\37766l\37788n\377;;p\377" "<>u\377AAx\377\202" "DD{\377\202FF}\377\10KK\200\377LL\200\377KK\201\377MM\203\377OO\204\377" "PP\206\377SS\210\377UU\212\377\203VV\212\377\1WW\213\377\203XX\215\377" "\203WW\214\377\202WW\213\377\2VV\212\377UU\211\377\203VV\213\377\2TT" "\211\377UU\212\377\202VV\213\377\202ZZ\216\377\202[[\220\377\4^^\222" "\377``\223\377bb\226\377ee\230\377\202ee\231\377\1gg\232\377\203ff\232" "\377\1gg\232\377\202ee\227\377\3dd\230\377dd\227\377ee\230\377\202dd" "\227\377\10gg\231\377ii\233\377gg\232\377ii\233\377kk\235\377oo\241\377" "qq\243\377ss\245\377\202vv\250\377\1ww\251\377\202yy\252\377\14ww\251" "\377vv\250\377xx\252\377ww\251\377yy\252\377{{\255\377||\255\377{{\255" "\377||\255\377}}\255\377\177\177\260\377\200\200\261\377\203\205\205" "\265\377\202\203\203\264\377\1\205\205\266\377\202\207\207\267\377\202" "\212\212\273\377\7\212\212\272\377\212\212\273\377\213\213\273\377\217" "\217\276\377\214\214\274\377\217\217\276\377\221\221\301\377\204\225" "\225\304\377\3\226\226\305\377\232\232\310\377\234\234\313\377\203\233" "\233\312\377\2\237\237\316\377\242\242\320\377\203\243\243\321\377\7" "\245\245\323\377\250\250\325\377\247\247\324\377\245\245\323\377\246" "\246\324\377\251\251\326\377\255\255\332\377\202\254\254\331\377\2\262" "\262\336\377\263\263\337\377\203\262\262\336\377\203\266\266\342\377" "\7\265\265\341\377\270\270\344\377\264\264\340\377\251\247\312\377\201" "x|\377\\M3\377I7\16\377\210I6\15\377\10vke\377\251\247\311\377\267\266" "\342\377\267\267\342\377\244\241\277\377~ts\377ZJ.\377J8\20\377\205I" "6\15\377MM;\26\377k^P\377\204{\177\377k]N\377M:\24\377YG!\377\214~c\377" "\315\304\267\377\361\352\345\377\363\355\347\377\364\355\350\377\364" "\355\347\377\363\353\344\377\362\352\343\377\361\351\342\377\362\352" "\344\377\361\352\344\377\361\351\341\377\363\353\345\377\364\355\347" "\377\361\346\335\377\354\327\306\377\357\334\313\377\356\334\314\377" "\346\306\255\377\333\252\207\377\310\200R\377\260{_\377\230^I\377\240" "ZE\377\266kT\377\304p\\\377\331{h\377\344\205s\377\354\221}\377\361\236" "\210\377\352\215u\377\336|b\377\321l[\377\324`X\377\336XU\377\350ic\377" "\355zk\377\360\230\200\377\357\222v\377\360\230|\377\364\243\212\377" "\366\246\220\377\362\216v\377\345t\\\377\341}d\377\332\200c\377\316|" "[\377\306{W\377\265rN\377\252jI\377\234^=\377\242eA\377\243f@\377\263" "wN\377\301\210_\377\317\223f\377\330\231h\377\342\254y\377\355\306\232" "\377\362\332\272\377\365\347\322\377\367\356\340\377\367\357\342\377" "\366\356\341\377\364\352\333\377\361\345\322\377\361\346\324\377\364" "\355\341\377\357\342\323\377\343\315\270\377\321\257\231\377\204\27\27" "R\377\205\31\31T\377\204\34\34V\377\210\35\35W\377\204\36\36X\377\211" "\37\37Y\377\203!![\377\1\"\"[\377\202!![\377\1\34\34V\377\202\33\33U" "\377\204\30\30S\377\212\31\31T\377\1\31\31S\377\202\34\34U\377\5\35\35" "V\377\35\35W\377\37\37X\377\36\36W\377\37\37X\377\202!!Z\377\2\"\"[\377" "&&^\377\202((a\377\1**b\377\202**c\377\2**b\377++c\377\210,,d\377\202" "--f\377\20300g\377\20400h\377\20422k\377\20522j\377\1""22k\377\20566" "n\377\20233k\377\1""22j\377\20200h\377\1,,e\377\202++d\377\5**c\377*" "*b\377((a\377++c\377**c\377\202++c\377\15--e\377//f\37711h\37733i\377" "44j\37766l\37788o\37799o\377;;r\377<\32\377l_Q\377\225\217\240\377\265" "\265\335\377\271\271\345\377\271\271\344\377\265\264\334\377\235\231" "\257\377ujb\377R@\36\377\205I6\15\377\4L:\21\377vgG\377\266\252\230\377" "\347\337\327\377\202\362\354\346\377\2\363\355\351\377\363\355\347\377" "\202\364\356\351\377B\364\355\350\377\364\355\347\377\364\356\347\377" "\364\355\346\377\364\355\350\377\363\354\346\377\363\354\345\377\363" "\353\345\377\363\353\344\377\357\342\330\377\347\313\261\377\352\325" "\307\377\356\340\325\377\354\332\314\377\323\246\207\377\222T5\377p<" ")\377o>.\377\201A3\377\265^L\377\300lV\377\325vb\377\344\201q\377\355" "\216{\377\364\237\210\377\362\233\203\377\347\213v\377\353\214w\377\354" "\212u\377\354\215w\377\354\211p\377\346\203k\377\352\210r\377\361\240" "\214\377\355\211n\377\333nR\377\332pX\377\325yf\377\242^N\377\225RG\377" "\332|e\377\342\201f\377\313nM\377\300nL\377\253cA\377\243a@\377\213M" ".\377\232W5\377\242_9\377\233Y5\377\240]7\377\251c8\377\271q>\377\313" "\207Q\377\333\237i\377\344\267\207\377\353\315\251\377\357\334\303\377" "\360\343\317\377\352\325\274\377\350\324\275\377\346\321\277\377\334" "\276\247\377\326\260\226\377\323\242\203\377\31\31T\377\212\34\34V\377" "\202\35\35W\377\213\36\36X\377\202\37\37Y\377\213!![\377\203\"\"[\377" "\203\35\35X\377\203\30\30S\377\1\27\27R\377\204\31\31T\377\203\27\27" "R\377\203\26\26Q\377\1\27\27R\377\205\31\31T\377\11\30\30S\377\32\32" "U\377\34\34V\377\35\35W\377\37\37Y\377##]\377%%^\377&&_\377''`\377\203" "++c\377\1--e\377\202,,e\377\204--f\377\202..f\377\202//g\377\20200h\377" "\1""11i\377\20622k\377\20255m\377\20666n\377\20277n\377\20377o\377\202" "66n\377\4""33k\37711i\37700h\37711i\377\20200h\377\3//h\377..g\377,," "e\377\204,,d\377\12--f\37711i\37722j\37755m\37766m\377::q\377<\17\377\212\202\211\377\262" "\261\327\377\267\267\343\377\270\267\343\377\255\253\317\377\214\205" "\216\377dU@\377K9\21\377\205I6\15\377VJ8\20\377[K/\377wlf\377i[J\377" "N<\27\377TB\34\377\213}a\377\313\301\264\377\362\353\346\377\370\362" "\356\377\367\361\355\377\366\360\354\377\366\360\353\377\366\360\352" "\377\365\357\352\377\366\360\354\377\367\362\356\377\365\357\353\377" "\364\355\346\377\362\352\344\377\361\350\341\377\360\347\341\377\362" "\351\344\377\361\351\343\377\362\352\343\377\363\354\346\377\363\354" "\350\377\362\353\344\377\362\351\343\377\361\351\342\377\360\346\337" "\377\356\343\334\377\354\341\331\377\352\335\325\377\351\333\322\377" "\346\325\312\377\330\272\244\377\245qR\377o\77*\377f7(\377\211B4\377" "\303aR\377\307dT\377\254SA\377\254YC\377\274eO\377\312kU\377\330o]\377" "\337vb\377\345xg\377\346ue\377\337kY\377\335xh\377\305mc\377\273i`\377" "\335~q\377\344\206y\377\356\227\205\377\364\247\225\377\363\242\214\377" "\357\221|\377\342}f\377\336wb\377\352\202l\377\347}a\377\336pQ\377\315" "kH\377\253Z8\377\203@#\377w;!\377e2\35\377V(\26\377U(\25\377[(\25\377" "^)\24\377k.\24\377|5\26\377\216B\34\377\241W+\377\241]2\377\245d8\377" "\251h<\377\256mC\377\263tN\377\274\177\\\377\32\32U\377\203\34\34V\377" "\211\35\35W\377\203\36\36X\377\203\37\37Y\377\211!![\377\202\"\"[\377" "\211##]\377\1$$^\377\202%%^\377\1&&_\377\203\"\"[\377\203\35\35W\377" "\202\31\31T\377\203\32\32U\377\206\31\31T\377\202\33\33U\377\2\35\35" "W\377\36\36X\377\203\37\37Y\377\5!![\377\"\"[\377##]\377$$^\377''a\377" "\202))b\377\1--f\377\202..g\377\20300h\377\1""22j\377\21022k\377\202" "33k\377\20255m\377\20466n\377\21277o\377\203;;r\377\10""77o\37777n\377" "66n\37744l\37766n\37733k\37722k\37722j\377\20211i\377\2""00h\377..g\377" "\20200h\377\10""11i\37733k\37766n\37777o\37788p\377::q\377;;r\377<,\377\204:(\377\214@,\377\212E.\377\234" "R=\377\262^H\377\277eP\377\312jT\377\316jV\377\320jX\377\273aO\377\212" "E<\377\244VP\377\346\212~\377\357\244\227\377\343\204s\377\347\206s\377" "\361\236\217\377\363\244\224\377\363\235\211\377\362\224}\377\361\215" "v\377\360\215s\377\353\201g\377\341sV\377\315eI\377\250S3\377\206>!\377" "m1\30\377i3\33\377i4\33\377e0\31\377a+\25\377b+\24\377h-\25\377w6\30" "\377\203<\31\377\211\77\31\377\216C\33\377\217D\34\377\216L%\377\200" "H(\377{F%\377\204\34\34V\377\211\35\35W\377\203\36\36X\377\203\37\37" "Y\377\211!![\377\202\"\"[\377\211##]\377\1$$^\377\202%%^\377\1&&_\377" "\202$$^\377\1%%^\377\203\37\37Y\377\204\31\31T\377\203\32\32U\377\204" "\31\31T\377\203\35\35W\377\1\36\36X\377\204\37\37Y\377\1\40\40Z\377\202" "\"\"[\377\202%%^\377\2&&_\377**c\377\203..g\377\20200h\377\1""22j\377" "\21022k\377\20233k\377\20255m\377\20466n\377\21177o\377\1""88p\377\203" "<>u\377AAx\377CCz\377DD{\377EE{\377FF}\377\205HH~\377\2II" "\177\377JJ\200\377\205LL\202\377\202NN\204\377\203PP\205\377\5QQ\206" "\377OO\205\377QQ\206\377LL\202\377JJ\200\377\202II\177\377\2JJ\200\377" "KK\201\377\202II\177\377\15HH~\377JJ\200\377LL\201\377LL\202\377MM\203" "\377QQ\206\377RR\210\377UU\212\377WW\214\377XX\215\377ZZ\216\377[[\217" "\377\\\\\221\377\204]]\221\377\1__\223\377\202aa\225\377\1aa\224\377" "\203__\223\377\4^^\222\377]]\221\377[[\217\377\\\\\221\377\203]]\221" "\377\3__\223\377``\224\377aa\225\377\203ee\230\377\4gg\233\377hh\233" "\377kk\236\377mm\240\377\203pp\243\377\6ss\245\377qq\244\377pp\243\377" "tt\246\377ss\245\377pp\243\377\202qq\244\377\1rr\244\377\202qq\244\377" "\202uu\250\377\3uu\247\377vv\250\377{{\255\377\202||\256\377\16\200\200" "\261\377\201\201\262\377\202\202\263\377\204\204\265\377\206\206\266" "\377\202\202\263\377\203\203\263\377NNf\377\26\26\27\377##)\377\202\202" "\257\377\210\210\270\377\206\206\267\377\210\210\270\377\202\213\213" "\273\377\202\216\216\276\377\4\220\220\277\377\221\221\301\377\220\220" "\277\377\225\225\304\377\202\224\224\303\377\5\225\225\304\377\227\227" "\306\377\225\225\304\377\230\230\307\377\232\232\310\377\202\233\233" "\312\377\5\232\232\310\377\233\233\312\377\240\240\316\377\244\244\322" "\377\243\243\321\377\202\242\242\320\377\1\243\243\321\377\202\252\252" "\327\377\5\251\251\326\377\253\253\330\377\255\255\332\377\260\260\335" "\377\263\263\337\377\202\261\261\336\377\6\262\262\336\377\263\263\337" "\377\261\261\336\377\264\264\340\377\265\265\341\377\270\270\344\377" "\202\266\266\342\377\17\261\261\333\377\222\214\240\377pd[\377R@\35\377" "S=\14\377_E\11\377kM\11\377gJ\10\377tS\7\377qQ\7\377vT\6\377`F\16\377" "jX7\377j\\K\377P>\32\377\206I6\15\377\15I7\16\377TC\"\377vjd\377\237" "\232\263\377\267\267\341\377\272\272\346\377\271\271\344\377\250\244" "\303\377dVB\377I6\15\377J7\16\377YG!\377TA\32\377\202I6\15\377\11M:\22" "\377m\\;\377\251\235\211\377\343\333\323\377\367\360\354\377\371\363" "\360\377\371\364\360\377\370\363\356\377\370\362\356\377\202\371\364" "\360\377\6\371\363\357\377\371\363\360\377\371\363\357\377\370\363\357" "\377\370\362\356\377\367\361\355\377\202\366\360\353\377\1\366\361\355" "\377\202\367\362\356\377\2\365\357\352\377\363\354\346\377\202\364\355" "\350\3777\363\354\347\377\362\352\344\377\361\350\343\377\357\346\337" "\377\356\344\335\377\353\337\327\377\350\332\320\377\345\326\313\377" "\327\303\266\377\271\232\206\377\224iP\377{I3\377j9%\377l7#\377a-\33" "\377\\)\31\377c.\34\377q:&\377\206I5\377\236T@\377\252WB\377\265XE\377" "\270WE\377\272WE\377\303^N\377\314k[\377\307gV\377\305]J\377\335q_\377" "\352\177n\377\355\207t\377\356\210v\377\355\212v\377\354\207r\377\354" "\201m\377\351zc\377\337nU\377\303W<\377\244A&\377\2105\33\377u/\26\377" "o.\26\377p3\32\377r6\34\377\205G(\377\210K-\377}\77!\377n1\26\377f*\20" "\377i(\16\377k*\16\377o,\17\377\2009\25\377\207\77\31\377y8\26\377\204" "\34\34V\377\202\35\35W\377\205\36\36X\377\210\37\37Y\377\1!![\377\202" "\"\"[\377\212##]\377\1$$^\377\202%%^\377\211&&_\377\2''`\377((b\377\203" "&&_\377\202\40\40Z\377\202\35\35X\377\205\37\37Y\377\202\35\35X\377\1" "\36\36X\377\203\35\35X\377\205\37\37Y\377\13\40\40Z\377\"\"[\377##]\377" "%%^\377''`\377((b\377,,e\377--f\377//h\37700h\37711i\377\20322k\377\206" "33k\377\20244l\377\20266n\377\20677o\377\202::q\377\205;;r\377\203<<" "s\377\202<>u\377" "\203@@w\377\2<>u\377\77" "\77v\377AAx\377DD{\377FF}\377\202II\177\377\1LL\201\377\205MM\203\377" "\202NN\204\377\203QQ\206\377\202QQ\207\377\1RR\210\377\202SS\210\377" "\1RR\210\377\202SS\210\377\3TT\211\377QQ\207\377OO\205\377\202MM\203" "\377\2PP\205\377MM\203\377\202LL\202\377\3LL\201\377LL\202\377QQ\206" "\377\202QQ\207\377\10UU\212\377VV\213\377XX\215\377ZZ\216\377\\\\\221" "\377]]\221\377``\224\377aa\225\377\204cc\227\377\1ee\230\377\202ff\232" "\377\1ee\230\377\203cc\227\377\3bb\226\377``\224\377aa\225\377\203cc" "\227\377\3aa\225\377bb\226\377dd\230\377\202hh\233\377\3ii\234\377kk" "\236\377ll\237\377\202pp\242\377\202uu\247\377\2uu\250\377ww\251\377" "\202vv\250\377\2xx\252\377vv\250\377\202uu\250\377\1vv\250\377\202uu" "\250\377\1xx\252\377\202yy\253\377\14zz\253\377\177\177\260\377\201\201" "\262\377\202\202\263\377\203\203\264\377\207\207\267\377\206\206\267" "\377\212\212\272\377\213\213\273\377\210\210\270\377\211\211\271\377" "uu\231\377\202--.\377\15,,-\377LL]\377\216\216\275\377\220\220\277\377" "\221\221\277\377\222\222\301\377\224\224\302\377\222\222\301\377\225" "\225\304\377\226\226\305\377\225\225\304\377\233\233\312\377\232\232" "\311\377\202\233\233\312\377\3\234\234\313\377\233\233\312\377\236\236" "\314\377\204\241\241\317\377\2\242\242\320\377\247\247\324\377\202\252" "\252\327\377\203\254\254\331\377\5\255\255\332\377\254\254\331\377\255" "\255\332\377\257\257\334\377\262\262\336\377\202\264\264\340\377\4\264" "\264\341\377\266\266\342\377\265\265\341\377\263\263\337\377\202\262" "\262\336\377\3\242\236\271\377{qn\377UD$\377\207I6\15\377\3J6\15\377" "[B\13\377K7\15\377\202I6\15\377\4SA\40\377uib\377\236\231\260\377\266" "\266\337\377\202\272\272\346\377\5\271\270\343\377\251\246\306\377\202" "y{\377[K/\377J8\20\377\205I6\15\377\27L9\21\377cR0\377\207ya\377\304" "\261\236\377\327\305\264\377\325\304\262\377\322\301\256\377\317\275" "\254\377\316\275\254\377\317\275\254\377\301\257\233\377\227\204h\377" "fS/\377L9\20\377I6\15\377J7\16\377YG\"\377\215~d\377\307\274\255\377" "\354\343\335\377\362\352\345\377\365\356\352\377\371\364\361\377\202" "\371\366\363\377\2\372\365\362\377\371\365\361\377\202\371\363\360\377" "\202\370\362\356\377\1\370\363\357\377\202\370\362\356\377:\370\361\354" "\377\367\360\352\377\366\357\351\377\366\356\350\377\365\355\347\377" "\364\354\345\377\363\353\344\377\362\351\341\377\361\351\340\377\363" "\353\343\377\363\355\345\377\363\354\344\377\357\346\334\377\343\321" "\301\377\307\245\217\377\255\200b\377\247pL\377\220T2\377v\77%\377b." "\32\377`,\32\377c/\35\377o;&\377\200K4\377\205N8\377\200G0\377\200E-" "\377\210F.\377\222I1\377\230H/\377\233F.\377\236B*\377\237\77(\377\243" ">)\377\250B,\377\254F/\377\254C-\377\250\77)\377\2267!\377\2060\32\377" "r'\24\377g$\22\377q-\26\377\203A%\377\211K.\377\202E(\377x<\40\377o1" "\27\377j+\23\377g)\20\377e&\15\377g&\14\377r,\16\377|4\21\377z4\21\377" "u1\20\377q/\17\377\36\36X\377\212\37\37Y\377\202!![\377\211\"\"[\377" "\203##]\377\2$$^\377%%^\377\211&&_\377\202''`\377\211((b\377\202**c\377" "\202++d\377\203''`\377\202\"\"[\377\3\40\40Z\377\37\37Y\377!![\377\204" "\37\37Y\377\203\36\36X\377\202\37\37Y\377\3\"\"\\\377##]\377\"\"\\\377" "\203%%^\377\14''`\377((b\377**c\377++d\377,,e\37700h\37722k\37733k\377" "44l\37755m\37766n\37777n\377\20777o\377\20288p\377\202::q\377\204;;r" "\377\211<>u\377<(\377\202H0\377\211S:\377xF/\377g4\40\377b-\32\377h/\34\377j/\33\377" "k.\31\377j*\26\377f&\21\377c\"\16\377b\40\16\377h#\21\377i$\22\377j&" "\23\377i(\25\377j0\33\377q6\37\377w7\35\377z;\37\377|=\40\377w8\35\377" "i/\27\377_'\21\377`%\20\377c&\16\377f%\15\377j'\14\377p*\15\377x.\16" "\377\1773\17\377\210:\22\377\217\77\23\377\36\36X\377\203\37\37Y\377" "\211!![\377\211\"\"[\377\203##]\377\2$$^\377%%^\377\202&&_\377\211''" "`\377\202((b\377\207))b\377\202**c\377\205++d\377\202%%^\377\1\"\"[\377" "\203\40\40Z\377\3!![\377\40\40Z\377\"\"[\377\204!![\377\2\"\"[\377\"" "\"\\\377\202##]\377\204%%^\377\202&&_\377\10((b\377++d\377,,e\37711i" "\37733k\37744l\37755m\37766n\377\20377o\377\20588p\377\20299q\377\202" ";;r\377\206<\365\356" "\354\377\366\360\355\377\367\362\357\377\370\362\357\377\367\361\356" "\377\367\360\355\377\366\357\353\377\364\354\347\377\362\351\342\377" "\366\356\351\377\367\361\355\377\366\357\352\377\365\356\350\377\364" "\355\346\377\362\353\343\377\362\351\341\377\362\352\342\377\362\352" "\343\377\361\351\341\377\361\350\340\377\352\334\321\377\336\305\263" "\377\310\236\201\377\257uM\377\223S0\377~B$\377o8\37\377x\77\"\377c1" "\33\377[.\34\377T&\25\377X)\26\377\\*\27\377g5\40\377r@)\377j8#\377k" "7#\377c/\32\377f/\32\377d-\31\377b)\26\377i.\30\377l0\31\377u7\36\377" "\201F*\377\205K0\377}D)\377{@#\377~@#\377\206F&\377\203E&\377l3\32\377" "W\40\15\377T\34\12\377T\33\10\377]\36\11\377h\"\12\377n&\13\377v*\13" "\377}/\14\377\2117\17\377\36\36X\377\203\37\37Y\377\211!![\377\202\"" "\"[\377\204##]\377\206$$^\377\202%%^\377\2&&_\377''`\377\213((b\377\202" "**c\377\211++d\377\203--f\377\202**c\377\1&&_\377\202$$^\377\3\"\"[\377" "\"\"\\\377\"\"[\377\203\"\"\\\377\202\"\"[\377\1!![\377\202\"\"[\377" "\2\"\"\\\377$$^\377\203%%^\377\3''`\377((b\377**c\377\202,,e\377\4//" "h\37722k\37733k\37755m\377\20277n\377\3""77o\37788p\377::q\377\206;;" "r\377\202<$\377\211N/\377\210L.\377\200" "G(\377s9\36\377s8\35\377w;\40\377\213K*\377\202E&\377\224W7\377}C'\377" "b)\22\377X\36\11\377W\33\6\377_\37\7\377k#\10\377r'\11\377z-\13\377\204" "4\16\377\36\36X\377\203\37\37Y\377\202!![\377\211\"\"[\377\203##]\377" "\2$$^\377%%^\377\210&&_\377\1''`\377\205((b\377\206))b\377\202**c\377" "\1++d\377\202,,e\377\210--f\377\6""00h\377..g\37700h\377,,e\377**c\377" "((b\377\203%%^\377\1$$^\377\202%%^\377\203##]\377\204\"\"\\\377\202%" "%^\377\202''`\377\5((b\377))b\377**c\377++d\377,,e\377\20211i\377\4""2" "2k\37766n\37777n\37777o\377\202::q\377\1<>u\377<>u\377AAx\377CCz\377EE{\377FF}\377II\177" "\377KK\201\377LL\202\377PP\205\377QQ\206\377\202RR\210\377\203SS\210" "\377\202UU\212\377\204WW\214\377\202ZZ\216\377\203[[\217\377\4[[\220" "\377[[\217\377\\\\\221\377XX\215\377\203VV\213\377\1WW\214\377\203VV" "\213\377\13RR\210\377WW\214\377YY\216\377ZZ\216\377]]\221\377``\224\377" "bb\226\377dd\230\377ee\230\377ff\232\377hh\233\377\205kk\236\377\203" "nn\241\377\1ll\237\377\202kk\236\377\3jj\235\377ii\234\377hh\233\377" "\203ii\234\377\3hh\233\377kk\236\377nn\241\377\203qq\244\377\202uu\247" "\377\6zz\253\377{{\254\377~~\257\377\177\177\260\377\202\202\263\377" "\200\200\261\377\203\177\177\260\377\2~~\257\377\177\177\260\377\203" "\200\200\261\377\1\201\201\262\377\203\205\205\265\377\7\207\207\267" "\377\212\212\273\377\213\213\273\377\217\217\276\377\221\221\301\377" "\224\224\302\377\225\225\304\377\202\225\225\303\377\22\226\226\301\377" "SS[\377TTT\377]]]\377bbb\377aaa\377ZZZ\377OOP\377ww\217\377\243\243\316" "\377\245\245\321\377\244\244\320\377\242\242\320\377\240\240\316\377" "\245\245\323\377\244\244\322\377\247\247\324\377\251\251\326\377\202" "\246\246\324\377\1\250\250\325\377\202\254\254\331\377\20\257\257\333" "\377\262\262\336\377\263\263\337\377\262\262\336\377\261\261\336\377" "\260\260\335\377\263\263\337\377\264\264\341\377\264\264\340\377\260" "\260\335\377\261\261\336\377\264\264\341\377\255\253\320\377\206~\204" "\377eWE\377L:\24\377\207I6\15\377\1I7\16\377\207I6\15\377\5J7\17\377" "XG*\377~ts\377\247\244\302\377\271\270\343\377\202\272\272\346\377\4" "\271\271\344\377\254\252\313\377\204{\177\377N<\26\377\202I6\15\377$" "J7\16\377ZI&\377\211\177k\377\275\273\271\377\326\327\335\377\327\330" "\336\377\325\326\334\377\323\311\317\377\326\235\245\377\327\224\232" "\377\327\223\230\377\326\244\247\377\325\305\307\377\324\322\324\377" "\324\323\324\377\305\305\304\377\263\252\241\377\330\311\272\377\333" "\316\276\377\332\313\274\377\331\311\273\377\326\307\270\377\325\305" "\265\377\325\304\265\377\323\302\263\377\321\301\261\377\320\300\261" "\377\317\300\261\377\315\276\256\377\314\275\255\377\315\276\256\377" "\314\275\254\377\275\256\232\377\223\202f\377dR.\377L9\21\377\202I6\15" "\377AUB\34\377\202qT\377\272\251\227\377\341\323\312\377\351\333\323" "\377\350\331\323\377\351\332\324\377\347\331\320\377\345\326\317\377" "\350\331\324\377\354\337\332\377\354\341\335\377\354\341\334\377\356" "\343\335\377\357\345\340\377\360\347\341\377\360\346\337\377\357\345" "\337\377\360\345\337\377\357\345\337\377\360\346\340\377\360\347\340" "\377\362\352\343\377\362\352\344\377\360\347\341\377\356\341\331\377" "\351\330\314\377\342\312\267\377\307\231y\377\254lB\377\241]5\377\234" "Z3\377\226V0\377\224R.\377\211G%\377\201E$\377o4\32\377W%\21\377U$\20" "\377[*\25\377T#\17\377L\34\14\377W$\21\377z>\"\377\220R2\377v\77%\377" "\210M/\377\222S3\377~@\"\377q5\32\377g,\24\377v:\37\377\223R0\377v5\31" "\377\177<\37\377v6\31\377x7\32\377o,\20\377k&\12\377o(\12\377u+\13\377" "|/\14\377\2067\20\377\214=\23\377\37\37Y\377\205!![\377\202\"\"[\377" "\202##]\377\210$$^\377\202%%^\377\202&&_\377\207''`\377\204((b\377\2" "))b\377**c\377\210++d\377\202,,e\377\210--f\377\20500h\377\3--f\377*" "*c\377((b\377\202%%^\377\1##]\377\204$$^\377\1##]\377\203\"\"\\\377\202" "%%^\377\3''a\377((b\377''a\377\202((b\377\2))b\377++d\377\202,,e\377" "\4""11i\37733k\37777n\377;;r\377\202<>u\377\202" "@@w\377\205AAx\377\202DD{\377\205EE{\377\205FF}\377\5DD{\377CCz\377A" "Ax\377@@w\377AAx\377\202>>u\377\202<\36\377t1\25\377m+\20\377n*\17\377u.\20\377t,\20\377r+\16\377n)\15\377" "t0\17\377~9\22\377\206>\25\377\214@\25\377\220B\25\377\36\36X\377!![" "\377\206\"\"[\377\202##]\377\1$$^\377\202%%^\377\211&&_\377\207''`\377" "\204((b\377\3))b\377**c\377++d\377\211,,e\377\202--f\377\206..g\377\204" "00h\377\20222k\377\20200h\377\202++d\377\1''`\377\202%%^\377\3&&_\377" "%%^\377''a\377\202''`\377\203''a\377\2((b\377))b\377\202((b\377\203+" "+d\377\6,,e\377--f\37700h\37711i\37733k\37777o\377\202;;r\377\202<>u\377==u\377" "<>u\377\77\77v\377@@" "w\377\207AAx\377\202BBy\377\202DD{\377\203EE{\377\210FF}\377\1II\177" "\377\203LL\201\377\3KK\201\377FF}\377DD{\377\202CCz\377\202AAx\377\3" "@@w\377\77\77v\377<\26\377o3\24\377X\"\14\377\26\26Q\377\202\31\31T\377\1\32" "\32U\377\202\36\36X\377\1\37\37Y\377\202\"\"\\\377\202##]\377\202%%^" "\377\202&&_\377\210''`\377\203((b\377\2))b\377**c\377\210++d\377\205" "--f\377\206..g\377\20200h\377\20222j\377\21022k\377\20455m\377\4""22" "k\37711i\377--f\377++d\377\203**c\377\1++d\377\202**c\377\1))b\377\203" "((b\377\202**c\377\203,,e\377\3..g\377//h\37711i\377\20233k\377\5""6" "6n\37788p\377<>u\377\11\77\77v\377@@w\377DD{\377FF|\377GG~\377II\177\377" "MM\203\377QQ\207\377RR\210\377\202VV\213\377\2XX\215\377[[\217\377\206" "]]\221\377\203``\224\377\1aa\224\377\202cc\227\377\202dd\230\377\2``" "\224\377aa\225\377\202cc\227\377\2__\223\377^^\222\377\202__\223\377" "\202]]\221\377\23\\\\\221\377]]\221\377``\224\377aa\225\377gg\233\377" "ii\234\377kk\236\377mm\240\377nn\241\377pp\242\377pp\243\377uu\247\377" "vv\247\377vv\242\377ll\177\377vv\250\377zz\253\377yy\253\377xx\252\377" "\202uu\250\377\202uu\247\377\2qq\244\377ss\245\377\202uu\247\377\3qq" "\244\377uu\250\377xx\252\377\202{{\254\377\1||\256\377\202\200\200\261" "\377\6\204\204\264\377\210\210\270\377\211\211\271\377\212\212\272\377" "\212\212\273\377\212\212\272\377\202\211\211\271\377\2\207\207\267\377" "\211\211\271\377\202\212\212\273\377\3\212\212\272\377\213\213\273\377" "\217\217\276\377\202\216\216\276\377\32\220\220\300\377\226\226\305\377" "\227\227\306\377\234\234\313\377\235\235\313\377\237\237\315\377\241" "\241\316\377\236\236\314\377\231\231\301\377LLR\377TTT\377fff\377uuv" "\377\201\201\202\377\206\206\207\377\205\205\206\377~~\177\377rrs\377" "ccc\377QQR\377\\\\f\377\257\257\327\377\263\263\336\377\261\261\335\377" "\262\262\337\377\263\263\336\377\202\262\262\336\377\202\266\266\342" "\377\7\260\260\335\377\262\262\336\377\264\264\340\377\257\256\327\377" "\225\217\243\377uje\377P\77\34\377\210I6\15\377\4M;\25\377]M4\377WF(" "\377J7\17\377\207I6\15\377DJ8\20\377^O6\377\210\200\206\377\255\253\315" "\377\272\271\345\377\272\272\346\377\272\271\345\377\256\254\320\377" "~ts\377I7\16\377I6\15\377O<\25\377gY<\377\221\213\177\377\271\271\274" "\377\303\303\311\377\304\304\310\377\300\301\304\377\272\272\275\377" "\264\264\264\377\262\261\261\377\254\254\255\377\247\247\247\377\242" "\242\241\377\234\235\235\377\227\230\227\377\223\223\221\377\216\215" "\213\377\210\210\205\377\203\203\177\377~~{\377xxu\377rqm\377mlg\377" "ffa\377a`\\\377][V\377YWR\377UTP\377TRN\377SRM\377VUP\377WWR\377]]Y\377" "ee_\377qql\377\210\207\201\377\241\240\234\377\270\266\263\377\304\303" "\301\377\312\310\306\377\317\313\311\377\321\314\312\377\322\316\313" "\377\321\315\311\377\320\313\307\377\315\307\302\377\313\303\274\377" "\307\277\266\377\306\272\257\377\307\272\254\377\311\273\253\377\317" "\300\261\377\316\300\261\377\276\260\237\377\221\201g\377dR/\377L9\20" "\377\202I6\15\3777TA\33\377\207x\\\377\306\274\255\377\357\350\342\377" "\366\360\353\377\367\360\354\377\367\357\352\377\366\356\351\377\363" "\353\344\377\362\350\340\377\361\347\336\377\361\347\340\377\360\346" "\336\377\357\343\333\377\356\340\330\377\352\333\321\377\344\322\306" "\377\333\303\265\377\324\270\254\377\315\256\240\377\307\236\214\377" "\316\237\206\377\333\247\210\377\336\250\210\377\330\242~\377\313\223" "q\377\265}[\377\252uT\377|I,\377\177E$\377b6\35\377_3\36\377h3\32\377" "k0\24\377r/\20\377q,\16\377d%\13\377m-\21\377p4\26\377u7\27\377\213D" "\35\377\214F\37\377\213H\40\377\214F\34\377\207A\30\377\233J\32\377\232" "O\37\377\232Q\40\377\233Q\"\377\244W$\377\242X#\377\224T'\377\207J#\377" "\25\25P\377\27\27R\377\202\31\31T\377\4\36\36X\377\37\37Y\377\40\40Z" "\377$$^\377\204%%^\377\203&&_\377\1''`\377\202((b\377\210))b\377\202" "**c\377\1++d\377\207,,e\377\204--f\377\1..g\377\20200h\377\21022j\377" "\20222k\377\20633k\377\20255m\377\20266n\377\12""77o\37766n\37722j\377" "//h\377--f\377**c\377))b\377**c\377++d\377**c\377\202++d\377\202**c\377" "\202++d\377\202,,e\377\3--f\377..g\377//h\377\20200h\377\4""22j\3772" "2k\37766n\37799q\377\202>>u\377\203AAx\377\2CCz\377DD{\377\207FF}\377" "\202GG~\377\204HH~\377\2II\177\377LL\201\377\207LL\202\377\1NN\204\377" "\202QQ\206\377\4PP\205\377NN\204\377LL\202\377II\177\377\202FF|\377\202" "DD{\377\13BBy\377AAx\377\77\77v\377BBy\377FF|\377FF}\377HH~\377KK\201" "\377OO\205\377QQ\206\377RR\210\377\202VV\213\377\3[[\217\377\\\\\221" "\377]]\221\377\203__\223\377\202``\224\377\204cc\227\377\2ee\230\377" "ff\231\377\203ff\232\377\10ff\231\377ff\232\377gg\233\377bb\226\377_" "_\223\377^^\222\377``\224\377^^\222\377\202]]\221\377\2\\\\\221\377_" "_\223\377\202cc\227\377\13ee\230\377ii\234\377kk\236\377nn\241\377pp" "\243\377ss\244\377vv\247\377ww\250\377ss\221\377^^J\377yy\250\377\203" "{{\253\377\2yy\252\377zz\253\377\202xx\252\377\2uu\247\377uu\250\377" "\202xx\252\377\3uu\250\377yy\253\377{{\254\377\202~~\257\377\1\177\177" "\260\377\202\201\201\262\377\1\207\207\267\377\202\214\214\274\377*\216" "\216\276\377\217\217\276\377\216\216\276\377\214\214\274\377\215\215" "\275\377\212\212\273\377\215\215\275\377\216\216\276\377\215\215\275" "\377\214\214\274\377\216\216\276\377\223\223\302\377\222\222\301\377" "\225\225\304\377\226\226\305\377\231\231\307\377\232\232\311\377\237" "\237\315\377\237\237\314\377\240\240\316\377\243\243\320\377\243\243" "\317\377gg{\377FFG\377ZZZ\377llm\377||}\377\210\210\211\377\215\215\216" "\377\214\214\215\377\204\204\205\377xxy\377jjj\377XXY\377GGG\377yy\217" "\377\264\264\336\377\265\265\337\377\264\264\340\377\265\265\340\377" "\263\263\337\377\264\264\340\377\203\262\262\336\377\3\237\233\267\377" "ujd\377TC#\377\202aF\11\377\2hK\11\377L8\14\377\205I6\15\377\10ZK/\377" "\201x|\377\245\242\300\377\263\262\336\377\261\260\331\377\231\224\250" "\377obV\377N<\26\377\210I6\15\377\27O=\31\377naT\377\207~\204\377ocW" "\377Q\77\33\377J7\16\377bP,\377\221\202i\377\271\255\241\377\274\266" "\262\377\267\266\265\377\253\253\252\377\211\211\204\377lke\377ZWS\377" "PLH\377MGC\377OGD\377MB>\377J\77;\377H<8\377I;6\377G94\377\202E60\377" "\33C50\377B3.\377@1,\377>0,\377:-)\3779.)\3779-)\3777/,\377820\37795" "1\377973\377<84\377A=:\377FB>\377IEA\377HE@\377JGB\377IGC\377KIE\377" "NKE\377XSK\377nh`\377\214\211\202\377\257\254\247\377\307\303\300\377" "\316\313\310\377\323\316\313\377\202\324\317\314\377\15\325\317\314\377" "\323\317\312\377\322\315\311\377\320\314\307\377\314\307\302\377\307" "\301\273\377\303\272\262\377\300\266\252\377\300\264\245\377\303\265" "\244\377\263\243\215\377\210vY\377YG!\377\202I6\15\3773J7\16\377`O+\377" "\227\212q\377\324\313\276\377\364\355\347\377\365\355\346\377\364\353" "\344\377\362\350\341\377\361\345\335\377\360\345\334\377\356\342\331" "\377\352\333\323\377\345\320\306\377\335\304\267\377\331\300\262\377" "\314\253\234\377\310\236\212\377\324\236\203\377\326\235}\377\332\241" "\177\377\327\237~\377\325\233y\377\315\225r\377\255xY\377\201S9\377i" "A+\377b;(\377l\77'\377sA$\377^4\37\377^7#\377c9#\377n<#\377s:\35\377" "y6\24\377k&\12\377o/\22\377w:\32\377\205J&\377\230_;\377\224\\:\377\213" "P-\377\214N%\377\225P#\377\202D\35\377\225R(\377\241]/\377\242_/\377" "\261k2\377\255l5\377\241f8\377\202\27\27R\377\202\30\30S\377\6\31\31" "T\377\32\32U\377\34\34V\377\37\37Y\377\40\40Z\377\"\"[\377\203%%^\377" "\203''`\377\202((b\377\1))b\377\203**c\377\207++d\377\1,,e\377\204--" "f\377\206..g\377\20300h\377\21222k\377\20255m\377\21077n\377\6""77o\377" "88p\37777n\37766n\37755m\37711i\377\203,,e\377\1++d\377\202--f\377\203" ",,e\377\202++d\377\202,,e\377\10..g\37700h\37711i\37700h\37733k\3774" "4l\37766n\37777o\377\202;;r\377\202AAx\377\1BBy\377\202DD{\377\207FF" "}\377\202GG~\377\202JJ\200\377\203LL\201\377\202LL\202\377\206MM\203" "\377\2NN\204\377QQ\206\377\202QQ\207\377\11QQ\206\377MM\203\377JJ\200" "\377HH~\377II\177\377JJ\200\377II\177\377HH~\377GG~\377\202BBy\377\11" "EE{\377FF|\377II\177\377LL\202\377PP\205\377QQ\206\377SS\210\377VV\213" "\377XX\215\377\203]]\221\377\205bb\226\377\1cc\227\377\203ee\230\377" "\3ff\231\377gg\233\377hh\233\377\202ii\234\377\6gg\233\377ff\232\377" "hh\233\377ff\231\377bb\226\377aa\225\377\202cc\227\377\202bb\226\377" "\22aa\225\377aa\224\377dd\230\377ee\230\377kk\236\377nn\241\377pp\243" "\377tt\245\377vv\247\377vv\250\377yy\253\377{{\253\377ooo\377cc%\377" "||\241\377~~\257\377\177\177\260\377\177\177\257\377\202}}\256\377\4" "{{\254\377zz\253\377xx\252\377yy\253\377\202{{\254\377\3ww\251\377{{" "\254\377}}\256\377\202\201\201\262\377\1\202\202\263\377\202\206\206" "\267\377\1\212\212\273\377\203\220\220\277\377\1\220\220\300\377\202" "\220\220\277\377\203\217\217\276\377\203\220\220\300\377\203\225\225" "\304\377!\226\226\305\377\233\233\312\377\235\235\313\377\241\241\317" "\377\243\243\321\377\244\244\322\377\245\245\322\377\245\245\321\377" "\215\215\260\377==\77\377MMN\377aaa\377ttu\377\204\204\205\377\217\217" "\220\377\223\223\224\377\222\222\223\377\213\213\214\377\200\200\200" "\377qqq\377__`\377LLM\377AAC\377\232\232\272\377\267\267\341\377\266" "\266\342\377\263\263\337\377\263\263\336\377\264\264\337\377\233\226" "\261\377wli\377SB!\377I6\16\377\202I6\15\377\5wU\10\377iL\11\377wU\6" "\377\201\\\5\377V\77\13\377\204I6\15\377\5eWD\377\224\216\241\377\260" "\257\330\377\267\267\343\377\271\271\345\377\202\272\272\346\377\4\260" "\256\322\377\210\200\206\377_O8\377K8\20\377\210I6\15\377CUD\36\377}" "nS\377\255\243\226\377\304\277\273\377\277\277\276\377\257\265\264\377" "\212\216\213\377faW\377ZM\77\377VE:\377T\77""8\377U<7\377^<7\377h=:\377" "i;8\377^95\377]=9\377nBD\377\201HN\377\206HO\377v@D\377[42\377R0)\377" "P,$\377P+\"\377N*\37\377N*\40\377N+\37\377M+\40\377N-\"\377O/$\377M0" "%\377H/$\377A-%\377=+$\377@2+\377B72\377B:4\377<62\377>94\377@94\377" "L;3\377OD<\377KF=\377JF>\377KH\77\377ZWN\377xvm\377\235\231\222\377\272" "\267\262\377\313\307\304\377\321\313\310\377\322\314\311\377\323\316" "\312\377\323\316\313\377\322\315\312\377\322\314\311\377\321\314\311" "\377\317\312\307\377\314\307\303\377\305\277\272\377\273\263\252\377" "\266\254\236\377\272\255\234\377\242\223z\377yhH\377TB\32\377\202I6\15" "\3772K8\17\377hW5\377\245\230\201\377\331\314\277\377\353\334\320\377" "\353\333\316\377\344\317\277\377\337\305\264\377\335\302\265\377\335" "\306\271\377\327\274\260\377\310\246\230\377\305\225\200\377\333\244" "\204\377\315\223q\377\323\231x\377\326\235|\377\314\224t\377\245oT\377" "pE1\377[6%\377^:(\377c@-\377lE1\377j\77*\377j@*\377sF.\377vI1\377qB*" "\377i<%\377j;\"\377uB%\377\217T1\377n3\27\377r4\26\377\210H%\377\244" "g@\377\252uQ\377\214Q/\377\230X1\377\224X6\377\223X3\377\200G$\377\210" "O*\377\235d<\377\247m@\377\263xF\377\271~M\377\27\27R\377\30\30S\377" "\205\31\31T\377\7\33\33U\377\35\35W\377\34\34V\377\40\40Z\377!![\377" "##]\377%%^\377\203''a\377\202))b\377\203**c\377\1++d\377\207,,e\377\204" "--f\377\21100h\377\20422k\377\20633k\377\20255m\377\20277n\377\20777" "o\377\1""88p\377\203::q\377\5;;r\37777n\37766n\37722j\37711i\377\202" "..g\377\2//h\377--f\377\202,,e\377\202++d\377\11,,e\377--f\377..g\377" "11i\37722j\37722k\37733k\37744l\37766n\377\20288p\377\202==u\377\3BB" "y\377DD{\377EE{\377\202FF}\377\207HH~\377\202KK\201\377\205LL\202\377" "\2NN\204\377PP\205\377\206QQ\206\377\1QQ\207\377\202RR\210\377\2PP\205" "\377NN\204\377\203LL\202\377\4JJ\200\377HH~\377GG~\377FF|\377\202DD{" "\377\13FF}\377II\177\377LL\201\377NN\204\377PP\205\377RR\210\377VV\213" "\377WW\214\377[[\217\377[[\220\377]]\221\377\202bb\226\377\203cc\227" "\377\1dd\230\377\204gg\233\377\2hh\233\377ii\234\377\202jj\235\377\2" "ii\234\377hh\233\377\202ii\234\377\1ff\231\377\202dd\230\377\1ff\231" "\377\203cc\227\377\5aa\225\377ee\230\377ff\231\377ll\237\377nn\241\377" "\202tt\245\377\16vv\250\377vv\251\377{{\254\377~~\254\377ooG\377tt\31" "\377vv\206\377\200\200\260\377\201\201\261\377\200\200\261\377~~\257" "\377~~\256\377}}\256\377||\256\377\202zz\253\377\202||\256\377\3ww\251" "\377{{\255\377~~\257\377\203\201\201\262\377\3\205\205\265\377\205\205" "\266\377\214\214\274\377\202\221\221\301\377*\223\223\302\377\224\224" "\303\377\222\222\301\377\221\221\301\377\222\222\301\377\220\220\300" "\377\222\222\301\377\223\223\302\377\222\222\301\377\221\221\301\377" "\225\225\304\377\230\230\307\377\226\226\305\377\233\233\312\377\234" "\234\313\377\237\237\315\377\243\243\321\377\244\244\321\377\245\245" "\322\377\246\246\323\377\243\243\315\377JJT\377@@A\377TTU\377iii\377" "|||\377\213\213\214\377\225\225\226\377\232\232\233\377\230\230\231\377" "\220\220\221\377\205\205\205\377uuv\377eee\377RRS\377@@A\377GGO\377\255" "\255\323\377\266\266\341\377\242\237\274\377\203{\177\377]M4\377\210" "I6\15\377\3T=\14\377\\C\12\377K7\15\377\205I6\15\377\4I7\16\377XH+\377" "~tt\377\252\247\307\377\204\272\272\346\377\4\270\267\342\377\240\234" "\264\377uia\377K8\20\377\203I6\15\377IL9\21\377l]>\377\233\221\203\377" "\276\271\265\377\305\302\301\377\301\301\277\377\241\251\245\377rvp\377" "RIC\377P<5\377S:3\377R60\377S5/\377V6/\377{76\377\2738:\377\31454\377" "\32266\377\31597\377\247KJ\377\331r\214\377\351{\233\377\355\177\240" "\377\354\204\243\377\275Uf\377\242/0\377\252%\"\377\244(\"\377\207(\37" "\377W#\27\377Q$\30\377P#\27\377O#\26\377N$\26\377N$\25\377N%\25\377N" "&\30\377O&\30\377M'\30\377M(\32\377K*\35\377H+\37\377D,#\377B1)\377D" "6.\377D=6\377OE>\377WF@\377QD>\377JD<\377FC<\377IE<\377PLE\377gcZ\377" "\212\204|\377\257\252\243\377\307\303\277\377\316\312\307\377\321\315" "\312\377\322\315\312\377\320\314\310\377\316\312\307\377\313\307\304" "\377\310\305\301\377\303\300\275\377\301\275\272\377\276\272\266\377" "\266\260\251\377\262\250\234\377\253\236\214\377\216\177d\377kZ7\377" "L9\21\377\202I6\15\377/O<\25\377ta\77\377\252\226~\377\321\267\247\377" "\331\277\261\377\320\263\246\377\313\243\222\377\312\233\205\377\323" "\236\177\377\331\240\200\377\323\232w\377\312\220n\377\311\216p\377\240" "nS\377oI4\377V4%\377W2#\377X4$\377c:'\377g\77+\377rD/\377l@*\377tE/\377" "vF,\377|J/\377|J.\377xG,\377wE+\377tC(\377qA&\377~H(\377x@\37\377|>\34" "\377\231R'\377\225V/\377\201E\"\377\234`8\377\250lD\377\222W1\377\230" "\\7\377\204J'\377\217X2\377\224^9\377\242jD\377\273\204W\377\27\27R\377" "\30\30S\377\205\31\31T\377\13\32\32U\377\33\33U\377\31\31T\377\34\34" "V\377\32\32U\377\35\35X\377\40\40Z\377##]\377%%^\377&&_\377((b\377\203" "**c\377\202++d\377\1,,e\377\202--f\377\210..g\377\20200h\377\20722j\377" "\20422k\377\20255m\377\21077n\377\20277o\377\20688p\377\202::q\377\1" ";;r\377\202<\32\377j]O\377xnk\377_P9\377K8\20\377\210I6\15\377X" "K9\21\377gXF\377\222\214\232\377\263\262\330\377\272\272\346\377\264" "\263\333\377\227\221\243\377m`R\377K8\20\377J8\17\377^M+\377\212~j\377" "\270\263\256\377\307\304\306\377\307\302\303\377\274\272\270\377\220" "\221\213\377aZR\377O93\377Q6/\377Q4,\377S3,\377S2)\377T0*\377\\3/\377" "~IK\377\243bh\377\274R[\377\305HK\377\304[U\377\256^T\377\212YO\377\223" "ke\377\246uv\377\251tx\377\246tu\377\255LK\377\31661\377\3364*\377\342" "G\77\377\333HG\377\253CH\377\232DL\377\210<@\377d*%\377Q\"\24\377P\"" "\23\377N!\20\377O!\21\377O\"\22\377N\"\22\377N#\23\377N$\25\377N$\26" "\377M%\30\377L&\26\377J)\32\377D.#\377B6-\377H=5\377P\77""7\377Q<5\377" "N:4\377G:4\377E<6\377D\77""8\377E@8\377GB:\377TPG\377tpg\377\230\225" "\215\377\267\264\256\377\304\301\276\377\306\303\300\377\304\301\276" "\377\301\277\273\377\300\276\273\377\301\277\274\377\300\277\274\377" "\301\276\273\377\304\301\276\377\302\277\273\377\273\267\261\377\260" "\250\234\377\245\230\205\377\202rT\377aO*\377K8\20\377\202I6\15\377+" "P=\25\377sZ;\377\244y[\377\321\231z\377\330\237~\377\325\234z\377\321" "\227w\377\277\210i\377\225cJ\377c<+\377P1\"\377U4&\377X5&\377_7&\377" "b9&\377e:&\377g;&\377tB+\377zG/\377zH.\377vD*\377wC)\377yD)\377{E+\377" "}H.\377yG-\377zH.\377}J-\377xB&\377|D\"\377\204A\33\377\212F\34\377z" ";\27\377\202G$\377\215S0\377\224X3\377\223S+\377\221P(\377\217O(\377" "\241g\77\377\245pK\377\213]7\377\31\31T\377\202\32\32U\377\202\33\33" "U\377\203\34\34V\377\13\35\35W\377\32\32U\377\35\35X\377\34\34V\377\35" "\35X\377\37\37Y\377\"\"[\377%%^\377&&_\377''a\377**c\377\202++d\377\203" ",,e\377\202--f\377\1..g\377\21100h\377\1""22j\377\20422k\377\20633k\377" "\20255m\377\21277o\377\2::q\377;;r\377\207<>u\377" "\11;;r\377::q\37766n\37722j\37722k\37711i\37722k\37733k\37722j\377\204" "11i\377\20222j\377\1""55m\377\20366n\377\20299q\377\4<>u\377@" "@w\377AAx\377\202FF|\377\202II\177\377\210LL\202\377\2OO\205\377PP\205" "\377\203QQ\206\377\2QQ\207\377RR\210\377\207SS\210\377\204WW\214\377" "\3SS\210\377PP\205\377NN\204\377\202QQ\206\377\16OO\205\377NN\204\377" "LL\202\377GG~\377JJ\200\377LL\202\377NN\204\377SS\210\377VV\213\377W" "W\214\377XX\215\377YY\216\377]]\221\377bb\226\377\202cc\227\377\1gg\233" "\377\203hh\233\377\2ii\234\377jj\235\377\203ll\237\377\2mm\240\377nn" "\241\377\202pp\242\377\4nn\241\377mm\240\377nn\241\377ll\237\377\203" "hh\233\377\32ii\234\377hh\233\377gg\233\377ff\232\377ff\231\377ii\234" "\377jj\235\377qq\243\377vv\250\377xx\251\377{{\254\377}}\255\377\177" "\177\260\377}}\200\377\216\216'\377\221\221%\377\202\202\77\377\206\206" "\255\377\210\210\267\377\207\207\266\377\206\206\265\377\205\205\265" "\377\204\204\265\377\202\202\263\377\201\201\262\377\200\200\261\377" "\202\202\202\263\377\3\177\177\260\377\202\202\263\377\205\205\265\377" "\203\211\211\271\377\11\214\214\274\377\216\216\276\377\224\224\303\377" "\230\230\307\377\231\231\307\377\233\233\312\377\232\232\311\377\232" "\232\310\377\231\231\307\377\202\227\227\306\377\202\231\231\307\377" "#\230\230\307\377\232\232\311\377\236\236\314\377\233\233\312\377\237" "\237\315\377\244\244\321\377\245\245\323\377\251\251\326\377\255\255" "\331\377\256\256\333\377\260\260\333\377\216\216\257\377002\377<<=\377" "QQR\377ggg\377|||\377\215\215\216\377\233\233\234\377\244\244\244\377" "\246\246\246\377\242\242\242\377\232\232\233\377\216\216\217\377\177" "\177\177\377mmn\377[[[\377HHH\377777\377('&\377:0\31\377M:\22\377K8\20" "\377J8\17\377J7\16\377\203I6\15\377\11YH,\377\211\202\214\377\251\247" "\312\377\264\263\340\377\267\267\343\377\270\267\342\377\240\233\264" "\377uib\377P\77\33\377\210I6\15\377BI7\16\377UD%\377hZG\377WF'\377I7" "\16\377R\77\31\377xjO\377\245\235\221\377\301\275\274\377\302\301\303" "\377\300\302\304\377\252\253\251\377ytp\377SC>\377N4-\377P3,\377O1)\377" "R1*\377R1(\377S1)\377T0(\377]60\377\252Xd\377\341o\213\377\351x\225\377" "\355\200\236\377\350\200\233\377\276v\177\377\226xn\377\224zn\377\223" "{o\377\217wm\377\214sj\377\212of\377\210ka\377\206cY\377\224g]\377\253" "bc\377\350v\217\377\361\177\234\377\363\203\240\377\362\206\243\377\333" "t\215\377h((\377T\"\24\377Q!\21\377P\40\17\377P!\21\377N\40\16\377N\40" "\17\377N\"\20\377N!\17\377O#\24\377O#\21\377O#\22\377M$\23\377I&\27\377" "B)\35\377B/#\377D7+\377C9.\377<4+\377=2+\377>3,\377>5/\377=81\377\202" "\77;4\377\10D\77""7\377JD=\377a\\T\377\203~v\377\245\242\234\377\271" "\270\264\377\277\276\274\377\302\300\275\377\202\310\304\302\377\12\310" "\305\303\377\310\305\302\377\306\304\301\377\304\302\276\377\301\275" "\270\377\267\262\252\377\253\241\223\377\231\212s\377\177nN\377XF\37" "\377\202I6\15\377(J7\16\377ZC\33\377\204b<\377\247xW\377\207ZC\377Y8" "(\377Q0\"\377O-\37\377V2#\377[4$\377]5$\377`6#\377b6#\377n@)\377sD,\377" "|H/\377~J0\377|H/\377{H-\377wE*\377yF*\377zE)\377zF+\377{G+\377}I-\377" "|H,\377~H.\377{F,\377zD*\377\203K+\377\212H#\377\212E\33\377\222N\"\377" "\236[/\377\263wJ\377\247e5\377\226P#\377\216T)\377mM$\377L8\17\377\205" "\31\31T\377\1\32\32U\377\202\33\33U\377\3\35\35W\377\34\34V\377\36\36" "X\377\202\35\35W\377\202\37\37Y\377\5\40\40Z\377$$^\377%%^\377''`\377" "((b\377\202,,e\377\205..g\377\20300h\377\20722j\377\20422k\377\20255" "m\377\20666n\377\20477o\377\20688p\377\2::q\377;;r\377\202<>u\377\202\77\77v\377\1AAx\377\202@@w\377\6<\377K9\21\377\207I6\15\377\13M;\23\377lZ:\377" "\231\214y\377\275\270\264\377\304\302\302\377\303\303\304\377\267\276" "\275\377\210\221\216\377_VP\377M2,\377M/'\377\202N-%\377\"P-%\377P,#" "\377P+\"\377Q+!\377S+\40\377X+\"\377\210LF\377\252RP\377\311OW\377\327" "Yf\377\315u\177\377\300\212\214\377\246\203z\377\231|o\377\225|m\377" "\203fX\377\202aU\377\223xh\377\226w]\377\236}\\\377\227xX\377\245\214" "y\377\270\245\240\377\275\234\236\377\260pv\377\313`m\377\325PZ\377\305" "7;\377\243$!\377\205\37\27\377]\40\21\377T\40\20\377Q\40\17\377R\"\20" "\377\202O\37\15\377\33O\40\14\377P\40\16\377P!\17\377Q\"\21\377S$\24" "\377R%\26\377N$\25\377F%\27\3778\36\21\3771\30\14\3774\32\16\3777$\27" "\3779/#\37761&\37783)\377=7.\377A;2\377@:2\377@92\377=6/\377<4.\377\77" "82\377RLD\377zwn\377\250\246\240\377\300\300\274\377\311\306\303\377" "\202\313\310\305\377\13\312\306\304\377\310\305\301\377\310\304\301\377" "\312\306\303\377\313\306\302\377\305\277\272\377\265\253\240\377\256" "\242\220\377\235\216t\377zjJ\377SA\32\377\203I6\15\377%J5\21\377N4\32" "\377Y7#\377_8&\377`7$\377^5\"\377e9$\377k>(\377tB+\377tA(\377yD+\377" "|F+\377xD)\377{E+\377}G-\377|I-\377|H.\377{H,\377|G,\377~I.\377{G,\377" "|G*\377\177K-\377\204M1\377\202K/\377\205O1\377\213R3\377\213S3\377\216" "T4\377\240`5\377\303\211S\377\262yI\377nF\33\377M8\17\377I6\15\377J7" "\17\377\32\32U\377\206\31\31T\377\1\32\32U\377\202\34\34V\377\203\36" "\36X\377\204\37\37Y\377\7\40\40Z\377\"\"\\\377\"\"[\377%%^\377))b\377" "++d\377,,e\377\202//h\377\20400h\377\1""22j\377\20222k\377\21033k\377" "\20255m\377\20677n\377\20477o\377\202::q\377\210<>u\377" "\205\77\77v\377\202@@w\377\202AAx\377\12CCz\377BBy\377>>u\377;;r\377" "77o\37733k\37722k\37733k\37744l\37755m\377\20344l\377\20255m\377\6""6" "6n\37788p\377::q\377<\377RRS\377hhh\377~~~\377\222" "\222\223\377\242\242\242\377\254\254\254\377\261\261\261\377\260\260" "\260\377\251\251\251\377\237\237\237\377\221\221\221\377\201\201\201" "\377qqp\377^^]\377LLK\377::9\377+++\377\36\35\35\377\34\32\24\377F5\21" "\377J8\17\377J7\16\377\205I6\15\377\4K9\21\377bS=\377\215\205\220\377" "\262\261\327\377\204\272\272\346\377\3\270\270\343\377\243\237\272\377" "m`R\377\203I6\15\377VJ7\16\377]J%\377\215|b\377\267\251\232\377\305\275" "\270\377\304\300\300\377\305\303\304\377\252\255\252\377vxq\377O@9\377" "J-%\377M*!\377O*\40\377N(\36\377M(\37\377N(\37\377O(\35\377O&\34\377" "Q&\34\377Z&\35\377a&\35\377r&!\377\307-,\377\340)$\377\3501)\377\351" "D>\377\322F9\377\251va\377\307\243i\377\331\271l\377\336\300n\377\326" "\271j\377\300\245l\377\336\274q\377\356\317k\377\361\325m\377\362\330" "o\377\354\321l\377\264\231S\377\200_M\377\200WJ\377\260@<\377\326-&\377" "\344/(\377\347;5\377\3307,\377\201\37\20\377X\37\17\377T\37\17\377S\40" "\16\377R\37\15\377Q\36\14\377Q\37\13\377Q\40\13\377R\40\15\377P\40\14" "\377P!\20\377P\"\20\377S&\26\377V+\35\377M#\22\377E\37\17\3778\32\13" "\377.\22\6\377/\20\6\3774\32\16\377=+\35\377\77""5'\377:2'\377;1'\377" "@7-\377E=4\377B<3\377B<6\377A92\377<3,\377JC<\377{wn\377\264\262\254" "\377\307\305\304\377\315\312\310\377\320\313\311\377\320\314\310\377" "\321\315\311\377\323\317\313\377\325\321\316\377\202\326\322\317\377" "\7\316\312\305\377\275\265\253\377\262\246\225\377\272\254\230\377\243" "\223z\377n];\377M:\21\377\202I6\15\377\36J6\16\377P7\24\377^9\36\377" "i;$\377s\77(\377p>(\377r@)\377vB)\377wC)\377uA'\377vA(\377vA'\377zD*" "\377\177J/\377\204M1\377\202L1\377\205N2\377\206N2\377\207O3\377\210" "P4\377\212Q5\377\216T7\377\215R5\377\216U6\377\221V8\377\215U5\377\211" "O/\377\224S)\377\211V!\377T<\22\377\204I6\15\377\210\31\31T\377\3\32" "\32U\377\33\33U\377\35\35X\377\202\36\36X\377\1\37\37Y\377\205\40\40" "Z\377\202\37\37Y\377\7##]\377%%^\377&&_\377**c\377,,e\377..g\37700h\377" "\20211i\377\1""22j\377\20222k\377\1""33k\377\20255m\377\20766n\377\204" "77o\377\20688p\377\202::q\377\211<5-\377C<5\377mia\377\251\246\244\377\313\311\307\377\325" "\322\321\377\326\322\320\377\202\326\322\317\377\15\326\322\320\377\327" "\323\321\377\330\324\321\377\330\324\322\377\327\322\315\377\317\311" "\304\377\273\262\251\377\262\245\223\377\317\302\257\377\312\274\251" "\377\227\206k\377dR.\377K8\17\377\202I6\15\377\15K6\16\377U7\25\377^" "8\34\377n\77&\377u@&\377yE+\377}F,\377~G,\377\177G-\377\205M0\377\210" "M0\377\210N2\377\211N2\377\202\212O3\377\16\211P4\377\216R4\377\221W" "8\377\226Y=\377\222V:\377\224X:\377\222V9\377\222V6\377|M*\377U<\24\377" "I7\16\377]L2\377\\M2\377K8\20\377\202I6\15\377\1\31\31T\377\202\32\32" "U\377\11\33\33U\377\35\35W\377\35\35X\377\35\35W\377\35\35X\377\36\36" "X\377\35\35X\377\36\36X\377\35\35X\377\202\36\36X\377\207\37\37Y\377" "\10\"\"[\377\"\"\\\377%%^\377&&_\377))b\377++d\377,,e\377//h\377\202" "22j\377\20333k\377\20255m\377\1""66n\377\20677n\377\20477o\377\202::" "q\377\206;;r\377\203<>u\377\204\77\77v\377\202@@w\377\203" "AAx\377\206CCz\377\204DD{\377\6AAx\377>>u\377<>u\377\202@@w\377\202FF|\377\2LL\202\377MM\203\377\202QQ\207\377" "\3RR\210\377SS\210\377VV\213\377\207WW\214\377\2YY\216\377ZZ\216\377" "\203[[\217\377\207]]\221\377\1``\224\377\202aa\225\377\10``\224\377]" "]\221\377\\\\\221\377YY\216\377XX\215\377WW\214\377VV\213\377TT\211\377" "\203QQ\206\377\10TT\211\377VV\213\377ZZ\216\377^^\222\377bb\226\377c" "c\227\377ff\231\377hh\233\377\202nn\241\377\1qq\244\377\203ss\245\377" "\2tt\246\377ww\251\377\203xx\252\377\1zz\253\377\203{{\254\377\5xx\252" "\377zz\253\377xx\252\377uu\247\377tt\246\377\202vv\250\377\202uu\250" "\377\32rr\244\377ww\251\377yy\252\377{{\254\377\203\203\263\377\206\206" "\266\377\213\213\260\377\234\234^\377\263\263K\377\266\266O\377\267\267" "Q\377\266\266O\377\261\261L\377\225\225\206\377\227\227\303\377\226\226" "\304\377\223\223\300\377\222\222\300\377\220\220\277\377\217\217\277" "\377\213\213\274\377\214\214\274\377\216\216\276\377\213\213\273\377" "\216\216\276\377\220\220\300\377\203\224\224\303\377\6\230\230\307\377" "\233\233\312\377\237\237\316\377\245\245\323\377\246\246\324\377\250" "\250\325\377\203\246\246\324\377\1\244\244\322\377\202\247\247\324\377" "\2\246\246\324\377\247\247\324\377\202\252\252\327\377\17\256\256\332" "\377\263\263\337\377\265\265\340\377\270\270\343\377\271\271\344\377" "\247\247\314\377115\377000\377AAB\377VVW\377mmm\377\203\203\203\377\230" "\230\230\377\250\250\250\377\264\264\264\377\202\272\272\272\377\20\265" "\265\265\377\254\254\254\377\237\237\237\377\217\217\217\377}}}\377l" "lk\377ZZY\377HHH\377999\377+++\377\37\37\37\377\24\24\24\377\16\16\17" "\377\\Xb\377h[I\377L:\23\377\211I6\15\377\77K9\21\377[K/\377\\L1\377" "K9\21\377L9\21\377kX7\377\235\214u\377\307\266\247\377\323\303\267\377" "\317\301\266\377\303\275\271\377\274\273\272\377\222\222\217\377ZXR\377" "NG@\377P@6\377K+#\377L'\35\377N&\35\377R&\34\377X&\37\377`2*\377\233" "DS\377\332e\204\377\346p\221\377\351t\225\377\342t\223\377\312Uc\377" "\330IG\377\347GA\377\352]W\377\314\\T\377\330~\214\377\355}\227\377\365" "\206\244\377\366\221\256\377\362\225\260\377\307~\212\377\254\220\207" "\377\236\204w\377\232\202r\377\232~i\377\333\271u\377\362\326t\377\365" "\335w\377\365\337y\377\352\324w\377\257\230f\377\243\211p\377\273\237" "t\377\303\245r\377\325\234u\377\353\216\210\377\350\201\225\377\351\207" "\242\377\344\177\233\377\304cy\377e#!\377X\36\17\377U\36\14\377T\36\14" "\377T\36\13\377S\35\13\377\202R\36\11\377\2R\40\14\377S\40\14\377\202" "S!\16\377)R\37\13\377R\40\15\377Q\40\13\377O\37\13\377H\40\15\3778\25" "\7\3773\17\4\3772\16\3\377-\15\2\377:\32\6\377O5\32\377J<+\377>4(\377" ";1&\3771)\40\3771'\36\37780%\377B:/\377JD:\377qhg\377\226\216\224\377" "\314\312\312\377\327\324\325\377\331\326\325\377\327\324\323\377\327" "\323\322\377\330\324\322\377\332\324\322\377\331\323\317\377\330\321" "\314\377\330\322\315\377\325\321\315\377\314\306\301\377\264\252\235" "\377\267\251\224\377\331\313\273\377\331\314\275\377\274\256\232\377" "\207wZ\377XF\37\377J7\16\377\202I6\15\377\35N7\20\377^=\32\377uE'\377" "\177K.\377\207M1\377\212N2\377\213Q4\377\212P2\377\211N0\377\207M.\377" "\211O0\377\213R4\377\216T6\377\216T7\377\215T5\377\223X9\377\225[=\377" "\231^=\377\205Q1\377^@\32\377J6\16\377Q\77\34\377\216\206\221\377\266" "\265\336\377\266\266\337\377\241\235\270\377{qo\377WG)\377\32\32U\377" "\202\33\33U\377\2\35\35W\377\36\36X\377\202\37\37Y\377\202!![\377\202" "\37\37Y\377\202\36\36X\377\1\35\35W\377\202\36\36X\377\202\37\37Y\377" "\202!![\377\3\"\"[\377##]\377$$^\377\202%%^\377\7&&_\377((b\377))b\377" "++d\377..g\37700h\37722j\377\20344l\377\20266n\377\2""77n\37777o\377" "\21088p\377\202::q\377\204<>u\377\1\77\77v\377\211AAx\377" "\2DD{\377EE{\377\207FF}\377\203HH~\377\4FF|\377AAx\377>>u\37788p\377" "\20299q\377\3;;r\377::q\37788p\377\20477o\377\2<>u" "\377\202DD{\377\7GG~\377II\177\377NN\204\377PP\205\377SS\210\377TT\211" "\377VV\213\377\206WW\214\377\3XX\215\377ZZ\216\377[[\220\377\203\\\\" "\221\377\1]]\221\377\202__\223\377\205``\224\377\1bb\226\377\202cc\227" "\377\2aa\225\377__\223\377\202[[\220\377\202[[\217\377\2YY\216\377WW" "\214\377\202VV\213\377\202WW\214\377\6[[\220\377aa\225\377cc\227\377" "ff\231\377jj\235\377ll\237\377\202qq\244\377\1ss\245\377\203uu\247\377" "\2uu\250\377xx\252\377\203zz\253\377\2{{\254\377}}\256\377\202~~\257" "\377\202||\256\377\3~~\257\377zz\253\377vv\250\377\202uu\250\377\30u" "u\247\377vv\247\377rr\244\377vv\251\377{{\254\377}}\255\377\205\205\264" "\377\213\213\270\377\216\216\224\377\261\261S\377\272\272V\377\275\275" "Z\377\277\277\\\377\275\275Y\377\272\272T\377\246\246a\377\232\232\272" "\377\232\232\307\377\227\227\304\377\225\225\303\377\223\223\302\377" "\221\221\301\377\217\217\277\377\220\220\277\377\202\220\220\300\377" "\2\222\222\301\377\225\225\304\377\202\231\231\307\377\7\232\232\311" "\377\235\235\313\377\241\241\317\377\244\244\322\377\252\252\327\377" "\254\254\331\377\255\255\332\377\202\254\254\331\377\1\252\252\327\377" "\202\250\250\325\377\2\251\251\326\377\250\250\325\377\202\254\254\331" "\377$\253\253\330\377\257\257\334\377\264\264\337\377\266\266\341\377" "\272\272\345\377\266\266\340\377OO]\377)))\37799:\377MMM\377ccc\377z" "yy\377\220\220\220\377\244\244\244\377\263\263\263\377\275\274\274\377" "\300\277\277\377\276\275\275\377\266\266\266\377\253\253\253\377\235" "\235\235\377\214\214\213\377yyy\377hhg\377VVU\377DDD\377555\377(((\377" "\34\34\34\377\23\23\24\377\14\14\15\377\26\26\31\377\240\237\305\377" "\247\244\302\377}sr\377WF'\377\210I6\15\377>J7\16\377^K'\377\216}c\377" "\301\260\240\377\325\304\270\377\324\303\270\377\323\302\266\377\315" "\300\267\377\302\276\273\377\300\276\276\377\225\227\224\377OKE\377N" "E<\377PA9\377M/&\377N)\40\377S'\37\377\217))\377\276&&\377\322+*\377" "\32341\377\311=A\377\314aw\377\342w\226\377\347\203\241\377\330\215\242" "\377\247w}\377\276\242\241\377\344\313\264\377\354\323\251\377\333\302" "\216\377\314\262\204\377\252\205n\377\304\235\234\377\311\244\246\377" "\260\214\212\377\246\210\177\377\236\203w\377\243\213~\377\230\201r\377" "\236\205t\377\263\225d\377\322\267f\377\352\325v\377\363\342\204\377" "\352\327\203\377\266\232Z\377\322\261h\377\362\327s\377\366\335x\377" "\367\341~\377\366\340\202\377\317\254]\377\242L<\377\255.+\377\265/+" "\377\233$\33\377l\36\16\377W\36\13\377U\35\11\377T\35\10\377S\36\11\377" "\202R\35\10\377/S\40\14\377S\40\13\377T\"\17\377T!\15\377W#\21\377W#" "\20\377S\"\20\377N\33\7\377N\40\13\377H\34\12\377A\26\7\377@\26\6\377" "<\23\5\3771\15\3\377.\20\4\377@!\12\377Q5\34\377A4&\377:2(\377M\77""0" "\377UE/\377XH0\377MA3\377RME\377qco\377\241\235\241\377\312\312\313\377" "\326\324\326\377\325\323\324\377\324\322\322\377\324\321\317\377\324" "\321\316\377\324\320\316\377\324\320\314\377\327\323\317\377\331\324" "\321\377\333\326\324\377\325\320\315\377\306\300\271\377\254\240\217" "\377\310\274\253\377\336\322\305\377\340\323\306\377\330\314\276\377" "\257\242\216\377{kL\377R@\30\377\203I6\15\377\20T:\23\377jC\40\377\177" "L,\377\205L/\377\207M/\377\213Q3\377\206M/\377\214Q2\377\217T5\377\221" "V8\377\223Y<\377\217V8\377\220V:\377\211S4\377eC\36\377K7\16\377\202" "I6\15\377\10M;\25\377qe\\\377\231\223\250\377\265\264\335\377\272\272" "\346\377\267\267\343\377\261\260\332\377\37\37Y\377\202\36\36X\377\204" "\37\37Y\377\202!![\377\202\37\37Y\377\202\36\36X\377\5\35\35W\377\37" "\37Y\377\36\36X\377\37\37Y\377\40\40Z\377\202\"\"[\377\2\"\"\\\377$$" "^\377\202%%^\377\11&&_\377%%^\377&&_\377%%^\377&&_\377((b\377,,e\377" "//h\37722j\377\20233k\377\20366n\377\1""77o\377\20288p\377\202::q\377" "\206;;r\377\204<>u\377\1\77\77v\377\203AAx\377\206CCz\377" "\2DD{\377EE{\377\207FF}\377\1HH~\377\202II\177\377\5LL\201\377FF}\377" "FF|\377@@w\377<\377000\377$##\377" "\31\31\31\377\21\21\21\377\12\12\13\377\7\7\10\377\77\77M\377\270\270" "\344\377\272\272\346\377\264\263\333\377\224\216\235\377`P8\377\204I" "6\15\377mR\77\30\377}jL\377\263\242\216\377\324\304\270\377\332\312\276" "\377\327\310\274\377\324\305\270\377\322\302\265\377\314\300\267\377" "\303\277\274\377\302\277\300\377\273\272\272\377ilh\377ND;\377NA9\377" "N4,\377N,\"\377O(\37\377W)!\377\24074\377\3241,\377\3444-\377\344ME\377" "\300NC\377\207UM\377\212e_\377\214d_\377\262\230\224\377\340\325\327" "\377\337\316\274\377\362\330\203\377\367\344\204\377\370\351\211\377" "\370\354\222\377\356\337\214\377\346\330\273\377\347\332\313\377\327" "\314\301\377\250\226\214\377\237\210|\377\235\206z\377\215re\377\235" "\205w\377\263\237\215\377\255\224z\377\337\276o\377\362\327r\377\364" "\334v\377\363\335y\377\357\330v\377\322\270Y\377\313\260h\377\321\271" "s\377\304\255s\377\263tI\377\327;.\377\3463*\377\3534+\377\351C8\377" "\266.\35\377Z\31\10\377V\35\10\377U\36\11\377S\36\10\377T\34\7\377T\35" "\10\377U\40\13\377V!\14\377V\"\17\377V!\14\377X#\16\377Y%\21\377U#\17" "\377L\32\7\377G\32\10\377F\31\10\377E\30\7\377F\27\7\377M\37\15\377B" "\26\6\377=\22\4\3771\16\3\3777\20\4\377W-\23\377N:$\377A6*\377ZJ1\377" "XF*\377ZJ0\377A9.\377e\\Z\377~s\200\377\274\273\275\377\317\316\321\377" "\321\321\323\377\320\316\317\377\320\316\315\377\321\316\316\377\322" "\316\315\377\322\316\313\377\324\321\316\377\330\323\320\377\332\326" "\323\377\334\327\324\377\332\324\321\377\316\312\305\377\263\251\236" "\377\272\256\233\377\341\325\307\377\202\344\327\312\377\5\343\327\313" "\377\323\307\270\377\245\226\177\377n\\:\377M:\22\377\202I6\15\377\6" "K7\16\377Y<\26\377oE#\377\202K+\377\213Q3\377\217U6\377\202\222W9\377" "\4\223X9\377\215V6\377jD\40\377M8\17\377\206I6\15\377\6J7\17\377WF(\377" "yok\377\240\234\266\377\264\264\336\377''`\377\203%%^\377\202\"\"\\\377" "\1\40\40Z\377\202!![\377\6\40\40Z\377\"\"[\377\40\40Z\377!![\377\40\40" "Z\377\"\"[\377\202!![\377\202\"\"[\377\202\"\"\\\377\1$$^\377\202%%^" "\377\1''a\377\202&&_\377\11%%^\377&&_\377%%^\377**c\377,,e\377..g\377" "00h\37733k\37766n\377\20277o\377\20388p\377\202::q\377\2<>u\377\202\77\77v\377\210AAx\377\3CCz\377DD{\377EE{\377\207FF}\377" "\1HH~\377\205II\177\377\202KK\201\377\1LL\201\377\203LL\202\377\10II" "\177\377DD{\377BBy\377@@w\377>>u\377\77\77v\377@@w\377\77\77v\377\205" ">>u\377\1AAx\377\202DD{\377\202FF|\377\4KK\201\377LL\201\377QQ\206\377" "QQ\207\377\202WW\214\377\2ZZ\216\377\\\\\221\377\207]]\221\377\2``\224" "\377aa\224\377\203aa\225\377\2cc\227\377dd\230\377\205ee\230\377\1gg" "\233\377\202hh\233\377\6gg\233\377dd\230\377aa\224\377aa\225\377``\224" "\377^^\222\377\202]]\221\377\10XX\215\377[[\217\377]]\221\377``\224\377" "bb\226\377ff\231\377gg\233\377kk\236\377\202qq\244\377\202ww\251\377" "\1||\256\377\203}}\256\377\2~~\257\377\177\177\260\377\203\200\200\261" "\377\1\203\203\264\377\202\205\205\265\377\36\202\202\263\377\201\201" "\262\377\202\202\263\377\177\177\260\377||\256\377{{\254\377}}\256\377" "||\254\377||\255\377zz\253\377~~\257\377\203\203\262\377\213\213\270" "\377\220\220\235\377\264\264Z\377\300\300_\377\306\306i\377\311\311o" "\377\312\312q\377\310\310n\377\306\306g\377\300\300^\377\254\254f\377" "\240\240\275\377\241\241\315\377\235\235\311\377\233\233\311\377\230" "\230\306\377\225\225\304\377\226\226\304\377\202\231\231\307\377\2\232" "\232\310\377\233\233\312\377\202\240\240\316\377\5\241\241\317\377\245" "\245\323\377\252\252\327\377\254\254\331\377\257\257\334\377\202\261" "\261\336\377\177\260\260\335\377\257\257\334\377\256\256\332\377\255" "\255\332\377\256\256\332\377\255\255\332\377\256\256\332\377\261\261" "\336\377\257\257\333\377\257\257\334\377\265\265\340\377\266\266\341" "\377\245\242\274\377wni\377%\"\37\377'''\377887\377MML\377edd\377}}}" "\377\225\225\225\377\252\252\252\377\271\271\271\377\304\303\303\377" "\311\310\310\377\310\310\307\377\301\301\301\377\266\266\266\377\250" "\250\250\377\226\226\226\377\203\203\203\377ppo\377]]\\\377KKJ\377::" "9\377,,,\377\37\37\37\377\26\25\25\377\16\16\15\377\10\10\10\377\5\5" "\5\377\6\6\7\377\206\206\246\377\272\271\345\377\253\250\311\377\205" "|\200\377ZJ.\377I6\15\377L9\20\377kX6\377\240\216x\377\320\277\260\377" "\333\313\277\377\331\311\275\377\330\310\274\377\326\310\273\377\324" "\305\271\377\321\302\267\377\311\276\263\377\276\272\270\377\300\276" "\276\377\274\273\273\377\257\257\257\377OPK\377G;1\377L90\377O0)\377" "O+\"\377R*!\377l73\377\233LU\377\274Wg\377\303Zi\377\244Z_\377\262\224" "\222\377\277\256\256\377\317\304\306\377\305\270\270\377\320\303\303" "\377\357\350\354\377\332\323\323\377\340\321\270\377\345\326\237\377" "\347\334\232\377\340\317\211\377\356\325x\377\363\331z\377\365\336\201" "\377\362\335\202\377\337\313\201\377\315\276\251\377\305\267\262\377" "\317\304\301\377\257\242\233\377\236\207z\377\237\205t\377\310\251n\377" "\356\325y\377\366\344\205\377\367\351\215\377\364\350\236\377\315\270" "u\377\226x`\377\230yi\377\227l`\377\256ll\377\303em\377\321S]\377\304" "RR\377\231H>\377f!\21\377\\\37\13\377X\36\10\377V\36\10\377U\36\10\377" "U\34\10\377U\34\7\377V\37\13\377V!\14\377Z'\26\377X!\16\377[&\23\377" "[)\26\377Y&\25\377O\35\12\377D\31\7\377E\27\7\377+H\31\7\377I\31\12\377" "J\32\10\377E\26\5\377F\25\7\377C\24\6\3774\15\2\3777\16\3\377])\15\377" "Z@%\377TE3\377YJ/\377YI.\377NB1\377LE;\377oak\377\227\222\230\377\303" "\304\306\377\315\315\320\377\311\311\313\377\310\310\310\377\313\312" "\311\377\315\313\312\377\316\313\312\377\321\317\315\377\325\323\320" "\377\327\324\321\377\331\324\322\377\330\324\322\377\324\320\315\377" "\314\311\304\377\270\260\247\377\257\243\217\377\341\324\306\377\345" "\327\312\377\344\327\312\377\344\327\313\377\342\326\312\377\340\325" "\310\377\312\275\255\377\226\207n\377cQ.\377J7\16\377\202I6\15\377\14" "M7\17\377`\77\32\377wJ(\377\211P1\377\216T6\377tI%\377Q:\21\377I7\16" "\377eWC\377\216\207\222\377yni\377UD%\377\206I6\15\377\3J7\17\377\\M" "2\377++d\377\203((b\377\202%%^\377\11\"\"\\\377\"\"[\377!![\377\40\40" "Z\377!![\377\40\40Z\377!![\377\"\"[\377##]\377\204$$^\377\2##]\377\"" "\"[\377\202\"\"\\\377\2##]\377$$^\377\203%%^\377\14''`\377&&_\377))b" "\377**c\377++d\377**c\377--f\377//h\37711i\37744l\37766n\37777o\377\202" "99q\377\3;;r\377<>u\377\2\77\77v\377@@w\377\203AAx" "\377\206CCz\377\1DD{\377\203FF}\377\206HH~\377\202KK\201\377\1LL\201" "\377\206LL\202\377\6MM\203\377NN\204\377QQ\206\377KK\201\377II\177\377" "FF|\377\203AAx\377\7@@w\377AAx\377>>u\377\77\77v\377>>u\377\77\77v\377" "AAx\377\202EE{\377\202FF|\377\4KK\201\377LL\202\377NN\204\377QQ\206\377" "\202WW\214\377\202[[\220\377\202]]\221\377\204``\224\377\202aa\224\377" "\1bb\226\377\203cc\227\377\3dd\230\377ee\230\377gg\233\377\206hh\233" "\377\12kk\236\377ll\237\377jj\235\377hh\233\377ee\230\377dd\230\377c" "c\227\377bb\226\377aa\225\377``\224\377\202[[\220\377\2^^\222\377``\224" "\377\202hh\233\377\1mm\240\377\202pp\243\377\3uu\250\377xx\252\377||" "\256\377\203~~\257\377\3\177\177\260\377\200\200\261\377\202\202\263" "\377\202\203\203\264\377\2\205\205\265\377\206\206\267\377\202\207\207" "\267\377\5\205\205\265\377\205\205\266\377\205\205\265\377\200\200\261" "\377~~\257\377\202\200\200\260\377\24\177\177\257\377~~\257\377\177\177" "\257\377\207\207\266\377\213\213\264\377\235\235r\377\274\274[\377\304" "\304g\377\312\312q\377\315\315w\377\316\316y\377\316\316v\377\311\311" "p\377\304\304e\377\274\274[\377\241\241\215\377\246\246\316\377\241\241" "\316\377\240\240\315\377\235\235\313\377\202\232\232\310\377\203\233" "\233\312\377\1\236\236\314\377\202\241\241\317\377\14\242\242\320\377" "\246\246\324\377\254\254\331\377\262\262\336\377\264\264\340\377\266" "\266\342\377\264\264\341\377\264\264\340\377\263\263\337\377\257\257" "\334\377\262\262\336\377\257\257\334\377\202\257\257\333\377\177\261" "\261\336\377\255\255\330\377\234\230\265\377\202z~\377_P7\377P\77\30" "\3774+\27\377\37\36\36\377---\377AA@\377WWV\377qqp\377\211\211\211\377" "\241\241\241\377\264\264\264\377\302\302\301\377\312\312\312\377\314" "\314\314\377\312\312\312\377\301\301\301\377\266\266\266\377\246\246" "\246\377\223\222\222\377~~~\377kkj\377XXW\377FFE\377555\377'''\377\34" "\33\33\377\23\22\22\377\13\13\12\377\7\7\6\377\4\3\3\377\3\3\2\377\34" "\32\30\377fXH\377M;\26\377J7\16\377[H#\377\213y^\377\277\256\236\377" "\331\307\274\377\333\314\300\377\330\312\275\377\331\311\275\377\326" "\307\274\377\321\303\271\377\320\302\267\377\316\277\264\377\312\275" "\262\377\276\270\264\377\277\273\273\377\275\273\273\377\270\266\264" "\377\236\241\240\377;95\3778,#\377H2+\377O-&\377Q*!\377X,$\377\263Rb" "\377\344n\212\377\357{\231\377\364\206\246\377\347\205\241\377\234di" "\377\244\203\200\377\330\314\316\377\320\305\306\377\340\326\330\377" "\352\343\347\377\332\323\325\377\336\326\327\377\336\325\325\377\340" "\330\327\377\341\325\312\377\361\334\240\377\366\344\215\377\367\351" "\224\377\363\350\232\377\360\335\204\377\353\322\202\377\357\330\221" "\377\360\333\227\377\341\317\232\377\311\271\240\377\256\234\221\377" "\255\231\215\377\253\225\203\377\251\220s\377\266\236\200\377\262\233" "\203\377\250\217\177\377\235\202v\377\256\227\217\377\323\211\226\377" "\361\206\247\377\364\213\256\377\365\214\260\377\363\213\257\377\326" "x\223\377g($\377\\\"\16\377Y\37\12\377X\37\11\377W\36\11\377W\37\13\377" "W\36\11\377Y!\17\377['\24\377[$\21\377]'\23\377`-\33\377b3$\377_/\40" "\377V%\24\377K\31\7\377A\25\5\377E\30\11\377I\31\11\377J\30\7\377G\26" "\10\377E\23\4\377E\25\6\377\77\23\4\377\40""4\16\3\377=\23\10\377S'\17" "\377bH1\377ZI/\377XF)\377XG-\377C9-\377]UQ\377rgu\377\256\256\261\377" "\304\305\310\377\303\304\306\377\277\277\302\377\301\301\302\377\305" "\304\304\377\313\311\311\377\321\317\316\377\324\322\320\377\325\322" "\320\377\324\320\316\377\320\316\314\377\315\313\311\377\312\311\306" "\377\302\300\275\377\265\260\250\377\250\234\210\377\341\325\307\377" "\346\332\315\377\345\331\314\377\345\330\314\377\344\330\315\377\202" "\344\330\314\377\5\340\323\307\377\301\263\240\377\211y\\\377YF\40\377" "J7\16\377\202I6\15\377\2Q:\22\377U;\24\377\202I6\15\377\10|rp\377\266" "\266\337\377\272\272\346\377\267\267\343\377\262\261\331\377\225\220" "\242\377ocV\377P\77\33\377\205I6\15\377\1,,e\377\202**c\377\2,,e\377" "**c\377\202++d\377\2**c\377))b\377\202''`\377\2$$^\377##]\377\202$$^" "\377\203%%^\377\1&&_\377\204%%^\377\3$$^\377%%^\377&&_\377\202''`\377" "\202((b\377\204**c\377\11))b\377**c\377++d\377..g\37711i\37755m\3778" "8p\377::q\377<>u\377\202\77\77v\377\211AAx\377" "\202DD{\377\205EE{\377\203FF}\377\1HH~\377\205II\177\377\202KK\201\377" "\2LL\201\377LL\202\377\206NN\204\377\13PP\205\377QQ\206\377RR\210\377" "QQ\206\377PP\205\377JJ\200\377GG~\377FF|\377DD{\377EE{\377FF|\377\202" "DD{\377\202CCz\377\202DD{\377\16FF}\377GG~\377KK\201\377LL\201\377LL" "\202\377OO\205\377RR\210\377SS\210\377WW\214\377[[\217\377]]\221\377" "^^\222\377aa\225\377bb\226\377\205cc\227\377\2ee\230\377ff\231\377\204" "gg\233\377\1jj\235\377\205kk\236\377\16ll\237\377nn\241\377pp\242\377" "nn\241\377kk\236\377ii\234\377ff\232\377ee\230\377cc\227\377bb\226\377" "``\224\377[[\217\377]]\221\377``\224\377\202ff\232\377\1ll\237\377\202" "pp\243\377\4vv\250\377zz\253\377||\256\377\177\177\260\377\203\202\202" "\263\377\2\203\203\264\377\205\205\265\377\202\206\206\267\377\2\207" "\207\267\377\211\211\271\377\202\212\212\273\377\202\212\212\272\377" "\37\212\212\273\377\206\206\267\377\203\203\264\377\204\204\264\377\206" "\206\266\377\204\204\265\377\204\204\264\377\203\203\262\377\213\213" "\271\377\216\216\231\377\263\263X\377\301\301`\377\310\310n\377\316\316" "x\377\321\321~\377\322\322\200\377\322\322}\377\316\316v\377\311\311" "m\377\301\301`\377\260\260`\377\243\243\265\377\246\246\321\377\245\245" "\321\377\242\242\320\377\237\237\314\377\237\237\315\377\241\241\316" "\377\240\240\316\377\237\237\316\377\242\242\320\377\202\246\246\324" "\377\6\247\247\324\377\254\254\331\377\260\260\335\377\266\266\342\377" "\267\267\343\377\270\270\344\377\202\266\266\342\377\177\262\262\336" "\377\257\257\333\377\261\261\336\377\257\257\333\377\256\256\332\377" "\243\241\303\377\203z\202\377]M4\377J8\17\377L9\21\377N<\24\377J:\27" "\377\33\32\26\377\"\"\"\377333\377HHG\377``_\377zzz\377\224\224\224\377" "\252\252\252\377\275\274\274\377\311\311\311\377\317\317\317\377\320" "\320\320\377\313\313\313\377\301\301\301\377\264\264\264\377\244\244" "\245\377\220\220\221\377{{|\377ggg\377SSR\377AA@\377111\377###\377\31" "\30\30\377\20\17\17\377\12\12\11\377\6\6\5\377\4\3\3\377\2\1\1\377\2" "\2\1\3779+\17\377saA\377\253\231\204\377\322\301\264\377\331\310\274" "\377\331\310\275\377\327\307\274\377\327\306\272\377\323\304\267\377" "\322\303\270\377\320\302\266\377\316\276\264\377\314\275\262\377\311" "\274\262\377\276\267\261\377\272\266\267\377\271\267\267\377\271\267" "\270\377\265\265\266\377\213\217\216\37742-\3770%\34\377B-%\377O.'\377" "Q+\"\377T*!\377n73\377\247R^\377\305j~\377\321h}\377\317BL\377\32001" "\377\327=:\377\307`[\377\232xr\377\244\213\206\377\313\274\271\377\277" "\257\252\377\273\253\245\377\277\257\253\377\334\321\321\377\357\352" "\353\377\361\357\360\377\363\360\353\377\355\351\340\377\305\266\242" "\377\342\303{\377\366\336z\377\370\344\177\377\370\346\204\377\370\351" "\215\377\362\337\220\377\347\340\330\377\353\345\346\377\344\336\340" "\377\246\225\220\377\236\205{\377\241\207{\377\241\212\201\377\305\266" "\264\377\336\325\326\377\264\223\223\377\314s\202\377\345u\221\377\351" "\204\240\377\337\221\247\377\273v\204\377e'#\377]#\24\377X\36\12\377" "W\35\11\377W\36\11\377W\36\10\377X\37\12\377Z#\20\377[$\21\377\\&\23" "\377a.\37\377d7(\377e9-\377_0\40\377Z+\33\377M\32\7\377D\24\4\377D\25" "\6\377\13C\24\4\377E\25\11\377Q#\26\377L\32\12\377H\26\7\377A\21\4\377" ":\16\3\377>\21\6\377<\21\6\377T&\17\377dN6\377\202XE(\377\26M@-\377H" "\77""7\377hZb\377\203}\207\377\262\265\270\377\275\277\302\377\274\275" "\300\377\276\277\301\377\306\305\305\377\314\312\312\377\321\316\320" "\377\323\321\321\377\320\316\315\377\314\313\311\377\310\307\306\377" "\306\305\305\377\305\305\304\377\303\303\301\377\273\274\271\377\256" "\252\243\377\244\230\206\377\343\326\311\377\202\347\331\315\377\11\346" "\331\316\377\345\330\314\377\345\330\313\377\347\331\314\377\346\331" "\314\377\345\330\313\377\334\316\276\377\264\244\215\377dR.\377\205I" "6\15\377\13L9\22\377dVA\377\213\203\215\377\256\254\317\377\270\270\344" "\377\267\267\343\377\264\264\341\377\253\251\317\377\213\204\217\377" "fXF\377L:\24\377\202I6\15\377\1,,e\377\202**c\377\2,,e\377**c\377\204" "++d\377\202))b\377\202''`\377\204%%^\377\2&&_\377''`\377\202&&_\377\3" "''`\377&&_\377%%^\377\204''`\377\3((b\377))b\377**c\377\202++d\377\3" ",,e\377++d\377**c\377\202++d\377\4..g\37722j\37766n\37777n\377\202<<" "s\377\1==u\377\202>>u\377\202\77\77v\377\202AAx\377\207CCz\377\2DD{\377" "EE{\377\203FF}\377\206HH~\377\2KK\201\377LL\201\377\207LL\202\377\202" "PP\205\377\206QQ\206\377\203RR\210\377\10PP\205\377LL\202\377II\177\377" "FF}\377EE{\377FF}\377FF|\377FF}\377\202DD{\377\202CCz\377\17EE{\377F" "F}\377II\177\377HH~\377JJ\200\377PP\205\377QQ\206\377RR\210\377WW\214" "\377\\\\\221\377__\223\377``\224\377aa\225\377cc\227\377dd\230\377\204" "ee\230\377\2ff\231\377ff\232\377\204hh\233\377\2jj\235\377ll\237\377" "\206nn\241\377\202qq\244\377\3pp\242\377nn\241\377hh\233\377\202ff\232" "\377\10ee\230\377dd\230\377bb\226\377aa\225\377bb\226\377dd\230\377f" "f\232\377ll\237\377\202qq\244\377\5vv\250\377zz\253\377||\256\377\200" "\200\261\377\203\203\264\377\203\205\205\265\377\2\205\205\266\377\211" "\211\271\377\202\212\212\272\377\12\212\212\273\377\214\214\274\377\216" "\216\276\377\214\214\274\377\212\212\273\377\214\214\274\377\212\212" "\273\377\206\206\267\377\204\204\264\377\206\206\267\377\203\206\206" "\266\377\24\215\215\263\377\235\235h\377\273\273X\377\304\304g\377\314" "\314t\377\321\321~\377\324\324\204\377\325\325\206\377\325\325\203\377" "\321\321}\377\314\314s\377\305\305f\377\274\274Y\377\244\244v\377\252" "\252\315\377\251\251\324\377\245\245\322\377\243\243\320\377\241\241" "\317\377\243\243\320\377\202\242\242\320\377\1\245\245\323\377\202\250" "\250\325\377\177\252\252\327\377\256\256\332\377\264\264\340\377\271" "\271\344\377\272\272\346\377\271\271\345\377\267\267\343\377\266\266" "\342\377\262\262\336\377\257\257\333\377\246\244\311\377\200w}\377cU" "A\377L9\23\377I6\15\377J7\15\377mO\13\377fL\20\377O=\25\3771(\25\377" "\30\27\27\377%%%\377887\377NNM\377hhg\377\202\202\202\377\234\234\234" "\377\262\262\262\377\303\302\302\377\315\315\315\377\322\322\322\377" "\323\323\323\377\314\314\314\377\301\301\301\377\263\263\263\377\241" "\241\242\377\216\216\216\377yyy\377dde\377PPQ\377>>>\377.--\377\40\40" "\40\377\26\25\25\377\16\15\15\377\10\10\7\377\5\4\4\377\3\2\2\377\2\2" "\1\377\1\1\1\377963\377\276\262\250\377\301\264\251\377\310\271\257\377" "\322\301\266\377\325\305\272\377\326\305\272\377\325\304\271\377\322" "\302\266\377\317\300\264\377\314\276\263\377\311\274\261\377\307\271" "\257\377\277\263\250\377\262\256\254\377\260\256\256\377\257\254\256" "\377\254\253\255\377\252\252\254\377nut\3770)#\377+!\31\377<)\"\377P" "2'\377Q-$\377R,#\377T)\40\377V(\35\377b3*\377\231:6\377\327.(\377\346" ",&\377\3537.\377\345LE\377\274[`\377\310z\211\377\314\204\221\377\257" "x~\377\221oh\377\235\200v\377\252\214\205\377\312\266\265\377\337\323" "\324\377\353\342\345\377\356\346\352\377\347\336\341\377\301\257\245" "\377\332\304\235\377\342\317\224\377\346\324\224\377\331\301\207\377" "\316\252\205\377\300\237\225\377\262\230\221\377\272\245\240\377\320" "\245\252\377\321\203\222\377\321w\207\377\315{\212\377\274\200\211\377" "\260\201~\377\315GG\377\3411.\377\3470)\377\34684\377\326>:\377\234M" "A\377a&\30\377[\40\15\377Z\37\13\377X\35\11\377X\36\11\377Y\40\12\377" "Z#\16\377[%\21\377c2#\377b3#\3776i\77""2\377g>2\377g<2\377h>3\377[*\33" "\377M\32\10\377E\24\4\377F\24\5\377G\25\5\377<\16\4\377I\31\13\377J\27" "\7\377G\24\5\377C\24\5\377@\21\4\377\77\20\5\377>\21\4\377B\24\6\377" "lI-\377YI2\377UE(\377TD+\377>4'\377XPK\377l]m\377\233\233\237\377\272" "\274\277\377\301\303\306\377\301\302\304\377\306\306\307\377\315\313" "\314\377\317\316\315\377\317\315\315\377\312\311\312\377\305\304\305" "\377\303\303\304\377\300\301\301\377\277\300\301\377\302\303\303\377" "\277\301\301\377\271\273\272\377\251\242\233\377\256\241\216\377\346" "\331\315\377\346\332\316\377\347\333\320\377\350\334\322\377\346\331" "\316\377\346\331\314\377\347\331\314\377\347\330\313\377\322\302\261" "\377\206tV\377N;\22\377\202K8\20\377\206I6\15\377\12O=\31\377k^P\377" "\222\214\235\377\256\254\324\377\271\271\344\377\264\264\341\377\263" "\263\336\377\222\214\240\377L9\23\377I6\15\377\20700h\377\20222k\377" "\20200h\377\6..g\377--f\377,,e\377**c\377((b\377''a\377\202''`\377\1" "%%^\377\202''`\377\6''a\377''`\377((b\377))b\377((b\377''`\377\203''" "a\377\1**c\377\202++d\377\203,,e\377\202--f\377\10""11i\37700h\37722" "j\37755m\37777n\377;;r\377<>u\377\202AAx\377\204CCz\377\2DD{\377" "EE{\377\210FF}\377\202II\177\377\204KK\201\377\1LL\201\377\203LL\202" "\377\205NN\204\377\202PP\205\377\2QQ\206\377RR\210\377\206SS\210\377" "\13UU\212\377VV\213\377WW\214\377SS\210\377RR\210\377LL\202\377FF}\377" "EE{\377FF|\377DD{\377FF}\377\202EE{\377\202FF|\377\20HH~\377KK\201\377" "LL\202\377MM\203\377LL\202\377OO\205\377QQ\206\377SS\210\377WW\214\377" "[[\220\377``\224\377cc\227\377ee\230\377gg\233\377hh\233\377hg\232\377" "\203hh\233\377\2ii\234\377jj\235\377\204ll\237\377\1pp\242\377\205pp" "\243\377\1ss\245\377\202uu\247\377\4tt\246\377pp\243\377nn\241\377mm" "\240\377\202ii\234\377\6gg\233\377dd\230\377bb\226\377dd\230\377hh\233" "\377ll\237\377\202rr\244\377\3uu\250\377{{\255\377}}\256\377\202\203" "\203\264\377\1\206\206\267\377\202\211\211\271\377\3\212\212\272\377" "\212\212\273\377\215\215\275\377\202\216\216\276\377\1\220\220\277\377" "\202\221\221\301\377\202\220\220\300\377\1\222\222\301\377\202\213\213" "\273\377\33\212\212\272\377\214\214\274\377\214\214\273\377\216\216\273" "\377\216\216\214\377\262\262Q\377\276\276]\377\310\310m\377\317\317z" "\377\324\324\204\377\327\327\213\377\330\330\215\377\327\327\212\377" "\324\324\203\377\317\317z\377\310\310l\377\300\300^\377\264\264U\377" "\241\241\232\377\257\257\327\377\253\253\326\377\251\251\325\377\246" "\246\324\377\247\247\325\377\247\247\324\377\246\246\324\377\250\250" "\325\377\202\252\252\327\377\3\254\254\331\377\260\260\335\377\266\266" "\342\377\203\272\272\346\377)\270\270\344\377\252\250\315\377\213\204" "\222\377gZJ\377L:\23\377J7\15\377V\77\13\377N9\14\377fJ\11\377gJ\11\377" "}Z\12\377xX\15\377qT\22\377\32\27\20\377\32\31\31\377(((\377;;:\377S" "SR\377nnm\377\210\210\210\377\242\242\242\377\267\267\267\377\310\307" "\307\377\321\321\321\377\325\325\325\377\323\323\323\377\313\313\313" "\377\300\300\277\377\262\262\262\377\237\237\237\377\214\214\214\377" "vvv\377aab\377MMN\377;;<\377,,,\377\36\35\35\377\24\23\23\377\14\14\13" "\377\10\10\7\377\4\4\4\377\202\3\3\3\377\7\2\2\2\377\14\13\13\377\264" "\253\246\377\310\276\270\377\304\271\261\377\301\266\254\377\310\271" "\255\377\202\321\300\264\377S\315\276\263\377\314\277\264\377\307\273" "\260\377\304\271\256\377\277\264\252\377\262\253\245\377\251\246\245" "\377\246\243\244\377\244\243\244\377\244\244\245\377\243\243\246\377" "X^^\377*#\35\377&\34\25\3777%\"\377P5.\377Q/&\377Q,$\377R*!\377T)\35" "\377T%\30\377Z'\33\377{,\"\377\216*\36\377\2224(\377\310]h\377\357|\236" "\377\365\205\253\377\367\215\263\377\367\226\272\377\310at\377\3079:" "\377\3271/\377\333:5\377\324QH\377\275tn\377\336\233\252\377\351\216" "\250\377\346\206\242\377\343\215\243\377\316\220\234\377\267fe\377\326" ">5\377\3426)\377\345:-\377\334B6\377\273I@\377\335h}\377\361{\232\377" "\364\203\243\377\366\210\250\377\365\217\256\377\320k\204\377\25501\377" "\3336/\377\355:2\377\362LC\377\347UK\377\2536$\377`\40\16\377[\36\12" "\377Y\36\11\377X\36\11\377Y\37\12\377Y!\14\377]&\24\377c2\"\377f7'\377" "g9)\377j\77""1\377lD:\377oJB\377iA8\377Y'\31\377M\32\7\377G\25\4\377" "I\30\11\377H\25\6\377J\32\14\377J\30\6\377N\33\12\377K\31\11\377H\27" "\10\377\202D\23\4\377*C\24\4\377A\23\5\377Z-\33\377\\I4\377VD'\377VE" "'\377L8\"\377J7+\377fY_\377{q\177\377\257\262\264\377\274\276\301\377" "\302\303\305\377\306\305\307\377\313\312\313\377\317\315\316\377\316" "\315\315\377\312\311\311\377\307\307\307\377\303\303\304\377\301\302" "\302\377\303\303\304\377\301\302\303\377\304\305\305\377\302\303\303" "\377\270\271\271\377\231\220\204\377\307\274\252\377\347\334\320\377" "\351\335\323\377\350\335\322\377\346\332\317\377\347\332\317\377\336" "\321\303\377\231\210n\377TA\33\377J7\17\377i\\K\377\241\235\266\377\242" "\236\270\377}sq\377WG)\377\207I6\15\377\5TC#\377tic\377\223\215\240\377" "\177vy\377P\77\33\377\202I6\15\377\1""22j\377\21022k\377\20211i\377\1" "22j\377\20211i\377\22""22j\37722k\37711i\37700h\377..g\377++d\377**c" "\377((b\377**c\377((b\377**c\377++d\377,,e\377++d\377,,e\377++d\377*" "*c\377++d\377\204,,e\377\202..g\377\2""00h\37711i\377\20200h\377\5""2" "2j\37700h\37755m\37777n\37799q\377\202>>u\377\202BBy\377\202CCz\377\1" "DD{\377\202FF}\377\207HH~\377\2II\177\377KK\201\377\203LL\202\377\205" "MM\203\377\2PP\205\377QQ\206\377\206QQ\207\377\3RR\210\377SS\210\377" "UU\212\377\206VV\213\377\204WW\214\377\5QQ\207\377NN\204\377LL\202\377" "JJ\200\377LL\202\377\202LL\201\377\202II\177\377\2HH~\377JJ\200\377\202" "LL\202\377\202PP\205\377\12TT\211\377VV\213\377ZZ\216\377]]\221\377a" "a\225\377ff\231\377ff\232\377gg\233\377jh\234\377f[\216\377\205kk\236" "\377\2mm\240\377oo\241\377\202pp\242\377\2pp\243\377qq\244\377\205ss" "\245\377\1uu\250\377\202xx\252\377\13uu\250\377ss\245\377ll\237\377n" "n\241\377ll\237\377kk\236\377jj\235\377hh\233\377cc\227\377hh\233\377" "ii\234\377\202rr\244\377\1vv\250\377\202~~\257\377\1\205\205\265\377" "\202\207\207\267\377\1\213\213\273\377\202\214\214\274\377\2\216\216" "\276\377\220\220\277\377\202\220\220\300\377\1\221\221\301\377\203\225" "\225\304\377\202\224\224\303\377\35\220\220\277\377\215\215\275\377\215" "\215\274\377\217\217\276\377\217\217\275\377\217\217\255\377\235\235" "W\377\270\270R\377\302\302b\377\313\313r\377\322\322\200\377\327\327" "\212\377\333\333\221\377\334\334\222\377\333\333\220\377\327\327\210" "\377\322\322\177\377\314\314r\377\303\303d\377\273\273U\377\251\251Z" "\377\251\251\276\377\260\260\332\377\255\255\330\377\254\254\330\377" "\253\253\330\377\253\253\327\377\247\247\324\377\252\252\327\377\203" "\254\254\331\377/\262\262\336\377\266\266\342\377\272\272\346\377\264" "\263\332\377\225\217\240\377h[J\377L9\22\377K7\14\377L8\14\377N9\14\377" "aF\11\377uT\10\377zW\7\377\210a\4\377\203]\7\377oQ\14\377yZ\23\377F;" ")\377\21\21\21\377\34\34\34\377,+,\377\77\77\77\377VVV\377rrq\377\215" "\215\214\377\247\247\247\377\274\273\273\377\312\312\312\377\323\323" "\323\377\326\326\326\377\323\323\323\377\313\313\313\377\277\276\276" "\377\257\257\257\377\234\234\234\377\210\210\210\377sst\377^^^\377JI" "I\377888\377(((\377\35\34\34\377\22\22\22\377\14\14\14\377\11\10\10\377" "\5\5\5\377\3\3\3\377\203\2\2\2\377S\177yx\377\321\310\305\377\316\306" "\302\377\313\301\274\377\307\275\267\377\303\266\254\377\312\272\256" "\377\312\273\257\377\307\272\256\377\301\265\252\377\273\261\247\377" "\264\252\241\377\246\243\241\377\244\242\241\377\245\243\243\377\240" "\236\237\377\241\240\242\377\236\236\241\377ELI\377'\40\33\377%\33\25" "\377-#\37\377O<7\377S6.\377T1(\377S+!\377T)\37\377T(\33\377U$\30\377" "T$\26\377U&\30\377W$\27\377p0*\377\264Xi\377\330u\222\377\335\177\235" "\377\314}\223\377\274\77J\377\341,)\377\355/&\377\3638.\377\363RI\377" "\327>6\377\350w\223\377\365\205\252\377\370\216\264\377\370\227\274\377" "\366\237\301\377\313[o\377\3311,\377\3544&\377\362;,\377\365OB\377\335" "I7\377\224;2\377\271`k\377\317i\177\377\331v\216\377\311z\215\377\225" "LV\377f'\36\377i'\30\377s%\22\377z(\25\377o'\23\377c$\23\377\\\36\12" "\377Z\36\11\377Y\36\11\377Z\40\13\377Z\"\16\377]&\23\377d4$\377i=/\377" "i=.\377b5&\377kB8\377oH@\377rME\377qLD\377Z*\33\377J\27\6\377I\26\6\377" "\202M\33\12\377)J\31\10\377H\30\10\377J\33\12\377L\33\13\377P\37\17\377" "R!\20\377S!\16\377O\35\11\377J\30\6\377Q\34\12\377bH4\377UA'\377VC%\377" "WD'\377O1!\377\\PI\377nZm\377\226\225\233\377\273\275\301\377\311\312" "\315\377\313\313\316\377\315\314\316\377\316\315\315\377\314\312\314" "\377\312\310\310\377\311\307\307\377\306\305\304\377\301\301\300\377" "\303\304\303\377\306\306\306\377\305\305\305\377\306\306\305\377\300" "\301\301\377\260\257\255\377\222\210w\377\340\325\312\377\346\333\321" "\377\347\333\321\377\337\324\311\377\251\233\205\377\\J%\377\202I6\15" "\377\3eVC\377\255\252\314\377\270\267\343\377\202\267\267\343\377\4\263" "\263\334\377\232\225\252\377re\\\377RA\37\377\206I6\15\377\1I6\16\377" "\204I6\15\377\1""22j\377\21022k\377\20211i\377\1""22j\377\20211i\377" "\2""22j\37722k\377\20211i\377\2""00h\377..g\377\203,,e\377\205++d\377" "\202,,e\377\202++d\377\206,,e\377\2//h\37711i\377\20322j\377\4""00h\377" "22k\37733k\37755m\377\20299q\377\202@@w\377\202EE{\377\203FF}\377\202" "HH~\377\202II\177\377\204KK\201\377\1LL\201\377\203LL\202\377\205MM\203" "\377\2PP\205\377QQ\206\377\202QQ\207\377\206SS\210\377\3UU\212\377VV" "\213\377WW\214\377\205XX\215\377\202ZZ\216\377\4]]\221\377\\\\\221\377" "XX\215\377VV\213\377\202MM\203\377\202LL\201\377\204LL\202\377\4MM\203" "\377OO\205\377QQ\207\377RR\210\377\202WW\214\377\11YY\216\377ZZ\216\377" "[[\220\377bb\224\377ff\230\377ii\233\377je\230\377V\77l\377mj\236\377" "\203oo\241\377\202nn\241\377\2pp\242\377rr\244\377\203ss\245\377\1uu" "\247\377\206xx\252\377\7zz\253\377||\256\377{{\254\377xx\252\377uu\247" "\377rr\244\377pp\242\377\202nn\241\377\202ii\234\377\1ll\237\377\202" "qq\244\377\10vv\250\377{{\254\377||\256\377\202\202\263\377\207\207\267" "\377\210\210\270\377\214\214\274\377\217\217\276\377\202\220\220\277" "\377\1\221\221\301\377\203\225\225\304\377\1\226\226\305\377\202\231" "\231\307\377\202\230\230\307\377\34\231\231\307\377\224\224\303\377\222" "\222\300\377\224\224\303\377\225\225\277\377\221\221t\377\257\257I\377" "\273\273X\377\305\305i\377\316\316x\377\325\325\206\377\333\333\220\377" "\336\336\225\377\336\336\227\377\335\335\225\377\332\332\216\377\324" "\324\204\377\317\317x\377\307\307j\377\276\276Z\377\264\264L\377\240" "\240m\377\261\261\323\377\262\262\335\377\256\256\332\377\255\255\332" "\377\255\255\331\377\247\247\324\377\203\252\252\327\3770\254\254\331" "\377\255\255\331\377\221\213\232\377m`R\377RA\37\377I6\15\377L8\15\377" "tT\10\377|Y\7\377wU\6\377mN\10\377sR\6\377{X\7\377]C\13\377`F\14\377" "[C\15\377^N2\377\236\231\260\377;;E\377\21\21\22\377\35\35\35\377---" "\377AAB\377YYZ\377ttt\377\221\221\220\377\251\251\251\377\276\275\275" "\377\314\314\314\377\325\325\325\377\327\327\327\377\323\323\323\377" "\312\312\312\377\276\275\275\377\256\256\256\377\232\232\232\377\205" "\205\205\377ppo\377[[Z\377GGF\377766\377'''\377\34\34\34\377\23\23\23" "\377\14\14\14\377\10\10\10\377\4\4\4\377\3\3\3\377\203\2\2\2\377@FCC" "\377\325\316\314\377\322\312\310\377\316\306\304\377\314\303\300\377" "\305\275\271\377\277\262\247\377\300\262\247\377\274\257\245\377\265" "\252\240\377\257\244\233\377\246\236\227\377\234\232\230\377\234\232" "\232\377\231\227\230\377\233\231\232\377\231\227\231\377\221\221\223" "\3778;:\377'!\34\377#\33\30\377,$\"\377>1/\377YD>\377T6/\377U1)\377S" "+!\377S)\36\377U'\34\377U&\31\377V&\31\377U$\26\377V\"\23\377W!\21\377" "Y!\24\377[\40\23\377\\!\25\377`!\24\377~\"\25\377\233&\30\377\242'\30" "\377\223)\31\377t&\26\377{2,\377\247Q\\\377\277f{\377\275h~\377\240X" "d\377v:8\377q-!\377\207)\33\377\226)\27\377\216)\24\377s'\23\377`\"\20" "\377^!\16\377]\37\14\377_!\17\377]\40\20\377[\40\16\377\\\40\17\377Z" "\36\12\377[\37\13\377Z\40\14\377\202Z\37\11\377;Y\36\12\377Y\35\11\377" "Z\37\12\377[\"\16\377`*\33\377nD:\377|YS\377xXR\377iA9\377b5*\377kA7" "\377vRL\377nG\77\377^/!\377P\35\14\377P\35\15\377O\35\16\377K\31\11\377" "L\32\12\377I\31\10\377H\30\10\377K\33\14\377N\36\15\377R\"\20\377Y(\26" "\377W%\23\377W%\16\377M\33\7\377Z#\15\377bH0\377R7\"\377VC&\377VD%\377" "U<%\377U\77""1\377m]f\377yj{\377\260\262\264\377\303\305\307\377\320" "\320\322\377\316\315\316\377\313\312\311\377\306\304\304\377\305\303" "\304\377\304\303\303\377\303\302\301\377\304\303\303\377\304\304\304" "\377\307\307\306\377\313\312\311\377\317\316\315\377\310\310\310\377" "\276\276\276\377\235\226\216\377\265\255\234\377\345\331\316\377\272" "\255\233\377jY6\377J7\16\377\204I6\15\377\5O=\31\377m`R\377\226\220\242" "\377\265\265\335\377\267\267\343\377\202\262\262\336\377\4\253\251\316" "\377\217\210\225\377hZH\377L9\22\377\210I6\15\377\20322k\377\20233k\377" "\20266n\377\20277n\377\21377o\377\20366n\377\4""44l\37711i\37700h\377" "--f\377\202,,e\377\202++d\377\1,,e\377\204//h\377\202..g\377\1//h\377" "\20300h\377\20211i\377\20222k\377\1""55m\377\20266n\377\20288p\377\202" "\77\77v\377\202DD{\377\202GG~\377\4HH~\377II\177\377LL\201\377LL\202" "\377\207MM\203\377\2NN\204\377QQ\206\377\202QQ\207\377\205RR\210\377" "\2SS\210\377VV\213\377\207WW\214\377\202ZZ\216\377\205\\\\\221\377\204" "]]\221\377\2UU\212\377TT\211\377\202PP\205\377\4QQ\206\377QQ\207\377" "PP\205\377LL\202\377\202MM\203\377\17NN\204\377QQ\206\377RR\210\377Q" "Q\207\377SS\210\377VV\212\377ZZ\216\377__\222\377dd\227\377jj\234\377" "h\\\217\377K\"P\377mf\231\377qq\242\377rr\244\377\203tt\245\377\3ss\245" "\377tt\246\377uu\247\377\203vv\250\377\2xx\252\377zz\253\377\204{{\254" "\377\5||\256\377}}\256\377\177\177\260\377||\256\377zz\253\377\202uu" "\250\377\2tt\246\377qq\244\377\202oo\241\377\1ll\237\377\202oo\241\377" "\10ww\251\377||\256\377\200\200\261\377\205\205\265\377\212\212\273\377" "\214\214\274\377\217\217\276\377\221\221\301\377\202\224\224\303\377" "\202\225\225\304\377\203\231\231\307\377\4\233\233\312\377\234\234\313" "\377\235\235\313\377\233\233\312\377\202\235\235\313\377M\227\227\305" "\377\231\231\306\377\223\223\235\377\243\243F\377\264\264L\377\300\300" "]\377\311\311o\377\321\321~\377\330\330\214\377\336\336\226\377\340\340" "\233\377\341\341\234\377\337\337\232\377\334\334\223\377\327\327\210" "\377\321\321}\377\312\312o\377\301\301_\377\267\267P\377\253\253F\377" "\236\236\213\377\264\264\334\377\261\261\333\377\256\256\332\377\255" "\255\331\377\252\252\326\377\254\254\331\377\247\246\317\377\216\211" "\234\377rga\377P>\33\377I6\15\377N9\14\377L8\15\377P;\14\377gJ\10\377" "fI\10\377zW\6\377\204^\5\377uT\11\377L8\15\377M9\14\377K7\15\377J7\16" "\377J8\17\377N;\24\377^SA\377\20\20\20\377\21\21\21\377\35\35\35\377" "...\377AAB\377ZZ[\377vvv\377\222\222\223\377\253\253\253\377\277\277" "\277\377\316\315\315\377\325\325\325\377\327\327\327\377\323\323\323" "\377\311\311\311\377\275\274\274\377\254\254\254\377\230\230\230\377" "\203\203\203\377nnm\377YYX\377FFF\377666\377'''\377\33\32\32\377\22\22" "\22\377\14\14\14\377\10\10\10\377\4\4\4\377\3\3\3\377\203\2\2\2\377\15" "\30\27\27\377\317\310\307\377\324\315\313\377\317\310\305\377\312\302" "\300\377\306\275\273\377\270\256\251\377\263\245\233\377\260\244\233" "\377\251\236\226\377\243\231\221\377\232\223\215\377\224\221\217\377" "\202\220\216\217\377\26\217\215\217\377\220\217\221\377\201\203\204\377" ",0,\377'!\36\377(\"\36\3771*'\377<30\377OB>\377V=5\377U4+\377U.$\377" "T*\40\377T'\33\377U&\32\377U&\31\377U&\30\377U%\26\377U\"\22\377W#\23" "\377V\40\17\377V\40\16\377\202W\37\15\377\16X\37\15\377X\35\13\377[\40" "\20\377^$\24\377Y\36\14\377Y\35\13\377Y\34\13\377Z\35\15\377[\40\15\377" "[\37\15\377Y\37\15\377X\35\12\377X\35\11\377X\34\10\377\202X\35\10\377" "\4W\34\7\377X\35\6\377X\34\7\377X\35\7\377\202Y\36\11\377@Y\35\10\377" "Z\40\12\377\\!\16\377Z\40\13\377[!\16\377[\"\20\377^&\23\377c-\34\377" "nA6\377\200^Y\377\212ss\377\215uv\377xYV\377sQL\377f>6\377nG@\377c80" "\377S\40\23\377T\"\23\377W%\25\377V%\26\377O\36\15\377K\32\12\377I\30" "\10\377I\31\11\377J\33\12\377H\31\10\377N\40\20\377V)\31\377].\33\377" "_1\36\377S#\20\377O\33\11\377xF+\377_E0\377U3\"\377XC+\377VC%\377VC&" "\377P9)\377obc\377lOl\377\226\217\231\377\301\303\305\377\314\314\320" "\377\314\314\316\377\311\311\312\377\306\305\306\377\303\302\302\377" "\305\303\304\377\306\304\304\377\307\306\306\377\310\310\311\377\311" "\311\311\377\317\316\315\377\325\324\324\377\323\322\322\377\312\311" "\310\377\265\261\255\377\206zd\377wgG\377K8\17\377J8\20\377I7\16\377" "\206I6\15\377\11I6\16\377SB!\377wlg\377\241\234\265\377\264\263\335\377" "\263\263\337\377\261\261\336\377\250\246\315\377j^Q\377\210I6\15\377" "\20322k\377\20233k\377\20266n\377\20277n\377\21277o\377\12""88p\3777" "7o\37788p\37799q\37788p\37777o\37766n\37755m\37733k\37711i\377\20300" "h\377\20311i\377\20222j\377\20300h\377\20222j\377\20244l\377\3""66n\377" "77n\37788p\377\20277o\377\20266n\377\202::q\377\6AAx\377CCz\377GG~\377" "II\177\377JJ\200\377LL\201\377\202LL\202\377\202MM\203\377\202NN\204" "\377\204PP\205\377\203QQ\207\377\205RR\210\377\2SS\210\377VV\213\377" "\202WW\214\377\205XX\215\377\202ZZ\216\377\1\\\\\221\377\206]]\221\377" "\1__\223\377\203bb\226\377\202[[\220\377\5RR\210\377SS\210\377QQ\206" "\377RR\210\377SS\210\377\202RR\210\377\202SS\210\377\16UU\212\377XX\214" "\377\\\\\220\377^^\221\377aa\225\377bb\225\377ed\230\377\\Ev\377U\27" "N\377fV\207\377rq\243\377rr\245\377uu\247\377vv\250\377\203vv\247\377" "\2uu\250\377ww\251\377\203xx\252\377\1zz\253\377\205}}\256\377\1~~\257" "\377\203\202\202\263\377\4~~\257\377{{\254\377zz\253\377vv\250\377\202" "tt\246\377\1nn\241\377\202qq\244\377\10uu\250\377{{\255\377\177\177\260" "\377\203\203\264\377\211\211\271\377\212\212\273\377\217\217\276\377" "\221\221\301\377\203\226\226\305\377\1\230\230\307\377\203\233\233\312" "\377\"\236\236\314\377\237\237\316\377\240\240\316\377\241\241\316\377" "\237\237\315\377\241\241\317\377\235\235\313\377\230\230\270\377\225" "\225T\377\255\255C\377\271\271S\377\303\303e\377\316\316v\377\324\324" "\205\377\334\334\222\377\340\340\233\377\342\342\240\377\342\342\241" "\377\341\341\235\377\336\336\227\377\331\331\215\377\323\323\201\377" "\314\314s\377\304\304d\377\272\272U\377\260\260F\377\240\240D\377\242" "\242\250\377\257\257\332\377\256\256\332\377\255\255\332\377\226\222" "\255\377rg`\377SB!\377\203I6\15\377\11S<\13\377tR\6\377\215d\5\377nO" "\11\377\200[\6\377cG\7\377sR\7\377L8\14\377N:\14\377\203I6\15\377\"J" "7\16\377K8\20\377M:\22\3774)\20\377\11\11\10\377\20\20\17\377\34\34\34" "\377---\377AAB\377ZZ[\377vvv\377\221\221\222\377\253\253\253\377\277" "\277\277\377\315\315\315\377\325\325\325\377\326\326\326\377\321\321" "\321\377\310\310\310\377\273\272\272\377\252\252\252\377\226\226\226" "\377\200\200\200\377kkj\377VVU\377CCB\377211\377$$$\377\31\31\31\377" "\21\21\21\377\13\13\13\377\6\6\6\377\4\4\4\377\3\3\3\377\203\2\2\2\377" "/\6\6\6\377\261\254\254\377\317\311\311\377\313\306\304\377\306\277\277" "\377\277\271\270\377\261\251\246\377\247\233\223\377\243\232\221\377" "\236\225\216\377\231\217\210\377\221\211\203\377\212\206\205\377\207" "\204\204\377\206\204\203\377\205\204\204\377\206\205\206\377vxx\3772" "42\377,*'\377'#\40\377-(&\377:3.\3770)(\377D0,\377U90\377S/&\377U,!\377" "S(\34\377V'\30\377V&\30\377U&\30\377U#\24\377U\"\24\377U#\24\377V!\21" "\377W!\17\377V!\17\377W\40\17\377V\36\16\377W\36\13\377X\36\14\377W\35" "\12\377W\34\11\377W\36\12\377V\33\10\377V\33\7\377\202W\34\10\377NV\34" "\10\377U\33\7\377V\34\7\377V\33\7\377X\35\11\377W\34\10\377W\34\7\377" "X\37\12\377Y\36\11\377[\40\13\377\\\"\15\377^$\20\377]!\15\377]#\17\377" "]\"\16\377`'\23\377e0\40\377qF;\377\203aZ\377\211nn\377\202cc\377\177" "ba\377rNK\377z[Y\377uTQ\377h@9\377`3)\377Y(\33\377X'\32\377[+\37\377" "Y+\35\377N\36\15\377L\34\12\377L\35\13\377L\34\14\377K\31\10\377J\32" "\12\377J\31\11\377N\"\24\377R$\25\377Y,\33\377\\.\32\377T'\26\377V&\26" "\377f0\32\377vQ9\377fJ8\377^;)\377WA.\377PA(\377M>$\377]S@\377qZf\377" "kBj\377za}\377\273\274\300\377\311\311\315\377\313\313\317\377\312\312" "\316\377\312\311\313\377\310\306\307\377\307\306\307\377\306\306\307" "\377\311\310\312\377\313\312\314\377\316\315\315\377\325\323\323\377" "\331\327\326\377\331\327\327\377\305\302\276\377znU\377L:\22\377J8\20" "\377naU\377\241\235\266\377\230\223\246\377pcW\377O=\30\377\207I6\15" "\377\5J7\17\377\\L3\377\200wy\377\212\202\214\377ZJ/\377\211I6\15\377" "\1""55m\377\20277n\377\21077o\377\20288p\377\2::q\377;;r\377\204<>u\377AAx\377DD{\377FF|\377\202KK\201\377" "\202LL\202\377\2NN\204\377QQ\206\377\210RR\210\377\1VV\213\377\207WW" "\214\377\3ZZ\216\377[[\217\377\\\\\221\377\206]]\221\377\2__\223\377" "``\224\377\206bb\226\377\1dd\230\377\202aa\225\377\202VV\213\377\5RR" "\210\377SS\210\377UU\212\377TT\211\377SS\210\377\202RR\210\377\3UU\211" "\377WW\213\377XX\215\377\202WW\214\377\12ZZ\216\377`]\221\377[1d\377" "c\32X\377bBs\377sr\245\377tt\245\377ww\250\377ww\251\377yy\253\377\203" "yy\252\377\3yy\253\377zz\253\377||\256\377\203}}\256\377\1\200\200\261" "\377\205\202\202\263\377\2\205\205\265\377\207\207\267\377\202\205\205" "\265\377\2\200\200\261\377zz\253\377\202||\256\377\1zz\253\377\202ss" "\245\377\11yy\253\377\200\200\261\377\202\202\263\377\207\207\267\377" "\213\213\273\377\217\217\276\377\220\220\277\377\225\225\304\377\230" "\230\307\377\202\232\232\311\377\2\233\233\312\377\235\235\313\377\202" "\240\240\316\377\3\241\241\317\377\243\243\321\377\245\245\323\377\202" "\246\246\324\377\13\246\246\323\377\247\247\317\377\220\220r\377\245" "\245<\377\262\262J\377\276\276[\377\311\311m\377\321\321~\377\330\330" "\215\377\337\337\231\377\343\343\241\377\202\344\344\246\377\21\343\343" "\242\377\340\340\233\377\333\333\221\377\325\325\205\377\316\316w\377" "\306\306h\377\275\275Y\377\263\263J\377\247\247<\377\225\225I\377\223" "\220\230\377wli\377UC#\377J8\20\377S=\15\377W\77\14\377S=\14\377\202" "^D\12\377\7\203]\5\377fI\7\377\207`\5\377aF\11\377fK\20\377[J-\377SB" "!\377\205I6\15\377\"J7\16\377K8\20\377M:\22\377\40\32\13\377\11\11\10" "\377\17\16\16\377\33\32\32\377***\377\77>>\377XXX\377ttt\377\220\220" "\220\377\251\251\251\377\275\275\275\377\314\314\314\377\324\323\323" "\377\324\324\324\377\317\317\317\377\306\306\305\377\270\270\270\377" "\250\250\247\377\224\223\223\377}}}\377hhg\377SSR\377@@\77\377///\377" "!!!\377\26\25\25\377\16\16\16\377\11\10\10\377\6\6\6\377\4\4\4\377\3" "\3\3\377\204\2\2\2\377(\213\206\207\377\311\302\302\377\303\274\274\377" "\276\267\267\377\267\261\261\377\250\240\234\377\240\224\213\377\233" "\221\211\377\225\214\205\377\220\207\200\377\207\200z\377\177|z\377}" "|{\377|zz\377|{{\377\177}~\377vww\3779=9\377651\377,*'\377.,)\377:51" "\377-)'\377,\40\37\377\77""2,\377M3-\377T-$\377R)\35\377U'\33\377U(\33" "\377U&\31\377V%\30\377V%\26\377U%\26\377W$\26\377V#\23\377W#\23\377W" "!\20\377U\37\15\377V\37\14\377\202W\37\12\377*X!\14\377V\36\11\377V\37" "\13\377U\35\7\377V\35\10\377V\34\6\377W\34\7\377W\34\10\377Y\37\12\377" "Z\40\13\377Z\40\14\377[\37\13\377^\"\15\377_%\21\377`'\23\377a&\22\377" "a'\22\377c(\24\377d,\32\377d/\40\377k9+\377n\77""3\377xUN\377\212po\377" "uTS\377sPM\377nHC\377mE\77\377qKH\377vSO\377uTQ\377lE@\377\\-\"\377V" "$\26\377\\/#\377T$\25\377M\33\11\377N\36\16\377O\36\16\377M\33\13\377" "M\37\16\377M\34\13\377\202K\33\12\377\27L\36\16\377L\35\14\377K\34\13" "\377I\35\16\377T%\30\377Z&\26\377qA!\377rX\77\377gJ:\377_C4\377M\77""1" "\377F<-\377SLB\377~nt\377m\77k\377p>p\377~a\204\377\274\274\300\377\310" "\310\315\377\314\314\320\377\317\316\322\377\317\315\320\377\314\311" "\313\377\202\312\311\312\377\7\314\313\314\377\317\316\317\377\323\322" "\322\377\327\325\325\377\324\317\315\377\227\213x\377R@\32\377\202I6" "\15\377\2\202x{\377\266\265\340\377\203\267\267\343\377\4\262\260\327" "\377\215\205\220\377dVB\377L:\24\377\220I6\15\377\3_P9\377\226\222\251" "\37755m\377\20277n\377\21077o\377\20288p\377\1;;r\377\202<>u\377\1==u\377\202>>u\377\5==u\377<>u\377\6\77\77v\377" "CCz\377FF}\377LL\202\377NN\204\377QQ\207\377\206RR\210\377\1SS\210\377" "\204VV\213\377\204WW\214\377\1XX\215\377\203ZZ\216\377\1[[\217\377\202" "\\\\\221\377\206]]\221\377\2__\223\377``\224\377\206cc\227\377\1dd\230" "\377\202gg\233\377\202hh\233\377\1cc\227\377\202XX\215\377\203WW\214" "\377\202WW\213\377\17WW\214\377XX\215\377[[\217\377__\222\377aa\224\377" "d[\215\377e&a\377n\37b\377b/e\377ni\234\377rr\243\377ww\250\377yy\252" "\377||\254\377}}\257\377\203~~\256\377\3}}\256\377~~\257\377\200\200" "\261\377\203\201\201\262\377\1\203\203\264\377\204\205\205\265\377\2" "\206\206\267\377\207\207\267\377\202\212\212\272\377\1\205\205\265\377" "\202~~\257\377\2zz\253\377vv\250\377\202tt\246\377\12ss\245\377yy\253" "\377||\256\377\201\201\262\377\207\207\267\377\214\214\274\377\220\220" "\300\377\225\225\304\377\231\231\307\377\235\235\313\377\202\237\237" "\316\377\2\240\240\316\377\243\243\321\377\202\245\245\323\377.\246\246" "\324\377\252\252\326\377\253\253\330\377\254\254\330\377\255\255\330" "\377\234\234\237\377\233\233<\377\254\254@\377\267\267R\377\303\303c" "\377\315\315v\377\325\325\206\377\335\335\225\377\342\342\240\377\345" "\345\250\377\346\346\253\377\346\346\252\377\344\344\246\377\341\341" "\236\377\335\335\224\377\326\326\210\377\320\320z\377\310\310k\377\277" "\277[\377\264\264K\377\250\250:\377\232\231*\377ql\37\377XF\25\377tT" "\17\377bG\14\377\200[\6\377uT\6\377\207`\3\377rR\10\377}Y\6\377zW\10" "\377YA\14\377dQ0\377\203y|\377\246\243\300\377\266\266\337\377\261\260" "\326\377\216\207\223\377`Q9\377J7\17\377\202I6\15\377\40J7\16\377K8\20" "\377L9\22\377\22\17\7\377\10\10\7\377\17\16\16\377\32\31\31\377(((\377" "<<;\377TTS\377ppp\377\214\214\214\377\245\245\245\377\271\271\271\377" "\310\307\307\377\320\320\320\377\322\322\321\377\315\315\315\377\304" "\304\304\377\266\266\266\377\245\245\245\377\220\220\220\377zzz\377d" "dd\377PPO\377==<\377---\377\37\37\37\377\25\24\24\377\14\14\14\377\10" "\7\7\377\4\4\3\377\202\3\3\3\377\204\2\2\2\377\37fab\377\275\265\266" "\377\271\261\261\377\263\255\253\377\252\245\245\377\231\220\212\377" "\226\213\202\377\222\207\201\377\214\202|\377\205|v\377\177wq\377vrq" "\377utt\377uss\377wuu\377{zz\377}}~\377[^]\377;<7\377873\3771/+\377<" "84\377,)&\377)\37\34\3775-&\3770(\"\377\77,&\377O/'\377R*\37\377T(\34" "\377U%\27\377\202T%\27\377\15U%\27\377V$\27\377W%\27\377X$\25\377W#\22" "\377W#\21\377X\"\20\377V\40\15\377V\37\13\377V\40\14\377V\37\13\377V" "\36\12\377W\35\11\377\202W\37\14\377DX\40\15\377X\36\13\377Y\37\13\377" "Z\40\14\377Y\37\13\377Z!\17\377Y\40\16\377Z!\20\377^&\24\377\\\"\20\377" "_'\24\377_)\27\377g4%\377sI\77\377}YR\377\214tt\377vUS\377mGB\377nGB" "\377oGB\377tPM\377zZW\377tQM\377e;2\377[*\34\377T\37\17\377S!\22\377" "Q\34\13\377Q\34\14\377O\33\11\377P\37\15\377O\36\14\377O\34\14\377N\33" "\11\377M\34\14\377M\35\14\377J\31\10\377K\31\11\377I\30\7\377I\31\12" "\377Q\"\24\377V#\22\377[)\32\377c2!\377eI6\377gN\77\377\\G;\377OB8\377" "MF>\377rpp\377\201f\177\377q>r\377q:t\377tFz\377\246\235\256\377\306" "\307\313\377\316\315\322\377\320\317\324\377\321\320\324\377\320\316" "\320\377\315\312\313\377\313\311\311\377\315\313\314\377\317\315\316" "\377\320\315\316\377\321\314\311\377\244\232\213\377^M*\377\204I6\15" "\377\5L9\22\377bS=\377\212\202\212\377\257\255\320\377\267\267\343\377" "\202\264\264\340\377\5\267\266\341\377\244\241\277\377}tu\377XG+\377" "I6\16\377\205I6\15\377\12iK\11\377vT\7\377oP\10\377`F\12\377O:\14\377" "I6\15\377M;\25\377\202y\177\377\253\253\324\377\256\256\332\377\2057" "7o\377\20288p\377\2::q\377;;r\377\202<>u\377" "\77\77v\377@@w\377\205AAx\377\203@@w\377\203>>u\377\1<\14\377L9\23\377\225\217\240" "\377\271\270\343\377\203\272\272\346\377*\271\271\345\377\271\271\344" "\377\270\270\342\377\236\232\261\377obW\377O=\30\377J7\16\377J8\17\377" "H6\21\377\11\10\5\377\10\10\7\377\16\15\15\377\30\27\27\377&&&\37799" "8\377PPO\377kkj\377\205\205\205\377\240\240\240\377\264\264\264\377\304" "\304\304\377\314\314\314\377\316\316\316\377\312\312\312\377\300\300" "\300\377\263\263\263\377\241\241\241\377\214\214\214\377vvv\377aaa\377" "MMM\377:::\377*))\377\35\34\34\377\23\22\22\377\13\13\13\377\7\6\6\377" "\4\3\3\377\2\1\1\377\2\2\1\377\1\1\1\377\2\2\1\377\202\2\2\2\377OKII" "\377\256\246\247\377\252\244\244\377\245\237\236\377\226\220\215\377" "\216\202{\377\213\202z\377\207~x\377\201yr\377{sm\377voi\377nig\377o" "mm\377qnn\377sqq\377xvw\377\177}\177\377\204\203\205\377imk\377DEB\377" "21-\377940\377;83\377-%\"\377:0)\377;3+\377<4,\3777-(\377N81\377S2(\377" "T*\37\377T(\33\377T&\31\377U%\27\377T$\25\377W$\27\377X&\27\377Y'\31" "\377Y&\26\377X%\25\377V%\25\377W#\22\377X\"\21\377X!\20\377Y#\17\377" "Y\"\15\377X\"\16\377Y#\20\377Z\"\17\377[\"\16\377]%\21\377^%\23\377_" "&\24\377`)\30\377b,\33\377`*\27\377`*\30\377a+\33\377n>0\377tLC\377\177" "]Y\377|YT\377zUQ\377d81\377i\77""7\377tRM\377qNI\377rMG\377kB:\377b4" "*\377U\40\21\377T\35\13\377S\34\14\377T\37\16\377Q\35\14\377O\34\12\377" "P\34\12\377P\35\13\377O\36\13\377\202O\35\13\377!N\33\11\377L\33\10\377" "K\31\11\377L\32\13\377K\30\12\377Q!\24\377R!\24\377W%\26\377X&\27\377" "k=/\377mSD\377cPD\377VI=\377QJ@\377mga\377\213}\213\377yKz\377u=x\377" "w\77z\377\205c\214\377\256\251\267\377\311\312\317\377\320\320\324\377" "\323\322\326\377\324\323\326\377\324\321\324\377\320\316\320\377\320" "\316\317\377\317\314\315\377\320\317\317\377\320\316\316\377\257\250" "\235\377gW7\377\211I6\15\377\4M;\25\377l_Q\377\223\215\237\377\254\254" "\323\377\202\262\262\336\377\3\263\263\337\377\264\264\335\377qe[\377" "\203I6\15\377\14gJ\11\377sR\6\377}X\6\377lM\7\377rQ\6\377]D\12\377U>" "\14\377i\\N\377\241\236\277\377\256\256\332\377\252\252\327\377\254\254" "\331\377\20577o\377\20288p\377\2::q\377;;r\377\202<>u\377@@w\377\217AAx\377\202==u\377\4<\377EA;\377LF>\377NH\77\377TLC\377TM" "E\377ME=\377L:3\377Q3*\377T*\36\377U&\30\377U$\25\377V%\27\377V$\23\377" "W$\24\377X'\26\377W%\24\377V%\23\377W%\24\377X&\26\377W$\25\377Y%\24" "\377Z%\24\377Z$\23\377[$\23\377\\%\24\377\\'\27\377^'\26\377b,\35\377" "c/!\377c-\36\377e2&\377g6*\377i<1\377lA7\377lA8\377c4)\377\\*\33\377" "X\"\24\377X\"\23\377]+\37\377b2'\377f;2\377h\77""7\377W&\30\377S\37\21" "\377U\37\20\377R\36\14\377S\36\16\377Q\34\13\377O\33\13\377R\37\17\377" "R\40\20\377N\33\13\377P\34\13\377O\35\14\377O\37\15\377N\35\15\377M\33" "\12\377M\32\10\377M\32\11\377P\35\15\377S\"\22\377S#\21\377^+\25\377" "v\77!\377\226e@\377zeM\377_SI\377XOG\377bb]\377\212\212\220\377\204`" "\205\377xAx\377yAz\377\200X\206\377\244\230\254\377\306\305\314\377\320" "\317\324\377\323\322\326\377\325\323\330\377\202\330\325\331\377\14\326" "\323\326\377\322\320\323\377\321\317\321\377\323\321\322\377\276\271" "\263\377ugL\377L9\21\377L9\22\377sg^\377\216\206\222\377pcW\377O=\30" "\377\207I6\15\377\7I6\16\377VE&\377ynj\377\235\231\263\377\234\230\265" "\377i[K\377J7\17\377\203I6\15\377\1J6\15\377\202V\77\13\377\11hK\7\377" "S<\13\377TB!\377\217\212\233\377\257\257\333\377\257\257\334\377\254" "\254\331\377\253\253\330\377\247\247\324\377\203::q\377\211<>u\377\2\77\77v\377@@w\377\210AAx\377\3BBy\377CCz\377DD{\377\202FF|" "\377\206FF}\377\3FF|\377EE{\377FF|\377\202EE{\377\5DD{\377CCz\377AAx" "\377\77\77v\377@@w\377\202;;r\377\20299q\377\202<>u\377" "\202==u\377\1<>u\377\202AAx\377\11D" "D{\377EE{\377GG~\377JJ\200\377NN\204\377RR\210\377UU\212\377WW\214\377" "ZZ\216\377\207]]\221\377\3__\223\377``\224\377aa\225\377\205bb\226\377" "\3cc\227\377ee\230\377ff\232\377\205hh\233\377\202ii\234\377\207nn\241" "\377\5qq\244\377pp\242\377jj\234\377gg\231\377dd\230\377\202ee\230\377" "\21ff\232\377ff\230\377ee\230\377h^\217\377}:x\377\2116}\377\2127}\377" "\2126|\377x@x\377tn\237\377tt\246\377zz\252\377\201\201\261\377\202\202" "\262\377\204\204\264\377\203\203\264\377\206\206\266\377\204\207\207" "\267\377\3\210\210\270\377\212\212\272\377\213\213\273\377\202\214\214" "\274\377\2\216\216\276\377\220\220\300\377\204\221\221\301\377\1\223" "\223\302\377\202\226\226\305\377\2\221\221\301\377\212\212\273\377\202" "\211\211\271\377\14\206\206\267\377\203\203\264\377}}\256\377\204\204" "\264\377\211\211\271\377\217\217\276\377\224\224\303\377\227\227\306" "\377\237\237\316\377\245\245\323\377\250\250\325\377\252\252\327\377" "\202\257\257\333\377#\257\257\334\377\263\263\336\377\265\265\340\377" "\266\266\341\377\270\270\340\377\234\234\220\377\232\2324\377\250\250" "<\377\264\264K\377\277\277]\377\312\312p\377\324\324\202\377\335\335" "\224\377\343\343\242\377\347\347\256\377\352\352\265\377\352\352\270" "\377\352\352\267\377\350\350\262\377\345\345\251\377\341\341\237\377" "\333\333\222\377\324\324\204\377\315\315u\377\305\304f\377\274\274W\377" "\262\261G\377\250\2478\377\235\234,\377\221\221\40\377\204\203\27\377" "if\20\377P@\21\377J8\17\377J7\16\377\206I6\15\377\4K9\21\377i\\K\377" "\230\223\246\377\267\266\340\377\206\272\272\346\377\40\266\265\335\377" "kcb\377\4\3\2\377\6\6\5\377\13\13\12\377\23\22\22\377\40\37\37\37711" "0\377EEE\377^^^\377wxw\377\220\220\220\377\246\246\246\377\266\266\266" "\377\277\277\277\377\302\302\302\377\277\277\277\377\266\266\266\377" "\251\251\251\377\227\227\227\377\203\203\202\377mml\377WWW\377DDD\377" "332\377$$$\377\30\30\30\377\17\17\17\377\11\11\11\377\5\5\5\377\3\3\2" "\377\2\1\1\377\202\1\0\0\377\203\0\0\0\377y\22\17\7\377\\TH\377ztn\377" "~um\377~tl\377{rl\377wni\377ske\377ogb\377le_\377ia]\377e_Z\377c_]\377" "hfe\377nll\377urr\377~|}\377\212\207\211\377\224\222\224\377\236\235" "\240\377\246\246\251\377\243\244\246\377}\177~\377__Z\377WSL\377XSL\377" "ZVO\377XTM\377YRJ\377_WN\377aWO\377WPG\377RG>\377Q90\377P*\37\377Q%\24" "\377T$\24\377U$\24\377U$\23\377V%\25\377U#\22\377V#\21\377V#\22\377W" "#\23\377W\"\20\377X$\22\377X\"\17\377X#\20\377W#\21\377['\30\377X\"\22" "\377[&\24\377X#\21\377Z%\23\377Z%\24\377Z'\26\377[*\32\377V%\27\377V" "#\24\377T\40\17\377X&\27\377T!\22\377U!\21\377U\"\23\377R\35\16\377S" "\36\16\377S!\22\377J\30\10\377P\32\13\377S\40\22\377M\33\15\377T#\26" "\377V\"\25\377Q\37\21\377Q\35\13\377P\34\15\377P\37\17\377P\40\21\377" "P\"\23\377Q$\24\377S'\26\377T&\26\377S#\20\377U&\24\377W)\32\377Y.\40" "\377`2'\377|H1\377\242yO\377tbJ\377XND\377b^V\377\210\203\203\377\217" "t\214\377yEx\377zBz\377}Q\201\377\233\211\241\377\300\277\306\377\320" "\317\324\377\324\322\327\377\327\325\331\377\332\325\332\377\334\330" "\334\377\334\330\335\377\331\326\332\377\331\325\330\377\326\323\325" "\377\306\302\277\377\205yc\377M;\23\377I6\15\377ZJ,\377\242\236\270\377" "\270\270\344\377\271\271\344\377\272\272\346\377\255\253\320\377\210" "\200\212\377bS=\377L9\22\377\210I6\15\377\1I6\16\377\210I6\15\377\5M" ";\25\377tid\377\252\251\322\377\256\256\332\377\254\254\331\377\202\253" "\253\330\377\202\246\246\324\377\203::q\377\211<>u\377\2\77" "\77v\377@@w\377\210AAx\377\3BBy\377CCz\377DD{\377\202FF|\377\206FF}\377" "\10FF|\377EE{\377FF|\377EE{\377FF}\377EE{\377DD{\377CCz\377\202@@w\377" "\4;;r\377<>u" "\377<>u\377AAx\377\202CCz\377\2EE{\377DD{\377\202" "FF|\377\6HH~\377KK\201\377QQ\206\377WW\214\377ZZ\216\377\\\\\221\377" "\204]]\221\377\1__\223\377\207bb\226\377\2dd\230\377ee\230\377\205gg" "\233\377\3hh\233\377jj\235\377kk\236\377\207nn\241\377\205ss\245\377" "\31tt\246\377vv\250\377yy\253\377ss\245\377kk\235\377ff\232\377gg\231" "\377gg\232\377kj\233\377oV\205\377\216>\202\377\222\77\206\377\222@\206" "\377\221>\205\377\213@\201\377q`\216\377qq\242\377uu\245\377xx\250\377" "yy\252\377\201\201\261\377\206\206\266\377\210\210\270\377\211\211\271" "\377\212\212\273\377\204\214\214\274\377\2\216\216\276\377\220\220\277" "\377\203\221\221\301\377\1\225\225\304\377\204\226\226\305\377\1\230" "\230\307\377\202\233\233\312\377\1\226\226\305\377\202\220\220\277\377" "1\217\217\276\377\213\213\273\377\212\212\272\377\203\203\264\377\211" "\211\271\377\215\215\275\377\224\224\303\377\231\231\307\377\235\235" "\313\377\244\244\322\377\252\252\327\377\255\255\332\377\262\262\336" "\377\263\263\337\377\264\264\337\377\265\265\340\377\270\270\343\377" "\271\271\344\377\252\252\272\377\222\222<\377\243\2437\377\257\257E\377" "\273\273V\377\306\306i\377\320\320|\377\332\332\216\377\341\341\236\377" "\346\346\254\377\352\352\264\377\352\352\271\377\353\353\272\377\352" "\351\267\377\347\346\261\377\345\345\251\377\341\341\236\377\333\333" "\221\377\323\323\202\377\314\314s\377\304\303c\377\272\272T\377\261\261" "E\377\247\2467\377\234\233+\377\221\220\40\377\203\203\26\377ts\17\377" "WR\15\377M<\17\377J7\16\377\210I6\15\377\4J7\17\377]M3\377\212\202\212" "\377\262\260\327\377\202\272\272\346\377\"\265\265\335\377\231\223\247" "\377pcW\377G7\32\377\4\3\2\377\5\4\4\377\11\11\11\377\20\20\20\377\35" "\35\34\377,,+\377>>>\377UUU\377mml\377\206\206\205\377\233\233\233\377" "\254\254\254\377\266\266\266\377\272\272\272\377\270\270\270\377\260" "\260\260\377\242\242\242\377\220\220\220\377}}|\377ggg\377RRR\377@\77" "\77\377///\377\40\40\40\377\25\25\25\377\15\14\14\377\11\11\10\377\5" "\5\4\377\4\4\3\377\2\2\2\377\205\0\0\0\3774\15\12\2\377(\35\7\377*\40" "\13\377\77""6%\377_VK\377phb\377ohd\377mfb\377jc_\377f_[\377e^Z\377c" "]Y\377b\\Y\377da`\377ljj\377trs\377\200}~\377\212\210\212\377\225\223" "\225\377\234\233\235\377\222\223\226\377\210\212\216\377\204\207\213" "\377\220\222\227\377\206\210\211\377lkf\377\\YR\377VRJ\377TPH\377OJB" "\377VNE\377_VL\377d[R\377e]T\377YPH\377M;/\377D%\30\377\77\33\15\377" "C\31\12\377J!\24\377M!\21\377Q!\17\377P!\17\377R\40\16\377R!\20\377O" "\36\12\377N\34\10\377L\33\7\377K\33\7\377M\34\12\377N\34\12\377R\37\15" "\377\202Q\36\13\3777R\37\14\377R!\15\377Q!\20\377R\37\16\377T#\22\377" "R\37\16\377P\35\12\377M\33\13\377L\33\15\377U'\33\377Q\35\20\377Y(\35" "\377X)\37\377X(\35\377X'\33\377R!\22\377Q\36\17\377O\36\15\377O\33\15" "\377O\35\16\377Q\40\20\377R&\27\377W.\37\377[4(\377_6*\377iB5\377b:+" "\377a8(\377d6#\377g8%\377q<(\377\221cN\377\227r[\377\177kW\377f\\O\377" "TLD\377~\177|\377\226\205\226\377}Q\200\377{F|\377|M\177\377\217x\226" "\377\267\263\275\377\314\312\317\377\324\321\325\377\331\325\331\377" "\334\327\332\377\337\331\334\377\340\332\336\377\337\332\336\377\335" "\330\334\377\334\327\332\377\324\317\317\377\227\214z\377UD\37\377\203" "I6\15\377\4M;\26\377pdX\377\231\223\250\377\263\263\334\377\202\267\267" "\343\377\6\270\270\344\377\266\266\341\377\241\235\272\377zpo\377VE'" "\377I6\16\377\215I6\15\377\4^O8\377\231\225\261\377\255\255\332\377\257" "\257\333\377\202\253\253\330\377\4\247\247\324\377\246\246\324\377\244" "\244\321\377\245\245\323\377\206<>u\377\203\77\77v\377\211A" "Ax\377\202CCz\377\2DD{\377EE{\377\207FF}\377\3GG~\377HH~\377II\177\377" "\202KK\201\377\206LL\202\377\1LL\201\377\202KK\201\377\3LL\202\377LL" "\201\377MM\203\377\202JJ\200\377\202EE{\377\202AAx\377\3@@w\377AAx\377" "BBy\377\202DD{\377\202CCz\377\6AAx\377BBy\377CCz\377DD{\377FF}\377GG" "~\377\202II\177\377\11JJ\200\377II\177\377LL\201\377NN\204\377RR\210" "\377XX\215\377]]\221\377``\224\377aa\225\377\202bb\226\377\2cc\227\377" "ee\230\377\206gg\233\377\3hh\233\377jj\235\377kk\236\377\204ll\237\377" "\3nn\241\377pp\242\377pp\243\377\205ss\245\377\1tt\246\377\203xx\252" "\377\202yy\252\377\30yy\253\377{{\254\377~~\257\377\177\177\260\377{" "{\253\377ss\244\377ql\234\377\200N\204\377\227F\213\377\232H\216\377" "\232I\216\377\232H\215\377\227F\213\377}S\206\377ur\243\377vv\246\377" "uu\246\377xx\250\377{{\254\377\177\177\257\377\206\206\266\377\212\212" "\272\377\214\214\274\377\216\216\276\377\204\221\221\301\377\3\222\222" "\301\377\223\223\302\377\225\225\304\377\202\226\226\305\377\1\231\231" "\307\377\204\233\233\312\377\1\235\235\313\377\202\241\241\317\377\202" "\233\233\312\377\15\225\225\304\377\224\224\303\377\220\220\300\377\220" "\220\277\377\210\210\270\377\217\217\276\377\220\220\277\377\227\227" "\306\377\236\236\314\377\242\242\320\377\250\250\325\377\254\254\331" "\377\262\262\336\377\202\267\267\342\377\16\267\267\343\377\271\271\344" "\377\267\267\327\377\220\220X\377\236\2362\377\253\253\77\377\267\267" "P\377\303\303a\377\315\315t\377\326\326\210\377\337\337\231\377\344\344" "\250\377\347\347\261\377\352\352\271\377\202\353\353\275\377\22\352\352" "\271\377\350\347\262\377\345\345\250\377\340\340\234\377\332\331\216" "\377\322\322\177\377\312\312p\377\302\301`\377\270\267Q\377\260\260D" "\377\247\2469\377\235\235/\377\222\222%\377\205\205\34\377uu\23\377d" "c\13\377OE\15\377K8\16\377\213I6\15\377$R@\36\377sg^\377vkd\377WF'\377" "I6\15\377K8\17\377TE#\377\10\10\6\377\4\4\4\377\11\11\11\377\17\17\17" "\377\31\31\31\377&&&\377887\377KKK\377bbb\377yyx\377\216\216\215\377" "\236\236\236\377\252\252\252\377\257\257\257\377\256\256\256\377\247" "\247\247\377\232\232\232\377\211\211\211\377vvu\377aaa\377MMM\377;;:" "\377+++\377\34\34\34\377\23\22\22\377\14\14\13\377\10\10\7\377\4\4\4" "\377\2\2\2\377\203\1\1\1\377\1\1\1\0\377\202\0\0\0\377k\16\12\3\377$" "\33\6\377$\32\6\377#\32\6\377\"\31\7\377.%\25\377IB7\377^XR\377d]Y\377" "c]X\377b\\X\377a[X\377c]Y\377c^Z\377jgg\377urr\377\177||\377\210\206" "\206\377\211\211\212\377yz|\377{~\200\377\216\220\225\377\222\224\231" "\377\223\223\230\377\247\250\255\377\264\264\271\377\242\244\246\377" "tut\377NMF\377ID=\377F@9\377F\77""7\377RH\77\377ZPE\377cYO\377g_U\377" "f_V\377mbW\377`NA\377J-\35\377C\35\14\377H\40\22\377B\32\14\377J\36\20" "\377K\"\25\377D\31\16\377A\24\7\377\77\21\5\377B\23\5\377B\24\7\377@" "\22\5\377G\27\7\377M\33\11\377L\33\10\377I\33\7\377K\33\10\377M\34\11" "\377M\33\10\377J\31\7\377J\32\12\377M\33\14\377O\32\11\377R\40\20\377" "R\37\17\377P\36\16\377O\36\16\377M\33\14\377K\32\12\377M\35\15\377N\36" "\16\377O\37\17\377P\40\22\377R#\23\377Z.\40\377a:.\377jD9\377hA5\377" "kC:\377e:/\377e<1\377mC4\377rE/\377\204N-\377\247uK\377\263\225q\377" "\215{h\377f[N\377^XP\377wwq\377\233\215\225\377\210`\204\377{F|\377{" "I~\377\206g\215\377\256\247\265\377\314\312\320\377\327\324\330\377\331" "\325\331\377\334\330\334\377\340\332\336\377\340\333\336\377\342\333" "\337\377\340\332\336\377\337\331\334\377\335\327\330\377\251\237\222" "\377^M+\377\210I6\15\377\12XH+\377}tt\377\243\240\276\377\266\266\341" "\377\264\264\340\377\263\263\337\377\264\264\340\377\261\260\331\377" "\223\216\241\377WH*\377\212I6\15\377\6P>\33\377\203{\202\377\256\256" "\331\377\254\254\331\377\253\253\330\377\252\252\327\377\202\251\251" "\326\377\4\250\250\325\377\245\245\323\377\244\244\321\377\240\240\316" "\377\206<>u\377\203\77\77v\377\211AAx\377\202CCz\377\2DD{\377" "EE{\377\207FF}\377\3GG~\377HH~\377II\177\377\202KK\201\377\206LL\202" "\377\1LL\201\377\202KK\201\377\3LL\202\377LL\201\377MM\203\377\202JJ" "\200\377\202EE{\377\202AAx\377\3@@w\377AAx\377BBy\377\202DD{\377\202" "CCz\377\6AAx\377BBy\377CCz\377DD{\377FF}\377GG~\377\202II\177\377\11" "JJ\200\377II\177\377LL\201\377NN\204\377RR\210\377XX\215\377]]\221\377" "``\224\377aa\225\377\202bb\226\377\2cc\227\377ee\230\377\206gg\233\377" "\3hh\233\377jj\235\377kk\236\377\204ll\237\377\3nn\241\377pp\242\377" "pp\243\377\205ss\245\377\1tt\246\377\203xx\252\377\1yy\252\377\202yy" "\253\377\1{{\254\377\202\177\177\260\377\24||\254\377tt\245\377sd\221" "\377\225N\214\377\237O\222\377\241R\225\377\242S\226\377\241R\225\377" "\237O\222\377\222N\213\377wk\231\377ww\247\377vv\247\377yy\251\377||" "\254\377\177\177\257\377\207\207\266\377\212\212\272\377\215\215\275" "\377\216\216\276\377\204\221\221\301\377\3\222\222\301\377\223\223\302" "\377\225\225\304\377\202\226\226\305\377\1\231\231\307\377\204\233\233" "\312\377\1\235\235\313\377\202\241\241\317\377\202\233\233\312\377\15" "\225\225\304\377\224\224\303\377\220\220\300\377\220\220\277\377\210" "\210\270\377\217\217\276\377\220\220\277\377\227\227\306\377\236\236" "\314\377\242\242\320\377\250\250\325\377\254\254\331\377\262\262\336" "\377\202\267\267\342\377#\270\270\343\377\273\273\343\377\231\231\211" "\377\227\2270\377\245\2458\377\261\261H\377\276\276Z\377\310\310m\377" "\322\322\177\377\332\332\220\377\342\342\240\377\347\346\256\377\352" "\352\271\377\353\353\277\377\354\354\302\377\353\353\277\377\352\352" "\272\377\350\347\262\377\344\344\247\377\337\337\232\377\331\330\213" "\377\320\320{\377\310\307k\377\300\277]\377\271\271S\377\260\260F\377" "\246\2469\377\233\233-\377\220\220#\377\202\202\32\377tt\23\377ee\17" "\377ZZ\27\377f\\A\377M;\25\377\215I6\15\377\21I7\21\377SK,\377\215\213" "s\377\254\253\226\377\34\34\31\377\4\4\4\377\10\10\10\377\14\14\14\377" "\24\24\24\377\40\40\40\377//.\377@@@\377TTT\377jjj\377\177\177\177\377" "\217\217\217\377\233\233\233\377\202\241\241\241\377\16\233\233\233\377" "\217\217\217\377\200\200\177\377nnn\377ZZZ\377GGG\377555\377&&&\377\32" "\31\31\377\21\21\20\377\12\12\11\377\6\6\6\377\3\3\3\377\2\2\2\377\205" "\1\1\1\377\4\1\1\0\377\31\26\15\377#\32\7\377!\31\6\377\202!\30\6\377" "\25\40\30\6\377\37\27\6\377#\34\13\37781$\377QKD\377_YU\377a[X\377d^" "Y\377fa\\\377hc`\377qnn\377yww\377wwv\377npp\377{|\177\377\216\217\222" "\377\222\223\226\377\236\237\243\377\262\261\266\377\300\275\302\377" "\314\310\315\377\202\317\314\321\377Q\273\272\274\377\203\205\202\377" "NKF\377H;3\377C;3\377\77""5(\377G9(\377YJ9\377_RD\377^RB\377dVF\377j" "\\P\377kWJ\377dJ9\377I)\31\377>\30\11\377C\31\15\377H\36\21\377E\31\14" "\377D\25\10\377E\31\14\377G\27\12\377F\27\10\377E\25\6\377F\27\11\377" "E\26\7\377H\30\12\377K\32\15\377I\27\7\377J\27\7\377K\31\12\377H\27\6" "\377J\32\12\377H\30\10\377F\23\6\377H\25\6\377I\25\6\377I\25\5\377H\25" "\6\377I\26\7\377I\30\11\377M\34\15\377Q!\21\377Y+\35\377`1#\377i=/\377" "j\77""2\377c5&\377a.\36\377c/\37\377l<+\377zI3\377\221dF\377\262\226" "u\377\260\221s\377\233\207s\377k^U\377SMF\377ots\377\234\236\240\377" "\220p\217\377~L~\377~J~\377\202[\206\377\241\225\252\377\306\305\314" "\377\326\322\327\377\332\326\332\377\335\330\334\377\337\332\336\377" "\342\334\340\377\343\335\340\377\342\333\335\377\342\332\333\377\341" "\332\333\377\274\263\252\377m]>\377J7\17\377M;\25\377]N4\377O=\31\377" "\210I6\15\377\10L:\24\377dUB\377\213\204\217\377\253\252\317\377\264" "\263\337\377\254\253\321\377ynl\377M;\25\377\210I6\15\377\10J7\17\377" "maV\377\241\237\300\377\260\260\335\377\256\256\332\377\254\254\331\377" "\253\253\330\377\252\252\327\377\202\251\251\326\377\5\250\250\325\377" "\245\245\323\377\244\244\321\377\240\240\316\377<\21\5\377A\23\6\377A\24\7\377C\23\5\377C\25\6\377E\25\7\377F\27" "\6\377L\33\11\377M\37\14\377N\36\13\377O\37\13\377L\35\11\377J\32\11" "\377H\30\6\377J\27\6\377J\30\7\377K\32\11\377N\36\16\377R\40\15\377X" "%\24\377`-\34\377b1\37\377j9#\377j:\40\377sB*\377\213X9\377\225lG\377" "\224nO\377\225w\\\377\213n\\\377\201i^\377tg_\377c^W\377y{v\377\231\242" "\244\377\235\212\241\377\202T\201\377\200M\201\377\201U\204\377\230\203" "\236\377\277\274\305\377\324\321\327\377\332\326\333\377\336\330\335" "\377\341\333\337\377\342\334\340\377\343\335\341\377\343\334\340\377" "\340\332\334\377\342\333\334\377\312\301\273\377|mR\377K9\20\377J8\20" "\377k^P\377\245\242\276\377\272\272\346\377\257\255\321\377\211\201\211" "\377aR;\377K8\20\377\210I6\15\377\3P\77\34\377gYH\377VE&\377\211I6\15" "\377\5VE'\377\221\214\240\377\256\256\332\377\254\254\331\377\253\253" "\330\377\202\254\254\331\377\5\253\253\330\377\252\252\327\377\247\247" "\324\377\243\243\321\377\245\245\323\377\202\241\241\317\377\2\233\233" "\312\377<2\377(!\21\377\36\26\6\377\204\36\26\5\377K\37\27\5\377" "&\36\15\377@8,\377b[T\377voj\377qnj\377omn\377\214\211\213\377\236\233" "\235\377\255\252\252\377\275\270\271\377\310\303\303\377\321\313\312" "\377\330\320\321\377\335\324\325\377\336\327\327\377\340\330\330\377" "\340\327\330\377\340\327\331\377\336\327\330\377\334\326\327\377\317" "\313\314\377\240\240\237\377ab`\377HD>\377@71\377\77""3)\377L:&\377_" "M4\377cS>\377_N<\377VJ9\377[OC\377kaX\377pe\\\377bRE\377L;0\377E.$\377" "C\"\27\377G\34\20\377G\30\14\377O\40\24\377S#\24\377R\"\21\377Y-\30\377" "f:\33\377[0\17\377[/\17\377b1\20\377d0\17\377`+\13\377b0\22\377e3\21" "\377b/\16\377`,\15\377b-\17\377k0\25\377r\27\377\202I6\15\377\4]N5\377\251\246\305\377\271\271\344" "\377\272\272\346\377\202\270\270\344\377\5\267\267\341\377\242\237\271" "\377wlg\377TC#\377I6\16\377\217I6\15\377\4K8\20\377ujg\377\245\244\312" "\377\257\257\333\377\202\256\256\332\377\14\254\254\331\377\252\252\327" "\377\251\251\326\377\250\250\325\377\247\247\324\377\244\244\321\377" "\241\241\317\377\240\240\316\377\241\241\317\377\235\235\313\377\234" "\234\313\377>>u\377\202\77\77v\377\205AAx\377\203DD{\377\1EE{\377\210" "FF}\377\1HH~\377\202II\177\377\1LL\201\377\207LL\202\377\202MM\203\377" "\3NN\204\377PP\205\377QQ\206\377\205QQ\207\377\202RR\210\377\1TT\211" "\377\202VV\213\377\210WW\214\377\17YY\216\377XX\215\377YY\216\377WW\214" "\377VV\213\377TT\211\377QQ\206\377OO\205\377LL\202\377KK\201\377LL\201" "\377LL\202\377MM\203\377NN\204\377LL\202\377\202MM\203\377\2OO\205\377" "QQ\206\377\202RR\210\377\2SS\210\377UU\212\377\202SS\210\377\7WW\214" "\377[[\220\377aa\225\377ee\230\377kk\236\377oo\241\377pp\242\377\202" "pp\243\377\3qq\244\377ss\245\377uu\250\377\205vv\250\377\2xx\252\377" "zz\253\377\204||\256\377\4}}\256\377\177\177\260\377\201\201\262\377" "\202\202\263\377\203\203\203\264\377\22\204\204\264\377\211\211\267\377" "\214\214\272\377\216\214\272\377\214l\232\377\245Z\232\377\255b\242\377" "\262i\247\377\265m\251\377\265o\252\377\264m\251\377\261h\246\377\255" "c\241\377\246[\233\377\207g\225\377\177|\253\377zz\251\377zz\252\377" "\202~~\256\377\10||\254\377}}\256\377\201\201\262\377\211\211\271\377" "\221\221\301\377\231\231\307\377\233\233\312\377\237\237\315\377\204" "\241\241\317\377\1\242\242\320\377\203\246\246\324\377\1\252\252\327" "\377\205\254\254\331\377\202\262\262\336\377]\254\254\331\377\246\246" "\324\377\244\244\322\377\243\243\321\377\240\240\316\377\232\232\310" "\377\233\233\312\377\235\235\313\377\246\246\324\377\253\253\327\377" "\255\255\332\377\264\264\337\377\245\241\273\377xpV\377\205\203\36\377" "\231\230'\377\246\2456\377\263\262H\377\277\277\\\377\313\313r\377\326" "\325\207\377\340\340\234\377\346\345\255\377\352\352\273\377\355\355" "\305\377\357\357\313\377\360\360\314\377\357\357\312\377\355\355\304" "\377\352\352\272\377\347\346\256\377\342\342\241\377\332\332\220\377" "\322\322\177\377\312\312n\377\300\300]\377\266\265N\377\254\254\77\377" "\242\2412\377\227\226&\377\215\214\34\377\177\177\24\377ss\20\377gg\16" "\377]]\13\377SS\10\377MM\7\377ee:\377\252\250\303\377\207\177\205\377" "`P8\377I7\16\377I6\15\377Q\77\27\377xlL\377\254\250\222\377\313\316\301" "\377\304\311\276\377\301\305\273\377\274\300\265\377\277\303\270\377" "\302\305\272\377\314\316\304\377\271\273\261\377\204\204}\377LNI\377" "\11\12\11\377\3\3\3\377\5\5\5\377\11\11\11\377\17\17\17\377\27\27\27" "\377\"\"\"\377...\377<<;\377KJJ\377XXX\377bbb\377jjj\377mmm\377kkk\377" "ddd\377ZZZ\377MMM\377\77\77\77\377000\377$$$\377\32\32\31\377\21\21\20" "\377\13\13\12\377\6\6\6\377\4\4\4\377\2\2\2\377\206\1\1\1\377e\17\17" "\16\377MLG\377HHD\377CEB\377PNI\377XTL\377HHC\377660\377.(\33\377\37" "\30\10\377\35\26\5\377\36\26\5\377\37\27\5\377\40\30\6\377!\31\6\377" "&\35\11\377=4#\377f^R\377}xr\377\215\206\205\377\250\242\242\377\271" "\262\263\377\304\276\275\377\316\307\306\377\326\316\315\377\333\322" "\322\377\337\327\326\377\341\330\330\377\342\331\331\377\342\330\327" "\377\343\331\330\377\343\332\332\377\341\330\330\377\335\326\327\377" "\330\323\324\377\322\315\317\377\260\256\256\377ttp\377IF@\377ID=\377" "@6,\377E6%\377VE/\377aQ=\377hZI\377]TG\377]UN\377ib[\377xrm\377tqm\377" "UQM\377J\77:\377F5-\377K4)\377N2&\377V9*\377V>/\377U@0\377\\C/\377_F" "2\377iJ5\377nL1\377bE.\377bC-\377gG0\377oP9\377sS<\377rS<\377sR<\377" "lM9\377nP>\377lN<\377dG6\377dE4\377cE4\377gG6\377fI8\377jK:\377xR>\377" "\232cD\377\306\216]\377\220vZ\377\215\205\203\377\242\222\240\377\247" "\213\245\377\216g\220\377\201R\205\377\207c\215\377\246\232\254\377\306" "\305\312\377\325\322\326\377\332\326\332\377\341\333\337\377\345\336" "\343\377\350\342\345\377\350\341\345\377\346\336\342\377\343\332\334" "\377\333\322\322\377\235\221\177\377WE\40\377\205I6\15\377\4M;\25\377" "i[J\377\222\214\232\377\262\261\331\377\202\266\266\342\377\6\267\267" "\343\377\264\264\341\377\260\257\327\377\221\213\233\377hZJ\377M:\24" "\377\214I6\15\377\12]N5\377\232\226\260\377\257\257\334\377\254\254\331" "\377\255\255\332\377\253\253\330\377\254\254\331\377\252\252\327\377" "\250\250\325\377\246\246\324\377\202\244\244\321\377\7\241\241\317\377" "\242\242\320\377\237\237\316\377\236\236\314\377\235\235\313\377\232" "\232\310\377>>u\377\202\77\77v\377\3AAx\377CCz\377DD{\377\202EE{\377" "\207FF}\377\203II\177\377\1LL\201\377\207LL\202\377\4MM\203\377NN\204" "\377PP\205\377QQ\206\377\206QQ\207\377\202RR\210\377\1SS\210\377\202" "UU\212\377\207WW\214\377\1YY\216\377\202[[\217\377\202\\\\\221\377\202" "[[\220\377\202YY\216\377\202XX\215\377\202WW\214\377\10VV\213\377UU\212" "\377RR\210\377SS\210\377RR\210\377QQ\206\377QQ\207\377PP\205\377\204" "QQ\206\377\6MM\203\377PP\205\377QQ\206\377SS\210\377TT\211\377VV\213" "\377\204WW\214\377\12[[\217\377aa\224\377ff\232\377kk\236\377nn\241\377" "qq\244\377ss\245\377uu\250\377vv\250\377xx\252\377\204yy\253\377\2{{" "\254\377}}\256\377\202~~\257\377\202\177\177\260\377#\200\200\261\377" "\201\201\262\377\202\202\263\377\206\206\266\377\210\210\270\377\211" "\211\270\377\212\212\271\377\213\213\272\377\215\215\272\377\216\204" "\260\377\234_\227\377\253`\240\377\262i\247\377\267p\254\377\272u\256" "\377\273w\257\377\272u\257\377\266q\253\377\262j\246\377\253a\240\377" "\235^\227\377\205z\245\377\204\203\262\377\201\201\257\377\177\177\256" "\377\177\177\257\377\202\202\262\377\204\204\264\377\204\204\265\377" "\207\207\267\377\213\213\273\377\226\226\305\377\237\237\316\377\241" "\241\317\377\242\242\320\377\204\246\246\324\377\2\247\247\324\377\253" "\253\330\377\202\254\254\331\377\1\257\257\334\377\205\262\262\336\377" "\202\266\266\342\377\5\261\261\336\377\252\252\327\377\251\251\326\377" "\247\247\324\377\244\244\322\377\202\233\233\312\377G\236\235\312\377" "\225\221\257\377~uy\377_P6\377TC\31\377id\27\377\216\215\36\377\235\234" ",\377\252\252<\377\267\266O\377\304\303d\377\317\317z\377\332\332\220" "\377\343\343\244\377\351\350\264\377\354\354\301\377\357\357\312\377" "\362\362\320\377\362\362\322\377\361\361\314\377\356\356\305\377\352" "\352\272\377\346\345\255\377\341\341\236\377\332\331\216\377\320\320" "|\377\310\307k\377\276\276Z\377\264\263J\377\251\251;\377\237\236.\377" "\224\224\"\377\210\207\32\377{z\22\377ml\13\377``\7\377XW\6\377PP\6\377" "LL\5\377KJ\5\377NB\20\377I6\15\377L9\21\377dW5\377\220\214u\377\301\301" "\257\377\325\326\311\377\315\322\310\377\302\307\275\377\276\303\271" "\377\301\304\272\377\303\305\274\377\307\311\277\377\315\317\304\377" "\300\303\270\377\302\304\270\377\310\311\276\377\254\254\241\377AA<\377" "\2\2\2\377\4\4\4\377\7\7\7\377\11\11\11\377\21\21\20\377\31\31\31\377" "###\377...\377::9\377EED\377NMM\377TTT\377\202WWW\377\14RRR\377JJJ\377" "\77\77\77\377333\377(((\377\36\35\35\377\25\25\24\377\15\15\15\377\10" "\10\10\377\5\5\5\377\3\3\3\377\2\2\2\377\206\1\1\1\377d&'%\377AC@\377" "\77BA\377ADB\377FHD\377SQK\377OMI\377\77B@\377KLG\377@@;\377/-#\377!" "\33\14\377\37\27\6\377\40\30\6\377\"\31\6\377$\33\6\377(\35\7\377,!\10" "\377=1\31\377f[J\377\220\210\200\377\264\252\251\377\307\276\275\377" "\320\310\307\377\326\316\315\377\333\322\321\377\337\326\326\377\341" "\330\327\377\342\331\327\377\340\327\326\377\341\330\327\377\341\327" "\327\377\336\325\325\377\334\324\323\377\332\323\323\377\330\322\323" "\377\330\321\323\377\324\317\321\377\302\277\277\377\226\224\222\377" "ee`\377MID\377B;5\377@5(\377QA/\377cTC\377WMC\377PD\77\377`VQ\377\203" "zu\377rnk\377b^Y\377SG\77\377RD:\377RC9\377TE9\377XE9\377WE9\377VC6\377" "TB5\377\\F6\377aH8\377]D5\377[C5\377ZB4\377[B4\377bD3\377[@2\377`B2\377" "]A3\377_C5\377aE6\377bE8\377bF7\377cH9\377cI;\377fN\77\377mUI\377yaW" "\377\204if\377\223ru\377\203_w\377wIt\377wDv\377{J}\377\205\\\211\377" "\246\225\254\377\274\271\302\377\316\315\322\377\327\324\330\377\336" "\331\336\377\342\335\341\377\350\343\346\377\352\344\350\377\351\343" "\345\377\345\336\341\377\337\327\327\377\256\242\225\377aP.\377I6\16" "\377\210I6\15\377\12I7\16\377TC#\377wlh\377\241\235\270\377\262\262\336" "\377\264\264\340\377\261\261\336\377\263\263\337\377\256\255\327\377" "ukg\377\212I6\15\377\5N<\30\377\205}\206\377\255\254\326\377\255\255" "\332\377\256\256\332\377\202\254\254\331\377\15\252\252\327\377\250\250" "\325\377\252\252\327\377\250\250\325\377\247\247\324\377\244\244\322" "\377\242\242\320\377\241\241\317\377\235\235\313\377\234\234\313\377" "\231\231\307\377\224\224\303\377\220\220\300\377\203::q\377\5\77\77v" "\377@@w\377>>u\377@@w\377AAx\377\202CCz\377\1DD{\377\204FF}\377\203I" "I\177\377\1LL\201\377\207LL\202\377\4MM\203\377NN\204\377PP\205\377Q" "Q\206\377\204QQ\207\377\202RR\210\377\203SS\210\377\202UU\212\377\202" "WW\214\377\203XX\215\377\203ZZ\216\377\202[[\220\377\1]]\221\377\202" "^^\222\377\1``\224\377\203aa\225\377\202aa\224\377\1__\223\377\202``" "\224\377\202^^\222\377\6[[\217\377VV\213\377TT\211\377QQ\207\377RR\210" "\377TT\211\377\202VV\213\377\1UU\212\377\203VV\213\377\3TT\211\377VV" "\213\377XX\215\377\202YY\216\377\14[[\220\377\\\\\221\377``\224\377c" "c\227\377hh\233\377kk\236\377pp\242\377qq\244\377uu\247\377uu\250\377" "xx\252\377{{\254\377\204||\256\377\1}}\256\377\202\177\177\260\377\202" "\202\202\263\377\203\203\203\264\377\"\206\206\266\377\210\210\270\377" "\213\213\272\377\215\215\275\377\217\217\276\377\221\217\275\377\216" "o\234\377\247\\\234\377\257e\244\377\266o\253\377\273w\260\377\276|\263" "\377\300~\265\377\277|\264\377\274x\262\377\267q\254\377\261h\246\377" "\250_\236\377\216h\227\377\214\210\266\377\211\211\267\377\206\206\265" "\377\204\204\264\377\203\203\263\377\204\204\264\377\206\206\267\377" "\212\212\272\377\212\212\273\377\221\221\301\377\227\227\306\377\240" "\240\316\377\244\244\322\377\246\246\324\377\252\252\327\377\203\254" "\254\331\377\2\256\256\332\377\260\260\335\377\202\262\262\336\377\1" "\264\264\340\377\205\266\266\342\377\202\272\272\346\377M\264\264\341" "\377\256\256\332\377\251\251\326\377\246\246\324\377\226\224\267\377" "wnv\377YI1\377K8\20\377M;\23\377O=\25\377WJ\27\377}|\26\377\222\222!" "\377\240\2370\377\256\256@\377\273\273U\377\310\307k\377\323\323\202" "\377\335\335\230\377\346\346\253\377\353\353\275\377\360\360\311\377" "\362\362\321\377\363\363\325\377\363\363\324\377\361\361\316\377\357" "\357\307\377\354\354\274\377\347\346\256\377\340\340\234\377\331\330" "\213\377\317\317y\377\306\305g\377\274\274W\377\262\261F\377\250\247" "7\377\234\233+\377\221\221\40\377\204\203\27\377vv\17\377ih\11\377]]" "\6\377TS\4\377LK\2\377JJ\1\377JI\0\377JE\10\377aY7\377\234\231\200\377" "\276\300\261\377\322\321\301\377\327\331\315\377\321\324\313\377\307" "\313\302\377\302\305\273\377\301\303\272\377\303\305\273\377\305\307" "\275\377\303\304\271\377\300\302\270\377\277\277\265\377\302\303\270" "\377\272\271\256\377\300\276\263\377\271\270\256\377\"\"\37\377\3\3\3" "\377\4\4\4\377\6\6\6\377\13\13\13\377\21\21\21\377\31\31\31\377\"\"\"" "\377+++\377444\377;;:\377BBA\377\202CCC\377\13@@@\377:::\377111\377(" "((\377\40\37\37\377\30\30\27\377\20\20\20\377\12\12\12\377\6\6\6\377" "\4\4\4\377\2\2\2\377\206\1\1\1\377\5\13\13\12\377KIE\377KHD\377\77A=" "\377=\77<\377\202;>;\377\27@B>\377:>=\3778==\3778>=\3779\77\77\3777=" "<\37702,\377'\"\24\377\"\31\7\377$\33\6\377(\35\7\377,\40\10\3770#\11" "\3774'\11\377>/\20\377aS:\377\232\216\202\377\310\276\273\377\326\314" "\313\377\332\321\320\377\334\324\323\377\336\325\324\377\340\326\325" "\377\202\337\325\324\377H\340\325\324\377\337\325\323\377\336\325\323" "\377\337\325\325\377\337\327\330\377\336\326\330\377\336\326\327\377" "\334\325\327\377\332\323\325\377\326\322\323\377\311\306\310\377\265" "\262\264\377\235\233\233\377\202~}\377rje\377la]\377hXY\377cSW\377bQ" "V\377cQV\377dRV\377bPV\377bQV\377bQU\377eRW\377gTY\377iTZ\377jT[\377" "hSZ\377lU[\377lS[\377nR\\\377oS\\\377oS^\377qT_\377rTa\377qVc\377pVd" "\377rYe\377sXg\377sWg\377rWg\377rVi\377tWk\377uYn\377uXo\377vTp\377s" "Pp\377rMq\377vNu\377|T~\377\210e\214\377\233\202\240\377\262\246\270" "\377\311\305\315\377\321\316\323\377\327\323\326\377\333\326\332\377" "\344\337\343\377\356\353\356\377\360\355\357\377\356\351\355\377\353" "\343\346\377\346\336\337\377\300\266\255\377p`A\377J7\16\377K9\21\377" "naT\377|rp\377]M3\377I7\16\377\210I6\15\377\7K8\20\377`Q:\377\206~\206" "\377\245\242\305\377\232\226\260\377cUA\377I6\16\377\211I6\15\377\26" "j]P\377\244\243\307\377\256\256\332\377\255\255\332\377\256\256\332\377" "\254\254\331\377\257\257\333\377\255\255\332\377\254\254\331\377\252" "\252\327\377\247\247\324\377\246\246\324\377\241\241\317\377\240\240" "\316\377\232\232\311\377\230\230\307\377\225\225\304\377\222\222\301" "\377\220\220\300\377\216\216\276\377\213\213\273\377::q\377\202<>u\377@@w\377AAx\377CCz\377DD{\377FF}\377\202II\177\377" "\1LL\201\377\207LL\202\377\4MM\203\377NN\204\377PP\205\377QQ\206\377" "\206QQ\207\377\202RR\210\377\3SS\210\377UU\212\377VV\213\377\207WW\214" "\377\1XX\215\377\202ZZ\216\377\205\\\\\221\377\1]]\221\377\202^^\222" "\377\2``\224\377aa\225\377\205bb\226\377\202cc\227\377\1bb\226\377\203" "cc\227\377\4bb\226\377aa\224\377]]\221\377[[\217\377\202WW\214\377\4" "VV\213\377XX\215\377[[\217\377\\\\\221\377\202ZZ\216\377\1[[\220\377" "\202]]\221\377\1__\223\377\202aa\224\377\202``\224\377\5cc\227\377gg" "\233\377nn\241\377uu\247\377{{\254\377\202||\256\377\3}}\256\377~~\257" "\377\200\200\261\377\204\201\201\262\377\2\202\202\263\377\205\205\265" "\377\202\206\206\267\377\202\207\207\270\377\27\210\210\270\377\215\215" "\274\377\220\220\276\377\221\221\277\377\221\207\261\377\232]\226\377" "\253`\240\377\263k\250\377\272u\257\377\277}\264\377\302\202\267\377" "\303\203\271\377\302\203\270\377\300~\265\377\273w\261\377\265n\252\377" "\256d\242\377\241^\231\377\215}\247\377\215\215\272\377\215\215\273\377" "\212\212\271\377\210\210\267\377\202\207\207\267\377\11\213\213\274\377" "\213\213\273\377\222\222\301\377\225\225\304\377\232\232\310\377\237" "\237\315\377\246\246\324\377\253\253\330\377\257\257\334\377\204\262" "\262\336\377\1\264\264\341\377\202\266\266\342\377\2\267\267\343\377" "\271\271\344\377\206\272\272\346\377L\251\247\313\377\177v{\377[L3\377" "K9\22\377J7\16\377J8\17\377L9\21\377N<\24\377SA\27\377b\\\23\377\206" "\205\30\377\225\225#\377\243\2423\377\261\261E\377\276\276Z\377\313\313" "p\377\326\325\210\377\341\341\236\377\350\347\261\377\356\356\303\377" "\361\361\315\377\363\363\325\377\363\363\327\377\363\363\325\377\361" "\361\317\377\357\357\307\377\354\354\274\377\347\347\256\377\341\341" "\236\377\331\330\214\377\317\316x\377\304\303d\377\272\272T\377\260\260" "C\377\245\2445\377\232\231(\377\215\215\35\377\201\200\25\377sr\16\377" "ed\10\377[Z\5\377QP\3\377KK\2\377KK\3\377LL\3\377QQ\16\377\220\220u\377" "\237\236\215\377\236\236\217\377\277\303\266\377\323\327\314\377\307" "\312\300\377\277\302\267\377\305\306\273\377\313\313\300\377\307\310" "\275\377\303\304\270\377\303\303\271\377\301\300\267\377\273\272\260" "\377\271\267\255\377\301\277\264\377\265\264\250\377\202\201t\377VUK" "\377\7\7\6\377\3\3\3\377\4\4\4\377\10\10\10\377\14\14\14\377\20\20\20" "\377\27\27\27\377\36\36\35\377%%%\377+++\377000\377\202222\377\13///" "\377***\377%%%\377\37\36\36\377\30\30\27\377\22\22\21\377\13\13\13\377" "\7\7\7\377\5\5\5\377\3\3\3\377\2\2\2\377\205\1\1\1\377L\2\1\1\37711." "\377OOJ\377URM\377HGC\377<=9\377895\377672\377573\377474\377486\3774" "88\377486\377596\3776;9\3778=<\377695\377/,\37\377*!\14\377,\40\10\377" "0$\11\3775'\11\3779*\12\377=-\13\377B1\15\377ZI)\377\222\204q\377\310" "\276\271\377\334\323\322\377\335\324\323\377\340\326\325\377\337\326" "\325\377\340\327\325\377\341\327\325\377\342\327\326\377\342\330\327" "\377\343\332\331\377\342\332\330\377\341\331\331\377\341\331\332\377" "\342\331\332\377\341\330\332\377\337\330\332\377\337\327\332\377\336" "\327\332\377\337\330\334\377\334\326\332\377\321\313\317\377\301\272" "\300\377\262\250\260\377\244\231\244\377\233\213\233\377\230\206\231" "\377\227\205\230\377\232\210\233\377\234\212\235\377\234\215\235\377" "\237\220\240\377\242\224\243\377\244\227\245\377\245\230\246\377\245" "\231\250\377\254\234\251\377\263\240\255\377\264\240\256\377\265\243" "\260\377\266\245\262\377\270\247\263\377\267\251\264\377\266\253\266" "\377\262\254\266\377\262\255\267\377\266\257\271\377\270\262\273\377" "\267\262\273\377\270\264\274\377\202\272\266\277\377\35\275\270\302\377" "\276\271\303\377\277\274\304\377\302\276\305\377\310\304\312\377\322" "\316\324\377\333\326\333\377\340\332\337\377\341\331\336\377\340\330" "\334\377\337\330\334\377\343\333\337\377\345\336\341\377\350\341\343" "\377\353\346\347\377\356\351\353\377\351\343\345\377\320\306\300\377" "\200pU\377L9\21\377I6\15\377cU>\377\237\232\262\377\271\271\344\377\272" "\272\346\377\267\267\341\377\236\231\257\377sf]\377Q@\35\377\211I6\15" "\377\2L9\23\377K8\21\377\211I6\15\377\12YI.\377\216\210\232\377\257\257" "\333\377\254\254\331\377\256\256\332\377\257\257\334\377\256\256\332" "\377\255\255\332\377\252\252\327\377\251\251\326\377\202\244\244\322" "\377\11\241\241\317\377\235\235\313\377\232\232\310\377\230\230\307\377" "\225\225\304\377\224\224\303\377\221\221\301\377\220\220\277\377\214" "\214\274\377\202\212\212\273\377\1""77n\377\20277o\377\203<>u\377\202\77\77v\377\1AAx\377\203EE{\377\202FF}\377\3HH~\377II\177" "\377LL\201\377\202LL\202\377\1NN\204\377\202PP\205\377\1QQ\206\377\202" "QQ\207\377\202RR\210\377\1SS\210\377\203UU\212\377\203VV\213\377\202" "WW\214\377\3XX\215\377ZZ\216\377[[\217\377\205\\\\\221\377\203]]\221" "\377\202__\223\377\204aa\225\377\1bb\226\377\202cc\227\377\202ee\230" "\377\203ff\232\377\204ff\231\377\4ff\232\377ff\231\377bb\226\377aa\225" "\377\202]]\221\377\202ZZ\216\377\1YY\216\377\202[[\220\377\2\\\\\221" "\377]]\221\377\202[[\217\377\7ZZ\216\377\\\\\221\377^^\222\377aa\224" "\377cc\227\377ff\231\377ff\232\377\202hh\233\377\4oo\241\377tt\246\377" "||\256\377~~\257\377\202\201\201\262\377\2\202\202\263\377\205\205\265" "\377\204\206\206\267\377'\207\207\267\377\212\212\272\377\213\213\274" "\377\214\214\274\377\215\215\274\377\216\216\275\377\221\221\277\377" "\225\222\277\377\216k\232\377\245Z\232\377\257e\243\377\267p\254\377" "\276{\263\377\302\203\270\377\305\206\273\377\306\210\274\377\305\210" "\273\377\303\204\271\377\277}\265\377\271s\256\377\262i\246\377\252_" "\236\377\227e\231\377\226\217\272\377\222\222\277\377\217\217\274\377" "\216\216\274\377\214\214\273\377\212\212\271\377\212\212\272\377\214" "\214\274\377\222\222\301\377\224\224\303\377\226\226\305\377\233\233" "\312\377\241\241\317\377\252\252\327\377\257\257\334\377\264\264\340" "\377\204\266\266\342\377\2\270\270\344\377\271\271\345\377\205\272\272" "\346\377\4\257\256\322\377\212\202\212\377j\\L\377M:\24\377\203I6\15" "\377&J7\16\377K8\20\377M:\22\377O<\25\377TF\26\377pn\21\377\210\207\31" "\377\227\226%\377\245\2445\377\263\262H\377\300\300]\377\315\315u\377" "\331\330\214\377\342\342\242\377\351\350\265\377\355\355\303\377\361" "\361\317\377\363\363\327\377\363\363\330\377\363\363\326\377\361\361" "\317\377\357\357\307\377\353\353\273\377\347\347\255\377\341\341\235" "\377\331\331\215\377\320\320z\377\305\305g\377\272\271R\377\256\256A" "\377\243\2423\377\230\227&\377\214\213\33\377~}\23\377po\14\377cc\10" "\377XX\6\377QP\5\377\202MM\5\377\40MM\4\377NN\5\377\214\213^\377\303" "\300\256\377\252\246\226\377}|p\377swl\377\232\236\223\377\300\303\270" "\377\320\320\305\377\312\312\277\377\303\302\270\377\305\304\272\377" "\276\275\264\377\274\272\260\377\300\277\265\377\277\275\262\377\230" "\227\212\377XWM\377FE>\377FD=\377B<6\377\14\14\13\377\3\3\3\377\5\5\4" "\377\10\10\10\377\13\13\12\377\16\16\16\377\22\22\22\377\27\27\27\377" "\35\35\34\377\37\37\37\377\202!!!\377\11\"!!\377\37\36\36\377\32\31\31" "\377\26\26\25\377\20\20\20\377\14\14\14\377\10\10\10\377\6\6\6\377\3" "\3\3\377\202\2\2\2\377\205\1\1\1\377\10\33\30\21\377>>7\377AB>\377FG" "D\377BCA\377=\77=\3779;9\377562\377\202450\377103.\377.2.\377/20\377" "-1.\377,1,\377/42\377486\3779><\377=@;\377:7*\3774*\23\3775'\11\3779" "*\12\377=-\13\377A0\14\377D2\14\377F3\14\377R\77\32\377\200pW\377\275" "\261\247\377\337\324\324\377\340\327\325\377\342\327\327\377\343\330" "\327\377\343\331\327\377\341\330\325\377\343\332\330\377\343\333\331" "\377\344\333\332\377\344\333\331\377\343\332\332\377\343\331\331\377" "\343\332\333\377\343\331\332\377\343\332\332\377\343\332\333\377\345" "\334\336\377\346\336\341\377\345\335\341\377\343\334\337\377\342\331" "\335\377\340\331\335\377\337\330\335\377\337\330\334\377\340\331\335" "\377\341\332\336\377\341\331\335\377\342\331\336\377\343\332\337\377" "\202\343\333\337\377\5\341\332\337\377\342\332\337\377\343\334\340\377" "\342\332\337\377\342\333\337\377\202\340\331\335\377\22\337\330\334\377" "\337\330\335\377\337\330\334\377\337\330\333\377\336\330\333\377\336" "\331\334\377\335\330\334\377\334\326\331\377\335\326\331\377\334\327" "\332\377\334\326\332\377\334\327\333\377\335\327\333\377\335\330\333" "\377\341\331\335\377\344\334\340\377\346\335\340\377\345\335\340\377" "\202\344\334\337\377\10\345\335\340\377\346\336\342\377\347\337\342\377" "\350\341\343\377\347\337\341\377\333\322\321\377\222\205o\377Q\77\30" "\377\202I6\15\377\5I7\16\377xmg\377\251\247\306\377\272\272\346\377\271" "\271\344\377\202\270\270\344\377\5\267\267\343\377\253\251\316\377\210" "\201\212\377aR;\377J7\17\377\217I6\15\377\4K8\21\377ynm\377\253\252\323" "\377\262\262\336\377\202\261\261\336\377\24\257\257\333\377\253\253\330" "\377\252\252\327\377\251\251\326\377\246\246\324\377\244\244\321\377" "\240\240\316\377\236\236\314\377\232\232\310\377\231\231\307\377\230" "\230\307\377\225\225\304\377\222\222\301\377\220\220\277\377\220\220" "\300\377\217\217\276\377\216\216\276\377\213\213\273\377\212\212\273" "\37744l\377\20255m\377\1""77o\377\202::q\377\202</\16\377A0\14\377D2\14\377F3\14\377" "G5\15\377H5\15\377J8\20\377kY9\377\247\230\210\377\327\314\307\377\343" "\331\330\377\345\332\332\377\202\344\332\332\377\4\344\332\331\377\344" "\333\332\377\345\333\332\377\345\332\331\377\203\345\333\332\377\14\345" "\334\332\377\345\333\332\377\346\335\334\377\347\335\335\377\346\335" "\337\377\347\337\341\377\347\340\342\377\350\340\343\377\350\341\344" "\377\351\341\344\377\352\343\346\377\352\343\345\377\202\352\342\345" "\377\2\351\342\345\377\352\342\345\377\202\351\342\344\377\16\350\340" "\343\377\350\337\343\377\347\337\342\377\346\336\340\377\346\335\341" "\377\344\334\337\377\344\333\335\377\343\333\335\377\341\332\334\377" "\343\333\336\377\343\332\336\377\341\332\335\377\340\331\334\377\340" "\331\333\377\202\336\330\332\377\202\336\327\332\377\16\335\327\332\377" "\341\332\336\377\344\334\340\377\344\335\340\377\344\334\340\377\343" "\334\337\377\345\335\340\377\345\335\337\377\344\335\340\377\345\336" "\340\377\346\340\341\377\341\331\331\377\244\230\207\377XF!\377\206I" "6\15\377\5L:\23\377gZG\377\221\213\232\377\257\256\325\377\266\266\342" "\377\202\264\264\341\377\5\264\264\340\377\263\262\335\377\237\233\267" "\377wlh\377R@\36\377\214I6\15\377\3bT\77\377\237\234\270\377\262\262" "\336\377\202\257\257\334\377\10\256\256\332\377\252\252\327\377\247\247" "\324\377\246\246\324\377\243\243\321\377\241\241\317\377\234\234\313" "\377\235\235\313\377\202\233\233\312\377\203\225\225\304\377\10\221\221" "\301\377\222\222\301\377\217\217\276\377\215\215\275\377\217\217\276" "\377\216\216\276\377\212\212\273\377\212\212\272\377\20355m\377\15""7" "7n\37788p\37777o\37799q\37777o\377<>u\377@@w\377AAx\377" "BBy\377CCz\377DD{\377\203FF}\377\202II\177\377\2KK\201\377MM\203\377" "\202QQ\206\377\1SS\210\377\202VV\213\377\205WW\214\377\3XX\215\377ZZ" "\216\377[[\217\377\204\\\\\221\377\3UX\213\377[\\\221\377]]\221\377\202" "__\223\377\1``\224\377\202aa\225\377\203bb\226\377\203cc\227\377\2dd" "\230\377gg\233\377\203hh\233\377\204ii\234\377\5kk\236\377mm\240\377" "nn\241\377oo\241\377pp\242\377\203pp\243\377\203pp\242\377\1oo\241\377" "\202pp\242\377\3kk\236\377ff\232\377cc\227\377\202aa\225\377\4bb\226" "\377dd\230\377ee\230\377ff\231\377\202ee\230\377\3gg\233\377hh\233\377" "ii\234\377\202kk\236\377\6ll\237\377nn\241\377pp\243\377yy\253\377||" "\256\377\205\205\266\377\202\212\212\272\377\36\213\213\273\377\214\214" "\274\377\220\220\277\377\221\221\300\377\221\221\301\377\222\222\301" "\377\224\224\303\377\225\225\303\377\231\224\301\377\216a\223\377\242" "U\227\377\254a\241\377\265n\252\377\276z\263\377\303\205\271\377\310" "\214\276\377\313\221\302\377\314\222\303\377\313\221\302\377\311\215" "\277\377\304\206\273\377\277}\265\377\270s\255\377\261g\246\377\250[" "\234\377\232Y\224\377\240\221\272\377\254\254\326\377\244\244\320\377" "\231\231\307\377\202\227\227\305\377\1\224\224\302\377\202\220\220\300" "\377\7\225\225\304\377\230\230\307\377\231\231\307\377\234\234\313\377" "\244\244\321\377\252\252\327\377\264\264\340\377\202\271\271\345\377" "\202\272\272\346\377\4\270\270\343\377\223\214\233\377l_P\377RA\37\377" "\210I6\15\377\22J7\16\377J8\17\377L9\21\377N<\25\377]N-\377^\\\17\377" "yy\21\377\212\211\33\377\231\230'\377\250\2477\377\265\264K\377\303\302" "b\377\317\317z\377\333\333\222\377\344\344\247\377\352\352\271\377\357" "\357\310\377\362\362\322\377\202\364\364\326\377\24\362\362\324\377\360" "\360\315\377\355\355\303\377\352\352\270\377\346\346\252\377\337\337" "\232\377\327\327\210\377\315\315s\377\302\301`\377\266\265M\377\253\253" "=\377\240\2370\377\225\225%\377\212\212\34\377}}\25\377pp\20\377cc\13" "\377WW\11\377OO\6\377MM\5\377\203MM\4\377\16RR\17\377\266\265\230\377" "\305\302\257\377\305\300\256\377\305\277\255\377\304\277\254\377\273" "\264\242\377\227\217\200\377fbY\377cbY\377\211\212\201\377\264\262\252" "\377\256\253\241\377a]Q\377\202IF\77\377\16cYQ\377\225\212}\377\240\230" "\210\377\237\226\205\377\217\213{\377[ZP\377\35\34\31\377\4\4\4\377\3" "\3\3\377\6\6\6\377\10\10\10\377\11\11\11\377\13\13\12\377\13\13\13\377" "\203\15\15\15\377\10\14\13\13\377\12\12\12\377\10\10\10\377\7\7\7\377" "\5\5\5\377\4\4\4\377\3\3\3\377\2\2\2\377\204\1\1\1\377!\4\3\3\377\34" "\34\25\3772-$\377>0.\377G/7\3777)*\3778.*\377A5,\377&%\34\377+.\"\377" "*+\30\377+(\40\377>,2\3776&)\377\35\33\24\377\25\27\14\377\31\32\21\377" "\31\34\17\377/.\"\377)(\36\377%(\37\377(-#\377-5&\377LN@\377YXN\377T" "VM\377PSG\377UK3\377J:\25\377F4\14\377G5\15\377H5\15\377H6\15\377\202" "I6\15\377\11YG\"\377\215}f\377\310\274\264\377\340\326\324\377\343\331" "\330\377\344\333\332\377\345\333\332\377\346\334\333\377\345\334\333" "\377\202\346\334\333\377\4\345\333\333\377\345\334\332\377\345\334\333" "\377\346\336\335\377\202\346\335\335\377\6\346\335\336\377\347\336\340" "\377\347\336\337\377\350\337\341\377\351\341\342\377\352\342\342\377" "\202\352\342\343\377#\351\340\343\377\350\341\342\377\350\340\342\377" "\350\341\343\377\350\340\342\377\346\335\340\377\345\334\337\377\345" "\334\336\377\345\334\335\377\343\332\333\377\341\330\330\377\340\331" "\331\377\342\332\332\377\341\331\332\377\341\330\332\377\340\331\332" "\377\335\327\330\377\335\326\330\377\333\326\327\377\332\325\327\377" "\333\325\326\377\334\326\327\377\336\327\331\377\336\330\332\377\340" "\331\333\377\343\333\336\377\341\332\335\377\342\333\336\377\341\333" "\335\377\343\334\336\377\344\334\336\377\345\335\337\377\346\337\340" "\377\265\253\237\377eT3\377\213I6\15\377\11UE%\377xnj\377\240\234\271" "\377\263\262\336\377\264\264\340\377\262\262\336\377\261\261\336\377" "\251\247\314\377gYJ\377\212I6\15\377\3O=\31\377\212\202\216\377\257\257" "\330\377\202\255\255\332\377\202\252\252\327\377\3\245\245\323\377\244" "\244\321\377\240\240\316\377\202\241\241\317\377\21\236\236\314\377\231" "\231\307\377\230\230\307\377\232\232\310\377\225\225\304\377\223\223" "\302\377\222\222\301\377\225\225\304\377\224\224\303\377\221\221\301" "\377\217\217\276\377\215\215\275\377\213\213\273\377\212\212\272\377" "\207\207\267\377\205\205\265\37777o\377\20377n\377\20277o\377\5""88p" "\37777o\37799q\37788p\37799q\377\202<>u\377\77\77v\377AAx\377" "\202DD{\377\5FF}\377KK\201\377LL\201\377KK\201\377LL\202\377\202MM\203" "\377\1QQ\206\377\202QQ\207\377\1VV\213\377\202WW\214\377\1ZZ\216\377" "\202[[\217\377\203\\\\\221\377\5]]\221\377^^\221\377^_\223\377FNv\377" "^`\223\377\202bb\225\377\202aa\225\377\202bb\226\377\1dd\230\377\202" "ee\230\377\1ff\232\377\203gg\233\377\203hh\233\377\2ii\234\377kk\236" "\377\205nn\241\377\3oo\241\377pp\242\377pp\243\377\202ss\245\377\4tt" "\246\377uu\247\377uu\250\377uu\247\377\202tt\246\377\2uu\247\377ss\245" "\377\202qq\244\377\3oo\241\377ll\237\377hh\233\377\202ff\232\377\202" "hh\233\377\202ii\234\377\202hh\233\377\3ii\234\377kk\236\377nn\241\377" "\202pp\242\377\3qq\244\377pp\243\377vv\250\377\202\201\201\262\377\4" "\212\212\273\377\217\217\276\377\220\220\300\377\222\222\301\377\202" "\227\227\305\377\34\230\230\306\377\232\231\306\377\215v\242\377\232" "O\220\377\247X\233\377\260f\244\377\271s\256\377\300\177\267\377\306" "\212\274\377\313\221\302\377\316\225\304\377\317\227\305\377\316\225" "\304\377\313\222\302\377\307\213\276\377\302\202\270\377\274w\261\377" "\264l\251\377\254_\240\377\242T\227\377\224a\225\377\255\246\317\377" "\263\263\336\377\257\257\332\377\244\244\320\377\233\233\310\377\232" "\232\310\377\230\230\306\377\202\225\225\304\377\13\226\226\305\377\232" "\232\310\377\235\235\313\377\237\237\315\377\245\245\323\377\251\251" "\326\377\262\262\336\377\257\256\326\377\227\221\243\377wlf\377P>\32" "\377\213I6\15\377\22K9\21\377\\L1\377~tt\377\240\235\272\377\223\223" "\232\377ii\24\377{{\26\377\212\212\34\377\231\230(\377\250\2478\377\265" "\264L\377\303\302b\377\320\320z\377\333\333\223\377\345\345\250\377\352" "\352\272\377\357\357\311\377\362\362\323\377\202\364\364\326\377\24\362" "\362\324\377\360\360\313\377\354\354\300\377\350\350\263\377\344\343" "\245\377\335\335\224\377\323\323\201\377\312\312n\377\300\300\\\377\266" "\265L\377\255\254>\377\242\2422\377\227\227&\377\211\210\34\377||\25" "\377mm\16\377``\13\377UU\7\377NN\6\377MM\5\377\203MM\4\377\3MM\6\377" "\233\231s\377\303\300\256\377\202\303\276\255\377!\302\275\253\377\277" "\271\246\377\273\264\242\377\265\256\234\377\231\220\201\377f_V\377P" "MF\377QPF\377B@:\377SKE\377\201vk\377\233\223\204\377\230\220\200\377" "\217\210y\377lj^\377PLE\377e\\W\377\214\203}\377urm\377**(\377\7\7\6" "\377\4\4\4\377\6\6\6\377\7\7\7\377\10\10\10\377\11\10\10\377\10\10\10" "\377\7\7\7\377\6\6\6\377\6\6\5\377\5\5\5\377\4\4\4\377\3\3\3\377\202" "\2\2\2\377\203\1\1\1\377#\3\3\2\377\32\30\25\377<7-\37796'\3770-!\377" "(&\27\377'$\33\3770%%\377-\"\"\3775.!\377,)\30\377\34\40\17\377)+\27" "\377>+$\377L07\377I-8\377#\31\30\377\36\35\24\377\35\40\26\377\40&\27" "\377#(\27\377\33!\23\377\35!\26\377\34\36\22\377\33\"\17\37716\40\377" "_ZG\377}r]\377\215~h\377\270\247\211\377\306\264\225\377\245\221n\377" "\\K&\377J7\17\377H6\15\377\204I6\15\377\23L:\21\377saC\377\254\236\220" "\377\326\313\307\377\340\325\324\377\344\332\331\377\346\334\333\377" "\346\335\335\377\345\334\334\377\346\334\334\377\346\336\334\377\346" "\336\335\377\346\336\336\377\346\335\336\377\347\336\336\377\347\335" "\337\377\347\337\337\377\350\337\340\377\351\340\340\377\202\351\340" "\341\377)\351\341\341\377\352\341\341\377\351\341\342\377\351\340\341" "\377\350\337\337\377\350\337\340\377\347\336\337\377\346\336\337\377" "\345\334\336\377\344\333\334\377\342\332\333\377\340\331\331\377\341" "\330\330\377\342\331\332\377\343\332\333\377\337\330\330\377\337\327" "\327\377\336\327\327\377\335\326\327\377\335\326\330\377\333\325\327" "\377\332\324\325\377\332\323\324\377\334\325\327\377\336\327\331\377" "\337\330\332\377\341\331\332\377\342\331\332\377\342\332\333\377\344" "\334\336\377\344\335\336\377\345\336\337\377\345\335\336\377\303\272" "\262\377rbD\377J7\16\377J8\20\377gZH\377\202y|\377hYG\377M;\25\377\211" "I6\15\377\6J7\17\377aR=\377\210\201\214\377\237\234\274\377\206~\211" "\377SB!\377\211I6\15\377\4K8\21\377m`U\377\247\246\314\377\253\253\330" "\377\202\252\252\327\377\202\246\246\324\377\4\247\247\324\377\246\246" "\324\377\241\241\317\377\235\235\313\377\202\237\237\316\377\3\231\231" "\307\377\232\232\311\377\231\231\307\377\202\230\230\307\377\13\225\225" "\304\377\223\223\302\377\221\221\301\377\220\220\300\377\217\217\276" "\377\214\214\274\377\212\212\273\377\211\211\271\377\206\206\267\377" "\202\202\263\377\200\200\261\377\204::q\377\3;;r\377::q\377<>u\377\4@@w\377AAx\377" "BBy\377EE{\377\202FF}\377\4GG~\377JJ\200\377KK\201\377MM\203\377\202" "PP\205\377\7QQ\207\377SS\210\377VV\213\377WW\214\377XX\215\377[[\217" "\377]]\221\377\202^^\221\377\12``\223\377aa\224\377[^\220\377-;Y\377" "X\\\214\377cc\226\377dd\227\377ee\230\377ff\230\377gg\232\377\204ff\232" "\377\1gg\233\377\202ii\234\377\2jj\235\377kk\236\377\203ll\237\377\204" "nn\241\377\1pp\243\377\203ss\245\377\203tt\246\377\5uu\250\377vv\250" "\377xx\252\377yy\253\377zz\253\377\202{{\254\377\202zz\253\377\7{{\254" "\377yy\253\377xx\252\377ww\251\377uu\247\377ss\245\377nn\241\377\202" "kk\236\377\1mm\240\377\202nn\241\377\2mm\240\377ll\237\377\202nn\241" "\377\4pp\242\377ss\245\377tt\246\377uu\247\377\202ww\251\3770||\256\377" "\206\206\267\377\216\216\276\377\221\221\301\377\226\226\304\377\231" "\231\307\377\235\235\311\377\231\220\274\377\216R\213\377\237P\223\377" "\252]\235\377\263k\250\377\274x\262\377\303\204\272\377\311\217\300\377" "\316\225\304\377\321\232\307\377\322\233\310\377\321\232\307\377\316" "\225\304\377\312\217\301\377\304\206\273\377\276|\264\377\267p\253\377" "\257d\243\377\246W\232\377\234O\221\377\225t\241\377\265\262\334\377" "\267\267\341\377\266\266\341\377\255\255\331\377\242\242\320\377\234" "\234\312\377\233\233\312\377\232\232\311\377\231\231\307\377\230\230" "\307\377\232\232\310\377\233\233\312\377\232\232\311\377\214\210\244" "\377nc]\377RA\37\377X@\13\377iK\10\377uT\7\377P:\13\377\210I6\15\377" "+J7\17\377tia\377\237\233\263\377\267\267\337\377\273\273\346\377\270" "\270\341\377~~e\377ll\21\377||\27\377\215\215\"\377\234\233-\377\251" "\250:\377\265\264L\377\303\302b\377\320\320z\377\333\333\222\377\345" "\345\250\377\352\352\272\377\357\357\311\377\362\362\322\377\362\362" "\326\377\364\364\326\377\362\362\323\377\357\357\312\377\354\354\277" "\377\350\347\261\377\343\343\243\377\333\333\221\377\322\322\177\377" "\312\312n\377\300\300]\377\266\266L\377\254\254>\377\241\2411\377\225" "\225%\377\207\207\33\377yy\23\377kk\15\377]]\12\377TT\7\377MM\6\377M" "M\5\377MM\4\377\202LL\4\377\36MM\5\377\177~O\377\273\270\247\377\273" "\267\250\377\271\265\244\377\267\262\241\377\266\260\240\377\264\256" "\234\377\261\252\231\377\255\244\223\377\244\233\212\377\212\200r\377" "`YP\377l`X\377\224\212}\377\224\214~\377\217\207w\377tqd\377PNF\377I" "E>\377qhb\377\226\221\213\377\235\231\222\377\252\244\234\377\250\244" "\235\377\201}x\377DB\77\377\30\27\26\377\6\6\5\377\5\5\5\377\203\4\4" "\4\377\1\4\3\3\377\202\2\2\2\377\1\3\3\3\377\202\2\2\2\377(\1\1\1\377" "\3\3\2\377\16\15\14\377)'$\377MIC\377[VN\377WMD\377ZOF\377LA4\3775)\40" "\377\40\37\23\377\40\37\24\377\35\35\24\377\"%\20\377\77""9(\377MC3\377" "D:,\3774,\34\377*\"\40\3775-%\377A8*\3777-!\377\37!\21\377\34\36\23\377" "=4.\377B54\3774-'\377@92\377I@\77\377A>8\377FG;\377TN:\377xiN\377\260" "\235|\377\246\223t\377\255\237\200\377\210\177j\377snX\377xfA\377Q>\26" "\377\205I6\15\377\21J7\16\377^M)\377\221\201l\377\310\273\263\377\332" "\316\314\377\337\325\323\377\342\327\326\377\345\333\331\377\344\333" "\331\377\344\333\332\377\344\332\333\377\345\333\333\377\346\334\334" "\377\347\336\336\377\347\337\337\377\350\337\337\377\350\340\340\377" "\203\351\341\341\377\14\352\342\343\377\351\342\343\377\351\341\341\377" "\350\340\337\377\351\340\340\377\350\337\340\377\347\336\337\377\344" "\333\332\377\343\332\331\377\341\331\330\377\342\331\330\377\342\333" "\331\377\202\342\332\331\377\34\341\330\330\377\340\327\327\377\336\327" "\326\377\335\326\325\377\335\326\326\377\334\325\326\377\336\326\327" "\377\335\325\326\377\336\327\330\377\337\330\331\377\340\330\331\377" "\342\332\333\377\344\332\333\377\344\333\334\377\346\336\336\377\346" "\336\337\377\324\313\307\377\204u\\\377N;\23\377I6\15\377\\K1\377\226" "\220\242\377\270\270\343\377\272\272\346\377\270\270\343\377\246\243" "\301\377~ts\377UD%\377\212I6\15\377\2K8\21\377I6\16\377\211I6\15\377" "\5XH+\377\220\213\241\377\254\254\331\377\250\250\325\377\247\247\324" "\377\202\252\252\327\377\31\243\243\321\377\245\245\323\377\243\243\321" "\377\241\241\317\377\237\237\316\377\240\240\316\377\235\235\313\377" "\236\236\314\377\233\233\312\377\232\232\311\377\227\227\306\377\225" "\225\304\377\224\224\303\377\222\222\301\377\220\220\277\377\215\215" "\275\377\212\212\273\377\212\212\272\377\207\207\267\377\206\206\267" "\377\202\202\263\377\201\201\262\377\200\200\261\377}}\256\377;;r\377" "\202<>u\377\202==u\377\203>>" "u\377\203\77\77v\377\33@@w\377BBy\377CCz\377EE{\377HH~\377JJ\200\377" "LL\201\377NN\204\377OO\205\377PP\205\377QQ\206\377RR\210\377SS\210\377" "VV\213\377XX\214\377YY\215\377[[\216\377]]\221\377^^\221\377bb\226\377" "RY\206\377\35""4N\377LT~\377dd\230\377ee\231\377ee\230\377ff\230\377" "\202hh\233\377\1ii\233\377\203ii\234\377\203jj\235\377\1ll\237\377\202" "nn\241\377\1pp\242\377\204pp\243\377\1qq\244\377\202ss\245\377\1tt\246" "\377\203vv\250\377\202ww\251\377\3xx\252\377yy\253\377{{\255\377\203" "}}\256\377\2~~\257\377}}\256\377\202||\256\377\7\177\177\260\377}}\256" "\377||\256\377zz\253\377uu\247\377ss\245\377pp\242\377\202nn\241\377" "\10rr\244\377ss\245\377tt\246\377rr\244\377qq\244\377tt\246\377uu\250" "\377xx\252\377\202zz\253\377)||\255\377\200\200\260\377\204\204\265\377" "\214\214\274\377\224\224\302\377\236\236\312\377\236\232\310\377\210" "c\223\377\227I\214\377\243T\227\377\256b\242\377\266q\254\377\277}\265" "\377\306\212\275\377\314\223\303\377\321\232\310\377\323\236\312\377" "\323\240\313\377\323\236\312\377\320\231\307\377\314\223\304\377\307" "\212\276\377\302\200\267\377\272u\257\377\262h\246\377\251\\\235\377" "\240P\223\377\224L\214\377\237\213\265\377\271\270\342\377\272\272\344" "\377\273\273\345\377\270\270\343\377\255\255\331\377\241\241\317\377" "\235\235\313\377\233\233\312\377\230\230\306\377\205\201\234\377k`]\377" "P>\34\377\202I6\15\377\3P:\12\377\247v\2\377bF\10\377\202\200[\5\377" "\2\202]\7\377jL\11\377\206I6\15\377\24J7\17\377sh_\377\246\243\277\377" "\273\272\345\377\273\273\346\377\270\270\333\377ii4\377kk\20\377{{\27" "\377\214\214!\377\234\234.\377\252\252>\377\267\267Q\377\303\303d\377" "\317\317y\377\333\333\221\377\344\344\247\377\352\352\271\377\357\357" "\307\377\361\361\321\377\202\362\362\325\377\22\361\361\321\377\357\357" "\311\377\353\353\275\377\347\347\257\377\343\342\241\377\333\333\220" "\377\323\323\177\377\312\312m\377\300\300[\377\265\265K\377\251\251;" "\377\236\235.\377\222\222#\377\205\205\32\377ww\22\377ii\15\377[[\11" "\377QQ\7\377\202LL\5\377\204LL\4\377\40ih1\377\257\255\234\377\256\254" "\235\377\257\252\233\377\256\251\231\377\253\246\226\377\251\244\224" "\377\247\242\222\377\244\234\216\377\240\230\210\377\234\224\204\377" "\226\216}\377\222\210y\377\220\210z\377\204~q\377VUJ\377B>8\377IB=\377" "slf\377\216\212\204\377\231\225\216\377\240\235\226\377\242\235\227\377" "\242\234\224\377\241\232\223\377\242\234\224\377\227\221\212\377zvp\377" "YUP\377<:6\377$#\40\377\30\27\25\377\202\17\16\14\377/\25\23\22\377\33" "\32\30\377#\"\37\377.,(\377>;6\377OKE\377[VM\377\\XI\377VQ@\377JA1\377" "TK=\377PE7\377IA0\377TC=\377K;:\377E;/\37740\35\377*'\25\377=9!\377O" "I2\377PH3\3772-\32\377\32\32\17\377\34\32\20\377/*\33\377@0$\377L8.\377" "6#\35\3774*\"\377OA8\377gSQ\377[GB\377\\JB\377gPO\377FA1\377MJ1\377\232" "\214l\377\305\264\215\377\326\303\236\377\225\205m\377\200{h\377\212" "\204r\377\300\257\217\377\302\261\220\377\213{Z\377TE!\377I7\16\377\205" "I6\15\377\17N;\24\377ziL\377\264\246\227\377\322\306\277\377\326\311" "\302\377\330\315\310\377\333\321\316\377\335\323\320\377\337\325\324" "\377\343\332\330\377\346\335\335\377\347\336\336\377\350\336\337\377" "\350\340\340\377\351\340\341\377\202\352\342\342\377\37\352\343\343\377" "\352\342\342\377\352\341\342\377\351\341\341\377\351\341\340\377\351" "\341\341\377\347\336\336\377\345\334\334\377\345\334\333\377\343\332" "\330\377\343\332\332\377\343\334\333\377\344\334\333\377\343\333\332" "\377\342\332\332\377\341\331\331\377\341\331\330\377\337\330\327\377" "\340\330\331\377\337\331\331\377\341\331\333\377\344\334\335\377\343" "\333\334\377\344\334\335\377\347\336\340\377\347\336\337\377\350\337" "\341\377\351\341\341\377\336\325\322\377\226\211t\377P>\27\377\202I6" "\15\377\3I7\16\377~ts\377\256\254\317\377\202\271\271\344\377\1\272\272" "\346\377\202\267\267\343\377\4\263\262\334\377\223\215\237\377i[L\377" "N;\26\377\220I6\15\377\3M;\26\377ypq\377\252\251\324\377\202\253\253" "\330\377\2\247\247\324\377\251\251\326\377\202\246\246\324\377\20\245" "\245\323\377\250\250\325\377\243\243\321\377\241\241\317\377\240\240" "\316\377\237\237\315\377\233\233\312\377\234\234\313\377\232\232\311" "\377\231\231\307\377\222\222\301\377\220\220\300\377\217\217\276\377" "\215\215\275\377\212\212\272\377\210\210\270\377\204\205\205\265\377" "\5\201\201\262\377\177\177\260\377~~\257\377||\256\377@@w\377\204AAx" "\377\3@@w\377AAx\377@@w\377\203AAx\377\205@@w\377\1CCz\377\203AAx\377" "\203DD{\377\202EE{\377\2FF|\377GG~\377\202KK\201\377\3LL\201\377PP\205" "\377QQ\206\377\202SS\210\377\12VV\212\377VV\213\377XX\215\377YY\216\377" "^_\222\377@Lq\377\33:U\377:Ik\377cd\230\377ee\231\377\202gg\233\377\6" "ii\234\377ii\233\377jj\234\377kk\235\377jj\235\377ll\237\377\204nn\241" "\377\203pp\242\377\2qq\244\377tt\246\377\202uu\247\377\203vv\250\377" "\204xx\252\377\1{{\254\377\203}}\256\377\202~~\257\377\5\177\177\260" "\377\200\200\261\377\202\202\263\377\203\203\264\377\204\204\264\377" "\203\205\205\265\377\11\204\204\264\377\205\205\265\377\203\203\264\377" "\204\204\264\377\201\201\262\377||\256\377zz\253\377uu\250\377tt\246" "\377\202uu\250\377\2ww\251\377zz\253\377\202xx\252\377\"yy\253\377zz" "\253\377||\255\377\200\200\261\377\201\201\261\377\203\203\264\377\210" "\210\267\377\221\220\276\377\211u\242\377\216D\205\377\234K\220\377\247" "Z\233\377\262h\245\377\272v\260\377\303\203\271\377\312\217\301\377\320" "\230\306\377\323\237\313\377\325\243\315\377\325\244\316\377\324\242" "\315\377\322\235\312\377\316\227\306\377\311\216\300\377\304\203\271" "\377\275y\261\377\264l\251\377\254`\240\377\243T\227\377\231H\215\377" "\215O\211\377\254\240\312\377\275\274\347\377\274\274\347\377\202\273" "\273\346\377\4\265\265\337\377\231\225\262\377rhh\377WH.\377\206I6\15" "\377\6N9\14\377nN\7\377\244t\3\377lM\10\377nO\7\377xV\7\377\210I6\15" "\377)N<\26\377obV\377\242\237\267\377\255\254\304\377]]\30\377kk\20\377" "zz\27\377\214\214\40\377\233\233-\377\251\251=\377\267\267P\377\305\305" "f\377\321\321|\377\333\333\221\377\343\343\245\377\351\351\266\377\355" "\355\304\377\361\361\316\377\362\362\323\377\362\362\324\377\361\361" "\317\377\356\356\307\377\353\353\275\377\350\350\260\377\343\343\242" "\377\333\333\220\377\322\322}\377\310\310j\377\276\275Y\377\263\262H" "\377\246\2469\377\233\233,\377\220\220!\377\203\202\30\377tt\21\377f" "f\14\377ZZ\10\377PP\5\377LL\4\377LL\5\377LL\4\377\203MM\4\377&YY\34\377" "\243\241\215\377\246\243\226\377\246\242\223\377\245\237\221\377\243" "\235\216\377\240\232\213\377\236\227\211\377\231\222\204\377\226\215" "\177\377\222\211{\377\216\205w\377\212\202s\377\206~p\377\201{m\377i" "bW\377OG\77\377ng`\377\211\205~\377\221\215\207\377\226\223\215\377\231" "\224\216\377\236\230\221\377\241\232\223\377\243\235\226\377\241\232" "\222\377\234\226\216\377\230\222\212\377}xn\377UPG\377C<4\377KB9\377" "`WO\377gaY\377e_W\377b]U\377a[S\377`[S\377\203_[S\377*_ZR\377PJ=\377" "NH7\377OH9\377LE7\377UJ\77\377RD6\377\\PK\377XGD\377OE2\377=:\35\377" "98\32\37785\31\37782\31\377>4\40\3774,\33\377J,&\377U4,\377Y:4\377M&" "\37\3775\37\25\377'\36\30\377%\40\31\377<0+\377F:3\377bOC\377jQG\377" "JB.\377RQ@\377Z[N\377zwd\377\330\311\246\377\337\314\250\377\330\302" "\242\377\301\257\224\377\260\243\214\377\211\212|\377\241\236\215\377" "\236\227\210\377sr`\377XQ4\377J9\21\377\205I6\15\377\16K8\20\377iW5\377" "\244\224~\377\325\306\275\377\331\314\305\377\325\307\301\377\323\307" "\301\377\324\311\305\377\331\316\314\377\336\324\323\377\342\330\327" "\377\345\333\332\377\347\336\335\377\350\340\340\377\202\352\342\342" "\377\7\352\343\344\377\354\343\344\377\353\343\343\377\352\342\342\377" "\351\342\342\377\350\340\337\377\346\336\335\377\202\346\335\334\377" "\2\345\335\335\377\346\336\337\377\202\346\336\336\377\1\344\334\334" "\377\202\345\334\334\377\14\344\334\333\377\345\335\336\377\345\335\335" "\377\347\336\337\377\351\341\344\377\351\342\344\377\351\342\343\377" "\352\343\344\377\353\344\345\377\346\337\337\377\251\235\215\377\\J&" "\377\206I6\15\377\14P\77\33\377pdZ\377\233\226\255\377\261\261\334\377" "\263\263\337\377\264\264\341\377\263\263\337\377\262\262\336\377\263" "\263\337\377\245\242\303\377\177ux\377WG)\377\204I6\15\377\4dH\10\377" "jL\10\377jL\11\377M8\14\377\205I6\15\377\22eWF\377\232\226\263\377\252" "\252\327\377\254\254\331\377\252\252\327\377\253\253\330\377\252\252" "\327\377\253\253\330\377\250\250\325\377\251\251\326\377\246\246\324" "\377\242\242\320\377\241\241\317\377\240\240\316\377\235\235\313\377" "\231\231\307\377\227\227\306\377\224\224\303\377\202\220\220\277\377" "\2\214\214\274\377\212\212\273\377\202\212\212\272\377\6\207\207\267" "\377\205\205\266\377\204\204\264\377\202\202\263\377\200\200\261\377" "\201\201\262\377\204~~\257\377\1EE{\377\202DD{\377\5CCz\377DD{\377BB" "y\377FF|\377EE{\377\203FF}\377\202FF|\377\202EE{\377\203FF}\377\1EE{" "\377\202FF}\377\3FF|\377FF}\377GG~\377\203FF}\377\11JJ\200\377II\177" "\377HH~\377LL\201\377MM\201\377NN\203\377QQ\205\377SS\211\377UU\212\377" "\202YY\215\377\13Y\\\216\3770Dd\377\36A_\377,B`\377^a\222\377dd\227\377" "ff\231\377gg\231\377ii\234\377jj\235\377kk\235\377\202ll\236\377\202" "nn\241\377\202pp\242\377\2qq\244\377ss\245\377\203tt\246\377\203uu\247" "\377\2xx\252\377yy\253\377\202zz\253\377\203||\256\377\203}}\256\377" "\1\177\177\260\377\203\202\202\263\377\202\203\203\264\377\5\204\204" "\264\377\205\205\266\377\207\207\267\377\210\210\270\377\211\211\271" "\377\203\212\212\273\377\13\212\212\272\377\212\212\273\377\211\211\271" "\377\212\212\272\377\210\210\270\377\201\201\262\377\177\177\260\377" "zz\253\377ww\251\377||\256\377{{\254\377\202}}\256\377%~~\256\377~~\257" "\377\200\200\260\377\202\202\262\377\207\207\266\377\213\212\272\377" "\211\177\255\377\201G\200\377\225C\210\377\241P\224\377\253_\237\377" "\265n\252\377\277|\264\377\306\211\275\377\315\225\304\377\322\236\312" "\377\325\244\316\377\327\247\317\377\327\250\320\377\326\245\316\377" "\324\241\314\377\321\233\310\377\313\221\303\377\305\207\273\377\277" "|\264\377\267o\253\377\256c\242\377\246W\231\377\234J\217\377\222@\206" "\377\212Y\215\377\264\256\330\377\274\274\347\377\253\250\306\377\204" "|\177\377]M3\377J7\16\377\212I6\15\377\3L8\14\377O:\14\377J7\15\377\211" "I6\15\377&J7\16\377J8\17\377M:\23\377bY5\377YY\14\377ii\17\377xx\26\377" "\211\211\37\377\231\231,\377\250\250;\377\265\265N\377\303\303b\377\317" "\317y\377\332\332\217\377\342\342\242\377\350\347\263\377\354\354\301" "\377\360\360\313\377\361\361\321\377\362\361\321\377\361\361\315\377" "\357\357\306\377\354\354\273\377\347\347\255\377\342\342\237\377\331" "\332\214\377\320\321{\377\306\306h\377\274\273V\377\261\261E\377\245" "\2457\377\231\231*\377\214\214\36\377\200\177\27\377qq\20\377cc\13\377" "WW\7\377OO\5\377\203LL\4\377\1ML\4\377\202MM\4\377&QQ\17\377\230\224" "~\377\236\232\214\377\234\230\212\377\233\226\210\377\231\224\207\377" "\226\221\204\377\223\216\201\377\217\210{\377\211\203v\377\200|p\377" "\204}q\377\201zn\377{ui\377{ti\377|vj\377}vk\377yrg\377d\\Q\377nh`\377" "\205\200w\377\226\221\211\377\233\224\213\377\236\226\214\377\242\233" "\221\377\244\234\224\377\217\211\200\377e_T\377OH>\377UKB\377laV\377" "voe\377oja\377jd\\\377faY\377d_W\377b]U\377a\\T\377\204`[T\377+]XN\377" "ZPE\377RB8\377H9,\377LB5\377VK@\377XK>\377ND2\377\77<\34\377@=\40\377" "FB$\377C=&\3772&\31\377+\36\23\377:1)\377F3)\377I/\37\377N+\"\377J#!" "\377,\"\33\377)\"\33\377$#\"\377#\37\36\377\40\35\32\377%\37\32\3779" "2$\377A<.\377OM@\377feX\377ln]\377\263\254\215\377\337\317\252\377\345" "\322\254\377\341\315\253\377\322\300\245\377\267\254\233\377\265\257" "\242\377\250\251\242\377\177\214\220\377\213\230\232\377u\203\206\377" "Z\\M\377L\77\34\377\206I6\15\377\21UB\33\377\214z_\377\311\270\251\377" "\346\325\315\377\345\325\313\377\337\320\310\377\334\316\306\377\333" "\316\310\377\334\317\311\377\336\322\315\377\337\324\320\377\342\330" "\326\377\343\331\327\377\346\334\333\377\347\336\336\377\351\337\336" "\377\351\341\340\377\202\351\341\341\377\202\350\340\340\377\2\350\337" "\340\377\350\340\341\377\204\347\340\341\377\202\347\337\341\377\12\347" "\340\342\377\350\341\343\377\350\342\344\377\350\341\343\377\350\341" "\344\377\347\340\340\377\347\337\336\377\347\337\337\377\271\256\242" "\377fU4\377\212I6\15\377\4I7\16\377[L1\377\203{\200\377\247\245\307\377" "\204\263\263\337\377\3\262\261\335\377\221\214\237\377K9\22\377\202I" "6\15\377\6I6\14\377|X\7\377rR\10\377\201\\\5\377|Y\5\377eI\11\377\202" "I6\15\377\3Q\77\35\377\212\203\221\377\257\257\333\377\202\254\254\331" "\377\16\257\257\333\377\254\254\331\377\252\252\327\377\251\251\326\377" "\247\247\324\377\245\245\323\377\241\241\317\377\237\237\315\377\234" "\234\313\377\232\232\310\377\226\226\305\377\224\224\303\377\221\221" "\301\377\223\223\302\377\202\220\220\277\377\4\215\215\275\377\212\212" "\273\377\214\214\274\377\206\206\267\377\204\205\205\265\377\202\203" "\203\264\377\3\202\202\263\377~~\257\377}}\256\377\202{{\254\377\3JJ" "\200\377II\177\377KK\201\377\202JJ\200\377\2HH~\377JJ\200\377\202GG~" "\377\4HH~\377II\177\377HH~\377JJ\200\377\205II\177\377\6HH~\377II\177" "\377HH~\377FF}\377HH~\377GG~\377\202KK\201\377\4JJ\200\377LL\201\377" "KK\201\377LL\201\377\202MM\201\377\202MM\203\377\22PP\205\377QQ\206\377" "SS\210\377TU\212\377PV\204\377)Ed\377#Ih\377&Fc\377SY\205\377bb\225\377" "bb\226\377cc\227\377dd\227\377hh\233\377hh\234\377kk\236\377kk\235\377" "oo\241\377\202pp\242\377\3pp\243\377qq\244\377tt\246\377\202uu\247\377" "\2vv\250\377xx\252\377\203yy\253\377\202zz\253\377\4{{\254\377}}\256" "\377~~\257\377\177\177\260\377\203\201\201\262\377\203\202\202\263\377" "\2\205\205\265\377\206\206\267\377\202\207\207\267\377\203\211\211\271" "\377\4\212\212\273\377\214\214\274\377\216\216\276\377\220\220\277\377" "\204\220\220\300\377\202\220\220\277\377\6\221\221\301\377\217\217\276" "\377\211\211\271\377\206\206\267\377\201\201\262\377\177\177\260\377" "\202\200\200\261\377\20\206\206\266\377\207\207\266\377\205\205\265\377" "\207\207\266\377\212\205\265\377|S\205\377\216=\202\377\231H\215\377" "\245V\230\377\257e\244\377\271t\257\377\302\203\271\377\312\220\302\377" "\321\232\310\377\325\243\315\377\330\251\320\377\202\331\253\322\377" "\21\330\251\321\377\325\244\316\377\322\236\312\377\315\224\304\377\307" "\212\275\377\301\177\266\377\271r\256\377\260f\244\377\250Z\234\377\236" "M\221\377\224A\207\377\2119}\377xQp\377gTA\377N;\24\377L9\21\377J8\17" "\377\202J7\16\377\207I6\15\377\3J7\16\377O>\33\377M;\27\377\213I6\15" "\377\22J7\16\377J8\17\377L9\20\377LB\14\377VU\4\377dc\12\377uu\21\377" "\207\207\35\377\227\227)\377\245\2458\377\263\263I\377\277\277[\377\313" "\312p\377\325\325\206\377\340\340\234\377\347\347\256\377\354\354\276" "\377\360\360\311\377\202\361\361\316\377p\360\360\312\377\356\356\303" "\377\353\353\270\377\346\346\252\377\340\340\233\377\327\330\210\377" "\317\317w\377\304\304d\377\272\272R\377\256\256B\377\242\2423\377\226" "\226'\377\211\211\34\377|{\24\377nn\16\377aa\12\377VV\7\377NN\5\377L" "L\4\377LL\3\377KK\3\377KK\4\377LK\4\377LL\4\377NN\11\377\211\207n\377" "\223\217\202\377\221\215\200\377\222\216\201\377\220\213~\377\214\207" "{\377\204\200t\377\201}q\377\201{p\377|wk\377rne\377tpe\377vpe\377oj" "`\377mi_\377upf\377{vl\377\177yn\377xpg\377e]R\377h`U\377\204~s\377\235" "\226\214\377\245\237\226\377\177wj\377[RG\377cUK\377}pe\377\211\202w" "\377\202|r\377ytj\377qld\377lg_\377hc[\377e`Y\377c^W\377b]V\377a\\V\377" "`\\V\377a\\V\377`\\U\377_ZS\377[KD\377_NH\377[LE\377XOA\377JA+\377A@" "\"\377@<\36\377O>.\377VE7\377]NA\377^PE\377Z1-\377V/)\377J-'\3779*\37" "\377D8'\377[AB\377U;<\377@,(\377-+\27\37710(\3778<\77\377136\377.--\377" ",%\"\377-$\36\377.&\37\377/&\34\37748\40\377EO2\377joY\377\250\240\204" "\377\324\302\240\377\332\307\252\377\306\267\243\377\264\255\237\377" "\270\263\250\377\235\242\243\377\235\241\241\377\216\222\224\377\177" "\206\211\377\\im\377PTI\377K\77\40\377I7\16\377\205I6\15\377\22M:\22" "\377s`@\377\263\242\216\377\343\322\310\377\352\331\320\377\351\330\320" "\377\352\331\320\377\352\332\322\377\350\332\322\377\345\327\317\377" "\342\325\316\377\342\326\317\377\342\326\320\377\342\325\317\377\342" "\326\321\377\342\327\323\377\342\330\326\377\341\327\325\377\202\340" "\327\325\377\202\341\330\326\377\2\341\327\326\377\342\331\331\377\202" "\340\327\330\377\202\337\326\327\377\14\336\326\326\377\337\327\327\377" "\337\326\326\377\334\323\323\377\333\322\320\377\276\262\250\377sdF\377" "K8\20\377I7\16\377XG*\377WF'\377J7\17\377\212I6\15\377\7O>\32\377naU" "\377\224\217\245\377\253\252\323\377\243\241\303\377oc[\377L9\23\377" "\205I6\15\377\14M9\14\377N9\14\377jL\11\377eI\11\377J7\17\377ocZ\377" "\253\252\320\377\260\260\335\377\257\257\333\377\255\255\332\377\254" "\254\331\377\253\253\330\377\202\246\246\324\377\7\242\242\320\377\237" "\237\316\377\235\235\313\377\231\231\307\377\230\230\307\377\231\231" "\307\377\227\227\306\377\202\223\223\302\377\10\217\217\276\377\220\220" "\277\377\216\216\276\377\212\212\273\377\213\213\273\377\214\214\274" "\377\212\212\273\377\212\212\272\377\202\206\206\267\377\202\203\203" "\264\377\1\201\201\262\377\202\200\200\261\377\6~~\257\377{{\254\377" "yy\253\377zz\253\377LL\202\377MM\203\377\202OO\205\377\1QQ\207\377\202" "QQ\206\377\6OO\205\377PP\205\377NN\204\377PP\205\377NN\204\377PP\205" "\377\205MM\203\377\202OO\205\377\203NN\204\377\3LL\202\377QQ\206\377" "PP\205\377\203MM\203\377\2NN\203\377PP\205\377\202QQ\206\377\2RR\206" "\377QQ\206\377\202SS\207\377\14TT\210\377DOv\377*No\377*Pq\377*Oo\377" "CPu\377\\\\\220\377``\223\377bb\225\377cc\226\377ee\230\377gg\231\377" "\202hh\234\377\6jj\234\377kk\235\377nn\241\377pp\243\377tt\246\377uu" "\247\377\202vv\250\377\1xx\252\377\202zz\253\377\4{{\254\377}}\256\377" "~~\257\377\177\177\260\377\203\201\201\262\377\202\202\202\263\377\4" "\203\203\264\377\205\205\265\377\206\206\267\377\207\207\267\377\204" "\211\211\271\377\5\212\212\273\377\213\213\273\377\214\214\274\377\217" "\217\276\377\220\220\277\377\203\220\220\300\377\4\222\222\301\377\224" "\224\303\377\225\225\304\377\227\227\306\377\202\230\230\307\377-\227" "\227\306\377\226\226\305\377\227\227\306\377\226\226\305\377\230\230" "\307\377\225\225\304\377\215\215\275\377\216\216\276\377\211\211\271" "\377\210\210\270\377\213\213\272\377\217\215\274\377\177f\225\377\206" ";|\377\224B\207\377\237O\222\377\252^\236\377\264l\251\377\276|\263\377" "\306\211\275\377\316\226\305\377\324\241\314\377\330\251\321\377\333" "\256\324\377\334\260\325\377\334\257\325\377\332\254\323\377\327\247" "\317\377\323\240\314\377\317\227\306\377\311\214\277\377\302\201\267" "\377\272t\257\377\261i\246\377\250[\234\377\236M\220\377\223@\204\377" "\2074w\377x+e\377V40\377N:\24\377L9\21\377K8\20\377J8\17\377J7\16\377" "\204I6\15\377\10I6\16\377TC%\377nd`\377\215\211\244\377\237\236\312\377" "\236\234\304\377}u~\377WG+\377\211I6\15\377\22J7\16\377J8\17\377L9\20" "\377LC\12\377TS\4\377aa\7\377po\14\377\200\177\25\377\221\220\"\377\237" "\236/\377\254\254>\377\272\271R\377\307\306i\377\323\322\201\377\337" "\337\230\377\347\347\254\377\353\353\272\377\356\356\304\377\202\360" "\361\312\377\26\357\357\307\377\355\355\277\377\351\351\264\377\344\344" "\246\377\336\336\227\377\325\325\204\377\315\315r\377\302\302a\377\267" "\267O\377\254\254\77\377\237\2370\377\224\223$\377\206\205\32\377wv\21" "\377jj\14\377^^\11\377SS\6\377LL\5\377KK\4\377KK\3\377LK\2\377LL\2\377" "\202LL\3\377%LL\7\377}{`\377\207\203x\377\205\202w\377\205\201v\377\204" "\200u\377\202}r\377~yo\377xtj\377tpf\377vqf\377mi`\377gd\\\377b`X\377" "ie\\\377lg^\377jf]\377nja\377{uk\377\205\177t\377\215\206z\377\212\202" "v\377tj^\377f]Q\377nfY\377i[P\377\207zl\377\236\225\210\377\230\222\207" "\377\217\211\177\377\205\200w\377{wn\377tog\377njc\377if_\377fc\\\377" "d`Y\377\202b^X\3773a]W\377`\\V\377a\\U\377_ZR\377]SM\377^ON\377_SS\377" "YJB\377WP>\377IE+\377\77HK\377\77DF\377:87\377+#\40\377%\35\30\377(\36\26\377" "E='\377xsR\377vv\\\377xyk\377\215\204o\377\177s^\377lcR\377nfU\377YO" "F\377D<8\37732<\377,-8\377,*0\377'$#\377.-'\377;:,\377E<\"\377H8\22\377" "\206I6\15\377\6\\I$\377\231\207n\377\323\302\265\377\353\331\321\377" "\353\332\322\377\352\333\323\377\202\351\333\323\377\37\352\336\326\377" "\353\335\325\377\353\336\325\377\354\336\325\377\353\336\325\377\353" "\335\325\377\352\334\324\377\351\335\324\377\350\333\324\377\346\332" "\323\377\345\330\321\377\345\330\322\377\345\330\321\377\343\327\321" "\377\342\327\320\377\344\331\322\377\344\331\321\377\345\333\323\377" "\345\333\324\377\346\333\325\377\322\306\273\377\203sW\377L9\21\377I" "6\15\377XG)\377\216\207\222\377\266\266\340\377\267\266\340\377\232\225" "\252\377nbV\377O=\30\377\212I6\15\377\3I6\16\377RA\37\377O=\30\377\212" "I6\15\377\5[L2\377\231\224\257\377\261\261\336\377\257\257\333\377\253" "\253\330\377\202\252\252\327\377\21\246\246\324\377\244\244\321\377\241" "\241\317\377\237\237\316\377\237\237\315\377\233\233\312\377\234\234" "\313\377\233\233\312\377\230\230\307\377\223\223\302\377\225\225\304" "\377\223\223\302\377\220\220\300\377\223\223\302\377\220\220\300\377" "\217\217\276\377\214\214\274\377\202\212\212\272\377\1\207\207\267\377" "\203\205\205\265\377\6\201\201\262\377\200\200\261\377\177\177\260\377" "~~\257\377}}\256\377{{\254\377\202yy\253\377\1vv\250\377\204PP\205\377" "\204QQ\207\377\3RR\210\377QQ\206\377SS\210\377\203RR\210\377\7TT\211" "\377SS\210\377RR\210\377QQ\207\377RR\210\377PP\205\377OO\205\377\202" "QQ\207\377\1QQ\206\377\202TT\211\377\2QQ\207\377QQ\206\377\202RR\207" "\377\2SS\210\377RR\210\377\203TT\211\377\202UU\212\377\30WY\213\377<" "Qq\3770Wx\377/Xy\3770Wx\377:Qq\377X[\214\377]]\220\377^^\221\377^^\222" "\377bb\225\377cc\226\377gg\231\377ff\231\377ii\233\377jj\234\377mm\237" "\377nn\241\377pp\242\377pp\243\377ss\245\377uu\247\377xx\252\377zz\253" "\377\202||\256\377\1}}\256\377\202\177\177\260\377\2\202\202\263\377" "\203\203\264\377\202\205\205\265\377\203\206\206\267\377\5\207\207\267" "\377\211\211\271\377\212\212\272\377\213\213\273\377\214\214\274\377" "\204\216\216\276\377\202\220\220\300\377\1\221\221\301\377\204\225\225" "\304\377\2\226\226\305\377\230\230\307\377\202\233\233\312\377\1\234" "\234\313\377\202\235\235\313\377*\234\234\313\377\237\237\315\377\236" "\236\314\377\236\236\313\377\236\236\314\377\234\234\311\377\225\225" "\302\377\220\220\276\377\206y\247\377\177>z\377\217<\203\377\232I\215" "\377\244V\230\377\257e\244\377\272t\257\377\303\203\270\377\313\221\302" "\377\322\235\312\377\327\250\320\377\333\256\324\377\335\262\327\377" "\336\263\327\377\335\262\327\377\333\256\324\377\330\251\321\377\324" "\242\315\377\317\230\307\377\311\215\300\377\302\201\270\377\272u\255" "\377\260g\242\377\246Y\226\377\235L\214\377\223@\203\377\2115y\377\177" "+n\377i&U\377Q5$\377M:\22\377K8\20\377J8\17\377J7\16\377\202I6\15\377" "\6O=\30\377rf\\\377\227\222\246\377\250\247\320\377\246\246\324\377\245" "\245\323\377\202\246\246\324\377\5\251\251\326\377\250\247\320\377\207" "\200\214\377[K1\377J7\17\377\206I6\15\377\202J7\16\377#L9\20\377KC\11" "\377RQ\3\377]]\6\377lk\13\377{z\22\377\215\214\34\377\233\232)\377\251" "\250:\377\270\267O\377\306\306f\377\322\322|\377\334\334\222\377\344" "\344\244\377\351\351\263\377\354\354\276\377\356\356\304\377\356\356" "\305\377\355\355\302\377\353\353\272\377\347\347\257\377\342\342\242" "\377\335\335\222\377\324\324\200\377\312\312n\377\277\300\\\377\265\265" "L\377\252\252<\377\235\234-\377\220\217!\377\202\202\30\377ss\20\377" "ff\13\377ZZ\7\377PO\5\377\202LK\3\377\203KJ\2\377)KK\2\377KK\3\377KK" "\5\377spV\377}yn\377|xm\377zvl\377xtj\377wsi\377uqg\377qmc\377cb[\377" "jg_\377he\\\377b`X\377ZZS\377WWR\377YYS\377ie\\\377oja\377nkb\377trh" "\377|xo\377\200|r\377\215\206|\377\236\226\210\377\221\206y\377\246\235" "\220\377\252\242\225\377\246\237\221\377\235\226\213\377\222\215\203" "\377\210\203{\377~zr\377uqi\377ple\377lhb\377hd^\377eb\\\377c`Y\377b" "^X\377\203a]V\377\202a\\U\377\202`[U\377/`XT\377[RF\377YOE\377XOF\377" "LC4\377S@>\377_OQ\377_[X\377a^Z\377_XR\377b^Y\377`ZT\377MG3\37788\27" "\37701\25\377L>\35\377L>\40\377NF,\377SO5\377E@+\3775:1\3778<8\377<>" "=\377;::\3773-+\377+\40\36\377)\40\32\377+%\30\377,6\33\3772.!\377&\35" "\24\377$\34\23\377%\35\25\377)\40\31\37722-\377FIJ\377/%\"\377*\"\36" "\377/+*\377.&%\377)!\40\377%!\40\377&$$\377)*&\3770(\27\377@1\17\377" "H6\15\377\205I6\15\377\10P=\26\377}kL\377\277\256\234\377\346\326\316" "\377\352\334\323\377\354\336\326\377\353\336\325\377\352\334\325\377" "\202\353\336\326\377\1\354\335\325\377\202\354\336\326\377\16\352\334" "\325\377\353\334\325\377\353\335\326\377\351\334\326\377\351\333\325" "\377\351\333\324\377\353\334\326\377\353\336\327\377\357\341\332\377" "\357\341\331\377\357\342\333\377\344\327\315\377\233\212r\377TB\33\377" "\202I6\15\377\2gZH\377\261\257\325\377\204\272\272\346\377\5\271\270" "\343\377\253\250\312\377\204{\177\377ZJ.\377J7\17\377\222I6\15\377\13" "K9\22\377|su\377\253\253\324\377\254\254\331\377\253\253\330\377\250" "\250\325\377\247\247\324\377\246\246\324\377\247\247\324\377\241\241" "\317\377\237\237\315\377\202\237\237\316\377\2\234\234\313\377\230\230" "\307\377\202\233\233\312\377\1\230\230\307\377\202\225\225\304\377\14" "\223\223\302\377\221\221\301\377\220\220\277\377\216\216\276\377\214" "\214\274\377\212\212\273\377\212\212\272\377\211\211\271\377\206\206" "\267\377\205\205\265\377\203\203\264\377\202\202\263\377\202\200\200" "\261\377\4\177\177\260\377||\256\377zz\253\377uu\250\377\202tt\246\377" "\1rr\244\377\202UU\212\377\207VV\213\377\1UU\212\377\204WW\214\377\6" "XX\215\377YY\216\377XX\215\377WW\214\377XX\215\377WW\214\377\202YY\216" "\377\202XX\215\377\202WW\214\377\202VV\213\377\3WW\213\377XX\214\377" "XX\215\377\202YY\215\377\16XX\214\377ZZ\216\377[[\217\377\\\\\220\377" "V[\207\377:Yx\3777_\200\3777`\200\3776_\200\3779Zz\377T[\205\377^^\221" "\377__\221\377\\\\\220\377\202^^\222\377\202``\223\377\3cc\227\377ee" "\230\377hh\233\377\202kk\236\377\11nn\241\377pp\243\377qq\244\377uu\247" "\377uu\250\377vv\250\377{{\254\377}}\256\377\200\200\261\377\202\202" "\202\263\377\202\205\205\265\377\5\206\206\267\377\207\207\267\377\212" "\212\272\377\212\212\273\377\214\214\274\377\203\216\216\276\377\5\217" "\217\276\377\220\220\277\377\220\220\300\377\223\223\302\377\224\224" "\303\377\203\225\225\304\377\202\226\226\305\377\1\230\230\307\377\203" "\233\233\312\377\202\235\235\313\377\4\237\237\315\377\241\241\317\377" "\243\243\321\377\244\244\322\377\202\245\245\323\377\202\246\246\324" "\377%\245\245\322\377\246\246\322\377\240\231\306\377~M\202\377\2139" "\177\377\225C\210\377\240P\224\377\253_\237\377\265m\252\377\277}\265" "\377\310\213\276\377\320\231\307\377\326\245\317\377\333\255\324\377" "\336\263\327\377\337\265\331\377\337\266\331\377\336\264\330\377\334" "\261\326\377\331\252\321\377\324\242\315\377\320\230\305\377\307\214" "\274\377\300\177\262\377\267r\252\377\260e\240\377\247Y\227\377\235L" "\215\377\223A\203\377\2126y\377\200+o\377u#d\377[#D\377O7\33\377L9\21" "\377J8\17\377J7\16\377\202I6\15\377\2aR;\377\250\245\303\377\202\272" "\272\346\377\2\270\270\344\377\262\262\336\377\203\256\256\332\377\202" "\257\257\333\377\4\260\260\332\377\223\215\235\377aT>\377J7\17\377\205" "I6\15\377&J7\16\377L9\17\377KC\11\377PO\3\377[Z\5\377hg\11\377ww\20\377" "\211\210\33\377\231\231(\377\250\2509\377\266\266K\377\301\301_\377\315" "\315t\377\330\330\211\377\341\341\233\377\346\346\253\377\352\352\265" "\377\354\354\274\377\355\355\276\377\353\353\274\377\351\351\265\377" "\345\345\252\377\341\341\235\377\332\332\215\377\321\321{\377\307\307" "i\377\274\274X\377\262\262H\377\246\2468\377\232\232+\377\215\215\37" "\377~~\26\377oo\17\377cc\11\377WW\6\377NN\3\377JJ\3\377KJ\2\377\205K" "K\2\377+KJ\5\377khO\377spf\377roe\377qmc\377pkb\377nj`\377mi`\377lh^" "\377gc[\377a^W\377\\ZR\377YWP\377VUP\377RSN\377RSM\377UVP\377]\\V\377" "fd[\377cd]\377ooh\377\217\211~\377\230\221\205\377\232\224\210\377\252" "\243\225\377\252\242\225\377\230\222\206\377\242\234\217\377\236\230" "\215\377\222\215\202\377\213\206\177\377\200{s\377uph\377hd]\377caZ\377" "gc]\377fc\\\377d`Z\377c_Y\377b^X\377b^W\377a]U\377a\\U\377\202`[T\377" "2`[U\377_ZT\377_YR\377_SN\377_UU\377ZKN\377^NR\377]KM\377VH>\377UK8\377" "WU=\377CG#\377AE!\377AE\37\377>@\32\377:=\34\377>@\35\377WY>\377edN\377" "_]I\377EK9\377X`E\377V];\377CK2\377JNB\377ECA\377854\3772-+\3774.(\377" "(\40\30\377(\"\33\377:4,\37762,\37742,\3773/*\377:<6\377@BC\377!\30\26" "\377\32\15\6\377\33\21\15\377%\33\32\377\"\32\31\377!\31\31\377\37\30" "\30\377\34\27\27\377\33\25\26\377\30\23\25\377#\32\23\3777(\14\377G4" "\15\377\205I6\15\377\5J7\16\377eR/\377\243\222{\377\333\313\277\377\353" "\335\325\377\203\352\335\325\377\2\351\334\324\377\352\335\325\377\202" "\354\336\326\377\13\352\335\325\377\352\334\326\377\352\334\325\377\351" "\335\326\377\352\335\326\377\353\335\326\377\354\336\327\377\356\337" "\330\377\352\333\322\377\257\236\211\377]K&\377\204I6\15\377\5M:\24\377" "k^P\377\230\222\245\377\265\264\335\377\270\270\344\377\202\267\267\343" "\377\6\265\265\341\377\263\263\337\377\256\256\331\377\224\216\244\377" "k^R\377N<\27\377\217I6\15\377\11cUB\377\235\232\273\377\253\253\330\377" "\246\246\324\377\250\250\325\377\251\251\326\377\250\250\325\377\244" "\244\322\377\242\242\320\377\203\241\241\317\377\24\240\240\316\377\237" "\237\316\377\233\233\312\377\231\231\307\377\230\230\307\377\225\225" "\304\377\226\226\305\377\225\225\304\377\221\221\301\377\220\220\277" "\377\217\217\276\377\216\216\276\377\212\212\273\377\212\212\272\377" "\211\211\271\377\206\206\267\377\207\207\267\377\203\203\264\377\202" "\202\263\377}}\256\377\202{{\254\377\10zz\253\377xx\252\377ww\251\377" "tt\246\377qq\244\377pp\243\377qq\244\377nn\241\377\202VV\213\377\204" "WW\214\377\1XX\215\377\202YY\216\377\1ZZ\216\377\204[[\217\377\2ZZ\216" "\377[[\217\377\202ZZ\216\377\2[[\220\377\\\\\221\377\202__\223\377\1" "``\224\377\202]]\221\377\4__\223\377]]\221\377^^\221\377__\222\377\202" "^^\222\377\21__\222\377^^\222\377^^\221\377aa\224\377``\224\377bc\225" "\377Q]\201\377>c\205\377>g\207\377\77g\210\377>g\207\377>e\205\377M]" "\177\377bd\225\377bb\224\377aa\224\377cc\226\377\202aa\224\377\1``\223" "\377\202``\224\377\20cc\226\377ee\230\377dd\230\377ii\234\377ll\237\377" "mm\240\377rr\244\377ss\245\377uu\250\377xx\252\377{{\254\377||\256\377" "~~\257\377\200\200\261\377\203\203\264\377\207\207\267\377\202\212\212" "\272\377\1\212\212\273\377\202\214\214\274\377\4\217\217\276\377\220" "\220\277\377\221\221\301\377\223\223\302\377\202\224\224\303\377\203" "\225\225\304\377\1\230\230\307\377\202\233\233\312\377\204\235\235\313" "\377\5\240\240\316\377\241\241\317\377\242\242\320\377\244\244\322\377" "\245\245\323\377\202\246\246\324\377)\250\250\325\377\254\254\330\377" "\256\256\333\377\257\257\333\377\260\260\333\377\256\254\330\377\210" "i\227\377\2067{\377\222\77\205\377\234J\220\377\247Y\233\377\261h\245" "\377\273w\261\377\305\206\272\377\315\224\304\377\324\241\314\377\332" "\254\323\377\336\263\327\377\340\267\332\377\340\271\332\377\341\271" "\332\377\337\266\331\377\334\261\325\377\330\251\317\377\322\240\311" "\377\316\226\302\377\305\212\272\377\277~\262\377\267r\251\377\257e\240" "\377\246Y\226\377\235L\214\377\223A\203\377\2126y\377\200+o\377v#f\377" "i\33Y\377P%2\377M8\24\377J8\17\377J7\16\377\203I6\15\377\7M;\26\377q" "e[\377\244\241\275\377\271\271\344\377\272\272\346\377\271\271\345\377" "\270\270\344\377\204\266\266\342\377\5\270\270\344\377\270\267\342\377" "\234\227\254\377h[I\377K9\21\377\203I6\15\377$J7\16\377K8\17\377KA\11" "\377ML\2\377XW\6\377fe\12\377uu\20\377\206\206\32\377\226\225&\377\243" "\2433\377\261\261D\377\275\274V\377\310\310j\377\323\323}\377\334\334" "\220\377\343\343\240\377\347\347\253\377\351\351\262\377\351\351\265" "\377\350\350\264\377\347\347\255\377\343\343\244\377\336\336\227\377" "\326\326\207\377\316\316v\377\304\304d\377\271\271S\377\256\256C\377" "\242\2424\377\227\227'\377\212\212\35\377{z\23\377lk\15\377`_\10\377" "TT\5\377LL\3\377\202JJ\2\377\1KJ\2\377\204JJ\2\377\2II\4\377a^F\377\202" "kh`\377\4kh_\377jg_\377he]\377gcZ\377\202eaX\377\6d_V\377^ZQ\377RQD\377" "MMA\377SRJ\377SSM\377\202UTN\377\31ZZT\377bc]\377jke\377}{q\377\207\205" "z\377\203\203y\377\213\212\177\377\241\232\214\377\231\222\206\377\211" "\207}\377\217\212\200\377\215\207{\377\202~u\377kke\377qmf\377sog\377" "he_\377\\ZT\377ZYT\377d`Z\377d`Y\377c^X\377a\\V\377`\\T\377`[S\377\202" "_ZQ\377\3_ZR\377_ZS\377^ZR\377\202^YR\377/`[V\377`\\T\377`[U\377_YR\377" "WPH\377MJ:\377XWG\377><*\377EF,\377RU5\377HM&\377PS.\377_^=\377egA\377" "cdF\377rp]\377fhO\377\211\204s\377e^L\377\77:*\377;2'\377-'\37\37753" ".\377;:5\377\77;6\3774.)\377<;7\377331\377//.\377./,\377--,\377***\377" "(\"\37\377\35\20\12\377\26\12\5\377\32\14\7\377\30\14\10\377\26\13\12" "\377\33\20\16\377\24\10\7\377\21\7\10\377\22\11\11\377\17\10\11\377\17" "\7\7\377\25\15\7\377+\35\11\377A/\14\377\206I6\15\377\14TB\33\377\207" "vZ\377\310\272\252\377\347\332\321\377\352\335\324\377\351\335\324\377" "\351\334\323\377\351\334\324\377\351\333\324\377\351\333\323\377\351" "\334\324\377\351\333\324\377\202\353\336\327\377\5\351\335\327\377\353" "\335\325\377\276\257\235\377jX5\377J7\16\377\207I6\15\377\14J7\17\377" "YI,\377\200wz\377\247\245\307\377\262\261\335\377\262\262\336\377\261" "\261\336\377\260\260\335\377\264\264\340\377\262\262\335\377\242\240" "\303\377tib\377\214I6\15\377\5TC$\377\204}\211\377\251\251\325\377\252" "\252\327\377\253\253\330\377\203\247\247\324\377\3\246\246\324\377\247" "\247\324\377\244\244\322\377\202\242\242\320\377\2\237\237\316\377\235" "\235\313\377\202\232\232\311\377\1\231\231\307\377\203\225\225\304\377" "\1\223\223\302\377\202\217\217\276\377\4\214\214\274\377\213\213\273" "\377\210\210\270\377\205\205\265\377\202\202\202\263\377\1\200\200\261" "\377\202}}\256\377\3{{\255\377yy\253\377ww\251\377\202ss\245\377\7tt" "\246\377rr\244\377pp\242\377oo\241\377pp\242\377jj\235\377WW\214\377" "\203ZZ\216\377\1[[\217\377\204\\\\\221\377\203]]\221\377\202^^\222\377" "\1``\224\377\202aa\225\377\206bb\226\377\2aa\224\377aa\225\377\202cc" "\227\377\14ff\230\377ee\230\377dd\230\377ee\230\377dd\227\377dd\230\377" "dd\227\377ff\231\377ff\230\377eg\227\377Lc\202\377El\214\377\203Go\217" "\377\7Em\215\377Jc\203\377ei\226\377ii\233\377hh\232\377gg\232\377ee" "\227\377\202cc\227\377\27ee\230\377cc\227\377dd\227\377ff\230\377dd\227" "\377ff\231\377gg\233\377hh\233\377kk\236\377mm\240\377oo\241\377qq\244" "\377uu\247\377uu\250\377zz\253\377||\256\377~~\257\377\177\177\260\377" "\202\202\263\377\205\205\265\377\212\212\272\377\214\214\274\377\217" "\217\276\377\202\220\220\300\377\6\223\223\302\377\224\224\303\377\225" "\225\304\377\226\226\305\377\231\231\307\377\232\232\311\377\204\233" "\233\312\377\3\237\237\316\377\240\240\316\377\241\241\317\377\203\243" "\243\321\377\5\244\244\322\377\245\245\323\377\250\250\325\377\252\252" "\327\377\254\254\331\377\202\257\257\332\377\202\260\260\333\377$\263" "\262\336\377\234\213\266\377\201;z\377\216;\201\377\230F\213\377\243" "T\227\377\255c\242\377\270r\255\377\301\201\267\377\312\220\302\377\322" "\236\312\377\330\251\321\377\335\262\327\377\340\270\332\377\341\274" "\333\377\342\275\333\377\341\272\330\377\336\266\326\377\333\260\323" "\377\327\251\316\377\322\240\310\377\315\225\301\377\305\211\271\377" "\277}\261\377\266p\250\377\256d\237\377\245W\225\377\234J\213\377\222" "@\202\377\2115x\377\200+n\377u#e\377k\33Z\377[\27J\377L*$\377L8\21\377" "\202J7\16\377\204I6\15\377\4L9\22\377m_Q\377\240\233\263\377\271\271" "\344\377\210\272\272\346\377\2\265\265\335\377pdY\377\203I6\15\377%J" "7\16\377O>\26\377`W%\377MM\5\377VV\7\377bb\13\377pp\20\377\201\201\30" "\377\221\221\"\377\236\236/\377\254\254>\377\267\267N\377\303\303b\377" "\316\316t\377\327\326\205\377\336\336\225\377\343\343\241\377\345\345" "\250\377\346\346\253\377\345\345\252\377\343\343\245\377\340\340\234" "\377\333\332\217\377\323\323\200\377\313\313p\377\301\301_\377\266\266" "N\377\253\253>\377\237\2370\377\224\224$\377\206\206\32\377ww\22\377" "hh\14\377[[\7\377QQ\5\377KJ\4\377JJ\2\377\202JJ\1\377\204JJ\2\377\4I" "I\5\377ZU@\377ZWM\377a^W\377\202b_X\377(c`X\377a^V\377`\\U\377a\\T\377" "`[S\377a\\T\377[WO\377RPE\377JJ<\377FH:\377RRI\377[ZR\377XXR\377\\\\" "T\377cd]\377lmg\377wwo\377z|u\377\200\201x\377\210\207{\377\225\217\201" "\377\205\203y\377||s\377{yp\377qpi\377cea\377jic\377wsj\377rof\377nj" "c\377d`[\377VUP\377[YS\377d`Y\377c_X\377a]U\377`ZS\377_YQ\377^XP\377" "]XP\377\202[VO\377\203\\WP\377)\\VP\377\\WP\377[VP\377WTO\377WTP\377" "ZWS\377HE;\377GE,\377OV0\377KT,\377Z`=\377qoR\377\\_7\377yya\377\213" "\211}\377\225\223\202\377\205\177u\377R@2\377UA-\3778/&\3773,'\3770+" "$\3773/*\377;82\377972\377984\37711/\377()*\377**(\377,+)\377&#\"\377" "\36\32\31\377\36\31\26\377!\30\22\377%#\37\377\36\"*\377\32\33\31\377" "\32\22\17\377\11\1\0\377\4\0\0\377\5\0\0\377\202\4\0\0\377\6\3\0\0\377" "\2\0\1\377\6\3\1\377\32\22\4\3776(\11\377H5\15\377\205I6\15\377\17K8" "\17\377m\\:\377\254\233\207\377\340\321\307\377\351\334\323\377\350\332" "\322\377\350\333\323\377\347\332\323\377\350\333\323\377\351\334\324" "\377\354\336\326\377\351\335\325\377\311\273\257\377yhI\377K8\17\377" "\214I6\15\377\11N;\26\377k_R\377\226\221\247\377\257\257\331\377\257" "\257\334\377\262\262\336\377\260\260\334\377\225\217\245\377]M4\377\212" "I6\15\377\5I6\16\377pe^\377\244\243\311\377\254\254\331\377\253\253\330" "\377\202\252\252\327\377\12\256\256\332\377\252\252\327\377\247\247\324" "\377\244\244\322\377\243\243\321\377\241\241\317\377\240\240\316\377" "\235\235\313\377\233\233\312\377\232\232\311\377\202\230\230\307\377" "\1\225\225\304\377\202\224\224\303\377\23\221\221\301\377\214\214\274" "\377\215\215\275\377\212\212\273\377\206\206\267\377\207\207\267\377" "\203\203\264\377\201\201\262\377\202\202\263\377\177\177\260\377{{\255" "\377{{\254\377zz\253\377xx\252\377zz\253\377yy\253\377uu\250\377rr\244" "\377ss\245\377\202rr\244\377\202oo\241\377\3ll\237\377WW\214\377ZZ\216" "\377\202[[\217\377\1\\\\\221\377\202]]\221\377\203__\223\377\1``\224" "\377\203aa\225\377\1bb\226\377\202cc\227\377\202dd\230\377\2ee\230\377" "ff\231\377\202ff\232\377\5gg\233\377hh\233\377gg\233\377jj\234\377ii" "\233\377\202hh\234\377\202jj\234\377\2ll\236\377mm\237\377\202oo\240" "\377\16dj\221\377Mn\216\377Mt\223\377Ou\226\377Pv\226\377Ou\226\377M" "t\224\377Lo\217\377aj\216\377pp\241\377oo\237\377oo\240\377kk\236\377" "ll\235\377\202jj\235\377\4gg\231\377ii\234\377hh\233\377ii\233\377\202" "ii\234\377\203kk\236\377\202mm\240\377\3pp\242\377qq\244\377uu\250\377" "\202zz\253\377\22||\256\377\177\177\260\377\203\203\264\377\205\205\265" "\377\206\206\267\377\212\212\272\377\217\217\276\377\220\220\277\377" "\224\224\303\377\225\225\304\377\226\226\305\377\231\231\307\377\232" "\232\311\377\233\233\312\377\235\235\313\377\237\237\316\377\240\240" "\316\377\242\242\320\377\202\243\243\321\377\1\244\244\322\377\202\245" "\245\323\377\202\252\252\327\377\203\256\256\332\377\23\260\260\333\377" "\260\260\334\377\263\263\337\377\266\266\341\377\267\267\341\377\256" "\246\321\377\200I\200\377\2127}\377\224A\207\377\237N\222\377\252\\\236" "\377\264l\251\377\277|\263\377\310\213\276\377\320\232\310\377\327\246" "\317\377\334\261\326\377\340\270\331\377\342\275\333\377\202\343\277" "\333\377\26\342\274\332\377\336\266\326\377\333\260\323\377\327\250\316" "\377\322\236\310\377\314\223\300\377\304\207\267\377\275z\257\377\265" "m\246\377\254b\235\377\244U\223\377\232I\212\377\221>\201\377\2103w\377" "~)m\377t\"d\377j\33Y\377^\24P\377L\25:\377L1\32\377J7\17\377J7\16\377" "\206I6\15\377\4K9\21\377hYG\377\233\226\253\377\270\267\342\377\203\272" "\272\346\377,\270\270\343\377\246\242\277\377}sr\377WG(\377J7\17\377" "I6\15\377K9\20\377[K%\377{nN\377\225\221y\377\223\213e\377NN\11\377S" "S\6\377^^\12\377jk\16\377{{\25\377\213\213\36\377\230\230)\377\245\245" "6\377\262\262F\377\275\275V\377\307\307i\377\321\321y\377\330\330\207" "\377\335\335\224\377\341\341\234\377\342\342\240\377\342\342\237\377" "\340\340\233\377\334\334\222\377\326\326\206\377\320\320x\377\307\307" "i\377\275\275X\377\263\262H\377\247\2479\377\233\233,\377\217\217!\377" "\201\201\30\377rr\21\377dd\13\377YY\7\377PP\4\377JJ\2\377\205JJ\1\377" "\202JJ\2\3771II\11\377SM:\377QK\77\377PLB\377URJ\377YVP\377WSK\377TP" "F\377SRC\377YVK\377UQH\377]XO\377_ZR\377a[S\377^YP\377PNC\377BE4\377" "JK>\377[YP\377a_V\377dbX\377ff\\\377mmb\377tsg\377\204\200s\377\207\202" "s\377}{l\377wxm\377sul\377nqi\377hkd\377ad`\377\\_[\377\\]Y\377YZU\377" "YYS\377he\\\377SSM\377OPL\377WVP\377a]V\377b]U\377a\\T\377`[S\377^YR" "\377]XQ\377\\WP\377[VO\377YTN\377\202XSL\377'XSM\377URL\377POL\377OP" "N\377PQP\377SSS\377WXW\377LLF\377AB)\377HO6\377]cX\377_eS\377jlR\377" "MJ=\377RQ8\377oqD\377pnG\377UL9\377G>2\377875\377452\377653\377542\377" "432\377530\37753.\37752.\3771-)\377,)&\377*&$\377\31\17\12\377\26\11" "\4\377\22\5\3\377\15\5\2\377\15\10\6\377\17\16\17\377\10\6\5\377\2\1" "\1\377\1\0\0\377\210\0\0\0\377\4\1\1\0\377&\40\23\377\77""0\23\377F3" "\15\377\205I6\15\377\21I6\16\377YG!\377\221\200f\377\317\300\263\377" "\347\331\321\377\351\333\324\377\352\334\324\377\352\335\325\377\327" "\311\275\377\211x\\\377O<\24\377I6\15\377SA\40\377\177uu\377\203z~\377" "^O5\377K8\20\377\212I6\15\377\6J7\17\377ZJ/\377\201y~\377\223\215\241" "\377l_T\377K8\21\377\212I6\15\377\5YJ/\377\225\221\250\377\256\256\332" "\377\254\254\331\377\252\252\327\377\202\254\254\331\377\2\250\250\325" "\377\246\246\324\377\202\244\244\322\377\202\242\242\320\377\202\235" "\235\313\377\1\232\232\311\377\202\233\233\312\377\20\225\225\304\377" "\223\223\302\377\222\222\301\377\217\217\276\377\216\216\276\377\215" "\215\275\377\211\211\271\377\212\212\273\377\205\205\266\377\203\203" "\264\377\204\204\264\377\200\200\261\377\177\177\260\377~~\257\377{{" "\254\377zz\253\377\202yy\253\377\4xx\252\377vv\250\377uu\247\377ss\245" "\377\202rr\244\377\2pp\242\377oo\241\377\202nn\241\377\3jj\235\377[[" "\217\377\\\\\221\377\205]]\221\377\1__\223\377\202``\224\377\3aa\225" "\377bb\226\377cc\227\377\203dd\230\377\204ff\232\377\203hh\233\377\10" "ii\234\377jj\235\377kk\236\377oo\241\377nn\240\377oo\242\377pp\242\377" "qq\242\377\202rr\243\377\7ss\244\377tt\245\377su\245\377]m\216\377Rw" "\227\377U{\232\377W}\234\377\202X~\235\377\16V|\233\377Rx\227\377Yn\214" "\377tv\243\377uu\246\377uu\245\377ss\244\377rr\244\377qq\243\377qq\242" "\377nn\240\377oo\242\377qq\243\377oo\241\377\202nn\241\377\4mm\240\377" "nn\241\377oo\241\377mm\240\377\202nn\241\377\2pp\242\377ss\245\377\202" "rr\244\377\16uu\247\377zz\253\377{{\255\377||\256\377\200\200\261\377" "\204\204\264\377\211\211\271\377\212\212\272\377\214\214\274\377\217" "\217\276\377\223\223\302\377\230\230\307\377\231\231\307\377\233\233" "\312\377\202\241\241\317\377\4\242\242\320\377\244\244\322\377\245\245" "\323\377\246\246\324\377\202\252\252\327\377\203\256\256\332\377\202" "\257\257\334\377\3\264\264\340\377\265\265\340\377\267\267\342\377\202" "\270\270\343\377'\267\264\337\377\210d\223\377\2055y\377\220=\203\377" "\232I\216\377\246W\231\377\260f\244\377\273u\260\377\304\205\272\377" "\316\225\305\377\325\242\315\377\332\255\322\377\336\266\326\377\342" "\275\332\377\344\301\334\377\344\302\335\377\344\301\334\377\342\276" "\332\377\337\267\326\377\333\260\323\377\326\247\315\377\321\235\307" "\377\312\220\277\377\303\204\266\377\273w\255\377\263j\244\377\252_\234" "\377\242S\224\377\231H\213\377\220=\200\377\2061u\377}(l\377r!b\377h" "\31X\377]\24O\377R\20D\377F\32+\377L5\23\377J7\16\377\210I6\15\377\7" "J7\17\377cU\77\377\224\215\234\377\241\235\267\377\213\203\213\377cT" ">\377K9\21\377\202I6\15\377\26VG\"\377vkL\377\227\220u\377\227\217u\377" "\225\212q\377\236\230~\377\234\224u\377WU\25\377OO\5\377YY\10\377ee\14" "\377ss\21\377\203\203\31\377\221\222#\377\236\236/\377\253\253<\377\266" "\265L\377\300\300[\377\311\311k\377\320\320y\377\326\326\204\377\332" "\332\215\377\202\334\334\222\377\21\332\332\216\377\327\327\207\377\321" "\321|\377\312\312o\377\302\301`\377\271\271Q\377\256\256C\377\243\243" "4\377\227\227(\377\213\213\36\377}}\24\377mm\17\377``\11\377VV\7\377" "ML\4\377JJ\3\377JJ\2\377\205JJ\1\377ZJJ\2\377JI\21\377NI;\377KD8\377" "KE9\377LG=\377LH\77\377QNF\377HF=\377JG<\377HG7\377@A,\377II6\377RNA" "\377]YO\377TPF\377RM@\377ZUH\377<=.\377GG7\377^ZN\377kfV\377mjU\377e" "eR\377cdQ\377lkY\377ur^\377\200ye\377\177yi\377qqf\377log\377ilc\377" "cf_\377[_Z\377X[W\377SVR\377ORN\377TUO\377KNJ\377QRM\377KMI\377JLI\377" "KMH\377JKG\377NNH\377RPK\377RQK\377[WP\377]XP\377\\WP\377[VO\377YTN\377" "URM\377KLJ\377EJJ\377EKL\377HNP\377KQT\377OVX\377TZ\\\377NSF\377@H,\377" "AE5\377F>*\377IF(\377@\77'\377E:'\377LH)\377OP*\377SS5\377XS<\377DA4" "\377552\377113\377//0\377/..\377,)(\377*&$\377/*'\3771-*\3771/,\3770" ",)\377*#\40\377$\33\26\377#\33\26\377'\32\26\377&\34\27\377\37\35\35" "\377\21\13\10\377\10\3\1\377\211\0\0\0\377\6\16\15\12\3777.!\377&\31" "\15\377\34\12\2\377.!\12\377\77.\13\377\206I6\15\377\20N;\23\377veE\377" "\270\250\226\377\334\316\303\377\233\213s\377UB\33\377I6\15\377M;\25" "\377wlf\377\254\252\315\377\271\271\345\377\271\271\344\377\267\266\340" "\377\235\230\256\377peZ\377O=\30\377\226I6\15\377\3L:\24\377\201x~\377" "\252\251\321\377\202\257\257\334\377\204\254\254\331\377!\246\246\324" "\377\245\245\323\377\246\246\324\377\243\243\321\377\236\236\314\377" "\233\233\312\377\230\230\307\377\233\233\312\377\230\230\307\377\222" "\222\301\377\220\220\300\377\216\216\276\377\220\220\300\377\216\216" "\276\377\212\212\272\377\212\212\273\377\207\207\267\377\210\210\270" "\377\205\205\266\377\202\202\263\377\200\200\261\377\202\202\263\377" "~~\257\377}}\256\377\177\177\260\377{{\254\377ww\251\377yy\253\377xx" "\252\377uu\250\377ss\245\377tt\246\377rr\244\377\202pp\242\377\5nn\241" "\377mm\240\377kk\236\377ii\234\377hh\233\377\202]]\221\377\202__\223" "\377\1``\224\377\202aa\225\377\1bb\226\377\203cc\227\377\1dd\230\377" "\202ee\230\377\202ff\232\377\2gg\233\377hh\233\377\203ii\234\377\1jj" "\235\377\203kk\236\377\1mm\240\377\202oo\241\377\33pp\242\377rr\243\377" "ss\245\377vv\247\377ww\247\377xx\250\377zz\252\377sx\241\377Yv\224\377" "X~\235\377\\\202\240\377_\203\242\377a\205\243\377`\204\243\377]\202" "\241\377Y\177\236\377Xy\230\377ry\235\377\177\200\257\377\200\200\257" "\377}}\255\377{{\254\377{{\253\377zz\253\377ww\251\377yy\252\377ww\251" "\377\202vv\250\377\202uu\250\377\2ww\251\377uu\250\377\202uu\247\377" "\5uu\250\377zz\253\377yy\253\377zz\253\377xx\252\377\202zz\253\377\11" "yy\253\377zz\253\377{{\255\377}}\256\377\202\202\263\377\205\205\265" "\377\211\211\271\377\215\215\275\377\220\220\300\377\202\225\225\304" "\377\7\226\226\305\377\235\235\313\377\233\233\312\377\241\241\317\377" "\247\247\324\377\252\252\327\377\254\254\331\377\202\256\256\332\377" "\202\257\257\334\377\202\264\264\340\377\1\266\266\342\377\202\267\267" "\342\377\21\270\270\344\377\271\271\344\377\274\273\345\377\236\214\266" "\377\1777w\377\2137~\377\225C\210\377\241Q\224\377\253_\237\377\266o" "\253\377\300~\265\377\311\215\276\377\320\234\306\377\327\251\316\377" "\335\263\325\377\342\275\332\377\344\302\335\377\202\346\306\337\377" "\27\344\303\335\377\343\276\333\377\337\267\326\377\333\257\322\377\325" "\246\314\377\320\232\305\377\310\216\274\377\301\201\264\377\272u\255" "\377\261j\245\377\252^\236\377\242R\226\377\231G\215\377\220=\203\377" "\2062w\377{'k\377p\37`\377f\30V\377Z\22L\377Q\16C\377F\14""9\377G&\40" "\377K6\17\377\212I6\15\377\2I7\16\377J7\17\377\202I6\15\377,O>\26\377" "i`B\377\215\215|\377\250\260\244\377\251\254\232\377\250\243\213\377" "\237\227|\377\222\204j\377\233\217t\377\237\227|\377pk5\377MM\5\377T" "T\6\377__\12\377kk\16\377{{\25\377\212\212\35\377\226\226'\377\243\243" "3\377\256\256@\377\270\267O\377\277\277]\377\307\307i\377\316\316u\377" "\322\322}\377\324\324\201\377\325\325\203\377\323\323\200\377\320\320" "z\377\313\313p\377\304\304e\377\275\275W\377\263\263J\377\251\251<\377" "\236\236/\377\223\223%\377\206\206\32\377xx\22\377ii\14\377\\\\\10\377" "SR\5\377LL\4\377KK\3\377KK\2\377\202JJ\2\377\203JJ\1\377[II\1\377GE\32" "\377JG<\377IE;\377IE:\377JF<\377EB9\377\77;2\377\77<2\377:7+\377IE;\377" "LI>\37758\"\377=A&\377<@'\37745\"\377@<.\377IC4\377MF7\377c\\M\377b_" "J\377QS7\377UY\77\377U[7\377_cD\377cdM\377bcN\377feS\377geW\377ol]\377" "eg\\\377_aW\377XXO\377VWO\377TVO\377QUP\377NRN\377KNJ\377HKF\377SSL\377" "RRL\377IKH\377ILH\377GIG\377GIF\377CFD\377BFE\377JLI\377RRN\377UTP\377" "\\YT\377[WS\377NPN\377FKL\377FKM\377FLO\377HPS\377KSW\377NX]\377Q\\a" "\377=D<\377=D.\377<:'\377J;*\377U]+\377GV\36\37749\23\377EC&\377QA1\377" "<8(\377FJ(\377EI*\377OS9\377GC7\3777.%\377'!\36\377\26\12\7\377\20\4" "\2\377\23\7\3\377\34\17\11\377#\32\24\377+&\40\377.*&\377,(&\377+&\"" "\377),(\3770>K\377%&,\377%\35\32\377\25\11\5\377\4\2\2\377\206\0\0\0" "\377\13\13\17\16\377\30\35\33\3774.!\377(\35\16\377\33\13\2\377\26\10" "\3\377\34\22\11\377\34\13\3\377)\22\4\3779%\10\377F3\14\377\205I6\15" "\377\2J7\16\377Q>\27\377\203I6\15\377\2uib\377\264\263\333\377\204\271" "\271\345\377\6\271\271\344\377\271\270\343\377\253\251\314\377\203z~" "\377ZJ/\377J7\17\377\221I6\15\377\4J7\17\377eWF\377\244\242\305\377\257" "\257\334\377\202\256\256\332\377\202\254\254\331\377\4\252\252\327\377" "\250\250\325\377\246\246\324\377\242\242\320\377\202\237\237\315\377" "\2\232\232\311\377\230\230\307\377\202\225\225\304\377\10\223\223\302" "\377\216\216\276\377\214\214\274\377\216\216\276\377\212\212\273\377" "\211\211\271\377\205\205\265\377\204\204\264\377\202\205\205\265\377" "\202\200\200\261\377\3\177\177\260\377\200\200\261\377~~\257\377\202" "||\256\377\2{{\254\377xx\252\377\202ww\251\377\5uu\247\377tt\246\377" "rr\244\377pp\243\377oo\241\377\202nn\241\377\6ll\237\377kk\236\377jj" "\235\377ii\234\377gg\233\377__\223\377\203aa\225\377\204bb\226\377\202" "dd\230\377\4ee\230\377ff\232\377gg\233\377hh\233\377\203ii\234\377\202" "kk\236\377\203ll\237\377\202nn\241\377\4pp\242\377qq\242\377rr\244\377" "tt\246\377\202vv\247\377\27ww\250\377xx\252\377zz\253\377{{\254\377}" "~\255\377jv\227\377[\177\235\377_\204\242\377d\210\246\377g\212\250\377" "h\213\251\377h\214\250\377e\212\247\377a\206\244\377\\\201\240\377ex" "\225\377\201\203\260\377\204\204\262\377\203\203\262\377\204\204\263" "\377\203\203\262\377\203\203\263\377\201\201\261\377\202\201\201\262" "\377\202\200\200\261\377\3\177\177\260\377~~\257\377\177\177\260\377" "\202~~\257\377\203\200\200\261\377\5~~\257\377\177\177\260\377\200\200" "\261\377\177\177\260\377~~\257\377\202\177\177\260\377\1\201\201\262" "\377\202\200\200\261\377\2\202\202\263\377\204\204\264\377\202\205\205" "\265\377<\207\207\267\377\216\216\276\377\220\220\300\377\223\223\302" "\377\225\225\304\377\235\235\313\377\237\237\316\377\235\235\313\377" "\243\243\321\377\247\247\324\377\252\252\327\377\257\257\333\377\263" "\263\337\377\264\264\340\377\266\266\342\377\267\267\343\377\270\270" "\343\377\272\272\344\377\273\273\345\377\274\274\347\377\264\256\331" "\377~I\177\377\2053y\377\221=\204\377\233J\216\377\246X\232\377\260f" "\243\377\271u\255\377\303\205\266\377\315\226\302\377\325\245\313\377" "\333\261\323\377\341\273\331\377\344\302\335\377\346\310\340\377\347" "\311\341\377\346\311\340\377\345\305\336\377\343\277\333\377\336\266" "\326\377\332\256\321\377\324\244\313\377\316\230\303\377\310\214\275" "\377\301\200\266\377\271s\256\377\261g\244\377\250[\234\377\237O\222" "\377\227D\212\377\216;\201\377\2041x\377{(n\377o\40b\377d\27U\377Y\21" "J\377O\15B\377H\13;\377@\20.\377K1\26\377\213I6\15\377,J7\17\377_Q/\377" "\202\177h\377\242\246\230\377\251\261\247\377\251\257\246\377\253\262" "\247\377\254\261\245\377\245\243\216\377\242\233\201\377\224\207k\377" "\220\202f\377\236\224z\377\213\203\\\377NN\10\377PP\5\377YY\10\377ee" "\14\377rr\21\377\201\201\30\377\216\216\40\377\232\232+\377\245\2456" "\377\256\256B\377\266\266N\377\276\276Z\377\304\304d\377\310\310k\377" "\313\313q\377\315\315s\377\313\313q\377\310\310k\377\304\303c\377\276" "\276X\377\266\266N\377\255\255A\377\244\2435\377\232\231+\377\216\215" "\37\377\200\200\27\377rr\20\377ee\13\377ZY\7\377QQ\5\377\202KK\3\377" "\202KK\2\377\1KJ\2\377\203JJ\1\377*HH\2\377D@#\377=9/\377=;3\377A@7\377" "DA7\377FA5\377JD8\377KE9\377GA6\377JH6\377MK>\377=;.\377MK<\377BB0\377" "9=\"\377=A$\37748\"\377>=*\377OK;\377IH7\377:<'\377\377B@4\377GE7\377\77" ">.\377:9'\377KH8\377WUF\377EG+\377DF(\377AA(\377;=(\3779<$\377CE#\377" "EN%\377IO(\377HJ/\377>F#\377LX(\377Ze0\377V_3\377JO7\377HH<\377HF;\377" "IG;\377LI=\377[TG\377[UG\377YRG\377^XL\377vn`\377keZ\377SSL\377RSO\377" "[XS\377UTO\377UTP\377SSN\377QQN\377[YT\377TUQ\377HNO\377GNQ\377IQT\377" "KTW\377MW[\377NY]\377R]b\377Vch\377Zek\377LLO\377'\31\25\377\35\16\5" "\377\35\15\5\377\31\13\3\377\34\16\6\377&\26\14\3778'\25\377CK\40\377" ">E\32\377;6\30\377JA'\3775$\20\377\37\17\5\377\36\16\6\377\36\17\5\377" "\36\17\6\377\30\13\4\377\30\11\3\377\22\7\2\377\20\3\2\377\21\4\2\377" "\32\16\11\377\34\22\16\377\34\27\24\377\"%\"\3772IE\377Ktr\377>bb\377" "#31\377$*)\377*./\377())\377!\"\32\377)4)\377*7.\377!7)\377\34""5&\377" "\16,\24\3779H7\377\35\12\5\377\27\14\5\377\23\13\5\377\37\16\2\377\37" "\12\1\377\33\6\1\377\33\5\1\377\32\3\0\377\30\3\0\377\37\14\3\377B0\13" "\377\212I6\15\377\6N;\26\377l`T\377\227\222\250\377\257\257\330\377\262" "\262\336\377\260\260\335\377\202\257\257\334\377\4\260\260\335\377\257" "\257\332\377\232\226\262\377N<\27\377\213I6\15\377\3L9\23\377uje\377" "\247\246\316\377\202\256\256\332\377\7\254\254\331\377\250\250\325\377" "\252\252\327\377\246\246\324\377\244\244\322\377\243\243\321\377\240" "\240\316\377\203\233\233\312\377\1\232\232\310\377\203\225\225\304\377" "\16\222\222\301\377\221\221\301\377\220\220\277\377\216\216\276\377\214" "\214\274\377\213\213\273\377\212\212\273\377\207\207\267\377\206\206" "\267\377\204\204\264\377\205\205\265\377\202\202\263\377\177\177\260" "\377~~\257\377\202||\256\377\4{{\255\377xx\252\377ww\251\377uu\250\377" "\202tt\246\377\3rr\244\377qq\244\377pp\242\377\202mm\240\377\202kk\236" "\377\7ii\234\377gg\233\377ff\232\377gg\233\377dd\230\377cc\227\377__" "\223\377\202aa\225\377\5bb\226\377dd\230\377ee\230\377ff\232\377gg\233" "\377\202hh\233\377\3ii\234\377jj\235\377kk\236\377\204nn\241\377\1pp" "\242\377\202pp\243\377\203qq\244\377\2ss\245\377tt\246\377\202vv\247" "\377\30ww\251\377zz\253\377{{\254\377||\255\377\177\177\256\377\201\201" "\260\377\201\202\260\377pz\234\377_\202\240\377e\211\246\377l\216\254" "\377p\223\257\377t\226\262\377v\227\264\377u\227\263\377s\224\261\377" "n\221\255\377h\214\251\377b\206\244\377j}\232\377\213\215\270\377\216" "\217\274\377\217\217\275\377\216\216\274\377\203\216\216\275\377\5\215" "\215\275\377\214\214\274\377\212\212\273\377\213\213\273\377\214\214" "\274\377\202\215\215\275\377\2\217\217\276\377\216\216\276\377\204\220" "\220\277\377\3\216\216\276\377\220\220\277\377\216\216\276\377\203\217" "\217\276\377\5\221\221\301\377\216\216\276\377\214\214\274\377\220\220" "\277\377\216\216\276\377\202\217\217\276\377\12\223\223\302\377\220\220" "\300\377\221\221\301\377\220\220\300\377\223\223\302\377\220\220\300" "\377\223\223\302\377\225\225\304\377\226\226\305\377\235\235\313\377" "\202\241\241\317\377\25\251\251\326\377\254\254\331\377\251\251\325\377" "\260\260\335\377\261\261\335\377\267\266\342\377\241\225\271\377q1f\377" "\201-p\377\2137z\377\226D\206\377\242S\222\377\256d\236\377\271t\254" "\377\304\206\267\377\316\227\303\377\326\247\315\377\335\263\324\377" "\343\276\333\377\346\307\337\377\350\313\342\377\202\351\316\343\377" "\31\350\313\342\377\346\306\337\377\343\277\333\377\336\264\325\377\330" "\253\317\377\322\237\310\377\313\222\300\377\303\204\266\377\274w\256" "\377\263k\247\377\254`\240\377\243T\227\377\232H\215\377\221=\203\377" "\2104{\377\177+q\377t#g\377k\36^\377_\27U\377V\23K\377N\20D\377F\15=" "\377\77\11""6\377=\14.\377I-\27\377\205I6\15\3772L:\22\377bW8\377\201" "\200k\377\227\234\217\377\243\247\236\377\243\250\237\377\246\251\240" "\377\243\246\234\377\244\247\236\377\251\256\243\377\247\254\242\377" "\245\251\237\377\245\250\237\377\246\250\235\377\244\241\217\377\240" "\230~\377\227\212o\377\214z`\377\222\204k\377\214\203^\377PO\14\377O" "O\5\377WW\7\377aa\12\377mm\17\377zz\24\377\206\206\33\377\221\220#\377" "\232\232+\377\242\2423\377\251\251<\377\260\260D\377\264\264J\377\267" "\266N\377\266\266O\377\264\264L\377\263\262J\377\260\260F\377\254\254" "@\377\245\2457\377\235\235.\377\226\225&\377\213\213\36\377\177\177\26" "\377ss\20\377fe\12\377[[\7\377SS\5\377LL\4\377KK\3\377\206JJ\2\377\5" "II\3\377KI%\377GE<\377FB:\377EA8\377\202GB8\377JGA7\377HB8\377HC8\377" "FC8\377FC4\377NL<\377][Q\377^[R\377QOB\377VQD\377daX\377\\XE\377FD,\377" "GG.\377=A%\377a^H\377wr^\377JJ+\377RV,\377SY'\377AG\35\377GL$\377FL(" "\377:C\34\377OY$\377Zf-\377RZ.\377AD-\377;;*\37798(\377_T@\377\214~f" "\377eZG\377\\TD\377lbR\377rj\\\377zrd\377xqe\377und\377pk`\377nh_\377" "lf]\377hc[\377WWR\377KQQ\377JRS\377KTW\377MVY\377NW[\377PZ^\377S^a\377" "Vbf\377V[^\377=30\377'\30\20\377*\31\21\377(\26\12\377%\21\6\377\35\14" "\3\377\26\5\1\377\22\4\0\377\22\3\0\377\26\11\2\377/\36\20\377J4\33\377" "+\32\12\377\35\15\4\377\37\16\6\377\33\12\3\377\31\11\2\377\31\11\3\377" "\31\10\2\377\17\4\1\377\7\2\0\377\202\5\1\0\377\34\13\2\0\377\14\4\3" "\377\27\22\21\377\17\13\12\377$+'\3776GC\377Dic\377Hqo\3778XX\3777NL" "\3775E=\3771H7\3778U>\377.B,\3770I8\377:ZM\377*K5\377C\\N\377-/)\377" "\32\27\16\377\27\21\10\377\33\23\7\377\35\23\7\377\34\23\7\377\27\17" "\7\377\35\20\7\3775\"\10\377G4\14\377\215I6\15\377\4J7\17\377\\M4\377" "\203{\203\377\247\246\314\377\202\257\257\334\377\3\256\256\332\377\220" "\212\236\377[K1\377\213I6\15\377\4^O9\377\224\220\250\377\252\252\327" "\377\247\247\324\377\202\250\250\325\377\7\245\245\323\377\241\241\317" "\377\244\244\322\377\241\241\317\377\240\240\316\377\237\237\316\377" "\237\237\315\377\203\233\233\312\377\1\232\232\310\377\202\225\225\304" "\377\2\223\223\302\377\220\220\300\377\202\216\216\276\377\11\212\212" "\273\377\211\211\271\377\207\207\267\377\205\205\266\377\205\205\265" "\377\202\202\263\377\201\201\262\377\200\200\261\377~~\257\377\202||" "\256\377\202zz\253\377\6xx\252\377uu\247\377tt\246\377ss\245\377rr\244" "\377pp\243\377\202nn\241\377\2mm\240\377kk\236\377\202jj\235\377\202" "hh\233\377\202ee\230\377\1dd\230\377\202cc\227\377\11]]\221\377``\224" "\377aa\224\377bb\226\377cc\227\377ee\230\377ff\231\377ee\230\377gg\233" "\377\202hh\233\377\2jj\235\377kk\236\377\202ll\237\377\3nn\241\377pp" "\242\377pp\243\377\202ss\245\377\202tt\246\377\40uu\247\377uu\250\377" "vv\250\377ww\250\377ww\251\377xx\251\377zz\253\377||\255\377~~\255\377" "\200\200\257\377\203\203\262\377\177\202\254\377d{\227\377b\207\244\377" "j\216\252\377r\223\260\377w\230\264\377{\233\267\377|\235\270\377|\234" "\267\377y\232\266\377u\226\262\377n\221\255\377g\212\250\377c\203\241" "\377~\205\247\377\223\224\300\377\225\225\302\377\223\223\301\377\223" "\223\300\377\223\223\301\377\222\222\300\377\202\223\223\302\377\1\224" "\224\302\377\202\225\225\304\377\2\226\226\305\377\227\227\306\377\202" "\230\230\307\377\203\227\227\306\377\17\231\231\307\377\232\232\311\377" "\231\231\307\377\232\232\311\377\232\232\310\377\230\230\307\377\231" "\231\307\377\232\232\310\377\225\225\304\377\224\224\303\377\232\232" "\310\377\227\227\306\377\231\231\307\377\232\232\311\377\233\233\312" "\377\202\230\230\307\377o\231\231\307\377\225\225\304\377\226\226\305" "\377\225\225\304\377\230\230\307\377\225\225\304\377\233\233\312\377" "\232\232\310\377\231\231\307\377\234\234\313\377\236\236\313\377\236" "\236\314\377\234\232\277\377\210\202\223\377k\\N\377X-9\377v%f\377\204" ".r\377\217;~\377\233I\212\377\246Y\227\377\262j\243\377\276{\260\377" "\310\216\274\377\322\236\310\377\332\255\321\377\337\271\327\377\345" "\304\336\377\350\313\342\377\352\317\344\377\353\321\345\377\352\320" "\344\377\351\314\342\377\346\306\337\377\343\276\333\377\335\263\325" "\377\327\251\316\377\321\235\307\377\310\217\275\377\301\201\264\377" "\267s\252\377\257e\240\377\246Y\230\377\240N\222\377\227E\212\377\217" ";\201\377\2051x\377{(n\377q\"e\377g\34[\377\\\25Q\377S\22H\377L\17B\377" "E\14<\377\77\13""7\377=\10""2\377B\33#\377J5\17\377I6\15\377H5\15\377" "F6\25\377rkU\377\217\223\206\377\230\236\223\377\233\241\227\377\233" "\240\226\377\237\243\230\377\241\244\232\377\237\243\231\377\240\244" "\232\377\240\243\230\377\242\244\231\377\245\250\234\377\244\247\234" "\377\242\244\233\377\244\245\232\377\247\247\234\377\244\240\216\377" "\242\231\202\377\224\207l\377\213{a\377\225\207m\377wpA\377ML\7\377Q" "Q\6\377ZZ\10\377cc\13\377nn\20\377zz\25\377\205\205\33\377\217\217\"" "\377\230\227)\377\236\236/\377\244\2445\377\250\250:\377\250\250<\377" "\251\251=\377\252\252>\377\251\251<\377\246\2458\377\237\2371\377\233" "\232+\377\225\224%\377\214\214\36\377\202\201\30\377ww\22\377kk\15\377" "__\10\377WW\6\377OO\4\377JJ\3\377\207JJ\2\377tII\17\377JG8\377JE;\377" "KF;\377MG<\377JD:\377KE;\377LF=\377FA7\377D\77""5\377E\77""5\377F@5\377" "GA4\377GD1\377HH3\377JI5\377VUB\377JJ6\377DF/\377[ZJ\377_]M\377sn_\377" "skY\377\226\220\177\377\215\210l\377KO%\377=C\37\377DN,\377mpL\377px" "R\377\\cF\377IM-\377CJ$\377\\m,\377AP\35\377,/\31\37765\"\377LF3\377" "dYF\377\230\212q\377~r]\377\210{g\377\204xc\377\201ub\377\202wd\377}" "sc\377tm`\377_^W\377RUP\377MQN\377IPO\377JST\377MVX\377Q[^\377S]a\377" "U_c\377Vbf\377Xad\377KEC\3771!\31\377+\33\22\377/\37\26\377/\36\26\377" ".\32\22\377$\22\6\377\31\7\2\377\25\4\1\377\24\2\1\377\20\3\2\377.\36" "\26\377B+\30\377\40\20\5\377\33\13\4\377\36\15\4\377\30\6\1\377\25\5" "\1\377\26\4\1\377\25\4\1\377\15\2\0\377\7\1\0\377\5\1\0\377\4\1\0\377" "\3\0\0\377\2\0\0\377\3\2\2\377\24\40\32\377\32""1#\377)N8\377.SC\377" "\30:$\3771P@\377X}t\377Fha\3778RC\377\36=%\3775SA\377)@,\377-H3\377%" "\77*\377$B-\377.O>\3770J7\3771A3\377\14\11\5\377\13\10\3\377\15\10\3" "\377\25\16\6\377.#\15\377E4\17\377I6\15\377L9\22\377nbU\377\227\221\242" "\377\206~\205\377]M4\377J7\17\377\213I6\15\377\5P>\32\377qe^\377\207" "\177\212\377j]O\377J7\17\377\212I6\15\377\5N<\27\377\201y\200\377\247" "\247\323\377\252\252\327\377\253\253\330\377\204\247\247\324\377\10\245" "\245\323\377\246\246\324\377\242\242\320\377\240\240\316\377\237\237" "\316\377\235\235\313\377\232\232\311\377\231\231\307\377\202\225\225" "\304\377\1\222\222\301\377\202\220\220\277\377\14\216\216\276\377\212" "\212\272\377\211\211\271\377\210\210\270\377\207\207\267\377\205\205" "\265\377\202\202\263\377\201\201\262\377\200\200\261\377~~\257\377||" "\256\377{{\255\377\202zz\253\377\202uu\250\377\1uu\247\377\202rr\244" "\377\7qq\244\377pp\243\377pp\242\377nn\241\377kk\236\377ll\237\377kk" "\236\377\202ii\234\377\2hh\233\377ee\230\377\203cc\227\377\12aa\225\377" "]]\221\377[[\217\377]]\221\377^^\222\377]]\221\377^^\222\377__\223\377" "aa\224\377``\224\377\202dd\230\377.cc\227\377ff\232\377hh\233\377gg\233" "\377kk\236\377ll\237\377nn\241\377pp\242\377pp\243\377qq\244\377tt\246" "\377uu\247\377vv\250\377xx\252\377yy\252\377zz\253\377||\255\377~~\257" "\377\177\177\257\377\200\200\260\377\202\202\262\377\205\205\263\377" "\206\207\265\377r|\235\377`\202\237\377g\212\250\377o\221\256\377v\230" "\264\377}\235\270\377\200\240\273\377\202\242\274\377\202\241\274\377" "\177\237\271\377{\232\266\377t\226\261\377l\217\254\377d\207\246\377" "j\200\234\377\217\222\273\377\227\227\303\377\226\226\303\377\225\225" "\303\377\224\224\303\377\227\227\304\377\227\227\305\377\227\227\306" "\377\203\231\231\307\377\1\232\232\311\377\202\233\233\312\377\3\234" "\234\313\377\236\236\314\377\237\237\316\377\204\241\241\317\377\1\242" "\242\320\377\202\241\241\317\377\1\244\244\322\377\202\245\245\323\377" "\1\247\247\324\377\202\246\246\324\377t\244\244\322\377\245\245\323\377" "\242\242\320\377\240\240\316\377\241\241\317\377\244\244\321\377\240" "\240\316\377\243\243\321\377\240\240\316\377\237\237\316\377\236\236" "\314\377\233\233\312\377\232\232\310\377\231\231\307\377\227\227\305" "\377}w\206\377bVH\377R@\34\377P>\26\377S9$\377e!S\377{'j\377\2072v\377" "\222\77\202\377\236M\216\377\252_\233\377\265p\250\377\302\202\264\377" "\315\224\301\377\325\245\314\377\335\263\324\377\343\277\333\377\346" "\311\341\377\352\317\344\377\354\322\346\377\354\323\347\377\353\321" "\346\377\351\315\343\377\346\307\337\377\342\275\332\377\334\263\324" "\377\327\250\315\377\320\233\306\377\307\215\273\377\277~\262\377\266" "p\250\377\255c\236\377\244U\224\377\232H\212\377\222\77\201\377\2126" "|\377\202.u\377x&k\377o\40b\377c\31X\377Y\24N\377Q\20F\377H\14>\377A" "\11""6\377=\7""3\377=\7""2\377=\13,\377G.\27\377<-\21\3773&\26\377@3" ",\377\216\211\201\377\236\244\231\377\237\244\231\377\236\243\230\377" "\235\242\227\377\235\240\226\377\240\242\230\377\237\241\230\377\236" "\240\226\377\235\237\224\377\237\241\225\377\242\242\226\377\237\241" "\224\377\235\237\222\377\237\240\225\377\242\244\232\377\244\244\232" "\377\241\234\210\377\236\223{\377\216\177e\377\212y_\377\224\207i\377" "hc-\377ML\6\377SS\6\377[[\10\377cc\13\377on\20\377xx\24\377\203\203\31" "\377\213\213\36\377\222\222$\377\227\227(\377\231\231*\377\235\234-\377" "\237\2371\377\240\2401\377\237\237/\377\234\234,\377\226\226'\377\220" "\220!\377\210\210\34\377\201\201\27\377ww\22\377mm\16\377cc\11\377YY" "\7\377QQ\5\377KK\4\377JJ\3\377\206JJ\2\377\15JJ\7\377TQ6\377UPF\377T" "NE\377SLC\377PI\77\377TMD\377LG=\377KE;\377LF;\377MF;\377KD8\377HB5\377" "\202GA4\377=KD5\377ZUE\377^[J\377YUB\377GG0\377XUB\377feV\377okY\377" "\210\203s\377rpZ\377\\b<\377ET#\377LT'\377z{X\377LQ3\377ejP\377:D)\377" "*2\27\3772<\33\3778A\33\377*0\24\37795\36\377n\\=\377\204oL\377|iJ\377" "}nS\377\231\214t\377\236\220y\377\226\212r\377\220\203n\377\212~j\377" "wiV\377NC6\37793-\377-)$\377)'#\377-,(\377685\377CIH\377PY\\\377Vbe\377" "Zfj\377TUW\377;-'\377)\31\20\377.\35\23\377,\35\26\377,\34\27\377,\32" "\23\377$\22\14\377\37\15\5\377\33\10\2\377\30\4\1\377\32\11\6\377A,\37" "\3779\"\20\377\34\13\3\377\36\16\5\377\40\13\3\377\31\5\1\377\26\4\1" "\377\202\25\4\1\377\6\13\1\0\377\10\1\0\377\4\0\0\377\3\0\0\377\4\0\0" "\377\3\0\0\377\202\2\0\0\377\26\1\1\1\377*>4\377Pxf\3779[L\377AgW\377" ":bV\3774YI\377)R=\377+PA\377'K<\3772J\77\377\21!\24\377\36""8.\377.H" ";\377\34""6\40\377/S>\3770L\77\377:XG\377.A8\377\36$\33\377\"\27\6\377" "@0\14\377\202I6\15\377\2bS<\377\234\230\256\377\203\271\271\344\377\4" "\266\265\336\377\231\223\250\377k^P\377L9\23\377\227I6\15\377\3gYJ\377" "\242\237\303\377\253\253\330\377\202\254\254\331\377\1\252\252\327\377" "\203\246\246\324\377\1\245\245\323\377\202\241\241\317\377\5\237\237" "\315\377\233\233\312\377\231\231\307\377\227\227\306\377\226\226\305" "\377\202\223\223\302\377\12\221\221\301\377\217\217\276\377\215\215\275" "\377\214\214\274\377\212\212\273\377\205\205\266\377\207\207\267\377" "\205\205\266\377\205\205\265\377\201\201\262\377\202\177\177\260\377" "\13\200\200\261\377~~\257\377||\256\377xx\252\377zz\253\377xx\252\377" "vv\250\377uu\247\377tt\246\377ss\245\377pp\243\377\202nn\241\377\1oo" "\241\377\202kk\236\377\203hh\233\377\1ff\232\377\202ff\231\377\7cc\227" "\377aa\225\377``\224\377__\223\377]]\221\377ZZ\216\377[[\217\377\202" "[[\220\377\4]]\221\377__\223\377aa\225\377aa\224\377\203cc\227\377\1" "dd\230\377\202gg\233\377\203ii\234\377\12kk\236\377ll\237\377nn\241\377" "qq\244\377rr\244\377tt\246\377vv\250\377ww\250\377ww\251\377||\255\377" "\202}}\255\377\13\200\200\260\377\203\203\262\377\207\207\266\377\202" "\205\257\377b{\227\377a\206\244\377k\216\253\377t\225\262\377|\234\267" "\377\202\241\274\377\206\244\276\377\202\207\245\277\377\14\204\243\275" "\377\177\237\271\377y\232\265\377p\223\257\377h\214\251\377b\204\241" "\377z\205\244\377\231\232\305\377\231\231\306\377\232\232\307\377\231" "\231\306\377\231\231\307\377\202\232\232\310\377\4\233\233\312\377\234" "\234\312\377\233\233\312\377\235\235\313\377\202\240\240\316\377\1\241" "\241\317\377\202\243\243\321\377\1\244\244\322\377\202\246\246\324\377" "\1\247\247\324\377\202\252\252\327\377\1\254\254\331\377\202\255\255" "\332\377\204\254\254\331\377\"\256\256\332\377\254\254\331\377\257\257" "\333\377\254\254\331\377\257\257\333\377\255\255\332\377\253\253\330" "\377\254\254\331\377\247\247\324\377\244\244\321\377\246\246\324\377" "\236\235\306\377\206\201\224\377h\\Q\377O>\32\377K8\20\377M:\22\377O" "<\25\377R>\31\377T)6\377p\40_\377~)m\377\2125y\377\225C\205\377\242R" "\221\377\256d\236\377\272u\254\377\305\210\270\377\320\232\305\377\331" "\253\320\377\340\270\331\377\345\304\337\377\351\314\343\377\353\322" "\346\377\202\355\325\347\377A\354\323\346\377\351\315\343\377\346\306" "\337\377\342\275\332\377\334\263\324\377\326\246\314\377\317\231\304" "\377\306\213\272\377\276|\260\377\265m\246\377\253`\234\377\242R\221" "\377\230E\210\377\216;~\377\2050t\377}(m\377t#f\377j\35]\377^\26R\377" "T\20G\377K\14\77\377D\12""9\377>\10""4\377=\7""2\377>\7""3\377>\11""4" "\377]DS\377qph\377\205\206}\377\220\222\206\377\231\234\217\377\240\243" "\227\377\242\245\231\377\236\242\230\377\236\241\230\377\236\242\227" "\377\236\240\225\377\234\237\223\377\233\235\220\377\235\237\222\377" "\241\241\225\377\242\244\231\377\234\235\221\377\233\233\217\377\236" "\237\224\377\236\240\226\377\235\235\223\377\241\240\224\377\230\223" "~\377\221\206n\377\206w^\377\203v_\377\215\202f\377d`)\377NN\6\377SS" "\6\377ZZ\11\377bb\13\377ll\16\377uu\22\377}}\26\377\204\204\32\377\212" "\212\34\377\215\214\36\377\221\221#\377\202\223\223$\377\13\221\221#" "\377\216\216\40\377\212\212\36\377\204\204\31\377}}\24\377ss\17\377l" "l\14\377bb\11\377ZZ\7\377SS\5\377MM\4\377\202JJ\3\377\205JJ\2\377QII" "\5\377WU2\377b_V\377a]V\377`[T\377_[S\377_ZT\377^ZT\377[VN\377WQH\377" "QJ\77\377LE:\377LD:\377MF:\377IB7\377GA5\377HA5\377LE9\377PJ=\377^XJ" "\377`^N\377d`N\377MM:\377ZWA\377soY\377llM\377CN&\377N[%\377[g4\377z" "{^\377zwZ\377\213\204f\377GM-\377UT0\377TX/\377DG&\3779>&\377maG\377" "cU5\377yjM\377\262\233y\377\250\224u\377\205yd\377\203|n\377\227\216" "|\377\232\220}\377p^M\377P7&\377N8'\3771%\32\377,#\34\377)!\34\377'!" "\35\377$!\36\377%#\40\377-.+\377BB\77\377B81\377)\32\20\377)\30\16\377" ",\35\22\377*\33\23\377-\33\23\377)\27\16\377\"\22\11\377\"\23\13\377" "\"\20\7\377\35\10\4\377)\26\17\377D/\36\377)\25\7\377\31\10\3\377\37" "\16\5\377\35\11\3\377\30\3\0\377\25\2\0\377\30\4\1\377\24\4\1\377\10" "\1\0\377\6\0\0\377\4\0\0\377\202\2\0\0\377\203\3\0\0\377\25\1\0\0\377" "\0\0\0\377\15\21\17\377Kc[\3776UJ\377AaT\3773SG\3770F\77\377\36""71\377" "%J=\377Jjd\377=]\\\377%68\377\25.&\377\30""2\"\377)E2\377+C2\377&5$\377" "\77YB\3777J*\377A<\24\377\203I6\15\377\2UD%\377\253\251\312\377\205\272" "\272\346\377\202\271\271\344\377\4\253\250\311\377}ss\377VF'\377I6\16" "\377\222I6\15\377\2VF(\377\221\214\240\377\202\255\255\332\377\2\254" "\254\331\377\251\251\326\377\202\247\247\324\377\1\246\246\324\377\202" "\243\243\321\377\17\241\241\317\377\237\237\316\377\236\236\314\377\233" "\233\312\377\227\227\306\377\226\226\305\377\225\225\304\377\223\223" "\302\377\220\220\277\377\217\217\276\377\215\215\275\377\214\214\274" "\377\212\212\273\377\211\211\271\377\207\207\267\377\202\205\205\265" "\377\14\203\203\264\377\205\205\265\377\200\200\261\377}}\256\377~~\257" "\377||\256\377{{\255\377zz\253\377yy\253\377xx\252\377uu\247\377qq\244" "\377\202ss\245\377\13rr\244\377oo\241\377mm\240\377ll\237\377kk\236\377" "hh\233\377jj\235\377ii\234\377ff\232\377bb\226\377cc\227\377\202dd\230" "\377\1``\224\377\202__\223\377\5]]\221\377\\\\\221\377XX\215\377[[\217" "\377\\\\\221\377\203]]\221\377\16__\223\377]]\221\377``\224\377bb\226" "\377aa\225\377cc\227\377ff\232\377ee\230\377ff\231\377ii\234\377gg\233" "\377ii\234\377nn\241\377mm\240\377\202nn\241\377\34pp\242\377uu\246\377" "ss\244\377tt\246\377ww\250\377ww\251\377zz\253\377}}\256\377\177\177" "\256\377\203\204\262\377ny\231\377]\200\236\377e\211\247\377o\222\256" "\377x\231\265\377\200\240\272\377\206\244\276\377\212\250\301\377\214" "\251\302\377\213\251\301\377\210\246\300\377\204\243\275\377~\236\270" "\377u\227\263\377l\217\255\377c\210\245\377e\177\234\377\215\221\266" "\377\202\234\234\310\377\2\233\233\310\377\234\234\311\377\202\235\235" "\313\377\4\236\236\314\377\240\240\316\377\237\237\316\377\241\241\317" "\377\203\242\242\320\377\202\245\245\323\377\1\247\247\324\377\202\252" "\252\327\377\1\254\254\331\377\202\257\257\333\377\1\261\261\336\377" "\202\262\262\336\377\4\263\263\337\377\264\264\340\377\264\264\341\377" "\266\266\342\377\203\267\267\343\377\1\266\266\342\377\202\264\264\341" "\377\33\263\263\337\377\262\262\336\377\260\260\334\377\223\216\243\377" "qf^\377R@\37\377I6\15\377J7\16\377J8\17\377L9\21\377M;\23\377O=\25\377" "R9!\377]\35K\377s!c\377\200+n\377\2147{\377\227E\210\377\244V\224\377" "\260g\241\377\275{\260\377\311\216\276\377\324\241\314\377\334\261\326" "\377\343\276\335\377\347\311\343\377\353\320\346\377\203\355\326\350" "\377\26\354\323\346\377\351\315\343\377\346\306\337\377\342\274\332\377" "\334\261\323\377\325\245\314\377\316\227\303\377\305\210\271\377\275" "z\257\377\263k\244\377\252^\232\377\240P\220\377\226D\206\377\2159|\377" "\203.r\377y&i\377o\36_\377d\27T\377Y\22K\377Q\16C\377I\13=\377B\11""7" "\377\202\77\11""5\377\6\77\10""5\377\77\11""5\377N%E\377\220\216\210" "\377\226\234\216\377\227\233\217\377\202\234\237\223\377\16\241\243\227" "\377\241\244\231\377\240\243\232\377\242\245\231\377\232\237\221\377" "\231\234\217\377\235\236\222\377\237\240\225\377\240\241\226\377\234" "\236\224\377\235\240\226\377\232\234\221\377\234\233\220\377\234\236" "\223\377\202\234\235\223\377\37\232\231\215\377\212\202n\377\207{f\377" "\200s^\377\202v`\377\212\200g\377le3\377ON\11\377RR\6\377YY\10\377``" "\12\377gg\14\377oo\17\377uu\22\377{{\24\377\177\177\27\377\203\203\30" "\377\204\203\31\377\204\204\32\377\203\203\31\377\200\200\27\377|{\24" "\377uu\20\377nn\15\377hh\13\377aa\10\377YY\6\377RR\5\377LL\3\377JJ\2" "\377JJ\3\377\205JJ\2\377\377OH=\377LE:\377JD9\377UOC\377\\TD\377c[A\377c`D\377>C\40\377FI(\377" "zwb\377rr_\377osX\377IX(\377hw9\377\177\200P\377\217\213t\377\177|d\377" "AE#\377<\77\35\377prL\377uxG\377TX2\377GE)\37725\32\377><$\377\207wb" "\377\264\240\205\377\262\240\205\377\244\227\202\377\210\204x\377\202" "\202x\377qaQ\377V<)\377,\37\23\377)\36\24\377+\37\25\377-\40\26\377," "\40\26\377)\36\30\377*\40\33\3775'\36\377-\33\17\377#\23\12\377(\30\14" "\377\202(\30\17\377\4)\30\17\377\"\22\11\377!\21\11\377\"\24\15\377\202" "#\22\11\377\14""6$\32\377<*\30\377\37\15\5\377\31\12\3\377\35\14\5\377" "\22\4\1\377\17\1\0\377\20\1\0\377\24\2\1\377\20\2\0\377\7\0\0\377\3\0" "\0\377\202\2\0\0\377\1\3\0\0\377\202\2\0\0\377\203\1\0\0\377\23\0\0\0" "\377\1\2\1\377\30!\35\3777Q\77\377KcZ\37726Y\377%.5\377#'3\377HKa\377" "fcz\377vez\377hb{\37749=\377+>1\377@]:\3777Y8\377DF:\377@8\27\377I7\16" "\377\205I6\15\377\4Q\77\33\377th`\377\242\236\271\377\271\271\344\377" "\202\272\272\346\377\202\270\270\344\377\6\271\271\344\377\266\266\342" "\377\260\257\326\377\216\207\225\377bT\77\377J7\17\377\216I6\15\377\3" "K8\21\377wli\377\250\247\320\377\202\254\254\331\377\5\253\253\330\377" "\251\251\326\377\247\247\324\377\246\246\324\377\245\245\323\377\203" "\241\241\317\377\1\240\240\316\377\203\232\232\311\377\1\225\225\304" "\377\202\220\220\300\377\2\221\221\301\377\220\220\277\377\202\214\214" "\274\377\1\212\212\273\377\202\207\207\267\377\3\206\206\267\377\205" "\205\265\377\202\202\263\377\202\201\201\262\377\13\200\200\261\377\177" "\177\260\377||\256\377zz\253\377yy\253\377xx\252\377uu\250\377ww\251" "\377vv\250\377qq\244\377pp\242\377\202mm\240\377\2nn\241\377kk\236\377" "\202ii\234\377\203ff\232\377\202cc\227\377\1bb\226\377\202aa\225\377" "\202]]\221\377\6__\223\377\\\\\221\377YY\216\377WW\214\377[[\217\377" "[[\220\377\203]]\221\377\17^^\222\377]]\221\377aa\224\377cc\227\377b" "b\226\377cc\227\377dd\230\377cc\227\377ee\230\377hh\233\377ff\232\377" "gg\233\377jj\235\377kk\236\377mm\240\377\202nn\241\377\"qq\243\377uu" "\246\377tt\246\377vv\247\377ww\251\377zz\252\377~~\256\377\200\200\257" "\377x}\246\377]w\224\377^\203\242\377i\215\252\377s\225\261\377}\235" "\270\377\205\244\275\377\212\250\301\377\217\253\304\377\220\255\305" "\377\220\254\304\377\215\252\302\377\210\246\277\377\201\241\273\377" "z\233\266\377p\223\260\377f\212\251\377_\202\241\377p\201\237\377\235" "\237\311\377\241\241\315\377\240\240\314\377\242\242\320\377\242\242" "\317\377\241\241\317\377\243\243\321\377\202\243\243\320\377\1\244\244" "\322\377\202\245\245\323\377\1\247\247\324\377\202\252\252\327\377\1" "\256\256\332\377\202\257\257\333\377\203\262\262\336\377\202\264\264" "\340\377\1\266\266\342\377\202\267\267\343\377\202\271\271\344\377\204" "\272\272\346\377\5\271\271\345\377\270\270\342\377\237\232\261\377xm" "g\377RA\37\377\203I6\15\377\202J7\16\377fK8\20\377L9\21\377N<\24\377" "Q=\30\377P*.\377g\32V\377u\"e\377\201,p\377\2159}\377\231H\212\377\247" "Z\231\377\265m\251\377\301\200\267\377\314\223\303\377\326\245\316\377" "\336\264\330\377\344\301\336\377\351\314\344\377\354\323\351\377\356" "\330\353\377\356\330\352\377\355\330\351\377\354\323\347\377\351\315" "\343\377\346\306\337\377\341\273\331\377\333\260\323\377\324\244\313" "\377\315\226\302\377\304\207\270\377\274x\256\377\262i\243\377\250\\" "\231\377\236N\216\377\224B\204\377\2137z\377\201,p\377w$g\377m\35\\\377" "a\26S\377W\21I\377N\15A\377F\11;\377A\11""7\377>\11""5\377>\11""4\377" ">\10""4\377\77\11""5\377A\17""8\377\204uz\377\230\235\220\377\232\236" "\220\377\230\234\217\377\237\242\227\377\236\240\225\377\233\236\223" "\377\237\240\225\377\240\242\225\377\235\237\222\377\236\237\223\377" "\237\240\224\377\234\234\217\377\233\234\217\377\233\234\221\377\231" "\232\217\377\235\236\225\377\233\235\223\377\231\231\217\377\225\223" "\211\377\231\230\220\377\226\227\216\377\222\221\205\377\211\203p\377" "\210}f\377\201v^\377\177t]\377\214\202k\377}uK\377US\24\377PP\6\377W" "W\7\377\\\\\11\377aa\13\377gg\14\377ll\16\377pp\20\377ss\21\377tt\20" "\377tt\21\377ss\20\377pp\16\377ll\14\377hg\12\377cc\11\377\\\\\7\377" "WW\6\377QQ\4\377LL\4\377JJ\2\377II\2\377II\1\377JJ\1\377\202JJ\2\377" "TJJ\3\377LK\15\377[Y;\377b`X\377a^X\377_]V\377]YS\377a]W\377`]V\377`" "\\V\377a]W\377_[T\377]YR\377^ZS\377[WP\377\\WO\377VQH\377RLB\377QJ>\377" "QJ\77\377OG:\377JB5\377H@1\377MJ0\377eaJ\377ngO\377JD,\377C<,\377aXD" "\377\207\200r\377dhA\377lt7\377|\177D\377\216\220b\377Y^9\377\211\211" "f\377\246\237~\377ytM\377\177}H\377trG\377soL\377YW:\377\224\212s\377" "\277\263\240\377\300\264\243\377\273\257\235\377\265\247\225\377\257" "\241\214\377\220\205u\377H>6\377$\24\12\377\32\14\3\377\27\13\4\377\31" "\16\10\377#\27\20\377)\35\23\3776&\31\3775\"\21\377#\21\6\377%\24\11" "\377$\25\11\377!\22\11\377\"\24\11\377\"\22\10\377\34\15\6\377\36\16" "\7\377\40\20\10\377\40\21\10\377#\24\14\377<,\37\377.\36\16\377\30\10" "\3\377\31\12\4\377\34\12\4\377\20\2\0\377\12\1\0\377\12\0\0\377\14\1" "\0\377\16\1\0\377\5\0\0\377\2\0\0\377\1\0\0\377\2\0\0\377\1\0\0\377\202" "\2\0\0\377\202\1\0\0\377\204\0\0\0\377\17\17\24\17\3775I;\3777LA\377" "HVU\377\200\233B\377\221\242=\377\207\204J\377\235\202\204\377\224g~" "\377\222i|\377\222\203\216\377\214\225N\377\203\217\33\377NP\23\377H" "8\17\377\211I6\15\377\15J7\17\377bT>\377\215\206\224\377\260\257\326" "\377\266\266\342\377\263\263\337\377\264\264\340\377\261\261\336\377" "\257\257\333\377\261\261\336\377\257\257\333\377\216\210\232\377J7\17" "\377\214I6\15\377\11bT@\377\233\227\263\377\254\254\331\377\253\253\330" "\377\254\254\331\377\252\252\327\377\247\247\324\377\246\246\324\377" "\244\244\322\377\202\241\241\317\377\1\237\237\316\377\203\233\233\312" "\377\1\232\232\311\377\202\226\226\305\377\202\220\220\300\377\11\221" "\221\301\377\217\217\276\377\214\214\274\377\212\212\273\377\213\213" "\273\377\206\206\267\377\204\204\264\377\202\202\263\377\204\204\264" "\377\202\200\200\261\377\202~~\257\377\4zz\253\377yy\253\377zz\253\377" "ww\251\377\202tt\246\377\3ss\245\377tt\246\377pp\242\377\204nn\241\377" "\1ll\237\377\203ii\234\377\1ff\231\377\202ff\232\377\3dd\230\377aa\225" "\377__\223\377\202^^\222\377\6]]\221\377[[\217\377\\\\\221\377ZZ\216" "\377XX\215\377[[\220\377\202]]\221\377\6^^\222\377]]\221\377^^\222\377" "__\223\377]]\221\377aa\224\377\203cc\227\377\4ee\230\377cc\227\377ff" "\231\377ii\234\377\202hh\233\377\202jj\235\377\1mm\240\377\202nn\241" "\377!qq\243\377qq\244\377rr\244\377ss\245\377ww\250\377yy\251\377{{\253" "\377|~\254\377ds\222\377X|\233\377b\207\244\377m\217\254\377w\230\264" "\377\201\240\273\377\211\246\300\377\217\254\304\377\223\257\307\377" "\224\260\307\377\223\257\307\377\221\255\305\377\214\251\302\377\205" "\244\276\377}\237\270\377u\227\262\377k\216\254\377a\206\244\377]~\234" "\377\177\211\251\377\236\237\312\377\240\240\315\377\243\243\320\377" "\242\242\320\377\242\242\317\377\202\246\246\324\377\1\247\247\324\377" "\202\252\252\327\377\1\254\254\331\377\202\257\257\333\377\1\261\261" "\336\377\203\262\262\336\377\202\264\264\340\377\1\266\266\342\377\202" "\267\267\343\377\202\271\271\344\377\205\272\272\346\377\4\271\270\343" "\377\244\241\274\377}sq\377\\L1\377\206I6\15\377YJ7\16\377J8\17\377K" "8\20\377M:\22\377O<\25\377R;\35\377R\33=\377i\32Y\377v#f\377\203-q\377" "\216;~\377\234K\215\377\253^\236\377\267q\254\377\303\203\271\377\316" "\226\305\377\327\250\320\377\337\267\331\377\345\304\340\377\352\316" "\345\377\355\326\352\377\356\331\353\377\357\332\354\377\356\331\353" "\377\355\325\351\377\351\316\344\377\345\305\336\377\341\272\331\377" "\332\257\322\377\324\242\312\377\315\224\301\377\304\205\266\377\273" "v\254\377\261g\242\377\247Z\227\377\235L\215\377\223@\203\377\2115y\377" "\177*n\377u#e\377k\33[\377_\25Q\377U\17H\377L\14@\377D\11:\377\77\10" "6\377>\10""4\377>\10""3\377\77\10""4\377\77\11""5\377\77\11""6\377jL" "_\377\244\244\230\377\245\250\233\377\243\245\231\377\243\245\230\377" "\245\246\233\377\241\242\226\377\234\235\221\377\233\234\216\377\234" "\234\216\377\236\235\221\377\241\241\225\377\236\236\222\377\226\226" "\211\377\224\224\206\377\227\230\215\377\226\230\215\377\227\227\214" "\377\225\225\214\377\220\217\205\377\222\222\210\377\217\217\207\377" "\213\213\200\377\215\213\200\377\206\200n\377\207|f\377\177r\\\377{o" "X\377\206yb\377\212\177]\377le2\377RP\16\377RR\6\377WW\10\377\\\\\11" "\377__\11\377bb\12\377cc\12\377\202ee\13\377\10dd\13\377aa\11\377__\11" "\377[[\7\377WW\6\377SS\5\377OO\5\377LL\4\377\202JJ\3\377@JJ\2\377JJ\1" "\377II\1\377HH\1\377GG\4\377RP\"\377`_M\377ba[\377^]W\377ZXR\377a_Z\377" "\\YR\377YVP\377]ZS\377XUN\377]ZT\377WTN\377PNH\377VRM\377VTN\377XUP\377" "\\WP\377ZUM\377TOF\377MH=\377KC6\377JF3\377LE4\377NG3\377QK7\377XU=\377" "NL2\377=<2\37783+\37791%\377=5#\377F>%\377XP+\377||G\377\250\247v\377" "\300\271\246\377\254\255\225\377\213\225g\377\213\223g\377_pJ\377^a<" "\377`aC\377\215\206p\377\277\265\244\377\307\277\262\377\304\276\262" "\377\265\255\242\377udY\3779&\31\377-\34\17\377(\30\14\377\37\20\4\377" "\31\12\2\377\30\11\2\377\"\20\12\3777$\24\377)\24\6\377%\21\6\377&\23" "\5\377\202\37\17\5\377\23\36\17\4\377\35\15\4\377\36\14\4\377\34\13\4" "\377\34\12\4\377\34\13\5\377)\32\21\377<+\34\377$\23\6\377\25\7\2\377" "\26\12\4\377\32\10\3\377\23\2\0\377\20\1\0\377\14\1\0\377\10\0\0\377" "\6\0\0\377\4\0\0\377\3\0\0\377\203\1\0\0\377\202\2\0\0\377\203\1\0\0" "\377\203\0\0\0\377\16\1\0\0\377\7\7\6\377\36""0*\3775PD\377UvN\377\234" "\266R\377\236\2649\377\234\2602\377\225\226;\377\226\220r\377\235\213" "\240\377\224\200\230\377wnX\377QA\21\377\215I6\15\377\12I6\16\377UE&" "\377zpp\377\240\236\300\377\257\257\332\377\256\256\332\377\254\254\331" "\377\255\255\330\377\215\207\227\377XH,\377\213I6\15\377\5P>\33\377\205" "}\207\377\252\251\324\377\255\255\332\377\254\254\331\377\202\251\251" "\326\377\1\250\250\325\377\202\245\245\323\377\202\241\241\317\377\2" "\237\237\316\377\233\233\312\377\202\232\232\311\377\33\232\232\310\377" "\227\227\306\377\225\225\304\377\222\222\301\377\220\220\277\377\216" "\216\276\377\217\217\276\377\212\212\273\377\213\213\273\377\211\211" "\271\377\205\205\266\377\205\205\265\377\204\204\264\377\201\201\262" "\377\177\177\260\377~~\257\377\177\177\260\377zz\253\377xx\252\377ww" "\251\377uu\247\377ww\251\377ss\245\377pp\243\377rr\244\377qq\244\377" "pp\242\377\202ll\237\377\14kk\236\377hh\233\377ii\234\377hh\233\377g" "g\233\377ff\231\377cc\227\377aa\225\377cc\227\377bb\226\377aa\225\377" "^^\222\377\202]]\221\377\202\\\\\221\377\1XX\215\377\203WW\214\377\1" "^^\222\377\202``\224\377\6bb\226\377aa\225\377bb\226\377dd\230\377cc" "\227\377dd\230\377\202ee\230\377\7ff\232\377hh\233\377ff\232\377gg\233" "\377ii\234\377hh\233\377gg\233\377\202ii\234\377\24ll\237\377nn\241\377" "oo\241\377pp\241\377qq\243\377rr\244\377ss\245\377ww\250\377yy\251\377" "{{\253\377nu\233\377Ut\222\377Z\200\236\377f\211\247\377p\223\257\377" "{\234\267\377\205\244\276\377\215\252\302\377\223\257\306\377\227\262" "\311\377\202\230\263\312\377\22\224\260\310\377\220\254\305\377\211\247" "\300\377\201\241\273\377y\232\265\377n\221\257\377d\211\247\377Z\200" "\236\377^x\225\377\214\221\267\377\235\235\311\377\237\237\313\377\237" "\237\314\377\240\240\315\377\242\242\320\377\243\243\321\377\246\246" "\323\377\250\250\325\377\202\252\252\327\377\3\257\257\333\377\257\257" "\334\377\262\262\336\377\202\264\264\340\377\1\266\266\342\377\202\267" "\267\343\377\202\271\271\344\377\206\272\272\346\377\3\250\245\303\377" "\203z|\377[K0\377\211I6\15\3770J7\16\377J8\17\377K8\20\377M;\23\377O" "=\25\377N1$\377Y\24I\377j\33Z\377w$g\377\203.r\377\217<\177\377\234J" "\213\377\251\\\232\377\267p\253\377\304\205\272\377\317\231\306\377\330" "\252\321\377\340\271\332\377\346\306\341\377\352\317\346\377\355\326" "\352\377\360\332\354\377\361\333\355\377\356\331\353\377\355\326\351" "\377\352\317\346\377\346\305\340\377\340\272\330\377\332\256\321\377" "\323\241\311\377\314\223\300\377\303\203\265\377\272u\254\377\260f\241" "\377\246X\226\377\234J\213\377\222\77\202\377\2104w\377~)m\377r!d\377" "h\31X\377^\24P\377T\16G\377K\14\77\377D\12""9\377\77\10""5\377>\10""4" "\377>\7""4\377\202\77\10""5\377\17@\10""5\377R(H\377\243\236\225\377" "\253\253\236\377\252\253\237\377\252\253\236\377\247\244\225\377\244" "\235\214\377\241\231\204\377\231\221~\377\235\225\203\377\235\230\206" "\377\235\231\210\377\232\230\211\377\226\224\210\377\202\224\223\207" "\377\27\223\223\212\377\217\217\206\377\215\215\203\377\217\216\206\377" "\215\214\202\377\215\214\204\377\214\214\205\377\213\212\201\377\214" "\214\203\377\201}k\377\200u`\377{o\\\377viS\377\177oZ\377\215~f\377\206" "yW\377me5\377WT\30\377RQ\12\377TT\7\377WW\7\377XX\10\377ZZ\7\377\202" "YY\10\377\6XW\6\377TT\6\377QQ\4\377NN\4\377MM\4\377JJ\4\377\202JJ\3\377" "\13JJ\2\377JJ\3\377JJ\4\377JJ\14\377GG\34\37742\37\377/(\37\377G@7\377" "]ZS\377a_Y\377aa[\377\202_]W\377\12[XQ\377SPI\377OMG\377NLF\377TPI\377" "^YQ\377UQK\377PNI\377VTM\377URL\377\203VRL\377:VQI\377PL=\377II0\377" "HH*\377LO,\377db\77\377\204\177g\377okR\377VVO\377JIH\377D\77""7\377" "<1%\3772%\32\3773&\27\377nfR\377\234\240\230\377\232\243\237\377\211" "\222\212\377~\204s\377~\177g\377biO\377\\cJ\377U[E\377\241\231\206\377" "\273\260\237\377\214~q\377D2&\3770\36\23\3770\37\22\377-\35\21\377&\30" "\15\377\35\17\6\377\36\16\7\3776\40\23\3773\34\14\377#\15\4\377(\22\7" "\377\"\17\4\377\36\15\3\377\36\14\3\377\34\12\3\377\27\10\3\377\27\11" "\2\377\32\7\2\377\33\7\2\377\32\11\4\377.\40\27\3772%\22\377\31\11\2" "\377\25\7\3\377\32\13\5\377\33\7\2\377\26\2\0\377\23\1\0\377\17\1\0\377" "\13\1\0\377\5\0\0\377\3\0\0\377\203\1\0\0\377\3\2\0\0\377\1\0\0\377\0" "\0\0\377\202\1\0\0\377\205\0\0\0\377\14\6\7\6\377\33&#\377#4.\377[zu" "\377:YO\377q\224v\377`\177N\377]\200H\377\202\235L\377r\203F\377v`W\377" "V\77\40\377\202I6\15\377\3ZI-\377dVB\377P\77\33\377\215I6\15\377\6L:" "\23\377j]P\377\217\211\236\377\223\216\245\377fXH\377J7\17\377\213I6" "\15\377\2j]P\377\243\241\303\377\202\254\254\331\377\1\256\256\332\377" "\202\251\251\326\377\5\252\252\327\377\245\245\323\377\243\243\321\377" "\242\242\320\377\237\237\315\377\202\234\234\313\377\1\233\233\312\377" "\203\226\226\305\377\4\225\225\304\377\223\223\302\377\220\220\277\377" "\216\216\276\377\202\212\212\273\377\13\207\207\267\377\210\210\270\377" "\211\211\271\377\203\203\264\377\201\201\262\377\200\200\261\377\177" "\177\260\377}}\256\377~~\257\377}}\256\377zz\253\377\202xx\252\377\2" "uu\247\377tt\246\377\203qq\244\377\2oo\241\377ll\237\377\202kk\236\377" "\6ii\234\377ff\232\377hh\233\377gg\233\377dd\230\377cc\227\377\203bb" "\226\377\1__\223\377\203]]\221\377\1[[\217\377\202ZZ\216\377\202WW\214" "\377\4VV\213\377UU\212\377ee\230\377gg\233\377\202hh\233\377\3ff\231" "\377hh\233\377ii\234\377\203jj\235\377\6ii\234\377jj\235\377kk\236\377" "jj\235\377ii\234\377mm\240\377\202nn\241\377\6oo\241\377pp\242\377pp" "\243\377rr\244\377qq\243\377ss\245\377\202vv\247\377-ww\250\377xx\251" "\377{{\253\377wz\247\377Xm\213\377Ty\230\377^\203\241\377j\214\252\377" "t\226\262\377\177\237\272\377\211\247\300\377\221\255\304\377\226\262" "\310\377\231\265\312\377\233\266\313\377\232\265\312\377\230\263\312" "\377\223\257\307\377\215\252\303\377\205\244\276\377|\235\267\377r\225" "\260\377h\214\252\377^\202\242\377Uz\231\377fx\225\377\224\226\300\377" "\234\234\310\377\234\234\311\377\235\235\313\377\237\237\314\377\241" "\241\316\377\240\240\317\377\243\243\320\377\241\241\317\377\244\244" "\322\377\250\250\325\377\251\251\326\377\253\253\330\377\256\256\332" "\377\260\260\335\377\263\263\337\377\264\264\341\377\266\266\342\377" "\270\270\344\377\202\271\271\344\377\6\272\272\346\377\272\271\345\377" "\255\252\314\377\206}\202\377_O7\377J7\17\377\202I6\15\377\3P;\13\377" "K7\15\377S=\14\377\206I6\15\377\25J7\16\377J8\17\377L9\21\377M;\23\377" "Q<\30\377K!/\377\\\23M\377k\33Z\377w$g\377\204/r\377\220<\177\377\234" "K\214\377\251]\232\377\265o\250\377\302\203\266\377\317\230\306\377\331" "\253\322\377\341\272\332\377\346\307\341\377\352\320\346\377\356\327" "\352\377\202\360\332\354\377D\356\331\353\377\355\325\351\377\352\316" "\345\377\346\305\340\377\341\273\333\377\333\256\323\377\322\240\311" "\377\313\221\277\377\302\202\264\377\271s\253\377\257d\237\377\244W\225" "\377\232I\212\377\220<\177\377\2050v\377{'l\377p\36b\377g\30W\377\\\23" "O\377S\16E\377J\13\77\377D\12:\377\77\10""5\377>\10""4\377\77\10""5\377" "\77\11""5\377@\10""5\377@\10""6\377D\22:\377\227\212\211\377\251\250" "\232\377\254\254\235\377\254\254\236\377\250\245\225\377\243\232\204" "\377\237\225\200\377\217\203m\377\227\213v\377\235\224\177\377\234\221" "|\377\224\214x\377\220\211w\377\216\207v\377\214\207v\377\213\207z\377" "\213\210}\377\210\206|\377\207\205{\377\207\205|\377\211\210\200\377" "\212\212\203\377\210\210\200\377\211\212\202\377\214\213\203\377\203" "}l\377\177s^\377|oX\377xjR\377zkU\377\207xa\377\212y]\377\210xY\377{" "pM\377mh>\377][%\377TS\24\377PO\12\377NN\6\377\202NN\5\377\2MM\4\377" "KK\4\377\202II\3\377WII\4\377JI\7\377KJ\13\377NM\27\377RP'\377YV=\377" "^\\P\377`^Y\377[ZX\377EEB\377,+&\377-'\"\377F>5\377WSG\377XTH\377URG" "\377ROE\377TOD\377JG=\377BA7\377>\77""8\377BB<\377;=6\377694\377AB=\377" "DE@\377FGC\377LKG\377WTM\377XVO\377SRL\377URK\377YTE\377XR=\377_Z>\377" "lfK\377jbJ\377lgO\377TSC\377UPH\377I@:\3776*#\3770$\34\3775&\32\377D" "9-\377\\SJ\377D;2\377;4+\377:5-\377=6+\377TOD\377dk[\377CG6\377G6&\377" "7!\25\3775!\22\3771\37\23\377-\34\21\377%\26\14\377!\22\10\3774\40\23" "\377B'\25\377+\21\6\377*\21\6\377(\21\4\377\37\13\2\377\40\14\2\377\36" "\12\2\377\30\7\2\377\30\6\2\377\27\6\1\377\24\3\0\377\21\2\1\377\30\12" "\7\3770\"\30\377$\25\14\377\22\5\1\377\24\7\3\377\33\13\3\377\32\7\1" "\377\31\4\0\377\25\3\0\377\16\1\0\377\15\1\0\377\6\1\0\377\4\0\0\377" "\2\0\0\377\202\1\0\0\377\212\0\0\0\377\25\1\0\0\377\4\0\0\377\1\0\0\377" "\21\27\21\377&:*\377\26\40\26\377\37,'\377@^V\3772OC\377-D+\377B<\30" "\377I6\16\377I6\15\377SA\40\377\207\177\204\377\263\262\331\377\271\270" "\343\377\253\251\313\377\203z\177\377XG*\377I6\16\377\214I6\15\377\2" "I6\16\377J7\17\377\213I6\15\377\3UD&\377\216\210\232\377\254\254\330" "\377\202\254\254\331\377\7\252\252\327\377\251\251\326\377\252\252\327" "\377\246\246\324\377\243\243\321\377\244\244\322\377\241\241\317\377" "\202\235\235\313\377\1\233\233\312\377\202\227\227\306\377\202\226\226" "\305\377\11\220\220\300\377\222\222\301\377\217\217\276\377\215\215\275" "\377\214\214\274\377\212\212\273\377\207\207\267\377\205\205\265\377" "\206\206\267\377\202\201\201\262\377\202\177\177\260\377\10||\256\377" "{{\255\377yy\253\377xx\252\377uu\247\377uu\250\377ss\245\377pp\243\377" "\202qq\244\377\203ll\237\377\2kk\236\377hh\233\377\202gg\233\377\4ff" "\232\377ee\230\377dd\230\377bb\226\377\202aa\225\377\202__\223\377\1" "]]\221\377\202\\\\\221\377\1[[\217\377\202WW\214\377\1XX\215\377\202" "WW\214\377\3UU\212\377SS\210\377jj\235\377\202mm\240\377\202nn\241\377" "\202oo\241\377\11pp\243\377qq\244\377pp\243\377oo\241\377pp\243\377q" "q\244\377rr\244\377qq\244\377ss\245\377\202tt\246\377\1uu\247\377\202" "uu\250\377\202vv\250\377'vv\251\377zz\253\377yy\252\377{{\254\377\177" "\177\256\377\200\201\260\377fq\224\377Nr\221\377W|\234\377b\207\244\377" "n\220\255\377y\232\265\377\204\243\275\377\215\252\303\377\224\260\307" "\377\231\265\312\377\235\270\314\377\237\271\315\377\236\270\315\377" "\232\266\313\377\227\262\311\377\220\255\305\377\210\246\300\377\200" "\240\272\377w\230\263\377l\217\254\377b\206\245\377W}\234\377Ru\223\377" "t\177\237\377\232\233\307\377\233\233\310\377\231\231\306\377\234\234" "\312\377\235\235\313\377\236\236\314\377\240\240\316\377\237\237\316" "\377\241\241\317\377\202\244\244\322\377\2\246\246\324\377\250\250\325" "\377\203\253\253\330\377\203\254\254\331\377\3\243\240\303\377\203{\203" "\377aR=\377\205I6\15\377\6G4\14\377\210`\4\377\262~\3\377{Y\11\377I6" "\15\377R<\13\377\204I6\15\377\25J7\16\377J8\17\377L9\21\377N<\24\377" "P9\33\377L\25""9\377\\\23N\377k\33Z\377w$g\377\204/s\377\220=\177\377" "\235K\214\377\252]\232\377\265p\250\377\303\204\265\377\316\230\303\377" "\327\251\317\377\340\271\332\377\347\307\342\377\353\320\347\377\356" "\330\353\377\202\360\332\354\377\32\356\330\353\377\355\325\351\377\351" "\315\345\377\346\303\337\377\337\267\327\377\331\253\320\377\322\236" "\310\377\311\217\275\377\301\200\263\377\267q\252\377\255c\240\377\243" "U\225\377\227F\211\377\215:~\377\204/u\377z&j\377n\35`\377e\30W\377Z" "\22M\377Q\15D\377J\15\77\377A\12""7\377>\10""3\377\77\10""4\377\77\11" "5\377@\11""5\377\202@\10""6\377\177\77\12""6\377\200ir\377\243\241\222" "\377\247\245\230\377\253\251\234\377\251\250\232\377\237\230\201\377" "\233\221x\377\215\201l\377\207zf\377\231\220}\377\224\213u\377\221\207" "s\377\215\206t\377\215\207w\377\210\203r\377\205\200o\377\205\200q\377" "\203~p\377\177{m\377~zo\377~{q\377\201\200w\377\201\201y\377\203\204" "~\377\207\207\200\377\215\215\205\377\205\202s\377\201v_\377\200qY\377" "{kT\377yjU\377\207xb\377\211{b\377\210w_\377\202u^\377\201xe\377\202" "{j\377zt]\377niM\377faA\377a]9\377]Y5\377[W3\377ZW4\377WS4\377JG-\377" "HE2\377YVL\377^\\V\377\\YU\377]ZX\377^[Y\377_]Z\377`_]\377aa`\377WXV" "\377-,'\377+&\36\37793$\377JB4\377RM\77\377A>2\377FB7\377>>6\377981\377" "10(\377\40!\30\377\33\35\25\377\27\32\22\377\33\37\27\377-0)\377:=9\377" "=@<\377@C>\377HIE\377KMI\377STN\377_\\U\377eaW\377`ZM\377dbM\377}}c\377" "dfL\377PN8\377JI2\377OO;\377TLA\377G<5\377;0(\377;.&\377RJB\377JEC\377" "GDC\377EFF\377)\"\36\377\31\16\11\377\40\25\20\3770\37\24\3777\40\21" "\3773\36\21\377/\34\20\377+\31\15\377&\25\12\377.\34\20\377A)\30\377" "8\33\13\377*\17\6\377/\24\10\377&\15\2\377!\12\1\377\40\11\1\377\36\6" "\1\377\31\5\1\377\31\6\1\377\30\5\1\377\30\4\1\377\27\3\1\377%\24\16" "\3772%\26\377\34\16\4\377\23\4\1\377\30\11\3\377\35\14\2\377\32\6\0\377" "\30\5\1\377\27\4\0\377\4\23\2\0\377\16\1\0\377\11\0\0\377\4\0\0\377\202" "\3\0\0\377\202\1\0\0\377\212\0\0\0\377\1\2\0\0\377\202\0\0\0\377\13\32" "&!\3773O@\377\34""8#\377\40=&\377%5$\377:8\30\377H6\16\377I6\15\377I" "7\16\377vke\377\257\255\321\377\202\272\272\346\377\1\271\271\345\377" "\202\271\271\344\377\4\264\264\335\377\223\215\235\377eWE\377K8\21\377" "\225I6\15\377\3K8\20\377ynm\377\246\245\314\377\202\254\254\331\377\1" "\251\251\326\377\202\247\247\324\377\11\246\246\324\377\245\245\323\377" "\241\241\317\377\240\240\316\377\241\241\317\377\233\233\312\377\232" "\232\311\377\233\233\312\377\226\226\305\377\202\225\225\304\377\202" "\220\220\277\377\202\217\217\276\377\1\212\212\273\377\202\210\210\270" "\377\202\205\205\265\377\202\200\200\261\377\3\177\177\260\377~~\257" "\377||\256\377\202{{\254\377\15vv\250\377uu\250\377vv\250\377uu\247\377" "qq\244\377pp\243\377pp\242\377nn\241\377ll\237\377jj\235\377ii\234\377" "hh\233\377gg\233\377\202ff\232\377\12dd\230\377cc\227\377bb\226\377a" "a\225\377``\224\377__\223\377]]\221\377\\\\\221\377]]\221\377\\\\\221" "\377\202ZZ\216\377\1XX\215\377\202VV\213\377\3WW\214\377UU\212\377RR" "\210\377\202QQ\206\377\202oo\241\377\1qq\244\377\202rr\244\377\13ss\245" "\377rr\244\377tt\246\377uu\247\377tt\246\377uu\247\377ww\251\377xx\252" "\377ww\251\377vv\250\377zz\253\377\202{{\254\377.||\256\377}}\256\377" "~~\256\377\200\200\260\377\200\200\261\377\200\200\260\377\203\203\263" "\377\202\202\263\377\204\204\263\377\206\206\265\377x~\246\377Pk\212" "\377Ov\225\377Z\200\237\377f\212\247\377r\224\260\377}\236\271\377\210" "\246\277\377\221\256\306\377\231\264\312\377\236\270\314\377\240\273" "\316\377\242\273\317\377\241\273\317\377\237\270\316\377\232\265\313" "\377\224\257\307\377\214\251\302\377\203\243\275\377z\233\266\377o\222" "\257\377e\211\247\377Z\200\237\377Qw\227\377Ro\216\377\203\212\257\377" "\232\233\310\377\231\231\306\377\235\235\312\377\237\237\314\377\235" "\235\314\377\235\235\313\377\237\237\316\377\241\241\317\377\240\240" "\316\377\241\241\317\377\202\242\242\320\377\27\243\243\321\377\242\242" "\320\377\244\244\322\377\233\232\277\377\201y\205\377bTB\377L:\24\377" "I6\15\377K7\15\377J7\15\377I6\15\377Q;\14\377aF\11\377pP\6\377\221g\5" "\377gK\12\377M8\12\377\214d\5\377\202\\\6\377oP\7\377J8\17\377N<\27\377" "M:\24\377\202J7\16\3770J8\17\377L9\21\377N;\23\377M/!\377O\20@\377\\" "\23N\377j\33Y\377w$g\377\204.r\377\217<\177\377\234K\214\377\251]\232" "\377\265o\250\377\302\203\265\377\316\227\303\377\327\251\316\377\337" "\267\327\377\346\305\336\377\353\317\346\377\356\327\352\377\356\331" "\353\377\360\332\354\377\356\327\352\377\354\322\346\377\350\312\342" "\377\344\301\334\377\336\265\325\377\330\252\317\377\321\235\307\377" "\310\216\275\377\300\200\264\377\266q\253\377\254c\240\377\243U\225\377" "\230G\212\377\215;\177\377\203.s\377x$i\377n\34_\377c\26U\377Y\21L\377" "P\15D\377I\13>\377B\12""8\377\77\11""5\377\77\10""5\377\77\11""5\377" ">\11""5\377\202\77\10""6\377\4\77\11""5\377jL_\377\251\246\232\377\253" "\251\235\377\202\252\252\235\377}\241\237\217\377\224\213s\377\217\205" "n\377}s_\377\206zj\377\216\205r\377\211~i\377\205}j\377\210\203t\377" "\205\200p\377\200|l\377~yk\377}yk\377}yl\377|xl\377{wj\377yui\377zvk" "\377}{q\377\203\202{\377\210\210\201\377\214\214\205\377\214\211}\377" "\204ze\377\200q[\377~pY\377~pZ\377\203va\377\211}h\377\202ta\377ylY\377" "vk[\377{rh\377wqh\377pj`\377mg^\377icY\377f`W\377c]T\377a[S\377`[S\377" "ZUM\377FC=\377\77=:\377TQP\377]ZY\377^\\Z\377_][\377[ZX\377A\77=\377" "1,(\3770-$\3773/\40\377DA,\377UQD\377FD2\377=9*\377;6.\37795,\377*'\33" "\377)&\33\377\37\37\23\377\27\32\16\377\27\30\17\377\26\31\20\377#&\40" "\377()#\377,-&\37723,\37745.\377>\77""8\377KKE\377WVN\377`_X\377mjb\377" "mlb\377abT\377LS8\377EK,\377EI-\377SQ4\377ZJ9\377F<3\377MC\77\377PGB" "\377ZRK\377^VP\377YQK\377QJF\3772+&\377\37\26\22\377\33\22\15\377$\32" "\22\377;+\40\377)\27\16\377%\23\7\377(\25\13\377@)\30\377D%\22\377,\17" "\5\377,\21\10\377*\21\5\377#\14\2\377#\12\1\377!\11\1\377\34\5\1\377" "\34\4\0\377\34\6\1\377\32\5\0\377\31\3\0\377\30\6\3\377-\35\25\377+\34" "\20\377\30\10\2\377\25\6\1\377\33\12\3\377\37\13\2\377\33\6\1\377\31" "\3\0\377\25\3\0\377\21\1\0\377\14\1\0\377\10\0\0\377\6\0\0\377\4\0\0" "\377\204\2\0\0\377\1\1\0\0\377\214\0\0\0\377\5#-)\3771B>\377)F0\3778" "@\35\377G7\17\377\203I6\15\377\4I7\16\377tia\377\250\244\303\377\271" "\271\344\377\204\272\272\346\377\202\271\271\344\377\4\270\267\341\377" "\241\236\272\377tib\377P>\33\377\211I6\15\377\16T=\13\377\225i\3\377" "}Y\6\377tS\10\377]C\12\377N9\14\377J7\15\377I6\15\377I6\16\377^N7\377" "\233\230\266\377\253\253\330\377\254\254\331\377\252\252\327\377\202" "\250\250\325\377\2\246\246\324\377\240\240\316\377\202\241\241\317\377" "\1\235\235\313\377\202\234\234\313\377\1\230\230\307\377\202\225\225" "\304\377\3\223\223\302\377\216\216\276\377\220\220\277\377\202\216\216" "\276\377\202\212\212\273\377\1\206\206\267\377\202\205\205\265\377\7" "\203\203\264\377\200\200\261\377~~\257\377\177\177\260\377||\256\377" "zz\253\377xx\252\377\202vv\250\377\1uu\247\377\202ss\245\377\14pp\243" "\377pp\242\377pp\243\377nn\241\377ll\237\377kk\236\377ii\234\377gg\233" "\377hh\233\377gg\233\377ff\231\377cc\227\377\202bb\226\377\1``\224\377" "\203]]\221\377\4[[\217\377YY\216\377[[\217\377WW\214\377\203VV\213\377" "\1SS\210\377\202RR\210\377\202QQ\206\377\202PP\205\377\4vv\250\377uu" "\250\377ww\251\377yy\253\377\202xx\252\377\1yy\253\377\202zz\253\377" "\4{{\255\377||\256\377{{\255\377||\256\377\202}}\256\377\202\177\177" "\260\377\204\200\200\261\377)\203\203\264\377\205\205\265\377\204\204" "\264\377\207\207\267\377\210\210\267\377\213\213\272\377\206\210\265" "\377Ym\213\377Io\217\377Sz\231\377_\204\243\377k\217\254\377w\231\264" "\377\202\242\274\377\215\252\302\377\226\261\310\377\235\267\315\377" "\242\273\320\377\245\275\322\377\246\276\323\377\245\275\322\377\242" "\273\320\377\235\267\315\377\227\262\311\377\217\254\304\377\206\246" "\276\377}\236\270\377s\225\261\377i\214\252\377^\203\242\377Tz\232\377" "Kq\221\377Xo\215\377\222\226\276\377\237\237\314\377\240\240\315\377" "\241\241\316\377\240\240\315\377\236\236\314\377\240\240\315\377\237" "\237\316\377\202\236\236\314\377\6\237\237\316\377\236\236\314\377\232" "\231\303\377\202{\213\377dWI\377K8\21\377\204I6\15\377%rR\10\377\200" "[\7\377oP\6\377{W\3\377\246u\2\377hK\12\377O9\11\377\226j\4\377\201]" "\10\377R<\15\377UD%\377uie\377\233\227\257\377\254\253\321\377\250\246" "\306\377zpl\377Q\77\33\377J8\17\377L9\21\377O;\25\377H\"(\377Q\16C\377" "\\\23N\377i\32X\377v$f\377\203.q\377\217<~\377\234J\213\377\251\\\231" "\377\265n\247\377\302\202\265\377\316\226\302\377\327\250\316\377\336" "\266\326\377\345\304\336\377\351\315\343\377\355\324\350\377\202\355" "\327\351\377\30\355\325\350\377\352\320\345\377\346\311\341\377\343\277" "\333\377\335\264\326\377\327\251\317\377\320\234\307\377\307\215\276" "\377\277~\264\377\265o\251\377\254a\236\377\242S\224\377\227G\212\377" "\215:\177\377\2030u\377x%i\377l\34]\377a\26S\377X\20K\377M\14A\377F\12" "<\377A\11""7\377\77\11""5\377>\10""5\377\202>\11""5\377\203\77\10""6" "\377\21Z4P\377\246\241\227\377\251\250\233\377\251\247\232\377\247\245" "\231\377\245\244\227\377\227\223\200\377\210\201l\377\202yf\377vkY\377" "\205{j\377\206~k\377\205|i\377|uf\377\200zl\377~xk\377zuh\377\202xsg" "\377\33vrf\377vqg\377xsh\377yti\377{vi\377|wj\377\200}q\377\211\207\200" "\377\217\216\210\377\220\215\207\377\210\203t\377\212~i\377\203v^\377" "ykV\377viT\377}o]\377znZ\377qdQ\377i]L\377lbU\377oi`\377lf^\377hbZ\377" "e^U\377c]T\377b\\S\377b]T\377\202`[S\377+[VN\377EC<\377A\77;\377QNM\377" "><;\377$!\37\377'\40\34\377OJC\377HB<\377[VQ\377TPH\377:;(\37714\36\377" "2/$\3771,'\37795)\37722\40\377\40#\22\377\31\35\20\377\37%\23\377\33" "!\20\377\21\25\11\377\24\26\15\377\26\26\20\377\21\24\14\377\21\25\14" "\377\25\31\17\377*)!\377FB8\377OND\377QUO\377V^Z\377]ea\377ckh\377`h" "Y\377`dO\377RT9\377SU;\377YRF\377QOO\377QML\377YSO\377^UO\377\202_UM" "\377#I\77:\377,!\33\377\"\31\25\377\37\31\26\377\"\32\26\377$\32\21\377" "\35\15\10\3778#\26\377O1\32\3779\30\10\377.\21\6\3773\25\5\377+\16\2" "\377%\12\1\377\"\10\1\377\35\6\1\377\33\4\1\377\32\3\1\377\27\3\1\377" "\31\3\1\377\31\2\0\377\37\15\11\3773%\30\377\"\22\10\377\24\3\0\377\25" "\6\1\377\32\12\3\377\35\7\1\377\33\5\0\377\30\3\0\377\25\2\1\377\25\2" "\0\377\14\1\0\377\10\1\0\377\6\0\0\377\205\2\0\0\377\1\1\0\0\377\215" "\0\0\0\377\3\17\20\16\377)#\22\377E6\20\377\207I6\15\377\4L:\23\377j" "]N\377\232\224\250\377\267\267\341\377\204\272\272\346\377\202\271\271" "\344\377\4\270\270\344\377\254\253\317\377\205|\201\377XH+\377\204I6" "\15\377\17J7\15\377dH\10\377vT\7\377X@\13\377T=\13\377vT\6\377xU\5\377" "hJ\10\377\204^\6\377N:\14\377R@\37\377\201y\201\377\252\252\327\377\253" "\253\330\377\254\254\331\377\202\250\250\325\377\4\247\247\324\377\244" "\244\321\377\242\242\320\377\241\241\317\377\202\235\235\313\377\7\233" "\233\312\377\232\232\310\377\232\232\311\377\225\225\304\377\224\224" "\303\377\225\225\304\377\220\220\277\377\202\216\216\276\377\202\212" "\212\272\377\7\207\207\267\377\206\206\267\377\203\203\264\377\202\202" "\263\377\201\201\262\377\177\177\260\377~~\257\377\202{{\254\377\202" "zz\253\377\2uu\250\377uu\247\377\202tt\246\377\4pp\243\377qq\244\377" "oo\241\377mm\240\377\202kk\236\377\3ii\234\377hh\233\377ff\231\377\203" "cc\227\377\2bb\226\377__\223\377\202^^\222\377\1\\\\\221\377\202[[\220" "\377\2ZZ\216\377XX\215\377\202WW\214\377\1UU\212\377\203VV\213\377\202" "RR\210\377\202QQ\207\377\11QQ\206\377PP\205\377NN\204\377{{\254\377{" "{\255\377||\256\377~~\257\377\177\177\260\377\200\200\261\377\202\201" "\201\262\377\2\202\202\263\377\203\203\264\377\202\204\204\264\377\2" "\205\205\265\377\206\206\267\377\202\207\207\267\377\202\211\211\271" "\377\1\212\212\272\377\202\212\212\273\377\22\213\213\274\377\217\217" "\277\377\215\215\274\377\216\216\275\377\221\221\277\377\222\223\277" "\377mx\232\377Gj\211\377Ms\224\377X~\235\377c\210\246\377p\223\257\377" "}\235\267\377\207\246\277\377\222\256\306\377\232\265\313\377\241\272" "\317\377\246\276\322\377\202\251\300\324\377\21\250\277\323\377\245\275" "\322\377\240\272\317\377\232\265\313\377\222\257\306\377\212\250\300" "\377\200\240\273\377v\230\264\377l\217\254\377a\206\245\377W|\234\377" "Mt\224\377Fl\214\377du\223\377\240\243\315\377\250\250\325\377\247\247" "\324\377\202\244\244\322\377\1\245\245\321\377\202\241\241\317\377\4" "\235\234\307\377\204~\221\377bUE\377N<\30\377\204I6\15\377\17N:\15\377" "^D\12\377kM\10\377zW\10\377V\77\14\377\207a\10\377\242s\2\377iK\4\377" "\226k\6\377jL\13\377R\77\34\377i]S\377\213\206\232\377\245\244\315\377" "\254\254\331\377\202\257\257\334\377\27\264\264\340\377\264\263\337\377" "\250\246\306\377vkd\377Q\77\32\377O9\27\377E\27.\377Q\16C\377\\\23N\377" "h\31W\377u#e\377\202-q\377\216;~\377\233I\212\377\250[\230\377\265m\246" "\377\301\201\263\377\315\224\301\377\326\246\315\377\336\264\325\377" "\344\302\335\377\351\314\342\377\354\323\346\377\202\355\326\350\377" "\30\354\324\347\377\352\316\345\377\347\307\340\377\342\277\333\377\335" "\263\326\377\327\250\317\377\320\232\306\377\306\212\274\377\276|\262" "\377\264m\247\377\252_\236\377\240Q\223\377\226E\210\377\2148~\377\203" "/t\377w%i\377m\35_\377`\26T\377V\20I\377L\14\77\377D\11:\377>\7""4\377" "=\7""3\377>\7""4\377\202\77\10""5\377\202\77\7""5\3771\77\10""5\377K" "\37A\377\232\222\214\377\242\240\223\377\242\237\221\377\242\236\222" "\377\241\235\221\377\234\232\214\377\221\214y\377\204zd\377xo[\377nd" "S\377\200ue\377~we\377zrb\377vn`\377ysf\377upc\377snb\377ql`\377qla\377" "rmb\377snc\377tod\377wqf\377{vi\377\177zl\377\204~r\377\210\203x\377" "\216\213\202\377\225\221\211\377\223\217\204\377\213\203p\377\202wa\377" "vjT\377i\\I\377n`N\377qdS\377j_M\377dXH\377`VI\377b\\S\377b]V\377c]T" "\377c\\T\377b\\S\377a\\S\377`[R\377`[S\377\202_ZS\377PZVN\377B@:\377" "$#\37\377(#\40\377B=9\377VRN\377YVR\377WRO\377LG>\377EA3\37798+\3773" "2&\3770.$\377)+\34\377\30\35\15\377\26\32\14\377\24\32\13\377\25\32\13" "\377\27\34\14\377\22\27\11\377\30\33\16\377\27\31\17\377\22\22\12\377" "\22\23\12\377\25\30\15\377,,$\377GC9\377PLA\377;:2\37731,\3771-(\377" "3-%\377=8/\377NR\77\377MS9\377KI2\377>5$\377>1)\377JC>\377PHE\377C;6" "\377D:5\377LB>\377WNG\377B:5\3770)$\377,$!\377.'%\3770)$\377.\36\26\377" "D#\21\3773\22\4\3777\27\7\3779\30\4\3770\21\2\377)\14\1\377\"\10\1\377" "\30\3\1\377\27\3\1\377\26\2\1\377\26\1\0\377\25\1\0\377\25\3\2\377'\30" "\20\377/!\21\377\32\12\2\377\22\3\1\377\22\6\2\377\32\11\2\377\32\4\0" "\377\30\2\0\377\27\2\0\377\25\2\0\377\23\2\1\377\16\1\0\377\11\0\0\377" "\7\0\0\377\4\0\0\377\3\0\0\377\4\0\0\377\202\2\0\0\377\1\1\0\0\377\214" "\0\0\0\377\3\1\1\0\377\27\21\4\377<-\12\377\213I6\15\377\5J8\20\377]" "M4\377\212\202\213\377\255\253\321\377\267\267\343\377\202\264\264\341" "\377\6\264\264\340\377\262\262\336\377\263\263\337\377\257\256\331\377" "\200w{\377I6\16\377\203I6\15\377\24O:\13\377\211a\4\377~Y\5\377wU\5\377" "~Z\6\377lM\7\377yV\6\377R<\14\377J7\17\377k^T\377\242\240\304\377\252" "\252\327\377\251\251\326\377\252\252\327\377\246\246\324\377\245\245" "\323\377\246\246\324\377\242\242\320\377\241\241\317\377\237\237\316" "\377\202\233\233\312\377\1\232\232\311\377\203\225\225\304\377\1\221" "\221\301\377\202\220\220\277\377\3\214\214\274\377\212\212\273\377\211" "\211\271\377\202\207\207\267\377\3\205\205\265\377\203\203\264\377\200" "\200\261\377\202\177\177\260\377\3{{\254\377yy\253\377xx\252\377\202" "uu\250\377\6tt\246\377ss\245\377pp\243\377oo\241\377nn\241\377mm\240" "\377\202kk\236\377\7jj\235\377ii\234\377hh\233\377ff\231\377ff\232\377" "ff\231\377ee\230\377\202bb\226\377\5aa\224\377``\224\377aa\224\377__" "\223\377\\\\\221\377\202ZZ\216\377\1YY\216\377\203WW\214\377\4SS\210" "\377RR\210\377QQ\207\377RR\210\377\202PP\205\377\202NN\204\377\1LL\201" "\377\202KK\201\377\5\177\177\260\377\200\200\261\377\201\201\262\377" "\202\202\263\377\204\204\264\377\203\205\205\265\377\2\205\205\266\377" "\206\206\267\377\202\210\210\270\377\2\211\211\271\377\212\212\272\377" "\202\212\212\273\377\2\214\214\274\377\215\215\275\377\202\217\217\276" "\377,\221\221\300\377\221\221\301\377\225\225\303\377\226\226\304\377" "\230\230\306\377\231\231\306\377\203\211\257\377Jh\206\377Gn\217\377" "Rx\230\377]\203\241\377j\215\252\377v\230\264\377\203\242\273\377\215" "\253\302\377\227\263\311\377\237\271\316\377\246\276\322\377\252\301" "\325\377\255\303\326\377\255\304\327\377\254\302\326\377\250\277\323" "\377\243\274\320\377\235\270\314\377\225\261\310\377\215\252\303\377" "\203\242\275\377z\232\266\377n\222\255\377c\210\247\377Y\200\236\377" "Nv\225\377Em\216\377Cf\205\377x\204\244\377\254\256\331\377\257\257\333" "\377\256\256\332\377\254\254\330\377\250\247\321\377\212\204\225\377" "od\\\377Q@\36\377\202I6\15\377\24U>\14\377lN\12\377hJ\10\377tR\4\377" "\223h\5\377ZA\11\377\227k\2\377\233n\4\377ZB\14\377Q<\14\377I6\15\377" "gJ\12\377V\77\14\377M;\26\377~v\203\377\234\233\302\377\241\241\317\377" "\244\244\321\377\245\245\323\377\247\247\324\377\202\252\252\327\377" "\202\257\257\334\3771\264\264\340\377\265\265\340\377\246\243\301\377" "q_]\377C\21""4\377P\16B\377Z\22M\377g\31V\377s\"c\377\201,p\377\2159" "|\377\231G\210\377\246Y\226\377\263k\244\377\277~\262\377\313\222\277" "\377\324\244\313\377\335\263\324\377\343\300\334\377\350\312\341\377" "\352\320\345\377\355\324\347\377\355\325\350\377\353\323\347\377\351" "\315\344\377\346\305\340\377\341\275\332\377\334\261\325\377\326\245" "\315\377\315\227\304\377\304\210\273\377\274y\260\377\262j\245\377\250" "\\\232\377\236N\221\377\224B\206\377\2136|\377\200-r\377v$g\377k\35]" "\377`\26R\377U\20H\377K\14\77\377D\11""9\377\77\10""5\377=\7""3\377=" "\6""3\377>\10""4\377\77\10""5\377\203>\7""5\3774D\23:\377\213\200}\377" "\231\227\212\377\232\227\212\377\233\227\212\377\233\227\211\377\230" "\225\207\377\225\221\203\377\210\202o\377|s\\\377mfQ\377k`M\377xn_\377" "wo`\377pj[\377oi]\377sma\377pk_\377ni^\377mg]\377nh]\377oi^\377pj`\377" "smb\377wrf\377}wk\377\204~r\377\214\205x\377\220\211|\377\222\212\177" "\377\223\217\205\377\227\224\211\377\217\211{\377\202ye\377wlY\377fZ" "G\377^RB\377_VH\377\\TG\377RK@\377JD<\377F\77""7\377OF<\377]VL\377_Y" "O\377`ZR\377_YP\377_ZQ\377\\WO\377^ZR\377_[T\377\\XR\377\202ZVP\377I" "ZUQ\377ZWS\377YVR\377VQN\377OJH\377A=9\377A;6\377;5/\37731'\377$%\32" "\377!%\24\377##\30\377\30\32\16\377\27\33\14\377\14\21\4\377\15\20\5" "\377\22\25\12\377\23\30\13\377\16\21\6\377\17\21\7\377\32\33\20\377+" "*\34\377'(\33\377)&\33\377\40\30\20\377#\34\25\377(\40\33\377+#\36\377" ".&\36\377/\40\23\377,\32\15\377/\35\17\377,\31\12\377+\25\10\3773\37" "\20\377>)\33\377/\40\30\377'\33\21\377\34\22\13\377+\34\24\377H>5\377" "TRP\377R]h\377CBG\377-%\40\377%\35\31\377$\31\23\377/\30\11\3776\30\5" "\3777\"\17\377+\27\13\377\37\6\0\377\32\3\0\377\26\2\0\377\22\1\1\377" "\22\2\1\377\23\1\0\377\27\7\5\377.!\25\377(\30\11\377\22\5\0\377\16\3" "\1\377\24\6\2\377\32\6\1\377\27\2\0\377\24\2\0\377\24\1\0\377\23\1\0" "\377\20\1\0\377\12\1\0\377\7\0\0\377\10\0\0\377\7\0\0\377\202\4\0\0\377" "\2\3\0\0\377\1\0\0\377\215\0\0\0\377\2\21\14\3\3776(\11\377\220I6\15" "\377\11RA\37\377vkh\377\234\231\271\377\255\254\331\377\255\255\332\377" "\253\253\330\377\230\224\261\377bTB\377J7\17\377\206I6\15\377\36cG\11" "\377\202]\6\377lM\7\377nO\10\377I6\15\377YI-\377\214\206\231\377\247" "\247\324\377\250\250\325\377\246\246\324\377\243\243\321\377\245\245" "\323\377\242\242\320\377\240\240\316\377\241\241\317\377\237\237\316" "\377\234\234\313\377\233\233\312\377\232\232\311\377\226\226\305\377" "\225\225\304\377\224\224\303\377\220\220\300\377\220\220\277\377\214" "\214\274\377\215\215\275\377\211\211\271\377\206\206\267\377\205\205" "\266\377\202\202\263\377\202\200\200\261\377\22\177\177\260\377}}\256" "\377||\256\377yy\253\377zz\253\377yy\253\377xx\252\377uu\250\377ss\245" "\377uu\247\377tt\246\377qq\244\377pp\242\377oo\241\377nn\241\377ll\237" "\377kk\236\377ll\237\377\202hh\233\377\5ff\231\377ee\230\377ff\231\377" "cc\227\377aa\225\377\202__\223\377\203]]\221\377\202[[\217\377\1ZZ\216" "\377\203WW\214\377\202VV\213\377\4WW\214\377VV\213\377RR\210\377SS\210" "\377\202RR\210\377\1SS\210\377\202QQ\207\377\3QQ\206\377OO\205\377\201" "\201\262\377\202\203\203\264\377\202\205\205\265\377\203\207\207\267" "\377\2\211\211\271\377\212\212\272\377\202\213\213\273\3771\214\214\274" "\377\216\216\276\377\220\220\277\377\220\220\300\377\221\221\301\377" "\223\223\302\377\224\224\303\377\225\225\304\377\226\226\304\377\226" "\226\305\377\232\232\310\377\233\233\310\377\235\235\311\377\223\227" "\301\377Vk\211\377Ci\212\377Ks\223\377W}\235\377c\210\245\377p\222\256" "\377|\235\270\377\210\246\277\377\222\257\306\377\234\267\314\377\244" "\274\321\377\252\302\325\377\257\304\327\377\260\305\330\377\261\306" "\331\377\257\305\327\377\253\302\325\377\245\276\322\377\237\271\316" "\377\230\263\311\377\217\254\304\377\205\244\276\377|\235\267\377q\223" "\260\377g\212\251\377\\\202\240\377Rx\230\377Go\220\377\77f\207\377D" "c\201\377\215\225\270\377\257\257\326\377\234\230\260\377wlg\377RA\36" "\377\202J7\16\377\202I6\15\377\13ZB\13\377xV\5\377\253y\3\377\177[\11" "\377qQ\10\377hK\11\377H6\15\377H5\14\377_D\10\377\210a\10\377U>\14\377" "\203I6\15\377\4L:\24\377tjj\377\236\234\302\377\244\244\322\377\202\246" "\246\324\377\1\247\247\324\377\202\252\252\327\3770\256\256\332\377\257" "\257\334\377\262\262\336\377\265\265\340\377\267\267\342\377\242\224" "\301\377J\24B\377P\16C\377Z\22K\377e\30U\377r\40a\377\177*n\377\2147" "z\377\227D\207\377\244V\224\377\261g\242\377\275{\260\377\310\216\274" "\377\323\241\311\377\333\260\322\377\342\275\332\377\346\307\340\377" "\351\315\343\377\353\321\346\377\353\322\347\377\352\320\345\377\350" "\313\343\377\345\304\336\377\337\271\331\377\333\257\323\377\324\243" "\314\377\314\224\302\377\303\204\270\377\272v\256\377\260g\243\377\247" "Y\230\377\234K\216\377\222@\203\377\2104y\377~+p\377t\"e\377i\33\\\377" "_\25Q\377U\21H\377K\15\77\377D\12""9\377\77\10""5\377>\10""4\377\202" "=\10""4\377\2>\10""5\377>\7""5\377\202>\7""4\377u@\15""6\377~op\377\220" "\216\201\377\224\220\203\377\225\222\204\377\223\220\203\377\221\216" "\200\377\217\213}\377\213\207y\377\200zi\377wnZ\377haN\377d[J\377ogX" "\377leV\377haS\377jcX\377ni^\377kf[\377jdZ\377mf[\377nh]\377qj`\377t" "nc\377wqd\377{uh\377\201{n\377\211\202u\377\217\207{\377\222\214\177" "\377\226\217\202\377\225\217\202\377\225\220\205\377\224\216\204\377" "\204~n\377wm[\377aYJ\377PI=\377TJ\77\377[QC\377[RE\377VMA\377MD9\377" "PG<\377ZTL\377\\VM\377^XO\377^XN\377^XO\377RNG\377RNI\377VRL\377XTN\377" "XTO\377TRN\377VSP\377VTP\377USP\377PNK\377JGA\377\77:1\37795/\37720$" "\377-)\40\377\40#\22\377\37\40\23\377\32\37\17\377\26\34\15\377\26\30" "\20\377\20\20\15\377\23\23\17\377\35\37\30\377\25\27\17\377\21\24\11" "\377\36\37\21\377\33\40\22\377+.#\377/,\"\377\32\22\13\377\26\17\12\377" "\"\30\20\377+\35\21\377(\30\12\377)\27\10\377,\30\13\377-\31\14\3771" "\35\17\3778\"\24\3770\33\15\377-\31\12\377-\27\11\377+\27\11\377*\25" "\7\377)\24\4\377(\26\12\377PLI\377Nj|\3778BH\3777<<\3779>=\377421\377" ".,'\377;\77""2\377EWA\377#\34\20\377\40\21\11\377\33\11\4\377\23\12\12" "\377\15\33$\377\10\31#\377\33\33\35\3770\40\22\377\37\15\3\377\16\2\0" "\377\14\2\0\377\24\5\1\377\27\4\1\377\202\24\1\0\377\12\20\1\0\377\17" "\0\0\377\13\0\0\377\11\0\0\377\10\0\0\377\11\0\0\377\7\0\0\377\6\0\0" "\377\3\0\0\377\2\0\0\377\205\0\0\0\377\1\1\0\0\377\204\0\0\0\377\14\1" "\0\0\377\2\0\0\377\0\0\0\377\12\10\2\377/\"\10\377G5\15\377I6\15\377" "L9\22\377n`S\377{qo\377]N5\377J7\17\377\215I6\15\377\5L:\24\377fYK\377" "\202z\203\377rgc\377M;\25\377\211I6\15\377\5J6\15\377J7\15\377L9\22\377" "zpr\377\244\244\315\377\202\247\247\324\377\1\246\246\324\377\202\243" "\243\321\377\202\237\237\316\377\1\234\234\313\377\202\232\232\311\377" "\1\227\227\306\377\202\225\225\304\377\2\222\222\301\377\221\221\301" "\377\202\217\217\276\377\7\215\215\275\377\213\213\273\377\212\212\272" "\377\210\210\270\377\206\206\267\377\204\204\264\377\205\205\265\377" "\202\200\200\261\377\11}}\256\377~~\257\377||\256\377ww\251\377yy\253" "\377uu\250\377uu\247\377tt\246\377pp\243\377\204nn\241\377\202ii\234" "\377\5gg\233\377hh\233\377ii\234\377ff\232\377ee\230\377\202cc\227\377" "\7ee\230\377cc\227\377aa\225\377aa\224\377``\224\377__\223\377``\224" "\377\202]]\221\377\5__\223\377]]\221\377ZZ\216\377[[\217\377ZZ\216\377" "\202WW\214\377\5YY\216\377VV\213\377SS\210\377VV\213\377UU\212\377\202" "RR\210\377\202QQ\207\377\15QQ\206\377PP\205\377\203\203\264\377\205\205" "\265\377\206\206\267\377\207\207\267\377\211\211\271\377\212\212\272" "\377\212\212\273\377\213\213\273\377\214\214\274\377\216\216\276\377" "\217\217\276\377\202\220\220\300\377\2\221\221\301\377\223\223\302\377" "\203\225\225\304\3776\230\230\307\377\232\232\307\377\232\232\310\377" "\233\233\310\377\235\235\313\377\240\240\315\377\235\237\312\377jw\227" "\377Ae\205\377Gm\217\377Qx\227\377]\202\241\377i\215\252\377v\227\263" "\377\202\242\274\377\216\253\303\377\231\265\312\377\242\274\320\377" "\251\302\324\377\257\306\330\377\262\310\331\377\264\310\332\377\263" "\311\331\377\261\307\331\377\255\304\327\377\247\300\323\377\242\273" "\317\377\231\264\313\377\220\255\305\377\207\246\277\377~\236\270\377" "r\225\261\377h\214\252\377]\203\241\377Sy\232\377Iq\221\377@h\211\377" "8^~\377>Tf\377RI4\377M:\22\377L9\21\377K8\20\377J8\17\377J7\16\377W@" "\13\377fI\11\377sR\7\377|Y\7\377O9\11\377\202\\\4\377\252y\4\377qR\12" "\377M8\15\377\211I6\15\377\3RA\40\377~ty\377\246\245\315\377\202\256" "\256\332\377\2\261\261\336\377\260\260\335\377\202\264\264\340\377-\267" "\267\343\377\270\270\343\377\272\272\344\377\227\205\261\377H\21@\377" "P\21E\377Z\24O\377d\31V\377p\37_\377}(m\377\2114x\377\225C\205\377\242" "R\222\377\256d\237\377\273w\255\377\305\212\271\377\321\234\306\377\331" "\254\320\377\337\270\327\377\345\303\335\377\350\312\341\377\351\315" "\343\377\352\316\344\377\351\314\342\377\347\310\340\377\343\300\334" "\377\336\267\327\377\332\255\322\377\323\237\311\377\312\221\300\377" "\301\201\266\377\270s\254\377\256d\241\377\244V\226\377\232I\214\377" "\220=\201\377\2062x\377})m\377q\40b\377g\32Y\377\\\24O\377S\20G\377I" "\14>\377B\11""8\377>\10""4\377\202=\7""4\377\202=\10""3\377\6=\7""3\377" ">\7""4\377>\6""4\377>\12""5\377p^d\377\206\204x\377\202\213\207z\377" "\15\213\207{\377\210\204x\377\206\203w\377\203\177s\377~{o\377uo`\377" "ogU\377a[J\377WQC\377cZM\377e]P\377`YK\377b[P\377\202jdZ\377_ke[\377" "lf[\377pj^\377unb\377yrf\377}ui\377\177zl\377|zp\377\210\204x\377\221" "\212}\377\224\214~\377\224\215\177\377\224\216\200\377\223\214\200\377" "\217\212\200\377zuh\377g`T\377fZM\377j_P\377bZM\377\\SH\377VND\377PI" "\77\377KC9\377H@4\377RK\77\377VQF\377[VL\377ZUK\377PK>\377NH;\377JE;" "\377HD<\377KGA\377LHB\377JHC\377IHF\37720.\377\35\31\27\377%\40\27\377" "72&\37795'\377=:0\37753%\37704\40\377\26\36\11\377\40#\17\377&'\36\377" "11.\377\32\32\25\377%#\37\377\34\33\32\377\33\31\20\377\40!\25\377\34" "\37\25\377\24\26\14\377\31\26\14\377\26\20\7\377\33\21\11\377#\26\13" "\377#\24\10\377%\23\10\377'\25\10\377'\25\7\377,\30\12\3774\40\23\377" "0\33\15\377,\27\12\377,\25\11\377%\20\3\377%\17\2\377%\20\2\377%\17\4" "\3772\35\20\377M\77)\377IJ0\3774Q7\3778h[\377Cl[\377;UF\377&.#\377AT" "=\377NkN\3778R;\377/E0\377)F/\3770@1\377#$\35\377!!\33\377%)*\377..-" "\377!\25\14\377\26\10\3\377\21\5\2\377\23\4\1\377\202\23\1\0\377\6\22" "\1\0\377\20\1\0\377\17\1\0\377\11\0\0\377\4\0\0\377\5\0\0\377\202\6\0" "\0\377\1\4\0\0\377\202\3\0\0\377\1\1\0\0\377\206\0\0\0\377\1\1\0\0\377" "\202\0\0\0\377\17\1\0\0\377\4\0\0\377\6\4\1\377&\34\7\377E3\14\377I6" "\15\377I7\16\377dV@\377\236\231\257\377\271\270\343\377\267\267\343\377" "\265\264\337\377\226\221\246\377i[L\377K9\22\377\232I6\15\377\3_Q=\377" "\226\223\262\377\245\245\323\377\202\246\246\324\377\2\243\243\321\377" "\244\244\321\377\202\241\241\317\377\1\240\240\316\377\203\234\234\313" "\377\1\227\227\306\377\202\225\225\304\377\14\220\220\300\377\216\216" "\276\377\217\217\276\377\214\214\274\377\211\211\271\377\207\207\267" "\377\205\205\265\377\206\206\267\377\203\203\264\377\201\201\262\377" "\177\177\260\377\200\200\261\377\202~~\257\377\202||\256\377\2{{\255" "\377yy\253\377\202xx\252\377\1ww\251\377\202uu\247\377\202tt\246\377" "\4pp\243\377pp\242\377pp\243\377oo\241\377\202mm\240\377\203kk\236\377" "\203hh\233\377\4cc\227\377dd\230\377ff\231\377cc\227\377\202aa\224\377" "\202]]\221\377\2__\223\377]]\221\377\202[[\220\377\10ZZ\216\377XX\215" "\377YY\216\377XX\215\377WW\214\377VV\213\377WW\214\377VV\213\377\202" "RR\210\377\5SS\210\377RR\210\377QQ\207\377PP\205\377\203\203\264\377" "\202\205\205\265\377\2\211\211\271\377\212\212\272\377\202\212\212\273" "\377\5\213\213\273\377\216\216\276\377\217\217\276\377\220\220\277\377" "\221\221\301\377\202\223\223\302\377\1\224\224\303\377\203\230\230\307" "\377\2\232\232\307\377\234\234\313\377\202\235\235\313\3771\240\240\314" "\377\243\243\317\377\201\211\255\377Cc\201\377Bi\212\377Ks\223\377W}" "\235\377c\210\246\377p\223\257\377|\235\270\377\211\247\300\377\225\261" "\307\377\237\271\316\377\247\300\323\377\257\305\330\377\263\311\332" "\377\266\313\333\377\267\314\333\377\266\313\333\377\263\311\332\377" "\257\305\330\377\251\301\324\377\243\274\320\377\233\265\314\377\221" "\256\306\377\210\247\300\377\177\237\271\377s\226\262\377j\215\253\377" "^\204\242\377Tz\231\377Ho\216\377=e\203\3774\\y\377-Qm\3773@@\377J<\32" "\377vU\15\377bH\16\377jM\14\377P:\14\377\252x\2\377U=\10\377K7\13\377" "|X\4\377\202]\5\377L8\14\377aG\12\377L8\15\377\214I6\15\3774VF'\377\210" "\200\211\377\262\261\331\377\267\267\343\377\271\271\344\377\270\270" "\344\377\271\271\345\377\271\271\344\377\273\273\346\377\273\272\346" "\377\217z\246\377G\17\77\377N\20E\377Y\24O\377d\31W\377n\35]\377z'j\377" "\2071u\377\222\77\202\377\237N\216\377\253`\234\377\267r\251\377\303" "\204\266\377\316\227\303\377\326\247\315\377\335\263\324\377\343\276" "\333\377\346\306\337\377\350\312\342\377\350\313\342\377\347\312\341" "\377\345\304\336\377\342\275\332\377\335\263\324\377\327\250\316\377" "\321\234\307\377\311\215\276\377\300\177\264\377\266o\251\377\254a\236" "\377\242S\224\377\230F\211\377\216:\177\377\204/u\377z'k\377n\36`\377" "d\30V\377Z\23M\377P\17E\377H\13=\377A\11""7\377=\10""4\377\203=\7""4" "\377\203=\6""4\377Q=\6""3\377>\10""3\377_JS\377ywl\377~{o\377\202~r\377" "\201~q\377\177|p\377}zo\377{wl\377yui\377tpe\377faS\377d\\L\377VO\77" "\377IA4\377VL@\377XN>\377UK=\377[SF\377gaW\377lf[\377mg]\377qj_\377w" "nc\377|th\377}wk\377mj`\377aZL\377smc\377\205\201z\377\222\214\200\377" "\225\215\200\377\226\217\201\377\224\215\200\377\214\207{\377zuh\377" "sla\377oh[\377haV\377a[Q\377ZTJ\377RJ\77\377MC6\377J>/\377G;,\377E;-" "\377>9&\377\77;#\37774\33\377>6\"\377C.\36\377B9+\377>9-\377>90\377:" "60\377B=6\377;<9\377797\377(*,\377\34\34\35\377\27\24\23\377\27\23\17" "\377\33\26\17\377/+\37\377QM>\37704\40\377\27\37\11\377\34#\22\377\"" ")\30\377\25\34\16\377\24\30\12\377\36\34\20\377\34\32\16\377\25\22\11" "\377\27\21\12\377\25\15\7\377\32\20\10\377%\30\16\377#\26\12\377\40\23" "\7\377\202\"\23\10\377&%\24\12\377-\34\20\377/\33\16\377)\23\11\377+" "\27\10\377'\20\3\377&\20\2\377#\16\2\377#\14\2\377+\25\11\377A(\26\377" "T-\26\377J$\17\37790&\377MkY\377*GB\377)D=\377-MI\377%B4\377$;$\377*" "C*\377\77_M\377:]<\377.S+\3772S3\377'D)\377\40""7!\377#/!\377\40\"\34" "\377$#\37\377)!\35\377\"\22\15\377\26\5\2\377\17\1\0\377\14\0\0\377\13" "\0\0\377\16\1\0\377\7\0\0\377\202\2\0\0\377\202\4\0\0\377\202\3\0\0\377" "\1\2\0\0\377\202\1\0\0\377\210\0\0\0\377\4\1\0\0\377\6\2\0\377\37\26" "\5\377B0\13\377\202I6\15\377\3P>\33\377\222\213\231\377\270\267\342\377" "\202\272\272\346\377\202\271\271\344\377\5\267\267\343\377\266\266\341" "\377\243\240\276\377vkf\377Q\77\35\377\226I6\15\377\5P\77\35\377\207" "\200\217\377\244\243\320\377\244\244\322\377\245\245\323\377\202\241" "\241\317\377\1\240\240\316\377\202\236\236\314\377\1\233\233\312\377" "\202\232\232\311\377\1\230\230\307\377\202\226\226\305\377\10\222\222" "\301\377\224\224\303\377\221\221\301\377\220\220\277\377\217\217\276" "\377\216\216\276\377\217\217\276\377\212\212\273\377\203\212\212\272" "\377\1\205\205\266\377\202\205\205\265\377\202\202\202\263\377\2\200" "\200\261\377\177\177\260\377\202||\256\377\2{{\254\377zz\253\377\202" "ww\251\377\2vv\250\377tt\246\377\202qq\244\377\3pp\242\377qq\244\377" "nn\241\377\202ll\237\377\2kk\236\377jj\235\377\202ii\234\377\202hh\233" "\377\202ee\230\377\6cc\227\377aa\225\377bb\226\377cc\227\377aa\225\377" "__\223\377\203]]\221\377\1[[\217\377\202ZZ\216\377\1XX\215\377\203WW" "\214\377\2VV\213\377UU\212\377\203RR\210\377\3QQ\207\377QQ\206\377NN" "\204\377\202\205\205\265\377\1\206\206\267\377\202\211\211\271\377\202" "\212\212\272\377\1\213\213\273\377\202\216\216\276\377\202\217\217\276" "\377\5\221\221\301\377\220\220\300\377\220\220\277\377\224\224\303\377" "\225\225\304\377\202\226\226\304\3771\232\232\310\377\235\235\313\377" "\234\234\312\377\236\237\314\377\220\225\275\377Lf\203\377>e\207\377" "Fn\217\377Ry\230\377^\203\242\377j\216\253\377x\230\264\377\204\243\275" "\377\220\255\305\377\233\266\313\377\245\276\322\377\255\304\327\377" "\263\311\332\377\267\314\333\377\272\315\335\377\272\316\335\377\270" "\315\334\377\265\312\332\377\260\306\330\377\252\302\325\377\244\275" "\321\377\233\266\314\377\222\256\306\377\210\247\300\377\177\237\271" "\377t\226\261\377h\214\250\377\\\200\235\377Qw\223\377Fm\212\377=d\202" "\3775\\z\377-Tq\377'Ia\3779<0\377pS\17\377\255|\5\377\223i\11\377P;\15" "\377wU\10\377|X\5\377jL\10\377bG\12\377L8\14\377\220I6\15\377\4I7\16" "\377\\L1\377\220\211\226\377\267\267\341\377\203\272\272\346\377,\273" "\273\346\377\273\272\346\377\210q\235\377E\15<\377J\15\77\377T\20G\377" "^\24P\377k\33Z\377w$g\377\204.r\377\217<\177\377\234J\214\377\250[\231" "\377\263l\245\377\300~\262\377\312\221\277\377\323\241\311\377\332\256" "\321\377\337\270\327\377\344\300\334\377\345\305\336\377\346\307\337" "\377\345\305\336\377\344\300\334\377\337\270\327\377\333\257\322\377" "\325\244\313\377\316\227\303\377\305\211\272\377\275{\261\377\263l\246" "\377\251^\234\377\240O\221\377\225C\206\377\2147|\377\201.r\377w%h\377" "k\34^\377a\26T\377W\22K\377M\15B\377E\12;\377\77\11""5\377>\10""4\377" "\202=\7""4\377\1=\7""3\377\203=\6""3\377y>\6""3\377=\10""3\377V\77J\377" "feY\377lj^\377soc\377wsh\377urg\377vrg\377urg\377rnd\377plb\377lh^\377" "c^P\377^VF\377PI9\377@8*\377JA7\377TK=\377XM=\377[SF\377haX\377oja\377" "rla\377vnd\377|ti\377\201zm\377zte\377f^N\377[RC\377b`]\377~\204\203" "\377\214\213\204\377\231\221\205\377\230\217\204\377\223\215\201\377" "\213\205z\377\203}s\377zul\377soi\377hfa\377^\\U\377UMC\377OD6\377K\77" "1\377E9,\377C8+\377<5&\377A:\"\377R:\40\377A1\25\377.*\22\377\77""1\34" "\377<-\36\377<8-\377..%\377$$\32\377)'\37\3770/*\37731-\377545\377'(" ")\377\25\26\27\377\20\15\14\377\16\11\6\377\40\32\24\377%\"\34\377\30" "\33\22\377\36#\32\377$*\30\377,4\40\377/2!\377\"\36\21\377\31\21\10\377" "\24\14\5\377\27\16\6\377!\24\13\377!\24\11\377\37\21\6\377\40\21\6\377" "\37\21\6\377\40\21\7\377+\34\16\377.\33\20\377&\22\10\377)\24\7\377(" "\21\4\377$\17\2\377%\16\3\377#\14\2\377%\15\4\3778\37\22\377R.\30\377" "R%\15\377>&\26\377YaJ\377\\\207~\377Aae\37704Z\377%+J\377\31""1)\377" "\27""5\33\377-D3\377GfZ\377En^\377Htc\3772X@\377&D%\377\34""7\32\377" "\30""7\31\377\31""6\33\377\34.\35\377\33\30\22\377\37\27\20\377&\34\26" "\377+\37\32\377\40\26\23\377\26\10\6\377\17\2\1\377\10\1\0\377\2\0\0" "\377\207\1\0\0\377\211\0\0\0\377\3\1\1\0\377\30\20\4\377<,\12\377\204" "I6\15\377\3N<\26\377\205|\200\377\261\257\324\377\204\272\272\346\377" "\202\271\271\344\377\202\267\267\343\377\3\252\250\315\377\204{\201\377" "XH+\377\223I6\15\377\2nbZ\377\244\243\312\377\202\254\254\331\377\6\251" "\251\326\377\254\254\331\377\252\252\327\377\247\247\324\377\250\250" "\325\377\247\247\324\377\202\242\242\320\377\11\243\243\321\377\236\236" "\314\377\235\235\313\377\234\234\313\377\232\232\311\377\230\230\307" "\377\225\225\304\377\224\224\303\377\223\223\302\377\202\220\220\277" "\377\2\217\217\276\377\213\213\273\377\202\212\212\273\377\4\212\212" "\272\377\207\207\267\377\206\206\267\377\205\205\265\377\202\203\203" "\264\377\3\202\202\263\377\200\200\261\377\177\177\260\377\202}}\256" "\377\202{{\254\377\2yy\253\377vv\250\377\202uu\247\377\5ss\245\377pp" "\243\377ss\245\377pp\243\377nn\241\377\202kk\236\377\1jj\235\377\202" "ii\234\377\12gg\233\377ee\230\377dd\230\377ff\231\377bb\226\377``\224" "\377aa\225\377aa\224\377__\223\377]]\221\377\202[[\220\377\1[[\217\377" "\204WW\214\377\6VV\213\377TT\211\377RR\210\377TT\211\377RR\210\377QQ" "\207\377\202QQ\206\377\202OO\205\377\5LL\201\377\200\200\261\377\201" "\201\262\377\202\202\263\377\204\204\264\377\203\205\205\265\377\1\211" "\211\271\377\203\212\212\273\3776\213\213\273\377\217\217\276\377\220" "\220\277\377\217\217\276\377\220\220\277\377\225\225\304\377\226\226" "\304\377\226\226\305\377\227\227\305\377\234\234\312\377\236\236\314" "\377\232\234\310\377]n\215\377;b\202\377Cj\214\377Mu\224\377Y~\236\377" "e\211\247\377r\224\260\377\177\237\272\377\214\251\302\377\227\263\311" "\377\242\274\320\377\253\303\325\377\263\310\331\377\270\314\334\377" "\274\316\336\377\275\317\337\377\275\316\336\377\272\315\335\377\266" "\313\333\377\261\307\331\377\253\303\325\377\243\275\320\377\233\266" "\313\377\222\256\305\377\207\245\275\377{\234\264\377p\222\253\377e\211" "\244\377Z\177\233\377Qw\223\377Fm\212\377=d\202\3775]z\377/Ur\377(Lh" "\377(BP\377{c\35\377eJ\14\377oP\12\377\202^\7\377jL\12\377J6\14\377\225" "I6\15\3770I7\16\377_O7\377\226\220\242\377\267\266\340\377\271\271\344" "\377\257\255\321\377\215\205\217\377V6<\377\77\11""4\377G\13<\377Q\16" "C\377Z\22M\377g\31W\377t!d\377\177+o\377\2147{\377\230E\210\377\244U" "\225\377\260f\242\377\274x\256\377\305\210\271\377\317\231\305\377\326" "\250\315\377\334\262\324\377\340\271\330\377\343\277\333\377\344\301" "\334\377\344\300\334\377\341\273\331\377\335\263\325\377\331\253\320" "\377\323\240\311\377\314\223\300\377\303\204\265\377\272v\254\377\261" "h\243\377\246Z\231\377\235L\216\377\222@\203\377\2104z\377~+p\377t#e" "\377i\33[\377^\25Q\377T\21H\377K\15@\377D\12:\377>\10""5\377\202=\7""4" "\377\2=\7""3\377>\7""3\377\203>\6""3\377\3>\7""3\377=\7""3\377U>I\377" "\202daV\377PdbW\377jf]\377nj_\377pla\377oka\377nj`\377kh^\377ie\\\377" "he[\377eaW\377_YL\377QJ:\377>7*\377@9/\377OG;\377TJ;\377VL<\377bZP\377" "upg\377ytj\377~wk\377\206~s\377\215\204v\377\220\210z\377\203~p\377m" "i^\377\224\221\222\377\251\254\254\377\241\243\234\377\226\217\204\377" "\231\220\203\377\221\212\200\377\211\203y\377\201{r\377wsk\377mke\377" "fd`\377]\\Y\377SPJ\377MF<\377J\77""4\377H=1\377D/\36\377:5\34\37712\26" "\37730\23\377>)\24\377A*\30\377B1\34\377$\"\17\377\34\40\16\377((\33" "\377*'\37\377&#\35\377\"\40\31\377\"\"\31\37700'\377-/'\377\36\36\35" "\377\23\22\23\377\31\26\27\377\37\37\"\377\31\34!\377\24\25\26\377\17" "\13\7\377\27\23\13\377\37\33\21\377\23\14\7\377\26\16\7\377\35\23\12" "\377\37\23\10\377\33\16\4\377\37\17\6\377!\20\4\377!\20\5\377&\25\12" "\377+\32\16\377\"\21\6\377#\21\7\377%\20\5\377\202\"\14\1\377&!\12\2" "\377\37\12\3\377.\31\17\377H1\34\377\\8\32\377A\40\15\377G\40\14\377" "g;\26\377dk9\377k\201l\377woi\377g][\3779Q>\377\40B\40\377\27""2\33\377" "\23&\26\377\31'\33\377#5$\3776VE\377God\3771TH\377/WD\377\35;,\377\"" ":.\377!.%\377\21\11\4\377\22\7\4\377\31\17\13\377\34\25\21\377!\34\26" "\377,($\377-*)\377!\34\34\377\25\14\13\377\14\3\2\377\7\2\0\377\4\1\0" "\377\2\0\0\377\202\1\0\0\377\211\0\0\0\377\3\20\13\3\3775'\11\377H6\15" "\377\207I6\15\377\4P>\33\377xmg\377\247\244\301\377\271\271\344\377\204" "\272\272\346\377\202\271\271\344\377\5\267\267\343\377\265\264\336\377" "\222\214\235\377cUA\377I7\16\377\216I6\15\377\7]N5\377\226\221\247\377" "\261\261\336\377\257\257\333\377\257\257\334\377\257\257\333\377\256" "\256\332\377\202\254\254\331\377\1\252\252\327\377\202\247\247\324\377" "\4\245\245\323\377\242\242\320\377\243\243\321\377\241\241\317\377\202" "\236\236\314\377\12\233\233\312\377\232\232\311\377\231\231\307\377\224" "\224\303\377\223\223\302\377\224\224\303\377\223\223\302\377\217\217" "\276\377\216\216\276\377\214\214\274\377\202\212\212\273\377\3\210\210" "\270\377\205\205\265\377\204\204\264\377\202\202\202\263\377\3\177\177" "\260\377~~\257\377{{\255\377\202zz\253\377\1ww\251\377\202uu\250\377" "\27tt\246\377rr\244\377qq\244\377pp\242\377nn\241\377oo\241\377nn\241" "\377kk\236\377jj\235\377ii\234\377hh\233\377ff\232\377hh\233\377ee\230" "\377cc\227\377bb\226\377cc\227\377aa\224\377]]\221\377^^\222\377]]\221" "\377[[\217\377XX\215\377\202WW\214\377\7VV\213\377TT\211\377SS\210\377" "RR\210\377QQ\207\377OO\205\377MM\203\377\203LL\202\377\202II\177\377" "\5GG~\377HH~\377GG~\377FF|\377~~\257\377\202\177\177\260\377\3\200\200" "\261\377\204\204\264\377\205\205\266\377\202\205\205\265\377\1\207\207" "\267\377\203\212\212\273\377\6\215\215\275\377\217\217\276\377\220\220" "\277\377\221\221\301\377\224\224\302\377\226\226\305\377\202\230\230" "\306\377\21\232\232\310\377\235\236\313\377t\177\241\377<_~\377\77f\210" "\377Hp\220\377Tz\232\377_\205\244\377m\220\254\377y\232\266\377\207\245" "\277\377\223\257\306\377\236\271\315\377\251\301\324\377\261\306\330" "\377\270\313\334\377\275\316\336\377\202\277\320\340\377\34\277\320\337" "\377\274\316\336\377\267\313\334\377\261\306\331\377\253\302\325\377" "\241\272\316\377\230\263\307\377\216\252\277\377\203\242\271\377z\232" "\262\377o\221\252\377d\211\243\377Y~\233\377Qv\222\377Hn\212\377>e\201" "\3775\\z\3770Vq\377'Lh\377!C]\377.>>\377WF\30\377M:\23\377dU@\377\210" "\200\211\377\224\215\237\377\203z\177\377TB!\377\225I6\15\377.J7\17\377" "\\L1\377`Q9\377R@\34\377K8\20\377H'\36\377>\11""3\377E\12:\377N\15B\377" "X\21J\377b\26S\377o\36`\377{(k\377\2073w\377\223@\203\377\237O\220\377" "\253`\235\377\266p\250\377\300\201\265\377\313\221\277\377\322\240\310" "\377\330\252\317\377\334\262\324\377\337\267\327\377\341\273\331\377" "\340\271\330\377\335\265\326\377\333\257\322\377\326\246\314\377\320" "\233\306\377\310\216\275\377\300\177\262\377\267q\251\377\255b\236\377" "\244U\224\377\232I\212\377\217=\200\377\2061w\377{(l\377q\40c\377e\31" "X\377Z\24M\377Q\20E\377I\13>\377B\12""8\377=\10""4\377\202>\7""4\377" "\2>\7""3\377>\7""4\377\204=\6""3\377\2=\7""3\377T>H\377\204`]S\377\177" "`]T\377c_V\377e`X\377gd[\377gcZ\377fbY\377eaY\377ebZ\377daY\377^ZP\377" "NI=\377A:-\377\77""8.\377ME:\377VM\77\377ZRE\377d]S\377yrj\377\204\177" "v\377\213\205z\377\221\212}\377\230\217\201\377\236\223\205\377\242\230" "\213\377\244\233\215\377\245\232\216\377\243\237\230\377gpp\377ab^\377" "\210\177v\377\217\210~\377\207\201y\377~yq\377upi\377mid\377db]\377\\" "\\Y\377UUS\377OLG\377IB9\377G:-\377B3&\377=5%\37761\26\3777.\21\377=" "\"\17\377;\"\20\3775)\25\377./\32\377&*\26\377\35\40\23\377\32\35\21" "\377\27\30\16\377\26\26\13\377A>4\377DB2\377+'!\377$$%\377$$&\377*)+" "\377'')\377\36\35\36\377\16\14\13\377\14\11\6\377\21\14\11\377\26\20" "\14\377\34\21\11\377\33\17\5\377\35\17\5\377\37\17\3\377!\21\4\377#\23" "\10\377%\27\14\377\37\17\7\377\36\16\5\377#\20\5\377\40\14\2\377\35\11" "\2\377\35\10\1\377\35\11\2\377$\17\12\377=#\25\377]0\27\377S(\22\377" "J-\30\377eN$\377QZ%\377=W\31\3776V\30\377HbC\377\206tw\377\203yw\377" "uWj\377HD]\3771HI\3774HD\3770>>\377\21\27\24\377\25\40\33\3772XI\377" "#J4\377\"H4\3774\\N\377&C8\377\33.\"\377\30(\33\377\16\22\11\377\21\12" "\3\377\26\13\3\377\37\27\21\377(#\40\377/,-\377656\37767;\377227\377" ")(,\377#\40!\377\33\32\26\377\24\22\15\377\22\16\12\377\17\14\7\377\15" "\13\7\377\13\11\6\377\13\12\7\377\17\15\12\377\21\17\14\377\7\4\3\377" "\3\11\6\1\377-!\10\377G4\14\377\213I6\15\377\4M:\24\377l_P\377\234\230" "\256\377\271\271\344\377\207\272\272\346\377\2\236\231\260\377M:\24\377" "\214I6\15\377\13M:\24\377\202y}\377\261\260\331\377\263\263\337\377\262" "\262\336\377\263\263\337\377\261\261\336\377\255\255\332\377\256\256" "\332\377\254\254\331\377\250\250\325\377\202\246\246\324\377\6\244\244" "\321\377\242\242\320\377\236\236\314\377\237\237\315\377\235\235\313" "\377\232\232\310\377\202\230\230\307\377\202\225\225\304\377\1\222\222" "\301\377\202\220\220\277\377\2\216\216\276\377\212\212\273\377\202\211" "\211\271\377\5\210\210\270\377\205\205\265\377\202\202\263\377\200\200" "\261\377~~\257\377\202{{\255\377\2yy\253\377uu\250\377\202tt\246\377" "\12qq\244\377pp\242\377nn\241\377mm\240\377jj\235\377ii\234\377gg\233" "\377hh\233\377gg\233\377ee\230\377\202cc\227\377\7bb\226\377aa\224\377" "aa\225\377__\223\377^^\222\377]]\221\377[[\220\377\202[[\217\377\2YY" "\216\377XX\215\377\202WW\214\377\3VV\213\377SS\210\377TT\211\377\202" "SS\210\377\2RR\210\377QQ\206\377\202OO\205\377\204LL\202\377\1LL\201" "\377\202II\177\377\17GG~\377HH~\377GG~\377FF|\377\200\200\261\377\202" "\202\263\377\201\201\262\377\202\202\263\377\205\205\265\377\211\211" "\271\377\210\210\270\377\206\206\267\377\210\210\270\377\215\215\275" "\377\216\216\276\377\202\215\215\275\377\30\220\220\300\377\223\223\302" "\377\224\224\302\377\223\223\302\377\227\227\305\377\232\232\310\377" "\233\233\311\377\234\235\311\377\210\216\265\377D_~\377;c\204\377Dl\215" "\377Ow\226\377[\200\240\377g\214\251\377t\226\262\377\202\241\274\377" "\217\254\303\377\232\266\313\377\245\276\322\377\257\305\330\377\267" "\313\333\377\275\317\336\377\300\321\340\377\202\302\323\342\377\30\300" "\321\340\377\274\317\336\377\267\313\333\377\260\305\326\377\250\277" "\321\377\240\270\312\377\226\261\306\377\214\251\276\377\203\241\270" "\377y\231\261\377n\220\251\377f\210\241\377\\\177\231\377Nu\221\377F" "l\211\377@e\200\3777]y\377-Tp\377%Kh\377\37D^\377\33" "\10""4\377>\7""4\377=\7""4\377=\7""3\377\205=\6""3\377\177=\10""4\377" "T@I\377\\YP\377[XP\377ZWM\377YVL\377YVM\377XUM\377XUL\377[VN\377`\\T" "\377c`X\377b^V\377b^X\377c_X\377c`Y\377b^W\377VRE\377LE8\377E@5\377L" "F;\377]YO\377ee[\377dbT\377oh^\377\216\207\200\377\216\215\204\377\217" "\221\203\377\216\207u\377\232\214\177\377\254\242\224\377\254\241\222" "\377\252\237\221\377\250\235\220\377\217\216\205\377Yda\377Y[X\377~u" "p\377\202|u\377xsm\377plf\377if`\377_^Y\377YYW\377SUS\377QKH\377F3%\377" ":5\32\37774\31\3772+\25\3775\"\14\377A%\20\3773!\13\377#\"\13\377&*\17" "\377\35#\13\377\31\36\15\377\21\30\13\377\12\17\5\377\15\21\6\377\40" "\32\21\377\27\20\12\377\37\32\27\377)((\377+)*\377*)*\377,*+\377!\40" "\40\377\25\23\22\377\26\24\26\377\23\22\24\377\26\21\16\377\35\23\12" "\377\37\17\5\377\40\21\5\377!\22\7\377#\26\14\377\36\22\11\377\34\14" "\4\377\40\17\5\377\37\14\2\377\35\12\2\377\32\7\1\377\31\5\2\377\33\11" "\5\377/\34\23\377A&\24\377>\33\12\3776\23\7\377e+\22\377\233H\26\377" "\217L\25\377jM\31\377\\S!\377E[2\377(W7\377&O9\377>Ta\377^Z\203\377\\" "[z\377/7A\377D6c\377+\"T\377\7\31\26\377\3\16\4\377\31""4\40\377\37B" "*\377/VG\377)I>\377\31""2\36\377\26""4\34\377\37@)\377\35""7&\377\14" "\37\20\377\26\27\14\377\35\25\13\377\"\31\21\377(\40\32\377,&$\377.-" "0\37743:\37769B\3779>I\3779DS\377@O`\377BTm\377>Qn\377\7\77Pn\377=Mh" "\377+\37\377<\11/\377A\11""6\377H\13=\377Q\17E\377" "[\24N\377h\32Z\377s!d\377\177+p\377\2126{\377\225B\205\377\240P\220\377" "\253_\234\377\265o\247\377\276}\262\377\305\213\273\377\316\227\303\377" "\322\240\311\377\325\245\315\377\330\251\317\377\330\252\317\377\326" "\247\315\377\324\242\312\377\317\232\304\377\311\217\276\377\302\202" "\265\377\271u\254\377\260h\242\377\246Z\230\377\235L\215\377\223@\203" "\377\2104x\377~*m\377t\"e\377k\34\\\377_\26Q\377V\21H\377L\15A\377F\12" ":\377@\12""6\377>\10""4\377=\7""4\377\202=\7""3\377\205=\6""3\377\16" "=\12""4\377TEI\377YVN\377XUM\377WUL\377VSJ\377VRI\377UQI\377VRI\377T" "QH\377TPH\377XUM\377]ZR\377^[S\377\202a]V\377tc_X\377d`Y\377a^V\377[" "WM\377SNC\377MH<\377WTG\377KN@\377[ZN\377oqf\377\204\200w\377\215\215" "\201\377||l\377\246\240\221\377\264\253\236\377\265\255\240\377\264\253" "\237\377\262\250\234\377\253\240\224\377\243\231\216\377\206\205}\377" "QXV\377OOM\377qid\377wqi\377b]V\377VPJ\377PJD\377VRN\377QRP\377FJ9\377" "B>\37\377C.\23\377\77*\21\377>/\24\377B*\23\377<\"\14\377%\33\10\377" "\26\33\7\377\16\26\5\377\16\26\7\377\14\21\4\377\11\14\3\377\14\14\4" "\377\22\14\6\377\23\14\7\377\21\12\5\377\25\17\12\377\32\24\23\377\30" "\24\24\377\31\25\25\377\"\36\35\377%\"!\377\36\40$\377\36!'\377\26\23" "\23\377\24\13\5\377\36\17\6\377$\27\13\377\37\23\12\377\32\15\4\377\37" "\17\6\377\40\16\4\377\35\12\2\377\32\11\2\377\31\7\2\377\30\6\4\377%" "\25\16\3777\"\23\377,\24\7\377$\13\3\3771\22\6\377S\"\10\377p.\11\377" "\222A\16\377\255O\25\377\277d(\377\235\177Y\377e\200g\377D}o\377L\204" "s\377Jvi\3771EP\3772GJ\377PXy\377IEp\377\33*I\377\7&\30\377\13/\23\377" "\30D,\377\27D&\377>kW\377Foi\377!C2\377\22""3\33\377\20""6\37\377\33" "6%\377\"4)\377!,$\377#\37\24\377.&\34\3770'\37\377.%\36\377+\"\32\377" "(!\34\377,(&\377646\377=@E\377BJT\377FRc\377HZx\377H_\205\377Hc\213\377" "Ea\210\377FQS\377I:\30\377\202I6\15\377\3R@\36\377_N6\377O=\30\377\217" "I6\15\377\5UD&\377{qs\377\226\221\251\377\202{\204\377SB\"\377\214I6" "\15\377\3Q\77\35\377\214\206\226\377\252\252\326\377\202\252\252\327" "\377\202\250\250\325\377\202\244\244\322\377\1\241\241\317\377\202\237" "\237\316\377\1\232\232\311\377\202\233\233\312\377\202\225\225\304\377" "\1\221\221\301\377\202\220\220\277\377\1\216\216\276\377\202\212\212" "\273\377\1\210\210\270\377\202\205\205\265\377\1\203\203\264\377\202" "\177\177\260\377\3}}\256\377||\256\377yy\253\377\202ww\251\377\202tt" "\246\377\2qq\244\377pp\242\377\202mm\240\377\2kk\236\377ii\234\377\202" "ff\232\377\2ff\231\377ee\230\377\202cc\227\377\1aa\224\377\202__\223" "\377\203]]\221\377\202[[\217\377\203WW\214\377\202VV\213\377\1TT\211" "\377\202RR\210\377\5QQ\207\377RR\210\377OO\205\377MM\203\377NN\204\377" "\203LL\202\377\202KK\201\377\14HH~\377GG~\377FF}\377FF|\377DD{\377EE" "{\377DD{\377BBy\377AAx\377@@w\377AAx\377>>u\377\202==u\377\5<!\377H9!\377E8\36\377" "D1\37\377<\16-\377\77\10""4\377F\12:\377M\15A\377V\21I\377b\26S\377m" "\35^\377y&j\377\2040u\377\220=\200\377\232J\214\377\245W\227\377\256" "f\241\377\270s\253\377\300\200\264\377\306\213\273\377\314\224\302\377" "\321\234\306\377\323\240\310\377\323\240\311\377\322\236\307\377\317" "\231\304\377\312\221\277\377\305\207\270\377\276{\261\377\265p\250\377" "\254b\236\377\242U\224\377\231H\211\377\217<\177\377\2061u\377|'l\377" "p\40a\377f\30X\377[\22M\377R\17F\377K\14\77\377D\13""9\377\202>\10""4" "\377\202=\7""3\377\206=\6""3\377\177>\15""4\377SGG\377TRI\377TQI\377" "URJ\377TRI\377TQH\377TPH\377UQI\377TQI\377TPI\377SOF\377SNF\377VQJ\377" "ZVO\377]YR\377_[S\377c_X\377he^\377jga\377fbY\377a\\P\377RNB\377XUK\377" "jm_\377cdU\377qti\377|{n\377\247\241\227\377\241\242\231\377\277\272" "\261\377\275\265\253\377\272\261\247\377\264\252\237\377\251\241\224" "\377\231\223\210\377\225\215\204\377\210\201v\377pnh\377GNK\377EEC\377" "WSN\377.0/\377!\40\37\377)\36\27\3770(\40\377;73\377LI:\377PA)\377QE" ",\377R>(\377U=#\377P6\37\377:&\21\377\30\23\3\377\37\30\17\377:,\40\377" ",\"\31\377\12\12\5\377\20\13\6\377\20\11\4\377\22\11\5\377\22\12\6\377" "\17\7\3\377\17\7\2\377\24\13\7\377\36\23\14\377\35\20\7\377!\34\32\377" "08\77\377\37$)\377\20\20\20\377\24\25\26\377\23\21\22\377\26\17\12\377" "\32\20\10\377\37\21\7\377\34\14\3\377\34\12\2\377\34\10\2\377\27\6\2" "\377\33\15\10\377+\34\20\377,\25\7\377#\12\1\377!\12\2\3777\23\3\377" "\77\24\2\377G\31\3\377_$\5\377u/\7\377\207\77\23\377\227I\32\377\247" "]2\377\236zY\377\221\220{\377\201\221\201\377\220w\\\377MG+\377\34B)" "\377\35@*\3771>#\377E`U\377P^\\\377\77^[\377Ctz\377#HA\377\35""9&\377" "=oh\3774i`\3770]P\377+I\77\3779NC\377@@@\377C=<\377D><\377HAA\377GA@" "\377IB\77\377HA\77\377FA=\377B=:\377>:9\377@=<\377DBC\377DBE\377GDG\377" "\3CBG\377C\77""7\377H:\33\377\202I6\15\377\7O=\30\377zol\377\256\255" "\322\377\266\266\342\377\252\251\316\377~uy\377VF(\377\234I6\15\377\16" "I6\16\377ma[\377\235\234\307\377\241\241\317\377\237\237\316\377\237" "\237\315\377\234\234\313\377\232\232\311\377\233\233\312\377\227\227" "\306\377\226\226\305\377\225\225\304\377\221\221\301\377\222\222\301" "\377\202\214\214\274\377\4\215\215\275\377\212\212\272\377\207\207\267" "\377\205\205\266\377\202\204\204\264\377\14\202\202\263\377\177\177\260" "\377~~\257\377}}\256\377{{\255\377zz\253\377yy\253\377vv\250\377uu\250" "\377uu\247\377tt\246\377rr\244\377\202pp\242\377\202nn\241\377\1kk\236" "\377\203ii\234\377\11ff\232\377ee\230\377cc\227\377dd\230\377bb\226\377" "aa\225\377__\223\377``\224\377]]\221\377\202[[\220\377\202[[\217\377" "\2XX\215\377WW\214\377\203VV\213\377\2TT\211\377RR\210\377\202QQ\207" "\377\4QQ\206\377OO\205\377LL\202\377MM\203\377\202LL\201\377\10LL\202" "\377II\177\377GG~\377HH~\377GG~\377HH~\377FF}\377EE{\377\202CCz\377\2" "AAx\377CCz\377\202AAx\377\3@@w\377>>u\377\77\77v\377\203<f\204\3777^|\377/Vt\377" ")Ol\377#Ig\377\37C`\377\33\26*\377=\7""3\377C\11" "8\377J\14>\377R\17E\377\\\23O\377i\31Y\377s!d\377\177*n\377\2105y\377" "\223@\203\377\234M\216\377\247Z\231\377\260h\243\377\272v\255\377\300" "\200\264\377\305\211\273\377\312\220\277\377\314\224\301\377\315\225" "\303\377\314\223\302\377\310\217\275\377\305\210\270\377\277~\263\377" "\271t\253\377\261i\243\377\250\\\232\377\237O\217\377\226D\206\377\213" "8{\377\202.r\377x$h\377m\35^\377b\26U\377X\21J\377N\15A\377G\12<\377" "A\11""7\377=\10""4\377\203=\7""3\377\206=\6""3\377\177\77\23""5\377Q" "IG\377QME\377ROF\377QOF\377QNF\377PNF\377ROG\377SPI\377TQK\377SQJ\377" "QMF\377QMD\377PLD\377QME\377WSK\377[WO\377_[T\377fbZ\377kh`\377qmf\377" "nkb\377e`U\377e_R\377\\YK\377bZH\377pkX\377zxi\377\222\224\205\377\232" "\240\224\377\276\275\265\377\254\254\241\377\226\220~\377\226\216|\377" "}vf\377\202}m\377sn`\377woe\377ysi\377yog\377hg_\3778\77=\377*-.\377" "..1\3770,+\377!\37\33\377\22\13\10\377&\36\33\377@51\3777(\32\3777,\34" "\377:&\23\3776!\15\377*!\15\377\30\25\11\377\25\15\5\377\36\20\13\377" "%\30\22\377\21\11\3\377\22\12\4\377\22\12\5\377\17\7\3\377\16\6\1\377" "\22\10\4\377\35\21\11\377!\22\7\377\36\16\4\377\40\24\14\377##\36\377" "\35'\40\377,54\377\27\37\35\377\23\27\27\377\32\"$\377\32\34\34\377\22" "\15\11\377\26\20\12\377\33\24\15\377$\36\31\377\"\31\23\377\37\23\15" "\377)\31\16\377\37\12\4\377\31\6\2\377\"\12\2\377,\14\1\3776\20\1\377" "E\30\2\377O\35\3\377R\36\3\377E\33\3\377H\36\7\377Z%\12\377s1\15\377" "\214\77\21\377\230G\26\377\232I\27\377\245O\32\377\246T\37\377\213c5" "\377}xV\377zR-\377\214\220\212\377\201\206\212\377Pmh\377+YJ\3779_L\377" "5O7\377AQD\377Gtm\3775rf\377=}n\377B\206y\377D\202y\377Jjk\377JJK\377" "MFJ\377LDF\377KDD\377LEE\377KDC\377ICC\377IDF\377KEE\377LFF\377HBC\377" "F\77""8\377\7G8\35\377I6\16\377I6\15\377J8\20\377l_Q\377\247\243\301" "\377\272\271\345\377\202\271\271\344\377\202\267\267\343\377\4\256\255" "\324\377\212\203\217\377\\M4\377I6\16\377\230I6\15\377\5UD&\377\215\211" "\242\377\240\240\316\377\241\241\317\377\240\240\316\377\202\235\235" "\313\377\2\233\233\312\377\231\231\307\377\202\226\226\305\377\6\224" "\224\303\377\220\220\300\377\221\221\301\377\217\217\276\377\212\212" "\273\377\213\213\273\377\202\212\212\272\377\5\205\205\265\377\202\202" "\263\377\203\203\264\377\202\202\263\377~~\257\377\202}}\256\377\7{{" "\254\377yy\253\377xx\252\377vv\250\377uu\250\377uu\247\377ss\245\377" "\202pp\243\377\4pp\242\377nn\241\377jj\235\377kk\236\377\202ii\234\377" "\202ff\232\377\202dd\230\377\202cc\227\377\2__\223\377``\224\377\202" "]]\221\377\2[[\217\377\\\\\221\377\202ZZ\216\377\202WW\214\377\202VV" "\213\377\3UU\212\377QQ\207\377RR\210\377\202QQ\206\377\2QQ\207\377NN" "\204\377\203LL\202\377\5LL\201\377II\177\377HH~\377II\177\377HH~\377" "\202FF}\377\3EE{\377AAx\377DD{\377\203CCz\377\2AAx\377@@w\377\202>>u" "\377\3<\31\377cY:\377b\177u\377\77^N\377" "1;#\377>5\36\377L6#\377K4\37\377@\37\15\377rXG\377\305\273\237\377\212" "~b\377ZXN\377Qcf\377J\\a\377PX[\377NKK\377PIH\377MJL\377MKO\377NKM\377" "NJL\377KGK\377GBD\377GA=\377I;\"\377\1I6\16\377\203I6\15\377\2bT>\377" "\265\264\334\377\204\272\272\346\377\202\267\267\343\377\6\264\264\340" "\377\262\262\336\377\256\256\331\377\221\214\242\377fXH\377L9\22\377" "\224I6\15\377\7N<\30\377ukm\377\241\241\316\377\243\243\321\377\240\240" "\316\377\241\241\317\377\240\240\316\377\202\235\235\313\377\2\233\233" "\312\377\231\231\307\377\202\226\226\305\377\6\224\224\303\377\220\220" "\300\377\221\221\301\377\217\217\276\377\212\212\273\377\213\213\273" "\377\202\212\212\272\377\5\205\205\265\377\202\202\263\377\203\203\264" "\377\202\202\263\377~~\257\377\202}}\256\377\7{{\254\377yy\253\377xx" "\252\377vv\250\377uu\250\377uu\247\377ss\245\377\202pp\243\377\4pp\242" "\377nn\241\377jj\235\377kk\236\377\202ii\234\377\202ff\232\377\202dd" "\230\377\202cc\227\377\2__\223\377``\224\377\202]]\221\377\2[[\217\377" "\\\\\221\377\202ZZ\216\377\202WW\214\377\202VV\213\377\3UU\212\377QQ" "\207\377RR\210\377\202QQ\206\377\2QQ\207\377NN\204\377\203LL\202\377" "\5LL\201\377II\177\377HH~\377II\177\377HH~\377\202FF}\377\3EE{\377AA" "x\377DD{\377\203CCz\377\2AAx\377@@w\377\202>>u\377\3<\25\377kaD\377" "XO:\377PJ\77\377>6(\377@5\"\377=4\40\377;4\40\377;1\35\377:/\32\3778" "-\30\3777+\30\3779.\32\377;/\30\377@4\36\377F5*\377>\17""2\377>\11""4" "\377D\13""9\377K\15\77\377S\20G\377\\\23O\377g\31Y\377q\40b\377{'l\377" "\2051u\377\216;\177\377\227F\211\377\240P\220\377\250[\232\377\256e\240" "\377\264m\247\377\270t\254\377\273x\256\377\275z\260\377\275z\257\377" "\273w\255\377\267r\252\377\263k\245\377\255b\237\377\246X\230\377\236" "O\220\377\225D\206\377\2149|\377\204/t\377{&k\377p\36a\377e\30W\377[" "\23M\377Q\16D\377J\13=\377C\11""7\377=\7""4\377<\7""2\377<\6""2\377=" "\6""2\377\204=\6""3\377\202=\5""3\377\5<\7""3\377F/<\377LHB\377MJC\377" "MJB\377\202MKC\377wJG@\377KH@\377MJC\377OLE\377ROI\377QNH\377NLD\377" "NLC\377MJA\377LIA\377KI@\377HE=\377\77<6\3778:2\377>>3\377WUJ\377rnf" "\377\203\177x\377\216\212\201\377yue\377rgU\377e[C\377^S:\377QM.\377" "]I/\377yeO\377\232\233\207\377\204\211m\377SM7\377<9\37\377*,\22\377" "82\36\377I@0\3773-\40\377\"\40\21\377.&\31\377P@/\3777-#\377#\25\22\377" "\30\22\20\377\26\23\23\377%\40\37\37750/\377003\377\24\26\27\377\12\10" "\10\377\15\7\6\377\21\12\6\377\22\10\2\377\24\12\4\377\24\14\5\377\20" "\10\3\377\17\6\1\377\21\7\3\377\33\16\10\377&\24\11\377'\22\6\377*\22" "\5\377,\23\5\377(\22\4\377*#\33\3770=:\377+<5\377*LG\3776NQ\377OOY\377" ")@>\3771JE\3772LI\377(NG\3772[[\377\40""0.\377\12\11\10\377\26\26\22" "\377\34\33\33\377\"\35\36\377,&(\377/+-\377%\34\34\377\36\16\11\377!" "\13\4\377\"\11\3\377&\13\2\377)\15\2\377-\15\2\377/\16\1\3778\21\1\377" "F\32\2\377h9\40\377\274\250\211\377\277\261\232\377\304\265\247\377\276" "\256\237\377\235\213y\377oU@\377M(\16\377E\35\5\377A\32\5\377>\27\2\377" ">\26\2\3777\22\1\377X8&\377\277\241\200\377\333\272\224\377\344\253l" "\377\362\265U\377\342\252K\377\230l9\377UF\77\377MFF\377LGF\377KFG\377" "JDE\377KFI\377MLQ\377PQZ\377OMS\377I\77-\377I7\21\377\205I6\15\377\4" "I7\16\377YI,\377\207\177\205\377\262\261\327\377\204\272\272\346\377" "\202\266\266\342\377\6\262\262\336\377\261\261\336\377\253\253\327\377" "\225\222\256\377nbZ\377N<\27\377\220I6\15\377\24I6\16\377aTC\377\224" "\221\262\377\242\242\320\377\240\240\316\377\242\242\320\377\236\236" "\314\377\237\237\316\377\236\236\314\377\233\233\312\377\235\235\313" "\377\231\231\307\377\226\226\305\377\225\225\304\377\226\226\305\377" "\223\223\302\377\220\220\277\377\220\220\300\377\217\217\276\377\212" "\212\272\377\202\212\212\273\377\16\211\211\271\377\205\205\265\377\202" "\202\263\377\203\203\264\377\201\201\262\377}}\256\377||\256\377}}\256" "\377{{\254\377vv\250\377uu\250\377vv\250\377uu\250\377tt\246\377\203" "pp\243\377\4nn\241\377ll\237\377ii\234\377kk\236\377\202hh\233\377\202" "ff\232\377\202cc\227\377\4bb\226\377cc\227\377]]\221\377``\224\377\202" "]]\221\377\202[[\217\377\21XX\215\377ZZ\216\377XX\215\377VV\213\377S" "S\210\377UU\212\377SS\210\377RR\210\377SS\210\377QQ\206\377NN\204\377" "PP\205\377MM\203\377LL\202\377MM\203\377LL\202\377LL\201\377\202FF}\377" "\1HH~\377\203FF}\377\3EE{\377CCz\377DD{\377\204AAx\377\1@@w\377\202\77" "\77v\377\3<>u\377;;r\377\20288p\377\2;;r\377\233\233\312\377\203" "\241\241\317\377\1\240\240\316\377\204\246\246\324\377\1\254\254\331" "\377\202\253\253\330\3776\254\254\330\377\261\261\335\377\262\262\336" "\377\261\261\335\377\262\262\334\377\247\253\323\377Md\201\3774[|\377" "f\204\3777_|\377/" "Wt\377(Ol\377\"Gc\377\35@Z\377\30""9R\377\24""3J\377\22.D\377\17*@\377" "\16'<\377\23+@\377s}\240\377\266\267\343\377\203\272\272\346\377\4\270" "\267\342\377\242\236\270\377zok\377UC#\377\203I6\15\3778O:\22\377oS1" "\377\207iK\377~kN\377d[I\377YRB\377e^Q\377XRG\377`XS\377[VT\377VPM\377" "RHA\377F<5\3779.(\3774)\36\3774)\33\3777,\33\377<0\34\377\77""2\40\377" ">\33)\377<\7""2\377@\11""5\377F\12;\377M\15A\377V\20I\377a\25S\377l\34" "]\377u#h\377\177+q\377\2104y\377\220=\201\377\230E\210\377\236O\220\377" "\245X\227\377\252_\235\377\257f\241\377\262j\244\377\264l\246\377\263" "m\247\377\262j\245\377\256f\241\377\252`\235\377\245X\227\377\237O\220" "\377\227F\210\377\220=\201\377\2074x\377\177*o\377v\"f\377k\34\\\377" "b\26S\377W\21J\377N\14A\377G\13;\377A\10""6\377<\7""3\377\202<\6""2\377" "\203<\5""2\377\204=\5""3\377|=\16""3\377K\77@\377KH@\377LIB\377MKC\377" "LJC\377IG\77\377IF\77\377GD<\377KHA\377MJD\377PMG\377PNI\377MLE\377M" "KC\377NMF\377MLF\377IID\377BB=\377\77>9\377543\377CB;\377-/!\377A@0\377" "TRJ\377sph\377xwk\377yug\377MN6\37712\27\37722\23\377--\22\377E=+\377" "HB4\377J@-\377>-\30\377H.\27\3779(\22\3770\37\17\377K:+\377B9(\377\25" "\33\14\377\16\17\5\377$\27\15\377\34\21\11\377\32\17\10\377\31\15\7\377" "\30\16\12\377\22\15\15\377\24\21\22\377#\36\36\377#\37\36\377!\37\37" "\377\26\25\25\377\22\16\15\377\27\16\11\377\22\12\6\377\17\6\2\377\22" "\7\2\377\31\14\6\377!\21\7\377%\20\5\377+\22\5\3771\25\5\377/\24\3\377" "/\26\5\377(\26\10\377\37\34\22\377%2%\377#/$\377\37$#\377SWa\377\205" "s\205\377\202v\206\377^p]\377CaY\377+OQ\3774]`\3771JL\377\"82\377'5/" "\377\26\27\24\377\36\32\26\377%\37\36\377-''\377;:A\377AEO\37772\377J9\26\377\212I6\15" "\377\3R@\36\377}rp\377\252\247\307\377\204\272\272\346\377\7\267\267" "\343\377\266\266\342\377\262\262\336\377\263\263\337\377\256\256\332" "\377\240\236\301\377_Q=\377\216I6\15\377\5SB#\377\203|\213\377\245\245" "\323\377\244\244\322\377\242\242\320\377\202\241\241\317\377\3\240\240" "\316\377\236\236\314\377\235\235\313\377\202\233\233\312\377\10\227\227" "\306\377\225\225\304\377\226\226\305\377\222\222\301\377\220\220\300" "\377\220\220\277\377\217\217\276\377\212\212\273\377\202\211\211\271" "\377\1\207\207\267\377\202\204\204\264\377\202\200\200\261\377\2\177" "\177\260\377||\256\377\202{{\254\377\10uu\250\377uu\247\377tt\246\377" "qq\244\377pp\242\377nn\241\377oo\241\377jj\235\377\202ii\234\377\5gg" "\233\377cc\227\377dd\230\377cc\227\377bb\226\377\202``\224\377\1__\223" "\377\203]]\221\377\15[[\217\377\\\\\221\377XX\215\377WW\214\377XX\215" "\377WW\214\377VV\213\377WW\214\377VV\213\377RR\210\377QQ\206\377QQ\207" "\377QQ\206\377\202QQ\207\377\2MM\203\377LL\201\377\202LL\202\377\1KK" "\201\377\202II\177\377\2HH~\377EE{\377\202FF}\377\203DD{\377\1CCz\377" "\202AAx\377\1@@w\377\202\77\77v\377\202@@w\377\202>>u\377\3<X\377" "\27""7P\377\23""1H\377\21-B\377\16)>\377\14&9\377\14%8\377#3A\377\233" "\235\276\377\265\264\334\377\254\252\314\377\207\177\205\377_P8\377K" "9\21\377\202I6\15\377;J6\16\377[D\37\377\230{a\377\323\257\240\377\326" "\257\244\377\246\207y\377r`N\377[H8\377\\B0\377dE4\377eD3\377bB1\377" "`B2\377\\C2\377YG8\377YO\77\377YWK\377SQO\377POO\377UTS\377QQQ\377HB" "@\377B12\377;\14""0\377>\10""3\377C\11""8\377I\13=\377P\16C\377X\21L" "\377c\26T\377m\34^\377v#g\377\200+p\377\2104y\377\220<\200\377\226E\210" "\377\235L\217\377\241S\223\377\245X\227\377\250\\\232\377\252^\233\377" "\251^\233\377\250\\\232\377\245Y\230\377\242T\224\377\235N\216\377\227" "F\210\377\222>\202\377\2115z\377\202-r\377z&j\377p\37a\377f\31X\377]" "\24O\377S\16F\377K\14\77\377D\12""9\377>\10""5\377<\7""2\377\202<\6""2" "\377\204<\4""2\377\14<\5""2\377=\5""3\377<\6""2\377@\40""6\377KF@\377" "JGA\377JG@\377JHA\377KH@\377KHA\377IF>\377HE>\377\202MJC\377\3LHB\377" "MJD\377KIC\377\202JHB\377jLKE\377JH@\377<=2\377671\377,0,\37747<\377" "/55\377*-\35\3779:+\377NRA\377DG6\377VH6\377hXH\377cdQ\377=\77*\377\40" "!\14\37715.\377=FM\377+)'\377!\25\15\377%\22\11\3778#\20\3779+\21\377" ";3\31\377^SA\37784,\377\31\22\10\377\37\23\11\377\36\20\10\377\33\15" "\7\377\35\16\6\377\34\16\6\377\33\14\5\377\33\17\11\377\23\17\15\377" "\21\17\20\377$#%\377*),\377\32\31\32\377\24\24\23\377\23\17\13\377\30" "\21\14\377\36\22\12\377\35\16\5\377!\15\2\377'\20\3\377,\22\3\377.\23" "\3\377(\24\6\377\32\16\5\377\16\6\2\377\16\5\1\377\22\11\4\377\36$\36" "\377&4,\3778L7\377m~Z\377{\211i\377\201\224[\377\203\235_\377AaD\377" ")LI\377Ejd\377'>8\377%2/\377\30\34\32\377\32\26\24\377\37\30\26\377(" "!\36\377\77""9<\377IJV\377KSf\377Pe\206\377Nh\217\377E[}\3777\77P\377" "<62\377D4%\377E2\36\377C.\32\377A-\35\377F.\34\377mT;\377W>&\377Q3\31" "\377@\37\15\3770\17\2\377.\14\1\377.\11\1\377)\5\0\377)\7\3\377nE.\377" "\204F\25\377\220N\25\377\231V\32\377\230W\30\377\211M\25\377q=\14\377" "D\35\3\3779\27\2\3773\32\6\377\34\16\5\377\31\25\25\377934\377G>5\377" "H8\31\377\216I6\15\377\4O=\30\377rf\\\377\243\237\271\377\271\270\343" "\377\203\272\272\346\377\5\270\270\344\377\267\267\343\377\260\257\330" "\377\205}\205\377Q\77\35\377\214I6\15\377\3J7\17\377shc\377\243\241\306" "\377\202\253\253\330\377\15\252\252\327\377\247\247\324\377\250\250\325" "\377\244\244\322\377\246\246\324\377\242\242\320\377\241\241\317\377" "\242\242\320\377\236\236\314\377\232\232\311\377\232\232\310\377\226" "\226\305\377\224\224\303\377\202\220\220\300\377\1\217\217\276\377\202" "\211\211\271\377\3\206\206\267\377\205\205\265\377\203\203\264\377\203" "\200\200\261\377\203zz\253\377\6xx\252\377tt\246\377uu\247\377tt\246" "\377ss\245\377pp\243\377\202nn\241\377\3ll\237\377jj\235\377ii\234\377" "\203hh\233\377\202dd\230\377\202cc\227\377\202aa\225\377\2__\223\377" "aa\224\377\203\\\\\221\377\4ZZ\216\377XX\215\377YY\216\377WW\214\377" "\202VV\213\377\2SS\210\377QQ\207\377\202SS\210\377\2RR\210\377QQ\206" "\377\203MM\203\377\5NN\204\377LL\202\377JJ\200\377HH~\377II\177\377\203" "FF}\377\202EE{\377\1DD{\377\202CCz\377\2AAx\377<" ">u\377\77\77v\377\202<;3\377\77=6\377DB:\377" "9:-\37700%\37732%\37722'\37735-\377QOA\377MN;\377;\77.\377FJ\77\377N" "O\77\377TF8\377iZQ\377XK\77\377`D=\377PD=\377./\40\377-.'\377(($\377" "\40\31\24\377(!\31\3771*\40\3771\"\24\377>(\30\377;,\34\377#\23\15\377" "\35\14\7\377\40\16\7\377\40\17\7\377\34\14\5\377\37\15\6\377$\22\10\377" "#\20\5\377!\20\4\377\35\23\20\377%-:\377\13\14\21\377\24\21\23\377*-" "1\377.7@\377!*1\377\30\26\25\377\32\20\12\377\35\17\6\377\37\15\2\377" "\"\20\3\377\30\14\4\377\14\4\1\377\13\2\1\377\16\2\1\377\17\3\1\377\21" "\5\1\377\27\17\14\377!\"!\377\40%'\3775CD\377s}\213\377bs\177\377Fms" "\377Aii\377Bjc\377Dwt\377d\222\230\377\77`d\377HLN\3773/(\3773/,\377" "711\377834\377FAF\377RPW\377POZ\377QWj\377P_\177\377I_\205\377GXy\377" "GTm\377ENc\377FPa\377DKZ\377%#$\377\30\17\14\377\32\7\2\377%\10\2\377" ",\14\1\3770\15\1\377/\12\1\377+\15\3\377-\23\7\377-\26\12\377b\77&\377" "c<\36\377\201I\35\377\205K\27\377{E\25\377d5\12\377\77\32\3\377<\26\1" "\377.\24\2\377\26\11\1\377\4\0\0\377\20\12\2\3773&\12\377\222I6\15\377" "\10K8\20\377hZG\377\231\223\247\377\267\267\341\377\272\272\346\377\272" "\271\345\377\234\227\255\377_P7\377\215I6\15\377\23]M4\377\233\226\257" "\377\264\264\341\377\262\262\336\377\263\263\337\377\260\260\335\377" "\257\257\334\377\260\260\335\377\253\253\330\377\254\254\331\377\246" "\246\324\377\244\244\322\377\244\244\321\377\241\241\317\377\236\236" "\314\377\232\232\311\377\230\230\307\377\225\225\304\377\223\223\302" "\377\202\220\220\300\377\6\215\215\275\377\213\213\273\377\212\212\273" "\377\210\210\270\377\205\205\265\377\206\206\267\377\202\202\202\263" "\377\4\177\177\260\377~~\257\377}}\256\377||\256\377\202zz\253\377\2" "vv\250\377uu\250\377\202tt\246\377\5rr\244\377qq\244\377pp\242\377nn" "\241\377oo\241\377\202ll\237\377\1kk\236\377\202ii\234\377\202ff\232" "\377\203cc\227\377\2bb\226\377]]\221\377\202[[\220\377\3[[\217\377XX" "\215\377WW\214\377\203VV\213\377\2RR\210\377QQ\207\377\202RR\210\377" "\1OO\205\377\202NN\204\377\202LL\201\377\2KK\201\377JJ\200\377\202HH" "~\377\202FF}\377\1DD{\377\202EE{\377\1DD{\377\202BBy\377\1@@w\377\202" "\77\77v\377\4@@w\377>>u\377\77\77v\377@@w\377\202<)\377SF1\377USB\377WXL\377VWO\377ZVP\377VKD\377" "K<5\377B2'\377\77/!\377;-\35\377;-\33\3778+\32\3774)\31\3774&\32\377" "8\22(\377=\7""2\377A\11""6\377F\12;\377M\15A\377U\20I\377^\25Q\377f\31" "Y\377o\37a\377w$h\377})n\377\203.s\377\2104x\377\2149}\377\220=\201\377" "\223@\204\377\224C\206\377\202\225C\206\377\17\223@\203\377\220=\177" "\377\2148|\377\2073w\377\202-q\377{(l\377u#f\377m\34_\377d\27V\377[\23" "N\377S\17G\377K\14@\377E\12:\377\77\10""5\377<\6""3\377\202<\5""3\377" "\1<\5""2\377\205<\4""2\377\5:\5""0\377.\13\35\377!\27\12\377/*\36\377" "DA9\377\202JHB\377\1JHA\377\202LJB\3779LIA\377LH@\377LHA\377NJC\377K" "HA\377GD<\377DB9\377C@9\377=:4\377;6/\377:7+\37731%\3772+\37\3772)\34" "\377.$\26\377+!\24\377G@/\377--\36\377\34\36\23\377''\35\377fdY\377b" "UP\377ND>\377,3\24\377\37-\13\377\33(\11\377\27\35\10\377('\31\377==" ":\377CCD\377BJR\377\24\22\20\377\21\7\5\377\"\22\11\377'\24\12\377%\23" "\11\377\36\16\5\377!\16\7\377)\24\10\377'\21\6\377,\25\10\377%\24\10" "\377\25\14\5\377\23\11\3\377\33\25\25\377'12\377\15\16\13\377\11\10\10" "\377\25\25\31\377#'3\377\40\36&\377!\34\33\377&&'\377(*/\377\31\26\24" "\377\16\6\3\377\14\3\1\377\202\14\1\1\377:\15\2\1\377\16\1\1\377\14\1" "\1\377\10\2\1\377\11\2\2\377\13\2\2\377.5\77\377Yk{\377qqz\377V[[\377" "%>2\377Blc\377Irq\377@io\377Yss\377gdd\377XW[\377YY`\377YX_\377YU]\377" "ZX`\377US\\\377QNV\377QNT\377LKT\377FGT\377EHS\377\77CP\377<@N\37799" "D\377))0\377%%+\377\40\35!\377\31\17\16\377\35\11\3\377$\11\2\3774\31" "\14\377\35\14\2\377\22\10\5\377>+\32\377N2\27\377b8\27\377m>\23\377h" ":\24\377[1\14\377\77\33\4\377A\34\4\3772\30\3\377\25\10\1\377\13\6\1" "\377,\40\7\377F4\14\377I6\15\377I7\16\377ZJ.\377tia\377fXD\377K9\21\377" "\217I6\15\377\5J7\17\377^N5\377|ro\377naT\377L9\22\377\214I6\15\377\4" "M;\25\377\211\200\207\377\265\265\335\377\271\271\344\377\202\267\267" "\343\377\202\264\264\341\377\2\262\262\336\377\261\261\336\377\202\254" "\254\331\377\1\252\252\327\377\202\245\245\323\377\21\241\241\317\377" "\237\237\315\377\236\236\314\377\232\232\310\377\231\231\307\377\226" "\226\305\377\225\225\304\377\224\224\303\377\220\220\300\377\220\220" "\277\377\216\216\276\377\213\213\273\377\214\214\274\377\211\211\271" "\377\206\206\267\377\205\205\266\377\205\205\265\377\202\202\202\263" "\377\3\177\177\260\377~~\257\377||\256\377\202zz\253\377\10ww\251\377" "uu\250\377tt\246\377ss\245\377nn\241\377oo\241\377nn\241\377kk\236\377" "\202ii\234\377\2hh\233\377ff\232\377\202dd\230\377\203aa\225\377\2``" "\224\377]]\221\377\202[[\220\377\4\\\\\221\377ZZ\216\377XX\215\377WW" "\214\377\203VV\213\377\1TT\211\377\202RR\210\377\2QQ\206\377PP\205\377" "\202QQ\206\377\2OO\205\377MM\203\377\202LL\202\377\13LL\201\377KK\201" "\377LL\202\377JJ\200\377HH~\377II\177\377FF}\377DD{\377EE{\377CCz\377" "BBy\377\203AAx\377\2@@w\377\77\77v\377\202<H\377'Mi\3770Wu\377:a\177\377Dl\211\377Rw\224\377_\203\237\377n\220" "\251\377~\235\265\377\214\251\277\377\234\265\310\377\252\300\322\377" "\266\311\330\377\300\322\336\377\311\327\343\377\320\334\347\377\325" "\341\353\377\330\343\354\377\202\331\343\355\377\32\325\337\353\377\317" "\335\350\377\311\330\345\377\301\323\341\377\271\315\335\377\257\305" "\327\377\244\275\321\377\231\264\312\377\214\252\300\377\177\236\266" "\377s\224\255\377g\212\244\377[\200\234\377Qw\223\377Gn\213\377=e\202" "\3776]{\377.Us\377&Lj\377\40Ea\377\33>X\377\27""7P\377\24""2I\377\21" "-C\377\16)>\377\14&9\377\203\13$8\3770\16$4\37785\40\377g]G\377ii_\377" "~\202\203\377oid\377lZM\377pXI\377dNA\377\217vh\377\314\240\225\377\347" "\271\257\377\347\273\262\377\316\245\227\377\237\203q\377q_M\377XC2\377" "N:'\377G5$\377D3!\377G4#\377F3\"\377E4\"\377K=+\377TI<\377UND\377TNF" "\377OKE\377KFA\377E=6\3779.$\377.&\32\3771\40\34\3777\15+\377=\7""3\377" "B\11""7\377G\13<\377M\15A\377T\20H\377\\\23N\377d\27V\377l\34]\377s!" "d\377y&j\377~+o\377\203/s\377\2062x\377\2125{\377\202\2127{\377\21\212" "6{\377\2104y\377\2062w\377\202.s\377\177*n\377y%j\377s!d\377m\34]\377" "e\30W\377]\24P\377U\20H\377M\15A\377G\13<\377A\11""8\377<\7""3\377<\6" "3\377<\5""3\377\202<\5""2\377\204<\4""2\377\3;\5""1\3774\7'\377\"\23" "\14\377\202\35\25\5\377\4\37\30\10\3770+\37\377DA:\377IGA\377\202KHA" "\377mLHA\377LIA\377MJB\377KH@\377KHA\377EB;\377GD=\377JHA\377DA:\377" "<8/\3772/%\377/+!\3775+#\3770&\40\377)\40\31\377\37\25\16\377.&\40\377" "%%\"\377\40\34\25\377#\33\25\377UPH\377QH<\377*-\21\377&9\16\377\37""2" "\23\377\31$\23\3771DD\377CXl\377R^n\377=9<\377932\377,)&\377,+,\377\34" "\34\34\377\35\26\20\377%\22\7\377/\27\10\3771\26\10\3773\27\7\377,\27" "\10\377\31\13\5\377\25\10\2\377+,$\377'\24\377;\"\17\377K'\12\377" "]1\16\377^5\21\377P+\13\377;\36\6\377@!\10\377.\31\5\377\31\12\2\377" "&\32\6\377D2\14\377\202I6\15\377\10RA\37\377\205|\200\377\264\263\332" "\377\267\267\343\377\263\263\337\377\234\227\261\377maU\377L:\23\377" "\235I6\15\377\2k^N\377\255\253\315\377\203\267\267\343\377\202\264\264" "\341\377\5\263\263\337\377\262\262\336\377\257\257\334\377\256\256\332" "\377\254\254\331\377\202\252\252\327\377\202\244\244\322\377\3\241\241" "\317\377\237\237\316\377\236\236\314\377\202\233\233\312\377\1\230\230" "\307\377\202\225\225\304\377\3\223\223\302\377\221\221\301\377\220\220" "\277\377\202\215\215\275\377\6\212\212\273\377\211\211\271\377\206\206" "\267\377\205\205\266\377\204\204\264\377\201\201\262\377\202\177\177" "\260\377\4{{\254\377zz\253\377yy\253\377xx\252\377\202uu\247\377\11t" "t\246\377qq\244\377pp\243\377pp\242\377nn\241\377ll\237\377mm\240\377" "kk\236\377ii\234\377\202gg\233\377\4ff\232\377ff\231\377dd\230\377cc" "\227\377\203aa\225\377\4__\223\377]]\221\377\\\\\221\377[[\220\377\202" "ZZ\216\377\2WW\214\377VV\213\377\202UU\212\377\2RR\210\377QQ\206\377" "\202PP\205\377\1NN\204\377\202LL\202\377\5KK\201\377II\177\377HH~\377" "JJ\200\377FF}\377\202FF|\377\1BBy\377\203CCz\377\2BBy\377AAx\377\202" "\77\77v\377\7==u\377>>u\377<\32\377M:\22\377O<\25\377P\77\31" "\377<;-\377\"C[\377(Om\3772Yv\377;c\201\377Gn\213\377Tz\226\377b\206" "\241\377q\223\254\377\201\240\267\377\220\254\301\377\237\270\312\377" "\255\303\324\377\271\314\332\377\304\323\340\377\314\333\346\377\324" "\337\352\377\327\343\355\377\331\343\355\377\332\344\355\377\330\343" "\355\377\325\340\353\377\317\334\350\377\311\330\345\377\301\323\341" "\377\270\315\334\377\256\305\327\377\243\274\320\377\230\263\312\377" "\214\251\302\377\177\237\272\377r\224\257\377e\211\243\377Y~\232\377" "Ou\222\377El\211\377;c\201\3774[y\377,Sp\377%Kh\377\37D^\377\32\377jYC\377|t_\377\222\224" "\205\377\251\243\224\377\312\260\243\377\342\300\267\377\350\300\266" "\377\323\254\237\377\245\207v\377{jY\377^QA\377J;*\377L8'\377K5#\377" "H3\"\377H2\"\377J3\"\377H3!\377E1\37\377A/\36\377=/\34\377\377MKF\377JIJ\377E8B\377;\20""3\377>\10""4\377C\11" "7\377G\13<\377L\15A\377S\17G\377[\22M\377a\26S\377h\32Y\377n\35_\377" "s!d\377x%i\377{(l\377~*o\377\203\177+p\377\16~*o\377|(m\377y%j\377u#" "f\377p\37b\377j\33\\\377d\27V\377\\\24O\377U\20I\377O\15C\377I\13>\377" "C\11""8\377>\10""4\377<\6""3\377\202<\5""3\377\1<\5""2\377\204<\4""2" "\377\4;\5""1\3777\7+\377&\21\22\377\36\25\6\377\204\35\25\5\377\11\40" "\31\11\377/+\37\377CA9\377GE>\377HF\77\377HE>\377\77:2\377<3*\377>93" "\377\202;93\377KBA<\377\77=8\37785.\377960\37753+\37771+\377>2/\377C" "54\377M>@\377Q\77<\377G62\3770(#\377\30\25\21\377\27\22\17\377'%\36\377" ",*\32\377$-\35\377->(\377.98\377AHZ\377@@M\377&\32\34\377#\22\10\377" "'\23\13\377+\34\24\377AEE\377#,+\377\31\30\30\377\35\27\22\377#\23\10" "\377)\22\6\377(\22\6\377\32\11\2\377\27\6\1\377\31\11\3\377%\35\21\377" "8B.\377=X>\377/T@\3776[I\377*\77-\377\34""4#\377\23\40\24\377\14\15\12" "\377\4\4\3\377\5\3\1\377\20\11\7\377\37\30\23\377+((\37757<\3778@I\377" "/8B\377\37#&\377\24\21\16\377\20\12\7\377\13\4\3\377\5\1\1\377\4\0\0" "\377\1\0\0\377\2\1\1\377\1\0\1\377\2\1\3\377\0\0\2\377\0\0\3\377\0\1" "\6\377\0\2\10\377\1\4\14\377\3\6\16\377\4\11\26\377\36\36-\377ECN\377" "ZYd\377\\[f\377\\Zc\377XU\\\377\202XTZ\377\27ZT[\377WQY\377TOU\377VP" "T\377QKP\377JFL\377DBJ\377A@G\37798@\377,-5\377('/\377#!'\377\27\21\24" "\377\23\6\4\377(\20\5\377D\"\6\377G$\6\377;\36\6\377*\24\4\3777%\22\377" "2$\30\377,\34\10\377@/\13\377\202I6\15\377\14M;\26\377wlf\377\256\254" "\317\377\270\270\344\377\265\265\341\377\264\264\340\377\263\263\337" "\377\260\260\335\377\255\255\331\377\233\230\270\377pea\377O>\33\377" "\231I6\15\377\4YI,\377\222\213\233\377\270\267\343\377\265\265\341\377" "\202\266\266\342\377\4\264\264\340\377\263\263\337\377\261\261\336\377" "\257\257\334\377\202\254\254\331\377\4\250\250\325\377\247\247\324\377" "\245\245\323\377\244\244\322\377\202\240\240\316\377\1\235\235\313\377" "\202\233\233\312\377\202\226\226\305\377\1\225\225\304\377\202\223\223" "\302\377\1\221\221\301\377\202\217\217\276\377\4\214\214\274\377\212" "\212\273\377\212\212\272\377\207\207\267\377\202\205\205\265\377\16\203" "\203\264\377\201\201\262\377\177\177\260\377~~\257\377}}\256\377||\256" "\377{{\254\377yy\253\377xx\252\377uu\250\377uu\247\377tt\246\377ss\245" "\377qq\244\377\202pp\242\377\3nn\241\377ll\237\377kk\236\377\202ii\234" "\377\7gg\233\377ff\231\377dd\230\377cc\227\377aa\225\377``\224\377__" "\223\377\202]]\221\377\202[[\217\377\2YY\216\377XX\215\377\202WW\214" "\377\202UU\212\377\7TT\211\377SS\210\377RR\210\377QQ\207\377QQ\206\377" "PP\205\377NN\204\377\202MM\203\377\5LL\201\377KK\201\377II\177\377JJ" "\200\377GG~\377\202FF}\377\4EE{\377DD{\377EE{\377DD{\377\202AAx\377\6" ">>u\377\77\77v\377==u\377<.\36\3779,\34\377" "1(\30\377/'\27\3774(\32\3779,\35\377\27""5\377\77\12""5\377C\12""9\377H\13=\377M\15A\377" "R\17F\377X\21K\377^\24Q\377d\27V\377i\32Z\377m\35^\377p\37a\377r!c\377" "u!e\377t\"e\377u!e\377t!d\377q\37c\377n\35_\377j\33[\377e\31W\377`\26" "R\377[\22N\377T\20H\377N\15C\377I\13>\377D\11:\377\77\10""5\377<\7""3" "\377<\6""3\377<\5""3\377\202<\5""2\377\203<\4""2\377\4;\5""1\3777\6," "\377)\20\25\377\36\25\6\377\207\35\25\5\377F\37\30\10\377/,\40\377>A" "7\377<9,\377A8*\377:1&\377+\36\23\3770$\35\37770+\377:73\377;95\377=" "<5\37755+\377\36\37\31\377\40\33\25\377!\34\22\377:2-\377MCG\377SV_\377" "NJR\377M=@\377\77""1.\37720/\377477\377\26\25\24\377\17\13\10\377\30" "\26\23\377'%#\377\40\24\14\377$\20\6\377(\22\7\377(\23\10\377$\20\7\377" "60(\377LZL\3775A4\377\37*\40\377),)\377\30\30\31\377\30\14\10\377\40" "\25\16\377'\30\14\377(\30\13\377\27\11\4\377\37\34\33\377+:4\377CWN\377" "%\77""3\377*@;\377%;0\377%>*\377\25)\32\377\25\36\23\377\30\34\24\377" "\22\26\22\377\10\10\10\377\12\6\5\377\25\16\13\377#\34\27\3772.3\377" ";@P\377BLe\377:DV\37735>\377.02\377(./\377),-\377\23\22\21\377\5\1\1" "\377\2\0\0\377\205\0\0\0\377\40\0\0\2\377\0\1\5\377\0\3\11\377\1\1\5" "\377\15\4\3\377+\32\32\377E;C\377]Ya\377c`f\377b`g\377^\\c\377\\Y`\377" "XRY\377VPU\377YQU\377WSV\377VSX\377SRX\377KKT\377FFO\377DDK\377:9B\377" "--3\377''.\377\"\"+\377\25\22\27\377\12\5\4\377\6\1\0\377\14\3\3\377" "\32\33\34\377'&\40\377@2\24\377\204I6\15\377\2th`\377\271\270\343\377" "\203\272\272\346\377\11\270\270\344\377\264\264\340\377\257\257\333\377" "\253\253\330\377\251\251\326\377\242\242\320\377\225\223\270\377rim\377" "Q@\40\377\225I6\15\377\6K8\20\377xmk\377\253\252\322\377\257\257\334" "\377\260\260\335\377\255\255\332\377\202\256\256\332\377\2\252\252\327" "\377\255\255\332\377\202\252\252\327\377\1\250\250\325\377\202\246\246" "\324\377\2\244\244\321\377\243\243\321\377\202\237\237\316\377\1\233" "\233\312\377\202\232\232\311\377\1\226\226\305\377\202\225\225\304\377" "\1\221\221\301\377\202\220\220\277\377\1\216\216\276\377\202\213\213" "\273\377\1\207\207\267\377\202\206\206\267\377\1\205\205\265\377\202" "\201\201\262\377\5\200\200\261\377~~\257\377}}\256\377||\256\377{{\254" "\377\202yy\253\377\202vv\250\377\5uu\247\377tt\246\377ss\245\377qq\244" "\377pp\242\377\202nn\241\377\3ll\237\377kk\236\377ii\234\377\202hh\233" "\377\1ff\232\377\202ee\230\377\1dd\230\377\202aa\225\377\1``\224\377" "\202__\223\377\4]]\221\377\\\\\221\377[[\217\377ZZ\216\377\202XX\215" "\377\203VV\213\377\1UU\212\377\202RR\210\377\2QQ\206\377OO\205\377\203" "MM\203\377\4LL\201\377II\177\377JJ\200\377II\177\377\202GG~\377\2HH~" "\377EE{\377\203DD{\377\1CCz\377\203AAx\377\202@@w\377\203>>u\377\202" "<\32\377\202I6\15\377wJ7\16\377J8\17\377K8\20\377" "M:\22\377N<\24\377P>\27\377A<&\377\36;O\377\"Gd\377*Qn\3774[y\377>e\204" "\377Jq\216\377W|\231\377g\212\244\377w\227\260\377\206\244\273\377\226" "\261\306\377\245\275\317\377\263\307\326\377\276\320\335\377\310\327" "\342\377\320\334\346\377\326\341\351\377\330\343\353\377\332\344\355" "\377\331\344\355\377\330\343\355\377\325\340\353\377\317\334\350\377" "\310\327\344\377\277\321\340\377\266\313\333\377\254\303\326\377\241" "\273\316\377\225\261\310\377\211\247\300\377~\236\270\377p\223\260\377" "f\212\250\377Z\200\237\377Ou\225\377Cj\207\377:`}\3771Xv\377)Pm\377\"" "Gd\377\35@Z\377\30""9S\377\25""4K\377\21/E\377\17+@\377\16(<\377\15(" ";\377\15';\377\14';\377\14':\377\14';\377\21*;\377or^\377\253\242r\377" "\265\255y\377\266\257|\377\267\261\200\377\275\267\207\377\270\262\202" "\377\264\251|\377\304\254\211\377\330\261\232\377\343\263\242\377\333" "\253\233\377\301\232\211\377\177gT\377SG2\377F@-\377KH8\377USG\377WV" "O\377NLH\377C>3\377=4)\377@92\37771*\3775,#\377:-\"\377C1&\377I4)\377" "K7*\377J7*\377D4'\377\77""2\"\377;.\36\377<(!\377:\24*\377<\11""1\377" "A\11""6\377G\12;\377K\15@\377O\16C\377U\20H\377Y\21M\377^\25Q\377b\27" "U\377f\30X\377h\32Z\377h\32[\377j\33\\\377j\34\\\377i\33[\377g\32Z\377" "d\27V\377`\25T\377\\\23O\377W\21J\377R\17G\377M\15B\377H\13>\377D\11" ":\377\77\10""5\377\202<\7""3\377\2<\6""3\377<\5""3\377\202<\5""2\377" "\202<\4""2\377\4;\5""1\3776\7*\377'\20\24\377\36\25\6\377\212\35\25\5" "\377F!\32\12\3770/\40\377\36'\32\377\20\16\12\377\36\24\20\377%\30\23" "\377-\35\25\377)%!\377,/1\377.14\377.0/\377-0-\377#$\"\377\23\22\20\377" "\30\22\23\37765\77\377>FY\377=Oh\377;Mf\377EK]\377KBI\377;0.\377'#\40" "\377,00\377\35##\377\25\16\13\377%\23\7\377(\22\7\377$\16\4\377)\23\10" "\377D.\35\377_YK\377SZM\3775G4\3770M:\3775O9\377\21\37\21\377\14\16\11" "\377\34\31\27\377217\377,*)\377!\26\23\377VTb\377hiu\377in\204\377P_" "u\377&BB\377\34""62\377Elj\3772VO\377\16\"\27\377\20$\24\377\40/&\377" "2AE\377\32\37\36\377\13\13\14\377\16\13\12\377\40\32\31\3774.-\377=9" ";\377<9@\377\77@G\377@CL\377CLZ\377BJ]\377./:\377\36\36!\377\15\12\12" "\377\6\1\1\377\2\0\0\377\202\0\0\0\377\40\1\1\2\377\3\4\12\377\36\"+" "\3777:>\377\36\31\32\377\33\11\5\377\31\6\1\377\36\14\7\3773!\34\377" "=6;\377ZV_\377c`f\377fbf\377b_d\377_\\b\377\\X]\377YTV\377[TX\377[V[" "\377[Y_\377YX^\377RQX\377LJS\377KJP\377<>" "u\377\203<X\377" "#He\377+Ro\3775\\z\377\77f\204\377Lr\217\377Y~\232\377h\213\245\377x" "\231\261\377\210\246\274\377\230\263\307\377\247\276\320\377\265\310" "\327\377\300\321\336\377\312\330\343\377\321\335\347\377\327\342\352" "\377\331\343\353\377\333\345\355\377\332\345\355\377\330\343\354\377" "\325\337\353\377\316\335\350\377\310\327\344\377\277\320\340\377\265" "\312\332\377\253\303\325\377\240\272\317\377\224\260\310\377\207\247" "\300\377|\235\270\377o\222\257\377d\211\247\377Y\177\236\377Mt\223\377" "Ah\206\3778_}\3770Wu\377(Nl\377!Fb\377\34\77Y\377\30""9R\377\24""3K\377" "\22""0F\377\21+@\377\17)<\377\16);\377\203\15(;\3771\14';\377\15':\377" "DVV\377\257\260\216\377\303\275\226\377\311\303\236\377\303\303\235\377" "\270\270\214\377\247\247x\377\246\245x\377\267\251\202\377\316\255\221" "\377\333\262\236\377\333\254\232\377\311\227\200\377\231rZ\377_K4\377" ">6#\377:1\"\3778/\37\3774+\35\3770)\32\377/*\32\377/+\34\377AB5\377K" "OE\377DGA\377X[W\377X\\[\377Z\\[\377UQP\377WNM\377UHC\377KA<\377\77""6" "0\37780(\3777*%\3778\35(\377:\14/\377@\10""5\377E\11:\377H\13<\377K\14" "@\377O\16C\377S\17G\377W\21J\377Z\23M\377\\\24O\377]\23P\377\202^\25" "Q\377\12^\24Q\377]\25P\377[\23N\377V\21K\377S\20G\377N\15B\377K\14@\377" "G\13<\377B\11""8\377>\10""4\377\202<\7""3\377\2<\6""3\377<\5""3\377\202" "<\5""2\377\10<\4""2\377;\5""1\377:\5""0\3771\11'\377!\24\31\377\"\37" "\32\377%\37\24\377\37\27\7\377\211\35\25\5\377\202\35\26\5\377d\40\32" "\12\377!\40\23\377'(\37\377&\40\33\377%##\377\27\31\35\377\31\27\33\377" "\36\37&\377,-3\377,+-\377'$!\377!\36\33\377)''\377$$$\377\17\15\15\377" "\30\27%\377@BT\377BM_\3776@P\377987\377\"&\33\37702)\377\40%\36\377\26" "\31\30\377\32\31\26\377\34\20\11\377)\30\13\3776\36\21\377[D5\377b^_" "\377]cf\377m\211^\377a\205I\377HtK\377-Q5\3770H5\377\15\31\20\377\13" "\11\7\377!\35\32\377.+-\3776;@\377+/4\377&%0\377Shk\377@[U\377Fh_\377" "3VR\377Hlg\377%O>\3779]Y\377*NK\377+@>\377\35\35\33\377'\36\33\377\34" "\30\31\377\21\23\25\377\25\25\27\3773,/\377E@C\377HDF\377DAC\377\77<" "A\37799\77\37713=\377017\377.06\377\40!%\377\14\13\15\377\2\0\0\377\2" "\0\2\377\10\10\16\377))+\377GDC\377IGJ\377/)/\377\40\27\27\377\40\21" "\16\377%\23\14\377\17\5\2\377\6\1\1\377\20\14\17\3770-4\377URZ\377b^" "d\377fbf\377ech\377ecg\377c`d\377_Y]\377\\UW\377]XZ\377_[_\377\\Z^\377" "UTY\377KKR\377FGN\377;=F\377-,3\377:/\34\377G5\16\377\211I6\15\377\4" "I7\16\377]M3\377\215\206\221\377\265\264\335\377\203\272\272\346\377" "\11\271\271\345\377\265\265\341\377\262\262\336\377\260\260\335\377\253" "\253\330\377\244\244\321\377\234\233\307\377yq{\377I6\16\377\216I6\15" "\377\11M;\26\377zr~\377\230\230\304\377\234\234\313\377\235\235\313\377" "\233\233\312\377\232\232\311\377\232\232\310\377\232\232\311\377\202" "\230\230\307\377\3\232\232\311\377\225\225\304\377\226\226\305\377\202" "\225\225\304\377\1\221\221\301\377\202\220\220\300\377\7\217\217\276" "\377\216\216\276\377\213\213\273\377\216\216\276\377\214\214\274\377" "\213\213\273\377\207\207\267\377\202\211\211\271\377\202\205\205\265" "\377\1\202\202\263\377\202\201\201\262\377\2\177\177\260\377||\256\377" "\202\177\177\260\377\202||\256\377\13{{\254\377yy\253\377zz\253\377y" "y\253\377vv\250\377uu\250\377uu\247\377tt\246\377rr\244\377pp\243\377" "pp\242\377\202nn\241\377\2ll\237\377kk\236\377\202ii\234\377\1ff\232" "\377\204ee\230\377\1bb\226\377\202aa\225\377\1``\224\377\202]]\221\377" "\1\\\\\221\377\202[[\217\377\1XX\215\377\202WW\214\377\202VV\213\377" "\1UU\212\377\202SS\210\377\1RR\210\377\202QQ\207\377\1QQ\206\377\202" "PP\205\377\203MM\203\377\203LL\201\377\1KK\201\377\202HH~\377\204FF}" "\377\203DD{\377\204AAx\377\203\77\77v\377\202>>u\377\2<\40" "\377\37""4@\377\34\77Y\377#He\377+Ro\3775]z\377\77g\205\377Ls\217\377" "Z~\233\377i\214\246\377z\231\262\377\211\247\275\377\231\264\310\377" "\251\277\321\377\266\311\330\377\301\322\337\377\312\330\344\377\322" "\336\347\377\327\342\352\377\333\345\355\377\334\346\355\377\333\345" "\354\377\327\342\352\377\324\340\351\377\315\333\347\377\307\326\344" "\377\276\321\337\377\264\312\332\377\251\302\324\377\237\271\316\377" "\223\257\307\377\206\246\277\377{\234\266\377n\220\254\377a\205\242\377" "Tz\227\377Jp\215\377@g\205\3777^|\377/Vt\377'Mk\377!Fb\377\34>Y\377\30" ":S\377\25""4K\377\22/D\377\20,@\377\17)<\377\16(;\377\203\15(;\3771\14" "';\377\15':\377#:D\377\206\213q\377\226\222q\377\236\234|\377\234\241" "\177\377\232\240\177\377\244\254\215\377\264\271\234\377\275\273\242" "\377\312\275\252\377\325\275\257\377\327\267\251\377\314\247\226\377" "\247\205q\377iXE\377;7)\3775/\"\3772+\36\377/)\33\377-'\31\377,%\27\377" ",&\27\377.&\31\3771'\33\3771)\35\3770+\36\37735*\377IPF\377T[S\377IT" "S\377INL\377\77\77;\377B\77""6\377EB:\377HGA\377FD@\377>02\377D$8\377" "<\14""2\377A\10""5\377E\12""9\377H\13=\377K\13@\377N\14A\377O\15C\377" "P\16D\377Q\16E\377\202S\17F\377\11R\17F\377Q\17F\377O\16D\377N\16B\377" "J\14\77\377G\13=\377D\11""9\377@\10""6\377=\10""4\377\202<\6""3\377\202" "<\5""3\377\202<\6""2\377\13;\5""1\377:\5""1\3775\10,\377)\15\36\377\36" "\23\20\377\36\27\16\377\37\30\17\377\"\35\23\377#\36\23\377\40\27\11" "\377\35\26\6\377\207\35\25\5\377\204\35\26\5\377`\37\31\11\377#\40\27" "\377031\377/76\377\31\36\34\377\23\21\22\377\37\35\37\377\33\30\30\377" "&%'\377./1\377><<\377687\377,.-\377\40#$\377\32\27\24\377.%\36\377.)" "\40\3776.!\377XYC\377U_E\377:J3\377&3\40\377\32\40\22\377\20\22\12\377" "\32\25\15\377+'%\377'\34\25\377)+\"\377*6\"\37759.\377Yp[\377k\213Q\377" "YzX\377>Z>\377%9&\377\35!\31\377\31\27\25\377\36\33\27\377#\40#\3773" "3\77\377;AN\377QS_\377dhz\377Voh\377BdW\3777]G\3772^E\377/ZG\377)B:\377" "\20\14\16\377\30\10\6\377\27\4\2\377\"\21\16\377\34\21\16\377+%!\377" "\31\34\36\377\31\30\33\3773/2\377HDH\377JEI\377HBD\377E@C\377C@D\377" "\77=B\37788\77\37712:\377\"$)\377\16\16\21\377\22\16\15\377.'!\3772*" "&\377\31\21\17\377\34\24\21\377)\"$\377&\35\32\377\10\4\3\377\5\1\1\377" "\7\1\1\377\2\1\0\377\0\0\0\377\7\6\11\377&%.\377NMV\377b`g\377eci\377" "c`f\377caf\377b_c\377_[^\377_Y[\377]YZ\377_\\_\377\\Z_\377TSW\377JB3" "\377H7\22\377\215I6\15\377\4I7\16\377VF'\377\206~\203\377\260\256\323" "\377\204\272\272\346\377\6\267\267\343\377\263\263\337\377\262\262\336" "\377\240\235\275\377gZM\377I6\16\377\214I6\15\377\13J8\21\377aTH\377" "\215\213\262\377\222\222\301\377\223\223\302\377\220\220\300\377\223" "\223\302\377\216\216\276\377\220\220\277\377\215\215\275\377\220\220" "\277\377\202\216\216\276\377\16\220\220\300\377\213\213\273\377\216\216" "\276\377\212\212\272\377\212\212\273\377\207\207\267\377\206\206\267" "\377\207\207\267\377\205\205\265\377\206\206\267\377\203\203\264\377" "\205\205\265\377\203\203\264\377\201\201\262\377\203\200\200\261\377" "\1}}\256\377\202||\256\377\20}}\256\377~~\257\377zz\253\377ww\251\377" "zz\253\377ww\251\377uu\250\377uu\247\377ss\245\377rr\244\377pp\243\377" "rr\244\377oo\241\377mm\240\377nn\241\377ll\237\377\202kk\236\377\2hh" "\233\377gg\233\377\203hh\233\377\1gg\233\377\203dd\230\377\203cc\227" "\377\1``\224\377\202__\223\377\3]]\221\377\\\\\221\377[[\220\377\202" "[[\217\377\2ZZ\216\377WW\214\377\202VV\213\377\3UU\212\377VV\213\377" "UU\212\377\203QQ\207\377\202QQ\206\377\1PP\205\377\202MM\203\377\203" "LL\201\377\203II\177\377\1HH~\377\203FF}\377\203EE{\377\203CCz\377\204" "AAx\377\1\77\77v\377\202>>u\377\203<f\204\3776^{\377.Us\377'Mj\377" "!Eb\377\33\77Y\377\27""9Q\377\25""3J\377\22/D\377\20+\77\377\202\16(" ";\377\203\15(;\3770\15':\377\14':\377\23*9\377SZ@\377g^<\377paA\377p" "iF\377\203\204`\377\241\244\177\377\272\274\231\377\306\304\250\377\315" "\307\260\377\322\302\264\377\322\274\257\377\315\263\246\377\264\235" "\215\377\203{l\377V[R\377KON\377HKJ\377CDC\377875\3770+%\3770)\37\377" "2)\35\3775*\36\3775*\35\3773)\33\3770'\33\3770(\34\3772*\36\3773-\37" "\377=9+\377D=1\377FA:\377EEC\377<82\3772.#\3774.\35\3771)\30\3776%!\377" ":\32)\377<\17""0\377\77\11""4\377C\11""8\377E\12;\377H\12<\377I\13>\377" "\202J\13\77\377\1J\13>\377\202J\13\77\377\5G\12<\377E\12;\377C\11""9" "\377A\10""7\377>\7""4\377\203<\6""3\377\202<\5""3\377\17<\5""2\377;\6" "1\3779\5/\3773\10)\377+\15\36\377&\32\30\377'\"\33\377*$\36\3770'\40" "\377/$\34\377-\"\31\377.$\31\377.#\31\377,!\25\377\"\31\13\377\205\35" "\25\5\377\207\35\26\5\377\\\36\27\11\377%#\34\377)/0\377\"(-\377\36\40" "$\377\16\16\17\377\26\22\26\377KEJ\377YX[\377VTW\377MLN\377*32\377#)" "'\377\34\34\32\377\35\22\13\377*\32\20\377J=)\377{oH\377o\2047\377'@" "\40\377&;,\377#9,\377\16\26\17\377\17\14\14\377\37\34\34\377++)\377\"" "#\35\377%!\30\377O]M\377[cP\377KL@\377+/$\377Z]O\377;I9\377\37\37\32" "\377(##\377-,.\377,*-\377/+,\377613\37767>\377;>F\3779AF\377-78\377," "42\377\31\30\33\377\14\5\4\377\7\0\0\377\15\1\0\377\21\1\0\377\30\6\3" "\3779)\32\377cK:\377tlf\37749@\377\30\36#\377\30\31\35\377602\377MKK" "\377PML\377HCD\377FAB\377EBE\377\77\77F\37758A\377,0;\377!&-\377\20\21" "\25\377\4\3\4\377\25\26\34\377&,<\377#(8\377\34\35'\377\16\11\13\377" "\5\2\1\377\2\0\0\377\0\0\0\377\0\0\1\377\1\1\2\377\1\1\1\377\6\5\12\377" "\"!)\377IHQ\377Z[d\377]\\e\377b_f\377cci\377a_e\377a`c\377`_b\377XQG" "\377L<\32\377\222I6\15\377\3SB!\377}sq\377\255\253\315\377\203\272\272" "\346\377\3\265\264\335\377\202y|\377P\77\33\377\215I6\15\377\6UD(\377" "\204~\224\377\232\232\311\377\230\230\307\377\226\226\305\377\225\225" "\304\377\202\222\222\301\377\1\212\212\273\377\202\211\211\271\377\1" "\207\207\267\377\202\202\202\263\377\35\203\203\264\377\177\177\260\377" "\202\202\263\377||\256\377~~\257\377||\256\377{{\255\377~~\257\377||" "\256\377~~\257\377xx\252\377{{\254\377yy\253\377uu\250\377xx\252\377" "uu\250\377uu\247\377rr\244\377qq\244\377tt\246\377rr\244\377pp\243\377" "pp\242\377pp\243\377oo\241\377mm\240\377nn\241\377kk\236\377nn\241\377" "\202jj\235\377\12ii\234\377hh\233\377gg\233\377hh\233\377ii\234\377f" "f\232\377ff\231\377ee\230\377cc\227\377dd\230\377\202cc\227\377\1aa\225" "\377\202]]\221\377\2aa\224\377^^\222\377\202\\\\\221\377\6YY\216\377" "WW\214\377[[\217\377XX\215\377YY\216\377ZZ\216\377\202WW\214\377\205" "UU\212\377\3SS\210\377RR\210\377QQ\207\377\202PP\205\377\1NN\204\377" "\202MM\203\377\202LL\201\377\202KK\201\377\2II\177\377HH~\377\202FF}" "\377\202EE{\377\2FF}\377EE{\377\202CCz\377\204AAx\377\1\77\77v\377\203" ">>u\377\1<\377" "\16(;\377\205\15(;\3777\14':\377\15'8\377>G<\377hU=\377oY@\377r_C\377" "\214\203]\377\262\256~\377\312\304\223\377\320\312\240\377\315\306\241" "\377\316\301\247\377\315\271\252\377\310\263\250\377\266\241\226\377" "\213\177s\377WXQ\377@B>\377571\37755-\377AB6\377JL>\377LMC\377CEA\377" "BB>\377\77\77=\377975\3771-,\377,(#\377+%\36\377/(\34\3773)\35\3776," "\37\3777,\37\3779.\40\377A:+\377C<.\377A6%\377=4#\3775-\35\3775*\35\377" "7&\35\3777\36#\3777\23(\3779\15-\377<\11""1\377\77\11""4\377A\11""7\377" "B\11""8\377B\11""9\377B\11""7\377B\11""8\377A\11""7\377@\10""6\377>\10" "4\377\203<\6""3\377\26;\5""2\377;\6""2\377:\6""1\3777\6-\3773\10)\377" ",\13!\377%\20\27\377\35\22\15\377\34\24\13\377\37\27\14\377\"\31\15\377" "&\34\21\377-#\26\3776-\37\377;3&\377<2'\377;/'\3776*\"\3770$\33\377(" "\37\23\377\40\30\12\377\35\25\6\377\202\35\25\5\377\207\35\26\5\377\202" "\36\26\5\377I\37\27\11\377!\37\40\377#)6\37727>\377\34$(\377\31\30\37" "\37772;\377-+1\377;><\3770>5\377$5*\377\35(\32\377\27\35\15\377\30\22" "\20\377;>:\377\77F,\377mq8\3773N+\3775U=\3771J5\377\30!\25\377#\40\34" "\377\"\40\34\377'\"!\377649\377ADK\377CKP\377b_P\377RF=\377'\37\31\377" "\33\31\32\377>WN\377\30%\40\377\3\3\3\377\24\16\17\377)\"$\3771++\377" "5-.\377:34\377=88\377;:=\37747<\377/17\377(),\377\30\27\27\377\15\6\6" "\377\12\1\0\377\40\15\7\377B(\31\377O6'\377XB8\377\\RQ\377E;8\377+\37" "\31\377\31\30\32\377\26\33\40\377\26\30\35\3772.3\377JGF\377KHH\377E" "CF\377CAE\377>\77G\3779=G\3779;E\37757\77\377(,5\377\24\27!\377\22\23" "\40\377\16\14\24\377\4\2\3\377\6\1\1\377\1\0\0\377\203\0\0\0\377\2\1" "\1\1\377\1\1\2\377\202\2\2\2\377\10\3\3\5\377\32\31!\377>\77K\377SR\\" "\377ZX`\377cbh\377]YS\377O@!\377\202I6\15\377\3J7\17\377P>\32\377M;\25" "\377\221I6\15\377\5N<\26\377uia\377\232\225\251\377\222\213\231\377[" "K/\377\215I6\15\377\16M;\25\377wml\377\244\243\316\377\244\244\321\377" "\243\243\321\377\240\240\316\377\235\235\313\377\231\231\307\377\226" "\226\305\377\224\224\303\377\220\220\277\377\213\213\273\377\214\214" "\274\377\210\210\270\377\202\205\205\266\377\6\201\201\262\377}}\256" "\377\177\177\260\377xx\252\377{{\254\377ww\251\377\202uu\250\377\202" "tt\246\377\202qq\244\377\2pp\242\377nn\241\377\202pp\243\377\2pp\242" "\377nn\241\377\202mm\240\377\6kk\236\377hh\233\377ll\237\377jj\235\377" "ii\234\377gg\233\377\202ff\231\377\2gg\233\377ff\231\377\204dd\230\377" "\7bb\226\377cc\227\377bb\226\377aa\224\377bb\226\377``\224\377cc\227" "\377\203__\223\377\4\\\\\221\377YY\216\377]]\221\377\\\\\221\377\202" "ZZ\216\377\12WW\214\377VV\213\377XX\215\377VV\213\377WW\214\377VV\213" "\377SS\210\377RR\210\377OO\205\377QQ\206\377\202RR\210\377\2QQ\207\377" "PP\205\377\202OO\205\377\3MM\203\377NN\204\377LL\202\377\204LL\201\377" "\2KK\201\377JJ\200\377\203FF}\377\202EE{\377\203DD{\377\1BBy\377\202" "AAx\377\1@@w\377\202\77\77v\377\1>>u\377\203<\77\377~vZ\377\214~\\\377\222\212f\377\253\251{\377\304\300" "\217\377\316\313\237\377\315\312\242\377\310\303\231\377\305\272\231" "\377\305\261\232\377\302\246\227\377\264\226\206\377\214t^\377WP;\377" "AD2\377]_M\377|wf\377\203\177m\377~{i\377iiW\377DG8\377++!\377+*\37\377" "/0%\37747.\377;>7\377>C=\377BEC\377BCB\377CDD\377IEC\377HH@\377IJC\377" "HE<\377<3&\377I@2\377IF<\377>\77:\3770'\36\3773%\31\3771#\27\377/\37" "\27\377.\32\32\377/\25\36\3772\21\"\3773\16&\3775\14)\3775\12+\3777\12" "-\3778\13/\3778\14/\3778\15""0\3776\13.\3775\13,\3772\13)\377/\15%\377" "*\16\"\377&\22!\377\40\22\30\377\34\22\21\377\32\24\15\377\31\24\13\377" "\31\24\12\377\33\25\12\377!\31\17\377(\35\23\377.\"\27\3775)\33\377;" ".\40\377=0\"\377;0#\3779/$\377;1&\377;2(\3775,$\377.#\31\377'\35\21\377" "\40\30\11\377\35\25\5\377\206\35\26\5\377\203\36\26\5\377G\37\27\6\377" "\40\30\6\377!\31\15\37700-\377)23\377\35#(\377\32\33!\377\34\26\26\377" "GGJ\377JRW\377F\377=@G\377\"#$\377\16\14\13\377\15\16" "\17\377\30\35\37\377\1\1\2\377\0\0\0\377\3\2\2\377\24\20\20\377,&&\377" "400\377<78\377B<>\377D\77B\377CCG\377<\77F\37739\77\377+/3\377\33\33" "\35\377\30\16\12\377\35\17\6\377:)!\377FBD\37704<\377\37!'\377\23\21" "\20\377\10\2\2\377\6\4\5\377\17\22\27\377\21\27\40\377\23\25\34\3770" "+/\377FDH\377JHK\377GCE\377FCF\377DBH\377B@H\377=\377%*3\377" "\23\26\32\377\3\3\4\377\202\1\0\1\377\203\0\0\0\377\2\0\0\1\377\1\0\1" "\377\203\0\0\1\377\6\1\0\1\377\3\2\5\377\26\24\33\377@<\77\377NA(\377" "J7\17\377\202I6\15\377\6WF'\377\217\210\224\377\255\253\320\377\245\242" "\302\377zpn\377P>\33\377\240I6\15\377\17_P8\377\237\233\267\377\262\262" "\336\377\260\260\335\377\253\253\330\377\252\252\327\377\244\244\322" "\377\245\245\323\377\241\241\317\377\240\240\316\377\230\230\307\377" "\225\225\304\377\224\224\303\377\223\223\302\377\214\214\274\377\202" "\212\212\273\377\6\205\205\265\377\203\203\264\377\202\202\263\377}}" "\256\377{{\255\377zz\253\377\202tt\246\377\12qq\244\377oo\241\377nn\241" "\377mm\240\377jj\235\377gg\233\377ii\234\377gg\233\377ff\232\377dd\230" "\377\202cc\227\377\2bb\226\377aa\225\377\203dd\230\377\202aa\225\377" "\1bb\226\377\202aa\224\377\13]]\221\377^^\222\377__\223\377]]\221\377" "[[\217\377XX\215\377[[\220\377[[\217\377[[\220\377XX\215\377WW\214\377" "\203VV\213\377\2WW\214\377TT\211\377\202VV\213\377\202SS\210\377\202" "RR\210\377\3VV\213\377SS\210\377RR\210\377\202PP\205\377\12OO\205\377" "LL\202\377OO\205\377PP\205\377OO\205\377MM\203\377KK\201\377JJ\200\377" "II\177\377GG~\377\202II\177\377\202HH~\377\202FF}\377\2FF|\377BBy\377" "\202AAx\377\1BBy\377\202DD{\377\2BBy\377AAx\377\202@@w\377\4>>u\377@" "@w\377\77\77v\377>>u\377\203<\377C@\77\377988\377*)+\377\33\32\33\377\16\14\15\377\4" "\2\2\377\0\0\0\377\1\0\0\377\3\0\0\377\13\1\1\377!\22\20\377.$%\3778" "23\377=9:\377C\77@\377FDH\377DGM\377=CI\37749B\377,3:\377\33\37#\377" "\25\27\35\377\27\34&\377\13\15\27\377\3\2\4\377\3\1\0\377\203\0\0\0\377" "\21\2\2\4\377\15\17\25\377\17\25\35\377\20\20\30\377)&(\377FBC\377KG" "F\377HBD\377FAE\377DAF\377BBH\3779f\204\377Kq\216\377X}\232\377h" "\213\245\377w\230\261\377\210\246\274\377\230\263\307\377\247\276\320" "\377\265\310\327\377\300\321\336\377\311\327\343\377\320\335\346\377" "\326\341\352\377\330\343\352\377\330\342\352\377\327\342\352\377\324" "\337\350\377\316\333\345\377\310\326\342\377\277\321\336\377\266\312" "\330\377\254\302\323\377\241\271\314\377\225\261\305\377\211\246\275" "\377|\235\265\377o\222\254\377d\210\243\377X}\233\377Nt\221\377Ck\211" "\3779b\201\3772Yy\377)Qo\377#Ig\377\36C^\377\31;V\377\25""4M\377\21/" "F\377\20,@\377\17)<\377\17(<\377\16(<\377\16(;\377\15';\377\204\14':" "\3779\40""5>\377\207\211e\377\223\221g\377\241\241|\377\263\265\221\377" "\277\277\242\377\277\276\245\377\273\272\241\377\263\263\226\377\254" "\247\210\377\252\240\177\377\251\227v\377\244\220p\377\232\210h\377\223" "\213k\377\226\222t\377\231\226|\377\227\226\177\377\222\221x\377\210" "\206g\377kmH\377:@#\377*(\30\377'$\27\377#\"\24\377$%\30\377**\37\377" "10'\377:8.\37776-\377)%\35\377&#\27\377*$\26\377,$\27\3770%\27\3774&" "\31\3778)\30\377:*\33\3779(\32\3776%\27\3771#\23\377+\40\20\377'\36\16" "\377%\36\20\377$\35\23\377//)\377&'\"\377$\35\26\377\40\31\21\377\36" "\26\15\377\36\24\12\377\35\24\12\377\34\23\11\377\33\23\11\377\34\24" "\12\377\33\24\12\377\32\23\12\377\202\32\24\13\377\30\31\24\12\377\31" "\24\13\377\30\24\13\377\27\22\11\377\26\23\12\377\36\31\21\377'!\30\377" ".'\36\377/*!\377/)\"\3773*!\377/%\33\3773'\33\3773(\34\3772'\34\3771" "(\33\3772)\35\37772%\377:3*\3774*\37\3777+\37\3776)\34\377,%\26\377&" "\37\20\377\202\35\26\5\377\203\36\26\5\3779\37\27\5\377\37\27\6\377\40" "\30\6\377!\31\6\377#\32\6\377%\33\7\377'\35\7\377&\36\11\377\31\33\15" "\377\30\36\30\377\37\35!\37753E\3779AU\377;KS\377A\\]\3770WQ\377+GD\377" "*81\377/-'\377B97\377HBA\377==A\377+,0\377\40\36\35\377\21\14\12\377" "\5\1\0\377\6\2\2\377$\31\26\377A4/\377E>>\377IEF\377IDD\377@=<\377.-" "0\377\35\35\37\377\21\17\17\377\11\4\3\377\7\3\2\377\23\12\7\377\31\20" "\14\377\11\4\2\377\17\14\16\377%\"$\377826\377A=@\377GFI\377CKV\377@" "KY\377:FQ\3773\377\36#)\377\11\13\15\377\1\1\1\377\2\0\0\377" "\4\0\0\377\1\0\0\377\202\0\0\0\377\22\0\0\1\377\3\3\4\377\14\14\23\377" "\20\21\32\377\17\16\24\377#\40$\377>:<\377FCC\377D\77@\377E\77B\377C" "\77E\377AAH\3779=G\37705A\377).9\377\32\35%\377\7\10\13\377\1\1\2\377" "\204\0\0\0\377\3\3\2\1\377!\30\6\377B1\14\377\202I6\15\377\7I7\16\377" "pcX\377\253\251\312\377\272\272\346\377\270\270\344\377\264\264\340\377" "\257\257\334\377\202\252\252\327\377\5\247\247\324\377\245\245\323\377" "\234\233\303\377zr{\377TC%\377\230I6\15\377\3I7\16\377pdX\377\252\250" "\307\377\202\267\267\343\377\202\264\264\341\377\202\262\262\336\377" "\202\257\257\334\377\202\252\252\327\377\6\247\247\324\377\245\245\323" "\377\242\242\320\377\237\237\316\377\236\236\314\377\230\230\307\377" "\202\226\226\305\377\14\220\220\277\377\216\216\276\377\212\212\273\377" "\211\211\271\377\205\205\265\377\205\205\266\377\200\200\261\377||\256" "\377{{\255\377yy\253\377vv\250\377tt\246\377\202pp\243\377\21mm\240\377" "ii\234\377hh\233\377gg\233\377ee\230\377cc\227\377aa\224\377``\224\377" "^^\222\377[[\217\377XX\215\377WW\214\377VV\213\377UU\212\377TT\211\377" "RR\210\377TT\211\377\202QQ\206\377\2PP\205\377OO\205\377\204LL\202\377" "\6KK\201\377LL\202\377LL\201\377NN\204\377LL\202\377MM\203\377\202LL" "\201\377\1II\177\377\202JJ\200\377\1II\177\377\202FF}\377\13EE{\377F" "F}\377FF|\377EE{\377FF}\377FF|\377FF}\377DD{\377CCz\377BBy\377AAx\377" "\203BBy\377\1CCz\377\202AAx\377\3\77\77v\377<>u\377" "\10==u\377\77\77v\377>>u\377==u\377<\3771.0\377\"\37\37\377" "\26\16\14\377\34\21\10\377\23\16\15\377,&&\3776/0\377C<>\377HBC\377I" "DF\377@\77B\377004\377\"\"%\377\24\24\25\377\13\13\14\377\2\1\2\377\202" "\0\0\0\377\16\1\0\1\377\14\12\14\377\"\37#\377427\377><@\377\77BH\377" ";FU\377=HU\377:AK\3775>I\3771=J\377\"*4\377\15\17\22\377\2\2\2\377\202" "\1\0\1\377\203\0\0\0\377\25\0\0\1\377\1\1\2\377\13\12\14\377\17\16\24" "\377\14\14\23\377\33\31\36\377715\377@>C\377C\77B\377GBD\377CAE\377B" "BI\377;\77H\37727B\377-/:\377\35\40&\377\11\12\16\377\1\1\2\377\2\1\1" "\377\30\22\4\377>.\13\377\205I6\15\377\2zol\377\260\256\323\377\202\272" "\272\346\377\2\271\271\344\377\263\263\337\377\202\252\252\327\377\10" "\245\245\323\377\240\240\316\377\235\235\313\377\233\233\312\377\226" "\226\301\377yr\201\377XI1\377J7\16\377\210I6\15\377\2J7\14\377I6\14\377" "\212I6\15\377\3XG*\377\231\224\246\377\271\271\344\377\202\267\267\343" "\377\1\264\264\341\377\202\264\264\340\377\202\257\257\334\377\202\254" "\254\331\377\202\250\250\325\377\202\245\245\323\377\202\240\240\316" "\377\2\235\235\313\377\233\233\312\377\202\231\231\307\377\7\225\225" "\304\377\224\224\303\377\217\217\276\377\216\216\276\377\212\212\273" "\377\211\211\271\377\205\205\265\377\202\200\200\261\377\14||\256\377" "{{\255\377{{\254\377vv\250\377tt\246\377rr\244\377oo\241\377nn\241\377" "mm\240\377gg\233\377ee\230\377cc\227\377\202aa\224\377\202[[\220\377" "\202YY\216\377\2VV\213\377UU\212\377\202RR\210\377\12QQ\206\377OO\205" "\377LL\202\377MM\203\377LL\201\377KK\201\377LL\201\377JJ\200\377GG~\377" "JJ\200\377\202FF}\377\4FF|\377EE{\377DD{\377FF}\377\203FF|\377\6EE{\377" "DD{\377EE{\377CCz\377EE{\377CCz\377\202BBy\377\6AAx\377@@w\377>>u\377" "@@w\377>>u\377==u\377\202@@w\377\5>>u\377\77\77v\377>>u\377==u\377<<" "s\377\20299q\377\13<\377\16(<\377\16(;\377\17(;" "\377\202\16(;\377\202\16':\377\202\15':\377\177\24+<\377\200\203r\377" "\253\251\214\377\262\262\231\377\263\263\240\377\260\261\245\377\256" "\257\240\377\252\253\226\377\247\243\205\377\244\231w\377\242\223r\377" "\240\220p\377\233\212l\377\226\205h\377\215\203h\377\204\200i\377\177" "\177j\377{|f\377{yd\377tt]\377adM\377MR=\377:\77(\3772:!\377=A(\377L" "N1\377UU4\377UT3\377LI'\377@:\36\3772-\24\377'$\22\37734+\37744-\377" "\37\36\23\377!\33\14\377'\33\15\377'\34\14\377%\33\12\377\"\30\7\377" "\36\26\7\377\34\24\5\377\32\22\4\377\32\23\6\377\34\24\10\377\37\26\11" "\377\37\27\13\377\37\30\14\377\40\27\14\377!\27\14\377\40\27\14\377\40" "\27\15\377\37\27\15\377\40\32\20\377!\34\22\377\40\40\30\377&&\40\377" "\32\31\24\377\31\25\17\377\26\21\11\377\26\20\6\377\26\20\5\377\25\21" "\4\377\31\26\13\377\"\"\30\377/)\35\3775-$\3775,$\377-$\34\377'\40\26" "\377,$\31\3777.(\377/$\32\377,\"\27\377$\34\22\377\"\33\21\377%\34\23" "\377#\33\21\377$\"\33\377%%#\377!\33\24\377(\37\24\377)\40\24\37761(" "\3771'\37\377*\37\21\377!\30\10\377\37\27\5\377\37\27\6\377\40\30\6\377" "!\30\6\377\"\31\6\377$\33\6\377&\34\7\377(\36\7\377+\40\10\377.\"\10" "\3771$\11\3774'\11\3770\"\10\377$\27\14\377!\30\32\3777/3\377=9\77\377" "748\377,),\377\26\25\26\377\6\5\4\377\4\3\3\377\37\32\37\377>8A\377L" "HN\377KGJ\377=;\77\3770.2\377\35\36\40\377\30\31\36\377\14\12\15\377" "\3\2\2\377\20\14\14\377/&'\377C:;\377F@A\377ECE\377@\77B\377337\377&" "&*\377\2\25\27\32\377\5\7\10\377\203\0\0\0\377\21\1\0\1\377\11\10\12" "\377\36\34\37\377/.4\37725=\3778@M\377;AM\377;AL\377:ES\3777EW\377/:" "H\377%-5\377\17\23\27\377\2\2\4\377\2\1\1\377\3\1\1\377\1\0\0\377\202" "\0\0\0\377\22\1\0\1\377\5\2\3\377\14\12\17\377\17\20\27\377\13\14\26" "\377\27\26\34\377/-1\377>;\77\377A>@\377B>B\377@\77D\377@BL\377=AK\377" "27A\377,.8\377#!\36\3777)\13\377H5\15\377\207I6\15\377\3TC\"\377\177" "vv\377\257\255\321\377\202\272\272\346\377\202\267\267\343\377\12\254" "\254\331\377\241\241\317\377\233\233\312\377\225\225\304\377\220\220" "\300\377\220\220\277\377\214\213\270\377wq\205\377WI5\377J7\16\377\204" "I6\15\377\7K7\14\377zW\6\377vT\6\377\231l\3\377lM\7\377L8\14\377J6\15" "\377\205I6\15\377\3K8\20\377\177ut\377\263\262\330\377\202\267\267\343" "\377\202\264\264\341\377\202\264\264\340\377\3\257\257\334\377\256\256" "\332\377\254\254\331\377\202\252\252\327\377\202\245\245\323\377\202" "\240\240\316\377\202\235\235\313\377\202\231\231\307\377\203\225\225" "\304\377\202\220\220\300\377\1\216\216\276\377\202\213\213\273\377\1" "\212\212\272\377\202\205\205\265\377\30\177\177\260\377||\256\377{{\254" "\377yy\253\377uu\250\377tt\246\377qq\244\377pp\243\377nn\241\377jj\235" "\377hh\233\377gg\233\377ee\230\377cc\227\377aa\224\377__\223\377^^\222" "\377\\\\\221\377YY\216\377VV\213\377WW\214\377VV\213\377TT\211\377RR" "\210\377\202PP\205\377\10NN\204\377LL\202\377LL\201\377KK\201\377II\177" "\377JJ\200\377FF|\377DD{\377\202CCz\377\3AAx\377CCz\377BBy\377\202\77" "\77v\377\6>>u\377<>u\377\202==u\377\4<X\377\30""9Q\377\24""2I\377" "\23/C\377\20+>\377\16(;\377\16(<\377\203\16(;\377\202\16':\3771\15':" "\377\15'9\377\21)9\377ltT\377\232\233g\377\241\241t\377\250\247\203\377" "\246\245\207\377\241\240\203\377\223\225u\377\202\206g\377}}c\377\206" "~h\377\223\205p\377\222\206s\377\217\206t\377\210\203q\377\201~k\377" "zze\377ssZ\377sqW\377sqY\377jkT\377X\\G\377FJ9\3776>-\377\77D1\377JM" "7\377MM5\377KJ2\377@>)\3770/\33\377#!\17\377\40\35\17\377\35\32\15\377" "\35\32\16\37702&\377\35\35\21\377\36\27\10\377\36\26\6\377\36\24\4\377" "\32\22\3\377\26\21\2\377\26\16\1\377\26\16\2\377\26\20\4\377\31\21\4" "\377\35\21\6\377\35\23\6\377\202\35\22\10\377\1\35\23\11\377\202\36\23" "\10\377\30\35\24\11\377\35\25\11\377\32\24\10\377\31\24\10\377\27\24" "\11\377\30\26\12\377\34\30\15\377\35\32\21\377\36\35\25\377##\35\377" "%#\37\377\34\33\21\377\31\27\11\377\37\34\15\377(!\23\377-$\30\3774*" "\36\3774+!\3770%\33\3770'\35\3771&\36\377-\40\27\377'\35\23\377&\35\23" "\377\202$\34\22\3776\"\33\17\377$\"\30\377+(#\377$\35\24\377'\40\24\377" "'!\24\37721(\377,$\37\377.$\30\377)\36\17\377\"\31\7\377\40\30\6\377" "!\31\6\377#\32\6\377%\33\7\377'\35\7\377)\36\7\377,\40\10\377/#\10\377" "2%\11\3775'\11\3778)\12\377;,\13\3771#\10\377\37\24\12\377*$+\377706" "\377518\377,+3\377&%*\377\32\32\35\377\22\22\27\377\5\4\6\377\21\16\23" "\3774/:\377KIR\377IHN\377=<@\377/-1\377\34\35\37\377\11\12\13\377\0\1" "\1\377\1\0\0\377\15\11\12\377(!\"\377\77""89\377GAB\377HEH\377BAE\377" "46;\377*,2\377\30\32\36\377\7\10\12\377\0\0\1\377\203\0\0\0\377\17\7" "\6\7\377\33\32\37\377,-3\37702;\377/3\77\3774:G\377;DS\3779FV\3773>M" "\3771=C\377\77==\377B7\40\377H6\16" "\377\213I6\15\377\3P>\32\377{pm\377\252\250\310\377\203\272\272\346\377" "\11\270\270\344\377\254\254\331\377\233\233\312\377\220\220\300\377\220" "\220\277\377\214\214\274\377\207\207\267\377\203\203\260\377VG2\377\204" "I6\15\377\10L8\13\377\246u\2\377xU\6\377}Y\6\377}Y\4\377\204^\6\377\241" "r\3\377R<\13\377\203I6\15\377\6dU@\377\250\245\303\377\270\270\344\377" "\267\267\343\377\265\265\341\377\264\264\341\377\202\264\264\340\377" "\2\257\257\334\377\256\256\332\377\202\254\254\331\377\7\252\252\327" "\377\250\250\325\377\245\245\323\377\243\243\321\377\241\241\317\377" "\240\240\316\377\236\236\314\377\202\233\233\312\377\202\225\225\304" "\377\203\221\221\301\377\202\217\217\276\377\202\213\213\273\377\1\212" "\212\273\377\202\206\206\267\377\15\205\205\265\377\201\201\262\377\200" "\200\261\377~~\257\377||\256\377yy\253\377ww\251\377tt\246\377rr\244" "\377pp\242\377nn\241\377mm\240\377kk\236\377\202hh\233\377\17ff\232\377" "ee\230\377cc\227\377aa\225\377]]\221\377[[\220\377[[\217\377ZZ\216\377" "WW\214\377UU\212\377QQ\207\377RR\210\377PP\205\377MM\203\377LL\202\377" "\202KK\201\377\3JJ\200\377GG~\377EE{\377\202FF}\377\3DD{\377BBy\377A" "Ax\377\202>>u\377\5==u\377<X\377\30""9P\377\25""2H\377\21-B\377\17*=\377\16';" "\377\16(:\377\15(:\377\202\16(:\377\1\16':\377\203\15&;\377\177\17(:" "\377dnc\377\236\237\177\377\237\237\203\377\231\230|\377\221\221q\377" "~\201`\377_fC\377QU5\377QQ6\377g\\E\377~mT\377\206x`\377\206~h\377\202" "\177j\377\177|i\377vta\377ehR\377Y^I\377Z\\J\377]^O\377[YJ\377AB3\377" ".0\37\37774$\377KD4\377QK;\377NNB\377)/%\377\33\35\20\377\35\31\15\377" "\35\30\14\377\34\30\12\377\35\30\11\377\33\26\10\377.-%\377>=<\377\30" "\25\20\377\27\21\4\377\27\20\2\377\27\16\1\377\27\17\2\377\32\20\3\377" "\34\22\5\377\37\23\7\377\37\23\6\377\35\22\6\377\33\21\7\377\33\22\6" "\377\32\22\6\377\33\22\7\377\33\23\10\377\33\23\12\377\32\23\10\377\27" "\23\7\377\25\22\5\377\25\23\6\377\26\24\7\377\31\26\12\377\37\32\17\377" "\40\33\20\377\37\33\20\377(&\35\377#!\34\377\32\27\15\377\31\27\10\377" "\33\27\12\377\37\31\14\377\"\33\17\377$\35\20\377$\35\22\377&\37\24\377" "&!\30\3770($\377%\34\23\377#\34\20\377\"\33\17\377!\33\15\377\40\34\16" "\377!\36\17\377()\32\3771/&\377)$\30\377(\"\25\377$\40\22\377+(\36\377" "#\35\23\377&\37\21\377)\37\22\377'\34\15\377#\32\7\377$\32\6\377%\34" "\7\377(\35\7\377*\37\7\377-!\10\3770#\10\3773%\11\3776(\12\3779*\12\377" "<,\13\377>.\13\377@0\13\3778+\21\377\30\23\12\377\35\27\34\377/*2\377" "516\3770.3\377)&+\377\24\24\25\377\3\3\4\377\1\1\2\377\21\16\25\3774" "2\77\377KKV\377IGN\377;<@\377FDK\377\7GFL\377BDJ\37748\77\377" "(,4\377\32\35%\377\6\12\14\377\0\1\2\377\203\0\0\0\377\34\6\6\7\377\35" "\32\37\377,-4\377.08\377/3=\37737B\3778\77L\377:CS\3773\12\377I6\15\377SB\"\377\210\201\212\377\266\265\340\377" "\266\266\342\377\267\267\343\377\264\264\341\377\264\264\340\377\262" "\262\336\377\260\260\335\377\256\256\332\377\255\255\332\377\254\254" "\331\377\252\252\327\377\247\247\324\377\245\245\323\377\243\243\321" "\377\242\242\320\377\241\241\317\377\237\237\316\377\236\236\314\377" "\233\233\312\377\232\232\311\377\226\226\305\377\225\225\304\377\224" "\224\303\377\203\220\220\300\377\202\213\213\273\377\203\207\207\267" "\377\202\205\205\265\377\1\202\202\263\377\202\201\201\262\377\1}}\256" "\377\202||\256\377\11zz\253\377xx\252\377uu\250\377uu\247\377ss\245\377" "pp\243\377pp\242\377jj\235\377hh\233\377\202ff\231\377\202cc\227\377" "\1``\224\377\202]]\221\377\3\\\\\221\377ZZ\216\377WW\214\377\202TT\211" "\377\6RR\210\377QQ\207\377QQ\206\377LL\202\377KK\201\377HH~\377\204F" "F}\377\1DD{\377\204AAx\377\12\77\77v\377==u\377>>u\377;;r\377<e\204\3775]{\377-Uq\377&Lg\377" "!E^\377\33=V\377\27""6O\377\23""1G\377\20-A\377\17)<\377\202\16(;\377" "\202\15';\377\1\15&;\377\202\15&:\377\202\15&9\3775\15(9\377VcV\377\231" "\231y\377\231\227~\377\226\223}\377\216\216w\377}\200j\377emX\377X`M" "\377Y_P\377gfX\377tq^\377}xe\377\177{i\377{xe\377sr[\377aaG\377IJ1\377" "79#\37735!\377<9%\377D=(\377JD1\377CB2\377:9(\377\77;,\37798*\377-1$" "\377681\37712.\377\33\33\24\377\34\31\15\377\35\30\12\377\34\27\11\377" "\32\27\7\377\27\26\6\377\"\"\31\377392\377\25\22\11\377\30\21\3\377\31" "\23\3\377\40\24\5\377$\26\10\377%\30\11\377$\30\12\377!\26\10\377\36" "\24\10\377\34\23\7\377\32\22\6\377\32\23\7\377\33\25\11\377\32\25\12" "\377\32\26\13\377\202\33\26\14\377l\32\25\14\377\33\27\16\377\34\30\15" "\377\35\32\17\377\31\26\13\377\34\30\14\377\37\33\17\377#\36\22\377+" "(\35\377.*$\377!\32\23\377\33\27\14\377\27\24\11\377\26\23\10\377\27" "\24\10\377\30\25\12\377\30\26\13\377\31\30\14\377!\"\32\377))%\377\33" "\33\17\377\37\37\17\377\"\"\24\377&$\26\377+&\31\377+&\30\377-+\36\377" ".+%\377\37\32\20\377\32\27\14\377\30\25\11\377\33\26\13\377\35\30\15" "\377\37\31\15\377\37\32\15\377!\34\16\377#\35\13\377&\35\10\377(\36\7" "\377+\40\10\377.\"\10\3770$\11\3774&\11\3777(\12\377:+\12\377<-\13\377" "\77/\13\377A0\14\377C2\14\377C3\14\3774&\11\377\27\20\10\377\31\25\31" "\377,(,\3772-2\377-,2\377%%,\377\23\23\26\377\3\4\4\377\1\1\2\377\20" "\16\24\3771.<\377IIU\377GFP\3779:A\377-,1\377\34\35\37\377\12\13\13\377" "\1\1\1\377\2\0\0\377\10\7\12\377\"!*\377>=G\377GHO\377HIO\377@EJ\377" "27\77\377)/8\377\31\40(\377\10\13\21\377\1\1\3\377\1\1\1\377\13\6\2\377" "\40\30\24\3777BS\377\3774:E\3773:F\377" "0:H\377->u\377==u\377;;r\377<e\203\377Jq\215\377W|\230\377e\211\243\377v\226" "\260\377\206\245\275\377\226\262\307\377\244\275\320\377\257\306\327" "\377\272\316\334\377\301\322\337\377\306\327\342\377\311\331\343\377" "\312\331\344\377\310\330\343\377\306\325\342\377\300\322\340\377\272" "\315\333\377\262\307\327\377\250\300\322\377\236\270\313\377\221\256" "\303\377\205\244\272\377y\232\262\377m\217\252\377b\206\242\377W}\232" "\377Mt\220\377Dk\210\377:b\177\3772Zv\377*Qm\377$Id\377\36A[\377\31;" "S\377\24""3J\377\21/D\377\20*\77\377\16(;\377\202\15';\377\2\14';\377" "\15':\377\205\15&:\3777\15':\377N[W\377\217\217r\377\216\215p\377\212" "\210i\377\205\203c\377||[\377ssT\377srV\377sqY\377us[\377wu`\377zud\377" "zui\377xti\377oj]\377]YI\377EI:\37727(\377)*\33\377.,\34\37783!\377C" "<+\377LE6\377PMC\377ED>\377&(\40\377\36\37\24\377\35\33\20\377&#\32\377" "><8\3770.*\377\32\30\17\377\35\31\11\377\34\30\12\377\34\27\7\377\34" "\26\6\377\32\24\6\377(#\31\377\40\31\17\377\40\26\6\377%\30\10\377(\31" "\12\377*\32\13\377)\33\14\377'\32\14\377%\30\12\377#\26\12\377!\26\12" "\377\37\27\13\377\36\26\13\377\34\26\12\377\33\27\13\377\33\27\14\377" "\33\30\15\377\202\36\32\17\377h\33\27\13\377\32\27\12\377\32\26\11\377" "\31\26\10\377\32\27\12\377\36\32\16\377\"\35\21\377%\40\25\377/*!\377" "\37\33\25\377\35\31\17\377\33\27\14\377\31\26\13\377\30\24\11\377\27" "\24\10\377\31\27\11\377\31\33\13\377\40$\26\377/2,\377\"&\37\377''\35" "\377'$\30\377(\"\30\377%\37\24\377\37\33\20\377\36\34\24\377$\"\37\377" "\25\22\12\377\33\27\13\377\35\33\16\377,.&\377!$\31\377$(\31\377#'\26" "\377%)\26\377+*\25\377-'\20\377,\"\11\377/#\10\3772%\11\3774'\11\377" "8)\12\377:+\12\377=-\13\377@/\13\377B0\14\377D2\14\377E3\14\377F4\14" "\377F4\15\3774&\11\377\26\20\10\377\31\25\32\377,)2\377,-4\377((0\377" "##)\377\21\22\25\377\2\3\4\377\1\1\2\377\15\14\22\377/,8\377EFR\377C" "DO\3779;C\377.18\377\35\")\377\10\15\20\377\1\1\1\377\3\2\2\377\34\"" "$\377BKS\377\77DM\377CDM\377DHP\377>EL\3774=I\377.>N\377\25\"0\377\6" "\12\20\377\30\34\37\377BNc\377O^\207\377IW}\377EQi\3778AI\377)06\377" ",04\377-27\37729A\3777BK\3779GT\3778N_\377*CU\3770N\\\377U{\220\377c" "\210\243\377c\211\244\377b\211\243\377c\210\244\377`\204\241\377[\200" "\234\377Tfm\377JA#\377\202I6\15\377\3I7\16\377J7\17\377I7\16\377\222" "I6\15\377\5L:\23\377l_P\377\221\213\230\377\212\202\213\377YH+\377\216" "I6\15\377\12RB'\377xs\214\377\213\213\273\377\220\220\300\377\220\220" "\277\377\225\225\304\377\227\227\306\377\233\233\312\377\240\240\316" "\377\242\242\320\377\202\246\246\324\377\11\250\250\325\377\245\245\323" "\377\244\244\322\377\242\242\320\377\241\241\317\377\240\240\316\377" "\234\234\313\377\233\233\312\377\231\231\307\377\202\230\230\307\377" "\202\225\225\304\377\2\220\220\300\377\220\220\277\377\203\216\216\276" "\377\3\212\212\273\377\212\212\272\377\206\206\267\377\202\205\205\265" "\377\4\202\202\263\377\201\201\262\377\200\200\261\377}}\256\377\202" "||\256\377\1yy\253\377\202vv\250\377\1uu\247\377\202ss\245\377\2qq\244" "\377pp\243\377\202pp\242\377\3nn\241\377ll\237\377jj\235\377\202ii\234" "\377\1gg\233\377\202ee\230\377\3dd\230\377bb\226\377__\223\377\203]]" "\221\377\1[[\217\377\202VV\213\377\202SS\210\377\6QQ\206\377QQ\207\377" "LL\202\377MM\203\377II\177\377HH~\377\202GG~\377\202EE{\377\202AAx\377" "\6\77\77v\377;;r\377<\37757(\37710\"\37714)\37710$\37794&\377LB2\377QG8\377" "EB5\377591\377296\377*/-\377\37!\27\377'%\27\377&%\26\37724%\377FH@\377" "=<1\37730\40\3773-\33\377-&\22\377%\36\14\377\"\32\11\377)\"\24\377." "'\33\377)\33\13\377+\33\11\377*\33\12\377+\33\13\377)\32\13\377'\31\12" "\377&\30\11\377$\30\10\377!\30\10\377\35\26\7\377\34\25\10\377\33\26" "\7\377\36\32\13\377\31\25\7\377\202\32\26\10\377\202\32\27\10\377e\31" "\26\6\377\31\26\4\377\27\25\5\377\26\23\6\377\27\23\10\377\31\25\12\377" "\30\27\15\377('\"\377\40\34\30\377\37\31\21\377!\32\21\377!\32\20\377" "\37\33\16\377\37\36\16\377\37\"\17\377\37$\21\377#)\33\377274\377\37" "\35\32\377\40\32\21\377\34\27\14\377\31\24\11\377\33\23\11\377\36\25" "\13\377(#\31\377,+&\377$\"\25\377$&\25\377'-\31\37716'\377$+\31\377(" ",\30\377&*\26\377(*\23\377/.\25\37742\26\3774-\20\3773&\12\3776(\12\377" "8*\12\377;,\13\377>.\13\377@/\13\377B1\14\377D2\14\377E3\14\377F4\15" "\377G5\15\377H5\15\377G4\15\3773&\11\377\26\21\13\377\"%0\37708E\377" "+/9\377'*4\377\40&/\377\10\15\22\377\5\10\10\377#*/\377LWe\377LZk\377" "JYj\377LZi\377BSe\377.EU\377\26#+\3776AF\377Q]c\377X^c\377V\\]\377JW" "`\377M^j\377Qer\377Sgx\377Rj~\377Jez\377\77Ve\377[n~\377[k|\377Xfs\377" "T_i\377Wag\377Zcg\377Zei\377Vch\377Xej\377[jq\377`q|\377ez\212\377f\177" "\224\377h\203\234\377c\203\237\377g\207\244\377i\211\250\377i\214\254" "\377g\213\253\377e\210\251\377_v\206\377QM7\377I6\16\377\202I6\15\377" "\5VE&\377\212\203\213\377\235\231\261\377\210\200\212\377ZJ.\377\242" "I6\15\377\4K8\22\377i`f\377\203\202\256\377\206\206\267\377\202\205\205" "\265\377\10\205\205\266\377\210\210\270\377\206\206\267\377\213\213\273" "\377\220\220\277\377\217\217\276\377\225\225\304\377\221\221\301\377" "\202\225\225\304\377\1\227\227\306\377\202\233\233\312\377\13\231\231" "\307\377\232\232\311\377\230\230\307\377\226\226\305\377\225\225\304" "\377\223\223\302\377\221\221\301\377\220\220\277\377\217\217\276\377" "\216\216\276\377\213\213\273\377\202\212\212\273\377\2\206\206\267\377" "\205\205\265\377\202\203\203\264\377\4\202\202\263\377\201\201\262\377" "\200\200\261\377~~\257\377\202{{\254\377\2zz\253\377xx\252\377\202vv" "\250\377\1uu\247\377\202qq\244\377\1pp\242\377\203nn\241\377\10kk\236" "\377jj\235\377ii\234\377hh\233\377gg\233\377ff\232\377ee\230\377dd\230" "\377\202bb\226\377\1``\224\377\202__\223\377\3]]\221\377ZZ\216\377XX" "\215\377\202WW\214\377\1VV\213\377\202RR\210\377\202NN\204\377\1LL\202" "\377\202KK\201\377\1JJ\200\377\202FF}\377\1CCz\377\202AAx\377\202@@w" "\377\5>>u\377@@w\377<\377" "\21.D\377\25""4L\377\31:T\377\37C^\377'Mi\3770Wv\377>,\377+-\40\377)*\37\37738-\377IPG" "\377JL@\377DF2\377FF0\377DB,\377MM9\377TYM\377\77\77""4\377($\25\377" "(\40\16\377)\35\15\377)\35\14\377,#\21\377<0$\377)\37\22\377(\32\13\377" "'\32\12\377&\31\11\377#\27\10\377!\25\7\377\40\25\7\377!\30\12\377\37" "\26\12\377\35\24\7\377\34\24\6\377\31\24\5\377\31\24\6\377\33\25\7\377" "\33\26\7\377\202\33\27\7\377c\33\30\6\377\31\25\4\377\26\24\2\377\24" "\22\3\377\23\22\4\377\24\21\6\377\25\23\11\377\27\25\13\377\37\37\27" "\377#\"\37\377\37\32\23\377&\37\23\377($\24\377((\25\377&(\24\377\"$" "\22\377\37\36\17\377\33\32\16\377,,(\377\32\26\24\377\23\16\5\377\24" "\17\4\377\32\23\10\377#\33\17\377(#\23\377//\37\37717,\377%*\33\377%" "*\31\37757*\377(+#\377\31\36\21\377\25\32\13\377\26\27\6\377\37\37\15" "\377*+\31\37701\33\37755\34\3777/\24\377:+\14\377<,\13\377\77.\13\377" "A0\14\377C1\14\377D3\14\377F3\14\377F4\15\377G5\15\377H5\15\377H6\15" "\377I6\15\377G5\15\377JB+\377Wbi\377Hau\377G]n\377@P\\\377=IR\377IT`" "\377`m~\377hy\220\377o\204\237\377v\224\263\377y\226\267\377t\222\262" "\377p\214\251\377j\200\226\377dr\200\377^go\377X_c\377gr|\377j|\215\377" "l\177\226\377k~\226\377u\213\245\377q\211\242\377j~\231\377ev\220\377" "eu\216\377br\210\377Ygy\377S\\m\377PXd\377QV_\377NR\\\377JNX\377JOX\377" "FLU\377GP\\\377O\\j\377Q^n\377PTg\377NN_\377X]l\377`ix\377[e|\377V^p" "\377OK<\377I8\21\377\202I6\15\377\3P>\32\377~ts\377\256\255\322\377\202" "\264\264\341\377\5\264\264\340\377\252\251\321\377\206\177\214\377YJ" "/\377I6\16\377\235I6\15\377\6J7\16\377[M;\377\204\202\245\377\212\212" "\273\377\207\207\267\377\206\206\267\377\203\203\203\264\377\202\201" "\201\262\377\4\200\200\261\377\177\177\260\377\201\201\262\377~~\257" "\377\202\201\201\262\377\6\207\207\267\377\210\210\270\377\212\212\273" "\377\215\215\275\377\220\220\277\377\221\221\301\377\202\223\223\302" "\377\202\220\220\300\377\5\217\217\276\377\215\215\275\377\213\213\273" "\377\212\212\273\377\207\207\267\377\202\205\205\266\377\3\204\204\264" "\377\203\203\264\377\201\201\262\377\202\200\200\261\377\1||\256\377" "\202{{\254\377\202yy\253\377\1vv\250\377\202uu\250\377\1tt\246\377\202" "pp\243\377\2pp\242\377nn\241\377\202ll\237\377\6kk\236\377ii\234\377" "gg\233\377ff\232\377ee\230\377dd\230\377\202cc\227\377\2bb\226\377aa" "\225\377\202``\224\377\4__\223\377]]\221\377\\\\\221\377[[\217\377\202" "ZZ\216\377\2XX\215\377VV\213\377\202UU\212\377\4RR\210\377QQ\207\377" "QQ\206\377NN\204\377\202LL\202\377\202II\177\377\2FF|\377EE{\377\203" "DD{\377\202AAx\377\203<6\33\377\20%4\377\15(<\377\21,B\377\24""2J\377\31""9R\377\40D_\377)" "Ol\3771Yw\377;b\202\377Dl\213\377Pw\225\377\\\202\240\377h\215\251\377" "v\231\263\377\204\243\274\377\221\256\303\377\235\267\312\377\246\276" "\321\377\256\304\325\377\264\310\330\377\270\314\332\377\272\315\333" "\377\272\314\333\377\270\313\332\377\264\311\330\377\257\304\325\377" "\247\276\320\377\236\267\312\377\223\256\304\377\211\247\275\377\177" "\236\266\377s\225\256\377g\213\246\377[\201\235\377Qw\225\377Em\213\377" ";c\202\3772Zw\377*Qn\377#Ie\377\35@\\\377\31:T\377\25""5M\377\22""0F" "\377\17+@\377\16(<\377\202\15':\377\202\15&:\377\202\14%9\377\204\14" "%:\3773\15&:\377HTQ\377||d\377||e\377{ze\377ywa\377vt]\377roX\377ojT" "\377nfP\377i\\G\377hWD\377l]J\377ndR\377mgV\377jeU\377]ZI\377CD2\377" "57%\377<;(\377PJ5\377aX@\377f_G\377`^L\377ORD\3778>1\3779<-\377\77A/" "\377GG3\377RVB\377YcU\377AKA\377/4%\377*,\34\377$#\24\37797/\377SKF\377" "60)\377'\37\23\377-!\21\377.\40\17\377*\37\15\37760&\377>6/\377)#\34" "\377/'\"\377)\40\34\377&\35\24\377\"\32\16\377!\30\15\377\35\26\12\377" "\203\35\25\10\377\1\35\26\11\377\202\36\26\11\3771\35\26\11\377\34\26" "\10\377\33\26\7\377\31\25\6\377\27\23\5\377\25\23\5\377\26\22\6\377\26" "\23\7\377\27\24\10\377\27\25\12\377\25\24\12\377\36\37\30\377,+'\377" "*$\30\3772+\27\3772,\26\377+)\22\377\"!\15\377\34\31\12\377\27\22\6\377" "\25\22\11\377-+'\377\33\30\30\377\23\20\7\377\31\31\13\377\37!\22\377" "$(\27\377&*\30\377(2\37\377,5*\3771=5\377262\377\30\32\26\3777:6\377" "+.-\377=CB\377Zbf\377KTZ\377595\377=>-\377@\77-\377D\77*\377A7\31\377" "@0\14\377B0\14\377C2\14\377E3\14\377F4\14\377G4\15\377\202H5\15\377\1" "H6\15\377\203I6\15\377,J8\21\377PL<\377SV`\377MOV\377\\Y\\\377[Yd\377" "hk|\377_e|\377l{\230\377n\200\242\377p\200\236\377pz\226\377io\202\377" "[[g\377XUY\377XTS\377``a\377fls\377cq~\377jx\207\377fq\200\377nt\204" "\377ty\204\377efo\377`^h\377por\377hba\377UGI\377^PJ\377\\SK\377KFE\377" "JGC\377PKD\377IFC\377MJJ\377ed`\377vup\377XVU\377`XY\377rql\377~}w\377" "fda\377K>.\377I7\21\377\202I6\15\377\3K9\21\377pdY\377\250\245\305\377" "\202\267\267\343\377\1\262\262\336\377\202\261\261\336\377\6\256\256" "\332\377\250\250\325\377\244\243\316\377\207\201\217\377]M5\377I7\16" "\377\232I6\15\377\7TC#\377\210\201\216\377\243\243\321\377\225\225\304" "\377\220\220\300\377\212\212\273\377\212\212\272\377\202\203\203\264" "\377\24\201\201\262\377\200\200\261\377}}\256\377zz\253\377||\256\377" "{{\255\377{{\254\377yy\253\377zz\253\377}}\256\377||\256\377\200\200" "\261\377\201\201\262\377\202\202\263\377\205\205\265\377\206\206\267" "\377\211\211\271\377\214\214\274\377\216\216\276\377\213\213\273\377" "\202\212\212\273\377\2\210\210\270\377\206\206\267\377\202\205\205\265" "\377\2\202\202\263\377\200\200\261\377\202\177\177\260\377\7~~\257\377" "||\256\377{{\254\377zz\253\377vv\250\377uu\250\377uu\247\377\202tt\246" "\377\1ss\245\377\202pp\243\377\1nn\241\377\203kk\236\377\12jj\235\377" "hh\233\377gg\233\377ff\232\377ee\230\377dd\230\377bb\226\377aa\225\377" "``\224\377__\223\377\203]]\221\377\1\\\\\221\377\202[[\217\377\4ZZ\216" "\377XX\215\377WW\214\377VV\213\377\203UU\212\377\1QQ\207\377\202QQ\206" "\377\202NN\204\377\202LL\201\377\202II\177\377\202FF}\377\1FF|\377\202" "AAx\377\10>>u\377@@w\377\77\77v\377@@w\377>>u\377<Y\377\27""8Q\377\25""3K\377\21.D\377\17*>\377\15':\377\14':\377\13&" "9\377\202\14&9\377\202\14%9\377\204\14%:\377>\14&9\377LVQ\377vvd\377" "vve\377uud\377sra\377qp\\\377nlW\377hfP\377_\\F\377VQ;\377VN8\377^W;" "\377ea@\377feD\377bcB\377Z\\<\377PT9\377FJ5\377BC1\377PL2\377bZ=\377" "f`C\377`]C\377XXD\377WYJ\377NRE\3770\25\3770(\20\377!\34" "\11\377\31\24\6\377\25\20\4\377\23\15\3\377\21\15\5\377\35\35\26\377" "\37!\30\377\35#\23\377#)\27\377%)\27\377%'\25\377\"!\21\377\37\36\21" "\377%$\40\377\32\33\31\37759:\377,/0\377-.%\377BHC\377SY[\377Y\\b\377" "FGG\377DA6\377GC4\377KJ9\377UVE\377YWD\377OB%\377D3\15\377E3\14\377F" "4\14\377G5\15\377\202H5\15\377\1H6\15\377\205I6\15\377(I6\16\377RC'\377" "jcZ\377vuw\377v{\204\377pz\213\377q{\217\377jq\205\377acq\377TQW\377" "JGG\377HB>\377LGE\377YVW\377Z^f\377`kw\377cn~\377`hw\377oqv\377qop\377" "geg\377pmk\377uof\377iaX\377fXO\377l\\J\377bTB\377VL>\377ZOB\377]QC\377" "PJA\377d`V\377wtf\377zxo\377gji\377mqo\377z|v\377y{s\377g`M\377N=\30" "\377\204I6\15\377\20xmg\377\271\271\344\377\272\272\346\377\264\264\341" "\377\263\263\337\377\262\262\336\377\254\254\331\377\252\252\327\377" "\250\250\325\377\246\246\324\377\241\241\317\377\235\235\313\377\234" "\233\307\377\205\177\221\377^O9\377J7\17\377\226I6\15\377\40K9\21\377" "vjc\377\261\260\325\377\267\267\343\377\266\266\342\377\264\264\340\377" "\254\254\331\377\243\243\321\377\225\225\304\377\216\216\276\377\206" "\206\267\377\202\202\263\377\200\200\261\377}}\256\377||\256\377xx\252" "\377vv\250\377uu\250\377tt\246\377uu\247\377tt\246\377ss\245\377pp\242" "\377ss\245\377pp\243\377uu\247\377zz\253\377||\256\377}}\256\377\177" "\177\260\377\200\200\261\377\201\201\262\377\202\205\205\265\377\1\202" "\202\263\377\202\201\201\262\377\3\200\200\261\377}}\256\377||\256\377" "\202{{\254\377\3xx\252\377vv\250\377uu\250\377\202tt\246\377\1ss\245" "\377\202pp\243\377\2pp\242\377ll\237\377\202kk\236\377\202jj\235\377" "\2ii\234\377hh\233\377\202ff\232\377\3dd\230\377cc\227\377bb\226\377" "\202aa\225\377\1``\224\377\202]]\221\377\2\\\\\221\377[[\217\377\202" "ZZ\216\377\1XX\215\377\202WW\214\377\202VV\213\377\3UU\212\377SS\210" "\377RR\210\377\202QQ\206\377\203PP\205\377\204LL\201\377\1II\177\377" "\202FF}\377\202DD{\377\202CCz\377\202AAx\377\15>>u\377<\377\23.C\377\26""2H\377\32""8P\377\35>X" "\377$Hc\377+Qm\3773Zx\377e\202\3774[y\377," "Tq\377&Li\377!E`\377\33=V\377\27""7P\377\24""1I\377\21-B\377\17)=\377" "\15&:\377\14&:\377\202\13&9\377\1\13%9\377\202\14%9\377\204\13%9\377" "9\16&8\377RXS\377poc\377pob\377ona\377nma\377lk]\377jhW\377ebQ\377ZX" "D\377KK6\377KN2\377TW3\377[`6\377[b8\377[a:\377Y^9\377TY5\377NR/\377" "UU6\377][A\377b]B\377e_A\377b^A\377TT=\377AD2\37739(\377=B2\377EI@\377" "EC4\377EB*\377AC'\377W];\377\220\221k\377\247\242\201\377\235\227m\377" "yxK\377;B\36\377%%\23\377D@<\377LEA\377%\37\26\377\37\31\15\377%!\25" "\377&!\26\37752,\377:54\37730/\377$\36\30\377\"\30\15\377%\32\16\377" "%\33\17\377%\32\17\377%\32\16\377#\30\15\377\40\25\12\377\36\24\7\377" "\202\34\23\6\3771\34\22\6\377\34\22\7\377\33\22\7\377\32\22\7\377\30" "\21\6\377\26\21\4\377\22\20\3\377\22\20\2\377\22\21\2\377\32\26\6\377" "0#\20\377@0\31\377J=-\377;.\36\377*!\15\377\33\27\6\377\26\21\5\377\26" "\21\4\377\25\21\4\377\27\27\11\377\33\36\16\377'-\32\377*/\37\377#'\32" "\377\"$\24\377\40\36\17\377\34\27\11\377\26\20\4\377\24\21\10\377.-(" "\377)')\377\"\35\27\377(#\24\37700\37\377_aZ\377uvw\377cbd\377POL\377" "PNC\377OM=\377XYG\377\210\212z\377{\200v\377ddQ\377VL+\377G5\16\377G" "5\15\377H5\15\377H6\15\377\210I6\15\377$K8\21\377TJ6\377QWb\377P\\p\377" "IOa\377EGS\377::\77\377:55\377:95\377<>\77\377NQW\377EMY\377KTd\377S" "]o\377CN_\377RXb\377UX`\377@FR\377IIN\377SKH\377=88\377>67\377XI<\377" "C:0\3772-+\377JB9\377ID;\377555\377<>A\377mha\377\\\\\\\377@DL\377@F" "O\377pqp\377b]P\377PA\40\377\206I6\15\377\14O=\30\377wke\377\251\247" "\306\377\272\272\346\377\264\264\340\377\256\256\332\377\254\254\331" "\377\246\246\324\377\240\240\316\377\237\237\316\377\236\236\314\377" "\231\231\307\377\202\224\224\303\377\4\223\223\300\377\204\177\223\377" "`R=\377J7\17\377\223I6\15\377\3`Q9\377\234\230\255\377\270\270\344\377" "\202\267\267\343\377\22\264\264\341\377\264\264\340\377\262\262\336\377" "\257\257\334\377\247\247\324\377\240\240\316\377\223\223\302\377\214" "\214\274\377\206\206\267\377~~\257\377zz\253\377vv\250\377uu\247\377" "qq\244\377nn\241\377pp\243\377kk\236\377ll\237\377\202kk\236\377\1jj" "\235\377\202kk\236\377\2hh\233\377kk\236\377\202nn\241\377\4pp\242\377" "tt\246\377xx\252\377ww\251\377\202||\256\377\13}}\256\377zz\253\377{" "{\254\377zz\253\377xx\252\377ww\251\377uu\250\377uu\247\377ss\245\377" "qq\244\377pp\243\377\202oo\241\377\5nn\241\377ll\237\377kk\236\377jj" "\235\377hh\233\377\202ff\232\377\202ee\230\377\2dd\230\377cc\227\377" "\202aa\225\377\3``\224\377__\223\377]]\221\377\202\\\\\221\377\3[[\217" "\377ZZ\216\377XX\215\377\202WW\214\377\5VV\213\377UU\212\377SS\210\377" "RR\210\377QQ\206\377\204PP\205\377\3NN\204\377MM\203\377LL\202\377\202" "LL\201\377\1KK\201\377\202II\177\377\204FF}\377\2EE{\377DD{\377\202A" "Ax\377\202\77\77v\377\203>>u\377\5==u\377<\377\22/E\377\27""5L\377\32\377UY<\377T\\" "6\377T]4\377W^6\377[^6\377\\^7\377[^6\377VZ2\377NR,\377OQ0\377^YB\377" "^ZE\377ML9\377:>.\3779;+\377RQ9\377voN\377\215\207f\377\216\213n\377" "\215\214j\377\237\235m\377\267\263\200\377\274\271\206\377\263\261\203" "\377\210\216i\3775\77%\377#!\17\377#\35\13\377&\40\23\377A<2\377B>7\377" "\"\40\30\377\36\25\12\377\40\25\11\377\"\26\13\377'\35\23\377,%\34\377" "1-)\377,%!\377#\33\25\377#\31\16\377!\27\14\377\35\24\11\377\32\22\6" "\377\202\30\21\5\377\2\32\22\6\377\33\23\7\377\202\34\23\10\377\3\32" "\22\10\377\31\20\5\377\26\20\3\377\202\22\16\2\377)\23\20\2\377\31\25" "\6\377(\37\20\3773$\23\3772%\22\3775/%\377!\37\32\377\24\21\10\377\25" "\21\7\377\27\22\7\377\32\27\12\377\36!\17\377%)\23\377%*\24\377/8'\377" "6<9\377\36\40\30\377\27\24\13\377\25\20\5\377\23\20\7\377\21\15\3\377" "\26\20\3\377+&\33\37760,\377,\"\27\3771(\24\3774+\32\377>9(\377VVL\377" "XUP\377ME\77\377E<6\377E\77""3\377E\77-\377ED,\377NQ9\377kpY\377_aA\377" "RH\37\377H6\16\377H6\15\377\212I6\15\377!H6\20\377:;,\377!:E\377\27""6" "E\377\25""9F\377\30>P\377\31I_\377\30Nk\377\31Po\377\32Rq\377\36Sr\377" "\35Po\377\32Nk\377\37Li\377\32B^\377\26R\377\20DZ\377\27Lf\377\25Ol\377\17Ii\377\15Gd\377\37EQ\377A:!\377I" "6\16\377\211I6\15\377\21N<\26\377uia\377\250\245\303\377\263\262\336" "\377\252\252\327\377\246\246\324\377\237\237\316\377\230\230\307\377" "\226\226\305\377\225\225\304\377\223\223\302\377\217\217\276\377\213" "\213\273\377\215\215\275\377\217\217\275\377\205\200\227\377UD%\377\220" "I6\15\377\3M;\25\377\206}\202\377\267\266\340\377\202\267\267\343\377" "\2\265\265\341\377\264\264\340\377\202\262\262\336\377\12\257\257\334" "\377\256\256\332\377\254\254\331\377\252\252\327\377\250\250\325\377" "\243\243\321\377\225\225\304\377\212\212\272\377~~\257\377||\256\377" "\202uu\250\377\7pp\242\377nn\241\377ll\237\377jj\235\377hh\233\377gg" "\233\377ee\230\377\202ff\231\377\202ee\230\377\3dd\230\377cc\227\377" "ee\230\377\202hh\233\377\1ii\234\377\202ll\237\377\3qq\244\377oo\241" "\377tt\246\377\202uu\247\377\7ss\245\377tt\246\377qq\244\377pp\243\377" "oo\241\377nn\241\377mm\240\377\202kk\236\377\3ii\234\377hh\233\377gg" "\233\377\203ff\232\377\2dd\230\377bb\226\377\202aa\225\377\202``\224" "\377\202]]\221\377\202\\\\\221\377\2[[\217\377ZZ\216\377\203WW\214\377" "\1VV\213\377\202UU\212\377\3RR\210\377QQ\207\377QQ\206\377\202PP\205" "\377\202MM\203\377\1LL\201\377\204KK\201\377\2II\177\377HH~\377\203F" "F}\377\202EE{\377\202DD{\377\204AAx\377\2@@w\377\77\77v\377\202>>u\377" "\3<\377X]>\377Z[7\377\\\\3\377\\]3\377Y]2\377OV+\377" "GM'\377MM/\377YT:\377]ZB\377c`M\377]]P\377a`P\377xt[\377\216\212i\377" "\232\227q\377\241\241v\377\252\250\201\377\264\263\221\377\272\270\222" "\377\255\254}\377\216\217^\377\\c8\377EO=\377:=<\377#\40\25\377\"\33" "\15\377\37\30\10\377#\34\15\377C<2\377@>>\377)\"\35\377#\26\14\377\202" "'\30\14\377\13'\32\21\377965\377=::\377.))\377\35\27\26\377\27\17\6\377" "\25\16\3\377\24\16\3\377\26\21\4\377\31\24\10\377\34\26\12\377\202\36" "\30\14\377.\37\26\13\377\36\25\12\377\35\24\11\377\32\21\6\377\30\20" "\5\377\26\20\5\377\30\23\7\377\36\27\12\377!\32\14\377\40\31\13\377\32" "\25\12\377#\"\35\377\37\36\36\377\24\20\13\377\30\26\12\377!\37\15\377" "')\22\377*,\24\377'+\24\377\40$\21\377+1*\377\33\37\40\377\36\"!\377" "\22\20\17\377\21\14\3\377\27\20\3\377\36\26\6\377&\34\15\3770)\36\377" "C=7\377^\377\6""6R\377\11""4L\377\12" "1D\377\14""2A\377\13""5E\377\13""8I\377\12>S\377\11B[\377\10Gd\377\4" "Nq\377\4V\200\377\3X\206\377\2V\205\377\14Rw\377.B;\377G7\21\377\215" "I6\15\377\7N<\26\377sg^\377\242\237\275\377\254\254\331\377\244\244\322" "\377\233\233\312\377\223\223\302\377\202\217\217\276\377\6\216\216\276" "\377\212\212\273\377\206\206\267\377\207\207\267\377|x\226\377SC%\377" "\217I6\15\377\2i[J\377\253\250\310\377\203\267\267\343\377\1\264\264" "\341\377\202\262\262\336\377\3\260\260\335\377\256\256\332\377\254\254" "\331\377\202\252\252\327\377\11\245\245\323\377\244\244\322\377\242\242" "\320\377\241\241\317\377\233\233\312\377\220\220\300\377\211\211\271" "\377}}\256\377xx\252\377\202pp\243\377\11ll\237\377ii\234\377gg\233\377" "ff\232\377aa\225\377dd\230\377aa\225\377``\224\377^^\222\377\202__\223" "\377\3]]\221\377aa\224\377]]\221\377\203aa\224\377\7dd\230\377bb\226" "\377ff\231\377hh\233\377jj\235\377kk\236\377oo\241\377\202nn\241\377" "\2ll\237\377jj\235\377\202kk\236\377\5ii\234\377hh\233\377ff\232\377" "ff\231\377dd\230\377\202cc\227\377\1bb\226\377\202aa\225\377\3``\224" "\377__\223\377]]\221\377\202\\\\\221\377\202[[\217\377\202XX\215\377" "\202WW\214\377\2VV\213\377UU\212\377\202RR\210\377\202QQ\207\377\203" "PP\205\377\202LL\202\377\1LL\201\377\202KK\201\377\202HH~\377\202FF}" "\377\203EE{\377\202DD{\377\204AAx\377\1@@w\377\203\77\77v\377\2<X\377\27""7P\377\24""2I\377\21,C\377\17)>\377\15&;\377\14&;\377" "\14%:\377\204\14%9\377\204\13%9\377o\13%8\377!25\377FJ0\377>@'\37765" "!\377;8%\377LC1\377_Q\77\377fXF\377g[H\377dXD\377^U=\377YU7\377XX3\377" "V[2\377T[2\377X]7\377]^=\377``=\377^^6\377W[0\377SX/\377VX2\377ZZ8\377" "\\Z<\377_ZA\377jeM\377|yc\377\210\207s\377\224\223x\377\240\234w\377" "\247\244x\377\252\247y\377\252\247{\377\243\242|\377\224\226t\377fkQ" "\37719\37\377$#\20\377,'\33\377IIH\377::;\377\36\33\22\377\32\26\7\377" "\27\23\6\377\33\31\22\377;;;\377A\77;\377#\35\33\377!\30\22\377/($\377" "\35\26\20\377\31\22\12\377\32\27\21\377*%$\3772..\377\32\25\20\377\33" "\22\10\377\36\25\10\377!\31\13\377\40\32\15\377!\34\20\377!\34\17\377" "!\33\17\377\40\32\16\377\37\27\14\377\36\25\12\377\36\24\11\377\35\23" "\10\377\33\22\7\377\32\23\7\377\31\23\6\377\27\22\6\377\25\21\6\377\24" "\20\7\377\37\37\32\377(('\377!\35\22\3770*\23\37760\26\3772.\25\377)" "(\22\377\40\40\17\377\33\31\16\377211\377\26\22\21\377(#\36\3772-+\377" "\37\30\25\377'\33\16\377,\40\20\377/#\21\3775(\23\377<3\"\377:,\34\377" "A4\37\377NB.\377L\77-\377H>-\377jk`\377^b[\377AD:\377CH6\377>E+\377t" "|b\377\207\203d\377\206\203X\377\211\207N\377\224\223b\377\201wY\377" "R>\25\377\214I6\15\377\31F7\22\3770C;\377\30Tp\377\17X\177\377\16X\177" "\377\21V~\377\17Ou\377\12Dh\377\11>^\377\10""8R\377\10""1H\377\12/C\377" "\12/\77\377\15""0>\377\14""4C\377\13""8J\377\14\77T\377\11C\\\377\12" "He\377\5Mp\377\5U\177\377\3V\205\377\7Qz\377&EH\377E8\24\377\221I6\15" "\377\6M:\24\377ocX\377\232\226\263\377\244\244\321\377\235\235\313\377" "\220\220\277\377\202\212\212\272\377\4\211\211\271\377\201\177\247\377" "aVS\377K8\22\377\216I6\15\377\3SB\40\377\221\212\227\377\270\270\342" "\377\202\267\267\343\377\1\264\264\341\377\203\262\262\336\377\25\257" "\257\334\377\254\254\331\377\253\253\330\377\252\252\327\377\247\247" "\324\377\244\244\322\377\244\244\321\377\241\241\317\377\240\240\316" "\377\236\236\314\377\233\233\312\377\232\232\311\377\230\230\307\377" "\225\225\304\377\212\212\273\377\203\203\264\377xx\252\377tt\246\377" "ii\234\377hh\233\377ee\230\377\202cc\227\377\1aa\225\377\202]]\221\377" "\202\\\\\221\377\2ZZ\216\377[[\220\377\202XX\215\377\202WW\214\377\1" "YY\216\377\202ZZ\216\377\202aa\224\377\3aa\225\377dd\230\377cc\227\377" "\202ee\230\377\203hh\233\377\12ff\232\377ee\230\377ff\231\377dd\230\377" "cc\227\377bb\226\377aa\224\377``\224\377__\223\377]]\221\377\202\\\\" "\221\377\2[[\220\377[[\217\377\202ZZ\216\377\202WW\214\377\3VV\213\377" "UU\212\377SS\210\377\202RR\210\377\203QQ\207\377\2QQ\206\377NN\204\377" "\202MM\203\377\202LL\202\377\203KK\201\377\202HH~\377\202FF}\377\1EE" "{\377\202DD{\377\1CCz\377\205AAx\377\2@@w\377\77\77v\377\202>>u\377\2" "<)\377B>'\377" "\34+1\377\14%8\377\16(<\377\22-B\377\26""3J\377\32:R\377\37@Z\377$Jd" "\377+Qm\3771Yu\3778a}\377@h\204\377Ho\214\377Qx\223\377Z\177\233\377" "c\207\242\377k\216\250\377s\224\255\377y\232\262\377\177\236\266\377" "\202\240\270\377\205\242\272\377\205\243\273\377\203\242\272\377\177" "\237\267\377{\233\264\377u\226\257\377m\220\253\377f\211\244\377]\202" "\236\377Uy\227\377Kr\217\377Ci\210\377:b\200\3772Zx\377+Sp\377%Jg\377" "\37C^\377\31:U\377\25""5M\377\22/G\377\20+B\377\16(=\377\15&:\377\14" "&:\377\207\14%:\377\20\13%9\377\12$9\377\14$7\377-:4\377FF+\377<<#\377" "75\40\377B;*\377VJ9\377cVG\377e]P\377e_Q\377d]M\377^ZC\377XY9\377TY1" "\377\202RZ.\377aT[/\377Y\\1\377\\^5\377\\_:\377Y^;\377T[4\377RW-\377" "KP'\377JN*\377WW9\377mjL\377\200|\\\377\216\212j\377\227\224w\377\237" "\235\200\377\241\235y\377\224\221f\377\177\200V\377eiE\377FK/\377<\77" "*\377OND\377+-*\377\32\32\15\377\33\30\11\377$#\35\377LIH\377HC@\377" "\30\26\16\377\26\22\6\377\27\21\3\377\32\26\14\3771.*\377\40\37\40\377" "\37\30\24\377\21\12\3\377\21\11\1\377\23\13\2\377\26\15\2\377\37\25\15" "\377#\31\17\3773'!\377:/*\3770(!\377'\36\25\377(\36\22\377(\37\23\377" "'\36\21\377$\34\17\377\"\31\15\377\37\26\13\377\40\25\12\377\37\24\11" "\377\36\23\10\377\34\23\7\377\33\22\7\377\31\21\6\377\31\22\6\377\30" "\22\7\377\26\22\7\377\"\37\27\377>80\377\77""1\34\377B3\31\3778.\25\377" "*$\20\377\36\32\13\377\33\26\11\377\37\33\23\377.++\377\36\27\17\377" ")\37\25\377=93\3779/-\377/%\31\3774,\35\377;1!\377;3!\377RMB\377C=3\377" "RE4\377L:%\377I7\40\377@6\34\377b^N\377>:.\377AB*\377^^;\377ttD\377\222" "\220_\377~yH\377wvD\377ll6\377\200}_\377p\\<\377bJ%\377R=\24\377\214" "I6\15\377\7E8\25\377.FC\377\22Qr\377\10Gl\377\7\77_\377\10;V\377\7""2" "J\377\202\10,=\377\14\11""0@\377\12/>\377\12""2A\377\10""7I\377\11@W" "\377\10E`\377\10Ii\377\3Lp\377\4T\177\377\4V\203\377\35IW\377@:\34\377" "\225I6\15\377\10M:\24\377k_T\377\225\221\257\377\233\233\312\377\223" "\223\302\377\206\205\264\377mfs\377P\77\40\377\217I6\15\377\2ti`\377" "\260\256\322\377\203\267\267\343\377\1\264\264\341\377\202\262\262\336" "\377\1\257\257\334\377\202\254\254\331\377\4\252\252\327\377\250\250" "\325\377\245\245\323\377\243\243\321\377\202\241\241\317\377\2\235\235" "\313\377\234\234\313\377\202\233\233\312\377\202\225\225\304\377\202" "\224\224\303\377\15\217\217\276\377\213\213\273\377\200\200\261\377y" "y\253\377qq\244\377ii\234\377cc\227\377bb\226\377__\223\377]]\221\377" "\\\\\221\377ZZ\216\377XX\215\377\202WW\214\377\1UU\212\377\203VV\213" "\377\12RR\210\377SS\210\377QQ\207\377VV\213\377UU\212\377WW\214\377Y" "Y\216\377[[\220\377\\\\\221\377]]\221\377\202aa\224\377\203cc\227\377" "\2dd\230\377cc\227\377\202aa\225\377\202__\223\377\5]]\221\377\\\\\221" "\377[[\220\377[[\217\377ZZ\216\377\203WW\214\377\202VV\213\377\202UU" "\212\377\4RR\210\377QQ\207\377QQ\206\377PP\205\377\202NN\204\377\202" "MM\203\377\202LL\202\377\202LL\201\377\1II\177\377\202HH~\377\202FF}" "\377\203EE{\377\2DD{\377CCz\377\202AAx\377\202@@w\377\202\77\77v\377" "\2>>u\377<Z\377\27""8" "Q\377\23""1J\377\20-D\377\16*\77\377\15':\377\14&9\377\13&9\377\203\14" "%9\377\1\14%:\377\203\13$9\377\202\12$9\377F\17'6\377;D3\377GI/\377C" "C-\37777!\377<8%\377PF5\377_RB\377dZJ\377d[K\377bYF\377^W>\377UU5\377" "PU/\377PW.\377QX.\377RY/\377TZ0\377TZ.\377SY-\377QY.\377RY1\377TW5\377" "NP2\377MM/\377\\[=\377rnN\377\203~]\377\214\207e\377\217\213f\377\205" "\204_\377tvS\377]eH\377PWD\377%*\30\377%%\23\377%#\22\377%%\27\377HQ" "O\377@AH\377\37\35\23\377\30\26\10\377\30\23\6\377&&\40\377HLM\37765" "<\377\25\22\22\377\23\15\3\377\23\16\2\377\22\16\7\377,./\377=<=\377" "$!$\377\27\17\11\377\35\23\10\377&\31\16\377*\33\16\377.\36\20\377/\36" "\21\3773&\32\377=3*\377<3/\3778.)\3771\"\32\377+\36\22\377+\34\20\377" "(\32\15\377&\30\14\377#\27\13\377\40\25\11\377\202\35\23\7\377+\34\22" "\6\377\34\22\7\377\33\23\10\377\33\24\10\377#\32\14\3774)\27\377J\77" "1\377>.\36\3774'\23\377$\36\14\377\32\25\10\377\31\21\6\377\31\23\7\377" "+*\"\377-,)\377.#\31\3773&\27\377<2%\377SQJ\37791+\37790\"\3776-\33\377" "4/\34\377WWY\377:.'\377D6\32\377E6\32\377A7\35\377>7\40\377ON<\377[U" "7\377tm;\377}u8\377zt/\377\200\177N\377LK%\377==\35\377@E5\377lmh\377" "\216}t\377\214fS\377nM*\377O:\22\377\214I6\15\377\21E7\23\377*82\377" "\21""2E\377\11,\77\377\10*:\377\11+:\377\12-<\377\12/=\377\7""4B\377" "\10:N\377\10A[\377\6Ge\377\4Lo\377\2Qx\377\3U\177\377\26Lb\377;<$\377" "\203I6\15\377\3M;\25\377N<\27\377I7\16\377\223I6\15\377\5K8\21\377fY" "L\377pec\377ZK5\377I6\16\377\216I6\15\377\3]N4\377\241\235\266\377\270" "\270\344\377\202\267\267\343\377\1\264\264\341\377\203\262\262\336\377" "\5\257\257\334\377\254\254\331\377\252\252\327\377\250\250\325\377\245" "\245\323\377\202\243\243\321\377\2\241\241\317\377\237\237\316\377\203" "\233\233\312\377\1\227\227\306\377\202\225\225\304\377\3\223\223\302" "\377\220\220\300\377\220\220\277\377\202\214\214\274\377\11\212\212\272" "\377\207\207\267\377\177\177\260\377yy\253\377pp\243\377hh\233\377gg" "\233\377aa\225\377\\\\\221\377\202XX\215\377\202WW\214\377\2RR\210\377" "SS\210\377\202PP\205\377\202QQ\206\377\12OO\205\377PP\205\377LL\202\377" "NN\204\377LL\202\377QQ\206\377NN\204\377QQ\206\377RR\210\377UU\212\377" "\202WW\214\377\1VV\213\377\202[[\217\377\203]]\221\377\3\\\\\221\377" "[[\217\377[[\220\377\202ZZ\216\377\2XX\215\377WW\214\377\202VV\213\377" "\2TT\211\377SS\210\377\202RR\210\377\202QQ\206\377\202PP\205\377\4NN" "\204\377MM\203\377LL\202\377LL\201\377\203II\177\377\202HH~\377\204F" "F}\377\202DD{\377\202CCz\377\1AAx\377\204@@w\377\4\77\77v\377>>u\377" "<9\37\377>7\35\377>7\34\377\77""9\37\377@E+\377#8:\377" "\16':\377\21+>\377\24""0D\377\26""4J\377\32:Q\377\35\77W\377#Ga\377(" "Oj\377.Vr\3775]z\377;d\177\377Bi\205\377Go\214\377Nu\222\377V{\227\377" "\\\200\235\377b\205\241\377f\212\244\377j\215\247\377l\217\251\377m\217" "\251\377l\216\251\377j\214\250\377f\211\245\377b\205\241\377\\\201\235" "\377U{\230\377Nt\222\377Fm\213\377\77f\204\3778_~\3771Xv\377*Qn\377$" "Jg\377\36B^\377\31;V\377\26""4N\377\22/H\377\20+B\377\16(=\377\14%9\377" "\13%9\377\203\13$9\377\206\12$9\377J\13$8\377\34""04\377EL3\377IK1\377" "CD-\37799$\37753\40\377C;'\377PE0\377YM8\377\\P:\377ZO9\377UO5\377QN" "0\377PP.\377PQ-\377RT.\377VX0\377XZ2\377X[1\377TZ-\377RY.\377NU,\377" "HM'\377HI)\377VQ4\377fbI\377qlS\377ytV\377}xV\377zy\\\377aeL\377DH2\377" "03\40\377;:+\377HG=\377%)\36\377,.\35\377##\24\377\36\34\15\377\"!\30" "\377KJL\377421\377\30\24\13\377\33\22\5\377\25\21\5\377'#\35\377KGF\377" "744\377\24\17\11\377\23\15\3\377\22\15\2\377\27\22\7\377+(\"\377;:<\377" "+(&\377&\33\21\377,\37\20\377.\40\21\3770\"\24\3771!\23\377/!\23\377" ".\40\23\3772#\27\3779,$\377<1,\3771\40\377;/\33\3777,\26\377FC6\377OL" "P\377:0\37\377<4\34\377C\77'\377EA&\377b\\8\377\207}Y\377\205w>\377\200" "r3\377mf)\377Y[4\377Z__\377\36\35\25\377\"\40\10\377B8\40\377\207w^\377" "\210g[\377rQ6\377ZC!\377\77""0\15\377E3\14\377\214I6\15\377\16C5\21\377" "(/!\377\15+4\377\11+9\377\7.<\377\12""5F\377\10>T\377\6D`\377\5Ii\377" "\4Ov\377\2T\201\377\17Pm\3774@1\377H6\17\377\202I6\15\377\6M;\25\377" "zol\377\250\245\305\377\253\251\313\377\211\201\212\377WF(\377\243I6" "\15\377\3O=\31\377\203z|\377\266\265\336\377\202\267\267\343\377\5\266" "\266\342\377\264\264\341\377\264\264\340\377\262\262\336\377\256\256" "\332\377\202\254\254\331\377\5\252\252\327\377\250\250\325\377\246\246" "\324\377\245\245\323\377\240\240\316\377\203\236\236\314\377\6\233\233" "\312\377\230\230\307\377\226\226\305\377\225\225\304\377\224\224\303" "\377\221\221\301\377\202\220\220\277\377\3\216\216\276\377\213\213\273" "\377\212\212\273\377\202\207\207\267\377\15\206\206\267\377\202\202\263" "\377~~\257\377tt\246\377pp\242\377ee\230\377__\223\377]]\221\377[[\217" "\377UU\212\377VV\213\377RR\210\377SS\210\377\202NN\204\377\2PP\205\377" "MM\203\377\202LL\202\377\1KK\201\377\203LL\201\377\3KK\201\377II\177" "\377LL\201\377\202OO\205\377\2PP\205\377NN\204\377\202RR\210\377\203" "VV\213\377\202WW\214\377\202XX\215\377\202WW\214\377\1VV\213\377\202" "UU\212\377\7TT\211\377RR\210\377QQ\207\377QQ\206\377PP\205\377OO\205" "\377NN\204\377\202MM\203\377\202LL\202\377\1LL\201\377\202II\177\377" "\1HH~\377\204FF}\377\202EE{\377\202DD{\377\1CCz\377\202AAx\377\205\77" "\77v\377\1<Z\377\27""8R\377\23""2J\377\21.D\377\17*@\377" "\15&;\377\14%9\377\13%9\377\13$9\377\210\12$8\377x\14$6\377/<2\377GK" "0\377HI.\377ED+\377<<&\37733\37\37753\40\377@:'\377JC0\377PI6\377RM9" "\377RN9\377SO6\377TP4\377SP0\377SP/\377VT0\377ZY2\377[]4\377Y]1\377W" "]/\377TZ.\377RV.\377TV1\377ZZ6\377a]:\377b]=\377d`D\377daI\377KK5\377" "=<(\37700\37\377((\27\377%$\23\377991\377VUW\377\"\40\30\377%\40\16\377" "#\37\14\377#\34\13\377\37\31\12\377@8.\377UTZ\377%$2\377\30\22\15\377" "\31\21\4\377\25\20\4\377,'\36\377IJE\37700/\377\27\22\13\377\35\23\7" "\377\"\30\11\377\"\33\14\377&\34\16\377+#\30\377\77""7.\3770'\40\377" "+\40\23\377-!\22\377-\40\21\377,\36\20\377,\37\20\377-\37\21\377/\37" "\21\377.\37\23\3775*!\37790+\3777/.\377.%\40\377&\33\22\377$\27\15\377" "#\27\14\377!\26\12\377\40\26\11\377!\27\12\377+\37\22\377:(\33\377\77" "*\35\3777&\30\377=6-\377-'$\377\37\27\17\377\33\25\11\377\31\24\6\377" "\34\26\10\377\"\31\12\3772.&\377GED\3771'\37\377\77""9,\377RLO\377A3" "'\377C7#\377A5\40\3779/\33\377SMB\377CB=\377B@0\377BA.\377TF)\377\201" "e7\377\237\201I\377\240\210]\377\203n:\377gY*\377F>\33\377IJ@\377DHS" "\377&\"\30\377UB,\377kM5\377\216w`\377lXL\377E:$\377-)\20\377#\"\7\377" "4+\11\377F4\15\377\214I6\15\377\12D5\20\377(2%\377\14""6D\377\6;T\377" "\4@]\377\4Ij\377\3Qx\377\14Qt\377-B<\377G7\20\377\202I6\15\377\5K9\21" "\377m`R\377\246\243\302\377\267\267\343\377\264\264\341\377\202\264\264" "\340\377\3\260\257\330\377\210\200\210\377YH+\377\240I6\15\377\11aSE" "\377\232\230\273\377\257\257\334\377\264\264\340\377\267\267\343\377" "\264\264\341\377\264\264\340\377\263\263\337\377\260\260\335\377\202" "\256\256\332\377\3\252\252\327\377\247\247\324\377\246\246\324\377\202" "\245\245\323\377\1\240\240\316\377\202\236\236\314\377\3\233\233\312" "\377\230\230\307\377\226\226\305\377\202\225\225\304\377\27\221\221\301" "\377\220\220\277\377\217\217\276\377\215\215\275\377\213\213\273\377" "\212\212\273\377\211\211\271\377\207\207\267\377\206\206\267\377\205" "\205\265\377\202\202\263\377\201\201\262\377\200\200\261\377\177\177" "\260\377zz\253\377uu\250\377ll\237\377hh\233\377``\224\377XX\215\377" "ZZ\216\377VV\213\377SS\210\377\202NN\204\377\5MM\203\377LL\202\377II" "\177\377LL\201\377FF}\377\202HH~\377\2GG~\377HH~\377\203FF}\377\13DD" "{\377FF|\377FF}\377KK\201\377LL\202\377LL\201\377JJ\200\377LL\201\377" "LL\202\377OO\205\377RR\210\377\202TT\211\377\202UU\212\377\4SS\210\377" "RR\210\377QQ\207\377QQ\206\377\203PP\205\377\2NN\204\377LL\202\377\202" "LL\201\377\202JJ\200\377\1II\177\377\202HH~\377\203FF}\377\202DD{\377" "\202CCz\377\203AAx\377\202@@w\377\203\77\77v\377\3>>u\377<!\377\77""9\37" "\377\202=8\35\377/>9\37\377@<\40\377NM+\377y~H\377\226\244a\377H^L\377" "\20*:\377\17*=\377\22.B\377\24""2G\377\27""6M\377\33" "\377\15&:\377\14%9\377\13%8\377\210\12$8\377@\13$8\377\30,3\377@H/\377" "HL.\377JL.\377HI,\377BC)\3778:#\37711\36\37784#\377@:*\377D@.\377GE2" "\377OL6\377XT:\377[W:\377YX8\377VW4\377WY4\377Y\\5\377Z^5\377Z_3\377" "Z`2\377X_0\377Y`2\377]c6\377_d6\377_c6\377a_9\377a[:\377d\\=\377a[C\377" "NG*\377E>$\377:6\37\3772.\33\377('\25\377>>5\377Z\\[\377\"\40\30\377" "'!\22\377&\40\15\377$\35\13\377!\32\11\377!\35\21\377INN\377IOU\377\31" "\30\21\377\25\22\4\377\26\20\3\377\27\20\5\377+)'\377OLM\377662\377\40" "\34\26\377$\31\12\377'\33\13\377'\34\14\377*\40\22\377:3,\377A=;\377" "3,,\377&\35\22\377)\36\20\377\202)\36\17\3779+\37\17\377+\36\17\377*" "\35\17\377)\34\16\377(\33\20\377,\40\26\3770'\37\3773*$\377+%\37\377" "\"\30\17\377%\35\25\377(\40\30\3773)!\377>/%\377@/$\377;*\37\377-!\26" "\377<;:\377\30\23\22\377\32\23\7\377\33\25\5\377\37\27\7\377\40\31\10" "\377#\35\13\37752'\377IKN\377)$\36\377c`_\377:0/\377G:&\377H<&\377H;" "%\377B8$\377SUM\37795,\377L\77$\377w]5\377\223s>\377\231x>\377\242\225" "g\377yhO\377YI(\377A3\26\3773$\13\377LMD\377FFP\377YC5\377rT;\377qV9" "\377\203ub\377PFC\3775/\34\377)'\15\377*#\11\3775+\15\377D4\21\377I6" "\16\377\214I6\15\377\6A6\25\377#;8\377\7Ec\377\7Ko\377%EG\377C8\26\377" "\202I6\15\377\7I7\16\377`Q9\377\233\226\252\377\266\265\340\377\265\265" "\341\377\264\264\340\377\262\262\336\377\204\256\256\332\377\3\254\253" "\322\377\207\177\207\377WF(\377\234I6\15\377\11O>\37\377tn\200\377\216" "\216\275\377\220\220\300\377\235\235\313\377\247\247\324\377\257\257" "\334\377\263\263\337\377\262\262\336\377\202\256\256\332\377\6\254\254" "\331\377\252\252\327\377\250\250\325\377\245\245\323\377\242\242\320" "\377\240\240\316\377\202\236\236\314\377\3\235\235\313\377\233\233\312" "\377\230\230\307\377\202\225\225\304\377\1\220\220\300\377\203\220\220" "\277\377\23\214\214\274\377\212\212\273\377\211\211\271\377\210\210\270" "\377\206\206\267\377\205\205\266\377\203\203\264\377\202\202\263\377" "\201\201\262\377\200\200\261\377~~\257\377||\256\377{{\254\377zz\253" "\377vv\250\377ss\245\377nn\241\377ff\232\377``\224\377\202VV\213\377" "\202PP\205\377\5MM\203\377LL\201\377II\177\377KK\201\377HH~\377\202F" "F}\377\202DD{\377\202CCz\377\2BBy\377AAx\377\202BBy\377\2EE{\377BBy\377" "\202CCz\377\4DD{\377HH~\377GG~\377II\177\377\202JJ\200\377\2KK\201\377" "LL\202\377\203NN\204\377\202PP\205\377\4NN\204\377MM\203\377LL\202\377" "LL\201\377\202KK\201\377\3JJ\200\377II\177\377GG~\377\202FF}\377\202" "EE{\377\203DD{\377\202CCz\377\202AAx\377\204\77\77v\377\202>>u\377\1" "<\377\23""0C\377\25""3I\377" "\27""7M\377\33=T\377\37C[\377#Ic\377(Oi\377-Tp\3771Yv\3775]z\3779a\177" "\377=e\203\377Bi\206\377El\212\377Gn\214\377Ip\216\377Jq\216\377Kr\217" "\377Jr\217\377Ip\215\377Fm\213\377Bi\207\377=e\203\3777`~\3772[y\377" "-Ts\377'Nm\377#Ig\377\37C_\377\32=X\377\26""7Q\377\23""2J\377\21.E\377" "\17*@\377\15';\377\202\13%8\377\210\12$8\377\3\13$8\377\16%6\3776B0\377" "\202HO,\377yIO.\377IM.\377GH,\377>>&\37784\40\377:3\40\377;6\"\377:6" "\"\377B\77(\377PL/\377ZX6\377^];\377]_:\377\\^:\377[^;\377\\_=\377[_" ";\377[_7\377W_4\377U^2\377Yb6\377]e<\377_e;\377ghE\377uoO\377\177wX\377" "\207\177`\377\216\212r\377\206}b\377\177rM\377na\77\377ZP2\377H\77(\377" ":4\40\377GG>\377Y^_\377%$\35\377(#\22\377&\40\14\377\"\36\15\377\"\33" "\13\377\36\33\11\377*/+\377GIJ\377.-(\377\26\23\11\377\32\24\6\377\31" "\24\4\377\32\26\12\377)(#\377\40\32\24\377&\35\21\377!\31\16\377#\33" "\12\377#\33\11\377#\34\13\377\40\33\14\3770*!\377@><\377:72\377&!\33" "\377&\36\21\377(\40\21\377(\37\22\377(\35\21\377)\35\20\377)\34\17\377" "(\34\15\377(\34\16\377)\33\17\377)\35\22\377+!\30\377FC\77\377)!\37\377" "-\40\25\377/\"\24\3772$\24\3771$\23\377+\40\20\3770)\"\37776:\377\36" "\26\16\377\"\30\11\377$\33\13\377%\36\13\377*!\17\377*#\21\3772-\40\377" "VQR\377QOS\377A=A\377@6\"\377G<$\377N\77'\377N@)\377KC-\377onj\377pY" "B\377\221q>\377\234{D\377\222u\77\377te4\377x|h\377\77""5.\3776(\20\377" "0%\11\377-$\14\377^bZ\377bSS\377qQ9\377vX:\377nU7\377}o_\377PB@\377\77" "1\35\377=/\26\377A0\25\377F3\31\377J7\31\377J7\23\377I6\16\377\214I6" "\15\377\2A8\30\377@9\31\377\204I6\15\377\10k^O\377\270\267\342\377\271" "\271\344\377\270\270\344\377\262\262\336\377\257\257\333\377\256\256" "\332\377\252\252\327\377\203\247\247\324\377\5\251\251\326\377\254\254" "\331\377\257\256\326\377\207\177\207\377XH*\377\230I6\15\377\24J7\17" "\377f[[\377\204\203\254\377\203\203\264\377\211\211\271\377\212\212\273" "\377\213\213\273\377\225\225\304\377\235\235\313\377\246\246\324\377" "\253\253\330\377\256\256\332\377\252\252\327\377\247\247\324\377\246" "\246\324\377\244\244\322\377\242\242\320\377\240\240\316\377\237\237" "\316\377\233\233\312\377\203\230\230\307\377\6\226\226\305\377\225\225" "\304\377\221\221\301\377\220\220\300\377\220\220\277\377\213\213\273" "\377\203\212\212\273\377\13\207\207\267\377\205\205\265\377\203\203\264" "\377\202\202\263\377\201\201\262\377\200\200\261\377~~\257\377}}\256" "\377||\256\377{{\254\377yy\253\377\202vv\250\377\6uu\250\377tt\246\377" "ss\245\377ll\237\377cc\227\377bb\226\377\202VV\213\377\5QQ\206\377PP" "\205\377KK\201\377HH~\377FF}\377\202EE{\377\202CCz\377\2AAx\377\77\77" "v\377\202AAx\377\3\77\77v\377>>u\377==u\377\202<" ">u\377\202\77\77v\377\6>>u\377\77\77v\377@@w\377AAx\377DD{\377GG~\377" "\202FF}\377\1GG~\377\203II\177\377\2HH~\377KK\201\377\202HH~\377\2II" "\177\377GG~\377\203FF}\377\3EE{\377DD{\377CCz\377\202BBy\377\202AAx\377" "\202@@w\377\202\77\77v\377\4>>u\377<Y\377\26""8R\377\23""3L\377\21/F\377" "\20,B\377\16(<\377\13%9\377\202\13%8\377\210\12$8\377I\13%7\377$61\377" "GQ-\377IQ*\377HP+\377IO-\377JN.\377IL,\377HI*\377GI)\377HH'\377CD$\377" "<=\37\377:;\37\377BC$\377JM*\377PT,\377TY0\377V[4\377V[6\377V]8\377W" "]7\377Z^7\377[_6\377Z_7\377Za;\377Z_;\377``\77\377mhM\377~u]\377\212" "\203m\377\222\217|\377\231\231\213\377\242\241\226\377\250\237\212\377" "\240\223s\377\214~[\377ziG\377gX8\377SI/\377WVE\377_b\\\377,*\37\377" "-(\24\377($\21\377(\"\20\377%\40\16\377\"\36\15\377#\35\21\377A>5\377" "[ce\377\"%,\377\31\30\13\377\32\25\5\377\32\23\4\377\32\25\6\377,0(\377" "IKM\377)(-\377\35\30\21\377!\31\12\377\40\33\11\377!\34\13\377\"\34\14" "\377)#\26\377;94\377:72\377+%\36\377(\37\25\377)\40\23\377*\37\21\377" "*\36\21\377*\37\20\377\202)\37\21\377\202)\36\20\3773.&\35\377<89\377" "&\33\25\377,\40\21\377.\"\22\3770$\25\3773%\26\377/\"\24\377GD@\377-" "&-\377*\37\22\377.\40\16\377/\"\20\3772%\22\3773'\22\3773&\20\3777.\35" "\377fgg\377ihr\3775+!\377@6\33\377H<\"\377LA%\377RB&\377o^:\377\246\221" "y\377\236yQ\377\233zC\377\206m<\377iV.\377TG/\377kfi\377/\40\32\3775" "'\15\3779,\17\377B4\31\377|pd\377rXK\377s\\:\377p_8\377`V0\377sxa\377" "YJF\377O@)\377P>#\377N>u\377;;r\377::q\377;;r\377::q\377\202<>" "u\377\202AAx\377\2DD{\377FF|\377\203FF}\377\202EE{\377\1CCz\377\202D" "D{\377\1BBy\377\203AAx\377\202@@w\377\202>>u\377\202==u\377\202<\377\20*<\377\22,\77\377\23" "1D\377\25""4H\377\27""8M\377\32Y\377\30""9S" "\377\24""4M\377\21""0H\377\17-C\377\15)>\377\14&:\377\13%8\377\13$8\377" "\203\12#8\377\205\12$8\377\\\13$8\377\33.4\377GP0\377NT+\377LS+\377L" "Q+\377KQ,\377JQ.\377MT0\377RX2\377VZ3\377TV0\377HL&\3778=\36\37702\33" "\37701\34\37703\34\37737\34\377:>\36\377;6\377JC=\377+%!\377(\37\21\377" ")\37\17\377)\40\21\377*!\22\377+\40\23\377(\37\22\377(\36\20\377&\35" "\16\377=<7\3771,/\377,\40\26\377.\"\24\377.$\25\3771'\30\3773'\27\377" "3'\32\377VQT\377*!\"\3770$\24\3770$\20\3774&\22\377\2026(\23\377%8*\23" "\3779.\33\377qi`\377:/'\377A5\34\377A6\32\377B9\34\377QB%\377x[3\377" "\235~O\377\254\216p\377\220k@\377v]3\377`I*\377M5\31\377WMB\377VQZ\377" "=*\35\377F2\25\377K6\32\377N@\"\377\201}k\377b[D\377ce;\377_h<\377Oa" "5\377s\206g\377U]K\377MR/\377KM*\377HE$\377FH$\377UZ5\377_g=\377z\204" "\\\377b\\<\377H7\17\377\220I6\15\377\7TC#\377\202y~\377\251\250\317\377" "\254\254\331\377\247\247\324\377\244\244\322\377\235\235\313\377\203" "\233\233\312\377\10\235\235\313\377\241\241\317\377\247\247\324\377\252" "\252\327\377\257\257\333\377\256\255\324\377\205}\204\377P>\32\377\221" "I6\15\377\4P>\34\377vmu\377\223\223\302\377\211\211\271\377\202\204\204" "\264\377\202\205\205\265\377\13\203\203\264\377\201\201\262\377\204\204" "\264\377\203\203\264\377\204\204\264\377\210\210\270\377\221\221\301" "\377\233\233\312\377\237\237\315\377\240\240\316\377\236\236\314\377" "\202\233\233\312\377\10\232\232\310\377\226\226\305\377\225\225\304\377" "\224\224\303\377\221\221\301\377\220\220\277\377\216\216\276\377\214" "\214\274\377\202\213\213\273\377\1\207\207\267\377\202\205\205\265\377" "\2\203\203\264\377\201\201\262\377\203\177\177\260\377\3}}\256\377{{" "\254\377zz\253\377\202xx\252\377\7vv\250\377uu\247\377tt\246\377ss\245" "\377qq\244\377pp\243\377nn\241\377\202ll\237\377\1kk\236\377\202ii\234" "\377\11ee\230\377bb\226\377VV\213\377UU\212\377KK\201\377II\177\377H" "H~\377AAx\377CCz\377\202AAx\377\5\77\77v\377>>u\377;;r\377::q\377<>u\377AAx\377@@" "w\377AAx\377\203@@w\377\202AAx\377\4CCz\377AAx\377@@w\377AAx\377\204" "\77\77v\377\202==u\377\202<W\377\35A[\377\40Fa\377$Jf\377" "'Nj\377)Pn\377+Sp\377-Ur\377.Vt\377\202/Xu\377\20/Wt\377.Vs\377,Tq\377" "*Rn\377'Ok\377$Kg\377\"Fb\377\36B]\377\32=X\377\26""8S\377\24""4M\377" "\21""1H\377\20-D\377\16*\77\377\15';\377\13$9\377\202\13$8\377\204\12" "#8\377\203\12$8\377\177\13#7\377\24'3\377<\77-\377GG'\377EF$\377HI(\377" "KL*\377LO,\377MR0\377PU3\377TW6\377SU5\377MO2\377CD,\377=;*\377;6)\377" "52&\3770.!\377+)\33\377+*\32\377-+\33\3770/\35\37779\"\377BH)\377PU0" "\377Y\\4\377[]5\377]Z7\377]W;\377]U@\377\\TF\377`XL\377qeT\377\212xb" "\377\233\211o\377\250\230~\377\260\250\226\377\271\260\235\377\302\272" "\243\377\312\301\251\377\321\277\241\377\305\257\211\377\260\235s\377" "\255\232o\377\271\255\213\377\250\240\216\377\214\177c\377rhI\377ZR4" "\377GA*\37775\40\377/.\31\377*(\24\377((\24\377DD9\37755-\377#\"\22\377" "\40\36\13\377\36\31\6\377\32\27\3\377\31\24\4\377\36\27\14\377<81\377" "LHE\3771.)\377\37\33\22\377\40\30\13\377!\32\11\377\"\32\13\377#\31\11" "\377&\35\22\377KHH\377#\34\32\377*\40\21\377-!\22\377.\"\23\377-\"\22" "\377,!\22\377*\40\21\377*\40\17\377'\36\22\377QMO\377$\37#\377)\40\24" "\377(\"\24\377)$\24\377,'\27\377.'\26\377B<4\377FBI\377/#\31\3770$\17" "\3771$\21\3772%\20\3777(\21\3779,\24\377=0\31\377A2\36\377sle\377=3'" "\377G>u\377<>u\377AAx\377\202@@w\377\1AAx\377\202\77\77v\377" "\202>>u\377\202<2\40\377\77""7\"\377C\77" "&\377JG)\377ML,\377MN/\377LL0\377JJ2\377JG5\377GC5\377C=2\377@:/\377" ">8-\377:5)\37771%\3775.#\3775.\"\3775.!\37772!\377@>$\377LM*\377UU.\377" "ZY2\377]Y5\377cW7\377gU;\377iU>\377iTA\377mXF\377|dQ\377\214s\\\377\232" "\203i\377\251\221x\377\262\240\210\377\271\262\242\377\304\271\240\377" "\315\277\241\377\323\302\240\377\324\300\232\377\331\306\242\377\342" "\322\265\377\344\334\304\377\345\341\324\377\341\332\317\377\324\313" "\264\377\274\257\223\377\231\217n\377\177uU\377ylN\377\177rV\377\226" "\207i\377\253\231~\377\300\263\232\377\240\226\200\377~tY\377JG/\377" "&&\24\377$\40\25\377&\35\27\377\36\30\13\377\33\27\15\377QST\377\33\31" "\34\377\34\24\5\377\36\25\4\377\40\25\5\377!\30\6\377#\31\7\377*%\36" "\377MLR\377\"\33\30\377*\37\20\377+\37\17\377+\40\17\377*\40\20\377-" "\40\20\377.!\17\377-\"\20\3773-$\377IHO\377!\34\30\377$!\22\377#!\21" "\377$!\21\377,'\24\3770$\24\377[XT\3774+)\3774&\23\3774'\21\3772(\20" "\3772*\20\3776-\24\377<0\27\377@6\32\377QK<\377kci\377RA2\377mR5\377" "yX8\377|[8\377uW5\377cL+\377woa\377UJK\377K>)\377QC(\377RD+\377MC*\377" "|\177x\377[NB\377j\\8\377nc<\377ld<\377orK\377\201\206s\377\\cD\377[" "c;\377Zb8\377Y`1\377}\205k\377WUF\377\11QG'\377K<\33\377I;\34\377K>\40" "\377LA\"\377BC\35\377SiE\377VoW\377GE\33\377\222I6\15\377\15UD&\377{" "r{\377\226\225\277\377\226\226\305\377\224\224\303\377\222\222\301\377" "\220\220\300\377\221\221\301\377\225\225\304\377\235\235\313\377\235" "\235\307\377|t|\377Q@\36\377\217I6\15\377\7ZJ-\377\225\217\240\377\264" "\264\341\377\256\256\332\377\245\245\323\377\243\243\321\377\233\233" "\312\377\202\213\213\273\377\3\203\203\264\377\177\177\260\377\200\200" "\261\377\202\177\177\260\377\22vv\250\377zz\253\377||\256\377{{\254\377" "{{\255\377\177\177\260\377\206\206\267\377\212\212\273\377\224\224\303" "\377\225\225\304\377\223\223\302\377\220\220\300\377\220\220\277\377" "\217\217\276\377\215\215\275\377\212\212\273\377\212\212\272\377\211" "\211\271\377\202\205\205\265\377\202\202\202\263\377\3\201\201\262\377" "\200\200\261\377}}\256\377\202{{\254\377\2zz\253\377vv\250\377\204uu" "\247\377\1ss\245\377\202pp\242\377\202nn\241\377\2ll\237\377kk\236\377" "\202ii\234\377\1gg\233\377\202ff\232\377\1dd\230\377\202bb\226\377\14" "aa\225\377``\224\377__\223\377VV\213\377SS\210\377LL\201\377HH~\377F" "F}\377AAx\377@@w\377<\377\20+" "\77\377\20-A\377\22""0F\377\24""3I\377\27""6M\377\30""9Q\377\32=U\377" "\35\77Y\377\36A]\377\40D`\377!Eb\377\"Gc\377#Gd\377\"Fc\377!Fb\377\40" "E`\377\40D^\377\35A]\377\33>Y\377\31;U\377\26""8R\377\24""5N\377\23""2" "J\377\21/G\377\17-C\377\17+\77\377\16(<\377\203\13%8\377\204\12$8\377" "\202\12#8\377H\12#7\377\12#6\377\23$0\377**%\3777-\37\3778.\37\3778/" "\36\377;4\40\377\77:\"\377FC&\377KH)\377MI+\377NH/\377IC0\377C\37\30\7\377:51\377BAH\377\33\25\17" "\377!\26\5\377\40\27\4\377\"\30\10\377(\34\13\377+\36\14\377-!\17\377" ",\40\17\377MIC\37742;\377&!\25\377#\"\17\377#!\16\377)%\17\3773'\21\377" "=.\40\377^Y^\3774'\40\377;-\30\3777.\30\3772-\25\37720\27\37735\32\377" ":<\36\377DD&\377~|i\377oke\377nhK\377vqK\377vsM\377rtM\377iqI\377cnJ" "\377\217\236\207\377ozk\377u\202]\377\201\214c\377\217\230j\377\232\245" "x\377\262\266\232\377\225\231l\377\221\225a\377\213\216[\377\210\213" "Z\377\230\241n\377\245\256\214\377\217\234m\377\206\227d\377y\207X\377" "dpF\377x\213u\377PI>\377P\77$\377P=\37\377L;\36\377L=\40\377LC\"\377" "GE\33\377K\77\26\377\224I6\15\377\13I6\16\377UD'\377woz\377\221\220\273" "\377\220\220\277\377\217\217\276\377\216\216\276\377\216\216\275\377" "~y\221\377YJ3\377I6\16\377\216I6\15\377\3K9\21\377~ts\377\261\257\326" "\377\202\267\267\343\377\4\261\261\336\377\250\250\325\377\244\244\322" "\377\236\236\314\377\202\226\226\305\377\4\206\206\267\377~~\257\377" "zz\253\377yy\253\377\202zz\253\377\11uu\247\377tt\246\377uu\250\377v" "v\250\377uu\247\377ww\251\377||\256\377\204\204\264\377\211\211\271\377" "\202\217\217\276\377\1\214\214\274\377\202\212\212\273\377\2\212\212" "\272\377\207\207\267\377\202\205\205\265\377\3\203\203\264\377\200\200" "\261\377\177\177\260\377\202}}\256\377\7||\256\377{{\254\377yy\253\377" "vv\250\377uu\250\377uu\247\377ss\245\377\204pp\242\377\2nn\241\377kk" "\236\377\202jj\235\377\4ii\234\377hh\233\377gg\233\377ff\231\377\202" "dd\230\377\1cc\227\377\202aa\225\377\4``\224\377__\223\377]]\221\377" "\\\\\221\377\202ZZ\216\377\6VV\213\377NN\204\377FF}\377@@w\377<\377" "^V;\377{z]\377\212\214^\377\220\227\\\377\227\244_\377\231\252`\377\231" "\256a\377\227\261c\377\235\265g\377\254\300o\377\277\321y\377\321\341" "\203\377\335\352\212\377\341\356\215\377\350\360\221\377\360\362\237" "\377\361\362\266\377\357\361\313\377\354\356\317\377\325\327\271\377" "z\207z\377$;E\377\21+>\377\21-A\377\22.C\377\23""1F\377\24""4I\377\27" "6M\377\30""8P\377\31:S\377\33Y\377\34\77Y\377\33\77" "Z\377\33\77Y\377\32=W\377\31" "\377eZA\377i_B\377j`@\377g\\=\377cW<\377`T\77\377`TC\377]SD\377[QA\377" "ZO=\377]Q;\377ZS8\377{vj\377UO;\377^W9\377ogF\377\213\177\\\377\247\231" "r\377\277\261\214\377\326\307\247\377\345\330\277\377\351\341\320\377" "\355\352\340\377\355\347\330\377\357\345\323\377\356\341\310\377\351" "\331\271\377\352\330\266\377\353\330\264\377\347\324\255\377\330\303" "\230\377\306\267\226\377{rR\377RK/\377\77""8\40\37780\31\3771,\25\377" "0'\24\377+\"\21\377IFB\377HFP\377#\34\23\377&\36\14\377%\35\11\377\"" "\33\7\377!\32\6\377\36\26\5\377HEB\3770/9\377\31\22\10\377\202\33\22" "\2\3775\34\23\3\377\"\27\5\377(\35\11\377,!\15\377,#\24\377_^_\377)#" "&\377+%\23\377(#\15\377+$\15\3774'\17\3779(\22\377WOG\377IBE\377<0\37" "\377A:\"\377LL3\377Z`E\377doQ\377o{Z\377z\202_\377{\204^\377\243\256" "\226\377\203\211s\377~\210`\377|\210\\\377|\207\\\377}\207[\377|\212" "]\377\177\215`\377\244\255\227\377{\206k\377\201\206\\\377\177\202W\377" "||O\377\210\206`\377\204\177q\377aX:\377^R.\377XN*\377[S)\377{zY\377" "\212\213t\377\201\213a\377\221\242n\377\227\250s\377\222\246p\377\232" "\251\211\377diN\377OL*\377M\77\40\377M<\31\377K9\22\377\231I6\15\377" "\6TD(\377tmy\377\207\205\252\377\200|\235\377aUL\377J8\20\377\217I6\15" "\377\2bS=\377\244\240\274\377\202\267\267\343\377\203\264\264\340\377" "\3\254\254\331\377\252\252\327\377\237\237\316\377\202\231\231\307\377" "\5\220\220\277\377\201\201\262\377zz\253\377uu\247\377rr\244\377\202" "tt\246\377\15pp\243\377nn\241\377oo\241\377pp\242\377pp\243\377oo\241" "\377rr\244\377{{\254\377\201\201\262\377\206\206\267\377\212\212\272" "\377\212\212\273\377\207\207\267\377\203\205\205\265\377\1\201\201\262" "\377\202\200\200\261\377\3\177\177\260\377{{\254\377zz\253\377\202yy" "\253\377\10xx\252\377vv\250\377uu\247\377ss\245\377qq\244\377pp\242\377" "nn\241\377ll\237\377\203kk\236\377\2jj\235\377ii\234\377\203ee\230\377" "\1dd\230\377\202bb\226\377\1aa\224\377\202``\224\377\3__\223\377]]\221" "\377\\\\\221\377\202[[\217\377\15ZZ\216\377XX\215\377QQ\207\377PP\205" "\377LL\202\377KK\201\377FF}\377AAx\377\77\77v\377<\377\21-A\377\23/E\377\24""1H\377\25""4J\377\25""4L\377\26" "5M\377\26""6N\377\27""7P\377\26""6P\377\26""7P\377\26""6P\377\25""6O" "\377\25""4N\377\24""3L\377\24""2J\377\22""0H\377\21/F\377\20-C\377\17" "*@\377\16(=\377\14&;\377\203\13%8\377\1\14%8\377\202\13$9\377\16\13$" "8\377\13%8\377\13#8\377\14$7\377\33(4\377733\377J:2\377Q\77""3\377TB" "6\377WE8\377XH9\377YI9\377ZK:\377[N;\377\202[O;\377O[N9\377YL7\377VJ" "3\377SG1\377TH2\377QE/\377RG.\377RH.\377OH.\377MG.\377JF-\377JG.\377" "LJ/\377PO1\377SR3\377VV5\377YZ7\377\\]:\377^^:\377\\[5\377UT.\377JJ&" "\37788\34\377-,\32\377+)\32\377*(\32\377)%\27\377)%\26\377*%\25\377*" "$\23\377=82\377@>;\377,(\30\3772.\32\377;7\40\377HE*\377[W;\377woO\377" "\230\212h\377\265\245\177\377\320\301\241\377\337\317\267\377\345\320" "\256\377\353\327\263\377\357\334\273\377\361\337\301\377\357\336\302" "\377\352\333\276\377\340\320\261\377\325\310\255\377\265\252\231\377" "\216\200^\377xjG\377fX7\377VK.\377I@(\377>7!\3774+\33\377iba\37794:\377" "/'\27\377,$\21\377&!\15\377#\34\10\377!\32\7\377\40\30\13\377VVW\377" "($+\377\"\27\11\377\"\27\4\377\37\26\2\377\37\25\2\377\40\30\4\377&\35" "\10\377.\"\14\377<5,\377WU_\377.$\34\3773)\21\377\2025(\22\377(9)\23" "\3778(\26\377plk\377SGI\377xhW\377\201s\\\377wrW\377ghI\377X]<\377MT" "2\377IN+\377LM6\377\211\203\206\377B=7\377MF%\377NG#\377RF\40\377PE\40" "\377SE!\377WN7\377wts\377U=/\377ZE*\377_I.\377_H+\377|nW\377cM>\377\\" "F,\377WD'\377SB\"\377P\77\40\377xpa\377i_Y\377nmW\377\177\212j\377\224" "\242}\377\243\262\204\377\267\302\241\377\200\211d\377MD\35\377\203I" "6\15\377\5K8\20\377hYH\377xmi\377i\\K\377L9\22\377\224I6\15\377\3I6\16" "\377K9\23\377K8\21\377\217I6\15\377\5P>\32\377\217\210\223\377\265\264" "\337\377\267\267\343\377\264\264\341\377\202\264\264\340\377\203\257" "\257\334\377\2\250\250\325\377\245\245\323\377\202\232\232\311\377\6" "\224\224\303\377\212\212\272\377\177\177\260\377yy\253\377ss\245\377" "qq\244\377\202pp\243\377\1nn\241\377\202kk\236\377\10nn\241\377mm\240" "\377ll\237\377pp\242\377vv\250\377zz\253\377~~\257\377\202\202\263\377" "\202\205\205\265\377\1\201\201\262\377\202\200\200\261\377\2\177\177" "\260\377||\256\377\202{{\254\377\2zz\253\377uu\250\377\203uu\247\377" "\3tt\246\377qq\244\377pp\242\377\202nn\241\377\1ll\237\377\202jj\235" "\377\202hh\233\377\2gg\233\377ee\230\377\202dd\230\377\1aa\225\377\202" "aa\224\377\1__\223\377\202]]\221\377\1[[\220\377\202[[\217\377\3ZZ\216" "\377XX\215\377WW\214\377\204VV\213\377\6UU\212\377QQ\206\377HH~\377C" "Cz\377<\377\16'<\377\14%:\377\14%9\377\202\13%9\377" "\1\12$9\377\202\12$8\377\202\13$8\377'\17%7\377!,6\377<99\377RC9\377" "XD7\377YE7\377YG8\377WG8\377VG7\377UH5\377TI3\377SK3\377RM2\377RN0\377" "PN.\377LL+\377IJ(\377FI&\377CH$\377EJ&\377HL%\377JM%\377IN&\377GM'\377" "EL(\377DK(\377EL*\377HN,\377LQ.\377OT/\377QV1\377PV0\377KP,\377DI&\377" ":>\35\37701\24\377&%\17\377\40\34\14\377\40\34\16\377\202\40\33\16\377" "^\40\33\15\377\"\34\17\377\"\35\17\377$\37\17\377!\36\17\377NKF\377%" "#\34\377(\"\21\377.(\30\37772'\377=:0\377>\77""1\377>;(\377NI.\377e_" "=\377\241\236\203\377\237\226{\377\276\250\200\377\324\276\225\377\344" "\320\255\377\356\334\277\377\360\342\312\377\357\343\315\377\355\340" "\312\377\351\337\317\377\332\314\270\377\313\270\227\377\267\245~\377" "\236\216i\377\207xU\377pbC\377^S7\377QH5\377wtp\37752+\37762\35\3770" "*\25\377+#\17\377&\37\12\377\"\34\7\377(!\25\377ebd\377\"\34\36\377%" "\32\10\377$\31\5\377#\31\3\377#\30\3\377#\31\3\377'\35\7\377+\37\13\377" "c]X\377<7<\3774(\26\3777*\21\3775(\20\3776)\20\3776(\20\377C;-\377`\\" "]\377PG<\377QJ5\377G@'\377C8\33\377B5\33\377A5\31\377A8\33\377D:\"\377" "k[O\377yny\377m^V\377\206~q\377\237\223\211\377\255\231\222\377\271\230" "\224\377\272\214\212\377\305\227\222\377\270\216\223\377\252on\377\244" "kc\377\235g\\\377\231eV\377\254\212\177\377\200VQ\377sP>\377eL2\377[" "H-\377YN5\377\216\221\205\377\207yz\377\213}q\377\211|l\377{uY\377je" "<\377O=\25\377\203I6\15\377\10^O6\377\226\220\243\377\263\262\336\377" "\264\264\340\377\263\263\336\377\234\227\257\377fYF\377J7\17\377\243" "I6\15\377\2qdY\377\257\255\323\377\202\267\267\343\377\202\264\264\340" "\377\1\261\261\336\377\202\257\257\334\377\203\252\252\327\377\1\244" "\244\322\377\202\233\233\312\377\1\220\220\277\377\202\211\211\271\377" "\5{{\254\377tt\246\377nn\241\377kk\236\377ll\237\377\202nn\241\377\2" "hh\233\377ff\232\377\202hh\233\377\11ff\231\377ff\232\377jj\235\377q" "q\244\377uu\250\377||\256\377\177\177\260\377\201\201\262\377\177\177" "\260\377\203{{\254\377\2zz\253\377ww\251\377\202uu\250\377\2uu\247\377" "qq\244\377\204pp\242\377\2nn\241\377kk\236\377\202jj\235\377\1ii\234" "\377\204ee\230\377\202dd\230\377\203``\224\377\1^^\222\377\202]]\221" "\377\3[[\220\377[[\217\377YY\216\377\203WW\214\377\202UU\212\377\21S" "S\210\377RR\210\377QQ\207\377PP\205\377KK\201\377HH~\377DD{\377CCz\377" "AAx\377\77\77v\377</\377E=.\377E=-\377D\77,\377C\77" "+\377AA)\377AC'\377CF&\377FI&\377GL&\377HN&\377IO%\377HO$\377\202HP$" "\377\3HO$\377GO$\377HP%\377\202JQ&\377oHQ(\377GP(\377GN(\377EK&\377@" "F$\377=C\"\377>B#\377@C\"\377\77B\37\377:=\34\37715\27\377&&\20\377\36" "\34\14\377\34\31\13\377\35\31\14\377\34\30\13\377\34\31\13\377\34\32" "\14\377\34\32\13\377\34\31\13\377\35\33\15\377\40\32\15\377\"\33\17\377" "#\36\21\3775/&\377PPJ\377(&\36\377,%\26\377)%\26\377(\"\22\377-%\21\377" ".'\23\3771*\27\37760\32\377\77=,\377\206\207\203\377^ZI\377\206|Y\377" "\250\230r\377\305\263\216\377\333\306\244\377\345\322\263\377\353\332" "\274\377\354\334\300\377\354\343\322\377\352\331\300\377\350\325\267" "\377\341\315\260\377\323\276\240\377\277\253\211\377\250\230s\377\224" "\204_\377\214\202b\377yvp\377OJ:\377CA)\37753\34\377-)\23\377(#\15\377" "&!\13\37762'\377[\\d\377\40\32\30\377\"\35\6\377!\32\4\377#\32\3\377" "#\33\4\377$\35\7\377)\40\13\3770(\30\377oop\377-%'\3774*\21\3774+\20" "\3773,\21\37740\23\37721\24\377mle\377MIN\377RN9\377WP8\377XO4\377XK" "0\377fO9\377\203_M\377\250vm\377\311\222\216\377\347\302\301\377\355" "\313\323\377\360\320\324\377\353\320\324\377\337\302\305\377\313\251" "\252\377\270\216\213\377\244wo\377\244\207}\377\232xz\377\210]T\377\206" "]J\377\210^L\377\224nZ\377\252\203\210\377\230^[\377\221^O\377\202^K" "\377}i[\377\201yk\377\237\232\224\377\200rk\377iW<\377M;\24\377\203I" "6\15\377\5VE%\377\211\201\212\377\262\261\332\377\264\264\340\377\261" "\261\336\377\202\257\257\334\377\5\264\264\340\377\263\262\336\377\227" "\222\247\377cT\77\377J8\20\377\237I6\15\377\2WF(\377\230\223\246\377" "\202\267\267\343\377\203\264\264\340\377\202\257\257\334\377\1\254\254" "\331\377\202\252\252\327\377\203\245\245\323\377\202\233\233\312\377" "\1\225\225\304\377\202\213\213\273\377\5\202\202\263\377zz\253\377uu" "\247\377pp\243\377ii\234\377\202hh\233\377\5kk\236\377ee\230\377cc\227" "\377bb\226\377ff\231\377\202cc\227\377\6ee\230\377kk\236\377ss\245\377" "yy\253\377||\256\377}}\256\377\202{{\254\377\202ww\251\377\3uu\250\377" "uu\247\377ss\245\377\202pp\243\377\2pp\242\377nn\241\377\204jj\235\377" "\2ii\234\377gg\233\377\202ee\230\377\202dd\230\377\204``\224\377\202" "__\223\377\203[[\217\377\3ZZ\216\377YY\216\377WW\214\377\203VV\213\377" "\202UU\212\377\2RR\210\377QQ\207\377\203QQ\206\377\202PP\205\377\7NN" "\204\377LL\202\377FF}\377AAx\377;;r\37755m\37700h\377\204..g\377\2--" "f\377,,e\377\202))b\377\4''`\377%%^\377&&_\377''`\377\202&&_\377\4''" "`\377%%^\377$$^\377\"\"\\\377\202\"\"[\377\3!![\377\"\"[\377!![\377\202" "##]\377\4''`\377&&_\377$$^\377))b\377\202''a\377\4++d\377**c\377++d\377" ",,e\377\202))b\377\204**c\377\1,,e\377\202**c\377\202++d\377\206**c\377" "\1))b\377\203((b\377\2''`\377&&_\377\210%%^\377\202##]\377\202\"\"[\377" "\204\37\37Y\377&\200~b\377\213\217b\377\244\253n\377\274\305\201\377" "\314\330\225\377\326\343\243\377\332\347\254\377\331\347\257\377\325" "\345\254\377\321\342\246\377\317\341\243\377\316\340\237\377\314\336" "\231\377\316\335\222\377\320\335\213\377\326\334\207\377\341\336\211" "\377\346\335\216\377\353\333\235\377\360\336\261\377\360\343\303\377" "\354\350\317\377\350\350\331\377\343\344\337\377\340\340\337\377\333" "\333\333\377\326\326\326\377\317\317\316\377\307\307\310\377\270\272" "\274\377\240\244\250\377{\204\213\377Vcn\3779JX\377%:J\377\31""0A\377" "\24,>\377\21*=\377\202\17(<\377\3\17'<\377\16';\377\16':\377\202\16&" ":\377\177\17&9\377\17(:\377\22):\377\27,<\377\36""1<\377'69\377*51\377" "-2'\37744$\37788$\377=<+\377>=+\377\77\77*\377\77A*\377AD*\377AF)\377" "BH(\377BI'\377CK&\377EM%\377HO&\377IP%\377JP%\377LP&\377NP&\377NQ&\377" "PR'\377PS(\377PS&\377NR%\377LR%\377JR%\377LS'\377LQ'\377FJ\"\377:\77" "\33\377.2\26\377%'\21\377#$\20\377%#\17\377$\"\16\377\40\36\14\377\35" "\32\12\377\34\30\14\377\37\32\17\377(\"\27\3772+!\37773)\377=;2\377C" "B;\377EE>\377CF<\377HNC\377YXP\377TRI\377DB4\377BA1\377bcV\377BG=\377" "B/\377=\77-\377=>)\377\77>'\377A<$\377B<$\377A:#\377^[N\377i" "kp\377C@2\377YS5\377oiJ\377\214\202b\377\243\225q\377\270\245~\377\315" "\267\216\377\336\316\260\377\347\333\310\377\352\330\273\377\353\332" "\277\377\352\330\274\377\350\323\266\377\343\317\257\377\331\305\244" "\377\310\266\223\377\305\273\245\377\231\220\200\377\206xY\377{jL\377" "mZ=\377RG,\37775\34\377+)\23\377JID\377MLS\377!\34\24\377$\36\11\377" "!\33\5\377%\34\5\377$\34\6\377'\40\13\377-%\16\377JG\77\377UT_\377/+" "\36\37743\25\37766\27\377;;\32\377FE$\377PO6\377\201\204\200\377]^S\377" "vq[\377\207ua\377\231rb\377\247qe\377\261th\377\261xk\377\247zm\377\227" "vh\377\267\246\237\377tem\377aYN\377RK:\377H@+\377H;$\377J:#\377\16F" "5\40\377tpk\377N\77B\377L9#\377O=!\377N>#\377si[\377qYX\377xYG\377\215" "k[\377\221ob\377}hY\377h_A\377VE!\377\203I6\15\377\7N<\27\377|rp\377" "\256\255\321\377\264\264\340\377\262\262\336\377\257\257\334\377\254" "\254\331\377\202\252\252\327\377\1\257\257\334\377\202\261\261\336\377" "\4\257\257\331\377\222\214\236\377_P8\377I7\16\377\233I6\15\377\5L:\24" "\377{qm\377\262\261\332\377\267\267\343\377\266\266\342\377\202\264\264" "\340\377\203\257\257\334\377\202\252\252\327\377\1\247\247\324\377\202" "\245\245\323\377\204\240\240\316\377\12\225\225\304\377\223\223\302\377" "\213\213\273\377\207\207\267\377\205\205\265\377||\256\377tt\246\377" "nn\241\377hh\233\377ff\231\377\202ff\232\377\1ee\230\377\202``\224\377" "\2bb\226\377ee\230\377\202cc\227\377\4ff\232\377ii\234\377pp\243\377" "vv\250\377\202zz\253\377\202uu\250\377\202tt\246\377\10rr\244\377pp\243" "\377pp\242\377nn\241\377kk\236\377jj\235\377ii\234\377gg\233\377\203" "ff\232\377\3ee\230\377dd\230\377aa\225\377\202``\224\377\202__\223\377" "\204[[\217\377\202ZZ\216\377\203VV\213\377\202UU\212\377\2RR\210\377" "QQ\207\377\203QQ\206\377\3PP\205\377NN\204\377MM\203\377\203LL\201\377" "\14KK\201\377HH~\377AAx\377@@w\377<\30\377,-\20\377\40\36\13\377\36\32\14\377\33\30\13\377\33\27\13" "\377\32\26\12\377\33\26\13\377\35\30\15\377!\32\17\377*#\30\377:1%\377" "H=2\377YND\377h_W\377sjd\377woh\377wof\377tl]\377tjX\377|nZ\377\201s" "^\377\210ze\377\221\206q\377\265\256\242\377\247\231\216\377\247\231" "\206\377\244\226\177\377\245\227|\377\247\227z\377\241\222t\377\242\223" "p\377\254\231r\377\257\234q\377\300\271\227\377\224\226x\377\213\216" "c\377\202\211a\377~\210f\377x\201X\377\205\213b\377\234\233t\377\256" "\247\203\377\320\315\265\377\302\272\236\377\315\300\230\377\326\307" "\235\377\335\315\250\377\345\324\262\377\347\325\270\377\344\323\267" "\377\337\320\264\377\335\325\304\377\320\275\245\377\314\256\213\377" "\304\235x\377\255\207c\377\203lK\377bW:\377HD+\377jjb\377<;F\377'$\26" "\377&%\17\377%#\14\377%#\13\377$#\13\377((\17\377'%\20\377lif\37712:" "\377..\24\37722\23\37777\30\377AA!\377IK/\377ltb\377~\202\204\377\201" "}q\377}ug\377pbS\377eS@\377XG0\377Q@$\377L\377D@3\377A;,\377J=,\377UB0\377" "[L6\377^R7\377`W5\377aZ6\377_[4\377\\Z1\377XY.\377UW,\377TW.\377VX/\377" "VX0\377VX2\377XX4\377ZZ4\377[[3\377[Z0\377]W,\377^R(\377^J$\377\\C\"" "\377X=\40\377U<\37\377P<\37\377H;\40\377C;\37\377C\77\40\377FB\37\377" "HC\36\377D\77\33\377:6\27\377/*\23\377)\"\22\377%\36\21\377\"\33\17\377" "\37\31\16\377\202\36\30\15\377a\40\31\16\377%\34\22\377-!\27\3775)\36" "\377=1$\377=2&\377F=1\377QI@\377OKD\377DE=\37778,\37734#\37786#\377>" ":&\377B\77*\377HF1\377VYE\377sve\377\213\215\205\377gjY\377hiP\377vx" "^\377\204\206p\377\204\211v\377\225\232\201\377\260\247\211\377\274\257" "\213\377\276\263\210\377\317\313\251\377\272\267\207\377\273\271\177" "\377\274\272\200\377\273\271|\377\301\301\200\377\313\312\215\377\323" "\321\230\377\326\327\250\377\334\336\304\377\325\325\251\377\333\331" "\251\377\340\335\261\377\345\341\271\377\347\342\276\377\350\342\302" "\377\350\341\304\377\350\343\313\377\346\340\320\377\343\323\267\377" "\330\304\237\377\303\261\206\377\254\236s\377\225\216c\377\201}S\377" "hiF\377\206\214\202\377\77C<\3778>$\37728\35\377.4\27\377,1\23\377)." "\22\377+,\20\37733#\377mnv\377()%\37766\37\377\77<&\377RQ>\377jj[\377" "vyi\377\252\253\246\377wps\377ZYM\377>\77""0\37793\40\3776.\27\3779," "\21\377\77/\23\377E2\31\377@.\30\377ldZ\377nlj\377ZRM\377A2!\377H8\36" "\377J:\36\377I9\34\377J9\35\377I:%\377\\TL\377A3%\377D9\37\377MC)\377" "OE)\377cW\77\377O>\34\377J7\16\377\206I6\15\377\7R@\36\377~uv\377\256" "\255\323\377\256\256\332\377\254\254\331\377\246\246\324\377\242\242" "\320\377\202\240\240\316\377\1\245\245\323\377\203\247\247\324\377\6" "\253\253\330\377\256\256\332\377\260\260\335\377\255\255\325\377\213" "\203\216\377YH+\377\225I6\15\377\12O=\32\377~v\200\377\244\244\320\377" "\254\254\331\377\252\252\327\377\263\263\337\377\264\264\340\377\257" "\257\334\377\257\257\333\377\256\256\332\377\202\252\252\327\377\203" "\245\245\323\377\202\240\240\316\377\1\234\234\313\377\202\233\233\312" "\377\204\225\225\304\377\11\213\213\273\377\207\207\267\377\202\202\263" "\377}}\256\377yy\253\377uu\247\377kk\236\377dd\230\377aa\225\377\203" "]]\221\377\2^^\222\377[[\217\377\202WW\214\377\2[[\217\377[[\220\377" "\202[[\217\377\10``\224\377ee\230\377ii\234\377ll\237\377pp\242\377p" "p\243\377pp\242\377ll\237\377\203kk\236\377\2ii\234\377hh\233\377\202" "ff\232\377\2ee\230\377cc\227\377\205``\224\377\1__\223\377\203[[\217" "\377\202ZZ\216\377\205VV\213\377\2UU\212\377QQ\207\377\203QQ\206\377" "\4PP\205\377OO\205\377MM\203\377LL\202\377\203LL\201\377\1KK\201\377" "\202II\177\377\204FF}\377\7EE{\377AAx\377<5\37780$\3772'\30\3774'\27\3776(\27" "\3776)\26\3774)\25\3771(\27\3774.\35\3775/\36\377^`W\3779<=\377B:/\377" "A:+\377=2\"\377<4\40\377E;$\377PA\"\377TE#\377UJ&\377leT\377xyr\377_" "[;\377hf:\377nn=\377uzB\377\203\211N\377\216\226[\377\227\241f\377\261" "\272\222\377\262\274\227\377\262\300\207\377\300\313\222\377\312\324" "\236\377\320\332\245\377\326\335\252\377\336\342\262\3772\346\347\275" "\377\354\354\317\377\357\354\324\377\354\351\304\377\352\350\300\377" "\346\347\274\377\343\345\270\377\335\342\263\377\324\335\256\377\316" "\332\260\377\313\324\273\377\253\277\222\377\234\265\177\377\215\252" "s\377|\235g\377k\221Z\377_\203P\377SwH\377b\204_\377PnS\377OlL\377Tk" "O\377bu]\377fv`\377]p[\377Xl[\377]he\3772>.\37719\37\37735\34\37713\30" "\37710\22\3773.\21\3776.\22\3776*\21\377og^\377<2;\377NK\77\377NNI\377" "\77""7+\377E5\35\377F6\34\377J8\34\377I8\34\377XP;\377UK\77\377L=#\377" "L>\40\377L;\27\377J7\16\377\212I6\15\377\5SB!\377\177v|\377\244\243\312" "\377\243\243\321\377\237\237\316\377\202\233\233\312\377\1\240\240\316" "\377\202\241\241\317\377\11\242\242\320\377\246\246\324\377\247\247\324" "\377\253\253\330\377\256\256\332\377\262\262\336\377\260\257\330\377" "\204|\201\377J8\20\377\221I6\15\377\6I6\16\377fZS\377\220\216\263\377" "\235\235\313\377\241\241\317\377\243\243\321\377\202\251\251\326\377" "\2\257\257\333\377\256\256\332\377\202\252\252\327\377\3\250\250\325" "\377\245\245\323\377\244\244\322\377\203\240\240\316\377\202\233\233" "\312\377\1\227\227\306\377\203\225\225\304\377\203\220\220\300\377\12" "\212\212\273\377\206\206\267\377\201\201\262\377{{\254\377xx\252\377" "tt\246\377pp\242\377dd\230\377__\223\377[[\217\377\203WW\214\377\20Z" "Z\216\377WW\214\377RR\210\377QQ\207\377SS\210\377VV\213\377TT\211\377" "QQ\207\377VV\213\377YY\216\377__\223\377dd\230\377ii\234\377kk\236\377" "jj\235\377ii\234\377\202ff\232\377\5ff\231\377dd\230\377cc\227\377bb" "\226\377aa\225\377\202``\224\377\1]]\221\377\205[[\217\377\1ZZ\216\377" "\203VV\213\377\202UU\212\377\205QQ\206\377\3PP\205\377NN\204\377LL\202" "\377\203LL\201\377\3KK\201\377JJ\200\377HH~\377\204FF}\377\1EE{\377\202" "DD{\377\1CCz\377\205AAx\377\12>>u\377<4\377@7,\377E7,\377O;-\377W@.\377\\G0\377]I1\377[J5\377^S>\377" "aY@\377`X7\377aW3\377]T1\377YR0\377[U;\377[S9\377[S3\377[R3\377VN.\377" "MG'\377A=\37\377;5\33\37790\33\3778+\32\3776*\32\3772(\32\3773*\35\377" "7-!\377<0%\377=2(\377\202=2*\377\30""8/%\3774.$\377,$\31\3772&\32\377" ";*\36\377\77,\40\377B.\"\377B/\"\377@.!\377;+\35\3776)\34\3777*\36\377" "<,\40\377\77/\"\377A1\"\377G6%\377N<,\377VC3\377YD5\377Q@/\377F5#\377" ">.\33\377<,\32\377>/\33\377\202B1\34\377'@1\34\377;0\32\377:1\34\377" "2,\36\377olk\377/)$\377=0\34\377>2\34\377A2\34\377A5\35\377D6\36\377" "G9\37\377G:\37\377A3\40\377\202}\177\377>75\377J;#\377J;\40\377I:\40" "\377I<\37\377G=\36\377G>\37\377F@'\377\203\204~\377GH5\377UX1\377\\a" "8\377aj\77\377lwI\377\201\211Z\377\231\233m\377\252\252\177\377\316\315" "\266\377\307\304\244\377\327\321\245\377\346\337\270\377\361\351\311" "\377\362\357\327\377\361\361\337\377\202\360\362\342\377%\356\360\341" "\377\355\360\321\377\352\355\306\377\341\347\270\377\326\343\252\377" "\321\341\243\377\315\337\242\377\312\337\243\377\321\342\260\377\307" "\333\247\377\302\330\243\377\274\324\241\377\265\320\237\377\254\311" "\231\377\237\276\213\377\227\267\211\377\211\253\204\377\200\243q\377" "u\233h\377l\222b\377i\212a\377c\200]\377OqJ\377Dc:\377OfF\377P]L\377" "6J(\3774J*\377K^G\377@C(\377;<\35\377@;\36\377B;\35\377E:\34\377SN0\377" "M\77\40\377I7\17\377\216I6\15\377\3WF*\377\177w\202\377\234\234\310\377" "\202\233\233\312\377\14\241\241\317\377\242\242\320\377\241\241\317\377" "\242\242\320\377\246\246\324\377\247\247\324\377\254\254\331\377\257" "\257\333\377\262\262\336\377\264\263\337\377\221\213\232\377K8\20\377" "\220I6\15\377\7Q@!\377\177z\222\377\225\225\304\377\231\231\307\377\235" "\235\313\377\241\241\317\377\243\243\321\377\202\251\251\326\377\2\257" "\257\333\377\256\256\332\377\202\252\252\327\377\3\250\250\325\377\245" "\245\323\377\244\244\322\377\203\240\240\316\377\202\233\233\312\377" "\1\227\227\306\377\203\225\225\304\377\203\220\220\300\377\12\212\212" "\273\377\206\206\267\377\201\201\262\377{{\254\377xx\252\377tt\246\377" "pp\242\377dd\230\377__\223\377[[\217\377\203WW\214\377\20ZZ\216\377W" "W\214\377RR\210\377QQ\207\377SS\210\377VV\213\377TT\211\377QQ\207\377" "VV\213\377YY\216\377__\223\377dd\230\377ii\234\377kk\236\377jj\235\377" "ii\234\377\202ff\232\377\5ff\231\377dd\230\377cc\227\377bb\226\377aa" "\225\377\202``\224\377\1]]\221\377\205[[\217\377\1ZZ\216\377\203VV\213" "\377\202UU\212\377\205QQ\206\377\3PP\205\377NN\204\377LL\202\377\203" "LL\201\377\3KK\201\377JJ\200\377HH~\377\204FF}\377\1EE{\377\202DD{\377" "\1CCz\377\205AAx\377\12>>u\377<(\377C:%\377\77""6\"\377=4!\377\77""5\"\377" "=4!\37791\36\3773-\33\377/)\32\377.'\32\377.'\31\3770(\33\377\2020'\33" "\377\4""0(\34\3775,\"\377<3(\377B8/\377\202G;2\377-A5+\3779.\"\3773*" "\36\3774'\34\377D1$\377J6(\377@/\"\377C/\"\377F/\"\377H0\"\377E0\"\377" "B/!\377<-\37\3779,\37\377@2'\377C4&\377G4\"\377M9&\377V\77+\377XA,\377" "V@+\377Q=(\377I8\"\377C2\36\377C3\37\377I6!\377N8!\377O9\"\377I7!\377" "E8\"\377@7$\377ulb\377VUX\3776,\36\377<1\34\377@5\36\377@4\34\377@4\35" "\377\77""4\35\377=4\35\377>3\34\377SKB\377c^f\377B4&\377F9\37\377\202" "H8\37\3778G8\37\377F6\36\377D4\35\377`VM\377]WZ\377D9&\377H=!\377J\77" "\40\377J@$\377OG*\377ZT8\377i`E\377\177xY\377\217\207n\377\227\214j\377" "\256\243\177\377\310\270\225\377\333\313\255\377\351\332\300\377\361" "\344\315\377\362\353\330\377\363\356\336\377\362\357\336\377\363\353" "\325\377\353\340\277\377\332\323\247\377\310\311\222\377\274\302\207" "\377\261\277\201\377\253\275\201\377\274\315\230\377\304\315\226\377" "\305\320\231\377\277\321\233\377\272\323\233\377\301\332\237\377\311" "\337\246\377\331\346\271\377\334\350\267\377\333\351\265\377\332\350" "\270\377\335\351\300\377\330\347\274\377\317\344\265\377\310\337\260" "\377\306\336\253\377\321\341\275\377\274\325\251\377\273\324\251\377" "\265\314\242\377\255\307\233\377\260\305\244\377\242\266\227\377\212" "\245y\377^mC\377F;\23\377\222I6\15\377\4VF,\377|v\205\377\225\225\301" "\377\233\233\312\377\203\236\236\314\377\7\241\241\317\377\244\244\321" "\377\246\246\324\377\251\251\326\377\235\232\271\377i\\N\377J7\17\377" "\217I6\15\377\23M;\26\377j`a\377\216\216\275\377\216\216\276\377\220" "\220\277\377\222\222\301\377\226\226\305\377\232\232\311\377\234\234" "\313\377\237\237\316\377\244\244\321\377\243\243\321\377\252\252\327" "\377\247\247\324\377\245\245\323\377\244\244\322\377\243\243\321\377" "\240\240\316\377\237\237\316\377\203\233\233\312\377\202\225\225\304" "\377\1\222\222\301\377\203\220\220\300\377\203\213\213\273\377\14\211" "\211\271\377\205\205\265\377\201\201\262\377zz\253\377uu\250\377tt\246" "\377pp\243\377hh\233\377aa\225\377[[\217\377WW\214\377QQ\207\377\202" "RR\210\377\202SS\210\377\20QQ\206\377MM\203\377NN\204\377PP\205\377O" "O\205\377KK\201\377LL\202\377QQ\206\377VV\213\377WW\214\377^^\222\377" "dd\230\377ff\231\377ee\230\377bb\226\377aa\225\377\202aa\224\377\2__" "\223\377]]\221\377\202\\\\\221\377\202[[\217\377\1XX\215\377\205VV\213" "\377\2UU\212\377QQ\207\377\203QQ\206\377\2PP\205\377MM\203\377\205LL" "\201\377\2KK\201\377II\177\377\204FF}\377\3FF|\377EE{\377DD{\377\205" "AAx\377\1@@w\377\202\77\77v\377\1>>u\377\205<5\40\377=4\37\377;3\36\377:3\35\377;3\35\37781\34\377F\77/" "\377A6\40\377B6\37\377D7\37\377E6\40\377H8\37\377H6\36\377F5\37\377@" "2\35\377XMG\377\77""3)\377D3\35\377C5\33\377D8\40\377KA*\377YP;\377g" "]K\377peT\377xo]\377rnZ\377lhO\377tmP\377\202wW\377\226\210f\377\260" "\241~\377\321\300\241\377\346\326\275\377\356\340\313\377\363\344\321" "\377\361\340\310\377\354\333\300\377\345\326\272\377\330\314\256\377" "\304\273\227\377\261\252\202\377\310\301\240\377\276\264\236\377\251" "\244\205\377\244\257\216\377\252\270\225\377\256\275\213\377\275\310" "\221\377\324\326\254\377\313\315\242\377\264\274\212\377\247\270\217" "\377\251\273\236\377\221\257\200\377\225\266~\377\235\276\205\377\247" "\307\214\377\264\321\232\377\300\331\246\377\327\345\305\377\316\341" "\263\377\320\345\255\377\323\346\256\377\270\302\220\377md8\377J8\17" "\377\224I6\15\377\4J7\16\377YJ4\377\201{\217\377\231\231\306\377\202" "\232\232\310\377\5\234\234\313\377\237\237\315\377\234\233\305\377wn" "p\377O=\32\377\220I6\15\377\3]O<\377\207\204\245\377\222\222\301\377" "\202\214\214\274\377\20\213\213\273\377\216\216\276\377\217\217\276\377" "\225\225\304\377\227\227\306\377\231\231\307\377\234\234\313\377\237" "\237\316\377\237\237\315\377\245\245\323\377\242\242\320\377\240\240" "\316\377\237\237\316\377\235\235\313\377\233\233\312\377\232\232\311" "\377\203\225\225\304\377\202\220\220\300\377\202\215\215\275\377\202" "\213\213\273\377\203\206\206\267\377\14\205\205\265\377||\256\377yy\253" "\377tt\246\377nn\241\377ll\237\377hh\233\377bb\226\377]]\221\377[[\217" "\377WW\214\377RR\210\377\202QQ\206\377\202QQ\207\377\1MM\203\377\202" "LL\201\377\203LL\202\377\6NN\204\377RR\210\377WW\214\377]]\221\377``" "\224\377aa\224\377\202aa\225\377\2``\224\377]]\221\377\202\\\\\221\377" "\202[[\220\377\1ZZ\216\377\203WW\214\377\202VV\213\377\1SS\210\377\204" "QQ\207\377\1QQ\206\377\202PP\205\377\202MM\203\377\203LL\201\377\202" "KK\201\377\202II\177\377\204FF}\377\3FF|\377EE{\377DD{\377\205AAx\377" "\1@@w\377\202\77\77v\377\1>>u\377\205<2\377F=3\377VPI\377" "__^\377]\\[\377D<3\377@3)\377\77""2'\377=1&\377:/%\3777-!\3777/$\377" "6/$\37760'\37750)\3775-&\3774,#\3775,#\3775)\40\3777*!\3777,!\3779-#" "\3779.#\377:.$\377\77""6-\377ME\77\377XSN\377SPI\377\77""4&\377<.\"\377" "<.$\3779-\"\3777+\40\3779,\37\377\77/!\377G2%\377N6'\377R8'\377T9(\377" "R8'\377I3\"\377=-\34\3776+\33\3772)\30\377:.\34\377H6\"\377R<$\377V\77" "&\377W@'\377S\77&\377R>&\377WA)\377]E+\377\\D)\377U\77(\377I:!\377@5" "\35\377:2\34\377F>*\377=4\"\377\77""7#\377D8&\377G8&\377E8&\377B5'\377" "\77""4%\377<4%\377=7)\377MG7\377E:-\377UA:\377[DA\377WI@\377[XF\377Y" "ZH\377ZZH\377ZYO\3770sgl\377eV[\377i^`\377b\\\\\377`\\V\377kk_\377oq" "i\377\177|v\377\201xt\377\220\226\224\377lqq\377Y^U\377pqe\377__T\377" "fdX\377~{j\377\232\221|\377\307\265\232\377\342\314\263\377\352\320\262" "\377\357\330\272\377\357\331\272\377\352\326\264\377\343\316\243\377" "\334\311\227\377\337\316\242\377\332\314\250\377\331\314\240\377\336" "\323\244\377\342\333\251\377\344\334\250\377\334\325\236\377\307\302" "\206\377\247\246l\377~\201O\377bi>\377BJ/\377-;\31\377(9\27\377'=\30" "\377+A\31\3772I\40\377>u\377\202<1\377G;/\377G:0\377KC:\377][X\377" "^^\\\377HB<\377E90\377C8-\377B;2\377C<5\377;2'\377;1&\3778-#\377\202" "7,\"\377\16""8,#\3779-#\377;.$\377:.$\377<0&\377A4+\377A5-\377KB;\377" "TNG\377[ZW\377PNI\377@:3\3779.%\3771" "'\377*\377WC-\377" "^J5\377\\J7\377[O@\377YSL\377MF\77\377QMN\377]W[\377hce\377lqk\377~\202" "y\377\220\203\211\377\210s\200\377\207p\177\377vju\377lgo\377jhl\377" "\221\232\226\377vsq\377\203~\200\377\200x|\377tns\377trr\377gea\377]" "TP\377PD\77\377\177xz\377D;8\377G>/\377C=/\377JD5\377WQ<\377`\\H\377" "eaP\377dbS\377~\177v\377\\[U\377WVL\377NMC\377CB8\37779)\37739!\377K" "M,\377\215\200V\377\275\246}\377\313\256w\377\321\275\205\377\320\301" "\213\377\322\303\217\377\331\307\222\377\344\321\235\377\357\343\271" "\377\362\346\303\377\362\352\276\377\362\353\276\377\353\347\267\377" "\342\340\252\377\331\326\243\377\316\310\227\377\273\263\205\377\243" "\231p\377\241\230t\377~pU\377rd@\377m\\:\377_P0\377F\77#\3772/\25\377" "+)\27\377wrt\3772*\23\377F6\15\377\234I6\15\377\4J8\21\377UE+\377TD(" "\377J8\20\377\217I6\15\377\10J7\17\377nb\\\377\232\230\276\377\236\236" "\314\377\230\230\307\377\224\224\303\377\221\221\301\377\220\220\277" "\377\202\212\212\273\377\11\210\210\270\377\212\212\273\377\213\213\273" "\377\216\216\276\377\220\220\300\377\224\224\303\377\225\225\304\377" "\230\230\307\377\231\231\307\377\202\233\233\312\377\1\226\226\305\377" "\202\225\225\304\377\1\223\223\302\377\202\220\220\300\377\203\213\213" "\273\377\203\206\206\267\377\1\204\204\264\377\202\202\202\263\377\1" "\200\200\261\377\203~~\257\377\13vv\250\377tt\246\377nn\241\377ii\234" "\377hh\233\377ee\230\377bb\226\377[[\217\377XX\215\377VV\213\377PP\205" "\377\203LL\202\377\5MM\203\377LL\201\377FF}\377EE{\377FF}\377\202GG~" "\377\202FF}\377\5LL\202\377PP\205\377VV\213\377WW\214\377[[\220\377\202" "\\\\\221\377\2[[\217\377XX\215\377\202WW\214\377\202VV\213\377\2UU\212" "\377RR\210\377\202QQ\207\377\202QQ\206\377\2NN\204\377MM\203\377\205" "LL\201\377\2KK\201\377HH~\377\203FF}\377\202EE{\377\204CCz\377\203AA" "x\377\1@@w\377\203\77\77v\377\1>>u\377\202<\377" "\214wk\377\220\210{\377XK1\377fT8\377lZ=\377s^B\377|gJ\377{eI\377zbF" "\377\225{a\377\227{Z\377\221pM\377\244\204b\377\276\250\215\377\314\306" "\271\377\310\310\304\377\277\276\274\377\267\266\263\377\254\250\244" "\377\245\241\237\377\235\234\227\377\224\223}\377\215\214t\377\205\206" "w\377~~k\377ywZ\377uqT\377ooc\377kke\377ig`\377ffd\377cc`\377cb^\377" "[TJ\377PB4\377TH=\377TLC\377VPJ\377_][\377[ZV\377D=2\377@5*\377\77""4" ")\377>5)\377>5(\377<3'\377=2'\377<2'\377=1'\377\202=3*\377\3E<4\377L" "FA\377USP\377\202[ZX\377dQJE\377UPJ\377FA9\3775.&\3770*\"\3772+#\377" "90(\377>7,\377G:3\377H91\377H7-\377G7,\377D5(\377B2%\377J7*\377O=/\377" "P;,\377S<+\377W>-\377X@/\377ZC3\377ZD5\377^J;\377ZF7\377WE3\377WC1\377" "WE3\377]N<\377eRB\377q[M\377mT@\377xcI\377iV@\377cS=\377UJ;\377H>/\377" "B<0\377C<3\377_[V\377C<0\377I@/\377J>/\377E8*\377D7(\377E9)\377F;)\377" "D7'\377\202y\202\377:5\77\377D<(\377B8$\377@6\40\377>3\36\377=/\33\377" "<.\32\377=2\40\377vvx\3771%%\3779,\30\37793\33\377\77:$\377EA*\377LK" "2\377RR=\377\\\\J\377npk\377a_W\377gdY\377b]U\377TQI\377BD8\3776<)\377" "8D\36\377n~J\377\252\253~\377\256\261^\377\263\272a\377\256\273e\377" "\261\272n\377\272\274x\377\315\311\210\377\346\340\264\377\354\346\302" "\377\360\353\272\377\354\351\267\377\347\344\263\377\346\340\267\377" "\353\340\301\377\353\336\303\377\350\333\277\377\344\326\271\377\345" "\332\302\377\331\312\261\377\323\305\245\377\312\271\226\377\266\246" "\202\377\232\215h\377|pM\377OA\40\377Q>\32\377\203I6\15\377\5N<\27\377" "xmg\377\216\206\222\377\204{\177\377VE&\377\250I6\15\377\25[K1\377\224" "\217\247\377\251\251\326\377\244\244\321\377\241\241\317\377\232\232" "\311\377\230\230\307\377\221\221\301\377\216\216\276\377\213\213\273" "\377\206\206\267\377\204\204\264\377\205\205\265\377\206\206\267\377" "\205\205\265\377\212\212\272\377\212\212\273\377\213\213\273\377\217" "\217\276\377\220\220\300\377\220\220\277\377\202\225\225\304\377\202" "\220\220\300\377\202\220\220\277\377\2\214\214\274\377\213\213\273\377" "\202\211\211\271\377\202\206\206\267\377\2\205\205\265\377\202\202\263" "\377\203\200\200\261\377\203||\256\377\14{{\254\377vv\250\377tt\246\377" "pp\242\377kk\236\377ff\232\377dd\230\377``\224\377[[\217\377PP\205\377" "LL\201\377KK\201\377\202FF}\377\202GG~\377\16FF}\377DD{\377AAx\377CC" "z\377EE{\377FF}\377FF|\377FF}\377FF|\377GG~\377II\177\377OO\205\377Q" "Q\207\377SS\210\377\202WW\214\377\202VV\213\377\1UU\212\377\202TT\211" "\377\1RR\210\377\202QQ\207\377\202QQ\206\377\2NN\204\377MM\203\377\205" "LL\201\377\2KK\201\377HH~\377\203FF}\377\202EE{\377\1CCz\377\205AAx\377" "\4@@w\377\77\77v\377>>u\377<*\377I=+\377" "MA,\377QD/\377TF3\377UH3\377YD.\377\261\231\211\377\317\310\271\377i" "]D\377jZ>\377p]@\377v_B\377}cD\377\202oS\377\231\224\201\377\226\201" "f\377\227tR\377\257\212h\377\331\310\261\377\327\326\321\377\320\320" "\320\377\310\310\310\377\301\301\301\377\270\270\270\377\257\260\260" "\377\250\250\247\377\236\236\232\377\226\226\214\377\217\217\202\377" "\207\210\177\377\200\201x\377z{g\377vuP\377roR\377mj]\377keV\377gfa\377" "c^X\377d]P\377c]O\377c_V\377a\\U\377`_Z\377`_]\377][X\377PMF\377OKD\377" "QMG\377PLG\377NLE\377NLG\377PMG\377TNH\377TPK\377USO\377WVT\377ZYW\377" "^^]\377__^\377___\377]^]\377ZZY\377VRR\377FFA\377@>:\377B<:\377@>9\377" "D\77;\377KB\77\377KC<\377MD;\377H;0\377G7*\377H9,\377M>1\377ZD2\377R" "\77*\377G7&\377I6'\377M9(\377P9'\377S<)\377Y\77,\377`C0\377gG3\377gH" "4\377_D.\377Q=&\377G8\40\377TB,\377eL5\377tV<\377{\\@\377~_B\377vZ\77" "\377iS:\377[H1\377Q@+\377K<%\377fVQ\377PIR\377B7&\377\77""4\36\377:1" "\34\377\2026/\32\377692\35\377=7\37\377:5\36\377\202\201\200\377312\377" "=6\36\377:0\31\3779-\30\3778-\25\3776*\21\3775)\21\377A/#\377sjx\377" "'\35\33\377,!\13\377,#\14\377-(\21\3771.\27\37764\35\37788\"\377_aV\377" "SWl\377SRM\377`]Q\377b\\R\377XUI\377JN>\377OY8\377mu=\377\237\240_\377" "\266\273\211\377\256\275\\\377\257\303Z\377\247\300\\\377\242\275b\377" "\247\275k\377\275\311\177\377\343\343\270\377\351\346\303\377\356\351" "\270\377\346\341\255\377\342\332\250\377\352\334\265\377\361\340\302" "\377\361\341\306\377\360\343\314\377\361\347\320\377\362\355\336\377" "\363\351\324\377\364\350\320\377\365\346\317\377\360\340\310\377\270" "\247\210\377bO(\377\203I6\15\377\4K8\20\377k_O\377\245\241\275\377\267" "\266\342\377\202\267\267\343\377\3\260\256\322\377\177vv\377Q\77\34\377" "\244I6\15\377\10L9\23\377\203{\200\377\255\254\326\377\255\255\332\377" "\251\251\326\377\244\244\321\377\242\242\320\377\235\235\313\377\202" "\225\225\304\377\2\214\214\274\377\213\213\273\377\202\205\205\265\377" "\2\202\202\263\377\203\203\264\377\202\205\205\265\377\13\211\211\271" "\377\212\212\273\377\215\215\275\377\216\216\276\377\217\217\276\377" "\220\220\277\377\223\223\302\377\220\220\277\377\217\217\276\377\216" "\216\276\377\214\214\274\377\202\212\212\273\377\204\206\206\267\377" "\202\201\201\262\377\1~~\257\377\203||\256\377\1xx\252\377\203vv\250" "\377\5pp\243\377kk\236\377ii\234\377dd\230\377aa\225\377\202]]\221\377" "\4WW\214\377RR\210\377QQ\206\377LL\201\377\202FF}\377\5FF|\377EE{\377" "FF}\377DD{\377AAx\377\202@@w\377\11AAx\377BBy\377@@w\377AAx\377DD{\377" "HH~\377MM\203\377OO\205\377TT\211\377\203VV\213\377\1SS\210\377\203Q" "Q\207\377\2QQ\206\377PP\205\377\202MM\203\377\1LL\202\377\202LL\201\377" "\202II\177\377\206FF}\377\2EE{\377CCz\377\204AAx\377\1@@w\377\205>>u" "\377\1<'\377A:)" "\377@9&\377A;%\377H>)\377K>*\377L>,\377J\77*\377OF4\377b\\R\377\177\200" "u\377qvn\377\201|r\377\331\313\301\377\217\202o\377}kP\377\212~i\377" "\240\212w\377\275\251\230\377\301\303\274\377\273\262\251\377\262\226" "\200\377\307\253\223\377\337\327\312\377\335\335\332\377\330\330\330" "\377\321\321\321\377\312\312\312\377\303\303\303\377\272\272\272\377" "\262\262\262\377\251\251\251\377\240\241\240\377\230\231\225\377\220" "\221\211\377\210\211\203\377\202\203{\377|}s\377wwl\377rqk\377onh\377" "ji_\377hif\377gfe\377eda\377ccb\377bba\377aa_\377`_]\377__^\377\202`" "`_\377\2```\377___\377\202__^\377m___\377]]]\377XTQ\377_][\377[[Z\377" "ZYV\377WTP\377MHC\377IC=\377KE@\377C;6\377\77""50\377\77""4-\377>2+\377" "\77""2+\377@3+\377A5+\377F8.\377K>3\377K=0\377L=1\377RKB\377]YS\377a" "\\V\377WN\77\377H9$\377E5\"\377H7%\377K9(\377K9&\377L9'\377O;(\377YB" "0\377cH6\377oN=\377sR\77\377oP;\377aH0\377TA)\377VB+\377iM5\377z[>\377" "\205bD\377\211eG\377\203cD\377z]B\377lU>\377UG0\377A4\40\377}pu\3775" "0<\3779.\34\3776+\27\3773)\25\3771(\22\3770)\21\37741\25\377;9\33\377" ":5\32\377\206\177\204\3773/1\377;3\31\3777.\25\3774+\21\3772(\16\377" "3&\17\3771%\16\377A5(\377gdp\377#\30\26\377$\32\4\377\"\32\3\377\"\34" "\7\377%\40\11\377'#\13\377&\"\16\377wun\37755D\377=>4\377MK\77\377UP" "F\377SQF\377MSC\377^fB\377qs<\377\215\230\\\377\245\260~\377\243\267" "Z\377\247\274Z\377\244\273[\377\236\270]\377\242\274e\377\273\313|\377" "\346\345\265\377\353\347\273\377\355\344\255\377\350\336\240\377\346" "\333\227\377\352\332\227\377\352\330\231\377\337\321\235\377\333\321" "\251\377\342\330\271\377\344\340\311\377\333\326\246\377\334\326\242" "\377\306\271\217\377we\77\377J7\17\377\202I6\15\377\4I7\16\377`Q:\377" "\232\224\250\377\266\266\341\377\204\264\264\341\377\202\267\267\343" "\377\3\254\251\312\377wlf\377N<\26\377\223I6\15\377\3J7\15\377T=\13\377" "I6\14\377\213I6\15\377\16h[J\377\250\246\310\377\264\264\340\377\257" "\257\333\377\254\254\331\377\247\247\324\377\243\243\321\377\235\235" "\313\377\231\231\307\377\221\221\301\377\220\220\300\377\210\210\270" "\377\207\207\267\377\205\205\265\377\202\177\177\260\377\11~~\257\377" "\177\177\260\377~~\257\377\201\201\262\377\204\204\264\377\205\205\265" "\377\210\210\270\377\212\212\273\377\212\212\272\377\202\220\220\277" "\377\202\213\213\273\377\2\212\212\273\377\212\212\272\377\202\206\206" "\267\377\204\201\201\262\377\202||\256\377\2{{\254\377zz\253\377\202" "xx\252\377\1uu\250\377\203tt\246\377\202nn\241\377\22kk\236\377gg\233" "\377cc\227\377bb\226\377]]\221\377WW\214\377QQ\206\377LL\201\377FF}\377" "DD{\377BBy\377AAx\377CCz\377DD{\377AAx\377@@w\377<>u\377\205A" "Ax\377\2FF|\377FF}\377\202LL\202\377\202QQ\206\377\1RR\210\377\202QQ" "\206\377\203NN\204\377\202MM\203\377\203KK\201\377\202II\177\377\206" "FF}\377\2EE{\377CCz\377\204AAx\377\3@@w\377>>u\377<8\377KD>\377VQL\377TQM\377]ZX\377^[Y\377^[X\377" "VMF\377ZND\377]SF\377WND\377LA5\377E6'\377E5$\377I;(\377N\77,\377O\77" ",\377P>,\377R\77,\377P=)\377P=*\377XE4\377cM<\377pTC\377vVD\377vUC\377" "oO8\377jL3\377jM2\377nP3\377tT7\377xX;\377{_@\377v[>\377rY=\377gP8\377" "\\I2\377G9(\377xos\3773*(\377=0\31\377<.\26\3775,\25\3772+\23\3775.\24" "\37786\26\377@\77\32\377A;\35\377\203\177{\3773/%\37773\25\3773-\20\377" "3*\15\3771&\13\377.$\11\377+\40\11\377I;4\377\\Xf\377\37\25\20\377\40" "\30\3\377\37\30\2\377\"\32\6\377$\36\6\377%!\7\377'\40\16\377~||\377" "#!(\377.0\37\377=>0\377IG<\377KJ\77\377KM>\377KQ9\377R]3\377\203\227" "g\377\234\253}\377\242\267Z\377\255\276^\377\263\300b\377\272\302c\377" "\275\304b\377\277\307i\377\343\340\250\377\341\326\240\377\350\327\224" "\377\347\327\210\377\346\335\177\377\344\340}\377\332\333y\377\311\320" "|\377\301\307\202\377\317\320\241\377\301\277\236\377\245\242j\377tf" "5\377M:\21\377\203I6\15\377\3VF'\377\215\205\220\377\264\263\334\377" "\202\264\264\341\377\1\263\263\337\377\202\262\262\336\377\1\264\264" "\340\377\202\264\264\341\377\5\267\267\343\377\267\266\342\377\245\242" "\277\377nbU\377L9\22\377\221I6\15\377\11YA\12\377\304\212\1\377\244t" "\2\377\234n\4\377\202]\6\377dH\11\377Q;\13\377I6\14\377K7\15\377\203" "I6\15\377\21WG)\377\221\212\227\377\271\270\343\377\264\264\341\377\264" "\264\340\377\260\260\335\377\256\256\332\377\251\251\326\377\244\244" "\321\377\234\234\313\377\233\233\312\377\225\225\304\377\217\217\276" "\377\213\213\273\377\205\205\265\377\202\202\263\377}}\256\377\203{{" "\254\377\3||\256\377~~\257\377\202\202\263\377\202\204\204\264\377\1" "\205\205\266\377\202\210\210\270\377\2\211\211\271\377\212\212\273\377" "\202\206\206\267\377\4\205\205\266\377\205\205\265\377\202\202\263\377" "\201\201\262\377\203~~\257\377\1||\256\377\202zz\253\377\1xx\252\377" "\203uu\250\377\203qq\244\377\17pp\243\377nn\241\377ii\234\377ff\232\377" "__\223\377[[\217\377WW\214\377VV\213\377RR\210\377NN\204\377II\177\377" "FF}\377DD{\377@@w\377\77\77v\377\202@@w\377\10AAx\377==u\377<>u\377==u\377<>u\377\1<\26" "\26Q\377\24\24O\377TO>\377SL\77\377G@3\377HA2\377F<)\377E8#\377I<(\377" "H<(\377K=)\377N@+\377TC-\377]K4\377^L5\377fR=\377p[D\377\311\276\257" "\377\360\360\356\377\356\356\357\377\310\307\277\377\264\246\214\377" "\247\211f\377\254\206]\377\271\224h\377\300\230m\377\351\331\276\377" "\343\343\337\377\336\336\336\377\332\332\332\377\325\325\325\377\316" "\316\316\377\310\310\310\377\300\300\300\377\270\270\270\377\257\257" "\257\377\247\247\247\377\236\236\236\377\227\227\226\377\217\217\216" "\377\210\207\207\377\201\200\177\377{{y\377wwu\377qrq\377oon\377kjh\377" "gda\377e`]\377a[V\377b\\V\377\\VP\377`\\W\377ba_\377ba`\377a_Y\377a_" "V\377`_X\377`_Z\377_]Y\377^\\Y\377`_^\377\203___\377d^\\Z\377\\TO\377" "YOJ\377^YU\377ZYV\377VVO\377]]Y\377``^\377__^\377__]\377\\[Z\377]][\377" "WTO\377RIB\377L\77""4\377C4&\377A2\"\377>0!\377@5$\377H@,\377PH1\377" "UJ2\377UG0\377UD/\377WB-\377WA-\377XA,\377\\F3\377_I8\377gN=\377lR\77" "\377mQ<\377nO5\377sO3\377yS5\377{V7\377vS5\377jN0\377eN0\377eN2\377k" "O6\377oQ8\377rQ9\377s]L\377nde\377Q>/\377O>%\377I9\37\377E6\35\377C5" "\33\377C8\34\377H\77\35\377OF\40\377O\77&\377\206|\204\377;2*\377;4\27" "\3773*\16\3772&\12\3770#\10\377,!\6\377)\34\4\377WDD\377OJa\377\33\23" "\14\377\35\25\3\377\37\27\3\377$\33\5\377(\35\5\377)\40\10\3774*\40\377" "nlz\377$\36\36\377()\22\37737#\377AB0\377DH3\377LP9\377U_;\377iy<\377" "\247\254w\377\260\273\206\377\261\303`\377\262\305_\377\274\310a\377" "\303\312_\377\311\316e\377\320\317n\377\353\343\261\377\351\320\237\377" "\353\321\222\377\345\324\206\377\340\331w\377\337\337t\377\327\335r\377" "\311\325p\377\301\314l\377\312\312\215\377\201tL\377P=\23\377\204I6\15" "\377\6TC\"\377\256\254\320\377\270\270\344\377\266\266\342\377\264\264" "\340\377\257\257\334\377\203\256\256\332\377\3\257\257\334\377\262\262" "\336\377\264\264\340\377\202\264\264\341\377\5\267\267\343\377\266\266" "\341\377\236\232\261\377gYF\377J8\20\377\214I6\15\377\202L8\14\377\202" "I6\15\377\36rQ\6\377vT\6\377_E\12\377\230k\2\377\217e\4\377\256z\1\377" "\237q\4\377YA\13\377I6\15\377J8\20\377yni\377\262\260\326\377\271\271" "\344\377\267\267\343\377\262\262\336\377\260\260\335\377\256\256\332" "\377\250\250\325\377\244\244\321\377\237\237\316\377\233\233\312\377" "\225\225\304\377\221\221\301\377\214\214\274\377\212\212\272\377\202" "\202\263\377\177\177\260\377||\256\377yy\253\377ww\251\377\202vv\250" "\377\3xx\252\377zz\253\377||\256\377\202\200\200\261\377\1\203\203\264" "\377\202\205\205\265\377\1\207\207\267\377\202\205\205\265\377\4\203" "\203\264\377\202\202\263\377\200\200\261\377\177\177\260\377\202||\256" "\377\202{{\254\377\203vv\250\377\2tt\246\377rr\244\377\202qq\244\377" "\204nn\241\377\20ii\234\377ee\230\377dd\230\377``\224\377]]\221\377\\" "\\\221\377ZZ\216\377WW\214\377QQ\206\377KK\201\377DD{\377@@w\377>>u\377" "==u\377<>u\377\4::q\37777o\37788p\377;;r\377\202" "<>u\377AAx\377FF|\377GG~\377JJ\200\377\202LL\202" "\377\202LL\201\377\204II\177\377\3HH~\377FF}\377FF|\377\202EE{\377\202" "DD{\377\206AAx\377\3@@w\377\77\77v\377<\377\221}a\377" "\341\331\314\377\357\355\353\377\332\325\313\377\300\246\213\377\300" "\253\207\377\245\213^\377\246\206Z\377\306\246|\377\351\343\320\377\343" "\344\342\377\340\340\337\377\333\333\331\377\327\327\326\377\320\320" "\320\377\311\311\311\377\302\302\302\377\272\272\272\377\262\262\262" "\377\251\251\251\377\242\242\242\377\231\231\231\377\222\222\222\377" "\213\213\212\377\205\204\177\377\177\177x\377yyv\377tut\377qqq\377nn" "m\377kkj\377iii\377ggg\377fff\377ecb\377dc`\377bba\377ab`\377`\\V\377" "b^T\377aa]\377``^\377`_Z\377PKB\377IB9\377PKE\377XUP\377RQL\377TQM\377" "RNJ\377PJD\377QMG\377NIB\377LG@\377FB;\377F>5\377B9-\37790&\3774-#\377" "7/&\3777-\"\377;/\"\377=/\"\3772\"\377>7&\377EA-\377MK2\377P" "L3\377QK2\377TG/\377WB,\377[B-\377^C0\377^F2\377\\F1\377XE1\377UD0\377" "RB-\377TC,\377_G-\377lL/\377zT6\377\203Z:\377\202[;\377|X9\377pP4\377" "pR6\377{W<\377\204\\=\377\210Z>\377\243\177n\377\201^U\377}ZA\377nS9" "\377cK3\377]E-\377XB&\377UC&\377TF#\377WJ$\377WI1\377|yx\377C8(\377>" "5\26\3771+\15\377,$\6\377+#\5\377)\40\3\377'\34\3\377[QN\377\77=I\377" "\"\35\23\12\377\36\26\3\377!\26\2\377#\33\4\377)\36\7\377*\37\12\377" "RF=\377TPa\377*+\35\377;E\37\377Ud3\377ozC\377t}E\377r\200D\377v\207" "B\377\201\226A\377\277\304\177\377\263\302}\377\253\301X\377\255\302" "W\377\271\305Z\377\275\307[\377\307\320h\377\323\324y\377\350\343\271" "\377\336\316\244\377\335\316\223\377\326\321\202\377\321\325t\377\322" "\331q\377\321\334t\377\310\323p\377\224\224G\377ZI\33\377\206I6\15\377" "\7M;\26\377\200vx\377\257\256\323\377\262\262\336\377\257\257\333\377" "\256\256\332\377\253\253\330\377\202\252\252\327\377\5\254\254\331\377" "\256\256\332\377\257\257\334\377\262\262\336\377\264\264\340\377\202" "\264\264\341\377\5\267\267\343\377\266\265\340\377\227\221\243\377`P" "8\377J7\17\377\210I6\15\377\7J7\15\377sS\12\377\262~\4\377\217e\3\377" "H5\14\377I6\15\377K7\14\377\202\211a\3\377\10J6\12\377I6\15\377W\77\13" "\377M9\15\377I6\15\377^O7\377\240\233\265\377\271\271\344\377\202\267" "\267\343\377\2\264\264\341\377\262\262\336\377\202\256\256\332\377\22" "\246\246\324\377\244\244\321\377\241\241\317\377\235\235\313\377\225" "\225\304\377\223\223\302\377\216\216\276\377\206\206\267\377\202\202" "\263\377}}\256\377||\256\377xx\252\377uu\250\377tt\246\377uu\247\377" "ww\251\377vv\250\377xx\252\377\202{{\254\377\6}}\256\377\200\200\261" "\377~~\257\377\200\200\261\377\205\205\265\377\201\201\262\377\202\200" "\200\261\377\1\177\177\260\377\203||\256\377\203vv\250\377\5uu\250\377" "ss\245\377rr\244\377pp\243\377pp\242\377\202nn\241\377\1kk\236\377\203" "jj\235\377\12gg\233\377dd\230\377bb\226\377]]\221\377ZZ\216\377WW\214" "\377UU\212\377QQ\206\377KK\201\377CCz\377\202@@w\377\1<>u\377\1<%\377" "TC*\377UD+\377ZE.\377_I1\377eN6\377lT<\377rZ=\377\202jN\377\274\244\220" "\377\343\315\303\377\351\334\323\377\347\343\330\377\341\340\326\377" "\315\312\273\377\323\303\242\377\350\341\315\377\345\345\343\377\341" "\341\341\377\335\335\335\377\330\330\330\377\322\322\322\377\314\314" "\314\377\305\305\305\377\275\275\275\377\266\266\266\377\255\255\255" "\377\246\246\245\377\235\235\234\377\226\226\226\377\217\216\215\377" "\210\210\202\377\201\202~\377}}{\377xxw\377ttt\377qqp\377nnn\377kkk\377" "iii\377hhh\377\202fda\377\36edb\377cdc\377bcb\377ba[\377b_T\377WTL\377" "KD;\377A7,\377;3(\377:2(\377B9,\37780$\37770&\37780&\377:2'\377<4)\377" "@7,\377<4*\37770'\3772*\40\377.'\34\377*$\32\377(\"\32\377)#\32\377," "%\32\3772(\34\3777,\37\37790!\377\77""9'\377GC/\377\202KI2\377MIF/\377" "HA*\377J<&\377R>+\377ZC1\377`H6\377^H6\377WF3\377SB.\377O@-\377K=)\377" "M='\377YF,\377kP4\377yW9\377\203]<\377\207`>\377\207^>\377\210`@\377" "\210_@\377\207`A\377\214bC\377\217_D\377\263\217\211\377\222aS\377\222" "fI\377\204`B\377vV9\377fL0\377[E(\377XG&\377WK%\377VM&\377]W=\377tsu" "\377G@)\377CA\40\377>B\35\377:A\31\3777>\26\377/2\15\377!#\5\377ga^\377" "21A\377\33\26\10\377\36\30\4\377\40\33\6\377$\"\7\377/,\17\37740\25\377" "sug\377HNR\377Q`7\377n\202D\377\211\234T\377\231\251Y\377\226\250U\377" "\216\243P\377\214\244O\377\222\252N\377\301\317\212\377\261\276y\377" "\263\304^\377\313\317d\377\332\317c\377\326\315f\377\315\312m\377\310" "\314\204\377\337\340\305\377\323\321\265\377\317\321\250\377\316\321" "\234\377\325\332\224\377\333\340\215\377\262\260b\377eX#\377I7\15\377" "\211I6\15\377\3VF'\377\205}\207\377\251\251\323\377\204\246\246\324\377" "\202\252\252\327\377\13\254\254\331\377\256\256\332\377\257\257\334\377" "\262\262\336\377\264\264\340\377\264\264\341\377\265\265\341\377\267" "\267\343\377\265\264\335\377\216\207\223\377UD$\377\206I6\15\377\6Q;" "\13\377\246v\5\377\222h\6\377P;\14\377\204^\5\377rQ\6\377\202I6\15\377" "\3M8\13\377\236o\2\377sR\7\377\202I6\15\377\3M;\26\377}tw\377\256\256" "\327\377\202\267\267\343\377\202\264\264\341\377\24\263\263\337\377\261" "\261\336\377\253\253\330\377\252\252\327\377\247\247\324\377\242\242" "\320\377\235\235\313\377\227\227\306\377\220\220\300\377\220\220\277" "\377\213\213\273\377\205\205\265\377\201\201\262\377||\256\377zz\253" "\377xx\252\377tt\246\377rr\244\377pp\242\377qq\244\377\202tt\246\377" "\6ww\251\377zz\253\377xx\252\377{{\254\377||\256\377{{\255\377\202\201" "\201\262\377\4~~\257\377||\256\377{{\255\377{{\254\377\202xx\252\377" "\1vv\250\377\203tt\246\377\1qq\244\377\202pp\242\377\2nn\241\377ll\237" "\377\202kk\236\377\1hh\233\377\203gg\233\377\32dd\230\377``\224\377]" "]\221\377ZZ\216\377VV\213\377UU\212\377RR\210\377QQ\206\377MM\203\377" "HH~\377AAx\377>>u\377;;r\37788p\37777o\37788p\377::q\37799q\377::q\377" "77o\37755m\37777n\37766n\37788p\37777o\37766n\377\20277o\377\1<$\377WC+\377SA)\377TB)\377XC,\377^G.\377cK2\377h" "P8\377mU;\377v\\@\377\214qT\377\272\236\207\377\344\340\326\377\355\356" "\354\377\354\355\354\377\352\352\347\377\336\330\307\377\350\340\313" "\377\346\342\323\377\344\343\340\377\336\336\336\377\331\331\331\377" "\325\325\325\377\316\316\316\377\310\310\310\377\301\301\301\377\270" "\270\270\377\261\261\261\377\251\251\251\377\241\242\242\377\232\232" "\232\377\223\223\223\377\214\214\214\377\207\207\206\377\200\200\177" "\377||{\377xxx\377ttt\377qqq\377nnn\377lll\377jjj\377iii\377hge\377g" "gb\377efd\377ded\377b`[\377PKB\377\77""6,\377;2(\37780&\3775-#\3774," "\"\3773,\"\3773,!\3772,!\3772,\40\3773,\40\3775-!\3775,\40\3775,!\377" "6.#\3774*!\3771*!\37700'\37722)\3771/&\377,'\40\3770+\40\3772.\40\377" "<:'\377DD.\377HG1\377FE/\377@>*\377:5\"\3779/\36\377\77""1!\377H9*\377" "P>/\377VB3\377TB3\377SB2\377VB0\377]G2\377fN7\377oT;\377tW=\377uX=\377" "|\\@\377\203aC\377\212dE\377\216fH\377\222hJ\377\221fG\377\216dD\377" "\217eF\377\216qT\377\232\201v\377\224fM\377\223hH\377\206a@\377tS5\377" "eI,\377[F&\377VE\"\377VJ#\377XP'\377o`J\377pmj\377^c9\377bn7\377dv:\377" "`t7\377Xj/\377I\\'\3779H\36\377{vo\3774>u\377\2<&\377R\77)\377SB" "+\377WC,\377[E.\377`I1\377fN5\377kS:\377t[A\377\203eI\377\244\201c\377" "\256\225w\377\312\273\244\377\335\324\307\377\352\350\343\377\354\353" "\350\377\345\334\312\377\347\336\277\377\344\343\326\377\340\340\335" "\377\334\334\334\377\327\327\327\377\321\321\321\377\312\312\312\377" "\303\304\304\377\274\274\274\377\265\265\265\377\255\255\255\377\246" "\246\246\377\236\236\236\377\230\230\230\377\221\221\221\377\212\212" "\212\377\204\205\204\377\200\177\177\377|||\377xxx\377tut\377qrq\377" "ppp\377mmm\377kkj\377jji\377hhh\377ghg\377edc\377VPK\377A92\377<3)\377" "91&\37781&\37760%\3773-\"\3771+\40\3770*\37\377\202/*\36\377[0*\35\377" "1*\35\3770)\35\377/'\33\377.&\33\377,$\32\377)\"\27\377'!\27\377'\"\31" "\377)%\35\37732)\377BC:\377DG5\377QQ<\377ST<\377NP9\377CG0\37714\40\377" "-(\30\377.&\27\3773)\32\377=.!\377D3$\377H6'\377K9)\377O<*\377[E0\377" "lQ:\377{\\E\377\204eM\377\203gO\377|bJ\377v]C\377y]A\377\200`C\377\210" "dG\377\215gG\377\215fE\377\207b@\377\205]=\377\244\203o\377\216e]\377" "\222hI\377\213dE\377\200]>\377sT7\377dJ.\377ZD&\377VF%\377XM(\377ZR)" "\377xuX\377p|d\377w\206J\377\201\224K\377\205\234P\377\204\233N\377\203" "\230K\377\200\223G\377{\213E\377\250\263\212\377\206\224s\377\234\241" "u\377\252\253\177\377\264\263\212\377\275\272\224\377\301\275\230\377" "\303\300\240\377\331\325\312\377\307\302\246\377\301\301\225\377\264" "\272\210\377\253\266|\377\254\267z\377\260\271y\377\257\273v\377\260" "\273n\377\252\265c\377\317\325\247\377\276\301\203\377\310\312z\377\313" "\312\204\377\305\306\213\377\304\304\232\377\316\312\260\377\344\336" "\320\377\360\350\346\377\346\335\332\377\313\304\273\377\203vZ\377N<" "\24\377\220I6\15\377\6J7\17\377`R@\377\215\211\242\377\242\242\317\377" "\243\243\321\377\245\245\323\377\202\247\247\324\377\202\252\252\327" "\377\7\257\257\333\377\261\261\336\377\262\262\336\377\263\263\337\377" "\241\236\271\377fXE\377J7\17\377\213I6\15\377\3X\77\12\377\223h\3\377" "J6\14\377\202I6\15\377\7P>\34\377\204~\217\377\246\246\322\377\250\250" "\325\377\255\255\332\377\256\256\332\377\260\260\335\377\202\262\262" "\336\377\202\257\257\334\377\10\252\252\327\377\246\246\324\377\244\244" "\321\377\241\241\317\377\235\235\313\377\231\231\307\377\225\225\304" "\377\220\220\277\377\202\212\212\272\377\6\205\205\265\377}}\256\377" "zz\253\377tt\246\377rr\244\377pp\243\377\202kk\236\377\5hh\233\377jj" "\235\377kk\236\377nn\241\377pp\242\377\202rr\244\377\6uu\250\377vv\250" "\377uu\247\377xx\252\377{{\255\377zz\253\377\202uu\250\377\202uu\247" "\377\2ss\245\377qq\244\377\204nn\241\377\4kk\236\377jj\235\377ii\234" "\377hh\233\377\203ff\232\377\1cc\227\377\203bb\226\377\17``\224\377]" "]\221\377ZZ\216\377WW\214\377RR\210\377PP\205\377MM\203\377KK\201\377" "FF}\377AAx\377>>u\377;;r\37788p\37777n\37755m\377\20266n\377\3""77o\377" "44l\37722k\377\20200h\377\20222j\377\1""00h\377\20211i\377\2""22j\377" "66n\377\20277o\377\202@@w\377\204CCz\377\1AAx\377\204@@w\377\4\77\77" "v\377>>u\377==u\377<5\34\377@4\34\377B5\34\377D7\37\377E8\40\377OB1\377rmb\377TO" "D\377QI:\377RD0\377ZQC\377`UR\377SG<\377bN8\377fR;\377lWA\377wfS\377" "\213w_\377\230\200j\377\230\203o\377\220xZ\377\226zZ\377\275\245\213" "\377\337\316\277\377\352\344\333\377\350\342\333\377\347\340\325\377" "\341\334\326\377\336\331\323\377\330\327\322\377\325\324\322\377\316" "\315\316\377\310\310\310\377\300\300\277\377\271\271\271\377\262\262" "\262\377\252\252\252\377\244\244\244\377\234\234\234\377\226\226\225" "\377\220\217\214\377\212\212\205\377\204\205\203\377\200\201\200\377" "|||\377vvu\377sqm\377tts\377qpp\377nnl\377^\\U\377`[U\377]XR\377NE<\377" "E:/\377@8-\377B;.\377D=.\377D>.\377@=,\37798(\37721#\3771.\"\377\202" "0.!\377Y/,\37\377.)\34\377,&\32\377+$\31\377*#\30\377)\"\27\377(!\26" "\377'!\26\377)#\30\377-)\35\377:9)\377PM9\377`^H\377ihQ\377jiS\377`a" "I\377LP8\3779<(\377,,\32\377*%\25\3775)\32\377=+\34\377C-\36\377E/\36" "\377F2\40\377N9%\377^G0\377rW@\377\203fO\377\215pY\377\214q[\377\207" "nW\377vaF\377sZ;\377uY7\377xY;\377zZ;\377\201^>\377\203`>\377\201^<\377" "\244\206u\377\211^H\377\216eD\377\212dB\377\201_\77\377tW8\377hO1\377" "aL0\377\\M/\377\\S-\377WX+\377\204\216n\377u\201g\377\207\226P\377\220" "\243Q\377\223\253U\377\226\256Y\377\235\261]\377\254\275h\377\277\307" "x\377\332\337\263\377\300\276\224\377\256\260\177\377\235\241v\377\224" "\232u\377\216\224t\377\214\224t\377\252\262\221\377\274\303\254\377\256" "\270\211\377\246\271|\377\234\263p\377\237\267p\377\260\277z\377\271" "\302}\377\271\301x\377\271\277x\377\300\301}\377\337\332\271\377\323" "\316\246\377\340\331\263\377\334\321\267\377\303\274\250\377\241\245" "\223\377\232\242\222\377\265\262\251\377\302\275\271\377\203xa\377Q\77" "\31\377\224I6\15\377\6K9\22\377g[P\377\223\220\260\377\242\242\317\377" "\243\243\321\377\245\245\323\377\202\247\247\324\377\202\254\254\331" "\377\3\247\246\313\377wlh\377M;\25\377\216I6\15\377\10L8\14\377I6\15" "\377L9\23\377i^W\377\233\232\303\377\241\241\317\377\243\243\321\377" "\244\244\321\377\202\252\252\327\377\3\255\255\332\377\261\261\336\377" "\257\257\334\377\202\252\252\327\377\22\247\247\324\377\246\246\324\377" "\240\240\316\377\237\237\315\377\234\234\313\377\230\230\307\377\223" "\223\302\377\215\215\275\377\207\207\267\377\205\205\265\377\203\203" "\264\377}}\256\377yy\253\377uu\247\377pp\243\377pp\242\377ll\237\377" "jj\235\377\202gg\233\377\7hh\233\377jj\235\377kk\236\377oo\241\377pp" "\242\377oo\241\377ss\245\377\202tt\246\377\4uu\247\377xx\252\377uu\250" "\377tt\246\377\202ss\245\377\4pp\243\377pp\242\377nn\241\377ll\237\377" "\203kk\236\377\202gg\233\377\2ff\232\377dd\230\377\203cc\227\377\1``" "\224\377\203__\223\377\1]]\221\377\202WW\214\377\13SS\210\377PP\205\377" "LL\202\377KK\201\377HH~\377EE{\377CCz\377<>u\377\1\77\77v\377\202AAx\377\203" "\77\77v\377\1>>u\377\202==u\377\202<,\3779<,\3778;*\37779)\37766&\37721!\377-+\34\377*%\31\377)" "\"\26\377(!\25\377(!\26\377*#\30\377+$\30\377/+\35\377CA.\377ZXB\377" "jhP\377qoY\377ppZ\377cfM\377MS:\3775=(\377'*\27\377*$\23\3773%\25\377" ":(\30\377\77*\31\377B,\32\377H2\35\377L6\40\377]H0\377iV>\377\200hR\377" "\212q[\377\227ya\377\233{]\377\227xV\377\217jC\377\210c8\377\202\\6\377" "tU1\377oT5\377tW:\377}eH\377\207nY\377{X<\377\200]:\377\203\\;\377\204" "\\<\377\202^=\377|\\;\377uY:\377mZ;\377pcA\377qi@\377\236\225\201\377" "w\204e\377\206\235Q\377\212\246Q\377\220\255W\377\226\262]\377\241\271" "d\377\265\307m\377\304\314x\377\327\327\261\377\32\244\251u\377}\210" "S\377R`:\377>K+\377:E*\377S^A\377\251\237\217\377\254\257\232\377\273" "\303\230\377\275\310\232\377\262\300\214\377\253\272\201\377\257\272" "\200\377\267\272\177\377\263\265{\377\263\267}\377\276\274\204\377\333" "\326\272\377\277\276\237\377\275\272\241\377\253\247\222\377\214\215" "}\377dm^\377DS>\377VP5\377YH$\377\230I6\15\377\11N<\30\377pec\377\231" "\230\275\377\242\242\320\377\243\243\321\377\245\245\323\377\247\247" "\323\377\206\177\213\377UE&\377\221I6\15\377\10XI0\377\207\203\237\377" "\232\232\311\377\234\234\313\377\241\241\317\377\242\242\320\377\243" "\243\321\377\250\250\325\377\202\252\252\327\377\2\254\254\331\377\252" "\252\327\377\202\247\247\324\377\17\245\245\323\377\241\241\317\377\235" "\235\313\377\233\233\312\377\232\232\310\377\225\225\304\377\220\220" "\277\377\214\214\274\377\211\211\271\377\204\204\264\377\202\202\263" "\377{{\254\377xx\252\377uu\247\377oo\241\377\202nn\241\377\11ii\234\377" "hh\233\377ff\231\377ff\232\377hh\233\377ii\234\377jj\235\377ll\237\377" "nn\241\377\202pp\243\377\4pp\242\377nn\241\377uu\250\377uu\247\377\203" "pp\243\377\1oo\241\377\203ll\237\377\203hh\233\377\6gg\233\377ee\230" "\377dd\230\377cc\227\377aa\225\377aa\224\377\202``\224\377\1]]\221\377" "\203\\\\\221\377\17[[\217\377XX\215\377WW\214\377UU\212\377QQ\206\377" "LL\202\377KK\201\377HH~\377EE{\377@@w\37788p\37777o\37755m\37722k\377" "22j\377\20300h\377\1""11i\377\20200h\377\203--f\377\1..g\377\202,,e\377" "\202**c\377\20211i\377\20277n\377\1""77o\377\202>>u\377\203\77\77v\377" "\203<\377aN6\377bL5\377fP6\377" "jR9\377u[\77\377qX;\377sZ>\377x^@\377\177bC\377\205gF\377\216oL\377\250" "\206c\377\326\307\257\377\342\336\326\377\336\332\323\377\330\317\277" "\377\323\305\251\377\320\316\304\377\310\310\307\377\301\277\272\377" "\271\254\234\377\265\262\251\377\237\230\217\377\213}l\377ziS\377tdN" "\377\200{l\377\217\220\216\377\213\213\213\377\207\210\207\377utq\377" "kg`\377}}{\377zzz\377xxx\377vut\377jid\377QMC\377IB4\377GB2\377IG5\377" "MO9\377NR:\377MS9\377IQ7\377DM5\377BJ3\377AI2\377AH2\377>D.\3779=)\377" "46$\377/.\36\377+(\33\377*%\31\377+%\31\377+$\31\377*\"\27\377*\"\26" "\377,'\31\377:9'\377NO9\377`_G\377jiP\377kmS\377glQ\377_eI\377SY\77\377" "HM5\3776:\"\3770*\24\3775(\25\3779*\25\377=-\30\377>/\30\377B2\33\377" "E6\35\377PB'\377gV>\377x`H\377\212lN\377\230sO\377\236sL\377\234oE\377" "\226kB\377\216hD\377\212gH\377\212kO\377\213oR\377\245\234\204\377\204" "q]\377}`@\377|^:\377\177\\6\377\205]8\377\211_:\377\217fB\377\217hE\377" "\213kH\377\206oL\377\205sI\377\265\254\214\377\203\225c\377\212\245W" "\377\213\256U\377\223\263Y\377\233\266]\377\237\272`\377\245\276`\377" "\254\276c\377\303\311\240\377\30\214\242_\377u\212F\377Wg/\377=H\32\377" ",4\15\377=I&\377\257\262\247\377\270\266\254\377\326\322\276\377\327" "\322\273\377\304\305\251\377\253\261\223\377\236\243\201\377\227\230" "w\377\215\222j\377\223\231j\377\242\244r\377\275\277\245\377\206\211" "k\377lwW\377U`D\377LW3\377EJ\40\377E9\21\377\234I6\15\377\6P\77\35\377" "xpu\377\217\213\247\377\211\203\231\377`Q=\377I6\16\377\220I6\15\377" "\17N<\30\377umt\377\232\232\311\377\227\227\306\377\231\231\307\377\233" "\233\312\377\235\235\313\377\240\240\316\377\241\241\317\377\244\244" "\321\377\245\245\323\377\246\246\324\377\251\251\326\377\247\247\324" "\377\245\245\323\377\202\243\243\321\377\21\240\240\316\377\233\233\312" "\377\230\230\307\377\227\227\306\377\221\221\301\377\215\215\275\377" "\212\212\273\377\205\205\265\377\202\202\263\377\177\177\260\377{{\254" "\377uu\250\377tt\246\377nn\241\377jj\235\377ii\234\377gg\233\377\204" "cc\227\377\3ff\232\377ee\230\377ii\234\377\202jj\235\377\6ii\234\377" "nn\241\377ll\237\377pp\242\377qq\244\377pp\243\377\202nn\241\377\5mm" "\240\377kk\236\377jj\235\377ii\234\377gg\233\377\204ee\230\377\5bb\226" "\377aa\225\377aa\224\377__\223\377^^\222\377\202]]\221\377\1[[\217\377" "\204ZZ\216\377\16VV\213\377SS\210\377QQ\206\377MM\203\377II\177\377F" "F}\377EE{\377CCz\377@@w\377<+\377E:\"\377B4\33\377" "C4\33\377E6\36\377E5\36\377B4\36\377C<+\377XRJ\377]QI\377]MF\377snh\377" "SU@\377SD*\377XE-\377ZF-\377[H-\377_I1\377kQ7\377jP4\377mS7\377pV;\377" "w]<\377~dC\377\201gE\377\210kJ\377\221tS\377\251\216p\377\257\230z\377" "\301\262\237\377\273\254\225\377\256\236\210\377\251\234\213\377\241" "\224\203\377\220{]\377\206tW\377zeL\377vbJ\377taK\377seQ\377\223\222" "\211\377\227\226\226\377\221\222\222\377\216\216\216\377wto\377jcW\377" "\177}w\377\201\201\200\377~~~\377{{{\377xxx\377jhd\377KH;\377KH7\377" "NO:\377QT=\377QW=\377NV<\377RYD\377NUA\377IQ7\377HP7\377CL4\377>G0\377" ";B-\3778<)\37733$\377/.\40\377.+\35\377,'\32\377+%\31\377*#\27\377+#" "\26\377(#\25\377,*\32\3779<*\377KQ:\377[bD\377hnO\377swY\377y{]\377x" "yZ\377nsS\377XbB\377EK.\377BA(\377>;\"\377:2\33\377:/\30\377\202;/\27" "\3779<2\32\377C8\"\377VI1\377gT7\377v[;\377\202`>\377\207_=\377\212d" "A\377\217iG\377\240xW\377\271\224r\377\274\231t\377\261\211]\377\247" "}O\377\231rB\377\222m\77\377\220kC\377\217jF\377\223kE\377\232qK\377" "\240wU\377\246~Y\377\233{Z\377\214zY\377\233\240{\377\213\226]\377\222" "\251Y\377\227\265Z\377\236\273\\\377\245\275^\377\247\275_\377\240\273" "\\\377\247\273b\377\271\310\231\377\226\260f\377\213\235V\377r\200B\377" "V_)\377@C\30\377\\V>\377\252\245\244\377\264\261\250\377\317\313\272" "\377\327\324\271\377\311\311\250\377\244\250\212\377\201\203n\377mn^" "\377clR\377\201\206Z\377\217\226Y\377\252\255\217\377ptK\377bk6\377[" "a(\377PE\26\377I7\15\377\203I6\15\377\2I7\16\377J8\20\377\232I6\15\377" "\2J7\17\377I6\16\377\221I6\15\377\4dWK\377\216\213\255\377\231\231\307" "\377\230\230\307\377\202\225\225\304\377\7\232\232\310\377\233\233\312" "\377\237\237\315\377\234\234\313\377\240\240\316\377\242\242\320\377" "\241\241\317\377\202\246\246\324\377\1\243\243\321\377\202\240\240\316" "\377\21\235\235\313\377\231\231\307\377\225\225\304\377\224\224\303\377" "\220\220\300\377\214\214\274\377\212\212\272\377\206\206\267\377\205" "\205\265\377~~\257\377||\256\377vv\250\377qq\244\377nn\241\377kk\236" "\377ii\234\377hh\233\377\202cc\227\377\202bb\226\377\203cc\227\377\1" "ff\231\377\202hh\233\377\203kk\236\377\2oo\241\377nn\241\377\202kk\236" "\377\1jj\235\377\202ii\234\377\3gg\233\377ff\232\377ee\230\377\203cc" "\227\377\1bb\226\377\202__\223\377\3^^\222\377\\\\\221\377[[\220\377" "\202[[\217\377\1ZZ\216\377\204WW\214\377\16SS\210\377QQ\206\377MM\203" "\377LL\201\377FF}\377EE{\377CCz\377AAx\377@@w\377::q\37733k\37700h\377" "..g\377//h\377\202,,e\377\202..g\377\4--f\377,,e\377**c\377))b\377\202" "++d\377\202,,e\377\202**c\377\202..g\377\4""00h\37777n\37755m\37799q" "\377\202;;r\377\2<\377ilN\377z|_\377\205\206l\377\216\214r\377\217\216s\377\217\220" "r\377\214\215k\377\200\200Z\377poL\377]Z<\377GD)\377:3\31\3778.\25\377" "7.\27\3776.\25\377:/\30\377>3\33\377E9!\377O\77%\377XD)\377bI/\377vb" "J\377\245\217u\377\275\236\200\377\304\232m\377\316\234c\377\314\231" "Z\377\300\214P\377\256\177H\377\234qB\377\220h=\377\211d;\377\207c:\377" "\210a:\377\213d>\377\222iE\377\227rN\377\253\234\177\377\256\241\203" "\377\241\236l\377\242\260h\377\243\270d\377\252\277f\377\265\304p\377" "\260\301q\377\250\274m\377\261\306|\377\266\310\227\377\243\264m\377" "\223\236Z\377v|C\377]^1\377NG)\377\214\202}\377\205\177\206\377\242\241" "\217\377\305\314\246\377\337\340\254\377\325\324\230\377\244\252p\377" "fnM\377QV\77\377osH\377\240\232_\377\261\256m\377\265\262\232\377}\200" "G\377[T\36\377J8\16\377\203I6\15\377\6O=\31\377{pm\377\247\244\302\377" "\254\251\312\377\207\177\205\377TC#\377\251I6\15\377\2SB$\377\202|\220" "\377\202\227\227\306\377\2\230\230\307\377\226\226\305\377\202\225\225" "\304\377\5\227\227\306\377\230\230\307\377\232\232\311\377\232\232\310" "\377\233\233\312\377\202\237\237\315\377\3\242\242\320\377\241\241\317" "\377\240\240\316\377\202\235\235\313\377\22\233\233\312\377\230\230\307" "\377\223\223\302\377\222\222\301\377\220\220\277\377\212\212\272\377" "\205\205\265\377\202\202\263\377\177\177\260\377zz\253\377xx\252\377" "ss\245\377nn\241\377ll\237\377gg\233\377ee\230\377dd\230\377__\223\377" "\204]]\221\377\202``\224\377\4cc\227\377ee\230\377dd\230\377ee\230\377" "\202gg\233\377\204kk\236\377\203hh\233\377\1ff\232\377\202dd\230\377" "\1bb\226\377\203``\224\377\1__\223\377\202]]\221\377\2[[\220\377[[\217" "\377\203ZZ\216\377\1WW\214\377\203VV\213\377\23UU\212\377QQ\206\377N" "N\204\377LL\202\377II\177\377FF}\377EE{\377DD{\377AAx\377\77\77v\377" "88p\37777o\37755m\37722j\377..g\377,,e\377++d\377,,e\377++d\377\202," ",e\377\3**c\377))b\377''`\377\202((b\377\205**c\377\12""00h\377..g\377" "22j\37744l\37766n\37777o\37799q\377::q\37788p\37777o\377\20566n\377\1" "55m\377\20244l\377\1""33k\377\20222j\377\20300h\377\1..g\377\206--f\377" "\1,,e\377\202**c\377\204))b\377\202((b\377\1''`\377\204&&_\377\202%%" "^\377\203$$^\377\204##]\377\3\"\"[\377!![\377\40\40Z\377\210\37\37Y\377" "\1\36\36X\377\202\35\35W\377\204\34\34V\377\204\32\32U\377\203\31\31" "T\377\202\27\27R\377\4\24\24O\377\23\23N\377\22\22N\377\17\17K\377\203" "\20\20K\377\1\22\22M\377\202\20\20K\377\1\22\22M\377\202\20\20K\377@" "\22\22M\377\20\20K\377<3\34\377@5\35\377A3\34\377@3\36\377JC.\377]QC" "\377RNC\377;8(\377=4!\377B4\40\377B2\35\377C3\35\377D4\37\377H7\37\377" "T\77(\377ZG2\377]J2\377Q@'\377R@%\377ZE+\377`K0\377bM2\377hT7\377jS6" "\377qX:\377t\\\77\377t^\77\377s`A\377wbC\377ycD\377wdG\377\234\216z\377" "saH\377|jS\377\177mV\377{gQ\377udN\377p^I\377m^K\377sgV\377\210\205y" "\377\251\251\246\377\245\244\243\377\227\220\211\377\204\200t\377|wb" "\377\211\202j\377\217\211s\377\217\214\201\377\213\213\210\377\210\207" "\206\377\200{w\377rja\377hh]\377\\[K\377X\\I\377^eU\377V`N\377PZC\377" "X]B\377QY<\377OW;\377\202MV9\377QJT9\377NTA\377[P\77\377aL7\377=7!\377" "1,\35\377/)\35\377.'\33\377-%\31\377+$\30\377*&\31\37732!\377FF1\377" "^^D\377rqR\377\202\201b\377\215\213p\377\225\223y\377\233\230\177\377" "\235\233~\377\227\227u\377\205\210_\377koH\377QR3\377\77;!\37770\30\377" "7/\30\3774.\26\3776/\27\37793\32\377>7\36\377D8!\377C7!\377YG8\377\201" "sh\377\230\205o\377\254\212`\377\313\235c\377\332\246h\377\335\246e\377" "\326\235_\377\311\217Y\377\272\204U\377\252yP\377\237rK\377\222jF\377" "\211d\77\377\206b\77\377\213dB\377\226oT\377\266\236\222\377\252\210" "t\377\265\234o\377\304\270}\377\306\304\201\377\275\306x\377\257\302" "l\377\247\275g\377\251\274i\377\261\301v\377\313\330\261\377\264\300" "\221\377\241\253k\377\215\222Y\377rqH\377fdD\377YXF\377\223\222\221\377" "w}t\377\266\301\223\377\322\336\245\377\347\353\261\377\340\340\237\377" "\256\264s\377cmE\377Z_<\377\222\217]\377\300\265z\377\305\267\204\377" "\213\177b\377O>\24\377\203I6\15\377\4J8\20\377l_Q\377\245\242\277\377" "\267\266\342\377\203\267\267\343\377\3\255\253\315\377yni\377M;\25\377" "\245I6\15\377\4I6\16\377ndc\377\226\225\276\377\233\233\312\377\203\227" "\227\306\377\5\230\230\307\377\223\223\302\377\221\221\301\377\223\223" "\302\377\225\225\304\377\203\231\231\307\377\5\233\233\312\377\232\232" "\310\377\234\234\313\377\236\236\314\377\235\235\313\377\202\232\232" "\311\377\2\231\231\307\377\225\225\304\377\202\217\217\276\377\13\215" "\215\275\377\206\206\267\377\204\204\264\377\202\202\263\377\177\177" "\260\377{{\255\377xx\252\377uu\247\377nn\241\377kk\236\377hh\233\377" "\202cc\227\377\1``\224\377\202]]\221\377\202[[\220\377\5]]\221\377[[" "\217\377]]\221\377^^\222\377``\224\377\202cc\227\377\3ff\232\377gg\233" "\377ee\230\377\202ii\234\377\1ff\232\377\202ee\230\377\4dd\230\377cc" "\227\377bb\226\377aa\225\377\204__\223\377\1\\\\\221\377\202[[\217\377" "\1YY\216\377\204WW\214\377\1UU\212\377\203SS\210\377\17RR\210\377PP\205" "\377LL\202\377LL\201\377HH~\377DD{\377CCz\377AAx\377@@w\377<2\30\377>1\30\377=/\30\377;.\33\377]VP" "\377LH@\377>2\40\377A0\35\377@.\32\377>.\32\377@1\32\377A2\33\377F4\35" "\377H5\37\377O<%\377SB)\377YE,\377WE.\377fYF\377a]H\377dYG\377l_O\377" "xeW\377ugU\377n^D\377\177pT\377|lR\377qgR\377\213\201{\377\224\207\201" "\377\202se\377ubP\377t^I\377{dL\377\204uc\377\203yh\377yoa\377maU\377" "mcT\377\237\231\217\377\251\245\237\377\243\237\225\377\236\232\217\377" "\225\223\207\377\223\221~\377\227\222|\377\226\221}\377\222\220\204\377" "\216\216\210\377\214\214\211\377\203\202{\377\204\202|\377\177|x\377" "\177\177|\377{|z\377yyx\377uuq\377pog\377deX\377cdT\377adR\377fiZ\377" "mnd\377lj_\377WS9\377EI-\377=A*\37789%\37742\40\377/+\35\377+&\31\377" ",&\31\377,'\31\3771.\36\377<=(\377LN5\377[^A\377jmN\377y|\\\377\213\212" "j\377\226\225u\377\232\231y\377\220\224q\377t\177Y\377NX7\37776\33\377" "8/\30\37760\30\37740\30\3771/\30\37795\35\377C:#\377D<'\377YSC\377of" "d\377o`V\377z`<\377\243}K\377\307\227^\377\334\245h\377\341\251j\377" "\333\242g\377\320\226a\377\300\211[\377\263\177W\377\251vQ\377\236oK" "\377\216eC\377\201];\377vU6\377\213t^\377\242\214\210\377\216p[\377\257" "\227l\377\320\275\210\377\341\325\233\377\342\333\235\377\322\324\216" "\377\270\310y\377\250\277l\377\265\306\201\377\314\322\244\377\273\302" "\177\377\22\263\266k\377\231\234T\377wx\77\377ZT*\377G@(\377}\177}\377" "kqc\377\265\274\212\377\345\350\271\377\356\360\315\377\360\361\324\377" "\346\346\301\377\263\270\213\377u\201Y\377w\177X\377\230\233h\377\216" "\204O\377XF\33\377\203I6\15\377\4J7\17\377bS<\377\232\225\252\377\264" "\263\340\377\204\264\264\341\377\203\267\267\343\377\3\246\242\277\377" "m_Q\377K9\21\377\242I6\15\377\5\\M7\377\215\212\253\377\232\232\311\377" "\231\231\307\377\230\230\307\377\204\225\225\304\377\202\217\217\276" "\377\2\221\221\301\377\224\224\303\377\202\225\225\304\377\1\224\224" "\303\377\202\230\230\307\377\203\233\233\312\377\1\230\230\307\377\202" "\225\225\304\377\25\221\221\301\377\216\216\276\377\212\212\273\377\212" "\212\272\377\206\206\267\377\203\203\264\377\177\177\260\377}}\256\377" "zz\253\377ss\245\377qq\244\377ll\237\377ii\234\377gg\233\377bb\226\377" "aa\225\377aa\224\377]]\221\377[[\217\377YY\216\377XX\215\377\202YY\216" "\377\5[[\217\377]]\221\377__\223\377aa\225\377aa\224\377\202cc\227\377" "\1aa\224\377\202gg\233\377\1ff\232\377\203cc\227\377\2aa\225\377aa\224" "\377\202__\223\377\1]]\221\377\203[[\217\377\1ZZ\216\377\202WW\214\377" "\202VV\213\377\203UU\212\377\1RR\210\377\204QQ\206\377\5MM\203\377LL" "\201\377II\177\377EE{\377CCz\377\202AAx\377\6\77\77v\377>>u\37788p\377" "33k\377--f\377++d\377\202**c\377\1''a\377\202))b\377\202**c\377\2''`" "\377&&_\377\203%%^\377\202&&_\377\2$$^\377''`\377\202%%^\377\10**c\377" ",,e\377..g\37700h\37722k\37744l\37755m\37766n\377\20355m\377\20333k\377" "\20222j\377\20500h\377\3..g\377--f\377,,e\377\205++d\377\202**c\377\202" "))b\377\202((b\377\202''`\377\1&&_\377\202%%^\377\202$$^\377\207##]\377" "\210\37\37Y\377\1\36\36X\377\202\35\35X\377\1\35\35W\377\203\34\34V\377" "\205\32\32U\377\210\31\31T\377\4\27\27R\377\25\25P\377\24\24O\377\23" "\23N\377\203\22\22M\377\204\20\20K\377\1\22\22M\377\202\17\17K\377\177" "\20\20K\377\17\17K\377/" "\33\377A0\33\377E4\36\377J8\"\377N<'\377Q\77*\377^M;\377ula\377e^U\377" "iZM\377gVF\377gVE\377jVB\377hU=\377gXE\377wvi\377vpg\377\213\220\220" "\377hf_\377|p\\\377rk\\\377\201\177r\377ufN\377p^H\377fVA\377eT@\377" "cT@\377eV@\377tgS\377\227\216\201\377\252\246\242\377\254\254\253\377" "\250\250\250\377\245\245\242\377\234\232\217\377\216\213q\377\215\212" "p\377\217\212t\377\217\213{\377\216\213\200\377\211\210~\377\205\205" "~\377\205\204\201\377\201\201|\377\177\177|\377}|z\377qke\377odX\377" "tod\377uum\377mod\377afQ\377V]@\377NX8\377JT4\377FN0\377\77F+\3778<%" "\377//\35\377*&\27\377)$\26\377($\26\377(&\26\377+)\27\3770/\34\3773" "7!\377=B*\377PX<\377kpP\377\200\177]\377\206\205`\377\177\202[\377gq" "L\377KS2\37786\34\37783\32\377::\37\377;\77$\3775;!\377;<(\377X_Y\377" "lor\377\\WV\377RF;\377`S4\377\201l>\377\251\206R\377\302\230^\377\314" "\235`\377\310\226\\\377\275\211X\377\254~R\377\234rJ\377\224kH\377\213" "gC\377\177b>\377sY9\377eN3\377\207|p\377oea\377\\K6\377shB\377\240\224" "d\377\311\273\204\377\332\316\223\377\326\320\220\377\277\305~\377\250" "\267j\377\267\306\222\377\277\302\235\377\301\275\201\377\313\275}\377" "\21\300\254o\377\242\216V\377vh:\377QE&\377\204|}\377LGO\377\204\212" "^\377\341\340\253\377\362\362\320\377\360\362\336\377\361\362\336\377" "\346\346\305\377\277\305\236\377\237\242~\377\206\177V\377]O$\377J7\16" "\377\203I6\15\377\3WF'\377\215\206\221\377\260\257\331\377\203\264\264" "\341\377\204\264\264\340\377\1\264\264\341\377\202\267\267\343\377\4" "\266\266\341\377\232\224\250\377_P9\377I7\16\377\236I6\15\377\7Q@\36" "\377|s|\377\236\235\312\377\232\232\311\377\227\227\306\377\226\226\305" "\377\230\230\307\377\203\222\222\301\377\3\220\220\300\377\216\216\276" "\377\214\214\274\377\202\216\216\276\377\1\220\220\300\377\202\221\221" "\301\377\203\225\225\304\377\3\230\230\307\377\226\226\305\377\225\225" "\304\377\202\224\224\303\377\23\220\220\300\377\215\215\275\377\212\212" "\273\377\211\211\271\377\206\206\267\377\201\201\262\377}}\256\377||" "\256\377ww\251\377rr\244\377pp\242\377ll\237\377ii\234\377ff\232\377" "bb\226\377^^\222\377]]\221\377[[\217\377WW\214\377\203VV\213\377\4WW" "\214\377XX\215\377ZZ\216\377[[\220\377\203\\\\\221\377\2bb\226\377aa" "\224\377\202cc\227\377\1dd\230\377\202aa\225\377\1``\224\377\202__\223" "\377\202]]\221\377\1\\\\\221\377\204ZZ\216\377\1WW\214\377\202VV\213" "\377\2TT\211\377SS\210\377\203RR\210\377\205PP\205\377\17LL\202\377I" "I\177\377HH~\377FF}\377CCz\377@@w\377>>u\377<1\32\377>/\27\377>.\26\377<.\26\377<,\27\377=" "+\30\377;+\27\377=-\31\377G9(\377M\77""0\377J;&\377L@-\377K>)\377K<%" "\377TE/\377YG0\377YC.\377]H4\377eR@\377raP\377vk[\377rfU\377\210\201" "w\377\237\245\237\377\241\250\252\377\210\203\177\377qg\\\377cTE\377" "dS\77\377cQ;\377bR;\377fQ:\377gQ:\377dP;\377bP;\377bQ<\377aR>\377dVA" "\377iZD\377\211zd\377\252\243\230\377\255\252\243\377\237\220\204\377" "\235\222\206\377\206\201k\377\200\200d\377\210\205i\377\216\211o\377" "\215\211q\377\211\206n\377\205\203n\377\203\204s\377wxa\377qr[\377im" "V\377`eM\377Z_D\377^bF\377\\cF\377\\cC\377\\dB\377Zc@\377Yb>\377U_;\377" "MW5\377FN.\377;B&\37703\36\377)&\26\377)$\25\377'#\25\377%!\22\377$!" "\22\377%!\21\377%$\24\377+(\30\37746\40\377GK0\377^dC\377psN\377uxR\377" "pvO\377]hB\377NY4\377emJ\377\200\203b\377\217\221o\377\231\231{\377\222" "\227\204\377]eU\377QL8\377\\X8\377df@\377v\177O\377\233\235h\377\277" "\267\177\377\321\302\207\377\312\272\177\377\254\236f\377\207yH\377v" "d<\377sb:\377wl>\377}vB\377~zG\377\201\200S\377\226\224~\377]\\P\377" "FC,\377GD&\377TU2\377{wM\377\230\222`\377\244\236h\377\236\230b\377\220" "\230`\377\254\263\215\377\227\221q\377\245\226n\377\303\244{\377\316" "\243{\377\311\230t\377\267\205g\377\234lV\377\260\222\214\377\13\232" "gr\377\226dX\377\305\264\203\377\361\355\277\377\361\361\337\377\360" "\360\354\377\360\360\352\377\356\355\335\377\306\275\244\377sc\77\377" "J8\17\377\204I6\15\377\5eVC\377\261\260\326\377\266\266\342\377\264\264" "\341\377\261\261\336\377\204\257\257\334\377\1\262\262\336\377\203\264" "\264\340\377\1\265\265\341\377\202\267\267\343\377\3\265\264\336\377" "\215\206\220\377WG)\377\234I6\15\377\10k_U\377\233\232\277\377\240\240" "\316\377\234\234\313\377\231\231\307\377\230\230\307\377\226\226\305" "\377\224\224\303\377\203\220\220\277\377\10\221\221\301\377\214\214\274" "\377\212\212\272\377\213\213\273\377\215\215\275\377\220\220\300\377" "\220\220\277\377\216\216\276\377\202\221\221\301\377\1\222\222\301\377" "\202\225\225\304\377\1\224\224\303\377\202\220\220\300\377\24\216\216" "\276\377\213\213\273\377\205\205\266\377\205\205\265\377\204\204\264" "\377~~\257\377||\256\377{{\254\377ww\251\377uu\247\377pp\242\377ll\237" "\377ii\234\377dd\230\377bb\226\377__\223\377\\\\\221\377[[\220\377XX" "\215\377WW\214\377\202VV\213\377\2WW\214\377XX\215\377\202WW\214\377" "\5YY\216\377\\\\\221\377ZZ\216\377``\224\377__\223\377\202]]\221\377" "\1cc\227\377\202aa\225\377\4__\223\377^^\222\377]]\221\377\\\\\221\377" "\202[[\217\377\1XX\215\377\204WW\214\377\1UU\212\377\202SS\210\377\2" "RR\210\377QQ\206\377\203PP\205\377\1MM\203\377\204LL\201\377\1KK\201" "\377\202FF}\377\11DD{\377@@w\377<2\32\377@3\34\377@2\34" "\377\77/\32\377\77/\31\377=.\26\377=-\25\377;-\25\377<,\24\377;,\25\377" ":,\24\377<,\26\377<-\26\377>/\27\377B1\32\377K;'\377WK9\377haR\377~z" "s\377kWU\377r[J\377o[J\377lZI\377jYL\377kXG\377aO=\377f]S\377d\\O\377" "eVE\377cU=\377`Q8\377bO7\377cP6\377aP8\377bP8\377bN8\377bN7\377cN8\377" "`O7\377_O8\377^P:\377cW\77\377qhO\377\177w\\\377\236\225y\377\256\244" "\213\377\261\250\225\377\257\254\244\377\251\250\241\377\234\224\200" "\377\227\203f\377\225\211m\377\223\222y\377\220\220w\377\217\215u\377" "\217\216|\377\202\202o\377psX\377_fJ\377PY\77\377KT:\377QY>\377W`A\377" "\\eC\377`hE\377aiE\377ciE\377diE\377]b\77\377RV7\377FI/\37779&\377--" "\37\377'%\30\377%!\25\377#\40\21\377#\40\20\377#\40\17\377%\"\22\377" "'#\24\377+(\24\37757\36\377VY;\377vuQ\377\221\215g\377\241\235v\377\250" "\251\202\377\257\262\214\377\275\276\236\377\315\314\263\377\330\325" "\275\377\320\316\256\377\271\274\217\377\237\251z\377\221\236p\377\237" "\250z\377\261\271\210\377\303\312\230\377\330\332\247\377\347\343\263" "\377\347\341\257\377\332\327\241\377\275\301\212\377\233\250q\377\205" "\230\\\377\206\236V\377\227\250\\\377\254\264n\377\306\306\232\377\324" "\315\264\377\264\251\213\377\237\223r\377\220}b\377\214nV\377\217kV\377" "\234q]\377\245za\377\252}a\377\257\211o\377\305\245\235\377\257vu\377" "\263xj\377\276\177n\377\311\207v\377\317\212y\377\315\206t\377\14\304" "~o\377\325\247\243\377\303\204\206\377\302tg\377\314\231q\377\341\324" "\217\377\361\361\263\377\362\363\317\377\361\362\334\377\337\337\310" "\377\220\205d\377Q>\26\377\206I6\15\377\3aR;\377\244\241\300\377\261" "\261\335\377\202\256\256\332\377\1\255\255\332\377\202\254\254\331\377" "\1\257\257\333\377\202\257\257\334\377\1\262\262\336\377\203\264\264" "\340\377\1\265\265\341\377\202\267\267\343\377\3\257\256\323\377|rs\377" "O=\32\377\230I6\15\377\12WF)\377\220\213\237\377\247\247\324\377\242" "\242\320\377\236\236\314\377\233\233\312\377\226\226\305\377\222\222" "\301\377\223\223\302\377\220\220\300\377\203\215\215\275\377\1\214\214" "\274\377\202\205\205\265\377\6\205\205\266\377\210\210\270\377\213\213" "\273\377\212\212\273\377\211\211\271\377\214\214\274\377\202\216\216" "\276\377\3\220\220\300\377\222\222\301\377\220\220\300\377\202\214\214" "\274\377\23\213\213\273\377\212\212\272\377\205\205\265\377\202\202\263" "\377\201\201\262\377~~\257\377||\256\377xx\252\377uu\250\377rr\244\377" "kk\236\377jj\235\377hh\233\377dd\230\377cc\227\377aa\225\377\\\\\221" "\377[[\220\377YY\216\377\202UU\212\377\3SS\210\377RR\210\377SS\210\377" "\202RR\210\377\5WW\214\377YY\216\377XX\215\377\\\\\221\377ZZ\216\377" "\202[[\220\377\4``\224\377]]\221\377__\223\377\\\\\221\377\202[[\217" "\377\202ZZ\216\377\1XX\215\377\202WW\214\377\204UU\212\377\1QQ\207\377" "\202QQ\206\377\1PP\205\377\202NN\204\377\202MM\203\377\1LL\201\377\204" "KK\201\377\2FF}\377EE{\377\202AAx\377\1>>u\377\202;;r\377\4""77o\377" "55m\37722k\37700h\377\202++d\377\1''`\377\202%%^\377\2\"\"\\\377\"\"" "[\377\202\"\"\\\377\202$$^\377\203\37\37Y\377\3\"\"[\377\40\40Z\377\"" "\"[\377\202\40\40Z\377\5\36\36X\377\"\"[\377%%^\377&&_\377((b\377\202" ",,e\377\1..g\377\20600h\377\203..g\377\202,,e\377\1++d\377\205**c\377" "\3))b\377((b\377''`\377\205&&_\377\202%%^\377\202$$^\377\205##]\377\212" "\37\37Y\377\202\36\36X\377\1\35\35W\377\202\34\34V\377\203\33\33U\377" "\202\32\32U\377\210\31\31T\377\203\27\27R\377\204\25\25P\377\206\24\24" "O\377\1\23\23N\377\202\22\22M\377\204\20\20K\377\177\16\16J\377J:#\377" "C5\35\377@0\30\377A0\31\377@/\31\377=-\25\377>,\24\377;,\25\377<+\26" "\377:+\25\377=,\25\377@-\26\377@0\30\377B1\32\377D3\34\377G8\40\377O" "A(\377OB,\377RB.\377WD1\377_H3\377aI5\377bK5\377dN6\377dO6\377aN5\377" "`M4\377bO5\377fYA\377\\M5\377^M5\377`L4\377aL5\377_L4\377`L5\377`L6\377" "_M5\377aT9\377f\\A\377iaE\377jgH\377tuU\377\211\212g\377\237\236z\377" "\257\254\212\377\267\263\225\377\270\265\233\377\271\270\250\377\264" "\262\243\377\255\246\215\377\245\236\200\377\240\237\203\377\234\235" "\203\377\231\232\200\377\225\225{\377\216\217t\377~\203f\377hpT\377P" "Y\77\377EK5\377IO8\377OV<\377U^\77\377ZdC\377ckH\377jnL\377opN\377rp" "N\377pmK\377gbD\377TR9\377BB0\37786+\377.+\"\377)&\33\377%\"\25\377\"" "\37\21\377$\40\22\377&\"\23\377)%\25\377,)\30\37767\40\377Y[<\377\207" "\205`\377\255\252\203\377\303\276\232\377\315\312\256\377\323\322\277" "\377\330\331\306\377\335\336\311\377\341\340\307\377\343\342\301\377" "\341\340\273\377\335\336\267\377\336\336\270\377\342\341\272\377\346" "\346\276\377\353\351\304\377\357\356\311\377\362\356\312\377\361\355" "\311\377\354\352\303\377\343\344\266\377\331\336\247\377\322\334\231" "\377\316\334\217\377\323\335\227\377\347\346\275\377\347\341\302\377" "\334\314\246\377\321\272\227\377\301\243\206\377\265\214t\377\255{h\377" "\250r`\377\245kZ\377\242eT\377\257{n\377\267\224\226\377\236df\377\236" "cY\377\234cW\377\233eY\377\231fW\377\233jX\377\227gU\377\12\271\227\215" "\377\243uo\377\243gR\377\250oN\377\277\236d\377\333\326\206\377\355\356" "\244\377\350\350\261\377\244\234p\377WF\35\377\211I6\15\377\3O=\30\377" "yoo\377\244\242\310\377\203\254\254\331\377\202\252\252\327\377\5\254" "\254\331\377\257\257\333\377\257\257\334\377\260\260\335\377\262\262" "\336\377\203\264\264\340\377\6\264\264\341\377\261\261\336\377\257\257" "\334\377\237\234\276\377maX\377L9\22\377\224I6\15\377\11L9\23\377}tv" "\377\247\246\316\377\252\252\327\377\244\244\322\377\241\241\317\377" "\235\235\313\377\231\231\307\377\225\225\304\377\202\221\221\301\377" "\1\220\220\277\377\202\212\212\272\377\202\211\211\271\377\202\205\205" "\265\377\3\205\205\266\377\205\205\265\377\211\211\271\377\202\210\210" "\270\377\6\212\212\273\377\214\214\274\377\212\212\273\377\214\214\274" "\377\216\216\276\377\214\214\274\377\203\212\212\273\377\2\206\206\267" "\377\202\202\263\377\202\200\200\261\377\32\177\177\260\377yy\253\377" "uu\247\377rr\244\377nn\241\377kk\236\377ii\234\377hh\233\377dd\230\377" "__\223\377]]\221\377XX\215\377VV\213\377UU\212\377QQ\207\377QQ\206\377" "PP\205\377OO\205\377QQ\206\377RR\210\377SS\210\377UU\212\377VV\213\377" "UU\212\377YY\216\377VV\213\377\202[[\220\377\4[[\217\377ZZ\216\377]]" "\221\377\\\\\221\377\202ZZ\216\377\202XX\215\377\1WW\214\377\202VV\213" "\377\1SS\210\377\203RR\210\377\1QQ\207\377\203PP\205\377\2NN\204\377" "LL\202\377\203LL\201\377\1KK\201\377\204HH~\377\20FF}\377CCz\377AAx\377" "\77\77v\377<,\24\377<+\25\377<+\26\377" "<,\26\377>-\27\377@/\30\377B1\31\377C3\34\377D4\35\377F8\40\377L>&\377" "K<%\377O\77'\377UC+\377\\F/\377aI2\377`J2\377dK3\377dM2\377cM3\377dN" "4\377aK2\377eS9\377[K1\377]J1\377]J2\377]I3\377]H1\377]I2\377\\I1\377" "^N4\377h\\=\377slI\377{yS\377\200\203[\377\202\214c\377\215\232m\377" "\234\246z\377\257\264\214\377\274\274\231\377\301\277\240\377\301\276" "\244\377\276\274\243\377\273\271\240\377\271\267\236\377\265\262\232" "\377\261\256\227\377\253\251\223\377\246\245\217\377\241\237\211\377" "\230\227~\377\213\215r\377y~d\377lr\\\377\\bM\377Y_H\377W^D\377V^@\377" "W`\77\377afE\377lnM\377wuT\377}vU\377~rS\377vhN\377iYE\377VI:\377D:2" "\377;3+\3779/&\377:.#\377=.#\377E3)\377L:/\377V@6\377bG=\377pVH\377\212" "u[\377\253\236{\377\305\275\232\377\324\317\260\377\327\327\301\377\332" "\333\313\377\336\340\316\377\340\342\320\377\343\345\322\377\346\350" "\322\377\351\351\320\377\352\352\317\377\354\354\321\377\355\355\324" "\377\357\356\323\377\361\357\321\377\361\355\320\377\363\356\321\377" "\363\357\321\377\362\360\320\377\361\360\314\377\361\357\304\377\357" "\357\275\377\356\357\301\377\357\360\317\377\346\345\272\377\322\321" "\233\377\270\270\205\377\242\230r\377\217|_\377\205lS\377{`I\377sUA\377" "jI8\377\217nh\377\177nv\377[BB\377YF7\377YH8\377]L=\377dTE\377h[J\377" "iYJ\377\234\220\213\377\11xem\377oWH\377w[>\377\205gC\377\241\223^\377" "\313\310\206\377\261\251p\377cS'\377I7\15\377\214I6\15\377\10VE'\377" "\204}\211\377\245\244\317\377\250\250\325\377\252\252\327\377\254\254" "\331\377\252\252\327\377\254\254\331\377\202\257\257\334\377\12\260\260" "\335\377\262\262\336\377\263\263\337\377\264\264\340\377\264\264\341" "\377\262\262\336\377\254\254\331\377\251\251\326\377\246\246\320\377" "XH.\377\222I6\15\377\16I7\16\377bT\77\377\243\240\300\377\256\256\332" "\377\253\253\330\377\252\252\327\377\243\243\321\377\237\237\316\377" "\232\232\311\377\230\230\307\377\225\225\304\377\217\217\276\377\220" "\220\277\377\214\214\274\377\202\211\211\271\377\202\212\212\272\377" "\203\202\202\263\377\13\203\203\264\377\206\206\267\377\207\207\267\377" "\205\205\265\377\207\207\267\377\211\211\271\377\212\212\272\377\212" "\212\273\377\215\215\275\377\213\213\273\377\211\211\271\377\202\207" "\207\267\377\15\205\205\265\377\202\202\263\377}}\256\377||\256\377{" "{\255\377uu\250\377uu\247\377ss\245\377pp\243\377mm\240\377hh\233\377" "gg\233\377cc\227\377\202]]\221\377\1XX\215\377\202VV\213\377\3SS\210" "\377QQ\206\377PP\205\377\202OO\205\377\7PP\205\377QQ\206\377PP\205\377" "QQ\207\377RR\210\377WW\214\377SS\210\377\202XX\215\377\5WW\214\377UU" "\212\377\\\\\221\377[[\217\377XX\215\377\203WW\214\377\1VV\213\377\202" "UU\212\377\2SS\210\377QQ\207\377\203QQ\206\377\2PP\205\377NN\204\377" "\202MM\203\377\1LL\202\377\204KK\201\377\1HH~\377\204FF}\377\1EE{\377" "\202AAx\377\15@@w\377>>u\377::q\37777o\37777n\37766n\37755m\37700h\377" ",,e\377((b\377$$^\377##]\377\"\"[\377\202\37\37Y\377\202!![\377\2\"\"" "\\\377!![\377\202\37\37Y\377\1\35\35W\377\202\36\36X\377\203\37\37Y\377" "\203\36\36X\377\6\40\40Z\377##]\377%%^\377''a\377((b\377**c\377\202," ",e\377\202--f\377\1++d\377\207**c\377\3((b\377''a\377''`\377\202&&_\377" "\203%%^\377\202$$^\377\207##]\377\207\37\37Y\377\202\36\36X\377\1\35" "\35W\377\205\34\34V\377\202\32\32U\377\210\31\31T\377\2\30\30S\377\27" "\27R\377\203\26\26Q\377\1\25\25P\377\207\24\24O\377\1\23\23N\377\205" "\22\22N\377\203\22\22M\377\204\20\20K\377\177R\77'\377Q>%\377N:#\377" "F4\36\377A/\31\377\77.\27\377@/\30\377>-\27\377@.\30\377B.\32\377D1\32" "\377E3\33\377F5\37\377L;&\377N\77(\377K;$\377M<$\377P\77&\377SA(\377" "ZD,\377]E.\377`H2\377cK3\377cL3\377bK3\377`K0\377mZ@\377`L3\377\\G/\377" "[F-\377ZG/\377XG/\377XF-\377ZF0\377ZH2\377`S7\377nhD\377~}T\377\211\216" "a\377\222\236n\377\235\254~\377\243\263\206\377\257\273\226\377\273\302" "\243\377\275\277\234\377\300\300\240\377\303\301\245\377\303\301\250" "\377\302\277\246\377\300\275\245\377\275\272\245\377\271\266\243\377" "\264\262\241\377\261\257\235\377\254\252\227\377\246\243\216\377\237" "\235\205\377\225\224|\377\214\212s\377\204\201k\377}wa\377soX\377kfO" "\377kbK\377odL\377ykS\377\203pX\377\212sZ\377\213oY\377\210gV\377\200" "]Q\377zVM\377zUM\377\200XO\377\205YP\377\206WP\377\207UO\377\206VO\377" "\207WP\377\213YR\377\215\\T\377\224gX\377\250\210r\377\301\263\230\377" "\317\307\247\377\330\324\263\377\334\334\302\377\336\340\312\377\342" "\342\314\377\344\345\320\377\347\350\323\377\350\351\330\377\351\354" "\334\377\352\355\333\377\354\357\331\377\355\355\324\377\354\352\314" "\377\350\346\306\377\352\347\307\377\355\351\310\377\360\353\313\377" "\360\354\314\377\355\352\311\377\357\356\312\377\362\361\330\377\362" "\362\327\377\362\363\276\377\361\361\255\377\346\351\241\377\311\321" "\203\377\225\240V\377ci3\377TO.\377JE)\377@:$\377ypn\377a[d\3770+$\377" "0/\32\377.0\34\37767%\377A\77.\377JG7\377TMB\377\227\217\217\377pek\377" "`UH\377\6leJ\377\203~W\377\242\234l\377\240\230e\377jZ-\377J7\16\377" "\217I6\15\377\11I6\16\377^O:\377\217\212\241\377\245\245\322\377\250" "\250\325\377\252\252\327\377\254\254\331\377\253\253\330\377\256\256" "\332\377\202\257\257\334\377\202\260\260\335\377\6\256\256\332\377\255" "\255\332\377\252\252\327\377\240\236\301\377k`W\377K8\21\377\221I6\15" "\377\17O=\31\377\212\202\215\377\262\262\336\377\263\263\337\377\256" "\256\332\377\253\253\330\377\247\247\324\377\241\241\317\377\236\236" "\314\377\232\232\311\377\225\225\304\377\220\220\300\377\214\214\274" "\377\217\217\276\377\213\213\273\377\202\205\205\266\377\3\206\206\267" "\377\205\205\266\377\202\202\263\377\203\200\200\261\377\1\202\202\263" "\377\202\203\203\264\377\7\205\205\265\377\210\210\270\377\205\205\266" "\377\206\206\267\377\212\212\272\377\207\207\267\377\206\206\267\377" "\202\205\205\265\377\3\203\203\264\377\200\200\261\377{{\254\377\202" "zz\253\377\22uu\250\377tt\246\377oo\241\377mm\240\377ii\234\377dd\230" "\377cc\227\377aa\225\377]]\221\377[[\217\377XX\215\377VV\213\377RR\210" "\377QQ\206\377NN\204\377MM\203\377LL\202\377JJ\200\377\202KK\201\377" "\5LL\202\377MM\203\377PP\205\377RR\210\377QQ\207\377\202SS\210\377\3" "VV\213\377SS\210\377YY\216\377\202XX\215\377\1WW\214\377\202VV\213\377" "\5UU\212\377TT\211\377SS\210\377RR\210\377QQ\207\377\204PP\205\377\1" "NN\204\377\203LL\201\377\202II\177\377\203HH~\377\1FF}\377\204EE{\377" "\6CCz\377AAx\377@@w\377\77\77v\377<&\377P:#\377J6!\377\202E1\34\377\10B0\33\377B0\32\377C0\31\377" "D0\34\377F3\36\377I7!\377Q>)\377O=&\377\202O=%\377\16Q>&\377R\77(\377" "RA)\377WB*\377[C-\377^F.\377aI2\377cJ1\377`I1\377qdN\377`R6\377^H0\377" "ZF0\377WD-\377\202VD,\377cVE,\377WE.\377XG/\377]R5\377nhF\377\200\200" "Y\377\221\230l\377\236\253y\377\253\270\211\377\262\276\221\377\264\301" "\226\377\265\300\231\377\271\300\234\377\275\301\240\377\301\301\244" "\377\302\301\247\377\277\301\246\377\277\277\245\377\277\275\246\377" "\275\273\246\377\274\271\246\377\267\266\242\377\261\260\235\377\254" "\254\226\377\251\247\221\377\245\241\212\377\236\231\203\377\230\217" "z\377\220\202m\377\210vb\377\177fT\377y]N\377wZK\377y[K\377|^L\377~_" "O\377\177]P\377\200^R\377\210eW\377\223lZ\377\240o[\377\247q\\\377\246" "o]\377\227eU\377\210[N\377~TI\377xRG\377uOE\377~WL\377\220zo\377\212" "~o\377\233\222q\377\263\255\203\377\305\303\225\377\322\317\242\377\331" "\330\254\377\337\335\261\377\346\344\273\377\351\350\306\377\352\353" "\316\377\354\355\325\377\355\355\330\377\353\354\331\377\347\347\324" "\377\327\330\275\377\315\316\257\377\317\316\253\377\322\316\251\377" "\321\316\251\377\311\317\255\377\324\336\310\377\351\355\317\377\362" "\363\314\377\363\363\321\377\363\364\313\377\363\364\300\377\363\365" "\266\377\362\363\253\377\341\345\225\377\254\267l\377p~G\377ltG\377\224" "\232\213\377z}t\377RWB\377MR2\377EI+\377AD*\377AD+\377FG2\377II8\377" "\221\215\216\377qhv\377d^Q\377miL\377\202\200X\377\217\211W\377l^/\377" "L9\20\377\223I6\15\377\5L9\22\377j]R\377\232\227\267\377\246\246\323" "\377\252\252\327\377\203\253\253\330\377\7\256\256\332\377\261\261\336" "\377\257\257\334\377\254\254\331\377\250\247\321\377\177w~\377Q@\36\377" "\221I6\15\377\3K8\20\377k^Q\377\252\250\314\377\203\262\262\336\377\13" "\252\252\327\377\247\247\324\377\245\245\323\377\237\237\316\377\233" "\233\312\377\225\225\304\377\222\222\301\377\217\217\276\377\212\212" "\273\377\214\214\274\377\206\206\267\377\204\201\201\262\377\6~~\257" "\377{{\254\377zz\253\377{{\254\377}}\256\377\201\201\262\377\202\200" "\200\261\377\203\202\202\263\377\202\205\205\266\377\1\205\205\265\377" "\202\202\202\263\377\13\201\201\262\377\177\177\260\377||\256\377zz\253" "\377yy\253\377uu\247\377qq\244\377nn\241\377mm\240\377hh\233\377dd\230" "\377\202bb\226\377\12]]\221\377XX\215\377WW\214\377SS\210\377PP\205\377" "OO\205\377MM\203\377KK\201\377II\177\377FF}\377\202II\177\377\1KK\201" "\377\202MM\203\377\202OO\205\377\202PP\205\377\4UU\212\377RR\210\377" "UU\212\377RR\210\377\202VV\213\377\204RR\210\377\1QQ\206\377\203PP\205" "\377\1MM\203\377\203LL\202\377\4LL\201\377KK\201\377II\177\377HH~\377" "\205FF}\377\1DD{\377\204CCz\377\10AAx\377\77\77v\377>>u\377<\377bVD\377YF1\377\202[E.\377dZC-\377" "VC-\377UD-\377ZG0\377\\H1\377ZE0\377YJ2\377_W9\377qpJ\377\206\211^\377" "\235\247x\377\257\272\212\377\275\304\231\377\301\311\242\377\301\311" "\245\377\302\310\246\377\304\307\250\377\306\307\253\377\304\306\251" "\377\300\303\246\377\300\302\246\377\303\303\250\377\302\300\247\377" "\300\276\246\377\274\271\242\377\266\263\234\377\260\253\222\377\254" "\245\212\377\245\235\204\377\235\224{\377\221\205o\377\202t_\377udR\377" "n]J\377cM>\377^F9\377ZC5\377VB4\377ZI:\377i[G\377|nS\377\222\200_\377" "\246\215k\377\252\212f\377\242xY\377\223jP\377wZD\377[G5\377O\377vuM\377\207\211\\\377\230" "\234k\377\251\260y\377\274\301\212\377\315\316\233\377\330\331\253\377" "\337\336\266\377\341\336\275\377\333\332\273\377\317\320\264\377\304" "\307\261\377\270\273\252\377\244\246\221\377\244\243\211\377\234\233" "\177\377\222\245\223\377\225\247\233\377\243\265\215\377\346\353\260" "\377\362\363\321\377\360\361\343\377\360\362\342\377\361\363\324\377" "\362\364\306\377\363\364\301\377\362\364\274\377\351\355\270\377\337" "\344\270\377\344\347\314\377\344\344\317\377\333\335\277\377\327\332" "\273\377\306\311\247\377\245\247\202\377\216\215k\377~|^\377zsZ\377\246" "\237\225\377\204zx\377ujW\377wnO\377rlE\377`V+\377L:\21\377\227I6\15" "\377\14O=\31\377wmn\377\241\240\307\377\247\247\324\377\252\252\327\377" "\253\253\330\377\254\254\331\377\253\253\330\377\251\251\325\377\221" "\214\242\377\\M5\377I6\16\377\221I6\15\377\3VF(\377\223\216\244\377\257" "\257\334\377\202\262\262\336\377\15\257\257\334\377\257\257\333\377\247" "\247\324\377\245\245\323\377\242\242\320\377\232\232\311\377\226\226" "\305\377\222\222\301\377\217\217\276\377\213\213\273\377\205\205\265" "\377\207\207\267\377\202\202\263\377\203\200\200\261\377\2\177\177\260" "\377{{\254\377\202yy\253\377\202{{\255\377\1}}\256\377\202||\256\377" "\203\200\200\261\377\202\203\203\264\377\1\202\202\263\377\203\200\200" "\261\377\12||\256\377zz\253\377uu\247\377tt\246\377ss\245\377nn\241\377" "kk\236\377jj\235\377gg\233\377ff\231\377\202aa\225\377\7\\\\\221\377" "WW\214\377UU\212\377RR\210\377OO\205\377MM\203\377LL\202\377\202II\177" "\377\1HH~\377\202GG~\377\3HH~\377KK\201\377FF}\377\202KK\201\377\202" "MM\203\377\4QQ\207\377PP\205\377QQ\206\377NN\204\377\202UU\212\377\2" "RR\210\377QQ\207\377\202QQ\206\377\5PP\205\377OO\205\377NN\204\377MM" "\203\377LL\202\377\205KK\201\377\1HH~\377\202FF}\377\2FF|\377EE{\377" "\203DD{\377\205AAx\377\7@@w\377>>u\377<)\377L>&\377K" "\77&\377NA'\377TG+\377]X6\377rtI\377\207\214X\377\222\230a\377\221\225" "d\377\215\220e\377\207\211f\377\204\202f\377\213\203k\377\222\210p\377" "\224\210r\377\215\202m\377\222\212t\377\221\213\205\377lf\\\377c\\\77" "\377ca9\377\217\225S\377\332\333\210\377\363\363\270\377\361\363\331" "\377\357\361\347\377\360\361\353\377\360\362\345\377\361\363\330\377" "\362\363\310\377\361\363\316\377\360\361\346\377\360\360\356\377\360" "\357\357\377\204\360\360\360\377\7\360\360\357\377\360\360\356\377\360" "\360\353\377\360\360\354\377\355\354\337\377\253\245\204\377UF\35\377" "\236I6\15\377\5J7\17\377_P<\377vll\377oc^\377Q\77\35\377\222I6\15\377" "\25aSA\377\224\221\255\377\250\250\325\377\254\254\331\377\256\256\332" "\377\257\257\333\377\257\257\334\377\256\256\332\377\254\254\331\377" "\252\252\327\377\241\241\317\377\240\240\316\377\237\237\315\377\225" "\225\304\377\221\221\301\377\216\216\276\377\212\212\273\377\211\211" "\271\377\202\202\263\377\205\205\265\377\177\177\260\377\203||\256\377" "\2zz\253\377ww\251\377\203uu\250\377\1vv\250\377\203yy\253\377\1{{\254" "\377\202||\256\377\4}}\256\377\177\177\260\377}}\256\377||\256\377\202" "{{\254\377\13yy\253\377uu\250\377rr\244\377qq\244\377pp\243\377nn\241" "\377jj\235\377ff\232\377ee\230\377aa\225\377``\224\377\202]]\221\377" "\4[[\217\377VV\213\377SS\210\377PP\205\377\202LL\201\377\1JJ\200\377" "\203FF}\377\1BBy\377\203DD{\377\2KK\201\377HH~\377\203KK\201\377\5JJ" "\200\377NN\204\377LL\202\377NN\204\377LL\202\377\202QQ\206\377\203MM" "\203\377\2LL\202\377LL\201\377\203KK\201\377\1HH~\377\204FF}\377\1EE" "{\377\202DD{\377\1CCz\377\205AAx\377\1\77\77v\377\204>>u\377\1<+\377S@-\377SD" "/\377P>.\377K8(\377I8#\377L8\"\377K7$\377H7%\377F8)\377K9-\377N:-\377" "L;-\377K:+\377M:-\377P;/\377O;.\377N=,\377N@.\377L=*\377P\77*\377R\77" ")\377V\77(\377Y@)\377X\77)\377VA'\377TA(\377TA)\377RB*\377SF/\377ZT;" "\377opT\377\221\224q\377\257\261\207\377\305\304\227\377\317\316\244" "\377\324\324\254\377\324\324\256\377\325\324\261\377\326\324\261\377" "\332\327\266\377\333\331\267\377\327\326\263\377\324\323\254\377\315" "\314\250\377\301\302\236\377\254\257\213\377\224\227t\377wzZ\377^_A\377" "RP5\377KI4\377JD2\377G@0\377@;+\377<6'\37751!\3774+\30\3770*\30\377/" "*\26\377@7\36\377WW:\377knK\377\214\211a\377\233\225k\377\231\222j\377" "\204\201^\377]_K\377\\e_\377NJ@\377RD<\377L=,\377RB*\377YE-\377]J/\377" "_K0\377]K1\377[O0\377fa;\377wyK\377\213\217Y\377\223\232_\377\215\225" "Z\377z\204N\377jrF\377llJ\377vlP\377\200qU\377\203rW\377\200wa\377\231" "\232\216\377\220\210}\377d]J\377WU7\377TR2\377VT/\377af/\377\231\250" "R\377\342\351\212\377\363\365\264\377\362\363\322\377\361\362\342\377" "\361\362\345\377\361\361\341\377\360\362\335\377\360\361\350\377\202" "\360\360\357\377\207\360\360\360\377\4\356\356\355\377\307\303\271\377" "rdE\377J8\17\377\203I6\15\377\3K8\20\377M:\24\377K8\20\377\256I6\15\377" "\5P>\34\377\200y\206\377\244\244\321\377\246\246\324\377\250\250\325" "\377\202\252\252\327\377\20\255\255\332\377\254\254\331\377\250\250\325" "\377\247\247\324\377\244\244\322\377\237\237\315\377\235\235\313\377" "\226\226\305\377\220\220\300\377\217\217\276\377\212\212\273\377\205" "\205\265\377\202\202\263\377\177\177\260\377\202\202\263\377}}\256\377" "\203xx\252\377\20vv\250\377uu\247\377pp\243\377qq\244\377ss\245\377u" "u\247\377xx\252\377ww\251\377vv\250\377xx\252\377zz\253\377ww\251\377" "{{\254\377||\256\377{{\254\377zz\253\377\202xx\252\377\4vv\250\377uu" "\247\377rr\244\377oo\241\377\202nn\241\377\5ii\234\377ff\231\377dd\230" "\377aa\224\377^^\222\377\202ZZ\216\377\13WW\214\377UU\212\377QQ\206\377" "NN\204\377JJ\200\377HH~\377GG~\377FF|\377DD{\377CCz\377@@w\377\202BB" "y\377\3DD{\377HH~\377EE{\377\202HH~\377\6KK\201\377HH~\377LL\202\377" "LL\201\377LL\202\377KK\201\377\202PP\205\377\3MM\203\377LL\202\377LL" "\201\377\203KK\201\377\1II\177\377\202HH~\377\1FF}\377\204EE{\377\1C" "Cz\377\204AAx\377\1@@w\377\203\77\77v\377\1<'\377M;&\377N<)\377L;'\377K9$\377J7!\377K" "8\"\377L8#\377L:%\377N<)\377P>+\377Q>+\377R>*\377R>+\377P=)\377R>+\377" "M=)\377M=%\377O>&\377S\77'\377V@(\377XA)\377XA'\377UA'\377RA)\377RB*" "\377YN4\377_\\\77\377hlI\377z\204\\\377\216\232o\377\242\255}\377\255" "\267\205\377\264\274\215\377\263\275\217\377\271\301\225\377\274\300" "\226\377\300\303\232\377\303\307\235\377\304\306\235\377\276\300\230" "\377\270\271\222\377\254\254\206\377\233\232v\377\202\203c\377nnP\377" "\\Z>\377NH.\377E>'\377A;'\377@9'\377;6#\37752\40\3771/\35\377.+\30\377" ".)\25\377+)\25\377/2\34\377JO2\377twS\377\232\230u\377\243\235x\377\233" "\227p\377\211\210d\377y\203j\377y~u\377XVW\377C;*\377H\77$\377NB)\377" "VF,\377_M1\377eS6\377hT9\377jZ;\377pkE\377~\200Q\377\220\227]\377\232" "\243d\377\231\244`\377\211\227T\377t\177G\377giB\377kaB\377vfI\377sg" "H\377\216\221{\377\223\220\200\377yiZ\377qaD\377f[:\377QN-\377EE%\377" "GH%\377W`+\377\231\256V\377\341\351\213\377\363\365\262\377\362\364\315" "\377\361\363\330\377\360\362\340\377\360\361\347\377\360\360\354\377" "\360\360\356\377\210\360\360\360\377\3\327\324\316\377\204w]\377M;\23" "\377\203I6\15\377\6K8\20\377obV\377\240\234\265\377\250\245\304\377\226" "\220\240\377\\M1\377\254I6\15\377\7i]T\377\232\230\276\377\241\241\317" "\377\244\244\322\377\247\247\324\377\246\246\324\377\250\250\325\377" "\202\253\253\330\377\17\251\251\326\377\247\247\324\377\245\245\323\377" "\241\241\317\377\232\232\311\377\231\231\307\377\226\226\305\377\216" "\216\276\377\213\213\273\377\205\205\266\377\203\203\264\377\201\201" "\262\377||\256\377\177\177\260\377yy\253\377\203uu\247\377\7ss\245\377" "rr\244\377oo\241\377pp\242\377pp\243\377qq\244\377uu\247\377\202tt\246" "\377\7uu\247\377vv\250\377uu\250\377ww\251\377zz\253\377yy\253\377xx" "\252\377\203uu\250\377\16ss\245\377pp\243\377nn\241\377mm\240\377kk\236" "\377ee\230\377dd\230\377cc\227\377bb\226\377``\224\377\\\\\221\377XX" "\215\377WW\214\377SS\210\377\202NN\204\377\202KK\201\377\202HH~\377\1" "DD{\377\202AAx\377\5BBy\377AAx\377BBy\377DD{\377AAx\377\202DD{\377\7" "FF}\377EE{\377II\177\377HH~\377KK\201\377II\177\377KK\201\377\202LL\202" "\377\1LL\201\377\203II\177\377\2HH~\377GG~\377\203FF}\377\1DD{\377\204" "CCz\377\1AAx\377\203@@w\377\1>>u\377\202==u\377\202<#\377S\77$\377TB'\377U" "E*\377VK.\377XQ3\377\\Z9\377ejE\377q{Q\377{\207X\377\202\224`\377\213" "\236h\377\221\243l\377\226\246o\377\226\246q\377\230\251u\377\240\256" "|\377\244\257\177\377\245\255}\377\245\253~\377\235\242y\377\222\226" "p\377\207\211g\377yw[\377jfM\377`[C\377WP9\377LA-\377F<&\377\77""8#\377" ";5#\37772\40\3772.\34\3770,\32\377-*\27\377)*\26\377*,\30\3779\77&\377" "^fI\377\212\214j\377\246\242{\377\253\246~\377\242\241z\377\224\230{" "\377{z_\377pfP\377cT>\377bU<\377]R8\377QM/\377MH-\377TK/\377\\Q4\377" "d[<\377ngE\377|yR\377\210\212[\377\217\225^\377\226\237_\377\227\235" "[\377\220\227U\377\214\217V\377\207\203U\377{pN\377r`G\377\202p]\377" "\216\207\200\377jb_\377bT=\377cT4\377aQ0\377[O-\377QJ*\377GE%\377DF\"" "\377Rd+\377\250\272b\377\352\357\235\377\362\364\311\377\360\362\341" "\377\360\362\344\377\361\362\336\377\360\361\342\377\360\360\355\377" "\360\360\357\377\206\360\360\360\377\3\340\337\333\377\225\213u\377Q" "\77\30\377\203I6\15\377\4J7\17\377cT\77\377\233\227\256\377\266\266\341" "\377\202\267\267\343\377\4\271\271\344\377\263\262\331\377\204{~\377" "RA\37\377\250I6\15\377\10WG,\377\215\211\243\377\240\240\315\377\242" "\242\320\377\244\244\322\377\243\243\321\377\244\244\321\377\246\246" "\324\377\202\247\247\324\377\20\250\250\325\377\247\247\324\377\244\244" "\321\377\242\242\320\377\236\236\314\377\232\232\311\377\230\230\307" "\377\222\222\301\377\212\212\273\377\212\212\272\377\205\205\265\377" "\200\200\261\377~~\257\377{{\254\377~~\257\377xx\252\377\203tt\246\377" "\2rr\244\377qq\244\377\202nn\241\377\202pp\242\377\13qq\244\377pp\243" "\377pp\242\377rr\244\377uu\250\377uu\247\377uu\250\377xx\252\377ww\251" "\377vv\250\377uu\247\377\202tt\246\377\13qq\244\377pp\242\377kk\236\377" "ii\234\377hh\233\377ff\232\377dd\230\377aa\224\377``\224\377\\\\\221" "\377[[\217\377\202WW\214\377\5SS\210\377PP\205\377MM\203\377LL\201\377" "KK\201\377\202FF}\377\1CCz\377\203AAx\377\1\77\77v\377\202@@w\377\1\77" "\77v\377\202CCz\377\2FF|\377DD{\377\202FF}\377\1HH~\377\202FF}\377\1" "JJ\200\377\202LL\201\377\1II\177\377\202HH~\377\3GG~\377FF}\377FF|\377" "\202EE{\377\2DD{\377CCz\377\204AAx\377\1@@w\377\202\77\77v\377\1>>u\377" "\202<)\377" "R\77*\377\202S>*\377dP>'\377L<%\377K;#\377L:&\377M:&\377K:%\377M<(\377" "M;&\377N;%\377R>+\377N=&\377R\77&\377S@#\377Q@\"\377OA\"\377TL+\377e" "^>\377rlL\377yuT\377~\177Z\377\203\210_\377\204\215`\377\211\225c\377" "\214\235e\377\214\237e\377\214\241e\377\214\240f\377\215\237f\377\221" "\242i\377\224\243l\377\227\243k\377\223\235h\377\214\224e\377\177\205" "[\377suN\377jhH\377aZ@\377XO9\377TI4\377QD.\377MA+\377J=(\377F;%\377" "A8%\377;4\"\37761\36\3773/\34\3770-\32\3771-\31\37712\34\377BH/\377j" "oO\377\220\221m\377\251\245|\377\256\252\177\377\251\247\200\377\225" "\230x\377}\177h\377c[D\377cU9\377eW9\377gX;\377gZ<\377e\\>\377dbB\377" "ejD\377ipF\377u\177T\377\203\216`\377\220\226e\377\216\225a\377\211\223" "Y\377\203\215R\377\207\213R\377\214\206T\377\215\200U\377\206vT\377|" "s]\377\240\222\207\377\177qo\377ULA\377TN4\377TL.\377WJ,\377XK+\377W" "M+\377TK*\377PJ+\377IF&\377EQ\"\377\177\224L\377\327\337\234\377\360" "\360\316\377\361\362\327\377\362\363\323\377\360\363\314\377\357\363" "\325\377\357\361\351\377\357\360\356\377\360\360\357\377\203\360\360" "\360\377\3\352\351\350\377\250\240\217\377[J&\377\204I6\15\377\3XG*\377" "\217\210\224\377\263\263\334\377\206\267\267\343\377\4\271\271\344\377" "\251\246\305\377pdY\377K9\21\377\244I6\15\377\3N<\27\377ukn\377\237\237" "\312\377\202\240\240\316\377\202\241\241\317\377\6\242\242\320\377\244" "\244\321\377\243\243\321\377\244\244\321\377\245\245\323\377\246\246" "\324\377\202\242\242\320\377\15\240\240\316\377\232\232\311\377\224\224" "\303\377\222\222\301\377\217\217\276\377\211\211\271\377\205\205\265" "\377\200\200\261\377}}\256\377||\256\377ww\251\377zz\253\377uu\247\377" "\202qq\244\377\16rr\244\377pp\242\377nn\241\377jj\235\377kk\236\377m" "m\240\377nn\241\377pp\243\377pp\242\377pp\243\377oo\241\377rr\244\377" "qq\244\377pp\243\377\203tt\246\377\1qq\244\377\203pp\243\377\2nn\241" "\377jj\235\377\202hh\233\377\12ff\232\377cc\227\377aa\224\377__\223\377" "]]\221\377[[\220\377VV\213\377UU\212\377SS\210\377QQ\207\377\202MM\203" "\377\1KK\201\377\202FF|\377\2DD{\377BBy\377\202@@w\377\1>>u\377\203@" "@w\377\202AAx\377\4EE{\377DD{\377FF}\377DD{\377\202FF}\377\202FF|\377" "\3HH~\377KK\201\377II\177\377\203FF}\377\3FF|\377EE{\377DD{\377\202C" "Cz\377\1AAx\377\205@@w\377\1>>u\377\202<>u\377\204<&\377M>%\377O@&\377RE*\377RE&\377XL.\377dZ;\377oeE\377vkK\377" "yrP\377{vV\377{uV\377zvX\377xvV\377xzY\377x{T\377{{Q\377{~M\377y}I\377" "rvE\377kqB\377oxI\377v\200Q\377\200\206W\377\177\202U\377z}R\377lpI\377" "Y\\;\377HG+\377E\77(\377G='\377E='\377I\77)\377NA,\377QB.\377VC.\377" "VD-\377RA+\377L>)\377A:$\377;6!\37788!\377;A&\377T_@\377w\202]\377\236" "\245\177\377\261\270\223\377\245\255\202\377\210\226f\377kyH\377T]3\377" ">A!\377\77;!\377C=%\377QK2\377YV\77\377dcE\377nvJ\377\201\216W\377\225" "\244g\377\245\261t\377\243\262t\377\233\250l\377\214\231^\377~\206R\377" "rvH\377jg@\377dZ;\377cW<\377z|i\377\200\205\210\377_[Z\377WM9\377ZM2" "\377\\M1\377]N1\377]O3\377[N3\377\\Q5\377gX;\377o^@\377u_\77\377\207" "x_\377\214\216\210\377rrs\377b]Q\377cfK\377\202\216h\377\270\302\220" "\377\332\337\244\377\346\354\245\377\354\363\250\377\362\365\267\377" "\361\363\323\377\357\360\352\377\313\307\276\377uhJ\377K8\20\377\203" "I6\15\377\5J8\20\377sh_\377\251\246\307\377\266\266\342\377\264\264\341" "\377\207\264\264\340\377\204\267\267\343\377\4\270\270\344\377\260\257" "\330\377\206~\205\377RA\40\377\236I6\15\377\6Q@\37\377\203|\213\377\240" "\240\315\377\240\240\316\377\241\241\317\377\237\237\315\377\202\235" "\235\313\377\2\237\237\315\377\233\233\312\377\203\237\237\315\377\1" "\237\237\316\377\202\241\241\317\377\17\235\235\313\377\233\233\312\377" "\231\231\307\377\223\223\302\377\220\220\277\377\215\215\275\377\207" "\207\267\377\204\204\264\377\200\200\261\377{{\255\377zz\253\377yy\253" "\377tt\246\377uu\250\377pp\243\377\203mm\240\377\202kk\236\377\6gg\233" "\377hh\233\377ii\234\377hh\233\377ii\234\377kk\236\377\202jj\235\377" "\202oo\241\377\5nn\241\377pp\242\377pp\243\377pp\242\377nn\241\377\203" "ll\237\377\2ii\234\377hh\233\377\202cc\227\377\22aa\225\377]]\221\377" "\\\\\221\377[[\220\377YY\216\377WW\214\377VV\213\377RR\210\377QQ\207" "\377PP\205\377LL\201\377HH~\377FF}\377EE{\377AAx\377@@w\377\77\77v\377" "<>u\377\3\77\77v\377>>u\377" "AAx\377\203CCz\377\5AAx\377DD{\377EE{\377FF}\377DD{\377\202CCz\377\202" "BBy\377\1AAx\377\203@@w\377\1>>u\377\204<\377[R9\377VM7\377YQ9\377[T6\377^W7\377`X6\377^W5\377" "YR1\377XQ0\377[Z7\377ab>\377fg@\377efA\377]_<\377RS4\377HF+\377A=&\377" "A:#\377B:\"\377B<%\377I@+\377SC.\377WE/\377YF0\377WD/\377TH2\377RN8\377" "PT>\377JS;\377\\hK\377\204\214m\377\247\255\220\377\264\264\223\377\256" "\257\213\377\250\254\203\377\205\222f\377etF\377OY/\377DE%\377\77>\"" "\377@<#\377\77;\"\377@=#\377AD&\377ZbB\377o~T\377\212\231d\377\237\252" "q\377\241\254r\377\227\244i\377\210\220\\\377xyM\377olD\377uiG\377yb" "D\377\212q]\377\227\213\204\377e_c\377LF9\377FA&\377LD'\377VH-\377YJ" "-\377XK.\377XL1\377[N6\377\\R9\377a\\E\377\205\202l\377\253\234\217\377" "\224\205z\377\200pY\377~nP\377ulK\377y{T\377\256\267y\377\343\345\230" "\377\363\364\250\377\364\366\262\377\363\365\273\377\362\363\316\377" "\327\325\303\377\205y^\377L:\22\377\205I6\15\377\5RA\40\377\257\255\322" "\377\266\266\342\377\264\264\341\377\261\261\336\377\203\257\257\334" "\377\1\262\262\336\377\205\264\264\340\377\202\267\267\343\377\6\265" "\265\341\377\262\262\336\377\256\256\332\377\242\240\305\377pe_\377M" ":\25\377\232I6\15\377\5J7\17\377oda\377\235\234\303\377\243\243\321\377" "\241\241\317\377\202\237\237\316\377\2\236\236\314\377\232\232\311\377" "\203\233\233\312\377\202\234\234\313\377\2\237\237\315\377\235\235\313" "\377\202\232\232\311\377\17\232\232\310\377\226\226\305\377\223\223\302" "\377\217\217\276\377\214\214\274\377\211\211\271\377\203\203\264\377" "\177\177\260\377||\256\377zz\253\377uu\247\377tt\246\377pp\242\377ss" "\245\377nn\241\377\202ii\234\377\17jj\235\377ii\234\377gg\233\377dd\230" "\377cc\227\377ee\230\377ff\231\377hh\233\377kk\236\377jj\235\377hh\233" "\377kk\236\377ll\237\377jj\235\377ll\237\377\203nn\241\377\1kk\236\377" "\202jj\235\377\17hh\233\377ff\232\377cc\227\377bb\226\377aa\225\377_" "_\223\377\\\\\221\377[[\217\377WW\214\377VV\213\377SS\210\377QQ\207\377" "OO\205\377NN\204\377KK\201\377\203FF}\377\5AAx\377@@w\377\77\77v\377" ">>u\377;;r\377\202::q\377\20299q\377\202::q\377\202;;r\377\3<" ">u\377\77\77v\377\202>>u\377\203AAx\377\3BBy\377EE{\377DD{\377\204AA" "x\377\2@@w\377\77\77v\377\203>>u\377\1<&\377\16N=&\377N>)\377L\77&\377MA'\377OF+\377QE,\377XJ1\377_R:" "\377cU;\377aS:\377_O9\377XK5\377OC+\377L\77&\377\202K=&\377POA)\377R" "C+\377SD+\377SC*\377QA(\377Q@'\377OB(\377PE*\377SJ.\377RM/\377OL.\377" "KF+\377E@%\377NK3\377MK7\377<8\40\377\77""8!\377B;#\377KA,\377RD.\377" "YD.\377tYH\377xlg\377li`\377^\\L\377ilR\377\206\217t\377\260\266\235" "\377\312\311\261\377\272\273\237\377\245\250\203\377\215\226p\377q{W" "\377U_>\377EK-\377@B&\377\77=#\377\77=\"\377>;#\377;9\37\377;<\36\377" "\77H'\377WfA\377v\205\\\377\216\234m\377\227\241o\377\216\231g\377\177" "\211Y\377lqF\377b^:\377i]>\377\202qU\377\260\234\213\377\227\203{\377" "zeT\377i[\77\377SK.\377E\77#\377G@$\377NC&\377OC'\377MD(\377JB(\377N" "F4\377hup\377|\215\232\377zt}\377~m]\377\205qT\377\211tS\377\210tQ\377" "\206uR\377\216\210]\377\266\271x\377\335\341\217\377\361\363\252\377" "\362\364\306\377\344\345\314\377\231\220t\377TB\34\377\207I6\15\377\4" "J8\20\377i[K\377\241\235\272\377\261\260\335\377\202\261\261\336\377" "\1\260\260\335\377\203\257\257\334\377\1\262\262\336\377\204\264\264" "\340\377\11\264\264\341\377\262\262\336\377\256\256\332\377\254\254\331" "\377\247\247\324\377\245\245\322\377\221\214\247\377_P=\377J7\17\377" "\227I6\15\377\10XH-\377\220\214\247\377\242\242\320\377\243\243\321\377" "\241\241\317\377\236\236\314\377\237\237\316\377\234\234\313\377\202" "\232\232\311\377\6\233\233\312\377\232\232\311\377\231\231\307\377\233" "\233\312\377\231\231\307\377\232\232\310\377\202\233\233\312\377\1\232" "\232\311\377\202\225\225\304\377\10\221\221\301\377\215\215\275\377\212" "\212\273\377\207\207\267\377\202\202\263\377\177\177\260\377zz\253\377" "ww\251\377\202uu\247\377\3pp\242\377pp\243\377ll\237\377\204hh\233\377" "\1ff\232\377\204cc\227\377\6ff\231\377ii\234\377gg\233\377ff\231\377" "ii\234\377jj\235\377\202ii\234\377\202ll\237\377\2kk\236\377jj\235\377" "\202ii\234\377\4gg\233\377ee\230\377bb\226\377``\224\377\202__\223\377" "\6]]\221\377\\\\\221\377WW\214\377VV\213\377RR\210\377QQ\207\377\202" "MM\203\377\2KK\201\377FF}\377\202DD{\377\1AAx\377\202>>u\377\6<>u\377\202==u\377\5@@w\377\77\77v\377>>u\377AAx\377CCz\377\202AAx\377" "\1@@w\377\202\77\77v\377\202>>u\377\1==u\377\202<3\34\377A4\34\377\77" "4\33\377<2\31\377>2\31\377A3\32\377B5\35\377D6\36\377G7\40\377H9!\377" "H8\40\377H:\"\377J;#\377J:#\377J<%\377L\77&\377QE+\377QA*\377QC+\377" "OB*\377RC,\377QA+\377M@)\377I;\"\377H9\37\377I9\40\377J9!\377L<#\377" "P\77'\377P@'\377O\77&\377N\77%\377P\77%\377M\77$\377J<\"\377J=\"\377" "J>%\377F\77%\377F\77&\377F=&\377C=#\377E\77&\377NL5\377>9#\377@:%\377" "D=&\377KB,\377]R\77\377zl_\377pc]\377]SH\377edN\377\215\215r\377\264" "\266\234\377\302\303\245\377\312\310\252\377\303\303\237\377\253\261" "\214\377\210\222p\377^lM\377JO5\377GE.\377EB*\377D@'\377\77;\"\377;<" "\40\377>B$\377KQ1\377agC\377y}X\377\210\214c\377\222\233i\377\227\241" "k\377\242\251v\377\202\216]\377dsC\377SZ3\377QT\77\377{\200z\377\224" "\213\204\377\204l[\377\207jN\377\202gH\377r^>\377cU5\377TL.\377HD(\377" "G\77$\377A:\"\377C<,\377vf_\377us{\377NN\\\377NHB\377aX\77\377nbF\377" "zkM\377\202pP\377\203pO\377\203sR\377\206~[\377\222\235t\377\306\326" "\250\377\335\342\273\377\251\242|\377[J#\377\213I6\15\377\5N<\27\377" "xnm\377\244\243\311\377\254\254\331\377\256\256\332\377\205\257\257\334" "\377\1\262\262\336\377\202\264\264\340\377\2\262\262\336\377\254\254" "\331\377\202\252\252\327\377\6\247\247\324\377\244\244\322\377\245\245" "\323\377\244\243\317\377{rx\377J7\17\377\224I6\15\377\3O=\32\377zqv\377" "\244\244\322\377\202\242\242\320\377\6\240\240\316\377\237\237\316\377" "\236\236\314\377\233\233\312\377\232\232\311\377\226\226\305\377\202" "\225\225\304\377\27\226\226\305\377\225\225\304\377\226\226\305\377\227" "\227\306\377\230\230\307\377\226\226\305\377\225\225\304\377\226\226" "\305\377\224\224\303\377\221\221\301\377\216\216\276\377\211\211\271" "\377\207\207\267\377\203\203\264\377}}\256\377zz\253\377xx\252\377tt" "\246\377pp\243\377pp\242\377ll\237\377nn\241\377ii\234\377\203ff\231" "\377\3dd\230\377cc\227\377aa\224\377\202aa\225\377\3bb\226\377cc\227" "\377dd\230\377\202cc\227\377\1gg\233\377\202ii\234\377\1hh\233\377\202" "jj\235\377\2ii\234\377gg\233\377\203ff\232\377\2dd\230\377aa\224\377" "\202]]\221\377\16\\\\\221\377ZZ\216\377WW\214\377VV\213\377SS\210\377" "RR\210\377QQ\206\377LL\202\377LL\201\377II\177\377FF}\377DD{\377CCz\377" "@@w\377\203<>u\377==u\377<>u\377\3==u\377<3\27\377\77""3\31\377B4\34" "\377E6\36\377E7\36\377F7\37\377E8\40\377E7!\377G8!\377G9!\377J>'\377" "L;&\377M<$\377\202L<#\377\22K9\"\377J8\40\377I8\37\377G8\36\377H9\37" "\377I9\37\377K:\37\377M<\"\377O\77%\377O\77&\377M\77&\377L>$\377K\77" "$\377I>%\377E<\"\377D<\"\377D<#\377B=#\377\202D>'\377AD=%\377H\77)\377" "YTD\377>;'\377G@+\377JA,\377XQ\77\377bZK\377^RC\377l]M\377\200\200n\377" "\236\243\214\377\254\262\227\377\301\302\241\377\323\321\255\377\317" "\317\251\377\271\277\227\377\224\235w\377hrQ\377JN2\377FC+\377GB*\377" "E@'\377D@&\377A>#\377IK,\377giD\377\215\204^\377\242\223l\377\245\230" "o\377\240\234m\377\231\233i\377\212\220Z\377x\200J\377ltE\377\\hE\377" "^vk\377m}\177\377f\\V\377taF\377\201hG\377\203gE\377{fC\377o^<\377fV" "5\377_R5\377YK1\377XK;\377mvy\377qv\204\377FBP\377;4-\377A;%\377F\77" "#\377NH+\377[S7\377e\\\77\377rfH\377ymO\377\207}b\377\243\243\224\377" "\255\265\263\377\222\216~\377_Q+\377J7\16\377\215I6\15\377\4I6\16\377" "XH,\377\212\204\224\377\252\252\325\377\202\254\254\331\377\204\257\257" "\334\377\6\260\260\335\377\261\261\336\377\256\256\332\377\250\250\325" "\377\245\245\323\377\244\244\322\377\203\246\246\324\377\3\243\243\320" "\377zqx\377I6\16\377\222I6\15\377\3J7\17\377dWI\377\230\226\271\377\202" "\242\242\320\377\3\240\240\316\377\241\241\317\377\240\240\316\377\203" "\232\232\311\377\202\225\225\304\377\3\226\226\305\377\230\230\307\377" "\224\224\303\377\204\225\225\304\377\2\230\230\307\377\226\226\305\377" "\202\223\223\302\377\2\220\220\300\377\212\212\273\377\202\205\205\266" "\377\12\201\201\262\377}}\256\377zz\253\377uu\247\377ss\245\377pp\242" "\377nn\241\377ii\234\377ll\237\377ii\234\377\202ee\230\377\3dd\230\377" "cc\227\377aa\224\377\202^^\222\377\202``\224\377\10bb\226\377cc\227\377" "aa\225\377cc\227\377dd\230\377ff\231\377ee\230\377dd\230\377\202hh\233" "\377\2gg\233\377ff\232\377\203dd\230\377\10aa\225\377``\224\377]]\221" "\377\\\\\221\377[[\220\377YY\216\377WW\214\377SS\210\377\202RR\210\377" "\6PP\205\377NN\204\377LL\201\377KK\201\377FF}\377CCz\377\202AAx\377\6" ">>u\377<>u\377==u\377<>u\377\202\77\77v\377\202>>u\377\1<'\377J:\"\377K8!\377K8\40" "\377N:!\377O:\"\377N:\"\377M9\40\377N:!\377N;\40\377K;\40\377L&\377J>%\377F>%\377D=%\377B=$\377B=%\377A<$\377" "B<$\377E=%\377F\77(\377F\77)\377F>)\377yuk\377\77;-\377LC-\377OF2\377" "UN\77\377db\\\377zsb\377\207\207y\377\203\211p\377\226\237{\377\265\273" "\222\377\310\312\240\377\307\310\237\377\270\271\217\377\234\242z\377" "v\201[\377RX7\377FC(\377E\77&\377C\77$\377C\77\"\377E@&\377ML-\377ih" "C\377\217\205\\\377\246\224l\377\252\226n\377\236\220h\377\206\203Z\377" "nqI\377ekI\377rw\\\377qr^\377cj^\377UZX\377GA4\377aR6\377r]>\377|dE\377" "|dC\377ubC\377k[<\377aT8\377n\\G\377\234\203t\377\225\202\201\377j[[" "\377]RC\377VN4\377IB&\377E>\"\377F>#\377H@%\377LE*\377QL2\377WaN\377" "\207\222\206\377\242\234\227\377\205{r\377\\L/\377J7\16\377\221I6\15" "\377\4J7\17\377fYI\377\232\226\263\377\254\254\330\377\202\254\254\331" "\377\4\257\257\333\377\257\257\334\377\256\256\332\377\253\253\330\377" "\202\247\247\324\377\1\246\246\324\377\202\242\242\320\377\4\244\244" "\322\377\225\222\260\377dWH\377J7\17\377\222I6\15\377\5VE(\377\205\177" "\220\377\242\242\320\377\244\244\322\377\242\242\320\377\202\237\237" "\316\377\1\240\240\316\377\202\233\233\312\377\3\231\231\307\377\230" "\230\307\377\226\226\305\377\202\221\221\301\377\1\225\225\304\377\202" "\224\224\303\377\202\222\222\301\377\23\225\225\304\377\223\223\302\377" "\222\222\301\377\220\220\300\377\214\214\274\377\213\213\273\377\207" "\207\267\377\204\204\264\377\201\201\262\377}}\256\377xx\252\377uu\250" "\377rr\244\377oo\241\377ll\237\377kk\236\377hh\233\377jj\235\377ee\230" "\377\202bb\226\377\3cc\227\377aa\225\377``\224\377\202]]\221\377\7\\" "\\\221\377^^\222\377__\223\377bb\226\377aa\225\377``\224\377aa\225\377" "\202cc\227\377\1dd\230\377\202ff\232\377\202ee\230\377\203cc\227\377" "\14aa\225\377``\224\377\\\\\221\377YY\216\377XX\215\377WW\214\377VV\213" "\377SS\210\377QQ\206\377OO\205\377LL\202\377JJ\200\377\202FF}\377\11" "CCz\377AAx\377\77\77v\377>>u\377<>u\377\1<%\377K>&\377K=&\377H>'\377E>'\377\202D\77" "(\377\202D>(\377@B\77'\377E\77'\377G\77(\377NI3\377`]F\377SN\77\377I" "C.\377QE/\377dZI\377\200\201|\377x|o\377vyb\377\214\221p\377\241\251" "\201\377\262\273\220\377\276\304\230\377\273\302\222\377\245\256\200" "\377\207\217e\377nuP\377RW7\377FD)\377D\77%\377B>#\377B>$\377C>#\377" "GA$\377YV3\377ztM\377\221\205[\377\224\210_\377\215\203^\377\206\202" "e\377\177\204t\377wur\377\\\\\\\377\77=;\3772,\37\377/-\30\377<:#\377" "\\M5\377jX<\377q\\<\377t]\77\377p_@\377cW9\377fbO\377\201\206\202\377" "\201x|\377l\\Y\377m[G\377o^A\377m^@\377l^\77\377j\\\77\377_U:\377MI." "\377C\77%\377KE2\377rsm\377}\212\222\377[_d\377RE+\377J8\20\377\225I" "6\15\377\3O=\31\377yoo\377\245\243\312\377\202\254\254\331\377\12\256" "\256\332\377\254\254\331\377\250\250\325\377\245\245\323\377\243\243" "\321\377\241\241\317\377\246\246\324\377\240\236\307\377tkl\377N=\31" "\377\222I6\15\377\16K8\20\377nc\\\377\242\240\310\377\244\244\322\377" "\244\244\321\377\242\242\320\377\240\240\316\377\236\236\314\377\235" "\235\313\377\233\233\312\377\230\230\307\377\225\225\304\377\230\230" "\307\377\227\227\306\377\203\221\221\301\377\3\220\220\277\377\217\217" "\276\377\221\221\301\377\202\220\220\277\377\7\221\221\301\377\220\220" "\300\377\217\217\276\377\215\215\275\377\214\214\274\377\213\213\273" "\377\205\205\265\377\202\202\202\263\377\5{{\254\377ww\251\377uu\250" "\377qq\244\377oo\241\377\202ll\237\377\3hh\233\377ii\234\377ff\232\377" "\204cc\227\377\4aa\225\377^^\222\377\\\\\221\377]]\221\377\202^^\222" "\377\4bb\226\377__\223\377]]\221\377``\224\377\202cc\227\377\1aa\224" "\377\202cc\227\377\202dd\230\377\1aa\225\377\202``\224\377\3__\223\377" "]]\221\377[[\217\377\202XX\215\377\3WW\214\377VV\213\377SS\210\377\202" "QQ\206\377\7OO\205\377LL\202\377GG~\377FF}\377DD{\377CCz\377AAx\377\202" "@@w\377\3::q\37788p\37777o\377\20277n\377\20233k\377\20222j\377\2032" "2k\377\3""33k\37755m\37777n\377\20477o\377\1::q\377\20399q\377\3==u\377" "<0\32\377\77""1\32\377>1\30\377>1\31\377" "A2\34\377E4\34\377I6\40\377I8\"\377G8\"\377J9\"\377K;\"\377L<#\377I8" "\36\377I7\36\377M9\40\377N:\"\377P:\"\377Q;\"\377R<$\377R<'\377R>&\377" "N=$\377J=$\377J;'\377H<'\377G>(\377F=)\377I\77+\377F@*\377C@)\377A>*" "\377><+\377BA-\377KI;\377WZL\377`f[\377nj`\377rl`\377daR\377ceV\377b" "cS\377vu[\377bjU\377nuY\377\203\213g\377\231\242w\377\257\267\210\377" "\302\306\226\377\303\305\224\377\273\276\215\377\244\255}\377\204\220" "e\377\\h>\377FK(\377\77\77#\377A=#\377B>$\377C\77#\377FA%\377GA'\377" "GC(\377TT6\377ssT\377\214\216r\377\222\224\200\377\211\211z\377ecY\377" "62)\377.)\33\377.)\25\377*)\22\377()\23\377.-\26\377D\77%\377]L2\377" "q^B\377wbF\377jU:\377|mX\377\205\177|\377qlt\377VMK\377]S\77\377hZ@\377" "n^B\377vdG\377zfI\377zgJ\377vdG\377k[@\377ccN\377\177\203y\377~yz\377" "TLK\377L>&\377J8\20\377\231I6\15\377\13WF*\377\213\204\224\377\252\252" "\325\377\251\251\326\377\246\246\324\377\243\243\321\377\245\245\323" "\377\241\241\317\377\240\237\314\377\203}\215\377VF*\377\223I6\15\377" "\7]N7\377\220\213\242\377\246\246\324\377\245\245\323\377\241\241\317" "\377\240\240\316\377\236\236\314\377\202\233\233\312\377\2\235\235\313" "\377\232\232\311\377\202\225\225\304\377\202\220\220\300\377\202\214" "\214\274\377\5\217\217\276\377\216\216\276\377\215\215\275\377\214\214" "\274\377\217\217\276\377\203\216\216\276\377\21\214\214\274\377\212\212" "\273\377\207\207\267\377\205\205\265\377\200\200\261\377\177\177\260" "\377||\256\377xx\252\377ss\245\377pp\242\377nn\241\377jj\235\377hh\233" "\377ee\230\377cc\227\377dd\230\377bb\226\377\203^^\222\377\202]]\221" "\377\2ZZ\216\377YY\216\377\203ZZ\216\377\1]]\221\377\202[[\220\377\11" "]]\221\377__\223\377``\224\377]]\221\377aa\224\377aa\225\377bb\226\377" "aa\225\377``\224\377\202__\223\377\16]]\221\377[[\217\377ZZ\216\377X" "X\215\377WW\214\377VV\213\377UU\212\377QQ\206\377MM\203\377LL\202\377" "LL\201\377II\177\377FF|\377CCz\377\202AAx\377\3\77\77v\377<>u\377;;r\377\20288" "p\377\20255m\377\1""44l\377\20700h\377\2""22j\37700h\377\20322k\377\3" "55m\37744l\37766n\377\20277o\377\3""77n\37777o\37788p\377\202::q\377" "\1""88p\377\20277o\377\20277n\377\20266n\377\20255m\377\1""33k\377\205" "22k\377\20400h\377\2//h\377..g\377\205,,e\377\202**c\377\204))b\377\4" "((b\377''`\377&&_\377%%^\377\203\"\"[\377\203\36\36X\377\1\35\35W\377" "\202\34\34V\377\202\31\31T\377\1\25\25P\377\202\23\23N\377\202\22\22" "N\377\202\22\22M\377\202\21\21L\377\203\22\22N\377\202\23\23N\377\1\22" "\22M\377\202\20\20K\377\1\22\22M\377\205\22\22N\377\202\22\22M\377\1" "\17\17K\377\203\21\21L\377\1\25\25P\377\202\23\23N\377\206\25\25P\377" "\203\24\24O\377\206\22\22N\377\202\22\22M\377\1\21\21L\377\205\20\20" "K\377\203\17\17K\377\1\16\16J\377\211\15\15I\377\202\15\15H\377\1\13" "\13G\377\210\12\12F\377\205\10\10E\377bA5#\377\77""3\40\377\77""2\36" "\377;1\36\377<1\36\37790\32\37780\30\377:0\32\377=2\34\377A1\34\377B" "2\36\377@3\36\377A4\36\377B4\40\377C7!\377E9#\377F:%\377F8\37\377G8\37" "\377G8\"\377G8#\377H8!\377H7\"\377K9%\377N:&\377J;'\377G;)\377M>3\377" "UMA\377f^U\377tql\377{y~\377^_d\377`\\Y\377ZVY\377LHH\377\77\77""9\377" "<<1\377\77>.\377B@+\377DB,\377JM0\377Zc<\377kzJ\377y\215V\377\205\234" "b\377\223\250m\377\233\256o\377\241\263v\377\246\272~\377\253\300\204" "\377\253\301\204\377\250\273\177\377\233\255r\377\207\227^\377k{I\377" "Q[1\377CE#\377\77<\40\377\77""9\40\377A;%\377[R@\377yk^\377~qm\377xm" "h\377aWK\377OE5\377LB.\377IB+\377D=%\377>8\40\37750\32\377.)\22\377+" "'\17\377'$\16\377&#\16\377'%\21\37797(\377^\\R\377}uq\377\213yv\377\201" "h^\377iW\77\377hZC\377bW\77\377RK4\377KE,\377JC*\377MF.\377QH0\377UK" "3\377XK5\377nma\377\211\213\214\377\211|\202\377paY\377cQ8\377Q>\30\377" "\240I6\15\377\5N<\30\377pfd\377vmr\377k`[\377M;\27\377\223I6\15\377\2" "dVF\377\236\233\276\377\202\247\247\324\377\5\245\245\323\377\243\243" "\321\377\237\237\316\377\235\235\313\377\236\236\314\377\203\231\231" "\307\377\1\225\225\304\377\202\221\221\301\377\202\217\217\276\377\3" "\216\216\276\377\211\211\271\377\212\212\272\377\203\211\211\271\377" "\3\214\214\274\377\213\213\273\377\212\212\273\377\202\212\212\272\377" "\4\207\207\267\377\206\206\267\377\205\205\265\377\202\202\263\377\202" "}}\256\377\13zz\253\377tt\246\377pp\243\377nn\241\377ii\234\377hh\233" "\377ff\232\377cc\227\377aa\224\377``\224\377]]\221\377\202YY\216\377" "\202ZZ\216\377\7WW\214\377VV\213\377TT\211\377UU\212\377WW\214\377VV" "\213\377XX\215\377\203WW\214\377\2[[\217\377]]\221\377\202[[\220\377" "\4]]\221\377``\224\377__\223\377]]\221\377\203[[\217\377\14ZZ\216\377" "XX\215\377VV\213\377TT\211\377SS\210\377RR\210\377NN\204\377MM\203\377" "LL\202\377KK\201\377JJ\200\377GG~\377\202DD{\377\4CCz\377AAx\377>>u\377" ";;r\377\202::q\377\20255m\377\1""44l\377\20400h\377\203..g\377\20200" "h\377\11""22j\37700h\37722j\37733k\37722j\37733k\37744l\37766n\37755" "m\377\20266n\377\1""77n\377\20277o\377\1""66n\377\20355m\377\20244l\377" "\1""33k\377\20222k\377\1""22j\377\20600h\377\204--f\377\2,,e\377++d\377" "\205**c\377\206((b\377\1&&_\377\204%%^\377\204\"\"[\377\202!![\377\3" "\37\37Y\377\35\35W\377\31\31T\377\202\27\27R\377\2\25\25P\377\23\23N" "\377\202\22\22N\377\202\22\22M\377\202\22\22N\377\1\23\23N\377\202\24" "\24O\377\1\22\22N\377\203\22\22M\377\202\22\22N\377\202\23\23N\377\203" "\24\24O\377\205\22\22N\377\202\20\20K\377\204\23\23N\377\205\24\24O\377" "\206\22\22N\377\202\22\22M\377\1\21\21L\377\205\20\20K\377\203\17\17" "K\377\1\16\16J\377\205\15\15I\377\204\15\15H\377\203\13\13G\377\205\12" "\12F\377\206\10\10E\377\202\7\7C\377%\77""6\"\37780\34\377;/\34\377=" "4\"\377>5%\37781\35\377:2\33\377<2\35\377@4\37\377A3\36\377C3\36\377" "A4\36\377B5\"\377D6$\377D7&\377H<*\377F:'\377H;%\377G9%\377D8$\377E8" ")\377J>2\377SKC\377ic_\377z||\377rz\204\377{\200\213\377\200v\205\377" "vfj\377gWV\377[PL\377OD=\377G=1\377F\77+\377C>+\377D>+\377B\77,\377\202" "A@,\377:@@+\377IN3\377[gA\377o\201P\377\201\226]\377\217\247g\377\233" "\266r\377\237\270v\377\243\272z\377\246\273\177\377\253\275\204\377\244" "\266\177\377\224\247q\377\204\227b\377p\201O\377Zj=\377GO*\377=\77'\377" "KF6\377iaX\377|wu\377{sq\377i^]\377QD>\377M\77""0\377OA-\377NB)\377L" "@'\377I\77'\377E=&\377>6\37\37760\30\377.+\25\377+'\23\377+)\31\377D" "@5\377efa\377vrw\377kgs\377UMO\377R@7\377]H4\377gQ5\377gS4\377aQ3\377" "WL1\377]YC\377ST;\377@@%\377GA*\377KD.\377k_P\377\222\207\202\377mfk" "\377RIH\377XM6\377Q@\33\377J7\16\377\263I6\15\377\204H5\14\377\14RA\"" "\377\213\206\230\377\250\250\324\377\251\251\326\377\246\246\324\377" "\243\243\321\377\242\242\320\377\241\241\317\377\236\236\314\377\233" "\233\312\377\230\230\307\377\226\226\305\377\202\224\224\303\377\5\223" "\223\302\377\216\216\276\377\214\214\274\377\212\212\273\377\211\211" "\271\377\202\206\206\267\377\1\212\212\272\377\203\206\206\267\377\2" "\205\205\266\377\206\206\267\377\203\211\211\271\377\11\206\206\267\377" "\205\205\265\377\202\202\263\377\200\200\261\377{{\255\377{{\254\377" "ww\251\377qq\244\377oo\241\377\202kk\236\377\3hh\233\377ee\230\377cc" "\227\377\202aa\225\377\1]]\221\377\202[[\220\377\4\\\\\221\377[[\220" "\377YY\216\377WW\214\377\202VV\213\377\2WW\214\377VV\213\377\202XX\215" "\377\203WW\214\377\1YY\216\377\202[[\217\377\4[[\220\377]]\221\377[[" "\220\377[[\217\377\203ZZ\216\377\7WW\214\377VV\213\377TT\211\377RR\210" "\377QQ\207\377QQ\206\377PP\205\377\202LL\202\377\10II\177\377HH~\377" "FF}\377EE{\377AAx\377@@w\377\77\77v\377<\377" "Q_J\377]j[\377dsh\377lyj\377cg^\377oon\377{}{\377|s\177\377riu\377fZ" "e\377\\QV\377QDF\377D88\377F60\377K8+\377QA3\377VL>\377M\77,\377O\77" "*\377L>*\377H>*\377G>+\377\202E>*\377:E@+\377EA,\377GE.\377RX9\377co" "G\377u\210W\377\204\235b\377\223\260n\377\234\271v\377\235\270w\377\240" "\272}\377\241\266}\377\236\261{\377\221\243q\377\200\221b\377esI\377" "V]=\377bdO\377vrj\377vxy\377hek\377OHJ\377@8-\377C;*\377I>*\377I@(\377" "KB'\377NA(\377K\77&\377I;#\377IA(\377>5\40\377<1\36\377:4#\377_^R\377" "knm\377hjp\377TPQ\377:42\3772+$\377<2\"\377G>%\377UF*\377`L/\377gQ1\377" "eQ2\377`P2\377TK,\377MF+\377^^J\377^j]\377LUC\377[ZB\377]RD\377QE=\377" "RH2\377L>\34\377I7\16\377\204I6\15\377\4ZJ-\377tia\377xmh\377YH+\377" "\243I6\15\377\214H5\14\377\15K8\21\377pea\377\241\240\312\377\246\246" "\324\377\247\247\324\377\244\244\322\377\241\241\317\377\236\236\314" "\377\233\233\312\377\232\232\310\377\226\226\305\377\231\231\307\377" "\225\225\304\377\203\220\220\300\377\3\214\214\274\377\213\213\273\377" "\212\212\273\377\202\207\207\267\377\13\205\205\265\377\202\202\263\377" "\205\205\266\377\204\204\264\377\203\203\264\377\205\205\265\377\203" "\203\264\377\204\204\264\377\205\205\265\377\207\207\267\377\205\205" "\266\377\202\202\202\263\377\2~~\257\377zz\253\377\202ww\251\377\13t" "t\246\377nn\241\377ll\237\377ii\234\377ff\231\377cc\227\377bb\226\377" "``\224\377^^\222\377``\224\377]]\221\377\203YY\216\377\202WW\214\377" "\1VV\213\377\202UU\212\377\5VV\213\377UU\212\377WW\214\377XX\215\377" "YY\216\377\202WW\214\377\1YY\216\377\202ZZ\216\377\4[[\217\377]]\221" "\377[[\220\377[[\217\377\203XX\215\377\7WW\214\377VV\213\377TT\211\377" "QQ\206\377PP\205\377OO\205\377NN\204\377\202LL\201\377\4HH~\377GG~\377" "EE{\377AAx\377\202>>u\377\3<C\377G<8\377I91\377K;/\377" "N=,\377M<*\377L;(\377K9(\377H8$\377G8&\377M:,\377pf`\377@5,\377L<)\377" "M>)\377J='\377J>(\377K\77+\377I>)\377H>)\377H\77*\377IA*\377JE,\377R" "W7\377cpE\377v\214U\377\205\241d\377\220\257m\377\230\266t\377\233\271" "v\377\242\273|\377\237\265|\377\226\251x\377\214\241y\377\217\235\202" "\377\216\214\177\377roi\377WSO\377EA7\377>;+\377>='\377A=%\377B;\40\377" "E<\"\377\202C=#\377\36F=$\377E;#\377F;$\377QK7\377^\\M\377YIC\377\226" "\211\206\377_Y]\377I\77""8\3773/'\3772.\37\37751\34\37772\32\377<4\33" "\377@9\36\377LC&\377ZI-\377eO1\377gQ3\377cP2\377\\P8\377aXI\377xmc\377" "^VG\377wyv\377\245\253\251\377LMJ\377H@/\377OA\"\377J8\20\377\204I6\15" "\377\10SA\40\377\202y}\377\260\257\326\377\267\267\343\377\271\271\344" "\377\260\256\322\377zol\377N<\27\377\227I6\15\377\225H5\14\377\4^O:\377" "\225\221\254\377\246\246\324\377\245\245\323\377\202\246\246\324\377" "\4\244\244\322\377\241\241\317\377\237\237\316\377\233\233\312\377\202" "\230\230\307\377\202\224\224\303\377\5\221\221\301\377\217\217\276\377" "\216\216\276\377\211\211\271\377\207\207\267\377\202\210\210\270\377" "\1\204\204\264\377\202\203\203\264\377\2\202\202\263\377\200\200\261" "\377\202\202\202\263\377\2\204\204\264\377\203\203\264\377\203\202\202" "\263\377\15\177\177\260\377~~\257\377{{\254\377yy\253\377uu\247\377t" "t\246\377qq\244\377kk\236\377ii\234\377ff\231\377dd\230\377aa\224\377" "__\223\377\202[[\220\377\2]]\221\377[[\217\377\205VV\213\377\203RR\210" "\377\3SS\210\377RR\210\377UU\212\377\203VV\213\377\11WW\214\377XX\215" "\377WW\214\377VV\213\377WW\214\377ZZ\216\377[[\217\377ZZ\216\377WW\214" "\377\203VV\213\377\4UU\212\377RR\210\377OO\205\377NN\204\377\202MM\203" "\377\202KK\201\377\4GG~\377FF}\377EE{\377AAx\377\202>>u\377\3<0\377\77" "7-\377=7-\377>5+\377=5)\377\77""7)\377\77""7'\377;3$\377XRK\377Xb]\377" "*\377O>+\377M;(\377J" "7$\377H8$\377C7\"\377I;)\377F8+\377H:)\377K;'\377K=)\377K>*\377L>(\377" "M\77)\377L>)\377K\77'\377J\77(\377I@+\377JD-\377VZ9\377ixI\377y\221X" "\377\210\244e\377\221\256l\377\230\265v\377\245\276\205\377\252\301\217" "\377\267\305\243\377\250\265\231\377\215\225}\377os[\377QQ;\377HE-\377" "HD+\377HC(\377A\77\"\377@>\"\377A9\40\377B=\"\377KB'\377VG-\377jZ" "B\377\205ub\377\227\213\202\377\220\205\205\377qbg\377[MF\377RG4\377" "NH2\377SPF\377rl^\377G7\22\377\204I6\15\377\3M:\24\377ujc\377\251\247" "\311\377\205\267\267\343\377\4\271\270\343\377\237\233\263\377cT\77\377" "I7\16\377\212I6\15\377\236H5\14\377\5N<\30\377}u~\377\244\243\317\377" "\246\246\324\377\245\245\323\377\202\246\246\324\377\16\241\241\317\377" "\237\237\316\377\235\235\313\377\232\232\310\377\230\230\307\377\224" "\224\303\377\223\223\302\377\220\220\277\377\214\214\274\377\216\216" "\276\377\217\217\276\377\212\212\273\377\211\211\271\377\207\207\267" "\377\202\202\202\263\377\10\200\200\261\377}}\256\377\177\177\260\377" "\200\200\261\377\177\177\260\377\200\200\261\377~~\257\377\177\177\260" "\377\202\200\200\261\377\6\201\201\262\377\177\177\260\377}}\256\377" "||\256\377xx\252\377tt\246\377\202ss\245\377\7nn\241\377hh\233\377gg" "\233\377dd\230\377aa\224\377__\223\377]]\221\377\203ZZ\216\377\1WW\214" "\377\202TT\211\377\4UU\212\377TT\211\377RR\210\377QQ\207\377\202OO\205" "\377\202PP\205\377\5QQ\206\377SS\210\377RR\210\377QQ\207\377QQ\206\377" "\202TT\211\377\202UU\212\377\202WW\214\377\202VV\213\377\203UU\212\377" "\3RR\210\377QQ\206\377PP\205\377\202LL\202\377\15LL\201\377JJ\200\377" "FF}\377EE{\377DD{\377BBy\377AAx\377@@w\377<6&\377@;+\377B\77""4\377\213\212\206\377/22\3772.$\37782\"\377" "<6$\377>8&\377C9(\377K<+\377\202M=*\377\11K;&\377J7%\377I7%\377G8%\377" "J>,\377G;*\377I:(\377L<)\377L=+\377\202L>*\3777L>(\377K='\377M='\377" "G='\377F>/\377PM=\377inW\377\201\221s\377\230\255\214\377\245\270\226" "\377\263\301\242\377\263\302\243\377\260\275\237\377\232\250\200\377" "\212\226m\377r\177W\377^iE\377OR4\377KG+\377KD&\377JC)\377GB)\377C\77" "%\377@=#\377\77:&\377IC5\377c]U\377~y{\377wv\202\377_]e\377DB\77\377" ":9.\377>;)\377>;#\377<;\"\377:9!\37796\"\377:7!\377;8\40\377>;#\377<" ":\"\377;;&\377JG7\377g`U\377\204\203{\377\213\204\205\377\210tm\377x" "]L\377lU>\377dS9\377]Q6\377YO3\377SK/\377PE&\377J:\24\377\204I6\15\377" "\4K8\20\377i[J\377\243\237\271\377\267\266\342\377\206\267\267\343\377" "\202\271\271\344\377\3\265\264\334\377\212\202\212\377SA\40\377\246H" "5\14\377\3i]S\377\230\226\271\377\245\245\323\377\202\246\246\324\377" "\1\245\245\323\377\202\246\246\324\377\16\241\241\317\377\237\237\316" "\377\235\235\313\377\232\232\310\377\230\230\307\377\224\224\303\377" "\223\223\302\377\220\220\277\377\214\214\274\377\216\216\276\377\217" "\217\276\377\212\212\273\377\211\211\271\377\207\207\267\377\202\202" "\202\263\377\10\200\200\261\377}}\256\377\177\177\260\377\200\200\261" "\377\177\177\260\377\200\200\261\377~~\257\377\177\177\260\377\202\200" "\200\261\377\6\201\201\262\377\177\177\260\377}}\256\377||\256\377xx" "\252\377tt\246\377\202ss\245\377\7nn\241\377hh\233\377gg\233\377dd\230" "\377aa\224\377__\223\377]]\221\377\203ZZ\216\377\1WW\214\377\202TT\211" "\377\4UU\212\377TT\211\377RR\210\377QQ\207\377\202OO\205\377\202PP\205" "\377\5QQ\206\377SS\210\377RR\210\377QQ\207\377QQ\206\377\202TT\211\377" "\202UU\212\377\202WW\214\377\202VV\213\377\203UU\212\377\3RR\210\377" "QQ\206\377PP\205\377\202LL\202\377\15LL\201\377JJ\200\377FF}\377EE{\377" "DD{\377BBy\377AAx\377@@w\377<\377CE6\3779<,\37775$\37783\"\377" "B=,\377QL=\377@>4\377^^Z\377UYT\377,+$\37720#\37763#\37775#\377;7%\377" "\77""8'\377D;)\377G<)\377H<(\377I:&\377I9&\377I;(\377M\77-\377L>+\377" "K;*\377K=*\377J<,\377J<-\377K<.\377QH=\377\\XO\377spk\377\206y|\377\206" "\204\207\377\207\204\216\377\200~\206\377zyu\377vzh\377t}^\377z\207]" "\377\202\221a\377\211\224d\377\205\217a\377|\206Z\377nwO\377[bA\377L" "O4\377HD+\377JB*\377LC*\377G\77(\377JD3\377^`Q\377wzp\377|{}\377lhs\377" "OKN\377;<6\3779:/\377:<(\3778>#\3777>!\3779=\40\3776<\37\3777;\37\377" "7:\37\37758\40\37776!\377<=,\377WZM\377vvp\377}{|\377wpv\377^TY\377S" "H@\377\\L8\377gS6\377mX7\377o\\;\377kZ9\377\\O2\377RI+\377L>\30\377I" "6\16\377\204I6\15\377\4]N4\377\226\220\241\377\265\264\337\377\267\267" "\343\377\202\264\264\340\377\1\266\266\342\377\205\267\267\343\377\1" "\270\270\344\377\202\271\271\344\377\3\250\246\307\377naU\377I6\16\377" "\242H5\14\377\5RA\40\377\214\207\234\377\246\246\324\377\244\244\321" "\377\247\247\324\377\202\244\244\321\377\1\241\241\317\377\202\242\242" "\320\377\4\237\237\315\377\233\233\312\377\232\232\311\377\227\227\306" "\377\202\224\224\303\377\7\220\220\277\377\217\217\276\377\216\216\276" "\377\212\212\272\377\211\211\271\377\205\205\265\377\202\202\263\377" "\202\203\203\264\377\1\177\177\260\377\203~~\257\377\202||\256\377\202" "~~\257\377\2\177\177\260\377~~\257\377\202||\256\377\17{{\255\377zz\253" "\377xx\252\377tt\246\377qq\244\377pp\242\377nn\241\377kk\236\377dd\230" "\377cc\227\377``\224\377^^\222\377[[\217\377ZZ\216\377VV\213\377\202" "WW\214\377\1VV\213\377\202QQ\207\377\202QQ\206\377\2RR\210\377NN\204" "\377\202LL\202\377\202MM\203\377\1OO\205\377\202PP\205\377\7QQ\206\377" "PP\205\377RR\210\377SS\210\377QQ\207\377QQ\206\377TT\211\377\203UU\212" "\377\1QQ\207\377\203QQ\206\377\3PP\205\377MM\203\377JJ\200\377\202II" "\177\377\2HH~\377FF}\377\202EE{\377\202AAx\377\4==u\377<+\377H\77,\377J\77,\377I;)\377F:(\377J" ":*\377YD8\377[VN\377ifh\377yy~\377\203\177\210\377\216\210\222\377\216" "\203\211\377{qx\377h\\c\377WIS\377H=<\377E94\377F<1\377HA0\377NJ0\377" "SR4\377VX9\377^eC\377hlH\377mmH\377ilG\377^eA\377TX8\377IK1\377CA+\377" "FC.\377[XG\377tsj\377\200}\177\377{x~\377\\YW\377B>7\377=:-\377\77>+" "\377>\77*\377;>'\377;=(\3778>&\3775\77$\3775>#\3774:\40\37708\36\377" "7=&\377NNC\377kji\377y~\205\377uv~\377c[[\377MA;\377F=/\377F@+\377GB" "&\377TK,\377cS2\377lZ7\377pY9\377oX<\377m`F\377F7\26\377H5\15\377\204" "H5\14\377\4P>\33\377\212\202\213\377\265\265\337\377\267\267\343\377" "\207\264\264\340\377\1\266\266\342\377\203\267\267\343\377\6\266\266" "\342\377\264\264\341\377\263\263\337\377\257\257\332\377\217\211\235" "\377XH-\377\237H5\14\377\7L:\25\377rhe\377\244\244\320\377\245\245\323" "\377\244\244\322\377\243\243\321\377\244\244\322\377\203\244\244\321" "\377\2\244\244\322\377\242\242\320\377\202\233\233\312\377\202\225\225" "\304\377\202\221\221\301\377\1\216\216\276\377\203\212\212\273\377\11" "\207\207\267\377\205\205\265\377\203\203\264\377\200\200\261\377\177" "\177\260\377~~\257\377zz\253\377{{\254\377{{\255\377\202{{\254\377\1" "{{\255\377\202zz\253\377\7}}\256\377||\256\377{{\255\377yy\253\377xx" "\252\377uu\250\377pp\242\377\203mm\240\377\5gg\233\377cc\227\377aa\225" "\377]]\221\377[[\217\377\202WW\214\377\4TT\211\377UU\212\377VV\213\377" "RR\210\377\203OO\205\377\4MM\203\377OO\205\377LL\202\377JJ\200\377\202" "KK\201\377\6LL\201\377LL\202\377MM\203\377OO\205\377NN\204\377LL\202" "\377\202OO\205\377\6QQ\206\377PP\205\377RR\210\377SS\210\377RR\210\377" "QQ\207\377\204PP\205\377\4NN\204\377MM\203\377JJ\200\377HH~\377\202G" "G~\377\1FF}\377\202EE{\377\202AAx\377\12==u\377<-\377A='\377=<%\377=<'\377=>'\377=\77'\377=\77)\377=>(\377;" "='\3776;'\377EN<\377jqf\377x|~\377or~\377\\[c\377GDC\377\77:4\377E>," "\377JB(\377LC*\377LC)\377JC(\377KF)\377WL.\377]P4\377{t\\\377\240\220" "\205\377\213z`\377R\77\30\377\206H5\14\377\2wke\377\270\270\344\377\202" "\266\266\342\377\202\261\261\336\377\1\263\263\337\377\205\264\264\340" "\377\13\266\266\342\377\267\267\343\377\266\266\342\377\263\263\337\377" "\262\262\336\377\254\254\331\377\253\253\330\377\252\252\327\377\244" "\243\312\377wml\377L:\23\377\234H5\14\377\7_P<\377\227\224\262\377\246" "\246\324\377\245\245\323\377\244\244\322\377\242\242\320\377\245\245" "\323\377\204\241\241\317\377\5\237\237\316\377\233\233\312\377\226\226" "\305\377\225\225\304\377\223\223\302\377\202\217\217\276\377\3\212\212" "\273\377\207\207\267\377\206\206\267\377\202\205\205\265\377\1\203\203" "\264\377\202~~\257\377\2||\256\377zz\253\377\202xx\252\377\2yy\253\377" "zz\253\377\202xx\252\377\202uu\250\377\1ww\251\377\202yy\253\377\23x" "x\252\377uu\250\377tt\246\377ss\245\377pp\242\377ll\237\377kk\236\377" "ii\234\377ee\230\377aa\224\377``\224\377^^\222\377\\\\\221\377XX\215" "\377WW\214\377UU\212\377VV\213\377UU\212\377RR\210\377\203PP\205\377" "\202OO\205\377\1LL\202\377\203JJ\200\377\202KK\201\377\14LL\202\377M" "M\203\377LL\202\377KK\201\377MM\203\377OO\205\377QQ\206\377PP\205\377" "QQ\207\377RR\210\377QQ\207\377QQ\206\377\204PP\205\377\3MM\203\377LL" "\201\377II\177\377\203FF}\377\3EE{\377CCz\377AAx\377\202\77\77v\377\7" "<&\377E=&\377><\"\377;;#\377=<#\377<;!\377::$\377" "IK:\377kqf\377\207\211\211\377|}\204\377gis\377ACM\37712/\377:9(\377" ";;!\377@=!\377D\77\"\377FA%\377HD'\377FD&\377FA%\377IF-\377jiX\377\212" "\215\203\377\231\224\220\377{e]\377O;\30\377H5\13\377\207H5\14\377\6" "RA\37\377\215\206\222\377\260\260\332\377\262\262\336\377\261\261\336" "\377\260\260\335\377\202\261\261\336\377\1\263\263\337\377\205\264\264" "\340\377\6\262\262\336\377\257\257\333\377\254\254\331\377\252\252\327" "\377\247\247\324\377\250\250\325\377\202\245\245\323\377\3\226\223\260" "\377bTA\377I6\16\377\230H5\14\377\3Q\77\36\377\201y\204\377\247\247\324" "\377\202\246\246\324\377\5\242\242\320\377\243\243\321\377\236\236\314" "\377\241\241\317\377\242\242\320\377\202\233\233\312\377\11\234\234\313" "\377\236\236\314\377\231\231\307\377\226\226\305\377\221\221\301\377" "\217\217\276\377\212\212\272\377\212\212\273\377\207\207\267\377\203" "\205\205\265\377\1\203\203\264\377\202~~\257\377\5{{\254\377zz\253\377" "yy\253\377uu\247\377tt\246\377\203uu\247\377\4uu\250\377xx\252\377yy" "\253\377xx\252\377\203uu\247\377\22tt\246\377ss\245\377qq\244\377nn\241" "\377kk\236\377jj\235\377hh\233\377dd\230\377__\223\377]]\221\377[[\220" "\377YY\216\377WW\214\377VV\213\377QQ\207\377RR\210\377QQ\207\377PP\205" "\377\205LL\202\377\1JJ\200\377\202FF}\377\1GG~\377\202II\177\377\202" "KK\201\377\13II\177\377JJ\200\377LL\202\377MM\203\377LL\202\377LL\201" "\377MM\203\377OO\205\377QQ\206\377PP\205\377MM\203\377\204LL\201\377" "\2II\177\377HH~\377\202FF|\377\4EE{\377CCz\377AAx\377\77\77v\377\202" ">>u\377\3<(\377I\77%\377I\77'\377" "H\77$\377E\77$\377A=\377D\77""1\377EB-\377BB(\377@\77&\377A\77%\377@>\"\377" "BC'\377ER0\377TfA\377`uP\377z\213n\377\223\240\214\377\234\250\227\377" "\203\221\204\377dhU\377N\77\34\377\213H5\14\377\4I6\16\377fXH\377\237" "\234\273\377\257\257\334\377\202\261\261\336\377\202\257\257\334\377" "\202\263\263\337\377\202\264\264\340\377\4\261\261\336\377\255\255\332" "\377\252\252\327\377\251\251\326\377\203\247\247\324\377\6\246\246\324" "\377\247\247\324\377\250\250\325\377\244\244\317\377|sx\377H5\15\377" "\225H5\14\377\7H5\15\377l`X\377\235\232\276\377\245\245\323\377\244\244" "\321\377\243\243\321\377\241\241\317\377\202\240\240\316\377\3\235\235" "\313\377\234\234\313\377\236\236\314\377\202\233\233\312\377\13\231\231" "\307\377\232\232\310\377\223\223\302\377\220\220\300\377\217\217\276" "\377\211\211\271\377\212\212\272\377\211\211\271\377\205\205\265\377" "\203\203\264\377\200\200\261\377\202\177\177\260\377\5{{\254\377zz\253" "\377{{\254\377zz\253\377xx\252\377\203uu\250\377\202uu\247\377\4uu\250" "\377ww\251\377vv\250\377ww\251\377\202uu\250\377\5tt\246\377ss\245\377" "qq\244\377pp\243\377jj\235\377\202ii\234\377\6hh\233\377bb\226\377__" "\223\377^^\222\377[[\217\377WW\214\377\202VV\213\377\203RR\210\377\1" "PP\205\377\205LL\202\377\1II\177\377\203FF}\377\7GG~\377JJ\200\377KK" "\201\377LL\202\377LL\201\377KK\201\377LL\201\377\202LL\202\377\3KK\201" "\377MM\203\377NN\204\377\202PP\205\377\1MM\203\377\204LL\201\377\2II" "\177\377HH~\377\202EE{\377\11DD{\377CCz\377AAx\377\77\77v\377>>u\377" "<\377VI9\377LC3\377E\77" "-\377>:(\377>:'\377@:%\377A9%\377G;'\377J;&\377B7%\377GA/\377=8#\377" "D<%\377F>&\377D;#\377B:$\377LE6\377j_Y\377\201~\202\377~~}\377lik\377" "HDC\37774'\377B=*\377HC+\377KB*\377ND,\377OF,\377QI-\377PH-\377MH+\377" "MO.\377YhA\377v\221j\377\241\271\231\377\270\321\265\377\306\325\267" "\377\265\311\240\377\244\277\215\377\226\250y\377e^6\377\217H5\14\377" "\4N<\27\377~vz\377\252\251\321\377\257\257\334\377\202\261\261\336\377" "\202\257\257\334\377\10\261\261\336\377\262\262\336\377\256\256\332\377" "\253\253\330\377\251\251\326\377\250\250\325\377\252\252\327\377\250" "\250\325\377\203\247\247\324\377\4\251\251\326\377\250\250\324\377\201" "y\204\377H5\15\377\224H5\14\377\2WG+\377\216\211\240\377\202\247\247" "\324\377\4\246\246\324\377\244\244\322\377\243\243\321\377\237\237\316" "\377\202\236\236\314\377\3\233\233\312\377\230\230\307\377\232\232\311" "\377\202\232\232\310\377\3\225\225\304\377\221\221\301\377\217\217\276" "\377\202\212\212\272\377\1\205\205\265\377\202\206\206\267\377\5\200" "\200\261\377\177\177\260\377~~\257\377\200\200\261\377||\256\377\202" "yy\253\377\3ww\251\377uu\247\377ss\245\377\203tt\246\377\2ss\245\377" "tt\246\377\202pp\243\377\1qq\244\377\203tt\246\377\20rr\244\377pp\242" "\377nn\241\377kk\236\377gg\233\377ff\231\377dd\230\377cc\227\377]]\221" "\377YY\216\377XX\215\377WW\214\377SS\210\377QQ\207\377QQ\206\377MM\203" "\377\202PP\205\377\1MM\203\377\203JJ\200\377\202HH~\377\5GG~\377EE{\377" "FF}\377EE{\377FF|\377\202FF}\377\202JJ\200\377\5GG~\377HH~\377JJ\200" "\377KK\201\377JJ\200\377\204LL\202\377\1LL\201\377\204KK\201\377\202" "FF}\377\2DD{\377BBy\377\203AAx\377\4>>u\377<\377dS\77\377eS>\377dP<\377`N9\377XJ7\377RF3\377H@,\377H\77" ",\377F=(\377B;%\377C;#\377D9!\377C9#\377;1$\377\202\200\204\377+-0\377" "GB.\377VP<\377yxq\377\202\200\204\377umz\377SLQ\377;85\37744&\37736\40" "\37736\34\37777\35\377@>u\377<." "\377DB1\377KM8\377ML:\377VL\77\377^OD\377fSE\377vSG\377mXO\377b^`\377" "kdb\377jmg\377jxq\377r\201q\377{\217\177\377\177\227\210\377\205\233" "\217\377\240\255\262\377=BL\377YSG\377IC2\377A:-\377B9)\377D>%\377\77" "<\40\377:9\36\37768\36\37777\35\37787\35\377:9!\377A>$\377D@%\377EC%" "\377S[1\377\202\220^\377\247\272\212\377\303\325\254\377\303\327\242" "\377\263\317\210\377\266\323\203\377\277\336\210\377\304\344\216\377" "\274\335\212\377\206\222S\377N\77\24\377\225H5\14\377\3L9\23\377tif\377" "\246\245\313\377\202\257\257\334\377\4\254\254\331\377\251\251\326\377" "\242\242\320\377\240\240\316\377\202\244\244\322\377\6\245\245\323\377" "\244\244\322\377\244\244\321\377\242\242\316\377\200x\202\377P>\34\377" "\224H5\14\377\16]O9\377\226\223\261\377\250\250\325\377\245\245\323\377" "\246\246\324\377\244\244\321\377\242\242\320\377\240\240\316\377\236" "\236\314\377\234\234\313\377\233\233\312\377\227\227\306\377\232\232" "\310\377\226\226\305\377\202\221\221\301\377\202\223\223\302\377\4\220" "\220\277\377\217\217\276\377\212\212\273\377\207\207\267\377\202\205" "\205\265\377\4\202\202\263\377\177\177\260\377~~\257\377{{\254\377\202" "zz\253\377\5uu\247\377tt\246\377uu\247\377tt\246\377pp\242\377\202nn" "\241\377\4pp\242\377nn\241\377ll\237\377pp\242\377\202qq\244\377\11p" "p\242\377nn\241\377pp\242\377nn\241\377mm\240\377nn\241\377kk\236\377" "hh\233\377dd\230\377\202cc\227\377\6``\224\377[[\217\377XX\215\377WW" "\214\377TT\211\377RR\210\377\202QQ\206\377\4LL\201\377MM\203\377LL\201" "\377KK\201\377\204FF}\377\2FF|\377CCz\377\202AAx\377\5BBy\377DD{\377" "CCz\377DD{\377FF|\377\202DD{\377\3FF|\377FF}\377II\177\377\202FF}\377" "\2HH~\377JJ\200\377\202KK\201\377\1HH~\377\204FF}\377\3DD{\377BBy\377" "AAx\377\202@@w\377\2\77\77v\377<>&\377" "imY\377\224\245\214\377\270\311\242\377\274\325\231\377\275\332\206\377" "\273\337|\377\273\341z\377\276\342\200\377\276\344\204\377\302\346\211" "\377\233\254b\377YM\35\377G4\14\377\230H5\14\377\7WG*\377\212\204\226" "\377\246\246\322\377\250\250\325\377\247\247\324\377\244\244\321\377" "\242\242\320\377\202\241\241\317\377\5\243\243\321\377\245\245\322\377" "\220\214\246\377\\M7\377H5\15\377\223H5\14\377\7N<\31\377\204}\211\377" "\245\245\317\377\245\245\323\377\246\246\324\377\244\244\321\377\245" "\245\323\377\202\241\241\317\377\2\235\235\313\377\233\233\312\377\202" "\231\231\307\377\5\230\230\307\377\226\226\305\377\225\225\304\377\222" "\222\301\377\220\220\300\377\202\221\221\301\377\10\213\213\273\377\212" "\212\273\377\205\205\266\377\203\203\264\377\201\201\262\377\202\202" "\263\377\201\201\262\377||\256\377\203{{\254\377\1xx\252\377\202uu\250" "\377\3tt\246\377qq\244\377pp\243\377\204nn\241\377\2oo\241\377pp\242" "\377\202nn\241\377\1mm\240\377\203nn\241\377\15ll\237\377jj\235\377i" "i\234\377ff\232\377cc\227\377bb\226\377aa\224\377^^\222\377XX\215\377" "VV\213\377UU\212\377SS\210\377QQ\207\377\202PP\205\377\4LL\202\377NN" "\204\377LL\202\377II\177\377\202FF}\377\1GG~\377\202FF}\377\1EE{\377" "\203BBy\377\4CCz\377BBy\377CCz\377FF|\377\203EE{\377\1FF|\377\204FF}" "\377\3HH~\377II\177\377HH~\377\205FF}\377\4DD{\377BBy\377AAx\377\77\77" "v\377\202>>u\377\1<F\377L8A\377K9\77\377@01\377\77/" "1\377=11\377=50\377C5.\377I90\377N\77""3\377RA4\377UC2\377YF5\377]H7" "\377\\K6\377ZG6\377YG4\377UG1\377QE.\377MD.\377F@*\377A=&\377@<)\377" "87#\377njZ\377;=1\37797\40\377\77""9\37\377A:\36\377A<\37\377@;\37\377" "\77""9\36\377=7\35\37724\33\377CJ6\377t}k\377\233\245\223\377\253\300" "\242\377\236\302\221\377\241\307\177\377\261\327\200\377\275\342\203" "\377\304\350\207\377\303\350\211\377\302\346\210\377\303\347\211\377" "\247\275l\377e])\377G4\13\377\233H5\14\377\5J7\16\377i]R\377\227\224" "\270\377\235\235\313\377\241\241\317\377\202\240\240\316\377\4\241\241" "\317\377\227\225\271\377l`Y\377J7\17\377\223H5\14\377\3I6\16\377j]S\377" "\240\237\305\377\203\246\246\324\377\10\244\244\322\377\243\243\321\377" "\241\241\317\377\237\237\316\377\235\235\313\377\233\233\312\377\230" "\230\307\377\231\231\307\377\202\225\225\304\377\4\222\222\301\377\220" "\220\300\377\220\220\277\377\223\223\302\377\202\216\216\276\377\10\210" "\210\270\377\206\206\267\377\205\205\265\377\200\200\261\377\201\201" "\262\377\177\177\260\377}}\256\377{{\254\377\202yy\253\377\12xx\252\377" "uu\250\377ss\245\377qq\244\377oo\241\377nn\241\377ll\237\377jj\235\377" "ll\237\377nn\241\377\202kk\236\377\1mm\240\377\202ll\237\377\202kk\236" "\377\6mm\240\377kk\236\377ii\234\377gg\233\377ff\232\377dd\230\377\202" "cc\227\377\15^^\222\377]]\221\377XX\215\377VV\213\377SS\210\377RR\210" "\377OO\205\377MM\203\377LL\202\377JJ\200\377LL\201\377KK\201\377HH~\377" "\203EE{\377\4DD{\377CCz\377AAx\377@@w\377\205AAx\377\5EE{\377DD{\377" "CCz\377BBy\377CCz\377\202EE{\377\3FF|\377FF}\377GG~\377\203FF}\377\204" "EE{\377\1CCz\377\202AAx\377\203<*\377A6%\377\77""3\"\377\77""5$\377B8&\377C8%\377F;'\377M=,\377" "P@,\377UC/\377XE0\377ZG3\377]I3\377ZH1\377YH1\377UH1\377RE0\377MC.\377" "H@,\377E>)\377;3\40\377|us\377PPK\37785\37\377=9\37\377A:\37\377@9\36" "\377<9%\377LN@\377rwl\377\231\247\226\377\266\312\251\377\267\320\231" "\377\265\324\214\377\266\333\211\377\273\337\210\377\276\342\207\377" "\301\345\212\377\302\345\213\377\302\345\214\377\276\344\212\377\253" "\313y\377on6\377I6\15\377\237H5\14\377\7Q\77\36\377|t\200\377\234\234" "\310\377\237\237\315\377\236\236\311\377|t}\377O>\34\377\224H5\14\377" "\4XI/\377\215\210\234\377\250\250\325\377\247\247\324\377\202\245\245" "\323\377\3\244\244\322\377\241\241\317\377\237\237\316\377\202\235\235" "\313\377\3\232\232\310\377\232\232\311\377\224\224\303\377\202\225\225" "\304\377\5\222\222\301\377\221\221\301\377\217\217\276\377\213\213\273" "\377\215\215\275\377\203\207\207\267\377\2\203\203\264\377\200\200\261" "\377\202}}\256\377\22{{\254\377zz\253\377xx\252\377vv\250\377xx\252\377" "uu\247\377qq\244\377pp\243\377pp\242\377oo\241\377ll\237\377kk\236\377" "ll\237\377nn\241\377kk\236\377ii\234\377jj\235\377mm\240\377\203kk\236" "\377\202ll\237\377\202hh\233\377\3ff\232\377dd\230\377``\224\377\202" "]]\221\377\6[[\220\377XX\215\377VV\213\377TT\211\377QQ\206\377OO\205" "\377\202LL\202\377\5LL\201\377GG~\377JJ\200\377II\177\377FF}\377\202" "DD{\377\202CCz\377\2BBy\377AAx\377\203\77\77v\377\6AAx\377@@w\377AAx" "\377DD{\377CCz\377BBy\377\202CCz\377\1EE{\377\202DD{\377\1EE{\377\204" "FF}\377\1EE{\377\203DD{\377\203AAx\377\202==u\377\7</\377SI=\377I:,\377N\77""1\377" "\202L\77""0\3778JA1\377HA/\377LF1\377NE.\377MF,\377PE.\377QD.\377TD1" "\377PC.\377L@(\377O@*\377O@-\377N\77-\377N=+\377K<*\377G:(\377@5\"\377" "B4\"\377B7%\377C8'\377F8(\377H9(\377N>,\377TB0\377XE0\377XF2\377[J1\377" "YI1\377XI2\377YJ4\377UG1\377PF0\377ME0\377IC,\377F>*\377JE7\377@<*\377" ";4\36\377=:(\377e`R\377\202}u\377\214\207\211\377lrs\377z\215f\377\255" "\301w\377\316\340\216\377\326\351\230\377\322\352\233\377\306\347\225" "\377\300\345\217\377\277\345\213\377\276\345\212\377\275\344\212\377" "\261\325\201\377z\202C\377K:\20\377\242H5\14\377\4H5\15\377ZK4\377[L" "7\377TD(\377\224H5\14\377\3L9\24\377xnp\377\246\245\317\377\202\246\246" "\324\377\10\245\245\323\377\244\244\322\377\244\244\321\377\241\241\317" "\377\236\236\314\377\235\235\313\377\232\232\311\377\232\232\310\377" "\203\225\225\304\377\7\221\221\301\377\223\223\302\377\217\217\276\377" "\213\213\273\377\212\212\273\377\207\207\267\377\212\212\272\377\202" "\205\205\266\377\6\204\204\264\377\202\202\263\377||\256\377{{\254\377" "zz\253\377vv\250\377\203uu\247\377\7tt\246\377pp\243\377pp\242\377nn" "\241\377mm\240\377ll\237\377jj\235\377\202hh\233\377\3ii\234\377gg\233" "\377hh\233\377\205ii\234\377\203hh\233\377\4gg\233\377ee\230\377cc\227" "\377aa\225\377\202]]\221\377\15[[\220\377XX\215\377TT\211\377RR\210\377" "QQ\206\377NN\204\377LL\202\377KK\201\377JJ\200\377FF}\377KK\201\377H" "H~\377EE{\377\204BBy\377\3AAx\377@@w\377>>u\377\202==u\377\1>>u\377\202" "\77\77v\377\205AAx\377\202DD{\377\202BBy\377\2CCz\377DD{\377\202EE{\377" "\1CCz\377\204AAx\377\202\77\77v\377\10<\377@;/\377E=,\377KB2\377J>.\377O=" ",\377O>.\377P\77.\377L\77,\377M@.\377RD2\377RE3\377RF3\377RE1\377RC-" "\377RC+\377QE-\377NB,\377P\77+\377Q@-\377RC/\377PA,\377P@-\377M>,\377" "J<)\377E<'\377B8\"\377A5#\377C7&\377E9*\377H<,\377K>-\377N\77""1\377" "QA3\377QE7\377TG4\377OH2\377KI1\377GJ5\377IP:\377JX\77\377N^C\377SeM" "\377XiT\377bw_\377onc\377\202|\204\377\201{\177\377iVZ\377P91\377G>'" "\377kqD\377\242\254e\377\313\323\177\377\340\345\223\377\345\355\240" "\377\342\356\242\377\336\354\245\377\331\352\243\377\332\353\244\377" "\333\351\257\377\233\235j\377QB\27\377\273H5\14\377\6cUD\377\230\225" "\262\377\247\247\324\377\246\246\324\377\245\245\323\377\243\243\321" "\377\203\241\241\317\377\11\240\240\316\377\236\236\314\377\232\232\311" "\377\231\231\307\377\225\225\304\377\224\224\303\377\220\220\300\377" "\217\217\276\377\216\216\276\377\202\215\215\275\377\202\212\212\273" "\377\2\212\212\272\377\211\211\271\377\202\204\204\264\377\3\200\200" "\261\377\177\177\260\377{{\254\377\202zz\253\377\202uu\250\377\1ss\245" "\377\202qq\244\377\6pp\242\377nn\241\377ll\237\377mm\240\377kk\236\377" "gg\233\377\202ff\232\377\2hh\233\377gg\233\377\205hh\233\377\1ff\232" "\377\202gg\233\377\24hh\233\377ee\230\377cc\227\377aa\225\377``\224\377" "]]\221\377\\\\\221\377YY\216\377WW\214\377RR\210\377QQ\207\377PP\205" "\377LL\202\377KK\201\377HH~\377GG~\377FF}\377HH~\377FF}\377CCz\377\204" "AAx\377\3\77\77v\377@@w\377>>u\377\203==u\377\2<>u" "\377\2==u\377>>u\377\205AAx\377\203CCz\377\205AAx\377\202\77\77v\377" "\202<9,\377KA2\377KC" "2\377L@/\377RB0\377PB1\377O@0\377N@0\377RB3\377SA2\377RA4\377J>4\377" "H<0\377J;-\377HC-\377AB*\377BD-\377CH2\377GI5\377KQ>\377NSA\377VRG\377" "[VS\377e_a\377nfl\377ynq\377\210qr\377\224{\210\377\216\205\231\377\220" "\207\232\377\226\215\226\377\232\226\244\377\236\235\255\377\235\235" "\252\377\237\233\242\377\235\234\242\377\234\240\245\377\234\232\245" "\377\234\230\244\377\224\222\233\377\223\217\227\377\207\200\211\377" "zmz\377vfv\377g]c\377C87\377F;(\377\202I<\"\377\14MG$\377pm=\377\221" "\222P\377\257\261a\377\275\303k\377\311\320{\377\332\336\230\377\335" "\342\260\377\330\336\265\377\262\257\212\377aQ,\377G4\13\377\204H5\14" "\377\4YI,\377cT\77\377dVA\377J8\17\377\262H5\14\377\15O=\33\377\205~" "\215\377\247\247\323\377\245\245\323\377\246\246\324\377\244\244\322" "\377\244\244\321\377\241\241\317\377\243\243\321\377\237\237\316\377" "\235\235\313\377\232\232\311\377\230\230\307\377\202\225\225\304\377" "\1\222\222\301\377\202\220\220\300\377\2\216\216\276\377\214\214\274" "\377\202\212\212\273\377\4\213\213\273\377\212\212\273\377\206\206\267" "\377\204\204\264\377\202\200\200\261\377\202{{\255\377\1xx\252\377\202" "vv\250\377\5tt\246\377qq\244\377pp\243\377qq\244\377pp\242\377\202jj" "\235\377\202ii\234\377\1hh\233\377\202ee\230\377\202gg\233\377\5dd\230" "\377ff\231\377dd\230\377ff\232\377ee\230\377\202ff\232\377\6gg\233\377" "ff\231\377dd\230\377cc\227\377aa\225\377__\223\377\202[[\220\377\3ZZ" "\216\377VV\213\377SS\210\377\202QQ\206\377\2LL\201\377JJ\200\377\202" "HH~\377\5FF|\377DD{\377FF}\377DD{\377AAx\377\202@@w\377\202AAx\377\202" ">>u\377\1<>u\377\202\77\77v\377\202>>u\377" "\202AAx\377\1BBy\377\202AAx\377\1BBy\377\203AAx\377\204@@w\377\5>>u\377" "<SGQ\377\223\211\231\377}\200\214\377\77JC\377G@5\377vm_\377" "^p]\377gzi\377p{m\377v\177w\377\200}\202\377\211\206\217\377\225\215" "\227\377\241\217\243\377\247\231\256\377\247\242\267\377\250\245\267" "\377\247\245\256\377\234\237\244\377\241\247\252\377\244\254\255\377" "\241\241\245\377\243\233\244\377\247\235\244\377\241\220\241\377\223" "\201\221\377\210w\204\377\203p\200\377|fz\377sZm\377iSf\377cQe\377\\" "J[\377UBO\377VDJ\377YGI\377VFK\377SDB\377TD>\377RB;\377QC9\377RB8\377" "SB6\377WD6\377WG4\377WG1\377XG1\377RE1\377SI3\377LB,\377JC*\377JB'\377" "G>#\377C<\37\377OH+\377nlG\377\225\230o\377\245\250\207\377\237\241\212" "\377\214\220x\377xzW\377]P$\377\205H5\14\377\7TC#\377\213\203\214\377" "\265\265\335\377\271\270\343\377\270\270\342\377\225\216\236\377WF'\377" "\257H5\14\377\3J8\21\377k`W\377\240\237\307\377\203\246\246\324\377\14" "\244\244\322\377\241\241\317\377\242\242\320\377\241\241\317\377\240" "\240\316\377\235\235\313\377\233\233\312\377\232\232\310\377\225\225" "\304\377\224\224\303\377\220\220\300\377\220\220\277\377\202\216\216" "\276\377\10\215\215\275\377\213\213\273\377\212\212\272\377\211\211\271" "\377\206\206\267\377\205\205\266\377\200\200\261\377\177\177\260\377" "\202}}\256\377\3{{\255\377ww\251\377vv\250\377\202tt\246\377\202qq\244" "\377\3pp\243\377qq\244\377nn\241\377\202kk\236\377\202hh\233\377\6gg" "\233\377dd\230\377ee\230\377ff\232\377dd\230\377cc\227\377\202dd\230" "\377\6ff\231\377ee\230\377ff\232\377ee\230\377dd\230\377bb\226\377\202" "aa\225\377\3``\224\377]]\221\377YY\216\377\202WW\214\377\15VV\213\377" "RR\210\377OO\205\377MM\203\377KK\201\377JJ\200\377GG~\377FF}\377EE{\377" "BBy\377DD{\377CCz\377AAx\377\202==u\377\202>>u\377\2==u\377;;r\377\203" "::q\377\6;;r\377::q\377<>u\377<>" "u\377\1@@w\377\204AAx\377\1@@w\377\203\77\77v\377\1<5&\377A>\40\377F<\25\377\205H5\14\377\3M;\25\377" "}sq\377\257\256\323\377\202\267\267\343\377\203\271\271\344\377\3\256" "\255\320\377sg^\377K8\20\377\254H5\14\377\7XH/\377\217\212\244\377\246" "\246\324\377\247\247\324\377\245\245\323\377\244\244\322\377\241\241" "\317\377\202\240\240\316\377\1\237\237\316\377\202\233\233\312\377\4" "\232\232\310\377\231\231\307\377\225\225\304\377\223\223\302\377\202" "\220\220\277\377\6\212\212\273\377\207\207\267\377\211\211\271\377\210" "\210\270\377\212\212\273\377\206\206\267\377\202\203\203\264\377\1\205" "\205\266\377\202\177\177\260\377\202{{\255\377\3yy\253\377uu\250\377" "tt\246\377\203pp\242\377\1nn\241\377\202ll\237\377\2jj\235\377hh\233" "\377\202gg\233\377\7ff\231\377cc\227\377aa\225\377bb\226\377dd\230\377" "cc\227\377bb\226\377\202cc\227\377\1dd\230\377\202cc\227\377\1aa\225" "\377\202aa\224\377\4``\224\377]]\221\377\\\\\221\377ZZ\216\377\202WW" "\214\377\14VV\213\377RR\210\377PP\205\377LL\202\377LL\201\377KK\201\377" "HH~\377FF|\377DD{\377CCz\377AAx\377DD{\377\202AAx\377\202==u\377\202" ">>u\377\3==u\377;;r\37799q\377\20277o\377\10""88p\37799q\377<>u\377\4<>u\377\77\77v" "\377AAx\377\202@@w\377\1\77\77v\377\203<K\377B9D\377" "F\77@\377J>6\377RH:\377LC2\377JB1\377I>3\377H\77""0\377CA0\377D@0\377" "H>3\377JB6\377LD5\377QG8\377SH:\377TH\77\377UKB\377OP=\377JL9\377LF<" "\377HC<\377DE6\377FD4\377IA6\377K>9\377ND7\377KG7\377JD4\377N@9\377M" ">:\377FE3\377AJ2\377CA4\377H@5\377DD4\377CR8\377GR<\377MQD\377VNI\377" "WOF\377P_L\377WgR\377]]U\377l^]\377ecX\377eta\377fta\377u\204r\377GM" ";\377\213\201w\377\177qt\377]JE\377F7.\377C8$\377A9\37\377@8\33\377B" "6\23\377H5\15\377\204H5\14\377\3J8\20\377obV\377\251\246\306\377\205" "\267\267\343\377\203\271\271\344\377\3\270\270\342\377\226\221\243\377" "YH+\377\251H5\14\377\3L:\26\377vmr\377\240\237\314\377\202\241\241\317" "\377\5\245\245\323\377\244\244\322\377\243\243\321\377\241\241\317\377" "\237\237\316\377\202\235\235\313\377\2\232\232\311\377\232\232\310\377" "\202\225\225\304\377\17\221\221\301\377\220\220\277\377\217\217\276\377" "\215\215\275\377\212\212\273\377\211\211\271\377\210\210\270\377\206" "\206\267\377\205\205\266\377\204\204\264\377\202\202\263\377\205\205" "\265\377\203\203\264\377}}\256\377||\256\377\202xx\252\377\1uu\250\377" "\202ss\245\377\202nn\241\377\202ll\237\377\2kk\236\377jj\235\377\202" "ff\232\377\3ee\230\377ff\231\377dd\230\377\203bb\226\377\3cc\227\377" "aa\224\377``\224\377\203bb\226\377\202aa\225\377\202bb\226\377\5aa\225" "\377__\223\377]]\221\377[[\217\377XX\215\377\202VV\213\377\11TT\211\377" "QQ\206\377NN\204\377LL\202\377KK\201\377GG~\377FF|\377DD{\377CCz\377" "\202AAx\377\3BBy\377@@w\377>>u\377\204<>u\377\203\77\77v\377\1<\377\202\0\0=\3777423\377C98\377J;>\377[OV\377NAI\377L@E\377K>A\377" "K;@\377L;\77\377O>D\377O\77A\377N@D\377VGJ\377\\OM\377aQN\377cVU\377" "g\\^\377l^^\377n`a\377n_a\377j]`\377eZ]\377bVX\377_SV\377\\OS\377YNN" "\377YNI\377XMD\377XK@\377[KA\377XK@\377SG<\377LE9\377LE7\377G@3\377\77" ";0\377;9.\377A:0\377E:0\377D;.\377G=/\377G\77""0\377KA1\377OE3\377RG" "3\377QF1\377QE0\377TF.\377^O7\377WH.\377WF-\377QC'\377NB&\377N=\36\377" "I7\20\377\205H5\14\377\3XG*\377\221\212\227\377\265\265\340\377\203\264" "\264\341\377\202\264\264\340\377\205\267\267\343\377\7\266\266\342\377" "\265\265\341\377\264\264\340\377\257\257\333\377\253\253\327\377\217" "\212\240\377YI-\377\222H5\14\377\2N9\12\377G5\14\377\217H5\14\377\4Q" "A!\377\203}\217\377\240\240\315\377\242\242\320\377\202\241\241\317\377" "\202\243\243\321\377\12\237\237\316\377\235\235\313\377\233\233\312\377" "\232\232\311\377\230\230\307\377\232\232\311\377\226\226\305\377\225" "\225\304\377\222\222\301\377\217\217\276\377\202\213\213\273\377\6\212" "\212\272\377\210\210\270\377\206\206\267\377\205\205\266\377\202\202" "\263\377\203\203\264\377\202\202\202\263\377\202\177\177\260\377\4}}" "\256\377zz\253\377xx\252\377uu\250\377\202tt\246\377\202pp\243\377\1" "nn\241\377\202ll\237\377\6jj\235\377kk\236\377hh\233\377ff\232\377dd" "\230\377cc\227\377\202bb\226\377\1aa\225\377\203__\223\377\1^^\222\377" "\202]]\221\377\6^^\222\377__\223\377``\224\377aa\225\377aa\224\377__" "\223\377\203]]\221\377\3\\\\\221\377XX\215\377WW\214\377\203TT\211\377" "\2PP\205\377LL\202\377\202JJ\200\377\2FF}\377FF|\377\202DD{\377\5AAx" "\377\77\77v\377AAx\377\77\77v\377>>u\377\204::q\377\20299q\377\2""77" "n\37766n\377\20477n\377\11""77o\37799q\37777o\37777n\37788p\37799q\377" "::q\377;;r\377::q\377\202;;r\377\2<\377\202\0\0=\37752H6\37749*\377IB1\377J@0\377L@.\377OA-\377KB." "\377KA-\377OC/\377OD1\377NE2\377NF3\377TJ:\377YO>\377^TD\377cYH\377g" "^N\377maT\377pcV\377l_T\377l^S\377h`S\377g`U\377f_V\377c^S\377`[P\377" "]XL\377]VF\377[Q\77\377YL;\377\\L7\377ZL6\377WK6\377RG3\377PD1\377KA" ".\377E=+\377H<)\377M=,\377N\77-\377N@,\377PC-\377SF.\377VH/\377WI3\377" "VJ3\377TH0\377SG/\377`T=\377VH1\377PB+\377J>!\377K9\23\377\205H5\14\377" "\3H6\15\377~tr\377\262\261\327\377\203\264\264\341\377\205\264\264\340" "\377\1\264\264\341\377\202\267\267\343\377\12\265\265\341\377\264\264" "\340\377\261\261\336\377\257\257\334\377\255\255\332\377\252\252\327" "\377\247\247\324\377\237\236\305\377shd\377K8\21\377\215H5\14\377\5G" "5\14\377X@\13\377\271\206\5\377\314\222\0\377M8\12\377\216H5\14\377\16" "nd`\377\233\231\301\377\235\235\313\377\237\237\315\377\240\240\316\377" "\241\241\317\377\243\243\321\377\244\244\321\377\237\237\316\377\236" "\236\314\377\233\233\312\377\232\232\311\377\230\230\307\377\226\226" "\305\377\202\225\225\304\377\11\222\222\301\377\220\220\277\377\215\215" "\275\377\214\214\274\377\212\212\272\377\207\207\267\377\203\203\264" "\377\202\202\263\377\201\201\262\377\202\202\202\263\377\203\200\200" "\261\377\5\177\177\260\377{{\254\377xx\252\377vv\250\377tt\246\377\202" "pp\243\377\10nn\241\377ll\237\377kk\236\377jj\235\377ii\234\377hh\233" "\377ii\234\377ff\232\377\202cc\227\377\5aa\225\377aa\224\377^^\222\377" "]]\221\377\\\\\221\377\202]]\221\377\3\\\\\221\377[[\217\377\\\\\221" "\377\203^^\222\377\1\\\\\221\377\202[[\220\377\5[[\217\377YY\216\377" "XX\215\377WW\214\377UU\212\377\202SS\210\377\4RR\210\377QQ\206\377LL" "\201\377II\177\377\202FF}\377\4FF|\377BBy\377AAx\377@@w\377\202==u\377" "\1\77\77v\377\202<\377\202\0\0=\3773\247\257\276\377:BM\377-3*\377\77=" "*\377C=)\377G>,\377G\77,\377F@,\377F@-\377F\77-\377IA/\377HC2\377IF3" "\377KG3\377RI:\377TP\77\377WSE\377\\UI\377bWJ\377bWM\377eZQ\377a^R\377" "_aU\377e^V\377e[S\377YYN\377RUK\377MOD\377KGA\377IC<\377LH5\377KL6\377" "OL9\377OG9\377JA>\377FE7\377BF1\377DB6\377E\77<\377MAC\377OMG\377OYE" "\377SWF\377]VM\377fVQ\377d[P\377chX\377]gS\377pld\377kbb\377D6\37\377" "\207H5\14\377\7Q\77\34\377\254\252\316\377\266\266\342\377\265\265\341" "\377\262\262\336\377\257\257\334\377\262\262\336\377\206\264\264\340" "\377\3\265\265\341\377\264\264\340\377\260\260\335\377\202\254\254\331" "\377\7\252\252\327\377\250\250\325\377\246\246\324\377\247\247\324\377" "\250\250\325\377\220\213\243\377ZJ1\377\213H5\14\377\7L8\14\377\224l" "\7\377\312\222\3\377mO\12\377\253y\3\377\202\\\5\377F4\14\377\213H5\14" "\377\6ZK4\377\220\215\253\377\237\237\316\377\234\234\313\377\236\236" "\314\377\237\237\316\377\202\241\241\317\377\11\237\237\315\377\236\236" "\314\377\233\233\312\377\234\234\313\377\233\233\312\377\232\232\311" "\377\225\225\304\377\224\224\303\377\220\220\300\377\202\220\220\277" "\377\7\216\216\276\377\214\214\274\377\212\212\273\377\207\207\267\377" "\205\205\265\377\202\202\263\377\201\201\262\377\202\200\200\261\377" "\1}}\256\377\202||\256\377\4}}\256\377||\256\377yy\253\377vv\250\377" "\202ss\245\377\202oo\241\377\2nn\241\377kk\236\377\203hh\233\377\202" "gg\233\377\1dd\230\377\202bb\226\377\3aa\224\377__\223\377]]\221\377" "\202[[\217\377\2]]\221\377[[\220\377\202[[\217\377\5]]\221\377[[\217" "\377[[\220\377[[\217\377\\\\\221\377\202]]\221\377\1ZZ\216\377\202XX" "\215\377\2WW\214\377UU\212\377\202RR\210\377\10QQ\206\377NN\204\377K" "K\201\377II\177\377FF}\377EE{\377CCz\377AAx\377\202>>u\377\202<>u\377<\377\202\0\0=\3772OH\\\377\302" "\300\301\377~\211\203\377u\214}\377nuk\377\214{w\377\200\201{\377\201" "\225\211\377\211\233\216\377\213\214\215\377\214\217\232\377\205\226" "\222\377\214\243\224\377\230\237\232\377\236\227\232\377\227\236\232" "\377\225\244\236\377\232\241\236\377\244\237\244\377\236\234\247\377" "\250\252\255\377\250\257\255\377\262\262\264\377\271\252\255\377\262" "\253\255\377\247\256\255\377\251\261\257\377\260\253\263\377\244\236" "\264\377\242\240\263\377\244\251\254\377\252\254\256\377\260\252\261" "\377\254\240\263\377\252\241\265\377\246\245\261\377\240\234\246\377" "\243\225\244\377\236\220\245\377\242\225\252\377\227\215\240\377\227" "\216\236\377\226\212\232\377\225\202\231\377\221x\215\377\224\204\223" "\377\216\202\217\377ygx\377o^V\377Q>\30\377\210H5\14\377\3J8\20\377k" "^P\377\246\244\305\377\203\261\261\336\377\2\257\257\334\377\262\262" "\336\377\205\264\264\340\377\5\262\262\336\377\257\257\334\377\255\255" "\332\377\252\252\327\377\250\250\325\377\203\247\247\324\377\1\250\250" "\325\377\202\246\246\324\377\3\241\240\310\377uji\377L9\23\377\210H5" "\14\377\10qR\12\377\313\223\3\377\222j\7\377L8\14\377H5\15\377Y@\6\377" "\306\214\1\377L7\13\377\211H5\14\377\3O=\33\377xpw\377\236\236\312\377" "\203\233\233\312\377\2\241\241\317\377\240\240\316\377\205\233\233\312" "\377\1\226\226\305\377\202\225\225\304\377\11\222\222\301\377\220\220" "\300\377\220\220\277\377\213\213\273\377\212\212\272\377\207\207\267" "\377\206\206\267\377\205\205\266\377\205\205\265\377\202\202\202\263" "\377\202\200\200\261\377\12}}\256\377\177\177\260\377{{\254\377yy\253" "\377zz\253\377ww\251\377tt\246\377uu\247\377pp\242\377oo\241\377\202" "kk\236\377\2ll\237\377ii\234\377\202ff\232\377\12ee\230\377dd\230\377" "ff\232\377cc\227\377aa\225\377``\224\377__\223\377]]\221\377\\\\\221" "\377[[\217\377\202ZZ\216\377\2YY\216\377ZZ\216\377\202[[\220\377\203" "[[\217\377\202\\\\\221\377\1[[\220\377\203WW\214\377\3VV\213\377QQ\207" "\377OO\205\377\202MM\203\377\7LL\202\377HH~\377FF}\377FF|\377CCz\377" "AAx\377\77\77v\377\202>>u\377\20299q\377\3<\377\210\0\0=\3770\200~}\377ptz\377hco\377WSd\377L" "=O\377^DQ\377`LY\377cS_\377bMU\377]KT\377]O^\377ZJW\377XLU\377TET\377" "O@L\377SHT\377SGJ\377WEF\377XEH\377]KP\377fXZ\377j[`\377l[a\377nY]\377" "lX\\\377`ST\377YNM\377THI\377RDI\377RCC\377RC>\377YD\77\377\\E>\377_" "G@\377bJB\377^IA\377_I\77\377[I<\377XG:\377WH<\377VI;\377UH6\377OB1\377" "RC2\377UF0\377XF0\377R@#\377J7\20\377\214H5\14\377\3Q@\36\377\211\201" "\216\377\257\257\332\377\202\261\261\336\377\1\260\260\335\377\202\257" "\257\334\377\11\264\264\340\377\262\262\336\377\257\257\333\377\255\255" "\332\377\254\254\331\377\251\251\326\377\250\250\325\377\247\247\324" "\377\244\244\322\377\203\247\247\324\377\6\252\252\327\377\247\247\324" "\377\250\250\325\377\251\251\326\377\211\203\224\377J7\17\377\206H5\14" "\377\4F3\14\377bF\3\377\230l\4\377E2\14\377\202H5\14\377\3G5\13\377\265" "\200\1\377rQ\4\377\210H5\14\377\4aSB\377\226\224\272\377\237\237\315" "\377\236\236\314\377\203\233\233\312\377\202\235\235\313\377\20\232\232" "\311\377\235\235\313\377\233\233\312\377\232\232\310\377\225\225\304" "\377\224\224\303\377\221\221\301\377\222\222\301\377\221\221\301\377" "\220\220\300\377\215\215\275\377\214\214\274\377\211\211\271\377\206" "\206\267\377\205\205\265\377\202\202\263\377\202\200\200\261\377\3\177" "\177\260\377~~\257\377\177\177\260\377\202{{\254\377\4zz\253\377yy\253" "\377zz\253\377xx\252\377\202tt\246\377\2oo\241\377mm\240\377\203jj\235" "\377\1hh\233\377\202ff\232\377\1dd\230\377\202bb\226\377\1``\224\377" "\202__\223\377\6^^\222\377\\\\\221\377ZZ\216\377WW\214\377XX\215\377" "ZZ\216\377\202XX\215\377\5ZZ\216\377YY\216\377ZZ\216\377YY\216\377XX" "\215\377\204WW\214\377\202VV\213\377\3SS\210\377QQ\206\377NN\204\377" "\202MM\203\377\4KK\201\377FF}\377EE{\377DD{\377\202AAx\377\3\77\77v\377" "==u\377<\377\210\0\0=\377.\177\201\207\377" "69>\377D@7\377\77""5%\377B8#\377I=)\377N\77,\377OA.\377MB.\377LB/\377" "I@-\377L@,\377LA-\377G\77,\377C<+\377C>+\377D@+\377HA0\377OE5\377TJ:" "\377[M@\377aRE\377eUG\377gUF\377fTE\377_O@\377XK8\377UH5\377YH6\377V" "G4\377WH3\377YI4\377YJ4\377XJ5\377^K8\377_L9\377`L8\377aO9\377\\M6\377" "UI3\377RH2\377TK2\377LF,\377JB+\377K\77!\377J8\21\377\217H5\14\377\3" "J7\17\377j]P\377\245\243\306\377\203\261\261\336\377\11\257\257\334\377" "\254\254\331\377\257\257\333\377\255\255\332\377\252\252\327\377\246" "\246\324\377\245\245\323\377\244\244\322\377\245\245\323\377\202\246" "\246\324\377\2\245\245\323\377\246\246\324\377\202\250\250\325\377\3" "\252\252\327\377\251\251\325\377zqt\377\210H5\14\377\3G4\14\377F3\13" "\377G5\14\377\202H5\14\377\4H5\15\377hJ\5\377\275\205\1\377I6\13\377" "\205H5\14\377\4TC%\377\204}\214\377\241\241\317\377\235\235\313\377\205" "\233\233\312\377\7\232\232\311\377\234\234\313\377\236\236\314\377\233" "\233\312\377\225\225\304\377\224\224\303\377\220\220\300\377\203\220" "\220\277\377\15\213\213\273\377\212\212\273\377\211\211\271\377\210\210" "\270\377\206\206\267\377\205\205\265\377\202\202\263\377\200\200\261" "\377||\256\377}}\256\377||\256\377{{\255\377zz\253\377\202vv\250\377" "\10yy\253\377ww\251\377tt\246\377ss\245\377oo\241\377nn\241\377ll\237" "\377ii\234\377\202hh\233\377\1ff\232\377\202dd\230\377\202cc\227\377" "\1aa\225\377\203]]\221\377\3\\\\\221\377]]\221\377[[\217\377\202WW\214" "\377\1XX\215\377\202WW\214\377\1VV\213\377\202WW\214\377\202XX\215\377" "\2WW\214\377XX\215\377\202WW\214\377\14VV\213\377TT\211\377RR\210\377" "QQ\206\377PP\205\377NN\204\377MM\203\377LL\202\377II\177\377EE{\377D" "D{\377BBy\377\202AAx\377\3>>u\377<\377\210\0\0=\377\34_bc\37785,\37792\37\377>4\40\377B6\40" "\377H<'\377L@*\377N@,\377OB.\377OC.\377JC/\377H@*\377I\77*\377F>)\377" "C<)\377A9'\377C<(\377F>,\377LA0\377PB1\377VF6\377ZK;\377^L:\377bM;\377" "bL;\377_J7\377\\J1\377YH0\377\202VF0\377\16VH1\377XH1\377ZJ4\377YJ6\377" "[K9\377]L9\377]M9\377\\O7\377ZO9\377YN7\377TI3\377ND-\377MD(\377I9\25" "\377\223H5\14\377\3SB!\377\213\205\223\377\257\257\333\377\202\261\261" "\336\377\2\255\255\332\377\253\253\330\377\202\247\247\324\377\1\245" "\245\323\377\203\244\244\322\377\11\244\244\321\377\244\244\322\377\245" "\245\323\377\246\246\324\377\247\247\324\377\250\250\325\377\233\230" "\267\377gYK\377H5\15\377\216H5\14\377\3J6\14\377\302\211\1\377jL\10\377" "\203H5\14\377\4J8\21\377qfb\377\240\237\307\377\241\241\317\377\202\240" "\240\316\377\3\235\235\313\377\232\232\310\377\227\227\306\377\202\233" "\233\312\377\1\232\232\311\377\202\231\231\307\377\1\230\230\307\377" "\202\225\225\304\377\6\221\221\301\377\220\220\277\377\217\217\276\377" "\214\214\274\377\212\212\273\377\210\210\270\377\202\206\206\267\377" "\6\204\204\264\377\203\203\264\377\200\200\261\377\177\177\260\377{{" "\254\377zz\253\377\203yy\253\377\203ww\251\377\6uu\247\377pp\242\377" "oo\241\377nn\241\377ll\237\377kk\236\377\203gg\233\377\2dd\230\377cc" "\227\377\203bb\226\377\1__\223\377\202\\\\\221\377\1[[\217\377\202YY" "\216\377\1XX\215\377\203WW\214\377\203VV\213\377\1WW\214\377\203VV\213" "\377\2WW\214\377XX\215\377\202WW\214\377\202UU\212\377\2RR\210\377QQ" "\206\377\202NN\204\377\13MM\203\377LL\201\377II\177\377EE{\377CCz\377" "BBy\377AAx\377>>u\377<\377\214\0\0=\377+\40" "\"\36\377.-\36\377/3\35\37728\40\37757\"\377;4%\377\77""9(\377B>(\377" "\77=)\377B;0\377A;3\377<>2\3779=,\37786(\37786/\3778<*\3778D,\377;A." "\377E\77""6\377K<9\377IJ=\377JTD\377OXC\377QTE\377TMQ\377XXN\377[bM\377" "`]O\377i`^\377f_h\377cgi\377jtb\377nwg\377zys\377~x\202\377z~\216\377" "\201\217\220\377\210\233\215\377\217\234\220\377\233\225\225\377\227" "\206\210\377L>u\377<\377\214\0\0=\377)\236\236\253\377\223\227\246" "\377\221\244\250\377\234\257\256\377\247\247\257\377\251\236\256\377" "\243\244\256\377\237\250\254\377\252\244\260\377\266\245\275\377\244" "\241\267\377\243\250\266\377\243\246\257\377\253\237\265\377\242\227" "\261\377\230\231\253\377\236\240\256\377\241\233\253\377\245\223\253" "\377\234\221\251\377\233\230\251\377\235\231\244\377\241\230\254\377" "\242\221\252\377\240\224\251\377\236\230\250\377\226\207\232\377\227" "\177\221\377\226\204\234\377\210v\217\377yg\200\377uey\377teu\377zd|" "\377{_z\377{bu\377}hs\377\177ho\377v^b\377cKE\377M:\24\377\231H5\14\377" "\6SB\"\377\211\202\221\377\246\246\322\377\244\244\322\377\242\242\320" "\377\240\240\316\377\202\241\241\317\377\1\243\243\321\377\202\244\244" "\322\377\4\245\245\323\377\246\246\322\377\211\203\224\377VF)\377\225" "H5\14\377\14M;\26\377\200w\200\377\244\244\317\377\246\246\324\377\243" "\243\321\377\240\240\316\377\232\232\311\377\230\230\307\377\225\225" "\304\377\231\231\307\377\232\232\311\377\226\226\305\377\202\225\225" "\304\377\4\230\230\307\377\226\226\305\377\223\223\302\377\220\220\277" "\377\202\216\216\276\377\202\213\213\273\377\4\212\212\272\377\211\211" "\271\377\205\205\266\377\204\204\264\377\202\177\177\260\377\202||\256" "\377\7{{\254\377yy\253\377vv\250\377ww\251\377uu\250\377ww\251\377tt" "\246\377\202qq\244\377\4rr\244\377pp\243\377nn\241\377kk\236\377\202" "ii\234\377\2ff\232\377dd\230\377\202cc\227\377\10__\223\377]]\221\377" "__\223\377]]\221\377``\224\377\\\\\221\377ZZ\216\377XX\215\377\202WW" "\214\377\2VV\213\377SS\210\377\203RR\210\377\2SS\210\377RR\210\377\202" "TT\211\377\3UU\212\377TT\211\377UU\212\377\204RR\210\377\4QQ\207\377" "PP\205\377NN\204\377LL\201\377\202II\177\377\3HH~\377GG~\377FF|\377\202" "AAx\377\4>>u\377<\377\214\0" "\0=\377'0-6\377/,7\37730<\37792;\377>5>\377B6>\377H9=\377G8<\377K7=\377" "N7A\377M8<\377J97\377F55\377F48\377D47\377F57\377G84\377D43\377F53\377" "J74\377J:4\377M=3\377T>5\377V@7\377UA6\377SB5\377Q\77""2\377R\77/\377" "S@0\377O>.\377J>+\377G:)\377G<*\377M\77-\377SC1\377XF4\377]I6\377XE(" "\377K9\21\377\234H5\14\377\3J8\20\377i]S\377\232\230\275\377\205\241" "\241\317\377\5\244\244\322\377\246\246\324\377\227\223\263\377dWG\377" "I6\16\377\224H5\14\377\4I6\16\377fXI\377\237\235\300\377\250\250\325" "\377\202\246\246\324\377\1\234\234\313\377\203\232\232\311\377\202\225" "\225\304\377\202\226\226\305\377\7\232\232\310\377\226\226\305\377\224" "\224\303\377\221\221\301\377\217\217\276\377\214\214\274\377\212\212" "\273\377\202\212\212\272\377\202\207\207\267\377\2\205\205\265\377\202" "\202\263\377\203\177\177\260\377\21{{\255\377yy\253\377uu\250\377vv\250" "\377uu\247\377tt\246\377qq\244\377rr\244\377qq\244\377pp\243\377ss\245" "\377qq\244\377mm\240\377kk\236\377hh\233\377gg\233\377ff\231\377\202" "bb\226\377\202aa\225\377\2__\223\377]]\221\377\202\\\\\221\377\1ZZ\216" "\377\204WW\214\377\2VV\213\377SS\210\377\202QQ\207\377\202RR\210\377" "\202QQ\207\377\202RR\210\377\3SS\210\377RR\210\377SS\210\377\203RR\210" "\377\6QQ\207\377OO\205\377MM\203\377LL\202\377KK\201\377II\177\377\202" "HH~\377\10FF|\377AAx\377\77\77v\377>>u\377==u\377<\377\214\0\0=\377%" "33\34\37764\33\37775\32\377:6\35\377\77:\"\377D;%\377D;&\377G:(\377F" "7&\377G8&\377H:&\377F:%\377G9&\377H:%\377F9'\377J:'\377I<(\377F;)\377" "J;)\377K;*\377H<*\377L<*\377R>,\377T\77-\377UA,\377R@(\377M='\377K:%" "\377J9#\377H:$\377I;%\377E:#\377F=&\377L@)\377RC.\377TB)\377L9\24\377" "\240H5\14\377\3SB$\377\203|\216\377\240\240\315\377\202\241\241\317\377" "\4\242\242\320\377\235\234\305\377tjj\377L:\25\377\225H5\14\377\7TC%" "\377\216\210\234\377\252\252\327\377\247\247\324\377\246\246\324\377" "\243\243\321\377\240\240\316\377\202\233\233\312\377\10\231\231\307\377" "\225\225\304\377\220\220\277\377\222\222\301\377\225\225\304\377\223" "\223\302\377\225\225\304\377\220\220\300\377\202\217\217\276\377\6\215" "\215\275\377\213\213\273\377\212\212\273\377\207\207\267\377\206\206" "\267\377\204\204\264\377\202\202\202\263\377\1\201\201\262\377\202~~" "\257\377\3{{\254\377ww\251\377vv\250\377\202uu\250\377\2tt\246\377ss" "\245\377\202nn\241\377\1pp\243\377\202pp\242\377\4mm\240\377kk\236\377" "jj\235\377gg\233\377\202ee\230\377\202aa\225\377\203]]\221\377\1[[\217" "\377\202\\\\\221\377\1WW\214\377\204VV\213\377\1UU\212\377\202RR\210" "\377\2QQ\207\377SS\210\377\203QQ\206\377\202RR\210\377\202QQ\206\377" "\2RR\210\377SS\210\377\202RR\210\377\5QQ\206\377OO\205\377NN\204\377" "LL\202\377KK\201\377\202GG~\377\11FF}\377DD{\377AAx\377\77\77v\377>>" "u\377<\377\214\0\0=\377\11" "55\33\37795\32\37775\30\37766\34\377:6\37\377>7\"\377<7\"\377>6!\377" "=4\40\377\202A6!\377\10B6\40\377H8#\377F9$\377E9'\377H9&\377J;$\377L" "<&\377L:(\377\202I:'\377\16I9&\377K:'\377N=*\377P>+\377O>(\377J<&\377" "H9#\377G8!\377D7!\377B7\40\377D;%\377H='\377I;#\377I8\25\377\243H5\14" "\377\6K8\21\377i]T\377\223\220\261\377\220\214\251\377\203|\213\377T" "D&\377\225H5\14\377\21J8\21\377tig\377\244\243\315\377\250\250\325\377" "\247\247\324\377\251\251\326\377\244\244\321\377\237\237\315\377\235" "\235\313\377\233\233\312\377\226\226\305\377\221\221\301\377\222\222" "\301\377\224\224\303\377\225\225\304\377\222\222\301\377\220\220\277" "\377\202\220\220\300\377\10\216\216\276\377\214\214\274\377\213\213\273" "\377\212\212\273\377\210\210\270\377\206\206\267\377\205\205\265\377" "\202\202\263\377\202\200\200\261\377\4}}\256\377{{\254\377zz\253\377" "ww\251\377\202vv\250\377\2uu\247\377tt\246\377\202rr\244\377\202pp\242" "\377\2pp\243\377mm\240\377\202ii\234\377\7hh\233\377gg\233\377ff\232" "\377bb\226\377cc\227\377aa\225\377__\223\377\203]]\221\377\202[[\217" "\377\3ZZ\216\377VV\213\377UU\212\377\203SS\210\377\2RR\210\377QQ\206" "\377\202PP\205\377\2QQ\206\377PP\205\377\202NN\204\377\2QQ\206\377OO" "\205\377\202QQ\206\377\3RR\210\377QQ\207\377QQ\206\377\202OO\205\377" "\202NN\204\377\2LL\202\377KK\201\377\202FF}\377\13FF|\377DD{\377AAx\377" "@@w\377\77\77v\377==u\377;;r\37788p\37777o\37777n\37766n\377\20355m\377" "\20222j\377\20600h\377\2--f\377++d\377\202**c\377\202++d\377\202,,e\377" "\1..g\377\203,,e\377\2--f\377//h\377\20600h\377\1""11i\377\20300h\377" "\205..g\377\1,,e\377\203**c\377\204))b\377\202''`\377\202&&_\377\3%%" "^\377$$^\377##]\377\206\"\"[\377\1\37\37Y\377\202\36\36X\377\3\34\34" "V\377\32\32U\377\31\31T\377\202\30\30S\377\202\27\27R\377\204\25\25P" "\377\1\24\24O\377\206\22\22N\377\2\22\22M\377\22\22N\377\203\23\23N\377" "\2\22\22N\377\23\23N\377\202\24\24O\377\2\25\25P\377\24\24O\377\202\23" "\23N\377\202\22\22N\377\1\22\22M\377\204\24\24O\377\210\22\22N\377\203" "\22\22M\377\203\20\20K\377\206\17\17K\377\202\16\16J\377\204\15\15I\377" "\1\15\15H\377\204\14\14H\377\204\13\13G\377\202\12\12F\377\211\10\10" "E\377\206\7\7C\377\212\5\5B\377\203\3\3@\377\204\3\3\77\377\215\2\2\77" "\377\212\1\1>\377\214\0\0=\377\"54\33\37764\32\37795\33\377:7\34\377" ":7\35\377;6\35\377<5\36\377;2\36\377\77""5\37\377A5\37\377B7\40\377C" "8\37\377E7#\377E:%\377J:'\377I;*\377J;&\377H9#\377I:(\377J<*\377E9%\377" "F9%\377H:&\377I;'\377K<(\377L<(\377H:(\377@6$\377\77""4\37\377;0\37\377" "81%\37790#\377G8\30\377H5\15\377\246H5\14\377\1I6\16\377\227H5\14\377" "\2aS\77\377\226\222\255\377\203\250\250\325\377\202\244\244\322\377\5" "\237\237\315\377\233\233\312\377\226\226\305\377\222\222\301\377\220" "\220\300\377\205\220\220\277\377\10\214\214\274\377\216\216\276\377\215" "\215\275\377\213\213\273\377\212\212\273\377\207\207\267\377\205\205" "\266\377\204\204\264\377\202\205\205\265\377\5\202\202\263\377\177\177" "\260\377||\256\377yy\253\377xx\252\377\202ww\251\377\15tt\246\377qq\244" "\377oo\241\377pp\243\377oo\241\377rr\244\377qq\244\377pp\242\377mm\240" "\377ll\237\377gg\233\377ff\231\377dd\230\377\202cc\227\377\202aa\224" "\377\2``\224\377]]\221\377\202\\\\\221\377\2[[\217\377XX\215\377\202" "ZZ\216\377\202UU\212\377\11SS\210\377RR\210\377QQ\207\377QQ\206\377P" "P\205\377NN\204\377PP\205\377QQ\206\377OO\205\377\203MM\203\377\202O" "O\205\377\203QQ\206\377\10PP\205\377MM\203\377NN\204\377MM\203\377LL" "\201\377HH~\377FF}\377EE{\377\203DD{\377\6AAx\377>>u\377==u\377::q\377" "88p\37777o\377\20277n\377\1""66n\377\20322k\377\20200h\377\204//h\377" "\3--f\377//h\377,,e\377\206++d\377\206,,e\377\2..g\377//h\377\20300h" "\377\1//h\377\20400h\377\205..g\377\2--f\377++d\377\203**c\377\204))" "b\377\202&&_\377\203%%^\377\1##]\377\203\"\"[\377\204!![\377\1\37\37" "Y\377\202\34\34V\377\203\31\31T\377\203\30\30S\377\202\27\27R\377\204" "\25\25P\377\1\23\23N\377\205\22\22N\377\1\22\22M\377\205\22\22N\377\5" "\23\23N\377\24\24O\377\22\22N\377\24\24O\377\23\23N\377\204\22\22N\377" "\1\22\22M\377\204\24\24O\377\205\22\22N\377\203\22\22M\377\206\20\20" "K\377\210\16\16J\377\1\15\15I\377\204\15\15H\377\202\14\14H\377\202\13" "\13G\377\206\12\12F\377\211\10\10E\377\206\7\7C\377\212\5\5B\377\203" "\3\3@\377\204\3\3\77\377\215\2\2\77\377\212\1\1>\377\214\0\0=\377\40" "77\34\37765\33\37774\35\377:5\36\377:6\35\377;6\35\377;5\35\377=4\36" "\377A7!\377C6%\377B7$\377A8\"\377F8%\377E9(\377E6(\377D5)\377C5(\377" ";2(\377C22\377>;7\377@@@\377TFJ\377eQO\377i^_\377wow\377\207y\204\377" "\225\204\220\377\221\217\233\377\226\226\245\377\242\232\247\377{n`\377" "H5\17\377\276H5\14\377\3O=\32\377\204|\207\377\246\246\322\377\202\250" "\250\325\377\202\246\246\324\377\202\241\241\317\377\7\233\233\312\377" "\225\225\304\377\224\224\303\377\222\222\301\377\220\220\300\377\216" "\216\276\377\217\217\276\377\202\220\220\277\377\2\217\217\276\377\215" "\215\275\377\202\212\212\273\377\1\206\206\267\377\203\205\205\265\377" "\3\202\202\263\377\201\201\262\377\200\200\261\377\202~~\257\377\3{{" "\254\377yy\253\377vv\250\377\202tt\246\377\202pp\243\377\2nn\241\377" "pp\242\377\202oo\241\377\202nn\241\377\202mm\240\377\3ii\234\377ff\232" "\377ff\231\377\202cc\227\377\203]]\221\377\1\\\\\221\377\202ZZ\216\377" "\4XX\215\377WW\214\377ZZ\216\377WW\214\377\202SS\210\377\202RR\210\377" "\2PP\205\377MM\203\377\202LL\202\377\3MM\203\377NN\204\377LL\202\377" "\202MM\203\377\2NN\204\377OO\205\377\202MM\203\377\1LL\202\377\202NN" "\204\377\202MM\203\377\3LL\201\377II\177\377FF}\377\202EE{\377\202DD" "{\377\4AAx\377<\377\222\0" "\0=\377\37""31\40\377.0\36\377,/!\377/.%\37731,\377=45\377E>B\377FFH" "\377dYc\377xeq\377rnx\377\220}\210\377\223\203\217\377\227\217\244\377" "\243\226\253\377\247\232\262\377\260\237\271\377\242\227\265\377\233" "\217\255\377\217\214\247\377\210\203\243\377\210|\226\377\202p\201\377" "|cy\377pZw\377^Oj\377ZI^\377TAU\377F6;\377H6\27\377G4\13\377\206H5\14" "\377\1H6\15\377\267H5\14\377\5k_T\377\241\237\303\377\250\250\325\377" "\247\247\324\377\244\244\322\377\203\245\245\323\377\2\241\241\317\377" "\233\233\312\377\202\225\225\304\377\2\221\221\301\377\217\217\276\377" "\202\216\216\276\377\202\217\217\276\377\7\214\214\274\377\217\217\276" "\377\214\214\274\377\212\212\272\377\207\207\267\377\205\205\265\377" "\203\203\264\377\203\201\201\262\377\3~~\257\377\177\177\260\377{{\254" "\377\203yy\253\377\10uu\250\377tt\246\377pp\243\377nn\241\377pp\243\377" "oo\241\377nn\241\377mm\240\377\202ii\234\377\202kk\236\377\6jj\235\377" "ff\232\377ee\230\377cc\227\377``\224\377__\223\377\202\\\\\221\377\2" "]]\221\377ZZ\216\377\205WW\214\377\1VV\213\377\202RR\210\377\4QQ\206" "\377RR\210\377OO\205\377MM\203\377\205LL\202\377\4MM\203\377OO\205\377" "PP\205\377NN\204\377\203LL\202\377\202MM\203\377\1LL\202\377\202KK\201" "\377\2HH~\377FF}\377\202EE{\377\6DD{\377CCz\377@@w\377<\377\222\0\0=\377\34\236\225\253\377\214" "\227\251\377\236\234\266\377\242\232\265\377\241\227\270\377\237\222" "\267\377\223\207\251\377\212{\236\377\213x\233\377|j\210\377jVx\377c" "Hl\377YB`\377Q;V\377J5M\377H3C\377H2\77\377E1;\377=23\377\77""4.\377" "D8.\377E:,\377E;+\377F;+\377J<-\377L>/\377N>'\377K8\24\377\205H5\14\377" "\6L:\24\377wke\377\233\226\252\377\242\236\270\377\217\210\224\377SB" "\40\377\264H5\14\377\5VF)\377\223\216\245\377\251\251\325\377\252\252" "\327\377\247\247\324\377\202\246\246\324\377\1\243\243\321\377\202\241" "\241\317\377\12\233\233\312\377\232\232\310\377\225\225\304\377\223\223" "\302\377\220\220\277\377\214\214\274\377\212\212\273\377\213\213\273" "\377\212\212\273\377\213\213\273\377\202\211\211\271\377\17\206\206\267" "\377\210\210\270\377\205\205\266\377\203\203\264\377\201\201\262\377" "\200\200\261\377\177\177\260\377||\256\377{{\255\377zz\253\377xx\252" "\377vv\250\377uu\250\377tt\246\377qq\244\377\203pp\242\377\4oo\241\377" "nn\241\377kk\236\377ii\234\377\202hh\233\377\1ii\234\377\202gg\233\377" "\10dd\230\377cc\227\377bb\226\377``\224\377^^\222\377]]\221\377\\\\\221" "\377ZZ\216\377\204WW\214\377\3VV\213\377UU\212\377RR\210\377\202QQ\207" "\377\3QQ\206\377QQ\207\377OO\205\377\202LL\202\377\2MM\203\377LL\202" "\377\202KK\201\377\1LL\201\377\203LL\202\377\1LL\201\377\204LL\202\377" "\6II\177\377GG~\377HH~\377FF}\377EE{\377CCz\377\202AAx\377\11\77\77v" "\377==u\377;;r\37799q\37788p\37777n\37755m\37722k\37711i\377\20200h\377" "\1//h\377\20200h\377\202..g\377\206**c\377\2))b\377''a\377\203&&_\377" "\4((b\377''a\377))b\377++d\377\202,,e\377\4**c\377++d\377**c\377++d\377" "\202,,e\377\202++d\377\1,,e\377\202..g\377\3--f\377,,e\377++d\377\204" "**c\377\203))b\377\1((b\377\204''`\377\206$$^\377\1\"\"\\\377\202\"\"" "[\377\204\37\37Y\377\1\36\36X\377\205\35\35W\377\1\31\31T\377\203\30" "\30S\377\202\27\27R\377\2\25\25P\377\24\24O\377\202\23\23N\377\210\22" "\22N\377\1\22\22M\377\206\22\22N\377\202\22\22M\377\202\23\23N\377\202" "\22\22N\377\1\23\23N\377\202\22\22N\377\1\23\23N\377\203\22\22N\377\205" "\20\20K\377\203\17\17K\377\205\16\16J\377\1\15\15I\377\207\15\15H\377" "\202\13\13G\377\205\12\12F\377\1\11\11E\377\210\10\10E\377\211\7\7C\377" "\207\5\5B\377\212\3\3\77\377\212\2\2\77\377\212\1\1>\377\222\0\0=\377" "\32@3D\377:2>\377;1<\377816\3777/4\3778/2\377;21\377\77""3,\377A4*\377" "C6(\377D5%\377F9'\377I;)\377I:'\377G7%\377F8$\377H9%\377G:&\377G;'\377" "D8!\377G=$\377I>'\377L\77)\377K\77*\377L='\377K9\27\377\205H5\14\377" "\3H6\15\377hZI\377\243\237\272\377\204\271\271\344\377\3\250\245\303" "\377gYF\377I7\16\377\260H5\14\377\3L:\25\377vll\377\244\243\315\377\202" "\252\252\327\377\1\247\247\324\377\202\246\246\324\377\2\242\242\320" "\377\237\237\315\377\202\233\233\312\377\3\230\230\307\377\225\225\304" "\377\220\220\277\377\202\217\217\276\377\1\214\214\274\377\202\213\213" "\273\377\1\212\212\272\377\202\211\211\271\377\3\207\207\267\377\205" "\205\265\377\205\205\266\377\202\203\203\264\377\7\200\200\261\377}}" "\256\377||\256\377{{\255\377{{\254\377zz\253\377vv\250\377\202ss\245" "\377\2qq\244\377pp\243\377\202nn\241\377\2mm\240\377kk\236\377\202hh" "\233\377\7ii\234\377gg\233\377ee\230\377ff\232\377dd\230\377aa\225\377" "``\224\377\203]]\221\377\5[[\220\377ZZ\216\377XX\215\377WW\214\377VV" "\213\377\202UU\212\377\202SS\210\377\1QQ\207\377\203NN\204\377\3LL\202" "\377OO\205\377LL\202\377\202LL\201\377\3LL\202\377LL\201\377KK\201\377" "\203II\177\377\7KK\201\377LL\201\377KK\201\377MM\203\377LL\202\377LL" "\201\377JJ\200\377\202HH~\377\202FF}\377\3CCz\377AAx\377@@w\377\203>" ">u\377\7;;r\37799q\37788p\37766n\37744l\37722k\37711i\377\20200h\377" "\1//h\377\20200h\377\202--f\377\206**c\377\2((b\377''`\377\203%%^\377" "\4''`\377''a\377))b\377**c\377\202++d\377\202))b\377\1((b\377\205**c" "\377\2,,e\377--f\377\203,,e\377\1++d\377\204**c\377\1))b\377\202((b\377" "\1&&_\377\206%%^\377\203$$^\377\202##]\377\202\"\"[\377\204\37\37Y\377" "\203\36\36X\377\203\35\35W\377\1\32\32U\377\202\31\31T\377\203\30\30" "S\377\2\26\26Q\377\25\25P\377\202\24\24O\377\207\23\23N\377\2\22\22N" "\377\20\20K\377\202\22\22M\377\205\22\22N\377\2\21\21L\377\22\22M\377" "\202\22\22N\377\202\22\22M\377\202\21\21L\377\1\22\22N\377\203\22\22" "M\377\202\20\20K\377\203\17\17K\377\206\16\16J\377\203\15\15I\377\207" "\15\15H\377\202\13\13G\377\205\12\12F\377\1\11\11E\377\210\10\10E\377" "\202\7\7C\377\207\6\6B\377\203\5\5B\377\204\3\3@\377\203\3\3\77\377\212" "\2\2\77\377\212\1\1>\377\231\0\0=\377\31\77""7$\377@9#\377=8#\377:6!" "\37793\40\377:4\40\377:4\"\377<3!\377\77""5!\377D;%\377E>)\377H;'\377" "I8%\377G9$\377D8#\377@5\"\377B6%\377A7#\377\77""7\"\37789\40\3779>#\377" "AD,\377:C(\377H<\32\377H5\15\377\204H5\14\377\4H6\15\377\\M3\377\226" "\221\243\377\266\266\341\377\202\267\267\343\377\204\271\271\344\377" "\3\266\265\335\377\205|\201\377O=\31\377\256H5\14\377\5bTB\377\230\225" "\265\377\250\250\325\377\252\252\327\377\247\247\324\377\202\245\245" "\323\377\4\242\242\320\377\241\241\317\377\234\234\313\377\235\235\313" "\377\202\226\226\305\377\3\220\220\277\377\220\220\300\377\212\212\273" "\377\203\207\207\267\377\2\211\211\271\377\207\207\267\377\203\206\206" "\267\377\16\205\205\265\377\202\202\263\377\201\201\262\377\177\177\260" "\377||\256\377{{\254\377}}\256\377||\256\377{{\254\377xx\252\377vv\250" "\377ss\245\377rr\244\377qq\244\377\202oo\241\377\4nn\241\377ll\237\377" "kk\236\377ll\237\377\202jj\235\377\5ii\234\377gg\233\377ee\230\377gg" "\233\377cc\227\377\202``\224\377\4]]\221\377\\\\\221\377ZZ\216\377YY" "\216\377\202XX\215\377\2WW\214\377VV\213\377\203SS\210\377\2QQ\207\377" "PP\205\377\202MM\203\377\4NN\204\377LL\201\377LL\202\377KK\201\377\202" "II\177\377\202KK\201\377\1II\177\377\202HH~\377\2GG~\377II\177\377\202" "JJ\200\377\6KK\201\377JJ\200\377KK\201\377HH~\377II\177\377HH~\377\202" "FF}\377\2AAx\377@@w\377\202\77\77v\377\3>>u\377<\377\231\0\0=\377\27""8/!\3775,!\37711!\377,4\37\377" "-8\"\377/@&\3775F*\377=G1\377EF:\377UPO\377c]d\377miq\377ift\377uu\201" "\377\204\200\216\377\222\213\215\377\227\226\230\377\234\236\244\377" "\244\245\252\377\240\251\255\377\246\252\255\377\202\204l\377I;\23\377" "\205H5\14\377\3R@\37\377\210\200\210\377\263\262\333\377\205\267\267" "\343\377\1\270\270\344\377\203\271\271\344\377\3\270\267\343\377\235" "\230\262\377]N5\377\253H5\14\377\11O>\34\377\203{\211\377\247\247\323" "\377\250\250\325\377\252\252\327\377\247\247\324\377\245\245\323\377" "\244\244\321\377\241\241\317\377\202\237\237\316\377\2\233\233\312\377" "\232\232\310\377\202\220\220\277\377\4\216\216\276\377\212\212\273\377" "\212\212\272\377\205\205\265\377\202\205\205\266\377\2\205\205\265\377" "\205\205\266\377\202\205\205\265\377\12\202\202\263\377\203\203\264\377" "\200\200\261\377~~\257\377}}\256\377||\256\377{{\254\377yy\253\377xx" "\252\377uu\250\377\202tt\246\377\5ss\245\377pp\242\377oo\241\377nn\241" "\377jj\235\377\202hh\233\377\14ii\234\377jj\235\377ii\234\377ff\231\377" "ee\230\377ff\231\377cc\227\377bb\226\377``\224\377^^\222\377\\\\\221" "\377[[\220\377\204WW\214\377\3UU\212\377SS\210\377RR\210\377\202QQ\207" "\377\10RR\210\377PP\205\377MM\203\377LL\202\377LL\201\377LL\202\377I" "I\177\377GG~\377\203FF}\377\1HH~\377\203FF}\377\3II\177\377JJ\200\377" "II\177\377\203GG~\377\3HH~\377II\177\377GG~\377\202FF}\377\4EE{\377C" "Cz\377AAx\377@@w\377\202\77\77v\377\3==u\377::q\37777o\377\20266n\377" "\3""33k\37722k\37711i\377\20200h\377\4,,e\377++d\377,,e\377++d\377\202" "**c\377\203((b\377\1))b\377\202''a\377\205%%^\377\1&&_\377\206%%^\377" "\3&&_\377''`\377((b\377\203**c\377\202))b\377\2**c\377++d\377\202**c" "\377\202))b\377\204((b\377\2&&_\377%%^\377\207$$^\377\202\"\"[\377\203" "!![\377\205\37\37Y\377\1\36\36X\377\203\35\35W\377\1\34\34V\377\202\32" "\32U\377\1\31\31T\377\205\27\27R\377\2\26\26Q\377\25\25P\377\203\24\24" "O\377\202\23\23N\377\206\22\22M\377\203\20\20K\377\203\22\22M\377\202" "\20\20K\377\202\21\21L\377\1\20\20K\377\202\17\17K\377\202\16\16J\377" "\1\21\21L\377\205\17\17K\377\206\15\15I\377\207\15\15H\377\202\13\13" "G\377\207\12\12F\377\207\10\10E\377\203\10\10D\377\205\7\7C\377\1\6\6" "B\377\211\5\5B\377\207\3\3\77\377\212\2\2\77\377\212\1\1>\377\231\0\0" "=\377\202\240\233\264\377\24\235\237\261\377\240\250\263\377\253\263" "\300\377\246\253\267\377\235\233\254\377\223\220\246\377\211\204\243" "\377\212~\235\377\217x\235\377zi\215\377s\\\177\377jPn\377`De\377T>u\377<\377\234\0\0" "=\377\23=/F\377=-<\377:,9\3779,7\3778,7\3776+0\3779/,\377>3.\377>4/\377" "F=3\377D:.\377J=.\377N>,\377K=+\377H<*\377F:&\377C8#\377F8\37\377I7\23" "\377\205H5\14\377\4I6\16\377m`R\377\245\242\300\377\267\267\343\377\204" "\264\264\340\377\206\267\267\343\377\10\264\264\341\377\262\262\336\377" "\257\257\334\377\254\254\331\377\252\252\327\377\251\251\325\377\215" "\210\234\377UE&\377\245H5\14\377\5UD(\377\211\204\230\377\245\245\323" "\377\246\246\324\377\247\247\324\377\202\246\246\324\377\11\244\244\321" "\377\243\243\321\377\242\242\320\377\237\237\315\377\233\233\312\377" "\230\230\307\377\231\231\307\377\220\220\300\377\215\215\275\377\202" "\214\214\274\377\3\212\212\272\377\207\207\267\377\202\202\263\377\202" "\205\205\265\377\14\204\204\264\377\203\203\264\377\202\202\263\377\200" "\200\261\377~~\257\377\177\177\260\377~~\257\377{{\254\377zz\253\377" "yy\253\377xx\252\377uu\247\377\203tt\246\377\1pp\242\377\202mm\240\377" "\202kk\236\377\202hh\233\377\202ff\231\377\203cc\227\377\1bb\226\377" "\202aa\225\377\1``\224\377\202]]\221\377\10[[\217\377XX\215\377WW\214" "\377UU\212\377SS\210\377UU\212\377RR\210\377QQ\207\377\202QQ\206\377" "\203PP\205\377\202MM\203\377\3LL\202\377KK\201\377LL\201\377\202II\177" "\377\202FF}\377\1EE{\377\203FF}\377\2HH~\377GG~\377\205FF}\377\10FF|" "\377FF}\377EE{\377CCz\377DD{\377CCz\377AAx\377\77\77v\377\202==u\377" "\11<\377\234\0\0=\377\21D:'\377A4\"\377>1\37\377" "9/\31\3777/\34\37771\35\377;4\37\377A8#\377FC0\37756#\377B:%\377D=&\377" "I\77'\377I\77&\377C=&\377A;!\377F6\23\377\206H5\14\377\3_P8\377\234\227" "\256\377\267\267\343\377\207\264\264\340\377\1\266\266\342\377\202\267" "\267\343\377\4\266\266\342\377\265\265\341\377\264\264\340\377\256\256" "\332\377\202\252\252\327\377\1\250\250\325\377\202\252\252\327\377\3" "\241\240\305\377k_T\377J7\17\377\241H5\14\377\3K8\22\377tkm\377\236\235" "\307\377\202\246\246\324\377\4\242\242\320\377\245\245\323\377\246\246" "\324\377\242\242\320\377\202\241\241\317\377\7\236\236\314\377\234\234" "\313\377\232\232\311\377\225\225\304\377\223\223\302\377\216\216\276" "\377\212\212\273\377\202\211\211\271\377\3\206\206\267\377\205\205\265" "\377\201\201\262\377\202\203\203\264\377\202\202\202\263\377\3\201\201" "\262\377\177\177\260\377||\256\377\202}}\256\377\4{{\254\377xx\252\377" "uu\250\377uu\247\377\202tt\246\377\5rr\244\377pp\243\377ll\237\377kk" "\236\377jj\235\377\202hh\233\377\202gg\233\377\2cc\227\377ff\231\377" "\202cc\227\377\202bb\226\377\3__\223\377aa\224\377^^\222\377\202]]\221" "\377\4[[\217\377YY\216\377WW\214\377TT\211\377\202SS\210\377\1QQ\207" "\377\202PP\205\377\1MM\203\377\202NN\204\377\1LL\202\377\202KK\201\377" "\3II\177\377HH~\377JJ\200\377\202FF}\377\5EE{\377FF}\377EE{\377DD{\377" "EE{\377\202DD{\377\1FF|\377\202FF}\377\202GG~\377\4FF}\377FF|\377EE{" "\377DD{\377\202CCz\377\3AAx\377@@w\377<\377\234\0\0=\377\20G:(\377A6'\3776/\37\377-&\30\377,&\36\3770*" "%\3776/-\377GA\77\377uwt\377p}v\377ZkX\377RcN\377^u]\377`pV\37793\24" "\377H6\15\377\206H5\14\377\4J8\20\377\233\226\254\377\265\265\341\377" "\264\264\341\377\211\264\264\340\377\10\266\266\342\377\264\264\340\377" "\257\257\333\377\256\256\332\377\253\253\330\377\251\251\326\377\246" "\246\324\377\252\252\327\377\202\250\250\325\377\4\252\252\327\377\250" "\250\323\377\205~\212\377Q\77\35\377\236H5\14\377\13H5\15\377\\N9\377" "\225\222\261\377\241\241\317\377\243\243\321\377\244\244\321\377\244" "\244\322\377\245\245\323\377\243\243\321\377\242\242\320\377\241\241" "\317\377\203\233\233\312\377\6\226\226\305\377\224\224\303\377\221\221" "\301\377\220\220\277\377\211\211\271\377\205\205\265\377\202\177\177" "\260\377\202\200\200\261\377\5}}\256\377\200\200\261\377~~\257\377||" "\256\377\177\177\260\377\202}}\256\377\5{{\255\377zz\253\377xx\252\377" "uu\250\377tt\246\377\202uu\247\377\6tt\246\377pp\243\377nn\241\377ll" "\237\377kk\236\377ii\234\377\202hh\233\377\3ff\232\377ee\230\377cc\227" "\377\202ee\230\377\202cc\227\377\202]]\221\377\10^^\222\377__\223\377" "]]\221\377[[\217\377ZZ\216\377XX\215\377WW\214\377VV\213\377\203SS\210" "\377\1PP\205\377\202NN\204\377\203LL\202\377\1II\177\377\204FF}\377\4" "HH~\377GG~\377FF}\377EE{\377\202FF}\377\1EE{\377\204DD{\377\202EE{\377" "\1FF}\377\202FF|\377\2EE{\377DD{\377\202CCz\377\202AAx\377\1>>u\377\202" ";;r\377\202::q\377\5""99q\37766n\37733k\37722k\37722j\377\202//h\377" "\1..g\377\202--f\377\6++d\377**c\377++d\377**c\377''`\377''a\377\206" "&&_\377\3%%^\377$$^\377!![\377\202\"\"[\377\2\"\"\\\377##]\377\202%%" "^\377\5''`\377''a\377&&_\377%%^\377$$^\377\203%%^\377\4''`\377%%^\377" "&&_\377''a\377\202))b\377\202((b\377\2''`\377&&_\377\203%%^\377\204$" "$^\377\1\"\"[\377\204!![\377\207\37\37Y\377\203\36\36X\377\204\32\32" "U\377\206\31\31T\377\2\27\27R\377\26\26Q\377\202\25\25P\377\203\24\24" "O\377\1\23\23N\377\203\22\22N\377\210\22\22M\377\205\20\20K\377\202\21" "\21L\377\202\16\16J\377\204\17\17K\377\205\16\16J\377\203\15\15I\377" "\204\15\15H\377\203\14\14H\377\202\13\13G\377\204\12\12F\377\212\10\10" "E\377\205\7\7C\377\203\6\6B\377\207\5\5B\377\212\3\3\77\377\206\2\2\77" "\377\216\1\1>\377\234\0\0=\377\17\223\214\227\377\240\227\250\377\253" "\243\263\377\261\250\273\377\265\252\303\377\263\245\300\377\260\242" "\277\377\255\231\267\377\242\215\255\377\251\222\261\377\246\227\253" "\377\233\216\240\377\222\206}\377TB\34\377H4\13\377\207H5\14\377\3M;" "\25\377\210\200\212\377\260\257\331\377\202\261\261\336\377\2\257\257" "\334\377\262\262\336\377\205\264\264\340\377\1\262\262\336\377\202\257" "\257\333\377\1\254\254\331\377\202\250\250\325\377\203\247\247\324\377" "\202\250\250\325\377\203\252\252\327\377\3\234\231\272\377bUC\377J7\17" "\377\233H5\14\377\3P\77\36\377\200y\206\377\234\234\313\377\203\241\241" "\317\377\5\245\245\323\377\244\244\321\377\242\242\320\377\243\243\321" "\377\237\237\315\377\202\235\235\313\377\10\230\230\307\377\226\226\305" "\377\225\225\304\377\224\224\303\377\215\215\275\377\212\212\273\377" "\211\211\271\377\207\207\267\377\202\200\200\261\377\12\177\177\260\377" "\201\201\262\377\177\177\260\377~~\257\377}}\256\377||\256\377\177\177" "\260\377{{\255\377||\256\377yy\253\377\202xx\252\377\202tt\246\377\202" "ss\245\377\3pp\243\377oo\241\377nn\241\377\202kk\236\377\7ii\234\377" "hh\233\377ff\232\377ee\230\377cc\227\377bb\226\377cc\227\377\202bb\226" "\377\2cc\227\377aa\224\377\202``\224\377\1[[\220\377\202YY\216\377\202" "WW\214\377\202TT\211\377\3RR\210\377QQ\207\377RR\210\377\203NN\204\377" "\1MM\203\377\202LL\202\377\1HH~\377\202FF}\377\6FF|\377DD{\377EE{\377" "DD{\377CCz\377AAx\377\202CCz\377\203AAx\377\1BBy\377\202AAx\377\14BB" "y\377AAx\377BBy\377DD{\377CCz\377BBy\377AAx\377@@w\377\77\77v\377>>u" "\377;;r\377::q\377\20299q\377\6""77o\37766n\37722k\37711i\37700h\377" "//h\377\202,,e\377\1++d\377\202**c\377\202''a\377\2**c\377))b\377\202" "&&_\377\204%%^\377\5$$^\377%%^\377##]\377\"\"\\\377\37\37Y\377\202\40" "\40Z\377\2!![\377\"\"\\\377\202$$^\377\202%%^\377\202$$^\377\2\"\"\\" "\377##]\377\205%%^\377\2&&_\377''`\377\204%%^\377\206$$^\377\202\"\"" "[\377\212\37\37Y\377\202\36\36X\377\203\35\35W\377\207\32\32U\377\204" "\31\31T\377\203\27\27R\377\203\26\26Q\377\1\25\25P\377\203\23\23N\377" "\207\22\22N\377\1\22\22M\377\202\20\20K\377\205\22\22M\377\202\17\17" "K\377\204\20\20K\377\205\16\16J\377\203\15\15I\377\1\15\15H\377\206\13" "\13G\377\202\12\12F\377\1\11\11E\377\206\10\10E\377\210\7\7C\377\202" "\6\6B\377\205\5\5B\377\1\4\4A\377\202\3\3@\377\207\3\3\77\377\212\2\2" "\77\377\207\1\1>\377\246\0\0=\377\14^Ic\377XAZ\377U:Y\377M5S\377F4H\377" "@/>\377>-7\377A/3\377H45\377I52\377K7'\377I5\24\377\213H5\14\377\3J7" "\17\377l`T\377\247\245\312\377\202\261\261\336\377\4\260\260\335\377" "\261\261\336\377\263\263\337\377\264\264\340\377\202\263\263\337\377" "\4\262\262\336\377\254\254\331\377\250\250\325\377\246\246\324\377\205" "\247\247\324\377\3\250\250\325\377\247\247\324\377\251\251\326\377\203" "\252\252\327\377\3\243\243\314\377wmo\377J7\17\377\230H5\14\377\4I6\16" "\377i]U\377\230\227\276\377\240\240\316\377\202\241\241\317\377\202\243" "\243\321\377\3\242\242\320\377\243\243\321\377\241\241\317\377\202\236" "\236\314\377\2\233\233\312\377\231\231\307\377\202\225\225\304\377\202" "\220\220\277\377\2\205\205\266\377\205\205\265\377\202\202\202\263\377" "\202\200\200\261\377\4}}\256\377\177\177\260\377}}\256\377\177\177\260" "\377\202}}\256\377\5{{\254\377ww\251\377vv\250\377uu\247\377tt\246\377" "\202rr\244\377\3qq\244\377pp\242\377nn\241\377\202ll\237\377\1jj\235" "\377\202ii\234\377\7gg\233\377ff\232\377bb\226\377cc\227\377aa\224\377" "``\224\377aa\224\377\204``\224\377\5^^\222\377__\223\377YY\216\377WW" "\214\377VV\213\377\202SS\210\377\203QQ\206\377\2NN\204\377QQ\206\377" "\203NN\204\377\1LL\202\377\202LL\201\377\203FF}\377\1FF|\377\202DD{\377" "\1CCz\377\202AAx\377\202CCz\377\203AAx\377\1CCz\377\202BBy\377\13DD{" "\377CCz\377BBy\377DD{\377CCz\377BBy\377AAx\377@@w\377\77\77v\377>>u\377" "<\377\246\0\0=\377\12I@*\377F>'\377H=)\377J=(\377H=)\377I<*\377F;'" "\377D;&\377E7\36\377G5\21\377\217H5\14\377\3WG*\377\224\217\244\377\261" "\261\335\377\202\261\261\336\377\11\257\257\334\377\262\262\336\377\263" "\263\337\377\260\260\335\377\256\256\332\377\252\252\327\377\251\251" "\326\377\245\245\323\377\244\244\322\377\204\247\247\324\377\5\250\250" "\325\377\251\251\326\377\247\247\324\377\250\250\325\377\251\251\326" "\377\202\246\246\324\377\1zqv\377\230H5\14\377\3YJ2\377\206\201\230\377" "\233\233\312\377\205\241\241\317\377\2\240\240\316\377\237\237\316\377" "\203\233\233\312\377\11\231\231\307\377\230\230\307\377\226\226\305\377" "\223\223\302\377\220\220\277\377\215\215\275\377\212\212\273\377\203" "\203\264\377\201\201\262\377\202\200\200\261\377\202||\256\377\2~~\257" "\377\177\177\260\377\202}}\256\377\5||\256\377{{\254\377zz\253\377xx" "\252\377uu\250\377\202tt\246\377\2ss\245\377rr\244\377\202pp\242\377" "\3mm\240\377kk\236\377ii\234\377\202hh\233\377\1ff\231\377\202cc\227" "\377\2aa\225\377bb\226\377\202__\223\377\2^^\222\377aa\224\377\202]]" "\221\377\10^^\222\377\\\\\221\377[[\217\377XX\215\377WW\214\377VV\213" "\377SS\210\377RR\210\377\203PP\205\377\3NN\204\377MM\203\377LL\201\377" "\202KK\201\377\1II\177\377\202KK\201\377\202FF}\377\6DD{\377BBy\377A" "Ax\377@@w\377\77\77v\377>>u\377\202\77\77v\377\203@@w\377\2AAx\377@@" "w\377\203AAx\377\1BBy\377\204AAx\377\203\77\77v\377\2>>u\377<" "\377\246\0\0=\377\10JB*\377IC)\377J@)\377E=&\377C9(\377C8'\377D4\40\377" "J9\27\377\222H5\14\377\3M:\24\377{qr\377\255\254\325\377\202\261\261" "\336\377\5\257\257\333\377\256\256\332\377\254\254\331\377\252\252\327" "\377\247\247\324\377\202\246\246\324\377\202\245\245\323\377\1\246\246" "\324\377\203\247\247\324\377\1\250\250\325\377\202\247\247\324\377\4" "\246\246\324\377\242\242\316\377}u\177\377P>\35\377\226H5\14\377\5J8" "\21\377wns\377\231\230\304\377\233\233\312\377\234\234\313\377\202\237" "\237\316\377\203\241\241\317\377\10\237\237\316\377\236\236\314\377\234" "\234\313\377\231\231\307\377\230\230\307\377\226\226\305\377\224\224" "\303\377\222\222\301\377\202\220\220\277\377\5\211\211\271\377\205\205" "\265\377\202\202\263\377\201\201\262\377||\256\377\203}}\256\377\5~~" "\257\377}}\256\377zz\253\377{{\254\377zz\253\377\202xx\252\377\15ww\251" "\377uu\250\377tt\246\377pp\243\377oo\241\377nn\241\377oo\241\377mm\240" "\377kk\236\377jj\235\377ff\232\377dd\230\377cc\227\377\202bb\226\377" "\4aa\225\377__\223\377]]\221\377\\\\\221\377\202]]\221\377\6``\224\377" "[[\220\377[[\217\377[[\220\377YY\216\377WW\214\377\202VV\213\377\4TT" "\211\377RR\210\377QQ\207\377MM\203\377\202NN\204\377\3MM\203\377LL\202" "\377LL\201\377\205II\177\377\202FF}\377\202EE{\377\1BBy\377\202AAx\377" "\1@@w\377\213AAx\377\2@@w\377\77\77v\377\205>>u\377\16<\377\252\0\0=\377\7dqb\377o\200n\377\200\220" "\200\377\225\240\224\377\237\242\230\377_Y=\377G5\15\377\224H5\14\377" "\14I6\15\377bT@\377\237\234\273\377\257\257\333\377\254\254\331\377\250" "\250\325\377\246\246\324\377\241\241\317\377\245\245\323\377\244\244" "\322\377\245\245\323\377\246\246\324\377\202\245\245\323\377\1\246\246" "\324\377\204\250\250\325\377\3\250\250\324\377\217\213\244\377[L5\377" "\227H5\14\377\10`R@\377\222\220\262\377\234\234\313\377\237\237\315\377" "\234\234\313\377\233\233\312\377\235\235\313\377\233\233\312\377\202" "\236\236\314\377\21\235\235\313\377\237\237\316\377\233\233\312\377\231" "\231\307\377\226\226\305\377\225\225\304\377\222\222\301\377\220\220" "\300\377\220\220\277\377\214\214\274\377\212\212\273\377\205\205\265" "\377\203\203\264\377\202\202\263\377\200\200\261\377||\256\377{{\254" "\377\202||\256\377\5{{\255\377||\256\377yy\253\377zz\253\377yy\253\377" "\202uu\250\377\202ss\245\377\2rr\244\377oo\241\377\203nn\241\377\3ll" "\237\377kk\236\377ii\234\377\202ff\232\377\30dd\230\377cc\227\377aa\224" "\377``\224\377__\223\377^^\222\377]]\221\377YY\216\377ZZ\216\377[[\217" "\377XX\215\377WW\214\377XX\215\377WW\214\377UU\212\377SS\210\377RR\210" "\377QQ\207\377OO\205\377NN\204\377LL\202\377MM\203\377LL\201\377HH~\377" "\205FF}\377\202DD{\377\202CCz\377\3AAx\377BBy\377AAx\377\204>>u\377\4" "\77\77v\377>>u\377==u\377>>u\377\203\77\77v\377\5>>u\377@@w\377\77\77" "v\377>>u\377\77\77v\377\203==u\377\202<\377\252\0\0=\377\6\242\220\252" "\377\210v\227\377r`\205\377iYc\377TB\36\377G4\13\377\227H5\14\377\5R" "@\37\377\207\200\214\377\247\246\322\377\246\246\324\377\242\242\320" "\377\202\241\241\317\377\202\244\244\322\377\1\245\245\323\377\202\246" "\246\324\377\7\244\244\321\377\246\246\324\377\250\250\325\377\252\252" "\327\377\235\233\277\377l`X\377J8\21\377\226H5\14\377\5P\77\36\377\203" "}\216\377\233\232\310\377\234\234\313\377\231\231\307\377\203\233\233" "\312\377\4\234\234\313\377\233\233\312\377\232\232\311\377\235\235\313" "\377\203\231\231\307\377\1\225\225\304\377\202\223\223\302\377\3\220" "\220\277\377\212\212\273\377\212\212\272\377\202\205\205\266\377\6\200" "\200\261\377\177\177\260\377{{\254\377zz\253\377tt\246\377uu\250\377" "\202ww\251\377\203uu\250\377\15ww\251\377vv\250\377uu\250\377tt\246\377" "qq\244\377pp\243\377nn\241\377oo\241\377nn\241\377kk\236\377ii\234\377" "hh\233\377ff\232\377\203dd\230\377\2cc\227\377aa\225\377\204__\223\377" "\2^^\222\377[[\217\377\203YY\216\377\11ZZ\216\377YY\216\377XX\215\377" "VV\213\377UU\212\377SS\210\377RR\210\377QQ\206\377PP\205\377\202NN\204" "\377\1KK\201\377\203HH~\377\203FF}\377\202CCz\377\205AAx\377\202\77\77" "v\377\202@@w\377\1>>u\377\203<>u\377@@w\377\202\77" "\77v\377\1==u\377\202<\377\252\0\0=\377\3O@4\377O>*\377J7\24\377\233H5\14\377" "\4J8\20\377k_V\377\232\231\277\377\242\242\320\377\204\241\241\317\377" "\202\244\244\322\377\202\246\246\324\377\4\247\247\324\377\244\243\316" "\377}u~\377O>\34\377\226H5\14\377\4J8\21\377la[\377\232\231\303\377\236" "\236\314\377\204\233\233\312\377\21\232\232\311\377\235\235\313\377\233" "\233\312\377\235\235\313\377\233\233\312\377\232\232\310\377\230\230" "\307\377\226\226\305\377\225\225\304\377\223\223\302\377\220\220\277" "\377\217\217\276\377\214\214\274\377\211\211\271\377\207\207\267\377" "\202\202\263\377\200\200\261\377\202}}\256\377\4vv\250\377ww\251\377" "tt\246\377uu\250\377\202uu\247\377\2uu\250\377uu\247\377\202tt\246\377" "\3uu\247\377ss\245\377pp\242\377\202nn\241\377\202kk\236\377\3jj\235" "\377ii\234\377ff\232\377\202dd\230\377\202cc\227\377\202aa\224\377\1" "__\223\377\204]]\221\377\2[[\220\377YY\216\377\202WW\214\377\1VV\213" "\377\202WW\214\377\3VV\213\377UU\212\377RR\210\377\202QQ\206\377\5OO" "\205\377MM\203\377LL\202\377LL\201\377HH~\377\204FF}\377\202EE{\377\204" "AAx\377\1@@w\377\202AAx\377\202\77\77v\377\202@@w\377\1>>u\377\203<<" "t\377\204==u\377\2>>u\377@@w\377\202\77\77v\377\1==u\377\202<\377\260\0\0=\377\1I7\22\377\237H5\14\377\15WG,\377\214\207\237" "\377\243\243\320\377\242\242\320\377\243\243\321\377\242\242\320\377" "\241\241\317\377\245\245\323\377\246\246\324\377\244\244\321\377\216" "\212\242\377\\M5\377H5\15\377\226H5\14\377\2[K5\377\215\210\243\377\202" "\236\236\314\377\202\233\233\312\377\4\230\230\307\377\234\234\313\377" "\233\233\312\377\232\232\311\377\202\233\233\312\377\16\230\230\307\377" "\231\231\307\377\230\230\307\377\224\224\303\377\222\222\301\377\221" "\221\301\377\220\220\277\377\215\215\275\377\214\214\274\377\212\212" "\273\377\206\206\267\377\201\201\262\377{{\254\377zz\253\377\202yy\253" "\377\3uu\250\377uu\247\377tt\246\377\203vv\250\377\5uu\247\377tt\246" "\377qq\244\377pp\242\377oo\241\377\202ll\237\377\202mm\240\377\3jj\235" "\377hh\233\377gg\233\377\202ff\231\377\4dd\230\377bb\226\377aa\224\377" "^^\222\377\202]]\221\377\7\\\\\221\377]]\221\377[[\217\377YY\216\377" "XX\215\377WW\214\377VV\213\377\203WW\214\377\2SS\210\377RR\210\377\202" "PP\205\377\202NN\204\377\2LL\202\377JJ\200\377\202II\177\377\3KK\201" "\377II\177\377FF}\377\204EE{\377\1DD{\377\204@@w\377\203<>u\377\203" "==u\377\1<\377\260\0\0=\377\241H5\14\377\12M;\25\377wnq\377\237\236\311\377" "\243\243\321\377\242\242\320\377\241\241\317\377\245\245\323\377\233" "\231\274\377j^U\377J7\20\377\226H5\14\377\4M<\30\377ypw\377\237\236\312" "\377\241\241\317\377\202\236\236\314\377\202\233\233\312\377\4\230\230" "\307\377\234\234\313\377\233\233\312\377\232\232\311\377\202\233\233" "\312\377\16\230\230\307\377\231\231\307\377\230\230\307\377\224\224\303" "\377\222\222\301\377\221\221\301\377\220\220\277\377\215\215\275\377" "\214\214\274\377\212\212\273\377\206\206\267\377\201\201\262\377{{\254" "\377zz\253\377\202yy\253\377\3uu\250\377uu\247\377tt\246\377\203vv\250" "\377\5uu\247\377tt\246\377qq\244\377pp\242\377oo\241\377\202ll\237\377" "\202mm\240\377\3jj\235\377hh\233\377gg\233\377\202ff\231\377\4dd\230" "\377bb\226\377aa\224\377^^\222\377\202]]\221\377\7\\\\\221\377]]\221" "\377[[\217\377YY\216\377XX\215\377WW\214\377VV\213\377\203WW\214\377" "\2SS\210\377RR\210\377\202PP\205\377\202NN\204\377\2LL\202\377JJ\200" "\377\202II\177\377\3KK\201\377II\177\377FF}\377\204EE{\377\1DD{\377\204" "@@w\377\203<>u\377\203==u\377\1<\377\260\0\0=\377\242H5\14\377\7I6\16\377aSA\377\225" "\222\263\377\234\233\304\377\230\226\273\377{sz\377O=\33\377\227H5\14" "\377\10gZN\377\224\222\263\377\241\241\317\377\236\236\314\377\234\234" "\313\377\233\233\312\377\230\230\307\377\233\233\312\377\202\232\232" "\310\377\203\232\232\311\377\25\227\227\306\377\231\231\307\377\230\230" "\307\377\225\225\304\377\224\224\303\377\220\220\300\377\217\217\276" "\377\216\216\276\377\215\215\275\377\210\210\270\377\205\205\265\377" "\203\203\264\377\200\200\261\377}}\256\377{{\255\377zz\253\377vv\250" "\377uu\250\377tt\246\377uu\250\377tt\246\377\204ss\245\377\2pp\243\377" "oo\241\377\202nn\241\377\1kk\236\377\204hh\233\377\4gg\233\377ff\232" "\377dd\230\377aa\225\377\202__\223\377\202]]\221\377\2[[\220\377XX\215" "\377\203WW\214\377\5VV\213\377WW\214\377VV\213\377WW\214\377UU\212\377" "\202RR\210\377\1QQ\207\377\202PP\205\377\3MM\203\377LL\201\377JJ\200" "\377\203HH~\377\2FF}\377EE{\377\202DD{\377\202CCz\377\1EE{\377\202AA" "x\377\202@@w\377\202\77\77v\377\5<\377\260\0\0=\377\244H5\14\377\3O=\32\377O>\33\377" "K8\22\377\227H5\14\377\6Q@\37\377\212\204\230\377\243\243\321\377\241" "\241\317\377\237\237\316\377\236\236\314\377\202\233\233\312\377\1\226" "\226\305\377\202\232\232\310\377\1\230\230\307\377\202\233\233\312\377" "\202\230\230\307\377\6\226\226\305\377\225\225\304\377\224\224\303\377" "\220\220\277\377\217\217\276\377\215\215\275\377\202\211\211\271\377" "\202\205\205\265\377\1\200\200\261\377\202zz\253\377\4yy\253\377uu\250" "\377tt\246\377uu\247\377\202tt\246\377\2qq\244\377ss\245\377\202qq\244" "\377\12pp\242\377nn\241\377mm\240\377ll\237\377jj\235\377ii\234\377f" "f\232\377ff\231\377ee\230\377ff\231\377\202cc\227\377\6aa\225\377__\223" "\377]]\221\377\\\\\221\377[[\217\377ZZ\216\377\202WW\214\377\1UU\212" "\377\202VV\213\377\1TT\211\377\202VV\213\377\12TT\211\377QQ\207\377Q" "Q\206\377PP\205\377OO\205\377NN\204\377MM\203\377KK\201\377II\177\377" "GG~\377\203FF}\377\2EE{\377DD{\377\202CCz\377\202AAx\377\2DD{\377AAx" "\377\203@@w\377\202>>u\377\5<\377\267\0\0=\377\274H5\14\377\7L9\24\377qfb" "\377\243\242\316\377\243\243\321\377\240\240\316\377\237\237\316\377" "\235\235\313\377\202\233\233\312\377\2\232\232\310\377\227\227\306\377" "\203\225\225\304\377\24\227\227\306\377\232\232\310\377\225\225\304\377" "\224\224\303\377\223\223\302\377\220\220\277\377\217\217\276\377\216" "\216\276\377\212\212\273\377\212\212\272\377\205\205\265\377\202\202" "\263\377\200\200\261\377~~\257\377zz\253\377vv\250\377rr\244\377qq\244" "\377pp\242\377ll\237\377\202nn\241\377\3oo\241\377nn\241\377mm\240\377" "\203nn\241\377\1ll\237\377\203hh\233\377\202ff\231\377\3ee\230\377cc" "\227\377bb\226\377\202aa\225\377\1__\223\377\202^^\222\377\4\\\\\221" "\377[[\217\377ZZ\216\377XX\215\377\204WW\214\377\202VV\213\377\202UU" "\212\377\11TT\211\377SS\210\377QQ\207\377PP\205\377OO\205\377MM\203\377" "KK\201\377JJ\200\377HH~\377\203FF}\377\202DD{\377\202CCz\377\203AAx\377" "\1@@w\377\203\77\77v\377\202<\377\267\0\0=\377\273" "H5\14\377\4XH.\377\224\220\256\377\244\244\321\377\240\240\316\377\202" "\236\236\314\377\4\235\235\313\377\233\233\312\377\231\231\307\377\232" "\232\310\377\202\225\225\304\377\2\226\226\305\377\225\225\304\377\204" "\224\224\303\377\20\220\220\300\377\220\220\277\377\214\214\274\377\213" "\213\273\377\212\212\272\377\211\211\271\377\207\207\267\377\203\203" "\264\377\200\200\261\377~~\257\377{{\254\377xx\252\377ss\245\377pp\242" "\377pp\243\377nn\241\377\202mm\240\377\206nn\241\377\2mm\240\377kk\236" "\377\203hh\233\377\202dd\230\377\3ee\230\377cc\227\377aa\225\377\202" "__\223\377\3]]\221\377\\\\\221\377[[\220\377\202ZZ\216\377\202WW\214" "\377\10VV\213\377UU\212\377VV\213\377UU\212\377QQ\207\377NN\204\377O" "O\205\377PP\205\377\202QQ\206\377\3MM\203\377LL\202\377LL\201\377\202" "KK\201\377\7GG~\377FF|\377EE{\377FF}\377CCz\377AAx\377@@w\377\204\77" "\77v\377\2>>u\377<\377\267" "\0\0=\377\271H5\14\377\15N<\30\377}u{\377\246\246\322\377\245\245\323" "\377\241\241\317\377\236\236\314\377\233\233\312\377\232\232\311\377" "\230\230\307\377\225\225\304\377\221\221\301\377\223\223\302\377\224" "\224\303\377\203\225\225\304\377\11\220\220\277\377\222\222\301\377\220" "\220\300\377\220\220\277\377\215\215\275\377\212\212\273\377\212\212" "\272\377\210\210\270\377\205\205\266\377\202\204\204\264\377\4\201\201" "\262\377}}\256\377vv\250\377uu\250\377\202tt\246\377\1pp\243\377\203" "oo\241\377\1pp\242\377\202nn\241\377\202mm\240\377\202kk\236\377\3jj" "\235\377ii\234\377gg\233\377\202ff\232\377\4ff\231\377cc\227\377aa\225" "\377aa\224\377\202^^\222\377\1\\\\\221\377\202YY\216\377\1WW\214\377" "\202VV\213\377\4UU\212\377VV\213\377TT\211\377SS\210\377\202RR\210\377" "\3QQ\206\377OO\205\377QQ\206\377\202PP\205\377\2NN\204\377LL\201\377" "\202KK\201\377\202II\177\377\7GG~\377FF|\377EE{\377FF}\377CCz\377AAx" "\377@@w\377\204\77\77v\377\3>>u\377<\377\272\0\0=\377\2j\\K\377I7\16\377" "\266H5\14\377\15eXI\377\234\232\275\377\247\247\324\377\244\244\321\377" "\241\241\317\377\237\237\316\377\235\235\313\377\233\233\312\377\231" "\231\307\377\226\226\305\377\223\223\302\377\224\224\303\377\223\223" "\302\377\202\222\222\301\377\12\220\220\277\377\223\223\302\377\220\220" "\300\377\217\217\276\377\220\220\277\377\217\217\276\377\212\212\272" "\377\210\210\270\377\211\211\271\377\205\205\265\377\202\202\202\263" "\377\3\200\200\261\377\177\177\260\377zz\253\377\202tt\246\377\2ss\245" "\377qq\244\377\202nn\241\377\1oo\241\377\202nn\241\377\2ll\237\377nn" "\241\377\202kk\236\377\202hh\233\377\1ff\232\377\204dd\230\377\3cc\227" "\377aa\225\377``\224\377\202]]\221\377\202\\\\\221\377\202YY\216\377" "\11WW\214\377VV\213\377UU\212\377VV\213\377WW\214\377VV\213\377UU\212" "\377RR\210\377QQ\207\377\202QQ\206\377\4RR\210\377QQ\206\377OO\205\377" "MM\203\377\203KK\201\377\3II\177\377GG~\377FF}\377\202EE{\377\1DD{\377" "\203AAx\377\5@@w\377AAx\377@@w\377\77\77v\377<\377\272\0\0=\377\3\265\265\335\377\202y{\377N<\26" "\377\263H5\14\377\12VF)\377\212\203\224\377\246\246\324\377\245\245\323" "\377\244\244\321\377\237\237\316\377\237\237\315\377\235\235\313\377" "\233\233\312\377\231\231\307\377\202\225\225\304\377\2\223\223\302\377" "\222\222\301\377\202\220\220\277\377\2\220\220\300\377\220\220\277\377" "\202\217\217\276\377\202\216\216\276\377\15\213\213\273\377\212\212\273" "\377\206\206\267\377\205\205\266\377\204\204\264\377\202\202\263\377" "\200\200\261\377\177\177\260\377{{\254\377vv\250\377qq\244\377rr\244" "\377pp\242\377\202nn\241\377\1mm\240\377\203oo\241\377\4nn\241\377mm" "\240\377kk\236\377jj\235\377\202gg\233\377\1dd\230\377\204cc\227\377" "\203aa\225\377\2__\223\377]]\221\377\202ZZ\216\377\10YY\216\377WW\214" "\377VV\213\377UU\212\377SS\210\377TT\211\377SS\210\377RR\210\377\202" "QQ\207\377\10RR\210\377QQ\206\377NN\204\377MM\203\377NN\204\377LL\202" "\377II\177\377HH~\377\203FF}\377\2CCz\377BBy\377\203AAx\377\203@@w\377" "\202\77\77v\377\3>>u\377<\377\272\0\0=\377"}; photoprint-0.4.2-pre2/splashscreen/Makefile.am0000644000175000017500000000054511246732300016242 00000000000000AM_CXXFLAGS = -Wall $(GTK2_CFLAGS) noinst_LTLIBRARIES = libsplashscreen.la libsplashscreen_la_SOURCES = \ splashscreen.cpp \ splashscreen.h \ SplashScreen.tif BUILT_SOURCES = splashscreendata.cpp libsplashscreen_la_LDFLAGS = -static splashscreendata.cpp: gdk-pixbuf-csource >splashscreendata.cpp SplashScreen.tif EXTRA_DIST = splashscreendata.cpp photoprint-0.4.2-pre2/support/0000777000175000017500000000000011400250524013303 500000000000000photoprint-0.4.2-pre2/support/debug.h0000644000175000017500000000203011306572677014476 00000000000000#ifndef DEBUG_H #define DEBUG_H #include #include #include // FIXME Win32 namespace clash #undef ERROR enum DebugLevel {NONE, ERROR, WARN, COMMENT, TRACE}; class NullStream : public std::streambuf, public std::ostream { public: NullStream() : std::streambuf(), std::ostream(this) { } virtual ~NullStream() { } protected: virtual int overflow(int c) { return(c); } }; class DebugStream { public: DebugStream(DebugLevel level=ERROR); virtual ~DebugStream(); virtual void SetLogFile(std::string filename); virtual DebugLevel SetLevel(enum DebugLevel lvl); // returns the old level virtual void PushLevel(enum DebugLevel lvl); // Use PushLevel() and PopLevel() if you want to change virtual void PopLevel(); // the debug level for a specific section of code, and restore afterwards. virtual std::ostream &operator[](int idx); protected: enum DebugLevel level; std::stack levelstack; NullStream nullstream; std::ofstream logfile; }; extern DebugStream Debug; #endif photoprint-0.4.2-pre2/support/thread.h0000644000175000017500000000434211263753343014660 00000000000000#ifndef THREADCONTEXT_H #define THREADCONTEXT_H #include "ptmutex.h" enum ThreadState {THREAD_IDLE,THREAD_STARTED,THREAD_RUNNING,THREAD_FINISHED,THREAD_CANCELLED}; class Thread; class ThreadCondition : public PTMutex { public: ThreadCondition(); ~ThreadCondition(); virtual void Broadcast(); // Sends the signal - Mutex should be obtained first and released afterwards virtual void WaitCondition(); // Waits for the signal - mutex should be obtained first and released afterwards protected: pthread_cond_t cond; }; // Demonstrates how to use the ThreadCondition - used to sync between subthread and main thread. class ThreadSync : public ThreadCondition { public: ThreadSync() : ThreadCondition(), received(false) { } ~ThreadSync() { } virtual void Broadcast() { ObtainMutex(); ThreadCondition::Broadcast(); received=true; ReleaseMutex(); } virtual void WaitCondition() { ObtainMutex(); if(!received) ThreadCondition::WaitCondition(); received=false; ReleaseMutex(); } protected: bool received; }; #ifdef WIN32 typedef void *ThreadID; #else typedef pthread_t ThreadID; #endif class ThreadFunction; class Thread { public: Thread(ThreadFunction *threadfunc); Thread(); ~Thread(); void Stop(); void Start(); void WaitSync(); // Safe to use bi-directionally. int WaitFinished(); int GetReturnCode(); bool TestFinished(); // Methods to be used from within threads void SendSync(); // Safe to use bi-directionally. bool TestBreak(); // Static function - can be called anywhere static ThreadID GetThreadID(); protected: static void *LaunchStub(void *ud); ThreadFunction *threadfunc; pthread_t thread; ThreadSync cond1; // We use one cond for main thread -> subthread signalling... ThreadSync cond2; // ...and another for subthread -> main thread signalling. pthread_attr_t attr; // This mutex is held all the time the thread's running. PTMutex threadmutex; int returncode; enum ThreadState state; ThreadID subthreadid; }; // Base class for thread function. Subclass this and override Entry with your own subthread code. class ThreadFunction { public: ThreadFunction() { } virtual ~ThreadFunction() { } virtual int Entry(Thread &t) { t.SendSync(); return(0); } protected: }; #endif photoprint-0.4.2-pre2/support/configdb.cpp0000644000175000017500000002023211371626011015502 00000000000000/* * configdb.cpp - classes to simplify configuration file handling * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include "debug.h" #include "configdb.h" using namespace std; static void StripNewline(char *in) { int l=strlen(in)-1; while((l>0) && ((in[l]=='\n') || (in[l]=='\r'))) --l; in[l+1]=0; } ConfigOption::~ConfigOption() { switch(Type) { case ConfigARG_STRING: free(Value.string); break; default: break; } if(next) next->prev=prev; if(prev) prev->next=next; else db->firstopt=next; } ConfigOption::ConfigOption(ConfigDB *db,struct ConfigTemplate *templ) : next(NULL), prev(NULL), db(db) { Name=templ->Name; Type=templ->Type; Value.string=NULL; switch(Type) { case ConfigARG_STRING: if(templ->defstring) Value.string=strdup(templ->defstring); break; case ConfigARG_INTEGER: Value.intnumber=templ->defint; break; case ConfigARG_FLOAT: Value.floatnumber=templ->deffloat; break; default: break; } if((prev=db->firstopt)) { while(prev->next) prev=prev->next; prev->next=this; } else db->firstopt=this; }; ConfigDB::~ConfigDB() { while(firstopt) delete firstopt; } int ConfigDB::ParseString(const char *string) { char *in; char *string2; int l; while(*string==' ') ++string; in=string2=strdup(string); l=strlen(in)-1; while((l>0) && ((in[l]=='\n') || (in[l]=='\r'))) --l; in[l+1]=0; while(1) { switch (*in) { case '\0': free(string2); return(0); break; case '=': *in='\0'; ++in; if(*in) { struct ConfigOption *opt; if((opt=FindOption(string2))) { switch(opt->Type) { case ConfigARG_STRING: if(opt->Value.string) free(opt->Value.string); opt->Value.string=strdup(in); break; case ConfigARG_INTEGER: opt->Value.intnumber=atoi(in); break; case ConfigARG_FLOAT: opt->Value.floatnumber=atof(in); break; default: Debug[ERROR] << "Error: Unknown type for option: " << opt->Name << endl; break; } free(string2); return(1); } } free(string2); return(0); break; } ++in; } } struct ConfigOption *ConfigDB::FindOption(const char *Name) { struct ConfigOption *opt=firstopt; struct ConfigOption *result=NULL; while(opt) { if(strcasecmp(opt->Name,Name)==0) { result=opt; opt=NULL; } else opt=opt->next; } if(!result) Debug[ERROR] << "Warning: option " << Name << " not found" << endl; return(result); } const char *ConfigDB::FindString(const char *Name) { struct ConfigOption *opt; if((opt=FindOption(Name))) { if(opt->Type==ConfigARG_STRING) return(opt->Value.string); else Debug[ERROR] << "Error: " << Name << " is not a string option" << endl; return(NULL); } return(NULL); } int ConfigDB::FindInt(const char *Name) { struct ConfigOption *opt; if((opt=FindOption(Name))) { if(opt->Type==ConfigARG_INTEGER) { return(opt->Value.intnumber); } else Debug[ERROR] << "Error: " << Name << " is not an integer option" << endl; } else Debug[ERROR] << Name << " Not found..." << endl; return(0); } double ConfigDB::FindFloat(const char *Name) { struct ConfigOption *opt; if((opt=FindOption(Name))) { if(opt->Type==ConfigARG_FLOAT) { return(opt->Value.floatnumber); } else Debug[ERROR] << "Error: " << Name << " is not a float option" << endl; } else Debug[ERROR] << "Not found..." << endl; return(0); } void ConfigDB::SetInt(const char *Name,int val) { struct ConfigOption *opt; if((opt=FindOption(Name))) { if(opt->Type==ConfigARG_INTEGER) { opt->Value.intnumber=val; } else Debug[ERROR] << "Error: " << Name << " is not an integer option" << endl; } else Debug[ERROR] << "Not found..." << endl; } void ConfigDB::SetFloat(const char *Name,double val) { struct ConfigOption *opt; if((opt=FindOption(Name))) { if(opt->Type==ConfigARG_FLOAT) { opt->Value.floatnumber=val; } else Debug[ERROR] << "Error: " << Name << " is not a float option" << endl; } else Debug[ERROR] << "Not found..." << endl; } void ConfigDB::SetString(const char *Name,const char *val) { struct ConfigOption *opt; if((opt=FindOption(Name))) { if(opt->Type==ConfigARG_STRING) { if(opt->Value.string==val) return; if(opt->Value.string) free(opt->Value.string); if(val) opt->Value.string=strdup(val); else opt->Value.string=NULL; } else Debug[ERROR] << "Error: " << Name << " is not an integer option" << endl; } else Debug[ERROR] << Name << "Not found..." << endl; } enum ConfigArgType ConfigDB::QueryType(const char *Name) { struct ConfigOption *opt; if((opt=FindOption(Name))) return(opt->Type); else return(ConfigARG_UNKNOWN); } void ConfigDB::SaveDB(FILE *file) { ConfigOption *o=firstopt; while(o) { switch(o->Type) { case ConfigARG_INTEGER: fprintf(file,"%s=%d\n",o->Name,o->Value.intnumber); break; case ConfigARG_FLOAT: fprintf(file,"%s=%f\n",o->Name,o->Value.floatnumber); break; case ConfigARG_STRING: if(o->Value.string && strlen(o->Value.string)) fprintf(file,"%s=%s\n",o->Name,o->Value.string); else fprintf(file,"# %s=\n",o->Name); break; default: fprintf(file,"# Error: bad type for option %s\n",o->Name); break; } o=o->next; } } ConfigDB &ConfigDB::operator=(ConfigDB &other) { ConfigOption *o=firstopt; while(o) { switch(o->Type) { case ConfigARG_INTEGER: SetInt(o->Name,other.FindInt(o->Name)); break; case ConfigARG_FLOAT: SetFloat(o->Name,other.FindFloat(o->Name)); break; case ConfigARG_STRING: { const char *v=other.FindString(o->Name); if(v && strlen(v)) SetString(o->Name,v); } break; default: break; } o=o->next; } return(*this); } ConfigDB::ConfigDB(struct ConfigTemplate *templ) { firstopt=NULL; while(templ->Type!=ConfigARG_UNKNOWN) { new ConfigOption(this,templ); templ++; } } ConfigSectionHandler::ConfigSectionHandler(ConfigFile *inifile,const char *section) : section(section), next(NULL), inifile(inifile) { if((prev=inifile->first)) { while(prev->next) prev=prev->next; prev->next=this; } else inifile->first=this; } ConfigSectionHandler::~ConfigSectionHandler() { if(next) next->prev=prev; if(prev) prev->next=next; else inifile->first=next; } void ConfigSectionHandler::SelectSection() { } void ConfigSectionHandler::LeaveSection() { } ConfigFile::ConfigFile() : first(NULL), current(NULL) { } ConfigFile::~ConfigFile() { while(first) delete first; } ConfigSectionHandler *ConfigFile::FindHandler(const char *section) { ConfigSectionHandler *sh=first; while(sh) { int l=strlen(sh->section); if(strncmp(sh->section,section,l)==0) { return(sh); } sh=sh->next; } return(NULL); } bool ConfigFile::ParseConfigFile(const char *inifile) { bool result=false; FILE *file; if((file=fopen(inifile,"r"))) { char inb[4096]; while((fgets(inb,4096,file))) { StripNewline(inb); if((strlen(inb)>2) && inb[0]!='#') { if(inb[0]=='[') { if(current) current->LeaveSection(); current=FindHandler(inb); if(current) current->SelectSection(); } else if(current) current->ParseString(inb); } } if(current) current->LeaveSection(); fclose(file); result=true; } return(result); } bool ConfigFile::SaveConfigFile(const char *inifile) { FILE *file; if((file=fopen(inifile,"w"))) { ConfigSectionHandler *h; h=first; while(h) { fprintf(file,"\n%s\n",h->section); h->SaveSection(file); h=h->next; } fclose(file); return(true); } else return(false); } ConfigDBHandler::ConfigDBHandler(ConfigFile *inf,const char *section,ConfigDB *db) : ConfigSectionHandler(inf,section), db(db) { } ConfigDBHandler::~ConfigDBHandler() { } void ConfigDBHandler::ParseString(const char *string) { db->ParseString(string); } void ConfigDBHandler::SaveSection(FILE *file) { db->SaveDB(file); } photoprint-0.4.2-pre2/support/dirtreewalker.cpp0000644000175000017500000000312011342053073016570 00000000000000#include #include #include #include #include #include #include "searchpath.h" #include "dirtreewalker.h" using namespace std; DirTreeWalker::DirTreeWalker(const char *initialpath,DirTreeWalker *parent) : std::string(initialpath), parent(parent), child(NULL), filename(), files(NULL), dirs(NULL) { dirs=opendir(initialpath); files=opendir(initialpath); } DirTreeWalker::~DirTreeWalker() { if(child) delete child; if(files) closedir(files); if(dirs) closedir(dirs); } const char *DirTreeWalker::NextFile() { if(!files) return(NULL); struct dirent *de=NULL; while((de=readdir(files))) { if(de) { if(strcmp(".",de->d_name)==0) de=NULL; else if(strcmp("..",de->d_name)==0) de=NULL; } if(de) { filename=*this+SEARCHPATH_SEPARATOR+de->d_name; struct stat statbuf; stat(filename.c_str(),&statbuf); // Do we have a file? if(!S_ISDIR(statbuf.st_mode)) { return(filename.c_str()); } } } return(NULL); } DirTreeWalker *DirTreeWalker::NextDirectory() { if(!dirs) return(NULL); if(child) delete child; child=NULL; struct dirent *de=NULL; while((de=readdir(dirs))) { if(de) { if(strcmp(".",de->d_name)==0) de=NULL; else if(strcmp("..",de->d_name)==0) de=NULL; } if(de) { filename=*this+SEARCHPATH_SEPARATOR+de->d_name; struct stat statbuf; stat(filename.c_str(),&statbuf); // Do we have a directory? if(S_ISDIR(statbuf.st_mode)) { return(child=new DirTreeWalker(filename.c_str(),this)); } } } return(parent); } photoprint-0.4.2-pre2/support/layoutrectangle.cpp0000644000175000017500000000614411076423574017152 00000000000000#include #include using namespace std; #include "layoutrectangle.h" LayoutRectangle::LayoutRectangle(int x,int y,int w,int h) : x(x), y(y), w(w), h(h) { } LayoutRectangle::LayoutRectangle(int w,int h) : x(0), y(0), w(w), h(h) { } LayoutRectangle::~LayoutRectangle() { } LayoutRectangle *LayoutRectangle::Intersection(LayoutRectangle &r) { LayoutRectangle *result=NULL; int x2=x+w; int y2=y+h; int x4=r.x+r.w; int y4=r.y+r.h; int nx,ny,nx2,ny2,nw,nh; if(x>r.x) nx=x; else nx=r.x; if(y>r.y) ny=y; else ny=r.y; if(x20) && (nh>0)) result=new LayoutRectangle(nx,ny,nw,nh); return(result); } LayoutRectangle *LayoutRectangle::UnionBoundary(LayoutRectangle &r) { LayoutRectangle *result=NULL; int x2=x+w; int y2=y+h; int x4=r.x+r.w; int y4=r.y+r.h; int nx,ny,nx2,ny2,nw,nh; if(x>r.x) nx=r.x; else nx=x; if(y>r.y) ny=r.y; else ny=y; if(x20) && (nh>0)) result=new LayoutRectangle(nx,ny,nw,nh); return(result); } RectFit *LayoutRectangle::Fit(LayoutRectangle &r,bool allow_cropping,PP_ROTATION rotation, LayoutRectangle_Alignment halign,LayoutRectangle_Alignment valign) { RectFit *fit=new RectFit; int nw,nh; switch(rotation) { case PP_ROTATION_NONE: fit->rotation=0; fit->width=w; fit->height=h; break; case PP_ROTATION_90: fit->rotation=90; fit->width=h; fit->height=w; break; case PP_ROTATION_180: fit->rotation=180; fit->width=w; fit->height=h; break; case PP_ROTATION_270: fit->rotation=270; fit->width=h; fit->height=w; break; case PP_ROTATION_AUTO: if((w>h)^(r.w>r.h)) { fit->rotation=90; fit->width=h; fit->height=w; } else { fit->rotation=0; fit->width=w; fit->height=h; } break; } nw=r.w; fit->scale=r.w; fit->scale/=fit->width; nh=int(fit->scale*fit->height); if(allow_cropping) { if(nhscale=r.h; fit->scale/=fit->height; nw=int(fit->scale*fit->width); } fit->width=nw; fit->height=nh; fit->xpos=r.x; fit->ypos=r.y; fit->xoffset=((nw-r.w)*halign)/LAYOUT_RECTANGLE_PANNING_MAX; fit->yoffset=((nh-r.h)*valign)/LAYOUT_RECTANGLE_PANNING_MAX; #if 0 switch(halign) { case START: fit->xoffset=0; break; case CENTRE: fit->xoffset=(nw-r.w)/2; break; case END: fit->xoffset=(nw-r.w); break; } switch(valign) { case START: fit->yoffset=0; break; case CENTRE: fit->yoffset=(nh-r.h)/2; break; case END: fit->yoffset=(nh-r.h); break; } #endif } else { if(nh>r.h) { nh=r.h; fit->scale=r.h; fit->scale/=fit->height; nw=int(fit->width*fit->scale); } fit->width=nw; fit->height=nh; fit->xpos=r.x+(r.w-nw)/2; fit->ypos=r.y+(r.h-nh)/2; fit->xoffset=0; fit->yoffset=0; } return(fit); } void LayoutRectangle::Scale(double scale) { x=int(x*scale+0.5); y=int(y*scale+0.5); w=int(w*scale+0.5); h=int(h*scale+0.5); } photoprint-0.4.2-pre2/support/ptmutex.h0000644000175000017500000000061311221375346015111 00000000000000/* Wrapper around pthread mutices */ #ifndef PTMUTEX_H #define PTMUTEX_H #include // #if defined HAVE_LIBPTHREAD || defined HAVE_LIBPTHREADGC2 #include class PTMutex { public: PTMutex(); virtual ~PTMutex(); virtual void ObtainMutex(); virtual bool AttemptMutex(); virtual void ReleaseMutex(); protected: pthread_mutex_t mutex; friend class Thread; }; #endif photoprint-0.4.2-pre2/support/circlemontage.cpp0000644000175000017500000000426311076423574016564 00000000000000#include #include #include "circlemontage.h" using namespace std; CMSegment::CMSegment(int x,int y,int w,int h,int xo,int yo,CircleMontage *cm,int t1,int t2) : LayoutRectangle(x,y,w,h), overlap(cm->overlap), radius(cm->radius), innerradius(cm->innerradius), xo(xo), yo(yo), t1(t1), t2(t2) { } CMSegment::~CMSegment() { } void CircleMontage::SetSegments(int segments,int angleoffset,int overlappercent) { this->segments=segments; segmentarc=360.0/segments; overlap=(segmentarc*overlappercent)/100.0; this->angleoffset=int(angleoffset-segmentarc); } CMSegment *CircleMontage::GetSegmentExtent(int segment) { float degperrad=360.0/(2*M_PI); float t1=angleoffset+segment*segmentarc-overlap; float t2=angleoffset+(segment+1)*segmentarc+overlap; if(t2>=360.0) { t1-=360.0; t2-=360.0; } float tx1=radius*sin(t1/degperrad); float ty1=-radius*cos(t1/degperrad); // float tx2=radius2*sin(t1/degperrad); // float ty2=-radius2*cos(t1/degperrad); float tx2=0.0; float ty2=0.0; float tx3=radius*sin(t2/degperrad); float ty3=-radius*cos(t2/degperrad); // float tx4=radius2*sin(t2/degperrad); // float ty4=-radius2*cos(t2/degperrad); float tx4=0.0; float ty4=0.0; float x1,x2,y1,y2; x1=tx1; if(tx2x2) x2=tx2; if(tx3>x2) x2=tx3; if(tx4>x2) x2=tx4; y2=ty1; if(ty2>y2) y2=ty2; if(ty3>y2) y2=ty3; if(ty4>y2) y2=ty4; if(t1<0.0 && t2>0.0) y1=-radius; if(t1<90.0 && t2>90.0) x2=radius; if(t1<-270.0 && t2>-270.0) x2=radius; if(t1<180.0 && t2>180.0) y2=radius; if(t1<-180.0 && t2>-180.0) y2=radius; if(t1<270.0 && t2>270.0) x1=-radius; if(t1<-90.0 && t2>-90.0) x1=-radius; return(new CMSegment(int(xorigin+x1),int(yorigin+y1),int(x2-x1),int(y2-y1), int(-x1),int(-y1),this,int(t1),int(t2))); } CircleMontage::~CircleMontage() { } CircleMontage::CircleMontage(int width,int height) : width(width), height(height), xorigin(width/2), yorigin(height/2), innerradius(0) { radius=width/2; if((height/2) #include "refcount.h" #include "debug.h" using namespace std; RefCount::RefCount() : refcount(1) { } RefCount::~RefCount() { Debug[TRACE] << "In RefCount destructor" << endl; } void RefCount::ObtainRefMutex() { Debug[TRACE] << "In ObtainRefMutex" << endl; refmutex.ObtainMutex(); Debug[TRACE] << "Obtained" << endl; } void RefCount::ReleaseRefMutex() { refmutex.ReleaseMutex(); } void RefCount::Ref() { ObtainRefMutex(); ++refcount; Debug[TRACE] << "Ref: count is " << refcount << endl; ReleaseRefMutex(); } void RefCount::UnRef() { ObtainRefMutex(); --refcount; Debug[TRACE] << "UnRef: count is " << refcount << endl; ReleaseRefMutex(); if(refcount==0) { Debug[TRACE] << "UnRef: deleting object" << endl; delete this; } Debug[TRACE] << "UnRef complete" << endl; } PTMutex RefCount::refmutex; photoprint-0.4.2-pre2/support/progressthread.h0000644000175000017500000000064311076423574016447 00000000000000#ifndef PROGRESSTHREAD_H #define PROGRESSTHREAD_H #include "thread.h" #include "progress.h" class ProgressThread : public Progress { public: ProgressThread(Thread &t) : Progress(), thread(t) { } virtual ~ProgressThread() { } virtual bool DoProgress() { return(!thread.TestBreak()); } virtual bool DoProgress(int i, int maxi) { return(!thread.TestBreak()); } protected: Thread &thread; }; #endif photoprint-0.4.2-pre2/support/signature.h0000644000175000017500000000270211246273665015415 00000000000000/* * signature.h - class to handle coordinate calculations for n-up rectangular layouts * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #ifndef SIGNATURE_H #define SIGNATURE_H #include "pageextent.h" #include "layoutrectangle.h" #define DEFAULTGUTTER 15 class LayoutRectangle; class Signature : public virtual PageExtent { public: Signature(int rows=1,int columns=1); Signature(PageExtent &extent,int rows=1,int columns=1); ~Signature() { } void SetPageExtent(PageExtent &pe); void SetPaperSize(int width,int height); void SetMargins(int left,int right,int top,int bottom); void SetGutters(int hgutter,int vgutter); void SetHGutter(int gutter); void SetVGutter(int gutter); void SetColumns(int columns); void SetRows(int rows); void SetCellWidth(int width); void SetCellHeight(int height); int GetCellWidth(); int GetCellHeight(); int GetColumns(); int GetRows(); int GetHGutter(); int GetVGutter(); bool GetAbsolute(); LayoutRectangle *GetLayoutRectangle(int row,int column); void EqualiseMargins(); void ReCalc(); void ReCalcByCellSize(); int ColumnAt(int xpos); int RowAt(int ypos); protected: int hgutter,vgutter; int rows,columns; float celwidth,celheight; int rightpadding,bottompadding; bool absolutemode; // Used to track whether we're recalcing in terms of rows/columns or cell size. }; #endif photoprint-0.4.2-pre2/support/util.cpp0000644000175000017500000002061211363430063014707 00000000000000/* * util.cpp - miscellaneous support functions. * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include #include #include #include #include #include #include #include #ifdef WIN32 #include #endif #include "debug.h" #include "searchpath.h" #include "dirtreewalker.h" #include "pathsupport.h" using namespace std; // Open a file from a utf-8-encoded filename. // On Unix, this is a straight passthrough to fopen(). // On Win32 the filename is will converted to wchar_t, then opened with _wfopen // If either translation or opening the translated filename fails, falls back to using // the untranslated filename. (Should take care of code-page command-line arguments...) FILE *FOpenUTF8(const char *name,const char *mode) { #ifdef WIN32 FILE *result=NULL; size_t fnlen=MultiByteToWideChar(CP_UTF8,0,name,-1,NULL,0); size_t modelen=MultiByteToWideChar(CP_UTF8,0,mode,-1,NULL,0); if(fnlen && modelen) { wchar_t *fnbuf=(wchar_t *)malloc(fnlen*sizeof(wchar_t)); wchar_t *modebuf=(wchar_t *)malloc(modelen*sizeof(wchar_t)); if(MultiByteToWideChar(CP_UTF8,0,name,-1,fnbuf,fnlen)) { MultiByteToWideChar(CP_UTF8,0,mode,-1,modebuf,modelen); result=_wfopen(fnbuf,modebuf); } free(modebuf); free(fnbuf); } // If we've not succeeded in opening the file, fall back to regular fopen() - // maybe it's a code-page encoded filename supplied on the command line... if(result) return(result); #endif return(fopen(name,mode)); } // This function is now recursive, so you can provide a pathname of the form // /home/user/obscure1/obscure2/obscure3 - and all three of the last components will // be created if they don't exist already. bool CreateDirIfNeeded(const char *path) { struct stat s; if(stat(path,&s)==0) return(true); if(errno==ENOENT) { char *s2=strdup(path); char *parent=dirname(s2); if(strcmp(parent,".")!=0) CreateDirIfNeeded(parent); free(s2); #ifdef WIN32 return(mkdir(path)==0); #else return(mkdir(path,0755)==0); #endif } return(false); } bool CheckFileExists(const char *file) { struct stat s; return(stat(file,&s)==0); } bool CheckSettingsDir(const char *dirname) { const char *homedir=get_homedir(); if(homedir) { char *path=(char *)malloc(strlen(homedir)+strlen(dirname)+2); sprintf(path,"%s%c%s",homedir,SEARCHPATH_SEPARATOR,dirname); Debug[TRACE] << "Settings directory: " << path << endl; CreateDirIfNeeded(path); free(path); return(true); } else return(false); } char *BuildAbsoluteFilename(const char *fname) { char *result=NULL; char cwdbuf[1024]; int l; if(!(getcwd(cwdbuf,1023))) throw "Can't get curent working directory"; l=strlen(fname)+strlen(cwdbuf)+3; result=(char *)malloc(l); sprintf(result,"%s%c%s",cwdbuf,SEARCHPATH_SEPARATOR,fname); return(result); } char *BuildFilename(const char *root,const char *suffix,const char *fileext) { // Build a filename like . // Must take care not to treat any . characters before the last slash as // a file-extension point! char *extension; if(!suffix) suffix=""; char *filename=NULL; if(fileext) filename=(char *)malloc(strlen(root)+strlen(suffix)+strlen(fileext)+3); else filename=(char *)malloc(strlen(root)+strlen(suffix)+3); char *root2=strdup(root); extension = root2 + strlen (root2) - 1; while (extension >= root2) { if(*extension == '/' || *extension == '\\') { extension=root2 + strlen(root2); break; } if (*extension == '.') break; extension--; } if (extension >= root2 && fileext && strlen(fileext)) { *(extension++) = '\0'; sprintf(filename,"%s%s.%s", root2, suffix, fileext); } else { if(extension>=root2) *(extension++) = '\0'; sprintf(filename,"%s%s", root2, suffix); } free(root2); return(filename); } char *SerialiseFilename(const char *fname,int serialno,int max) { int digits=0; while(max) { ++digits; max/=10; } char *ftmp=strdup(fname); const char *extension=""; int idx=strlen(ftmp)-1; while(idx>0) { if(ftmp[idx]=='.') break; --idx; } if(idx) { extension=ftmp+idx+1; ftmp[idx]=0; } char *result=(char *)malloc(strlen(ftmp)+strlen(extension)+digits+4); if(digits) sprintf(result,"%s_%0*d.%s",ftmp,digits,serialno,extension); else sprintf(result,"%s_%d.%s",ftmp,serialno,extension); free(ftmp); return(result); } int TestNumeric(char *str) { int result=1; int c; while((c=*str++)) { if((c<'0')||(c>'9')) result=0; } return(result); } bool TestHostName(char *str,char **hostname,int *port) { int c; char *src=str; while((c=*src++)) { if(c==':') { if(TestNumeric(src)) { int hnl=src-str; *port=atoi(src); *hostname=(char *)malloc(hnl+1); strncpy(*hostname,str,hnl); (*hostname)[hnl-1]=0; return(true); } } } return(false); } bool CompareFiles(const char *fn1,const char *fn2) { bool result=true; int l1,l2; char *buf1,*buf2; ifstream i1,i2; i1.open(fn1,ios::binary); i2.open(fn2,ios::binary); i1.seekg(0, ios::end); l1= i1.tellg(); i1.seekg (0, ios::beg); i2.seekg(0, ios::end); l2= i2.tellg(); i2.seekg (0, ios::beg); if(l1==l2) { buf1 = new char [l1]; buf2 = new char [l2]; i1.read (buf1,l1); i2.read (buf2,l2); for(int i=0;i #include #include #include "debug.h" #include "threadevent.h" using namespace std; class ThreadEvent_Subscriber { public: ThreadEvent_Subscriber(ThreadEvent &header) : count(0), header(header), nextsub(NULL), prevsub(NULL) { id=Thread::GetThreadID(); header.mutex.ObtainMutex(); prevsub=header.firstsubscriber; if(prevsub) { while(prevsub->nextsub) prevsub=prevsub->nextsub; prevsub->nextsub=this; } else header.firstsubscriber=this; header.mutex.ReleaseMutex(); } ~ThreadEvent_Subscriber() { header.mutex.ObtainMutex(); if(nextsub) nextsub->prevsub=prevsub; if(prevsub) prevsub->nextsub=nextsub; else header.firstsubscriber=nextsub; header.mutex.ReleaseMutex(); } ThreadEvent_Subscriber *NextSubscriber() { return(nextsub); } int GetCount() { return(count); } void Clear() { count=0; } void Increment() { ++count; } ThreadID GetID() { return(id); } bool operator==(const ThreadID other) { return(other==id); } protected: int count; ThreadID id; ThreadEvent &header; ThreadEvent_Subscriber *nextsub,*prevsub; }; ThreadEventHandler::ThreadEventHandler() : PTMutex(), firstevent(NULL) { } ThreadEventHandler::~ThreadEventHandler() { ObtainMutex(); while(firstevent) delete firstevent; ReleaseMutex(); } ThreadEvent *ThreadEventHandler::FirstEvent() { return(firstevent); } ThreadEvent *ThreadEventHandler::FindEvent(const char *name) { ThreadEvent *result=firstevent; while(result) { if(strcmp(name,result->GetName())==0) return(result); result=result->NextEvent(); } return(result); } //------------------------------------ ThreadEvent::ThreadEvent(ThreadEventHandler &header,const char *eventname) : mutex(), header(header), nextevent(NULL), prevevent(NULL), name(NULL), firstsubscriber(NULL) { header.ObtainMutex(); if(eventname) name=strdup(eventname); prevevent=header.FirstEvent(); if(prevevent) { while(prevevent->nextevent) prevevent=prevevent->nextevent; prevevent->nextevent=this; } else header.firstevent=this; header.ReleaseMutex(); } ThreadEvent::~ThreadEvent() { // Detach from the header's queue while holding the header's mutex. header.ObtainMutex(); if(nextevent) nextevent->prevevent=prevevent; if(prevevent) prevevent->nextevent=nextevent; else header.firstevent=nextevent; header.ReleaseMutex(); // Now remove any subscribers while holding an exclusive lock on the ThreadEvent mutex.ObtainMutex(); while(firstsubscriber) delete firstsubscriber; if(name) free(name); mutex.ReleaseMutex(); } ThreadEvent *ThreadEvent::NextEvent() { return(nextevent); } const char *ThreadEvent::GetName() { return(name); } void ThreadEvent::WaitEvent() { WaitAndHold().ReleaseMutex(); } ThreadCondition &ThreadEvent::WaitAndHold() { cond.ObtainMutex(); cond.WaitCondition(); return(cond); } void ThreadEvent::Trigger() { Debug[TRACE] << "Triggering event..." << endl; mutex.ObtainMutex(); Debug[TRACE] << "Got event mutex" << endl; ThreadEvent_Subscriber *sub=firstsubscriber; while(sub) { Debug[TRACE] << "Incrementing subscriber trigger count" << endl; sub->Increment(); sub=sub->NextSubscriber(); } cond.ObtainMutex(); Debug[TRACE] << "Obtained trigger Mutex" << endl; cond.Broadcast(); Debug[TRACE] << "Sent signal - releasing" << endl; cond.ReleaseMutex(); mutex.ReleaseMutex(); Debug[TRACE] << "Released event Mutex" << endl; } int ThreadEvent::Query() { int result=0; mutex.ObtainMutex(); ThreadEvent_Subscriber *sub=FindSubscriber(); if(sub) { result=sub->GetCount(); Debug[TRACE] << "Subscriber count is " << result << endl; sub->Clear(); } mutex.ReleaseMutex(); return(result); } int ThreadEvent::QueryAndWait() { int result=0; // Must keep mutex held between query and wait. mutex.ObtainMutex(); // Do we have a subscriber for this thread? ThreadEvent_Subscriber *sub=FindSubscriber(); if(sub) { result=sub->GetCount(); Debug[TRACE] << "QueryAndWait: Subscriber count is " << result << endl; sub->Clear(); } // If the subscriber's event count is non-zero we release the mutex and return the count if(result) { mutex.ReleaseMutex(); return(result); } // If there is no subscriber, or if it received no events, we wait. cond.ObtainMutex(); mutex.ReleaseMutex(); cond.WaitCondition(); cond.ReleaseMutex(); // The event which woke us up should have incremented the subscriber's count, so clear it. if((sub=FindSubscriber())) sub->Clear(); return(1); } ThreadCondition &ThreadEvent::QueryWaitAndHold() { // Must keep mutex held between query and wait. int result=0; mutex.ObtainMutex(); cond.ObtainMutex(); // Do we have a subscriber for this thread? ThreadEvent_Subscriber *sub=FindSubscriber(); if(sub) { result=sub->GetCount(); Debug[TRACE] << "QueryAndWait: Subscriber count is " << result << endl; sub->Clear(); } // If the subscriber's event count is non-zero we release the mutex and return the count if(result) { mutex.ReleaseMutex(); return(cond); } mutex.ReleaseMutex(); // If there is no subscriber, or if it received no events, we wait. cond.WaitCondition(); // The event which woke us up should have incremented the subscriber's count, so clear it. if((sub=FindSubscriber())) sub->Clear(); return(cond); } void ThreadEvent::Release() { cond.ReleaseMutex(); } void ThreadEvent::Subscribe() { Debug[TRACE] << "ThreadEvent - obtaining mutex" << endl; mutex.ObtainMutex(); Debug[TRACE] << "ThreadEvent - searching for existing subscriber..." << endl; if(!FindSubscriber()) new ThreadEvent_Subscriber(*this); Debug[TRACE] << "ThreadEvent - Releasing mutex" << endl; mutex.ReleaseMutex(); } void ThreadEvent::Unsubscribe() { mutex.ObtainMutex(); ThreadEvent_Subscriber *sub=FindSubscriber(); if(sub) delete sub; mutex.ReleaseMutex(); } ThreadEvent_Subscriber *ThreadEvent::FindSubscriber() { mutex.ObtainMutexShared(); ThreadID id=Thread::GetThreadID(); ThreadEvent_Subscriber *sub=firstsubscriber; while(sub) { if(sub->GetID()==id) { mutex.ReleaseMutex(); return(sub); } sub=sub->NextSubscriber(); } mutex.ReleaseMutex(); return(NULL); } photoprint-0.4.2-pre2/support/searchpath.cpp0000644000175000017500000001516711266367274016104 00000000000000#include #include #include #include #include #include #include "pathsupport.h" #include "searchpath.h" #include "debug.h" using namespace std; class SearchPathInstance { public: SearchPathInstance(const char *path); ~SearchPathInstance(); char *Simplify(const char *file); char *MakeAbsolute(const char *file); SearchPathInstance *Next(); protected: char *path; friend class SearchPathHandler; friend class SearchPathIterator; friend std::ostream& operator<<(std::ostream &s,SearchPathInstance &sp); }; SearchPathInstance::SearchPathInstance(const char *path) : path(NULL) { this->path=substitute_homedir(path); } SearchPathInstance::~SearchPathInstance() { if(path) free(path); } char *SearchPathInstance::Simplify(const char *file) { if(path && file) { if(strncmp(file,path,strlen(path))==0) { int i=strlen(path); if(file[i]==SEARCHPATH_SEPARATOR) ++i; if(file[i]) return(strdup(file+i)); } } return(strdup(file)); } char *SearchPathInstance::MakeAbsolute(const char *file) { char *result=NULL; int l=strlen(path); int m=strlen(file); if(l&&m) { result=(char *)malloc(l+m+2); if(path[l-1]!=SEARCHPATH_SEPARATOR) sprintf(result,"%s%c%s",path,SEARCHPATH_SEPARATOR,file); else sprintf(result,"%s%s",path,file); } return(result); } std::ostream& operator<<(std::ostream &s,SearchPathInstance &spi) { const char *homedir=get_homedir(); char *path=spi.path; if(homedir && strncmp(homedir,path,strlen(homedir))==0) { s<<"$HOME"; s<::iterator it=paths.begin(); while(it!=paths.end()) { delete (*it); ++it; } } char *SearchPathHandler::SearchPaths(const char *file) { struct stat statbuf; list::iterator it=paths.begin(); while(it!=paths.end()) { char *p=(*it)->MakeAbsolute(file); // Debug[TRACE] << file << " -> " << p << endl; if(stat(p,&statbuf)==0) return(p); free(p); ++it; } if(stat(file,&statbuf)==0) return(strdup(file)); return(NULL); } void SearchPathHandler::AddPath(const char *path) { if(path) { try { char *p=strdup(path); char *p2=p; char *p3=p; while(*p3) { if(*p3==SEARCHPATH_DELIMITER_C) { *p3=0; paths.push_back(new SearchPathInstance(p2)); p2=p3+1; } ++p3; } paths.push_back(new SearchPathInstance(p2)); free(p); } catch(const char *err) { Debug[ERROR] << "Error: " << err << endl; } } } SearchPathInstance *SearchPathHandler::FindPath(const char *path) { SearchPathInstance *result=NULL; char *p=NULL; if(path) { if(strncmp(path,"$HOME",5)==0) { char *homedir=getenv("HOME"); if(!homedir) throw "No home directory"; p=(char *)malloc(strlen(path)-5+strlen(homedir)+2); sprintf(p,"%s%s",homedir,path+5); } else p=strdup(path); list::iterator it=paths.begin(); while(it!=paths.end()) { if(strcmp((*it)->path,p)==0) result=(*it); ++it; } free(p); } return(result); } void SearchPathHandler::RemovePath(const char *path) { SearchPathInstance *spi=FindPath(path); if(spi) delete spi; } void SearchPathHandler::ClearPaths() { list::iterator it=paths.begin(); while(it!=paths.end()) { delete (*it); ++it; } paths.clear(); } char *SearchPathHandler::MakeRelative(const char *path) { char *best=NULL; unsigned int bestlen=100000; if(!path) return(NULL); list::iterator it=paths.begin(); while(it!=paths.end()) { char *rel=(*it)->Simplify(path); if(strlen(rel)path))) ++spiterator; if(spiterator==header.paths.end()) return(NULL); } } } struct dirent *de=NULL; while(searchdirectory && !de) { de=readdir(searchdirectory); if(!de) { closedir(searchdirectory); searchdirectory=NULL; while(!searchdirectory && (++spiterator!=header.paths.end())) { searchdirectory=opendir((*spiterator)->path); } if(searchdirectory) de=readdir(searchdirectory); } if(de) { if(strcmp(".",de->d_name)==0) de=NULL; else if(strcmp("..",de->d_name)==0) de=NULL; } } if(de) { searchfilename=strdup(de->d_name); } return(searchfilename); } const char *SearchPathIterator::GetNextPath(const char *last) { const char *result=NULL; if(!last) spiterator=header.paths.begin(); if(spiterator!=header.paths.end()) { result=(*spiterator)->path; ++spiterator; } return(result); } std::ostream& operator<<(std::ostream &s,SearchPathHandler &sp) { list::iterator it=sp.paths.begin(); while(it!=sp.paths.end()) { s << (*it); ++it; if(it!=sp.paths.end()) s << SEARCHPATH_DELIMITER_S; } return(s); } char *SearchPathHandler::GetPaths() { const char *homedir=get_homedir(); int homedirlen=0; int sl=0; if(homedir) homedirlen=strlen(homedir); list::iterator spi=paths.begin(); while(spi!=paths.end()) { if(homedir && strncmp(homedir,(*spi)->path,homedirlen)==0) sl+=strlen((*spi)->path)+strlen("$HOME/")+1-homedirlen; else sl+=strlen((*spi)->path)+1; ++spi; } char *result=(char *)malloc(sl+1); result[0]=0; spi=paths.begin(); while(spi!=paths.end()) { if(homedir && strncmp(homedir,(*spi)->path,homedirlen)==0) { strcat(result,"$HOME"); strcat(result,(*spi)->path+homedirlen); ++spi; if(spi!=paths.end()) strcat(result,SEARCHPATH_DELIMITER_S); } else { strcat(result,(*spi)->path); ++spi; if(spi!=paths.end()) strcat(result,SEARCHPATH_DELIMITER_S); } } return(result); } photoprint-0.4.2-pre2/support/dirtreewalker.h0000644000175000017500000000070411342052660016243 00000000000000#ifndef DIRTREEWALKER_H #define DIRTREEWALKER_H #include #include "dirent.h" class DirTreeWalker : public std::string { public: DirTreeWalker(const char *initialpath,DirTreeWalker *parent=NULL); ~DirTreeWalker(); DirTreeWalker *NextDirectory(); DirTreeWalker *Parent(); const char *NextFile(); protected: DirTreeWalker *parent; DirTreeWalker *child; // std::string path; std::string filename; DIR *files; DIR *dirs; }; #endif photoprint-0.4.2-pre2/support/multex.cpp0000644000175000017500000000651211266367070015264 00000000000000#include #include #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "debug.h" #include "thread.h" #include "multex.h" using namespace std; // pthreads-based implementation Multex::Multex(int limit) : PTMutex(), lockcount(0), limit(limit) { static int ser=0; serialno=++ser; // Giving each multex a serial number makes debugging easier. for(int i=0;i=limit) { pthread_cond_wait(&cond,&mutex); } Increment(); // Dump(); PTMutex::ReleaseMutex(); } bool Multex::AttemptMultex() { // Debug[TRACE] << "Multex " << serialno << ": AttemptMutex from " << long(Thread::GetThreadID()) << endl; bool result=false; PTMutex::ObtainMutex(); if(lockcount0.00001 && (high-low)>0.0001) { // To reverse the sense of this comparison for the Descending case // we just multiply each operand by -1 double m=1.0; if(type==BINARYSEARCHTYPE_DESCENDING) m=-1.0; if((m*val)>(m*target)) { low=result; } else { high=result; } result=Search(low,high,target); } return(result); } virtual double Evaluate(double input)=0; protected: BinarySearchType type; }; #endif photoprint-0.4.2-pre2/support/consumer.cpp0000644000175000017500000000323011266367013015570 00000000000000 #include "consumer.h" #include "debug.h" using namespace std; Consumer_File::Consumer_File(const char *filename) { if(!(file=fopen(filename,"wb"))) throw "Can't open file for writing!"; } Consumer_File::~Consumer_File() { fclose(file); } bool Consumer_File::Write(const char *buffer,int length) { int l=fwrite(buffer,length,1,file); return(l==length); } void Consumer_File::Cancel() { } Consumer_Pipe::Consumer_Pipe(const char *command) : canceled(false) { #ifdef WIN32 if(!(pfile = popen("kljjalklk", "r"))) throw "Failed to create pipe"; #else aborted=false; signal(SIGPIPE,&sighandler); if(pipe(pipefd)) throw "Failed to create pipe"; childpid=fork(); if(childpid==0) { Debug[TRACE] << "Child process: " << childpid << endl; dup2(pipefd[0],0); close(pipefd[0]); close(pipefd[1]); execl("/bin/sh", "/bin/sh", "-c", command, NULL); } #endif } Consumer_Pipe::~Consumer_Pipe() { #if WIN32 fclose(pfile); #else if(canceled) { Debug[TRACE] << "Killing child process (" << childpid << ")..." << endl; kill(childpid,SIGTERM); } close(pipefd[0]); close(pipefd[1]); #endif } bool Consumer_Pipe::Write(const char *buffer,int length) { #ifdef WIN32 fwrite(buffer,length,1,pfile); return(true); #else write(pipefd[1],buffer,length); return(!aborted); #endif } void Consumer_Pipe::Cancel() { canceled=true; } void Consumer_Pipe::sighandler(int sig) { #ifndef WIN32 switch(sig) { case SIGPIPE: Debug[WARN] << "Received SIGPIPE - aborting" << endl; aborted=true; break; default: break; } #endif } bool Consumer_Pipe::aborted; photoprint-0.4.2-pre2/support/externalprog.h0000644000175000017500000000527011375340622016120 00000000000000#ifndef EXTERNALPROG_H #define EXTERNALPROG_H #include #include #include #include #include #ifndef WIN32 #include #endif #include "pathsupport.h" class ExternalProgArgList : public std::deque { public: ExternalProgArgList() : std::deque() { } virtual ~ExternalProgArgList() { } virtual std::string &operator[](unsigned int i) { Debug[TRACE] << "Referencing argument " << i << std::endl; if(i<0) throw "ExternalProgArgList - index must be >= 0"; while(size()<=i) { push_back(""); } return(std::deque::operator[](i)); } }; class ExternalProgram : public SearchPathHandler { public: ExternalProgram() : SearchPathHandler(), forkpid(0) { } virtual ~ExternalProgram() { } virtual void SetDefaultPath() { // If the application knows where a particular program should be stored, // such as /usr/lib/cups/backend, or c:/Program Files/PhotoPrint/ // then override and set in here. // Note: Constructor doesn't call this, because the vtables aren't set up in time! // Thus, you should call this in your own constructor. } virtual void AddArg(const std::string &arg) { args[args.size()]=arg; } virtual void RunProgram() { Debug[TRACE] << "Hunting for " << args[0] << std::endl; char *prgname=SearchPaths(args[0].c_str()); if(!prgname) throw "Can't find external program"; char **arglist=(char **)malloc(sizeof(char *)*(args.size()+1)); for(unsigned int i=0;i1) args.pop_back(); } protected: ExternalProgArgList args; #ifdef WIN32 intptr_t forkpid; #else int forkpid; #endif }; #endif photoprint-0.4.2-pre2/support/Makefile.in0000644000175000017500000004156511400237522015302 00000000000000# Makefile.in generated by automake 1.10.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008 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@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@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 = support DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/scripts/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libsupport_la_LIBADD = am_libsupport_la_OBJECTS = consumer.lo configdb.lo layoutrectangle.lo \ signature.lo circlemontage.lo pathsupport.lo rangeparser.lo \ thread.lo ptmutex.lo rwmutex.lo multex.lo threadevent.lo \ refcount.lo searchpath.lo dirtreewalker.lo tempfile.lo md5.lo \ debug.lo util.lo libsupport_la_OBJECTS = $(am_libsupport_la_OBJECTS) libsupport_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(libsupport_la_LDFLAGS) $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/scripts/depcomp am__depfiles_maybe = depfiles CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) CXXLD = $(CXX) CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ SOURCES = $(libsupport_la_SOURCES) DIST_SOURCES = $(libsupport_la_SOURCES) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DSYMUTIL = @DSYMUTIL@ ECHO = @ECHO@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ GDKPIXBUF2_CFLAGS = @GDKPIXBUF2_CFLAGS@ GDKPIXBUF2_LIBS = @GDKPIXBUF2_LIBS@ GETOPT_LIBS = @GETOPT_LIBS@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ GLIB2_CFLAGS = @GLIB2_CFLAGS@ GLIB2_LIBS = @GLIB2_LIBS@ GMSGFMT = @GMSGFMT@ GMSGFMT_015 = @GMSGFMT_015@ GP_CFLAGS = @GP_CFLAGS@ GP_LIBS = @GP_LIBS@ GREP = @GREP@ GTHREAD_CFLAGS = @GTHREAD_CFLAGS@ GTHREAD_LIBS = @GTHREAD_LIBS@ GTK2_CFLAGS = @GTK2_CFLAGS@ GTK2_LIBS = @GTK2_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ JPEG_LIBS = @JPEG_LIBS@ LCMS_CFLAGS = @LCMS_CFLAGS@ LCMS_LIBS = @LCMS_LIBS@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBM_LIBS = @LIBM_LIBS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LN_S = @LN_S@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MSGFMT = @MSGFMT@ MSGFMT_015 = @MSGFMT_015@ MSGMERGE = @MSGMERGE@ NMEDIT = @NMEDIT@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ POSUB = @POSUB@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ TIFF_LIBS = @TIFF_LIBS@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XGETTEXT_015 = @XGETTEXT_015@ XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ 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@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ 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@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CXXFLAGS = -Wall -I../imagesource/ -I../ -I../pixbufthumbnail -I../imagesource -I../profilemanager $(LCMS_CFLAGS) $(GTK2_CFLAGS) ${PNM_CFLAGS} noinst_LTLIBRARIES = libsupport.la libsupport_la_SOURCES = \ binarysearch.h \ \ consumer.cpp \ consumer.h \ configdb.cpp \ configdb.h \ \ layoutrectangle.cpp \ layoutrectangle.h \ pageextent.h \ signature.cpp \ signature.h \ circlemontage.cpp \ circlemontage.h \ \ jobqueue.h \ pathsupport.cpp \ pathsupport.h \ progress.h \ progresstext.h \ progressthread.h \ \ rangeparser.cpp \ rangeparser.h \ \ thread.cpp \ thread.h \ ptmutex.cpp \ ptmutex.h \ rwmutex.cpp \ rwmutex.h \ multex.cpp \ multex.h \ threadutil.h \ threadevent.cpp \ threadevent.h \ refcount.cpp \ refcount.h \ \ searchpath.cpp \ searchpath.h \ searchpathdbhandler.h \ dirtreewalker.cpp \ dirtreewalker.h \ externalprog.h \ \ tempfile.cpp \ tempfile.h \ \ md5.cpp \ md5.h \ debug.cpp \ debug.h \ util.cpp \ util.h libsupport_la_LDFLAGS = -static all: all-am .SUFFIXES: .SUFFIXES: .cpp .lo .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 \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign support/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --foreign support/Makefile .PRECIOUS: 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 clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libsupport.la: $(libsupport_la_OBJECTS) $(libsupport_la_DEPENDENCIES) $(libsupport_la_LINK) $(libsupport_la_OBJECTS) $(libsupport_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/circlemontage.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/configdb.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/consumer.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debug.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dirtreewalker.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/layoutrectangle.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/md5.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multex.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pathsupport.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ptmutex.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rangeparser.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/refcount.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rwmutex.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/searchpath.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/signature.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tempfile.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/thread.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/threadevent.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/util.Plo@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$tags $$unique; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$tags$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$tags $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here 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 $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ cp -pR $$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: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: 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: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_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-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am info: info-am info-am: install-data-am: install-dvi: install-dvi-am 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 installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ 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 mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am # 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: photoprint-0.4.2-pre2/support/refcount.h0000644000175000017500000000074311270645364015240 00000000000000#ifndef REFCOUNT_H #define REFCOUNT_H #include "ptmutex.h" class RefCount { public: RefCount(); virtual ~RefCount(); virtual void ObtainRefMutex(); virtual void ReleaseRefMutex(); virtual void Ref(); virtual void UnRef(); protected: int refcount; static PTMutex refmutex; // We use a single mutex to protect all refcounts, since they'll only be held momentarily. // Also avoids the issue of trying to destruct a member mutex object while it's locked. }; #endif photoprint-0.4.2-pre2/support/rwmutex.cpp0000644000175000017500000001504711317700470015454 00000000000000#include #include #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "debug.h" #include "thread.h" #include "rwmutex.h" using namespace std; // pthreads-based implementation RWMutex::RWMutex() : PTMutex(), lockcount(0), exclusive(0) { static int ser=0; serialno=++ser; // Giving each mutex a serial number makes debugging easier. for(int i=0;i0 return false; if(counttable[i].id!=current && counttable[i].count!=0) return(false); // If the current thread's count == the global lockcount, return true. if(counttable[i].id==current && counttable[i].count==lockcount) return(true); } // If we reached here, then the global lockcount is greater than zero, but // the thread table is inconsistent. Succeed grudgingly. Debug[TRACE] << "RWMutex " << serialno << ": inconsistent locking data." << endl; return(true); } void RWMutex::Increment() { ++lockcount; if(exclusive) ++exclusive; // Find the current thread in the table and increment its count #ifdef WIN32 void *current=pthread_self().p; #else pthread_t current=pthread_self(); #endif // Debug[TRACE] << "Increment - searching for thread: " << current << endl; for(int i=0;i #include #include #include "rangeparser.h" using namespace std; RangeParser::RangeParser(const char *range,int max) : max(max), range(NULL), ptr(NULL), prev(0), target(0) { if(range) this->range=strdup(range); else this->range=strdup(""); ptr=this->range; while(Next()); } RangeParser::~RangeParser() { if(range) free(range); } int RangeParser::Next() { // If we're in the middle of a range, continue through the range... if(target) { if(prev'9') throw "Bad range specified"; while(*p2>='0' && *p2<='9') ++p2; // Replace character after number with 0, temporarily... char tmp=*p2; prev=atoi(ptr); *p2=tmp; while(*p2!=0 && *p2==' ') ++p2; ptr=p2; // Is a range specified? if(*ptr=='-') { ++ptr; // Skip over whitespace while(*ptr==' ' || *ptr==',') ++ptr; p2=ptr; if(!*ptr) target=max; else { if(*p2<'0' || *p2>'9') throw "Bad range specified"; while(*p2>='0' && *p2<='9') ++p2; // Replace character after number with 0, temporarily... char tmp=*p2; target=atoi(ptr); *p2=tmp; } ptr=p2; } } if(max>0 && prev>max) throw "Bad range specified"; return(prev); } photoprint-0.4.2-pre2/support/pathsupport.h0000644000175000017500000000156211356430001015765 00000000000000#ifndef PATHSUPPORT_H #define PATHSUPPORT_H #include // Wrapper for either getenv("HOME") or g_get_home_dir(). const char *get_homedir(); // substitue_homedir(const char *path) // // Accepts a source path argument. If the source path begins with $HOME" or "~" // then the user's home directory is substituted. // Whether or not the directory is substituted, the returned value is a new string // which may be free()d when finished with. char *substitute_homedir(const char *path); // substitute_xdgdatahome(const char *path); // // Similar to substitute_homedir, but instead uses the XDG Base Directory specification. char *substitute_xdgconfighome(const char *path); // Given a top-level directory, extracts the last component, and matches against a prefix. // Useful for locating an executable. int MatchBaseName(const char *prefix,const char *path); #endif photoprint-0.4.2-pre2/support/layoutrectangle.h0000644000175000017500000000166211177270343016613 00000000000000#ifndef LAYOUTRECTANGLE_H #define LAYOUTRECTANGLE_H enum PP_ROTATION { PP_ROTATION_AUTO, PP_ROTATION_NONE, PP_ROTATION_90, PP_ROTATION_180, PP_ROTATION_270, }; struct RectFit { int xpos,ypos; int xoffset,yoffset; int width,height; int rotation; double scale; }; #define LAYOUT_RECTANGLE_PANNING_MAX 100 enum LayoutRectangle_Alignment {START=0,CENTRE=LAYOUT_RECTANGLE_PANNING_MAX/2,END=LAYOUT_RECTANGLE_PANNING_MAX}; class LayoutRectangle { public: LayoutRectangle(int x,int y,int w,int h); LayoutRectangle(int w,int h); LayoutRectangle(LayoutRectangle &r); virtual ~LayoutRectangle(); virtual LayoutRectangle *Intersection(LayoutRectangle &r); virtual LayoutRectangle *UnionBoundary(LayoutRectangle &r); virtual RectFit *Fit(LayoutRectangle &r,bool allow_cropping,PP_ROTATION rotation, LayoutRectangle_Alignment halign,LayoutRectangle_Alignment valign); virtual void Scale(double scale); int x,y; int w,h; }; #endif photoprint-0.4.2-pre2/support/jobqueue.h0000644000175000017500000001665111324336505015231 00000000000000#ifndef JOBQUEUE_H #define JOBQUEUE_H #include #include #include #include "support/debug.h" #include "support/thread.h" #include "support/ptmutex.h" class Worker; enum JobStatus {JOBSTATUS_QUEUED,JOBSTATUS_RUNNING,JOBSTATUS_CANCELLED,JOBSTATUS_COMPLETED,JOBSTATUS_UNKNOWN}; class Job { public: Job() : jobstatus(JOBSTATUS_UNKNOWN) { } Job(Job &other) { } virtual ~Job() { } virtual void Run(Worker *worker=NULL) { } virtual JobStatus GetJobStatus() { return(jobstatus); } virtual void SetJobStatus(JobStatus s) { // Debug[TRACE] << "Job::SetJobStatus(" << s << ")" << endl; jobstatus=s; } virtual void CancelJob() { jobstatus=JOBSTATUS_CANCELLED; } protected: JobStatus jobstatus; }; class JobQueue : public ThreadCondition { public: JobQueue() : ThreadCondition() { } ~JobQueue() { ObtainMutex(); Job *j; while((j=PopJob())) delete j; ReleaseMutex(); DeleteCompleted(); } Job *PopJob() { ObtainMutex(); if(waiting.empty()) { ReleaseMutex(); return(NULL); } Job *result=waiting.front(); waiting.pop_front(); ReleaseMutex(); return(result); } bool Dispatch(Worker *worker=NULL) { // Must transfer the job to the running queue // with the mutex held. // Debug[TRACE] << "JobQueue::Dispatch() - Obtaining mutex" << endl; ObtainMutex(); if(waiting.empty()) { ReleaseMutex(); return(false); } // Debug[TRACE] << "JobQueue::Dispatch() - Getting first job" << endl; Job *j=waiting.front(); // Transfer the job to the "running" list waiting.pop_front(); j->SetJobStatus(JOBSTATUS_RUNNING); running.push_back(j); // Run the job - without mutex held... ReleaseMutex(); j->Run(worker); // Now get the mutex again and remove the job from the "running" list. // and move it to the "completed" list, from where it can be safely deleted. ObtainMutex(); running.remove(j); Debug[TRACE] << "Moving job to Completed queue" << std::endl; completed.push_back(j); if(j->GetJobStatus()==JOBSTATUS_RUNNING) // Don't set status to COMPLETED unless it's currently RUNNING. j->SetJobStatus(JOBSTATUS_COMPLETED); // - don't want to change CANCELLED to COMPLETED. ReleaseMutex(); return(true); } virtual void AddJob(Job *job) { ObtainMutex(); // FIXME - need to add some kind of job serial number. completed.remove(job); // FIXME - is this legal if the job's not on the list? job->SetJobStatus(JOBSTATUS_QUEUED); waiting.push_back(job); Broadcast(); ReleaseMutex(); DeleteCompleted(); } // Function to cancel a queued job - returns JOBSTATUS_RUNNING // if the job is in progress, and JOBSTATUS_UNKNOWN if not. virtual JobStatus CancelJob(Job *job) { ObtainMutex(); JobStatus status=GetJobStatus(job); if(status==JOBSTATUS_QUEUED) { waiting.remove(job); ReleaseMutex(); delete job; return(JOBSTATUS_UNKNOWN); } if(status!=JOBSTATUS_UNKNOWN) job->SetJobStatus(JOBSTATUS_CANCELLED); ReleaseMutex(); return(status); } // DONE - if the job self-destructs, it's possible for it to do so between this function // determining that the job is running, and this function returning. // Proposed fix: Disallow self-destruction - instead, transfer completed jobs to a new // queue, and delete from there. DONE // Must hold the mutex while using this function - result is no longer valid once // the mutex is released. virtual JobStatus GetJobStatus(Job *job) { std::list::iterator it=waiting.begin(); while(it!=waiting.end()) { if(*it==job) return(JOBSTATUS_QUEUED); ++it; } it=running.begin(); while(it!=running.end()) { if(*it==job) return(JOBSTATUS_RUNNING); ++it; } it=completed.begin(); while(it!=completed.end()) { if(*it==job) return(JOBSTATUS_COMPLETED); ++it; } return(JOBSTATUS_UNKNOWN); } // If your jobs need to be deleted from a specific thread, // call this function from that thread. void DeleteCompleted() { ObtainMutex(); while(completed.size()) { Job *j=completed.front(); completed.remove(j); if(j) { delete j; } } ReleaseMutex(); } // NOTE - Must hold the mutex while using this function. virtual int JobCount() { return(waiting.size()); } protected: std::list waiting; std::list running; std::list completed; }; enum WorkerThreadStatus {WORKERTHREAD_RUN,WORKERTHREAD_CANCEL,WORKERTHREAD_TERMINATE}; class Worker : public ThreadFunction, public PTMutex { public: Worker(JobQueue &queue) : ThreadFunction(), PTMutex(), queue(queue), thread(this), status(WORKERTHREAD_RUN) { Debug[TRACE] << "Starting worker thread..." << std::endl; thread.Start(); } virtual ~Worker() { Debug[TRACE] << "Worker Thread - waiting for job completion..." << std::endl; WaitCompletion(); Debug[TRACE] << "Worker Thread - disposed" << std::endl; } virtual void Cancel() { status=WORKERTHREAD_CANCEL; } virtual void WaitCompletion() { if(status==WORKERTHREAD_RUN) status=WORKERTHREAD_TERMINATE; while(!thread.TestFinished()) { // We obtain this mutex to avoid a busy wait - the subthread holds it while processing a job. ObtainMutex(); queue.ObtainMutex(); queue.Broadcast(); queue.ReleaseMutex(); ReleaseMutex(); } } virtual int Entry(Thread &t) { Debug[TRACE] << "Worker thread running..." << std::endl; do { // Debug[TRACE] << "Obtaining mutex" << std::endl; queue.ObtainMutex(); while(queue.JobCount()==0) { // Debug[TRACE] << "Waiting for a job" << std::endl; queue.WaitCondition(); // Debug[TRACE] << "Signal received" << std::endl; if(status!=WORKERTHREAD_RUN) { // Debug[TRACE] << "Received cancellation signal" << std::endl; queue.ReleaseMutex(); return(0); } } // Debug[TRACE] << "Releasing mutex" << std::endl; queue.ReleaseMutex(); // Debug[TRACE] << "Running job" << std::endl; // Obtain a per-thread mutex while running the job, so the destructor can avoid a busy-wait. ObtainMutex(); queue.Dispatch(this); ReleaseMutex(); // Send a pulse to say the thread's adopting a new job queue.ObtainMutex(); queue.Broadcast(); queue.ReleaseMutex(); } while(status==WORKERTHREAD_RUN); Debug[TRACE] << "Worker thread cancelled" << std::endl; return(0); } protected: JobQueue &queue; Thread thread; WorkerThreadStatus status; }; class JobDispatcher : public JobQueue { public: // If you want to provide a custom Worker class, ask for 0 threads when constructing, and // add your custom workers afterwards. JobDispatcher(int threads) : JobQueue() { for(int i=0;i::iterator it=threadlist.begin(); while(it!=threadlist.end()) { (*it)->WaitCompletion(); ++it; } } void AddWorker(Worker *worker) { threadlist.push_back(worker); } protected: std::list threadlist; friend class Worker; }; #endif photoprint-0.4.2-pre2/support/tempfile.h0000644000175000017500000000141611266350550015211 00000000000000#ifndef TEMPFILE_H #define TEMPFILE_H #include "rwmutex.h" class TempFileTracker; class TempFile { public: TempFile(TempFileTracker *header,const char *prefix=NULL,const char *searchkey=NULL); virtual ~TempFile(); virtual const char *Filename(); virtual TempFile *NextTempFile(); virtual bool MatchTempFile(const char *searchkey); protected: char *filename; char *prefix; char *searchkey; TempFileTracker *header; TempFile *nexttempfile,*prevtempfile; }; class TempFileTracker { public: TempFileTracker(); ~TempFileTracker(); TempFile *GetTempFile(const char *prefix,const char *searchkey=NULL); TempFile *FindTempFile(const char *searchkey); TempFile *FirstTempFile(); RWMutex mutex; protected: TempFile *firsttempfile; friend class TempFile; }; #endif photoprint-0.4.2-pre2/support/rangeparser.h0000644000175000017500000000120011076423574015712 00000000000000#ifndef RANGEPARSER_H #define RANGEPARSER // A class to handle parsing string-based page ranges, of the form // "1,3,5, 7-9, 15" // Pass in the page description to the constructor, along with an optional // maximum allowed page number. // Each successive call to Next() will return the next page number in the sequence, // finally returning 0 to indicate the end of the sequence. // Further calls to Next() will restart the sequence at the beginning... class RangeParser { public: RangeParser(const char *range,int max=0); ~RangeParser(); int Next(); private: int max; char *range; char *ptr; int prev; int target; }; #endif photoprint-0.4.2-pre2/support/pageextent.h0000644000175000017500000000367011266366621015562 00000000000000/* * pageextent.h - base class for Signature and GPrinter * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include "debug.h" #ifndef PAGEEXTENT_H #define PAGEEXTENT_H #define DEFAULTPAGEWIDTH 595 #define DEFAULTPAGEHEIGHT 842 #define DEFAULTMARGIN 25 using namespace std; class PageExtent { public: PageExtent() : pagewidth(DEFAULTPAGEWIDTH), pageheight(DEFAULTPAGEHEIGHT), leftmargin(DEFAULTMARGIN), rightmargin(DEFAULTMARGIN), topmargin(DEFAULTMARGIN), bottommargin(DEFAULTMARGIN) { } PageExtent(int w,int h) : pagewidth(w), pageheight(h), leftmargin(DEFAULTMARGIN), rightmargin(DEFAULTMARGIN), topmargin(DEFAULTMARGIN), bottommargin(DEFAULTMARGIN) { } virtual ~PageExtent() { } virtual void GetImageableArea() { imageablewidth=pagewidth-(leftmargin+rightmargin); imageableheight=pageheight-(topmargin+bottommargin); } virtual void EqualiseMargins() { int lr=leftmargin; if(rightmargin>lr) lr=rightmargin; leftmargin=rightmargin=lr; int tb=topmargin; if(bottommargin>tb) tb=bottommargin; topmargin=bottommargin=tb; GetImageableArea(); } virtual void SetPageExtent(PageExtent &pe) { pe.GetImageableArea(); pagewidth=pe.pagewidth; pageheight=pe.pageheight; leftmargin=pe.leftmargin; rightmargin=pe.rightmargin; topmargin=pe.topmargin; bottommargin=pe.bottommargin; GetImageableArea(); } virtual void SetMargins(int left,int right,int top,int bottom) { if((left+right)>=pagewidth) Debug[TRACE] << "Warning: margins are too wide!" << endl; leftmargin=left; rightmargin=right; if((top+bottom)>=pageheight) Debug[TRACE] << "Warning: margins are too tall!" << endl; topmargin=top; bottommargin=bottom; } int pagewidth,pageheight; int leftmargin,rightmargin,topmargin,bottommargin; int imageablewidth,imageableheight; }; #endif photoprint-0.4.2-pre2/support/consumer.h0000644000175000017500000000212711076423574015245 00000000000000/* * consumer.h - classes for writing to disk or piping raw binary data. * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #ifndef CONSUMER_H #define CONSUMER_H #include #include #include #include using namespace std; class Consumer { public: virtual ~Consumer() { } virtual bool Write(const char *buffer, int length)=0; virtual void Cancel()=0; }; class Consumer_File : public Consumer { public: Consumer_File(const char *filename); ~Consumer_File(); bool Write(const char *buffer,int length); void Cancel(); private: FILE *file; }; class Consumer_Pipe : public Consumer { public: Consumer_Pipe(const char *command); ~Consumer_Pipe(); bool Write(const char *buffer,int length); void Cancel(); private: static void sighandler(int sig); #ifdef WIN32 FILE *pfile; #else int pipefd[2]; int childpid; #endif bool canceled; static bool aborted; }; #endif photoprint-0.4.2-pre2/support/ptmutex.cpp0000644000175000017500000000237011266367125015453 00000000000000#include #include #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "debug.h" using namespace std; using namespace std; #include "ptmutex.h" // #if defined HAVE_LIBPTHREAD || defined HAVE_LIBPTHREADGC2 // pthreads-based implementation PTMutex::PTMutex() { pthread_mutexattr_t pmi; pthread_mutexattr_init(&pmi); pthread_mutexattr_settype(&pmi,PTHREAD_MUTEX_RECURSIVE); pthread_mutex_init(&mutex,&pmi); } PTMutex::~PTMutex() { pthread_mutex_destroy(&mutex); } void PTMutex::ObtainMutex() { pthread_mutex_lock(&mutex); } bool PTMutex::AttemptMutex() { int result=pthread_mutex_trylock(&mutex); if(result==0) return(true); else return(false); } void PTMutex::ReleaseMutex() { pthread_mutex_unlock(&mutex); } // #else #if 0 // Dummy implementation. Obtaining the mutex always succeeds. PTMutex::PTMutex() { Debug[TRACE] << "Warning - building a dummy mutex" << endl; } PTMutex::~PTMutex() { } void PTMutex::ObtainMutex() { Debug[TRACE] << "Warning - obtaining a dummy mutex" << endl; } bool PTMutex::AttemptMutex() { Debug[TRACE] << "Warning - attempting a dummy mutex" << endl; return(true); } void PTMutex::ReleaseMutex() { Debug[TRACE] << "Warning - releasing a dummy mutex" << endl; } #endif photoprint-0.4.2-pre2/support/thread.cpp0000644000175000017500000000426411352530200015176 00000000000000#include #include #include #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "thread.h" using namespace std; bool Thread::TestBreak() { bool result=false; cond1.ObtainMutex(); if(state==THREAD_CANCELLED) result=true; cond1.ReleaseMutex(); return(result); } void *Thread::LaunchStub(void *ud) { Thread *t=(Thread *)ud; t->subthreadid=GetThreadID(); t->threadmutex.ObtainMutex(); t->cond1.ObtainMutex(); t->state=THREAD_RUNNING; t->cond1.ReleaseMutex(); if(t->threadfunc) t->returncode=t->threadfunc->Entry(*t); t->cond1.ObtainMutex(); t->state=THREAD_FINISHED; t->cond1.ReleaseMutex(); t->threadmutex.ReleaseMutex(); return(NULL); } void Thread::Start() { returncode=0; state=THREAD_STARTED; pthread_create(&thread,0,LaunchStub,this); } void Thread::Stop() { cond1.ObtainMutex(); state=THREAD_CANCELLED; cond1.ReleaseMutex(); // pthread_join(thread,&discarded); // state=THREAD_IDLE; } void Thread::SendSync() { if(GetThreadID()==subthreadid) cond2.Broadcast(); else cond1.Broadcast(); } void Thread::WaitSync() { if(GetThreadID()==subthreadid) cond1.WaitCondition(); else cond2.WaitCondition(); } int Thread::WaitFinished() { void *discarded=NULL; pthread_join(thread,&discarded); state=THREAD_IDLE; return(returncode); } int Thread::GetReturnCode() { return(returncode); } bool Thread::TestFinished() { bool result=threadmutex.AttemptMutex(); if(result) { if(state!=THREAD_IDLE) { void *discarded; pthread_join(thread,&discarded); state=THREAD_IDLE; } threadmutex.ReleaseMutex(); } return(result); } Thread::~Thread() { if(!TestFinished()) WaitFinished(); } ThreadID Thread::GetThreadID() { #ifdef WIN32 return(pthread_self().p); #else return(pthread_self()); #endif } Thread::Thread(ThreadFunction *threadfunc) : threadfunc(threadfunc), state(THREAD_IDLE) { pthread_attr_init(&attr); } ThreadCondition::ThreadCondition() : PTMutex() { pthread_cond_init(&cond,0); } ThreadCondition::~ThreadCondition() { pthread_cond_destroy(&cond); } void ThreadCondition::Broadcast() { pthread_cond_broadcast(&cond); } void ThreadCondition::WaitCondition() { pthread_cond_wait(&cond,&mutex); } photoprint-0.4.2-pre2/support/searchpathdbhandler.h0000644000175000017500000000142111076423574017374 00000000000000#ifndef SEARCHPATHDBHANDLER_H #define SEARCHPATHDBHANDLER_H #include "configdb.h" class SearchPathHandlerDBHandler : public ConfigDBHandler { public: SearchPathHandlerDBHandler(ConfigFile *file,const char *section,ConfigDB *db,SearchPathHandler *sp,const char *pathparam) : ConfigDBHandler(file,section,db), db(db), sp(sp), pathparameter(pathparam) { } virtual ~SearchPathHandlerDBHandler() { } virtual void LeaveSection() { sp->ClearPaths(); sp->AddPath(db->FindString(pathparameter)); ConfigDBHandler::LeaveSection(); } virtual void SaveSection(FILE *file) { char *p=sp->GetPaths(); db->SetString(pathparameter,p); free(p); ConfigDBHandler::SaveSection(file); } protected: ConfigDB *db; SearchPathHandler *sp; const char *pathparameter; }; #endif photoprint-0.4.2-pre2/support/threadevent.h0000644000175000017500000000345611364533234015724 00000000000000#ifndef THREADEVENT_H #define THREADEVENT_H #include "thread.h" #include "rwmutex.h" class ThreadEvent; class ThreadEventHandler : public PTMutex { public: ThreadEventHandler(); ~ThreadEventHandler(); // If you're going to access this from multiple threads, surround calls to these // functions with an ObtainMutex() / ReleaseMutex() pair. ThreadEvent *FirstEvent(); ThreadEvent *FindEvent(const char *eventname); protected: ThreadEvent *firstevent; friend class ThreadEvent; }; class ThreadEvent_Subscriber; class ThreadEvent { public: ThreadEvent(ThreadEventHandler &header,const char *eventname); ~ThreadEvent(); ThreadEvent *NextEvent(); const char *GetName(); void Trigger(); void WaitEvent(); // Use this if you want to block other threads from responding to the // event. When done, just call Release() to unblock other threads. Alternatively // you can call ReleaseMutex() on the returned ThreadCondition. ThreadCondition &WaitAndHold(); // If you've used one of the ...AndHold() functions, you should call Release() when // you're done. Alternatively you can call ReleaseMutex() on the ThreadCondition // returned by the ..AndHold() function. void Release(); // If you want to know whether the signal's been triggered, but not wait, use this: int Query(); // If you want to wait but only if the signal hasn't already been triggered, use this: int QueryAndWait(); ThreadCondition &QueryWaitAndHold(); // To use the query functions you must "Subscribe" a given thread to the Event. void Subscribe(); void Unsubscribe(); ThreadEvent_Subscriber *FindSubscriber(); protected: RWMutex mutex; ThreadEventHandler &header; ThreadEvent *nextevent,*prevevent; ThreadCondition cond; char *name; ThreadEvent_Subscriber *firstsubscriber; friend class ThreadEvent_Subscriber; }; #endif photoprint-0.4.2-pre2/support/signature.cpp0000644000175000017500000001272011266335632015744 00000000000000/* * signature.h - class to handle coordinate calculations for n-up rectangular layouts * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include "layoutrectangle.h" #include "signature.h" #include "debug.h" using namespace std; void Signature::EqualiseMargins() { PageExtent::EqualiseMargins(); if(absolutemode) ReCalcByCellSize(); else ReCalc(); } void Signature::ReCalc() { absolutemode=false; int w,h; w=pagewidth-(leftmargin+rightmargin); h=pageheight-(topmargin+bottommargin); celwidth=(w-(columns-1)*hgutter); celwidth/=columns; celheight=(h-(rows-1)*vgutter); celheight/=rows; rightpadding=bottompadding=0; } void Signature::SetPageExtent(PageExtent &pe) { PageExtent::SetPageExtent(pe); if(absolutemode) ReCalcByCellSize(); else ReCalc(); } void Signature::SetPaperSize(int width,int height) { if(((columns-1)*hgutter)>=(width-(leftmargin+rightmargin))) Debug[WARN] << "New papersize too narrow!" << endl; else pagewidth=width; if(((rows-1)*vgutter)>=(height-(topmargin+bottommargin))) Debug[WARN] << "New papersize too short!" << endl; else pageheight=height; } void Signature::SetMargins(int left,int right,int top,int bottom) { PageExtent::SetMargins(left,right,top,bottom); if(absolutemode) ReCalcByCellSize(); else ReCalc(); } void Signature::SetGutters(int hgutter,int vgutter) { Debug[TRACE] << "Setting gutters to :" << hgutter << ", " << vgutter << endl; if(((columns-1)*hgutter)>=(pagewidth-(leftmargin+rightmargin))) Debug[WARN] << "Horizontal gutters too wide!" << endl; else this->hgutter=hgutter; if(((rows-1)*vgutter)>=(pageheight-(topmargin+bottommargin))) Debug[WARN] << "Horizontal gutters too tall!" << endl; else this->vgutter=vgutter; ReCalc(); Debug[TRACE] << "After recalc: " << hgutter << ", " << vgutter << endl; } void Signature::SetHGutter(int gutter) { Debug[TRACE] << "Setting HGutter to :" << gutter << endl; if(((columns-1)*gutter)>=(pagewidth-(leftmargin+rightmargin))) Debug[WARN] << "Horizontal gutters too wide!" << endl; else this->hgutter=gutter; ReCalc(); } void Signature::SetVGutter(int gutter) { Debug[TRACE] << "Setting VGutter to :" << gutter << endl; if(((rows-1)*gutter)>=(pageheight-(topmargin+bottommargin))) Debug[WARN] << "Vertical gutters too wide!" << endl; else this->vgutter=gutter; ReCalc(); } void Signature::SetColumns(int columns) { if(((columns-1)*hgutter)>=(pagewidth-(leftmargin+rightmargin))) Debug[WARN] << "Too many columns!" << endl; else this->columns=columns; ReCalc(); } void Signature::SetRows(int rows) { if(((rows-1)*vgutter)>=(pageheight-(topmargin+bottommargin))) Debug[WARN] << "Too many rows!" << endl; else this->rows=rows; ReCalc(); } void Signature::ReCalcByCellSize() { absolutemode=true; int r=(pageheight-(topmargin+bottommargin))/celheight; int c=(pagewidth-(leftmargin+rightmargin))/celwidth; Debug[TRACE] << "Rows: " << r << ", cols: " << c << endl; Debug[TRACE] << "Page width: " << pagewidth << ", margins: " << (topmargin+bottommargin) << ", celwidth:" << celwidth << endl; if(r<1) { celheight=pageheight-(topmargin+bottommargin); r=1; } else if(r>1) { vgutter=((pageheight-(topmargin+bottommargin))-r*celheight)/(r-1); Debug[TRACE] << "VGutter = " << vgutter << endl; } else { bottompadding=pageheight-(topmargin+bottommargin+celheight); } if(c<1) { celwidth=pagewidth-(leftmargin+rightmargin); c=1; } else if(c>1) { hgutter=((pagewidth-(leftmargin+rightmargin))-c*celwidth)/(c-1); Debug[TRACE] << "HGutter = " << hgutter << endl; } else { rightpadding=pagewidth-(leftmargin+rightmargin+celwidth); } rows=r; columns=c; } void Signature::SetCellWidth(int width) { Debug[TRACE] << "Setting cell width to " << width << endl; celwidth=width; ReCalcByCellSize(); } void Signature::SetCellHeight(int height) { Debug[TRACE] << "Setting cell height to " << height << endl; celheight=height; ReCalcByCellSize(); } Signature::Signature(int rows,int columns) : PageExtent(), hgutter(DEFAULTGUTTER), vgutter(DEFAULTGUTTER), rows(rows), columns(columns) { ReCalc(); } Signature::Signature(PageExtent &extent,int rows,int columns) : PageExtent(), hgutter(DEFAULTGUTTER), vgutter(DEFAULTGUTTER), rows(rows), columns(columns), rightpadding(0), bottompadding(0), absolutemode(false) { SetPageExtent(extent); } int Signature::ColumnAt(int xpos) { xpos-=leftmargin; int c=int(xpos/(celwidth+hgutter)); return(c); } int Signature::RowAt(int ypos) { ypos-=topmargin; int c=int(ypos/(celheight+vgutter)); return(c); } LayoutRectangle *Signature::GetLayoutRectangle(int row,int column) { int x=int(leftmargin+column*(hgutter+celwidth)+0.5); int y=int(topmargin+row*(vgutter+celheight)+0.5); int w=int(celwidth); int h=int(celheight); return(new LayoutRectangle(x,y,w,h)); } int Signature::GetCellWidth() { Debug[TRACE] << "GetCellWidth - returning: " << celwidth << endl; return(celwidth); } int Signature::GetCellHeight() { return(celheight); } int Signature::GetColumns() { return(columns); } int Signature::GetRows() { return(rows); } int Signature::GetHGutter() { Debug[TRACE] << "GetHGutter returning: " << hgutter << endl; return(hgutter); } int Signature::GetVGutter() { Debug[TRACE] << "GetVGutter returning: " << vgutter << endl; return(vgutter); } bool Signature::GetAbsolute() { return(absolutemode); } photoprint-0.4.2-pre2/support/multex.h0000644000175000017500000000205211254755424014725 00000000000000// Multex - a variant of Mutex but which allows a limited number // of threads to hold a lock. #ifndef MULTEX_H #define MULTEX_H #include "ptmutex.h" // #if defined HAVE_LIBPTHREAD || defined HAVE_LIBPTHREADGC2 #include // Use a fairly small thread table - a better option would be to create // a proper dynamic array for this, but that's overkill for an app // like PhotoPrint where there's unlikely to be more than 1 main thread // and 1 helper thread for each image on the page. #define MULTEX_THREADS_MAX 20 class Multex : public PTMutex { public: Multex(int threadlimit); virtual ~Multex(); virtual void ObtainMultex(); virtual bool AttemptMultex(); virtual void ReleaseMultex(); virtual void SetThreadLimit(int limit); protected: void Increment(); void Decrement(bool shared=false); void Dump(); int lockcount; int limit; int serialno; #ifdef WIN32 struct {void *id; int count;} counttable[MULTEX_THREADS_MAX]; #else struct {pthread_t id; int count;} counttable[MULTEX_THREADS_MAX]; #endif pthread_cond_t cond; }; #endif photoprint-0.4.2-pre2/support/pathsupport.cpp0000644000175000017500000000622011400237262016320 00000000000000#include #include #include #include #include #include #ifdef WIN32 #include #define _WIN32_IE IE5 #define _WIN32_WINNT Windows2000 #include #endif #include "debug.h" #include "searchpath.h" #include "pathsupport.h" using namespace std; const char *get_homedir() { // return(getenv("HOME")); #ifdef WIN32 static char homedir[MAX_PATH]={0}; static bool init=false; if(!init) { SHGetFolderPath(NULL,CSIDL_APPDATA,NULL,SHGFP_TYPE(SHGFP_TYPE_CURRENT),homedir); } return(homedir); #else return(g_get_home_dir()); #endif } char *substitute_homedir(const char *path) { char *result=NULL; const char *subst=NULL; if(path) { // First try to substitute a "$HOME_PICTURES" path. On Win32 this will be My Pictures. // On UNIX we'll just use $HOME for now. if(strncmp(path,"$HOME_PICTURES",14)==0) { path+=14; #ifdef WIN32 static char pixdir[MAX_PATH]={0}; static bool init=false; if(!init) { SHGetFolderPath(NULL,CSIDL_COMMON_PICTURES,NULL,SHGFP_TYPE(SHGFP_TYPE_CURRENT),pixdir); } subst=pixdir; #else subst=get_homedir(); #endif } else if(path[0]=='~') { ++path; subst=get_homedir(); } else if(strncmp(path,"$HOME",5)==0) { path+=5; subst=get_homedir(); } else // No substitution to be done... return(strdup(path)); if(path[0]=='/' || path[0]=='\\') ++path; // If we get this far, then we need to substitute - and path now points // to the beginning of the path proper... result=(char *)malloc(strlen(path)+strlen(subst)+2); sprintf(result,"%s%c%s",subst,SEARCHPATH_SEPARATOR,path); } return(result); } char *substitute_xdgconfighome(const char *path) { const char *envvar="$XDG_CONFIG_HOME"; char *result=NULL; if(path) { if(path[0]=='~') ++path; else if(strncmp(path,envvar,strlen(envvar))==0) path+=strlen(envvar); else // No substitution to be done... return(strdup(path)); if(path[0]=='/' || path[0]=='\\') ++path; // If we get this far, then we need to substitute - and path now points // to the beginning of the path proper... const char *hd=NULL; if((hd=getenv(envvar+1))) { // Debug[TRACE] << "Got XDG_CONFIG_HOME: " << hd << endl; result=(char *)malloc(strlen(path)+strlen(hd)+2); sprintf(result,"%s%c%s",hd,SEARCHPATH_SEPARATOR,path); } else { // Debug[TRACE] << "No XDG_CONFIG_HOME set - using $HOME/.config instead" << endl; const char *hd=get_homedir(); result=(char *)malloc(strlen(hd)+strlen("/.config/")+strlen(path)+strlen(hd)+2); sprintf(result,"%s%c.config%c%s",hd,SEARCHPATH_SEPARATOR,SEARCHPATH_SEPARATOR,path); } } return(result); } // Given a top-level directory, extracts the last component, and matches against a prefix. // Useful for locating an executable. int MatchBaseName(const char *prefix,const char *path) { int result=-1; char *fn=strdup(path); char *bn=basename(fn); if(!bn) return(-1); Debug[TRACE] << " Comparing " << prefix << " against " << bn << std::endl; result=strncasecmp(prefix,bn,strlen(prefix)); free(fn); Debug[TRACE] << " result of comparison: " << result << std::endl; return(result); } photoprint-0.4.2-pre2/support/progress.h0000644000175000017500000000141411362275216015250 00000000000000/* * progress.h - base class for progress displays. * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #ifndef PROGRESS_H #define PROGRESS_H #include #include "debug.h" using namespace std; class Progress { public: Progress() : current(0), max(1) { } virtual ~Progress() { } virtual bool DoProgress() { ++current; return(DoProgress(current,max)); } virtual bool DoProgress(int i, int maxi) { current=i; max=maxi; return(true); } virtual void SetMessage(const char *msg) { } virtual void ErrorMessage(const char *msg) { Debug[ERROR] << "Error: " << msg << endl; } protected: int current; int max; }; #endif photoprint-0.4.2-pre2/support/threadutil.h0000644000175000017500000000322711343155034015547 00000000000000#ifndef THREADUTIL_H #define THREADUTIL_H #include #include #include #include "debug.h" #include "thread.h" // SystemCommand_Thread - an autonomous ThreadFunction for executing a command on // a subthread. Inherits from Thread as well as ThreadFunction, and automatically // launches the thread. // Use like this: // // SystemCommand_Thread mythread("/path/to/some_command_that_will_take_a_while arguments..."); // while(!mythread.TestFinished()) // { // do progress display or whatever here... // } class Thread_SystemCommand : public ThreadFunction, public Thread { public: Thread_SystemCommand(const char *cmd) : ThreadFunction(), Thread(this), command(NULL) { command=strdup(cmd); Start(); WaitSync(); } virtual ~Thread_SystemCommand() { Debug[TRACE] << "Freeing command" << std::endl; if(command) free(command); Debug[TRACE] << "Done" << std::endl; } virtual int Entry(Thread &t) { SendSync(); try { if(system(command)) throw "Command failed"; } catch(const char *err) { Debug[TRACE] << "Subthread error: " << err << std::endl; returncode=-1; } return(returncode); } protected: char *command; }; // ThreadFunction for use with a Classic c-style callback function class ThreadFunction_Callback : public ThreadFunction { public: ThreadFunction_Callback(int (*entry)(Thread &t,void *ud),void *UserData) : ThreadFunction(), entry(entry), userdata(UserData) { } virtual ~ThreadFunction_Callback() { } virtual int Entry(Thread &t) { if(entry) return((*entry)(t,userdata)); else return(0); } protected: int (*entry)(Thread &t,void *ud); void *userdata; }; #endif photoprint-0.4.2-pre2/support/circlemontage.h0000644000175000017500000000156011076423574016226 00000000000000#ifndef CIRCLEMONTAGE_H #define CIRCLEMONTAGE_H #include "layoutrectangle.h" class CircleMontage; class CMSegment : public LayoutRectangle { public: CMSegment(int x,int y,int w,int h,int xo,int yo,CircleMontage *cm,int t1,int t2); ~CMSegment(); private: float overlap; int radius; int innerradius; int xo; int yo; int t1; int t2; friend class ImageSource_SegmentMask; }; class CircleMontage { public: CircleMontage(int width,int height); ~CircleMontage(); void SetSegments(int segments,int angleoffset,int overlappercent); void SetAngleOffset(int ao); void SetInnerRadius(int ir); CMSegment *GetSegmentExtent(int seg); private: int width; int height; int xorigin; int yorigin; int segments; int innerradius; int angleoffset; float overlap; float segmentarc; int radius; friend class CMSegment; friend class ImageSource_SegmentMask; }; #endif photoprint-0.4.2-pre2/support/configdb.h0000644000175000017500000000763511371625766015203 00000000000000/* * configdb.h - classes to simplify configuration file handling * * Copyright (c) 2004, 2005 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * In its simplest form you use it like this: #include #include "configdb.h" class MyClassThatNeedsConfigData : public ConfigDB { public: MyClassThatNeedsConfigData(ConfigFile *myfile) : ConfigDB(Template) { new ConfigDBHandler(myfile,"[SectionName]",this); // (This object is owned by the ConfigFile and will be freed by it.) } void MemberFunction() { std::cout << "Int value: " << FindInt("AnIntValue") << std::endl; } private: static ConfigTemplate Template[]; }; ConfigTemplate MyClassThatNeedsConfigData::Template[]= { ConfigTemplate("AnIntValue",int(17)), // Default value is 17 ConfigTemplate("AStringValue","Default"), ConfigTemplate("AFloatValue",float(3.5)), ConfigTemplate() // NULL terminated... }; int main(int argc,char **argv) { ConfigFile myconfig; MyClassThatNeedsConfigData myclass(&myconfig); myconfig.ParseConfigFile("/path/to/myconfigfile"); myclass.MemberFunction(); std::cout << "String value: " << myclass.FindString("AStringValue") << std::endl; myclass.SetFloat("AFloatValue",1.45); myconfig.SaveConfigFile("/path/to/myconfigfile"); return(0); } */ #ifndef CONFIGDB_H #define CONFIGDB_H enum ConfigArgType {ConfigARG_UNKNOWN,ConfigARG_STRING,ConfigARG_INTEGER,ConfigARG_FLOAT}; class ConfigTemplate { public: ConfigTemplate(const char *name, const char *val) : Name(name), Type(ConfigARG_STRING), defstring(val) { } ConfigTemplate(const char *name, int val) : Name(name), Type(ConfigARG_INTEGER), defint(val) { } ConfigTemplate(const char *name, double val) : Name(name), Type(ConfigARG_FLOAT), deffloat(val) { } ConfigTemplate() : Type(ConfigARG_UNKNOWN) { } const char *Name; enum ConfigArgType Type; const char *defstring; int defint; double deffloat; }; class ConfigOption; class ConfigDB { public: ConfigDB(struct ConfigTemplate *templ); virtual ~ConfigDB(); int ParseString(const char *string); virtual void SaveDB(FILE *file); enum ConfigArgType QueryType(const char *Name); const char *FindString(const char *Name); int FindInt(const char *Name); double FindFloat(const char *Name); void SetInt(const char *Name,int val); void SetFloat(const char *Name,double val); void SetString(const char *Name,const char *val); ConfigDB &operator=(ConfigDB &other); private: ConfigOption *FindOption(const char *Name); struct ConfigOption *firstopt; friend class ConfigOption; }; class ConfigOption { public: ConfigOption(ConfigDB *db,struct ConfigTemplate *templ); ~ConfigOption(); private: const char *Name; enum ConfigArgType Type; union { char *string; int intnumber; double floatnumber; } Value; ConfigOption *next; ConfigOption *prev; ConfigDB *db; friend class ConfigDB; }; class ConfigFile; class ConfigSectionHandler { public: ConfigSectionHandler(ConfigFile *inifile,const char *section); virtual ~ConfigSectionHandler(); virtual void SelectSection(); virtual void LeaveSection(); virtual void ParseString(const char *string)=0; virtual void SaveSection(FILE *file)=0; const char *section; private: ConfigSectionHandler *next,*prev; ConfigFile *inifile; friend class ConfigFile; }; class ConfigDBHandler : public ConfigSectionHandler { public: ConfigDBHandler(ConfigFile *inf,const char *section,ConfigDB *db); ~ConfigDBHandler(); virtual void ParseString(const char *string); virtual void SaveSection(FILE *file); private: ConfigDB *db; }; class ConfigFile { public: ConfigFile(); virtual ~ConfigFile(); virtual bool ParseConfigFile(const char *inifile); virtual bool SaveConfigFile(const char *inifile); private: ConfigSectionHandler *FindHandler(const char *section); ConfigSectionHandler *first; ConfigSectionHandler *current; friend class ConfigSectionHandler; }; #endif photoprint-0.4.2-pre2/support/rwmutex.h0000644000175000017500000000434311254745420015122 00000000000000// Replacement for pthread rwlocks - subclass of PTMutex // ObtainMutex() and AttemptMutex() behave like a regular mutex, // obtaining an exclusive (write) lock. // Use ObtainShared() or AttemptShared() to get a read-lock. // This differs from pthread rwlocks in that you can obtain // an exclusive lock even if you already have a shared one, // and vice versa, provided no other threads hold one. // Some pthreads implementations behave like this, but not all, // and not the one in Linux. // Another difference is that this implementation tracks the // exclusive attribute in a stack-like manner - so the call sequence // ObtainMutex(); ObtainMutexShared(); ReleaseMutex(); ReleaseMutex() // will leave the mutex in exclusive mode until the second release. // ObtainMutexShared(), ObtainMutex(), ObtainMutexShared(), // ReleaseMutex(), ReleaseMutex(), ReleaseMutex() // Will promote the mutex to Exclusive mode at the ObtainMutex() // call, and revert to shared mode after the second ReleaseMutex(). #ifndef RWMUTEX_H #define RWMUTEX_H #include "ptmutex.h" // #if defined HAVE_LIBPTHREAD || defined HAVE_LIBPTHREADGC2 #include // Use a fairly small thread table - a better option would be to create // a proper dynamic array for this, but that's overkill for an app // like PhotoPrint where there's unlikely to be more than 1 main thread // and 1 helper thread for each image on the page. #define RWMUTEX_THREADS_MAX 20 class RWMutex : public PTMutex { public: RWMutex(); virtual ~RWMutex(); virtual void ObtainMutex(); virtual void ObtainMutexShared(); virtual bool AttemptMutex(); virtual bool AttemptMutexShared(); virtual void ReleaseMutex(); virtual void ReleaseMutexShared(); // Not needed unless you find yourself in a situation like this: // AttemptShared() -> Obtain() -> Release() -> Release() and want // the lock to remain exclusive until the second Release. bool CheckExclusive(); protected: void Increment(); void Decrement(bool shared=false); void Dump(); int lockcount; int exclusive; #ifdef WIN32 struct {void *id; int count;} counttable[RWMUTEX_THREADS_MAX]; #else struct {pthread_t id; int count;} counttable[RWMUTEX_THREADS_MAX]; #endif int serialno; pthread_cond_t cond; }; #endif photoprint-0.4.2-pre2/support/Makefile.am0000644000175000017500000000177011342174311015264 00000000000000AM_CXXFLAGS = -Wall -I../imagesource/ -I../ -I../pixbufthumbnail -I../imagesource -I../profilemanager $(LCMS_CFLAGS) $(GTK2_CFLAGS) ${PNM_CFLAGS} noinst_LTLIBRARIES = libsupport.la libsupport_la_SOURCES = \ binarysearch.h \ \ consumer.cpp \ consumer.h \ configdb.cpp \ configdb.h \ \ layoutrectangle.cpp \ layoutrectangle.h \ pageextent.h \ signature.cpp \ signature.h \ circlemontage.cpp \ circlemontage.h \ \ jobqueue.h \ pathsupport.cpp \ pathsupport.h \ progress.h \ progresstext.h \ progressthread.h \ \ rangeparser.cpp \ rangeparser.h \ \ thread.cpp \ thread.h \ ptmutex.cpp \ ptmutex.h \ rwmutex.cpp \ rwmutex.h \ multex.cpp \ multex.h \ threadutil.h \ threadevent.cpp \ threadevent.h \ refcount.cpp \ refcount.h \ \ searchpath.cpp \ searchpath.h \ searchpathdbhandler.h \ dirtreewalker.cpp \ dirtreewalker.h \ externalprog.h \ \ tempfile.cpp \ tempfile.h \ \ md5.cpp \ md5.h \ debug.cpp \ debug.h \ util.cpp \ util.h libsupport_la_LDFLAGS = -static photoprint-0.4.2-pre2/support/progresstext.h0000644000175000017500000000260411266366650016165 00000000000000/* * progresstext.h - progress displays. * By default, provides "twirling baton" display on stderr. * * Copyright (c) 2007 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #ifndef PROGRESSTEXT_H #define PROGRESSTEXT_H #include #include #include #include "debug.h" #include "progress.h" using namespace std; class ProgressText : public Progress { public: ProgressText() : Progress(),counter(0), counter2(0), message(NULL) { } virtual ~ProgressText() { if(message) free(message); } virtual bool DoProgress(int i, int maxi) { Progress::DoProgress(i,maxi); const char *baton="/-\\|"; if((counter==0) || (i==maxi)) { if(i>maxi) i=maxi; // if(message) // Debug[TRACE] << message << " "; if(maxi) cout << baton[counter2] << " " << ((i+1)*100)/maxi << "%\r"; else cout << baton[counter2] << " " << "\r"; if(i==maxi && maxi>0) cout << endl; cout.flush(); ++counter2; counter2&=3; } ++counter; int mod=maxi/500; if(!mod) mod=1; counter%=mod; return(true); } virtual void SetMessage(const char *msg) { if(message) free(message); message=NULL; if(msg) { message=strdup(msg); cout << msg << endl; } } protected: int counter; int counter2; int limit; char *message; }; #endif photoprint-0.4.2-pre2/support/searchpath.h0000644000175000017500000000657711321427034015535 00000000000000#ifndef SEARCHPATH_H #define SEARCHPATH_H #include #include #include #include /* SearchPathHandler - a class to handle multiple search paths. Written by Alastair M. Robinson to handle PhotoPrint's ICC profiles. The following public functions are provided: char *SearchPaths(const char *file) Returns an absolute path, given a relative path, or NULL for failure. If the supplied path is already absolute, and the referenced file exists, a strdup()ed version of it will be returned. Result must be free()d. char *MakeRelative(const char *file) Attempts to reduce an absolute path into a relative path, matching against one of the current search paths,such that a subsequent call to Search() will find the file. May return either an absolute or relative path, which must be free()d. void AddPath(const char *path) Adds a new search path to the list. UNIX-style multiple paths are supported with ':' as the separator character (Use ; on Windows). $HOME at the start of a path will be replaced by the contents of the HOME environment variable. void RemovePath(const char *path); Attempts to remove the specified path from the list. Fails silently if the path isn't there! void ClearPaths() Removes all paths. const char *GetNextFilename(const char *last); A simple method of stepping through all the files within the searchpaths. Provide NULL as an argument for the first call, and the returned value for subsequent calls. Returns NULL when there are no more files. const char *GetNextPath(const char *last); Returns each path in turn. Provide NULL as an argument for the first call, and the returned value for subsequent calls. char *GetPaths(); Returns a Path specification in PATH1:PATH2:PATH3:... form TODO: Make path separation character runtime definable for Win32 support. 2007-07-29: Added a conditional define to handle that at built time... 2008-07-15: Renamed class to SearchPathHandler to avoid Win32 name clash */ #ifdef WIN32 #define SEARCHPATH_DELIMITER_C ';' #define SEARCHPATH_DELIMITER_S ";" #define SEARCHPATH_SEPARATOR '\\' #define SEARCHPATH_SEPARATOR_S "\\" #else #define SEARCHPATH_DELIMITER_C ':' #define SEARCHPATH_DELIMITER_S ":" #define SEARCHPATH_SEPARATOR '/' #define SEARCHPATH_SEPARATOR_S "/" #endif class SearchPathInstance; class SearchPathHandler; class SearchPathIterator { public: SearchPathIterator(SearchPathHandler &header); virtual ~SearchPathIterator(); virtual const char *GetNextFilename(const char *last); const char *GetNextPath(const char *last); protected: SearchPathHandler &header; std::list::iterator spiterator; DIR *searchdirectory; char *searchfilename; }; class SearchPathHandler { public: SearchPathHandler(); virtual ~SearchPathHandler(); virtual char *SearchPaths(const char *file); virtual char *MakeRelative(const char *file); virtual void AddPath(const char *path); virtual void RemovePath(const char *path); virtual void ClearPaths(); virtual char *GetPaths(); protected: SearchPathInstance *FindPath(const char *path); std::list paths; // Used by GetNextFilename(); // DIR *searchdirectory; // char *searchfilename; SearchPathIterator *searchiterator; friend class SearchPathInstance; friend class SearchPathIterator; friend std::ostream& operator<<(std::ostream &s,SearchPathHandler &sp); }; #endif photoprint-0.4.2-pre2/support/util.h0000644000175000017500000001013011356430010014340 00000000000000/* * util.h * Provides miscellaneous utility functions - any idiom which crops up more * than a few times, but doesn't belong within another class or library ends up here. * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #ifndef UTIL_H #define UTIL_H #include // Filesystem Utilities // Function to creates a given directory if it doesn't already exist bool CreateDirIfNeeded(const char *dirname); // Functions to check whether a given file or directory exist bool CheckFileExists(const char *filename); #define CheckDirExists(x) CheckFileExists(x) // CheckSettingsDir prepends the current home directory, attempts to create // the given directory if it doesn't already exist. Returns false only if // the home directory isn't availble. bool CheckSettingsDir(const char *dirname); // Compares two files for binary equality bool CompareFiles(const char *fn1,const char *fn2); // Open a file from a utf-8-encoded filename. // On Unix, this is a straight passthrough to fopen(). // On Win32 the filename is will converted to wchar_t, then opened with _wfopen // if FOpenUTF8EnableTransation() has been called. // This allows client code to cope with filenames from GTK+ (in UTF-8) and also // from the command line. FILE *FOpenUTF8(const char *name,const char *mode); void FOpenUTF8EnableTranslation(); void FOpenUTF8DisableTranslation(); // Filename handling utilities // Attempts to construct a filename given a root, a suffix and an extension. // Any extension on the root is removed if present. Useful for creating // output filenames of the form .tif or suchlike. // Result must be free()ed when no longer needed. char *BuildFilename(const char *root,const char *suffix,const char *fileext); // Prepends the current working directory to a relative filename. // Result should be free()ed when no longer needed. char *BuildAbsoluteFilename(const char *fname); // Given an input filename such as "out.tif", constructs a filename // of the form out_.tif. // The max parameter, if provided, is used to set the number of digits which // will be printed. // The resulting string should be free()ed when no longer needed. char *SerialiseFilename(const char *fname,int serialno,int max=0); // Quote a string to make it safe to pass as a command line argument std::string ShellQuote(std::string &in); std::string ShellQuote(const char *in); // Given a top-level directory, scans recursively looking for an executable, // and returns its path, minus the executable. std::string FindParent(std::string initialpath, std::string program); // String handling utilities // A variant of strdup() which is safe to use on a NULL string, in which case it returns // a valid pointer to an empty string. In all cases, the result must be free()ed when no // longer needed. In some cases this reduces the need for special-case handling. char *SafeStrdup(const char *src); // A "safe" version of strcat which returns a valid pointer to an empty string // if both parameters are null, a copy of the non-null parameter if the other is // null, or a newly-allocated string containing the concatenated parameters if // both are valid. // In all cases the result is in newly-allocated storage and may (and must!) be // free()ed when no longer needed. char *SafeStrcat(const char *str1,const char *str2); // A variant of strcasecmp() which ignores spaces as well as case - such that // "MyString" matches "Mystring", "myString" and "my string". int StrcasecmpIgnoreSpaces(const char *str1,const char *str2); // Miscellaneous utilities // Tests a given string to determine whether it could plausibly be a hostname:port combination. // If it is, stores the hostname part to the string pointer pointed to by hostname // (which must later be free()ed), and the port portion to the int pointed to by port. bool TestHostName(char *str,char **hostname,int *port); // A random function which returns rand() % max, and is automatically seeded with the // system time when the program starts. int RandomSeeded(int max); #endif photoprint-0.4.2-pre2/support/tempfile.cpp0000644000175000017500000000556511266367312015561 00000000000000/* Classes to simplify the handling and caching of temporary files. Copyright (c) 2008 by Alastair M. Robinson TempFileTracker is a header class which maintains a list of TempFiles and deletes them when it's destroyed, typically when the application quits. TempFile is a base class which will be subclassed by classes needing to generate a specific type of temporary file. */ #include #include #include #include #include "tempfile.h" #include "debug.h" using namespace std; TempFile::TempFile(TempFileTracker *header,const char *pfix,const char *skey) : filename(NULL), prefix(NULL), searchkey(NULL), header(header), nexttempfile(NULL), prevtempfile(NULL) { header->mutex.ObtainMutex(); if((prevtempfile=header->firsttempfile)) { while(prevtempfile->nexttempfile) prevtempfile=prevtempfile->nexttempfile; prevtempfile->nexttempfile=this; } else header->firsttempfile=this; // if((nexttempfile=header->firsttempfile)) // nexttempfile->prevtempfile=this; // header->firsttempfile=this; if(skey) searchkey=strdup(skey); if(pfix) prefix=strdup(pfix); header->mutex.ReleaseMutex(); } TempFile::~TempFile() { // Debug[TRACE] << "In TempFile destructor" << endl; header->mutex.ObtainMutex(); if(filename) { // Debug[TRACE] << "Removing " << filename << endl; remove(filename); free(filename); } if(searchkey) free(searchkey); if(prefix) free(prefix); if(nexttempfile) nexttempfile->prevtempfile=prevtempfile; if(prevtempfile) prevtempfile->nexttempfile=nexttempfile; else header->firsttempfile=nexttempfile; header->mutex.ReleaseMutex(); } const char *TempFile::Filename() { // If no subclass has provided a filename, generate one here. if(!filename) filename=tempnam(NULL,prefix); return(filename); } TempFile *TempFile::NextTempFile() { return(nexttempfile); } bool TempFile::MatchTempFile(const char *skey) { return(strcmp(skey,searchkey)==0); } // TempFileTracker TempFileTracker::TempFileTracker() : mutex(), firsttempfile(NULL) { } TempFileTracker::~TempFileTracker() { mutex.ObtainMutex(); while(firsttempfile) delete firsttempfile; mutex.ReleaseMutex(); } TempFile *TempFileTracker::GetTempFile(const char *prefix,const char *searchkey) { mutex.ObtainMutexShared(); TempFile *result=NULL; if(searchkey) result=FindTempFile(searchkey); if(!result) result=new TempFile(this,prefix,searchkey); mutex.ReleaseMutexShared(); return(result); } TempFile *TempFileTracker::FindTempFile(const char *searchkey) { mutex.ObtainMutexShared(); TempFile *result=NULL; TempFile *t=FirstTempFile(); while(t) { t=t->NextTempFile(); if(t->MatchTempFile(searchkey)) { result=t; t=NULL; } } mutex.ReleaseMutexShared(); return(result); } TempFile *TempFileTracker::FirstTempFile() { mutex.ObtainMutexShared(); TempFile *result=firsttempfile; mutex.ReleaseMutexShared(); return(result); } photoprint-0.4.2-pre2/support/md5.h0000644000175000017500000000163411324402431014062 00000000000000#ifndef MD5_H #define MD5_H #include class MD5Context { public: MD5Context() { InitMD5Context(); } ~MD5Context() { } void InitMD5Context(); void UpdateMD5Context(unsigned char const *buf,unsigned int len); void FinalizeMD5Context(unsigned char digest[16]); private: unsigned int buf[4]; int bits[2]; unsigned char in[64]; bool finalized; }; class MD5Digest : public MD5Context { public: MD5Digest(); MD5Digest(const char *message,long length); MD5Digest(const MD5Digest &other); void Update(const char *message,long length); void Finalize(); const unsigned char *GetDigest(); const char *GetPrintableDigest(); MD5Digest &operator=(const MD5Digest &other); bool operator==(const MD5Digest &other); bool operator!=(const MD5Digest &other); private: unsigned char digest[16]; char digestprintable[33]; friend std::ostream& operator<<(std::ostream &s,MD5Digest &c); }; #endif photoprint-0.4.2-pre2/support/debug.cpp0000644000175000017500000000153711306573472015036 00000000000000#include #include #include "debug.h" DebugStream debug; using namespace std; DebugStream::DebugStream(DebugLevel level) : level(level) { } DebugStream::~DebugStream() { if(logfile.is_open()) logfile.close(); } void DebugStream::SetLogFile(string filename) { if(logfile.is_open()) logfile.close(); logfile.open(filename.c_str()); } DebugLevel DebugStream::SetLevel(enum DebugLevel lvl) { DebugLevel oldlevel=level; level=lvl; return(oldlevel); } void DebugStream::PushLevel(enum DebugLevel lvl) { levelstack.push(level); level=lvl; } void DebugStream::PopLevel() { if(!levelstack.empty()) { level=levelstack.top(); levelstack.pop(); } } ostream &DebugStream::operator[](int idx) { if(idx>level) return(nullstream); else if(logfile.is_open()) return(logfile); else return(cerr); } DebugStream Debug; photoprint-0.4.2-pre2/support/md5.cpp0000644000175000017500000002311411324402461014415 00000000000000#include #include #include #include #include "md5.h" using namespace std; static void md5_transform(unsigned int buf[4], unsigned int const in[16]); MD5Digest::MD5Digest(const char *message,long length) { Update(message, length); Finalize(); } MD5Digest::MD5Digest() { for(int i=0;i<16;++i) digest[i]=0; } MD5Digest::MD5Digest(const MD5Digest &other) { *this=other; } void MD5Digest::Update(const char *message,long length) { UpdateMD5Context((const unsigned char *)message,length); } void MD5Digest::Finalize() { FinalizeMD5Context(digest); } const unsigned char *MD5Digest::GetDigest() { FinalizeMD5Context(digest); return(digest); } const char *MD5Digest::GetPrintableDigest() { FinalizeMD5Context(digest); for(int i=0;i<16;++i) { int a=digest[i]; int b=a&15; a=(a>>4)&15; a+='0'; if(a>'9') a+=('a'-'9')-1; b+='0'; if(b>'9') b+=('a'-'9')-1; digestprintable[i*2]=a; digestprintable[i*2+1]=b; } digestprintable[32]=0; return(digestprintable); } MD5Digest &MD5Digest::operator=(const MD5Digest &other) { MD5Context::operator=(other); for(int i=0;i<16;++i) digest[i]=other.digest[i]; return(*this); } bool MD5Digest::operator==(const MD5Digest &other) { Finalize(); bool result=true; for(int i=0;i<16;++i) result&=(digest[i]==other.digest[i]); return(result); } bool MD5Digest::operator!=(const MD5Digest &other) { return(!(*this==other)); } std::ostream& operator<<(std::ostream &o, MD5Digest &d) { const char *out=d.GetPrintableDigest(); o << out; return(o); } /* ************************************************************************** * * MD5 Digests * * ************************************************************************** */ /* * This code implements the MD5 message-digest algorithm. * The algorithm is due to Ron Rivest. This code was * written by Colin Plumb in 1993, no copyright is claimed. * This code is in the public domain; do with it what you wish. * * Equivalent code is available from RSA Data Security, Inc. * This code has been tested against that, and is equivalent, * except that you don't need to include two pages of legalese * with every copy. * * To compute the message digest of a chunk of bytes, declare an * ThumbMD5Context structure, pass it to thumb_md5_init, call * thumb_md5_update as needed on buffers full of bytes, and then call * thumb_md5_final, which will fill a supplied 32-byte array with the * digest in ascii form. * * Converted to C++ semantics by Alastair M. Robinson */ /* * Note: this code is harmless on little-endian machines. */ static inline void byteReverse(unsigned char *buf, unsigned longs) { unsigned int t; do { t = (unsigned int) ((unsigned) buf[3] << 8 | buf[2]) << 16 | ((unsigned) buf[1] << 8 | buf[0]); *(unsigned int *) buf = t; buf += 4; } while (--longs); } /* * Start MD5 accumulation. Set bit count to 0 and buffer to mysterious * initialization constants. */ void MD5Context::InitMD5Context() { buf[0] = 0x67452301; buf[1] = 0xefcdab89; buf[2] = 0x98badcfe; buf[3] = 0x10325476; bits[0] = 0; bits[1] = 0; finalized=false; } /* * Update context to reflect the concatenation of another buffer full * of bytes. */ void MD5Context::UpdateMD5Context(unsigned char const *inbuf, unsigned len) { unsigned int t; /* Update bitcount */ t = bits[0]; if ((bits[0] = t + ((unsigned int)len << 3)) < t) bits[1]++; /* Carry from low to high */ bits[1] += len >> 29; t = (t >> 3) & 0x3f; /* Bytes already in shsInfo->data */ /* Handle any leading odd-sized chunks */ if (t) { unsigned char *p = (unsigned char *) in + t; t = 64 - t; if (len < t) { memcpy (p, inbuf, len); return; } memcpy (p, buf, t); byteReverse (in, 16); md5_transform (buf, (unsigned int *) in); inbuf += t; len -= t; } /* Process data in 64-byte chunks */ while (len >= 64) { memcpy (in, inbuf, 64); byteReverse (in, 16); md5_transform (buf, (unsigned int *) in); inbuf += 64; len -= 64; } /* Handle any remaining bytes of data. */ memcpy(in, inbuf, len); finalized=false; } /* * Final wrapup - pad to 64-byte boundary with the bit pattern * 1 0* (64-bit count of bits processed, MSB-first) */ void MD5Context::FinalizeMD5Context(unsigned char digest[16]) { if(finalized) return; unsigned count; unsigned char *p; /* Compute number of bytes mod 64 */ count = (bits[0] >> 3) & 0x3F; /* Set the first char of padding to 0x80. This is safe since there is always at least one byte free */ p = in + count; *p++ = 0x80; /* Bytes of padding needed to make 64 bytes */ count = 64 - 1 - count; /* Pad out to 56 mod 64 */ if (count < 8) { /* Two lots of padding: Pad the first block to 64 bytes */ memset (p, 0, count); byteReverse (in, 16); md5_transform (buf, (unsigned int *) in); /* Now fill the next block with 56 bytes */ memset(in, 0, 56); } else { /* Pad block to 56 bytes */ memset(p, 0, count - 8); } byteReverse(in, 14); /* Append length in bits and transform */ ((unsigned int *) in)[14] = bits[0]; ((unsigned int *) in)[15] = bits[1]; md5_transform (buf, (unsigned int *) in); byteReverse ((unsigned char *) buf, 4); memcpy (digest, buf, 16); InitMD5Context(); finalized=true; } /* The four core functions - F1 is optimized somewhat */ #define F1(x, y, z) (z ^ (x & (y ^ z))) #define F2(x, y, z) F1 (z, x, y) #define F3(x, y, z) (x ^ y ^ z) #define F4(x, y, z) (y ^ (x | ~z)) /* This is the central step in the MD5 algorithm. */ #define md5_step(f, w, x, y, z, data, s) \ ( w += f(x, y, z) + data, w = w<>(32-s), w += x ) /* * The core of the MD5 algorithm, this alters an existing MD5 hash to * reflect the addition of 16 longwords of new data. Md5Update blocks * the data and converts bytes into longwords for this routine. */ static inline void md5_transform (unsigned int buf[4], unsigned int const in[16]) { register unsigned int a, b, c, d; a = buf[0]; b = buf[1]; c = buf[2]; d = buf[3]; md5_step(F1, a, b, c, d, in[0] + 0xd76aa478, 7); md5_step(F1, d, a, b, c, in[1] + 0xe8c7b756, 12); md5_step(F1, c, d, a, b, in[2] + 0x242070db, 17); md5_step(F1, b, c, d, a, in[3] + 0xc1bdceee, 22); md5_step(F1, a, b, c, d, in[4] + 0xf57c0faf, 7); md5_step(F1, d, a, b, c, in[5] + 0x4787c62a, 12); md5_step(F1, c, d, a, b, in[6] + 0xa8304613, 17); md5_step(F1, b, c, d, a, in[7] + 0xfd469501, 22); md5_step(F1, a, b, c, d, in[8] + 0x698098d8, 7); md5_step(F1, d, a, b, c, in[9] + 0x8b44f7af, 12); md5_step(F1, c, d, a, b, in[10] + 0xffff5bb1, 17); md5_step(F1, b, c, d, a, in[11] + 0x895cd7be, 22); md5_step(F1, a, b, c, d, in[12] + 0x6b901122, 7); md5_step(F1, d, a, b, c, in[13] + 0xfd987193, 12); md5_step(F1, c, d, a, b, in[14] + 0xa679438e, 17); md5_step(F1, b, c, d, a, in[15] + 0x49b40821, 22); md5_step(F2, a, b, c, d, in[1] + 0xf61e2562, 5); md5_step(F2, d, a, b, c, in[6] + 0xc040b340, 9); md5_step(F2, c, d, a, b, in[11] + 0x265e5a51, 14); md5_step(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20); md5_step(F2, a, b, c, d, in[5] + 0xd62f105d, 5); md5_step(F2, d, a, b, c, in[10] + 0x02441453, 9); md5_step(F2, c, d, a, b, in[15] + 0xd8a1e681, 14); md5_step(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20); md5_step(F2, a, b, c, d, in[9] + 0x21e1cde6, 5); md5_step(F2, d, a, b, c, in[14] + 0xc33707d6, 9); md5_step(F2, c, d, a, b, in[3] + 0xf4d50d87, 14); md5_step(F2, b, c, d, a, in[8] + 0x455a14ed, 20); md5_step(F2, a, b, c, d, in[13] + 0xa9e3e905, 5); md5_step(F2, d, a, b, c, in[2] + 0xfcefa3f8, 9); md5_step(F2, c, d, a, b, in[7] + 0x676f02d9, 14); md5_step(F2, b, c, d, a, in[12] + 0x8d2a4c8a, 20); md5_step(F3, a, b, c, d, in[5] + 0xfffa3942, 4); md5_step(F3, d, a, b, c, in[8] + 0x8771f681, 11); md5_step(F3, c, d, a, b, in[11] + 0x6d9d6122, 16); md5_step(F3, b, c, d, a, in[14] + 0xfde5380c, 23); md5_step(F3, a, b, c, d, in[1] + 0xa4beea44, 4); md5_step(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11); md5_step(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16); md5_step(F3, b, c, d, a, in[10] + 0xbebfbc70, 23); md5_step(F3, a, b, c, d, in[13] + 0x289b7ec6, 4); md5_step(F3, d, a, b, c, in[0] + 0xeaa127fa, 11); md5_step(F3, c, d, a, b, in[3] + 0xd4ef3085, 16); md5_step(F3, b, c, d, a, in[6] + 0x04881d05, 23); md5_step(F3, a, b, c, d, in[9] + 0xd9d4d039, 4); md5_step(F3, d, a, b, c, in[12] + 0xe6db99e5, 11); md5_step(F3, c, d, a, b, in[15] + 0x1fa27cf8, 16); md5_step(F3, b, c, d, a, in[2] + 0xc4ac5665, 23); md5_step(F4, a, b, c, d, in[0] + 0xf4292244, 6); md5_step(F4, d, a, b, c, in[7] + 0x432aff97, 10); md5_step(F4, c, d, a, b, in[14] + 0xab9423a7, 15); md5_step(F4, b, c, d, a, in[5] + 0xfc93a039, 21); md5_step(F4, a, b, c, d, in[12] + 0x655b59c3, 6); md5_step(F4, d, a, b, c, in[3] + 0x8f0ccc92, 10); md5_step(F4, c, d, a, b, in[10] + 0xffeff47d, 15); md5_step(F4, b, c, d, a, in[1] + 0x85845dd1, 21); md5_step(F4, a, b, c, d, in[8] + 0x6fa87e4f, 6); md5_step(F4, d, a, b, c, in[15] + 0xfe2ce6e0, 10); md5_step(F4, c, d, a, b, in[6] + 0xa3014314, 15); md5_step(F4, b, c, d, a, in[13] + 0x4e0811a1, 21); md5_step(F4, a, b, c, d, in[4] + 0xf7537e82, 6); md5_step(F4, d, a, b, c, in[11] + 0xbd3af235, 10); md5_step(F4, c, d, a, b, in[2] + 0x2ad7d2bb, 15); md5_step(F4, b, c, d, a, in[9] + 0xeb86d391, 21); buf[0] += a; buf[1] += b; buf[2] += c; buf[3] += d; } photoprint-0.4.2-pre2/layout_carousel.cpp0000644000175000017500000003262411266332453015444 00000000000000/* * layout_carousel.cpp - Has responsibility for tracking the list of images and their layout. * Also has responsibility for building the ImageSource stack at print time. * * Copyright (c) 2004 by Alastair M. Robinson * Distributed under the terms of the GNU General Public License - * see the file named "COPYING" for more details. * */ #include #include #include "miscwidgets/generaldialogs.h" #include "dialogs.h" #include "pixbufthumbnail/egg-pixbuf-thumbnail.h" #include "imageutils/rotatepixbuf.h" #include "imagesource/imagesource_util.h" #include "imagesource/imagesource_cms.h" #include "imagesource/imagesource_segmentmask.h" #include "imagesource/imagesource_montage.h" #include "imagesource/imagesource_rotate.h" #include "imagesource/imagesource_crop.h" #include "imagesource/imagesource_mask.h" #include "imagesource/imagesource_gdkpixbuf.h" #include "imagesource/imagesource_solid.h" #include "imagesource/pixbuf_from_imagesource.h" #include "support/debug.h" #include "photoprint_state.h" #include "pp_layout_carousel.h" #include "layout_carousel.h" using namespace std; ConfigTemplate Layout_CarouselDB::Template[]= { ConfigTemplate("LeftMargin",int(0)), ConfigTemplate("RightMargin",int(0)), ConfigTemplate("TopMargin",int(0)), ConfigTemplate("BottomMargin",int(0)), ConfigTemplate("InnerRadius",int(0)), ConfigTemplate("Segments",int(4)), ConfigTemplate("Overlap",int(30)), ConfigTemplate("AngleOffset",int(0)), ConfigTemplate() }; Layout_Carousel_ImageInfo::Layout_Carousel_ImageInfo(Layout_Carousel &layout, const char *filename,int page,bool allowcropping,PP_ROTATION rotation) : Layout_ImageInfo((Layout &)layout,filename,page,allowcropping,rotation) { } Layout_Carousel_ImageInfo::Layout_Carousel_ImageInfo(Layout_Carousel &layout, Layout_ImageInfo *ii,int page) : Layout_ImageInfo((Layout &)layout,ii,page) { } Layout_Carousel_ImageInfo::~Layout_Carousel_ImageInfo() { Layout_Carousel *c=(Layout_Carousel *)&layout; c->FlushPreview(); } void Layout_Carousel_ImageInfo::DrawThumbnail(GtkWidget *widget,int xpos,int ypos,int width,int height) { // Carousel is built as a whole, so we don't draw the elements individually. } void Layout_Carousel_ImageInfo::FlushThumbnail() { // Because the carousel is built as a whole, we have to flush the cached preview // along with any obsolete thumbnails. Layout_ImageInfo::FlushThumbnail(); Layout_Carousel *lc=(Layout_Carousel *)&layout; lc->FlushPreview(); } LayoutRectangle *Layout_Carousel_ImageInfo::GetBounds() { Layout_Carousel *l=(Layout_Carousel *)&layout; l->GetImageableArea(); CircleMontage c(l->imageablewidth,l->imageableheight); c.SetSegments(l->segments,l->angleoffset,l->overlap); LayoutRectangle *result=c.GetSegmentExtent(segment); result->x+=layout.leftmargin; result->y+=layout.topmargin; return(result); } Layout_Carousel::Layout_Carousel(PhotoPrint_State &state,Layout *oldlayout) : Layout(state,oldlayout), segments(4), overlap(30), angleoffset(0), innerradius(0), preview(NULL), prevwidth(0), prevheight(0) { } Layout_Carousel::~Layout_Carousel() { FlushPreview(); } void Layout_Carousel::Reflow() { int page=0; int segment=0; LayoutIterator it(*this); Layout_Carousel_ImageInfo *ii=(Layout_Carousel_ImageInfo *)it.FirstImage(); while(ii) { ii->page=page; ii->segment=segment; ii=(Layout_Carousel_ImageInfo *)it.NextImage(); ++segment; } pages=1; } int Layout_Carousel::AddImage(const char *filename,bool allowcropping,PP_ROTATION rotation) { // AllowCropping is ignored - cropping is always performed. // AllowRotation is ignored - rotation is never allowed. int page=0; Layout_Carousel_ImageInfo *ii=new Layout_Carousel_ImageInfo(*this,filename,page,true,PP_ROTATION_NONE); imagelist.push_back(ii); if(page>=pages) ++pages; FlushPreview(); int ct=CountImages(page); ii->segment=ct-1; if(ct>segments) SetSegments(ct); return(page); } void Layout_Carousel::CopyImage(Layout_ImageInfo *ii) { int page=0; Layout_Carousel_ImageInfo *cii=new Layout_Carousel_ImageInfo(*this,ii,page); imagelist.push_back(cii); if(page>=pages) ++pages; int ct=CountImages(page); cii->segment=ct-1; if(ct>segments) SetSegments(ct); FlushPreview(); } ImageSource *Layout_Carousel::GetImageSource(int page,CMColourDevice target,CMTransformFactory *factory,int res,bool completepage) { ImageSource *result=NULL; try { enum IS_TYPE colourspace=GetColourSpace(target); IS_ScalingQuality qual=IS_ScalingQuality(state.FindInt("ScalingQuality")); if(!res) res=state.FindInt("RenderingResolution"); ImageSource_Montage *mon=new ImageSource_Montage(colourspace,res); GetImageableArea(); int w=(imageablewidth*res)/72; int h=(imageableheight*res)/72; int ir=(innerradius*res)/72; CircleMontage c(w,h); c.SetSegments(segments,angleoffset,overlap); c.SetInnerRadius(ir); ImageSource *source=NULL; ImageSource *mask=NULL; CMSegment *targetseg=NULL; Debug[TRACE] << "Layout_carousel: Left margin: " << leftmargin << endl; for(int s=0;sGetImageSource(target,factory); LayoutRectangle r(source->width,source->height); targetseg=c.GetSegmentExtent(s); RectFit *fit=r.Fit(*targetseg,true,PP_ROTATION_NONE,img->crop_hpan,img->crop_vpan); source=ISScaleImageBySize(source,fit->width,fit->height,qual); mask=new ImageSource_SegmentMask(targetseg,true); source=new ImageSource_Crop(source,fit->xoffset,fit->yoffset,mask->width,mask->height); source=new ImageSource_Mask(source,mask); mon->Add(source,(leftmargin*res)/72+targetseg->x,(topmargin*res)/72+targetseg->y); delete fit; } } for(int s=1;sGetImageSource(target,factory); LayoutRectangle r(source->width,source->height); targetseg=c.GetSegmentExtent(s); RectFit *fit=r.Fit(*targetseg,true,PP_ROTATION_NONE,img->crop_hpan,img->crop_vpan); source=ISScaleImageBySize(source,fit->width,fit->height,qual); mask=new ImageSource_SegmentMask(targetseg,false); source=new ImageSource_Crop(source,fit->xoffset,fit->yoffset,mask->width,mask->height); source=new ImageSource_Mask(source,mask); mon->Add(source,(leftmargin*res)/72+targetseg->x,(topmargin*res)/72+targetseg->y); delete fit; } } result=mon; if(completepage) { // If the completepage flag is set we need to render a solid background. // This will be used for print preview and TIFF/JPEG export. IS_TYPE colourspace=GetColourSpace(target); ISDataType white[5]={0,0,0,0,0}; if(STRIP_ALPHA(colourspace)==IS_TYPE_RGB) white[0]=white[1]=white[2]=IS_SAMPLEMAX; if(factory) { CMSTransform *transform=factory->GetTransform(target,colourspace); if(transform) transform->Transform(white,white,1); } mon->Add(new ImageSource_Solid(colourspace,(pagewidth*res)/72,(pageheight*res)/72,white),0,0); } } catch (const char *msg) { ErrorMessage_Dialog(msg); } return(result); } void Layout_Carousel::DBToLayout(LayoutDB &db) { Layout::DBToLayout(db); SetPageExtent(state.printer); SetMargins(db.carouseldb.FindInt("LeftMargin"),db.carouseldb.FindInt("RightMargin"), db.carouseldb.FindInt("TopMargin"),db.carouseldb.FindInt("BottomMargin")); SetSegments(db.carouseldb.FindInt("Segments")); SetOverlap(db.carouseldb.FindInt("Overlap")); SetAngleOffset(db.carouseldb.FindInt("AngleOffset")); SetInnerRadius(db.carouseldb.FindInt("InnerRadius")); } void Layout_Carousel::LayoutToDB(LayoutDB &db) { Layout::LayoutToDB(db); db.carouseldb.SetInt("LeftMargin",leftmargin); db.carouseldb.SetInt("RightMargin",rightmargin); db.carouseldb.SetInt("TopMargin",topmargin); db.carouseldb.SetInt("BottomMargin",bottommargin); db.carouseldb.SetInt("Segments",segments); db.carouseldb.SetInt("Overlap",overlap); db.carouseldb.SetInt("AngleOffset",angleoffset); db.carouseldb.SetInt("InnerRadius",innerradius); } GtkWidget *Layout_Carousel::CreateWidget() { return(pp_layout_carousel_new(&state)); } void Layout_Carousel::RefreshWidget(GtkWidget *widget) { pp_layout_carousel_refresh(PP_LAYOUT_CAROUSEL(widget)); } const char *Layout_Carousel::GetType() { return("Carousel"); } void (*Layout_Carousel::SetUnitFunc())(GtkWidget *wid,enum Units unit) { return(pp_layout_carousel_set_unit); } int Layout_Carousel::CountImages(int page) { int result=0; LayoutIterator it(*this); Layout_ImageInfo *ii=it.FirstImage(); while(ii) { if(ii->page==page) ++result; ii=it.NextImage(); } return(result); } Layout_Carousel_ImageInfo *Layout_Carousel::GetNthImage(int page,int n) { Layout_Carousel_ImageInfo *result=NULL; LayoutIterator it(*this); Layout_ImageInfo *ii=it.FirstImage(); while(ii) { if(ii->page==page) { if(n==0) result=(Layout_Carousel_ImageInfo *)ii; --n; } ii=it.NextImage(); } return(result); } void Layout_Carousel::FlushPreview() { if(preview) g_object_unref(G_OBJECT(preview)); preview=NULL; } void Layout_Carousel::RenderPreview(int width,int height) { try { ImageSource_Montage *mon=new ImageSource_Montage(IS_TYPE_RGBA,72); GetImageableArea(); CircleMontage c((width*imageablewidth)/pagewidth,(height*imageableheight)/pageheight); c.SetSegments(segments,angleoffset,overlap); int ir=(innerradius*width)/pagewidth; c.SetInnerRadius(ir); int lm=(leftmargin*width)/pagewidth; int tm=(topmargin*height)/pageheight; ImageSource *source=NULL; ImageSource *mask=NULL; CMSegment *target=NULL; for(int s=0;sGetThumbnail(); source=new ImageSource_GdkPixbuf(thumbnail); LayoutRectangle r(source->width,source->height); target=c.GetSegmentExtent(s); RectFit *fit=r.Fit(*target,true,PP_ROTATION_NONE,img->crop_hpan,img->crop_vpan); source=ISScaleImageBySize(source,fit->width,fit->height,IS_SCALING_NEARESTNEIGHBOUR); mask=new ImageSource_SegmentMask(target,true); source=new ImageSource_Crop(source,fit->xoffset,fit->yoffset,mask->width,mask->height); source=new ImageSource_Mask(source,mask); mon->Add(source,target->x+lm,target->y+tm); delete fit; } } for(int s=1;sGetThumbnail(); source=new ImageSource_GdkPixbuf(thumbnail); LayoutRectangle r(source->width,source->height); target=c.GetSegmentExtent(s); RectFit *fit=r.Fit(*target,true,PP_ROTATION_NONE,img->crop_hpan,img->crop_vpan); source=ISScaleImageBySize(source,fit->width,fit->height,IS_SCALING_NEARESTNEIGHBOUR); mask=new ImageSource_SegmentMask(target,false); source=new ImageSource_Crop(source,fit->xoffset,fit->yoffset,mask->width,mask->height); source=new ImageSource_Mask(source,mask); mon->Add(source,target->x+lm,target->y+tm); delete fit; } } preview=pixbuf_from_imagesource(mon,bgcol.red>>8,bgcol.green>>8,bgcol.blue>>8); delete mon; } catch (const char *msg) { ErrorMessage_Dialog(msg); } } void Layout_Carousel::DrawPreview(GtkWidget *widget,int xpos,int ypos,int width,int height) { DrawPreviewBG(widget,xpos,ypos,width,height); if(prevwidth!=width || prevheight!=height) FlushPreview(); if(!preview) RenderPreview(width,height); if(preview) { gdk_draw_pixbuf(widget->window,NULL,preview, 0,0, xpos,ypos, gdk_pixbuf_get_width(preview), gdk_pixbuf_get_height(preview), GDK_RGB_DITHER_NONE,0,0); prevwidth=width; prevheight=height; } } void Layout_Carousel::SetSegments(int segs) { segs=(segs+1)&(~1); if(segs<4) segs=4; if(segments!=segs) { segments=segs; FlushPreview(); } } int Layout_Carousel::GetSegments() { return(segments); } void Layout_Carousel::SetOverlap(int ovlp) { if(ovlp<0) ovlp=0; if(ovlp>50) ovlp=50; if(overlap!=ovlp) { overlap=ovlp; FlushPreview(); } } int Layout_Carousel::GetOverlap() { return(overlap); } void Layout_Carousel::SetAngleOffset(int ao) { angleoffset=ao; FlushPreview(); } int Layout_Carousel::GetAngleOffset() { return(angleoffset); } void Layout_Carousel::SetInnerRadius(int ao) { innerradius=ao; FlushPreview(); } int Layout_Carousel::GetInnerRadius() { return(innerradius); } int Layout_Carousel::FreeSlots() { int totalslots=segments-CountImages(currentpage); return(totalslots); } Layout_Carousel_ImageInfo *Layout_Carousel::ImageAt(int page,int segment) { Layout_Carousel_ImageInfo *result=NULL; LayoutIterator it(*this); Layout_ImageInfo *ii=it.FirstImage(); while(ii) { Layout_Carousel_ImageInfo *nii=(Layout_Carousel_ImageInfo *)ii; if(nii->page==page) { if(!--segment) result=nii; } ii=it.NextImage(); } return(result); } Layout_ImageInfo *Layout_Carousel::ImageAtCoord(int x,int y) { GetImageableArea(); CircleMontage c(imageablewidth,imageableheight); c.SetSegments(segments,angleoffset,overlap); CMSegment *extent=NULL; int bestseg=-1; int leastdr=100000000; for(int seg=0;segx+extent->w/2; int cy=extent->y+extent->h/2; int dr=(cx-x)*(cx-x)+(cy-y)*(cy-y); if(dr