[Numpy-svn] r3719 - in branches/multicore: . numpy/core numpy/core/src numpy/core/tests numpy/distutils numpy/distutils/command numpy/doc numpy/doc/swig numpy/f2py numpy/testing

numpy-svn at scipy.org numpy-svn at scipy.org
Wed Apr 18 14:32:51 EDT 2007


Author: eric
Date: 2007-04-18 13:32:47 -0500 (Wed, 18 Apr 2007)
New Revision: 3719

Modified:
   branches/multicore/
   branches/multicore/numpy/core/records.py
   branches/multicore/numpy/core/src/scalartypes.inc.src
   branches/multicore/numpy/core/tests/test_scalarmath.py
   branches/multicore/numpy/distutils/command/build_ext.py
   branches/multicore/numpy/distutils/system_info.py
   branches/multicore/numpy/doc/pep_buffer.txt
   branches/multicore/numpy/doc/swig/numpy.i
   branches/multicore/numpy/doc/swig/numpy_swig.html
   branches/multicore/numpy/doc/swig/numpy_swig.pdf
   branches/multicore/numpy/doc/swig/numpy_swig.txt
   branches/multicore/numpy/f2py/capi_maps.py
   branches/multicore/numpy/testing/numpytest.py
   branches/multicore/site.cfg.example
Log:
Merged revisions 3705-3718 via svnmerge from 
http://svn.scipy.org/svn/numpy/trunk

........
  r3706 | oliphant | 2007-04-11 21:02:44 -0500 (Wed, 11 Apr 2007) | 1 line
  
  Add example to buffer interface.
........
  r3707 | oliphant | 2007-04-12 03:37:38 -0500 (Thu, 12 Apr 2007) | 1 line
  
  Fixes to pep_buffer.txt
........
  r3708 | oliphant | 2007-04-12 03:38:23 -0500 (Thu, 12 Apr 2007) | 1 line
  
  Fix scalar creation function so it can take sequences.
........
  r3709 | oliphant | 2007-04-12 03:42:21 -0500 (Thu, 12 Apr 2007) | 1 line
  
  Add check for fix to allowing types to create arrays.
........
  r3710 | timl | 2007-04-13 00:49:41 -0500 (Fri, 13 Apr 2007) | 1 line
  
  remove unneeded semi-colon, add missing import, whitespace cleanups
........
  r3711 | oliphant | 2007-04-13 01:55:55 -0500 (Fri, 13 Apr 2007) | 1 line
  
  A few more changes to pep_buffer.txt
........
  r3712 | wfspotz at sandia.gov | 2007-04-13 12:04:02 -0500 (Fri, 13 Apr 2007) | 1 line
  
  Fixed typo in documentation
........
  r3713 | wfspotz at sandia.gov | 2007-04-13 15:38:36 -0500 (Fri, 13 Apr 2007) | 1 line
  
  Reformatted numpy.i routines descriptions
........
  r3714 | wfspotz at sandia.gov | 2007-04-13 15:44:24 -0500 (Fri, 13 Apr 2007) | 1 line
  
  Updated date, example function documentation and python links
........
  r3715 | rkern | 2007-04-14 23:38:59 -0500 (Sat, 14 Apr 2007) | 1 line
  
  Fix command dependencies for build_ext. This should fix a number of problems where the full 'build_src build_clib build_ext' chain of commands needed to be specified.
........
  r3716 | rkern | 2007-04-14 23:46:07 -0500 (Sat, 14 Apr 2007) | 1 line
  
  Add another place to check for configuration, namely ~/.numpy-site.cfg, to help automatic installation where one can't edit the source checkout. I've added the alternate name to make it hidden because that's just considerate.
........
  r3717 | cookedm | 2007-04-16 23:54:49 -0500 (Mon, 16 Apr 2007) | 1 line
  
  Sort module names when running tests
........
  r3718 | pearu | 2007-04-17 05:34:54 -0500 (Tue, 17 Apr 2007) | 1 line
  
  f2py: support for assumed shape arrays of fortran callback functions (will not work with python callback functions, for instance).
........



Property changes on: branches/multicore
___________________________________________________________________
Name: svnmerge-integrated
   - /branches/distutils-revamp:1-2752 /trunk:1-3704
   + /branches/distutils-revamp:1-2752 /trunk:1-3718

Modified: branches/multicore/numpy/core/records.py
===================================================================
--- branches/multicore/numpy/core/records.py	2007-04-17 10:34:54 UTC (rev 3718)
+++ branches/multicore/numpy/core/records.py	2007-04-18 18:32:47 UTC (rev 3719)
@@ -6,6 +6,7 @@
 import numerictypes as nt
 import types
 import os
+import sys
 
 ndarray = sb.ndarray
 
@@ -128,7 +129,7 @@
         except AttributeError:
             pass
         fielddict = nt.void.__getattribute__(self, 'dtype').fields
-        res = fielddict.get(attr,None)
+        res = fielddict.get(attr, None)
         if res:
             obj = self.getfield(*res[:2])
             # if it has fields return a recarray,
@@ -146,15 +147,15 @@
 
     def __setattr__(self, attr, val):
         if attr in ['setfield', 'getfield', 'dtype']:
-            raise AttributeError, "Cannot set '%s' attribute" % attr;
+            raise AttributeError, "Cannot set '%s' attribute" % attr
         try:
-            return nt.void.__setattr__(self,attr,val)
+            return nt.void.__setattr__(self, attr, val)
         except AttributeError:
             pass
-        fielddict = nt.void.__getattribute__(self,'dtype').fields
-        res = fielddict.get(attr,None)
+        fielddict = nt.void.__getattribute__(self, 'dtype').fields
+        res = fielddict.get(attr, None)
         if res:
-            return self.setfield(val,*res[:2])
+            return self.setfield(val, *res[:2])
         else:
             raise AttributeError, "'record' object has no "\
                   "attribute '%s'" % attr
@@ -187,7 +188,7 @@
 
     def __getattribute__(self, attr):
         try:
-            return object.__getattribute__(self,attr)
+            return object.__getattribute__(self, attr)
         except AttributeError: # attr must be a fieldname
             pass
         fielddict = ndarray.__getattribute__(self,'dtype').fields
@@ -232,7 +233,7 @@
             res = fielddict[attr][:2]
         except (TypeError,KeyError):
             raise AttributeError, "record array has no attribute %s" % attr
-        return self.setfield(val,*res)
+        return self.setfield(val, *res)
 
     def __getitem__(self, indx):
         obj = ndarray.__getitem__(self, indx)
@@ -240,10 +241,10 @@
             return obj.view(ndarray)
         return obj
 
-    def field(self,attr, val=None):
-        if isinstance(attr,int):
+    def field(self, attr, val=None):
+        if isinstance(attr, int):
             names = ndarray.__getattribute__(self,'dtype').names
-            attr=names[attr]
+            attr = names[attr]
 
         fielddict = ndarray.__getattribute__(self,'dtype').fields
 
@@ -304,7 +305,7 @@
             if issubclass(obj.dtype.type, nt.flexible):
                 formats += `obj.itemsize`
             formats += ','
-        formats=formats[:-1]
+        formats = formats[:-1]
 
     if dtype is not None:
         descr = sb.dtype(dtype)
@@ -370,7 +371,7 @@
 
     nfields = len(recList[0])
     if formats is None and dtype is None:  # slower
-        obj = sb.array(recList,dtype=object)
+        obj = sb.array(recList, dtype=object)
         arrlist = [sb.array(obj[...,i].tolist()) for i in xrange(nfields)]
         return fromarrays(arrlist, formats=formats, shape=shape, names=names,
                           titles=titles, aligned=aligned, byteorder=byteorder)

Modified: branches/multicore/numpy/core/src/scalartypes.inc.src
===================================================================
--- branches/multicore/numpy/core/src/scalartypes.inc.src	2007-04-17 10:34:54 UTC (rev 3718)
+++ branches/multicore/numpy/core/src/scalartypes.inc.src	2007-04-18 18:32:47 UTC (rev 3719)
@@ -1761,6 +1761,7 @@
         }
 
         arr = PyArray_FromAny(obj, typecode, 0, 0, FORCECAST, NULL);
+        if ((arr==NULL) || (PyArray_NDIM(arr) > 0)) return arr;
         robj = PyArray_Return((PyArrayObject *)arr);
 
  finish:

Modified: branches/multicore/numpy/core/tests/test_scalarmath.py
===================================================================
--- branches/multicore/numpy/core/tests/test_scalarmath.py	2007-04-17 10:34:54 UTC (rev 3718)
+++ branches/multicore/numpy/core/tests/test_scalarmath.py	2007-04-18 18:32:47 UTC (rev 3719)
@@ -32,6 +32,12 @@
                        val.dtype.char == valo.dtype.char, \
                        "error with (%d,%d)" % (k,l)
 
+    def check_type_create(self, level=1):
+        for k, atype in enumerate(types):
+            a = array([1,2,3],atype)
+            b = atype([1,2,3])
+            assert_equal(a,b)
+
 class test_power(NumpyTestCase):
     def check_small_types(self):
         for t in [N.int8, N.int16]:

Modified: branches/multicore/numpy/distutils/command/build_ext.py
===================================================================
--- branches/multicore/numpy/distutils/command/build_ext.py	2007-04-17 10:34:54 UTC (rev 3718)
+++ branches/multicore/numpy/distutils/command/build_ext.py	2007-04-18 18:32:47 UTC (rev 3719)
@@ -47,11 +47,10 @@
             return
 
         # Make sure that extension sources are complete.
-        for ext in self.extensions:
-            if not all_strings(ext.sources):
-                self.run_command('build_src')
+        self.run_command('build_src')
 
         if self.distribution.has_c_libraries():
+            self.run_command('build_clib')
             build_clib = self.get_finalized_command('build_clib')
             self.library_dirs.append(build_clib.build_clib)
         else:

Modified: branches/multicore/numpy/distutils/system_info.py
===================================================================
--- branches/multicore/numpy/distutils/system_info.py	2007-04-17 10:34:54 UTC (rev 3718)
+++ branches/multicore/numpy/distutils/system_info.py	2007-04-18 18:32:47 UTC (rev 3719)
@@ -58,7 +58,7 @@
 The file 'site.cfg' is looked for in
 
 1) Directory of main setup.py file being run.
-2) Home directory of user running the setup.py file (Not implemented yet)
+2) Home directory of user running the setup.py file as ~/.numpy-site.cfg
 3) System wide directory (location of this file...)
 
 The first one found is used to get system configuration options The
@@ -349,7 +349,9 @@
         defaults['src_dirs'] = os.pathsep.join(default_src_dirs)
         defaults['search_static_first'] = str(self.search_static_first)
         self.cp = ConfigParser.ConfigParser(defaults)
-        self.files = get_standard_file('site.cfg')
+        self.files = []
+        self.files.extend(get_standard_file('.numpy-site.cfg'))
+        self.files.extend(get_standard_file('site.cfg'))
         self.parse_config_files()
         self.search_static_first = self.cp.getboolean(self.section,
                                                       'search_static_first')

Modified: branches/multicore/numpy/doc/pep_buffer.txt
===================================================================
--- branches/multicore/numpy/doc/pep_buffer.txt	2007-04-17 10:34:54 UTC (rev 3718)
+++ branches/multicore/numpy/doc/pep_buffer.txt	2007-04-18 18:32:47 UTC (rev 3719)
@@ -73,7 +73,7 @@
 
    NumPy uses the notion of constant striding in each dimension as its
    basic concept of an array. With this concept, a simple sub-region
-   of a larger array can be described without copying the data.   T
+   of a larger array can be described without copying the data.   
    Thus, stride information is the additional information that must be
    shared. 
 
@@ -151,7 +151,7 @@
 
 ::
 
-    typedef int (*getbufferproc)(PyObject *obj, struct bufferinfo *view, int flags) 
+    typedef int (*getbufferproc)(PyObject *obj, PyBuffer *view, int flags) 
 
 This function returns 0 on success and -1 on failure (and raises an
 error). The first variable is the "exporting" object.  The second
@@ -161,59 +161,83 @@
 be called with NULL.
 
 The third argument indicates what kind of buffer the exporter is
-allowed to return.  It tells the exporter what elements the bufferinfo
-structure the consumer is going to make use of.  This allows the
-exporter to simplify and/or raise an error if it can't support the
-operation.
+allowed to return.  It essentially tells the exporter what kind of
+memory area the consumer can deal with.  It also indicates what
+members of the PyBuffer structure the consumer is going to care about.
 
-It also allows the caller to make a request for a simple "view" and
-receive it or have an error raised if it's not possible. 
+The exporter can use this information to simplify how much of the PyBuffer
+structure is filled in and/or raise an error if the object can't support
+a simpler view of its memory. 
 
-All of the following assume that at least buf, len, and readonly will
-be utilized by the caller.
+Thus, the caller can request a simple "view" and either receive it or
+have an error raised if it is not possible.
 
-BUF_SIMPLE
-   The returned buffer will only be assumed to be readable (the object
-   may or may not have writeable memory).  Only the buf, len, and
-   readonly variables may be accessed. The format will be assumed to
-   be unsigned bytes.  This is a "stand-alone" flag constant.  It
-   never needs to be |'d to the others.
+All of the following assume that at least buf, len, and readonly
+will always be utilized by the caller.  
 
-BUF_WRITEABLE
-   The returned buffer must be writeable.  If it cannot be, then raise
-   an error.
+Py_BUF_SIMPLE 
 
-BUF_READONLY
-   The returned buffer must be readonly and the underlying object
-   should make its memory readonly.  If it cannot do that, then an
-   error should be raised if this flag is requested.
+   The returned buffer will be assumed to be readable (the object may
+   or may not have writeable memory).  Only the buf, len, and readonly
+   variables may be accessed. The format will be assumed to be
+   unsigned bytes .  This is a "stand-alone" flag constant.  It never
+   needs to be |'d to the others.  The exporter will raise an 
+   error if it cannot provide such a contiguous buffer. 
 
-BUF_FORMAT
-   The consumer will be using the format string information so make
-   sure that member is filled correctly.
+Py_BUF_WRITEABLE
 
-BUF_SHAPE   
-   The consumer can (and might) make use of using the ndims and shape
-   members of the structure so make sure they are filled in correctly.
+   The returned buffer must be writeable.  If it is not writeable,
+   then raise an error.
+
+Py_BUF_READONLY 
+
+   The returned buffer must be readonly.  If the object is already
+   read-only or it can make its memory read-only (and there are no
+   other views on the object) then it should do so and return the
+   buffer information.  If the object does not have read-only memory
+   (or cannot make it read-only), then an error should be raised.
+
+Py_BUF_FORMAT
+        
+   The returned buffer must have true format information.  This would 
+   be used when the consumer is going to be checking for what 'kind'
+   of data is actually stored.  An exporter should always be able
+   to provide this information if requested. 
+
+Py_BUF_SHAPE 
+
+   The returned buffer must have shape information.  The memory will
+   be assumed C-style contiguous (last dimension varies the fastest).
+   The exporter may raise an error if it cannot provide this kind 
+   of contiguous buffer. 
    
-BUF_STRIDES (implies BUF_SHAPE)
-   The consumer can (and might) make use of the strides member of the
-   structure (as well as ndims and shape)
+Py_BUF_STRIDES (implies Py_BUF_SHAPE) 
 
-BUF_OFFSETS (implies BUF_STRIDES)
-   The consumer can (and might) make use of the suboffsets member (as
-   well as ndims, shape, and strides)
+   The returned buffer must have strides information. This would be
+   used when the consumer can handle strided, discontiguous arrays. 
+   Handling strides automatically assumes you can handle shape. 
+   The exporter may raise an error if cannot provide a strided-only
+   representation of the data (i.e. without the suboffsets). 
 
-BUF_FULL
-   This is the same as BUF_OFFSETS | BUF_FORMAT 
+Py_BUF_OFFSETS (implies Py_BUF_STRIDES)
 
-Thus, the consumer simply wanting an contiguous chunk of bytes from
-the object would use BUF_SIMPLE, while a consumer that understands
-how to make use of the most complicated cases would use BUF_FULL.
+   The returned buffer must have suboffsets information.  This would
+   be used when the consumer can handle indirect array referencing
+   implied by these suboffsets.  
 
+Py_BUF_FULL (Py_BUF_OFFSETS | Py_BUF_WRITEABLE | Py_BUF_FORMAT)
+
+Thus, the consumer simply wanting a contiguous chunk of bytes from
+the object would use Py_BUF_SIMPLE, while a consumer that understands
+how to make use of the most complicated cases could use Py_BUF_INDIRECT.
+
+If format information is going to be probed, then Py_BUF_FORMAT must
+be |'d to the flags otherwise the consumer assumes it is unsigned
+bytes.
+
 There is a C-API that simple exporting objects can use to fill-in the
 buffer info structure correctly according to the provided flags if a
-contiguous chunk of memory is all that can be exported.
+contiguous chunk of "unsigned bytes" is all that can be exported.
 
 
 The bufferinfo structure is::
@@ -222,21 +246,22 @@
        void *buf;
        Py_ssize_t len;
        int readonly;
-       char *format;
+       const char *format;
        int ndims;
        Py_ssize_t *shape;
        Py_ssize_t *strides;
        Py_ssize_t *suboffsets;
+       int itemsize;
        void *internal;
-  };
+  } PyBuffer;
 
-Before calling this function, the bufferinfo structure can be filled with
-whatever.  Upon return from getbufferproc, the bufferinfo structure is filled in
-with relevant information about the buffer.  This same bufferinfo
-structure must be passed to bf_releasebuffer (if available) when the
-consumer is done with the memory. The caller is responsible for
-keeping a reference to obj until releasebuffer is called (i.e. this
-call does not alter the reference count of obj). 
+Before calling this function, the bufferinfo structure can be filled
+with whatever.  Upon return from getbufferproc, the bufferinfo
+structure is filled in with relevant information about the buffer.
+This same bufferinfo structure must be passed to bf_releasebuffer (if
+available) when the consumer is done with the memory. The caller is
+responsible for keeping a reference to obj until releasebuffer is
+called (i.e. this call does not alter the reference count of obj).
 
 The members of the bufferinfo structure are:
 
@@ -267,18 +292,19 @@
 shape
     an array of ``Py_ssize_t`` of length ``ndims`` indicating the
     shape of the memory as an N-D array.  Note that ``((*shape)[0] *
-    ... * (*shape)[ndims-1])*itemsize = len``.
+    ... * (*shape)[ndims-1])*itemsize = len``.  If ndims is 0 (indicating
+    a scalar), then this must be NULL.
 
 strides 
     address of a ``Py_ssize_t*`` variable that will be filled with a
-    pointer to an array of ``Py_ssize_t`` of length ``*ndims``
-    indicating the number of bytes to skip to get to the next element
-    in each dimension.  If this is not requested by the caller
-    (BUF_STRIDES is not set), then this member of the structure will
-    not be used and the consumer is assuming the array is C-style
-    contiguous.  If this is not the case, then an error should be
-    raised.  If this member is requested by the caller (BUF_STRIDES is
-    set), then it must be filled in.
+    pointer to an array of ``Py_ssize_t`` of length ``ndims`` (or NULL
+    if ndims is 0).  indicating the number of bytes to skip to get to
+    the next element in each dimension.  If this is not requested by
+    the caller (BUF_STRIDES is not set), then this member of the
+    structure will not be used and the consumer is assuming the array
+    is C-style contiguous.  If this is not the case, then an error
+    should be raised.  If this member is requested by the caller
+    (BUF_STRIDES is set), then it must be filled in.
 
 
 suboffsets
@@ -315,6 +341,12 @@
     the location of the starting pointer directly (i.e. buf would
     be modified).  
 
+itemsize
+    This is a storage for the itemsize of each element of the shared
+    memory.  It can be obtained using PyBuffer_SizeFromFormat but an
+    exporter may know it without making this call and thus storing it
+    is more convenient and faster. 
+
 internal
     This is for use internally by the exporting object.  For example,
     this might be re-cast as an integer by the exporter and used to 
@@ -336,7 +368,7 @@
 interface call. The caller is responsible for the memory of the
 bufferinfo structure itself. 
 
-``typedef int (*releasebufferproc)(PyObject *obj, struct bufferinfo *view)``
+``typedef int (*releasebufferproc)(PyObject *obj, PyBuffer *view)``
     Callers of getbufferproc must make sure that this function is
     called when memory previously acquired from the object is no
     longer needed.  The exporter of the interface must make sure that
@@ -373,7 +405,8 @@
 
 ::
 
-    int PyObject_GetBuffer(PyObject *obj, struct bufferinfo *view, int flags)
+    int PyObject_GetBuffer(PyObject *obj, PyBuffer *view, 
+                           int flags)  
 
 This is a C-API version of the getbuffer function call.  It checks to
 make sure object has the required function pointer and issues the
@@ -381,7 +414,7 @@
 success.
 
 ::
-    int PyObject_ReleaseBuffer(PyObject *obj, struct bufferinfo *view)
+    int PyObject_ReleaseBuffer(PyObject *obj, PyBuffer *view)
 
 This is a C-API version of the releasebuffer function call.  It checks
 to make sure the object has the required function pointer and issues
@@ -395,45 +428,38 @@
 
 Return a memory-view object from an object that defines the buffer interface.
 
-A memory-view object is an extended buffer object that should replace
-the buffer object in Python 3K.  It's C-structure is::
+A memory-view object is an extended buffer object that could replace
+the buffer object (but doesn't have to).  It's C-structure is
 
+::
+
   typedef struct {
       PyObject_HEAD
-      PyObject *base;
-      struct bufferinfo view;
-      int itemsize;
-      int flags;
+      PyObject *base;      
+      int ndims;
+      Py_ssize_t *starts;  /* slice starts */
+      Py_ssize_t *stops;   /* slice stops */
+      Py_ssize_t *steps;   /* slice steps */
   } PyMemoryViewObject;
 
-This is very similar to the current buffer object except offset has
-been removed because ptr can just be modified by offset and a single
-offset is not sufficient for the sub-offsets.  Also the hash has been
-removed because using the buffer object as a hash even if it is
-read-only is rarely useful.
+This is functionally similar to the current buffer object except only
+a reference to base is kept.  The actual memory for base must be
+re-grabbed using the buffer-protocol, whenever it is needed. 
 
-Also, the format, ndims, shape, strides, and suboffsets have been
-added. These additions will allow multi-dimensional slicing of the
-memory-view object which can be added at some point.  This object
-always owns it's own shape, strides, and suboffsets arrays and it's
-own format string, but always borrows the memory from the object
-pointed to by base.
+The getbuffer and releasebuffer for this object use the underlying
+base object (adjusted using the slice information).  If the number of
+dimensions of the base object (or the strides or the size) has changed
+when a new view is requested, then the getbuffer will trigger an error. 
 
-The itemsize is a convenience and specifies the number of bytes
-indicated by the format string if positive.  
+This memory-view object will support mult-dimensional slicing.  Slices
+of the memory-view object are other memory-view objects. When an
+"element" from the memory-view is returned it is always a tuple of
+bytes object + format string which can then be interpreted using the
+struct module if desired.
 
-This object never reallocates ptr, shape, strides, subboffsets or
-format and therefore does not need to keep track of how many views it
-has exported.
-
-It exports a view using the base object.  It releases a view by
-releasing the view on the base object.  Because, it will never
-re-allocate memory, it does not need to keep track of how many it has
-exported but simple reference counting will suffice.
-
 ::
 
-    int PyObject_SizeFromFormat(char *)
+    int PyBuffer_SizeFromFormat(const char *)
 
 Return the implied itemsize of the data-format area from a struct-style
 description.
@@ -441,60 +467,70 @@
 ::
 
     int PyObject_GetContiguous(PyObject *obj, void **buf, Py_ssize_t *len,
-                               int fortran)
+                               char **format, char fortran)
 
 Return a contiguous chunk of memory representing the buffer.  If a
 copy is made then return 1.  If no copy was needed return 0.  If an
 error occurred in probing the buffer interface, then return -1.  The
 contiguous chunk of memory is pointed to by ``*buf`` and the length of
 that memory is ``*len``.  If the object is multi-dimensional, then if
-fortran is 1, the first dimension of the underlying array will vary
-the fastest in the buffer.  If fortran is 0, then the last dimension
-will vary the fastest (C-style contiguous). If fortran is -1, then it
+fortran is 'F', the first dimension of the underlying array will vary
+the fastest in the buffer.  If fortran is 'C', then the last dimension
+will vary the fastest (C-style contiguous). If fortran is 'A', then it
 does not matter and you will get whatever the object decides is more
-efficient.
+efficient.  
 
 :: 
 
     int PyObject_CopyToObject(PyObject *obj, void *buf, Py_ssize_t len,
-                              int fortran)
+                              char fortran)
 
 Copy ``len`` bytes of data pointed to by the contiguous chunk of
 memory pointed to by ``buf`` into the buffer exported by obj.  Return
 0 on success and return -1 and raise an error on failure.  If the
 object does not have a writeable buffer, then an error is raised.  If
-fortran is 1, then if the object is multi-dimensional, then the data
+fortran is 'F', then if the object is multi-dimensional, then the data
 will be copied into the array in Fortran-style (first dimension varies
-the fastest).  If fortran is 0, then the data will be copied into the
-array in C-style (last dimension varies the fastest).  If fortran is -1, then
+the fastest).  If fortran is 'C', then the data will be copied into the
+array in C-style (last dimension varies the fastest).  If fortran is 'A', then
 it does not matter and the copy will be made in whatever way is more
 efficient.
 
-The last two C-API calls allow a standard way of getting data in and
+::
+
+    void PyBuffer_FreeMem(void *buf)
+
+This function frees the memory returned by PyObject_GetContiguous if a
+copy was made.  Do not call this function unless
+PyObject_GetContiguous returns a 1 indicating that new memory was
+created.
+
+
+These last three C-API calls allow a standard way of getting data in and
 out of Python objects into contiguous memory areas no matter how it is
 actually stored.  These calls use the extended buffer interface to perform
 their work. 
 
 ::
 
-    int PyObject_IsContiguous(struct bufferinfo *view, int fortran);
+    int PyBuffer_IsContiguous(PyBuffer *view, char fortran);
 
-Return 1 if the memory defined by the view object is C-style (fortran = 0)
-or Fortran-style (fortran = 1) contiguous.  Return 0 otherwise.
+Return 1 if the memory defined by the view object is C-style (fortran = 'C')
+or Fortran-style (fortran = 'A') contiguous.  Return 0 otherwise.
 
 ::
 
-    void PyObject_FillContiguousStrides(int *ndims, Py_ssize_t *shape,
+    void PyBuffer_FillContiguousStrides(int *ndims, Py_ssize_t *shape,
                                         int itemsize, 
-                                        Py_ssize_t *strides, int fortran)
+                                        Py_ssize_t *strides, char fortran)
 
 Fill the strides array with byte-strides of a contiguous (C-style if
 fortran is 0 or Fortran-style if fortran is 1) array of the given
 shape with the given number of bytes per element.
 
 ::
-    int PyObject_FillBufferInfo(struct bufferinfo *view, void *buf, 
-                                Py_ssize_t len, int readonly, int infoflags)
+    int PyBuffer_FillInfo(PyBuffer *view, void *buf, 
+                          Py_ssize_t len, int readonly, int infoflags)
 
 Fills in a buffer-info structure correctly for an exporter that can
 only share a contiguous chunk of memory of "unsigned bytes" of the
@@ -685,10 +721,12 @@
 =========
 
 Ex. 1
-----------
+-----------
 
 This example shows how an image object that uses contiguous lines might expose its buffer.::
 
+::
+
   struct rgba {
       unsigned char r, g, b, a;
   };
@@ -711,8 +749,10 @@
 
 So what does ImageObject's getbuffer do?  Leaving error checking out::
 
-  int Image_getbuffer(PyObject *self, struct bufferinfo *view, int flags) {
+::
 
+  int Image_getbuffer(PyObject *self, PyBuffer *view, int flags) {
+
       static Py_ssize_t suboffsets[2] = { -1, 0 };
 
       view->buf = self->lines;
@@ -733,7 +773,7 @@
   } 
 
 
-  int Image_releasebuffer(PyObject *self, struct bufferinfo *view) {
+  int Image_releasebuffer(PyObject *self, PyBuffer *view) {
       self->view_count--;
       return 0;
   }
@@ -746,19 +786,21 @@
 chunk of memory (which will never be re-allocated while the object is
 alive) would do that.
 
-int myobject_getbuffer(PyObject *self, struct bufferinfo *view, int flags) {
+::
 
-    void *buf;
-    Py_ssize_t len;
-    int readonly=0;
+  int myobject_getbuffer(PyObject *self, PyBuffer *view, int flags) {
+
+      void *buf;
+      Py_ssize_t len;
+      int readonly=0;
         
-    buf = /* Point to buffer */
-    len = /* Set to size of buffer */
-    readonly = /* Set to 1 if readonly */
+      buf = /* Point to buffer */
+      len = /* Set to size of buffer */
+      readonly = /* Set to 1 if readonly */
+  
+      return PyObject_FillBufferInfo(view, buf, len, readonly, flags);    
+  }
 
-    return PyObject_FillBufferInfo(view, buf, len, readonly, flags);    
-}
-
 /* No releasebuffer is necessary because the memory will never 
 be re-allocated so the locking mechanism is not needed
 */
@@ -769,8 +811,9 @@
 A consumer that wants to only get a simple contiguous chunk of bytes
 from a Python object, obj would do the following:
 
+::
 
-  struct bufferinfo view;
+  PyBuffer view;
   int ret;
       
   if (PyObject_GetBuffer(obj, &view, Py_BUF_SIMPLE) < 0) {
@@ -790,8 +833,37 @@
   }
   
 
+Ex. 4
+-----------
 
+A consumer that wants to be able to use any object's memory but is
+writing an algorithm that only handle contiguous memory could do the following:
 
+::
+
+    void *buf;
+    Py_ssize_t len;
+    char *format;
+
+    if (PyObject_GetContiguous(obj, &buf, &len, &format, 0) < 0) {
+       /* error return */
+    }
+
+    /* process memory pointed to by buffer if format is correct */
+
+    /* Optional: 
+    
+       if, after processing, we want to copy data from buffer back
+       into the the object  
+ 
+       we could do
+       */
+
+    if (PyObject_CopyToObject(obj, buf, len, 0) < 0) {
+           /*        error return */
+    }
+   
+
 Copyright
 =========
 

Modified: branches/multicore/numpy/doc/swig/numpy.i
===================================================================
--- branches/multicore/numpy/doc/swig/numpy.i	2007-04-17 10:34:54 UTC (rev 3718)
+++ branches/multicore/numpy/doc/swig/numpy.i	2007-04-18 18:32:47 UTC (rev 3719)
@@ -965,9 +965,9 @@
  * Swig complains about a syntax error for the following macros
  * expansions:
  */
-/*%numpy_typemaps(complex float,       NPY_CFLOAT     )
+/*%numpy_typemaps(complex float,  NPY_CFLOAT , int)
  */
-/*%numpy_typemaps(complex double,      NPY_CDOUBLE    )
+/*%numpy_typemaps(complex double, NPY_CDOUBLE, int)
  */
 /*%numpy_typemaps(complex long double, NPY_CLONGDOUBLE)
  */

Modified: branches/multicore/numpy/doc/swig/numpy_swig.html
===================================================================
--- branches/multicore/numpy/doc/swig/numpy_swig.html	2007-04-17 10:34:54 UTC (rev 3718)
+++ branches/multicore/numpy/doc/swig/numpy_swig.html	2007-04-18 18:32:47 UTC (rev 3719)
@@ -5,7 +5,7 @@
 <meta name="generator" content="Docutils 0.4: http://docutils.sourceforge.net/" />
 <title>numpy.i: a SWIG Interface File for NumPy</title>
 <meta name="author" content="Bill Spotz" />
-<meta name="date" content="4 April, 2007" />
+<meta name="date" content="13 April, 2007" />
 <style type="text/css">
 
 /*
@@ -302,7 +302,7 @@
 <tr class="field"><th class="docinfo-name">Institution:</th><td class="field-body">Sandia National Laboratories</td>
 </tr>
 <tr><th class="docinfo-name">Date:</th>
-<td>4 April, 2007</td></tr>
+<td>13 April, 2007</td></tr>
 </tbody>
 </table>
 <div class="contents topic">
@@ -363,6 +363,7 @@
 <pre class="literal-block">
 def rms(seq):
     """
+    rms: return the root mean square of a sequence
     rms(numpy.ndarray) -> double
     rms(list) -> double
     rms(tuple) -> double
@@ -453,19 +454,19 @@
 <p>The typemaps from <tt class="docutils literal"><span class="pre">numpy.i</span></tt> are responsible for the following lines
 of code: 12--20, 25 and 30.  Line 10 parses the input to the <tt class="docutils literal"><span class="pre">rms</span></tt>
 function.  From the format string <tt class="docutils literal"><span class="pre">"O:rms"</span></tt>, we can see that the
-argument list is expected to be a single python object (specified by
-the <tt class="docutils literal"><span class="pre">O</span></tt> before the colon) and whose pointer is stored in <tt class="docutils literal"><span class="pre">obj0</span></tt>.
-A number of functions, supplied by <tt class="docutils literal"><span class="pre">numpy.i</span></tt>, are called to make and
-check the (possible) conversion from a generic python object to a
-<a class="reference" href="http://numpy.scipy.org">NumPy</a> array.  These functions are explained in the section <a class="reference" href="#helper-functions">Helper
-Functions</a>, but hopefully their names are self-explanatory.  At line
-12 we use <tt class="docutils literal"><span class="pre">obj0</span></tt> to construct a <a class="reference" href="http://numpy.scipy.org">NumPy</a> array.  At line 17, we
-check the validity of the result: that it is non-null and that it has
-a single dimension of arbitrary length.  Once these states are
-verified, we extract the data buffer and length in lines 19 and 20 so
-that we can call the underlying C function at line 22.  Line 25
-performs memory management for the case where we have created a new
-array that is no longer needed.</p>
+argument list is expected to be a single <a class="reference" href="http://www.python.org">python</a> object (specified
+by the <tt class="docutils literal"><span class="pre">O</span></tt> before the colon) and whose pointer is stored in
+<tt class="docutils literal"><span class="pre">obj0</span></tt>.  A number of functions, supplied by <tt class="docutils literal"><span class="pre">numpy.i</span></tt>, are called
+to make and check the (possible) conversion from a generic <a class="reference" href="http://www.python.org">python</a>
+object to a <a class="reference" href="http://numpy.scipy.org">NumPy</a> array.  These functions are explained in the
+section <a class="reference" href="#helper-functions">Helper Functions</a>, but hopefully their names are
+self-explanatory.  At line 12 we use <tt class="docutils literal"><span class="pre">obj0</span></tt> to construct a <a class="reference" href="http://numpy.scipy.org">NumPy</a>
+array.  At line 17, we check the validity of the result: that it is
+non-null and that it has a single dimension of arbitrary length.  Once
+these states are verified, we extract the data buffer and length in
+lines 19 and 20 so that we can call the underlying C function at line
+22.  Line 25 performs memory management for the case where we have
+created a new array that is no longer needed.</p>
 <p>This code has a significant amount of error handling.  Note the
 <tt class="docutils literal"><span class="pre">SWIG_fail</span></tt> is a macro for <tt class="docutils literal"><span class="pre">goto</span> <span class="pre">fail</span></tt>, refering to the label at
 line 28.  If the user provides the wrong number of arguments, this
@@ -623,12 +624,12 @@
 </blockquote>
 <p>These are typically used in situations where in C/C++, you would
 allocate a(n) array(s) on the heap, and call the function to fill the
-array(s) values.  In python, the arrays are allocated for you and
+array(s) values.  In <a class="reference" href="http://www.python.org">python</a>, the arrays are allocated for you and
 returned as new array objects.</p>
 <p>Note that we support <tt class="docutils literal"><span class="pre">DATA_TYPE*</span></tt> argout typemaps in 1D, but not 2D
 or 3D.  This because of a quirk with the <a class="reference" href="http://www.swig.org">SWIG</a> typemap syntax and
 cannot be avoided.  Note that for these types of 1D typemaps, the
-python function will take a single argument representing <tt class="docutils literal"><span class="pre">DIM1</span></tt>.</p>
+<a class="reference" href="http://www.python.org">python</a> function will take a single argument representing <tt class="docutils literal"><span class="pre">DIM1</span></tt>.</p>
 </div>
 <div class="section">
 <h2><a class="toc-backref" href="#id7" id="output-arrays" name="output-arrays">Output Arrays</a></h2>
@@ -688,7 +689,7 @@
 </pre>
 <p>We could have implemented:</p>
 <pre class="literal-block">
-%numpy_typemaps(Py_complex , NPY_DOUBLE , int)
+%numpy_typemaps(Py_complex , NPY_CDOUBLE, int)
 %numpy_typemaps(npy_cfloat , NPY_CFLOAT , int)
 %numpy_typemaps(npy_cdouble, NPY_CDOUBLE, int)
 </pre>
@@ -696,9 +697,9 @@
 type <tt class="docutils literal"><span class="pre">Py_complex</span></tt>, <tt class="docutils literal"><span class="pre">npy_cfloat</span></tt> and <tt class="docutils literal"><span class="pre">npy_cdouble</span></tt>.  However, it
 seemed unlikely that there would be any independent (non-<a class="reference" href="http://www.python.org">python</a>,
 non-<a class="reference" href="http://numpy.scipy.org">NumPy</a>) application code that people would be using <a class="reference" href="http://www.swig.org">SWIG</a> to
-generate a python interface to, that also used these definitions for
-complex types.  More likely, these application codes will define their
-own complex types, or in the case of C++, use <tt class="docutils literal"><span class="pre">std::complex</span></tt>.
+generate a <a class="reference" href="http://www.python.org">python</a> interface to, that also used these definitions
+for complex types.  More likely, these application codes will define
+their own complex types, or in the case of C++, use <tt class="docutils literal"><span class="pre">std::complex</span></tt>.
 Assuming these data structures are compatible with <a class="reference" href="http://www.python.org">python</a> and
 <a class="reference" href="http://numpy.scipy.org">NumPy</a> complex types, <tt class="docutils literal"><span class="pre">%numpy_typemap</span></tt> expansions as above (with
 the user's complex type substituted for the first argument) should
@@ -745,57 +746,161 @@
 <div class="section">
 <h2><a class="toc-backref" href="#id12" id="routines" name="routines">Routines</a></h2>
 <blockquote>
-<dl class="docutils">
-<dt><strong>char* pytype_string(PyObject* py_obj)</strong></dt>
-<dd>Given a <tt class="docutils literal"><span class="pre">PyObject*</span></tt>, return a string describing its type.</dd>
-<dt><strong>char* typecode_string(int typecode)</strong></dt>
-<dd>Given a <a class="reference" href="http://numpy.scipy.org">NumPy</a> integer typecode, return a string describing the type.</dd>
-<dt><strong>int type_match(int actual_type, int desired_type)</strong></dt>
-<dd>Make sure input has correct <a class="reference" href="http://numpy.scipy.org">NumPy</a> type.  Allow character and
-byte to match.  Also allow int and long to match.  This is
-deprecated .  You should use <tt class="docutils literal"><span class="pre">PyArray_EquivTypenums()</span></tt> instead.</dd>
-<dt><strong>PyArrayObject* obj_to_array_no_conversion(PyObject* input, int typecode)</strong></dt>
-<dd>Given a <tt class="docutils literal"><span class="pre">PyObject*</span></tt>, cast it to a <tt class="docutils literal"><span class="pre">PyArrayObject*</span></tt> if legal.
-If not, set the python error string appropriately and return
-<tt class="docutils literal"><span class="pre">NULL</span></tt>.</dd>
-<dt><strong>PyArrayObject* obj_to_array_allow_conversion(PyObject* input, int typecode, int* is_new_object)</strong></dt>
-<dd>Convert the given <tt class="docutils literal"><span class="pre">PyObject*</span></tt> to a <a class="reference" href="http://numpy.scipy.org">NumPy</a> array with the given
-typecode.  On Success, return a valid <tt class="docutils literal"><span class="pre">PyArrayObject*</span></tt> with the
-correct type.  On failure, the python error string will be set and
-the routine returns <tt class="docutils literal"><span class="pre">NULL</span></tt>.</dd>
-<dt><strong>PyArrayObject* make_contiguous(PyArrayObject* ary, int* is_new_object, int min_dims, int max_dims)</strong></dt>
-<dd>Given a <tt class="docutils literal"><span class="pre">PyArrayObject*</span></tt>, check to see if it is contiguous.  If
-so, return the input pointer and flag it as not a new object.  If
-it is not contiguous, create a new <tt class="docutils literal"><span class="pre">PyArrayObject*</span></tt> using the
-original data, flag it as a new object and return the pointer.</dd>
-<dt><strong>PyArrayObject* obj_to_array_contiguous_allow_conversion(PyObject* input, int typecode, int* is_new_object)</strong></dt>
-<dd>Convert a given <tt class="docutils literal"><span class="pre">PyObject*</span></tt> to a contiguous <tt class="docutils literal"><span class="pre">PyArrayObject*</span></tt>
-of the specified type.  If the input object is not a contiguous
+<p><strong>pytype_string()</strong></p>
+<blockquote>
+<p>Return type: <tt class="docutils literal"><span class="pre">char*</span></tt></p>
+<p>Arguments:</p>
+<ul class="simple">
+<li><tt class="docutils literal"><span class="pre">PyObject*</span> <span class="pre">py_obj</span></tt>, a general <a class="reference" href="http://www.python.org">python</a> object.</li>
+</ul>
+<p>Return a string describing the type of <tt class="docutils literal"><span class="pre">py_obj</span></tt>.</p>
+</blockquote>
+<p><strong>typecode_string()</strong></p>
+<blockquote>
+<p>Return type: <tt class="docutils literal"><span class="pre">char*</span></tt></p>
+<p>Arguments:</p>
+<ul class="simple">
+<li><tt class="docutils literal"><span class="pre">int</span> <span class="pre">typecode</span></tt>, a <a class="reference" href="http://numpy.scipy.org">NumPy</a> integer typecode.</li>
+</ul>
+<p>Return a string describing the type corresponding to the <a class="reference" href="http://numpy.scipy.org">NumPy</a>
+<tt class="docutils literal"><span class="pre">typecode</span></tt>.</p>
+</blockquote>
+<p><strong>type_match()</strong></p>
+<blockquote>
+<p>Return type: <tt class="docutils literal"><span class="pre">int</span></tt></p>
+<p>Arguments:</p>
+<ul class="simple">
+<li><tt class="docutils literal"><span class="pre">int</span> <span class="pre">actual_type</span></tt>, the <a class="reference" href="http://numpy.scipy.org">NumPy</a> typecode of a <a class="reference" href="http://numpy.scipy.org">NumPy</a> array.</li>
+<li><tt class="docutils literal"><span class="pre">int</span> <span class="pre">desired_type</span></tt>, the desired <a class="reference" href="http://numpy.scipy.org">NumPy</a> typecode.</li>
+</ul>
+<p>Make sure that <tt class="docutils literal"><span class="pre">actual_type</span></tt> is compatible with
+<tt class="docutils literal"><span class="pre">desired_type</span></tt>.  For example, this allows character and
+byte types, or int and long types, to match.  This is now
+equivalent to <tt class="docutils literal"><span class="pre">PyArray_EquivTypenums()</span></tt>.</p>
+</blockquote>
+<p><strong>obj_to_array_no_conversion()</strong></p>
+<blockquote>
+<p>Return type: <tt class="docutils literal"><span class="pre">PyArrayObject*</span></tt></p>
+<p>Arguments:</p>
+<ul class="simple">
+<li><tt class="docutils literal"><span class="pre">PyObject*</span> <span class="pre">input</span></tt>, a general <a class="reference" href="http://www.python.org">python</a> object.</li>
+<li><tt class="docutils literal"><span class="pre">int</span> <span class="pre">typecode</span></tt>, the desired <a class="reference" href="http://numpy.scipy.org">NumPy</a> typecode.</li>
+</ul>
+<p>Cast <tt class="docutils literal"><span class="pre">input</span></tt> to a <tt class="docutils literal"><span class="pre">PyArrayObject*</span></tt> if legal, and ensure that
+it is of type <tt class="docutils literal"><span class="pre">typecode</span></tt>.  If <tt class="docutils literal"><span class="pre">input</span></tt> cannot be cast, or the
+<tt class="docutils literal"><span class="pre">typecode</span></tt> is wrong, set a <a class="reference" href="http://www.python.org">python</a> error and return <tt class="docutils literal"><span class="pre">NULL</span></tt>.</p>
+</blockquote>
+<p><strong>obj_to_array_allow_conversion()</strong></p>
+<blockquote>
+<p>Return type: <tt class="docutils literal"><span class="pre">PyArrayObject*</span></tt></p>
+<p>Arguments:</p>
+<ul class="simple">
+<li><tt class="docutils literal"><span class="pre">PyObject*</span> <span class="pre">input</span></tt>, a general <a class="reference" href="http://www.python.org">python</a> object.</li>
+<li><tt class="docutils literal"><span class="pre">int</span> <span class="pre">typecode</span></tt>, the desired <a class="reference" href="http://numpy.scipy.org">NumPy</a> typecode of the resulting
+array.</li>
+<li><tt class="docutils literal"><span class="pre">int*</span> <span class="pre">is_new_object</span></tt>, returns a value of 0 if no conversion
+performed, else 1.</li>
+</ul>
+<p>Convert <tt class="docutils literal"><span class="pre">input</span></tt> to a <a class="reference" href="http://numpy.scipy.org">NumPy</a> array with the given <tt class="docutils literal"><span class="pre">typecode</span></tt>.
+On success, return a valid <tt class="docutils literal"><span class="pre">PyArrayObject*</span></tt> with the correct
+type.  On failure, the <a class="reference" href="http://www.python.org">python</a> error string will be set and the
+routine returns <tt class="docutils literal"><span class="pre">NULL</span></tt>.</p>
+</blockquote>
+<p><strong>make_contiguous()</strong></p>
+<blockquote>
+<p>Return type: <tt class="docutils literal"><span class="pre">PyArrayObject*</span></tt></p>
+<p>Arguments:</p>
+<ul class="simple">
+<li><tt class="docutils literal"><span class="pre">PyArrayObject*</span> <span class="pre">ary</span></tt>, a <a class="reference" href="http://numpy.scipy.org">NumPy</a> array.</li>
+<li><tt class="docutils literal"><span class="pre">int*</span> <span class="pre">is_new_object</span></tt>, returns a value of 0 if no conversion
+performed, else 1.</li>
+<li><tt class="docutils literal"><span class="pre">int</span> <span class="pre">min_dims</span></tt>, minimum allowable dimensions.</li>
+<li><tt class="docutils literal"><span class="pre">int</span> <span class="pre">max_dims</span></tt>, maximum allowable dimensions.</li>
+</ul>
+<p>Check to see if <tt class="docutils literal"><span class="pre">ary</span></tt> is contiguous.  If so, return the input
+pointer and flag it as not a new object.  If it is not contiguous,
+create a new <tt class="docutils literal"><span class="pre">PyArrayObject*</span></tt> using the original data, flag it
+as a new object and return the pointer.</p>
+</blockquote>
+<p><strong>obj_to_array_contiguous_allow_conversion()</strong></p>
+<blockquote>
+<p>Return type: <tt class="docutils literal"><span class="pre">PyArrayObject*</span></tt></p>
+<p>Arguments:</p>
+<ul class="simple">
+<li><tt class="docutils literal"><span class="pre">PyObject*</span> <span class="pre">input</span></tt>, a general <a class="reference" href="http://www.python.org">python</a> object.</li>
+<li><tt class="docutils literal"><span class="pre">int</span> <span class="pre">typecode</span></tt>, the desired <a class="reference" href="http://numpy.scipy.org">NumPy</a> typecode of the resulting
+array.</li>
+<li><tt class="docutils literal"><span class="pre">int*</span> <span class="pre">is_new_object</span></tt>, returns a value of 0 if no conversion
+performed, else 1.</li>
+</ul>
+<p>Convert <tt class="docutils literal"><span class="pre">input</span></tt> to a contiguous <tt class="docutils literal"><span class="pre">PyArrayObject*</span></tt> of the
+specified type.  If the input object is not a contiguous
 <tt class="docutils literal"><span class="pre">PyArrayObject*</span></tt>, a new one will be created and the new object
-flag will be set.</dd>
-<dt><strong>int require_contiguous(PyArrayObject* ary)</strong></dt>
-<dd>Test whether a <tt class="docutils literal"><span class="pre">PyArrayObject*</span></tt> is contiguous.  If array is
-contiguous, return 1.  Otherwise, set the python error string and
-return 0.</dd>
-<dt><strong>int require_native(PyArray_Object* ary)</strong></dt>
-<dd>Require that a numpy array is not byte-swapped.  If the array is
-not byte-swapped, return 1.  Otherwise, set the python error string
-and return 0.</dd>
-<dt><strong>int require_dimensions(PyArrayObject* ary, int exact_dimensions)</strong></dt>
-<dd>Require the given <tt class="docutils literal"><span class="pre">PyArrayObject*</span></tt> to have a specified number of
-dimensions.  If the array has the specified number of dimensions,
-return 1.  Otherwise, set the python error string and return 0.</dd>
-<dt><strong>int require_dimensions_n(PyArrayObject* ary, int* exact_dimensions, int n)</strong></dt>
-<dd>Require the given <tt class="docutils literal"><span class="pre">PyArrayObject*</span></tt> to have one of a list of
-specified number of dimensions.  If the array has one of the
-specified number of dimensions, return 1.  Otherwise, set the
-python error string and return 0.</dd>
-<dt><strong>int require_size(PyArrayObject* ary, int* size, int n)</strong></dt>
-<dd>Require the given <tt class="docutils literal"><span class="pre">PyArrayObject*</span></tt> to have a specified shape.
-If the array has the specified shape, return 1.  Otherwise, set
-the python error string and return 0.</dd>
-</dl>
+flag will be set.</p>
 </blockquote>
+<p><strong>require_contiguous()</strong></p>
+<blockquote>
+<p>Return type: <tt class="docutils literal"><span class="pre">int</span></tt></p>
+<p>Arguments:</p>
+<ul class="simple">
+<li><tt class="docutils literal"><span class="pre">PyArrayObject*</span> <span class="pre">ary</span></tt>, a <a class="reference" href="http://numpy.scipy.org">NumPy</a> array.</li>
+</ul>
+<p>Test whether <tt class="docutils literal"><span class="pre">ary</span></tt> is contiguous.  If so, return 1.  Otherwise,
+set a <a class="reference" href="http://www.python.org">python</a> error and return 0.</p>
+</blockquote>
+<p><strong>require_native()</strong></p>
+<blockquote>
+<p>Return type: <tt class="docutils literal"><span class="pre">int</span></tt></p>
+<p>Arguments:</p>
+<ul class="simple">
+<li><tt class="docutils literal"><span class="pre">PyArray_Object*</span> <span class="pre">ary</span></tt>, a <a class="reference" href="http://numpy.scipy.org">NumPy</a> array.</li>
+</ul>
+<p>Require that <tt class="docutils literal"><span class="pre">ary</span></tt> is not byte-swapped.  If the array is not
+byte-swapped, return 1.  Otherwise, set a <a class="reference" href="http://www.python.org">python</a> error and
+return 0.</p>
+</blockquote>
+<p><strong>require_dimensions()</strong></p>
+<blockquote>
+<p>Return type: <tt class="docutils literal"><span class="pre">int</span></tt></p>
+<p>Arguments:</p>
+<ul class="simple">
+<li><tt class="docutils literal"><span class="pre">PyArrayObject*</span> <span class="pre">ary</span></tt>, a <a class="reference" href="http://numpy.scipy.org">NumPy</a> array.</li>
+<li><tt class="docutils literal"><span class="pre">int</span> <span class="pre">exact_dimensions</span></tt>, the desired number of dimensions.</li>
+</ul>
+<p>Require <tt class="docutils literal"><span class="pre">ary</span></tt> to have a specified number of dimensions.  If the
+array has the specified number of dimensions, return 1.
+Otherwise, set a <a class="reference" href="http://www.python.org">python</a> error and return 0.</p>
+</blockquote>
+<p><strong>require_dimensions_n()</strong></p>
+<blockquote>
+<p>Return type: <tt class="docutils literal"><span class="pre">int</span></tt></p>
+<p>Arguments:</p>
+<ul class="simple">
+<li><tt class="docutils literal"><span class="pre">PyArrayObject*</span> <span class="pre">ary</span></tt>, a <a class="reference" href="http://numpy.scipy.org">NumPy</a> array.</li>
+<li><tt class="docutils literal"><span class="pre">int*</span> <span class="pre">exact_dimensions</span></tt>, an array of integers representing
+acceptable numbers of dimensions.</li>
+<li><tt class="docutils literal"><span class="pre">int</span> <span class="pre">n</span></tt>, the length of <tt class="docutils literal"><span class="pre">exact_dimensions</span></tt>.</li>
+</ul>
+<p>Require <tt class="docutils literal"><span class="pre">ary</span></tt> to have one of a list of specified number of
+dimensions.  If the array has one of the specified number of
+dimensions, return 1.  Otherwise, set the <a class="reference" href="http://www.python.org">python</a> error string
+and return 0.</p>
+</blockquote>
+<p><strong>require_size()</strong></p>
+<blockquote>
+<p>Return type: <tt class="docutils literal"><span class="pre">int</span></tt></p>
+<p>Arguments:</p>
+<ul class="simple">
+<li><tt class="docutils literal"><span class="pre">PyArrayObject*</span> <span class="pre">ary</span></tt>, a <a class="reference" href="http://numpy.scipy.org">NumPy</a> array.</li>
+<li><tt class="docutils literal"><span class="pre">npy_int*</span> <span class="pre">size</span></tt>, an array representing the desired lengths of
+each dimension.</li>
+<li><tt class="docutils literal"><span class="pre">int</span> <span class="pre">n</span></tt>, the length of <tt class="docutils literal"><span class="pre">size</span></tt>.</li>
+</ul>
+<p>Require <tt class="docutils literal"><span class="pre">ary</span></tt> to have a specified shape.  If the array has the
+specified shape, return 1.  Otherwise, set the <a class="reference" href="http://www.python.org">python</a> error
+string and return 0.</p>
+</blockquote>
+</blockquote>
 </div>
 </div>
 <div class="section">
@@ -808,7 +913,7 @@
 <pre class="literal-block">
 double dot(int len, double* vec1, double* vec2);
 </pre>
-<p>The python interface that we want is:</p>
+<p>The <a class="reference" href="http://www.python.org">python</a> interface that we want is:</p>
 <pre class="literal-block">
 def dot(vec1, vec2):
     """
@@ -818,7 +923,7 @@
 <p>The problem here is that there is one dimension argument and two array
 arguments, and our typemaps are set up for dimensions that apply to a
 single array (in fact, <a class="reference" href="http://www.swig.org">SWIG</a> does not provide a mechanism for
-associating <tt class="docutils literal"><span class="pre">len</span></tt> with <tt class="docutils literal"><span class="pre">vec2</span></tt> that takes two python input
+associating <tt class="docutils literal"><span class="pre">len</span></tt> with <tt class="docutils literal"><span class="pre">vec2</span></tt> that takes two <a class="reference" href="http://www.python.org">python</a> input
 arguments).  The recommended solution is the following:</p>
 <pre class="literal-block">
 %apply (int DIM1, double* IN_ARRAY1) {(int len1, double* vec1),
@@ -948,7 +1053,7 @@
 </div>
 <div class="footer">
 <hr class="footer" />
-Generated on: 2007-04-10 15:20 UTC.
+Generated on: 2007-04-13 20:43 UTC.
 Generated by <a class="reference" href="http://docutils.sourceforge.net/">Docutils</a> from <a class="reference" href="http://docutils.sourceforge.net/rst.html">reStructuredText</a> source.
 
 </div>

Modified: branches/multicore/numpy/doc/swig/numpy_swig.pdf
===================================================================
--- branches/multicore/numpy/doc/swig/numpy_swig.pdf	2007-04-17 10:34:54 UTC (rev 3718)
+++ branches/multicore/numpy/doc/swig/numpy_swig.pdf	2007-04-18 18:32:47 UTC (rev 3719)
@@ -121,17 +121,14 @@
 /Filter /FlateDecode
 >>
 stream
-xÚ½YYsE~÷¯ØÇ5M¦çžð‡Ø@AH%¦ò@xòÚ¸°,cÉ9øõtÏ¥ÑîJ‚*—¼Wït÷×çôBÃñ«˜â^7ÖyfŒ†f6?âÍ>;;‚D£”aJ‹#O'Ò:&¹WÍÄxf¥Ó5Õ€”`Z×L,xæ…1D~r~ôøTú, Us~Ù€²LK‡"fºó‹ßÚÛcaÛ‡chçwtöñØú–áå5þžOWíôx"9o_ã7øûgt+ž†VÝý%žOñ7ëâ³SZáéšž/ðw/_ž/?ÿ~þãÑóó¢fµPQxÞïÔ=Ojê ºR
*i„	šsOA6F+f-ÅŸ’ «?‹T(ÇãSW½%
ZäD䈅ð`Ú“¬Ö
ê!E@埙v±ÂÓâ:ì'y¥	H敵aÁn‘|I2\¯‚(׋€æ@-™ÔÖr *øNi‰‹d,²’”í‹é*ÝXÐÓió§éQÈ{ºI$áŒèºå˜Ì™ë†Ìß…—»¡ŒB1®|…•­Š"=½ GnÝ£(“àÜŽ°Í)„6ͤ",ù,Ùéö_\uñ°ì;O>m%rŒ‘ð
-ίåxì)æ”gtçþ*=zUûgžÔŒ‚ßÕ dªB”Ì.\»Jˆ,Ð(6˜\`V™®§ =GTv©6±ÈÑÆCVò«ëb	aa·þ™ˆôÿuyÌíUôŽ€GN@S)õ!0ÀÐ#}S3@à,'	ÄHáàvC‰Bæyw¬M;ÍÑ€‘¹N”ÈyÌÃ9­tóé]È}8œc Eµö(Ž90
1Š†a^ýYh€ &$Ö›‰Æ|!mU„j8
-Y¡*™ð.ÅÀ*憧÷)B¦! ÖböGáj–ÐpLIT|ó—_å-²4r7…ª 0y™b–<á¿€€m†æV45×aä<@á n 0,°„L‚4½ZüO'p˜ò…QMÍpš í¨¿ÑØ•i¿GÿLEúÿR"à“¢u´m\s§Ò‡ÄAaÚîÁ!SejͺûÀ³Å|ŽE1œ÷óã’Ú
%ÛÔà„Šº¸éã#”bÎ;Óԍ4ÓžEÓ·±ZïA(S}B³Åü.ך€°¼Z즛Z !@X_Qw{¸úª0»[-±µ¾"‚çûîf­{‚ç”ÚŠ‡ÔyÌ6Zä‘‚  ¦Òšõ°°(¬º\ìâ‹zŠôØ
-µ'§*‚âçPNB§9TSãÆÑ xõº5©×:d8H¬êΩ=	£P‘’¯9mæÖ²Që¤ÅJ½þh°çÜR[æµß½(D¤ìI÷‘ÚäEÜúß.© v
/ËÞ³À»„
-m1º‹ñô°¥Á!sN7µ#“3a÷5Ü_ÖE¤c\ª=½E¡
-½E„¦N’ÏQçëœ8@ 3Š«¦æ8D€ÚO¡Ù]H!÷r_&ÈTÛjÆëä«ÔmL÷äEÌVr×Ô쇽&6d ì!Ñà·Är_ÊÈT•?œV9#OJ^„9N7,
-Žî ©¹
}+총9\ØÒ	ávgBDº¿N֞ϧ”&8P€ÖõM½ò@Qc˜q^POä(¹Ü=i(DÁÆ3Ês%ó†løþ&¦AÜgtó®LbFši`pWUsé…ÕP8M02©Œ ñòXJI±»”8;•}÷سâñâa¶º^Œ 92 æÈùèÅó”ë…“%‚«î¿¡v'lî6Z!z–¦†x.ªiTGÔ—y÷Itgt÷6?Ê3ÃðÚ[®y¼ìgLÜŽráe#8`¸äíØVóúIýÂÀ¾Ãe³#‡ôY_tC²ß†ý9{¦ÚÍ|¸1G ‚q<(BK•çÁÁãè_Áö!΍é­U™þ-ҝË
-à«ðÕÌŒ¼5­À¿ÌCCÍh0î,¥cÀ"®£ï­Yù´ôÐj–žyñtïK_¯ãT«L•Wqšx,.ãq9ˏïz[àBàˆèŸW¡]uK6´­dZHFåËV+ä“Š~ÄƽE÷ø6=ƃݔ¡ï^™h7g…œ)ÖœgˆA Œ`
-.È!ö§©ˆÉ[*ÿòQ¹*Ä}ð¹eϘ¡¾ß„ähÖdtã±·é4Î…g¶ÍsýP1Éàë]'	ãllÞMWë÷‚vÖlu½DVBÄÖ-n¾°\¡›…¥nòçì8·¼Bµ'qkзŸÆ|j¼
3DãµÛçD™~R¿0´å`Ù=nd1­Ikzb>&ª=̱áÇl2ÏÉ	A»F
-p-æ·%Ë·«uALà…MsÈøJ×k–E_‘Ü2é,lúÊõzv5fÉÌéÎfIŽØev¥y¼îíiv{Ú“m߁hœãàºêb¥T.N„ò±´›‘Æ£P‘òé[¹^5ÛÇüt˜§ï~©ˆŽSCûM|c™.ÿŽßÍèVæU¼¼k¾Ý„w¸‹·~Û #ÐL*¢aö¸5VX3)
-}vZp #Æøýäï’þendstream
+xÚ½YYsE~÷¯ØÇ5M¦çžð‡Ø@AH%¦ò@xòÚ¸°,cÉ9øõtÏ¥ÑîJ‚*—¼Wït÷×çôBÃñ«˜â^7ÖyfŒ†f6?âÍ>;;‚D£”aJ‹#O'Ò:&¹WÍÄxf¥Ó5Õ€”`Z×L,xæ…1D~r~ôøTú, Us~Ù€²LK‡"fºó‹ßÚÛcaÛ‡chçwtöñØú–áå5þžOWíôx"9o_ã7øûgt+ž†VÝý%žOñ7ëâ³SZáéšž/ðw/_ž/?ÿ~þãÑóó¢fµPQxÞïÔ=Ojê ºR
*i„	šsOA6F+f-ÅŸ’ «?‹T(ÇãSW½%
ZäD䈅ð`Ú“¬Ö
ê!E@埙v±ÂÓâ:ì'y¥	H敵aÁn‘|I2\¯‚(׋€æ@-™ÔÖr *øNi‰‹d,²’”í‹é*ÝXÐÓió§éQÈ{ºI$áŒèºå˜Ì™ë†Ìß…—»¡ŒB1®|…•-È(ÓÓ»€pdGØ=ŠB	ÎíoÐœbqÓL*!šϒ¡nñÅU˾÷äèÓV2 ω¯àýZŽŸbÞAyFwî¯Ò£Wµãy&ÁàIÍ(8^J¦*DÉ„È­bƒ
Éf•ízšÄqDe—j‹=`@d%¿ºþ(–v량Hÿ_—×ÁŒÐ^Eïxää09•2P]Ò75ÓÎ2pâHn7™(¤žwÇÚ´Ó
šëL‰€œÇDœóJ7ŸÞ…TчÃ9RTkÂᘓѣhæ¥ÑŸ…`BbÁ™hLÒVU¨†£ª’
+ïR¬bnxzŸ"dšÑ`-¦®f9	Ç”DÅ' 1‘qùõPÞ"K#w#P¨
+“—Ù!fÉþØghnESsJÎÀdàÊÊ {@ÈT!,HÓ«Åÿt‡)_ÕÔ‡Q  Úþ€úm™ö{ôÏT¤ÿ/%>)PGkÐÆ5ç!Øy*}HöÁ í2UƁ0 Þ¬» <[ÌçXÃy??.©ßP²MN¨¨‹›>>B)æ¼3M-ÑH7à9qP„0}«õ„2Õç 4[Ìïr­ù0 Ë«Åvº©„õu·‡«¯
+³»ÕÑ[ëk!"x¾ïnÖº'xN©­xHÇl£G), `*­Y‹ÂªËÅn ¾¨§H= P{rJ¡"(~å$tšC55î
‚W¯;P“z­C†ƒÄªîœÚ“0
+)ùj‘Ófn-»e±NZÜ¢ÔëÖ	ËápÎ-µe^ûÝû‡BDÊžt©M^Ľ_ðí’
+b×ð²ì-0¼K¨Ð£»O[L!2çtS9’19v_Ãýe]D:Æ¥ÚÓ[ªÐ[Dhê$ùuþ@á±Î‰@0£¸jjŽC¨ýêÝ…‚q/÷e‚Lµ­f¼NαJÝÆtO^Ä<a%wMÍ~ØkbCÊ
npK,÷¥ŒLUùÃi•3ò¨äEätâà˜áššÛиÂNÛ™Ãe-nw)D¤ûëdíù|Jib0‚h]ßÔ+5†çõõDŽ’ËÝ“†Bl<£<÷W2oȆïobÄ}F7ïÊ$f¤™¦wU5ב^(Q
…Ó#“Ê/¥„±K‰ÃS‰Ñw=+/f«ëÅȐ#`Žœ^<O¹^8Y"¸Êaáþjw†án£¢gilˆç¢šFuD}™wŸDwFwoó£<4¯½åšÇË~ÆÄí(^6‚†KÞŽm5o¡ŸÔ/ì;\6;r˜HŸõÅ@gÀ0$ûmˆÑ´gªÝ̇‹s„ "×Áƒ"´tPy <Žþlâà˜ÞZ•éß"ݹ¬ ¾ê_Í̈ÁûQÓ
+lðË<1$0ÔŒ&ãÎR:,â:úÞš•OK½ féy‘O§ñð¾ôñ:NµÊXy§yÇâ2—³üø®×±.ŽˆþyêÑU·dCÛJ¦…taôQ¾°lõ°B>©èGlÜ[taÓc<ØMúvsVÈ™2aÍy†À¦ é2bz‘Š8‘¼å rð/•«BÜŸ[öŒêûMHþfÝAF§1û`p›N³á\xfÛ<×s‘¾Þu’0ζÁæÝtµ~/hgÍV×Kd%DlÝâæË ËºYXê&ÉŽÃpË+T{·}ûi̧ÆÛ0C4^»}N”é'õC[–ÝãFÓš´¦'Æà{`¢ÚënpÌ&󜜴Ûh¤ ×b~[±|¼ZÄ^Ø4‡<¯t½fùQôÉ-“Φ¯\¯gW³`–Ìœîl–ä؉]fWšÇëÞžf·§=ÙöˆÆ9>¡;¡.VJåâD(/K»i<
+)‘¾U‘ëU³}Ì/A‡yúð—Šè85´ßÄ7–éòïøÝŒnå`^ÅËÛ¸àáÛm at x‡»xë·
2ͤ"V`[c…E0‘¢Ðg§Ç 0bŒß¿ÕA“.endstream
 endobj
 82 0 obj <<
 /Type /Page
@@ -314,31 +311,29 @@
 /ProcSet [ /PDF /Text ]
 >> endobj
 147 0 obj <<
-/Length 4136      
+/Length 4012      
 /Filter /FlateDecode
 >>
 stream
-xÚ½ko·ñ{~Å!ASáÝ,ßd4HÓ8MÑ$Eª¢(š¢8Ö²jÎÑÊqŒ ÿ½3$‡K.y·rÆYû‡Ãys–møÇ6Förpjc¬ëµVl³?|0lnàÝ°#¥î¥Òno;ŇÞjÍ7]Žä÷—|üÜn\ï4×›Ëx'”£Yo´3›Ëënß¾¼`ÛÝãE'”ÙŽ?^ðínÿîà÷îâ_—úø¹Òåzc”€‰qôP#ü¾ùlÌõœohê/:ÅÌöË)̆ÏâÄ»ðgÂG÷ð»¹óˆá¡Ýþp¡ôv‡ÞÐC³EáýÕEÇ5=÷pør|Àÿ®ç™m÷:®l·?ɉ±310×}Ä…(ð·»à˜aåö¼Ñ!Ø6Ãý"œ"EOuXy>Þ·6½“\l:Æz§÷Œò÷, at HD„Já¡læ›—õ:òGtÇû´{iì7À*ð—5ÊÖØOp|~™ÄP0Ñ[«H´ë-“*È*¾z¸‰0ßfR›à»|@%µ5ZdÓ_‚¿ÃïË/*2$ë%ì‚Œ…Ê$¨•É¥ì9³¼œ|ï÷Ǹ׸kIì´1cxK;9NþÁw·‘ÿJs³dE¤ Q {c”®ŠÁæÉI„ŽRåÿð:
-
-<%m‚âåtì=Z&A…+åð+¤îü—T(±Â+·U+ÈÂÞO‰šÆ- at yp9ÜqX5·êà6{B²÷ò·'ݾ,CbjBÒý-aáó¥ðr‰Œ?^ᐫ$Ón`ü{ÞlƒNÍ‹ÚÇ8QÜT¹°9M6f
-æ•kiSüÃãük+ݯ­¯C]p:ÕûÚê‚ù8ïoÔ‰iK(‚8„µßÆ­P½$Yý…EI9À®Þ‚ë¶ãpz°ëŽœÙ<é²é´æMäa)œ<©ØTŸFÜB¼š¾(ü^Œà”ŒÛK
ȼ¾@ˆ7qEQÿï…¶ªÔ¿è€^Ò®þìø€¸¸
¹b\	6j <„漩Lð]> ²V5Úó¦’)Þ+ÁÍ‚Œ…©LP+“WÈpòg/ý~ oÞâã^µýÞNÛ·dïP͆٧ãM´^x¹÷[,N08»ðâ­×©×^3ýÐÈûq¯½!Í?Þbž©=`?z£I´ŒS¤î*)»Ç™Ïlˆ—£dpÿþÈ8N>¤)4£´ž(•–"³Ñ8—wpý‚LÛ!Üg‚îm¸çÈm´H¥½F íø{/ò7q\€JÎ!Ãèwˆ¬SãýgáÏ)s:£˜ò™`¿ɺ]Á¶gÜÏsŒ¶@–;è^)ë6x8X±c$ø.PËn…ixT¿‹K|äfIÐ½3”ô,5ˆ V¨¨e”í×&y<o¦Fr*Þk]î!>@ƒ_’4\G‰Ì½; E‡·ê–dÆïòÞ7¨, ó[ºÇy^F<·>"¸K
-ácæà
-á”Æ nö$È×ã…âÛë†c€àÇò\@
-TvƒïÉy5“œ/ýx8Þx㢼:
-É{&f«Î“gô†-Œ‘IëÖ*lˆ¿Ï÷ 
-’â‚cz9¹ÑZƒ1°rM	¾ËÔ"T¡Å¥|í#°¿PF—ÓÁ™÷hlAÇB€ÔùÙkd$ÀV…¤È‹G`Ÿ·Üo^Ç yù"câ]à6y’ÛÿxÙù	‰Î8šë0Án¿‡h4à"?—Ë0,n­Òbx¶ûH.c|TÎO9>‹‘Ÿ0 7SU=³›‡ã£q/«7¤)KÁ€T"<½ÑJöÌ€—X‚ïòµ`ThŸjáŒéƒ²¤giáj…
-;ôš;SRQzˆŸOû}ö€hpJ_T˜†÷Fi*8ø<Œt|I˜Yk"àÉçó†ôHxΠ.ZD²£E.³pÅ×™
-Îû1JaôFm³Ü*ip\M-e°Bî+3­r²#È…ß 2Áp°ÀÄE¦peÅEÆZFËŸÃy¶Í×€Á¼µl‘°~¯ÃA†RmØï#O1Ìyçc‡ðÜ+jdãC¼~GTxr;¸û]¸<™í<ˆ»”}uù_'`§& Ìæu÷KWQð¹ÔNÀÆH‰Å'°]‚Û¹Œ\CÁ¸í…{RéÏöÊq¬tˆ;‘ø¬qet¬î=¨
eT0»f	¾Ë4ÌÏíªwu°ÀÍ’ŽÊ;F¨ó³sÎQ·D9{U@î4wp2Š÷MÜe6AŸHܱè4¤ˆÐO=×(ýÖ<¡$!{u¦ ©ŽbêÉ¢0þç÷,Ù'Wîdž	5ªðT®‹f'Að
hH©ŽµÂ5gql'F”Îþ'Y{|Šj¼›&¤Çb®yoòZÜ~þ´*ˆ>´¶ŸÃuHšïRój7ì¦dv.¢ï«¨SÝ9º‚p@mÖJ´ßåê*i…vE¯À—õÚµ c¡W	êüì’	È%˜.gŸÈ”ÆDüa–käv¨<&üféü‘ÇAÂõ²Ò¸¶CHçÊŒ}àUĝDû¡Å¦a&käFÞjÎVÓ[‚ïòµÝ«Ð>5øƒpÀbAÎ2ö‹@çià‡]Ò¶¤a©7‰ž5”[š^k®žäx´TÙ‘“ßññ.Ä.ÜYØ÷Âú¸Üú85´ª:0òÜ6úÁÕZÂcŠŽ÷]`tȸqÊ)<w1/
-ZU‹áZ.r~!ひH\m¨¥i²¨T:Êãç:R„¤J“tÁóVbÕ*åæOu4¬<íQˆ[¾t !M‘Áä­š‚íçü™ «0\š'ØlÏŸšitda⇭#i
øVÞÒZ±¢‘	¾ËÔ6«B»b1ÓoIÇɃೳS6¡øBÆÚö,Our‡‰KÃK/r,Œ Ô‡Š)xŸ¤"¦Ãå‰g¿\=\Kg1Ç[Ù‚î2ð“‡á³R)gàZ8%KCH at g'f4eÅÄIhC}”ÊcÃð Zì¨/Ι†ÒO·dl2Œ„Ø@(‚ØXqùn`’Ž뀑*2»0<þ9Ì%¿Õü¦CxWyK¢^ã±ÀÚXV¹kq¾L!¥¸˜8{
™
`~ö×*!	+“d&!>ìŠ4Í÷WvL៓e€ËX“odEƒÇæd
-Û¹êmÃd‚¸HNvcq§kêÒ3Ôd	Ù‹†µ\(Áwù€:f«Ð®«ë|AÆòX V&×&g¦œü\v Ê'u†ÄíI­p_‰q”€]ø3©N_P„ÇÁÅy™œ\l±§5àíìbáò’ðÜúÛrŠð‡Ö!fçðYÓ0^Ñ|D"E»©Ý…Û¨A3±åd·)!÷
-3Oñ°kÞMµQ(s¹;ƒ,O§>x¸àdv3¸W¡
-ìýAYv@â…Áس¥Bæ —Š?¡Vèz)_­„É=†ÿªµCÓÐâØæà±f:I‹çŽq®]xí×·»êâ_Jd6ÀX-˝ð¡Ò¡yP‘œÆÒìPªú¹P„öºgÁûr¹Û^^€9=ÆjÆUvqܱr{ŠšË A‰1`˜ÔЃ+X‹¸|—häK´Ó8ðäÅ-èYÖ€j…
-H~Ø YIÅÇM4TJž¼÷%da-4ÏB.ñoŽ¡K¢2ã@DøOån‚?¿®íŠ7q¦,“癚 V&‡Ôa½ñ}˜Zz|Ò(Nñ ¤ÄðBf<® Iã¶ô>Ì(㹟¬ëK
-i~I]?Gqº®Ÿ Ô_M?µìôG©+p-;ßÇtÚWø}¿Ãïy¼ÿ3ü>Ïæ~ŒÏðþëô¼Qÿ(?M‰lÌšÃpþ£¥-íÒ‰ó\äÏô‚ÓA¤O˜èt@—MðÊ
-oÌ2WƒÙs푐ãÊ#·Nœló1Ëoß{Í»ä?S¢ŒôE´ítŸm hû¸Oá÷müáõ?àÇBA‰qýˆ›þU„š6~šµ2{~ÌÔžå~æÌÏç¸óK$lQQö—¦<H¹¤€m:J‚c¸±¡7Ø¡Rì¶G0M"\îP:zzŒ/âßûFMøì0W¦Ït?yäÔá‘bx$ ‘˜ÛÌ)Ž÷Uð–þºŽor*fH{2V Z“,P0žL	D†Ô^”5‹	QöÁ,Û]}´HTm¸¥Òo¬Nì¦F‹
-Sº7<ňµÄ ;wÁ¹*îű7J¦Éƒ"XÄ7e›”ó«v÷‘{a-§’XV©ÂI_¶ñƒ¯1=céìû}’U×[eeÞΟ7«Å” ƒt‹ü½ÝŠ¬6(b5a
-×CâÆÍ=å!ÔýÙìÁ%»Ag=Bÿ›VçŠõÂå² Lê7õ|¨5Ñó!ªÀ”AÅg²O¡³ü«ã°áÜ-[S¼VÜÜŒhP0Ê)úŸÝj›dDâluYÛ’ IÓZ1NLMV.6š;Öè¸ösSºwðïýÖQô|ðlšRÿ§ãÙ¹çû±€Ã†‚e°™2ÜS“p}n¬Èr©1uîM™Õ
KÎh¦…ÔMpYÆö‚™¬¢–*±ñ2M½¿Mç"í&ÏפlYmÝÃ5ûF[E1Õk‘dW›qˆ•çsè>Ê´?xýÁ‚o±Â1²ò¯²zEø|‡ÃŸû¬lO&eÛËΓP·’ÍHpSiÄ6´¢¿Ù„Bã.7‡„4k#lꈳUh¤î cÂ1Ò²uÃVû-×›Tî˜}ôÒÌÚÞhC•ËÒ
-¶úù}™¿à(ÀAjg{8{yY4AŸ5ÐE	×};ÀmµEh©ó^ŠÛ¤e­+“E»Eì\5e˦Ïö*3·²‰h£ºSÚ¼»Ë®0žŠÖé3΂Š:nhztoùðþ%ë2W#…é5[–Pg‘ÆãÆRÛäzÑGQ„áœmÀõ3àÀLØ&ÍrÌÔöoó·‡-VÉžÙtºù~aÓÀÓ‘4Æjb)a…uÒ*ºͦþµ¿¦“æ$µS`Õ+ú.­¬;„—é³D.íɸ2Öe?L7:¢FFã…íDdÚvWYxqÆ7™;Žè{¼àùàÓeÕĹ^I`*~r2`Ëçùw9|UEª®œr–R.ˆX	Ôù¹‡ØH°Åäç*XF,+Xfñ›áí¦ÔqZ6­/žø‰¯ÄSÙ›àϯ±F{žÁÜêÞ᧗gœ V&ÇYL~ÎîG.ÝÜæW¾£¼‘̤’‹Ï[ÛóhóÚß+ñEïÃbS£nªžs³¨:Îß?_Íßt<Œù—“‹ï‚æédaÒYˆtMûÃ0‚é2 šóÌ2f„Ôò“í
ùþa Nendstream
+xÚ½kÜ¶ñ»Å¢E½ÂRÄ7™
Ú4NS4I‘^QMQÈ»ºóÖ··ÎéÇòß;Cr(RÔ®Î
Pòê1‡óâÌÛtðmŒleçÔÆX×j­Øfw|ÖmnáÛçÏX„‘R·Ri_Å»ÖjÍ7MŽä÷×Ï>za7®ušëÍõ;	%äÆhÖíÌæzÿÏí»WWlÛ?^5B™íðÃßö»Gxu×û«]ÿé£JgH”kQ&ÆÑ#@
p} óÙ˜k9, hl¯ÅÌö‹1̆ïâÄ}øñÕ=\·w1¼´ÛﯔÞöøâ-½4[$ñ¾¿¼j¸¦÷?øß~š	Ñ6oâÊúÝðINŒˆ¹î#.DWÅ
0ÃÊísø¢9B°m†û&#EOuXy>>·6­“\lÆZ§÷Œò÷, at HD„Já¡lâ›–õ&òG4§û´{iì×À*ð5Ê¥±Ÿà"ž}vÄP0ÑZ«H´k-“*È*~z¸0ßdR›à›|@%µ5ZdÓ_‚¿ÃõÅç’µvFÆLeÔÊäR¶œY^N¾óû×)îÄw-‰Ý‘6f_i'‡Ñ¿°xˆüQ²˜›$+"‰Ù¢Äp
Tt֐È0ON"Dp”º(ÿÇ7QPà-i‹„oÇSëÑ2	r(\)‡_"u¯á¿¤’@‰^9¸å¨ZAv~JÔ4nÊëèˆËáŽÃª¹õPG¿°1àØ’—¿éö>°Aˆe¨EIϧ[áåz‰C^&™öp}€ñßIx³
:7,hâdDñ¢Ê…ÍYdc¦`^¹æ6Å¿<Ý௭t¿¶¾uÁéhTïk«æ¿ã<~¼5
+P'¦-¡âÖB|j´Bµ¦“dõgX$e»zGöËŽÃéή;pfÓT¤ȦÒš·‘‡Q¤pò¤bhPT|spñnü.¢ð{1€S2Zl¯i4 órxƒo㊣þ	Þ
+mU©Ñ½¢]ý>
+Øé)pqrŸ<lTxÍeS™à›|@e­j´—M%S¼U‚›3S™ V&¯áäÏ^ùý Þ¼Ãÿ†ï½j!û½è¶ïÈÞ¡šu“OLJh½ðvç·,Xœ`púðá×©7^3ýÐÈû›¸×ÞΐæŸî	1ÏÔ°Ÿ¼Ñ$Z†1R÷2)»Ç™Olˆ—£dp:ÿýÈ8>¤)4£´–(•–"³Ñ8—wpC¦íž3A÷6Üsä-Òci¯ÀG;þÙ‹üm ’sÈ0ú"ë´ðýÓðsÎœN(Æ|&ØïG²nû`"Øö‚ûyÑ(Ð\b;Ý*eÝF;+ÖbŒßäjÙ­Ð"
oê÷q‰¯‚ÜÌéºu‚’ž¹Ô
+²Lƒ²]àÚ$çÍÔ@NÅ{a­Ë=Äèað÷IÃ>JdîÝ-:ä¸U’¿Ëcøþm§:²l€Îoéçyñ|Dp—ÂÇÌÁ6Â)AÝä
I÷ÕâÛý‚c€àÇò\@
+TvƒïÉy=‘œ/ýt<Ýz⢼:
+É[&&«Î“gô†-Œ‘IëÖ*lˆÎ÷ 
+’â‚cz9¹ÑZƒ1°rM	¾ÉÔ"T¡Å¥|å#°¿Ð‰.§ƒ3ïÑØŒŽ™ '¨Ë³×ÈH€­
+‡"/A^€E|
+Ür¿¹Aòò&câ]à6y’ÛÿxÙça24û0A¿ÛA4p‘Ûy·Vi1<Û}ˆ$—1>H*秞ÇÈOˆ©*ƒžÙÍãiŒÑ¸—Õ[Ò”¹`ÀQ"<½ÑJ¶Ì€—X‚oòµ`ThŸjáŒiƒ²¤gnáj…
+Ûµš;SRQzˆžöGôÉ¢Á)}Q`Þ¥)áàÏa¤ãs*ÀÌZÏF8Ÿ7¤'À}x9%€ºhÉŽg™™+Þg6*8ïÇ(…	Ð5¶ýx¾”$ÒΣÒ,jVÈ}ffi‡œl…À2Gá7¨<`8ØG`b‚"S8„4‡â"c-£åOá<ÛækÀ`ÞZfJÍø|‚te4cÿxšpˆR:ÅþþS¦dyŠ×cxuŒƒûiÐ)}_?LNÓ2û	xÈ´Ó)žëÊÕ-°ç>Ž=Æ8í½~Âû}FÄC¼Olô4ðôÛp{ö¸ö"îÒñ9pò€›€¶çM÷sWQJ©Ä É’³gQîS63XéÁm+Ü“r—¶UŽ`e¸Ù	Ł;©¬¦Õm§;µQ[(Çôš'ø&°`?çhWÝ;è³n–tTî=B]žsŽÆA”³W
äÎb漤°âC3`‡T4Ï<`Ö¬K!­ŸzJ²ú­yBNE¶êBFÎjŠ©'‹ÂðCœß³d—b'ó£ÜBZ¦™“ë¢ÙH|RjJíCqÍY ÞÈŽ¥S ƒ¯“CËܾE5îǩDZxX>…/y²?
?Ë'BŸ´ê¶ŸÁ}8õߤ<æézØMÉìTØUa³0ºŠ›.h¡WsÌßäê4o…vE¯À·Ú5£c¦W	êòì’	8:³dJc&áa’kävH¦âí<zA-.×BPËJ‘YŽ+S] _FÜI´–øÂ4ÌdÜ(0¡°&±f÷¾ÉÔv¯BûÔèâÓ‰9óà5]¦w>j[Ò0).;>_PniZ­¹z’ãÑRe53¿ãÃ]ˆJ¸³°ï…õq¹õq¾ŽÖ-¥¥`ä¥môƒ«µ„×âî»Àè2À)Çð~èãÁ.‰ÐªZŒ7s‘óŽtLƒ“·
Å !MVKG‰ˆ)QH†!)U&]ð¼U†[µJÉ…§:Ö
+žö(Ä-H_ªÈHSé`ò¥¤#‚í¦ AVçiž`³=jN¤Ñ‘…‰¶ŽD¤5àWÀ©N·†k¶¢‘	¾ÉÔ6«B»b1Sº¤ãl%ûâìt’ eÆ°å8$;ªå^NzvVË¢:ºQ2Ÿ“PÄã|Y±m狧ʻ´¼µLÙ•= ð&‡?[ÎO at +É~¦[ÅÁl•DÌm!A]ž›qЖN”s'É
™~tT¶+‹ŸáE4ÛQi"œ/‚™Ídq2Œ‰ØE(‡Ø˜7ú¶c’b}ÀHy¥>?Ç)qÙSær<†oE)Ëã˜}ôj
ÖÆäÐaÊ(úd‹XH(Æã¿W“É
+æÌ¥D˜°2Égåc_$+0]~peÅÿžÌÜÆÊÂÂÑÔM['S¼|`=,ØMÉÉØb@îtm†@iZ¦áì 
jx·v JðM> Ü*´+ͺÃ4Ÿ‘1o ¨•Éµ„É™)'¿”Í‚ˆòIý-q{RÃ<Wb% ?㐲ñ…y,‚Q¼ª+-J.6²ØóÅø:ùY¸=Ærx–ûAÿXNÞ¢BãÐ:Îl¼)¾#›¦Ó+š(ƒB¤’W´î‘Ú><F
šˆ-';¤ƒùX˜yŒ%»i_4yÕ…ÔG	|œ’ÎØßdyª]ÁéÃWÓOà^Aº*º÷徬Ìã…ÁØ‹	Oæà<.BÆÓµR2¾šñ„	“!zÿU;k»EC‹cw ‹³©«§q®>|öëë÷A]ü‡BI‚lëe)Û>^:.¶@8§1ÁÜUÙªvÊñ½nYGð>éï¶×WVx›íDè-I=;XAv¬Üž"ñÒÁ)Ý0LB¶Î©µ°+Á7ù€…CÈíBøòâfôÌAµB|dd%¶QB|ôÞ/䐅µÐ<Š÷øp
+ùÞÊŒ1æ?•»	þòºj´+ÞÄ™¶³L^fj‚Z™N¡“ŽÂÔÒ›à›…JJ/dÈã
+Nj|vRóaFÏ¥ùluBvà™4?£:‘£8_HPHꯀ¦—²Ç¿L-ekY—f¡Ó¾Âõ9\ÿ†ëE|þ3\ŸÅws
×ã;|þ*½?3÷!«ÌZÜpþ_DK[Ú¥3U\äOôÓN¦O˜è|@—MðŠ
+ïaª¦œeö!C~Š+{ŒÜ:SÞè¦bÑo>xÍ}òŸé´ŒôE´Ëg~¶ýu€¢íCâ~×7ñÂûÀÅB2A‰qýˆ›þe„šê?N‹Z™=¯(-Ïr?qæ§KÜù96K+û[SVS®)`›‡Ž’ŬàîClè
vH»í	L“·} Jõ§Çqï'D5á»ã”ž¾ÐÃå‘?PŸJˆa]@"1‡Ì)÷Ëà-ý}ßäTLödÌœïÿŒ
+ÆR€)Èš¤²–7!ÊnžyÓ®©o‚rÊÿÆE?.4Ú0…i”#ŽÔ؃ììƒsUÜ‹ãBÜ(˜&Š`_—Í^>̬jwèï#÷ÂZÎBbr¥
+'}òÆZ|óŸ*ørXu­UV攐·Üŝ”<¶t³6ÏÅèVd	B³	c¸/«·÷ty›êÎë—ì:u:ýÿmZ}†P¬.—eR׬çC­‰žQÆ*Ž¸pú:;56œ»yƒ×ŠÛÛ
+F9E·[m‘¸˜"FÖ.I¤YZ1NL­b.¶Ë;¶Ð7î!Š§<ô áïýÖQô|ôlS«ãYñóÃXÀaCÁ2ØLî©Õ¹.‡+²³ÔúÇÌê†%g4„ ÓÂÑMpYgÃê122YF-åcãmšzwHÅ‘åVÕ7¤lY‚ÝÃ-v¿.%ÅT«EªÊ®¶+/Ÿ¡Û(Ó¾8ØñÒÈ úF1ìt#+ÿ:ËW„?BâðsŸµ³íȤô±Iî2	uCÜTE‚‡ª®›éŠ.m}n	iÖ¹¨#FLVaáè:&°½ psÝ°Õ~˵&¥;&=7³¶5ÚPæ²´‚K•à™ÈüGR;3˸M^^­Ü—D
tQÂ}D¿à.õFh©ó†ŠCҍ2׈É"Š~;W­årÑg{•™òD´QÍ9mîïr…+ÌŸ§b©s‡ ¢Ž=ºµ¼û𶒌u™«‘´šíääXs,µM®'ÍpE~ÀùÐ\?<Áä€mÒ,÷ÇLmÿ6ýå«dËl*q~XØÔñT—ÆXMÌ%¬°NZåQ÷¬eÖö÷TnNR;V½¦¿®+óácúãJ.íÙ¸2æeÛuLϸ¬ö‘ië_fYàY¥oú»ÎÜqDßã¯=—q|írßfC0MTçÜÆâ„kág«¬óý«*¸Rendstream
 endobj
 146 0 obj <<
 /Type /Page
@@ -346,7 +341,7 @@
 /Resources 145 0 R
 /MediaBox [0 0 595.2757 841.8898]
 /Parent 127 0 R
-/Annots [ 149 0 R 150 0 R 151 0 R 155 0 R 156 0 R 157 0 R 158 0 R 159 0 R 160 0 R 161 0 R 162 0 R 163 0 R 164 0 R 165 0 R 166 0 R ]
+/Annots [ 149 0 R 150 0 R 151 0 R 155 0 R 156 0 R 157 0 R 158 0 R 159 0 R 160 0 R 161 0 R 162 0 R 163 0 R 164 0 R ]
 >> endobj
 149 0 obj <<
 /Type /Annot
@@ -381,63 +376,51 @@
 157 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [185.0642 555.3239 220.3815 566.4421]
+/Rect [185.0642 539.3837 220.3815 550.5019]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
 >> endobj
 158 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [375.3565 543.6477 410.6737 554.487]
+/Rect [375.3565 527.7075 410.6737 538.5467]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
 >> endobj
 159 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [168.2912 531.1346 200.6993 542.9951]
+/Rect [168.2912 515.1944 200.6993 527.0548]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
 >> endobj
 160 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [486.5452 519.1794 521.8625 531.0399]
+/Rect [486.5452 503.2392 521.8625 515.0997]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
 >> endobj
 161 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [88.3572 495.827 117.5176 506.6663]
+/Rect [88.3572 479.8868 117.5176 490.7261]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.swig.org)>>
 >> endobj
 162 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [332.17 483.5929 361.3304 494.7111]
+/Rect [332.17 467.6527 361.3304 478.7709]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.swig.org)>>
 >> endobj
 163 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [199.781 448.0064 232.1891 458.8456]
+/Rect [199.781 432.0662 232.1891 442.9054]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
 >> endobj
 164 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [368.9173 448.0064 398.0777 458.8456]
+/Rect [368.9173 432.0662 398.0777 442.9054]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.swig.org)>>
 >> endobj
-165 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[0 1 1]
-/Rect [98.5482 149.1272 127.7087 159.9664]
-/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.swig.org)>>
->> endobj
-166 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[0 1 1]
-/Rect [258.754 149.1272 287.9144 159.9664]
-/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.swig.org)>>
->> endobj
 148 0 obj <<
 /D [146 0 R /XYZ 74.4095 789.6651 null]
 >> endobj
@@ -445,345 +428,399 @@
 /Font << /F8 95 0 R /F56 126 0 R /F58 154 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-169 0 obj <<
-/Length 3016      
+167 0 obj <<
+/Length 3126      
 /Filter /FlateDecode
 >>
 stream
-xÚÝYoÇùÝ¿BɃAæfçÚÃA8Nì¦#UQ®!¬©ÅF$’¶ë&ùïý®™Ùƒ”’>Âj¯o¾ûœ¥:ËáO•6³yíÎʪΊ©³ÅúQ~¶„w/)±¶È¬+J¸y;¯çºÌªÚÙ1(UgµvfEm3clu6/••E]"ÔW¾xáŠ3XYèâìâúLå6s¦ n=ØÅÕ›™:Ÿ;mf¯ÏÕìßÃñŽÁѱ€ãÀ €ËK8>±ƒ£ãNžáýŽ=ÿÌ]§{bldõ²[-,ý|þöâ/ á\©¬vN»ú|®\yoì;yŒ˜ßÃqK¯Õl–èù„l™RUDÕÕ+Yú^–ßúQYT‚Ytrb}'{Χ/ÇT`…™¬ØtâÆÄõ‘åî´,SZÕMѳÈ3áûÈ| ^’êï<ùßÑ1-\9®›•s)[qãËÄbÞú3HõŸ¤SL3¿ÖtMç.Ó:·)ŠÙ¯·ûì|hž¥ˆÿ:Òÿ^¾»ß·QÝ×'Ý+ó&€¤N­fŸ‹bžö²Åç‚äqÏy·´‹¿ÂÝßáøŽ—"Àµ\	³£&RlPÒÏÏcºU5ºPõ=Ü1fô2J)—Î|)êÙ·d~—¢h‡ûÇ­ÛÈWcÄ0Þp«èYdB
Ëjk†Ê~ÒEúÄ?„ä×b7Œ¾¯$¿éÀå‡GW0ï¤Á¬Øc#®è5¹Š´xÇlxüGȼo³MZr¢)Šr6§eìÂίÇx.h<xÖ/pù_~®ŸÄ3VѳK©$+	£VôÑ÷‚ý0lSÂÁŠi”1+ª‚dgKåîÅdß*÷c¦¿ªÏãÿ,!Ô½x`ÙV½š=%:ÕŸK#nÛLñ¥9‘øÒc|Łð0>îã:o$1¼ªü:Jª¿N	ã¶ñžâÊۏtš©ý¸œ¤º;žk4gÅ#lN5Œcî÷B(o…ÑËã2åÝé„ä5ÅaGfÇ«`§	7™Á~Gõ˜*üQ÷ìøu”ë¿–róŽäúÅéTrÊÜŸÛvj*{þpmïHö£]r¬ŠI*ÆÑÏUO§àëcÍ‹‰’Æÿ­ÙÌ©lcF²ÍˆÙÒQbrࣔ€ðDë‹U4IÏéFvå²Ú憖\Üð eÀ‡s]‘Pwh•Y»nîÈs£s²9%ˆ5cN†ôªÊJ¥
-àqn„ýuÔedÒO¦ÎJí×5»ŽºÜ3#[Êí«tâó<mw¸ "Ýô^uͨ.g}ÝY2…Û¨µ"äöš‘-¶@¸¤ÔÖ>…ÖÁ”3¥çs?A80˜c͆ ]›<CÈjö]ÀÊ“²&3h'íJÐõkV	¾G&tÇ’ €Çv'Z…ò£«Zb– ºCË(e²2¯¬¨¸«CS¨*s®ð€×B
)/|ãO†@)u
qQYïcl‹m€\s`€ýA\¨3Ä¿ÖeyUx—˜ž¿†®Td“…OfÌ(-ÀZ¤º}Û¦Šk"F"Y–äÉícãÀ5 Ó
-¦‘4½?˜scI`pYÍÚwAEÊl¯FŒˆ0ïø5Þ”]èÙ>hÊ;=¼»óQ깫²- p–“ââÀÀ’¹öžøŠÒ•²ïó$]æ™Ñ¥wï‡¨²¢RÞ "Opƒ¶O$\PŒn7!%#G!ª þ#I¸²S>`µhúvÇïVÞ­qO²Îò¼îˆüy¹¢²#Ž8Õæ™2¥÷ÁtäH­ó¬ªT)Àž!ÃLr*?•ì˜8æ]è#‘¶G'.Ýlïw5üÎÆ*È ½ùF"© )Šê·$åA$•EHÎHsÑøÌê5é³ȼn~D–ÔÛ’–¡Èøtõc·Ô]!å_{KïÓ´O>Â&veVš¼J“êbKÿ@ì|ÕÀ Ñ¥ŽKÜcs@§e»a7bÅ.ð©3ÄÒ3|æÅ'¤Àߣo.ÂF·.ª,×À ºk­‘­r|µ[
-ÌѾx€ŸÇhc<q»ZTÀ+21÷4=>L®2cëªÇGoW>@§nr›å¥2)õ¦ëŽÀ¾Ÿ°BPµ0Òf`£ŽŽ¸¼(Ñ;\KòdhBm½â·|ŒpÓ­Û·1êž2ü'“›ÌV•9a>áJ Eü¹½í’ÿŽ«ÕÎ)ô8U¶ÊL©ª«=³¨ã‘I„›ÜQ”ù˜$Ÿ¿ë²øûhwó
-=C!š5÷2ugÈËî­ìsÌS›n¸Krnc4¤Q]z~’~1*Íç®Ê×¼!9Z¿ Iµy¥ï™Õ¡ÄÊph¶jJ1ªëeÞ³‰ÃfÊË ™Èœ1ê¾^ÃOzY :÷*ÇLiu‹¾y¨ãÄ•‚j§JRŸˆ{ã‚M^÷
ˆT‰¾§L° QùH™€<Ÿ4°òùƒšäQúÍ¡ƒïe ‚zùÞBÀ΃E<ùRƒŸ6ƒ¸Žñ*ßÊ弫K0µƒ‚Þ†Î%¢ÛDH5=„
³Õoõ¸Ñ,ÀÔe™¶1a#¬ÝÄ»)ÎdwA'b. DÍs‰öª¹×¦¤D
WÔïå9>+ÍL¶q¼î
-oÚhÒv¨qº³3 SÜqÇšš€®<¹†ï}’܆;¿*ꇒÑÃÐçõæþhLë5ž»ÎÅ‚utÎÏö[†‰m‹ï½XCc>ô]R²¢å[Ÿü¯|çq+-Y4¤"ÜsÆ9U0‰Žg¢_¸Nk°kQ&3)áÅB]Š6Qĺ]KBÙ¶XsÖ^¶a4š£»‰Ü$õØêØËõôí®{¼®o|ù ]$­%à&ŒN€½á7$ÓG¾î§¡„‹F8ô±,k·|¦e+Übr]ú—‘”Í`î«SUPo#h­µÉæ?ññŽ×
Ÿ(n—›4RÐuX—Ö‚„ëíûnЁG†Ï­—un|½ŠF’ „öýÕöÐñst̃ÄnJã+ßéOƒÒéd­Â#ˆ#¢¯›ï4ӝx̐‘¢Ì*ö”–²íÇ•˜²£Õ.s%6ÊqHŸ`.Öž §;®	×ñà÷‰ê°Ñâ/}çpuX °8𹋠­+ŒE°ë·×ÇGh\v|s¶ã)º*GY7eo?î‚3µáäéfùVÙßà¡uâ	øxA"«Píx]&Ñö1‹EƒØ—7>C

»lçrҐ	ﵺì“øt2•*S¦y­ê¬Êõ©.,ÀÏãÃùk€öäü[©MÁü%PÇ©C‘Y§Ë”ú0‚‚®ýØtÛYr;p3Ÿ±HÇÞÉÑñÞŠ½ÁÙãÉÞb`d„¦>u—©ãÄ´{ =Òñ°«š¢è5)Ež¤G–ÙE}J1ôK|-ç¾_:ìR3ÜT·³g¾Ñp•OÙT»±:_aJ¾hê
/I²6¾ð±QldO!ê™
-7U‡Uœ^±†íÑ'™[®b¡LKÕ\l=LG†9*¨R û
- ̸µ=YþBeAȱj{=Ú<çÓdgƒKº"ÙÄŸD⮡áe ê®ºÚj¸ÙˆÒC辞NMn
-ªP]¿çç1ŠáÏë:3ªP!ßâù‘[ïCrïWc›îÇÓ¿ ?Yð?„ˆ¿aÝã³Qdçþ¸	¾Qj(ÿÊé,wÅ©tàçñ‚‘Á³6éN^Ø0îÑëý©×C n
îµ¥´Éý¶~ ¤AÁrKIý¸¡ÊO³ô6Üè÷6Z9í÷¸l¹¢ßQaw¼a¼Ò„lã¶!!Eû¸£?Rÿ	,þ’ìL¶hÃ2‹¿ê;ýqÉeE·’Ij-êR§6Ç(<QnàÞ?J²Cnøg]ÿ¦oU„³¹1>“ì[Ÿ4B*›úPŠi)®‹Ã¼—´p?ùI–¦–öɹÙŽ¥¬ºÊ´+ëQ;Lа³©v6:`âOË=r»¿¢Ðcôþ-.kÂendstream
+xÚÝkoãÆñûý
+%rqb¹oò‚¸<›"H©‹¢Hƒ‘ez²äX¾\¯Iþ{gfg—»Ë‡|M?MŠœ™÷ήXÔð'NWºnÍÂ5me­‹õí“z±…o_<£µ­´±~Œ|]YWµr±J‘||ùä÷Ÿ7‹¶j­´‹Ë›|SFé…³¢r¶u‹Ëëï–/.¾¿üó“Ï.#¶¶­ŒÖ¦‡"Šøå~Ë ß&´ø*… Eҹ˿Áõå%BÚÊ	©&ŠiG¨yÚB¶•V¢ ¾‡Ù,àasÿnàêÖ›‹•tjùZhø½Çþ
½Bü-X®æ
\×{ʁ7å̤i+gjõXñFøù9ÑÎX6¶jE#ç¡ÎG£S® Žâ@¡h7ëþõŠ<HiÛ¿9x¡v?ÀÝ.ÒñùvÇÊØ{¸;F|ÄŸD
+5”÷?usGè@½4j݃•
+‚SIé0.QµÆHšÊ>R:¾†Gà^)µ<o7a|0†­ÿ´çW¯i
+ÏKéG—WªjœVc _iÔ„Ç·ºRJ›)
+RŒ±©é׺2Ê&”p:â"†Z¾ßÁõ
\?ÀõOH®ò;x¼‚ë-‹»#‘úwøû–¤!À[L
·Gbìxô¶Í,ýLZ¨séË‹•0îÑØïùõ‰bOŸQaþÁߐírª‚¨*¦zÍCßðpŽcsf–É™ñýÜkûhLš™	fÆÓM‰Ë™áæü\¦¤6*äóLä=l ’ËïkxóW¸¾¢kzrn\6;žÌ¿Þ°_e¦òV20§æ}l’n)Íút¼¤[–0(Õ:gAxDqî7™Ù}p1TÏ–§ÿ2‘ÿ‰¾d½ßE³ˆ^]ºë³þÓ:„OɍZ,?dÁ</¢Å‡Œäi¡ŠºÚ»EÌap}Á¸a’!)ŒªHx…’|~“­ð^#­haŽ)£WIH¹š0æ+Ï1š¥çwË‚~xJpìù:&¶šâø‰·K¾‘F&Ä ±¬…
+h ìg½§¡MüI~ÊzCïû˜=ð³ü)S~ïŠêT˜f}؃$w‰ï<A ÿf2ß1‰ï3µMjb¢²Ö-W4l‚Ëìü:dzc q'œ±¬_àñÿøA’¸~dËØ%ï®8“ì؍6,Ò
+NC·Í	G-æ^æY™;í„y“¥VÇL9ªäñÚÂßß3m‹"gOMêŒ¥c³í¦ø’>ø’c|¥Žð~|<Æt¾ãÀðýTæ—IPýuj2¡`¯)ÞCجû‘J3ןO'¹ìæcôQq†Í©‚qÌü>«ÏèÕüœêþvfæ5Åaê3
+ÓãY°—„™Œ`¿¡ŠzJ~Ö<{~™ÄúO9Ý|×·üüùùPrNÝvÜl{1¹ÂXÚ÷4÷Ù*9Å$ÇQƪçSðí\ñ¢’ ñ«6u.Ú¨‘h3¢¶|)1¹à£€ðD+ïq¬èÑÁSµºöéKßâY)PÂ.õßõ-‡[ê?`«@Ö¤s
+·s¶HošÊ	aÄy`öo“
+¨"•xRmåd×Ý÷¼ÐãÉ3r¤Ø¾ËW|§ã=h’vUÿ©/F¥óý—Ðà 
+û$mx’Ǐ,í²<‡ÒA¹¥«•¬Ÿ!(Ìx݁ =«ºBÈfùUÄêW>B«J5 ¼*AÓo½€hâ'j)µu:ØîXªØ»kZöY‚È:ueûD¨ÊՍf÷yh 
+ÑTÆØ xÃÔ¨=
+RÎR¶à1Æ6ëÈQ· NlB½"FøÕ¦ªLbzý54%[`Œ>Cš
DP#s´î^t§Í&\—È4™©eK–¼á>+)TLX;l´ ™Ò–<6ËÍ¿z§"an®=+a|×­W;ˆ.ôî%µmÄÖ¦m+
+øД|¦àWé€a/t€§w‚CCɏ2•Úü”Ù u†
µ³*çâb2Úþ5š£ó)xG!™zß^΄KÌG™OzLÝÚ:Xß7C+k*Ûˆ†¿³Î¢©³öÒP¤1˜ìƒïø´ƒ\ÄÈðoIœ'Í1¯lîÓ·]p]£ùԭ̍|ÌórM©•m8U]WB¹0Ó|Y=˜5nÎ4Â10F x/€òLúp/]ɽ'ŽñTZ9MNè¨Î,O¡sº7»8Ô7¢/³°Í“xÑÂÙ˜€æºÙ#H2D\˜óm÷:tö4è’†¡Hùôôº‹åGMŸòÔF6âUl\åT]tò×G’¸ßZ¸™ñÈ»Iš¦ÝŽ·)6‡°G´£‚©Ü­j,†]½Á4g"I_%ðÃ]«éc㈠åÔ2祌"3Ë€m%!Þd”!¥TK+¹±MUK#)š>ÏY‰9ûšlפª•Òm3+“4KZÕ«P鮯kÁjßan§<¯¸@<ñfÓŒ#³øîû)N{Þ®»X]û¯þwÿ«~Üi“¢žØx‚ Q™<x^|•Âd2@Š2ùÓfŸo¿A=AUÏ” JŸÒM¥$‹œÕr8@Ís8DÆqKÕ†bG(
Iòª»>7½Iú²ï<H”¸o~Ñ;œDwë«Ð¶Wd‹Óž;T«\§_<qʉf£$$é?Y¥í1
+éï}}ÖúVòXV–°¼Ðu#™« 8³B1p,“[
+œ¢¯Bßx
‡Ý¤•Y…ûÂîÑV–ÀO[Y :ãô¢Æø¯eÁEi@jž¸Ã…“9õ	¿W&*PÕm©@|%ÚžPQƒJÔ#ɲWVÁÈŸ.dÚ€2´õB…´
++v¿$L{´4ËËxçñªP„×¾O°ŠïÆã×X%t»	£¦×Œ°óléŠ-¨Ú¹<sÇæ搦m¬iÊp'}üeºñÎE Dƒ¨.Q_­_%ø $^x'~A†OÎJ«]Ý»8>÷åD^>S#[Ùë€)Dî|ž«€®¹ÎÿA
+p+_Ï6I<œ½ŒÕkÙê(WïZˆ¥hñÞ×c´#kÿîtô0©nñ{˜ÂÐ_†Ú/±ñ?Cð¿õÔžͤ½€pŸxœS	“è&
+ÿÂqR‚^­Ëº	„[óRºÔfAÜnn9 4œn}ÔÞnâ¢v¥”ì{)*ËÇxdݝø‰V*›ûþS´
+x~ÂH8õBc	¸‹‹^ÀÞù/4§·þ¹Cs¸ëÏ­xÝÌçTÈ­·æž“éÒ¿Š„ t+ö6Åå«Øh\i­‹Ã5ø&ø;>wþF~»=äž‚¦ãe©5Ìðöø¦_¾Á+EŽ÷M˜)Ê_¼
+yô:YøÐ|À ,J¾>>ôüÌ-^eåŸS!óßd¤N+íÚ‰`xê·ÝšO,á/¶˜!#ÖU‰ÝÀ-7l}&¦è¨%Ô0käÔ¥Ï0—¯AŸ¡¥ŸnÒ¥Mèðµ±Eƒ×ÞáøœÖ – þ^ú"@Ë}ôú升Iý#.÷þG¬‹<¡ÏrusVð'ô:†ÀÔ†ëi³ȏÌÀHgÊ/¥Q&é.¦™œ=ó+K–eæ
±…\¬;ľ}"D”аÀr®&	©(¡ñZ«~éd¦:Q	íìB€e·µ={Ð0À¯ÒÃµ× íÙÅnNª‚Áê‹¡æ©CQi#]N} A at 7aÙ´ï5y˜Y~zÁ:–ñÞÆ[CH²óé­EÁŠŠúÜ\¦ú>Ê°j
Ö r¤âñ¦ª¬-Š[gáÑÏÙ$uŠÚ%~æ{i—«Ô
+·CôòE(4LB6eÁ~Y•/3Å{Q„úà‡dQ?ߎȷâ	ÑX3Y3•‡E^éæC²™¶÷Y,¦iΚëã}v•s”P9A– ̸)1™þbfAȱl{3Z|âo“•
é“d—nf¥UCÇ“ç>@R\÷¹Uùb#-TH±úš<˜*°ÁY‹ßp.5Á0<–Ú¶•VD2¡¾Ÿ9›Xìÿ‡ýý™‘éƒñ¤I8¿’n=ŽI¡m*iÜxç!.Z a°l
K1ù}Æ‚\<½?Bï?ñμûendstream
 endobj
-168 0 obj <<
+166 0 obj <<
 /Type /Page
-/Contents 169 0 R
-/Resources 167 0 R
+/Contents 167 0 R
+/Resources 165 0 R
 /MediaBox [0 0 595.2757 841.8898]
 /Parent 127 0 R
-/Annots [ 171 0 R 172 0 R 173 0 R 174 0 R 175 0 R ]
+/Annots [ 169 0 R 170 0 R 171 0 R 172 0 R 173 0 R 174 0 R 175 0 R 176 0 R ]
 >> endobj
+169 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [98.5482 758.8407 127.7087 769.68]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.swig.org)>>
+>> endobj
+170 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [258.754 758.8407 287.9144 769.68]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.swig.org)>>
+>> endobj
 171 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [267.0288 312.5145 302.3461 323.3537]
-/Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
+/Rect [204.2029 307.9714 236.611 319.8319]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
 >> endobj
 172 0 obj <<
 /Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [73.4132 300.2803 149.368 311.3985]
-/Subtype /Link
-/A << /S /GoTo /D (helper-functions) >>
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [185.0902 284.6191 217.4983 295.4583]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
 >> endobj
 173 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [73.4132 288.6041 108.7305 299.4434]
+/Rect [267.0288 284.6191 302.3461 295.4583]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
 >> endobj
 174 0 obj <<
 /Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [73.4132 272.3849 149.368 283.5031]
+/Subtype /Link
+/A << /S /GoTo /D (helper-functions) >>
+>> endobj
+175 0 obj <<
+/Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [270.1513 216.8731 305.4686 227.7124]
+/Rect [73.4132 260.7087 108.7305 271.548]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
 >> endobj
-175 0 obj <<
+176 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [110.73 149.1272 139.8904 159.9664]
-/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.swig.org)>>
+/Rect [270.1513 188.9777 305.4686 199.817]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
 >> endobj
-170 0 obj <<
-/D [168 0 R /XYZ 74.4095 789.6651 null]
+168 0 obj <<
+/D [166 0 R /XYZ 74.4095 789.6651 null]
 >> endobj
-167 0 obj <<
-/Font << /F56 126 0 R /F8 95 0 R >>
+165 0 obj <<
+/Font << /F8 95 0 R /F56 126 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-178 0 obj <<
-/Length 3003      
+179 0 obj <<
+/Length 3162      
 /Filter /FlateDecode
 >>
 stream
-xÚÍkoÜÆñ»Å¡E€S#®÷É]6Ÿ;vS´Nª‚¦0èÓI¢Ó):9®ô¿wfwv¹K.y²Ý¦…@ٝ÷c)VþÄÊj¦ygVÖu¬mXmvøêž=$Fë–iÓZ¸¨<mÒãFZæ:£kP¢c4jE§™RÚ­Û
-fÛÎ"Ôg?3í
-Þle»:»XuS¢…EG¨³ó¿­?9ëŽ[:®áxwÒ©Ö?pÃáê
-Ž8îÃݧpú†CÀqnŸÃéŽ7p¼"<[8~ã/àx	Ççp|KžO˜€žп„«
-õ›S<ÐåO³XÿŽÏNþ~öÇÇÏ\&—ÆŸ‚@ÊZHçåröšˆN­Üú€ç»LBZÙ5Âôpç¯=M¹ýµÝÜÀýEø=¼½ò¼ˆõæD†÷#ƒ—U4È$¢Ò_ÇßýÍ°< àù*.cP¬YB5ßyJ(aR'XÄ}^ÃÉÁ╨ ”s(#pàÔËá:c|K,¨ðC”=˜NÌùËA6 at iÕ(­™5¼Å	Ö#=•Ë­GŠ«êñ…-àRJ®7ûð° P¼£Öý+¸Ó‚
ÁíŸO$èì4€Æ%ày¢yåY
ÏÞ.lädPÛ! %6pÌ&>Qψ€PIÔàêà̺•(><JæÐg‘³¿z€ñlEYh˜?¥B‹ìôš]Mu H¤`Ž;1Øõ¶¢X0~cuKºº!ÇÚQXxóÜL(02+:z‘l58c#µŽN„§›7d/x‚#’:H,(j“´'u*žV0fB¶¬r‰Ç^ê!rlH é÷-©ërʤãÌ*€ñ!Æœæœ^ñmpiû»ÈòÄoˆ Xäñås‘<‘™®êaŽ%JfHM¢í³€§³ ¸ŒŽ,c–†ñ]å­a7‰ˆCÿ‘ÎA±û7p!ìÚG¼ ®GOº÷wîƒÎ•pषøà]x‚Ý&‹x9¯OíuÛp£X[WâÙ†0àð¶ŒÍß
 ±û(R'†Oèà}ý.K_]à+|à)e<%Âw¦?iÐfdXD
-bmÎKð?úòl¨l˸æfs­•¡JÀGw—ómV/$ø&Á¹mMÑ"#å|‡5Àóñ2$X¯äN–1*VÔ2qÉ[¨V¸.‰O•4ˆO˜Á<nFç#SDiú·mL}'ž§ .°Zò?.z··$RR,ú
¡Îp$3m
ŽR?Tu	~YzS´Ëª3òŒâjYu	j™¸á†uJª’ø¦§è£•`FB™UøGVãPRŒ¥Np'H‹V]²>©´¬Í(»ï†|ÿ¦|-¤¿„|E9¯üÓuŸ‘ð¡àº¦FÙ¶ÌZˆåPGÂòÚîˆ|“¿0u‚	Ú#Ø)”’-cìêqÈJ‚våmoÒÉÒ•e/8”ô>j S-
-ssMÚ9Ÿj‡.ý>z£/ÕÞ&Uü~ÌlÇZiQL'•a˜o¤"Pì£~)°Ñß&ö‚¬R=Ú”¤L8žSƒôŒ®ÿÇ—t/ÂœÁñº›ªp¿’t>ñMÏ̃¤n¦\Øoèq½
-ð¼ÂlŽ÷jèÚ*‘ɜ"ò=%ñ{â®ÏjÅžˆSSHýÜg‹<? Éû.먆^¬
-Ìû½Šu¿‹… ¥ƒIîÕL:×­Œ°`|üxî%ø&¡’{Çhq½T
]™„¡)â`”åz&I˜ –WyšI	U¬¢YO+Õ,4BÚ¬4ýPMO”i±Êç±å˜†Ð_Ôáúr‹ÑÞȬdÝæ ›-Ô¸ÐL°€³Ìª£Éb|^“¢±]iŽ>të'Ÿ|
- Ÿâ•›„Én”“ò2Àýƒ¡K
oøÚ3ï},x²Ï# Ÿ÷¢?z<Kërø€¯Ô@+B9›½‘J§|›þà[lÍË*
 oâ<c®÷„?/¹+ñf!i.9­±±Lͳ£íׯ¾G!@kÌ»±#‡®Z®Š¿Aµ
ðÅáãÎD™€
´†¯¿& R-º±) °¯*S«>â?§}©VP_êQen”u#o„ƒ7Z—â7œ¢ßÙ®Ö¡ùÇ#ÈêÜÈÚ™–KZÁ8‡zT;¨f•¶Ç
-¾ßä/Lîí±‚b¬n´ŒIÁGPËÄ©k£Kâ¤åý.È©¿Ée]¯«.Bœuixš?«EŒbߴĘE:æl§@¯RñèÇJG$9PG"8؝4£È=bì3–bŸÆ>7ûlŠ}E€.â¼­ÅyAønÀ’dx®)dŽ¬Ú`°"
VÔâPò÷²q&ø&aj´ËÆ©´³ƒR«\ÆÈ8ÔâÚ€MÚñÅv¤4ÂÓ‘Z¼ÛQóg‹$ôØ© ÷…ÚR—†t<å`GlÓØò›rdël¹	ÆçóiÇ2Ó9ók¤ÊŒ¼‘®eFjYÎÊq_éç“Vy:W×øÿÕõ6ŒÍϼܧ8Ûîüþ×aatžOÎåÐ ¨§¬²ëoÃé4òʯýù@nc@
ž ÎcÆqyÆGÂV±Vrñþ3zÍ¡éQGaHê‰õƒBh¶ë—Ù…
-ÌÙÄ‘ßÏÊçöé©O—}]08•óe¡¯1åX‡Q…§	ßtWoºé`˜èÒÜ{v·
-»}œ5–ãñJÊ8/KxJyꑶ³r”¢WX‘„³óÅÃ!ß•SVf`ZQ•™r|Qf³ÎØðÕ1Õ¶ÝPCÖöL˜q2²~Mò¿©ïƒHÈ”NØ$'X¨ÆèVÆœgÜ' ^C³a³rßÒŽÛ>Åæ» ±ý‡oÌni‚kÅ`¹V	P<É0Ï
† @D鎍ç"x“ÃORÒ)Šä…÷ÈoânM1*à–YHw£UŒòa‚Z&. fé”U%õ±)á~X#]mȵ×H¹Œµ
ôe)ÈIQ
rÁ´¥t.3Mø{q†ž–ÃÙl¿ÔÇ;™R at Fnº¹ä÷•¨ÖÏwÍÏG+ †7¡˜?„O
-ðV´=µ˜4¬«ôêj½ë7>>ÏŽ¡4fVB=ýáóÅÅü€1AÅ·ò_R†¢ÛÒóøUÇaȲOé‹‹3ú}IçøÆ7T:œŸy}ÇׄvôjüB¤öZ=×WtEÏ ßDð'CÛ?©Nóyv?L7 0E8ïãG.wqƒ/ÎPBÇWm>x—riwûÿ^Ž™p2æ¼ûŒËä„÷Éã±tt:IÈGÜ~×D'rPpQzIÂ2ë²k¡‘á†yïˆ@ÿ!ç˜ûžˆ´ñ‚$ÿ=a}JJï2¾ÈJorò ¨Ú¨ú#“ÊÄ?Yi,úÏNmÆÒ
-úaÔÜ$P¡~Ø$BµE1SmºädtŠwÒv,ºîÊ`k—´À~íãÖ¦"+¦aAt:“ᙝϵøbŒa²øjx4³=ÇÒ…Òòž„LWTï~ïmT‰Ÿ*M%jsF©”¡øPê+ëU3}n5ZÁ|Qœ¸yï Òpb6 Qhi2ì> 	]Ô^‚A«¯ÒhÛN*>Ñ2iॅÅ6	hBtT¦Q¥º‚è!}±G¾$B÷ÞÄÔgçùÂRÅ)ŽÈb Z’A—ÅÍL#¢3²ÈˆÆ­>Z&þ+{D&Ð’Lê¸Lhf2‘IFô÷	Ó$f†iá,à2‹Lg@LG¨£L/ј­3}€!<\.V0=óÅ —hI.u\.43¹ŒˆÎÈ%#ZÄç*³ÆàXá³Ð³uœÙš³#¢3ÌfD`Çå¡9ÃòwYÐ’<ê¸<hfò‘GFt2שåÔÎ~[·¼4É€*ß&´•	’Ö“¯ÍpŠÔ¶²Fïß}çî
-endstream
+xÚÍkÜ¶ñ»Å¢E€½æD‹/‘j>9vì¦H ½"šÂXï­Ï‡Üî^n7uÜÀÿ½3ä"EJ{¶Û´0ä•ÄÑg8oòø¢…|aSm¯Æö¬ë4_¬·ÚÅŒ={À	F©Ž)Ýx¨Œ6Z´ÌvX4)’Ï/<|j=ë;Ñ-.^-`Lj©¦ãÌt½Y\\þ}y<ãË×p­Žgÿ¸øóƒ/."ZÎLtr€w´qèîŠ`¾Mfá›ôƒb%ZœÆ_a
+ßÁõå³bÒ2Û+1šÆHêq%Y+tNûÍ™0ËýÏ@ý®Ë³FqµÜÁíþˆ÷r¹]¡”Ööڏ©mðQã°Ë·ð|{Öˆn¹Ù®ný—‡kxyµóòåK¤q7|v…£ÿÄo7;wõÒ!Ø#)?à!ß\Ÿ	"Z£¿B¤Wˆ}˜à³£C~Æy…LÝ¡„>Õ]"©{¦D«@˜(D·Åï<h&A
+Æ%2X4
+Ä
+Ò¨¬×Z¸Á§gV!9¾¼GAlpfoqü¼2­Yß÷DbGßnx¹3s|s“=˜AdÂiõᬑR.Wþç°9âXî_ùßÚÂ!ÛúÍ5Mýu ŽBÇáËÀ!÷(ö׎O· zç?ÍWßܸÙ!ÌÇ=‚lá†Wž×BË	‡Ð+&¥²`	
+g™œ{p¼ã!Û'Ž#/ë[²‰·gàcäò‡V·¤Q;'÷ö	š-\‹Ãuî_£xö´v/	Ï®?øaüâ9\/àz×·táý÷„	èqý«ªPßÝ›â
+˜ùò\Ÿ•zÔ¸[ÚVÁ…ur¹xŒ	lIZoÚÛDBJš¨sÚ(<n~h¹Ü¬QÉȽ^UÑ “ˆJTø÷»az@ 4,¡-ë¹Ôd!+rGWNÞ…„fBE؝󍜨;’WPŠ)”Øsêäp“0¾!¤ÿ!ÊLEæÜã 熤RÌè¶ËÝÐÕfç-1øžKoë=¬ñ%/Qxßs¦ykǪ?Ž>zàèGˆÍ`õ)›8Ì{¢ž¡’¨ÁÔÁ˜w_<
+fÑf‘³¿9€qº"´Ô”R¢FöjÉ*^Îlkù ×›Ê‚òk£ºpàd†ÿMºê±J#ÂÛuˆˆ.*FÁ‘E	å%æjWO¨(T¼Í´`Ì„èXÇÅÔ½çX“@ÒïZ®«’IÛ2#uˆƒ‡àsšKúÄ1´>ú€KÜÈ/)6œœ~+Á“G2åüK³LKž[˜K @ûoH´«ÄaxÃé
¤CmŒß^3&Y°Í¼!^ ©¼¥Ù ì:¡è
+ÛÂ=,,dXäƇUåŸÇ*¤-øæè×\rFzëC´ðÎn“Æen§§í©½Î`ã_ds[Ýåx6Þ
8%¼Í}3‚„o½#@ìÎËÜ	>|–ÔænéKLAx;ð£Þá;êŒð“ˆNŒ£Î9éŒsfÓ±VµzÑ¡wî{q*uðMúA™=hçSwÚ+Z«FÓ%+jž¸h;ÈVZ•/i;*ŸKÎI=v#·#UDiº¯‡Õ(mǾNûü¸`ÝN“h‘B’°ZêT	G2Sl¡î»t~^z%Úù¥Ó-ÄÙÊù¥‹PóÄu	½2'¾^‘÷Q’3- ÍÊì#Éq((†TÇ›„Å^É>wY(ÏÏr3ŠîÛ!Þÿœ$5°¯vCÂg?lF¥Dt7µe]ÇŒ_®ûŽikûËá›ôƒÒ
+´',°—(%=šÆØÔ	â%¤íq¹Ã]‘é5]ÊQôw‚CI§ÕvXZæú†Vç²\zt5l°F—ª½‰K1YJicx¯¨¤Ó…T 
+uÔ¯5ÇÿûÈž—UÌ}™®gT =¥ç¯àú‚Þ˜¸þDïBQåßg´yœÔ»Ú¤>I&²&á&ë€û
׳@ã'ð^U[E8<ªS@¾§ ~$îVI®¸"âTR=÷ÙÔÞݳÈû.©¨†Z¬ÌÙ½†Œu¿
‰ …ƒ"ö*&Ð:”…h)ÅéØKðMúA%öŽÑâ|oCÿ"LØgty†¢¨Uj4Ÿ"Ôü, N3!À ²YÔ<k­¯…&IM?t¥‹Å4˜å·¡ä(]¬_æÔáùÊõ‚´HRÖM
+ºÞ@ŽÅdVø{
È0‹$kЊ4ÆÅ5¡ צÏÕÑŏ~ùøáãOôS|²…›ìG1)MSÜ
¤=BüÂåžAy!áI
+h¼| |Z‹þèðLH­óæ~R[h¬:îÓÙä‹„P¼-ð­WWb«6ÏÒ rúÿ¼'üiÊ]1ö™p¤Z‘Éùà_•¥T[ŒŽ¦·¤\¿¥û7¯!åÑ]¨È¡ª†’«boPæCü_18ÉZ«ml7n—_†sì6÷cU at a_WºV« ˆÿ*ëR%!¿T6áF;²Fx1X£±ÑÃ-ڝékšY @VûFÆL”\ÂpÖ¶*Ý2Þu§vK"|“~P:Üí©„|¬áv4"á#¨yⲩ+­râ¯h•÷[/§Õ.•u=¬
+8sqÆ
ûd¬ÚÑ2ݬ(SŒ²)Ò3kºÐz“G×VB?ú#éȁ*Þ‚Þ	=òÜE{}Ÿ6äûLéûì¤ï3Ñ÷e:óó¦æç-8á»K”áÎ?“Ëi”Á E
+´B°à\ŸPÎߤ”úQ WN©¨¤Zù4FÊ¡NWšiP•œøl9’+áùhYœ»Qñg² ôØ) ó…ÜRåŠt:ä`ElbÛòrDgM¾	àÛçÓaÇ0Ý[ý[„J¼šj[Ái¯ü‘ۀ뤣s}ƒÿ¿¼Ùø¶ù…ï—» w›­Ûÿ:Ì´ÎÓÎy#­­ï ã@ٍ¶ä68Toéâ2D›Fœ±'ì$ëDËß¿G¯Z(zxX#ÚvÄVÂPo×M³÷˜5‘#·Ÿ•öíãhÜ­»r.í"ô5¦,ëÑ«´±ÃWîê•›šñ>ö½'w«°ÚÇ^cÞ?Nís<ŸÛçŽVaxÎÖ%‡tWNÚwNÀ*24¼*3iÛY™õÌXmîÁWÏd×õCYÛ3aÚŠÀú
ÉWßÁ£'–›('˜(ÚèFÊgØ' ^}±a’tßÐŽÛ>úæ;±ùÅf·ÔÁ5|Ð\ó ('˜.§CRfdBó1€7)|’
+¤(’çÎ"¿	»5Y« 8w£YŒ¶¨yâr–^™S«îÇ€6ÒÓštP¹É·‘1·º,:9ÁgNK1¬¹HV½{¶`h4oÎ&û¥Î߉råæ’ÛW¢\?Ý5¿Í€^ûdþàà«àhWTj`Ð0£Jƒz½ÛÕÚùçÉö¢ä­²Ñ_LQL7#TH|k.ÿEØ º
‡S‡!Ê>¡ôû‚îñÆ7”:œÇ<N>†ëkB;ú4œ©}VõÕ]V3í6ÜÍPöÁOÌÓ\œÝÝ
 ŒîWáË]Øà=_ñU‹)ˆ´qwûÿ^Ž·"ļcÂe4Âc´xm9	9»Ú6ÁH ä-Ïã_Ä2i¢ƒ\\Ó‡›G‚aÚ:ÐÈ8¦ÎÑj<'ÉOXŸÐ¢á©ŒÏ“Ô›À‡˜<,T­Uý‘“NÉ eâ/f’þ‹³†C™17ÃûŒš:@ê‡ á²Ë’™jÑ%ŠÖ)¾‰Ûu"«º+=Ì]â?\øµÃ!‰IVÄèv"˜™Žµøaða";5Ml…¶´ÂD!×¼Çõ3E&šU*%j,³ZÊ{¤¡xF(Ö•õ¬¹zBó0ídÜfôûŸ–iX>é€Èµ4	v瀸i†R_Æ9ж)ÏTwLhøhf²M*ˆŽÒt *eŸ=ÄK¡EàR"4ïu¡wžN,ðÉ­a\ËyY$@3²P'e1GsÅ˜h])ÑpØê£eb8S]B&ÐœLê´Lfh&2IBôö	c'fŠi­±¢<Áô 4Ç4Afz†fÂôˆèÓ	Ñ{(Âýå¢Z†м\ 9¹Ôi¹ÌÐLä2":!—„hæŸk.µ·€ÛÔµ0–Ä	PåȈf\1!YU6
+¿R¡÷oŸasendstream
 endobj
-177 0 obj <<
+178 0 obj <<
 /Type /Page
-/Contents 178 0 R
-/Resources 176 0 R
+/Contents 179 0 R
+/Resources 177 0 R
 /MediaBox [0 0 595.2757 841.8898]
 /Parent 127 0 R
-/Annots [ 181 0 R 182 0 R 183 0 R 184 0 R 185 0 R 186 0 R 188 0 R ]
+/Annots [ 181 0 R 183 0 R 184 0 R 185 0 R 186 0 R 187 0 R 188 0 R 190 0 R ]
 >> endobj
 181 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [175.0442 648.9382 204.2046 659.7775]
+/Rect [110.73 758.8407 139.8904 769.68]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.swig.org)>>
 >> endobj
-182 0 obj <<
-/Type /Annot
-/Border[0 0 0]/H/I/C[0 1 1]
-/Rect [474.6661 648.9382 503.8266 659.7775]
-/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.swig.org)>>
->> endobj
 183 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [265.7793 625.0279 294.9398 635.8671]
+/Rect [175.0442 617.5703 204.2046 628.4095]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.swig.org)>>
 >> endobj
 184 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [173.2926 514.1922 205.7007 525.3105]
-/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
+/Rect [474.6661 617.5703 503.8266 628.4095]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.swig.org)>>
 >> endobj
 185 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [270.0076 478.6057 299.1681 489.445]
+/Rect [265.7793 593.6599 294.9398 604.4991]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.swig.org)>>
 >> endobj
 186 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [314.0087 466.6506 343.1691 477.4898]
+/Rect [173.2926 482.8242 205.7007 493.9425]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
+>> endobj
+187 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [270.0076 447.2377 299.1681 458.077]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.swig.org)>>
 >> endobj
 188 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [73.4132 375.6029 108.7305 387.4634]
+/Rect [314.0087 435.2825 343.1691 446.1218]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.swig.org)>>
+>> endobj
+190 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [73.4132 344.2349 108.7305 356.0954]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
 >> endobj
-179 0 obj <<
-/D [177 0 R /XYZ 74.4095 789.6651 null]
+180 0 obj <<
+/D [178 0 R /XYZ 74.4095 789.6651 null]
 >> endobj
 128 0 obj <<
-/D [177 0 R /XYZ 74.4095 728.469 null]
+/D [178 0 R /XYZ 74.4095 697.101 null]
 >> endobj
 14 0 obj <<
-/D [177 0 R /XYZ 74.4095 728.469 null]
+/D [178 0 R /XYZ 74.4095 697.101 null]
 >> endobj
-180 0 obj <<
-/D [177 0 R /XYZ 74.4095 684.9497 null]
+182 0 obj <<
+/D [178 0 R /XYZ 74.4095 653.5817 null]
 >> endobj
 129 0 obj <<
-/D [177 0 R /XYZ 74.4095 455.4127 null]
+/D [178 0 R /XYZ 74.4095 424.0447 null]
 >> endobj
 18 0 obj <<
-/D [177 0 R /XYZ 74.4095 455.4127 null]
+/D [178 0 R /XYZ 74.4095 424.0447 null]
 >> endobj
-187 0 obj <<
-/D [177 0 R /XYZ 74.4095 412.1724 null]
+189 0 obj <<
+/D [178 0 R /XYZ 74.4095 380.8043 null]
 >> endobj
-176 0 obj <<
-/Font << /F56 126 0 R /F8 95 0 R /F51 119 0 R /F14 191 0 R >>
+177 0 obj <<
+/Font << /F8 95 0 R /F56 126 0 R /F51 119 0 R /F14 193 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-194 0 obj <<
-/Length 2427      
+196 0 obj <<
+/Length 2482      
 /Filter /FlateDecode
 >>
 stream
-xÚÕ[Ûnܶ}ÏWÌã́‡åÒcO/)Ú (ürÐÊxì=îÈNÚ¿?›7i“’HO:Z‚uYä"צ¶ÈÅ	[QøÇVFI[µ2MK´Vlµ»{EW7ðì?¯XÀH©‰TÚÀÅÌÓ­äŒ(EáŒÒ´J΢ږ¦áÄhFŒnEýûòÕß2¹jI«¹^]^¯c„&Vìòêçõ/”™Í¯—ß½úær¨‘1M¸‚R¸Â	퀚ò*y¡\ˆ6å}Ú°õ==·pÜ„ë=W›­âbýNáöMÞÆØi#i8È\V¡JÊDX]™-R&ç]Pó¦Ý>A	Þ’¦iEE	„*)au%J´H‰œwA	Ì{ò9A,&H+ÛŠV#¨$U@Õ•*p"¡2ҝé5t4vºƒãq©Óºm¥MSî5Fº=Àªý.ÒŽŸðÎ÷<á½
-ݶ#åmaoòÅ·
*¼FU@7¹òÃëõýf+´ ½Øú+—ÒÉyx?hÊÍúãí8Â,²îûÝ1˧¹??Üoøº¿ œa돶p¨Õ‚÷¶ê½;³µí£Îÿ¹q7÷±ÖïF"”ð†Zñl¾Ø—p\†¿ÿçÿ…ãG8¾™*ß›¶&Tpáøønà„¿ó7w‡§ Á•¿ñv³åÚwG¬;èg³þÓ_®g…üjT«{tcšŸ²–NMccOZ¥¸kÊ£¯Ïªéhz(,üËl[ÖÛ
-ö¶%‚¯;ß›¶Üž±ì¨u^CÝgÓPÏðÚñáéÑÆF9½ŽÇnÕýéRÌD*(Î"‹ô“‹öVpºîl¬Ž®gÐ_
<`þÁÞŸ»ÁÉë*ÆعJœª DúÁ5Tîp+™m`×÷‘Ï[èÑ
eÏçÿØB‡'4rïÇZÞÎt3<²¨C¼ÿ>÷C:ádëíC>Ý.”=Ý  1ð^XWö10±HÚÝèdpÁ¥E÷Ž˜l¶šòõå»øî'I¨6d³ÒÔÀ›Ï}²OŽ7òÎF¾Ex—ŒðȘTjûñpl(¤‚¬1œ¢ic²„8€ŠMà0²e«EÒ„(=¦ b>ÂÜÍÛ0а²CŽ:G¡»4º”6Î˜b‘»CùC®ÈԐ²!ÚõÌÐð¢.“JŸiZB[ÁŠ¡@å&4œ´öC…ZÐï1‰™ß¥BI¢ì¼/I…¿PEmtžpF¶i/äÄn&5BæQIz€ë]wïOÆ	›Ý]P|ö<Æ÷øj¬âàqø­ƒK7.†®ôi¡4û.‰Ù¶gc°‘ö½•RÄ÷Ö¡çðLaw³w3Âû˜cöˆŽ´²0Ç5™2šPÉf§ïqŠ0»$“ðùdÏÆ)®¾0…`Õ)T©½h
-5᝟Be¼n´Õçnrm?¢oÂcû)_(ƒãçpý&Üû5ŽÏ…i©Ò”0Ê*Œ*iauMK´HÓœwAÓ”÷™š²õ¿ž¯ë…‡Æ—äÑ_Z[ú‡€**-%¿¬¢4B•”Ž°ºÒ%Z¤tλ tÊë”®hr1Þ>c<ŠJó†pN+LŒ*)au¥K´HéœwAé”÷œy‚/䉓sãvE¤+:#TIç«ë\¢E:ç¼:§¼çÎüÙ¹£Žâ•xÀœ”I+F%Fâ1Àªñ(ÒŽñ˜ðÎÇ#ã=!ÃT”;ªÆ£¡0㡼„*Å#Âêñ(Ñ¢xä¼ñHyÏ™‡Ä	yèÔÜ$5Ì6+™iÄ”t÷ ºêË„Hó”qAqÌxî|$Îœê(Q‹¬[Øçc…P¥hEX=^%Z±œw!f)ïÙ³VEßóç6µ²Ÿë3C\IJaË9Ãíè×Ç[ÉÛÅ£/¶CS–1C´QMðOÏ›‹Jù%3 „$¦…u,|ŸÞw#¸7®Ãç¤m¯BÏîœõЗšY—Š,¸˜ö³½½஝«pÜxKsÌ\mˆd­HŒÝa³…º®‚= ©/3׊ÞÚwŠ®¿·w~sv„ãí÷³úó–èV¿ˆüŸ2%Í¢i„‘YX(ÃB™7Jœv(dž.˜Ã¶B›`ª+¢„iÒˆeQ±&ÊbT.‚órüÿh¸ÜÝFW÷N‚{ˆ-(÷z uoŸéÜom(ßwqßäS-üÌ–¶Û/³||°G[>¹‹o÷AúJ%‰§ªT­ïÎ*‹ú„ê}ÕrÖH‡—E	=zf†=3àù°QÁˆ}Š®€ïÍnÛýßäæ`ð£ŸÄµçÃÖlÒ$Hšìän½™k
ÜíæÀÍ°#q
-gu]‡Zœ‘ŠöÝ\U³»	‘î8V2~ò»nØ,q›
-Hh(òjÛN¾dx™&Ö¶"B5b%ìï;Œ1Uo;à·¸ÀŒ¹Wûlw[c`Ž¶gboT¥r°`<m…÷æ)¼æNÅ`q+Â93é¦ÏÕð)|œqʘك"µ®»É|Jsb¨a+ÈDq®k›<¿Å¦»<“jmË߸.þèßd¯I*X“µ#Ÿ×ET…ÝN;%|XöY'<zì%¯þ6¦ã·¾`Ægžü%ë]0èOkÄYï¸úÂ$}€U'é¥ö¢Iú„w~’žñ~ÊüÅÞú>@¿
-3êsÚñ¼mˆV¦bcTAçVÕ¹H;ê<á×9ãýÔ%ì©Zÿu‹ž7u˜®ÇUR?Âêê—h‘ú9ï‚ú)ïËZô§Æ¨¨¾Öð	ÔÓ£JêGX]ý-R?ç]P?å}és.+Ÿ+
-«']±Ž1ª¤}„Õµ/Ñ"ísÞíSÞÏ‘w>§½Ïa2Ò@§+1B¨RŒ"¬£-ŠQλ£”÷ï`ïŸïbŒ`ÉÛªZ
-A¥T=@NŸŒt!<	éKg¯—Ü àTÊTÅVƨR,"¬Œ-ŠFλŽ”÷sd´¿ßk¡FUþ—F"9Àª‘,ÒŽ‘œðÎG2ãýçlœ:vž·i ЦAoW¶LL–ÅwÝCð÷Ö˜ÿ¤‡ßæAqwö›GÅÏ1k¬yCÛ?èÑŽƒçBÎ ÃË÷™~Û}Ùòà,Ÿ.ÌD
Cír:Ô7cÞ„^‹àô
-tÑrû0ôÍ4ȃ
-÷ÑxvžNØ/M”‘<u‡ß×âup4‚éÆN°£ÝßýÎÎ~xïÅßµ¤»ŒJ²äHÀR‘+3¿ô‰˜-MŒÛ*¤áCM¶O*§S¦†Zó9¾ÿó˜~Wendstream
+xÚÕZ]oã6}Ÿ_áG»ˆY~K|ìvÛ¢‹î (òR´ÅBãx2A'qÖJf¶ÿ¾—_Ò%%‘öÔt±¥Cò\êêêPlEᏭI$5jÕ´†h­ØjwÿŠ®náÜw¯XÀH©‰Tº3g·’3¢…o¼!­QreL×F3ÒhÓXÔ?®_}ù-“+CŒæzuývÅ#¼ab5À®o~YÿJY³ùíú_¯¾¹zdL® îpB; ¦¼Jc^˜¤¼Ï¶~€OŸ;ø܆ß{øÜl¶ŠwØzÊÇ'Ü€zBRQQ¡JªDX]•-R%ç]Pó¾‡é´o§-(1ŒUf=‚J“¨úœœhÊéÂŒé	Ëà4M˜"²eº"
+B•T‰°º,%Z¤Kλ æM§}†”ª8¯(P%%"¬®D‰)‘ó.(yÏ^#§‹¥[I4çmY,Œ*ˆ5ÀªbiG±&¼ób%¼oaºqê])yjm3¢rKÁ¨ÒÔ#¬>õ-šzλ0uÌ{¦m×Ë› ÃÞäËo[Ôx+i[ª€®%†
+¹}ÿ°Ù
+-@/¶~çÂOéä<¼4åÍúãݸÎ,²îûÝ1,ÎG§¹ÿ~xØðu¸†­?ÚÆ¡WÞÛ®÷î›ímNuþß­;¸½îü48¤QÞR+žÀ?ö|®Ãÿÿ„ï?ÃçGø|3Uî<¦MèàÊðñÝÀ	~çîÏAƒàÍf˵ŸŽXw0Ïvý‡ÿqx;+ä×£ZÝ“[›0¨k'œ6­=1Jù»Â“ïϪéhzh,ü%mGÖÛöv$‚¯;?›¶Ýž±ìª³}r;Wêj(­h·
âã󓍍rzÝºûÃ%š‰TÔ­Ѳ¸X|¤Ÿ]´·‚Óugcut3ƒ‘ønàó'öþ»[,p}ȘÂnBcŒëÄ©
+@¤üæƒÊE ³ìú>røu=¹¥ìùü?ÛèðŒVîÃØË›™i†SuˆÇ߇æ~I'œl½}˧ۅ¶‡£[ 4
¼kûX¤V
ãnu²¸à§E÷Ž˜l¶šòõõ»xí'IÈH²]©–ûßå {æx ?álá[„wɯŒI§vqǁB*Èù°ËQ¤ƒÉâ *ÃÊ–F‹dQz¼LAÄ|…¹ƒwa¡ae‡u8ŽBwi*t)m19Ä&÷‡>ò‡\‘©!eKtÓ¨C3À‹ºL:=14²1„ÁŠ¡@å!´œ¸Qáôûÿ†˜ÄÌïR¡¤-QܨxEÄ¢KQgœ‘mÚ9±›IÐ†yT’à÷®{ð_Æ	›Ý]P|ö<ÆëøfìâàqøªƒŸn]SéÓFi÷
\³cÏÖ`+íu+¥ˆ×­CÏ-à™Æî`ïꇘcöˆ7Ž´²0Çt%
”Ýf¶teJ®Äüó¹„Û'[87–P¸ûB	5Àª%Ti¼¨„šðΗP¯[mõZ•Øö&ú:œ¶°ŸÂç« eðù%ü~Žý×çBYª„„ÊßT*rŒ*iauMK´HÓœwAÓ”÷DMÙú‹Óu½Ê=÷Ó’ØÖÿ¨¢ÒPÐhA+ UR:ÂêJ—h‘Ò9ï‚Ò)¯Sº¢ÉÕxø‚ñ(*M¡D 5Ç£JJGX]é-R:ç]P:å½džàyâÜÜ!Û†4
kÊ:cTAçVÕ¹H;ê<á×9ã½tîà'çŽ:Š×âÑp(zxşŨR<"¬-ŠG돔÷ŒSQîòy¨üŒ›J<ª«Ç£D‹â‘ó.Ä#å½dg䡳s“dPf	UÑ¡JÚGX]û-Ò>ç]Ð>å½tnÎMu”¨Ek(ädÅLǨRÔ"¬µ-ŠZλµ”÷⬢ïåóŽÚ)Þn|ª”¶sæÛÑ?+ƒ„fñáÑ7ÈMG;¡©ËXCt£Úà¥^6/•rMfFÁƒGcà™–P隆7áƒsÕ¶7af÷ΆèƒcͬcMM{ÂYàÞp¿ÃpÜx{sŒ]ÝÉŒHÝŒÝa³…¾n‚U ©o37ŠÞZyŠ®°G~wÖ„ãí÷³úsC´Ñ/"ÿ§”§YX´"­hdÊÇ°PæMç©ʱ¡F±íÅ&ìŠ(!d‡4bYT¬¡²•«àÂ<„½€h¾ÜßE‡÷¾k&ÎÛQîò*.@ëä–\|5ºø[Ê÷]ÜCùT;?³¨íV̬OìÑöOîèÛ=‘¾ÒIbÍi:Uëûƒ³Í¢>¡{ßµœ5ÕábQBþ‚aÿx>lT0eŸ£CàûÁM³[8Gÿ?98˜ýh÷'qðÇÍÚ>¤IX4Ù?ȝûfn4p´›·ÃîÄ}hœõõ6ôâLU´纚ÝYˆtDZ“ñf€”ßuÃƉÛ`@BC“ÇÐcØ‚ò-ÃÅ4±¹ª+ÁÜÄc]Vð¹~‹ÌÝy·';Ý
+6¡FHÇ3±ºª2Šr°`<…÷ö9\æNÅ`wˆÃsn²|î­†ÏáæŒSÆÌ~„©ÝMê)ÍIC¶LnZYÛð‰ø-n0Ýñ™tkGþÚMñG—ø&ûNP€	ÖfãÈ뺈ª°Û²S5aŸuÅ£ß^òíïb:^pîÆ|–1áÌ_²á¹‘D˜ùÝ–Øð¸ûB‘>ÀªEzi¼¨HŸðÎéï§Ô/öÐúu¨¨/iÍójj]{	£J:GX]ç-Ò9ç]Ð9åýÔGØsµþëv=×
+¹ÊnTÒ> êÒ8‘òé‚ð	éËõçF§¨»l	£º&<B•”°ºô%Z¤}λ ~ÊûÒÙåR†>ÜnàWìŒ*iauíK´HûœwAû”÷sdœÏiòC	G8”~•!T)FVQ‰Å(ç]ˆQÊûw0ùύw1F”‘–µó£J1Š°zŒJ´(F9ïBŒRÞ—Îa/¹ÀZMDk*ÂUˆÇ «Æ£H;ÆcÂ;Œ÷s䵿ßk(<¼šÊ–3F•"aõH–hQ$sÞ…H¦¼ÿ?箝ó7
zûdËÄä±ø¾{þãÞó/D:pxOš»o¿{T|‘ŽYcÍÚþDv<r~|Ÿy	Üî;Hó|¾05ìZhãKå3æM˜µNߨ@-·ÃܬAƒ<¨pìgçé„ýAáñ ‘<}xx×>ØßG#˜‘ní;ÚýßÿÏÙÀÙKøîT|Ç5 ÝÝ`T’%G´p-”³E é‹¹F&¡ô‹ ;'•Ó)NI«5Ÿãûñ°ìendstream
 endobj
-193 0 obj <<
+195 0 obj <<
 /Type /Page
-/Contents 194 0 R
-/Resources 192 0 R
+/Contents 196 0 R
+/Resources 194 0 R
 /MediaBox [0 0 595.2757 841.8898]
 /Parent 127 0 R
-/Annots [ 197 0 R 198 0 R 200 0 R 201 0 R ]
+/Annots [ 199 0 R 200 0 R 202 0 R 203 0 R ]
 >> endobj
-197 0 obj <<
+199 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [192.2385 604.993 224.6466 615.8323]
+/Rect [192.2385 577.419 224.6466 588.2582]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
 >> endobj
-198 0 obj <<
+200 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [447.6812 604.993 480.0893 615.8323]
+/Rect [447.6812 577.419 480.0893 588.2582]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
 >> endobj
-200 0 obj <<
+202 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [444.362 343.5488 476.7701 354.388]
+/Rect [444.362 322.3246 476.7701 333.1638]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
 >> endobj
-201 0 obj <<
+203 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [161.7108 331.5936 197.0281 342.4329]
+/Rect [161.7108 310.3694 197.0281 321.2086]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
 >> endobj
-195 0 obj <<
-/D [193 0 R /XYZ 74.4095 789.6651 null]
+197 0 obj <<
+/D [195 0 R /XYZ 74.4095 789.6651 null]
 >> endobj
 130 0 obj <<
-/D [193 0 R /XYZ 74.4095 664.1957 null]
+/D [195 0 R /XYZ 74.4095 636.402 null]
 >> endobj
 22 0 obj <<
-/D [193 0 R /XYZ 74.4095 664.1957 null]
+/D [195 0 R /XYZ 74.4095 636.402 null]
 >> endobj
-196 0 obj <<
-/D [193 0 R /XYZ 74.4095 629.5132 null]
+198 0 obj <<
+/D [195 0 R /XYZ 74.4095 601.9391 null]
 >> endobj
 131 0 obj <<
-/D [193 0 R /XYZ 74.4095 402.7514 null]
+/D [195 0 R /XYZ 74.4095 381.3075 null]
 >> endobj
 26 0 obj <<
-/D [193 0 R /XYZ 74.4095 402.7514 null]
+/D [195 0 R /XYZ 74.4095 381.3075 null]
 >> endobj
-199 0 obj <<
-/D [193 0 R /XYZ 74.4095 368.0689 null]
+201 0 obj <<
+/D [195 0 R /XYZ 74.4095 346.8447 null]
 >> endobj
 132 0 obj <<
-/D [193 0 R /XYZ 74.4095 153.2624 null]
+/D [195 0 R /XYZ 74.4095 138.1683 null]
 >> endobj
 30 0 obj <<
-/D [193 0 R /XYZ 74.4095 153.2624 null]
+/D [195 0 R /XYZ 74.4095 138.1683 null]
 >> endobj
-192 0 obj <<
-/Font << /F14 191 0 R /F56 126 0 R /F8 95 0 R /F51 119 0 R >>
+194 0 obj <<
+/Font << /F14 193 0 R /F56 126 0 R /F8 95 0 R /F51 119 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-204 0 obj <<
-/Length 3588      
+206 0 obj <<
+/Length 3673      
 /Filter /FlateDecode
 >>
 stream
-xÚ½[ÿsݶ
ÿ=…靼ú©âQR÷S›´½ì¶¬×¹ÛõÚ^O~V¯~VfÙu²¿~ R$Eé9Íu×{µD‚ ‚à€"N*øOœ4ºÔUWŸ4mWS‹“ýáYur}ß<L£µ)umxÉôîjY•­1òd2ùòüÙg_ãeW×òäüõ<—ecºæäüòÇâ‹SQÜ]÷§;ÕÔöõ®?U²xÓéÏçùìëö¤+;#
r©Nv¢-U+ìð; ‚áðä LÑcþúSÙ0èhlÇ</‰0ÅlwÜÞÂËÛӝ4Å ƒ¨íšncrfk{p€(R‘®°á0ܞʖ†Máx¬‹çg–ü"3zH¨Mñ¥Ü3
+ ?s¼Îòt§k]œ£Ø×NŤUÚ)«Ö·V–çpggÕ•.FPESì÷ÌwÂæº_­,¦{$­ð‹×¯G\σ£oŸi{7áí<&·J¤ùí´æ¥"×õw3sì‘Ãe"‰e8¹
»º™I˜{ž!Xz¸‹ÔJI]=JÒc¼rT’[«ê4Í<âNu²˜ñO•0ûk«96Ø.#ëâå-²öÕ¹?w¢«K£T{Òˆ®ÔM«íáÄ®»+¦ù.8¦ž~ c¯%[k Î{Ö>.h\È#¥)+Ý©DžÄYxªm)–ÌPŠ3ÔvºNû‘”õþoÖY¥xDãç@
H0ÚÇÜncûÉØ’÷³eáþ­žkíõ<›¶çj¬µÛî×r óÙ‰Z€ú»66£ëÙÞ,«º†õПiø? 9íQ48
?UuÅ‚?„‚£‹©;z&	‘ ÛLeµ°/Ékqº«EåÏŽ‘ÕT©¬@¥e8¢½Ç…—„];xšm‘Ýò|4³ºDñŒ/_Û}ÎÃ=’W¼û%z6Mnõ½ÂÞí;Xu†·¾#á4Lø>
Ø`ÑíøÑq<1ægïCÆ=Ká\"öå6i²¦	-ÛàÒzÐ2¿Ð@ñ<]æ¼ÚÂÑR쟅ÁÙæ¯N8º»š¶l`…Xsþ"½âáhjUÙ¼Ú#OאÛ%l†Ë(õM­(ëF™ÓªÒÙñ•ž~Xz©Û'úJ…Úl;™È“øJOµ-Å’J×<`Šs«®t~Õ•J¶OU‡#?"GÊô©Ê0]ÙèÅæ¤ÊpTG„hdÙªª‰¥°çôΚǥ5Z0q<¹h^þ†^: Ó”ØÛÄvœÇÐáö̺qÙµ¥–B® ¼† á’ÕÜQáÆ«áÞ>dŽ¶ÀI˜@kåöˆUê&ó«[äZ³°0ÑÄ—]g²[7r'k•4˜¢XéÛu` ÂÀCÈž¶Pè‚€Îd\<*°Q³À@”²†Q[òî<ÕrÞÚ„óJ˜¬8—nÒðÃàäœÿþÂÏ?Àï[ø}wŽTÔõü¾ßßá÷=“ýÂþãß<TÀïG~Åm?»+8Y­SŸQ¦mÛÑq@µ¥cGv\Ç[Ó:Nç]Ñq<ïu,Š?ý~=ŸÙ¡î¨ÞÛWœô%üþÆT›š‡PWµÕ1ÍT[šwdÇ5¿5m ùtÞÍÇó’æèälnþ÷gS󕆫VÓ|@µ¥yGv\ó[ÓšOç]Ñ|<ïéWäŠ_ùP_S·mÙÝnë=¤Úл';ª÷Íig½/æÍë=™÷Ô»ú ½oíEŒj b”m[ÕÅ—ÆTv%çšhÑz¯EÆölïû›e …ED˜>¡…í„^èƒøÇfk€â1ÊäÀÄ~´)žöüSxûÔº­P`‰Š itA5Oî%ãÔMêÖÄ›uëƒR± aL69š†b¤#^>Ñ`,£~ŠÄ0"i‚¨×(¯9z	ã³+:ÚÑ>‚©k^džÑ±á›äºq±5æñjE‰!êÎm¿ £ÓMA‡#Êîk…3Yð,ç-ÆV]&à^ƒ³V{F¥Ôö Ô@J"/`Ùºø7Ò‘ÊA8Yvc_lK2P9ÅîFXcä¾É…¬6¥àûÞÃÈ£t^ÛÂҐýÓ®ÃÅa®uÙÊJ1“$I`äF’ :ù°á£xÁ!=,&Hc—h°K¾°m¸]øW½°ö…9ÔÃ…qß[÷À_Û¿½ýã²;×¼;¿òÉ2º¬ZoÀãµ7Hˆ§šø4ÆŽ_•M¥á¾AŸÝ*u,™éèwá€e2sÁ¥úHð/D8ß,ÄÐUÙ62‘"½~˜èÈÔZ•2&ž:··¤™é}˜Séßa«™Q…ð–
UÛ-›Y¡CB	‘ñš“(>V7áB¸
”rƒwš+“„¼”mEžl3ZÒƒ2ϬÕRŽG¤nbùAZsXz0:óën:ÉÄœgU6¡ÚÛÜ»ûg‘꟣æ(K6‡Þo}Äg•m^jé¤ÆçNÞaÆÐ/€E³V&.™_T/·DuÕàS	aµÍ‚#y¸û{+fsF(•_”º’%ºe¥Ø3¾'[B
,øÓyhÝR¢ä á[©¬!w!·ÄùlqFŽÏy×]ÙTçl	³u#•½¶˜*=
sž+
-ØFvÑOÁkêªø:pŠœß´Æ.KU§}”v²IçNæS¼0h­ú€cœN;5ßzï(†™ ?¸tÙuÅ4Zù#ÅZš‘‚«¸Ò]’Ÿ°êئz~g 3úYÃÀpš¦uצ_`pÙuҟϽÃI—³ÓQ­.›N$^Ç­¾´x5ªR =ý­{ëbÇ)l9öuFÏ›n»?Kª+¸:x`Þø6‰à>= Ÿ•¶ë3Œ þqã(®zÌYGæ4ÚEzÀÍ<oz¦©/[rÈÒ.¹¼Õ–•QI^ÔŸ¶"P­oKHNع\ýw彩ɽ…•TÓE;L3Ãaš‹Ö¶áÒV]`9ĝiù´„"†ýè*è8d‘tùRr³ztqÎ91›–]\ñäp(ÁˆF®9Ù?‹ÛÉ’-^êÂPí%Uî/xòÞMÔjÀ•oTÌ™æòYí)}üЧ6‡o›Ú-åŠøxï‹=a=·ÕEº»yK°Ü•‹vrÁ«*{ŒzÇj··vqÄ,7®Äyål6N­û€fdTÁ†xná}&Ê,ìÏZ
^2Ñ|r`¹ ·é󵔿‚I׈Nùï0*o‡vf±LǸl‘§šý¸]êü݆͍(ʉPæ–›á÷O~Þ³úFÖß$yŽÄåÝœÊÜ zÿ$ªÿº‹JÎ$l豉ó5׳‰„fAL¯zƯ³¡"N$ÅŸä³’³`ËÙ “°ÌÐêk´@Àž™ËÙd×ëëÐI°_ÉøÃ'œèuûÒ`&M­?ƾöå¨>~ÐsgÓ¯æížn
-ôiy#—;MßyH}‹*»l)˜‘Y:ê2tÁ¨õ8Êzâ0øð‹=žf²Ü²‰œ°`OΙHWნR³©§ß~f9=a7‰É±ït¿‘×cš 2:¾ŸÑñ£C
.SÔ©x2¤§“òÈ°;óÑѼžy¿q¼ä6²äð±¼*þ6E’&ªª®ƒy`ƒ»+È¥‚àÑvŸð)xçm¥»Ì‚Q]wŒ:”–Y徟Xt§àXG·ÐÛ¨‚Ù:ÞŸ¥©Ín&YÔH),ƒ"çÝlÉ.£5•v	·`±1hÿQ7¡šîõôì8Žò÷É”¥—´j
-Ýèšy¸¼æ"%€ß‡iŒaÒŒÀý:X€Žž‡jx>?UÎ÷6ÇàMŸƒsCº –Ñþÿf=kÀ…Â9—Ú´ÉwPMácÙf™Ê¥Q¤‹Ž.x÷Fº`—‰@µAva²Bø¸&Ý
-°ßÃÊèëA|
¾HŠ)7²•p•¢‚«FÖº4Uwüû¦ß…2ФlégÛ]š+üºå?w 6¹­‘µ„ÃÓ˜Dâä¢uDÛbjY—B7:sbû%P^¯®~kMTªuteÝÌ‘¡ª!¾WMâÂC(½•È»s‡¹€à&7щdÃÍ8mʺkÅm6®ëdl£¹kDŠåd"†}ˆû‰ß\žóARŠi80ðØB…«LÂ~wê>’…,Ö!™§rž5—ùåT›f¸o‡‡ë¯¤ýÀܾä¢-þþšû dµÞc¶n97¢[ÃÙ°ùajtÅPúÌr-=ÙÆ)x$N™Ï ÝÝŒüu¯n[
-}‚€Ô6¦,½X{¸õã­“;ø)|\JÃ.¤ì-m&ÌcëªÔÜ*[Û…ag¬C±èC·!N¶çB‰¹öˆÈ+—@qè÷¬|Þ±}ôa¾¯¹«(Ñ|„ÑÖmÞýMþ{®:¼â¸åãLžªÖÂåíßá[TPÆÎÈfô25Bc¼½ùì@Ùö&€dÑG»p½èN™À¯ª8öÑ®£ß…–í.ØR@–ü³ø‹|â(þx´mÈ¸ø—©¶%³)u›JyjÎçüjxgnùæC…ÎåàTº¬$ìîuêé·%_²õ:Ý}ë€Ëžå	jՍ ‡gS­žêˆpMS6Æ´±p”»zãþ¶5†YäÈt¥0 Pqš0õê;úXžÎ6ÃåšêÚRÖM…9š]@´´âŽ@˜ôœP6“Nçÿi^f¾ÿ:¥ ºendstream
+xÚ½[[sݶ~÷¯ÐKf¨Æ‡!.Áô)±“Œ;­›I•v2I&CQ²Ñ¥Èî¯ïîbàåÈñ¤ã¡	,‹Åbñí'ü'.uÕÖ'mKcjq²?<«N® î›g‚i´6¥®Mµ»ZV¥5Fžìb&_ž=ûìkx¢lëZžœ]N}Q6¦mNÎ.~,¾8ÅÝÕðpºSMí>ïºS%‹÷ð:žþ|ö—Ͼ¶'mÙiKu²¶TV¸æw@Íáä LÑa	>Ý©l˜	T4®¢ÞçD˜ˆâ
–{noáãíéNš¢‡FTv
E·)9³u5Ø@¹HWXpèoO¥¥fcÜ^ëâÅsG~¾ÐºÏ¨Mq‰R°Üs:Îòt§k]œ¡Ø×^ŤUš)§Ö·NŽgçzÕ•.PESì÷ÌwÄâº.‰V=Ó=’Vø#h‰G‚-®§Æ‡!”O´ïðvj³4J¤ùí´æ¡"×õw3qìÃE&‰c8ú	»º™
+I˜{î!z<‹TJIUz”¤Çtä¨$?VÕjêyÀ™je1"ãŸ*aö×Nsl&0]FÖÅ«[dÿ쫳°îD[—F){Òˆ¶ÔÕnqbÕÝÓ|-Ó@¿‹Ð2—ל­³ç=k4Ìä‘Ò”•nU&Oæ,Õ¶sf(ÅsÔ¶M]«Šý@Êú
ÿ›ôF–pã(ÑøyPîui¶±ü€älIžáÛɲpþV×5´¿ö¯zêM»uµGÖ¿ºic9ùìD-@ý­MÍèz²7Ǫ®a<ô3öÿaá{4§=Š«á§ª®Xð‡Xpt1uKï$!`™©œö%™a-Nwµ¨ÂÚQà15U'kjQ Ò±ŠÑE¯ÁãÂGÆ®K<õǶÈnù@>šY] ‚¸ÇW—®A·äáÉ+FÞý=›&·úÀ^aïç,Œ*ãÝ¿‘pìGüˆ{,0™è®ýŠèØžó{p‰1㎥ð.ë–&iM&ZÚhÓzÑ2¿Ø@q=],yµ™9¢¥¸Ÿ™Á¹â·NXº3»š¦¬g…8sa#½âæhjU›Ø|º%OېŸ%,†Í(÷MV”u£Ì‰±ª4B¶G|e ßÅ
æ^jÆö‰¾R¡6m+3y2_¨¶¥˜3C)p›LqæÔ•÷¯ÚRIûTuxò#räLŸªÓ–žMN®OuDˆF–VUM*…[§wÎ<.œÑ‚‰ãÊEó
+û0ÔÒÇÌÞF¶ãeÜÞ`Ÿ;7.[[j)ä
+Àm.YíÁ/.¼êïÝËÂÒ¸ 	h­üܱÊݤg~u끜gBcö
f†á!:€ø²mÍâTÀŽÜÊZ-GLQ¬ÔíZ0aà%fOS(tA at g².•ب™a aJYC«-ywjÞomâ~%ôVœ÷K;éKx089ãß_øýx¾…ç+Øs¤¢ªïàùž¿Ãó=“ýÂ;ãçn*àù‘¿_sÙÏ~ÎFëÕg”)…µíGT[:ödÇu¼Õm¤ã¼ß§ý>QÇ¢øÓï×ós×Ô/Õ{÷‰¾‚çoLµ©yu•­Ži>¢ÚÒ¼';®ù­n#Íçý®h>í—4D'ϧâ?p~65_iØjå1ÍGT[š÷dÇ5¿Õm¤ù¼ßͧýþ‘~E®ø•õ5µµec´ÝÖ{Lµ¡÷@vTï›ÝNzŸõ»¬÷¬ß?Rïêô¾5)ªˆQZ[ÕÅ—ÆTn$gšhaŠ×¢‰ã·¶÷ÝÍ„2Â!"ÌŠˆÐÂrB
/tQüã²5@ñ˜dr ãÐÚ/>{ñ)|}ê\†V(H°Ä5EÐ4ø š;’qj‰:õcâɺ
A)µ˜0&=MC± ÒNƒ¯Ÿh°ˆ–Q=Eb‘4QÔkTÐ}Äñ‡Ùˆ=íà^ÁÔ5r™Ñ±a—äºñ±5æñjµ”R”;0·®›Rhk¡{O¿‹Ì‘õŒíSñ}mJm ’§òäøÞS‘bÆŒCªq	ÈM­ŽQ…'Z4?ž|NØÁ»œ,+ØBÖ·²„Y’i~a
½6ï„SÙcÈ#i‰p8‡YÖÅ¿‘Ž,¦;]´ã×/Y¥*ŒpkëF¡»¨›r
÷Îë$´ÕàßAűÚî?ó]µ.­¬3Ér"FnäD ’}¾Š—œÁ€ÁDr¬òñVÉ—®§
ÕK0a]œ‚B=œ»÷ó†ÜðÒývîÇ'³®yv~eGbtYY•NÀãuX>6©óI÷9U6•†µ„[”UêXîÖÓïâóÜíŒ-Jõà_è¾™‰¡«Ò62“"ßm™èH×Z•­2&ízinI3ãû8…Ô½ÃR3ùÝ
+â-/™?[.‘D‹„ò?Ã5çŒBh^1,…x(ÃßaUW&‹ð)¹œŠ<ºb´
+¤+dž‹VK)-±>ñ>¾®+Ê•È#óîÉw1ýL÷3¦Ot̢¥™“O?m‹ *ށ[,Ãúþ®‹ß•Ë„w.éÈÑýÌÎh¦tG’Þœr&oCª#=p	Ź›“ˆ'•‰ÜÜûÌÜvZá‰Kf—œsÂ>D5îe²)­PîôáãÃýÛß{Ò9eòfâ—ÚÂöã$ºeØÅ¿§E
+˜ñ§…mkn˜$u	ß¹ÆÞ­¨ÃpIšGÿZñ}yª,8¶ó‹	ÏûÔâÆŽpÓTI뱟òÃx„edÝèð,øŠ¦®Š¯#ïÎyirñF–ªn›ÔÅ„»“­Ø8,hårj­a¯ÓVM›ZËÞ+x¼~"è=]¶m1ŽÅFÞ[±†æf¤ STBúÝþV½"z¶©Ž¿ afÖbXMcýþíÚ­ËsïñíÅ„Ù•ÕeÓ
+‘â+?úÒÅÉéD‡¾»õ_mºwŒ~¹ ëMÛöÃ×’jËö@n¸lüŒÿD¸aȹ¾wâÏ"%lŧUS¶˜9
n!Pbî7_ÓT·xŽçȹ]ò±¤-+£²|vXm	Ö¡3Ú-
 9uàúòçö{º›mÀxnÚd†©‡¾?ŒÓ°óDƒ+¸p§e0âNŠt|,Á¡~?ø“&t2Š\Iºå+ ÍêÒÅ>§„z~\æ½בüÁÞÀg…îg¶Ù!Yù¡ÅK‚Yhv½ì œ«‡sî¼ó]DglHàÝt7NÇžu ÷]~2êzSû¡\Ÿà}±&>‡·ºÈr7M	S.…oK¹1èVnužÕnïìâ"
+¾nüÑô•·ÙôH$Dfƒ
+6Ļx
+Ņ…õ‹VÇ8¯˜hˆ®Š8|D.Àdü|
J*<èjñÁG5;ïÀÛ¡‡XÌÓh>˨&?î†:Ý·q9-E¹,JŸÝrñ#<ÿä÷=«o`-ñN²Ì‘¸¼›RÐTïŸDõ_¿Q‰âω6zmÒ<Ûõd"±YÓ«Žáëä@èð-o²C»ì:ÐóhÊÙ ³ø‡ÌÐékp@À­™‹Éd×ïE@%Å/J¦ÖT´¢×íKƒ™4µþûŠXlØ—§úøAsÌ•yrb5ßútS +%ä|24}P ÕÍnGHK±ŒÜÈ®Rm’YZ­‡QÎC‡>zìñ‚0£ã¶˜‘Š/Zs&ÒUø 'āÔ,Cî©Á·?wŒ¼ž°šÄä ~¼ßÈÇ2M
ßOèøÑ£ŸòjUÚÒÓJydؽpY„h.'Þo</¹ì#9BR"•Þ)’¤‰ª*úë(ïYÀhïZ äRAð»Ox¼ƒvÒ],‚Q]·Œz”¶0Ê}7²è^
ÀñþƒƒÞF•ÌÖéüÌMmr3K‘E
”RÑ0(BñÞÍÖÅaXSiŸ9Œ›‚vðu«é.ROÇŽã(ÿš{I§¦Ø®™‡OÐÎRx¯Oc“gîßÐÂtôb8hUÃûÙ©ò¾°9o¢øœÒ9•îÿ›õ¬ðNIáÆf÷ך"IJÍ<£µ”h>::çÙhƒ'J -ÔJDÙ…Ñ	â>èt+LÀú +“[ŸøÝ$K)7Ò®°•¢‚­FÖº4U{üÞÓïâŸr¶t3ÝÁvŸåŠo%£ügÔf»u&²–°x“Iœm´žh[L-ëRèF§bŽ}j¿Êëâ5ÁÕo] ‰JuŽŽ£¬›)2T5Ä÷ªÉ\x¥·òxçq–2À ÜÄà&Y‘l¸Î@›²n­x¢Âĵ­Lm4à"¿mH©œLÄ0£‹ñ`7ò—Os¢ÓB…”bê<¶Pá*$“0ßm«Ú€d1‹uH¨¼g]ʈürª\K§#Àõ×Ò~`n_òa;>]º¸³zNžb¶v
+97¢­álØtµ›
+ý!6]]KOÚô,‰sæH÷;ãßÊÖÖR褮0g¬ÀÙÃmhïœÜ!tâRjvá!eçhÂ\0¶¶ªAÍV¹3yh†qÆ:K.(öi®})”˜SyÅà(ÝžUƒ_ý;¶.Î7à6·bõ¢e#š0úˆÃºÍ{¢ÿ¯Éϧ¯9nù8“g€ªµðyûwøU%Y:-R›ÑóÔµ	öv°eÛ›’%—­a{Ñ­2'¢Æƒq#Ž]¶öô»¸Áü²õŒ-dÙŸ[¡À_,'ŽÒØÀÃÚ:“qv›©¶%³)µÍ%K<H5ås~u<3·¼ó¡B§síTº¬$Ìîuè·%Ÿ³
:Ý}ëËžå	jՍ ‹gS­êˆpMS6ÆØT8ÊÀ]½ñ|¥Ý™Ã,rdºR¨4M˜{õý‘­þs‡(.×|PkKY7Ë(,ÖFDs+n	„ÉÀ	e3ywáO*úû¦Ïùendstream
 endobj
-203 0 obj <<
+205 0 obj <<
 /Type /Page
-/Contents 204 0 R
-/Resources 202 0 R
+/Contents 206 0 R
+/Resources 204 0 R
 /MediaBox [0 0 595.2757 841.8898]
 /Parent 127 0 R
-/Annots [ 207 0 R 208 0 R 209 0 R 210 0 R 213 0 R 214 0 R 215 0 R ]
+/Annots [ 209 0 R 210 0 R 211 0 R 212 0 R 213 0 R 214 0 R 217 0 R 218 0 R 219 0 R ]
 >> endobj
-207 0 obj <<
+209 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
 /Rect [194.6375 716.5495 227.0456 727.3887]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
 >> endobj
-208 0 obj <<
+210 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
 /Rect [280.5773 680.6839 312.9854 691.5232]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
 >> endobj
-209 0 obj <<
+211 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
 /Rect [338.3317 680.6839 370.7398 691.5232]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
 >> endobj
-210 0 obj <<
+212 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
+/Rect [325.0489 553.6619 357.457 565.5224]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
+>> endobj
+213 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
 /Rect [112.7078 518.3544 141.8683 529.1936]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.swig.org)>>
 >> endobj
-213 0 obj <<
+214 0 obj <<
 /Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [73.4132 506.3992 105.8213 517.2384]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
+>> endobj
+217 0 obj <<
+/Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [333.1098 251.6809 423.3722 262.5201]
 /Subtype /Link
 /A << /S /GoTo /D (available-typemaps) >>
 >> endobj
-214 0 obj <<
+218 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [253.4973 149.1272 313.0848 159.9664]
 /Subtype /Link
 /A << /S /GoTo /D (input-arrays) >>
 >> endobj
-215 0 obj <<
+219 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [403.0247 149.1272 474.368 159.9664]
 /Subtype /Link
 /A << /S /GoTo /D (in-place-arrays) >>
 >> endobj
-205 0 obj <<
-/D [203 0 R /XYZ 74.4095 789.6651 null]
+207 0 obj <<
+/D [205 0 R /XYZ 74.4095 789.6651 null]
 >> endobj
-206 0 obj <<
-/D [203 0 R /XYZ 74.4095 753.0247 null]
+208 0 obj <<
+/D [205 0 R /XYZ 74.4095 753.0247 null]
 >> endobj
 133 0 obj <<
-/D [203 0 R /XYZ 74.4095 507.3955 null]
+/D [205 0 R /XYZ 74.4095 507.3955 null]
 >> endobj
 34 0 obj <<
-/D [203 0 R /XYZ 74.4095 507.3955 null]
+/D [205 0 R /XYZ 74.4095 507.3955 null]
 >> endobj
-211 0 obj <<
-/D [203 0 R /XYZ 74.4095 472.7698 null]
+215 0 obj <<
+/D [205 0 R /XYZ 74.4095 472.7698 null]
 >> endobj
 134 0 obj <<
-/D [203 0 R /XYZ 74.4095 298.5925 null]
+/D [205 0 R /XYZ 74.4095 298.5925 null]
 >> endobj
 38 0 obj <<
-/D [203 0 R /XYZ 74.4095 298.5925 null]
+/D [205 0 R /XYZ 74.4095 298.5925 null]
 >> endobj
-212 0 obj <<
-/D [203 0 R /XYZ 74.4095 264.2459 null]
+216 0 obj <<
+/D [205 0 R /XYZ 74.4095 264.2459 null]
 >> endobj
 135 0 obj <<
-/D [203 0 R /XYZ 74.4095 138.1683 null]
+/D [205 0 R /XYZ 74.4095 138.1683 null]
 >> endobj
 42 0 obj <<
-/D [203 0 R /XYZ 74.4095 138.1683 null]
+/D [205 0 R /XYZ 74.4095 138.1683 null]
 >> endobj
-202 0 obj <<
-/Font << /F51 119 0 R /F8 95 0 R /F14 191 0 R /F56 126 0 R >>
+204 0 obj <<
+/Font << /F51 119 0 R /F8 95 0 R /F14 193 0 R /F56 126 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-218 0 obj <<
-/Length 3653      
+222 0 obj <<
+/Length 3687      
 /Filter /FlateDecode
 >>
 stream
@@ -792,503 +829,703 @@
 ‹c.ÏCûâ6¾X¯¢,lvæ¹áõþÄÊ9™[ff§obs5:¬ _4¿KaÕ^!Ï<ëíIŽžæýf at K­ÕŒH!tP
 lÚ\Dšê‘éçe¯åεlQ–ë´r8·7aÆòHF&µ<#%ÍT{¤’h£e-Åwä¼Xb­³/D¢ß#BÃEx›±úÆïéXggRíY€D՝S
 ð±|´ ¨vK„¡›Ým¢Ý$UD¼‚‚­‡[;{ú(¼ºK:w†H|ÏqAÇŒ¾I
-÷ØcÔœAVï¡Á¡‰c6`ý—ÂÍ>]­žtŒÕ‡îb¦ï¯cËö@uÎÖ´»›…ÍíI‘-.sD+;ÚìØd°ñ™´¿‰|^Ò7ã7L÷©27„:&GRŒU9Qõg¶€ZWŽ4èÌj™ì´<ïʉ6áÝuñî*<|OÅöí6õ*Y\O·ü	îo³¾*(†NÀˆï¥t)²Ó„	¦až(ë6jÊ&r;óύÓ`³dì‚àZ‚w’ŒPKÿ&„Èþ
¥ƒ^™Ò¯Róö“ñ–%ÓÎ¥Äd ëï¸;â'‰ÌbÉ"„åÚ@#¬Âé>¡>‚˜€‹YP¨ZÁaÓGpû¸vuÜw¿9Iš7V®×¡ßôúû¦ÿFêulÊ+š7‘Ñ"¾þKxÝéáõ2ö¸ð=ØìõÌ~Œ"¬#iÞ4¸~ö]â¹ ŽQ1^¡qdìxþ–«ó:J·Ž“‚&F¥i–æÑÞù_EÊ5h¹ó/£™ßm‹?lÓĹÔ0Ÿû[ƒ®<À	§÷-FxË€é³õmäpPÜúR!v@Rb€½ßÊá¨`Ë?ß%‹ÝøÎT8½?E3v[¨|Z¾ñΦU¿öVŽ%c}zü=p‚½þ{ý.LSþ	קp}׳ªÇe³4íc4=ÀTBo*Oáz§€Sz×é=¦Â~Ë©ìÂBg.Ó[Ãz“9 TmØÊùìï+„Á -Âàåu´'ëÐXÇ¤
YM&mØ$›è5pìç«H‘ý9Ü{¿½I’½ˆÖ¯Ãßf6œ0×,†‡¨Y]Å	§’G&&ÆÑ„Rš‚—Ãô»ÝC&†+LîJÀ
qîhLˆ•Ð½A§5±ž!’CJAžaœ}"Füo9l(¤´4†cSȬÁøú,>ŒsÇA’ÿø~1 DâÔ,nêçeL̤šPP$|•Ô‡Y\…÷	^1£"äç¡zAKÄz›7)”5D;¦²g&”Û—B%úyÙ¡M¡¶‡¦PÌ‚î‚©å§P‰ª/EË,«2ÌD
-ÑðÚ<î^©”)Á	³Ôšd•ô;“¬Lth’UK±3ÉêÞ2Ãѽ­…¬[Í×…•Å©"	ÆÍΣ&]k;PDí\ÖÆ“µ
-´ƒÂÅm2•¾<7^!,áì°íÈôý%iÙâ’¼	¾…ë‹Ï1´"ÒÔîv$¢=CkG}¬†¾	\qo5ü>,ã.…Ö)lùE-
-š±7šåÅY±_ë	î@PfL›J¤×2Ô;ц:ãyhÉ–m}ßtFËg»= k2ZÏwº,ôuèÊ[ Ì”	†ûQrÏ•t|Ÿ~aýÞÆXâ2öxHÆsŒÌGõˆ‰ 2W'$këÔL·³F?$l(mC{¬ÙI_7‹ƒEf‹­¿³>j@Ú§CëÇÑ—¡<<ö¯L'™U1Bz®{Äš-¥œ,ÜÙ“­/Œ¯l×sH²Ÿ'E_‚m•ëÝÄ›MÜìKA—#ÊjQ›÷¸ÌyŸ‹¼P€hw—@M¥ÚÎ`©¤Ó€6÷Œý¼ì0Q³³=´rÓÓ‚ñ‘<cG¨öHa¬•bµÓµFNÖX{èBdú¾-Û=žPT*t2ÕžÑ%%VU>¶Dn“q±#Ò*µþîJ|µp‰éòçØËoRQ€/ÒßàQ×U–ãL
-u‡×ª0#B 8Ä1
-̓é@¤ýy(IN”!'²! ܦ°|{ST8o‹“1ì[V8Û†¢¥ÝžÂÃþ¯ï¨Jë›·A£òJˆ?6ÞY0°LaçDHÍãy$xbÇuІÏQ†·ñ<3y>?qbv{uvs¹¾ÚNžhB*–\ùé›!Ù\BµÕEN3ÖâתáZ+µJæ5®L6g2¥žÞ†&këÝ´m—ù8fªàðZÌV‹3ŸþFªh|Ó&-cÚ¹’]Ø%‚'R²„·Aa"]\kðŽ§¨;¼*ªñoa’æäáke[yß¾%A‘5ƒ¤ÏJ=Þ™ëUJ·]5÷”éMåW1a÷Ý_•*柼§>ˆZÞ•‰`ªðÅ‹÷(Ôúv8ÎèDr2üþ
-=œá£:b

ð5Zš³Íz»«l(#’9ypÙpwù°då­¯”åÃLå{¹H
«ûéè»èñ9Œýå%`!åñú#ÂœãÇ«#AœUéñíÑË£¿î11Ü#c”@÷‘€E©&~ì€fu‘jU•äŠ@í­è<µÂT¾Zib$µ,Ϫ³ªÛœ"Då\Ä¿eU(Üë	£d-,¦I5¤Ek|,`Ê$Ûs9 ¡Î Ç¦vZ¹Tuy«_ù«Ë°k´G©×âjhö‡ë8õ	)$X\ÈQ}ìI\œMtÂïc}-п£ƒ>‹fç£	-¼>iÊ
-B)"
̪[n/©:xITSêØTÑÔÈJ€_žÄp°ö\9.kioÊ„(&P» £5azßÂeªV˜
-<€&Ç+׏Y™âmŠE´äh^%.¡W	i1*à›õ™u¸	b7á<—aÑi€çX-gûʵê!Ü
-:@N—Órš—«49Ød	ø`¼v¿3öÀý)+ììTì%ª{a¯`ý@Øë
-;`¯”öêD„ÂÍ
-•ïrµíº.ü.jÝ_¼LÕ
-TáYYð•<=ü›5+Þ&ü7‰?c«BÀ¢¾Æ6Œbì.cÆ0N Œ†"çøí#¿­=‰R÷}­³VHù™rÄ8fkH}˜KT°1LÚ?Ä%rÀ”¶;>Ê°,©vÃ2SÝ–%뇁e_ØËJÚ Æ x»ŽÓ‡'p ‚õ×0µbÕ%°ÐÕRuÀÉyV+¼EÁ±><:Âô/w|¢”;åñ î9ìñ•ÇÂe	ûcÔ(dāã7\ À\ߍ+Á$©„­æÿ8ªädR/vXc™k]©Š-³!j_„Ï†é^`U¹6€Ü5“ŠuO‹MJ¬«w#=KÈwXBü UH~SÈ3…plï™B™u#Ä$ƒŠ6/ÎtÇžËp<KÖؼyÜ*¬iÀmUS¾‡Aš(ÉÝ^ƒ†Ý‚ÚcªŽALT÷2ˆë2ˆ]aƒXJë­à/!5xt9Xüuë¯X¦j¥¨“A¤ ãQ	ѱRê|>'u]=«š!N‘³å>^æ±&+¥ÚOßä~Y†Ñ'qê I—‡ƒTqX¼ÚoM'%ÁŸ’Ȥ(îpºââëbw$”3:ÇùCK¾/@)¨:xLT÷ÂcÁúðØvÀc)mÈkÝT2%ûë•©Zj4bÍMÛZ„iNÕñvþ´¿ê	Õ{Iy8¥ü ˜D €ERùwñ4}6eêa˜I ¨¾Š€!§ÄjçPëRQˆÂs*O™(æ4!½„Bpv°%ÞÎÀÂkÍjääÄ8ñ\9ØW;ü•Å<ðâ¥üC2™¥Ùc¢ŽYˆD÷²
-ã2
-=I›Pˆ:Q¤¤p+NºÄot’®m-ÝYH¡P‡./"XÒ§Ý¬ŠSK¬“¬»Á™¨‘¬Êª˜ Ö¨Z°=IÕ¢H®Šr=¾ÚY®Ç¼Gt g ¶É –ëýXáOqTx™NS×·Ù(©¿M”Tû¹ô2?\û	Û¤8[r8Ĭ>ü~²#
û®—ñ;b„õÿ-txÿY<UHß¿œHÍvehø»#Ų%Ü	|fý—…{"ô’j7ô3Õ}°_²~ð÷…Í诤íÀÿÁÌøß#`2 •€áLJ—ïÐtά&Ü8ÖßÖLÕJR×8Q:¤Wã¤ñ‚¶t4!nY•¹ÓÑ9ÃD<€]¦ã›ÎEÏAs‘Û‡|ÊwüœÓ^|´%ôXœ§ÓjÿÕž˜09Áæ9XÍØècðʘ!ÁÄ—ïR…ü¼{Ú’ÑfœÆçocŸoâõ,þfá¡lI:f‡$+3ý¡s¢™D­‹qŠ0ixæ„ٝ?NïÿÓ,M
-endstream
+÷ØcÔœAVï¡Á¡‰c6`ý—ÂÍ>]­žtŒÕ‡îb¦ï¯cËö@uÎÖ´»›…ÍíI‘-.sD+;ÚìØd°ñ™´¿‰|^Ò7ã7L÷©27„:&GRŒU9Qõg¶€ZWŽ4èÌj™ì´<ïʉ6áÝuñî*<|OÅöí6õ*Y\O·ü	îo³¾*(†NÀˆï¥t)²Ó„	¦až(ë6jÊ&r;óύÓ`³dì‚àZ‚w’ŒPKÿ&„Èþ
¥ƒ^™Ò¯Róö“ñ–%ÓÎ¥Äd ëï¸;â'‰ÌbÉ"„åÚ@#¬Âé>¡>‚˜€‹YP¨ZÁaÓGpû¸vuÜw¿9Iš7V®×¡ßôúû¦ÿFêulÊ+š7‘Ñ"¾þKxÝéáõ2ö¸ð=ØìõÌ~Œ"¬#iÞ4¸~ö]â¹ ŽQ1^¡qdìxþ–«ó:J·Ž“‚&F¥i–æÑÞù_EÊ5h¹ó/£™ßm‹?lÓĹÔ0Ÿû[ƒ®<À	§÷-FxË€é³õmäpPÜúR!v@Rb€½ßÊá¨`Ë?ß%‹ÝøÎT8½?E3v[¨|Z¾ñΦU¿öVŽ%c}zü=p‚½þ{=…ë¯paªòO¸>…ë+¸žÕ»~eJ¶}§˜ËaHØ7—çQ~œÏ¸N«ý©°ßr*»Àð°ûr ªÚ¸•óÙÞWƒZˆÁËëhPÖ¡!°:Y²šÌÚ°I6ákàØOX‘";t¸÷Ž{“${?­_‡¿Í m("8#`¯YŒ+CQ³ºŠN%LMŒ£	¥4E/‡éw»‡lW˜Ý•€Ýј<+¡{ƒNkb;=C$‡œ*0‚DÃ8;û<„ŒøßrØ0PHiiŒÇ §Zƒõõi|ç*Žƒ$ÿñýbD‰Ä)ªYÜÔÏ˘™I5¡ Hø*©³¸
+ï6¼bFEÈÏCù‚–ˆõ7or(kˆvl7¤ÏL(·/‡Jôó²C›C5lÍ¡˜ÝRË3ΡU_Š–YVe˜‰ ¢áµyܽR)!R‚f©=4Ë*éwfY™èÐ,«–bg–Õ¼e†£{[i·š-®+ªSE>$Œ›¯œGMºÖv ˆÚ¹¬'kh…ŠÛd*}}n¼BXÂ9*ØaÛ‘éûKÒ²Å%y	|ן5bhEä©ÝíHD{†ÖŽúX
}*.¸ âÞjø}XÆ]j -l«R‡.M¦ïËײ=ÒR¢X³U£EÊT{¤Ð†X	R%EQµ+„®gqVèä:Â^ 䤄~M¾”´ÜçPÔE—Š©ç¡%[ïmôïÓi;Ÿíöò¬IÛ=ßéÚ×ס[¨á0SnòˆG)©¤ãû0„0¼ñÒeìñ6Œç™Š.s.ÁHÖã™ng¾VØP¿‡öX˜”¾8‹Ì[g}d„´O?†Ö£¿C
|C0MœdrTª	9T¸î'iN´”n$À©Ìžl}õ5دzIöóæE ØV	íM¼ÙÄ­Á±žëu™G”Õ¢vaq™ó>ɯ Ñî.3Z›r¼#œÁRI§!¡ƒ€zOU<ÑÏË…ù1ÛC`zZ0>’gììÕ),Ø«X-ÅtA•S 5Öº™¾/BËv·ç•
+Ý_€LµgtIÁrU>¶Dn“±¿#Ò*µþÃ’ÊJâáÓåϱ—ߤ:k=^¤¿!jXW™œ3)ô-Ô^«ÂŒwÀ8qFŒÒ`:iꮵ։Œ·)õØÞeÜÛâøû–eܶ!ƒhi7…§ð°¿ðë;*Eûæ­GШ†b¬w,SØEÄ9Róxè
+~Ôq´ás”ám<´çºÏOœ˜Ý^Ý\®¯¶“Ƕn&G|úfȶF6—Pmu‘·u…øµjøƒÖJ­’y+“Í™Léµ·¡ÉÚz7mÛe>sÚ„R?ºÿÙjqæSüHm€oÚ¤eL;W²»ÄCàDJñ6(L¤k£‘«ñAƒã)²Ã¯Š#‡·ƒ0Isòðµ²­¼oß’ ÈšAbŒg„¥ïÌg+¥Û.‡ƒ…”ÍžM<¬bQÂwUª|˜bð6¥ø jyW&»©ŒOeÞ£PëÛá̦ÉÈðû_(ôð¡ª#Dˆ††ø-ÍÙf½ÝU†Éœ<¸6º»FZ²òÖWʉi¦òqk#£`©a•`?}÷=>‡±¿<¢,¤<¾CD˜süxu$ˆ³*=¾=zyô÷Â=&†{äcŒè>°(GÅ/:Ь.R=®’\1b ¨½'¢V˜ÊW+MŒ„ ¿’åYu w›Ó ¨œ‹ø·Œ 
+…{=a”¬…Å4©N¶hL™d{. ÔU‚±©ƒV.U–^Ä
+çWþjFà2ì-Ñp´·¸š „½Å‰ç:N}B
+érT|gðûXƒEôïè Ï¢ÙùhÂAC
+8x}Ò”H"„RD˜U÷L¡¤êà%QM©cSQDS#+~xÃ=Â2Øs帬¥½)¿‚¢˜@í‚ŽÖ„é}—©Za*ð f˜¯\<ZdeŠ·)Ñbd/|T y•¸„^M$¤Å¨<„oÖS8dÖá&ˆÝ@T„ó\jFÿ¥ ~œcµœì+ת‡p+tRè 9]BNgÈi^®Òä`“%àƒñÚ	ÿÎØ÷§¬°{°WPu°—¨î…½‚õa¯+쀽RÚ«
+7+T¾ËÕ¶ëºðãGªuñ2U+P…?XdeÁkTòôðglÖ¬x›ðgÜ$þŒ	¯B
 ‹úÛüQ‘	°»ŒÃ82vŠœãžüH´öP$JÝ÷µÎZQ 1ägÊãب\÷a.QÁÆ0iÿ—ÈSÚîø**ò¤Ú
ËLuX–¬–}a3,+iƒ>âí:jLžÀ
+Ö_ÃDÔŠU—`ÀBC\TKÕ'çY­ðÇúðè˜Ö¿DÜñ‰Rî”ǃ¸Oä°o|ŒY}O”I$ìQ£Žª s}o4®“¤¶šÿ㨒“mHý	Àbç¡<–Ù¸Öå±1 Ør0¢ñEøÂn˜îV•kÈ]3©XP·ñDܤĺz7âѳ„|‡%įn…ä÷1…ü0S(džñž)”Y7BL2Øø0¡hóâL×q쉱Çór}€Í›Ç­ÂzÜV5å{D¡‰’Üí5ˆ`Ø-¸¡=± êÄDu/ƒX°~ ƒØv0ˆ¥´Þ
+þRƒG—ÓɁşp°þŠeªVŠ:9D
+0•û'¥ÎgR×ÕÓ±ªâ„9[îãek²RªðôMþá—e}§’ty8H¥‡Å+ ýÖtRü½Œ,AŠâ'Ø n )¾.VpGâ@‰1£sœß9@0´äû”‚ªƒÇDu/<¬]a<–Ò†¼vÑMÕ)S²¿^™ª•¡F#ÖÜ´­Eè¡‘æToáOûÓ¥P½—”‡ÃQÊŠIX$•@ÓpS¦v€™‚êËrJ¬vå±.õ(<§Òø÷”‰bNÒKH g[‚àí,¼Ö¬FÞAN\€Ï•ƒ}µÃ_YÌ/nPÊ?$sÁYš=va ꘅHt/«00~ £Ð“t°	…¨Ez@
+·âá¤KüöH'áÚÖҝ…
+uèò"‚%}þØͪ8µÄ:ɺœ‰ɪ¬Š	bªÛ“T-Šäª(×㫝åzÌ{Drb›lb¹ÞþG…—é4u}[’ºðLIµŸKÿwA1ñõŸ°MŠC°%‡CÌêëö';Ò°/àz¿•FX¿ðß{‡÷ŸÅS…ôýôˉÔlW††?®R,[ÀgÖ=¹'B/©vC?SÝû%ë‡_ØŒþJÚüLÀŒÿ=&P	~ayùm@çŒÁjcýmÍT­$u¡#Az5N/h{@Gâá–U™;3LÄØe:иé\ô4¹}8À§|ÇoVýèÅGKQBÿÅy:­ö_í‰	ƒ‘l‘ƒÕŒ>x¯ŒÉL|ݯ!UÈ¿3¼§-ymÆi|þ6öù&^Ïâï2Ê–¤cvHÒ¸2Ós'šyAÔº§“†gN8œÙù܉ñþÆ_{*endstream
 endobj
-217 0 obj <<
+221 0 obj <<
 /Type /Page
-/Contents 218 0 R
-/Resources 216 0 R
+/Contents 222 0 R
+/Resources 220 0 R
 /MediaBox [0 0 595.2757 841.8898]
-/Parent 232 0 R
-/Annots [ 221 0 R 222 0 R 223 0 R 224 0 R 225 0 R 226 0 R 227 0 R 228 0 R 229 0 R ]
+/Parent 237 0 R
+/Annots [ 225 0 R 226 0 R 227 0 R 228 0 R 229 0 R 230 0 R 231 0 R 232 0 R 233 0 R 234 0 R ]
 >> endobj
-221 0 obj <<
+225 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
 /Rect [110.0908 728.5046 142.4989 739.3439]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
 >> endobj
-222 0 obj <<
+226 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
 /Rect [162.8935 728.5046 198.2108 739.3439]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
 >> endobj
-223 0 obj <<
+227 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
 /Rect [489.4544 728.5046 521.8625 739.3439]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
 >> endobj
-224 0 obj <<
+228 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
 /Rect [92.7704 715.9915 128.0877 727.852]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
 >> endobj
-225 0 obj <<
+229 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
 /Rect [486.6948 540.649 519.1029 552.5095]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
 >> endobj
-226 0 obj <<
+230 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
 /Rect [92.7704 528.6939 128.0877 540.5543]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
 >> endobj
-227 0 obj <<
+231 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
 /Rect [337.2248 528.6939 366.3852 540.5543]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.swig.org)>>
 >> endobj
-228 0 obj <<
+232 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
+/Rect [432.0992 528.6939 464.5073 540.5543]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
+>> endobj
+233 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
 /Rect [148.2193 492.8283 180.6274 504.6888]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
 >> endobj
-229 0 obj <<
+234 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
 /Rect [202.5826 492.8283 237.8998 504.6888]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
 >> endobj
-219 0 obj <<
-/D [217 0 R /XYZ 74.4095 789.6651 null]
+223 0 obj <<
+/D [221 0 R /XYZ 74.4095 789.6651 null]
 >> endobj
-220 0 obj <<
-/D [217 0 R /XYZ 74.4095 753.0247 null]
+224 0 obj <<
+/D [221 0 R /XYZ 74.4095 753.0247 null]
 >> endobj
 136 0 obj <<
-/D [217 0 R /XYZ 74.4095 481.8694 null]
+/D [221 0 R /XYZ 74.4095 481.8694 null]
 >> endobj
 46 0 obj <<
-/D [217 0 R /XYZ 74.4095 481.8694 null]
+/D [221 0 R /XYZ 74.4095 481.8694 null]
 >> endobj
-230 0 obj <<
-/D [217 0 R /XYZ 74.4095 438.7979 null]
+235 0 obj <<
+/D [221 0 R /XYZ 74.4095 438.7979 null]
 >> endobj
 137 0 obj <<
-/D [217 0 R /XYZ 74.4095 415.7379 null]
+/D [221 0 R /XYZ 74.4095 415.7379 null]
 >> endobj
 50 0 obj <<
-/D [217 0 R /XYZ 74.4095 415.7379 null]
+/D [221 0 R /XYZ 74.4095 415.7379 null]
 >> endobj
-231 0 obj <<
-/D [217 0 R /XYZ 74.4095 383.3746 null]
+236 0 obj <<
+/D [221 0 R /XYZ 74.4095 383.3746 null]
 >> endobj
 138 0 obj <<
-/D [217 0 R /XYZ 74.4095 163.9773 null]
+/D [221 0 R /XYZ 74.4095 163.9773 null]
 >> endobj
 54 0 obj <<
-/D [217 0 R /XYZ 74.4095 163.9773 null]
+/D [221 0 R /XYZ 74.4095 163.9773 null]
 >> endobj
-216 0 obj <<
+220 0 obj <<
 /Font << /F51 119 0 R /F8 95 0 R /F56 126 0 R /F44 92 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-235 0 obj <<
-/Length 3975      
+240 0 obj <<
+/Length 2912      
 /Filter /FlateDecode
 >>
 stream
-xÚÍ\Yo#Ç~ׯ âU»ïãÑ6#Fb;¶ò8FÀ¥¸ZÙ’(‹\Ë›_Ÿª¾ØÇ’5›5ٚ꯺»Ž®®!;¥ðÇN$’:uj¬#Z+vº¹=¡§WpïËi¤ÔD*màËÀÝsÅ)±ZóÓó’Ég'Ÿü	N#N)~zñæØ–fÄhgN/.X}·{w¸¾ÛîÏ~¼øêä‹‹Ì6KA„µf¨iæˆãJÔ¸:|N!¤x+OÊSà ¹FtÎÁ4;6ˆè6g‚­Þž±Õúþýñì\X¾º?|õ¾ð.žÜÃ
ºÚ¶20
B(Æ*!~9ùáGzz	8¿:¡D8+Oá%Ì9~z{"ˆ³*}½9ùþäoGQ2ÃY˜¶D
-’J˜=BF9®ïàß|þIýø>¯ÏÎ5_ý´Ýj9¡¸a„™fd^"Tf8#7Š@èZ¨Ý9HÃ:´NË`îNÍ£óLÕC°A)1ÎÖ ¾Ä…ϯgÜ®¶wgçzm8`þëòi€Ïœ†ñ±oÏÂÔ	=ÏV?ÁgŸŸW8×<‡²yPCg…‰^AKŠ¯p<·øÀ;øà &,Äjˆ—¯ý-vðÛoҝ×´}Zªµ‘0ë¼
-3ßêu„·‡)ì(tÔ ®W[ÒöR>ÑNÈÁî?jhA5¡¡‰jTC[ÅÜìüÑÝ))L+êX…ðE:ùÍ3žPÓJ3¬¢ðE P ›˜”mP !Î{
HT=ìr
-r+	gTÖ¨{°,¨@	D€Ÿ\šÞz¸Š4ߐ2ý4¤ž-BúÕá6(Y‹C	¢%°©ÉT3­+ðZ¸ºõ JШ*Û«íCè’V[pè¸	C‡êìFÔÙu¶ƒê”ŒIU¹1©âQ{ƒêlŸ©ÌÚ¢ÀNêrA4®Ê‰ÈwÚÔ,ï´VXâ¨)¡¼Hi#»iÔLrb¯aß®ÙuʺÞp ×7Vr1UK	ùMK *NÄr•m_¿
-Ø+AÂdÂ)ägèe§T8ó¤rKÉ“ùMË#@ëœ`“âE#)-›œÉ‰¦CPé¿4 ÿ z%‚¿âÿì!hç«}Òæø=éá}Tô^ŽnlH6»‡ôÌæЗÚ¡ø£†4QO
-Ò²œ1¢
-B!mÕ´-ÈD“-3ÎÀv	Õà9µäi[ct®Œ^}z—ð³;Ëù#lÄ pžc Ð9ìµ¼§WkìçËpþ:ñ<D£Ï</8µ¨É> ‹Ì|‹*´¸ßêuß¼-­}פ§M&·lÎ6§Wo£ÞªpŠFž˜÷û<G<³-¶
-J¼¤«œæîÞ…k{d¼{ñGBüºß«Œk°'¢	V?ÍùnŽ×þŸ/àóKœË!`«‹³¤…!°½‹÷o½@ÁV†ëC]Æ1ÂN¡nRïý¶ëKß[c¾	ÒH3h–TÞ)Qù>ðp”^”ñ{³r*%á§V1ŽU at _dùá8Õ„)ÙHuØu ™†x
--ùR Ã9€È1êj€ë¦Ç[´°(Ò”óåÐ&†sh%Ê^£½óêÝbÔVRÌ.‡11œÃ¨A©›Ýì¼:öÿŠÿ¶Q!¯wQͦ³ו㊞»B'K†Ú“º›©z¡+?faš‹vµ+4-!œ3µYZ¹[¢¨]rá.”]mÖ{ì/%âšÚŸ&÷ ä eai©í¬ò3И$L°ÂÖ¾	`nüâÅ»<tNT¯þïøiŽì¼,\H?­(@†ûÒá¾
®ÐÓmÞÝC¸0¶°aŽîÕ±ÌB¬ïãô,î‹Gƒ¼ñ½à=\vÆbpq5àù !Å(ýñ5ý>ñŸ®ó0÷iYšã^‰˜jznÉTPMx¥DõA¼Ra!¯4)ÔÑ+•RMy¥¥ ½Ò4Àì•J€OöJK¡=z¥i´Ù+UhonvhŸûÜôþ’£ùÍ¡´ð¸i§òÿÔ/Õô‰e·+¡¸%Ñ‹õXf8ÓeJ€>QÓLCyۍ*XIô7Ë
kf8RÁj\Ûf\wÕh
 Ê1"™ÔÓf2Sõ(—“ÊÉB–þó_¡ÿÿ.µ•Ã¢nuÕ	m €©Ff$ êIuö-ÉÛCÃë¡må´9Š1½ÈÏôçå}·c;—-¥’8ÎTƒ£Í•$ªéÖœs¦›Â˜ÂZø}˜Çë6ôe끊ãÉU\å*R
Åf³Ýï_ÅXÃâšWÖñàPBVú8€ tÈ
-\û8£Ÿ3ZãÜÒ1›!’ò³•}%½½Ë}…ëT’¿4]1R¤BŠ7ì:frú
-̤T¦m`0̓ɆÇ0/t±Î1W÷ñÐ&&¤Sû7!~{À†›!æl"¼&£ýR‡‚yq¯ؘiiBXxÀÄ]4TJã&›ŽKªñx0S=7¼]ÿìmkq°RœU(_kE†3aLF%D/•HǸàp}Çkû2,x¢ØÞܼ?szõD§/™ ÊH¾Xd†3ý’(åDÝÃN_
-0	_db8R¢[†uy²vúCÑØíõ]`6ßX»˜™áŒ
-+I´°µè:®o÷q™Ûá_ÿÖá·`ˆåÆ 3œÃïÔVŽá
-º4ÆIyNÚ¢LÕ#º¤$LÀ²jx_Xë±ÒK•^ØG
-BqóáX.aÜ1ݾõg?L1ãÚ€[Ù†“˜ÁÛ1A“N÷`³Ë[¼xõê]r6{78óÙ|f¿‹nîÆæ£×J-·»C@\õ®Þ[N~•ZˆˆYS¬‘=£40˜Â~D×*mÎ9ÁÜqÂK1©®/mÃùÔYÉÐñ~‡¥´6䄤)9¦í‹†éx‡ù4¦ï uڝÇk‡2¢…sËÎœó̶
-S<Ôé-ô]Šb®Ý:Æ.—)9µ~.”"ŽI@hbqÍ:ò  ÿzž’ኋF¦ÒĶŠ‚ Ÿ[5³­RRM,‰êC$°JË$°¦…Ê	¬Jª‰Öb sk`J`U ŸšÀZmN`Í M	¬
-ítØ­X1ˆŰg†3Øquk8—MO%ß@a õr}œÎá„ÈN06ÚÇÿÇé7«Wv±Küf:Ã0.EÝ_Ãa¸¦±1»Ü f†35¬)Í ÎçÞ´´DIg¦-|¦êQ†Òqp	”çÞtðoZÎåÜ Œc‚™åÜ ›”›–©ùñ¨d%nñpÃhbXÊåìÞ„Î)=6 Ü§¬Öµ×D&Sµ‡Læ(¡00µ†ÁœcºfJþF
ÅœÂÈ>Þ€k¹8E£;8_‡Ã³º“iN 0f8ð6ÃËÁœïîŽòW©&ò˜jB™Š¸ô2܏AW.¾„1ruðÝ„\sQ\Φ¾&b5©8‘Æ™éX­¤Õ2UW¡éû$ý<–VÃÂj]!zQ™fb8ƒžÁZ•;0ü”H^^0…ð™ŒDÔ‹SW8C¤G¹¨¥¹Àâ®íÞ/åêñmŠüßÆâ7®ÕàZ[3éÄÂ*§ ò±¶¨!دdç±àB¤V½%êКÅrG6àb2CŽM/,%•ÃË"àÁbCß¹kúí·ññjúR§)o ºº¼Áºá7p(̝ßw at C@ÇÕžq¢±„Zíª	µOT/Sû¢­…Ô~ýQíKø~~¸Qí¨Ž· !‰âf92ø€H‹q]Ëð;ì¬_5¦ë&§E¦êQµûvÚÀʦõݶ¬ùŒåÍŠ©¬à1ý÷u8x%õ;Qqàªì•I£r‡§BŒ´uïùqÛN‚‹oö”‘],ò¾ó2Ö1±˜³ª÷±°$«·3ê˜ÌRE2KµµÄçÃͽ
-ÁÛ .kæá˜)óƒñ]¬®êàŽTW™nۍ֑ÉØvÛSIãæGNŒa˜4?%Õ¸ùÉT/2?e[˘ŸiôÙüTðC~{×.§—ܺ
-_¶¿Åê÷ÖhJËíb’ÎtÞÕX´òœéËC'”K6=Ã2U©*ņPªT
iÐ’á[ef¾Î,UÏñucŽK-¶ð2#ªYÈ
-L-šŸ_ã+'xÑ'Ùøº‘»ÂãÃq…ñîùe(/cŸÄñºN¯3ø=Ƀ%ºjµ3±%œûpÞÐW0£]OòVf½ŠqàžŠq^…Ò›ASÏ1_5"'­3Mµ¯´^±Ó±ÚWÚÖ¾Òáwt‘C¶ÇTŒ”®¶Aã„uæ”8Ñg¬sA5aÕˬsÑÖBÖyýÑ:—ðǍQ—¿g„+iÝÎàæ_ít
î»åF݇•D[®“<3œ‘\X‹o «§ŽØð>ýݘ[1–8È'U#SõXë·@`j]
uÈ­Ä7À15ž‘›O‹JAΞå3‘ùý‚"WÚ»]äÏ€ ¤-sR5ÄùWòm1‘Æ”ã¶\‹Ì>Ør>莔°9çÉ`¤aj<%‡e{}¸¯ŽN
-²€xþ&£)5.ÜìÔ´sÒldé âҁO/XZ:¨ö€ÛvUMý^x‰ðƒ,¸v„i3“¹(©ÆS¦z‘s*ÛZÆ9M£ÏΩ‚ïíÛ¿·ÛùÈõ9¶ß”ÂmÉJD½¨U*n‚‘µ¤ƒ¸t²ª4u³F‹5O)#J	IX4À³MÉïsÞìÂý.ÓL0<½ÁÄ‹X3lø¨Í††·t×Ǎ«B¶ï•}aXo¾&™/l§¡r³¯ðe/5\ùl|ÒÔw^’½ë»1{„ö#ív)ÿ=~–
-æªÔþg©Î¥&–c¡#þ¼ƒµ¡ví3äñucww¶oã~ά‡ê ¾è|}¹å7<~‹Óí~ßOŠá±4„	¹³p™©DY.W·ë»˜,Ã_ûù<`gàñóðãp«lõIÃZ¢Õ§ÌR,,ûá€L^>пSбy§€+Þ)Ùàh’&QÍ´®$ÖŸººõN9°‹ö©Nþ]*Æ:úÛÐÛ)ÇԛÝQã^øë¯óxø-l<xÆ·÷qËnð}zƒ[76íÿ¡˜À›¢Èþ2&Q¹X}Ô¼3M‰~4T·†DÖ5?Sª†ÿ%Š×^%“ÅÝÆÍ“ÁÝn!”(0¯#$êû„€à^ÆG.Kƒ¾9Tå {2ö“oÎÂÂȸÁI‘h΢~J8EÖ‘'"Äbûw¹âïÖ
´÷þ°g[endstream
+xÚÝ[[sbÇ~ׯàQ¤–ÉÜ/~s\v*®ÄNåÉv¥X„µŠ%X´Šÿ}z®Ì3hÁU×+àôéþ¦§ïs 3ÿÈLqı3¥
’RÙêñ
+ÏîàÚŸ¯H á\".¤‚«A1ÒRÒÙ"gò§›«?~o	AF:»ùé K¤¤Q³›ÛﯿÛ>ïï7ëÝüÇ›¯¯¾¼Il1gˆi­z¢‰A†
+v—áˆ1®VÆÂÁâ|wJ*-*c#’YTïçŒ^ÿ:'×û9#îÍûù‚áëu
“0†¸Q¼ÀùËÕ÷?âÙ-@úú
+#f4Ÿ½ÀŒˆ1töxŐÑ"~|¸úçÕ?¨ÃlÂ⚊÷ÎB~‚ÿî7ðß¼~ÀËÔÀÓ²)CB0ÓÕ¯D†IqD¿.Sh9‡Tç@)A”ÁÅDå¶}½pÏð²h7 \Pø~NuT6•×ëÏ,h°"™±“ 6Î8@°lV@ü^ËÀèþŽ\þ"ÞªEƒÆ썟[ê;+ÿq½±b-œÝgÍöFðÒ0¤1}MDªENæ4AŠ=£ðÃW‰ÌBùÕšGZS5©Z¹…Î3ࡕؿϽa¯·ðú¼ÖðZ9«·ªÏf°žìßðÚ&ÒFËö–J¶åßÏ¥ýîïÖÖ×Vãˇz¥TQ„•âÕJí¥§»@ó]¶æDß®9ÇÓ²õnlìf»©ñ0LÁÿØ´â#Ñ4†Ò‹Ãö-(–{u¯,d!ÀfjŽ„.Üƍ>î'A¯»}øúÞ]²þµ¬w«xåmK—¿ŽK¿óßn긑IMØè­ƒÄ(á&ä	Šp¶ TŠdˆêšq&êð»Úº¿n…ÏpŽ *ÂÖ	 8é³Cqd¸È9vB1‡«”òƒàÅ’iD59+ç<Ž‡âDõŠ±†Xcä(gdS¡8’Cñ¤ÜC(®åöCq.6zçÞ‡Üý<Úü!"[çJV_jUR$¹¨#ofÁB4D•jÇÃl¤o×S„Ù†­ñÛLŸ`j#ŠnR›‰j ]ج£HO›ÁŽÖwwºmC	U^©13Š¨q1èÓÁ«íSà¿ÞùÛM0„»m͹NmŠ !	›	&£ŒØ@¢_ä7´i®a;°Ž­¯@À+qT6¨Zé…GqØ{Š™,Å¿Ò‡¸íH›JPlR
+¬§T/jq63‰æÜœ”"ÃEα“”¨ Î*lá>.÷+‹øÝ	éju„É9ÉèÀáx*
+4LD‡hú% ˆÑ°@¥	('›H@‰l˜€¦å¦ÔÈí& Bl•€–YðRúC¨òJÇj4¬4bXÒ2HüŽµK;ž•"}»È"/4lGYIq¤°Ó*NTé kZ…ð©ì“Êí~êc‚¸FÍ©JJôÓ0[¶%1$ƨ&ªt%!ÊZJ_Æt·œƒr~kîcqß
1*;Z¸aF6冑l솓rnXËí»a.¶rÃې»v!Ý?…Ï·§¹b·%¯Ê_§$淍ch]™ÐÕ¢;h¤o—_¸HÃvd{¯–iå'ªiéŒ(„¹&¥ôSêCcz^Õ‡³öú³½”Êì×sÚ,÷9ê|¹ïä.éËX¾Ÿy%A†è,î¼ôÕöñ½~¨Eà^îÓ8¤§AQ2%Ö3í±èSÐ|¡Œºþʺ8¹ Š§ÿZœ­øÆkjŽ$³ñ,Í’C÷. ÙÙÚ‹Ûá’¿sk£Ç‹ûV€:áƒS¿,näâz‰ÎWÓîýÛ|6´ö÷Ö6±³^„ClïÉZŠ÷@b…ŸñŠ•;<ºMJ€AGP«\ßTËÌÞnÒbªp©¢õ/ÁŠìæBz
­â¶q–òxœ~vý)˜fý|	¯R¹¾©*ðM¸þ,È–Ÿþim…P–gääÄC%L™Œ¹÷F?…ZHêçPE¯DÌ †jÓ³KñÀo‘3ìTâ /êŒwÛf5›Á/.2¡cÚiJ€Y"fpLÀ<Œ CŽÐJàv[¢ÝD#.0B…1ÃŽ0*xo¨.1®¶ÎÀå>ØÿÜ4ÜÒmðQ;Æi8í:£!ËyoÉÕ›²©rüâ7jà8.Š
+ÇŒj¢nŒTòqRhªk¡Ý¢1—yâ1N,-߇Íܟغt„#%Ò¢Záñ1P7K-
+Ċ則7Ô(D°˜Rv"šDÀàš€. ôÏnº6Æ48Â£ÃœlÂÊÙÐ̦å&;käv
­{ù)õk›H‚Bù]®ñ¸¥Eúvµå¹f;š;QÓƒ=NTéF""k]ŸÒŒ(A"`hFü€ï‹å®×e@“M˜4Õ„l"€áQÅI¸!Ö¨DûñDÍÝz½l¤W6g©¼Ÿ±ó¢|kpç*YkF”ªn¸êâTÞ€YÌYæ>û–ÇÑÇbš?€¯šQ|çÔ–ÇœÓL=ç
›ýxšRKx?ýK÷Ûy»|ÝfnX9}¹šÉ)AÚz9œ9ÀòWKw¨át‹}§$ůÂc´à~œ*À†)­ºV‹âå)µOoüöìÖaËÚ™„h¥Œ˜1¡—bý"¿¡Í 
Û³ÍÔÀ–xšó@5‚c†¸à²D±Žž÷çàÒ[~Yµµ›m5E”bUöŒß ù¿àõW÷j-	Cþ jª-ã)c•›“œÐ•1*¡aüb]YÎðXW–h]ÙÅÀ¥®l€.veÀS»²‹¡M]Ù mìÊJ´[Ûê¼485¨ž©ËÁüF(ˆV ÏnË d†ìÛ¯NmËrÇÛ²Dõ{m˨RCy:(™s²‰’9‘
Kæi¹©dnävKæBì'Ôœ•‹wgÍj{íY±Ø×ôg“*?4h“ R‡V xE‹F!l»Œ½edSöÉÆö6)÷`oµÜ¾½åb?­\ã	-Z³Ún‹V¬ö”mRׇmZzlÑ
+駟èV:ôó<‡³Š}û,Ï«NA)‡â^³aÐÌȦŒ8’xRîÁˆk¹}#ÎÅŒ¸»pÖ°	ÆüÒ<všÇÖƸ!ù©xfÝDô*åЁ\	ÍÎMžcCIB«H®±ÿ“ºÓÐVù·«­KzÜÉ «+î}PtWƒÕ<¹[]oÓämè¼ ÛÚÊ܁$6ý„BÌS¢<ü¢–Ô0…4•êU]#£ZW# Ê;bm«Úµ¿]`Œœ>/rúÖëj¦#—‡¶úU¡¨]>R
„sÍÔ1…ôÚ1A,?@uŸsoeÝùó0»3½6Ì6»Ì aÁ9vµÆÆCqAfµZïÜY#€éØ»#\†“V¡l¸ eKxð€{¥3ÿáˆJÌ/> ’PS¦…–E©eH÷Ùƒ’«}¤(ã3¨G`•ÔÖï–÷!§‘‘U•ÐOQlÛ°3û$žVT‰~‘ßÐV3
ÛS§
Г¦Y…§ž6Dªi¶’K©Kå´At{õC,ÌÀ€ê£ú—¨ãŸß揸ú±Ž-f㣟1·ÏU²Ì³iÂ{3;†0c±¾9Ðáža¬<~~\þìúÈ6_ıöͯ%íy“„Àp‘sì=
+aÜ°LpÙöîïï‚ò¶áïî„®×þDvÖadÎãx×›¨~¯]/áÀ¥ÿœmV¿eTå[¤Vo“BSñVíÖn¹ÌSlzæô)æõQéÖý…·Ï+^®mâQÒ@Þ¬²¬*¦£"D$%“
+NDÓ¢5·ž,DŸÒÄ_ÎmOPº¿&ZDšEFÔé{Ø·¢‰“E kqéç¿yÿÅWýendstream
 endobj
-234 0 obj <<
+239 0 obj <<
 /Type /Page
-/Contents 235 0 R
-/Resources 233 0 R
+/Contents 240 0 R
+/Resources 238 0 R
 /MediaBox [0 0 595.2757 841.8898]
-/Parent 232 0 R
-/Annots [ 238 0 R 239 0 R 240 0 R 242 0 R ]
+/Parent 237 0 R
+/Annots [ 243 0 R 244 0 R 245 0 R 246 0 R 247 0 R 248 0 R 249 0 R 250 0 R 251 0 R 252 0 R 253 0 R 254 0 R 255 0 R 256 0 R ]
 >> endobj
-238 0 obj <<
+243 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [319.3285 712.0064 354.6457 723.9616]
+/Rect [271.0812 690.5936 303.4893 701.7118]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
+>> endobj
+244 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [215.8886 605.3217 251.2059 616.4399]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
 >> endobj
-239 0 obj <<
+245 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [466.3648 684.111 501.682 696.0662]
+/Rect [370.565 589.4719 405.8823 600.5901]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
 >> endobj
-240 0 obj <<
+246 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [270.6005 592.7337 305.9177 603.8519]
+/Rect [240.3865 520.0498 275.7037 531.168]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
 >> endobj
-242 0 obj <<
+247 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [217.5744 177.0729 252.8916 188.9333]
+/Rect [338.6766 520.0498 373.9939 531.168]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
 >> endobj
-236 0 obj <<
-/D [234 0 R /XYZ 74.4095 789.6651 null]
+248 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [279.4096 506.1473 314.7268 517.2655]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
 >> endobj
-237 0 obj <<
-/D [234 0 R /XYZ 74.4095 755.3439 null]
+249 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [265.8608 396.965 298.2689 408.0832]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
 >> endobj
-139 0 obj <<
-/D [234 0 R /XYZ 74.4095 233.3614 null]
+250 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [258.5279 383.0625 293.8452 394.1807]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
 >> endobj
-58 0 obj <<
-/D [234 0 R /XYZ 74.4095 233.3614 null]
+251 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [368.8832 355.2575 401.2913 366.3757]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
 >> endobj
+252 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [265.8608 273.8803 298.2689 284.9985]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
+>> endobj
+253 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [258.5279 259.9778 293.8452 271.096]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
+>> endobj
+254 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [207.6747 230.2254 242.992 241.3437]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
+>> endobj
+255 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [389.5264 218.2703 421.9345 229.3885]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
+>> endobj
+256 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [247.2111 136.893 282.5284 147.8219]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
+>> endobj
 241 0 obj <<
-/D [234 0 R /XYZ 74.4095 189.7319 null]
+/D [239 0 R /XYZ 74.4095 789.6651 null]
 >> endobj
-140 0 obj <<
-/D [234 0 R /XYZ 74.4095 166.3929 null]
+242 0 obj <<
+/D [239 0 R /XYZ 74.4095 755.3439 null]
 >> endobj
-62 0 obj <<
-/D [234 0 R /XYZ 74.4095 166.3929 null]
+238 0 obj <<
+/Font << /F51 119 0 R /F44 92 0 R /F8 95 0 R /F56 126 0 R /F14 193 0 R >>
+/ProcSet [ /PDF /Text ]
 >> endobj
-233 0 obj <<
-/Font << /F51 119 0 R /F44 92 0 R /F8 95 0 R /F56 126 0 R >>
+259 0 obj <<
+/Length 2796      
+/Filter /FlateDecode
+>>
+stream
+xÚí[Ks#·¾ëWðH¦v`¼¾9©8⍣›írQWR"‰²(YÞïÆs0 –Ü*oUj‹âpÐÓÝèntÁ’†d¡8â؈…ÒI)Èâòþ/®aìg$Ðp.RÁÊèÀ<Ê([T!m¯RJeÌ,%	RÒ(Kö×󳯾%|a‘T.Î?,…k·ÙùՏ˟0Q«ŸÏ¿;ûûybIGZSµÈÎåFª¹\!s¹Ì -±·+²|€Ï3|þ²eîÖ>¿„¡
|^Ãï-|.àóßpÿÒ=
+jõ­ÎD—Šƒ~VÆ»ÕÀˆX>Ùg¬œø<æ;;F–kûE—¿­„\®ïÍƏm?øo쿬zá΃ÓÈ]^nVTø³±Ìw–nºÑÇÕ@¥¿ÿÁÞ¶÷›+øtÛX™»  ™#¢k‡  ´çÿ‘ªåþ@Õ÷~KèèüBhÝ÷™ÌÑõÎí÷+’nYW_…ß÷ÎK3KŠ$™‡]ÞÇçýsT97ÞÛAæÝzç<¯öÏú"ÜÚx’$róy®aiÅYÏ#YË%‘¬ï“¦ÜÑ)¥ÜºWr±·¬áóûnYÿþ¹|²4˜X	;iÇ>´þvc\Z~ÿ6F»üb—ª1°Ì6þ¯d7…‰Y†9`&±Ùâã|²Ä¦åHw²	0Éà9¨~mg¼}ñJ’Óå??x­v[0'¼–›'{ë&#hl'ÿ(Ÿ=Ÿ^¶~4†dãÆÖÎiî"JXw^Ü‡õÎ[Ó`°¦Ö`M‚ŒÞš.ÍYB"}¢Ô>/¿ÚkµÜ^@¤pŸ’/­h˜$gÚOÆ£x:Ú(pˆL÷ÛËFÅËKgŸõsLʪÐcîCÊ$Ò‚ÅðÞ9,¿	æ}
+Qmï}_­)¶Í®$¢\›Àô%¤ÕâÚë5:ÌÙ“†¶•;7¨Ëÿn¦ñiXn©ØhwÓ\‡µ“»Œ±dKYïÂò_É#p]xÄ“Ç8€ëj´Áý<ڀ͞°²v–áy ×¢lèÀMgêl;H
+Ê”©¬ bua£…MQ¿žýø3^\AFûî#L¾x…cèâþÊ:†Ÿwgÿ9ûw–ô¿!gèrÞDOêeB­’ÏÛyz‡•­ˆ>r‘aO;ÈÄRH3Up=†,‰h¢­ \“Óiö´•ÀgªíåÖŒ§ÛëdÛð½+u§D!¬sGêžvt§¯XjVXúînk5é	]*z:'†==T#¡È>ÿfÿxÄi“Ê6$”Ÿ°Àð!å< “€ŒÜGD±*¨#¼*Åžf„À0,o	Šg<œâ“Ú±O¢²zÿPO;\>®Lþº’Ï%X‘Ÿ:‘+ &xå[’ožb
²˜#ä½Ý×{! ¤Q¨5˜“5 `"ëBÀ¶Ügr«p"ö}×”©Q›¢‘yÁÔˆaI§x0T¬k‡è\èBù+×›´õ»œ¤yº$?dӍäóÙæÚ̘Z¥côÅê`¤TÆ(€EÀ£iòDÕV‚aŒ¸zªEDí7¹†)Ù‹·Œ¬o‘¬oM¹c¼•rëñ–‹-ZŽç~YØmCë±9¬å(Œ{ÒA5}®f†‚'(§Å÷‡[¤ŸÏvo3¶VŹÔò~U©äÔP¤-ÀlÚ:Qu¤‰ˆ,m]&[¨$´IW£±Ü~Ç܆Îr»—Н=gÝzÀ¦J†Wš7‚X€rLÓ	✬ĉ¬Äm¹)ˆgr«A<ûÿ¬};Y3PÈyJ]z)é¹Rø™BL™¬ÇîTªÁ…$VœÐöSe¬aì×þ^³†:4☰7‘ÂOœ’õ	´Üùj³jîâò¼u`ŽpŸ·ét	Û~›
+×oW8Umfq2”!*yÑ™#‡P
+M;',5íözí¿ÞdOÛ|èÕ'6(Ä/ô¸F¸vc%¶ÅVÕ­_ƒîúõ6$²;?ÉoJÿP¾ÝpåÇcûl¯‹Ÿ@:VBËù¦I«/û\;œô±ƒ»Íó›ºn§þ¯Áß·OQÕYB$T,ƒ>„ð£[ÆÈoÈÖú[”M‘ªß0ö{‰ÔZÓËä<ö÷2‰ê„½ÌX7>SÂ5 ^Œu§ÔædR›Èº¥¶-7•Ú™Üj©ˆý´¼áJrc7w^j]™mhD±âÅôöCÅH?Ÿè¤lÍØö ¢&H0JÚfNTé¼ÁœJßèÀ{’ÁêµýV^ÏÏWšD„G
 ›ˆRn‚+ž*k2Lý€­v„fº×@¸½×ΩñeÑ`¿×N©î~Z…Ixàû¬t°ÄåæÝ&<¾ó»GfÑÁ¡¹“ZBð+q‹{D¢òfþ™³=°såŒøýç©>E”$ªŽ°f1–fªÅ&F	`Ao_*Ãþ7ÔFUlïÛ~ÆŸ§Âq¨9Fczº—slÔ¸DñÀúùÖo×õ*‡¹bÁÍ1-籿¢%ª/©¢Aϝ­ê´ŒªQÏ"U·œ5…¦jV
+­³\f«–ýr\=!:µN{ë™`ˆCÛ0_cç#Ïf:Ýø(˜v‹™
K«eäDÔm0Âj"¸UÇ [d2½=fa¤ÌwŒÀxx|¹·®5ªB!£4;¨”)ÊHñÚاW¢p}‘çöÍ°óïÆÇex_´rÿ¢ËɆ
Ö³i;šcĽóM}5}ëØì+p“]Y!ç7ÍFQµai;œz|KË@¾7!ªH¯¢&ú!`ž glݦr4 ª©>e¬Fª¶”j$)உ“Šzè»Ûzñ´iŽ&bõdo®žŒĸd§«ž9ÇFõLdVcw
+$É_sÒü…dDŽ©¥‹ý¥4}I•ðôŒtJiNÖ¨¥‰¬[LÛrS5É­–Ó‰Ø?Eo8Þ½ál¢ÕÞp2ÑCzæ™ÇÞ°-=ö†éoÚì§J!¡»ÇVs²V”E²~”5åŽQVÊ­GY.¶xcµ	äÖYP•‡å6Yʺ
;\õCtÛ3Ã	KøN˹EÿÚ]ÄÝz7_ìôŽÔÊfšO»û*ªl×0ª$  eŽèbŸ”¿‰Aåßø›kÿµwWœª½3·cn“†3‡VÜY³ôù:­ )KãôÜy‚‚~šÎ¸€Œ5ÔÇr³ø¯½k·­ÁÙ§#0ð$ ˉ$M'§%êa$Ÿ¿/Xˆ½˜4ˆJˆÇ\“ò¬|¤iÊW	ýI&ÿ„¨‹*:õ騋B²S’«Ó¡®œcu%²6ꚁtOáêöô6
+).
+½9 E1¤ufø1°0ç±&ª/	íqÊvÉÎÉ%;‘uKv[n*Ù3¹Õ’=û§ †Óé g­ÃÉD†M3À°-=Éô7C"% 5zQ–‘µ¢,’õ£¬)wŒ²Rn=Êr±•S '‡P²¨VYÈii‹ÕÀ”¨lúÀM!à{z’û:œ…!é‹Ócv»Íä¥J<ätëËKGæΨçÿUÆF3 U€‹ñÉnzâèþÿ
áíp¯ͨZñ¨úáÓ:FO!´<™Ì¢©x¨n‘ö=
iöÎ!Îc~ ‚ÈJIHQs׉ÃT3{¼Dæ3Æÿi ƒ	U‡r‘fȈ*û½ʝ¢‰“gJq‚Ú7V’Öäýô)endstream
+endobj
+258 0 obj <<
+/Type /Page
+/Contents 259 0 R
+/Resources 257 0 R
+/MediaBox [0 0 595.2757 841.8898]
+/Parent 237 0 R
+/Annots [ 261 0 R 262 0 R 263 0 R 264 0 R 265 0 R 266 0 R 267 0 R 268 0 R 269 0 R ]
+>> endobj
+261 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [265.8608 621.0773 298.2689 632.1956]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
+>> endobj
+262 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [258.5279 607.1296 293.8452 618.2479]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
+>> endobj
+263 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [247.2111 483.5929 282.5284 494.5218]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
+>> endobj
+264 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [399.6904 467.6527 432.0985 478.7709]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
+>> endobj
+265 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [252.4315 385.959 287.7488 396.888]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
+>> endobj
+266 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [193.9002 358.3426 226.3083 369.1819]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
+>> endobj
+267 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [247.2111 288.3252 282.5284 299.2541]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
+>> endobj
+268 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [337.8484 246.761 370.2565 257.6003]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
+>> endobj
+269 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [247.2111 176.7436 282.5284 187.6725]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
+>> endobj
+260 0 obj <<
+/D [258 0 R /XYZ 74.4095 789.6651 null]
+>> endobj
+257 0 obj <<
+/Font << /F14 193 0 R /F56 126 0 R /F8 95 0 R /F44 92 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-245 0 obj <<
-/Length 3064      
+272 0 obj <<
+/Length 2961      
 /Filter /FlateDecode
 >>
 stream
-xÚµk·ñ»Å5€]`1KrùJÐNb.Ú¤H®-Œ¦0Ö:ù¬ö$]µw¶ÿ{gÈ!—ÜåJ~ 0öL-‡Ãá¼g¸ü¬üÌ´¬mœ:3Ö1­?[m4gW0÷ÃN0m«Y«´•Ù¥
³Z‹³eŽäÛ‹_=…!çÌ)%Î.^
{iÎŒvæìâò_‹ÇçKiÚÅwûív¿Ã±Z<ywÎ<Û›ëõù¿/þüÕS{æ˜ÓB#šælÉ-“–ûõßÁ*¾è7ðçžõpHËá?¹8à«®÷0ÝKøs/ÂÜ
q~þ»¸‡ÑÍùRèó
-§J”—Ú¿J(`ñ3wð¬höýÞ…w|DzR¾ÆS=xr‘˜˜X#$SZ¶5Fs`PrF
-®eR¶„¡BÐóœc’k>l„<ôG"b3&)!Ó’ÿk£:Åοò8¼zT.*ññÅ—aú
ý\ÁÃ?i•Ôàâo¦
-²ôCjâ˜EŽá/^ç’'Yã©^¡x‰…£ÁämP%îeØ­h]ïHÀoÏAê4çÇ-NÈúYIk+™ãÂ~†¤só’NPQÒk¬9éÎg†ûþxgè ,G†Gc‡­¾€éð H'y¡qÙƃeò‰ÿ?ÙŽ·žÓ0ž*Oï~ýé˜^DU(©”„#¶­¬ëTëÔà
-ÒÛ0ñ:ªzµÃ\ŸZצß3àÞuÐëK2Äí:¹?TbÄÒáê«;šúèß/¤à½WÙ=¾ÐaÑÁû]xy?‹	öB%ºý_<]ò–¹¶-9;v®Û%h—u÷ëÛ0¸À­|pK²œ;¡*
-à~›Èý ³§iÓèÑ®®J¦|…ô`Á?ýYzÛh&§Ï4‡Ödê8u¸"˜Ÿ3»NðË|7ì\§h‘ÿ ÿ„çÙ2¤dÒ5"cäTԉͥaº®Üü2…À5	bGA™6I xC컌œVÀ`¯7RKƝlKG±]¯p™êŽÖö[t°6Îàyû>P°Úùqê*˜sá97ŽŒ.wbØÄòÁÞÙDÀ·›5¦H…`†C@K9Á+Z&Tc¸Œ,Æÿîþ‹VƒÅË/f‚˜Mç¾!ŸG(ëÆL~œ(”Í‚¤
©Ó
-Ò²õ.Êë’,"J+UÚx¿¿N¦Tg„eÍÓ«k²O¯o“Ôf#§2‚)ÉÅgDÎÅ|äLPx¼‡”“Ž<Š{…”}ÖÏ_?*ËÁ?ÂóžÇðüLŽŸ¦!ÊýöAYÿäÌŒ´Ã»6à-dÝFÂüéíÅç¦xïIíFûó$—C¶›¯†ü•Èåľ-¥/FßÔ²ƒ‡Ù)¯³1m„Ó¿ÕÖI®çöÿ=EJ«~?y‘bVò °Í~Ò9˃ù™?ÀðuÒê›è’é1Q|BÚq .?¥HKºzŠËÞÑÁpÙ?4z¸õuDE¨‡U;M.gK:ÚªgÙ\É|•ù÷¾`ÚCÒ™GÙx`Í©Ï›׉ÀQ2>£XUÆGãXV
ñ–øt‰bk|”áþBQ•Üû…GðVìfæ<WÙ4š£4þáý£Ï@Ô2ËW1
-*ºÔÆ €_Þf]QÖ±Ú§`ÞE£Æ`iöûÉ~ÀPJUÉm8dgÜÆäæã:ž¥Îh¬m	a‡0…C*fϤñ¯3?U?aZªƒš¸…_hÙ=.†Rf)ݤžw2ꝷނo‚µ
”»Q‡ ~(}´€$*ÃVÉLfʶŠø’GUæ.c;ÊÏÓvœTÆüi˜“…†Ña‹1sbÄ—
A_‡ßƒà\[ž°«ÎBý EÁètWtÂ}
-æ^Lî1Ç¥­ÔÛz÷G(¦œÕ™¢n"ÖÔ„{ã3k<nëR6×­òÔ¦{EèׇP¢–T+%,3J¢æD>2VÃ<d±ž^í%k¤JI%C;Ƶ㟨6š5ÈçÓ<ë¡R0`v?¥ˆçyHA½$Òÿœk‚úÉM¬¹°ÁÒ0áŒ+eý¿pû²¨”ZòИ‹•b߇_Ûuª‹RsöQ€ôY6¥>Ã丏ǓÝR$¥_WÝ#g[Úû×”CÜfÊp9e½„°Ðš¸ð‹×äâä t»ÊÎ
-ürÓêŠÜË$õÄÆÔÒðì¼$EÙLj¹fÖmiÁœQµëàîÚd=ŒP÷ a’s8nÈ:ZnPo_{&µøes{ç³¹Í~ןº4¸È»lXˆvÙ¸1ØæMÞþ¦h+xè~“å%]Ñ姚7±0EwLMŠ"@ZMqGˆ·´ù=eQ›º<u½É6¶­pÛ—ù•†?Ù5á‹ÖyÑ·&b33ßXíïF
r?—øµes5»p
-ìÃ~|ÍÞ‚ZñÙzž
-õeŽÞ×ó¼-<4g –
-WnÆärìj)XuŒÞe‚šî[tŽl+¥+·}†®Ï™[ôæ¸aŽÚX²D¿.öƒ¤gß{Y†sE'ÔdÂÄAŽ×o šüZ±²êæŒKoSÓЙÛÛfý’.{_±Qk™ mI¼:DgᡵŒ·JûÊÁ5ہ¶7©÷ž:ßÒÚùö3.L]DG.¡·ò+COjWGƒ±Psî{¯ëuÀPp/W-©“%Äî(ãñfp_fð› M~1wa at zº^…ñEðÃ1¾%S1éÑr=i#âQ®¤ÜEŽ@G©Î[ŠŽÂ“ùÎZeNµÏü2_pÄ*#TgØ·Ž<ÃqgÚW* s"èÜ»ñ	T8Ò=:Áˆg	ê8Ý<-SÒݯWão%â•ÉÚߦ¦á38®w±jÊ=ëŒüìfØ"e|²°ºÂP«íôÎoæîf‚_Wîõ»ùIœ>š'qe™U‚ùuÚñ·Ì#0•°=ÅÓZê*ßðì&a_^<ŒºþܹXEç_ŒÅ”_°ÖÍ“".T5¤ÂTëP_²…Ê{9Žiœû”¢vúŸOïÖY‡-x[>nÆŽ»ŠÔù‘qÏ	ë÷táûwx¾…ç/Ô|ËÚTû¬]›
9Ób¢  „ZMœÈ&2¨cÙD;MÛ6Ë&ÆûÖýV¾íós+CX‡,aÕ¡™6fç+Ê1„ª!Ø÷^£ºV0.’Á|D&
-u­æén-Þ·ÂV>‘Þ¤$ÀT„\|‘B.žd&rcà5Íâé¹mƒŸбae
-˜¢ŸjLÚ*ø(%˜‘ã¦w˜Yéo‡-ùÒØt\Î9±î:@O¯SO“ÆzIlgîܽªg…+"-“8|ïÞ–]¼±[Þø’8²Û¶e~2n³¦Ç'^q.T}pˆ“Þ_¯‰#¢Ê)š#É—àå7û° LÂàű¯r`:ï`á=¦tÃ=&l±4~ã݃‡^MK5 at 5´?ÇÝÝÚÅeTŠ0ç½øÌgéc¡\f“Êì6cx¼'÷í56çϸQ`uZ÷g9Ô–ÀNú³£Ûþl²oÕŸÛb*½­›ÀF¬€¤5ÿ|ë1Á7z¤¸U×~*ö‰ŒI:룇Œ¯g›{®…T•B_œ l¸ú€–Úˆ8rΤ§»áÌ~ø6€Ôº[=õ¶!ºK+E©¿1Õ®Ì×àÅÐ9Ãv¹pmŒÓ{š¦7ÖC¼«G'‰¸¼×õ<.?¹ðxÂKá)¯J5Áé3‡°¢Ö3RA<11úìËŠ,°jM½Q:ݘ–õfT Á¤=þ0‘Yu,…Uô|ÄèÁ¢5ïnÃgPÞ¹$qͫǶ
ä•ÆN]»BüN	ꬲܖ#M\QèÓp˜í•ÔoØLz@º“ _R”E–þìƒ˜ö
¸"¿@vu=†m©G­nŒÖPX:9ºJÎZYžé”J¢sÎUr]tã¦ì6³~ý¹}7ŸƒM<û  ÷y#yè¾U||l9îô æk#Ì2šVŽN1Þ‘0!n¼]úŠ»²ßÿ} tÅendstream
+xÚµZ{o·ÿ_Ÿâj À©ÑÑË7™ × ‰ë-Š$(ÖºÓ£Õé”[)Šø»w†¯%¹¼;Ù†\¼»r†óü
):ëà?:Ó‚ˆÎÊ™6–(%éìl}ÔÍ.`ìë#h„PDH¥á¥1º¬#F)6[ä‹|uzôô¥™YbS³Óóe”0ÎíL+J´²zvºüqþzõË1ßÃï
+~[ø­Ž>ýöéK©²¹\Ê
+€sú@ùÖSL,¡FÉ@xD›ã—b~	ý1Óó_™îãæÆñóÏçø/"÷z$îð‡a>nLÍWg8øSG®°ôc7¸4neŒÞxÂm>ŸÍ—aÝõ
+yøè¤ÈñBvjþMàƒ¢_ŽÒõÛ°g··qP¼"œIÐ;¥ÄJxÀ=»È»KûsÏ°0“6_˜)šö_ê-á¬][•âŠ;·tãZx£Þ+ãˍŸGaË‚šù÷ð)I…ãNñ«0}€¹•ä°û£§™rögàÌ–*¤wSÚ^š×™Ã&úE>aâ°ÓeQ¿·¨‘·™È°×ZªvVÉS…M¢Ú/Å6FZá¤XEØ q†~ê?\9Óù~çóŸ—ž¦eüÞHBd|À×R
âQC89‘¯["Eì¶e
Êì†AJ`”L+ÜÖ/G?þÜÍ– …o:­³4¡Ö²Ùúˆkd|½>úá裢҂‹|E§¨BbÈD[1F‰ô÷ÕOìàGki­%œ*ȃæR·LE±Ü%•–)C*/[c#•O
{ÜE±ùE##*Еà"$ºhô»iF\DJÐ#¡²³nÂ3dwq¢Ø¡Ã[F¡•†X°¦­€H´È¨Üþiaϐ]ÒZ(¤Ýt Ãô~¦‘h´PåZªäùÊ•:´îÓªÿ†¹è
üþë<rbô?Cvf|_å±àÂJGƒœxKöõÞ˜0„uZ”{Û™©ùd—9ëÉ¢(Áwθ¯¢°…†ÉÝ«àD´Ÿµ3«
+Öu±2bNv{ø§úgTû<+Pö¬}LGϪ˜¶=+ãyãbÖ{Ò²\œyÐ>ÿ>"\Ÿ
+r¼’¹Q‹9þÕ½ÂGå3òmÄNÃÍy!€É9 €×¥£N˜ké¿"êqUü"’~ÀÁà¶êϐ÷¥ÛUù÷X[hÈþŠ2wF¶ÏÞ‘ì°Á÷ò-^óm›<g;ÚØÙ÷fjS¦í-3Cn(Óµâ
(½‘ø%ÑŒE9àNˆÌ
U˜xØH9…‚Žð‡
+Â…2ïÄ‘FñG qCT*O‡3k¦8œY‹˜Çvak7æ&"œ¯8‚~+3[¸¶[­¤I°Øšš~7[±4]×ijŽKÂXÇK8î@®àû@®ƒorK¿¨“6•ÄXÍg
+¢¤³‚*‘~‘O˜&ðɲ¹šB‘XÉSW‘Hu@
+@À
+t[JñI at .t§Þí™CGT;«€€áÁsþ
+y{Œ1xƒëj9¿»\ù,©ÛÍ1§à ÉrNñS at mð´ZctÜÓÐè¶6»ÓäèŽÐùõéYÌ×ý·¼±ùsO°ÙúŸ„Ÿû¡Úçéüéԁ‘ºS3	ýw§ÔAÿ	ä‹Œ¾á>Õ¢‡ ‡„[(p…µÓD¢ý¬¥ ú…‚õ4öA9®0E—ècmô=ª×3>nî<õÙfLO±6â÷7ÉÜ%,<pÅ‹ïõŽ|I5#Bág™ïž…i÷ÎwÉ±€<	þéñ	SŸ4 >—ÀÅØ*õäQ1Ü`;¤4‘ÂTh
—<“¹‚Ä­6>ÔPóý2¯"gQá^¥C‡QXŒÃNèÝ`Lj|¯ý#KÌŸoÖë͍²¿qַ׫fla»j|?ß$\²ôQP¹ËNº~p4ý›dD7ÕæÎÿ¯lÈ<Íy–™Â’ËàGø)-Çnµ~FÏÃûÿ–¹ä¤	‹GtÂ(È äV‹
+*`Îd­€²ð¸€V>_bŠob/œ¨¢-7AØLIèªqèÎÕMÙˆ×Q\‡6
+?”“Êõ>þ5k¼èÍb^œüe#VÜ#@=èÚ57<ËÁðØá±ôý¢SæPÅMô‹|Âô `²ì#+.ÀcF+yj0©H!8´-иRxó…Âe?ôÓþ,x|”­Nü€™2Œ¹ç>Lv£WÍ#…äÍ’ëc¼9[b7GªèÍ+·­]¼Ãwx˜Û^€ÙºL¿O\²	Û%&7H‹¨Ê¿:pqò'•“woÝ;…P
‰ë[ÛŒ›…°rLw‰ÅÚäø߯|ÙÅÇÜŸ„%@ž’Çãl|n·žn•~z¶å¿‡zè9Áwç²ü ¦ÀaÇJþX[òr¹›¾½‚B&D©Ùº€¬ûÛ°-&àÃg×àý'l¬3"زyÖîg
+Åóª²h'šMà˜&8}=J2U¬WdyGæóƒ÷Ïú¼SµšqcˆÖ>t,éù„é±üdYÔð Á¿à÷Í×18Ä¿Ö²£>T˜sMTýLÁ|™Êü*"JTÚ®ôê[FMKH|'ÔòÊsÖ«pàB½Ã¹pXc‚5 Ì;^×ÅöåP—RM`Ëãuºu£Öñ.>\¥5]”1¢)ôUž´Ì˜Ó£	A˜ìtvB0VßÒ÷ÿó€Ño6ØÊÂœqb”žq
¸…ÊC×?‘|‘ÓO,=Yô‘UšC[Â“•4•»%ªBHp7IU)E4ìmHêAgíl
+CH›26jÔ£sÀÖ«›èKïŠÌp£eÍ6׉a«c¥/!BŽ‘¯CrðÜr'4€âN(c²vƒH´»Éq峍lÿ†¹~/œŠ3¾‡Ãxýð:üðùßa¥±†ÿñ(\M?[×p‰4}“–ˆ9Ìž},HÊfÅŸ&»l3n}èŠW…m*4Ô·ÎNâsŠ/[Ø'ï̯³çÀ‡ÿhÍÛÓíâÿ)Mf}:{Çl Þ±ƒ8/ŒSn̍ü	ÿÒ­ÍD•J0øEvƒ‡Z~6´
^Ò·6Nû-l§ý3Æô¶ª–ŽKú@‰W4èܺOü^6£Vò
_d•d(”öYð™“ìyTÍE:Q×z’¬ZŽÕT|ŽEs“1«ÓU\­'TݸDÓrïZîY·7;öó~}[!£Þ+ã˜Þ=ò8Áý
O†Æ±²Ðõé 
+ÂeÃõHSà  8Û¤JÞÇ ÆJMDµúÁ+ 	€±Üðo¨aÙùÝãÏ|âŸUT7™T{\*J±sOÒ™ihÿ®†‰Ò¼Uñ.^(ZZð-N†FmÁíä´Âòô·bÐÍ=lý¥s"Ñ/¹­Î?à½XÒUwVkãš:žèTH¢L
™#ø²¢ö0Ë›I*FðfY¥—«@}íßGÃYQî°oíÎ \…–§ÚÝEØá&¿XÄ~fRnÚõ®}~Ç$‘Ö¨G4ãv…Mh®?CɸM–_m}VܹM%ƒ÷­ù~LÕmÓh:- Ÿхh} Ú+†²„*K?ÐméPϏ:œ_h»ïSÅs:E½Ò½î:ÆvƒWãÝ(ï:¬¶eâOWCÙQŒNÍ©?Zgó3gÄaðoëUêÀÒñú‰§ý™w¥?Ã`}JISÜâ÷î~¤™)áø«£úWCÜeΰlÜŠXb„Ž·±5O)Ž  ¿ip–—;¡v/AêÆWñØ,ƒ£\M¹ngÚRŒX3£וîDŠ²«ãìÏ$xG«©‹4‹Œhzh4Êj\Éݽw5¿ô§Ê
†ÿ§
Ãendstream
 endobj
-244 0 obj <<
+271 0 obj <<
 /Type /Page
-/Contents 245 0 R
-/Resources 243 0 R
+/Contents 272 0 R
+/Resources 270 0 R
 /MediaBox [0 0 595.2757 841.8898]
-/Parent 232 0 R
-/Annots [ 248 0 R 250 0 R 251 0 R ]
+/Parent 237 0 R
+/Annots [ 274 0 R 275 0 R 276 0 R 278 0 R 280 0 R 281 0 R 282 0 R ]
 >> endobj
-248 0 obj <<
+274 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [405.2133 612.7799 434.3737 624.6404]
-/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.swig.org)>>
+/Rect [442.6299 746.8856 475.038 757.7248]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
 >> endobj
-250 0 obj <<
+275 0 obj <<
 /Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [356.307 280.4841 484.2022 291.3233]
-/Subtype /Link
-/A << /S /GoTo /D (other-common-types-bool) >>
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [247.2111 670.4901 282.5284 681.419]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
 >> endobj
-251 0 obj <<
+276 0 obj <<
 /Type /Annot
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [120.2376 268.5289 266.3938 279.3681]
-/Subtype /Link
-/A << /S /GoTo /D (other-common-types-complex) >>
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [214.901 618.1652 247.3091 629.0044]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
 >> endobj
-246 0 obj <<
-/D [244 0 R /XYZ 74.4095 789.6651 null]
+278 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [217.5744 557.5791 252.8916 569.4396]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
 >> endobj
-247 0 obj <<
-/D [244 0 R /XYZ 74.4095 753.0247 null]
+280 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [108.8202 467.1391 141.2283 477.9784]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
 >> endobj
+281 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [405.2133 385.2838 434.3737 397.1443]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.swig.org)>>
+>> endobj
+282 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [322.8707 373.3286 355.2788 385.1891]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.python.org)>>
+>> endobj
+273 0 obj <<
+/D [271 0 R /XYZ 74.4095 789.6651 null]
+>> endobj
+139 0 obj <<
+/D [271 0 R /XYZ 74.4095 613.1825 null]
+>> endobj
+58 0 obj <<
+/D [271 0 R /XYZ 74.4095 613.1825 null]
+>> endobj
+277 0 obj <<
+/D [271 0 R /XYZ 74.4095 570.2382 null]
+>> endobj
+140 0 obj <<
+/D [271 0 R /XYZ 74.4095 546.8992 null]
+>> endobj
+62 0 obj <<
+/D [271 0 R /XYZ 74.4095 546.8992 null]
+>> endobj
+279 0 obj <<
+/D [271 0 R /XYZ 74.4095 513.1808 null]
+>> endobj
 141 0 obj <<
-/D [244 0 R /XYZ 74.4095 359.2115 null]
+/D [271 0 R /XYZ 74.4095 137.8893 null]
 >> endobj
 66 0 obj <<
-/D [244 0 R /XYZ 74.4095 359.2115 null]
+/D [271 0 R /XYZ 74.4095 137.8893 null]
 >> endobj
-249 0 obj <<
-/D [244 0 R /XYZ 74.4095 327.1487 null]
->> endobj
-243 0 obj <<
-/Font << /F51 119 0 R /F8 95 0 R /F56 126 0 R /F14 191 0 R >>
+270 0 obj <<
+/Font << /F8 95 0 R /F56 126 0 R /F44 92 0 R /F14 193 0 R /F51 119 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-254 0 obj <<
-/Length 3928      
+285 0 obj <<
+/Length 3767      
 /Filter /FlateDecode
 >>
 stream
-xÚµko$Åñ;¿ÂŠ„²Žn›é÷ùDŽ ‰‡8G(
-Ú[}'v½—]›Ã ü÷TuuõtOÏΘ-žGuUuu½§N^4ðŸ¼ðF˜¦³¾í„sV^l÷4·ðîód„1Æ	c‡›‰·k£¤°¶+åEÛY3	ÕuBKÞIá]çêoW|ô™4èœrW7RJ¡¼Ô	ìêúß«ïé/ÿsõþ~•0J鄲°*GX‘MP5Ý6'{PZw%Ùï.[³:^ÊÕøÝÇ¿wð»½\›®ƒGª]=ÂýÛ˵r«~¿y7'|Ù®¶›;ºxE/iɆþ¼JHáÖœ‡»D °"µ‡åŸðE/.ם‘«7´ôˆÔk€Ú\*A‰Ö)r·E I¶ôê¿‘Jb‹¸ƒ
q~x<€øA¤ PÑY«‚|ÞMËf|PÖÛºÖ‰VK…¯Ž·æÛüÈ~/¨¬B‹,½¾ƒß‹Ï+6Z<YÔ—‚±¾0ÔñÖ©;U?«Jw«”îqÌ•2J8о§
-'ÁÏóW£Eþ¾Â“Üÿ{¬øðVtÚµóÒIPÔ+dHýÈÁzRÐÓžÄr—¤®;”PÝqÜá™ýè3ë2m#T£,°…¨ï¢ïƒìe8t2¬ÌyÓ­èTcâB¤~ 2ûd€÷tRðÔ‡kâv$0ãÑ‚G{êÁ%øyÑÕh‡ƒ{ËêµƸà=¥L[Â]œ¶¸ètŠV=¶Ö£pxœ6ØÑ´50Ô:«­ÁÁKÝš2²Ay^×fè…ì¬>ï
~…
--{ƒw(€ÛuF_ÛŸjˆZÏË!AÍ3¡´C½Ï™ØoƒÝ%œ—ZíøtP±N"j6F³èVoÐzá¬jÚ€µ„æ@àÍê³7w›ˆÎÛÕWx¸÷}­æè©[¡[YÔbI
-ü~
-xC’¡ëBÝk“ko£å|B
™ÛÛÀPô*#s3B7 ¸¦ÐM´î~[Æ5pº±«Í	ÿ6$$ºâÿ6»D(p{Ðô§ÓæÈ)r²…S[‘¾N½‡ópÂÕÅ…‘ãÇ‘¡wo"ƒ;ºû¤ó’Ï.{ˆÅ¥Ø~È#?¡!#WJhUšøp| ßïxAajM' žµÎ+a[Ó.™ïóµ©Uh/HMCª2bcìjj8ø¼¦…³ Îj»¹'™ð‘x½:áóÂì‚;¢$åÏ`8=ƒ´Ê(Ò*–*G)°³ `·AKútJ§ô@`£U7Q³âvœaáÒeàï¾ç•Q`óT2Â[+Î>°ÕÓuHÆ6lŽE625ÂyÛ•jTe‹Ú¨Õö°ÇH®ÁfߟPэ!Üâ‚×ø@¢­NØ–†Tº‘l$»À!3#ã~¦ü„Çü›Qž4F¬„j[A~Šx·°ƒ[©ñJ°ž”'č¤c:ÅMŸMÜ´Ñà¿qˏ´å[8)Ú{îøPÚý5኎0'Î&è K@Üé4œ’‘p^sÁÓ8SæÛ¡L@úxüy`wŸ¡:aTx‡o’ž‚j[xz¶4&梒¼nëØ`	;^ïÉß2Áð†þܨBˆJ›Ö‡¤.°?ÆU×á] ÛLœ°‚"´5Nf!f%ÜÇp3uÄV4Þ=%ÄD.nâ©ôGbe8¶ôyͧճ/†x¬ÔèTÞ½IjB<î[ëse¾šV·ÇŽ“ks'½°ÚM¦&ä ¬>Sšw}µA‡ž¡>µ;×æ	ê|€_[p’ß7¶¹d}%í~•Ó_ê\b~òü>ß·ñ‡×ÿ‚Ÿ„ß3eouO·Ÿbß—
-èIzó+Ý=ú´8GqÚKEÊrõ¿©ê÷ÃÌͲš>°òÚ?Å´â1Šáu¦É×ñúÓ
|÷§’Žœ1ƒßp¿«(þZà:\b‚‰¤GÈõôànû;v;Á Ã	ÚÏ60ŽÑa!Ò¥°\®ò#·Ôv^Ç{{Ç^÷ýÁ‰ˆOšfž\"Žwƒ»¤˾t±%wû¸ÅXÿ„Þ	xð$‰Ñ]©PÛ úÍ‘ÜÈ€œFé¶ `à3
-ƒÛÊêðÆ©X@â£&סý>¨Ôãd¡¤hʲ¾Ž¢¼§TépC³¤ocÓåós8ïÚσcsüÛ4À·áäm<Öå0r=ØÀRf¦?—±½‰Û	ÙÍÛÂc|µ=„ƒ¦ :1Žgî± }_•Û#Gy¼m¼è¤ÖK݆_çênA…v¡Íc,…pœ%ã†nZ í ‡:¦¤ôðȉå#‹Û$k@‰=á´m…Ä^LaÎFFãðþÖȈb“g£&·ªsô3­ê¶Øªžã7kUWt'[ÕÙ«A•el=+•µžá&f2™íBtUôŽ³¦P’ÉQ‘k÷'rŽè™pÑجè|ƹ\ã„ì4gÞ§Hà6F–ž´Ζ
q:½³^€þ¸”ÁO¸ ÔpþÇõÖûÄf–³z‰ Évö:‹ª÷5F¢hÔBÈ6Áœ“¥)<a/O î5VÌíì~œî¸öҁ
-“´xÔOÅôögˆ{qÆ>•Ö.Ê Õ¼£h”Žþwä| )‘y?öŸBÀ8ôü;2OÚOl&+\iÊÜóàËA¹æ¹Æ»‰I×!Úã”õtÂÈŽÀÐU·ÀkÛ”TL§Äí1vÜ	ŒöBu¶]Ô\¸`°åp1G6cºÓá"'›ÂæŽg2|¥ôRNLJ”|–Ý1B<“†ÒØ… ý&5–4…£°d3]0?#°T}å¥Wê|UYà 
-¸ðʝ‘+C­s° WSœ'è¥tFØP°¿ÖÝO®ª£y¢Uw?[°ê‚ä×lÌkÞþ>Ô\§ÔlJ…—Ž­®¦æàé\¹‚ÉÊ‘p€ýòÒ:‹çÏ3HgüÒyd`sçÁ`ç1Kt81ÑÉóÈI¾¸‹æô¶u•–­Y”wÍÍ•Í–õ:—;ÙVüžÄ¤.ëÞƾ"uÎ	Yw?™º!ç`3BN`óBž'š„\rAò‹ ÔÂõvè™cV©ÁŒµ;ÙÊèÌ¿¬_ŃJžmÕêpwRRgZ	E«7ÒäCåo=Õhªšæ|î2C‚"¾m„•+Û6Wç¾þAeœ–ïñÍO/eËÅ€K÷
©>9úÈðnhfßu:ÐÍlÅ ¯³(PlšSúZ³:ìb?{Šò)q!¥s“
-ŒÕFczjÿ 26G?“—$°Å¼dŽß,/©èNæ%ÙOjO¢!Ck»Íóß0~z…vá¦õï àÎo¡ˆ;+¤ìÚ’ø~³%Õ^g¨³[[!~ëp©jø0jÖ؈ÊÿŸõñ=·óOE"¶|Ò'qj¸ƒ½7ð¾Lˆ×sG³É°píb‰æÁæcu®øöŠ·ƒRÏÔBëFŸÂ§RO£ì\êiÀj[Ê–ýK·âAúHácr
-‹ï6‚RÅr^F±)³zN ykB¸Êciy½
-ëÇ;(º=Dš
µJ§ÜÒ¼L‚_çêî]…v©sh:Ñ@†S²1îF ÚVC%‘§ ½$«¡LmpµˆQ€›S(eö™>Qõø‘¼ô>IG?lLä^­¦såPî!±Îø=[LêݾRN;ƒšsÚ¶ì´çÈfN{LwÚiçd_ñŽ†.žÇ±†èÒâ(CÊ€ "„ЉEÕЄ
MØÑD„¦n'^¤n'#3ŽÔRÐ7åÌj„-r¦
ÐÿeX=ùáÙT®>Ëßs²6Î<;šøP]ry»ÌýQöÚ.Œè¦”€Šc¿w1ÝØñle’9õ'¢Ç£x½=CÇD‡’Ã>Ê|’0O¼®~RF“ À«‹VA]y¿è:Ãómh“Z®~Ä­ðêÝ®¿¾
nîO3ߧ(|Irˆ»hfæð6“K+ëÁ|H51nòÇðôš³êÀå-gu}=EØ纕pfyˆ7‚¯søzšpŒt>EQ‡0+&Æ“Œµ@Š§½-‰OOt*×	ã[õäÝ3üÚ…¥ª ç÷Ï@ó´ucÖ,é 	·iRËÔ±{25êyÞӐTÁh'ÁÉûö©KðLWhçÆÈV˜Öúy%¨yâØ‘R­S“
-ä{”V&Ò_óçg¾á-Í|OÕJ
-øqíâØ0ƒ¯søŠë
-é‚ŠÉƯq1¦5O¼FÆ#jÚE&zV[z:$'Žªè U÷ÚbJƒ3VqM«<
^›Æ³ c˜INq$5X("‰i_øÍ€±(ñS­„û>ö={	]jBÄx»¹#ÂÔÏv¹¦á­j{V›GgðTmÊàÏk±ý…¼bR¡ Ý“Pø¨s 4O]‚góŠÏ‚üó7ܤQ–»X¾h§ÊÁ5GƒkNML;äí# ‘Ó#añgØá«îre:ÐÛo†œã|2tÅë>µŠƒÿ¼‰£‹ûç°âxîÐÀ_ñ½æÉèÔ©¡ÙJ(u
N×çyÛ|ÎÕùÁ•uvæßù à
§J{¼w!)y“×›~Go¾x¨šaa¤\¯>¹ã­ä×Áìr,á$C¦r¨<Oó%Ë/Me¡“ ‡$þUd¼ýW¶/ ®ê§&Ó^§¸g‡>‚£šO`¾O§ZM¼ù_âÀ’açáêDzoXHÑFÿ¨ž‡48Ìwûä#y®Ë5ÒQè½ð!Öôø·6ôé¨Ø+¿ÊšüCô²…\ö›ëbé>§Ê‡¬ú¤~OÅÅæüDGÿ¬'}ج»þà¬lÝ…„D®õå¿ëœXzƒ•v‹“	†«N; D†?ã}.{®i–™¿Œ!|0\6ñçÿ`¢k¯e¸+ñÒâJ5<û'\^=4`]‘Œ"3(ÕM$†
-ç 7)…q>ßbøqÔxQ"ŸRwy›éÆ›]ÚN4ÞÈÉ8a¨%Nœ‚ÑŒÎææxauLºÕ¢k¤}²8~‰‰
-/2qì_F)²ÔА¹ßÕ%XIÿó}=ª¦E£d7/¡µÀ(¡hÚV—̝xDฝ4#Žè]+”õÝ$)7È€êb¦SÂY7`Bê²Ó³8§‚5AðÿZ¹ÇLendstream
+xÚµkoä¶ñûý
+#@Ðu1⛺~º´¹äŠ6	AÐ…n½goëõ¦ÖnœCÐÿÞrHQ%ù.	ºÕcÈçÍ1¿¨á¿°Š©ºÑÖ5ÌÍ/¶‡gõÅ
|ûü'¥SÚXx(|­´¨™3F\Tù$Ÿ^=ûä%ÜrέÅÅÕ›—áÌšÆ^\]ÿcóÕ%ßœnw—•´zóíþtnñÍþxß]þóê/Ÿ¼t
kŒ08C}QqǤã~èÕ-@ÂHøFK¹i³ûã	î	 ^ˆÍ#~l„ÿðÚÃu×M€îðGœèD G„èDfº¥ïÛKa‡'S›ŒNQ×Ìhå€`$ôž&>ò·p1?Çd…²^ÖŠZÄð6 }}Y	—çWvGó½¡ùï2úvDìÛKá6ÇsxØ!%ÛãÙ¯ÞŸ2þ$~’õ쳫´Åiã„dÊH]kZ–eD±Æñ™oUÓ0É
ÜäÓ{ñá*ãIfI`È¡jnÇärn˜Ð0j‰Þ*AMñæ •²¢}ÜUVlºãa‡wËôñe¥k·	~Ü>üÑoë±ó¼ö»è…¿Å=iiXÚL|ûˆÐ×»ÑÈ]I:5Ü×ʐ}Hª0–ÐÑ‚vÙ{ÄÖfï:ê -I‚·¨wG„»¨¤rŒ+­‘ûd æä*éÏ—CD´;ìHJáþÀý[OˆW„ƒWæ.D8>„ûÈ%¾y#¨E÷åi:vYÎ7ß"Æ]˜aÀ½\´¤¶LÖ„ {*ƒhᧇ‚ù&²_å&B66™ÆÜŠõ:GZÉU0ýJžƒœiC†8
+Ÿwã%('™¨u3ZÂH;Ô2áÊY†ßtÃ>Œ52*‘e×Zò¶%ø*0¯›	ªÄ6%dbÞ—Øf„}ÉAò~¯@ÍdcÍh#®%¨eº…?)j;¤»ÛmÇŽG	•$Iº@ÿzAÙµ\o^ üq¼èY“ä¿î{{ïCüÛ\w¼Êr…׸¡Ê^ÓdïQº±³8â7Á¿´áq¬~3Þ:Y¾û‚ãÚ1§'}ùijŒ Zh¬‹~ø‡Z×H$yÕ‚eyªë8K1N˜Ì-ãM#8 t³£m¼~ŸÏ«…å/X[t¬’å—PôbR1焉ËæÁ×€e>°P=¦§Xþ·ô.z€–ž;¸ˆ—×Ä£óÀyñ
º<§/áök¸¾§Yÿêçßáú®¿ÂõY>ä¸GÂÇL‹á‚ÑšYnõrL‘C-Ä	l5¦XDÛǼe»•£ýþÒÉàÜ!Vض¨¦µíz»¥ Lüu|Ӑ&†ÆER˜wˆG²\JHžQùpzŸBOÐÀñâ‹äxq%3þݯ­7//
+v@Ç
+ô1'›ìTmª`£´`Vj5´QÞ|`hlmñ‡li oª9#ÖÞhoÅ|Ö@Q¸Ÿ©£ýŒg’ØíÀÄÆ	n΄‚âm/ê<å`Òa(‡/ÎÄÙª½'-«mÙ
Ó¢ŸùÕo’2~Å›}ôhwEï'½½ÞGD‘#RÔ!˜ˆ)­òC1x±¥!yi·»ðTOÅMÁP²¡,/ 8ô¿÷æÁCo§	LEyÀš>Þ¼íÔ@(Â7oÅËâ2,ˆ|Ï&ùÙ)cøO‘ñw^ÏæìY-Yù[±gÔ’=‹`ëöl	mfÏÆxËö,G‹5¤G§ÄF̃¤³þ[ùÖa˜oÍHp[ʱý'
+Y¤µIÆ`|´ñõ\Úñ*·YÚƒžêç,	ºV2‚²æšF¹ð:“tþ'ê݈82Î$§÷ýšýíc 	,º
cHº»`Øxwé¤Êo5D3Œ×àd…>Eëº]‡Ï*úé#}ö9Ðú@â{D#‰sy«ëy|VHp¯Z»Î{d?Sž›âh|nÿC\Àm)À’ü‰Žèkr>_QôðoÚ‡-íÉG…½ÀܵáÈnLËn?ʐ`’¿˜È¬^£f ç#F÷m°lâíVÏ;/4¨ûºI;nxqÙ®†¸Ò6£U¿ !z Ðê9a%ˆ³Îb[ŽÔiã‚«h‰B†Ã×6PIU‡ý¤dê~1	ú5y9dé×ÎЉ_‰#bQ¬#vµºmiÌÈO·†Ô²‘v诲‚–g:…ÒÑ8ç"¹Ôä¦ì¶
Fýæ×Vß|6±ì½ P].ØŸ¾·`ãA°¯
_¶ñ9Ô‚O`«6~moã'x‹6~€ö;ŒÚòH0³ªiæÕÄ·q=qH~^§IáÑú9½	Hìy„9ì
g£øæÕ›0´´ Õm碽F\Q·ÍƒŠðé¿„e×Mrs˜­¥RË9fŸãPã±Ì›ñFiÅt£ì…OÃuݬ•G"|•˜nÙdÚè–¿ƒëÕç2ÖåQ^dŒå%B­ wKHÈgåAÈ&‹Ø•%Àe@îòDæ$øeú¦Ó"}_zCô˜«Y#[æN‚ZÁ>™±ƒ½Ú'J1>B¶ø"ˆë]ˆåÉ@&ƁmŸñ9B¿‡t¬É^S\hIO1¢v¾VªLÍX´§n\‚_fÝtÚ~ã~ŒâUQ½ºn¬-¯:Ÿeu1²kƒí0½ŽñFÛ²6D¨*›jƒ±@´Sýd>GKñæP
m "ž·~…„É´Ñ<"nªàǦúàV5r™	j™!«
Ê}NÄ¡Ý÷§WwyÚ1’ìÁA"@‹U,‰væTêÎ/0žV›—ûû–¦³ÚW Ž§ÝÚYâwQŠï12ìÏüCÌ0DÓ,f rNY—%±b+oê!~ÝÈ'$NÕÚW d]§`n=ç˜bDžZ-mw]×>Ä—}~“%[3#ÞÃx¦•ˆ‘.QL~	z܁wáÙ¯3ì?q>»Ýùxs{
+dN-Ã4AÉ…`ã©ß>ê$»»8` juÃÀŸ90* —¼ÕŠªEø*0UµÉ´+Ž¸&!T‘1)õÔ
+r°y¨!òA†dUÚ<¹¼1ö•šp¿ÿTÏX8!À°*r5z)гb­«ëAl4j®|–†z/¿å$y at H\Ú`ïãIÞÏu x);n,žwMJˆy´(ž»ÒÜûâU6”
+:˜*
+ñ’nI<fàMvÌ°ËŠÞa=%;a1þ®³3¶ñÄ‚	çbnüÓ(…<ÆCÑ¼´'Å	´´M-z¾ò§dÖ¦ K¾Ùhí¹áÛÇdY‰ÔJ¡øZß…’Yÿ‚Š§
!cÓʨaIç`¾ZäË1²§wGê3ñ¼6É)¦³ð6k(¡X4Ôž¥3QaFe(ooÃdñT1~	?7Çì0öºvR.j¯©žˆ…°RýÄA†ªÏ\Ì6;uig¶X³ÚùäúUû&–7)ý&DMßõå­PŠ¶XAð(F•øÇý°²JG3iWé”0ˆÛó¹ÆUC+ ¼z×ÆH™”
+
z6Åôø,ææ	jÞÁûƒ¬•Ó±Ô+¸ý’NÆ°ô
]/èÄŒ÷'cý§Äs4ý7‚
+ÕüòËúÙa/Û‡9Œe+E˜ùæ¥3ˆ33Åô…?Lû…ñØñ6“äkº p¿}PʲËjðñ›²âS¬ü-¦!$Œ±‡H‚U¸ñçÞìxs‚G¸Lç@Æ>ÚôWïv½Évd¶EùÌÍð†÷æ>ZÝxüá+k0¤¨šyp‰s<úï„ÍI¶C;¤î@K¤üǯðÔàÔwÀ%GþØ·wí¤cºfkÜû–÷$ôf+Ë/À@ÈD©ä)
Öƒ}àv>¼H½-f‚3W»¾÷äLU+zð7?¸…ÇØ <ùÙox¡„	áHmÅ{ØZ“:Ó9Jbxï{¨õc¾@'FígØPrNÖÎ/à¡_é¤:Þå½&Azd^.v»I¾­ÐuàY‡h4³ØµR.ˆðU>`Z.˜L»RçQ²ÂڍÈ·GÐ
+nˆÀ5$2CÜãcåÔ†ÕÁ7,‘?u&c1fx¶;aÖ5
+#™¢ùz6óéjÕ	lµV½DoV«žà-Öªh¯zQæT{Ym(”ÉtÜ«ß²Cçp’šñk¬cûMšŸ»„
㍌¡wGnÒQ¡—ô8Û¨ˆåøN[òcR_0'€¨Ž`L¸Þ!V³Œ–kU¶²ÛÌ­µ°¢B¸	`z„'¬å	؇GiåõÙ4Oh8Óh”Oé	ä/ ób”~*®µv¶š¹þtü· |a"õ~ä?2hùWV¤ž´ª&92Æ¿]òµtHþ&žÓ§ÞëéÞ5Lñ&€6kcu at 0©SPQŽ‰Wê³G›BHÖX!WÜEµä."غ»XB›¹‹1Þ²»ÈÑ&wÁãL䃟„ìcʲHÑç°<&^ˆÃcoRì*í{a¨;É™é«ý8€¥ô+ϽRék¾#UÔŽÕŖöìÌóU
öä’Åûِ±¿LËŸÔúŒ4uºNºB£ë åWQ™—zþBæ%©ÖZ¼{ý¾Þ÷
`Åfº…¡Ó(ŽÍîGh^Rje?r°…ýH`Ëû±Œ4íÇii?(_Ý“:¥6GÏ™[:µ	o•þôdå:ç{Ð-:„Ï6²ò-JÝ=“]͸4vÉØ“#Ø
+“‘öL#-29Gù…ç‹oÍ;…±ÙKðù~<„V2³/Õ¤û§Ê’õ…>Z¬Ïch\¬%j½„3nê"}ÕbKg"¨L{°¹ë±àñuÍ4¯M¬ÛˆìÏ‹ñ<þÿµmGK-²RZd©î÷Ý1<,füú:óƒEGÔŽkð¯‡Òßtä®(?IÉ»µ–ZÞÏ!Å4¶qàÉm9+Œ0U4=yn XÖ¦Ÿ	YÍ']þ˜µ€ðÿJZ)endstream
 endobj
-253 0 obj <<
+284 0 obj <<
 /Type /Page
-/Contents 254 0 R
-/Resources 252 0 R
+/Contents 285 0 R
+/Resources 283 0 R
 /MediaBox [0 0 595.2757 841.8898]
-/Parent 232 0 R
-/Annots [ 256 0 R 257 0 R 258 0 R 259 0 R 260 0 R 262 0 R 264 0 R 265 0 R 266 0 R 268 0 R 269 0 R 270 0 R 271 0 R 272 0 R 276 0 R 277 0 R ]
+/Parent 237 0 R
+/Annots [ 288 0 R 289 0 R 290 0 R 291 0 R 292 0 R 293 0 R 294 0 R 296 0 R 298 0 R ]
 >> endobj
-256 0 obj <<
+288 0 obj <<
 /Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [356.307 708.5793 484.2022 719.4186]
+/Subtype /Link
+/A << /S /GoTo /D (other-common-types-bool) >>
+>> endobj
+289 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [120.2376 696.6242 266.3938 707.4634]
+/Subtype /Link
+/A << /S /GoTo /D (other-common-types-complex) >>
+>> endobj
+290 0 obj <<
+/Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [153.5984 746.6066 182.7589 757.7248]
+/Rect [153.5984 536.9429 182.7589 548.0612]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.swig.org)>>
 >> endobj
-257 0 obj <<
+291 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [241.6158 746.6066 276.9331 757.7248]
+/Rect [241.6158 536.9429 276.9331 548.0612]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
 >> endobj
-258 0 obj <<
+292 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [459.8353 746.6066 496.9558 757.7248]
+/Rect [459.8353 536.9429 496.9558 548.0612]
 /Subtype/Link/A<</Type/Action/S/URI/URI(mailto:Numpy-discussion at scipy.org)>>
 >> endobj
-259 0 obj <<
+293 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [120.2376 734.9304 165.5172 745.7696]
+/Rect [120.2376 525.2668 165.5172 536.106]
 /Subtype/Link/A<</Type/Action/S/URI/URI(mailto:Numpy-discussion at scipy.org)>>
 >> endobj
-260 0 obj <<
+294 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [186.1994 734.9304 229.7456 745.7696]
+/Rect [186.1994 525.2668 229.7456 536.106]
 /Subtype/Link/A<</Type/Action/S/URI/URI(mailto:Swig-user at lists.sourceforge.net)>>
 >> endobj
-262 0 obj <<
+296 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [108.1855 669.6559 137.3459 680.4951]
+/Rect [108.1855 459.0903 137.3459 469.9295]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.swig.org)>>
 >> endobj
-264 0 obj <<
+298 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [423.987 504.7053 459.3042 515.8236]
+/Rect [423.987 292.4954 459.3042 303.6136]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
 >> endobj
-265 0 obj <<
+286 0 obj <<
+/D [284 0 R /XYZ 74.4095 789.6651 null]
+>> endobj
+287 0 obj <<
+/D [284 0 R /XYZ 74.4095 755.3439 null]
+>> endobj
+142 0 obj <<
+/D [284 0 R /XYZ 74.4095 518.2929 null]
+>> endobj
+70 0 obj <<
+/D [284 0 R /XYZ 74.4095 518.2929 null]
+>> endobj
+295 0 obj <<
+/D [284 0 R /XYZ 74.4095 485.9296 null]
+>> endobj
+143 0 obj <<
+/D [284 0 R /XYZ 74.4095 348.505 null]
+>> endobj
+74 0 obj <<
+/D [284 0 R /XYZ 74.4095 348.505 null]
+>> endobj
+297 0 obj <<
+/D [284 0 R /XYZ 74.4095 304.8755 null]
+>> endobj
+283 0 obj <<
+/Font << /F51 119 0 R /F8 95 0 R /F56 126 0 R /F14 193 0 R /F44 92 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+301 0 obj <<
+/Length 1806      
+/Filter /FlateDecode
+>>
+stream
+xڍXÛŽÛ6}ÏWø¥¨ˆñ*2oiÚ¤-Ð6h\ô¡-
+ÅÖ:‹xWåí&ùúÎ…”¨ËZÁBX^ç‡Ã™¡åª€?¹*0E°«Ò᜕«Ýí“bu€¹×OdÄㄱ®„ÎÌ즛ިRø`ÍJ”Õó"Œ^>2·	Ahé Q:)JJD}·}òì•4+ê”[m¯WRJ¡JÒÁ¶û¿Ö²¼úgû󓶽*Ò	eaU.pBÛ¡¦¼>§U@«uÒ¾˜pj-´òaĉS§CÄüž³'üûD,²¿½’ë?áûéõD
Wœ_ØzB-;+¤~H~[íNÀÝ\mŒ3`[ Ï^Y—-ÕV. Ã%ß þ¾{ønáûßgøþ…ïÛ8VÇù*ö[–œëTz¡§¢``—¨‡^?ÜDYï¹ÏM¹FUëšu­°s %ê»+å	Ôâœ]_ã–N¼EÝ"ÿgØ›¸ËKQ¼Ò¨.X×–BŠàa"X«HÓîQvÝ¢Ì
+­ÎÑB¤2ª¥\¯@s:˜Bh[#øÛ¸
Ü]©’@
ÊÝEhsÍè°äZF³)³~É€}⯸F
ùT6ЭŸÂ°ñi½¢õ#Ï3ÒŠR)'/]¸ ~“/˜øàT,ZóW2är±€+L9RcÑ´ÀmµP¡pCî%[±h­DA1“½@&EVmKÈüIëÞgëÏØWpÓp¤;R²º\?åÉ
+î¹Åj>WÙGoEg“ìdÍOõc¦x\Bä2È… ¡.í[Ú—h³ =æÚ9-†Íú?Ü>Xr™F÷W¥éBZËÝdZDÔÇùE1îãîÀ¨ëhdº‹HÇ	§HëvUð.:
+‘ñ5Žlg¬8þpŠGxæ+cm<²ŽWÇøÒ¯žìmEAô)yd1ôÄúS;¡7Ê
+:J….ä³ðG|@5²€Z@CÀj³qcpeÜ®j1à!Î6gnït}¶ý©ã
`?Ú'‰Ì‚"Júãg\É*í3±‘ˆ9üÐm zƒAT^êgbêÇ;©åún½ÁÖñÞ(Q@ç<“µÀøàˆ¾ðlü_Øq¾HÊ43»øh»Þ<ø€
nòîy8¹4Çx0õø’)U@VÎ@Š²a)F'ø&ÇO.ÛDèåEÌ뉣‹Þ¡¸-pëÒÉ£‰]¦ôê«wŸð*LÄ.d(](p}yÿ	t™[V¸Â©Éuw3Nìc]îÉ܈¢Û‘ç«v¢häKÿµëðJOÄ^v#½0Þ–—
Ö¡.“ÌÞ©Y‡!;äÅË.¢ÔEvuÛÒÝ‹V„Êj¤mzo9(uaÌ‚Í|“ã'ZO„.¸˜,JQj£FZŒ“iB]&Ÿ
+Cv*C\T¢NÉjÇ£}qâÖçE5ð)Å´Ï}I# ’²j½f×<jM–>ã€Mñ
%¶ç<Ô}—’ñ†
+%æq“$r:‹9¤™yĨ`„÷VÆÇÆÜFÇ$Þk¨ƒNc¾?TwL\‡JFUQØG½IÁ;ÐõÕÞ”á÷¦J÷êŠY‡‚rOÂÓh¤Ç´&$Ðev	‘­´ðøп¤ºášãU¬Jðù¢¼í°_ñ¿]C§××m•! ‘Éò”ô9àÕw¼øÕ•7¼ê.w¦†gßô5ÇѽG;t€è¾-ÅÏkö`¹ÿ’T( ›cÊïT.ÕQùÀ±¯INü„PðÔ5¥¾#/×\¡ìCY°;¼N¥Ò-ö%7ù{£ª<óã}~Sh{xû½~q—¶ÊÈß(s)t’T©4Sç|›ìw—(1H€‰©ˆG‰,mŸêjö#¼«ê¹b÷}—÷,—Í-UJf¡\@µÏ‚ËÀÜ¥Mͺâ3—ô;§Ö‡áï¤B—mt,ÿyœÊ`Ü&,Ûv)ÈÄÈuµA…ÑñMÿ» ÒFt¼ç¨r¿‹Nsf5cö²»ÜÒVë¡Ð›ô#LoQvÃ:{}òï÷ѵÏ<È×´mâ'·ÓDå„•Þ­¬ƒ†SƒÀ2“°"z“Ã)ÂÀKÛCˆÁ_¶‰
+¿®Ù‘ªôìAå
ž<ÍsLAƒ¡Yį„oÛ&¶1[i^™ ÏM?ö4·/vÔ”2šÌ Aà3-Tsj“¡1¯·~ÁS¹h‘ïé¡	îÚûÆÍqZÚ ŠÒÈÙê5I¨%Mœ‚QŒÎæúÔPZS{-B!íW›#á—”˜ÈE%NõÛh…Ó=E$îÐrTûm¯à–ԟΓòÔjQ(.[¨C-(N(
+ïõP¹¶Iªìf¯QÊèÁCM[†Y
ºÚ M3A	g]/	Ù¥óYxòyô¨Âÿ®zi$endstream
+endobj
+300 0 obj <<
+/Type /Page
+/Contents 301 0 R
+/Resources 299 0 R
+/MediaBox [0 0 595.2757 841.8898]
+/Parent 237 0 R
+/Annots [ 303 0 R 304 0 R 306 0 R 307 0 R 308 0 R 309 0 R 310 0 R 314 0 R 315 0 R ]
+>> endobj
+303 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [132.3327 340.3946 161.4931 352.2551]
+/Rect [132.3327 758.2828 161.4931 770.1433]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.swig.org)>>
 >> endobj
-266 0 obj <<
+304 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [414.726 328.4394 450.0432 340.2999]
+/Rect [414.726 746.3276 450.0432 758.1881]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
 >> endobj
-268 0 obj <<
+306 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [219.6728 227.1576 248.8332 239.0181]
+/Rect [219.6728 643.7726 248.8332 655.6331]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.swig.org)>>
 >> endobj
-269 0 obj <<
+307 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [268.4819 227.1576 303.7992 239.0181]
+/Rect [268.4819 643.7726 303.7992 655.6331]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
 >> endobj
-270 0 obj <<
+308 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [390.3215 227.1576 419.4819 239.0181]
+/Rect [390.3215 643.7726 419.4819 655.6331]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://www.swig.org)>>
 >> endobj
-271 0 obj <<
+309 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [73.4132 215.2024 108.7305 227.0629]
+/Rect [73.4132 631.8175 108.7305 643.6779]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://numpy.scipy.org)>>
 >> endobj
-272 0 obj <<
+310 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [73.4132 203.8052 100.1426 214.6445]
+/Rect [73.4132 620.4203 100.1426 631.2595]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://scipy.org)>>
 >> endobj
-276 0 obj <<
+314 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [324.6699 148.1394 360.0704 158.094]
+/Rect [324.6699 563.8265 360.0704 573.781]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://docutils.sourceforge.net/)>>
 >> endobj
-277 0 obj <<
+315 0 obj <<
 /Type /Annot
 /Border[0 0 0]/H/I/C[0 1 1]
-/Rect [382.9052 148.1394 454.0182 158.094]
+/Rect [382.9052 563.8265 454.0182 573.781]
 /Subtype/Link/A<</Type/Action/S/URI/URI(http://docutils.sourceforge.net/rst.html)>>
 >> endobj
-255 0 obj <<
-/D [253 0 R /XYZ 74.4095 789.6651 null]
+302 0 obj <<
+/D [300 0 R /XYZ 74.4095 789.6651 null]
 >> endobj
-142 0 obj <<
-/D [253 0 R /XYZ 74.4095 728.6989 null]
->> endobj
-70 0 obj <<
-/D [253 0 R /XYZ 74.4095 728.6989 null]
->> endobj
-261 0 obj <<
-/D [253 0 R /XYZ 74.4095 696.4952 null]
->> endobj
-143 0 obj <<
-/D [253 0 R /XYZ 74.4095 560.5553 null]
->> endobj
-74 0 obj <<
-/D [253 0 R /XYZ 74.4095 560.5553 null]
->> endobj
-263 0 obj <<
-/D [253 0 R /XYZ 74.4095 517.0854 null]
->> endobj
 144 0 obj <<
-/D [253 0 R /XYZ 74.4095 283.2866 null]
+/D [300 0 R /XYZ 74.4095 700.0612 null]
 >> endobj
 78 0 obj <<
-/D [253 0 R /XYZ 74.4095 283.2866 null]
+/D [300 0 R /XYZ 74.4095 700.0612 null]
 >> endobj
-267 0 obj <<
-/D [253 0 R /XYZ 74.4095 239.8167 null]
+305 0 obj <<
+/D [300 0 R /XYZ 74.4095 656.4317 null]
 >> endobj
-252 0 obj <<
-/Font << /F14 191 0 R /F8 95 0 R /F56 126 0 R /F51 119 0 R /F44 92 0 R /F67 275 0 R >>
+299 0 obj <<
+/Font << /F14 193 0 R /F8 95 0 R /F56 126 0 R /F51 119 0 R /F67 313 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-274 0 obj <<
-/Length1 1212
-/Length2 5717
+312 0 obj <<
+/Length1 1213
+/Length2 5702
 /Length3 532
-/Length 6490      
+/Length 6475      
 /Filter /FlateDecode
 >>
 stream
-xÚí”g\S[—ÆA)JG!„* Bè½I—‚’ @½HoÒ¤WAºô^•¦R¤Ré*]DÚÄûÎ{uî|œù4¿9ùrþk­ý¬gïµO¸Ùõ•à[„¥*w
¥€`!arnn,ŠCbЪPB–’•Üí"Â@°¸4DJZLŠœ¨‚qñÆ"íp@^¾_E@%g	ƒ¢w¡8„3^E00$ç-TB¡€†¿V¸
n¬.DáHh‹°G¢ÉA¿üh¢í0@‰…áî.ÿNy °nxS@^¼I> Þ"ƒFyá;r.߁wò¿aêŸâjî(”.Ôù—<þŒþ[êŒDyÿgãìâŽC`w1pýÏÒ{ˆY»‹€#ݝÿ™ÕÄAQH˜Ú… 
-ÿ+„tSCz!àúHÌhE¹!þŠ#ÐðšÀÛ_@zJú†¦·ÿšæ_)}(3övù[ôWí_þÍø³Á"½€÷……„…ÁøBüïßoVÿhu
ÃÀ‘hüuB±X¨79þ^àIè"Ñp„á…÷Bcpø%@ü‘øí0Xò_¼]è_ñ…ā ü0ðß!I ȁÅüHA4âo‚pž¿ób"@Æû; Á¬À7vCxüÑW߆Aa~GÄ%€ •ß„Ï«þM` Hýo’ÄËý&Q Èø7á;™üMø+‚þ&¼¦íoÂï
-ö7…ñ›‚ÿøŽˆ?ð×ÿ@|äˆFýxeçßÆ+£ÿ@¼2æÄÛÇþ¿Nêď÷â÷ãþñ
- ¯?¯ìýþ÷ª¬Œñò„HEðãCābÂþÿ¥æŽÅ"и¿¾}ü5ÿ7Û!ñá…€‘OOb`2¡Žiá¥w
-Fʈù	•í›të^ŒuP„L=&D
h»òÏךý,Ϥ£\%^eó<½éÝîg0¬¶䚐>q¾êa³šéÓrÓl/ó®÷ŠÇQÈU[ãøÁ1B½÷óƒ¥Éæ…}9;ý[ùú¼ªÆkWfÙ	^Þ÷¨™*.a¦–‰2‰«å°R§»–FŠFÌyR''^ž{àAÚ|{fÓîNû³€4/éÜòˆ!žÖÎ1\â§7\SøRRAMUsÑûºJ1ho„®$5ÐyB^•ãÃ|Çzt‡ñíÈ»Û-ífìgÜâVóEŸ­!·­
-µ¦ž	ï$`ž7z¿3k==£oa¶1aøÀ÷
ØËM|¦K*&›#~ŸþQ»ó˜áGtÌu6FAnƒaûaŠ›ìó"D—1UÇ5´íY§ÌáÇs‹ïÜ;®X¿f—*íQö
'\&'2Éuf•¡Ìjb„˜[,nÚ$‡Kø¤’Pìòç7pç+³Nh‰t›”8ÌÁh2U\~ˆ~‰Ìê.æTd8Õ*%_wÛ¤Ÿ§“(}w-ö±Sþõ,Þ¦p×
 Ä’ÉÅ t“Ü¥GêMPªÇ%þº›–Ùf™dÚd‘@ƒçj/]¯%­ÏÑøêúª‡&µ Š„13
-E$Ëj4Oj™	*ø3²ÙU­–²O5–ÕI"_C勾˜ª;™Š2wdÎgîíxo¾•èa$µr\*;ÌâÞ±K<2.i˜9LþäøŒñ“†JB’TÃZß}¢Gûmš
-2‘Z,ÝÖOâ[h—ÀÏsäïIÜr¹Y at hˆ²ëú¦ÐOî²Ñ$Q°¦½ôºþúþͳ¬4é7!C2RLÏéw7Ä’ù¿Œè:mK$؝a9¯c…`ºÞíÝ-1¨ŽÄ>èž‹B4õê‹o8ôêùwµ.M!C¢û-šåV¡•Q-E)×ÃسS“óš÷ò¦B¼È´ÀÒÝh¡™É+0'ŠpSéñíA=¨ã4º%@OœÑt‚3 ¡M÷Ðþ?åå™Þ±KÛº$­3Ðáx
ê
KrRC¨¼¼#Ÿt^¸àœ%W?÷mqor¨bŠˆSÍfˆ§ÉµÂ˜ÁÑ=¶!¨°3.rƒÉ~Eª(ÿ¶û-zѵI1Ó†uߺg
Ī‰÷Ï™ï%r"F½Ò“ÛyÇg°ü0ÕÊUÈöihW7¸ÇÒ¿ÌŸ·öE„¼Þ.Ž8oIá©xpiáXÀÌx¸yr`É´2Ï+“¾R)UDû]Iì'çùŠÞýþ’xÅŽ½<]˜·úâ«·¶:Üe
-Ûú"˜,ö¤®Ò/´˜ïè½Sp’»ñó¤»ld—O畧Ψ}:µ{‚²æ-‚õc
ÎÅÉÑj·7Ñ,­ýÚŠ®•†+4žŸ‚_.Ýš!ùZue­ƒv”Yì—ø#Dü­—±á3ÕÊàëö1'¤ò#èwAûDU´çÎ+5»ÂKê,iGí
-µ«îYlÉ0›¥!Z+_ˆ‘
-³ªÍª´-EaŽÂ¶?dÌéÚ·’ŸižçƒÇC:ôô{Çñ¨mC¢ìË·Ö0Vd·œœH·//6,ÒÏ-pEg«áŠå]É6 Þ&N
ø0e<rËø™³²g¿Sb	Ú‘5ûK'Nd«æYárh!¼VÃh踵=:ÙeÁ~8”MgãPŸ“È?ej‰d7Ÿ ìõPN˜¸<}ò¥È¥æCxGmqÈRÄ0gë"è5bÑ}ò•^ܴɏä¾(JÄŽ3:0Ϥ	35¶&‰³•¢‚ÈÄî¥ÔŒ(@¿ 8ƒ¸¬žS¿XS0>§4p>	=å‹}µX‘2Ö¿vÉ.	"ÓLÚ#Ø!ìZˆÕ×{ÌÃd?žùp•?ŸUÿ‡«“¼H“7íìž}ÒpÌk¯.y²H6[á|2ëêÎnCC.Š~£IW`”i࡬öJŒ"ùi7çÝV¬MuÅÞ„éOK€ù
“¦x~Lëɪ£mmÍ–£»xŒybÒ–€ëh¨e£§ûZx€&ͱoŒ^§ct:ŠB´öU	õd=›“F+‘p‚{µú+ç"ïf­7Æ·<O¾¼†¢,9»òÀ¿eùÓZ!ﯠB©‹¶GK3«mF
-Þ‹úDNŽ?å¡ü²múáióç¼Oh±ÆÙWÍv±!Ô ž hÇ$#Ó
-•è³*‹Àª“(ÜR$éõ5:þÏÑH'fž)Áw€ç¡ôcéMµªSHã
fCˆ_µa“!~Ê㛽~‘Ǐœ0Ù
'õސ¸ÂœøŽ|§JGÊ3QT¹X}¿™þÐï˜m¦J[oøÛ6½i!zœEÛH·Gfóâ…SŠ	4ˆ|"Qs%qŽoýþªšUyð\ïOã"á\ǪŠ²ÑòÐR2†"ç@nÍÒGd†±(p*5¹oµ£LgM7}†Þ¤]Ê!Ú ½+ÄÝ$Y—1sU,ÛÞü$ª”•©L(ÃL…ûéŦ¼VK|ÉÃ}Ãn»ùƒš•ˆI©btuº3âQè‹ÞGÝa½$$¿ùI±#Ž3á,KÊ×Q7­*z Š¶þŽ²ßò8¥,§¸ü†×XE|¹¸Wò|‚ÍBÊפ;'¾æ¦qï4±RÇ‘È`<ÞÐý8x´QXçi„ËZÙûΝXqõv¿%ßÅŒÃä½”ãt:óæ\–™@`—‹-î‹ÿÁ±}G€òÓò™ù¡`ØV]ŠQóœvß³û£¦³Ïe´ªm…Äò¶>>È$µØ¢å‰íº]°¢h<âq2gÐÍP"p­•3|’;÷!#·^ØÙÙå¼2Yô499]²íò·j?úàØæbµv?ŠàoM¶ä;TÈGã¶ZíÓ(.¹ŒûÑð„zä€ÍRw\Ãnk§©!•èñkÆbg2Š³§:óI¼}§!¶ÃåêG¾t®)ôÙ *ªíKlOeç@¶Æ1jBs‘ïÄüØ»2}m·±ªPzÄ™2¤JµÂ†j­Bøå**OÒa¾Œp†³¶-%nˆ[˜ß0Þ¹Þ•¼Â¥KªÈoqm(Èû,ñôÙYƒçöåµIu·!SpئãZ¦~÷Z>µ^=´¦¥_¡;E	'¨u r«È¼l+ßÎ3¬+MAx~hú>LÏhJ»D}jªðî²Wï'µß’ùÞVSy‡]Žÿ]g=‚Ѽ޵[g†›<éE³É„jafi·Å†µ5¬;@­e¯r²©•Ïy+æÜF³xI¡ëÉ5%Ž¥db.ÖA‰É2K;¤Ž¯zN›±¿Ým5¤ìnc©Újݲ½c“Z/%t燾PÝ÷l]Y:†_­<[ÐÆ’ÈŸ³M	k„EÖ,lXi—ÔšYæhNdF$3‡!ÂMª©¤|+Üò¼¡OKm
-0Á€¨|Žì× Ë“~©»‚Ùtã§É¯}dŸq‚bÓUw~PÛ¾U®éÿ`ð.Pù› „rû“чþÌMA	ÉŸ×ZxµWº¹ûóz)è|œ´âÉE3÷¥8¶NõWW½¯¶Ç¥¾ª±yÿøP©J}{Ëeþ¶ò´Q¯I¯¦uäÁÈO#œRÛÙ§Ÿå¥€µéýãYÀ›bd‚{Ò±÷$é Ó˦Ǫ•³ŸC=á…fŠ%kí)ñžŠì¶èÉ%5GÕ7¯ÿ`ÞªYrz¬6&W箸6õ@‚ͱÎ&à|Ž…V‰ÜÜ‹éFSºúd´o“æ¨â1;´ÐЮhðíáWó>Û¤eï÷üï9ðéùæfY.,[³Ìé€CÕ‡3#²]`_Yºžõùe]õd¥Nóo¸ÐgÐYoËcCNæMô¶—øiÕóªÓçÍvßL·Ðô…6/Š:uH¿GÌöÞ$‘¶Ô–L¥RòÒUº¼
-P¼!K ÑOôƒ”(̾¬>¢bK¸,õ¤Û&6Èü@Õ7ûþT½V‰­ÄÆ}1Ä]¹	]«š=Æú5y•4+Ú°T•ÃqLžñ(+e‘쪤JU)Hf9—âi ¶lD§&S~ípÒ`Úb`ÿÖžSe53ãÂVCä{ê„Dœ¨s‹|7;)!G#(Íû}uÕ§mÎf3izgðìhrŽ/#­Æ—#âù·ÅM£cSâU¢¶q›ÊÙ²eL¦±"K•lŸ«·8›|J«;qtø>¿»Ð,ŸÆáùÀö¬Ô<‡"¬ÿÞÁ8ŒîƒõœË ÖÃRËifɧ¤­cÎÂU!bQl»…–OÒ–¯ˆçš«(6âz´b[Ü šÁ‘d‚m‘:*ú9
-õãß´7×u/K”}àƸòõïyy§ŒõuŸŸ(¿šJ‚‰)³P{-•¡Þ®£g-æB	‹»«cnêÊTú{Ë&¾‹*550¶?ùæ#DÞý­HÄ~¿ðš¨Ö9‚£„Ãi]jÀTnMÐ
SÄ^¸ß
-è>¦7³ù<MjTÁ	ì–­Ÿð΁—o©8ƒqï…ä6kï‹Sé:Ð¥¾TwbgQPÚÌsn€æZŒ¿X ‡—ÒèÊ?·‚ӔΜÚþ(øù|ã$Ýóý(ø.å›>ŠIXš%÷J&…ž§Æ#/@ËÍÀrâ„Îtȶ£Á~ˆË+v‡ÝïáHî>_4ÝUð“µ9ËôQ9éx¹n›+¥Âð+/}Ä5³Ñf¾[¸fžæÏ‚ÙŽuÝžÚF÷•£è²Åsô°­Ke
Ý¢AÝ—fM¯ó%Çk®ø–‰Ið“ÖXeˆµ_EجHѐ»‘¸mÍ|•ãܹzÞ\4Msgè#tbpæìJIKü	‹“{‹«õ•>yãò‰G©É!„,ï£H¾Ž[®¦èk(R/˜oø’¹ž¨ÁÞ¸¨åp;¦¶\í1»¤:‘ɇòIÈА‡·wÞH
-ßÚJ)m,ëÔþúÃüj½Î‚áæÁƒÞ¯£áiôwæ7œ‰#ù)Î)ì]Š^7ª‹WÖ‘|q©7àêÖP©ûºm!;Z/ÙÓ÷Þj ÞºÝIÐï¥)YXOOEÚ 5Ò}Ê{Õçºë›™¾îŸ+ü²Er
¬ðÿÛ÷®Gí€æÑìE* òô¥ÓI@C7èúÓú^«.þ¤ÇÒÂêÅ,qÞ9
-7.Rù²ŸFèzâfjà„¼KwQoLñþ´
-Ž,÷•Å]
-à{9A›¤Ð^€M甏÷*¸'n®fÈèð}ΐ:ßý<z˜4"8qR%P&K˜¥ebµb3\¾v›LÊùJÑßd•‚ûu#¯[âœÎÓ„÷&ÈH7ì_$ª„ìÐ¥¼O °·ªì«ªÇÑQk…W²~ÁŽ9{›yM%ëÉ–«©<7øùC›œSÄd‚ÛºŠzîõMvßc÷[îš©-j2cdž,ôÕ&ûÊBfÁ(s°@&Œ|‘¹&T0ú¹D‚ˆûý•ÕÓssY™»a-絬 Îþká–Ú!…ÎÁ-™“¡=w•Ihï
êX1«Çk9"åµ¹De|ôº/ŠYæ»e¥ú¬LϾt¬ÐíÕG`Ž›¿½¡›!UÅ}Œnó;‘qp?;U‘UèÔ:O©È(Cd¥ûñ×xÀªØ°î)×ÕÓWètöušgñ ‹ƒÓ*¢—“+*eBS+ànË2®‹ó×ÌZžŠ(Üt¥R5ÌÕªraIX„–üÛ}!«¾z‡z9Š¨Ü*·œ%ÖW¬Ž¯Fy¹Y&ž%_V:ËÍXµ&œV8ûÎBéphÃ[˜äO{uùĵªÃþ”¯•ÁõA…kÃãV¶ÞWo%©@F“å‚Kʝ_ËÉî6Þûþ®ê‘gRbk‹ÊBd‰ùÁ3=מšŒ”ŠÔ¹ Úô­Óʘ,"Õ'‰ˆîÐÛP3•ƒ“`~,ÛšWÀ5_ãÀLM¦Ú}ìõyã[îaã;¡êt´¯êi# ýöžl–¸äQjNñùõ…È`Û¬{:“‘óÖ
¦~cò‡eË
ƒ#êç6é‡[ß—BÆMÚÕEΣîØy
^òzDæ.™µ7Jìw;È)(ÆÈu—X« ¨
-hL;x½ þ‡ÊØˬ݌÷*¤£‘”]ÒÔ·}šWKªMÔ•ï}æŸüžÁ mòªæÉP| 
-¥ÔœdXú8øù"VVŒ?ý¶ÅÂ8+Uø8àr4›äIÁ‚|x6a¬« EïgÚ‰áqÕ#WŽÑL{çÕ)œìJŸÓ~$ÁX¦Ñ#Rb(‹‹Vì¯$Š±è±•/™	îbPz0J[1f0Õ‘i0i“w<–E[ÉÏsië-	X6“gg®DÈXÒZt¾}–‘ý¢qŠ·R~Hf ¡ éÛwúôgIðÄÀÄW4D4½×Qæf.ªä§ÏuHŽ¤¿àØÌûÖ棬\n.;ú}‹Í“;bÙÃåGI<|	äPܾã·Ü p°f;Í]Ó-ÒÝýI—OüÄÒS„A¡ Ã2h,3fñüQœS£vÛõ̸òá§Ö‰á¹§uë;½fWoí%ôPýxiçâ–ssØæ•J5s–x,¼ˆ´‡˜|X‘
-Ù˜J0U®êÿf¥¤ñ ¨ÓÆÃìKžA¦ýÝWiž÷#½¨Š¢ùÖµ'JÍ{?9ӐHÿ§Úâ´%,C~~ìÌwñþ¿ÇD™ZY$§IÖ´äÊ?fÚ£D©—"Žèˆâ¼²B”çÐÎÑ£tc9åD®òožwß°ç㛣¡jõU]™¥™â³ù-üÍ7
i“1ŒŸü
ç?ÕJ žÁxhn‰?šHåήŸÿíQ­£Mç+*ôâ‰[‰¾+"“éa05¾4<3Ù¿º5ó=PJÔtT	$›~áRxØÌb§f­–Hè™6rä6Ñ
-‹aCÕÜ"¨'0O½:»}Æ(éPiX[,i’~Ú*]N®!É´öt­srK‹×Èu&IY^•h]9´m^»÷Í‘Çí¸Ê#/6C*ž0%fÖh#ZŠN½û°L„N¼˜?S]ÅW5¥½IƒFöMqýÉž‚uN¶Öö˜/hGÛÅ
- at YxTE:tZ•n]x§Pðx¦ƒ¸2
- Uh΄ԫ‡~¹&TÛ—ÎÕäŸÊ}ÆÃá|éC°# ¦¨¡·Ë«Nú³v²0:“晊$®tîqåt­ñ“ñXå»Ùå—ʾŸOï2@ÐeB´BÐáyØØd)L(wæm‚2àÒ’T¤»T3Ó½ö4š¸ö²!o£×¦7ÝQíor» ½@m@þ‡^é‘ÂT¢ïVîuܘ¹PÍ\;‰|–ÆÍ‚bÁ7þH‘ø€‡ò í$xç¡&eaÔꝪ­qY\\z9SÛ› €]œ¿Ö>|	§2éw9öõ÷X¥p¥d¶.Èدäãny}öâ)xh ;¸É¸ï×ùœÂ9°3F
-î¹ûÑ´‹À\ññ™Þ
-÷F¿Q!sñû¹…êèƒ8ûÅ×MÇW‚˜4H¨¯x˜¨$šU’î‚·<ô÷5¯].­j‰5p­mîœ¬IÁ(pŸ	ÿòÿø?! C! XÆŠu"ÿæ%õòendstream
+xÚí—eXTm·ÇAB¥$麻¤‰™†`(i$¤CB‘IéîFiiAº•<ãóž÷Ñóœç|:×™ýe~k­ý_ÿû^÷Þ×µYµõ¸åÀˆ2îÆ
äŠ4uÅ @>|$ÄÚ
Š€+Z»AÄ@11 @ÎÝÀÏ 
+‹ˆ‰‰á³ Î^H¨½€MýW‘@Î	‚„‚¬á Mk7{ˆZd
è!@Pˆ›@èþºÃ q… Q0> CAn ˆŽÏûˏÜùWìîüï
+‚tE›°¡M²ÐÁ8Ì †Øâój!н h'ÿ¦þ)®ìƒiY;ý’GïÑËZ;Aa^ÿ™G89»»A M‚„ÿ³Ôò/kš0ÔÝéŸY57k$·ƒA |ÿ
+A]•¡ž°6Ô
d°µ†¹BþŠCààš@oÛ_xUõÕ558ÿšæ_)mk(ÜMßËùoÑ_µ1ð7£÷	õ˜ññðñÑ…èëßÿ,þÑJ	B€¡pôqX#‘Ö^øès&!€ …ƒ!ž ˆ'Ú//ᆾ€Þ_€-‰ÿk˜‚B ^{/g{üWü_!a ¯3zHðï(€×‚DüˆxpÈß,Äàuóø¢Ù	ù£‚Àk‹pGþ ;»BP4Bw!`ˆßa ¯ÂoBçÿ&t•¿IT À«÷›¼ú¿	ÝÉàoBŸA^ëß„Ö´ùMèeþ& zUà?ÝòþZшîýÑ°?­ìôheøˆVFühûÈ?ð×Nýèù¸ýèõ¸ÿFô[×óD+{ý…ÿý„ÊË#<}¸Ä Üüèùù„"B|¾ÿ¥äŽDBàn=üèsþo¶…¢Ÿ
+ÄŸžD€$‚RjB‹ü”rF‹q80åí>Æj½oo"šŠÃ„å÷k¸p,TŸ—¤‘®ã¬3x\Ò¸F4>ÓRÞp‰M¸^GY­§y×Ѧiz­93m5Ô|>ÞÂ|òia (Ñ$·+s¿{ë­6›¢þ·ÛsŒmf¨méÁÂ"ÆÊi0ƒ°ªGŒºÄ©.Eá‚aóĉñØó#A~axµœ³ˆFwÒ󼬄kó3ŠP#ƒ€î2¹î7™íÂÜ0b¢Ê›ÎÞrÙt€°Ž3ƒ§Û¯ôš,´<Ó›ZÉrlŸrX)\µÇU×hÌxÅ"l±¿j)ÀiiŸ«>•Ç·Ÿƒ(­ñ1®¿_£»'¯£¶2 ø¾èdÁ¹ÒÂ’Ì6#oÅjt×ÝgŠˆºÏ@ÉÍ¢3Dk7D@ø0Á…(ÿYIgO7Åeþ9ÿuñ“½½{ÓmË^*`‘Ü!a×P,6þƒ7Nt„é)LL¿[%üñNÆ%8àx[Í2ô¦@î‡nB¿yÈ Ð~D’¦àüƒŸk`;<½½àá€,Å¥zþ†ëwò2Q®¢‘{ѐý’«4pƒŒ¦+=m妘c¹ûñ;Äú’Q·8ÞÓ˜g§mÞѸÐ)Uis¹—°1Oâ£å£œPGŸÏ‡˜•Éÿ"Z\©vQEñŽãU£¢Å
+¥?ãTMñ{Qho µt~õ¶¡Š£¡ ýÀ¾Äõ¬Ñ¾×÷a	'Q¯™ÎeM&\/GE"õ«gÏâ—ò(—TbĪ¿u™aE5¨ÉH„«Ó¶[¾Ž©#X¾*Íä’6au¦ÉÁÔ…ÙvXû$‘O0$Ð¥´yÞï5£¹JO@#0(!FEQJ~0°)”ȱýCËqO$Öö
+	Èìæiy5¶×E¡`Mñ]Ö‡Î2įa°mŸPoOé©r‹.Öƒ£:µ‹à²W‚ê²b.'ÑW?¦&ý³j³¦‚´¦™"ÉÔ‘Ìfå˜`…¹*tøtÀž¾¨ÇÊMŸ¸Ì'i¦ùÑs}4‚ûžKKS
ƒ‘Ë{_ZD õ³ÖC1ªÄ›æøx¾ºÖÒÒìâY¡ÜóæÌÝ,œÂ^øÖ²IüŽ•gˆÁG]	ô)Ü£«r›_†oRÙ­‰å¿å”bd%ü6I!dX½áó>¯G1ÞìšÚ(þ!tà)æ‹ž'R[££#l/uVü“-\xl²ƒc™Ûæ¾Å¾lU}¦aÒOÜp²–e²…‹rÇýf?‡š$v?/œ–ÔcÐU$¦hiÔE.9-ì¿ë<ê.Œ‘m:œy4Ñ‚Öž‘‰©ØÚjr—Èmè
+£2=»KþµÎdÿɈŒ£ÔƒÄëöâÑöÇ=ÇìR‰ÝcåÕX16~rm>\œ«pí‹ ­ï֐u)Ó]#ñX
+l[;BÔ‚ÞªÏhÉTSJêl	Ó™o±„ñûZ® Cg+Žå÷í¢.ð¤Gá#GXå¤×Nk•ö7|Ë*´)g2Uëîé‰ «ÍåAR=jE«uq‚ÜL™=_qÇ{»…ç)×qƒÉÉÆLÀöt±2°Y¿!,î°::B ˜Ãm7›ýÕ¦)ϯMÝüLó¯ÖC1dKZ­x;?>TÆ@·ôóœä=ºãát»´Ínü[•yº+Á¹àRU½ÁŸõ‰Î_톂ožh?ÄòMšZÆ=x‹ñèé/ŇS’:y	“eVöÆTR^<4ç×Íܺyðâ¥Õz½C.lÂû
+ÎÆw“üLiO=›zÊb¨o‰ûÒFŒH G"ú0ìò«áÊA™M´”_íº+\}ꉰ%†-×´!¶Ê…z4¼g>„›ùí=ÁÎÜ°nö8O/D[å.ê{ãù„ógÔ|áÆû2@ì7•÷ÒumÙwW%®ë“ Iù‹¾Œ’³DÆzóïZP¯Ì³÷:ÈÆ:‚z*àP‘oOóKìñ—CÂ
+õŒkÞ‘§JËR¦œ]í‰û¼J3‰KíhŒž2¦Ø6÷Ÿ?î°‹`.ÅmT¦KÐ=vÿê8Æ–Ak2ÆxÔ¼¤”’"Ú#Àp¨ ž¨Z¶ÄEi­^ȹTi´ídDG¹X¿9än´ töÿÑ`÷üDÖ›J«:ÅD¥TLQEÙ¾”.Bÿð|Ò‰Îu‡È1å­J¨ø‘Ø@/îÀµÐÛ	ÿäBPÒJÊ‹¹=¬óØýX¸nÞ®H¦üàø£Î°§÷|¯3¡¢pÓÁ“Õ/û©yìíþÄ°•î›ÉDÇÙD&¡Iûµ“æBEº“?àFÆ}ì"i×FÄüeïÛBJ$mU3ÕþùÞ‡'ð¡
6)âþs6…ýÉ5-=G™-Ýç‡À® FþÀ„"{|¼7³iiÆg7s$½ïd
+€8!tMŸá €¦?ÃI§È˜DœR
ÚÓû,x9”ï›m®pÛ%jÛhñ¨#}ó¤qÎ&¸¾Z:<¹BTòŽ¿¥]Ý’KI‰L(Ÿ÷qp
+Ã+ìe¾ùž÷wµn÷Ÿdæ<–îUç)SPhY£½'³¿U(V²˸¯3õ5z®uvÛÉÇú‹¡é­«)dB!÷zàóø§wíZtºå–³Å(;¨Ùïj*)muçU9D'®©«eO'bXš1¶ê¢ŸÕ«ZüÐ/–WÃnûq—Ú@¹3‰ú1ÆÞ2MÞxÿŠ¿ìÆCЉT²¹xt˳ô¾¹ŽS$B6 	ÞN}’,§5ÄðLÛ*-ËÉÌå•[{%²&™üEœ?g,¿T®ätä
+]ös­U%¼‘_!„*6O…š«ÈÓ*{ž&)Ë-=­gú¡nªÕvö]vOdº°¸S¦Ú@aB“„Ê#JV«Æölâ× ãÍqÙýá É“S|IÒÆähŒm¥ØvïÃºHÿëI—Ý:vìåkÑtS±‡LͳÔoøÕ‡éšPÏAºGÛÈa©Ÿ¡>ÛÖ4‹8‡Eæ×pKKæêÇÂ{ù¾t×»FŸ'æc䂶epæê>ŒïÐ~QÓ}9²EÎÙ˜'w£©ÿnâ'ÁâØ\~WÒqy£è«¾ œžj[sb;ävè@ ¸àÂïóÕã2T*3DcL9y10Í]‘Að«2ˆ'¯ñÈ©xåbü¼³³ëVZ4ΔWTÐ[Á¾æA“mŽní:ó/Ù°¸kL÷ü^òõ-c¥üøÚî÷!y‘a%heã{¾+´e
+T±=½­› ¨0yÇ"dóÚdêÅø©Î,†¼Û˜hìÝØŽ'¢tŽhþèØï(OZ ö¢_4ÅrQ2©’¶œ OBðFÂ	3}#«	‘Êó€„÷—¾Ü™¾ÓÑÞzôòÊ«é´—“d¸Žö4àv”Ã…)؉p(N¹Ó¢¼_L¡{¡1¨Õܧ)ß ]kó¹¼z”•Ic%ëØ!¥•6ÌZ>µO­?	md«â‘ú:Ã-@²P¡Uä¾<EXPÌ
ŒØä\~4À=û40³ðv‰vÉLÑuZ{³M²äoøX֌瓷»‰LÅ@Œá:kø›é;-\68zf‘‰~ƒ’’ü¡L™&ñåÜ£ ö{ÎA*7œ´ýSÚÃH—q­f¾¥,\p‡ö‹gpʬ‰"ÕG8Pµãeªñë
+Šù¯'çæ-ýïc–©ìÄ×n¸4â~Þj?×zqfí¶úšŠîèѪ(Š¬Ã
+óf7$¿ëCä;f‹ÌÆŠÓ4uÊðã·CG"‹ãê5‚?'Ç×úæf6ÖŒ¬¨îtŒµ-–A;W)ýƒ)g?	†8ÑO}›²è°º>3îð
+<¾[Ü
+!z?ÊM@…­íóœÝÙ;JG„ºšU΂yðGa¬6„ ¶R5ÎÁË]ÃGBï<DïàÉuﶠ‚ä‰m¿Þz,Ù45³Dl@¯,ab®ÕWÁÆ‘ AK\ûd­ÙnTNø@Ú¹§µFQXŠ“Z7ª÷íM3ñ[—†Šo£t¹ùC?Eª_3N‹¹=|¢†ë†ºZèœqªx¬G-h©=„ם¿#—§>°û5§Óu*Änß®²†•P×MP»”ãUNT~kXé'cÿyˆ_IÃ;ïôlÔdôúxcÚÆf‡ó»‰Ù
fÒ.ÌÅõyþp€™ÍnóäÝJ.ðl®I
§¸ï­JuêeŠL‰Âš…óiÜ2&93õûàÅ
Š¾ñÊ„‹:‘àjb­>áäÖ=Æ/“°®’Óƒ6‹qAš‡QQAÀi“T—üg¶)7,$.ŠÁ£¢£»¸WJÄåó­AÕv*6O1—ê3?…F;Ï—ó§^ey3Ÿ`V”M±fñ•]qgÅri‹‘\ª”åÛ/sEØ@{åÓŒ'“`BïÐXÂÞiɇW¤Q%ªKW¾{E·ËMZÎX9/!
< ?½1dÛ@ѧ+òŸ72÷t®Mx^ë1;ù.Dó/»…-†7ûGöÇEL8$(öò3œV§¢d²kyÉ¢	4
<ƒö¢èVŸtù(a°u,Í-˜ôÛ—îÕcF€dÖèEKÛm3dÄu“O_.²(6áH
TyÕE½Œ–¦ï¡j›™½pø¼÷"wƒ`+?áXsÎÈRÑêév>maÊþ‡ÍKƒôï–"0*‹³¿¥ÇYšL<gS=¢;=LÏÇãïq °ðå&/ß÷]Ü3ŽŽ[ÅiUZ1R˜ó¹l|úrE&àõ\zYëé;‚Žö·tîÒÃÔÕ‡ô‡m£ñ?XÕ%=çj¨[î„š52PL&¦½+-×øŸ‡ô;>èâD¾çf…Ñ›àÏ>§íXöúõ>q |¶ûªçàP‘Pçå’`øaU,ëæi~X1I>Ú]¾ZÀ|ó"ä•¢Úù9p¬¯
ÿ|pÞ{…™3aW&
+(smÏÝŸF;B«+E9´ëË}‚aVK¬áÆŽ¯”ûÍÌߪœèiΏdfZˆ5wkƾê€7â MÇòïÅb çÙ®x÷®äep-œØʤ•dC°7ÆìeÍÚWjÎ{{d¨a}T³o&êKÇ‘ê”~ϸR\Ó¶3SÜêb~Zz3ð†Ž;žß.j±®Á1np¯lýúaÖðŠZÜj¡
B¿ÛV–:‡A&.îjô˜‹`¯°*&z؁§ˆ“žR]Å¡0Ëñ½>½ÙáNÉÉrK“ŸødüˆtÎᨀëʇýçDFB߉‘/–Lº,NéR“ºid0J¡RK/0!8†«½Œ	ðΟì
+ÚÏ·O_Ö|¬`ê’ô«XWš-–ï:x‹‹Gˆ1õÏÙYÁ²®H›_ŽÄ"º‚TÎb;Niýým‡Uû#áÕfLõTÍñ6²ƒ«N‡“ŸòX‰/•}±”9FZn}û 2U×zŠ[~&.¡÷Š’QÞÓPöHš¶Ý5¸T	1RàË€bk5Eãá)¯º×>—cÀ™Àç6sàá-Z{wV\u®áŒ5Ñ_N²LC@ˆrpàr&¯ÿã“ÉD2ÿõ\Hˆy›pXEÒ«¦¨h«Åµ«ÅĬbXà2ù#ûw™Ñbô-±zûö	wßõ
€
+‚g̸R–¤sa¹ßR-ÉÞÔØk÷æòk´>7â•Œª4ìo)3Vo1ML(=êh›ï¼–—âÊæ¤.5/¯iù¤•ä0ž]Ì*°«Â³‡±q=A‡èG0rIšºÖ·Ãöˆ?S·=E¹èqÖ)øa«»¸*Q.ªéÍ*ʬß'±þÈ2¤C¶Ê¦©È;Ϙ0¡vö|R£1ãdiÁª^<7„ðqÿ@`_Ï×å×ÝS&Òi§õàWÓ_!d¯˜fžÚðmm‰k/WÖíd©°Fã¾ÌÃZbÍú‚Å°À`x ¬ÒÊ®#áÐ`Êk(Þ=ÁKÔ§<l¡1D…v~iš_7õ¸Ü³º~K£2ú!ÜM°ìˆ²B|›â˜[ÝiìhA§S"0×î¡¿è4‰<ÅuSÔ—ñbb¸g†ïˆÃ+	ÔÝò–Ÿ<[ú¹*? *fÔw˹€y³ž›½°wnšpµ.͏g	WÓOSÁeXõÅ““L•aë~áJZ-š¨e(êe—3!;7â·È;ÝÝ$ó·¥ðl3_¼öp_÷„ùZSiTªð´´ð_ôP<ã\~¬[Š›ìk¹73~eï¼¾}õª©’*óðÓÁtcoṕ"ñ{+z^‰JßnËpÞe²—Áý’ÃkåÀ§áwÆjÉžÝ>â`H\„¼<:|äQfLUOh窬F¬÷l«7¥œˆ9fIaðGÀx£ÂuÃI¿ÀµëâQ=œ"í·K,ßÝ1Ùœ$µºkBÒØÑ<ã½wbüáTnFdç^c@ŸDq6A­Ô6ÍklÍÃÉY›ï…ÐÎÀwVáÕg,Ü&Låå%ŠÁ—QÚÏ«ÎnØ%}_×=›(aÅö†¦&ÉO ?b)êÜÕ£,¸ƒ°/<<=lè&õ’Ž+å6l«ª’“¢PÀf¯©£NÃa‚à}&OÈ·ĈçyVˆõ¨"e~IÖ0?–KÄ ìD¡t"WÎÖ¼âòË¡3%Üþ$úç 5·;µ\Dð­ÀÕÍE-‹ïÑ­|£2ão¥ÛQë[ùúöƒæ‰ƒ·eæs¾ÅÛµM
+Œ¬øŸ]à·÷?õ¬ïuYñõÑ
+qѾäyEàŸvוƒða%‡üÔ
JÊŸÊEÃÕàôµ>Ґò6a]à;‰¼¾BØhYñ`È3P3#h›íz®çènpßíyÁZœí‚Äå!«G×A¼D1³ÙçA®Ø?ç=äLDM§Ÿ`V¶T±ÔŽrÖ$ý gÍ%Af·y³#º·#%Tø™ð´6ûT$~öèÙa*Ûa[xLû<~Ç$"üò$õ£ÂÈà9UÌ‚¨ÇÊjU6¤ÞuA©lê®b²…yxøÖ‰ÂÆVn+;"Iô6IÉgNYH]¶AIŸpœ>wEö­Z±n&¯´ϵGor€—ßî/ h=ÏÏk{àÖuDwƒäRwuy¥a7òÜ5ùá9$4NßK±îSåܺÐÂtÞê:ŒŒ˜,t}aj°ÖždKš™¦Ú짹ðÍÇœ a>Ç?i8};mâ§Xé®’(j¼˜Ž›åD©¥Ô¯?”]¤£?“ÍSH-µsk°f‘âdò-ÉI¢Ý“ \>¨áè~ÔO4‘ÞÕI¸c05{רk–cºkËâÊCl~M¡¦ÏÅJßèÕ‰n”¿-h,.Õ•2Þs	­*Ñzñìž—Õ;¿ý>ÙžN,¡áÊC”ùÑÚ=E?¼Êêځ	:	5¾õê˜wÊáªç†ïÁ»Çx÷—.’“:†ÙÉ’½	Œ”?õÂDÙ%{&¼Wœ›/
0^TÕõ^­Ü	R(þXu×7nK˜t#a1å¼Y\zd(YÖ`Q¶÷»9H¢0·'2ÒŸëBð=
+ÈhÆD‡Œ¦Ÿ
+1\Ð5Ê#AЧe0‘wXéÑŸ1ŒËÜÛû”6áØ@d¤j—Â÷?üáÿ¿Àÿ	btC8Y#ñÿz&Âendstream
 endobj
-275 0 obj <<
+313 0 obj <<
 /Type /Font
 /Subtype /Type1
-/Encoding 278 0 R
+/Encoding 316 0 R
 /FirstChar 45
 /LastChar 121
-/Widths 279 0 R
-/BaseFont /OAPZRV+CMR9
-/FontDescriptor 273 0 R
+/Widths 317 0 R
+/BaseFont /HTJMKC+CMR9
+/FontDescriptor 311 0 R
 >> endobj
-273 0 obj <<
+311 0 obj <<
 /Ascent 694
 /CapHeight 683
 /Descent -194
-/FontName /OAPZRV+CMR9
+/FontName /HTJMKC+CMR9
 /ItalicAngle 0
 /StemV 74
 /XHeight 431
 /FontBBox [-39 -250 1036 750]
 /Flags 4
-/CharSet (/hyphen/period/zero/one/two/four/five/seven/colon/C/D/G/S/T/U/a/b/c/d/e/f/i/l/m/n/o/r/s/t/u/x/y)
-/FontFile 274 0 R
+/CharSet (/hyphen/period/zero/one/two/three/four/seven/colon/C/D/G/S/T/U/a/b/c/d/e/f/i/l/m/n/o/r/s/t/u/x/y)
+/FontFile 312 0 R
 >> endobj
-279 0 obj
-[343 285 0 514 514 514 0 514 514 0 514 0 0 285 0 0 0 0 0 0 0 0 742 785 0 0 806 0 0 0 0 0 0 0 0 0 0 0 571 742 771 0 0 0 0 0 0 0 0 0 0 0 514 571 457 571 457 314 0 0 285 0 0 285 856 571 514 0 0 402 405 400 571 0 0 542 542 ]
+317 0 obj
+[343 285 0 514 514 514 514 514 0 0 514 0 0 285 0 0 0 0 0 0 0 0 742 785 0 0 806 0 0 0 0 0 0 0 0 0 0 0 571 742 771 0 0 0 0 0 0 0 0 0 0 0 514 571 457 571 457 314 0 0 285 0 0 285 856 571 514 0 0 402 405 400 571 0 0 542 542 ]
 endobj
-278 0 obj <<
+316 0 obj <<
 /Type /Encoding
-/Differences [ 0 /.notdef 45/hyphen/period 47/.notdef 48/zero/one/two 51/.notdef 52/four/five 54/.notdef 55/seven 56/.notdef 58/colon 59/.notdef 67/C/D 69/.notdef 71/G 72/.notdef 83/S/T/U 86/.notdef 97/a/b/c/d/e/f 103/.notdef 105/i 106/.notdef 108/l/m/n/o 112/.notdef 114/r/s/t/u 118/.notdef 120/x/y 122/.notdef]
+/Differences [ 0 /.notdef 45/hyphen/period 47/.notdef 48/zero/one/two/three/four 53/.notdef 55/seven 56/.notdef 58/colon 59/.notdef 67/C/D 69/.notdef 71/G 72/.notdef 83/S/T/U 86/.notdef 97/a/b/c/d/e/f 103/.notdef 105/i 106/.notdef 108/l/m/n/o 112/.notdef 114/r/s/t/u 118/.notdef 120/x/y 122/.notdef]
 >> endobj
-190 0 obj <<
+192 0 obj <<
 /Length1 750
 /Length2 576
 /Length3 532
@@ -1298,39 +1535,39 @@
 stream
 xÚSUÖuLÉOJuËÏ+Ñ5Ô3´Rpö
Ž44P0Ô3àRUu.JM,ÉÌÏsI,IµR0´´4Tp,MW04U00·22°25çRUpÎ/¨,ÊLÏ(QÐpÖ)2WpÌM-ÊLNÌSðM,ÉHÍš‘œ˜£œŸœ™ZR©§à˜“£ÒQ¬”ZœZT–š¢Çeh¨’™\¢”šž™Ç¥r‘g^Z¾‚9D8¥´ &U–ZTt”‚Бš
 @'¦äçåT*¤¤¦qéûåíJº„ŽB7Ü­4'Ç/1d<8”0äs3s*¡*òsJKR‹|óSR‹òЕ†§B盚’Yš‹.ëY’˜“™ì˜—ž“ª kh¢g`l
-‘È,vˬHM	È,IÎPHKÌ)N‹§æ¥ ;|`‡èGûEø8iCã,˜™WRYª`€P
æ"øÀP*ʬPˆ6Ð300*B+Í2×¼äü”̼t#S3…Ä¢¢ÄJ.`
+‘È,vˬHM	È,IÎPHKÌ)N‹§æ¥ ;|`‡è‡:FøhCã,˜™WRYª`€P
æ"øÀP*ʬPˆ6Ð300*B+Í2×¼äü”̼t#S3…Ä¢¢ÄJ.`
 òLª
2óRR+R+€.Ö×ËË/jQ M­BZ~(ZÉI?	´©% q.L89åWTëY*èZš
644S077­EQ˜\ZT”šWN+Àà€ñÓ2A˜šZ‘šÌuóZ~²uKÖômm+ë\_XŪÏùóÄÚ—7ÙD쨛™Rl:/P1½dÉ«…¶öϾ(á•l=U¸h‹d¯_OÜ—EÂk¶v-X1¡Át¿Þ`ñÊæ®i¼ÿ´Õ_y.›1§õ‘´Õþ¢Ç³:•un~Q®?Á3/å…SÔâ}ßï]ãÒ
 š¤¥$e~sû]F1ñÊ»Ï/ËÚQ?ý¸mò»³·|<ċݺÔ/¦Ùq'}Iüö„+6­ìâEíÀgŽ¯¼xT.‘òGÀ¿gtÅÙ¥vՏG‚—U|íª“®¾~ª€]üRÇëÞ…_kü9¹öË:½{ápËñGúý
îûd}dN<6Îø-uBÛošHºÁ=c¦MÏvHžÎzºq½aûÿìRKë~,KÌž³}Š¬Ë›ªÂå»m¿‡Š÷Öêyo›ù~ÉîÃÜ×v‹
 Û_¹éÜÿs>§ß¶.#ßҭߦíÈè{­/þô­É™kÜ—<nÈeà‘œ[»«×?Ñí[ïÁ§÷º˜ÞâdÚe€‹ãHð1Îcê+öÍ“_èeÍäž7aՍ-<Ì
{fýß_áþZ#MzîáUü.G?=¨=ãûp®Yõ'åǶ‡/¨Tñå}[}âWè:‡)ïÓ»ÚÕÎÖ0Ê3íÿ±:oÝ;K©æBÊû.l½ñcc«yEá2ÿ
-óî-ÆŒž×¦ÈWµýþdöä“Ž¡_Õ~Ò+	”áš”iïsûs‹`ª¨C¸¾îuÞI^>öÉ\mü|¢Ðr¢úÿXöÑñßϾØad­j|ïǝéÖR/ü,2 p0,HÎIM,*ÉÏM,Êæ \Jr’endstream
+óî-ÆŒž×¦ÈWµýþdöä“Ž¡_Õ~Ò+	”áš”iïsûs‹`ª¨C¸¾îuÞI^>öÉ\mü|¢Ðr¢úÿXöÑñßϾØad­j|ïǝéÖR/ü,2 p0,HÎIM,*ÉÏM,Êæ Körendstream
 endobj
-191 0 obj <<
+193 0 obj <<
 /Type /Font
 /Subtype /Type1
-/Encoding 280 0 R
+/Encoding 318 0 R
 /FirstChar 15
 /LastChar 15
-/Widths 281 0 R
-/BaseFont /YSNXLB+CMSY10
-/FontDescriptor 189 0 R
+/Widths 319 0 R
+/BaseFont /UAXOPP+CMSY10
+/FontDescriptor 191 0 R
 >> endobj
-189 0 obj <<
+191 0 obj <<
 /Ascent 750
 /CapHeight 683
 /Descent -194
-/FontName /YSNXLB+CMSY10
+/FontName /UAXOPP+CMSY10
 /ItalicAngle -14.035
 /StemV 85
 /XHeight 431
 /FontBBox [-29 -960 1116 775]
 /Flags 4
 /CharSet (/bullet)
-/FontFile 190 0 R
+/FontFile 192 0 R
 >> endobj
-281 0 obj
+319 0 obj
 [500 ]
 endobj
-280 0 obj <<
+318 0 obj <<
 /Type /Encoding
 /Differences [ 0 /.notdef 15/bullet 16/.notdef]
 >> endobj
@@ -1342,34 +1579,37 @@
 /Filter /FlateDecode
 >>
 stream
-xÚí–WXSÛ¶Ç)ºE)Kª‚iH¨ŠJéÒ7¨!YP¡["E¤wDP•^E¤Ò$ˆ
Hè ntŸým¯çñÞ§óµÖÃüùŸcþ×óaJ56ƒžÃ‘ìAm‘Ej ÚÐ\‰ 0B"-&ƒ
-D<¡€j RUUÐíéú§†RRC*A¤4ÉÍ—Lpp¤ ÇÐLj”s® ™€ÅCÅt¥çÀb\ 3– R|aÀ9ÀôÇ
-Àô É^ A"KìAÿáI—ˆ'Ê…qžnOydº)àØO›ÇºI‰èâà@<nD¢ïÒ½üØú=¹¶§‹‹ÆõGúŸ•ú·yŒ+ÁÅ÷_
-’«›'$†$H&þ.ýüËœ!ˆ#xºþ>«KÁ¸°çˆ.  E*ŠÅ	ÚgL `<ÆÅü‰¸ßÐë÷Ó\ÛÈÂ}Qþ_­ý9iŒ!)æ¾n €øGý“‘ÿ0½Hd‚`ƒ WIÒß¿Gv¿m¦EÄ’p¢ €R0d2ÆB?DtBþH€@ā> èCw‡Iú€^™ë žD†üè+½5p̏ÐOB" ÷"8øžà¿ 
-€þAú‰¿ " 'ÿ‚t±Ç/¨À)¿ ݆çOü÷Rjj’|ü¡H¥“ T…ø‘X	PUR½þ¿”XO2$R~žWzGþf<ÞDô±j	«ì”XqûÉ
­ìÎ|–ã"ɹÁm¯BÊ’Õa3CêzÈ•æ Ø_Ÿá)o¬þs8®8w­ÑßÒÏ×È%p<+ÅŒm;c{™©)óý[×ôðIªø¸[¥üü€äê°×+–Bƒi¤òCáÙˆ}O>õí,ßp¾Ù>BåHÂIN$@ì2kâAË©áèÖMÚR6‰ú¨é mÊ*ÿ.Uøí—.çA®dÕ;™†Ì½É§·ÙÇ}ð£ídª³8Õ*CUg¯¨l’ç(¬Ù«Ï8¹ßˆK97×½žWԩˉ…_9ê(M	Í–Ai~j^æ
³k	ììyÖ¸/‹Íß—ýZïH+mô6ÒîUÚNëafæ©î)„l»ÚfG>oª…Û×aQª°Ù£H‰ìÉj=s¶Uü²ƒ°| Ðƒþ]ÄÆ‚Í‚Ðjy?DŸ-aŽÕ<^þÂâÕôkjú>mÃ$¿w]Êo÷oÞæàƒY|ðWÌÖ;=vЂZ¸˜¡Ëy]uù mêf^µ@HT×EåúԍD(åOÚ…`²_GšžZ÷€ˆÄKæd`Õ\bI®å²a»áÆöÇÐGøÊ-¼(Bː«ï}ÄOÅó}ë:Í›°,'~ææ›:ò‹¡f︞inÔ1¹ƒû˜PÄKiÔ§ýwŠr¦AãV¹21¦+æ"58ÓÒŒ^Ó®Â1÷Ò>>•y4dÀùâTøYÔíj˜´Ù¯é-_j–6Ÿà³¾nO
-H¹×¼}Ÿg(ƒë¶Ö5·gE–3<R†ujz,FíˆÈ ¤¨i‡qÑë됛¸å¬@1Èl-Ì¿ \wWÔdÿ]Aåä÷#áå½}—EŒ òhÎañMɶ»x[tSœª3?›Êre}ÿR}Shö;B
5ŠÉbýÕùÉÆ[ƒ]Ý'Ïá†H¯‹±,Öóªø¢ÜhG}â9‰!4°«d"¸u'äÀ•3ÏøOª¡”„уӅ,ÛKÁœ’#5[i¦åþ¾_°ì!abÁXU§‡Râ¾l˜ä†áª²©Â7TOšzÏKÄ!"s@*oœšâZï;OY¾æ¬[káÉwýøÇ[9µáŸ›•Á±‚’BÐ卾—“×{C!CMÑ\XíxÿàúayYPíªíG\+huŽˆY'lé ¯¼ë†‘ýÙ{R‚úùïå¥Ò6u›Êo'Së–çâòÆ¢"o¨ÛI3¢³Í>	ëKù…†G$p}¿ËÉQèÖ¤z˜é¯Ö†û\°¼Ó®P÷4úƘ溏ÍÂåÕ¥èð*WÑIÇ¥ë”ÇüËO׃$äBÊ5gVÒ?(ø[L|¯­c½cŒ;”þ&A=;¥}6ŠójÓ™0­×ÌLŒì–
@îò:­sÑ{vu¥×ô„up¶CÔ2l®Ü­"M@®*Î'~ßÝ¢O{`“}-÷€Bd…é˜IX*mó@
-”ñ»ŒN°SÓ›&ûônv?«RÍû&籧£6 o…jŽp(ÒÈ`ôrâ—Hð…Žìoø ›å~14ªZ¶ßô_‡â:té*{ß ›ª 7ÓƒDk*ç¥èhEŠ³OÓ6ÁñÁ6t[,³»-°°ÎTŒ^(*äðx­ùÕLN–”Ž/šwt¶ê™™ÑäzÈ»J/Óß7À[-Z3,B¥ŠO¢îÿJK½6´3þ¸$Ï{»DWˆïjúÓõ{Éšmß½NÕÆF½,dü.ÒõDòð]6õšÄ³œÁéT˳céùŠ–2YÇô±ßAÑ*Q®{Í|” ‡çòe-ߨZŽªº*ƨ ùðôᤅ-;«
_]“ÄìvÝF–ÁæÛu“Rõ"ž1†‚ðiIÈç–;úȾ¼¡)ë%(ßÒ8Jdž“mñªŒÌæî¡ÐÊÄ2Þ¢í¨÷§«§ŒÃ<Ã**&¹ý
-=¢"»„r¹ÊÎ6™µ‡DXä°$k‰4»swßã‹ê´	UZ›Æ6ÍJî+ëPÏl†-
¡ÐõÒÔÅÖXWìÿ–~ÕÍ’!$¥¿yk¹·Ä§Õaênêù@5¯zRRqlêtlÿjñp_ÍY¦#&Ž	×%´JºØŒj&,1jôT>/„ÆTj
MòÌxÝ?Ø®2[¬ƒšŽL¶¤Î×ÎuJZv~40öJpˆ
-Ä-ÆÉâe ½¦9«ÙH[ê7Š3Æ·‡ˆPW-åæƒg¤ñ!‰€%K‡Æƒ‡ì×ðý•l®»Ó<ïoҍ‹\ˆÍ»=yNÑü^QeŽ|ã·‘âA­4cvÿT†¦ÉÑʨƒò™l›-úŒ¡~ºóƒ‡ù…€#Pµb½wì
Ëø
d„ó|4/ëèI´`Mÿ•ãÅrøÌ+o]¢®Ét–/Œ­™9Råt}Ÿ}e’"ÕTÜb¿£9Šê«}²åb_¸}5y‹ï¼Ûˆ¸VÝáªÊˆ%wÞH at Fç½úÏñØŒ€éK¸ ÷Õe×ä“7"<ìO:c­sZ?fÌrA*Œ­’ïpù§´ÞÄÈŸ±vó¼_Ú^%\{Öøúñmã 7—£ªÖz|XW›”¼7JÛ¾«§Fï@qHH†”_‹ÿ)£¾m¯Ä†/ŸZÜgE¸>ö~¸pFZ¢[/´ŽCG UÉ"´2eª\g’  –½˜>ZÊ¢ÄÛµ&{ðÛJ
-œ{éóhñIîºúº^ï±hh9Iv¡"VãäpÇ{÷ÚǏ:Q7›q£n#ìXLmcRö
ƒòñ[šêÇÜ_P!Úv™¹ß	ÃÑɘµ8(µ«ZŸ–€`¿eÒ‘&gÕ©·R#[3åç71®k6Ó0°2nþ๡3ñòR¤ßÞ	%«J??è" ô5ǦF¦vƒk!çNzÀåÈmjµîþà…r
ÆøËùE‰åEýðì5Væ½™‰áõû9$•[Óâ9-jÕ†nؘjÙ‚úò!Ùñ"Ü×ÚÒËúñÑÖ_Ýš&¤p¤ÿ¥C)–(Qõ6òVÜ6¹«‚‡3ÈX¥ënÄGÚ5ç°îù,A²Ã‰§PÐËN›k‹­s³Ï;ßy_¨iJ×ÀLû;æ_‹æ?Q$Ý_Ìúñ	²—eb0õ0aEl$Õ
-ãõÂ2Cyêža¬>Ò%lyZiõãCÖWó`I'_ä&ãu•ÐÎ4TIKÀ“sbûøæùàáBêÑi}Ò—'ßNÓŸ4ñäÍxðvw	•;Ç?p”S®iÞž}ȸØäp|sLÀ=©+^Ö-×|?ÙÎõP[“X‹ƒ¢¥ó÷Ä;Ò_íVÔ,öpFô)h¼«ã©pµÕwgj1»ÊŸx4 wÏ&²j¿ã³‰Îß´å@Åàw3‚D»ýZ`«ù,FáU‘mÌckzŽûÏquq³zw?˜rHÅ;…m!žš!÷uz–ªß]
u¼UbhCÛì®1[–‘Ÿ©ƒífª0FæUì JÅR.u_)›sP½4»vª&ŽU+0Ø^O%œî©Ö¦,ð%¹ÉzÁ¤£ñze,¨Øöù Õ›@ñ7%:*Ušj‚†p•ÄRö•ôx™»ikÌ:¨ž$Y£ðïÿRe–•^Ÿ"ÙF™¹WN×kÎ)ã9b®_ó¾ÁWœ¸‡ÖŠn°û¬uÂ91Q~¦><ù$ÃÞzÔÞÖÜX¾à×ô=k£­Ø`O…ìðó˜£uЉöG7:¿ðZž({92|dÂà®]Ûú¨S—ŒÆàE¶Ž§Ý3C9wæzo\’Xˆ)i­þŒVœ\|̾ï¼ø‘ų¹‚ˏwêë3+WõÄÞª½gÒ<2ì¤2c’¸ö
ì3øFîmß^ÿŽ÷vvçÝ<Âî<Ý+÷GPà¥/:sÞËÂ7N•œ‰jÙÚìµNøðuþ‹5INîôqîw·G12xŽÊ¨ì|ÞtU×ð‰³…fÎË·býC–†»ueœ››ñ’µËd‡ÕybØšÂþ¾Ås”¾X¸ÜWòc³Ç>KÁT¢wx+¿§ÍÀP~Òq{Y¯¥ãømø®¬Ž™0Äëç"Ÿ7|½›§ß
4zԟƸ˜7ã!·=ïŽi‘íþ•\BëÖaÃ/ó|aK:ñTå›c,gžJñK@Ð/pwG›T,rßT|-5èÖ¿qeÌåÀ¡)éȁh7#ôŠ±îã#á<GcŸöc%VË_PbY,Â*g ˆÿãóßÿ	°. †L!¹bÈΐÿ
-D¨õendstream
+xÚí–y<”mÛÇ-!cÏRÊrÙ‹f“±–ÊDöì7¡3×0–ÆØ[dÉ‘P¢He_£R’=²e$K¸‘±“wê~îÏÝÛóçûþõ|žëºþ8¿Çù;ówÇùÇ)#ab=‹#9€:$"Š„!Õ´‘… a„DFM1‰xCÕ¤šš" :ÐôO¥¬ŽT†È h’»™àèDŽ¢ý© gÝ@2‹!FŠèFρŸæ$,¤øÁ€³®®€Ùž€è	’½A‚D8–8€Ž"þÓOTþ
+ã¼ÜÿžòÉžtSÀÑŸ6t“8ÑÕÀxܘDß
¤{ùÿ°õ{r/WWcŒÛô?+õoó7‚«ß¿$7w/
+HŒH8Lü]úø—9#Gðrû}V‚q%`Ï]A ŠT‚!”þŠ<u¾ ΄@Á:xŒ«'ø3q¿;¡×笠¾µ®Ö9…µöç¤	†@¤Xø¹ƒ âõOFþÃô"‘	¾€-‚^e$]HÿÙÿ¶™6KˆŽ€"JÀÉ?ýÑ	 ú /Ý1F$QèK ze®xò£¯ôÖÀ1?B?	‰@ pÜ/ˆàà/x€;þ‚( Nøé'þ‚J œüÒÅž¿ 2 §ü‚t^?ñßK©¥Eò
€"•O PEâGbe at MYíÚÿRb½ÈdHùy^éù›ñzAÐÄB¨}$¬FˆsrÅ­'×µ³;óYŽyŠ¤æ†´½
+-KÕ€Íiè!WvX€bK|¡|΄§¼I³Ïá8<jD¸âìÕÆ sxh?_#—À±¬4s¶yìŒÝ%¦¦ûïßò¸eDLRÅÇÝ+æ¤V‡½_±N#U
+ÏFî{ò©ogùºËö*G
+Nj"	b¿Æ0´šŽmݤ'e“¨šÚ¥­òïR…ß~éräJU»}߈¹7õÔ6;â˜/~´‚¼ç"NµÎTÓÝ+*›ä‘€5{÷™¤ös©äæzÔóŠ:w9³ð«ÄHДÑl™´‘æ§e>0û– Îžg+ð²øü}Ù¯õô±ÒFo!í_¥ï´ffžêžBȵ«oÆpôàó¦Z¸=p–¥Š›=JA”螬ÖÓgZÅ/9
++	=èßEl,Ø.­–·ñCØ’æX-µà/,_M¿¦fìÓ1Jñ×¥òvÿæ->˜å‡ • lƒ·°Sc-©…‹™zœwÐU—Ò¦näU„Iw]P©¿·‘¥üI;Bö¯ãH×Wï‘|IÀ\‡¬ZH.É·\2j7ÚØþö_¹…eAhqõ½o€ø«z½o]§ù–åÅOßxSG~1Ôì“Ð3ÍÍ€:*pŠx1ú´òNIÞ,xÜ:W6ÎlÅB¤gVšÙktC8îNúǧ²Ïƒg€LX£	ßCœ*?‹†}
“ûU]‰ò¥f‹iŽ1[èëö”À´;ÍÛwy†2¹ni_uVd5³Á#mT÷¨¦ÇrÔžˆDŠšu˜½¾¹[Î
+ƒÌÖÂ
+ÊõvEM÷G	ª¤¾‰(ïí»$bU at s‹oJµ•Ø'Ú¡›¤QùÙT–Ëëû—ê›Â²ßj¨1Ln›¯.O6Þ
+îê=y5Bz_€Œe±ž+PÃåÆ:|ÏI¥Y‚]%!­;¡.Ÿ~ÆBu¥,Œœ.dÙ^
+áœ8­ÕJ3+ðû‚]`
Áª9œ?”–ðeÃ47¿P•M¾®vÂÌg^2Ë RyÔ•Öz—ØyÊòµfÝ[sO¾$>ÞÊ©øܬŽœ—‚.oô½œ¼ÖjŠåÂê$„ÔÏÛÈ‚êTm?âZAkpDÎ:cKxÜ6ŒÎÜ‘4Èï¢ N°­ÛTyx+•Z·<—¯8Ö}#PÃ^†ÑmþI¸Ø@Ú?,"2‰ë{'G¡{“ÚAâý õ6Üç‚åvõÀº§±×Ç´&Ð}l–®¯.ÆFT¹‰N:-]£<æ_~º,)šT®5³jœñA1À*¨`â{m}¤<ìcäØ¡Œ7IÙií³1œWšN‡{n½ffbd·j r—×i‹>³«+½fÇmB²c–asåîéòU	Ž8ñ»–}:Ë(˜Ükù"+L×\ÒªPÙx›R ‚ßetÞx„šÞ4ݧ£ûY•ZÞ7yÏ=]õkTsb¤c‘f&£·3¿dú€tdù,ˆa1Õrýø¦Çø:wð¡‹WØûØÔ}˜Ø$[ïq^ŒU¢(S0û´ì’œlC·Åîw·Ö™ŠÑE…|ÂPUï5ÿšÉÉ’Òñå ‹ŽÎV}ssš‚cyWùeÆûx«ek¦£¥Ò@˜tñ‰CÔý_i÷®íŒ?.ÉóÙ.Ñâ»’‡þtíNªVÛwñ1/¿‹t=‘:ŦQ“|†3D2ƒjuf,#_ÉJ6ë¨ö;(Z%Êu§™èø\¡¬åUûÏ‘CUWĵž:œ²°eo½á§gšœÝ®×È2Ø|«nrCº^Ä+Îh@>-ùÜr;Ó ¹Â—74e³å[GéÚr²-^‘•=Âܽ#V™\Æ[´óþTõ”I¸WxEÅ$·¡gLt—P.WÙ™&óöÐH›À¶‚T­#Ñc·£ö=¾ ÑH›P£µinӬ忲õÌfÚÑŠ]/í@=lMÅþoWÜ­BÓú›·–{K|[Ç f^Yóª'¥”ƦNõÇ÷¯÷Õœa:bê”4qMRû¡”«í¨Vrà£fO`åóBh\¥öÐ$ÏŒ÷ÝCAíª³Åº¨éèTK)ê|í\§”UçGCï$ǘ Üb‚Â'^Šñkš‹º­Œ•A£8cb{D uÕJ~>øqöH:’X±th>xÈ~u?Ü[Éæ¶;ÍsðîVbøX±Èùø¼[“g•,îUæ(4~)ÔN7a¸'ÀÐ49ZsPá>Û&G‹c˜¿Þüà¡F~!àT½Xÿ{Ã2~©ÉÀ<KãË’ø …¬é¿|쀓XŸEåÍ‹Ôµ`ÙÎò…±5s'Š ¼žß³¯LÒd	-¥-öÛŠ÷GQ}µO¶\
+·O£&oòs×®;\U¹äÁ
Èê¾—Gÿ9Ÿ†0{	4ç¾²lè–zâFC¤§ÃñA¬Mî@ëÇÌY.H…‰uÊᐮ€´Ö…Ó6î^wKÛ«„kϘ\;¶mò ôárRÓ^Oïj“VðAé8tõÔè(
Í”öo	8iÜ·íÜðEàS‹Ç¬×ÁÇ>“NËHvë‡Õqè
+ä¢*Y„6C§ÌŽéNôÕ³3FKY”y»Öä~[ICr/~->¡Ù]W_×ë3«
+-'É-TÄkžîxïQû8òQ'êF3nÔ}„‹©mLɾnX>~ó@Sò¨Ç*DÇþ¾@îwÂ0Dt2n-Jíª6 %!Øošv¤Ë[wê¯ÔÈÆ×LùûOŒë™ÏôήŒ[<8InèL¾´í¿w\ÙºRÕߺ}Íß±­‘­ÝàZȹx)zÛ2 À“Z­·?d¡\“1ñR~Qr¹cQ?<{•yofbxýnIõæ´xN‹zµ‘;6®ÚR® ¾|Hn¼÷µ¶4Ǫ~|´5ÍO¯¦	)	ééØA@Š%KV½¾™p™M~FÖz§àá2^Uùš;ñQ BÝ%¼{>KP³ìpò©ô’óæÚbëÜìÄóNÁw>çkšîÍkb¦œò¯Ær/’éM,fýøÆÙË21xï0aEläž5,Îû…U¦0òäq<ÃX}´køò´òêLJ¬¯æÁ’N¾èL&ëªa+¦h¨²¶€çÄö±Ís!Ã…ÔÛ¢Ó¤®O¾¢5>i,â=*È›ùàíî*wŽ@‚S¾iށ}ȤØôpbs\àéË™†Þ6-Wý>ÙÍõP[SX‹ƒc¥ó÷Ä;2^íVÔ,öpÆô-hŒÒõ2@¸Ùx0µ˜ßãO–,äݳ.¤:ìøn¢ó7í8PqøÝÌ`ÑnÿØj>‹qDUtóØš¾Ó€ãþ³\]Ü&¬>ݦœîáÃ·OÍ‘û:½J5¢DWÃœn–†ZÙÒ6»ëBÍ—efê`»÷U£ó*v%Ébi;ȯT,8¨ÞZ];UG«ì®$¦ˆNõTëPøRÜå¼a2±xý2T|û|ðjƒmø›]Õ*-OuA#¸jr©!ûJF¢lTúš ³.ª'EÎ8âû…?…Ô˜ådÖ§H„Qfî•SõZs*xŽ¸kW½Â†¯ó'cì?kwINV˜©H=Á°·³·57–/ø5cÏÆx+>ÄK1;âF¢:Ñþèzç^«ãe/GæCŽLFÙ·­Ê3uÉj^`ëxÚí93”s{®gðúEÉ…‘’ÖêÏh¥ÉÅÇlaûΉŸY<“+¸üx§¾þ~åª~’Ø[õ÷LZG†UgL“×¾ò†ßȽíÛëßñ>.¼›GØ]¦ãåÿºøE×pÎgYø†‹âÉ’Ó1-[‚½6I¾Î±á/Éɝ>ÆýîÖ(Fö„¬êÎçM7
Mß;Øaæ¼,qk–Ñ?äh¸›—ǹ¹/Úø³LvXŸ#†¯)îï;Pü0Gù‹¥ëÀ]e6ì³4L%z‡·rð{úå/“´—õZ&ß–ïòê˜)C¢A.òyÃ×ë¸yúÝ@³G]ðiœ«E3rË+jL›lÿ‡œœàÊÈZ¯q‰ç[Êñ§j(¿y‹{ÿ$ý5Ú¨j™kò&°âk©E`ÿ³þËc®M™ÊDĺ£W”‰u	ç9™ø¶-±^þ‚Ëb^P=
AüŸÿ&øÏH€u1d
+É
Cvü
b¨åendstream
 endobj
 154 0 obj <<
 /Type /Font
 /Subtype /Type1
-/Encoding 282 0 R
+/Encoding 320 0 R
 /FirstChar 97
 /LastChar 117
-/Widths 283 0 R
-/BaseFont /FNUPCO+CMTI10
+/Widths 321 0 R
+/BaseFont /JXKHBD+CMTI10
 /FontDescriptor 152 0 R
 >> endobj
 152 0 obj <<
 /Ascent 694
 /CapHeight 683
 /Descent -194
-/FontName /FNUPCO+CMTI10
+/FontName /JXKHBD+CMTI10
 /ItalicAngle -14.04
 /StemV 68
 /XHeight 431
@@ -1378,10 +1618,10 @@
 /CharSet (/a/d/e/g/i/n/r/s/t/u)
 /FontFile 153 0 R
 >> endobj
-283 0 obj
+321 0 obj
 [511 0 0 511 460 0 460 0 307 0 0 0 0 562 0 0 0 422 409 332 537 ]
 endobj
-282 0 obj <<
+320 0 obj <<
 /Type /Encoding
 /Differences [ 0 /.notdef 97/a 98/.notdef 100/d/e 102/.notdef 103/g 104/.notdef 105/i 106/.notdef 110/n 111/.notdef 114/r/s/t/u 118/.notdef]
 >> endobj
@@ -1396,7 +1636,7 @@
 xÚí·UXœÍ¶p‹w'Hãîîîîîîи[pww,¸»[pw‡  !kï½’µÿËs®Îs€ƬùÖU³ºÞ§)H”ÕD̝L-$ÝXYxb
 êê,Ì FffQx
 
-1 …‰›“£¸‰›/€…‡‡ â°rX˜yÙYAð 1'go •µ€ZŒæŸ$.€ˆƒÐÆÌÄ `âfmá šÃÌÄ ædfcáæͱ·¨þó„+@ÕÂÕèaaÎÏÂ0·1s˜ZXÙ8Â3ýã$ãhéàú¯°¹»óÿyX ]AR êiÒ @’æNŽöÞ sKx&E'P5ËÿZÿ{rIw{{E‡¦ÿ×Ný_ã&6öÞÿáäàìîf(8™[ ÿwª–ÅÉ)X˜Û¸;üïQ7{3G+{ ó…l\%m¼,Ì•mÜ̬n at w‹…-Íÿ·hçþeÀ$ª¤¤%­I÷ßMý× ²‰£›º·ó¿gý'û_Ìò‡AÛ´ñè1ƒö—”úýŸÿþW1	G3'sG+ +'À4ñ†q |Y 6Žæ^ /0££“è hOü–N@ø:ÊÆ`
Û›8üÿ¯;€ÉÅÝÉÍÂÜÔþOÀäèî`úOç­ÿ„¹ LÎ@3G·?1n “‰(êjÚšÿ‰²3ƒ2M€Žö–rÙYþ;ú_åßaVЮ ÖÙ¸Úý	‚¼ÌœLþD at RÖÞÎÖ„Ø9ÿ%dãôWe£«½‰«õŸÈÐÇèô'À`rr´ø7s€dÝ<ÿŒs€4ݬe€-Ü ´´ñø+¤ë
+1 …‰›“£¸‰›/€…‡‡ â°rX˜yÙYAð 1'go •µ€ZŒæŸ$.€ˆƒÐÆÌÄ `âfmá šÃÌÄ ædfcáæͱ·¨þó„+@ÕÂÕèaaÎÏÂ0·1s˜ZXÙ8Â3ýã$ãhéàú¯°¹»óÿyX ]AR êiÒ @’æNŽöÞ sKx&E'P5ËÿZÿ{rIw{{E‡¦ÿ×Ný_ã&6öÞÿáäàìîf(8™[ ÿwª–ÅÉ)X˜Û¸;üïQ7{3G+{ ó…l\%m¼,Ì•mÜ̬n at w‹…-Íÿ·hçþeÀ¤ª)ª*­M÷ßMý× ²‰£›º·ó¿gý'û_Ìò‡AÛ´ñè1ƒö—”úýŸÿþW1	G3'sG+ +'À4ñ†q |Y 6Žæ^ /0££“è hOü–N@ø:ÊÆ`
Û›8üÿ¯;€ÉÅÝÉÍÂÜÔþOÀäèî`úOç­ÿ„¹ LÎ@3G·?1n “‰(êjÚšÿ‰²3ƒ2M€Žö–rÙYþ;ú_åßaVЮ ÖÙ¸Úý	‚¼ÌœLþD at RÖÞÎÖ„Ø9ÿ%dãôWe£«½‰«õŸÈÐÇèô'À`rr´ø7s€dÝ<ÿŒs€4ݬe€-Ü ´´ñø+¤ë
 jâ¿$ëjáñ—+¨aLÿ±nª£Íß"Üÿ¬ÙÞ鯇xþ™ÆÁæ?£œ Aw“?
ã	Zýs{Xüqä)ˆü!PyÑ?*-ö‡@uÅÿ¨¦Ä¿‰´9’TYꁪJÿ!ОÈü!P=ù?ª§ð‡@õÿ¨žÒ¿‰TOù*¨þ!Pµ?Úrõ?Z­ÆU×üC êZTOçßÄZ‘)ÐÄÌÎÂí?Î*Û¿ãÿyZy@…ÜA4 «™ðOï@÷ÓŸ³ÊZ¡éU4û7±0ƒ–hþþÓÍ¿ðŸ³ö‚<¬þBТ­ÿBŒÍ_Z¶í_²°ÿA>ø, ;ŠÉñ/i8ý… 
翤áò‚4€á?§ý/i¸ý… ­qÿAV!ÈÊ󲂬¼þB•÷_²òùÿ»IÿÑ:V©É_~¬ÿ÷§•ÿ÷%.*êäåËÀ``]\l, £Èìÿifî@Ðååö¯$èEð?lizkXXxY˜Á¯-;™ñ}²Íh	¯(™«‚¦µjMTlêû֍ºšn_>!çB»Ý¨ýR|}LìùöÑ5ºËOeZò{°KbæÒû±‡ñq¶OûGí»lï#gÒÇДΖÅûKp¥…íÉÊTÒá¼›‘‹"ejqõ˜M°~=æþœOœ\Ú’Ùöa”l$ª¨™.•‘ì[ž¨©ÉP[³¡¶°mt·N]îè/%°…)ïF`ÏfbBXEóW[gm"²ð¸·ôÅ­ž·b
ð`Må½L¦9uýYu1‹Žkë½s{j
ýÞ`‹oûp¦´Óx'£òÔ0s<®ZW0Õ’HªP¼­5
 ¨v®µ¡Òa̬÷8©B9JWt¡º¥TŸ›Ñ|~ÊÍ„}Em	ÃIŸë±	iµLòïÐ×lI¤Ü‰÷+^"ëúÉ‘%?€w‰j½£a»ï=O‚ý6›©°|é\<Ôøƒºè‚␃â•»/€zŠ#ï'±¨¿È¹-â§-3*µ´2Ȫ3ؽ1î‚yZ’S›,ïü@òÊT)Æ"ä:O8+¸$´ªYæ5G¬2B ü+êÂnM\@îh¶rPé”åÕ…Çå̾& ‹(–tä=¨ôüFæ=‰V@¤×S‰¿ÂÎoè!¢›3³ƒz›B¸FXr°¼qh$ç– &<¿<;ÿÌ“@åØ·FØîÕï½Á$ëÿZæ´ü%Üù‚S	|;aâõ‹…¿õ`!z’çLuULY_
u¨Lwqõ÷S›løƒ«°æèIRÒ|,S¶¬q“5WÙõuLÓ~´EÙ%Á=­£¹¯oÒ¸€CVҍø·¥oÈXÏÌJŸ½yw»úöʉܚŠÞxp pWÈ%‚F«Fð܈Ëޝb{)২$äza3&äsCË,iªWr†Þ{áÆJX†á7ù/awcºžªMÈ ›mE-ô“96i|µbgº
 uz—$®‰Ì³Ô«í#|é•Ítl'k¤©²Ü.l¡ßÌ£eoKêÇ~på”rÑퟜËTu¸×]oí­öZKóP¡U·ªO§±2V÷(à=Æ6{'ÐöýPKIÎÔ—o"¯ÒõÇÔsm*¡ädJSJ@«,¸ÜÄ
ÌÓ&—~°ÿÂ^ÇhóX…sý$¹ºrHPô9£ 撍ë±ó Ä“Lj4§sÃr† _$j½u&éî
ñ‹Ãú\Vò’&яõZàhÃï'§üŠ’ˆø§Íéñœ—Ú’<*-EcE–I>܃|6•®–3­QøËÒXmŸNÃXò%;Ö'„®_cnUËç*xãõÖá7±£Ûê`»t0ÒB‹wöXšT:OÖ„&sÔ
aã7ªŸ²’fñH{?jL|ÏÑ%$ÏÇÒ4£ñö@¦…1xLÝu¬¡÷„¥õ¹Ø¹-;?våžð¿)õ\·Ê¯‰°sD»RHÌ8V¿ÍÀKX5¹¬Åˆ^jþTÏÿz!_qÙ]Ás±bÕAjH„ì÷°¢Ö¼­Î%ýü£œ~Zâd(Lî6«üáÀÅâByËüÍt[Zø…¶(jÝ7«Í¦7^m‰)Ot‡»õs)ýI…Ôóܝ‹—®j“9Á3
½Ê‘†Ïµß<~^ɸ,IÇyp8·Wû™¼].£ÎQíûÍÛFÈedLÇÛýlŒ}/®þ
Ìl	¢îöç«bFµÐWLoNIåDÃHŸ 	Äð9“«¹r	Ý&Q²"õÖØô÷Ñ”vÅ/
«²iÍä#Ï+DÇÕ˜˜=C¡v×u4cU¼ë­&«·3À—•ÝWtÅz(걋Ií6Ç·Tߢ§É¹z_Œ‡b4¢Ùƒg/r¤Q·²ËðN“NKï_n³ƒ\–yôŒ¿A ÜÏûÍáº=ÅðÕ ÎFZ0“Úaƒ*ó”nE:éºüE:‰gm8=qw™ }ãµçõlãם¦©pl·ö`ß“È„\Øá
m_‚wU¡‡ËØ•÷Ö³‡¼t‹Š›¬×¤Ó¿È*ôü
@@ -1443,23 +1683,23 @@
 ñlϐëψ;&‘“ø³ïŽ&~“{Ý^`ÎCr9u\–ƒ…ý€5Ž{—ø0s+{D(ˆÚ2ð3¿„­N$ŠJû"í¥{âÓ¯là&}´r¨ÀéSœË*TAø6ôðÇ è\Æ·ÊéHbہm”Ð1B‹û 9Åðç3˜XÒby˜ƒøù,45òSl3±*
Â&?.baï @ f½€:ÿ§Æ|0Ý`­ø·_5C½'ß–âlî÷ËÉÏQ/ñ2+û}DãÔ;—žï^éu3#tÁXŒF¾wàVuO³õì³e–$µ¸ØËO"h{çBáu}ûD7ñQ·ÇDè…±Ý0ÚUÂâþ>Fø+†³Ëã7“Þ±º,)uSˆÈô´‡°{Ãû™fbœð…›¨ì°›+XžðI5«µl/A?só  ñêæ[Swú Ÿz©Æô5º^’9ú— ‰ù  Ö:;2úXUi=lgLugÁ[embZF
ùgá×Mû´{µtv¬>2Ç`&	h¾»ýJóÐUzÿ¯×
¹VË^ ?²ûÂ>•Šy.X!#[H‘Œ0ãàòL”y°FÖ½ßôx¿Ý·(Ûë¾:J!	Ð0\û°tÖ‰b£’=aKŠ‹—}÷K/£Á¨ùn^m…´¹:<±û8ü@vD­ÇoúLt6dé,ò‰“ÝÛå~vм½çƒ…þJscPHH¼ñ¦H¬ÛoÚÛκë~´ŽùÞ ¢Ž(€‡ î.Ó*“Œ”78öìqçUr7í– œñ©CjÝȹI7ùö~:]€`IY×r#Cî%}÷̾r˜Ê´EÂ„9`—³ÛØ\eB!9D«¾|þ¹£j‘Oïêì)¨‹©´±ñ“á݇õTýñJÉ#Ú%ÆÌÎŒ|‰ý¦²ÏESuÖÊñmQEbOÎ6¦¸ö<)àfD~2©íË'‚—³2”«6U¹ÕçTÁPª_ñ>"úÜÁñ™"†^ßa˜õä4‡!l¹˜B*Á‘FFƒ?û
 £ð²°å½'Z¶Õ¹¿äWQ·’Ãì”ü(n‹QÉSØÕzžÆ67($¼÷Â+%ìôɾc]È_;–dƒç±Œø'Ýòæ—¯Wö{zžæ,w?üTÁ”¬À¤FËÕ—ºx»’+ê—zƒ›—âbP¾e±Ü1ˆ5êê¿‹¡üˆãäóLv~ª[Š±þ¥¯óëçøސØd$©)’âKg’äV@ÉîІÇ` ›ïLݧ(:<¹ëÚráeŽ•éݴͦ5ì!ÿßT¹´Trt‹äƒÂ¨Ë†®Oò˜Bóöêsy]öƒ·]QÎ-ô/A\gÒ—ûÕ|yØàòv«¥ÔL€4\‘R½þߐ,^zÔ»Ú5Á¦s¢AÇp’I·÷ˆÄÖýÒ´æ¸):u‹Í.á¼­˜¹õÖh„á§!´a¡´3ø¤>t'm£m.ßN9HYÕŽ#CšIaˆ€MÚ”Pþ!Ç=Y7î‹£¡P×#Ç•tC_/6êí
E.Œqíç®Û}?&ùô†LÆH1ré>Xµi„“G7äÃ{\&¸W£ÄªÎVÍ/Àc÷›—¼s™	î_yx.nlŒº¥Š,ŠU7çFlI‚—˜¥ÍZ@=îÂç$É_è£ù‚Gÿì¬ß9L
^ÁñDB|	yG`wÁï'ësŸc‹ß~¿3ØàËä–.ύ+WhOÔÙ«Ä8Ìë²|ý 	‹ûò„ã-ØMñÅ5U ççú	<9X'^ω£óʽPKÅÐJ´mm~üD 8ú{–jâQµyË]5!‚ÞMi™2^”…4þ·3¿Ì¶nyaĉÒ+ëÍë»®‚í+—‚B_{÷YT&?-ä kR†B_D
{eé¨îXš—ü”œóTöÎŽRK2q¾ºŽž½¦ZEyIMTáw0©„]Ü^&Æ«eô1äÄïöóÂe|‰hÊBöÎGÕf‡?"-KàúÂÚô"Ê^Ño$÷§gïR§P-ÇP{ç™íîc¦Næ‡£AšÔPñðž!pM8ñújg¸)˜p”	?Oԯ̋½Àá“NÛ
”@2«öÊ,€±shˆ>8j–*ia{xGIûQµkß•Þ“¼ŽýqÃÊ]B
E+<<ýÒ>Á×™¦CÚTöº¸ž>Uè‡+#‹˜TëËº4ógÎ5j0Ïy$Ò*D^ä̓o·ã…(Í—ê2+ý³ Mrfk|¶)ôu¯>¨§vÌ}Y|CÁ9i3‚ÖcÖ*oË%©I윈ñ
¨r`“I¿œl>aè¹ø¾P›Ò{ûÍy3ÀÂG•¿LTXû|æ1ƒ_Eꋲ÷ÆÃÜ:†$fnÏ_10Å@}4}§è€`Op	».çݱ¶ð°ü… ²º‡÷ä¹j»[D¿-Ä×Â[)pÄÁöNQ€Å¨jkzPèâ2‘¢ç“åAŠPëœI½½Àj8ð²e…Y”¶±-šŒŽŠ‡bv˜Þjÿ$y$‹^<£Ë¢
 /¬™RžÃØÞí%G{”ÙŸµŒ(FÈÙ^|Œˆ©"á&æB÷
ç
-	[p3·Ç>x1aŸ_³œ°ÿšHD¦
ú}]Zb`Ô.®‰OUH̐‰¬Ê
0},˦𣎛ùËìY‹Šh–4‚ÑEŒÐÝiå•u3•k-•d£óÜþºA*óÿÃøÿ‚ÿOL`foatsr0ÚÁÿ.¢çendstream
+	[p3·Ç>x1aŸ_³œ°ÿšHD¦
ú}]Zb`Ô.®‰OUH̐‰¬Ê
0},˦𣎛ùËìY‹Šh–4‚ÑEŒÐÝiå•u3•k-•d£óÜþºA*óÿÃøÿ‚ÿOL`foatsr0ÚÁÿÈÀçendstream
 endobj
 126 0 obj <<
 /Type /Font
 /Subtype /Type1
-/Encoding 284 0 R
+/Encoding 322 0 R
 /FirstChar 33
 /LastChar 125
-/Widths 285 0 R
-/BaseFont /BOOWHV+CMTT10
+/Widths 323 0 R
+/BaseFont /RVBRHX+CMTT10
 /FontDescriptor 124 0 R
 >> endobj
 124 0 obj <<
 /Ascent 611
 /CapHeight 611
 /Descent -222
-/FontName /BOOWHV+CMTT10
+/FontName /RVBRHX+CMTT10
 /ItalicAngle 0
 /StemV 69
 /XHeight 431
@@ -1468,10 +1708,10 @@
 /CharSet (/exclam/quotedbl/numbersign/percent/ampersand/parenleft/parenright/asterisk/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/equal/greater/A/B/C/D/E/F/G/H/I/L/M/N/O/P/R/S/T/U/V/W/Y/bracketleft/bracketright/underscore/a/b/c/d/e/f/g/h/i/j/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright)
 /FontFile 125 0 R
 >> endobj
-285 0 obj
+323 0 obj
 [525 525 525 0 525 525 0 525 525 525 0 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 0 525 525 0 0 525 525 525 525 525 525 525 525 525 0 0 525 525 525 525 525 0 525 525 525 525 525 525 0 525 0 525 0 525 0 525 0 525 525 525 525 525 525 525 525 525 525 0 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 ]
 endobj
-284 0 obj <<
+322 0 obj <<
 /Type /Encoding
 /Differences [ 0 /.notdef 33/exclam/quotedbl/numbersign 36/.notdef 37/percent/ampersand 39/.notdef 40/parenleft/parenright/asterisk 43/.notdef 44/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon 60/.notdef 61/equal/greater 63/.notdef 65/A/B/C/D/E/F/G/H/I 74/.notdef 76/L/M/N/O/P 81/.notdef 82/R/S/T/U/V/W 88/.notdef 89/Y 90/.notdef 91/bracketleft 92/.notdef 93/bracketright 94/.notdef 95/underscore 96/.notdef 97/a/b/c/d/e/f/g/h/i/j 107/.notdef 108/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright 126/.notdef]
 >> endobj
@@ -1484,7 +1724,7 @@
 >>
 stream
 xÚí•e\ÔÝúîAº»†”†º¤A醡sè.é”–”A$¤AEº»»»Î<ÏþïGÏÞ/Ïyu>gæÍ|ïu¯ëº~kýÖ&:õW’NæP9'G7nNna€´Š”7€›““‰I»Ù89ʀݠ n!!n€¤»€‡ÀÍ/Ìæa2¤œ½a6VÖn iÖ¿š ’P˜
ìP»YCà°=à•ÄêæÍ	´·hþ5à	u…Â< œ˜ÜÜ ˆÀjeãˆ	ü+‘¢£¥@à_ewçy at a®ðP xHV <¢…“£½7Àj‰	Tu‚{AáIþo„úOq9w{{U°Ã_ò¯Òƒlì½ÿ§ÃÉÁÙÝ
-¨8Y at aŽÿÙªýW8)'ûÿ²QtÛÛ@$­ì¡ ®•l\ål¼ ê6nk€%ØÞúwêhñŸàËöw  ¶ž¦²¶ûÿìç߃ê`G7-oçdÿêþ›¹3|u`6^ C.N..nx#üûï_Æÿa&ëq²°q„¿|ü 0öÆ„¿pâørl- ^ ¨<1ÓÑÉ
> _€¥ó¯íñ€ÖÞÎÖPÇ¿êÿ*ñ€Îðmr²ø§Ä' Bœì~7ñÃçIþ&ø©ß$  Jÿ&! Pöà å~ ¨ð›x@ÅßWQùMðª¿	®©ö	Â5Õ\Só7Á5_ý& ¨õ›àÏ ýÁßN ø7ÁýÌÜòqsÁ
-þ@n úÂ-­þ@¸§õ7µùá®v ÜÖþ„û:üFn¸¯ã÷uúáîüÂ}a Ü×õ„ï˜ÛáþÂcxüðž¿~õ ½þ@xï¿ñ¿””“—//€ƒ‡.Ä+àãòÿß!î0ÔÑíï~˜þÍ–6ð£…zA!˜ÓN‘׶é
áe²…¿ÊQØ¥¬U?vŽ¶a…N½A´/Pra[¨Ó»©È$ÂÝ@Ù õ¼£rnõÓø!wì’˜1þ°áa¶‘éÓL¥w’©â½îLº‹×Ò0v¶Ç‡¨6²0X–¢_Ô›sôu7_EFkmŽ¡ËУ¾+ë5¿€ž\¦½vDX3/&~†KY$(bÞ?%	y~(4À6½‰}öة՝ð¦ý]òƒ)’ųK¥ƒ4oœUƒ›Äï—„µAƥѫîïTÞêÇWÝ™ÎÑfsÚŸÄf=;}îfô¶ºÝy¦z,·ÈàZ
T.õR Ç&ús[6Bmb
sàPã|A«µ™êÍ÷‰§ÖJòŸ"}Dö—êGqã?w 2°¸™ÉwqkX²X_ò*…M'L„ÉÞWÕ¾¥qM¬Åݲ•{_iÙ‰O¯Î8¾Ρ¸ðijo0uZ*´“_̺(ÑEFÿHtÕC– Ú®óc¹l2¾*ü2ùûRþ
+¨8Y at aŽÿÙªýW8)'ûÿ²QtÛÛ@$­ì¡ ®•l\ål¼ ê6nk€%ØÞúwêhñŸàËöw  º’Œœ¾ûÿìç߃ê`G7-oçdÿêþ›¹3|u`6^ C.N..nx#üûï_Æÿa&ëq²°q„¿|ü 0öÆ„¿pâørl- ^ ¨<1ÓÑÉ
> _€¥ó¯íñ€ÖÞÎÖPÇ¿êÿ*ñ€Îðmr²ø§Ä' Bœì~7ñÃçIþ&ø©ß$  Jÿ&! Pöà å~ ¨ð›x@ÅßWQùMðª¿	®©ö	Â5Õ\Só7Á5_ý& ¨õ›àÏ ýÁßN ø7ÁýÌÜòqsÁ
-þ@n úÂ-­þ@¸§õ7µùá®v ÜÖþ„û:üFn¸¯ã÷uúáîüÂ}a Ü×õ„ï˜ÛáþÂcxüðž¿~õ ½þ@xï¿ñ¿””“—//€ƒ‡.Ä+àãòÿß!î0ÔÑíï~˜þÍ–6ð£…zA!˜ÓN‘׶é
áe²…¿ÊQØ¥¬U?vŽ¶a…N½A´/Pra[¨Ó»©È$ÂÝ@Ù õ¼£rnõÓø!wì’˜1þ°áa¶‘éÓL¥w’©â½îLº‹×Ò0v¶Ç‡¨6²0X–¢_Ô›sôu7_EFkmŽ¡ËУ¾+ë5¿€ž\¦½vDX3/&~†KY$(bÞ?%	y~(4À6½‰}öة՝ð¦ý]òƒ)’ųK¥ƒ4oœUƒ›Äï—„µAƥѫîïTÞêÇWÝ™ÎÑfsÚŸÄf=;}îfô¶ºÝy¦z,·ÈàZ
T.õR Ç&ús[6Bmb
sàPã|A«µ™êÍ÷‰§ÖJòŸ"}Dö—êGqã?w 2°¸™ÉwqkX²X_ò*…M'L„ÉÞWÕ¾¥qM¬Åݲ•{_iÙ‰O¯Î8¾Ρ¸ðijo0uZ*´“_̺(ÑEFÿHtÕC– Ú®óc¹l2¾*ü2ùûRþ
 c2@ùÄ—?ø¢á´R1^–Ÿêz‰¶FûÙùêwo®×VJâ̬NâH<TFÚÆŒzºÑQ›Ü–…½“/>VÔ>’Âæv¸Ö{§|4ËTÂçV´À©Æa¬%ª5¢¤šgöìJñP­Òë
;Ë=F—~x‚—·8g‰³Ž•5YP
 {Ûʝk9ŒOÕ¬³Š*Ÿ•ÜŸ@¹æ’Ç…õ gy41cÒkBFÉ8ÚˆvXÈ4(/`±Õ_‹ltRYuc/Ùâ
 3¶ÝŽnL0
É,`®Ð=ò÷Wõ[ÅmÜÅáâë%Ž+¾)€ˆïKWçríåsÅ2	Þi~C7-‚Pgoó/éÇs§KZµ‡ÆaÕ]™iîŒO}\¸í8‰ãVò]ÙùŸáçÉ
òඬl†ÿ8ŠÂå„5¸ñ…Ò0ðú¹o²:Ó$·wB°çUSa¼{×dë΢ɯI2p]_K|ç,‘õË;P±¯sì„5'ä7±©jސguyýZ£@vþ¢\$„i»2^ŽëÃ#Ï„÷޳ʪ°¯BªÅ—ø
f‘b1VÖÛ»Ek쥧PiáD<ê/eG[ÑÌ<NÊŽ¹÷ýÄLÎk³ãR
%Ž¿:Róûì×ø·¶Æ>%Qõš7Í.zßÅ­B<úäеöÖÍ—’süüfò®ã©Ï
X_â8b_ó›}Û•r•àÂG­ýPJ¿úM}ˆ¼Œq–=ÖøÙ2F A‘]ÒÏ}•é,èÚóïdÆ€
@@ -1512,23 +1752,23 @@
 ‚=›&xûRj(§O
 ÝÔSOkëC9SØ­-ÎÁ¼bƒø–©é*‡©aÒ®0|]úæä×ù_Ú8…íÛO’pñŒŸIL‘Û~¿Xá¹¢pæ?†ÑÜ¢Ù|B帉3`µ5p
 u–PÕ¿Á|MÔ+.˜,‰jðîNºÒgÔQ~‘2Ã;X¥”ËSÊ –ÐpÉh}Èýœ¶ÓýRš úàG]ÈbÞ)þnqo'7Ïlŧ['ÄÚ<ÚîÛk”»†×˜EO–JŒœFËþÆ)ð–˜Ð\¥ïA™0¼ô”¯ŒHŽñ«vGWñ¹P™m¢,Ì®·Ë4ô+Õû–4‘¥JžgAÒ{–ÊŸ}n]5v¯¸
悺ÖÕ´ù¿îÆU )*eX+²2pJD=K'È6©}DPAú,±»l¯¶I·—ó,Fb~¸ãs¸¶6‹H“ÚÒáÐÓÒüXlï“õÒŽ{ƒ]ßØæSyË<nSEû¸Ïsvr=|XLg&ž›_m5g€•ü¶ª¨ø›ê(Ñofu\ÿ‡Ìÿ/ðÿ„ Ä
-†¹99€av˜ÿ*m¸endstream
+†¹99€av˜ÿâmendstream
 endobj
 119 0 obj <<
 /Type /Font
 /Subtype /Type1
-/Encoding 286 0 R
+/Encoding 324 0 R
 /FirstChar 45
 /LastChar 121
-/Widths 287 0 R
-/BaseFont /UXRLUO+CMBX12
+/Widths 325 0 R
+/BaseFont /PKDFYH+CMBX12
 /FontDescriptor 117 0 R
 >> endobj
 117 0 obj <<
 /Ascent 694
 /CapHeight 686
 /Descent -194
-/FontName /UXRLUO+CMBX12
+/FontName /PKDFYH+CMBX12
 /ItalicAngle 0
 /StemV 109
 /XHeight 444
@@ -1537,10 +1777,10 @@
 /CharSet (/hyphen/period/colon/A/B/C/E/F/H/I/M/N/O/P/R/S/T/U/a/b/c/d/e/g/h/i/k/l/m/n/o/p/r/s/t/u/v/w/x/y)
 /FontFile 118 0 R
 >> endobj
-287 0 obj
+325 0 obj
 [375 312 0 0 0 0 0 0 0 0 0 0 0 312 0 0 0 0 0 0 850 800 812 0 738 707 0 880 419 0 0 0 1067 880 845 769 0 839 625 782 865 0 0 0 0 0 0 0 0 0 0 0 547 625 500 625 513 0 562 625 312 0 594 312 937 625 562 625 0 459 444 437 625 594 812 594 594 ]
 endobj
-286 0 obj <<
+324 0 obj <<
 /Type /Encoding
 /Differences [ 0 /.notdef 45/hyphen/period 47/.notdef 58/colon 59/.notdef 65/A/B/C 68/.notdef 69/E/F 71/.notdef 72/H/I 74/.notdef 77/M/N/O/P 81/.notdef 82/R/S/T/U 86/.notdef 97/a/b/c/d/e 102/.notdef 103/g/h/i 106/.notdef 107/k/l/m/n/o/p 113/.notdef 114/r/s/t/u/v/w/x/y 122/.notdef]
 >> endobj
@@ -1554,8 +1794,7 @@
 stream
 xÚí·eT\ÍÖ¨‹[‚{°ÆÝ]‚»»´qw‡àÁÝÝÝÝ	îî$XprúÝû|;9ûü¼÷×—f0ú™5WͧæªUtS’*«1Š˜Ù› %íA.Œ¬L¬| 1UV +‹(%¥˜ÐØÅÊ$nìä°òò²$&à7à_>N>N6$J€˜½ƒ§“•…¥€FŒöŸ$n€ˆÐÉÊÔP0v±ځç05¶¨Ù›Z]<™ "¶¶ Õ®p¨Nn at 3&$VV€™•©ÀhaBbþGIdnàþwØÌÕá†Ü€NÎ`) Í¿4i`I3{­'ÀhŽÄ¬h®»ü¿¡õß“KºÚÚ*Ûý3ý?ú¿†í¬l=ÿw‚½ƒ«Ð	 `otýwªðßn
 @3+W»ÿ•q1¶µ2YØ,ÿY9KZy Í”­\L-æƶÎÀŁ ³ÿ– wî_
-Ìò2Úrj
-ôÿ¾§ÿS6¶¹¨{:ügÖ’ÿŬÜ'+€¸½¬àDðëÞüW-	©½™ÈÀÆÉ0vr2öDï0q¼YV 3  èffÙ»€/€{â0·wBú熂ï9³ù¿bÿF60ZýAv0ÚþAŽ’ÿ³ó˜]íÁ-þW'ÿ'ÌÁ`v0v‚læEYÿwô¿’Á%l]ÿÀELííìŒÿD8Ì–ž–@Пø*pY{³?!n ³³­±³åŸ€Ùèdÿ' öµÿÃœ`Q÷?ãœ`EK'à_ÿôÃÞÕéOàŸŽX¹ý•Öuß«ÿ0XÖèö—+ø¾0ÿ5s‚UAV‹ðü³f[û?q±ÿÓZ ó?ÏþŸ xn‘?žWôçûCà	ÅÿxÝÿ!nðª%ÿxÍR¼^é?–ùCàzò\Oáë)þ!p=¥ÿ¸žòWPýCà
+ÌZšªJZÊôÿ¾§ÿS6¶¹¨{:ügÖ’ÿŬÜ'+€¸½¬àDðëÞüW-	©½™ÈÀÆÉ0vr2öDï0q¼YV 3  èffÙ»€/€{â0·wBú熂ï9³ù¿bÿF60ZýAv0ÚþAŽ’ÿ³ó˜]íÁ-þW'ÿ'ÌÁ`v0v‚læEYÿwô¿’Á%l]ÿÀELííìŒÿD8Ì–ž–@Пø*pY{³?!n ³³­±³åŸ€Ùèdÿ' öµÿÃœ`Q÷?ãœ`EK'à_ÿôÃÞÕéOàŸŽX¹ý•Öuß«ÿ0XÖèö—+ø¾0ÿ5s‚UAV‹ðü³f[û?q±ÿÓZ ó?ÏþŸ xn‘?žWôçûCà	ÅÿxÝÿ!nðª%ÿxÍR¼^é?–ùCàzò\Oáë)þ!p=¥ÿ¸žòWPýCà
 jÜKõ?^­Æ×ÓúCà
 :ÿ!ðÁÂüg»ð‚]Lþ8ÓôÏf˘ý…àÕÿÂn÷_¶³øÁz–!Øï¯G…Üë¿ìdó‚¥þzXÀVv|80ƒþB°•ý_¶røÿÙ!ØÊé/ügÿý…`+—¿låú‚­ÜþB°•û_gØÊã/[yþ…`+¯áÿ}ø‰ŠÚ{x3²Ÿ'ð–ºÎàåâõý?2M]À§Ë¿þ·€ÏÐÿas+ð‰z M‘VíMù?['7…–úIäO—ÁÒAŠZ4Ç)Ö÷Ìu¾^þ
 i[4&çH·Y§ýTž†‰r{HâþBàÙá£ò]ò2Ð1.eáíÐÍè0Í«•@û:MÁóÀì>øj{Óüí'¤Òìæxé7‚ÁÌŸC?r•iÄՏà×I!zõÜzÓ?sqkK¦Ùj„…ÔQ±“ª¢¥8–†s„m¸£}‹‡Ù˜
@@ -1598,23 +1837,23 @@
 m	e2Q¬ŠšÛWœp«úÄÙÈ-PaÞW±™|=_ŸeK;yÞNK<TÕĵ%-*e&´Ù$h2wÊûö¦ƒØéÖ%\²Â®’†2³êAü, 5›}ÅX{¬Üñéˤ=ܚĦ6¤B°ôŠSRdÊJT^{ëÝà5T¤6ìQ¦Óà6Ùqß±ò%ÙÔþ<MeÿX÷¦~fWÂnè3\ÁN{	,…Lˆ\Ší2§;ª*HêãGÅ &NÉ㍞økÁÍ0_à#ýå /ÕVà-Vhçyë“ÇCLÿʹ¦j1–ë3é€@•pŽÇ×ÙÆz¨AÖÇ8¬Š(£W2ñ9>):Œ=φæ’íꝻ©ÎÑÄF™ŸàÚÜ—N»SAçQ%%¼	1ǤòåÊK]²kd…¬ÔIõYd‘ːDHÙZ~GB{™n#u:ïûï‚P‰ùYUÜõ‚ä(wfø®D®MnÄ72G&„„Ïê\ër &±ÈF*6Â+.»¾´ÃtÛ9<>ÞØÖÞ»øBM®Ð»ï-ýøÄ_‘êê{i„#Ó„2lªèg7úiD”ЩÖç:;-ÑK[úŒÐÐßV5ºþ¡Ê׬§î‘ê•4Ó´TRÍ-¹tùðñ¼üÓˆ`B;®¼ŠºWn\ôTß)O9
=!?¨ñËÏããøwOc–¼ˆÐ¹†tõ
ñ÷ŸK7‘Œª§ÍÃ=è¾EÊ ¦'”föêþlبõ’Þù¡õjQ4í!NôS¾íMx£… y_ %†QÍ“%™>Þ÷·g¿ê¦µêŒÏæu3‹0AÃwóŠ“/\)Cóhñ?@*Yì„Ý¡§?™±U½¢Ököap»pÒò]ÞÔÖl}
 ’\\PÔD”ú˜Øà KÓ~&ÓCÒ4=´¼ë«÷ÆOx:}k£ñ¥Þ‰§^¿ž‡R'p¬Øª¹×ÒæV[ÀÎ3~ЈÒèŒpop|®¡]ïª5&TiÅ2ÍA’±¡z¹öCÊÜYêwÜ|ÎT}>h*Ãñ`Q£ç2T‰‹A»hFi&Æߎ\V¨‰|NuÛo&a‘üH”
 âS`/›{
}—ohùÅE±üÖ_ÈÛ‡vZø¨#}eçH S<ÁÑ»³ñf£\Ȩ,õb;º¯á……Ñô»Îb…úKž3c´¬˜Ÿzgà$ʁÌoÒß…<±0h£g$JG¢mòA2Õn5$NÀ«â°±JM·Ðö&ì*ü&kp:øÛÈaϨu=SK83•.í±¡i€—áú:IÛaî„‘>pã|\iê»EòKÔ~
-íÃSxtA³9š›Òh•Ãü2;rR©•ë‚§º¢°:G9/þ­+äk’ä~^ÛŒ±î'=Ö|\5ñ£ýµÅ…ƒQd’™ÔéÐÍßãÏ{òUZÇ '¡ÓÚ&lÕKU;mŽ\<lƒèéK)—Á|¨³€’³ñ>oÛª™…ØpÊ›`øí¶€@%+&Ëÿäÿ‚ÿOL`j4vr±·3v²Aú_M¥ˆØendstream
+íÃSxtA³9š›Òh•Ãü2;rR©•ë‚§º¢°:G9/þ­+äk’ä~^ÛŒ±î'=Ö|\5ñ£ýµÅ…ƒQd’™ÔéÐÍßãÏ{òUZÇ '¡ÓÚ&lÕKU;mŽ\<lƒèéK)—Á|¨³€’³ñ>oÛª™…ØpÊ›`øí¶€@%+&Ëÿäÿ‚ÿOL`j4vr±·3v²Aú_=ˆõendstream
 endobj
 95 0 obj <<
 /Type /Font
 /Subtype /Type1
-/Encoding 288 0 R
+/Encoding 326 0 R
 /FirstChar 11
 /LastChar 122
-/Widths 289 0 R
-/BaseFont /LIXKSM+CMR10
+/Widths 327 0 R
+/BaseFont /WVROWP+CMR10
 /FontDescriptor 93 0 R
 >> endobj
 93 0 obj <<
 /Ascent 694
 /CapHeight 683
 /Descent -194
-/FontName /LIXKSM+CMR10
+/FontName /WVROWP+CMR10
 /ItalicAngle 0
 /StemV 69
 /XHeight 431
@@ -1623,76 +1862,83 @@
 /CharSet (/ff/fi/fl/ffi/quoteright/parenleft/parenright/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/question/A/B/C/D/E/F/G/H/I/L/M/N/O/P/R/S/T/U/W/Y/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z)
 /FontFile 94 0 R
 >> endobj
-289 0 obj
+327 0 obj
 [583 556 556 833 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 278 389 389 0 778 278 333 278 500 500 500 500 500 500 500 500 500 500 500 278 0 0 0 0 472 0 750 708 722 764 681 653 785 750 361 0 0 625 917 750 778 681 0 736 556 722 750 0 1028 0 750 0 0 0 0 0 0 0 500 556 444 556 444 306 500 556 278 306 528 278 833 556 500 556 528 392 394 389 556 528 722 528 528 444 ]
 endobj
-288 0 obj <<
+326 0 obj <<
 /Type /Encoding
 /Differences [ 0 /.notdef 11/ff/fi/fl/ffi 15/.notdef 39/quoteright/parenleft/parenright 42/.notdef 43/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon 59/.notdef 63/question 64/.notdef 65/A/B/C/D/E/F/G/H/I 74/.notdef 76/L/M/N/O/P 81/.notdef 82/R/S/T/U 86/.notdef 87/W 88/.notdef 89/Y 90/.notdef 97/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z 123/.notdef]
 >> endobj
 91 0 obj <<
-/Length1 1288
-/Length2 7342
+/Length1 1224
+/Length2 6620
 /Length3 532
-/Length 8130      
+/Length 7382      
 /Filter /FlateDecode
 >>
 stream
-xÚí—UTÚÖ¨qw§Pîî^ܝâR‚	î^ 8´¸—âÅŠkq§Š-V¬¸ËÍÞûœ½{Ïy¼÷é’‡|sÍ5ç—¹V2Fh´t9¤­!V ˆ3”ƒ‡“G «.cÈÃ
àáäæ–Á``uYBÁg9K(HÀ#"ÂP YÁÞÀ^¢ü¢Ü‚ Yˆ‹ØÖ
-`–eù#I ír-ê–P;¬ÐÒ ‚APN€´£#@çî ;ÈÍd͉Áð¡ +-؃ë'eg@诰µ‡Ë¿—<Anî0) óŸš, ˜¤5ÄÙÑ`
²ÁàÒ€Àº`.ÿ?´þ³¸‚‡££†¥ÓåÿœÔ­[:}þ•qrñ€‚Ü êk›ó¦€þ’“8þWe¨¥#(ílëpÿ»+€½AÖZ`(Ð`céèú3r¶þOØàþàÒÐQ×”–eû×™þ¹¨e	v†êù¸ü]öì?™ç†MÇ
ì
0ᆍ—–{þûÙ4“wB¬Áζ ^A€¥››¥ìöÀH àÇ ;[ƒ¼ o˜1§3
-Û€$ `qÃøã@ù¹\.–n gG
ô¥¿¢<ÿŠþu|‡y\–‚Ýþ	ò¸€''Ë¿#‚ .éHÀ%û	¸äþ&!> —ò?$àÒü›„afZìîpýÓAVÅê‚íþM<Ü°Ö¿!ì³€~CXKÛßfo÷ÂÔÁ¿¡ €Ëþ7„I8ü†0ÇߦáôÂœËù7„i@~CØ(]~C˜•ëo³rû
aVî¿!Ì
-ú¬<~C˜•ço³òúyaVÞ¿!ÌÊç7„Yùþ†0+Øõ¶tÿkBÿ}Ëed Þ~|°sð
-pÿaÆáø¿2n°›ýó7Víßl†}µ@ ocá(nÿ®1²,P¾hª™^ƶ)Q£¾ûkfØ|¼cɈª+ëJámE&!Î6ò6µ×=…{L»¿ö¸Â¯×ÄôÙÇmÏWÛ™¾-†§™ê>[.´Waû¸m3çðšÓ+£e©FÅý9ÇûZÌrz;¨ßiàzL<z²Â…2_FEÔ1òÑèॻ–½æZöÂKMFZž´Bkf[:´{Ü¡å§<ZÀÝ QbcÝŸ½žƒbb/RH…´¬6qˆ|Žü‘»S™×XöiB«š¢{Ëxí^AÖÛ«åÒ”îGkÕí¹åá
-
-ñÑnËÐÄy‰Aý›ÙÎÇQ2ŽšïN­gÐ:P! ÷8©ÃCqá™u?È“E$•ãIO:*UnVµˆÚý8­S	
ã/§€/w‡ØHPÖ·¥V¤ŠF¦Ýü»d!›Í¶
-’_ËÄ¡>ÖžÃQ”ÛùV9-mòºjødß*Ï0ŸqÆ2#Ó·KŸlkL¼ÐíËÃ8 gz43Áq楅:Õ_Êò%DãÃÅóÅD'ÞÒxNÚ”pŠþBrJzµR#¾=¶ªÙ¨‹ùŠ~Bã%açµ
-±Z.êö-±A"ïÀÅ9ë—(ä‰-ˆÄ¨×`nØåX¢”݈¯&{¡'pÊt_u ,`Zåüôâ¦7‰Fl¡ÕJGÍ~Y¨aTÍš+ØÈŸW؝U{q.+©ñkÐ\*{Í<ÒÉhSi,ò†ã”…u2oD__ƒ8Ì_%ã@èżûä/NúX¹B…”¡FêS`6õ.j’¾ñƒ’ä>¹‡Î+$<|²v]“S&ž+Wþ*Wã^13AŸ¦ðá
-Ûãâó8_.õk5ø&ëBÍúän­Ð-MºCܟȐ;îGTñ/°fÂ"Env§èM$@ù'ìŒC¥G,xžo{Oxäæ÷ô•Cì«,Ë”{?ÐU|ŠÈ@N9ÅwÄͯŠÐžØ¤¶LVïµWPÁ+¨U㻽CŠääp¤è×9¡.ˆ½Á6rÆËݨ-oð¹º-Òñ©j°+¡ïdœeêº8\³5Š§ˆõ¦ú”þ15«»vv¸aåãeßJÌO%³-èŒâÚ	Y«‘Q.Ç¿±ˆYyr#•Ì´`­»d—	4ùCfMU™ho~|ÓNƒ†BÃÿá]Ÿ&ÛP±{ž'H° \#XÅžÏH¢êŸG‡7dÉ©°hvU¬VOQ*œµrIPp^K°œtCgNlô'õܘ™î>«üB»\ÆøÉQû¤›ª·{ñ¥˜ãÅØ]wÊǯ[>îùèè¦{-Ô§û‚äÅ„—àl}™÷Í3W¢
-ɨŸ;m®‡II>Sã¦q¢ØTB…¨cM_Çõi¶ê£Ê[¾
¿@˜´Ò¦Ö,~ÈÚ]gٹ询€¦õ´gQzä}sƒ[=Õ^òOë΍ޣ¶ÙûÎ/2Ho§Å§¸÷Lž_Eví»7öã;FaCLs…önfûú¹5Uʐ䛴^½w`7þÕ;g_ü¨õ¸›ðzž;·£Aâ%·‡•5êuªû´&¦J(߀Y“Y–&nÍVïù(6ûs"î!¾ÄUIÕYÙÅ<IµUCÊoü׃òs-?Ž'Hm¢øŠ¶_{jÓñpÈVq†ÙéòQ‡¼P‰ÎCK†áýWp4öÖª|öË
>:W'ëŠxÚòæˆËÏbt†uVòɝ]9)êo‹b
±æ~!™-÷f;û¯"·*ÑË3R³Ë¨‰å9Ø[bBÜñ…lªî\2"å˜÷¢,¸ë«EW躌¤Zi0…§ån’{ù™’^µ97¢¼ßFT["ÉŸŸrÉ9îØô4òŸÌ&ÉšÖÆØ—Zܳ9«V;‚¬¸WÉ;’ÕŽäúpf…ÊÎò¿ŒÊ•,‘>Ûï
8Äõ[ä7ÄÕÉ5_8ØùD-K¾ÐÉ ^9nžŸ¼¤˜ß(úäÂðu‡.(rBïm	ƒ,†?5÷fóó²M*a­«UÕa2v»löü»À|¬QTüÜÏdU¥^¯Ôô™ü×Ñe-Wóy‚
-? KRí;LŸâ½*ÈawMŸF–æöyõt‚\¹µñm.·RÀuØiTëqJqTYx›&µ8ñ~JÕr¹Ó¸ôǘñ6q]4’J¿¥öm9w“(´ÂÏZKg[Y"¶a.sdq«~eŸ4Vo¼=‹!‡ÚI$~€¥pÞù`²h W6¹¶3ǦÒºzãÅ_€žÝü-BÁzé.Ⱦ¸ò˜k—…syFV¼¨#⯩型›¯†ù‚d24¨qbfŸëðDBùö‚:À˜±æ’{üÞx))´k<ÌMaÃÄ„âZñaËö’û&ºùTqL	û
-qTI¾%‹ó4Áê…£ h26Ë«À©±“@C©píÊ!`E¶X·L¶Bð§>½gn̸92T-ÕrÅh\:ø%ûèì
-Èu)yÍꐂcfÒfñ ìS;ÿÇ·…™r§Õ*ÉècwJ"³¦ìÖr
è/7©µÖ×ïËú[m†»Ì樄d¸Îw‰K#3†QÃ}¬ý«Ic$–?­^¹Ó¾^HâJq«„³T6d'€‚üo«äˆ¬5’Ív†ë3)FßòÜÕD՝øe+8ÕÛè­íÑ–HÈ;nª·|°±ÖmhØù²fQÆpÊT’n
-¹ß‚i!á?¯dC¸'ãã?¾£ÕIOž_yµ)|ì˜j_§	™!±»Xq>Û£¡Qíu½-„¨9u7iÑé…„GGvÙ5zzè8yä÷yå„ÁCM(®½í´„T¹;xè:¼J
-l¦?¿Ó¶M¶h%›œIá£pÁù,ž—ÊVð¶«ÁëvVçCâ-‚OìÔû_p]F‰¿Õ³®~’˜D*±´숮rrVÒs8ú©qþ±Ol®IÅòõÁ"ph㥽²õ<çe :Û>á"0ŒÛ´UÙ®ÎÑË'Ó7w½¶×Hf[ñ×í4e‚+d\‡)/ǃ¬8 ]éYoœÞœ@Gy•4â´¾·Ò0²Òî{CÛZLxAÛ½ZÁÄìtt«R~‡Ó©®:Ç£=v°½³Æa‡¸‚_:F]®Äåê”Ç<>d¿å8FÐÏl•ºžÑ]l<÷ΧA0ípšæ”Ý19Øaö›¿Å’NqˆáóÔx5°êº#[±ªÆFIÒç”ïå(fÊÑe:9¯0ªÕ	¤(f²Ä¥[^xIô{‰^€~l.yžzQº-)͹*Øq[öúI/ó\ó½ÑTw¨Ås•ìxž¥xŽùUgj¹Ú'Œ9V[§%DY,ùB¶ùûa†Å§ØrFÑÝúhÈ;¾ŠÝé(~øà—å?·¹ØL{ll(v2{¬sDX1é(M^Wôs†ð8¨øjwÈs™E·¦G7Þ(oÌÇH#ì*kc×½ŒñM¡‹gÇð2dÃÃxO¤~ßqÿºJŸùó›Ž9¢PTPüU ‰Ïa8qï³òw%ã€/ö=n!d»Þ./5\¸îå£"Þsp¶¬04KŽ„¦>ÑzˆäƤèD*î@¯ófÜ:`یؿõ¡†Ä}§ø&DðTÈürD(î«£k Šðm'–Ñ9…nXÙPŸ`þÄ•8ë0¯˜‚€ŸÊ«KçµÔa ×~‘Zae¿$Ñ^è¸Q¼vA‡EÛœOS–:,\X™úûÃH#S’ì‚»‰ÅDÎYû À¶)O ÅºÌ0WÒ­GÕH7Ô¨I}ö|5qL?ò˱ݺ4çS³¿Ï#WYkØd±üá´Ôpñ8j‡P“-£‚j2(Fÿù³@tbÖR›U`…‘óa¹GiÔ<ÒK¼#?´½!Ç-ÎZ=As13Œõ#9—DW,Ïéä®a¾žŠåOòfã°.d9]‘­
HrúÂz…8"å|Ìa7é¦ÈÓ¨õ)‚Ølœ7ɘ,ÕlbK]Ô¨4ûõÔ“’{c¿sÊ:ù5õïç8t
£«â
-/|rÅҁZ€%äGßå¥:»o ÷ò(V0Jþ4¯ *µjêß¿”|¿ÏãÙáLCøt5G÷‘›Ñ(ÿ©®]Ñ„Üé<Ê*zº}KmÝ¿zùäѤPu^*n™t«zjʾû…M£ÝŒšë“ØL8Ÿ}„À;Ò™Ïúœ,‰HC¸ÓMhUF™ZÍñ ×ȬÞæóGêþkŽ(6Í¥è—6/xÓŠ>ZR?7 óÌÇÕл|0³›Ó8j})Zlåû–4»jœcy«œ¥×\ü(Y±+쮕`/_%b8?ÍKƵøu\ùŠHBc1˜ÜýJ¨ûjèK:þ´Å-mXg#Vá‘k¢Û[*PTj_§°@¦§¸0ŸÙêw„ ꀔ
•V楕hŠÔyœ·«™E—c.ʬdË£L:ºLÁj¤åèNî÷™oMEºÖåÆnb";ußÇoHhª)ê–x'û~<8A_¼+*ð~н%»íSi çJÇ¢z
qlòe<J_&®×"–Õ­¿ÒÂ%¾Û šµ„” M˜Š/øÄ‘4,JƒÒ8ï£ÍÕû¨nmø7}]u»Eã/ÄîìMs~'/!5pJ™øVÈÌÀnÀÜqÀ¡s™ŽG±p¿}$÷ò¡ë^‚Õ3r¹g,ªijUVß5Id•î¢%÷0Ò“B½è3À~œ;?\¯-¾ R滉²¹´šË”±p3ÓM´§¯÷¢²?ÙeÀ•"åj¯Oc¬à‚7‹1rß„-¹(¾Ãد‰9PìÚ
¢DÚÄhÏ ¹›Åq	‰:AôM¡õ»¤nÀ,0NŒQ/N‡\}ÅŒw	ªfÀ5ÛKwE è#²©QM¯¤b	>çqÕŸŸªë3Ž¥QÆxÅFó°#´Ê”µ©þ¸9©¢:?¢EN1Ùd’ID:bæ]<¨K,|ÓñÜP O“‰¨íƍ†q»@Óÿè݇ۃf“}“wf»“nÃÀ–{ëqïåý,G8¦ ˜ia±­þ]x3€Ò¥M6­ÅT$Dƒè(y|
£­mØ×É 3aÅŽ|.F:|´`ÄÕ﬌50¥<›†fùããëH^뢒Þg\¯RäÌi°mèÔ&’†\iÄv‚Õ¦ÀÙì¿tª4.Fï¹j&–×ËÔIm©š’sY%íWVYmZji®­ëŽóåý^ÎÀ¥ÅÞø&­å…SÃ.ŒÞs·„~Ä¿ùÈA¿i‡nÞ“ú|r£Ç©ÁÉW¡»šx¦}@</°ýᇕí©ç¾8ØŸ69®ép!Y¶£ã^oú{ås•Ó{¹W¢1Åcwl
£FS%¤ä
yÏ.L“rH»ûò	‡N¶èc2Þ" £ßÞ!©˜d϶;F흎ºiÝ—–¡…
¬y­GÂÁ×rÛ¹„I¼DDz3ÐÃ×mA~hÝfmøJ­@×<d·7Ò!~‚¿ZÜn,«›à¯-}ŸöÉMtgq­¸"¦Ò̼ hi‚Hãšš÷êVe1Ï2¨¼S|²Uù!ƒß$K$ÖLP–WÒ"RÆFöö˜ƒåѱÔ\p²D
7B<͐“ù¶U]ýî_¼_×E¸	QÓ
2¥zch³$ñŽóÙ‰_:çÕee¥7©
x›.d©éÛ9%ç¥!°÷Ä)S
7ÐNZÛERÙ‡n«÷ú¼Lc÷þ §ŸšsüRëg¶Ú˜£sÖ¤‚¶ŽÅ|Qb¿¶‰TòßJ+ª	ÚÖdŽÍ¹„u^ryv±ÅƒïpÂïR_ÉÌNÉK
-dŽ‹¾Ê hg@¢Ê 9ñ9ljçqV—ï“~zJR¾¸e¸€9(÷ûy]ߝ7×F³°GjàÊc™ÁkÏ£à:*¨J-÷b?ß“s1Ìaä/¡ k»jç(Å·b³£/j‚º§Íº/Ç9<êTj»!4%ÇÆøcÙÎt$¾ {p÷|ˆXàA0aþõÚ¾6o¬aÇ֗ÙÓRË¥s‡82íMr‚’Öš¹ÊhaÁïè—k[,vmº‹ô]­ûk¦ÉÓÒg"{J0NU_Kk»E–êNGí8Õ"bœZR÷Hz¡!|©ÞæòjÊÏjTAµ€ ÓÒE!¿ZQ©®š]¯ì;’59 (ƒ¹þè3
¤ŒûJʸ® vWC³jÕ»&…_Â}Æ9ç¢zQ]Þg‘¹CcJS«v5ûlƒ-FÚsW̵{Â!_ÌJ)œÅ‡÷&ÑZ¢ç=Ýìê‘‚ÔÆóâÂg‘·€òæΔËóïó$—Ô„ÓîÌÙßG‚y8´YµÐú÷§jÇâå’©®–é.¹Ù·7¶çÉm±“¶TæùürW$=#٢⳵JâInùÃûš±ƒtjx–¼²»Îü¢XÛB~‹¯1ý—Éd{R–
2Enšf¿šJð)E™"áëÒ›E•^3A²‹m¾È¨†õm%§lK‹NóU+ÈæŠOëìu‹QÞye¶ªTxû`ÓØ ¿	yGT³æ„¼3¼dPè™”ýD 4°˜ÅºtysŠ.-7/¯=¬6æTLeݲ.ù4¢ù>·+÷¢‘0sÌ‹o£t~«KþÅ´%ØÅ¢ñ¦'b'ø@xŒ6Tâ‡1ûÀp;ûŠÝÜœ%án“ï1Öڍ³6 }1àµo©tܲJO¯¸v‡HJëµÑnVpµˆï˜~üîKÀߝmÅYýXx€µïÑc®’À7y×Ê'čt
^\ÛH'÷4îà8ˆœ°{k4á'Ñ/cÓ%âOsâÇWºˆÒ-ȹ>ÊŠqŸÓvk‰2<"ˆ×z	&“
-—‹ilñëèZ|X"ÆÆk†ÊwšG›+õ*ìñ€¹³(RÛ.-ŸŽ2ßuÌCOÞÄ<	¬ÚV²¼?ö'DmHIT•K’?o±t'³v cÖ>[ÖùöußWžcˆ’¼ñÛÂ]°D–#fÜãsÞ·æÙ"ˆ[:_}’:	“g·©Òu¿ˆ…Ò
-Å|#ÿ:õ9n‡Õì•™±Öó¼n/Ç«Qïk‘Q˘íó×SBÀbjò	E;&
¶ª\…p‚ŸPrŸp³ôÚI, ë,ï5›¢ÓFár‰­¢/ñÂ+D‹h.«©·}Ú&ªj	‹ŒºÜ³ØåЖÌæ½â½ÅpÞYÓës#Ý‹<)÷ˆ±E¬8kóWCüaKéËoKêV¸>á- at +­Fj>P5g^“•Ì¼µ)}Ùm±… »`K4Õ_(üÓ;:½¥U×ÚczïùîÇÅÎÅFk3Ö[”©Gc£ô-'hÚ¼‡Cû0OWäýŽ«JÈ]’Ä	ÂÌÅCBº€nÍÅø4M=¯¼dÃDíí¢ÍœÞi?Žª>`­C]êbSJUš°ô*s·7Ä6R«ùž‡n‰+¸x™sÆ軉?õ•7Z¬OœXñ^ÚÖ³D>Irq$²{œF©‚ŒmàÿÄɝi—i^­+ÄëÙe
oMýQÆæÉ*ËkÄÞÂ>‰ƒ¤‰¼¹M4Mów–~_8y aæmnãÒÔ38ç9M²Q>À˜·' Õ>#8G$b%tE‹¯¬J8ó2¢	³Ùq¸F'[<¹/$ˆäp;žü™í$´jª¨m®	oÈ}þ´q7&b,Å?ëµƒ¿ÑÕ7®+_Bž¶¬´Ÿ}ȸDÑ,grʪBh¥‚W:$ÑÝ÷¸Èe×:í¤|ƒÀ¸wÚ%AÆmŸÄáA`‹
-Ûצðù+ÜõÄÀB<_±dŒ‚¤|ËxwBÐj0e0¤ºÔ¥øbÙ^±ì]ÓCÛû_¡i©æDåÊ—)pkÔ^ºŒ‰àŸÐ6„(’”¡xōPQ½sçÓáòYý|[ÝMßÒ» ‰`fô<ª9`|'`“eÁcö‰wü¹"¾Ç-1‘!f†*‹–뢤ƒX“Rï>(FD¯ö™Tÿ=ãFŽýÌ9øÕäÄV$¾dÝoF^bÌö~95RXÂ^+iàå>¯÷4\9ËbÇ[9WdœªòœÞV0Èa¿òÆ‘Ñs¬óûËqF!§Gy¢ê’ê
A/÷21Ÿ“rús25¶öâó—éeÖ[D¡óÖn}Š©ºÒô’nù®Ó^#*e¾mö–’¾žŽêßÛ0A."ñ¦¹MŸÑij?OëQLÅJCä:9YL¡¬I·tš<­·!Ôl®Ñ*˜†”É…u±D+½<yGäâÁ»öZ“q¹£i¾²cc6¸:¼µ!lÄ£¯ÑU9X°eÚ*ˆ›6ØWñ6LÍóðò©íÇ·˜˜ëU…b+ˆFì6?Š¨°õ©æ¦]Kx\‡3îqQsËžÖv«’DYø.ò¸%NÖæGšÔÕ3U-VÂ)GÙ÷ì ¨pȱ~eå6Ä{dšuÌôâÞ©³	/“½9ŽÓÉ_ƒ—là3%ýšq}b¨ƒ¬æŒ=Þ¨6”|úÌY“7íSåÝpr½õr€_ãa<(eÞpi][¡I}§YQ€Ìà‡bíyA³$ïöLÏgŒðPf›Ó[vb‰’CF«ý]q¶àË}5IAéµ½"§=1ÒÞ§Â2|É„|Žì¶,ø•ý¼g#)Ö«¨mW¹Þš¾:8ÉD“¸3ÜSûsoq_†ð7w†îËH"åÏæðLOFz2sAð—¤SÃ-Ÿ'i‡$UXšÝÃ+y•Ü°Kèµ½xÓׂHœæB*<úóä÷‹M•Š~ö|‹„Ž¬;Ö£¸‡ŒÛÅðñÞL"ʯ ¶ª_âÉà}gÅMºŒÚž¥`FGj±E8-
t¾ÖQÆHøÓ˜NçØpGBd^šª!Ÿ÷¢MÖæK¿žŽŸÚ‘/]h|èITJŠ´j®”´zõH!ܧ‡%¼%=ÐOÔUb<e?ϬyëD›
gÛôA­èzñY¯¬š­\µÒÅ ÅFŽÞ¨ „d`˜L½ŠIXƒ~ÂÁ*ö$–ƒ×\ù8¤ê4º
-Õ'çM‹Š£Ýq™Lk¯…æV|œ.eŒÏ1'Pµý·G>¾wS¸?‹]F˜ &åõúÉ%I3€l.ÃWÕ5)ˆÙÿ¤)o‰7¨ÿ \‰]þÒ1çQŒ¨y'1è–-ӐˆdÙåb›!‚(	§ë©[“¼(>álÎ3|-NŒ­×sÎwíÉêÒ5'
?¼§®2ìˆ"RL(]²¥ï/ò~ã ¤=j¨X½ÊD™¥ݯêÚ®EKן/ïzw;%ï‰@ô]ìÍÙQ¿pÏá7iìÄÂʯi.Ò—ß“ŠÃ¤1X@užËéÖ1½²³ ÛÜ锧c»flo#¶ÂBu	ZDq,âˆtG«~§FY2òðË›2\âàzÍß®WUMX[â͝†vGßë¾$¸¸œc¯ó$çþ¥ÁΚS‰´
-Þ(ŽˆÀÊ‚>£Y±‘–P¢Ž¦ƒÀJB.NŠ`ÿcn².ÚÉ
qhÿNÁi’Ä#$|]5¦Ì²4ø¹>Ñ(h÷ºÜ&sO©±Â¹+q8®a[ý€Ë<åõ:Î#³@®¢ì[–ÀÊ“a–ÇOÆŠk5Ãë¯VM}æ×Ë=Çç• I	Kò-ÇBä=
-J_º²Owx-^{\›Ô&ç3´'}»»Œ¯Ê,}NØ“ÁÖÇÇ­P­ñÔ%ËýÿøÀøßÿ#
- A–nPˆ“¥›Æÿ²,4mendstream
+xÚí”e\Tk×ð	é)É¡sèF@Bº[†r``JRº¥[R)A¤»»[%iéwÎ9÷}Žï}|ßOÏï™=ö]k¯ëÿ[×Ú›…AK(k
³„(Âœ@~~	 H]ΈŸÀÏÃÇ'‡Ë‚CÀ{˜“<‘ ð‹‹ !–Èä_BXH‚O— ‚9{Áímí vÇI¢ YGÜÞ
+ìP#ì ŽÈV`(@feAxñ d¡P€ÎO¸t ®¸;Äš—Ÿ`mo… XBlípyÿpRv²Dÿ
+[»9ÿ{ÉwEJØÿÔä  %­aNP/€5Ä—W†Ü
‚tùÿ¡õŸÅÝ P
°ãåÿìÔ­ƒí¡^ÿÊ€9:»! p€:ÌwúÏTCÈ_rr0èm£Œ Cí­dl¡ ß_!{WE{Oˆµ–=ÂÊ`†ºBþŒCœ¬ÿSÙ¸?xådUUŒu¹þu¦.jíz^Ηý#ûOæÿ‡‘݁Û{LùíåG&"¯ß½øÍœ¬`ÖöN¶ a {á"§I o~€½“5Ä ñDóò8ÁÈG È–øl`pÜ?TˆÀë†Cœ ÄKEùÿýëøþx­`ŽŽà¿#" ^ÙHÀú‡Ä ¼ò“¨ €WùoBŽï?UÄ‘™–ÿ8r—¿‰Ÿihý"Õ ¿!²¬íoˆ4´û
‘zö¿¡€×á7DJ¼ü
‘Ðß©áø"Ϗ×é7DjÀ~CdÃ~C¤•Ëoˆ´‚ÿ†H+×ßi…ø
‘Vn¿!ÒÊý7DZyüƒH
¯ß©ñê7Dj ÇìúWKþ{Jåä`žÞ@AdOÂ|¨Ä…D|ÿ¯L+78r~ÕþÍ6öÈWñ„Xá.̬$ƒRëBKü
+ÆK18Qålëã4ªÛ§Zð‚æãQ¡…ƒª.œ«ŸŒ®>d<"ÜÂØ¢÷¸¡vüì£=¢xøÚ%.mænËÝb+ãU#µÑI†º×¦3ãEÐQsÝôÙaTÍÉÕ¡’$ãw=oz÷ò´Øåõ¶±–P:LÝk:2ƒED3 úa!ŸXtˆÓ\JÂ…ÂV<ˆ“¬Œù9„a7p-Ã>»‘\`ç&Þ™£\ZaFE¹R…Ï!ð÷©e}×jDâ¡_³·ËrêJjGÕy+¨Û7MÖ¹nAžçÏ™¾6ÕÐ]}•_ø@ýd¨7/Õgp9Óz7D	¬üšžzb=Ý‚ƒ¼'ôKè	Îøô€1V@^6¯£R·¬B×î!lS3¢?ùÕþ|G¤ŸÛ˜sc³OfU¦`pÞëmÕÁ¾5Øú~<ÈK—‹Áº«:C¡.µ{Uî¸ôMÀEÃ+ëJy>/ý”'Šƒùs€ìñ–ÆèSÝîÜön
l(<9ɁŽÕç Á7!Qb##â )îc6…<‡ãû£ÃV+Ÿl
¯iÖi§†N pŽ<¤ì<ÖPBÖ>Ù´¿*´y𸅈ð´G*Ÿ?*/·Zƒ½©w¸DÚH¬%xà¼á‘k¿hAï]À³|û݃Ù466½‘Q+
+K¿ÀOø‚3[¤N('¿=³êçHZã°ÏL&oÛÌÖÊjSf"
<aÇäË40Ç%òQIÿ!útÞu쐇9J~ð‘bbQ ±ú¸=—z=y÷ȏ„nBùÛÖ‹Ä)?ëšž°ño_¸x	•»˜tI¾ñªxª¸5òwžpâÜ€µJCplÑéSà‹nù+K°iûk×{JŒ–›AÕ‡?	^N݆Š_îŒ3›*JAr¹Yû‹8ˆÝÜSºŽùåçw
”_;”ƒK”»Š˜>Ô†¤c$žà
+¼ô#Ê-ÑýFNPïrPT!ΫR¼º~ÊÃ×¥î1€8b-HF;g©*­ñº¸*Ðñ*¯±+dneakû¹¿nkKåIW›lÿu|F=öjýtÿ‹¥—‡C™Ü–ˆÚkçÀVØz¥œò»`ü‡—æ‘«÷p
+ésÎOçÜr~¦Ë¨„”ÖteqfG—Ÿ°1„ŠŽq²Œ”Úçy	C­H¬ÖIÖæÓãézæq`5YòjÇšm×ÊÆiO›x¥hHð
ý’6ä8nGLÛèaŒéÁÙÙ®;U±ÏWðz‹2€U÷ºIz;?'ÞŸ_·'~œÚôrÍÅÁy¾ÛHÿqR¤Û_ARl	Å6îûžYÆjX>%=­ã· +
+òNz¢dL›2„(}Ôóð˜nÍ&,	8%ø'Ú˜¥U_RåbQæÎÇöÏžrjDrÇçL·œY8ÊÚ‰ö’Or{vÄ.½Íx³– Ò.•‚
+h}Ù“˜à.•UÌŸüœæ‹«0Šûb&j	¤øµô3ã@+b%Û×®ã&Ø9ܨcÙÐZ¹Ûø3åöÅëÅºí¬˜Ë§Ë5F:Ž6Sôœ/VBÇ»G¹:JèýèåkG\Ò½*D¼ðí·q+±¤ 	'Všób:…òz¥ÖÒ‘¹Y©‘ü•/ñòëŠÝÉ¢Ë#i!j¬A;Gk–ëÑÇ?‚1̾2œ[ç&‘E’YÖyøKJ“¬äï
+GLNªVv°‘%ø¹$bSsá°1ß‘¼Ý†3AZZ›4¨Rß5<ek ’¬)GïîW Õº*¥~•%e$>©¤êBóîÍs¼ÑcÁ5ŽÛùtxÈëRx Y6ŒþÝ—”„ô”š»,ŽÙ±¤Ãíõ÷sÅ”ÊßÆCNã™ågT4ôž”QãÍÈÓÅj3ûåµeèëa7Ð^V}  1ä$žêßoÁ¼¥Ð–Æsv®QzÙïw—öǶ×J)ºËnîâÞ¢ú“7yTŸ¶»§cˆ›ö9Ê1öšO¬eóv²Z$B°Ã’æúŸŠÜ†t3ÂÙ‰Òi§p˜Z.*^åܨÕ4Ï7ÃÅ5ÏD£ŠÇ2ÎÑ3\©‚Ñ]Ì+GÊ=x­ÆhÖþ"ÜLµKµ0~ÿ¶Æ;‡ñöÑ/Ò›2fsSO‡eØwm¿¨:i7Ì*ßÖ`9;nL¤.m˜Ž“,?ûö¥Á»ù‰oxÛ‹õ;†À)›BÚòèq¢JåCîéýgT`ÑÂFò†à‚’Òǧlä¤ ÖÌÏX“Ãeâùo*Ò^­4NXÑgóÉ¡O¦œ¢¸[E~Ëm)ÒȍcÄuô<F§‚ÊŸLõõæäÖÈâ^`)RölìŠP‰àÛnîï5ÔÎc¼BO'V81œú÷~þÕŒZvÐÕ•!gð‹µm!j_ZLJÐËõ}#SspD
îL!ð
+j—f‹ýv‹ã¶IkICˆ–fW²eì'h™
+n=Tˆg¼7øª¼#¼²Ú&þ…DåÀ•¤müÒ¯‰–¸ãd	PÂñôü[“6B{:žÃÌÙúù—üùëcÖ÷]‡—cÄxaÕb&ažÏr¬ځÂwÌäkügà¦H}âì€fþËïxRâÍ)U²O¤·Þo½É‹1ª@&ŸÉA™Öý+¥z«h÷†5׳1ñ0æÊyæF[|
+®à¶á›nµ´ˆ7øn­°!yJÚÝÈ_8jžÚ>‘:–.H9Éæ4ÕW!׺!‘õøâ•Äo%?s{ËâF‰¡ïÁ8ú“î§Ý¡ø¤¦„³26NB'f…Tu‚¦Õk¯Ç^ôü{iñ4pÉØZrÞ”8F¯wîŠóRÁæïž<¬ƒÏ”¦q¹tÞ$S?)j{Ž¥˜%œˆ~ÖAzvâ6ÿlÌûÆ2œþ@tsLx/Hß0ãø¤Ï™ï	ôó&Q±­Ã¢¨U9…JŽFၹaÊ°éüû#'N—¬|EQQ¢£M·£b˜‹’Œñdÿžè	m‚•±«;zxÞ{ JJ¯¬ž$ñƒˆúíû2ݤæ!ÔU¶y!¿ñ‡_à3ã`êx¦È•-¯ÅNm\þ*Y-úZï¦:‚”ÛyÃä"iÄž|¢}׉—‹¦Ù-2#À§»Í¥nôh²Æå)ÚUÒ:Ào-¨#û
+ÊLêØÂd›ðm¼d{0«Œ×[Úç›þ“¯æ~ª|ëÚ'ὂ›õ^ß}	­§i)71¯ô›°YÐj>7µe,´Ñ—y’¿Ü¤h™t»P;ö4Žª3&ç1ÚΑ¤Ã¢žIæ:þÃÒ‘¦ñ“i‘õ)Á¹À½²Kk—.0©ÌÚ¼š[C"šÁAJè0Ñ3-ë÷}ûçï‰äÑÓ˜#ÖÔ%¬
ÉÃ?é;ÌŽSLÊÊ(» ý_1â^êbâK‚¿só¼úÚÏ#7I£}ßwU-”’ÎÖ}8”«šH³’©Ø?®mÿ°ªÛîÛû‰ç1pªãmø·
€K çÊÓyh¸}îY¾ˆFÄP§ø¢»¢·ørÊÉë/­êqÒ=ÑÇe´ †W5Íýzù(™v*½añ'*φW)gごֳˆEš½E(‹ì1Æ‹]vìu­úOÉ nDæÒU˜_nkTä­­ŽîXÿ¾ß!üôWÊ/é«]_J›Kleÿ̵ãÙÖ¤Õ…wÔåw©ÑŸ…“EÙÜÚâ0FÇ…k&%\s÷Í0ûû§è=ΙՕ›Œ«ßGqš²q/婽P«müdðbµ»6@´µ	ÖN	%°Â¥ò˜;£v+µIL®¯õÝï4’z5ŸÎYfƒ›IPq-Û +ULhURù`RŠT6ìKÑ7Ÿ¹Bα&JhFPEo¾ððbèà<.~ŠIT¹Ö‰þå¬W`-ÇPþÿ‡ÄËò]Ó=kH• ÷¢1ãeÈ€Hï§K¥(q?Ë-±œÞȯ»+¢!®Äµœ…@åzٱߘÌw=9ê¥Ø†i0#Ä•¶¤GöKH¼!ky‡pÆzn{'%ÚkÈ?§ó„ïÂðÀ¹`.z”«Õ=ôcGùWmmv.–z/êêü=õÊ„NŠ3t,"œÏ;¤¶ÍÖÕDºñ¥„‚Ι}&S¤ï]+Œ±¹Æ~9Ǽ)äê·róD³Oz*:ôÒCdü,4òñ†6g¯Yz)³Ðµùd·ÀHQ–PQNÔ“ÞóðqaÊøëH]S»‘¡¯’ø="Þý"i>­#®a(GK{€U;“¤ÖuuI¸iC'×½·ë·Ì»‡
+gÙÉÕ™•ï΀ué“ùSôRí§q× ü—Q)ž;
:mÐ{’á`Fìå¿oÊâ¦Î^Ã7ÑI¢…܁Ø-Í9Å'·1íùk]À‰Ob¡Ü=ƒÜzµ ìøŒKV “—³ç1çRyŒ4iß\H‰ÔI”ÙÁmã
+{D-(}+)2<ƒW¯„”ÜOK¸ã=î^ÌLJ=u#‰óù™qÊ!»ÕÌ/Ã#Úûñ¶ëa£Ð9ç#,N	þÅHëé%-ã–9æ¤¯ž¸ÖTWeêg芊>N# u”Ü´<1;ã –Pf9~¿b`ˆ½ŽOÛ[•Í
+ÃK&ãˆÌ!O¶ƒð>‘l‰¥4
+.UEaoKâ!/|@È„pÍÍŸ³êNùri”ÿ‹"®µâ¹Úí$ãzS¥,4m-S§‘³½¡“[¥ Óa5â§p¼Z/"#¼ßª—Bû²ü";ÓÔ°î ç`UnûœßWÛ3 (DkÏZÈwBØRgKÈiö£Âµä{ÍK¼‡{æUR8ª¨=´ý¬ÙŒGvˆ—´.vQ‹2‡DT~à*Wž‡Ô™qô:o•"¾Ï£È¹UŸˆòVÊ75ÒÝâñ3Œ9Ž_o[ˆÃXD3Šëb×s;âNßJâ¿‚W¤µwù …“c–ÞlLj"ÐÖª\õjŽ~®ª¸dgÉÒW=\:Œ?x›W÷cåWDT}u at MŽ×LNVV%ëö§6‰©…ì³s	»²<㎱gq nùÐ](|#æÜÄíÓÙZ!ÃwPœMpˆ…Óîöûæà–Ðb`!‡âŒ<ÔwvT‰U?ýÃÝpßÍYª|zù/w_Vröj•ŒaÂÃëêäc)3¾öëø~âûO85ª}ý¼ü™¶GŠ3€#>û£Zñä2’‹÷Ü©ñòÉ7V©q¯q»›¤ÒÎG=Þ®Ý0+Æ‹d@.¡ç‹»xzK°Å^eÇ .*#õÙ¹ >w¡ž/7Q¹’ŸUÆzî^>N™õ“Šž…{g&·•›?¶øVµE„Jw'†£ó”v7Kn8»8da@œÍP´zœªá%ÆGøm_#bVý°Z01Ê<¦¡Y›õët9Te›cß~WÏL`Ö¢qöYpYÑÕ˜N8%œ,ÄùM3õ‡úsà£ཱM¹Ç4ïÆÇ°adá,’€”Û\Y	­E~!ÖÝa±æŽ™Éu1œXOÓ'ï~Q6LAOb–rVÈu¯›|ºj|ÙQt•ê8q/û ‚Àë:$£¼‰}ÌÜoý´Š†p#5¿‰~rDË8t0’vÙãÔí¯7̉æ={§â¿ûXJtêÀþ=H†zƒGNPæØ…öí½í÷G	à€­Ú	ï`=JÆì&Ó£æ§=¦ &Ô²¦0Î-U‡µª
	Ç-1îãdßÐ>£»È´•ã
+öý¤(ž)ž4ƒ£Ôýg-Zñ5û*tëŒè½!’3[©ÐÒ0&ÿ‰ˆ•LLåï*9âëfYÚÑo"S
+ÂShiI˜ÃXU€ÃŠ	Æ4£
+Œ9¾6†¼?Øs…
£‰TüŽM‚/‚Vµö.ΟʸoÔ/J˜YžX	”ý¢ï;4®æ =±{Ùð•3õÑÙáx#IR°ËÑ<çÑp^¶²³®9[´69»ðǯF¦Ò_|—z‚u/’tV[VI¤B‰h•º÷Æ9úÔ+|Áãêøqàá¡)óA2ª—YÔDS‹OX°œð/âõ)=­s†hbƤ§óÙóêŽ"ø.ûç¾¾ÜY,*7]`XÃ,r‹ß¤Ñ!3$(Æ”üNöè€Ç6ç0osÛ Bôj Ó¦¾*Äu¸)yïÊ¡óÀ(3Š²ö`ÌóƒË Ëð•¿©–Ú÷„
+ûDmœïh@‘øŸ°¼ÈQþfgKWàê*ÞôD³ë¤cZ“_NâÏòò¹¬øö¡]HÙàfÅ5¦Q¢ÉYõ‰;{œT®ç¸li9΂•Â©èÖˆÄe¢8:Ù€NŒéÈ5¡]…Ø`"1؏bÐ(¤o™§$f7쬞´}3Øp€g†Õßb§Uú™™ܧڞJ¦0Ÿ¶üšx³æ¨=äޏSRik>…ÃŽ
uÝí–@×c †MÍŠ(Ä]<
X}ßý# :Rvóþ°v™RbfËDyÜÕ«¶è&æ=¥}‘‘/¡k;%!PN§(j³ñ _ËØ)RX6k›÷~À!±p
Ý'ºþNa'|¾T,Ôä“ì3\ú«V—Ûè%š’–¬Ó¬°XÈÉ]kfñ÷;y!GÆ"ÕI½¾­Åµ·½¸XCE8'è²Ôx~ù…¯¥Ä×ä¼f’8.é#ÐF`IbŠY‚Ž=z¼ÜŒµÏ§¯B8§ey0õvàQݼBãá]qO;æh4áá;ÏAÒ1ßÒ—u‹ÙÅÄYh‰¸|/Þà3{\µ¥ƒ
QýŠí0ß2ü´`ZnÉ(õ·ÀQ·ZwrmE¡”1“óˆ·Œâ‡bDfŒÈ	‘ÊæÚD»à€ü¨qkx¼¨öw~ʘ2Âl»ýý¹Œ—7ôÀŸÞ=¬[Ä1ÜØé!ºz”¡ªã2WÄWDÂÌI Ðfôaýmø$‘Îa<:šT½ÍG¥fý R¡cùš$³
î×ßc³i~væ×û€èW€¶ó5&wÙXèüˆˆC{Ã?[ªÕõs‰EQ>Ð	ÓÅ]1‘u²¾Î½ó@eï«ûÅ»:±°¡¡ž!–V“t½T"c¦%1ØÑ©å>dþ©Û_õ€É	§@…Û¥ŸnÙ?=*aªo¥»+!|ž~ñ\c<ù
_Tà.Jy_ÂÞpí(¾g™à†¡¸Ä7ég¯'æ†1k®4SïèÛ,±I|Í©{lCÈ”mDp)ÓªívlOÊÕînÌû€Œ}ö7‰JI/ޏÕjƒ×¼e|‰ÈKš¤?.<T	Ð+¥ ?Ôÿ1{äHÊ6£f˜¼KrqȽv½³ŽA+ñØ–À·PW7ÿ•’µü¾È;La¿jõæá§A²,ÀÒÓs¯®`IFˆGìÃ­yÓöÞgj‹e¸+z]}a]h™KZ¢±¾‰ì•Ä÷ËCûÎŽÛHâ£ù¦sy¡z
+‰¦óΤ»ŒLhKC1b—ªM»Äƒó@†€$iRÛ&²Ö	î仏
ÞÜzºOÜ….ªfD”>xÕj¤ÈªÐ´›!Š·ÐѪzT°Ú¿Îp![îk_6R–¸„úüqW5K€pû¥Þ×Ç„ùµÕª{Jì°¡ÕoÌg¦ªÄ>–C¾’Bš|aÞv|KJ
+CÏÛW÷
´ùíŽã+Ü
+âÅ¢»bJc¾ ¡¿ë[š‡NˆÏ/o÷سõPrσ_[
mV_,çÎMô&!ìÈ}ÑÌ'÷qÝñc	¹ä–Sûd÷öç¿s¼øÕÏ®èF{øà»
+¯{y!”ʧpv1tLïÍÛbÕŸº²†“¯cÄžù´¶IWÓÈ0|ÙL¼c× 2P½–܇3Le¢PX#—á`£Mɤ…¤d.ïú6p´þ~ =ºïµú«º²å.’½‹ØLÊT“}_ìx¹òˆ›ryšÌ(šŠ™;D–µô
+¶èêû؝Mœ+…î‹0G“i¬|¢é~
+Šãxôœïdø‡¹$гâcû¯ î5Õâw…sBê[¹ô¾3QìLp„ÆÝówc%»kØ +},íÀ)µø3gñÆÇè.·@jóѝzWFo“Ê|6™vDÓºtD1óɢ¿ÉÛœÄ
+j„A&§ãöŒG›%äMˆ'¥pt/j’èÚ>¾ ¾*fâÃt“h¢¡ÀæjðÔ£0Êv¼ùŠ	W8
Ÿ}9卒]šR¦ÙìÃ~˜ÝÅk£pÍPUÏuˆã†Vµ2òUB©rçY7…÷ÔÍrFú8
+ÖÏ„l"yiN
+L9áÐ}Œî»Ìˆ[rª”8´ôÒëMÉÄ\³ LÂä_ZÓë2ýá›´·¨§³¤ÌB’¡<ứ¥vš…j)Áó~½£ÚEfa7eÏjhöŠ8•ñ™ø« lâuÓ%³bŸZ%:î1ÐdÈŽ#Ž¦&V«ãUc3Ú¢ŠÎpT"¥­`ó}»Pžy¾þÊÃaa¸Ü)‘¬[|áJÆóE)ÀfýÊU…?`õ7¤jôës‡õi综ï汉oŒåò אo!qÀÓׯØ{
ÉÄ·àcÚÒòÄß4O™–tè¼Ä4±O™LÏ_ÜéÓ ßOû·=iÕš'È‹Zeˆ 󏙝×Öл]Ö˜ŒÞÎ’¬ÞÆ{†^?*©eÒ¬­§êÝïes#Bì	dêc74å,a¼–éP
+'îÓsSÃãæzÛÔ——Î:…FÐ2
šf{HòI'„É)JÊf¡mÕÃ3Ñ„/zHyÞ@Í÷ÿøÃýßÿ#
+XA!`8憿Äý?Ù··endstream
 endobj
 92 0 obj <<
 /Type /Font
 /Subtype /Type1
-/Encoding 290 0 R
+/Encoding 328 0 R
 /FirstChar 40
 /LastChar 123
-/Widths 291 0 R
-/BaseFont /NRMOAC+CMBX10
+/Widths 329 0 R
+/BaseFont /BAKJYS+CMBX10
 /FontDescriptor 90 0 R
 >> endobj
 90 0 obj <<
 /Ascent 694
 /CapHeight 686
 /Descent -194
-/FontName /NRMOAC+CMBX10
+/FontName /BAKJYS+CMBX10
 /ItalicAngle 0
 /StemV 114
 /XHeight 444
 /FontBBox [-301 -250 1164 946]
 /Flags 4
-/CharSet (/parenleft/parenright/asterisk/comma/A/C/D/I/O/P/a/b/c/d/e/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash)
+/CharSet (/parenleft/parenright/comma/A/C/D/I/a/b/c/d/e/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/y/z/endash)
 /FontFile 91 0 R
 >> endobj
-291 0 obj
-[447 447 575 0 319 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 869 0 831 882 0 0 0 0 436 0 0 0 0 0 864 786 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 559 639 511 639 527 0 575 639 319 351 607 319 958 639 575 639 607 474 454 447 639 607 831 607 607 511 575 ]
+329 0 obj
+[447 447 0 0 319 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 869 0 831 882 0 0 0 0 436 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 559 639 511 639 527 0 575 639 319 351 607 319 958 639 575 639 607 474 454 447 639 607 831 0 607 511 575 ]
 endobj
-290 0 obj <<
+328 0 obj <<
 /Type /Encoding
-/Differences [ 0 /.notdef 40/parenleft/parenright/asterisk 43/.notdef 44/comma 45/.notdef 65/A 66/.notdef 67/C/D 69/.notdef 73/I 74/.notdef 79/O/P 81/.notdef 97/a/b/c/d/e 102/.notdef 103/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash 124/.notdef]
+/Differences [ 0 /.notdef 40/parenleft/parenright 42/.notdef 44/comma 45/.notdef 65/A 66/.notdef 67/C/D 69/.notdef 73/I 74/.notdef 97/a/b/c/d/e 102/.notdef 103/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w 120/.notdef 121/y/z/endash 124/.notdef]
 >> endobj
 88 0 obj <<
 /Length1 1064
@@ -1702,7 +1948,7 @@
 /Filter /FlateDecode
 >>
 stream
-xÚí“e\T{˜ÇIAÁ8(0¤!Ò)Ý¥à #0ÃPÒ‚€€€ %¡C‡„´„H‡t·´€””;z÷^Ý»/w_ígÏys¾OüÎï<ÿç°³jëñÉZ£¬àJ($†O_P×Ðù@ììòh8ƒ@! ¸ (..ȺÚB€àm	aˆ„ˆG9y¢¶v€Kžûg‘ ëG#`P$ ÅØÁq0¨ ‡‚!àO~@ÖÁÐýÙáèÂ]àh7¸5?HP°FÀ0€ÜREÚ  ±¿ÂÖ®N§Üàhœ)€g’ÀY´F!<k¸
¬‰Â½Žsò¿aêßâJ®šPÇŸò?‡ôßÒPG„ƒç \1p4 ²†£‘ÿ.5‚ÿåMnpuüwVu@Àd‘¶p@à¯ÂE	á·ÖF``v€
ÔÁþ+GZÿÛnn¿,€MåMdu5yÿ:Ï_9m(‰Ñ÷túGõgñ/ü͸é €™ ¿€€ ®wÿýdñ¯w)"a(k·¢·(
õá6G¢€— €@ZÃ= ¸Î0˜‰ÂàZ ÜL| ôó8En`'Ü™ ¬Æ…D! †rÀîß1 ¬ô›°òoÀª¿	׫ùAp}Ú¿	W©÷›Ä °Ñ?„[
0ô7‰ãüC‚¸Ãÿ@! lóŠ`Ĉsàð⤣ ÎòÄ)£þ@œ²Ó(€Ñ nT˜?gÙõ7
+xÚí“e\T{˜ÇIAÁ8(0¤!Ò)Ý¥à #0ÃPÒ‚€€€ %¡C‡„´„H‡t·´€””;z÷^Ý»/w_ígÏys¾OüÎï<ÿç°³jëñÉZ£¬àJ($†O_P×Ðù@ììòh8ƒ@! ¸ (..ȺÚB€àm	aˆ„ˆG9y¢¶v€Kžûg‘ ëG#`P$ ÅØÁq0¨ ‡‚!àO~@ÖÁÐýÙáèÂ]àh7¸5?HP°FÀ0€ÜREÚ  ±¿ÂÖ®N§Üàhœ)€g’ÀY´F!<k¸
¬‰Â½Žsò¿aêßâJ®šPÇŸò?‡ôßÒPG„ƒç \1p4 ²†£‘ÿ.5‚ÿåMnpuüwVu@Àd‘¶p@à¯ÂE	á·ÖF``v€
ÔÁþ+GZÿÛnn¿,€uLLµuyÿ:Ï_9m(‰Ñ÷túGõgñ/ü͸é €™ ¿€€ ®wÿýdñ¯w)"a(k·¢·(
õá6G¢€— €@ZÃ= ¸Î0˜‰ÂàZ ÜL| ôó8En`'Ü™ ¬Æ…D! †rÀîß1 ¬ô›°òoÀª¿	׫ùAp}Ú¿	W©÷›Ä °Ñ?„[
0ô7‰ãüC‚¸Ãÿ@! lóŠ`Ĉsàð⤣ ÎòÄ)£þ@œ²Ó(€Ñ nT˜?gÙõ7
 á¤<áß99”‡Ÿ°0À'$* ˆ‹ˆb"â>ÿ¥æŠFј_¿n¡þfnýàp846Œ‚I=L¨x‚õUÌìË%æÁ—³­ŒÖ,kü\G8úß!§CÝ™gºÔø8/‰Žr™xùºû)‹ËÓZon¥¯ÎщCçËn–ËIÞ³ï&ix.9Ý8\§ª©ÜÛÅטîÄÆ™dµ¦l\ÏÐæRÐÿB2ÉŠ÷ÁÌí݇ä ÛbÆJI!Á¥¬ºÔ‰ÎØP‘)w긢©Þ@߇!¤U¼;¨ZWÚãLÒôØó$÷Ó3@—Š7‰‡S²X„J/2{س¸ËÌ
 <´§B‘\ßQã@vâ¼²ë}_¿#üºbÊädRû‰åÍÞ f颏û\Z›R0™àjÍÙÓ‡Èøø!W<¯ïRYº[wGï斍MOñDÅ·Qš-MÆÞX¹úã>;Å:I›•Ö~òý]“¹Pà·ž7ê=2ŠSÞ¬jUÝÜÜÏœõ‡Xè^RnÎÍ‹¬$VuEVGî)©©zcÙò»î)¢"oùÞŽ{h¶£Éÿ"ñÅa»–*Ú°^Iíæ“ !Θ›*ˆµ¹œÑ‚½9Hez rÀ¦ÞŒëº!².JŒf at O½ØMÎ:¹È͇Òà™ ¦‰¬âcÍÕ™r&®ÏUß‚ƒ ÆM¯’šUÞ#øú	.#¼øÙ›_ø¶XR¸Í*¶BY‘ÛF´|3}È#DF¿ä”™é5C²7ǽƒþÀ”š‘§2Pª[ÞàÙ´ãÄ?M‡Ø•¨·>Sæ•|#$»VK“-–L[sWæ¾Ø¥ËÙÒØa(f“ýõ’>lÃëµØ¨.¾@ûÊø‰¯â„>ÏZO]½Û0œÍ±J8‘Òý…#¼SQüÁÿù\É‘Ð0J£ïfÿûm¬å!Oãu	ˆP·Ý‰Uhv‚»üa «F¶±ùЏŽuPÜÝùë,uÉûÜçyLUÈF¨t‰¶¶ÇÕ¼0/.`~©£#Êz î·VV Š{Ë'°H²`$Çe>å|LäwP|$™á	_lš„Øa¤&+fñdGHïU¥%àùòÇ“ƒÌõÅÈ⌘¾öÙÖaj‰cð]ɽÊüF؈œbÕWÔÊÑY'5#õɵrKά+“¯4»¹[;ã—SÃfJÉòÙG`áKåAMíA¼Öí±Á´w`á~ƒßLKç_Ú*m†vØ¥'\Åb'œ_èq33@ܤ?r°…SØgê7ÛÕk”sw|Ðx]œ¬Î”	¶V­S͛ӐÏÏ`Ò}ä¸Ê;EXêM»ÞeÒ4HÝñyͽ×_‘À8/€òœÈ¼Eg-»ÜRè/±i2ªh¶šêê)§Ô
 ~áøµ`ÔÙÔÝñ‡2¹íˆÔ׊Š.Ãy³†3¦yä—àvÍ ^Sy¼N»Ñˆéa)ž)œvÛ"aجž–ãͨkÑèÞØŒqHR³í„¯6)]Ç·¹}þ=šjë>]©S¥{×W÷"S³™ñÑEŸ<:M–{U<EpEY±m’×\Ð(‡Ÿ`Ì–î¯t¥á‹Y(ÑE-‘¹Å­úñ}É
O,½á¼âù%ón
@@ -1714,23 +1960,23 @@
 ¯^—[XIÈߎø¬¢ä{”þµ¦q]ZdZ4˜š•¨XxȻ݃Ö[›'T~l»Að¶õÌÈm­¤(¯Z‡Þ˜½˜jêQÌ!}~ݵ)W¢.XåQÏ"×½/“ÝKS“
…Ï=øòëîkº»dŸ_XàÎœÊòO~ù¾«2ÕcÅJ€ôÂÐà7^Ó¦´ØG««ÃJ˜Çr
Ó¹c¹ö¯2µš“T"0MÏ8Ü›³úˆüéOVú½ÐœúÆ~®´ófð ¶<^N	Ç4FݧòÊ{XË©tŸ>—G2D{‹[©î¦¹!%Ùš€Y×@ë½kj#ÌÎ÷.÷Å1¶9ò„÷V-QqÜù$ª4—*K½$æ§ïã{ÿui<;©¢Ï§Ú¯ÔïPæk¿ägû" ¾û9ÊRõåЮ•ö™¥Üûò̽µ¯XUHÆG¢)b@@9Tß^)ð"ͨì—äúˆî;õ4 ­MµQû.¬1”¶“g1¥O¤í6Ê‚^€ŠÉøì²d%(›”wÙªöÉÀ¨Uú61ã؉0¯mOÀ¯Jä}KK<¾<&‹¦á.Š60Úãï	[ÄÖ³ì‡}]qê>àé¤yÃ,Cá"ÒšÙܲpË2®xl`£<ëûrÏÓ
ƒäš$3>
 H*	Šœt°ž²Õ^<­P?°õ؆ñ˜)úóüUÆÅêĪ…8Â-·:g¬€¯ÍØcÄD_utj~ÑV’˵À™aõ–•¾uö@ý¢³ÛDN!©L	A°­Áè´Áw@î­«—s£m]Y¯v­U¿æW*™&²ÜÈzþ#ƒÝYÚÑÝq^&i…FpÿÞZ•lBç"‰¯»Z?¼^Ÿ(Q4Uw6§(Ù}cÍŒÒpýFzTdiqó™!¯¿Ùš´Tåu9‘2„|‹·ñ’熞¿ ŸRšTaûLwˆ]úQb€y>/‚tocp$|†×ᥬ3v)
%Ñ 1×âóž¸C©-½dàÀ†ªÔîýlÏâ¸Ò«9œ^y5]Øq4üÚañéÅFGÕ	[òÈЦ8òê—Ducï „øëg°i_¸lêYÃÕgÞþR<ó5i>Šßñ¸AajJTk5[Ìö#’É&ÆN,`@â8‡Âý%ÕÑwž®§]R¯Eί/}¸ŸæåÂ,·>ø{Û8RfäWÉ\iûEëäÔ[ò•<=lõµ˜vïòwÛÚہµ£.¥‚¡Ã›“$œêéOý6ŸnQæd6©÷ö˜—äÓÆ68ßLJ'ø J-Š’q#.G¼‘­ÂÈŠ-g}3þ¡Ñò¹‘ðûã÷öúÎ'á*çRùç16>·«ß†ižHgÏò>„ó$¶·¹sêO'ۏٔ§·¥zÇ
­¤®¹îÉ]ãP“ñ¸I¬…­Û4´”m¬ìà	›nØÝ©oáÿøå…ðÓ1†ÓçÉšeIÔdF¢
×͐SØå9P,t’Ímµ™Ei®ué«giüï!5{Az_®¾Ú=›UÊ9Ÿ¼?¾þÜ›–ŒíŒ5~Ëd“)çá_Àìñ£ÕE$îxõ
•áŸÞÅnŽú燺ߝӞk¶É}¢¾‘òhú8ò*„›2T”3àÚCF¼È|tÔ)í¨ÿ„ôßæ+{ÜÙ‹aL	¾AKÏ«G¼œ=k[:œZƒŽ&ÖÓÓ¤Þ[ILH~”Ï6¢±f×C¢p¬²~}(Â;éÿŒFF”Ä­TÏB<‚ÚB´Ø
 !à{²cwí.|SˆXœ©W¿™¡˜­2×5ÍËw¬î`Ï:畘öeéuq½¤gAØyÎÖW½oËÓçÍÍtElHdݪDÂ$Lé¨èA2Íi
-Šl<K)XÌ»œÏÈðM&<ˆñn'Æ0uËKW'f-ôw«"`W¬ó¤.öí<š*'öÈÉ}Õ+N[beÞ 6â Α$W*€ÈDh‚›\9é>µnLˆNn‰=É÷Z1Õ^EÔ»1¢ø]_5‹` /Ø€98ÿÝJ‰ù ëƒY&³dßl†L-ä]ûZ¸¿ÊHF¨	ûÓÎÌì÷逅ŽE£Ó‹òÉ&vÊmòž=½Ò“VâÇÇ™Øgoe“ï_ò®ý$´ÛöÁÖ†$r–"gÕ«óFuªÄ—åóþáâR@ÍkÇïê2`-ÆÂsÕš¦b;PG¤¾f?Ä­É«´dd>âÒ1så–ϸaُŽ¢Ì–™´ç—“ÞŠw¶Ûî<º½h"ryg˜úäÙ:©¬·òU2;Ÿ¯/:÷7¤¤ÄãY&L×FÅO€Í€èB°r¼i&¨Ô»ªÓB*”ãºíy×S]›L-}¼:¿–5£á¯.wâÙh°ex@*Ÿ¾¥x²!“^#àÀR°w¥«eäah%•Ù§`¹“Ç,4%Ö<qj…Î(ú¶3Ô馐O÷¥ÇÊ뉊nák¦RB>¾IÑN'nq(W¥^Ðï¿+Ÿ™i\•,®ÓÛ¨oxM[YLG¡i¨X0~G>…œDHq•ù½e~!RéÒEQ¶µ=Ç6mÏ$c€D¤Óó}Þ£},9tʉ\OaÿÈ£V‡Wò’ä_-÷óvèÕ&œÚ³Lgt’?t#f"²º—þ‡èÿþOÀàP4åEÛƒþ‘»5Ïendstream
+Šl<K)XÌ»œÏÈðM&<ˆñn'Æ0uËKW'f-ôw«"`W¬ó¤.öí<š*'öÈÉ}Õ+N[beÞ 6â Α$W*€ÈDh‚›\9é>µnLˆNn‰=É÷Z1Õ^EÔ»1¢ø]_5‹` /Ø€98ÿÝJ‰ù ëƒY&³dßl†L-ä]ûZ¸¿ÊHF¨	ûÓÎÌì÷逅ŽE£Ó‹òÉ&vÊmòž=½Ò“VâÇÇ™Øgoe“ï_ò®ý$´ÛöÁÖ†$r–"gÕ«óFuªÄ—åóþáâR@ÍkÇïê2`-ÆÂsÕš¦b;PG¤¾f?Ä­É«´dd>âÒ1så–ϸaُŽ¢Ì–™´ç—“ÞŠw¶Ûî<º½h"ryg˜úäÙ:©¬·òU2;Ÿ¯/:÷7¤¤ÄãY&L×FÅO€Í€èB°r¼i&¨Ô»ªÓB*”ãºíy×S]›L-}¼:¿–5£á¯.wâÙh°ex@*Ÿ¾¥x²!“^#àÀR°w¥«eäah%•Ù§`¹“Ç,4%Ö<qj…Î(ú¶3Ô馐O÷¥ÇÊ뉊nák¦RB>¾IÑN'nq(W¥^Ðï¿+Ÿ™i\•,®ÓÛ¨oxM[YLG¡i¨X0~G>…œDHq•ù½e~!RéÒEQ¶µ=Ç6mÏ$c€D¤Óó}Þ£},9tʉ\OaÿÈ£V‡Wò’ä_-÷óvèÕ&œÚ³Lgt’?t#f"²º—þ‡èÿþOÀàP4åEÛƒþ5óendstream
 endobj
 89 0 obj <<
 /Type /Font
 /Subtype /Type1
-/Encoding 292 0 R
+/Encoding 330 0 R
 /FirstChar 46
 /LastChar 121
-/Widths 293 0 R
-/BaseFont /ZCYARN+CMR17
+/Widths 331 0 R
+/BaseFont /QYUZPR+CMR17
 /FontDescriptor 87 0 R
 >> endobj
 87 0 obj <<
 /Ascent 694
 /CapHeight 683
 /Descent -195
-/FontName /ZCYARN+CMR17
+/FontName /QYUZPR+CMR17
 /ItalicAngle 0
 /StemV 53
 /XHeight 430
@@ -1739,31 +1985,31 @@
 /CharSet (/period/colon/F/G/I/N/P/S/W/a/c/e/f/i/l/m/n/o/p/r/t/u/y)
 /FontFile 88 0 R
 >> endobj
-293 0 obj
+331 0 obj
 [250 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 0 0 0 0 0 602 726 0 328 0 0 0 0 693 0 628 0 0 511 0 0 0 955 0 0 0 0 0 0 0 0 0 459 0 406 0 406 276 0 0 250 0 0 250 772 511 459 511 0 354 0 354 511 0 0 0 485 ]
 endobj
-292 0 obj <<
+330 0 obj <<
 /Type /Encoding
 /Differences [ 0 /.notdef 46/period 47/.notdef 58/colon 59/.notdef 70/F/G 72/.notdef 73/I 74/.notdef 78/N 79/.notdef 80/P 81/.notdef 83/S 84/.notdef 87/W 88/.notdef 97/a 98/.notdef 99/c 100/.notdef 101/e/f 103/.notdef 105/i 106/.notdef 108/l/m/n/o/p 113/.notdef 114/r 115/.notdef 116/t/u 118/.notdef 121/y 122/.notdef]
 >> endobj
 127 0 obj <<
 /Type /Pages
 /Count 6
-/Parent 294 0 R
-/Kids [82 0 R 146 0 R 168 0 R 177 0 R 193 0 R 203 0 R]
+/Parent 332 0 R
+/Kids [82 0 R 146 0 R 166 0 R 178 0 R 195 0 R 205 0 R]
 >> endobj
-232 0 obj <<
+237 0 obj <<
 /Type /Pages
-/Count 4
-/Parent 294 0 R
-/Kids [217 0 R 234 0 R 244 0 R 253 0 R]
+/Count 6
+/Parent 332 0 R
+/Kids [221 0 R 239 0 R 258 0 R 271 0 R 284 0 R 300 0 R]
 >> endobj
-294 0 obj <<
+332 0 obj <<
 /Type /Pages
-/Count 10
-/Kids [127 0 R 232 0 R]
+/Count 12
+/Kids [127 0 R 237 0 R]
 >> endobj
-295 0 obj <<
+333 0 obj <<
 /Type /Outlines
 /First 7 0 R
 /Last 79 0 R
@@ -1772,13 +2018,13 @@
 79 0 obj <<
 /Title 80 0 R
 /A 77 0 R
-/Parent 295 0 R
+/Parent 333 0 R
 /Prev 75 0 R
 >> endobj
 75 0 obj <<
 /Title 76 0 R
 /A 73 0 R
-/Parent 295 0 R
+/Parent 333 0 R
 /Prev 59 0 R
 /Next 79 0 R
 >> endobj
@@ -1804,7 +2050,7 @@
 59 0 obj <<
 /Title 60 0 R
 /A 57 0 R
-/Parent 295 0 R
+/Parent 333 0 R
 /Prev 47 0 R
 /Next 75 0 R
 /First 63 0 R
@@ -1826,7 +2072,7 @@
 47 0 obj <<
 /Title 48 0 R
 /A 45 0 R
-/Parent 295 0 R
+/Parent 333 0 R
 /Prev 19 0 R
 /Next 59 0 R
 /First 51 0 R
@@ -1876,7 +2122,7 @@
 19 0 obj <<
 /Title 20 0 R
 /A 17 0 R
-/Parent 295 0 R
+/Parent 333 0 R
 /Prev 15 0 R
 /Next 47 0 R
 /First 23 0 R
@@ -1886,48 +2132,48 @@
 15 0 obj <<
 /Title 16 0 R
 /A 13 0 R
-/Parent 295 0 R
+/Parent 333 0 R
 /Prev 11 0 R
 /Next 19 0 R
 >> endobj
 11 0 obj <<
 /Title 12 0 R
 /A 9 0 R
-/Parent 295 0 R
+/Parent 333 0 R
 /Prev 7 0 R
 /Next 15 0 R
 >> endobj
 7 0 obj <<
 /Title 8 0 R
 /A 5 0 R
-/Parent 295 0 R
+/Parent 333 0 R
 /Next 11 0 R
 >> endobj
-296 0 obj <<
-/Names [(Doc-Start) 86 0 R (a-common-example) 140 0 R (a-common-example.1) 62 0 R (a-final-note) 142 0 R (a-final-note.1) 70 0 R (acknowledgements) 144 0 R (acknowledgements.0) 78 0 R (argout-arrays) 132 0 R (argout-arrays.1) 30 0 R (available-typemaps) 129 0 R (available-typemaps.0) 18 0 R (beyond-the-provided-typemaps) 139 0 R (beyond-the-provided-typemaps.0) 58 0 R (contents) 96 0 R (contents.0) 6 0 R (helper-functions) 136 0 R (helper-functions.0) 46 0 R (in-place-arrays) 131 0 R (in-place-arrays.1) 26 0 R (input-arrays) 130 0 R (input-arrays.1) 22 0 R (introduction) 116 0 R (introduction.0) 10 0 R (macros) 137 0 R (macros.1) 50 0 R (other-common-types-bool) 134 0 R (other-common-types-bool.1) 38 0 R (other-common-types-complex) 135 0 R (other-common-types-complex.1) 42 0 R (other-situations) 141 0 R (other-situations.1) 66 0 R (output-arrays) 133 0 R (output-arrays.1) 34 0 R (page.1) 85 0 R (page.10) 255 0 R (page.2) 148 0 R (page.3) 170 0 R (page.4) 179 0 R (page.5) 195 0 R (page.6) 205 0 R (page.7) 219 0 R (page.8) 236 0 R (page.9) 246 0 R (routines) 138 0 R (routines.1) 54 0 R (section*.1) 97 0 R (section*.10) 220 0 R (section*.11) 230 0 R (section*.12) 231 0 R (section*.13) 237 0 R (section*.14) 241 0 R (section*.15) 247 0 R (section*.16) 249 0 R (section*.17) 261 0 R (section*.18) 263 0 R (section*.19) 267 0 R (section*.2) 120 0 R (section*.3) 180 0 R (section*.4) 187 0 R (section*.5) 196 0 R (section*.6) 199 0 R (section*.7) 206 0 R (section*.8) 211 0 R (section*.9) 212 0 R (summary) 143 0 R (summary.0) 74 0 R (using-numpy-i) 128 0 R (using-numpy-i.0) 14 0 R]
+334 0 obj <<
+/Names [(Doc-Start) 86 0 R (a-common-example) 140 0 R (a-common-example.1) 62 0 R (a-final-note) 142 0 R (a-final-note.1) 70 0 R (acknowledgements) 144 0 R (acknowledgements.0) 78 0 R (argout-arrays) 132 0 R (argout-arrays.1) 30 0 R (available-typemaps) 129 0 R (available-typemaps.0) 18 0 R (beyond-the-provided-typemaps) 139 0 R (beyond-the-provided-typemaps.0) 58 0 R (contents) 96 0 R (contents.0) 6 0 R (helper-functions) 136 0 R (helper-functions.0) 46 0 R (in-place-arrays) 131 0 R (in-place-arrays.1) 26 0 R (input-arrays) 130 0 R (input-arrays.1) 22 0 R (introduction) 116 0 R (introduction.0) 10 0 R (macros) 137 0 R (macros.1) 50 0 R (other-common-types-bool) 134 0 R (other-common-types-bool.1) 38 0 R (other-common-types-complex) 135 0 R (other-common-types-complex.1) 42 0 R (other-situations) 141 0 R (other-situations.1) 66 0 R (output-arrays) 133 0 R (output-arrays.1) 34 0 R (page.1) 85 0 R (page.10) 273 0 R (page.11) 286 0 R (page.12) 302 0 R (page.2) 148 0 R (page.3) 168 0 R (page.4) 180 0 R (page.5) 197 0 R (page.6) 207 0 R (page.7) 223 0 R (page.8) 241 0 R (page.9) 260 0 R (routines) 138 0 R (routines.1) 54 0 R (section*.1) 97 0 R (section*.10) 224 0 R (section*.11) 235 0 R (section*.12) 236 0 R (section*.13) 242 0 R (section*.14) 277 0 R (section*.15) 279 0 R (section*.16) 287 0 R (section*.17) 295 0 R (section*.18) 297 0 R (section*.19) 305 0 R (section*.2) 120 0 R (section*.3) 182 0 R (section*.4) 189 0 R (section*.5) 198 0 R (section*.6) 201 0 R (section*.7) 208 0 R (section*.8) 215 0 R (section*.9) 216 0 R (summary) 143 0 R (summary.0) 74 0 R (using-numpy-i) 128 0 R (using-numpy-i.0) 14 0 R]
 /Limits [(Doc-Start) (using-numpy-i.0)]
 >> endobj
-297 0 obj <<
-/Kids [296 0 R]
+335 0 obj <<
+/Kids [334 0 R]
 >> endobj
-298 0 obj <<
-/Dests 297 0 R
+336 0 obj <<
+/Dests 335 0 R
 >> endobj
-299 0 obj <<
+337 0 obj <<
 /Type /Catalog
-/Pages 294 0 R
-/Outlines 295 0 R
-/Names 298 0 R
+/Pages 332 0 R
+/Outlines 333 0 R
+/Names 336 0 R
 /PageMode /UseOutlines 
 /OpenAction 81 0 R
 >> endobj
-300 0 obj <<
+338 0 obj <<
 /Author(Bill Spotz)/Title(numpy.i: a SWIG Interface File for NumPy)/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfeTeX-1.21a)/Keywords()
-/CreationDate (D:20070410092024-06'00')
+/CreationDate (D:20070413144342-06'00')
 /PTEX.Fullbanner (This is pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4) kpathsea version 3.5.4)
 >> endobj
 xref
-0 301
+0 339
 0000000001 65535 f 
 0000000002 00000 f 
 0000000003 00000 f 
@@ -1935,79 +2181,79 @@
 0000000000 00000 f 
 0000000009 00000 n 
 0000007627 00000 n 
-0000129979 00000 n 
+0000138991 00000 n 
 0000000055 00000 n 
 0000000081 00000 n 
 0000007810 00000 n 
-0000129893 00000 n 
+0000138905 00000 n 
 0000000131 00000 n 
 0000000162 00000 n 
-0000024122 00000 n 
-0000129805 00000 n 
+0000024622 00000 n 
+0000138817 00000 n 
 0000000214 00000 n 
 0000000246 00000 n 
-0000024309 00000 n 
-0000129680 00000 n 
+0000024809 00000 n 
+0000138692 00000 n 
 0000000303 00000 n 
 0000000340 00000 n 
-0000028031 00000 n 
-0000129606 00000 n 
+0000028586 00000 n 
+0000138618 00000 n 
 0000000391 00000 n 
 0000000422 00000 n 
-0000028219 00000 n 
-0000129519 00000 n 
+0000028773 00000 n 
+0000138531 00000 n 
 0000000476 00000 n 
 0000000510 00000 n 
-0000028407 00000 n 
-0000129432 00000 n 
+0000028961 00000 n 
+0000138444 00000 n 
 0000000562 00000 n 
 0000000594 00000 n 
-0000033800 00000 n 
-0000129345 00000 n 
+0000034799 00000 n 
+0000138357 00000 n 
 0000000646 00000 n 
 0000000678 00000 n 
-0000033988 00000 n 
-0000129258 00000 n 
+0000034987 00000 n 
+0000138270 00000 n 
 0000000740 00000 n 
 0000000783 00000 n 
-0000034176 00000 n 
-0000129184 00000 n 
+0000035175 00000 n 
+0000138196 00000 n 
 0000000848 00000 n 
 0000000894 00000 n 
-0000040030 00000 n 
-0000129059 00000 n 
+0000041244 00000 n 
+0000138071 00000 n 
 0000000949 00000 n 
 0000000984 00000 n 
-0000040218 00000 n 
-0000128985 00000 n 
+0000041432 00000 n 
+0000137997 00000 n 
 0000001029 00000 n 
 0000001054 00000 n 
-0000040406 00000 n 
-0000128911 00000 n 
+0000041620 00000 n 
+0000137923 00000 n 
 0000001101 00000 n 
 0000001128 00000 n 
-0000045680 00000 n 
-0000128786 00000 n 
+0000057076 00000 n 
+0000137798 00000 n 
 0000001195 00000 n 
 0000001242 00000 n 
-0000045868 00000 n 
-0000128712 00000 n 
+0000057264 00000 n 
+0000137724 00000 n 
 0000001297 00000 n 
 0000001332 00000 n 
-0000050042 00000 n 
-0000128625 00000 n 
+0000057452 00000 n 
+0000137637 00000 n 
 0000001387 00000 n 
 0000001422 00000 n 
-0000057495 00000 n 
-0000128551 00000 n 
+0000063466 00000 n 
+0000137563 00000 n 
 0000001473 00000 n 
 0000001504 00000 n 
-0000057683 00000 n 
-0000128463 00000 n 
+0000063653 00000 n 
+0000137475 00000 n 
 0000001550 00000 n 
 0000001576 00000 n 
-0000057871 00000 n 
-0000128388 00000 n 
+0000067690 00000 n 
+0000137400 00000 n 
 0000001631 00000 n 
 0000001666 00000 n 
 0000003729 00000 n 
@@ -2015,15 +2261,15 @@
 0000001716 00000 n 
 0000007444 00000 n 
 0000007505 00000 n 
-0000127204 00000 n 
-0000121898 00000 n 
-0000127045 00000 n 
-0000121051 00000 n 
-0000112641 00000 n 
-0000120891 00000 n 
-0000111389 00000 n 
-0000096639 00000 n 
-0000111230 00000 n 
+0000136200 00000 n 
+0000130894 00000 n 
+0000136041 00000 n 
+0000130083 00000 n 
+0000122421 00000 n 
+0000129923 00000 n 
+0000121169 00000 n 
+0000106419 00000 n 
+0000121010 00000 n 
 0000007566 00000 n 
 0000007687 00000 n 
 0000004026 00000 n 
@@ -2045,197 +2291,235 @@
 0000006618 00000 n 
 0000006771 00000 n 
 0000007748 00000 n 
-0000095772 00000 n 
-0000087822 00000 n 
-0000095610 00000 n 
+0000105552 00000 n 
+0000097602 00000 n 
+0000105390 00000 n 
 0000007871 00000 n 
 0000006933 00000 n 
 0000007103 00000 n 
 0000007273 00000 n 
-0000086333 00000 n 
-0000072001 00000 n 
-0000086171 00000 n 
-0000128027 00000 n 
-0000024060 00000 n 
-0000024246 00000 n 
-0000027968 00000 n 
-0000028156 00000 n 
-0000028344 00000 n 
-0000033737 00000 n 
-0000033925 00000 n 
-0000034113 00000 n 
-0000039967 00000 n 
-0000040155 00000 n 
-0000040343 00000 n 
-0000045617 00000 n 
-0000045805 00000 n 
-0000049979 00000 n 
-0000057432 00000 n 
-0000057620 00000 n 
-0000057808 00000 n 
-0000015161 00000 n 
-0000012268 00000 n 
+0000096113 00000 n 
+0000081781 00000 n 
+0000095951 00000 n 
+0000137023 00000 n 
+0000024560 00000 n 
+0000024746 00000 n 
+0000028524 00000 n 
+0000028710 00000 n 
+0000028898 00000 n 
+0000034736 00000 n 
+0000034924 00000 n 
+0000035112 00000 n 
+0000041181 00000 n 
+0000041369 00000 n 
+0000041557 00000 n 
+0000057013 00000 n 
+0000057201 00000 n 
+0000057389 00000 n 
+0000063403 00000 n 
+0000063591 00000 n 
+0000067627 00000 n 
+0000014683 00000 n 
+0000012144 00000 n 
 0000008052 00000 n 
-0000015098 00000 n 
-0000012522 00000 n 
-0000012693 00000 n 
-0000012863 00000 n 
-0000071517 00000 n 
-0000067490 00000 n 
-0000071355 00000 n 
-0000013036 00000 n 
-0000013210 00000 n 
-0000013383 00000 n 
-0000013557 00000 n 
-0000013730 00000 n 
-0000013903 00000 n 
-0000014077 00000 n 
-0000014246 00000 n 
-0000014415 00000 n 
-0000014587 00000 n 
-0000014758 00000 n 
-0000014928 00000 n 
-0000019441 00000 n 
-0000018353 00000 n 
-0000015257 00000 n 
-0000019378 00000 n 
-0000018527 00000 n 
-0000018701 00000 n 
-0000018862 00000 n 
-0000019035 00000 n 
-0000019209 00000 n 
-0000024434 00000 n 
-0000022607 00000 n 
-0000019524 00000 n 
-0000023997 00000 n 
-0000024183 00000 n 
-0000022797 00000 n 
-0000022968 00000 n 
-0000023139 00000 n 
-0000023310 00000 n 
-0000023483 00000 n 
-0000023653 00000 n 
-0000024371 00000 n 
-0000023824 00000 n 
-0000067170 00000 n 
-0000065780 00000 n 
-0000067009 00000 n 
-0000028469 00000 n 
-0000027050 00000 n 
-0000024543 00000 n 
-0000027905 00000 n 
-0000028093 00000 n 
-0000027216 00000 n 
-0000027388 00000 n 
-0000028281 00000 n 
-0000027560 00000 n 
-0000027731 00000 n 
-0000034238 00000 n 
-0000032246 00000 n 
-0000028578 00000 n 
-0000033611 00000 n 
-0000033674 00000 n 
-0000032436 00000 n 
-0000032609 00000 n 
-0000032782 00000 n 
-0000032955 00000 n 
-0000033862 00000 n 
-0000034050 00000 n 
-0000033126 00000 n 
-0000033291 00000 n 
-0000033450 00000 n 
-0000040468 00000 n 
-0000038080 00000 n 
-0000034347 00000 n 
-0000039841 00000 n 
-0000039904 00000 n 
-0000038286 00000 n 
-0000038459 00000 n 
-0000038633 00000 n 
-0000038806 00000 n 
-0000038978 00000 n 
-0000039150 00000 n 
-0000039323 00000 n 
-0000039494 00000 n 
-0000039667 00000 n 
-0000040092 00000 n 
-0000040280 00000 n 
-0000128143 00000 n 
-0000045930 00000 n 
-0000044631 00000 n 
-0000040576 00000 n 
-0000045491 00000 n 
-0000045554 00000 n 
-0000044797 00000 n 
-0000044971 00000 n 
-0000045143 00000 n 
-0000045742 00000 n 
-0000045317 00000 n 
-0000050167 00000 n 
-0000049182 00000 n 
-0000046038 00000 n 
-0000049853 00000 n 
-0000049916 00000 n 
-0000049340 00000 n 
-0000050104 00000 n 
-0000049511 00000 n 
-0000049680 00000 n 
-0000057996 00000 n 
-0000054284 00000 n 
-0000050276 00000 n 
-0000057369 00000 n 
-0000054546 00000 n 
-0000054717 00000 n 
-0000054891 00000 n 
-0000055076 00000 n 
-0000055261 00000 n 
-0000057557 00000 n 
-0000055451 00000 n 
-0000057745 00000 n 
-0000055622 00000 n 
-0000055795 00000 n 
-0000055966 00000 n 
-0000057933 00000 n 
-0000056139 00000 n 
-0000056310 00000 n 
-0000056484 00000 n 
-0000056655 00000 n 
-0000056828 00000 n 
-0000064901 00000 n 
-0000058130 00000 n 
-0000064741 00000 n 
-0000056995 00000 n 
-0000057178 00000 n 
-0000065428 00000 n 
-0000065190 00000 n 
-0000067403 00000 n 
-0000067379 00000 n 
-0000071821 00000 n 
-0000071739 00000 n 
-0000087223 00000 n 
-0000086861 00000 n 
-0000096318 00000 n 
-0000096063 00000 n 
-0000112201 00000 n 
-0000111816 00000 n 
-0000121612 00000 n 
-0000121352 00000 n 
-0000127669 00000 n 
-0000127451 00000 n 
-0000128244 00000 n 
-0000128314 00000 n 
-0000130051 00000 n 
-0000131711 00000 n 
-0000131750 00000 n 
-0000131788 00000 n 
-0000131917 00000 n 
+0000014620 00000 n 
+0000012382 00000 n 
+0000012553 00000 n 
+0000012723 00000 n 
+0000081297 00000 n 
+0000077270 00000 n 
+0000081135 00000 n 
+0000012896 00000 n 
+0000013070 00000 n 
+0000013243 00000 n 
+0000013417 00000 n 
+0000013591 00000 n 
+0000013764 00000 n 
+0000013938 00000 n 
+0000014108 00000 n 
+0000014277 00000 n 
+0000014449 00000 n 
+0000019607 00000 n 
+0000017985 00000 n 
+0000014779 00000 n 
+0000019544 00000 n 
+0000018183 00000 n 
+0000018351 00000 n 
+0000018519 00000 n 
+0000018691 00000 n 
+0000018864 00000 n 
+0000019038 00000 n 
+0000019199 00000 n 
+0000019371 00000 n 
+0000024934 00000 n 
+0000022932 00000 n 
+0000019690 00000 n 
+0000024497 00000 n 
+0000023130 00000 n 
+0000024683 00000 n 
+0000023297 00000 n 
+0000023468 00000 n 
+0000023639 00000 n 
+0000023810 00000 n 
+0000023983 00000 n 
+0000024153 00000 n 
+0000024871 00000 n 
+0000024324 00000 n 
+0000076950 00000 n 
+0000075560 00000 n 
+0000076789 00000 n 
+0000029023 00000 n 
+0000027605 00000 n 
+0000025043 00000 n 
+0000028461 00000 n 
+0000028647 00000 n 
+0000027771 00000 n 
+0000027943 00000 n 
+0000028835 00000 n 
+0000028115 00000 n 
+0000028287 00000 n 
+0000035237 00000 n 
+0000032885 00000 n 
+0000029132 00000 n 
+0000034610 00000 n 
+0000034673 00000 n 
+0000033091 00000 n 
+0000033264 00000 n 
+0000033437 00000 n 
+0000033610 00000 n 
+0000033782 00000 n 
+0000033953 00000 n 
+0000034861 00000 n 
+0000035049 00000 n 
+0000034125 00000 n 
+0000034290 00000 n 
+0000034449 00000 n 
+0000041682 00000 n 
+0000039113 00000 n 
+0000035346 00000 n 
+0000041055 00000 n 
+0000041118 00000 n 
+0000039327 00000 n 
+0000039500 00000 n 
+0000039674 00000 n 
+0000039847 00000 n 
+0000040019 00000 n 
+0000040191 00000 n 
+0000040364 00000 n 
+0000040535 00000 n 
+0000040708 00000 n 
+0000040881 00000 n 
+0000041306 00000 n 
+0000041494 00000 n 
+0000137139 00000 n 
+0000047578 00000 n 
+0000044782 00000 n 
+0000041790 00000 n 
+0000047452 00000 n 
+0000047515 00000 n 
+0000045028 00000 n 
+0000045201 00000 n 
+0000045375 00000 n 
+0000045548 00000 n 
+0000045721 00000 n 
+0000045894 00000 n 
+0000046068 00000 n 
+0000046240 00000 n 
+0000046414 00000 n 
+0000046587 00000 n 
+0000046760 00000 n 
+0000046933 00000 n 
+0000047106 00000 n 
+0000047279 00000 n 
+0000052403 00000 n 
+0000050575 00000 n 
+0000047699 00000 n 
+0000052340 00000 n 
+0000050781 00000 n 
+0000050954 00000 n 
+0000051128 00000 n 
+0000051302 00000 n 
+0000051475 00000 n 
+0000051647 00000 n 
+0000051820 00000 n 
+0000051994 00000 n 
+0000052166 00000 n 
+0000057514 00000 n 
+0000055552 00000 n 
+0000052511 00000 n 
+0000056950 00000 n 
+0000055742 00000 n 
+0000055914 00000 n 
+0000056087 00000 n 
+0000057138 00000 n 
+0000056259 00000 n 
+0000057326 00000 n 
+0000056433 00000 n 
+0000056606 00000 n 
+0000056777 00000 n 
+0000063777 00000 n 
+0000061482 00000 n 
+0000057635 00000 n 
+0000063277 00000 n 
+0000063340 00000 n 
+0000061688 00000 n 
+0000061857 00000 n 
+0000062030 00000 n 
+0000062201 00000 n 
+0000062375 00000 n 
+0000062560 00000 n 
+0000062744 00000 n 
+0000063528 00000 n 
+0000062933 00000 n 
+0000063714 00000 n 
+0000063104 00000 n 
+0000067815 00000 n 
+0000065784 00000 n 
+0000063898 00000 n 
+0000067564 00000 n 
+0000065990 00000 n 
+0000066161 00000 n 
+0000067752 00000 n 
+0000066334 00000 n 
+0000066505 00000 n 
+0000066679 00000 n 
+0000066850 00000 n 
+0000067023 00000 n 
+0000074693 00000 n 
+0000067937 00000 n 
+0000074533 00000 n 
+0000067190 00000 n 
+0000067373 00000 n 
+0000075221 00000 n 
+0000074983 00000 n 
+0000077183 00000 n 
+0000077159 00000 n 
+0000081601 00000 n 
+0000081519 00000 n 
+0000097003 00000 n 
+0000096641 00000 n 
+0000106098 00000 n 
+0000105843 00000 n 
+0000121981 00000 n 
+0000121596 00000 n 
+0000130621 00000 n 
+0000130369 00000 n 
+0000136665 00000 n 
+0000136447 00000 n 
+0000137256 00000 n 
+0000137326 00000 n 
+0000139063 00000 n 
+0000140759 00000 n 
+0000140798 00000 n 
+0000140836 00000 n 
+0000140965 00000 n 
 trailer
 <<
-/Size 301
-/Root 299 0 R
-/Info 300 0 R
-/ID [<8AEBC1FCCADD8D71CBEF5E0E60CFF503> <8AEBC1FCCADD8D71CBEF5E0E60CFF503>]
+/Size 339
+/Root 337 0 R
+/Info 338 0 R
+/ID [<6D5220E93E8808964213440D85A6832B> <6D5220E93E8808964213440D85A6832B>]
 >>
 startxref
-132230
+141278
 %%EOF

Modified: branches/multicore/numpy/doc/swig/numpy_swig.txt
===================================================================
--- branches/multicore/numpy/doc/swig/numpy_swig.txt	2007-04-17 10:34:54 UTC (rev 3718)
+++ branches/multicore/numpy/doc/swig/numpy_swig.txt	2007-04-18 18:32:47 UTC (rev 3719)
@@ -4,7 +4,7 @@
 
 :Author:      Bill Spotz
 :Institution: Sandia National Laboratories
-:Date:        4 April, 2007
+:Date:        13 April, 2007
 
 .. contents::
 
@@ -41,6 +41,7 @@
 
     def rms(seq):
         """
+	rms: return the root mean square of a sequence
         rms(numpy.ndarray) -> double
         rms(list) -> double
         rms(tuple) -> double
@@ -134,19 +135,19 @@
 The typemaps from ``numpy.i`` are responsible for the following lines
 of code: 12--20, 25 and 30.  Line 10 parses the input to the ``rms``
 function.  From the format string ``"O:rms"``, we can see that the
-argument list is expected to be a single python object (specified by
-the ``O`` before the colon) and whose pointer is stored in ``obj0``.
-A number of functions, supplied by ``numpy.i``, are called to make and
-check the (possible) conversion from a generic python object to a
-`NumPy`_ array.  These functions are explained in the section `Helper
-Functions`_, but hopefully their names are self-explanatory.  At line
-12 we use ``obj0`` to construct a `NumPy`_ array.  At line 17, we
-check the validity of the result: that it is non-null and that it has
-a single dimension of arbitrary length.  Once these states are
-verified, we extract the data buffer and length in lines 19 and 20 so
-that we can call the underlying C function at line 22.  Line 25
-performs memory management for the case where we have created a new
-array that is no longer needed.
+argument list is expected to be a single `python`_ object (specified
+by the ``O`` before the colon) and whose pointer is stored in
+``obj0``.  A number of functions, supplied by ``numpy.i``, are called
+to make and check the (possible) conversion from a generic `python`_
+object to a `NumPy`_ array.  These functions are explained in the
+section `Helper Functions`_, but hopefully their names are
+self-explanatory.  At line 12 we use ``obj0`` to construct a `NumPy`_
+array.  At line 17, we check the validity of the result: that it is
+non-null and that it has a single dimension of arbitrary length.  Once
+these states are verified, we extract the data buffer and length in
+lines 19 and 20 so that we can call the underlying C function at line
+22.  Line 25 performs memory management for the case where we have
+created a new array that is no longer needed.
 
 This code has a significant amount of error handling.  Note the
 ``SWIG_fail`` is a macro for ``goto fail``, refering to the label at
@@ -305,13 +306,13 @@
 
 These are typically used in situations where in C/C++, you would
 allocate a(n) array(s) on the heap, and call the function to fill the
-array(s) values.  In python, the arrays are allocated for you and
+array(s) values.  In `python`_, the arrays are allocated for you and
 returned as new array objects.
 
 Note that we support ``DATA_TYPE*`` argout typemaps in 1D, but not 2D
 or 3D.  This because of a quirk with the `SWIG`_ typemap syntax and
 cannot be avoided.  Note that for these types of 1D typemaps, the
-python function will take a single argument representing ``DIM1``.
+`python`_ function will take a single argument representing ``DIM1``.
 
 Output Arrays
 -------------
@@ -374,7 +375,7 @@
 
 We could have implemented::
 
-    %numpy_typemaps(Py_complex , NPY_DOUBLE , int)
+    %numpy_typemaps(Py_complex , NPY_CDOUBLE, int)
     %numpy_typemaps(npy_cfloat , NPY_CFLOAT , int)
     %numpy_typemaps(npy_cdouble, NPY_CDOUBLE, int)
 
@@ -382,9 +383,9 @@
 type ``Py_complex``, ``npy_cfloat`` and ``npy_cdouble``.  However, it
 seemed unlikely that there would be any independent (non-`python`_,
 non-`NumPy`_) application code that people would be using `SWIG`_ to
-generate a python interface to, that also used these definitions for
-complex types.  More likely, these application codes will define their
-own complex types, or in the case of C++, use ``std::complex``.
+generate a `python`_ interface to, that also used these definitions
+for complex types.  More likely, these application codes will define
+their own complex types, or in the case of C++, use ``std::complex``.
 Assuming these data structures are compatible with `python`_ and
 `NumPy`_ complex types, ``%numpy_typemap`` expansions as above (with
 the user's complex type substituted for the first argument) should
@@ -436,77 +437,196 @@
 Routines
 --------
 
-  **char* pytype_string(PyObject* py_obj)**
-    Given a ``PyObject*``, return a string describing its type.
+  **pytype_string()**
 
+    Return type: ``char*``
 
-  **char* typecode_string(int typecode)**
-    Given a `NumPy`_ integer typecode, return a string describing the type.
+    Arguments:
 
+    * ``PyObject* py_obj``, a general `python`_ object.
 
-  **int type_match(int actual_type, int desired_type)**
-    Make sure input has correct `NumPy`_ type.  Allow character and
-    byte to match.  Also allow int and long to match.  This is
-    deprecated .  You should use ``PyArray_EquivTypenums()`` instead.
+    Return a string describing the type of ``py_obj``.
 
 
-  **PyArrayObject* obj_to_array_no_conversion(PyObject* input, int typecode)**
-    Given a ``PyObject*``, cast it to a ``PyArrayObject*`` if legal.
-    If not, set the python error string appropriately and return
-    ``NULL``.
+  **typecode_string()**
 
+    Return type: ``char*``
 
-  **PyArrayObject* obj_to_array_allow_conversion(PyObject* input, int typecode, int* is_new_object)**
-    Convert the given ``PyObject*`` to a `NumPy`_ array with the given
-    typecode.  On Success, return a valid ``PyArrayObject*`` with the
-    correct type.  On failure, the python error string will be set and
-    the routine returns ``NULL``.
+    Arguments:
 
+    * ``int typecode``, a `NumPy`_ integer typecode.
 
-  **PyArrayObject* make_contiguous(PyArrayObject* ary, int* is_new_object, int min_dims, int max_dims)**
-    Given a ``PyArrayObject*``, check to see if it is contiguous.  If
-    so, return the input pointer and flag it as not a new object.  If
-    it is not contiguous, create a new ``PyArrayObject*`` using the
-    original data, flag it as a new object and return the pointer.
+    Return a string describing the type corresponding to the `NumPy`_
+    ``typecode``.
 
+  **type_match()**
 
-  **PyArrayObject* obj_to_array_contiguous_allow_conversion(PyObject* input, int typecode, int* is_new_object)**
-    Convert a given ``PyObject*`` to a contiguous ``PyArrayObject*``
-    of the specified type.  If the input object is not a contiguous
+    Return type: ``int``
+
+    Arguments:
+
+    * ``int actual_type``, the `NumPy`_ typecode of a `NumPy`_ array.
+
+    * ``int desired_type``, the desired `NumPy`_ typecode.
+
+    Make sure that ``actual_type`` is compatible with
+    ``desired_type``.  For example, this allows character and
+    byte types, or int and long types, to match.  This is now
+    equivalent to ``PyArray_EquivTypenums()``.
+
+
+  **obj_to_array_no_conversion()**
+
+    Return type: ``PyArrayObject*``
+
+    Arguments:
+
+    * ``PyObject* input``, a general `python`_ object.
+
+    * ``int typecode``, the desired `NumPy`_ typecode.
+
+    Cast ``input`` to a ``PyArrayObject*`` if legal, and ensure that
+    it is of type ``typecode``.  If ``input`` cannot be cast, or the
+    ``typecode`` is wrong, set a `python`_ error and return ``NULL``.
+
+
+  **obj_to_array_allow_conversion()**
+
+    Return type: ``PyArrayObject*``
+
+    Arguments:
+
+    * ``PyObject* input``, a general `python`_ object.
+
+    * ``int typecode``, the desired `NumPy`_ typecode of the resulting
+      array.
+
+    * ``int* is_new_object``, returns a value of 0 if no conversion
+      performed, else 1.
+
+    Convert ``input`` to a `NumPy`_ array with the given ``typecode``.
+    On success, return a valid ``PyArrayObject*`` with the correct
+    type.  On failure, the `python`_ error string will be set and the
+    routine returns ``NULL``.
+
+
+  **make_contiguous()**
+
+    Return type: ``PyArrayObject*``
+
+    Arguments:
+
+    * ``PyArrayObject* ary``, a `NumPy`_ array.
+
+    * ``int* is_new_object``, returns a value of 0 if no conversion
+      performed, else 1.
+
+    * ``int min_dims``, minimum allowable dimensions.
+
+    * ``int max_dims``, maximum allowable dimensions.
+
+    Check to see if ``ary`` is contiguous.  If so, return the input
+    pointer and flag it as not a new object.  If it is not contiguous,
+    create a new ``PyArrayObject*`` using the original data, flag it
+    as a new object and return the pointer.
+
+
+  **obj_to_array_contiguous_allow_conversion()**
+
+    Return type: ``PyArrayObject*``
+
+    Arguments:
+
+    * ``PyObject* input``, a general `python`_ object.
+
+    * ``int typecode``, the desired `NumPy`_ typecode of the resulting
+      array.
+
+    * ``int* is_new_object``, returns a value of 0 if no conversion
+      performed, else 1.
+
+    Convert ``input`` to a contiguous ``PyArrayObject*`` of the
+    specified type.  If the input object is not a contiguous
     ``PyArrayObject*``, a new one will be created and the new object
     flag will be set.
 
 
-  **int require_contiguous(PyArrayObject* ary)**
-    Test whether a ``PyArrayObject*`` is contiguous.  If array is
-    contiguous, return 1.  Otherwise, set the python error string and
+  **require_contiguous()**
+
+    Return type: ``int``
+
+    Arguments:
+
+    * ``PyArrayObject* ary``, a `NumPy`_ array.
+
+    Test whether ``ary`` is contiguous.  If so, return 1.  Otherwise,
+    set a `python`_ error and return 0.
+
+
+  **require_native()**
+
+    Return type: ``int``
+
+    Arguments:
+
+    * ``PyArray_Object* ary``, a `NumPy`_ array.
+
+    Require that ``ary`` is not byte-swapped.  If the array is not
+    byte-swapped, return 1.  Otherwise, set a `python`_ error and
     return 0.
 
+  **require_dimensions()**
 
-  **int require_native(PyArray_Object* ary)**
-    Require that a numpy array is not byte-swapped.  If the array is
-    not byte-swapped, return 1.  Otherwise, set the python error string
+    Return type: ``int``
+
+    Arguments:
+
+    * ``PyArrayObject* ary``, a `NumPy`_ array.
+
+    * ``int exact_dimensions``, the desired number of dimensions.
+
+    Require ``ary`` to have a specified number of dimensions.  If the
+    array has the specified number of dimensions, return 1.
+    Otherwise, set a `python`_ error and return 0.
+
+
+  **require_dimensions_n()**
+
+    Return type: ``int``
+
+    Arguments:
+
+    * ``PyArrayObject* ary``, a `NumPy`_ array.
+
+    * ``int* exact_dimensions``, an array of integers representing
+      acceptable numbers of dimensions.
+
+    * ``int n``, the length of ``exact_dimensions``.
+
+    Require ``ary`` to have one of a list of specified number of
+    dimensions.  If the array has one of the specified number of
+    dimensions, return 1.  Otherwise, set the `python`_ error string
     and return 0.
 
-  **int require_dimensions(PyArrayObject* ary, int exact_dimensions)**
-    Require the given ``PyArrayObject*`` to have a specified number of
-    dimensions.  If the array has the specified number of dimensions,
-    return 1.  Otherwise, set the python error string and return 0.
 
+  **require_size()**
 
-  **int require_dimensions_n(PyArrayObject* ary, int* exact_dimensions, int n)**
-    Require the given ``PyArrayObject*`` to have one of a list of
-    specified number of dimensions.  If the array has one of the
-    specified number of dimensions, return 1.  Otherwise, set the
-    python error string and return 0.
+    Return type: ``int``
 
+    Arguments:
 
-  **int require_size(PyArrayObject* ary, int* size, int n)**
-    Require the given ``PyArrayObject*`` to have a specified shape.
-    If the array has the specified shape, return 1.  Otherwise, set
-    the python error string and return 0.
+    * ``PyArrayObject* ary``, a `NumPy`_ array.
 
+    * ``npy_int* size``, an array representing the desired lengths of
+      each dimension.
 
+    * ``int n``, the length of ``size``.
+
+    Require ``ary`` to have a specified shape.  If the array has the
+    specified shape, return 1.  Otherwise, set the `python`_ error
+    string and return 0.
+
+
 Beyond the Provided Typemaps
 ============================
 
@@ -520,7 +640,7 @@
 
     double dot(int len, double* vec1, double* vec2);
 
-The python interface that we want is::
+The `python`_ interface that we want is::
 
     def dot(vec1, vec2):
         """
@@ -530,7 +650,7 @@
 The problem here is that there is one dimension argument and two array
 arguments, and our typemaps are set up for dimensions that apply to a
 single array (in fact, `SWIG`_ does not provide a mechanism for
-associating ``len`` with ``vec2`` that takes two python input
+associating ``len`` with ``vec2`` that takes two `python`_ input
 arguments).  The recommended solution is the following::
 
     %apply (int DIM1, double* IN_ARRAY1) {(int len1, double* vec1),

Modified: branches/multicore/numpy/f2py/capi_maps.py
===================================================================
--- branches/multicore/numpy/f2py/capi_maps.py	2007-04-17 10:34:54 UTC (rev 3718)
+++ branches/multicore/numpy/f2py/capi_maps.py	2007-04-18 18:32:47 UTC (rev 3719)
@@ -307,6 +307,10 @@
             i=i+1
             if d not in ['*',':','(*)','(:)']:
                 ret['cbsetdims']='%s#varname#_Dims[%d]=%s,'%(ret['cbsetdims'],i,d)
+            elif isintent_in(var):
+                outmess('getarrdims:warning: assumed shape array, using 0 instead of %r\n' \
+                        % (d))
+                ret['cbsetdims']='%s#varname#_Dims[%d]=%s,'%(ret['cbsetdims'],i,0)
             elif verbose :
                 errmess('getarrdims: If in call-back function: array argument %s must have bounded dimensions: got %s\n'%(`a`,`d`))
         if ret['cbsetdims']: ret['cbsetdims']=ret['cbsetdims'][:-1]

Modified: branches/multicore/numpy/testing/numpytest.py
===================================================================
--- branches/multicore/numpy/testing/numpytest.py	2007-04-17 10:34:54 UTC (rev 3718)
+++ branches/multicore/numpy/testing/numpytest.py	2007-04-18 18:32:47 UTC (rev 3719)
@@ -453,8 +453,11 @@
                 continue
             if os.path.basename(os.path.dirname(module.__file__))=='tests':
                 continue
-            modules.append(module)
+            modules.append((name, module))
 
+        modules.sort()
+        modules = [m[1] for m in modules]
+
         self.test_files = []
         suites = []
         for module in modules:

Modified: branches/multicore/site.cfg.example
===================================================================
--- branches/multicore/site.cfg.example	2007-04-17 10:34:54 UTC (rev 3718)
+++ branches/multicore/site.cfg.example	2007-04-18 18:32:47 UTC (rev 3719)
@@ -4,6 +4,9 @@
 # packages will use all sections so you should leave out sections that your
 # package does not use.
 
+# To assist automatic installation like easy_install, the user's home directory
+# will also be checked for the file ~/.numpy-site.cfg .
+
 # The format of the file is that of the standard library's ConfigParser module.
 #
 #   http://www.python.org/doc/current/lib/module-ConfigParser.html




More information about the Numpy-svn mailing list