pdftools.pdfposter-0.7.post1/0000755000175000017500000000000013316677212017466 5ustar hartmuthartmut00000000000000pdftools.pdfposter-0.7.post1/PKG-INFO0000644000175000017500000000370013316677212020563 0ustar hartmuthartmut00000000000000Metadata-Version: 1.1 Name: pdftools.pdfposter Version: 0.7.post1 Summary: Scale and tile PDF images/pages to print on multiple pages. Home-page: https://pdfposter.readthedocs.io/ Author: Hartmut Goebel Author-email: h.goebel@crazy-compilers.com License: GPL 3.0 Download-URL: https://pypi.org/project/pdftools.pdfposter/ Description-Content-Type: UNKNOWN Description: ``Pdfposter`` can be used to create a large poster by building it from multiple pages and/or printing it on large media. It expects as input a PDF file, normally printing on a single page. The output is again a PDF file, maybe containing multiple pages together building the poster. The input page will be scaled to obtain the desired size. This is much like ``poster`` does for Postscript files, but working with PDF. Since sometimes poster does not like your files converted from PDF. :-) Indeed ``pdfposter`` was inspired by ``poster``. For more information please refere to the manpage or visit the `project homepage `_. Keywords: pdf poster Platform: UNKNOWN Classifier: Development Status :: 5 - Production/Stable Classifier: Environment :: Console Classifier: Intended Audience :: Developers Classifier: Intended Audience :: End Users/Desktop Classifier: Intended Audience :: System Administrators Classifier: License :: OSI Approved :: GNU General Public License (GPL) Classifier: Natural Language :: English Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python Classifier: Programming Language :: Python :: 2 Classifier: Programming Language :: Python :: 2.7 Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.4 Classifier: Programming Language :: Python :: 3.5 Classifier: Programming Language :: Python :: 3.6 Classifier: Topic :: Printing Classifier: Topic :: Utilities pdftools.pdfposter-0.7.post1/setup.py0000644000175000017500000001060613316677212021203 0ustar hartmuthartmut00000000000000""" ``Pdfposter`` can be used to create a large poster by building it from multiple pages and/or printing it on large media. It expects as input a PDF file, normally printing on a single page. The output is again a PDF file, maybe containing multiple pages together building the poster. The input page will be scaled to obtain the desired size. This is much like ``poster`` does for Postscript files, but working with PDF. Since sometimes poster does not like your files converted from PDF. :-) Indeed ``pdfposter`` was inspired by ``poster``. For more information please refere to the manpage or visit the `project homepage `_. """ from setuptools import setup, find_packages from distutils.core import Command from distutils import log import os, sys class build_docs(Command): description = "build documentation from rst-files" user_options=[] def initialize_options (self): pass def finalize_options (self): self.docpages = DOCPAGES def run(self): substitutions = ('.. |VERSION| replace:: ' + self.distribution.get_version()) for writer, rstfilename, outfilename in self.docpages: distutils.dir_util.mkpath(os.path.dirname(outfilename)) log.info("creating %s page %s", writer, outfilename) if not self.dry_run: try: with open(rstfilename, "rb") as fh: rsttext = fh.read().decode('utf-8') except IOError as e: sys.exit(e) rsttext = '\n'.join((substitutions, '', rsttext)) # docutils.core does not offer easy reading from a # string into a file, so we need to do it ourself :-( doc = docutils.core.publish_string(source=rsttext, source_path=rstfilename, writer_name=writer) try: with open(outfilename, 'wb') as fh: fh.write(doc) # is already encoded except IOError as e: sys.exit(e) cmdclass = {} try: import docutils.core import docutils.io import docutils.writers.manpage import distutils.command.build distutils.command.build.build.sub_commands.append(('build_docs', None)) cmdclass['build_docs'] = build_docs except ImportError: log.warn("docutils not installed, can not build man pages. " "Using pre-build ones.") DOCPAGES = ( ('manpage', 'pdfposter.rst', 'docs/pdfposter.1'), ('html', 'pdfposter.rst', 'docs/pdfposter.html'), ) setup( cmdclass=cmdclass, name = "pdftools.pdfposter", version='0.7.post1', install_requires = ['PyPDF2'], packages=['pdftools.pdfposter'], namespace_packages=['pdftools'], package_data = { # If any package contains *.txt or *.rst files, include them: '': ['*.txt', '*.rst'], # And include any *.msg files found in the 'hello' package, too: 'hello': ['*.msg'], }, # metadata for upload to PyPI author = "Hartmut Goebel", author_email = "h.goebel@crazy-compilers.com", description = "Scale and tile PDF images/pages to print on multiple pages.", long_description = __doc__, license = "GPL 3.0", keywords = "pdf poster", url = "https://pdfposter.readthedocs.io/", download_url = "https://pypi.org/project/pdftools.pdfposter/", classifiers = [ 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Intended Audience :: Developers', 'Intended Audience :: End Users/Desktop', 'Intended Audience :: System Administrators', 'License :: OSI Approved :: GNU General Public License (GPL)', 'Natural Language :: English', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Topic :: Printing', 'Topic :: Utilities', ], # these are for easy_install (used by bdist_*) zip_safe = True, entry_points = { "console_scripts": [ "pdfposter = pdftools.pdfposter.cmd:run", ], }, ) pdftools.pdfposter-0.7.post1/setup.cfg0000644000175000017500000000036513316677212021313 0ustar hartmuthartmut00000000000000[sdist] formats = gztar [bdist_wheel] universal = 1 [zest.releaser] history-file = CHANGES push-changes = no tag-format = v{version} tag-message = pdfposter {version} tag-signing = yes create-wheel = yes [egg_info] tag_build = tag_date = 0 pdftools.pdfposter-0.7.post1/pdfposter.rst0000644000175000017500000000225513316677212022232 0ustar hartmuthartmut00000000000000========================== pdfposter ========================== ------------------------------------------------------------- Scale and tile PDF images/pages to print on multiple pages. ------------------------------------------------------------- :Author: Hartmut Goebel :Version: Version |VERSION| :Copyright: 2008-2018 by Hartmut Goebel :Licence: GNU Public Licence v3 (GPLv3) :Manual section: 1 .. raw:: manpage .\" disable justification (adjust text to left margin only) .ad l SYNOPSIS ========== ``pdfposter`` infile outfile DESCRIPTION ============ .. include:: docs/_description.txt OPTIONS ======== .. include:: docs/_options.txt .. include:: docs/_box-definitions.txt EXAMPLES ============ .. include:: docs/_examples1.txt More examples including sample pictures can be found at https://pdfposter.readthedocs.io/en/latest/Examples.html .. include:: docs/_examples2.txt SEE ALSO ============= ``poster``\(1), ``pdfnup``\(1) https://pypi.org/project/pdfnup/, ``pdfsplit``\(1) https://pypi.org/project/pdfsplit/, ``pdfgrid``\(1) https://pypi.org/project/pdfgrid/ Project Homepage https://pdfposter.readthedocs.io/ pdftools.pdfposter-0.7.post1/README.txt0000644000175000017500000000302713316677212021166 0ustar hartmuthartmut00000000000000========================== pdfposter ========================== ------------------------------------------------------------- Scale and tile PDF images/pages to print on multiple pages. ------------------------------------------------------------- :Author: Hartmut Goebel :Version: Version 0.7.post1 :Copyright: 2008-2018 by Hartmut Goebel :Licence: GNU Public Licence v3 (GPLv3) :Homepage: https://pdfposter.readthedocs.io/ ``Pdfposter`` can be used to create a large poster by building it from multiple pages and/or printing it on large media. It expects as input a PDF file, normally printing on a single page. The output is again a PDF file, maybe containing multiple pages together building the poster. The input page will be scaled to obtain the desired size. This is much like ``poster`` does for Postscript files, but working with PDF. Since sometimes poster does not like your files converted from PDF. :-) Indeed ``pdfposter`` was inspired by ``poster``. For more information please refer to the manpage or visit the `project homepage `_. Requirements and Installation ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ``Pdfposter`` requires * `Python`__ (tested 2.7 and 3.4—3.6, but newer versions should work, too), * `setuptools`__ or `pip`__ for installation, and * `PyPDF2`__. __ https://www.python.org/download/ __ https://pypi.org/project/setuptools __ https://pypi.org/project/pip __ http://mstamy2.github.io/PyPDF2/ .. Emacs config: Local Variables: mode: rst End: pdftools.pdfposter-0.7.post1/MANIFEST.in0000644000175000017500000000032013316677212021217 0ustar hartmuthartmut00000000000000graft docs prune docs/_build include COPYING include README.txt include pdfposter.rst exclude projectlogo.* exclude .gitignore .gitattributes global-exclude SConstruct SConscript global-exclude *~ .\#* \#*\# pdftools.pdfposter-0.7.post1/pdftools/0000755000175000017500000000000013316677212021320 5ustar hartmuthartmut00000000000000pdftools.pdfposter-0.7.post1/pdftools/pdfposter/0000755000175000017500000000000013316677212023326 5ustar hartmuthartmut00000000000000pdftools.pdfposter-0.7.post1/pdftools/pdfposter/cmd.py0000644000175000017500000001746613316677212024461 0ustar hartmuthartmut00000000000000#!/usr/bin/env python """ pdftools.pdfposter.cmd - scale and tile PDF images/pages to print on multiple pages. """ # # Copyright 2008-2018 by Hartmut Goebel # # 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 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # from __future__ import print_function __author__ = "Hartmut Goebel " __copyright__ = "Copyright 2008-2018 by Hartmut Goebel " __licence__ = "GNU General Public License version 3 (GPL v3)" from . import main, __version__, DEFAULT_MEDIASIZE, papersizes, DecryptionError import re import PyPDF2.utils import argparse # pattern for parsing user textual box spec pat_box = re.compile(r''' ( (?P (\d*\.)? \d+) x # width "x" height (?P (\d*\.)? \d+) )? (?P \+ # "+" offset_x "," offset_y (?P \d+\.? | \d*\.\d+) , (?P \d+\.? | \d*\.\d+) ) ? (?P [a-z][a-z0-9\-\\_]*) # unit ''', re.X+re.I) def __parse_box(value, allow_offset=False): m = pat_box.match(value) if not m: raise argparse.ArgumentTypeError("I don't understand your box specification %r" % value) res = m.groupdict() if not allow_offset and res['offset'] is not None: raise argparse.ArgumentTypeError('Offset not allowed in box definition') # res['offset'] is only used for error checking, remove it del res['offset'] # get meassures of unit unit = res['unit'].lower() if not unit in papersizes: unit = [name for name in papersizes.keys() if name.startswith(unit)] if len(unit) == 0: raise argparse.ArgumentTypeError("I don't understand your papersize name %r" % res['unit']) elif len(unit) != 1: raise argparse.ArgumentTypeError('Your papersize name %r is not unique, give more chars.' % res['unit']) unit = unit[0] unit_x, unit_y = papersizes[unit] res2 = { 'width' : float(res['width'] or 1) * unit_x, 'height' : float(res['height'] or 1) * unit_y, 'offset_x': float(res['offset_x'] or 0) * unit_x, 'offset_y': float(res['offset_y'] or 0) * unit_y, 'unit': unit, 'units_x': float(res['width'] or 1), 'units_y': float(res['height'] or 1), } return res2 BoxDefinitionsHelp = """\ A `BOX` to be passed to `--media-size` and `--poster-size` is a specification of horizontal and vertical size. The syntax is as follows (with multiplier being specified optionally): *box* = [ *multiplier* ] *unit* *multiplier* = *number* "x" *number* *unit* = *medianame* or *distancename* Please see `--help-media-size` for a list of media and distance names supported. Medias are typically not quadratic but rectangular, which means width and height differ. Thus using medianames is a bit tricky: :10x20cm: obvious: 10 cm x 20 cm (portrait) :20x10cm: same as 10x20cm, since all boxes are rotated to portrait format Now when using media names it gets tricky: :1x1a4: same as approx. 21x29cm (21 cm x 29 cm, portrait) :1x2a4: same as approx. 21x58cm (21 cm x 58 cm, portrait) This are two a4 pages put together at the *small* side: One portrait page wide and two portrait pages high. :2x1a4: same as approx. 42x29cm, which is rotated to portrait and is (approx.) the same as 29x42cm (29 cm x 42 cm) This are two a4 pages put together at the *long* side: Two portrait pages wide and one portrait page high. """ class HelpMediaNames(argparse.Action): def __call__(*args, **kw): import textwrap print('Available media and distance names:') names = list(papersizes.keys()) names.sort() for l in textwrap.wrap(' '.join(names), width=65): print(' ', l) raise SystemExit(0) class HelpBoxDefinitions(argparse.Action): def __call__(*args, **kw): import textwrap print(textwrap.dedent(BoxDefinitionsHelp)) raise SystemExit(0) def run(args=None): parser = argparse.ArgumentParser() parser.add_argument('--help-media-names', action=HelpMediaNames, nargs=0, help='List available media and distance names') parser.add_argument('--help-box-definitions', action=HelpBoxDefinitions, nargs=0, help='Show help about specifying BOX for ' '`--media-size` and `--poster-size` and exit') parser.add_argument('--version', action='version', version="%(prog)s " + __version__) parser.add_argument('-v', '--verbose', action='count', default=0, help='Be verbose. Tell about scaling, rotation and number of pages. Can be used more than once to increase the verbosity. ') parser.add_argument('-n', '--dry-run', action='store_true', help='Show what would have been done, but do not generate files.') group = parser.add_argument_group('Define Input') group.add_argument('-f', '--first', type=int, dest='first_page', metavar='INTEGER', help='First page to convert (default: first page)') group.add_argument('-l', '--last', type=int, dest='last_page', metavar='INTEGER', help='Last page to convert (default: last page)') group.add_argument('-A', '--art-box', action='store_true', dest='use_ArtBox', help='Use the content area defined by the ArtBox ' '(default: use the area defined by the TrimBox)') group = parser.add_argument_group('Define Target') group.add_argument('-m', '--media-size', default=__parse_box(DEFAULT_MEDIASIZE), type=__parse_box, metavar="BOX", help='Specify the page size of the output media (default: %s)' % DEFAULT_MEDIASIZE) group.add_argument('-p', '--poster-size', type=__parse_box, metavar="BOX", help='Specify the poster size (defaults to media size). ') group.add_argument('-s', '--scale', type=float, help='Specify a linear scaling factor to produce the poster.') parser.add_argument('infilename', metavar='InputFile') parser.add_argument('outfilename', metavar='OutputFile') args = parser.parse_args(args) if args.scale is not None and args.poster_size is not None: parser.error('Only one of -p/--poster-size and -s/--scale may be given at a time.') if not args.poster_size: args.poster_size = args.media_size.copy() if args.scale is not None: args.poster_size = None if args.scale < 0.01: parser.error("Scale value is much to small: %s" % args.scale) elif args.scale > 1.0e6: parser.error("Scale value is much to big: %s" % args.scale) try: main(args, infilename=args.infilename, outfilename=args.outfilename) except DecryptionError as e: raise SystemExit(str(e)) except PyPDF2.utils.PdfReadError as e: parser.error('The input-file is either currupt or no PDF at all: %s' % e) if __name__ == '__main__': # pragma: no cover run() pdftools.pdfposter-0.7.post1/pdftools/pdfposter/__init__.py0000755000175000017500000003011413316677212025441 0ustar hartmuthartmut00000000000000#!/usr/bin/env python """ pdftools.pdfposter - scale and tile PDF images/pages to print on multiple pages. """ # # Copyright 2008-2018 by Hartmut Goebel # # 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 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # __author__ = "Hartmut Goebel " __copyright__ = "Copyright 2008-2018 by Hartmut Goebel " __licence__ = "GNU General Public License version 3 (GPL v3)" __version__ = "0.7.post1" from PyPDF2.pdf import PdfFileWriter, PdfFileReader, PageObject, getRectangle, \ ArrayObject, ContentStream, NameObject, FloatObject, RectangleObject import logging from logging import log import math DEFAULT_MEDIASIZE = 'a4' mm = 72 / 25.4 # Taken from poster.c papersizes = { 'pt' : (1, 1), 'inch': (72, 72), 'ft' : (864, 864), # 12 inch 'mm' : (mm, mm), 'cm' : (10 *mm, 10 *mm), 'meter':(1000* mm, 1000* mm), # American page sizes (taken from psposter.c) "monarch" : (279, 540), "statement": (396, 612), "executive": (540, 720), "quarto" : (610, 780), "letter" : (612, 792), "folio" : (612, 936), "legal" : (612, 1008), "tabloid" : (792, 1224), "ledger" : (792, 1224), # ISO page sizes (taken from psposter.c) "a0" : (2384, 3370), "a1" : (1684, 2384), "a2" : (1191, 1684), "a3" : (842, 1191), "a4" : (595, 842), "a5" : (420, 595), "a6" : (298, 420), "a7" : (210, 298), "a8" : (147, 210), "a9" : (105, 147), "a10": (74, 105), # DIN lang is considered to be a landscape format "dinlang" : (595, 281), # 1/3 a4 "envdinlang": (624, 312), # envelope for Din lang "b0" : (2835, 4008), "b1" : (2004, 2835), "b2" : (1417, 2004), "b3" : (1001, 1417), "b4" : (709, 1001), "b5" : (499, 709), "b6" : (354, 499), "b7" : (249, 354), "b8" : (176, 249), "b9" : (125, 176), "b10": (88, 125), "c4" : (649, 918), "c5" : (459, 649), "c6" : (323, 459), # Japanese page sizes (taken from psposter.c) "jb0" : (2920, 4127), "jb1" : (2064, 2920), "jb2" : (1460, 2064), "jb3" : (1032, 1460), "jb4" : (729, 1032), "jb5" : (516, 729), "jb6" : (363, 516), "jb7" : (258, 363), "jb8" : (181, 258), "jb9" : (128, 181), "jb10": (91, 128), # Envelope No. 10 is considered to be a landscape format "comm10": (684, 298), "com10" : (684, 298), "env10" : (684, 298), } class DecryptionError(ValueError): pass PAGE_BOXES = ("/MediaBox", "/CropBox", "/BleedBox", "/TrimBox", "/ArtBox") def rectangle2box(pdfbox): return { 'width' : pdfbox.getUpperRight_x()-pdfbox.getLowerLeft_x(), 'height' : pdfbox.getUpperRight_y()-pdfbox.getLowerLeft_y(), 'offset_x': pdfbox.getLowerLeft_x(), 'offset_y': pdfbox.getLowerLeft_y(), # the following are unused, but need to be set to make # `rotate_box()` work 'units_x' : None, 'units_y' : None, } def rotate_box(box): for a, b in ( ('width', 'height'), ('offset_x', 'offset_y'), ('units_x', 'units_y')): box[a], box[b] = box[b], box[a] def rotate2portrait(box, which): 'if box is landscape spec, rotate to portrait' if ( box['width' ]-box['offset_x'] > box['height']-box['offset_y']): rotate_box(box) log(18, 'Rotating %s specs to portrait format', which) return True def decide_num_pages(inbox, mediabox, posterbox, scale=None): """decide on number of pages""" # avoid changing original posterbox when handling multiple pages # (if --scale, posterbox is None) posterbox = posterbox and posterbox.copy() cutmargin = {'x': 0, 'y': 0} # todo whitemargin = {'x': 0, 'y': 0} # todo # media and image sizes (inbox) are fixed already # available drawing area per sheet drawable_x = mediabox['width' ] - 2*cutmargin['x'] drawable_y = mediabox['height'] - 2*cutmargin['y'] rotate = False inbox_x = float(inbox['width' ]) inbox_y = float(inbox['height']) log(17, 'input dimensions: %.2f %.2f (trimbox of input page)', inbox_x, inbox_y) if not scale: # user did not specify scale factor, calculate from output size # todo: fix assuming posterbox offset = 0,0 log(17, 'output dimensions: %.2f %.2f (poster size)', posterbox['width'], posterbox['height']) # ensure poster spec are portrait if rotate2portrait(posterbox, 'poster'): rotate = rotate != True # xor # if the input page has landscape format rotate the # poster spec to landscape, too if inbox_x > inbox_y: log(18, 'Rotating poster specs since input page is landscape') rotate = rotate != True # xor rotate_box(posterbox) log(18, 'rotated output dimensions: %.2f %.2f (poster size)', posterbox['width'], posterbox['height']) scale = min(posterbox['width' ] / inbox_x, posterbox['height'] / inbox_y) log(18, 'Calculated page scaling factor: %f', scale) # use round() to avoid floating point roundup errors size_x = round(inbox_x*scale - whitemargin['x'], 4) size_y = round(inbox_y*scale - whitemargin['y'], 4) log(17, 'output dimensions: %.2f %.2f (calculated)', size_x, size_y) # num pages without rotation nx0 = int(math.ceil(size_x / drawable_x)) ny0 = int(math.ceil(size_y / drawable_y)) # num pages with rotation nx1 = int(math.ceil(size_x / drawable_y)) ny1 = int(math.ceil(size_y / drawable_x)) log(17, 'Pages w/o rotation %s x %s', nx0, ny0) log(17, 'Pages w/ rotation %s x %s', nx1, ny1) # Decide for rotation to get the minimum page count. # (Rotation is considered as media versus input page, which is # totally independent of the portrait or landscape style of the # final poster.) rotate = (rotate and (nx0*ny0) == (nx1*ny1)) or (nx0*ny0) > (nx1*ny1) log(17, 'Decided for rotation: %s', rotate and 'yes' or 'no') if rotate: ncols = nx1 nrows = ny1 else: ncols = nx0 nrows = ny0 log(19, "Deciding for %d column%s and %d row%s of %s pages.", ncols, (ncols==1) and "s" or "", nrows, (nrows==1) and "s" or "", rotate and "landscape" or "portrait") return ncols, nrows, scale, rotate def copyPage(page): newpage = PageObject() newpage.update(page) # Copy Rectangles to be manipulatable for attr in PAGE_BOXES: if attr in page: newpage[NameObject(attr)] = RectangleObject(list(page[attr])) return newpage def _clip_pdf_page(page, x, y, width, height): content = ContentStream(page["/Contents"].getObject(), None) content.operations[:0] = [ ([], 'q'), # save graphic state (RectangleObject((x, y, width, height)), 're'), # rectangle path ([], 'W*'), # clip ([], 'n'), # cancel path w/ filling or stroking ] content.operations.append([[], "Q"]) # restore graphic state page[NameObject('/Contents')] = content def _scale_pdf_page(outpdf, page, factor): for boxname in PAGE_BOXES: # skip if real box does not exits (avoid fallback to other boxes) if not page.get(boxname): continue box = getRectangle(page, boxname, None) box.lowerLeft = [float(i) * factor for i in box.lowerLeft ] box.upperRight = [float(i) * factor for i in box.upperRight] #print boxname, type(box), box # put transformation matrix in front of page content content = ContentStream(page["/Contents"].getObject(), None) content.operations.insert(0, [[], '%f 0 0 %f 0 0 cm' %(factor,factor)] ) content = content.flateEncode() # Add changed content as an indirect object. So the content will # be referenced by the other pages and not copied. The content # will be in the output file only once. page[NameObject('/Contents')] = outpdf._addObject(content) def posterize(outpdf, page, mediabox, posterbox, scale, use_ArtBox=False): """ page: input page mediabox : size secs of the media to print on posterbox: size secs of the resulting poster scale: scale factor (to be used instead of posterbox) """ if use_ArtBox: inbox = rectangle2box(page.artBox) else: inbox = rectangle2box(page.trimBox) _clip_pdf_page(page, inbox['offset_x'], inbox['offset_y'], inbox['width'], inbox['height']) ncols, nrows, scale, rotate = decide_num_pages(inbox, mediabox, posterbox, scale) mediabox = mediabox.copy() _scale_pdf_page(outpdf, page, scale) if rotate: page.rotateClockwise(90) rotate_box(inbox) rotate_box(mediabox) # area to put on each page (allows for overlay of margin) h_step = mediabox['width'] - mediabox['offset_x'] v_step = mediabox['height'] - mediabox['offset_y'] if use_ArtBox: trimbox = rectangle2box(page.artBox) else: trimbox = rectangle2box(page.trimBox) h_pos = float(trimbox['offset_x']) h_max, v_max = float(trimbox['width']), float(trimbox['height']) for col in range(ncols): v_pos = float(trimbox['offset_y']) + (nrows-1) * v_step for row in range(nrows): log(17, 'Creating page with offset: %.2f %.2f' % (h_pos, v_pos)) newpage = copyPage(page) # todo: if remaining area is smaller than mediaBox, add a # transparent fill box behind, so the real content is in # the lower left corner newpage.mediaBox = RectangleObject((h_pos, v_pos, h_pos + h_step, v_pos + v_step)) newpage.trimBox = RectangleObject((h_pos, v_pos, min(h_max, h_pos + h_step), min(v_max, v_pos + v_step))) newpage.artBox = newpage.trimBox outpdf.addPage(newpage) v_pos -= v_step h_pos += h_step def password_hook(): import getpass return getpass.getpass() def main(opts, infilename, outfilename, password_hook=password_hook): logging.basicConfig(level=20-opts.verbose, format="%(message)s") outpdf = PdfFileWriter() inpdf = PdfFileReader(open(infilename, 'rb')) if inpdf.isEncrypted: log(16, 'File is encrypted') # try empty password first if not inpdf.decrypt(''): if not inpdf.decrypt(password_hook()): raise DecryptionError("Can't decrypt PDF. Wrong Password?") first_page = 1 last_page = inpdf.numPages if opts.first_page is not None: first_page = max(1, opts.first_page) if opts.last_page is not None: last_page = min(last_page, opts.last_page) log(18, 'Mediasize : %(units_x)sx%(units_y)s %(unit)s' % opts.media_size) log(17, ' %(width).2f %(height).2f dots' % opts.media_size) if opts.scale: log(18, 'Scaling by: %f' % opts.scale) else: log(18, 'Postersize: %(units_x)sx%(units_y)s %(unit)s' % opts.poster_size) log(17, ' %(width).2f %(height).2f dots' % opts.poster_size) for i in range(first_page-1, last_page): page = inpdf.getPage(i) log(19, '---- processing page %i -----', i+1) posterize(outpdf, page, opts.media_size, opts.poster_size, opts.scale, opts.use_ArtBox) if not opts.dry_run: outpdf.write(open(outfilename, 'wb')) pdftools.pdfposter-0.7.post1/pdftools.pdfposter.egg-info/0000755000175000017500000000000013316677212025017 5ustar hartmuthartmut00000000000000pdftools.pdfposter-0.7.post1/pdftools.pdfposter.egg-info/zip-safe0000644000175000017500000000000113316677212026447 0ustar hartmuthartmut00000000000000 pdftools.pdfposter-0.7.post1/pdftools.pdfposter.egg-info/top_level.txt0000644000175000017500000000001113316677212027541 0ustar hartmuthartmut00000000000000pdftools pdftools.pdfposter-0.7.post1/pdftools.pdfposter.egg-info/requires.txt0000644000175000017500000000000713316677212027414 0ustar hartmuthartmut00000000000000PyPDF2 pdftools.pdfposter-0.7.post1/pdftools.pdfposter.egg-info/namespace_packages.txt0000644000175000017500000000001113316677212031342 0ustar hartmuthartmut00000000000000pdftools pdftools.pdfposter-0.7.post1/pdftools.pdfposter.egg-info/entry_points.txt0000644000175000017500000000007213316677212030314 0ustar hartmuthartmut00000000000000[console_scripts] pdfposter = pdftools.pdfposter.cmd:run pdftools.pdfposter-0.7.post1/pdftools.pdfposter.egg-info/dependency_links.txt0000644000175000017500000000000113316677212031065 0ustar hartmuthartmut00000000000000 pdftools.pdfposter-0.7.post1/pdftools.pdfposter.egg-info/SOURCES.txt0000644000175000017500000000201413316677212026700 0ustar hartmuthartmut00000000000000MANIFEST.in README.txt pdfposter.rst setup.cfg setup.py docs/Development.rst docs/Donate.rst docs/Examples.rst docs/Frequently Asked Questions.rst docs/Installation.rst docs/Makefile docs/Usage.rst docs/_box-definitions.txt docs/_common_definitions.txt docs/_description.txt docs/_examples1.txt docs/_examples2.txt docs/_options.txt docs/conf.py docs/index.rst docs/_images/bitcoin-pdfposter.png docs/_images/poster-tall-1x2a4.png docs/_images/poster-tall-2x1a4.png docs/_images/poster-wide-1x2a4.png docs/_images/poster-wide-2x1a4.png docs/_images/testpage-tall.preview.png docs/_images/testpage-wide.preview.png docs/_static/custom.css pdftools.pdfposter.egg-info/PKG-INFO pdftools.pdfposter.egg-info/SOURCES.txt pdftools.pdfposter.egg-info/dependency_links.txt pdftools.pdfposter.egg-info/entry_points.txt pdftools.pdfposter.egg-info/namespace_packages.txt pdftools.pdfposter.egg-info/requires.txt pdftools.pdfposter.egg-info/top_level.txt pdftools.pdfposter.egg-info/zip-safe pdftools/pdfposter/__init__.py pdftools/pdfposter/cmd.pypdftools.pdfposter-0.7.post1/pdftools.pdfposter.egg-info/PKG-INFO0000644000175000017500000000370013316677212026114 0ustar hartmuthartmut00000000000000Metadata-Version: 1.1 Name: pdftools.pdfposter Version: 0.7.post1 Summary: Scale and tile PDF images/pages to print on multiple pages. Home-page: https://pdfposter.readthedocs.io/ Author: Hartmut Goebel Author-email: h.goebel@crazy-compilers.com License: GPL 3.0 Download-URL: https://pypi.org/project/pdftools.pdfposter/ Description-Content-Type: UNKNOWN Description: ``Pdfposter`` can be used to create a large poster by building it from multiple pages and/or printing it on large media. It expects as input a PDF file, normally printing on a single page. The output is again a PDF file, maybe containing multiple pages together building the poster. The input page will be scaled to obtain the desired size. This is much like ``poster`` does for Postscript files, but working with PDF. Since sometimes poster does not like your files converted from PDF. :-) Indeed ``pdfposter`` was inspired by ``poster``. For more information please refere to the manpage or visit the `project homepage `_. Keywords: pdf poster Platform: UNKNOWN Classifier: Development Status :: 5 - Production/Stable Classifier: Environment :: Console Classifier: Intended Audience :: Developers Classifier: Intended Audience :: End Users/Desktop Classifier: Intended Audience :: System Administrators Classifier: License :: OSI Approved :: GNU General Public License (GPL) Classifier: Natural Language :: English Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python Classifier: Programming Language :: Python :: 2 Classifier: Programming Language :: Python :: 2.7 Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.4 Classifier: Programming Language :: Python :: 3.5 Classifier: Programming Language :: Python :: 3.6 Classifier: Topic :: Printing Classifier: Topic :: Utilities pdftools.pdfposter-0.7.post1/docs/0000755000175000017500000000000013316677212020416 5ustar hartmuthartmut00000000000000pdftools.pdfposter-0.7.post1/docs/index.rst0000644000175000017500000000165313316677212022264 0ustar hartmuthartmut00000000000000============================================== pdftools.pdfposter ============================================== .. container:: admonition topic **Scale and tile PDF images/pages to print on multiple pages.** |pdfposter| can be used to create a large poster by building it from multiple pages and/or printing it on large media. It expects as input a PDF file, normally printing on a single page. The output is again a PDF file, maybe containing multiple pages together building the poster. The input page will be scaled to obtain the desired size. This is much like the well-known tool `poster` does for Postscript files, but working with PDF. Since sometimes poster does not like your files converted from PDF. :-) Indeed |pdfposter| was inspired by `poster`. .. toctree:: :maxdepth: 1 Installation Usage Examples Donate Frequently Asked Questions Development .. include:: _common_definitions.txt pdftools.pdfposter-0.7.post1/docs/conf.py0000644000175000017500000001454013316677212021721 0ustar hartmuthartmut00000000000000#!/usr/bin/env python3 # -*- coding: utf-8 -*- # # pdftools.PDFposter documentation build configuration file, created by # sphinx-quickstart on Tue May 21 16:21:39 2013. # # This file is execfile()d with the current directory set to its containing dir. # # Note that not all possible configuration values are present in this # autogenerated file. # # All configuration values have a default; values that are commented out # serve to show the default. import sys, os # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. #sys.path.insert(0, os.path.abspath('.')) # -- General configuration ----------------------------------------------------- # If your documentation needs a minimal Sphinx version, state it here. #needs_sphinx = '1.0' # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. extensions = ['sphinx.ext.intersphinx'] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] # The suffix of source filenames. source_suffix = '.rst' # The master toctree document. master_doc = 'index' # General information about the project. project = 'pdfposter' copyright = '2008-2018, Hartmut Goebel' author = 'Hartmut Goebel' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. version = '0.7' # The full version, including alpha/beta/rc tags. release = '0.7.post1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. #language = None # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: #today = '' # Else, today_fmt is used as the format for a strftime call. today_fmt = '%Y-%m-%d' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. exclude_patterns = ['_build'] # The name of the Pygments (syntax highlighting) style to use. pygments_style = 'sphinx' # -- Options for HTML output --------------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. html_theme = 'alabaster' # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. html_theme_options = { 'logo_name': True, 'logo_text_align': 'center', 'description': 'Scale and Tile PDF Pages', 'github_button': False, 'fixed_sidebar': True, 'show_related': False, } html_sidebars = { '**': [ 'about.html', #'globaltoc.html', 'navigation.html', 'searchbox.html', 'donate.html', ] } # Add any paths that contain custom themes here, relative to this directory. #html_theme_path = [] # A shorter title for the navigation bar. Default is the same as html_title. html_short_title = "pdfposter" # The name of an image file (relative to this directory) to place at the top # of the sidebar. html_logo = '../projectlogo.svg' # The name of an image file (within the static path) to use as favicon of the # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 # pixels large. #html_favicon = None # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. #html_last_updated_fmt = '%b %d, %Y' # If true, SmartyPants will be used to convert quotes and dashes to # typographically correct entities. #html_use_smartypants = True # Custom sidebar templates, maps document names to template names. #html_sidebars = {} # Additional templates that should be rendered to pages, maps page names to # template names. #html_additional_pages = {} # If false, no module index is generated. #html_domain_indices = True # If false, no index is generated. #html_use_index = True # If true, the index is split into individual pages for each letter. #html_split_index = False # If true, links to the reST sources are added to the pages. #html_show_sourcelink = True # If true, an OpenSearch description file will be output, and all pages will # contain a tag referring to it. The value of this option must be the # base URL from which the finished HTML is served. #html_use_opensearch = '' # Output file base name for HTML help builder. htmlhelp_basename = 'pdfposterdoc' # -- Options for LaTeX output -------------------------------------------------- latex_elements = { # The paper size ('letterpaper' or 'a4paper'). #'papersize': 'a4paper', # The font size ('10pt', '11pt' or '12pt'). #'pointsize': '10pt', # Additional stuff for the LaTeX preamble. #'preamble': '', } # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [ (master_doc, 'pdfposter.tex', 'pdfposter Documentation', 'Hartmut Goebel', 'manual'), ] # -- Options for manual page output -------------------------------------------- # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [ ('index', 'pdftoolspdfposter', 'pdfposter Documentation', ['Hartmut Goebel'], 1) ] # If true, show URL addresses after external links. #man_show_urls = False # -- Options for Texinfo output ------------------------------------------------ # Grouping the document tree into Texinfo files. List of tuples # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ ('index', 'pdfposter', 'pdfposter Documentation', 'Hartmut Goebel', 'pdfposter', 'One line description of project.', 'Miscellaneous'), ] # Example configuration for intersphinx: refer to the Python standard library. intersphinx_mapping = {'https://docs.python.org/': None} pdftools.pdfposter-0.7.post1/docs/_options.txt0000644000175000017500000000331213316677212023010 0ustar hartmuthartmut00000000000000 General Options -------------------- -h, --help Show help message and exit --help-media-names List available media and distance names and exit --help-box-definitions Show help about specifying BOX for `--media-size` and `--poster-size` and exit --version Show program's version number and exit -v, --verbose Be verbose. Tell about scaling, rotation and number of pages. Can be used more than once to increase the verbosity. -n, --dry-run Show what would have been done, but do not generate files. Defining Input ----------------- -f, --first First page to convert (default: first page). -l, --last Last page to convert (default: last page). -A, --art-box Use the content area defined by the ArtBox (default: use the area defined by the TrimBox) Defining Output ----------------- -m BOX, --media-size=BOX Specify the desired media size to print on. See below for *BOX*. The default is A4 in the standard package. -p BOX, --poster-size=BOX Specify the poster size. See below for *BOX*. pdfposter will autonomously choose scaling and rotation to best fit the input onto the poster (see EXAMPLES below). If you give neither the *-s* nor the *-p* option, the default poster size is identical to the media size. -s NUMBER Specify a linear scaling factor to produce the poster. Together with the input image size and optional margins, this induces an output poster size. So don't specify both *-s* and *-p*. Default is deriving the scale factor to fit a given poster size. pdftools.pdfposter-0.7.post1/docs/_examples2.txt0000644000175000017500000000107213316677212023216 0ustar hartmuthartmut00000000000000Examples for automatic scaling ------------------------------------ * For printing 2 *portrait* A4 pages high (approx. 58cm) and let pdfposter determine how many portrait pages wide, specify a large number of *vertical* pages. eg: :pdfposter -p999x2a4 testpage-wide.pdf out.pdf: * For printing 2 *landscape* A4 pages high (approx. 20cm) and let pdfposter determine how many landscape pages wide, specify a large number of *horizontal* pages. eg: :pdfposter -p2x999a4 testpage-wide.pdf out.pdf: .. Emacs config: Local Variables: mode: rst End: pdftools.pdfposter-0.7.post1/docs/_examples1.txt0000644000175000017500000000253413316677212023221 0ustar hartmuthartmut00000000000000 :pdfposter -mA3 -pA0 a4.pdf out.pdf: Prints an A4 input file on 8 A3 pages, forming an A0 poster. :pdfposter -p3x3Let a4.pdf out.pdf: Prints an inputfile on a poster of 3x3 Letter pages. .. not yet implemented: margins :pdfposter -mA0 -w2x2i input.pdf out.pdf: Enlarges an inputfile to print on a large-media A0 capable device, maintaining 2 inch margins: :pdfposter -mA0 input.pdf out.pdf: Enlarges an inputfile to print on a large-media A0 capable device. :pdfposter -s4 input.pdf out.pdf: Enlarge an inputfile exactly 4 times, print on the default A4 media, and let ``pdfposter`` determine the number of pages required. .. not yet implemented :pdfposter -mLegal -p1x1m -w10% -C5 input.pdf out.pdf: Scale a postscript image to a poster of about 1 square meter, printing on 'Legal' media, maintaining a 10% of 'Legal' size as white margin around the poster. Print cutmark lines and grid labels, but don't print cut mark arrow heads. :pdfposter -m10x10cm -pa0 a4.pdf out.pdf: Just to show how efficient ``pdfposter`` is: This will create a file containing 192 pages, but only 15 times as big as the single page. With a4.pdf being a quite empty page, this ratio should be even better for filled pages. .. Emacs config: Local Variables: mode: rst End: pdftools.pdfposter-0.7.post1/docs/_description.txt0000644000175000017500000000213313316677212023640 0ustar hartmuthartmut00000000000000 ``pdfposter`` can be used to create a large poster by building it from multiple pages and/or printing it on large media. It expects as input a PDF file, normally printing on a single page. The output is again a PDF file, maybe containing multiple pages together building the poster. The input page will be scaled to obtain the desired size. .. comment The output pages bear cutmarks and have slightly overlapping images for easier assembling. The program uses a simple but efficient method which is possible with PDF: All new pages share the same data stream of the scaled page. Thus resulting file grows moderately. To control its operation, you need to specify either the size of the desired poster or a scale factor for the image: - Given the poster size, it calculates the required number of sheets to print on, and from that a scale factor to fill these sheets optimally with the input image. - Given a scale factor, it derives the required number of pages from the input image size, and positions the scaled image centered on this area. .. Emacs config: Local Variables: mode: rst End: pdftools.pdfposter-0.7.post1/docs/_common_definitions.txt0000644000175000017500000000004513316677212025200 0ustar hartmuthartmut00000000000000.. |pdfposter| replace:: `pdfposter` pdftools.pdfposter-0.7.post1/docs/_box-definitions.txt0000644000175000017500000000303213316677212024415 0ustar hartmuthartmut00000000000000 Box Definition ----------------- The *BOX* mentioned above is a specification of horizontal and vertical size. The syntax is as follows (with multiplier being specified optionally): *box* = [ *multiplier* ] *unit* *multiplier* = *number* "x" *number* *unit* = *medianame* or *distancename* .. Only in combination with the *-i* option, the program also understands the offset specification in the *BOX*. = +, [] and offset Many international media names are recognised by the program, in upper and lower case, and can be shortened to their first few characters, as long as unique. For instance 'A0', 'Let'. Distance names are like 'cm', 'inch', 'ft'. Medias are typically not quadratic but rectangular, which means width and height differ. Thus using media names is a bit tricky: :10x20cm: obvious: 10 cm x 20 cm (portrait) :20x10cm: same as 10x20cm, since all boxes are rotated to portrait format Now when using media names it gets tricky: :1x1a4: same as approx. 21x29cm (21 cm x 29 cm, portrait) :1x2a4: same as approx. 21x58cm (21 cm x 58 cm, portrait) This are two a4 pages put together at the *small* side: One portrait page wide and two portrait pages high. :2x1a4: same as approx. 42x29cm, which is rotated to portrait and is (approx.) the same as 29x42cm (29 cm x 42 cm) This are two a4 pages put together at the *long* side: Two portrait pages wide and one portrait page high. .. Emacs config: Local Variables: mode: rst End: pdftools.pdfposter-0.7.post1/docs/Usage.rst0000644000175000017500000000022413316677212022212 0ustar hartmuthartmut00000000000000============== Usage ============== .. include:: _description.txt Options ======== .. include:: _options.txt .. include:: _box-definitions.txt pdftools.pdfposter-0.7.post1/docs/Makefile0000644000175000017500000000114313316677212022055 0ustar hartmuthartmut00000000000000# Minimal makefile for Sphinx documentation # # You can set these variables from the command line. SPHINXOPTS = SPHINXBUILD = python3 -msphinx SPHINXPROJ = pdfposter SOURCEDIR = . BUILDDIR = _build # Put it first so that "make" without argument is like "make help". help: @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) .PHONY: help Makefile # Catch-all target: route all unknown targets to Sphinx using the new # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). %: Makefile @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) pdftools.pdfposter-0.7.post1/docs/Installation.rst0000644000175000017500000000567713316677212023630 0ustar hartmuthartmut00000000000000 Download & Installation ========================= Instructions for Windows Users ----------------------------------- 1. |pdfposter| requires Python. If you don't have Python installed already, download and install Python 3.6 from https://python.org/download/3.6/ During installation, make sure to check "Include into PATH". 2. If you already have Python installed, please check that your Python directory (normally :file:`C:\\Python36` for python 3.6) and the Python Scripts directory (normally :file:`C:\\Python36\\Scripts`) are in the system path. If not, just add them in :menuselection:`My Computer --> Properties --> Advanced --> Environment Variables` to the :envvar:`Path` system variable. 3. Install |pdfposter| by running :: pip install pdftools.pdfposter Then run the console command ``pdfposter --help`` to get detailed help. If the command ``pip`` is unknown to you system, please refer to the `pip homepage `_ for help. Instructions for GNU/Linux and other Operating Systems -------------------------------------------------------- Most current GNU/Linux distributions provide packages for |pdfposter|. Simply search your distribution's software catalog. Also many vendors provide Python, and some even provide |pdfposter|. Please check your vendor's software repository. If your distribution or vendor does not provide a current version of |pdfposter| please read on. If your vendor does not provide :command:`python` please download Python 3.6 from https://www.python.org/download/ and follow the installation instructions there. If you distribution or vendor missed providing :command:`pip`, alongside :command:`python`, please check your vendor's or distribution's software repository for a package called `pip` or `python-pip`. If this is not provided, please refer to the `pip homepage `_ for help. Optionally you might want to install `PyPDF2` - which is a requirement for |pdfposter| - provided by your distribution or vendor so at least this package will be maintained by your distribution. Check for a package named ``python-pypdf2`` or that like. Then continue with :ref:`installing pdfposter` below. .. _installing pdfposter: Installing |pdfposter| using :command:`pip` --------------------------------------------- After installing `Python` (and optionally `PyPDF2`), just run:: sudo pip install pdftools.pdfposter to install |pdfposter| for all users. For installing |pdfposter| for yourself only, run:: pip install --user pdftools.pdfposter If your system does not have network access - download |pdfposter| from https://pypi.org/project/pdftools.pdfposter/, - downlaod `PyPDF2` from https://pypi.org/project/PyPDF2/, and - run :: sudo pip install pdftools.pdfposter-*.tar.gz PyPDF2-*.tar.gz respective :: pip install --user pdftools.pdfposter-*.tar.gz PyPDF2-*.tar.gz .. include:: _common_definitions.txt pdftools.pdfposter-0.7.post1/docs/Frequently Asked Questions.rst0000644000175000017500000000267013316677212026276 0ustar hartmuthartmut00000000000000Frequently Asked Questions =============================== * *How can I suppress these superfluous empty pages?* *Short Answer:* Specify the desired output size using the same page-name as the medium-size:: pdfposter -mA5 -p2xA5 in.pdf out.pdf *Long Answer*: If you are running:: pdfposter -mA5 -pA4 in.pdf out.pdf you most probably expect the result to be 2 A5-pages large, but you will get *three* pages, where the third seams to be empty. (If you have a full-colored background, you will find a small line on the third page.) And this is what went wrong: In the command above, you *say*: "The output should be A4 sized", while you *mean*: "The output should fit on two A5 pages". Basically you are right, if you say "hey, this ought to be the same!". It is a scaling or rounding issue caused by ISO page sizes not scaling exactly (even as they should, see `ISO 216 `_). For example since A4 is 297 mm high, A5 should be 148.5 mm wide, but is only 148 mm wide. So the solution is to specify on the command-line what you want: "should fit on two A5 pages":: pdfposter -mA5 -p2xA5 in.pdf out.pdf * Are there other Python tools for manipulating PDF? Yes, there are: * `pdfnup `_ * `pdfsplit `_ * `pdfgrid `_ .. include:: _common_definitions.txt pdftools.pdfposter-0.7.post1/docs/Examples.rst0000644000175000017500000000425313316677212022732 0ustar hartmuthartmut00000000000000Examples =============================== These are some examples showing how to get a poster as you want. .. include:: _examples1.txt .. include:: _examples2.txt For these examples we use two input pages: .. figure:: _images/testpage-tall.preview.png :align: center :alt: .. :scale: 33% :figwidth: 45% The *tall* example input page (5.0 cm x 27.9 cm) .. figure:: _images/testpage-wide.preview.png :align: center :alt: .. :scale: 33% :figwidth: 45% The *wide* example input page (27.9 cm x 5.0 cm). These are intentionally uncommon formats so the effects of running |pdfposter| will be more demonstrative. Working With Portrait Images ------------------------------------- Portrait images are higher than wide. .. image:: _images/poster-tall-2x1a4.png :scale: 50% :align: right :alt: Tall test-page as poster: Two portrait pages wide and one portrait page high. Example 1:: pdfposter -p 2x1a4 testpage-tall.pdf out.pdf This are two a4 pages put together at the *long* side: Two portrait pages wide and one portrait page high. .. image:: _images/poster-tall-1x2a4.png :scale: 50% :align: right :alt: Tall test-page as poster: One portrait page wide and two portrait pages high. Example 2:: pdfposter -p 1x2a4 testpage-tall.pdf out.pdf This are two a4 pages put together at the *small* side: One portrait page wide and two portrait pages high. Working With Landscape Images ------------------------------------ Landscape images are wider than height. .. image:: _images/poster-wide-2x1a4.png :scale: 50% :align: right :alt: Wide test-page as poster: Two portrait pages wide and one portrait page high. Example 1:: pdfposter -p 2x1a4 testpage-wide.pdf out.pdf This are two a4 pages put together at the long side: Two portrait pages wide and one portrait page high. .. image:: _images/poster-wide-1x2a4.png :scale: 50% :align: right :alt: Wide test-page as poster: One portrait page wide and two portrait pages high. Example 2:: pdfposter -p 1x2a4 testpage-wide.pdf out.pdf This are two a4 pages put together at the small side: One portrait page wide and two portrait pages high. .. include:: _common_definitions.txt pdftools.pdfposter-0.7.post1/docs/Donate.rst0000644000175000017500000000356213316677212022370 0ustar hartmuthartmut00000000000000Donations ============== .. container:: admonition topic **If you like pdfposter, please consider supporting me in some way.** .. container:: box1 .. centered:: Bank transfers While PayPal_ donations are still very much appreciated PayPal takes a large cut and has rather questionable business practices. If you have the ability to make SEPA bank transfers at a low cost (for example if you live within the EU) please contact `Hartmut `_ to ask for his bank details. .. container:: box2 I trust in the power of free and open source software and thus made the entire source code publicly available for every one to use. However, it takes a lot of time to develop the software and manage the community. And I still need to make my living. So, if you like the software, please consider donating, especially if your organization benefits from this project. Thank you! .. figure:: _images/bitcoin-pdfposter.png :align: right :alt: QR-Code for Bitcoin address Bitcoin address * **Bitcoin:** `13qryeeJR5Hc7vR5AmQMWDuLzDEgSDNJi2 `_ * **Bank-Transfer (prefered):** If you have the ability to make SEPA bank transfers at a low cost please `contact me `_ and I'll send you the account details. If you want a bill, please state so and also leave your name and address. * **PayPal:** |PayPalDonate|_ - if you want a bill, please state so and leave your name, address and email-address. * Please `contact me `_ to arrange some other kind of project grant, e.g. consulting or support. .. |PayPalDonate| replace:: Donate .. _PayPalDonate: PayPal_ .. _PayPal: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=M6LW5EZANT9ZA .. include:: _common_definitions.txt pdftools.pdfposter-0.7.post1/docs/Development.rst0000644000175000017500000000134013316677212023430 0ustar hartmuthartmut00000000000000Development =============================== The source of |pdfposter| and its siblings is maintained at `GitLab `_. Patches and pull-requests are hearty welcome. * Please submit bugs and enhancements to the `Issue Tracker `_. * You may browse the code at the `Repository Browser `_. Or you may check out the current version by running :: git clone https://gitlab.com/pdftools/pdfposter.git *Historical Note:* |pdfposter| was hosted at origo.ethz.ch, which closed in May 2012. Then |pdfposter| was hosted on gitorious.org, which was closed in May 2015 and merged into gitlab. .. include:: _common_definitions.txt pdftools.pdfposter-0.7.post1/docs/_static/0000755000175000017500000000000013316677212022044 5ustar hartmuthartmut00000000000000pdftools.pdfposter-0.7.post1/docs/_static/custom.css0000644000175000017500000000220213316677212024064 0ustar hartmuthartmut00000000000000div#examples.section table.docutils.field-list .field-body { padding-top: 0.25em; padding-bottom: 1em; padding-left: 2em; } div#examples.section #id1.figure { float: left } div#examples.section #id2.figure { float: right } div#examples.section #id2.figure img { padding: 66pt 0; } div#examples.section #id2.figure + * { clear: left } div.sphinxsidebar li.toctree-l1 ~ li.toctree-l1 { border-top: dotted thin #AAA; margin-top: 0.3em; padding-top: 0.3em; } div.sphinxsidebar a { text-decortation: none; border-bottom: none; } /* make refs, which are links, visible as being links */ a.reference.internal code span.pre { border-bottom: dotted 1px #004B6B; /* same as for "a.reference" */ } div#donations.section > .box1 { width: 50%; border: solid thin lightseagreen; border-radius: 1em; float: right; margin-left: 0.5em; padding-left: 0.5em; } div#donations.section > .box1 > .centered { color: seagreen; } div#donations.section > .box2 + * { clear: both; } div#donations.section >ul li { margin-bottom: 0.5em } div#donations.section .figure.align-center { float: left; padding: 0 3em; } pdftools.pdfposter-0.7.post1/docs/_images/0000755000175000017500000000000013316677212022022 5ustar hartmuthartmut00000000000000pdftools.pdfposter-0.7.post1/docs/_images/testpage-wide.preview.png0000644000175000017500000007253213316677212026763 0ustar hartmuthartmut00000000000000PNG  IHDRl IDATxwxUU?M$n;*bÂE2b_PGgFQ MBz!޻{o}.'OeZ{ާ""" ~H "i SnɔhS?Sx*Je_ [l?_+5gfdTqc8%"◊'5UMd[ztZM|"q2nFŧG##h\ܔ^ey*7׫}Xu]<_ > !P_Uf"-fGd̊t1],Mp)6]D.a3=X`*'x)p,6_S=QPƫ|wJ.PQeT?yLRTx::Y*"NV/KUdUdu˄oS~J(~n+؇Q5~&vT:nN)V'}וS2܌n.~#z Qvۋuykɜun;^cp)& *S`PY֟8!#2VjQWyJ59M/?UF-E<+ߎc\#QVE#$3)GR e'G15b=-nœlP)bN7]̡挪:Y'Dɣeۋ8dzȒAb̤U n_S[ d_WnLH5Wt j|Lb?Gӵ˽&<&[ oܴѕpLej's~j%TXGs1DV$Yk@.[TSD%b*Y.UW*/~%ToQAԢ 3姪yajg7&2_x]õ I{3-%gx˰׉b*F♛"R1IxMRd릤XD%2>v^Lu5|0 ʌ`yqHX6Ű|j%1,R"f*Ѥ0SJtGUAtӝL/Y/CRY)یP)>H֕E$l2̔([PW$}">!Qd:L&YKte>bYe?YIN^^/\tckɚlL N8x!jp۟(?#&%:]cpʔ-ƪ@e#O8-Kl)y*Ty*YnڪH.*C5` ݋]Lp2b"5bjW~"n 4Ձ"&cncJO,?XTgո-ax[Wsu>`EA.U:nc8e:z--Jم]td\ ?5 R<4+AW^pJJe^^j4U4pmayq+j^e#},>j7B}]5f&/ ~%"?jE+w%^ŗ-[܎WFK&W2MP*nؗ ئIv'O&(^nTᠰNL)_7ؤ߈Ĕ\pӦ"dW4=κE-ot5T,Z1U׆]_~::Nӑj]1iVN'6Mf?61a?@j|U({['q(T xTـ˒K*8R^A9j(2^*@GU& Z2Gl'WE)sFnPTG5&,R ^Oj,lEPSd"׉#b( ȖN6*}UzQTuPɩYxSLcU|V%22*~2|}E|ZO'CWn.Yʷee3ťìcu5KLɄ_# Ԣ&xȢ $֫IO665l*-pHkZ涍2Tvp^eUD&zx,WŖ^§jF׍?"7qG˴Ύ^HExw#߭Or y[WfK bcR*Y|y:Yjb>z2&RxoTdQr݌Ndd&(+_ &Re e2tAJW&C2}Y7))v:ᓵw#U0Z<ıWd:Qu1B6x]d2GT<&yb.Y/%R.~:?u1S=dDM!dJ'i 4*edI LTjbLPC$E6*Qv2LDQ;yBPN7i2>x$\ق*xRu8D٢ %*ȋdclj! ')FW-ޢ)T/LK6u/,nP2T6W#[,ee:RuqPIEuK#-dɭn,e2g 3؞l*C5.w?b V"V (fCvœ9,pS&8ˌ%*PF9nqQ L_J[v;2&L>Tcmb+lAV6(_濪vvٍL__ H:۪WHi;2&⌮ݕ&7w(*ɫ}j j~ONN"(_X)ӛjgXb;OV.&ڏ/髒C@V& 2:2LXTv*㦲 Ň5CjD3YN+CD_),<_L}X;Kt~@asӎW ukL22(2Ytkwdry{ΪyFWۇ-f)?| G7~EXKEHtV^_:xgYɰdRƓMU|eBg^,md WP8T})>T?tXn#nn:d㯛|;J۹iƢl|0djcfR}pu7urE&TTv5"@2.i\U bw&:3rk8,J棏>mAA9͚5È#l^7j|]@82El5""CFмys>AAvލ}9jkE6vXl]vU#rsm>V̒͉I7ʰ膯ivWrAEW 粑׶^#Ꮏp1WD,a09붝iٕí.v-=+Ɋ"##qI 5}ΘDUɀXoBw^~D^&jo` /~l>րS*22d~ >J_%OCSVO,0_Y;n^Sb[lYׄ?K/]%C_&qǢӗ&Af3/x&2ݕZtqOύ]TXכ0d1LWf27k^5f$Q4>}8d, 1hɂH8REɩ[T.2b%.J#UՉLtۑ+sV-*p0/_㥂Ntʒ~>**(P~.b+ɼ2*}-R-h2!C*j4IM$Yf}髲ŇOWgG/3L !LQXusIh鋠e.*mt)2,v^H;V2trTQs8Qv~Pm'Ad;Y6j i)疕$*iqRTXD>,j,_zCtrcO]tm)]:}MMptP(P:ʰ0Rm2TDƗ;tX62lL%#՟¬D&&$&&c%3Ťkɞ)擛blfR%tsgZG/iWK I࢈g-_M 09e*u4IBK#jђ, 2ݍ.U(!KD;|NQHdzɒ]y9fgL_/r^&~$䙌N_^nƗJUz:|:]\uK%d^eXcT6OjW$~xtƃӍd0QGɏ⃞pY<$*\ G*I0u L:S[m1 "ON*ύe LG]_U"y0z%쳌]L]+-T;&dLڨnLdub?җJdRy"t(-ϊXTIf#72ZA1L2MLp$tMm\&2L.k_F%&XTm$2?Q `FAjxMxpLӝ"\TQ,&re 41J[b_ 4X0yig2?$ƭ2.T!tG8u^g:Lez7˚lzILmbt}tun8 :Y}Ell jrjS9*Pxūr~Ù0#pP3=е. bc\7+Y񺱑ُ:9e-.2?=ZU%+My÷Sʍ $FyYd2mgUq"~L(Ӥ$m`v,Ɠש$ VU7LbTn#`[47n1U&VY0 |L /] T AI5q¯+hSK'~lPqQ}jc|0S(~%L&_|}D7nQzP|d3Te"_nM@TzJ*[}UIKNH5FV=IķS!/dDb˒z#,npQxe:(Ry(/J*ꢨ@uR}וT(wށGӦM+Wa5 d*/^ tz]pGŎ;}v=zϟG ԭ[իWG=ТE ԯ_III҅Z8(G`A={Xv-6n܈gիiӦի:ԭ[Z,*Q92FƇ.'gƶmB}\g$F'K6xyyy8y$2Pzz:2)a}L O ++ w?,$ddde˖ܹ35j?(EԸPqqE+WFÆ :j-rT~q?~?pIj׮իW^DF`_xN%0b?T,*(('sNYŋժUCݺuѽ{wdff"##6 g͕!_7k~YYf͚eM:M41hK5TܹsxbF %$$QFQ^=ԬYv_POM$@1ax*%-Ԁfeeaؼy3r'(V7 E=._KbXjN>Me>7M7݄{:t@\\ƢT;> (V, YJKKW_aܹؼy3Ξ=KtR|hѢz쉇~^{-$ƅIE fL2&M஻S:ʒbu0yb.3>((<I j*̟?/ƹs322p7Dv FUhBL>?sԵkW|')B%I_|.\ 6 77!ӊ| 6lACff&U'5\WoϞ=Ol2ٳ~ GϞ=1|ptQ@%Y̓AcB999xwqqG]k90G:XC;wļyJy^z[oE ȓ;ynB8 gT ?~<[v- d 䰑#GX`-Z`$SJαcس>jժl4hN  ;{,7nYk:u.\\seUVVҥC'*׫OϜ9ŹA߫~U׃˗/qƱڵk3gCTTkܸ1?y1󔛛 Pac#馛\`9s 6UZ(֦M_R/k:*--e=СvW&MԩSŋrñWl*;w\^ZbtLj;v`z֮][!z9 kײ+uì:&>R&s]hM<1VpY8IYDDi|>KJJb5kdFrʤ|>6|pKutcaַo_r2EEETYJJ ٮz>`Rz-iBҔ1;3;v E[kUTas ň5vW*RSSٳYII71tk?9bĽ&~|;F\VQAA>cꫮop$d}eu.bK._w}{⦛nBQfM|>ԩSXf V^3g΄A̝;3f x!Y\qOz X.s5("" 6.&jӧOe]vݻ7Zn@vv6֬Y~ N /(( [o&SfSRlNѓ1 W^q\|ڵ+u֭[#..eee8}4-[k…  z QTD˦>*ڲe ~7[Y:upI@~~>.]n Z[R׭Q/999())q_p:Z ݦX'UEQטee`2… ={6̙C窶D(￷ᮻ“O> "{XnL_~%T^TTO?:uB߾}mI#,?,** C Qмy=:}۷/&O[srr0}t\s5Sta2ಱV-̲2;o9s&(l&e:S `V0`DGG+Ȩ[nJ۔D^֢9|x }Zy(-[6mWT;,H!g.\?ҥK_~{[?`ݺu,))ɆsܸqzFd>ilRRR /%_V^WR%_5FKeee+,,drM6irٰuՆ)**=,;;[ٷ-_ծ]?666tJ^ꔕ'xq9jժW_eyyyJ,eeelϞ=nݺ7f+W*qۿc2220sLԨQV~z8q†OT&v>^;wk /NMd|>ڶmѣG?!j*;wN{I ϋm˘5kVZ*39=u[<9rvb͛#>>QQQQeuYUG&'/T.5k%&&?FJ*)FFF}xGl/_… l.iSq&mܸӦM=}ZvmL2m۶:9sGf_5i#GY޽{g`Ŋ&2Slٲ˗/hGȑ#QJH\wu6mZU0pA̟??-j (6??֭ {̢~effo߾X"o`YXX[:^#rm!##C)7`TVV!|8nf]$.jBōܹ34o-["33SY۬PKᒵQ'ׯBdȑwҚPѧO[C6*|WcŊW_}]6tbgggcٲe {8NGn4i:.3f[n|l%%%'D6m %~Q~wnFݻkLIIIС>&!]ƅJsrrQQQ{]\r(a(??_$W'E|;$щ'0e=z@ǟg\T'|?]BoÇm322&TLfkij` XdIܢ~͛7WBQF ЪU+$%%!555j@YYY|.@blθ=e!??./_n{[n7n*Ud/b;k;)DFB/WTZ\s~޽(((0Jdu򔗗M69=}GQvm_ժU1`[x9CvO&Iyї ./j C||)Su111h׮F;bذaJު.w'i}MpQ5kDRRŶ.ߒ)MƎo[oEFF?sΡJ*' ,G<41qQMfl EEE1c6ljߪU+,233zjiq $رc˂QQQWUI 5aTIRٳgC'uq/KTrۣ}6=dsdr)?% -egg_r#GM6FI,qbr?^aÆ-h2W٢g0T}2u hܸ1yOUTT+2Y$?,;;Jӧ\z,(~&֔a̙ގ;C||cxI*Xڵ gΜq\.:~8va+k֬*U:KQYY5PjBLLvcbb8z(233܎ Uoj 68^{r5נSNc(..P>ׯǾ}ЦMc,*TJ.t|w;n:(>U`PPuժUC۶mOO>v ^&[EFFRJY;O999XfY x Yj'l|M߶ZOd6h^UÑ-"n;Pj۵k/5,:-ᖉ/k\rIƙ3gp9YuQ/V 4uHxč7r(LLL|>x:&&zb58'kƜ|e|7o͏jԨoRl1%&: l⒞ѣGnݺFciPTeKV?l㟜&Mܹse=zgΜɮR 222aÆSN_i0sG_YYY(I(--T9c .\˱m6:t.\@QQWTj ;vDΝ=/]XӶ~={č7HT5v&:m0x` 2kհaCx㍤1?tP1p@ MH^yyIB ~w\U2 7c m+WF~}#""p}@ߏСCCªâ-N0ƍg6')))ǥ5/n3/%C+{߹sg4jԈ'4Idu2C @vv6x ̟?dTdd$Ν;+OKEÞ={k1`ǯ)S8ӥK*^âEpqǥ sNܹ+WD>}0ydddd%/y_N@orrr R|7xwK.?W_zׯFk6wL|\V*77muV,XDjj*FZxL[}MSm|A_/a޽{7~a+ׯmqoC 19;wk<665kִ[x*XOa/^'?VSa&Y mۆ}{ƍ};uLۛ#n݊[[n!$-&6([ ǢEꫯbϞ=6>{}Te%N&e.^DLd}LìRVVsbܹD<HII!w^_vJC׺DwaAdeeaڵELIIa/~%.K~eggcԨQĩ{x饗B'`&$&./zYIO۶m]6SNO?ŦMmڴ!o1}t|嗶wQTXXcǎҥK1e¬"vj|UIUWRR7x$tdd$֭[k7&ϲ(U!99}ѣG1dԯ_Z ł"^7"""PfM3=R>ov.|Y\\jԨaK7dggf͚RbE'OٳgX&z$ q l&gϞؽ{w(ѻwoDEEsD_eg):~8~D*((?͛7cڵ6*UߏӧW}1ZSZ5? ,(蘨.d:aD\+&l0Ć ov>}7r.Yb&5I6v?=g̜9Sٿm۶1b.xC6߷]6QƍNGAJnÇ;Nx|Wjժ˗/(SO=7xݺu#&S}:x[`Б&{JO4eta3/t%o";*ڭYqkHÆ q뭷6)T\qL}l^@FoC?}>v\~68b#)azƏ֮]ֽ{w<77F:T4N8ufKNNf~gb{uwc˜֮];~/::ݛ/{K ӧO EFF!C3gHX¡ĉYE'|qƱsinٲ1߬/[E͕VV-OEDDƍ><?ΞyVZ5G֭[;wa1)ܹʗA6ocǎU lذaliv=֮]ƏM(ҿ &]8ś:zuTXMp2f@7oSO=kcaȐ!Xϔ;^g]zc=_ċ/CiӦ"ʰb <QZZj<.V̶"f_nn.LbFHG"|r%.GDGGcԨQxPzu-mbΜ9h۶Cx '^~x(-?O&o-`nݺ>}:&MxUӮ]0|?%O5|;XƏ% (kٲeS=zTddq-[oḯM6xN IDAT/믿qơi& 6 gUgAmf3֯_ѣGcC!(--b$h4l0@g-[8k'x";1ߏm۶9N=~nd]i*,,MVL/VD>d2?x"_-FvL+v%..}uUdjÎ;s9^駟&/{'wT;N8Q|x9%&&bԩZ*Bm򐕕>]Nؽ{7^z%k׮TM5>VE|?Ms=_ 2,d"ӱF[XXQll,zzE͚5C׮]mZ\t K,BVq_qmIE*((@VVqFڣGVRR2`?`&O+;رikF#VZZzEtr ؔB'̕*cKD<2%pSݞVt7|_~v(>/*Wfxv`ɥƑ>}`ĉ4i|ŊX~= COY1b+aoݺ5Fxc*ۘQ'q>|>v SRRУG|71;s ;&MH+2}Mu~(?{衇?'kܸ1:v_~v9F߾}},RPvNE)e:^z([Cbl|M5Tu[nҥKmOgᥗ^]wݥ|&c >;v,?y… 1cz5ަxD}m~ӦM1k,XjM`0(}7 P~{ψ#3`ӦM:g)7s uZE2"***S@)'|֭[HW峍7_Wt ?8Crss1sL 6$0;J܀3XPNEژӑ,Sa1Y;̘1|$5 O=T-٢iirJl!3уj'.4T߻+W_m+mT2Dldi}m&RRRqv0#:tx)Sa4i)))8~84iLdUt 7=,KHH@֭Qrem ۷o'm`Lʽģm۶9~׹iӦh߾}hAdPz|M_ZZM69ڵ+DGGœaÆaÆ ߸q#v܉mJJĬM:#χn.x |Fq{xTZՑFFF"55U'"Xj#{g$SGK,ɓm2MZlU$UDGGc7ny݋?}UsFw`-tPCHDCS1T?JI>ޖ*,6."^oDDDChڴdM_S;cݺu9獵R]tA׮]qر qFmVR뗪NpFFFkYCaܹXf .^J#"_ ]n]w}4hodd'-e%&oXz51G'O_aÆ9x2$"NU.,YvJW_9@_ګCLmeb( :x˜TEbUcWo3e)v؁iӦaѢE`ުU+;{곪,7$&2gmڴ)l ˗q{(5Zںu+~a-T_;N67o(qM2 /ŋ,kK5S5uGFF"==Q),tGb[RR|$''K㗮\7ŋrJ[]RRtDiTmMI!1%%%"LMME-|t5c ܹ3.\z0^,\q6*T؎癘nݺk׮(,,Ğ={BOĠ^zh֬Yhk 8r-QFӦMt|LǕB,\z+RRR.:R$WV ]vuܦ믿,t-'&ì)Mlc&qʈ !LjPUMV}ᩧ?x[n:u-e]E$⸚ࢂSRR`b{][%(l,.0x7"##C}*c ю{###C'&={HMM T_,y2/i_IOOGll0VVv`0Fd|ek[ZzUT ڵIgرcur6_p EXuDdff/:6cD_~͛?L]LHggcAժUu~'Npǭ_rXl..:mpQDMDH'ccϞ=xGe.111۷/f͚ڵk;~_lEg(**BAAJKKqq>|ڵ]9"_\E] E.Ud\fEEE/_c*êKBBj׮F]LL 233uYYS2N<ุ-fnܭ@yuVo^wuMON`A^ `BB"##=oM9b{(j L ݷ~oy9s&@)8qr͗b t^N(4ZGQ*U61?Z@+ll(R\E&H9Ib%f<3ŪTx/RmLI bԩ8qD辯I&_$å̙3eFDD70eY)pE[YJB7Y-)Ζ~g=3gO ޽{I]Ň/ܞ>“CFFj֬ӧOʷnJbQe1b/cǎEb(ۛ&{2EZlW={dXT\9p+R!##111J"?ߏ۷lݻk{,Ӄ|(t-[ V)?jժԩ`0EGAfH}t0N*XC0/ѢHԭ[W_qҾjo;<ݭdźIB-|ٮ]0i$`ԨQ9r$Wn[U +_< yL.mڴ Ŷ6(19s+W1KCjPAҭ[7̚5˱]va„ bLI.ȑ#X~͛c.y̛@ ={8^ҢE Ǎn?tQ]64ibK>S~ڵᇭZ2gRg&e/^ıcz(SQ8iS>b]TTӧq94j ӧOP$UV/ P\\\k잗7ڒD'MOD\b_;v٤$|Ͷ+69Mfذa{8;@mTR/8ӵy/bar1ft%:)Yrk#Nʧ!U:`adL4 #F.~&C&M ==ݶ]YYY -|]֑PtЁ1П:i<իuj}M6"""KM4IhDЩS'6K,E P~?8NIv-ZH5 {1>?x$QAQjD|:ur1gΜЋUڇyLj#}tTh^@7ovիW6"Fj3>>]vE6mlrrrԩSF8Θ1p7LHeH͚5sرcCP5;fϞK0w 7xc$t uS@*9<_a㡣8tXii)ϟOޒuwӧ+Vѣi>}yFٴ,/uڔ*ӝ|Ҫ!Cls;`ܹ?~˾yݻwԩS1q[ϙ3G P~}A;wYYYG,>Gy|hwztvn >(mۆ/Ҷśos~S q)߿?t/O 4ԩSA5^&vÑٳg=zFB Pvm8qIvu6cƌA=:a׍[5558)nS\\^x?~?ܹs8q"}Ԯ]5˗;z'q#**Dm,P}0yd?~ŋ]WaJ|>v׳O?ԑ+=e'{dĮ"ڳCOpC"jGP|5=Tv?/_{FGFFz;b„ ڻ8.~fN&IC(U4u&hJэ("q!*. "`+t!vQ4.)7g{D@I;{43Mϣ;)$PJmxC0rO~)?~8MNNC=Do6-//өSF9:{,}ti8u]ZXX^xΟ?Oo7`5yĆv?*4VFvt!ܹsD~gK_ӛods0[gLd{9sW^w43DIDATyu4t}UV{5|No} }z͜|7xc);wNQc}K>-,,ٳg>\\GkuaO… ҥKhee_N'MLL<ݻ8@DOZkKk VS|y-Ǐ7y{2NCgΜGŋ?ӕ+WU^G tAz'ĉwEߖҰ[r:hO3K {m믿>)"1c^_\\{o[:o|%MaSڿ?>|ZyE@GN$!}w?)я bFK<ٛ7oA׮]uqu]i[z Yd6~F*{?OB7nܠMؠ^G4;;K~e! WIƷk׮&ݼywO/~wW5lxTsJ/_5ؠMt:hϞ=w^{irrrktޣtuuݻ ۷cCP~LMhk_Mŏ#k{>pqE㬾 -,W&vzO bI/,dqH(ՑƩlkwErqv t % _I$yɮѢivT]ƴX[5ϋ}+645$IsmX2333Oa-)=!ǻkC5+2Wr⧍Exv^"cJfv#65?H=68Rr,"-B .w`ZG)!1)"& O%cV!0*y29y`XJ*y$ͣ5Bb]vإDwxMxqÒ)ZM*Ƀ/%%K˃FG5S,&Vɧ; I6$D'd#}-!hkbhx"yG$!8Kd4}^~D ]TWnnq ViW"Vhv9ԮZg1w_d}K4y' @hNkoa4i1J!dWjƃj8$|?w/aF/(חL4 ܛ"pLyIO:'Jy=i91kcvf>.H!yK85ZX1_fx|KHjDF›ꓰJ{E{l~Ԟ L+oWmn:rZ™Z(ϽZ6t}}z=4}NK0 X6=[E7b[cyS[rH,IXj@֢F7%HMEm\ľG% MtFtW93 mJuR(rsX<%@w$^]ôCX6j!Os"T9'ma)~5䣂EQ5Zz|)?SZEی_Y1E%kC񗜃6%ƀ+nnmӥR9\ e-[1aAVFDAǴ8Z[9)rf_)ajJҾFWZ\+ _+IaA@`5רj|ww OeabdoL6-WV\Y-Y~s=Ri6y}4M `A WIWKvR5<"o@ X,>EJb4ܚF%9vrX^i|@kgB(ȜUxbͣ[M'k>7=)bǪ9fON7Xg9$$J_|O&1iLcӘ41oѭ[Lh m:q]rewiLcӘ41 G}L+wfIҷJ:L|dJ7"PPGQ>ԇZ"P[|,.?7w49¦qDr[HZKGᲒnڮY29\,ɳ!7_s׼f/c~v6]li BuuXSiaރZ~w:בRi}qIy,>.JVqkcOɊcçk6%is=/3U+RݹF;rvirR]+{"<eB N&^LTDƴ8irҜO}ͱaĠV\~ '׏ )g>/vEmJ帠u|iRR;ۦ-OnӎXҙ|EǴۄ'+ɚonVI?kLIO)$=|?bM=O%蚗Bذo-ǭ\tItt}KrlHsV6)Y5/ʑC^4r:|!hTmRkS-|sc)Q[6,ډ9-Nc'b6}=?aã3vՐ#W {s6v?<LX7Z@wi<5z,m.x|JƐ9,~)?'gc^ԯ浖K?~mӇ!':Lm^|5H1Z64n OYÀRYk}Fb/J9kZ3/x xxsEa yŋ_J=F(%z5:sZ(~$~DRه֬ȼߐw6E;k&<Mo&Z=r(Ң_Һ܉V}Ӭ^9 LwqA/5/09yM'?6m7qIŧȲ#$%9y@b)5QjmDs6%i4 bˣX<'Clh>'|X<\vj#) S_:WCG%gK'kyc%Z2%닜*R4E{.  z `Ix#Q}WCy71n{7 t#KBOCJAs#CV)9`tE/H\#/@c&ky)Œs־KsG.ͥsC܊\ѳFژ7mL9dK{@r[I-~!oL&,Xmjۆv6HR9]6b,o=m\"s5|߮RR,`-k-ZN欽7'O-9Ŋ>U幖sj],j<|bP$AS\ ޶i԰ZE7w,ȼěʠCoD`Y K ,9QL?TW͚^k'cisMG Kvv#T]1IGcuӚ7K6 Wm5C\vpp6MēڱH<&|Ku1CñH{b# K:/alh%>K޲!]z4]<6۰dG+$'O5֗7k%[Kz"ar6XZlܕdڹu %gMՕ?+Ro&aqJ8J[ðSh;|,x4A*Z1~`֔0 G KN-sdKJca@-Y#|tUEr;wкoɎ5.ɖnּ$FQ1=LszXPKlXr-]놞%|ѱtD%5’oZXP}%0DuchE]L4 \FoEO)rt94?& Um[nd. d7>ы6&Q[+Z:Ⱦ[sL n-%,Kφ=GUQY_ɅjTY-`~0# =Berto'ƈ4nڦ5ri9oh!VZJ 0h-(q5*VMl^.`uXJ [spy"` R<}ЍocjFiG Nh . G\aNͿ%MWM׍P = K> qh ۳d<}!oMEƤuI $L4OM,9|l.,%&4Q,9’cm#okv[e6rKXcP?ŲOna(;JXjPkX`?)<1IENDB`pdftools.pdfposter-0.7.post1/docs/_images/testpage-tall.preview.png0000644000175000017500000010332513316677212026762 0ustar hartmuthartmut00000000000000PNG  IHDRly IDATxܽwUU>@74 -I p1" 1 (̃ & 9g(&**IB+H M7 t}SUv]_랳CU+< d2 %IdddjzXiCW*)YMwns}.7L}bI}9K񫭭Mr|p|cxG2ґW%$_!5o$%*Å!7 А68Ѳ$>q$ܸ5HC踸>n(5e>+$ g$zH}K7K.[$˳"B fP5[ܶZ%r!U:YiЕi|dΜ,ϕnЎ+į#NH'\ZDh xX\39 'T8ڞzov&Z/!|L z5B'~Zۮ^a07DZW5o:c tW,T Q~7AS;Nt RuyQcI&}NUԗ}]L.P.-4*Z;\}iE]hi-B#ݍn\PJ\=^:#(׼gk'scxF>iaRm z3:W/-fXB:rXWc!(8J0Р+ˢVJ]0)޺X,hWZMn6n'b7AuGdiZMWo n{)JH|Y $ĥYYecdN4hgVfWa!~K.E b aРA6lXN28^ʳK/[ ]tA>}LFo&6o @G|2Yt\sL." xi˷dZB7oX8_K,A2%qq:J}"\^B 4$I &ڇ8^><Λ}bv˘CKqê/Jm%dtbQ$lE>Ң]JHڋ,N8.I|]Gy{o ۧi}]o$\Y\tG_\0ߤҐIi*I%نIy6Ere , *>izHY*gR9gM |2|m4}ܬیH[,Q:> HkUWẄ>ʸE(N[@[ YFquu5zuQ8ꨣp=sσBr.u0'KY``! ]kBg͚gy;wva&Rebݪhu|9`=L p&Y"ͫҥKqKY.$(Vaiڹ28L&rJ3}8Kh",<7.*:[i#lܸ7t> /dk"\ӡYO,N+%K?OTWWeE>q2YTa)mͳKm)_ʛ*|'[ߛ]ҁ&yn!eq@ydqfM)ڞ瞯_SL aOtA38}iN9Rʇ8HqsoP]UUf͚G}| CQSSZUwI<m1渔e EE-JCMM ,YzoCH$ЧO 8:֯_{,:YJ|\)I[uIDS9֭[1zh<(++ -VAALBNҥIqTgCG7Х) {A8[.c`5Byi.k_&t"sNy(Iʼnqb곝ϫҹeT<@DIqZڗq@7z#\.5AsLU 7586tEύҢ ]ep.q&|z.馑wriT^ܫ#^A-oY5R^҄+lXh6oޜj -[Dnо}o-HyGzuAŽb>NZHM^mm-v؁?'OƼysNTTT2վAAFpGc8QPP!['OsBtgdd3gرc1oii}MM ~m;6hԨw^zʿ[,]աZx1ƌ, 2$ߘ5g]B!CZ>o<|ܹ͑3.h׮]MM ~G}`ĉ馛о}fffG;qwC˖-C=Ď!e1(kZID3؟Zʥs'|*k׮nFx^4h#F+DƍCu},Y:@tRDym>{:$1q((*wŎ;RYYY6lBz墀4h;/]i(..ƌ3Beq/;YX@>{:4" T4lر_u6nFNN@֭qq!'''U^QQ hӗ;Ѷ/Tw7QX]j6mjרQ#~!]80`ظqcʃEyC\#僗7\*"-Z@QYYJ4mZbyIiٲeλvΝ;#W@1rj/W>̲mO?4֮]۷bKUVE6܍7N-oMzPgZҥ@0n]^^:wN: iB .DUUU][Gs "|駡K} FN?,n>r"j[,LFK P܁Pou|~PyAA>H˾I TWv qp.K9%IEx /PQXXNflqQ\5r 6 4WOGjCuuAs׮]`P͛k}aJ]B6uRBUyI[&S~%%%8q"&MVKF׿={?=GɥqaH@7j*ΝS\~;v>Gy$=g`省N: ÇGnn.+_#:&ZPZRoV:ev0$LG2}?pGVϞ=q7pQ=#ݭRО݇Qeg`4^%%%x'0vP}"@߾}/G\;g@_K>( HS[ܚ7)iqFL8O=TD#8&L@aa!'=&Z2BzYtBOq-DHzЉ-..ƭފɓ'c׮]!z<;,u-iMb{6ΒsӔ/=nP܀h"\s55kV}NNzW_}]v(7:^W58ҢԎ[WN<ׇkK»ヒ#Gb١|xѥKdcfLTO-MXKOSId@$yGq7i$r-X~}D^ѣGc7 _Zkʳ,VQhx'p]wE`>K/wq8=c9R$b?f9_,..w܁_|1X:u_s=W,T}MD¤u\|Ǚ;}DVt$Ƞ|Ϟ=7ny޽;ħsθq ' 77WDeo\OgJqIgq><ʊ222}vvmxQQQj><9ԝK'X9BOI'y2d(y$@/Ů]s^ -Vff&N>d<8C#]SRDm>f5,׭a[xW{[n 4ht%Օ3D `Hԇhy8p')`;֔q) 6kv >(Ņa!q`DeeT(Ҿp))LU9T߹sg7.ujڸʑ&ZɠRH&{^Y6Hܱxг\޽>,^}UQ7+35k::8h@ h(c%Ranl89t 6`ʔ),+ 4s5k-!Ai88Ґ\ޑ; X%z-[/e-qpbkt[ɧmex %q$/WI^Qz&V#K_k/׎\K\>/iep)Mp<|I2,f>ab\^YAZ)$w>SRgj_*Db\Tº6.-j- w8Z&N$ZM;qBeLw]P7yZEjEu.-,G8go$%qɳI?]Mɽٳ)AÆ #&K[9diy3ھq 0ˀ|udXj,X/?~U[F۶mѧOGqDMnF9)ˢH1_|YUm{nK2e ϟHԯڶmKBs$j8_iBχX՚ҡdr+aҤIعsOMM ֬Y^z | ."\{ip9Pⶍ|'$rKDfQ$m׿SN =d}M˖-`[.u{Amm-֭[(--m݆}GDi9+ZӋ}X8DS x{+33СCѳgO4j ;kX`A>,:v/ 4, Cmd6 ho99sL-_:~ydƍRɫ*vdEEE_eeerŊ??ۧOܹs#z=8qbglTV[[ YM i?*g?>4h+ǏG۶mS/ ߬,tO<㭷ž={"|a$$nn|F>ZSDH]ڂ\ʢu|MEޛ??|4n8 177]w]ӦM KT.6\՗ WξBV[a:@ZGdrd2wy' Mq=z2޽;z[dI-ʒ:}'B8۷oGQQQ''^z)_~% ^złV Їr&Y4qpCƍq '=˱}vٳ-ZPuuvb"v!DZ6~ x/~n)US.H ??bl޼˖- ֹsgtQ/8F)4 nҹPy$N8s=+Vʏ?x4iD&\ߢH7hL#)d4W?TYY'x/bSN8аaCNܘ8KyO"sHk[ ұ bx{qWb jx}j|s=攗coPQQM6aѢE9s&JKKC4ocƌ_MoK4 ." kv>eL0!r?,va1lذ΂4F 0$ ɢ瑇ҥ0ֹ}\TQvٳ[n ػ`DII jkkU čAҁnL9> (Ar.?/Y#_@g|'8s0tPL:5.-h9Oޖk OPܯ_?ݺuK-YgƂ B;w.*=]vY꟞d3,FHݚ/hW]u۽{7JKK1c |Xzu ڵgZ9 NnE.JE []O-VЮaÆhݺ5F_~} -++m݆+W|}@_[-bpPcyyyC:{o (s%͑[o2+t܅TC<R(oзoP(//ouye,sƌO+2$g:nT 6l۷/N:$X*\},ma[1Zl<3dp~qaveee0a(Zر3f/2}mݖ_ܢY@_[ |}\<ơ -č7ވsIRL0K,tڵCmm-mۆ+WO?o␜M⦛n1#NOg)sUWW_|~+++ W^y%ڴi!.W*[P"gX/K^m)7oޜ6lܹE-y@W$8>… ?O\'o?f׾G^AÕ$b[s41Me<@qM7y?&4N)j|ֱC WmSm mFWQQ'x'ON}nm۶x'ѪUXYJeƤ|)ѲV)q,/ēO>[ 6E]}ƖOyKriY]&sgʋ>ZqXn9cp饗B![$^z Y;AW&JlpaEVTUL&sNvmRm۷oڵ%YRQ:,ބÑ{iERBS7H¼<\}թPXBa-t)u# vqI[؟~ 'N ]8q}2&Ϛor XKZp>-q=`) 7ܐhN\r~8:smmK)^ \ZUWW㥗^¤IR5j9qIdpe>K_r^\hľ=8&j]Ry7|G}4zO<rKʨ Z݂㸀G()mf6,zju]~8ԫ-9&ܷeMZEdJPi)Z'G}-y⋑׋ h˖-WUWWcƍlfggo&VOGn$P2\n\g}6J+:ujGeee!T _8ܱcG\s5޽{Z{Hq>')w/s4%%%M%Z~}; qx/?x%.I\,k,:nn[ ďWS2(Ӭ(]xFEaT)Etq_{Dܹ . E(,,}J 2-hs0hJ$*B> o}k _.ǒZI~ֶz_Y: t_ԭdMZp̸rU%Vm*<.`,mZ(JorOT%y9xrz]XXy>ݑF8Is#n}4AںT BӦM-aUkj:,O)Z4~ )'@uقD48u0Osߗ[\ &D =x)pMڶʥ_m" =D. 2pN8%p9ǃ;H}NE/mq i{j0,kХد. K+j[Kjyt! >#dHfUkj kޚN|AA> }eV]8s 穜AJӃqIwMyj 4ZpueTV=J&ؾ}{̃>֫JzEB+dk׮ z衪BAˢDGH?8]p)++ Bܹ3oLӇs9faR#8V\ lذ!Tw ///mR@% zjU22KsӁje7n 'HࠃBÆ QSSM6Pƍyft-[D˖-ѹsgn 5]84COnOGIZ{:2<.J}]I&ر#0e̙3K.xa о}{)O[[P[rF,Fè(k~Py-0k,7˗//VTTEEE1ydu]0`233aNg_iqCDYt9|iѥŕܹsCWX~Ѝr|8qw>ч#͘|e/=+W+.i YЉq YVV+W<*(( ʊR/svvq饗Abp^73wLe;YKVŭ1_RFjL&f޽f͚/t!”b|x'QTT2bq8CѿV?_Yo%KD2L&]kkk#u\o99sHԗk> $򒧞zjrŢ'GlҤIGܶm-=8qb矏>HXA7ER ~A۝;wu֩l :> :P{Nv^^Ǝ . o _u 8i|~)ݲ_IHHe> >[lUPZZaÆ๏_ӦMqWoW_}۽{7> >M6"82hGD獶r2vXsL۷o:7L"H""ҥ صkWŋxb?Pcs>|QYT7/7AY6o7H 3339\:ѤIP/DdI\;"s wqmܥ4(֭[ %%%*o kNkW\O@ Ew7 YѭRs$=G)+sH}Sx\/t"6*W24dWBF^K1d=oX4PKf,m۶ ]%WS + DIXBqɥ={UUUEUUвe˴ |yff&4i՘6myX1twW(?m|^*Q]cq 088`ӦMq'&4Lbx饗gvR)իWGŚ5kB:{4h̲Ut}F!=8zu"?wޡm۶ᮻ‹/JB|rs99sfhղeK3 6F ZǥM8%rg!iҤ >OªUR۶mUW]/ѹsg4mD;wĺu0}t<3'6g?~xJO_D}w(.J(q?ptM7n֮]*+wyݺuCv퐙[bʕظqcƍq5`ذaEs5 =))S~̵l sAF0z]eee?>ϟ6//wy'?|&Ϸ,Xi]RRfun bĈ={6.t9tDD:t9眃9s+-& Y-<ɭoR)Kupڻv튇z ,~oׯGii)QYY}ӧ;8?)EBn#O`D7 Z'qe0`9_;v={PYYjAhڴ)Zjpd Z; Ye!q!})I1qD۷GvNs%~ E㫵(W-R\m8NP<4hv\=$K$_: (^L)mnoڥ"U;8n$%9.dX>[6\9_ Ü~q́(}(^eH嬙SB}trKJ@4V}yBRRRUedERܯOY*l8=9S#JڼP^>x>uVɔ6^sOYIy%67_EcRA?;hY]_8o@}/s -qZŸFq;52nՎzAυ8ӓ+@%R^6m~,#8S%_ o}+Q9@%$VRRŋcÆ زe ϑ5o:uzE37G[ 7?iJ5ɫAQQy̜9ׯݻS/L$AƍQXX;/ |(im;%ܗM6(On`R{*/~alقӦMQGc7MGT~5nې.?KVqv5j>bQ3g vh(IۃȋU$є™V8|Æ '7h߾=ymّE駟0a~p6ls=7r/zE8tL@wj pV#Mi[!yݻwYgzgddK.ݻwj }`pɒ%g|Q- $@ q>R.CwfeecE^"(R38eee[rrrpGhi|2}Sػ8GEI_ChҤ N>!7M}BHy}7 IDATR@t\`:U2;v`ѢEgZl>ZK`q8ҢƯ-V ,✂ =%?Sɓ=z ??pi 鴓IAR_`o\=蠃_K. /.K6m."kO\mu%jyIH*-++CQQQ+0vX|k.R]۷ob =dgqFsVHEj(34>2K\E-뮻R^za8#еkT-[`x뭷{"o‘ZxnP."33z*^|E#G"@Vpwk =Y[[W^yC#AqyKVAGНPp,IvG]tW^f͚ExrVPP/ Օދhw\-Kynr5p=H+B,G8p <˚A~?>lee%,X;v&&MT'؟T䔡Yp"H!8;};3ШQPUBhT#u->B(g CV"pGxaǎKʍ3. Y=%kpm*gd콲So%lZ:wڕz%_bI瀁/IY6ZhϽr"_tB!6NRȺR;ZޤI?*kjj"}(O3@JhֹX 8ą:D<"V7I^jذ!Y괄O)lA)t_ϣ()a2R.]W_@I5k֤n UVkuAR5(s TPZwSuѬYP8tײQB}r{\XX.,^{ \s >CæxgpGT;hРw0dE&8w$ɦ0rHlܸO=Tjq1uT̞=z(;8t 1c @>}p뭷e˖zG)gn[Tn) ! ̭k֬ndffO뿦[l~?;C={/ )F'kKɗzה/p\[f2(ŭފcǢ{N: ?0p@@mS~ <7o7<4m#G1ydغu+jkkQ[[C߫W/\uU~8oK _Ԇ}@]@ wݻ7n̝;K,5kP\\FQFh׮87NMMwh; [C"g$.uf,=oܸ1 $~CŢu\HOM8q7uyC+`5Y&guuqANO }9>XK+O*E$g1(H‡%lIcr/Qhe߄ z-sI~-S^ёE/m{E$ʨtŸ%,DǨ|oqa\=KHryjQq@5d<wn||ȁK 7'G* ݹtwE m܆TVkδBj-ťi.- 00As uArLmKt tq9E\ДtpdQWY[y-<}ƪ"tV%_e\I˵8-ڈryzڒt>۷oҥK&䠰0Evk-(O:0>Y`)rS 6x߲e0fϦAC-ZދG8cHږHsjY8NneRnC\XYY7bݺuơkq Z-[^i'n׈6qМs iJ Ik;>4r}͛7W}*\a.K9 'on0nܸ*q)Lo믿z mAA:WWNzYs"P;qI󎸋HM681$I,\/bhrssq7K. -# 4}r)>˺Bzǃ3Ik&"_2331l0\xl_*%\{K~D1YYY{no߾kؽW\=~Mb=[VXxiC5552e Əzm۶mqCa=_E"6*(K8pyF Q֭SO=ׇ;'<$\\i 'a=UBq)9[jW/>,T0(%p+k;{S,mڴE]>]}6<'kp=IaMIIc$HzjGY-EKƾP&2 ,]C.R>Yq۟[8^F9*+.Dw}>&soL24ݤ\kҶ CH=T~pT͞={0}tTVVڝr)1,E@ tH7TBq#Je)ZtPݹ9M[|B;vD|=kF1p:ÂtOX7jL&ؼys68*_I5YxGKyD$$5i>pu|U֌M 1ry]b&Q>$zWqFTWWʃ~dO׀/Vz!:4%}z$ITWWc>zRp$|-CvhG?LJ:*38e*РAvi  wӟ"cN_}4a&M@gi9G椥4%J=vCD9{%d_%[$0$ɑtdh`(6724ZNn:\\O6q#Ѐp -e\t崌l|c`.M6ܹ%@s J]=]E~YR BK$d%%%XjJJJBnݺ57o/8*VY6ϴ[7|XO*2|~ڵxcÆ عsg覜f͚x N=T <jp"0 ͛+੧իC_>w)ܹso_~0`cH=[]̚*&Zk]廌 Y8-rFF֯_1coIJer>}:>l曨ADI&I@DkKS>++m6L0'O<^L}SϏܨe|駟yDĥ k|} ^Ҕc\_-Ӑ[YYW_}=\h233q!`8ꨣШQT֭[oBg@VرcѲeK{챱st,,þB6.B/'&I^?0B,9 _ʵ4rH㵀1q* Yz,Khߧ~>{1n84m4TciIe;}tI[$f̘j /04L&1pѷoߎ/CKTK]4,f] |6۷zQAYVpG^lpBV~RH&Tw `k}{$G۶m !///-ZD¢!qsz@QVmiDJia=3U8e~k[_-zIh%*ۗѶ]v cӦM_SSիWc: X$T(C)ϭW_rWhoAR>~xnٲ3fH];t b|g p-H<$"`\Dz8餓BW܃w/X "[oaN:ᨣunm1Jm-#~#KN#E]Tن 0|p|ᇑ^۷oǣ>:ԦqƸkCCs:->W#Z"0+vҮBiӦ=z4믧.nذ#GİapdžPڵk1c ;Y qg"'''4VI7@]opc\k k;kR"[;;I&If_MJKKG'mflܸӧOw}8p<OLyUH"λkb„ 2eJ\]"77ׯGqqq-ҥK1m4\wu6lX%Eq۞ qpW(I|r\veTÆ ѷo_{2d wj*L:.] 1J\GFƍc鯕 PՅʒiRmmm6t|ə3gz[˓w^@UV'KJJľd2lٲ#5 I⋪lޔ&N|M,U|!A뵲O?|ayqע $;0qDwy0a֮]zύ2x5WǕE^F- Rm۶'}e6;;Ç%\A.Ҥh^{-:PyQQ^}Uu\dQrǥew%iSq-Z1TֲeK92Y4nݺꫯg|G,馕mCI?0]Wu;s4auR9\#?QXXM@2ĠA"_PTT$Y6fK?.E.;?KG7\,..xӷo_dgg!F (,, Օaǎ↘l9 [i-bA'6Kh_?M@qIR0!]t WVV"bҹ;mDe^K]h Z'GdddDnB|UBG\Wn,.﶑|}PNNN܀[ܨ>mhNCÆ Uv}BRض[-ij}ǎѢEPYf`> 7ό >q[fs(p=,}:-֭ڴiji&|l4iR䟝[f42 //–mtJ@E]vA)[ŭl2o;bq|^/yFP zk'3 >ktѶʻmsrrpWe˖ZyQD}/w _|q>MXG]*))~QFEn)((1cмyPBt:kvȷwy\veXb^{T}UU{=81x`h۶-֮]"Ƃ f͚𠳲0bx!y8`o\9gq#w4q@hӦ !H`ԩ/B${E_0m4dff"HEsEn]2%1Kڸ}}ѵ`_!)kss <@vkUkˢkqEF᷿-[o_5ϟUV^дiS4n]vEϞ=qGI&9[dTYwJ Kꫧ\|\K 9:pꩧ4}vy(]t\sam'xZeu/XB$k~98,WkW+ t"+YLmP%Y+ɷKH#R{$zq% CV ܑj0 IDAT|r*W'e\g} 7(8Y'r][[;wni_ /k֬_>*+mCp1,qr2<b裏Fѻwo@EE-ZYfa޼y>?~<1rгbp7Oi&>֭ƌG} 6L]f ^l޼ 4Ʈ͡3zRr %Xtie˖;qI'؛N=T\z!h?sL|'&}]o։ۼH`8䓑ׂ{8Bu=X7.)IP xhu`222b ,[,T޴iSOBf"5zBCe˖᫯ B3UV$4:^Cz%d)&v+kRH ʲ1hРPX,//ǬY"t E8r*,Emn;Mr.oڴ)M0`I:tyXee%,Yݻw8cұp4 bYq`>;w]{ ]ey;CPd4@@$D&}(5%1m?!cPX eEm Y@X]v޹sιgj~䛙s}3cpco*Ν;q! vyܨT@k б'|B^-Lxž6y C %Gb\kZݧvf)#.ޱ$tW1 f\z)U_kdf[ ًc׵GE9bLNXRRСC¨rfW__ڧۂV6ppe`qMe@!hȐ!]Μ9*]6={;w$w=)bUj tt;mС._M5kd2m۶t~;vڅ?ϨիWCN0f,XӦMC>}|煻tPܑગLdigvXdwx衇0|466޿޵kW <#Fkooi~>^vԟmOj°%jH;BI]|;:uJƉ';䠴Ŭ* GNDYkes;1bD`#nMhr|l3]m^5ԂN*Ksӟ*JpE$ \|nx筭زeKhΝ1vXg}:E!T:9*)˧mfܹsH$H$Xvwȝ?~~@Ǎ7ވ &㴴ԱcWT8Ԉ}4˹MhhhڵkX={DMM ͛'7vB3f@I%͠^E; vB4sʢXO1nܸˢMMM"_ᨾk׮իW^zaŢ=X!x+2srCZsyR )S{~z2ݻ"Jjժ߼<,ZȿkuYW\[QivEis}`شi,Y"Q (IuӂM{q{DOz)_梲*n݊ҥKH$/Q\\n7tns=1chU(N_/ & 52L}\ui #< ?Fss3$ѵkWJFS prrڶNDihGeDjxsrrгg7-92;2i?;=>!g#nIR}WUA(ZK`G敀%Sg F(6eA4(?-Q*c+ʽPRi@X)7WGZKrv±ϩP,ȈҲ!c~TP6ɕ mèoWjrf-eQ\~)#--([.ܸ Vmw)>.ԥ(p>[П#+Wȑ# Xz쉱c:7:8V;g)5yQh%ɭ}4;e˖>=`^cƌQǛ(除ixrmMȕpƷ աFlذzk/F\h]9X]6Fu~.Ql69$ conn`Q[[v3@̷u$y!єMJR8t>#2n8ֆ={4hyfBXK[2gqח.]®]plP}}}^6%K\6w$5ϣ< x׶㏱}@zAAjC_\/믣{VEu8:]|Pl A"6?ر ̣cɒ%&).ڱc@q ݛEȞ}x9^G\ p.*zf3+xw/^7b.o)@\sĘGw-ڵ+twĈ2eJv 0w_(ݺuje~:l7gO*RS{+H$m݆C#ϖٚNQ\\x M2Oouӣ(e],NNIvwmŤf?} ҥ &M^z9{m\=Ç]v 7nEpDsuRGܮO57{V(b }*Ž;Bk}gepr9]FɓC>=Z܌lr]Gx3D(w68>s4566b݁7zt8tP. (AAA|A#Pɓxa!jmqgK3t:cǎ^ze-4~x92e|駑]6I3妼ko]w*E\Z.]BɀNzi$wAb:޻ZZZnݺP,Gis_@(LW^ =!"WJ(g*F4#޽{C,ݻ7&Or1CKKK~7Uffma0 ,G֛G*Md=)  6L}!*ҥ NnݺlpŵffmqVdK|Q+?k֬ *JPnn..\5qAݔ(T )gN);>y.];qr9h:;E?w] :4-y.(`hHzfF)I[*Q3'Nz WCSK*70W \6ݦRp JKގ+WڊݻwcҥxWPZZ -s\.p|h@*N)ĕ1G|Μ9V|gطo8h7ٳk֬snڤ*T-].2:$_k¥NyѨQp.L&qlݺ< N>絶bƍxQQQH J+׬KfmBC(쑤(yyy(++ŋ/^>|0v܉D"DI'kWȥ*n `qPbQ=uTL4)H$~\tɩ/ :6ӵr<0TC(5q/7)=,)3N3f>}---9-~ܮgf҈\>۾ւθ(nєDɛ2eJ(ҥKKrE43azc})7]ia]f9 {if,ݺu k[g8B=8^ط4VM\4|4LaÆ7-u]GpQ&e3&Rא 1~^T&9"^LsrϥqGxi*H$k._>_QQSh@ ׸>*!\mHse---شi{ݎ"̛7Æ sii\ iuz&KWNM:w\h>s@UU}]455:裏#g!rf5ihjۍN)Ң@x <lxMZ\^;T{G񉳫0Mr=_~XjfϞnݺ˹WEܺ@̾/5k׿ΝSݱxeR|hX=@Yh*), 7a߾}xG1|ݻ7=8!5CB&D.ǝ5;o$hllĉ'pP~uu5,Yg}<@`[$pg3T*ѣy,‘[ _Sר`gFdxdMMM?N{лz}6W>5 NBSSP]]О@Ǯ/m.Lɷ ZHFpFQ4pҥXlSۑL&q5 LwE sk7ybϨ(lM_p!_;ӧ{1G?Baaa&)fI_f4dJ)9F|zx'qw=$5ET.;B$#]gRl4M999(,,ߎEaڴi(//ݵlɖm <|[MRyLrTڵ+QZZ;M7DahpkΈ$nS-avQ5}ժUdz~|iEuud b/ug$q#sɦ$Ҵc?I_Cu7$w0+]"n]%ԧe^K([3KS.[<(-qumЩoLRBs ԍMHwEg/w:V)tD/J4:9ʭ9yu"eoۣM#$C=6-MT\t-'8[lځAWW|avQduQ3:tQٰ+ZnlvURril[])n@QPvP25iC@T^q-}E$΄člg$Z;5RK&䒸;`*gA \eLNƒDzϼ@ KFr$lqzs=H˵{; yGz4G9Ý:);8[$L\RT\d-fIEm׍URøiQ΍qy.~.լ9"uitIiK8d Xh^A#Υr%+[vB[R6Lunpо Q;eDՃ[bh:.Y? tdc|K٥Z+\-8<IENDB`pdftools.pdfposter-0.7.post1/docs/_images/poster-wide-2x1a4.png0000644000175000017500000002625113316677212025635 0ustar hartmuthartmut00000000000000PNG  IHDR pHYsHHFk>,[IDATxwTڽQ~`h 1QbK4=,Dac J@T,h0t3?f޿s=b|99i;kvڵ ߸AtCWA俅Rii7*!F6Ռ7oCDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgACDgQ)4== [a+͢Y4 llUykF%t ]+aSP Z !B!5Ez+u8B!B@ЍG"`Sha0S+/ƨu&d\=zpGŋEHH5Aۍ+i `A]9_>>Лt!]H2>$$zP+ŕJfίs0s~_>cV))9@D/)** `Qڕ]LlkbMiKڒ䗵kq#? OI=Yye 5Wci,VIrD7t3KU,HJI)) 4&Di51hځTc*hxG)2KAn4|~PBvJҒ$-}zCֺ d@?_kaEgj҇!}Hl y-^;> cuo 1CJH )vԎ񫕴V2ai6d3uԕѺ5nt;ίEkdEzx!OJڟ:1I3i&*Cg|ԃzoo,Ԇ)H5cN{a4fj5xq8R97~n9#挘3.uʟ`t7Mw f`8qÃ77jnܨ[l]?b؋a/ Ba#Vۚ Hh 7- >rpA߃9\pOvȅ\}c3!#1B!DĚƚƚ3<ϴ".mD;N,|oڽi~eaaacnj3vL9s؍cdz`V++c1X( 4=M}aê-[`޽=b9XXXfff96rlȱN;=xYeM&4$4$4:ֲ|_]>YϺ4;h.G\Yrʅ+U*%dAdh ߱b80އk5š{ ^3x)S:鰧Þ G}H:w}fQ@I3Ҍ4dHuqjl5v4ь=',!t t2d+++uPAm,Xhcƺu7nnܖ_~rrrg @~+>X֨QY#.`>rȱ#XvO=a7^i^i^]u: 74axFCeCeCeeee܈s1:by<~WZkJ{=Wr_%kkk"E֋{ҒKK.r0-NMҚum6 uvY.+;:wtFm<=OϿ#gD2a+Ϯ<,ď?J4I0I0I03AyQyQyůUpbZ,ɃXķ;NVJ!=2m|֧Zj}k !rEtmo`V`e&If)S&mmm,",","ĉDq"Í7|X>\kGF( ՗%}ijͧ6 b9wbV5J5J5gњkmZeqqweeeT&SM9fH1|LSi*MuŌ15fK[vvv[N: dLIOw',~yޭiMo5tkh{]ƋzQ/ZeXeXeȳkFf_<A]X"H.:6똶tNl>,FQku%_/d2L&LLL;;;WT_i'ϛ738.q\"U"З%}Ruk-j uo[9J}YxTQzM5-=Vz}r P )&ŤEo/^===տqg| dQ'D%m ?d濚Z[o忩U\U|ҧҧҧ<5US7&Ĉ#~X紟~N{/?OY;;l|'Lk%zH=4 B`+볫ey-WRffG:H qBwէ,'~> VJYYyGzVji4A"zo\sU;,J+M4' rUQUՖ+ʹ,=!{Bg*Zdh2OOOX̖|krTX*~k&5+[>΢L.Ks[m[oq-[x2heʠĿĿğmT SZaRU,*****50j`~~~jjjd/K.}\IKKcوebX7&|C)Z{00/B__~W٭ҭҍGwjr_>{3xG \ JP?Ϣ#WD\aaalllls^L9okZf?6oݳvL:t4騨VT+ :t4"VCmpD"~uӍM76`Ϛ}f*w_}}={6l<>o|S}La#~up]GDD*Uz g3m_6颓$r+i|Zmv/qeC ]6aF^v^v^v"E xDۖ:FN~gё#G/Qv1cxzdַz!A?QG{M;wP }?ߏg)=,<,ߓl"} @uUuUuEm|j 7oɮ]K#H҃`|||3c/c/co)wa}FqtɉH,%k}̷ɷobX!V8/7hRѤy{FFF w&9xߨ<=Oϓd;>)S ?8xLZ6jwUwUwUnQGt4/N~%5֠[XmnwXVj+z7=TR'nOs%-Jhv vdGގy|9Y*ks9JJJa9ORLRLRj~X1 6)lRDi4P8tSKKMCG"UQd'I~r+(g&e&e& /tЙůڊkJs7%[ΖY;Lg9 w w w ) ) ):uk;]tckku6lY>q94`[TZK}iUʬK⸤TJ6 d^6\xxov#GԞ^{C |L)ip^e9s'I:tfo޼y)))'=pRyqKEJQS5UW;|||;tNWs+Wdqs@Nn9LSNiSEhl(Gy|)ǧ<]/^p3#3g>E,gw9@^+Wt_TQQQEU)))B tYeM5<;v&cíj 6W ПO'pZ8]ѽ{EaK-$..nŎ;Vnw/`lm0wԇܾRBhAd:]H҅r?܏%4O͞=3{~~J#@Ak^KpSikk?vۃo***٫׉f'hV`[`[`j]u-._\BW*_/˗km 1)@ H0m^ۣ=hC9_9_9%o81=Iz$鵞#5 4 4 ,ZkͲe7 ;a' A]6RhW.ioc;6d382ȼ#BBB)3K uxewfߙ}gvjIjIjI!NX:Q]^]^]nnn9(fP̠ĔĔĔ***[1ELShcژzzB'4.8\ppiB.眞szN°a >|ҫWK/^d?='|C)*P.KRqlʱ)Ǹ??gFόN;yA/^Xez7"H(p.Liv Ch+++[n^{y"D䉋S.N8%/-/-/s\:Q}d}1aLezeze'>IC:jc6jڨinVLVLVLb!FZ C9xW_]lTQF;̾3|a0_FFIǤcd.7gt N7:BGd=zȷjժsssLK~-~6gUzV6 h0 V Ќjj2%ccb+/'dj؟zZlAo(\t& Դ^zQE/N8Dww70RYgVͪ7?(, 16  X󕟯|En%-L SQڠwz~N?g,q8D(w\ *{]պuUicƤÐ0o4?E~~Zi᧽^Л{ة^y-di:MHE"Kƛ7Eo'>VVV]]]*UΫ̪̪*hhC=:Ɋ'+`\{pxS'=Ͱ,Z`ڗ}Nd...A eo@ h]`^ @x]w=SG - >}*i4MSMSMSEaZ']?.? 3ӰaONJ',p8paV;7[*KԮh +o?/ ;Y -x[m(̨ܕJܥ0֟SN9EEEdB-"<._|tEKil\ٸi6mWϑUU\drQw["h M)s-j뷯oll\ZZڧM6}#<>'M>i{|YLJ4R;MOݟ]#ڈ#υc ώvm\Lŵm S,=/$$DM{M{ 7sω,K.\*-joTSRJiًٯf>|s>H%$o[U*S 8p4@i4W{FyFyrHPy;[S?6#v N{omOqkkk +V40H2H2H2`dGd+3| YvTkN箟~dƒKf4hЀ;(5\ !o_Csh4Q(MTi4UU%U%U%,I`E`E`SSNQ(}s,nԍ1cbIJ:=<{Ɏ%;p>}Ov"n |/?OX%Ȁ.|go]1ki"Zַe-Z}%@2x6[-2]vx4i)))sW]=wq3Ll3fѮ]\\\'$o/J)ݔn+ >}/W-W-WuK؍ F~,bx6U}EtYeu3gϨXWbr\iz$# ?\PZPZPjbmbmbI'T:W:Wkh}Z~W+,|kԭQFtrrUӫWMLLL4hp-NZ8y:t,OVVV;88i2ɜ&^^^III6m?s3ً[ސ;NNxE"^;A n`}k[m9y9y9-?9-[V`Vt@7$DH:߭ Z65kz-<[xL&o95LIbbb;?}햀hƢh>lⲉ&+..n 7nөM6V _1|pVέ[_Psmc }} |>U*a;|5@I 0ڑvSSSEߋ=;}v v75 j— _ZV[V[Vt=]/dB7 hhh^d蓡Oz<9q }nԯҳKO-3 1֏ˎ0,,,daKÖ2&CPtEwvw]pg6Pw]~؋c/-U*JKҭt+ڧ\kЯAO#jjj3LW }B's;wMC7 dt^-D,[ාߐ<_dxahhhl Ksi0[-fxxYo[C}_a65v>2fLn{ !kxEͷl0O . U_#ڰG}ó9Cs`.JC`,hR(R$q#nb/C6dC;Z4la~q8H-)?VYK֒'NX34%gg/9~G{`lBCh-;v Mfd6o]2$Ck/)0= `LfzXA#hScli_Wm$BP,dj> RX^hs:G&lOERX<<%&a 2!2K2?L`CE;N p.hOsIBSд,,,J RYzYzYzi+Rn>"b[M\kE]u5oPߠ!C b!!{H!p:DKU.*V-.X\H5=권wUː!/C`BgC߀t=0~-nl!ID9 Dl;ka\ȅ\@x`zMJN;Q0 F3 ;Nе@XXiTc@WA!PYPY^;& K AGO4}IENDB`pdftools.pdfposter-0.7.post1/docs/_images/poster-wide-1x2a4.png0000644000175000017500000004600013316677212025627 0ustar hartmuthartmut00000000000000PNG  IHDRh$? pHYsHHFk>KIDATxw\Uf ( " +6{A H Db5 bDcX *(T Ҥg~̾{4>N>W^+.g83{fZG7 ipS? $&5#հuw?rb 'ҨiTD4*DQp"(8FE+r(--@hIwҝ #| <1rXS=EYC%TB%hh4sm-b&秩 #?(8:tI]&uMByByBfff-_/:4>er_~e` 9sΜfmF&~ο TpUV!@ {UUV.[]ttt[ӷ/Cq(> A܂[t<OP CQ8 GPuP! iEZiziziz,Y(ktNNN4&xch:FHfĪĪrZNˑBZ8 f;oN%ceTTT+U8NN zA/9֮^n[V~`=``::}F! IÙ3 g7o/rDQ5 ʠ 6&d%YIVW4TpZ&hhH@.LI392Goο9|>N}wvbd a#l ՅJJ>0KSO[:OӐaccWWWw]VR R *~v|W PL:΢gggy#I/>|g V '<|RRSSS:X:X:jjg`" |'3zCqt\2U2U2DQJT7)oRDzGw{0aV,gϜUUUH%ђh:gW[?BN[-{a=/_N;r$'WSϭq4kAԿH`ϪU?;|sƥq:dl L?:" \G?џ]WWWP\P\PKwi`7$ozw@3h͘);{b쬅Y N3δ;&tiB?~|555>G#t2]!ZVVvQvQvɍ͍͍2HeJff&{=IEj&86Л+1HLl U ///y桛K,-Y M4 M]"" q:N̶nݾU?VXU|Cq7w#L3=D籸FXkbM6"ѣG˔)/SSSQQQsUvMI8SL?ILjՎڹڹڕٗٗϘ4cҌI9Gs傹`.,'r3s07ސ;hTSa0w9s5k6l9GΑ@4u||0@>ː_N;eHHƻi ڂ383pGy&[Llqqq?ÊWy+-L홭ѽ}?K3gzfeez^l>[ض~qh 5+qM5fKJJ } /eSWȷ4#xٰaoVj[՞~qO > 6"l̾3 S` L83Όo7477x+ZQ9JSKSKSkvfububub=tkddd4T* VVV;̎3;k/^|*Tx??-[r۸m6~RVjZm߶} /^2|ɑ'GlՖV[95#^oז&h&3q/ A<`6 4\2Z2Z2ZJJj@؀a.]0aQGekjkjk:㏚DeFeFe>^xJ;v*\?`qzgp|Z f;lC@/ЋgǞ{vlتUY,KUcRcȌE t2`&`BVd~O~C˚ ЀCHy~?&i4i-EH[`bgA6sxqyZ?&r^հV Gh |f a8 DNi.o`c2!EiiTD4*DQp"(8Fq'g~O_|+E-`{< O`/셽·P ,ArRNʅ|S-\Cck**ԇPքqC!Nta]BO޲>q dٜL.ˠ ʠV)ĖRg6U ڠ֣h}}v}v} wc QQQBDz^ :.y]på*OUx/Q_~98瀚PjrPj PT #F,X-K,ٲI^^^Shdr~|QyFp>. 읿wzzz׾\rK[[{Q4F5u|\."Ӄ҃҃͹s7gfKHHxi2M츆^ӽ{MםZwj)vRZs_ŚΚΚΝOw>tuhuhuhюE;ԒZ6u||p?#35j8ϓ?O<ԗR_x C0ၼ, ) ) Y7n$:Π3 {4A(2>nnnl䍼wSWȷEp^}[mٷ%gϸl'''7o̎9|EEEy=UUwV [@<֧[IӻwiRJJJ8'9M]""qKRfO;8ഃ/t_={{ ـ?* t\ѰaOÞ'wqK/m4c{TTTOX7QX%pK Y>j/jxmy"OI#aaaʷ+߮|Vj~/gb7nWQ^ *T4hɳ%ϖ<>}էW^}zm泻0U"VE;rȱlGH+suPuݰJ~]5}Uӵiz]]]cO?8 w ڠM?o6I"I$:Sg  r[A;AjLDujlFW ]q<񤌔2<"/PPVh%gYsְ 6 ;bGq=u]tl׿F#?kXgqs\t Εݰ%Ƶ#n1iTD4*DQp"(8FEHҸC{i4K%},},}L'ItLV;M*5 KR%T1Mtg|gΙsBI!%hzP٭g3330{UUgYHJJt?/HM̝Q[8ZFh[z(\x+<# F &L. .ąd"sƜaOЪBw 'ӥbU%/_~)θq;S1bdH&5MMMC` \D!itӱσ>;Hg Ӄ9t?T8H$j~5VZkjnZ555l[kݾ;|w\\\QF={}h3{4cED::kF I!)d$2 h2o.~2e^b{ŮqՏ~&`& +<'D"!"k_?E,+Jҭ!7h( 99*Tv!?kLڑv]E}E}Efff*E{^ثsC`_—%l0~6iW*W*W**UrV@gtFSWȷ'/2{ڠi 0a]Gu4in;w,ؠz8㐏C>^Ϳ5\s 2 7&vEh>3YYY VJXI٥hga( TUUe*2L#Ӱ/žO5jβ[58k_w~ݓ'MO^WW5=pCb-XsN\'Ek: ]د_a?fx ЀZZ a35ʠ JKKY5j|up2!5$ O|@!dn}^׽ .3Č(%$VH+[[[|_+s3gt]ٛ G䈄.U!gA.ÿ_ХN0F)F)F)'O\N/fY4M5M5MJJJ/ΈXb]ḘIO{M4nn.i.i.yW]N*T:{U'NV&<|pOuOuOu;tNҹEXa;w8p| CDŽ۬k |T 0^|&gPW_7`|ç֟Zj}^[ou= y'&i$x>Ror:u֗/Y_>FharDDO @Xxhl![;v8}=z+ommff1cƤI.IHRh'ډv/KRHt VVV_@-P a_tV0/U&0*ބ7MdGq[-ܖq s:@ !yvQr#$dRc.2Y ! &d H q^矄 Fmh8-h ŸO'D*!>O$U*' BQ(Vb(<D=QOPD),6'A$(`p'p0?|~>1Q|z#v="(8FEH" NQ'Ҩ4dcS^+pCshN- s<%OS. {iB;#u;厢2TP A5H"Ua ِM!iOړ.b#lZ̩gA-äB2L!S' I$F`F`TK՗.],Y%z^ޯ{>>>bW*ɐdH2p<gi-iQԪJEiXB߄p'| w222. 4׭[g^DDDvmڵ=D)_P|V[ p q q vhۡm;v *L4#9<.fQH±LܣgImǹvze{ﭾӂG ֨רר3iXVZZ[7/޼x"EJ:wrWE Aj5GpP ,9K"W\Y;duSM]73L9~}?}7ofϝ=w\MTSJO 't:u2#dF m۲0ANv w w '56LD.#FĈ#>u=|IIIbňo-WT]:'`Ncs=67])])]c[u]x^OOυs\Yg%Kq;r(P ;߁whGp " U6mT~tdžC K{{'CbHv]h*W6lګkʮVn_ݾuo_}>8~m6|]wC@+-qav4^/tm[߄2[KFJFJFJ:H:H:(W$l?VX=%0%0ES|IG浽{n:uQQ+I+JSWȷg '1r@f[[[2p.d(b(!4o+wUEH&q8!w+dlvDKx l~9wM]"".5$f;b'+\~m5!)/82RF{CƐ1oq*UFf64ViRAAAO><䃮AMv q{=fϸ;AAA%KXY`eAUpUpU0n63?"Te:Û+LL:QTv_˷.ߺ|kbuuuԕRҒ$-QKl&@>ՎW;^ŻŻl'睜wr^N333Y,a7x*y*y [/[]l5c䌑3F#]3ftؼ` 'D`BBA>c8ePeƭlֳoܬYc=zG:uIMKKk%l oEjd)1(NP,GCT"(8FEH" NQ'ҨiTl*¶߅p3x'?gsbA' }BM 5S LS5 #a$F_aJXtCHC!߇C6MdWOe>RH I!ӍӍӍ[Z?'bNĜŴp::dٱ{Q0_RSjJM9;ΎChֿHb8gLǪU_ovtP:\` `+-ɗI='_/|C1bń%-JZVVVs9gcccTjQ-Fm'I6 ʮ'v~;5L1b 5kdddC3fzUU`ZXXĀ??L/_+ ¯$f"7RT11 ;dӗ/M_70o`A>jZe0aOZ>o<A%4ePe̤<)GUq[*A8g ]JҥI$aÓCJCJCJSnLy_Z6j٨eL63}}}})S,JgG#:ε3mgOl0bÈ #j/^}#F1 3|QG$H$EHt "ThbF^V0 f,-זk>)I|>}NȲȲȲBH$n+WS!(8-(웦11~\g3י'~?2=fzS S'G'҉tpqZDQ "+>vĎؑpN{uk׭]~7nRG}KDaP쮇ulù2)wybbb Y2P%P."[p 6cYC:NykޚF*HdE0q$$jjdso+22" D҈iTD4*DQp"(8F'cڃ=H/ҋ"$X c*/!O10`M7N( %$| ·lC%q!.EprfS0`^___Ti*L>½葪GpLjLjj$PƯ}]*w#?<|OAAš8AEh-}>K6 .帜%{^x/%N_%P%2  v.111v[mԚiiiwm@桿 e/:c+J?xୃs)bSĦ^O{= /2r'@" | ) "A$X{>|3g666`#ltw];v\?́90TUUz蹢犜9s6&IuyRߥKyGI>p3LX{Q0ZMi5v˸/㾌["xE0[[[+WLzs͡g l( x,%KԺ*uU۫W|tor箞zcclLl-_8K DpuRK z4mT KQ,G;BBB'O|xP *T잳{ޔ{SM7o;[l-x1^ j&O/ŝ' ^kvu^׽jR5T7D7D7dgΰaۆ. ]@!BႼy LcLcLcuxQw)RX Kuz^oFlf2HHA.Q(Kt8ΟgǛ?osުU{ҦK.o)Wܟy%NSLLL ""B AetYSWȷg lY444͛77oE8.|8ΧNNN%;4;4;kŵZiه]+-R 9C-00L\\\|/A8  uuue e e K,X,111$J%leӊM+6xww]viإ6mXӋ"fhfSWȷ'C ^&zYXX<y6r7H6)m4r?~SSS3bgΈ!n7#~FKϗ~wzΏ;?:밮vmߵ}v<#6o t}G}P&0gw9B555{f)6AAAA)A)A)4i V=z%DWY[Y[Y{嬕Vۧo}uYԤԤԤNٝ;ѻ.%`K~!B; oYE94`7݈;q'F YۊVdddT^^̡C3 O O ϟ>#7rQKx5ꅊ *>}nkb_I/D/D/VbwVoeD@ ԰I!)${,^"zlj'~-h jmmBz>üXJ.g]κAsha>̇č7|G*m4]_ P1z#e o*UwV&&&ԈQ#ţxVEQ,El~6?m|[D 5SP" 5@4<s!R!~1C=<'ڋ_EWWq[x]~RD!i,T6`6}Xc6[^/GiTD4*DQp"(8FEH~6fͅ#lݓuc?[Eq"ĕ2'¯b30qCyN2T A4جތ7͐ ِ-$bc^^:</ɬH^%ĕ;ꎺggg+Im vL ȄԺԺԺ?y͓7O?z#8wΝs'ĀsbRm)E jtAG0=!wܝ;|YRQj)E]}׬kzKj1ӱcu>}Qb-EF~2?O}ove-fE,,,&&s @́aRJեRu%%%%%%MI5)eSs]Ev-ٽdK$/9"D>-EENNM]""/KR̹s70|%zKBUBUBEyIK%Ғ;A&&&:::kڭiI~'B ݋[Vjb"|?uS}^yu߭^^^ܵf_"Ehsss7o8hiBQuA]پr+Z-Z?e;\65gj/ח `LS >O0iB3|fWWՏ٣2 ZAAơqTSuU^W5^ /KLə3]!gș^oOsYfةة1l :X0Pl Nn7 RBJ,mKҶ,`m.KmR[!zEE>IDk\[fnefD>},o\M\M\M>|d듭O\Pr s<___H]K\K\K4Oj<|\1O|ӞqqqFfj j j &M 6>e|;ܾphД)={,8gvśo^y )jSԦ=S XueՕUWtgAtAW[3. &${z^/lⲉO"D<+kգz:::JJJ*.T\}O=ݡ t.PP$H$˻w-w~yl[ٶis2T&*&?fybAi}rb>M6J6J6zW_W_W_ {9XXXww;sFͳg5Ϣh+J藪39b`Up\9&M֛ߘ1{c6+^RRRT\T\T\j[j[j[YYb.F&MVUUeKg4R@ H?%QQH[DvM S85ZGh{+_V|#GBpN$  9FcĎ;n7%X%ZXni'IM 7Y{ڑvdbi 4@-P BoͱW4OBSK{|/ȟqy[Q'ҨiTD4*DN潒ΦlB!p$26h6:c1g~ ?#g}"JCi(*xC>Ypgp.M&K |a\ǏB=6zlX+/+/+/.]E.ӯӯӗtttÃ`}lmmv =z.tXa6l.\(W`pzP+-M% dMmhЪUiӴ-[ gß 6|N97{x;\\sUW p5\ W33/_4I.&jjjp^uY( 1m nS!B"֤5iwzg=N{j.]nIgҙ,YnsYe'OlhhC` aoᎸ#ȹqnY? aSo9q9q9qjS2We-N[ޘzc 9s樯W_42Wg+ TEpH#ufO4mдA-߷|_w5`lMP%P"M&IpO pQ1_pNKo=mx/E/K׃08/|:&>܇|'߉w⎷mxQ@ %6o|ڲ`epCIţdtQȂCo`"Yg;YUѳK1d z!nڼ6ϑ#?3ll <' A3!4Ө5f&k"w܅=& ZA+h21HwKwKw/B m.еt-] a9,oJ'rͣy4e{Ώ͏͏}(Q$^/~~k` l&A_ [a7 |u3L脦^oO Lnla&L9q\㸦^ý{( 4,#T>S}yy2cۇAsm5j=H!9 ;a'ikikikFbslұI&EC4Di6m,8zX=AOBBB¯_^__:A{}ed ylTM&-IˤHBy~lKu/eVK܆p[Gp3m2-lJIDY%TB%Byn-[+/A%HHe)QJT%*GZ+^½<*nTH=Iv\EyTȋ*PTzl $dm{ϝ`;@ 1e!3 4jjA3GBlHTA2ET8.m`_VAA½VhuSWȷȧsWpeFF0_]]lCuD;Nd5YMqݪUw5k>nXpzzzv wqŕ>@ٷ( e^o<< ]J+VY[oK9r8=n%]$]$]XȀȀf'M^c׏]GCPCC٣|`%xzL1!˄ g Cahﶿuhס]>FcRgJcZǴiikkų3QУGA玙;f /;lknܮɼy5* /0A@tЁL4u%938-d VQh-Zcf-,,tVYQ=z\Ү]K 1Zcȴߚ~ky橛Xx/ڇ}XIǾ}iߓu8 '$1&b" \$Đ3g;ZwtW_◊_***@4fѬ]v 5`bĘC̋? ~guխ9;옳úuOTB%TH߿X!s--<I)"Ens͝jɫW`4h G/G/G/S=S=S=. Yg@@-ݶtMXa'+(0#0&}ePe,Q DA,HGZLmD e)d_b_*cn+a3lP7n@~I~I~r5Q AiEZi9FSSS4"Pp!v2ەPPP^ZZw݄>܇A w/ll0`I"[dO7 6;mvdkN X c،6M/hrjh@Noom̅%\a9zY#kV+XD_4x??"a!JiHo(8FEH" NQ'ҨiTPnnAAM"NQ"Q<#IENDB`pdftools.pdfposter-0.7.post1/docs/_images/poster-tall-2x1a4.png0000644000175000017500000002654013316677212025642 0ustar hartmuthartmut00000000000000PNG  IHDR pHYsHHFk>-IDATxwT?gzrb@bkl؈5AQ%b {TWV46 *'F(((vQJQw︌^{s_}>5g=3HZ3&1BH{B?E?ىcƼEB& `ؤ7˱-8€C- 8Ri,-hA `Mi6+B-B^syx }  ܃{$/_Kw[NK$@G-X dGCmL. &d\zcC  `HDH ^ooz뭮{XۥKoQ&LF&һ'S$:ͱl|BP-T[eXeXeȶl 11{$\{bl{iU(:re&e&e&,tp iCy8UCUCUC9sgddg :﭂>Pp:8`A%2 C{ho2dPPPn"{2uDy@hD:8RGH 6`6,e' ~b%Ӻ@**  !{~sQPR.s9'W+\jj@sP/@h4 4ДQ?|||& gyͼw)!` Mz$vĎ؁Xտp$_H҅F/K@fN-ND;!yH#xK,}a9,qQUI`iii8vN T@WU|ŇC!Ez^<Uԥu1%QIT1B~.E"Faė_;.v; %PJS0S>jj00PP@~@O܆pTjR-zޢ7?mܦm:d2L&02WYvbw \ paKKK^؍^ $>dWUv2 >> 1YIRϗ! aTX*,Gvov D)Q(ʅr^h8LeJd"YH҄4`؂-#/KRD+L)S ^"ȿ730l![&hBƓd<gS)$ĂXG#Fo, 0K'p??6܆lPNNƨƨH(u:JuKͥ555_4h~K˥RD"MԤԤԤh 46MrH9Ćs>}PPP;"sDK.N& HD>y:XǗ7Ϣ)mJd,+w;yA)J . T.*X-VժU>&$+7MVy*b>OS%VUbeJP *A T>!%^WI_җ. ĉ8'ROfu1<Ǽ1_6;H@tD7m kVҕt⮸+b BrW T>RSSSY,U*CPDDDX%V)]JWz^kѳ>4ƪZZZg` `-."!~+tI$]^J/442(tL j\+V~-okּ~T6E))|օE[_ڗ%v]5Y5Y5?Ǭk#xpq8G{1r5_X3<%Q%vD(dm: ,bp].\W' BXێa1 tAgHRT {a/:'/Ͽ}s_Y5KJJϳEchua&eee9Aݾv٤fMJNN[oa:ᇕa+V~Ziq8E'ā8vXqWl8qKK  y¼W3_|53k^ּyŷo^ W2/*J2$C(>r BʑrST]]]8r(OC3q75n%K5y///_~Q2Opb$&w̆1l9:r /`kkҿ?$+t ]C' }Bkڅ^yrW\mp״i{: 4!Cng3G{4||Z>64.l8==ݪժW^bmAC 4|ZxF{fS"PkjMYIoooΐ!;y2eQ㣬$!+!+!ㅙ+WiUZvorGC3i&|,e]\מממWb%VjZ-yr'(2(2(IM&5[zrP9JJ#J#J#v+Vʖ_V 11[ٷok"$+Yymmmi>}Pjecڟj {[{[{[{]WD%QIZZBP*BP.@)32qdD&&&___]ڣG빦sMjMh:Zw9}}})/[b@b@bfWJw}c3fͬ狟/~cZmZm^^jyNJ)o[NNNo;F&LeeewwqYŲe*T?8η0géS7nl(Q8qV\spɧO'SjC܏iGQ+ke,JkYq}ude2Y!w>}ddd$5Ljwypp&̚0k[[[^W_Uy+W{<9?Hkt|UW---\e2OsD'{\jEnλQsԴ=mO!tBoN*ʵr\ЮW^z%%%,X:ױ_k 󵟯u}[C4l٤ǟƑ)]#招/nƵkזm>VJZ^F(#25tt4j>v.!zYgevuuy3U>i ?9juZNDGGjjjfM͚F}jwliTӨQ4ӜYہ'=sg4a0M++G;v ,,L44ihoN,6Xlؠ2uhWy&7od孖Z΋"i$/˗ˬOo~~~6<;xva#6oÓړړŻK#F΍ yk;ǦMKa}֗O?R*/h[#[#[#{n4PPPa]]]Ćm&n){|]{Y;v5ik$~H)Rʛ6بc/鿤Σ;w~ZvE +W,̎7;wHZ|||J~_M3f4hף]veyW]׽F[mUvPk5Ԗ-S[o]Ip%uk׭]3ma´Ş{fͷX%g^%o7˛YyeΩǧzb4Ab3>Sztil᳅ w]vd5=kzdÃ]v zh롭Z[[ߍ7wZZM7Mt\\T.*UL|L| S[-זӺ{I_җ& +3cΌ93YAts\O NtB. FQ(c!F]ŮGK%z7FM~`Z  aMƿeG숝*l4iQ[Fm'KW.]t}ԑ#-m;m;m;>IC^{V@M՛h-5?k~vYe+W=({~xiVqVqVqD^)Wj5њhVҰeÖ [zU_%FJ|_yyyϼy?Tv*; wn}n}}g>|M7YoѾEWد_1xdƾ}_7u5 nh+Q)ޯpO'-mmoZȄܻLݭv}>|tm_m_m_V|'NxSyBՅ*oլYYjbĪP* e;Hԝԝԝ 3mi?_q.37fn^^^kkkp={gVbqm[Vx"Eʫʫn) (|*w-|'b\+ue~M7zݮ]'NV[:wxm㵍ET#H|=|C=h-؅ػ[p#֎X;bG&Mtpf~ؔ3gϧ4 7n8_t~|}s\%]JD8IIꩫbk&Ӥk5|̝;]qWߵk}~QG[-kʀ{e)>=99N3A3A3 ?$>Ѐ+c2 %RK%J&LGҪ*BB¯ÿ:WWW\]ɵ[14<!AW88:8:8ŗŗ.t*9JS2ieJuVìY u'y,Xر0UëW ٧;wwaW^ͧo#Hη;NA#5l9rpysڅĄĄĜ=z"Of xO.J)O?B[m?#//߯Esm=z8a|ٗ׏\?rHccc¿ ~((Hao%%%O͟?RK}vg+Wj{>cc]SSQ7n ㉯+6#Ywm6M.__~.;:;:;Yuf&+LV000j:5 ɏG$t|鐾`s悼yf9g9g9-&xzigϟ=_mc>c} A~tk4I$pw_gSz/<9s::u̫apv۝yV[]oEb<~U7<==}C"###ջwSͦ4lJYf5Ŀ>A}z/}_k-EKlv u u UwQwQw dߊɎɎAV\ hii:[xn+WEE is͙6ƽ{I$j5~~~!!!QΞ=9{\FɣQlN;e:u.(((o?rrM)R6jՒ/^ƽ+2#.Xe,~III.|-y[M6-ڴR-垓{N99}xl#Zwfݍ 7ߨ~Ru)8rEBP~@֮][|=   {^l yyyӽ{MzQş} JRI}Ҿ7:r+ҺR-R'DuIyyyȦM!;8I$Nhhʉ+'gh1Ŵ,Y#O'Y>T˟55d֐Y[%JK[%WUi6|QC'MH҄#HoRI7SΔ3i1-uZ!Cd3@H{LTTTl}sG9w?0foYeK-x2eGEE<2#VVV @݀piAӂڙ3{rɅ'ocƸqQB:tlsxyg4F _/)Y-hA˺mr˽/?=o|UV]ZUhKŔ. NcƶQ(m[k[k[kHi {yB-Ԓ>_YY=aN:+.]L2o49sr|&n&n&n,$eMw0A=` @@)`[{f?PޡCyqlqlq,Г|glm|5??o5VӁO/v-ol4FS!b!B[h۹vO>1o؛(9JB*N_7#""=J{T^^ϧO>^^^PJ[[[ywwy'N K+E< 1'Jk6mVϭ[=:utWp[l_838%i `͟%09`r#K,)SU٫\ƹsPC]fgAAA9Os|zooY6mMW0]*J`-X ,a_NzNDETD)aJC!8wܑsG:\põ¯}u{ {7ݰ7 "Hl֩(}>ayE١Pv[~-Kca1,z"-u9|{.^ԋz Bow$t_ 0ci4_-Vn0&yK|?:Ch "6ĆذS3^J㻂MueEBO<<_8rv &r}y͋p.:Nl./7줪N(К))}FgZYp_; Xp(HmdYFeCX(mRh `h%9$֤5ia?{)M/tR¶¶¶Bͅ jWU7n}[p}Y)GQ6m,c`~a<Ԗ YB%rP$ E(C a0MkKזEZΙ:Sge2K:Yb+۵~^w ,v ;a$*YtE9tUPU*J yB'Z-xf"24tҝt'8{/L&H,%6vKGH&|?öa;lgO+JKD#CK $> DyO\Fe9Fd0̷;l9BSh*4 XL9Va0G;h W*=oe]^f\E֕A v;CQ^Ͷ%ĞسbXw%;.Vb%A~,% +JdLɌF $@0`fƑ8'z ^ 9PdvbٓLlEPE]y*.{/^f3 ^r^>gɚӯgѿɅ\U*S:+ΤD:{2O9tNOv>X  BJT~Qݚ7 i'ډ+{AEtK 6 ߁Mw[4I*I%`,)p NI8 x~ @d8IN:[d1Y 2K }oo'hM;kko} 9s,r\\xߛ7rʅ+Xg_)b(s9eNf]؇nurv CaMMMXЪUC+q% ~w :3}l +!!h#H6P7=]LȨQ7n~ʮz_]6'>y >xo&L[!qAa1#fkNu 8 0QlBI( } !ژz!?[p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p![p!EZ3&1}/B[YPaǎIENDB`pdftools.pdfposter-0.7.post1/docs/_images/poster-tall-1x2a4.png0000644000175000017500000004571513316677212025647 0ustar hartmuthartmut00000000000000PNG  IHDRh$? pHYsHHFk>KIDATxwTI$DAQ1:"G1 ĜPǀb1! QLHpvG]pΞ)SUԱ ""_@ I{_I俍Naeq+D(8" ND+D+2(L3ͥ4f yyR<!:X6 3j  *8VDq(5u}0fV#JM|بƤ}W]~>?` #vĎ}*T?HsiMi"[ *8DElTK7J7J7[dnQ)-RWWnbGȊ^~/S6O%|J:+tV,?t]E*sD~h00a[8GH==eQjBM8Ew߃|fP 0dC6dSMI5&Ihja&;'"QіD(8" ND4$_AVJ(⟴QB$ kՌNPށvFDiHc&@;Ҏ#+d(mD4ZH$N'x?;"rDHFVcEȷЀW_FEEE_QFҔZ PɊtC|-_C6"ʈPAD;NOXeXZ6FHѝ&(BpP#u<)O%D[ָ5jFԝSwbCl-–%+$3mB&@׌kF^}fMhhhh=ZO~"?i 8#) X6&5WJ]Q*BEo8qmƷ.]Ĵicggףc=:^tӅOLjD=AdUPUFE^# d h/ڋz=<< zccc<|ddd={hdddSwL ( ( (!Gcu L/#6܆ew"7voع6vm8&&ӣNڟ?aB7o?י錛9@;FEN#9$:㻏8q> ₸=hޣzAAAx1^/]tҵ=zѣGڲek{<)<-yK*E9 f,Ye [;&wLn߾}#ctAGݍ"_"EM$mH_WUق{G̐3C iK.]HfaaABH 8g~6v4x!8)HAʾe2ep?O7[߷o݄6Mh$J%***@> BP!t1Nر6h6;3dzl:t;wm9.r\8kZƯ,QjJW5P#Hm#Ȥvy嗗{xxTUU[ӷ&{dZi=K[-9D#%E^TPс&$&$&$<˕*7Tnxϻw;YYY%= = =*d ---_Fx2h$|I#t ~H^RҀҀxU|W/_N#dlFR~¦1xxfN 1RbqzȎ;>N}7xsmmasVqT)--- #a$@q2NUUUN96qizA=Pݥ"/wޡ.*>sVF(e_}aK 1ypҡt(JA)(E\ NA'JURw]=t݃p@e bF­p+x ᱢ;S|cuf{D$(hm:$$Dn*76ֆGH<1Z5|RD߼&h&=B#6f.Kkkk4{M3PPP;&wLp].\zǐ rA. +DJ"JN7siFի2VeʰXebUѭmۜ9oҾI&atFCh  Rޔ y $ YdCɆ{}|%6&&&l>ɘwމ{nef a!,0+E3%JJ"*, YM7߼y"'$$~//bޑwE>B.\?UW}^9hyAk坕wV1?d~Ez^LY,)Sni ky!vn؍%Ut7|-2"ĕ|<ǞG{ʲҠTJX;+ZZZHC!dnZ$8P+jVYjN՜՟?SdddHkҚfduʍ7W6Gmsa.Ut7|-98W+<zށ gqF*:*:*:7bn܈4+h0 H%$%G(Kpڠ6 7̀0Fri;i899VVV{پgSTNQ%mI[?OS!a ߀tAt,`=nݾﻟ"+z8䇓_y9N2 vpBۿfꛩVVV111׵_~qk]YYmh}B'ñ"N L%STVoͷktɭ[>ǝkҧOƇUZ'!$/K7HCF^MB$΍s|CpXmI[ҖhI_H_H_4o4!C ˢE/ceΛa l-L/`69szvکk~Ao_4FzP oěܳgs!&\cccuiui_FJStg|9 N"Krxpxpxp?~>|G ɶi5մ)mJқ&ɏG#]=x+4hi@CWCWCS}/" 9 B\p<k՘1#Gz*.9GAtPugϼy?hP5*cTƨ V&42 :Cg2:V,No۾mx3fMvW_UU?eSjkk+T̩s6lOmOmOjjjkOS26flU9{q,S4AZP C7ZnhYRRݾvMX9a儕III{ވ7?:긐G!?7&M̕y K2,p^v...\zpib`b`b A9p:t`L1tf;=4O0@nZ%86@]c` A-P Ԃ^q:uPA0@v @ u т%AO0&=Gs2#>p;܎,E.E'RSBU?x[h moVB2$C2(,LDƾdά'$OJQА[|:ǃ <Y{QjJK]Oj;%<̖3[ po"d B(EE OXc23L9ӄ% K.],rO=?=p#~_,=2ys0sp^ۧݘvcڍx]C5~ߑCz2M,x6k5 Z3a[tna$DhV%(DEi&h~..E^ŚkZ /^0K7n&. oXD(Bpޢ-n<7_SSy潛r׹uA E M2'yVT{R7o5|j4>>Оv@ h-ݥ"/'̂̂222+6xאiqEmva䅑FvyiAptAGrD5|P_eecococ涛ێ90sg3-D 44\#9Grx݋w>`rBNPXɢ:!p" /h<ʦM0x `ʖ` $셽K/=b/ ;$v v,UpWDAQkzQEX0Y,Y,U˪ee2Yggdz2=}qK_| mUREW ^}f^/A @h "Ԑgyh,]:΀3 < JA#?hѦ f+wQBY~]oApKD( 6pm:&>ku:p"BC< ek>O @MD iH#n\"$B"> ԋJ"W P*M'$g1Ga< 4[dp* QtAtYK.!҅TTR!_Q@ z@?ωkT֨QEgY::t2Xg~<Ojhh7x7SpJѝ)e+8f;L&8q-QJTe{d{d{>k1,Ű>V={rwOI ǰ"  .b  `㷻vwzzzuyuyuy(ŠPmOh9Z'[}Qtg| RJ)Ep4}b>EH>r%5mM[  ehQkitD(3}Xa% % % [:l5j6lj}d4M4C!B!yL)2y|Y_ǖ 94 [oi>G%Xyp aj6`C'It6FZ9C9h6h+E漯++Vnf[{96dڐiRLK _,|Y[<ϡc:FZ @Qk{ uC'ZG 5eAcLi扒%'Jl=L{^;߸'"w5uҪҪ҄ 3fU۫Wm_`?h?~UW]\u<22ro#~1pJF8G[*neaai͞ :[Ln1$$d((趭۶nX`٣Gu%K]Zw ~ ?%.g㢢T!( &Q&Q&QZ{k#G-趠>C t.BWuuu_~uuJ)};msjOȺu#y|96)lR$#G0t߁ diir\N3g /P0`I$qbttt).S\222lmmg$H$<+ meA^@ ԑ:=hڳS;O2eAmmۮw>}RӮO;k k k#w=rWG~ppE:<)z .f]̺ɲɲ2-.]lrMM>}ntH!\'uQx\C921mLۄۄۄvr; 7Yfᛅ,S Ez^d¸/ >E<5dePebr!wXA-[45hk/ 0&s\m c{lPS_('{^;iNS?meQjJ6Na]I{޴7 0'ICrHUjTMpdDZ,a}3ړfi:B!$$aqojj='c1<( $+ BS ˰mӷM6}7s{$I~|ppVɭ[%qt. F;KI؄!'|Z~EW? Z75BP#ZEh5kfkKHH@@L0UñPH>q4iSޚz+ψ?#6QmF -6~a㇙GgyZCkh-D˅\Ut7|-O$luأGak_/C3C3C[oݾu{È#jjj9.웾o8pbLQkq8^?#111aB_XmZ\k| *p;M̕y#:sa\'8 j&MA4yI:,l*UG\\\|2}2}2]s)6e6lq!.AkQpʂ|X4H4J(Ds(QC\={#G4X,XbxDM՛2eeʔvSڑ6oAרg FazާuttO?N;#7o,ϩ̩̩%oV3EB^[,3]wu!4mdfgggTfTfT\ũ0MI4 |߀n &OyR&;Oi`G.ST>wx'l:ƕW`ӂ׾(5%D^#\$0 f,hM >@;ϝ wO;ΖP ZBFA11 /|]RS%W ^X''gݜ9us2\^Pp!+rwUW]w!t͑ǯk=nω'6lK-Ͷe2nZEV YGH99_]~joުЂz D0r@7P![ŬY*U4hT[[+[,[,[ F`Fln@shy/eMF5dZZZ4C>䳈L/# H2U2U2}i6mJ۴i;vmNۜ9-/-/-/yp?x2l˰-r/}PaII 8\ 0Vtg|y}^BoHEtڍv{}խziFĝwqKY?`X5X"Hޑw M}d %D2`lO>}'''w:u|c1X[4RS5ih^~S0S~7͕r\iĔ)SND<̿34>G+Zv\eTzTzTz+̎wBЄ AL~&?v ӨT(z@/ʏȊȊJA)(lԲQFG/fW.a4(nc[`Lpw;Y,')) 2!2 t4t4t4N~'%qI†B2#HVeeeԣSN5lj3fϘ=cӨ8C9׏{7 |`x. D@eFDiQhu8n7ԿԿ?ȟ"]7nZ@@!y*nO=Zku0`a@=^q*KF8A=X}c{ ׄk7FܐID;PB-dOG=t+-7Znmz303Ew߃"w n-< OB+WR.]m`DS"!0"dlV/_0ZYY87#pnݪ>{jjjo[[[[[[vNI9)'Ut(Bp Bΐ3 8qOZބpS#w)^}Ȃ, ZV9 Wٙ[CZ⮸+p΢TSL1ŴR}FXEm0[DhOƓB8P *A% !3P#U Wp, sckcm]iYiYi.]λW_|uP֣h=uNI0d"J|؁؁ T=zЌ3f̘a8pXK{K{K-[z,X5}M_S=F :`3V%A^cppTHԺVuZo߿}ۆnm(z^} ogSҔ4% ^7trr14c(ڊԞS{s)A|!_>V,XYp /Xּ5kh!ҫU~7yhg >(ȃ<ȃGAg ݙ"_F^#\AZ!!M[RhRh5fc3:::֞=]{ZFg_9%kNO˟? }B'MiQk(H*//g滛nBX;`?U000Wܳgq}}mi[V(zp)r=E>M4ӆ O~(PDIIթÈ#:P۬YmsQBQBQ݂w \]]>}Dҥt)ZVǃ ."!~F)+rKЖ-Aƚƚƚpo_; v@ i4COv??<~؆am(>Z|(}M_ '|G-F&FMx&ghqZwlȱ!džtZiE0~?'Ilz?;t%oؿa 9H9 RCj7sc +{:x:x:8vrةnnܺ>/mۢE \+hFEN#+\ʊ0;;;;;}t2]rW DumN؜9S\\|.ǻOEv] .R!H}}=+w 5HJ&4Ac`8 {bOֲ/-i +ߌ34Maqݙ"_F^p6{P.肮P~ςy"Z.N–++a22O2DH01o-k-k-l-[֠֠OƓdY,Y_Wh2MɬeɤI'YĠĠĠFՍ/`%" 9 |BƏ?j(^{ׇG(=n6Mhõkrg^ϼɞ ="="=B& ;x2h/ʧl=z5wj_m܉s'\sn.O~jS+Ά5p'ip_{o` L/#_UPU.K`́9nQ~~~h~h~h^ӽ{Möm Ɩt Hr2e"7ȹpzC'Y'Y'Y3gC2۶`mLk5zGmz^{_O|=DvuN;z9)SVUUUp3 7(G葢;SKpl4 oasS  0dwyr [vJ)mMٖ;SkGaeaeai˧-lll u:KF֍Y[[[k[k[kkZiϹs=ʞwA}2EHWSwV9d[jn],Y]NwTS9 q$$$8\ۤIo:x=.]3giqQk*#~;nee5z董l=җ/O_^kRkRkR2dNɜ:tLO0=Ahy d"H&L 3ݍ"_\p<g&.lC*UFǍmw1@@!5CjTWWmump'(2 117r!)UT@5GQso }QEꠎX+bm-M~(QMMM6ڴkcee;/v^ 7VnE=(Bp(PjBM 6ڐkCXyPAa5j?Yxg1JI,ϛ&k2$zH7 8TuyOfԋKunM+$Kp2D"9L~ooon {Pf(!!8qN;4^$M&XcŎ D.O+b b;v":!:!Z0_ Sp U TQ:J<.o™ g.d-o<Ɠ*Εs\' ~┅U PV8 '\9y>..nrR;ԎeVSSp* EI'M5פ^h~4?jZ1J\ 8:NS!!xBI$BqH!(r YZX kl'I|||6~ ' 0[˭ֲЭV D+c>pvvv...aM|g~ʲʲ2f'=BQ?~&5(5(5h 5lll(QN :pnA1⊵A=')H\~.?YpdAԷo?ie ItP δ3NDijijiz999a?8 43^B4H|AY+W4Yk2eLj,8 _^5Rw ~3.^x⥂F 2Li9-7d(:sݹoؿkվҾҾBI$O'i,i,i,ѭ&QS2=(zP4{;쳳Br&E\)B)HcvFFTj*uqq^?m 8 4[`KGwIȄ !jέVr+;tۊȑ"8Gh`5J6+çGO4IiB3uY΀0hM"LǿoxTQuuuoFkXwz5F>Vx)0; ='@ < O“  ###CCCEHeYoi#m$m|)m˩Leddk򚼆@5TC`d%P%,=yN===ƻd#B{t}>TXOF&i ۳gzz?RLۀ;l cx7x*d YXV jdE"^",GpG9Iav-X>{6R&C2$-iSq* q ZA+ȄL,Pҡē'YNAI$V<6܆h<ƓBR$DIb{`jjȼy#sRKjIpƶy8#Jw9Llz_}]h,e AnsWpe\=AO 3<9*lTب0ڈ6P*@B %1Rp&`w^***uz^{q6m8΀3~>}3r.]8Fh48 nXհaUA_uQp /{lo*Ss?8c.F]X:J|ƇyQ1b%?\ / ;*)*)*)&Pt;&Xύ?UaeɲdYo:::j=z|3 Usss?֠T4TD& .E/KT*Q%;"cWƯkwww` ƊHCVlC޾6؀A`[5PC+h`WSSSY|8K/7Zo^xp>GL/#_C92̾҆ MM*66f*U5%jnnn5vkX,,,| 4x*8q^y<`=p}fnv]ݳv=m ƫqRNI?;iwcSB[h*\\\=== Huuuyyy̛k%u>} N23xV`VHCFCQgo[v"ujԩQFL3222(-yK2##cmG,XvډkMZ0iQQQMAd/ ~w֧ZZB5V5V55j,X~_}SMarˉЈЈp5r5r5b헝Yvf,Isi(b[ n0F"v@h#D8dV>|.\beWSSD̼(ݥ"El.܅B9 ^z^W^I5YMC4ݰzcHDcpM{x/\lZ5jZ#SdLQ*JEjƫg'd111}6:mtt_} 5f.ݥ"/;CH 0iii%%%%%%եK9s>M7=<$?ؒcK2K /TW<;,pЁApW+TFeT0FqtJJJ_"#d r!w/KYKߟ'NݩP4l|ق-ز"9qN_6~% 4g ̈Vjppp=== C,nOSxa'Uy pMn!審WclI[mxF.i&ϵ-LX*OmrOc@kRLSi FN]lٓ7tٯ6Aѩ\fSy& ~C.P\IENDB`